diff --git a/.github/workflows/build-app-pro-beta.yaml b/.github/workflows/build-app-pro-beta.yaml index 5285c9be9..d5e8a274a 100644 --- a/.github/workflows/build-app-pro-beta.yaml +++ b/.github/workflows/build-app-pro-beta.yaml @@ -39,6 +39,7 @@ jobs: repository: dbgate/dbgate-pro token: '${{ secrets.GH_TOKEN }}' path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 - name: Merge dbgate/dbgate-pro run: | mkdir ../dbgate-pro diff --git a/.github/workflows/build-app-pro.yaml b/.github/workflows/build-app-pro.yaml index 7529f45b0..6eee74aed 100644 --- a/.github/workflows/build-app-pro.yaml +++ b/.github/workflows/build-app-pro.yaml @@ -39,6 +39,7 @@ jobs: repository: dbgate/dbgate-pro token: '${{ secrets.GH_TOKEN }}' path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 - name: Merge dbgate/dbgate-pro run: | mkdir ../dbgate-pro diff --git a/.github/workflows/build-aws-pro-beta.yaml b/.github/workflows/build-cloud-pro.yaml similarity index 80% rename from .github/workflows/build-aws-pro-beta.yaml rename to .github/workflows/build-cloud-pro.yaml index 2d2e41fdb..18aa45e0a 100644 --- a/.github/workflows/build-aws-pro-beta.yaml +++ b/.github/workflows/build-cloud-pro.yaml @@ -1,7 +1,7 @@ # -------------------------------------------------------------------------------------------- # This file is generated. Do not edit manually # -------------------------------------------------------------------------------------------- -name: AWS image PREMIUM +name: Cloud images PREMIUM 'on': push: tags: @@ -26,6 +26,9 @@ jobs: uses: actions/setup-node@v1 with: node-version: 18.x + - name: Install jq + run: | + sudo apt-get install jq -y - name: Setup `packer` uses: hashicorp/setup-packer@main with: @@ -36,6 +39,7 @@ jobs: repository: dbgate/dbgate-pro token: '${{ secrets.GH_TOKEN }}' path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 - name: Merge dbgate/dbgate-pro run: | mkdir ../dbgate-pro @@ -93,7 +97,15 @@ jobs: prerelease: true env: GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' - - name: Run `packer init` + - name: Run `packer init` for Azure + run: | + cd ../dbgate-merged/packer + packer init ./azure-ubuntu.pkr.hcl + - name: Run `packer build` for Azure + run: | + cd ../dbgate-merged/packer + packer build ./azure-ubuntu.pkr.hcl + - name: Run `packer init` for AWS run: | cd ../dbgate-merged/packer packer init ./aws-ubuntu.pkr.hcl @@ -101,7 +113,7 @@ jobs: AWS_ACCESS_KEY_ID: '${{secrets.AWS_ACCESS_KEY_ID}}' AWS_SECRET_ACCESS_KEY: '${{secrets.AWS_SECRET_ACCESS_KEY}}' AWS_DEFAULT_REGION: '${{secrets.AWS_DEFAULT_REGION}}' - - name: Run `packer build` + - name: Run `packer build` for AWS run: | cd ../dbgate-merged/packer packer build ./aws-ubuntu.pkr.hcl @@ -109,10 +121,17 @@ jobs: AWS_ACCESS_KEY_ID: '${{secrets.AWS_ACCESS_KEY_ID}}' AWS_SECRET_ACCESS_KEY: '${{secrets.AWS_SECRET_ACCESS_KEY}}' AWS_DEFAULT_REGION: '${{secrets.AWS_DEFAULT_REGION}}' - - name: Install jq + - name: Delete old Azure VMs run: | - sudo apt-get install jq -y - - name: Delete old AMIs + cd ../dbgate-merged/packer + chmod +x delete-old-azure-images.sh + ./delete-old-azure-images.sh + env: + AZURE_CLIENT_ID: '${{secrets.AZURE_CLIENT_ID}}' + AZURE_CLIENT_SECRET: '${{secrets.AZURE_CLIENT_SECRET}}' + AZURE_TENANT_ID: '${{secrets.AZURE_TENANT_ID}}' + AZURE_SUBSCRIPTION_ID: '${{secrets.AZURE_SUBSCRIPTION_ID}}' + - name: Delete old AMIs (AWS) run: | cd ../dbgate-merged/packer chmod +x delete-old-amis.sh diff --git a/.github/workflows/build-docker-pro.yaml b/.github/workflows/build-docker-pro.yaml index a11f32f4e..86a1f40f4 100644 --- a/.github/workflows/build-docker-pro.yaml +++ b/.github/workflows/build-docker-pro.yaml @@ -44,6 +44,7 @@ jobs: repository: dbgate/dbgate-pro token: '${{ secrets.GH_TOKEN }}' path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 - name: Merge dbgate/dbgate-pro run: | mkdir ../dbgate-pro diff --git a/.github/workflows/build-npm-pro.yaml b/.github/workflows/build-npm-pro.yaml index 53b982a59..5389c6c02 100644 --- a/.github/workflows/build-npm-pro.yaml +++ b/.github/workflows/build-npm-pro.yaml @@ -32,6 +32,7 @@ jobs: repository: dbgate/dbgate-pro token: '${{ secrets.GH_TOKEN }}' path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 - name: Merge dbgate/dbgate-pro run: | mkdir ../dbgate-pro diff --git a/.github/workflows/build-npm.yaml b/.github/workflows/build-npm.yaml index 6ec677d51..f204115dd 100644 --- a/.github/workflows/build-npm.yaml +++ b/.github/workflows/build-npm.yaml @@ -123,3 +123,11 @@ jobs: working-directory: plugins/dbgate-plugin-clickhouse run: | npm publish + - name: Publish dbgate-plugin-dbf + working-directory: plugins/dbgate-plugin-dbf + run: | + npm publish + - name: Publish dbgate-plugin-cassandra + working-directory: plugins/dbgate-plugin-cassandra + run: | + npm publish diff --git a/.github/workflows/build-test-containers.yaml b/.github/workflows/build-test-containers.yaml index 19620ff0a..af2c5bc81 100644 --- a/.github/workflows/build-test-containers.yaml +++ b/.github/workflows/build-test-containers.yaml @@ -8,6 +8,7 @@ name: Build test containers - master - develop - feature/** + - hotfix/** paths: - e2e-tests/containers/** jobs: diff --git a/.github/workflows/e2e-pro.yaml b/.github/workflows/e2e-pro.yaml new file mode 100644 index 000000000..547071395 --- /dev/null +++ b/.github/workflows/e2e-pro.yaml @@ -0,0 +1,108 @@ +# -------------------------------------------------------------------------------------------- +# This file is generated. Do not edit manually +# -------------------------------------------------------------------------------------------- +name: Cypress tests with screenshots PREMIUM +'on': + push: + branches: + - master + - develop + - feature/** + - hotfix/** +jobs: + e2e-tests: + runs-on: ubuntu-latest + steps: + - name: Use Node.js 18.x + uses: actions/setup-node@v1 + with: + node-version: 18.x + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + - name: Checkout dbgate/dbgate-pro + uses: actions/checkout@v2 + with: + repository: dbgate/dbgate-pro + token: '${{ secrets.GH_TOKEN }}' + path: dbgate-pro + ref: 126ed2baaff5be241f1554b9a46be2dcd943b754 + - name: Merge dbgate/dbgate-pro + run: | + mkdir ../dbgate-pro + mv dbgate-pro/* ../dbgate-pro/ + cd .. + mkdir dbgate-merged + cd dbgate-pro + cd sync + yarn + node sync.js --nowatch + cd .. + - name: yarn install + run: | + cd ../dbgate-merged + yarn install + - name: Build packer dist for cypress + run: | + cd ../dbgate-merged + yarn prepare:packer + - name: yarn install cypress + run: | + cd ../dbgate-merged + cd e2e-tests + yarn install + - name: Run Cypress tests + run: | + cd ../dbgate-merged + cd e2e-tests + yarn test:ci + - name: ls -R + run: | + cd ../dbgate-merged + ls -R + - name: Copy screenshots + run: | + mkdir screenshots + cp ../dbgate-merged/e2e-tests/screenshots/*.png screenshots/ + - name: Upload E2E screenshots + uses: actions/upload-artifact@v4 + with: + name: screenshots + path: screenshots + services: + postgres-cypress: + image: postgres + options: '--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5' + env: + POSTGRES_PASSWORD: Pwd2020Db + ports: + - '16000:5432' + mysql-cypress: + image: 'mysql:8.0.18' + ports: + - '16004:3306' + env: + MYSQL_ROOT_PASSWORD: Pwd2020Db + mysql-ssh-login: + image: 'ghcr.io/dbgate/mysql-ssh-login:latest' + ports: + - '16012:22' + mysql-ssh-keyfile: + image: 'ghcr.io/dbgate/mysql-ssh-keyfile:latest' + ports: + - '16008:22' + dex: + image: 'ghcr.io/dbgate/dex:latest' + ports: + - '16009:5556' + mongo: + image: 'mongo:4.0.12' + env: + MONGO_INITDB_ROOT_USERNAME: root + MONGO_INITDB_ROOT_PASSWORD: Pwd2020Db + ports: + - '16010:27017' + redis: + image: redis + ports: + - '16011:6379' diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index ae43194e9..75a0f268b 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -1,15 +1,16 @@ # -------------------------------------------------------------------------------------------- # This file is generated. Do not edit manually # -------------------------------------------------------------------------------------------- -name: Run tests +name: Integration and unit tests 'on': push: branches: - master - develop - feature/** + - hotfix/** jobs: - test: + all-tests: runs-on: ubuntu-latest steps: - name: Use Node.js 18.x @@ -22,17 +23,6 @@ jobs: - name: yarn install run: | yarn install - - name: Build packer dist for cypress - run: | - yarn prepare:packer - - name: yarn install cypress - run: | - cd e2e-tests - yarn install - - name: Run Cypress tests - run: | - cd e2e-tests - yarn test:ci - name: Integration tests run: | cd integration-tests @@ -99,28 +89,7 @@ jobs: ORACLE_PASSWORD: Pwd2020Db ports: - '15006:1521' - postgres-cypress: - image: postgres - options: '--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5' - env: - POSTGRES_PASSWORD: Pwd2020Db + cassandradb: + image: 'cassandra:5.0.2' ports: - - '16000:5432' - mysql-cypress: - image: 'mysql:8.0.18' - ports: - - '16004:3306' - env: - MYSQL_ROOT_PASSWORD: Pwd2020Db - mysql-ssh-login: - image: 'ghcr.io/dbgate/mysql-ssh-login:latest' - ports: - - '16006:22' - mysql-ssh-keyfile: - image: 'ghcr.io/dbgate/mysql-ssh-keyfile:latest' - ports: - - '16008:22' - dex: - image: 'ghcr.io/dbgate/dex:latest' - ports: - - '16009:5556' + - '15942:9042' diff --git a/.gitignore b/.gitignore index 40255d24e..f73d9ff82 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ yarn-error.log* packages/api/src/packagedPluginsContent.js .VSCodeCounter -packages/web/public/*.html \ No newline at end of file +packages/web/public/*.html +e2e-tests/screenshots/*.png \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 009798031..6876c5a4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,39 @@ Builds: - linux - application for linux - win - application for Windows +### 6.2.0 +- ADDED: Query AI Assistant (Premium) +- ADDED: Cassandra database support +- ADDED: XML cell data view +- FIXED: Filtering by value in Oracle #1009 +- FIXED: Operand type clash: uniqueidentifier is incompatible with int #565 +- FIXED: UX in administration +- FIXED: Error reporting of broken connections (sometimes it caused infinite loading of data grid) +- ADDED: Azure managed identity support (Team Premium) +- ADDED: Expanded JSON cell view +- CHANGED: Open real executed query, when datagrid shows loading error + +### 6.1.6 +- FIXED: Hotfix build process for premium edition + +### 6.1.5 +- FIXED: Serious security hotfix (for Docker and NPM, when using LOGIN and PASSWORD environment variables or LOGIN_PASSWORD_xxx) +- no changes for desktop app and for Team premium edition, when using storage DB + +### 6.1.4 +- CHANGED: Show Data/Structure button in one place #1015 +- ADDED: Data view coloring (every second row) #1014 +- ADDED: Pin icon for tab in preview mode (#1013) +- FIXED: Pin icon misplaced #1007 +- ADDED: Set client name when connecting to redis #1004 +- ADDED: Redis loading keys optimalization #1002 +- ADDED: Browse redis keys with preview with keyboard +- FIXED: Cannot expand tables and views returned from search #1000 +- ADDED: Expand all/Collapse all/Expand document commands in MongoDB JSON view #976 +- ADDED: Configurable page size for MongoDB collection #976 +- ADDED: Redis - SSL connection +- ADDED: Redis JSON format for String values #852 + ### 6.1.3 - FIXED: Fulltext search now shows correctly columns and SQL code lines - ADDED: Configuration of SSH tunnel local host (IPv4 vs IPv6). Should fix majority of SSH tunnel problems diff --git a/README.md b/README.md index 41d301e94..4a3591a49 100644 --- a/README.md +++ b/README.md @@ -54,13 +54,15 @@ DbGate is licensed under GPL-3.0 license and is free to use for any purpose. ## Features +* Browse table data with many filtering options, Excel-like filters, multi-value filters * Table data editing, with SQL change script preview * Edit table schema, indexes, primary and foreign keys * Compare and synchronize database structure * ER diagram -* Light and dark theme -* Master/detail views, foreign key lookups -* Query designer +* Light and dark theme, next themes available as plugins from github community +* Huge support for work with related data - master/detail views, foreign key lookups, expanding columns from related tables in flat data view +* Query designer - visual SQL query builder without writing SQL code. Complex conditions like WHERE NOT EXISTS. +* Query perspectives – innovative nested table view over complex relational data, something like query designer on MongoDB databases * Form view for comfortable work with tables with many columns * JSON view on MongoDB collections * Explore tables, views, procedures, functions, MongoDB collections @@ -72,13 +74,13 @@ DbGate is licensed under GPL-3.0 license and is free to use for any purpose. * Mongo JavaScript editor, execute Mongo script (with NodeJs syntax) * Redis tree view, generate script from keys, run Redis script * Runs as application for Windows, Linux and Mac. Or in Docker container on server and in web Browser on client. -* Import, export from/to CSV, Excel, JSON, NDJSON, XML +* Import, export from/to CSV, Excel, JSON, NDJSON, XML, DBF * Archives - backup your data in NDJSON files on local filesystem (or on DbGate server, when using web application) * NDJSON data viewer and editor - browse NDJSON data, edit data and structure directly on NDJSON files. Works also for big NDSON files * Charts, export chart to HTML page +* Show GEO data on map, export map to HTML page * For detailed info, how to run DbGate in docker container, visit [docker hub](https://hub.docker.com/r/dbgate/dbgate) * Extensible plugin architecture -* Perspectives - nested table view over complex relational data, query designer on MongoDB databases ## How to contribute Any contributions are welcome. If you want to contribute without coding, consider following: diff --git a/docker-compose.yaml b/docker-compose.yaml index addc1da93..59d1bebe4 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,6 @@ # this compose file is for testing purposes only # use it for testing docker containsers built on local machine -version: "3" +version: '3' services: dbgate: build: docker @@ -15,31 +15,31 @@ services: volumes: - dbgate-data:/root/.dbgate - + # environment: # WEB_ROOT: /dbgate - # CONNECTIONS: mssql - # LABEL_mssql: MS Sql - # SERVER_mssql: mssql - # USER_mssql: sa - # PORT_mssql: 1433 - # PASSWORD_mssql: Pwd2020Db - # ENGINE_mssql: mssql@dbgate-plugin-mssql - # proxy: - # # image: nginx - # build: test/nginx - # ports: - # - 8082:80 + # CONNECTIONS: mssql + # LABEL_mssql: MS Sql + # SERVER_mssql: mssql + # USER_mssql: sa + # PORT_mssql: 1433 + # PASSWORD_mssql: Pwd2020Db + # ENGINE_mssql: mssql@dbgate-plugin-mssql + proxy: + # image: nginx + build: test/nginx + ports: + - 8082:80 - # volumes: - # - /home/jena/test/chinook:/mnt/sqt - # environment: - # CONNECTIONS: sqlite + volumes: + - /home/jena/test/chinook:/mnt/sqt + environment: + CONNECTIONS: sqlite - # LABEL_sqlite: sqt - # FILE_sqlite: /mnt/sqt/Chinook.db - # ENGINE_sqlite: sqlite@dbgate-plugin-sqlite + LABEL_sqlite: sqt + FILE_sqlite: /mnt/sqt/Chinook.db + ENGINE_sqlite: sqlite@dbgate-plugin-sqlite # mssql: # image: mcr.microsoft.com/mssql/server @@ -51,4 +51,5 @@ services: volumes: dbgate-data: - driver: local \ No newline at end of file + driver: local + diff --git a/e2e-tests/containers/dex/dex-config.yaml b/e2e-tests/containers/dex/dex-config.yaml index 190200844..f93a58323 100644 --- a/e2e-tests/containers/dex/dex-config.yaml +++ b/e2e-tests/containers/dex/dex-config.yaml @@ -17,6 +17,11 @@ staticClients: enablePasswordDB: true staticPasswords: - email: "test@example.com" + emailVerified: true hash: "$2y$10$JcmlXnV1y7.egUdKwYNbseOnqYVIGc323gtvvHh4ZuSPZB30veYZy" username: "test" userID: "1234" + allowedScopes: + - openid + - email + - profile diff --git a/e2e-tests/cypress.config.js b/e2e-tests/cypress.config.js index 74b9fd3f1..e4f88959f 100644 --- a/e2e-tests/cypress.config.js +++ b/e2e-tests/cypress.config.js @@ -3,9 +3,13 @@ const killPort = require('kill-port'); const { clearTestingData } = require('./e2eTestTools'); const waitOn = require('wait-on'); const { exec } = require('child_process'); +const fs = require('fs'); +const path = require('path'); module.exports = defineConfig({ e2e: { + // trashAssetsBeforeRuns: false, + setupNodeEvents(on, config) { // implement node event listeners here @@ -14,7 +18,11 @@ module.exports = defineConfig({ // console.log('********************* DETAILS *********************', JSON.stringify(details)); if (config.isInteractive) { - await killPort(3000); + try { + await killPort(3000); + } catch (e) { + console.warn('Error killing process on port 3000:', e.message); + } switch (details.fileName) { case 'add-connection': serverProcess = exec('yarn start:add-connection'); @@ -28,6 +36,9 @@ module.exports = defineConfig({ case 'browse-data': serverProcess = exec('yarn start:browse-data'); break; + case 'team': + serverProcess = exec('yarn start:team'); + break; } await waitOn({ resources: ['http://localhost:3000'] }); @@ -39,6 +50,17 @@ module.exports = defineConfig({ }); } }); + + on('after:screenshot', details => { + if (details.name) { + fs.renameSync(details.path, path.resolve(__dirname, `screenshots/${details.name}.png`)); + } + }); + // on('task', { + // renameFile({ from, to }) { + // fs.renameSync(from, to); + // }, + // }); }, }, }); diff --git a/e2e-tests/cypress/e2e/add-connection.cy.js b/e2e-tests/cypress/e2e/add-connection.cy.js index 00cfa70b7..3b71770fb 100644 --- a/e2e-tests/cypress/e2e/add-connection.cy.js +++ b/e2e-tests/cypress/e2e/add-connection.cy.js @@ -1,15 +1,19 @@ const path = require('path'); +beforeEach(() => { + cy.visit('http://localhost:3000'); + cy.viewport(1200, 900); +}); + describe('Add connection', () => { it('successfully loads', () => { - cy.visit('http://localhost:3000'); cy.contains('Database not selected'); }); it('adds connection', () => { - cy.visit('http://localhost:3000'); // cy.get('[data-testid=ConnectionList_buttonNewConnection]').click(); cy.get('[data-testid=ConnectionDriverFields_connectionType]').select('MySQL'); + cy.themeshot('connection'); cy.get('[data-testid=ConnectionDriverFields_user]').clear().type('root'); cy.get('[data-testid=ConnectionDriverFields_password]').clear().type('Pwd2020Db'); cy.get('[data-testid=ConnectionDriverFields_port]').clear().type('16004'); @@ -26,7 +30,6 @@ describe('Add connection', () => { }); it('SSH connection - user + password', () => { - cy.visit('http://localhost:3000'); cy.contains('Connections'); // cy.realPress('F1'); @@ -44,14 +47,13 @@ describe('Add connection', () => { cy.get('[data-testid=ConnectionSshTunnelFields_useSshTunnel]').check(); cy.get('[data-testid=ConnectionSshTunnelFields_sshLogin]').clear().type('root'); cy.get('[data-testid=ConnectionSshTunnelFields_sshPassword]').clear().type('root'); - cy.get('[data-testid=ConnectionSshTunnelFields_sshPort]').clear().type('16006'); + cy.get('[data-testid=ConnectionSshTunnelFields_sshPort]').clear().type('16012'); cy.get('[data-testid=ConnectionTab_buttonSave]').click(); cy.get('[data-testid=ConnectionTab_buttonConnect]').click(); cy.contains('performance_schema'); }); it('SSH connection - keyfile', () => { - cy.visit('http://localhost:3000'); cy.contains('Connections'); // cy.realPress('F1'); @@ -80,8 +82,6 @@ describe('Add connection', () => { }); it('ask password - mysql', () => { - cy.visit('http://localhost:3000'); - cy.get('[data-testid=ConnectionList_buttonNewConnection]').click(); cy.get('[data-testid=ConnectionDriverFields_connectionType]').select('MySQL'); cy.get('[data-testid=ConnectionDriverFields_user]').clear().type('root'); diff --git a/e2e-tests/cypress/e2e/browse-data.cy.js b/e2e-tests/cypress/e2e/browse-data.cy.js index 8983c441e..331c8040a 100644 --- a/e2e-tests/cypress/e2e/browse-data.cy.js +++ b/e2e-tests/cypress/e2e/browse-data.cy.js @@ -1,9 +1,48 @@ -describe('Data browser data', () => { - it('Load table data', () => { - cy.visit('http://localhost:3000'); +Cypress.on('uncaught:exception', (err, runnable) => { + // if the error message matches the one about WorkerGlobalScope importScripts + if (err.message.includes("Failed to execute 'importScripts' on 'WorkerGlobalScope'")) { + // return false to let Cypress know we intentionally want to ignore this error + return false; + } + // otherwise let Cypress throw the error +}); +beforeEach(() => { + cy.visit('http://localhost:3000'); + cy.viewport(1250, 900); +}); + +describe('Data browser data', () => { + it('Export window', () => { cy.contains('MySql-connection').click(); - cy.contains('Chinook').click(); + cy.contains('MyChinook').rightclick(); + cy.contains('Export').click(); + cy.wait(1000); + // cy.testid('SourceTargetConfig_buttonCurrentArchive_target').click(); + cy.testid('FormTablesSelect_buttonAll_tables').click(); + // cy.wait(4000); + // cy.contains('All tables').click(); + cy.contains('Run').click(); + cy.contains('Finished job script'); + cy.contains('Album.csv'); + cy.testid('WidgetIconPanel_database').click(); + cy.themeshot('exportcsv'); + }); + + it('Data archive editor - macros', () => { + cy.testid('WidgetIconPanel_archive').click(); + cy.contains('Album').click(); + cy.testid('DataGrid_itemFilters').click(); + cy.contains('Let There Be Rock').click(); + cy.contains('Out Of Exile').click({ shiftKey: true }); + cy.contains('Change text case').click(); + cy.contains('AUDIOSLAVE'); + cy.themeshot('freetable'); + }); + + it('Load table data', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); cy.contains('Album').click(); cy.contains('Let There Be Rock').click(); cy.contains('Rows: 347'); @@ -11,11 +50,9 @@ describe('Data browser data', () => { cy.contains('Aerosmith'); }); - it.only('Filter model', () => { - cy.visit('http://localhost:3000'); - + it('Filter model', () => { cy.contains('MySql-connection').click(); - cy.contains('Chinook').click(); + cy.contains('MyChinook').click(); cy.testid('SqlObjectList_search').clear().type('album'); cy.contains('Tables (1/11)'); cy.contains('347 rows, InnoDB'); @@ -29,10 +66,8 @@ describe('Data browser data', () => { }); it('Show raw data', () => { - cy.visit('http://localhost:3000'); - cy.contains('MySql-connection').click(); - cy.contains('Chinook').click(); + cy.contains('MyChinook').click(); cy.contains('Album').rightclick(); cy.contains('Open raw data').click(); cy.contains('Let There Be Rock').click(); @@ -40,4 +75,332 @@ describe('Data browser data', () => { cy.realPress(['Control', 'ArrowRight']); cy.contains('Aerosmith').should('not.exist'); }); + + it('Data grid screenshots', () => { + cy.contains('MySql-connection').click(); + cy.window().then(win => { + win.__changeCurrentTheme('theme-dark'); + }); + + cy.contains('MyChinook').click(); + + cy.contains('Album').click(); + cy.testid('TabsPanel_pinTabButton').click(); + cy.contains('Genre').click(); + cy.testid('TabsPanel_pinTabButton').click(); + cy.contains('Playlist').click(); + cy.testid('TabsPanel_pinTabButton').click(); + + cy.contains('Postgres-connection').click(); + cy.contains('PgChinook').click(); + cy.contains('customer').click(); + cy.contains('Leonie').click(); + cy.themeshot('datagrid'); + + cy.contains('invoice').click(); + cy.contains('invoice_line (invoice_id)').click(); + cy.themeshot('masterdetail'); + + cy.contains('9, Place Louis Barthou').click(); + cy.contains('Switch to form').click(); + cy.contains('Switch to table'); // test that we are in form view + cy.themeshot('formview'); + }); + + it('SQL Gen', () => { + cy.contains('Postgres-connection').click(); + cy.contains('PgChinook').rightclick(); + cy.contains('SQL Generator').click(); + cy.contains('Check all').click(); + cy.themeshot('sqlgen'); + }); + + it('Macros in DB', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Customer').click(); + cy.contains('Leonie').click(); + cy.contains('Ramos').click({ shiftKey: true }); + cy.testid('DataGrid_itemColumns').click(); + cy.testid('DataGrid_itemFilters').click(); + cy.testid('DataGrid_itemReferences').click(); + cy.testid('DataGrid_itemMacros').click(); + cy.contains('Change text case').click(); + cy.contains('NIELSEN'); + cy.themeshot('macros'); + }); + + it('Perspectives', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Artist').rightclick(); + cy.contains('Design perspective query').click(); + + cy.testid('PerspectiveNodeRow_check_Artist_Album').click(); + cy.testid('PerspectiveNodeRow_expand_Artist_Album').click(); + cy.testid('PerspectiveNodeRow_check_Artist_Album_Track').click(); + + // check track is loaded + cy.contains('Put The Finger On You'); + + cy.themeshot('perspective1'); + }); + + it('Query editor - code completion', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Customer').rightclick(); + cy.contains('SQL template').click(); + cy.contains('CREATE TABLE').click(); + cy.get('body').realPress('PageDown'); + cy.get('body').realType('select * from Album where Album.'); + // code completion + cy.contains('ArtistId'); + cy.themeshot('query'); + }); + + it('Query editor - join wizard', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.testid('TabsPanel_buttonNewQuery').click(); + cy.wait(1000); + cy.get('body').realType('select * from Invoice'); + cy.get('body').realPress('{enter}'); + cy.get('body').realPress(['Control', 'j']); + // JOIN wizard + cy.contains('INNER JOIN Customer ON Invoice.CustomerId = Customer.CustomerId'); + cy.themeshot('joinwizard'); + }); + + it('Mongo JSON data view', () => { + cy.contains('Mongo-connection').click(); + cy.contains('MgChinook').click(); + cy.contains('Customer').click(); + cy.testid('DataFilterControl_input_CustomerId').type('<=10{enter}'); + // test filter + cy.contains('Rows: 10'); + cy.contains('Helena').rightclick(); + cy.contains('Open query').click(); + cy.wait(1000); + cy.contains('Execute').click(); + cy.testid('WidgetIconPanel_cell-data').click(); + // test JSON view + cy.contains('Country: "Brazil"'); + cy.themeshot('mongoquery'); + }); + + it('SQL preview', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Customer').rightclick(); + cy.contains('Show SQL').click(); + // index should be part of create script + cy.contains('CREATE INDEX `IFK_CustomerSupportRepId`'); + cy.themeshot('sqlpreview'); + }); + + it('Query designer', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.testid('WidgetIconPanel_file').click(); + cy.contains('customer').click(); + // cy.contains('left join').rightclick(); + cy.themeshot('querydesigner'); + }); + + it('Database diagram', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.testid('WidgetIconPanel_file').click(); + cy.contains('chinook-diagram').click(); + cy.testid('WidgetIconPanel_file').click(); + // check diagram is shown + cy.contains('MediaTypeId'); + cy.themeshot('diagram'); + }); + + it('Charts', () => { + cy.testid('WidgetIconPanel_file').click(); + cy.contains('pie-chart').click(); + cy.contains('line-chart').click(); + cy.testid('TabsPanel_buttonSplit').click(); + cy.testid('WidgetIconPanel_file').click(); + cy.themeshot('charts'); + }); + + it('Keyboard configuration', () => { + cy.testid('WidgetIconPanel_settings').click(); + cy.contains('Keyboard shortcuts').click(); + cy.contains('dataForm.refresh').click(); + cy.testid('CommandModal_keyboardButton').click(); + cy.themeshot('keyboard'); + }); + + it('Command palette', () => { + cy.contains('Connections'); + cy.testid('WidgetIconPanel_menu').click(); + cy.contains('Tools').click(); + cy.contains('Command palette').click(); + // cy.realPress('F1'); + cy.realPress('PageDown'); + cy.realPress('PageDown'); + cy.testid('CommandPalette_main').themeshot('commandpalette', { padding: 50 }); + }); + + it('Show map', () => { + cy.contains('Postgres-connection').click(); + cy.contains('PgGeoData').click(); + cy.contains('cities').click(); + // clicking column header doesn't work, TODO FIX in app!!! + // cy.contains('location').click(); + cy.contains('14.2').click(); + cy.contains('13.9').click({ shiftKey: true }); + cy.testid('WidgetIconPanel_cell-data').click(); + cy.wait(2000); + cy.themeshot('map'); + }); + + it('Search in connections', () => { + cy.testid('ConnectionList_search').type('my'); + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + + cy.testid('SqlObjectList_search').type('album'); + cy.contains('Album').click(); + cy.testid('SqlObjectList_searchMenuDropDown').click(); + cy.contains('Column name').click(); + cy.themeshot('connsearch'); + }); + + it('Plugin tab', () => { + cy.testid('WidgetIconPanel_plugins').click(); + cy.contains('dbgate-plugin-theme-total-white').click(); + // text from plugin markdown + cy.contains('Total white theme'); + // wait for load logos + cy.wait(2000); + cy.themeshot('plugin'); + }); + + it('Edit mongo data JSON', () => { + // TODO FIX: Missing button+ctx menu Revert all changes, missing button+ctx menu add document + // TODO: Dark theme - not visible changed and deleted document + cy.contains('Mongo-connection').click(); + cy.contains('MgChinook').click(); + cy.contains('Customer').rightclick(); + cy.contains('Open JSON').click(); + cy.contains('Leonie').rightclick(); + cy.contains('Edit document').click(); + // cy.focused() + // .type('{downArrow}'.repeat(11)) + // .type('{rightarrow}'.repeat(14)) + // .type('{del}'.repeat(7)) // 4*delete + // .type('Italy'); // type "Italy" + + Array.from({ length: 11 }).forEach(() => cy.realPress('ArrowDown')); + Array.from({ length: 14 }).forEach(() => cy.realPress('ArrowRight')); + Array.from({ length: 7 }).forEach(() => cy.realPress('Delete')); + cy.realType('Italy'); + cy.testid('EditJsonModal_saveButton').click(); + + cy.contains('Helena').rightclick(); + cy.contains('Delete document').click(); + cy.contains('Save').click(); + cy.themeshot('mongosave'); + }); + + it('Edit mongo data JSON', () => { + // TODO FIX: Auto expand cell view + cy.contains('Mongo-connection').click(); + cy.contains('MgRivers').click(); + cy.contains('RiverInfo').click(); + cy.testid('ColumnManagerRow_expand_countries').click(); + cy.testid('ColumnManagerRow_checkbox_countries.0').click(); + cy.testid('ColumnManagerRow_checkbox_countries.1').click(); + cy.testid('ColumnManagerRow_checkbox__id').click(); + cy.testid('DataFilterControl_input_countries.1').type('EXISTS{enter}'); + cy.testid('WidgetIconPanel_cell-data').click(); + cy.themeshot('collection'); + }); + + it('Table structure editor', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Customer').rightclick(); + cy.contains('Open structure').click(); + cy.contains('varchar(40)'); + cy.themeshot('structure'); + cy.contains('EmployeeId').click(); + cy.contains('Ref column - Employee'); + cy.themeshot('fkeditor'); + }); + + it('Compare database', () => { + // TODO FIX: SQL diff is not dark in dark mode + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('MyChangedChinook').rightclick(); + cy.contains('Compare with').click(); + cy.testid('CompareModelTab_gridObjects_Customer_Customer').click(); + cy.testid('WidgetIconPanel_database').click(); + cy.testid('CompareModelTab_tabDdl').click(); + cy.themeshot('dbcompare'); + cy.contains('Settings').click(); + cy.testid('CompareModelTab_tabOperations').click(); + cy.themeshot('comparesettings'); + }); + + it('Query editor - AI assistant', () => { + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.testid('TabsPanel_buttonNewQuery').click(); + cy.testid('QueryTab_switchAiAssistantButton').click(); + cy.testid('QueryAiAssistant_allowSendToAiServiceButton').click(); + cy.testid('ConfirmModal_okButton').click(); + cy.testid('QueryAiAssistant_promptInput').type('album names'); + cy.testid('QueryAiAssistant_queryFromQuestionButton').click(); + cy.contains('Use this').click(); + cy.testid('QueryTab_executeButton').click(); + cy.contains('Balls to the Wall'); + cy.themeshot('aiassistant'); + }); + + it('Modify data', () => { + // TODO FIX: delete references cascade not working + cy.contains('MySql-connection').click(); + cy.contains('MyChinook').click(); + cy.contains('Employee').click(); + cy.contains('Rows: 8'); + + cy.contains('Laura').click(); + cy.contains('Laura').click(); + cy.get('body').realType('Jane'); + // cy.contains('Peacock').click(); + // cy.testid('TableDataTab_deleteSelectedRows').click(); + cy.contains('King').click(); + cy.testid('TableDataTab_deleteSelectedRows').click(); + cy.testid('TableDataTab_insertNewRow').click(); + cy.get('body').realType('Novak'); + cy.get('body').realPress('{enter}'); + cy.realPress(['ArrowRight']); + cy.get('body').realType('Karel'); + cy.testid('TableDataTab_save').click(); + cy.contains('INSERT INTO `Employee`'); + cy.contains("SET `FirstName`='Jane'"); + cy.contains('DELETE FROM `Employee`'); + cy.themeshot('modifydata'); + + // cy.testid('ConfirmSqlModal_okButton').click(); + // cy.contains('Cannot delete or update a parent row') + // cy.testid('ConfirmSqlModal_okButton').click(); + + // cy.testid('TableDataTab_save').click(); + // cy.testid('ConfirmSqlModal_deleteReferencesCascade').click(); + // cy.testid('ConfirmSqlModal_okButton').click(); + + cy.testid('ConfirmSqlModal_okButton').click(); + + cy.contains('Novak'); + cy.contains('Rows: 8'); + }); }); diff --git a/e2e-tests/cypress/e2e/team.cy.js b/e2e-tests/cypress/e2e/team.cy.js new file mode 100644 index 000000000..a1f03a2d4 --- /dev/null +++ b/e2e-tests/cypress/e2e/team.cy.js @@ -0,0 +1,82 @@ +beforeEach(() => { + cy.visit('http://localhost:3000'); + cy.viewport(1250, 900); +}); + +describe('Team edition tests', () => { + it('Team edition screens', () => { + cy.testid('LoginPage_linkAdmin').click(); + cy.testid('LoginPage_password').type('adminpwd'); + cy.testid('LoginPage_submitLogin').click(); + + cy.testid('AdminMenuWidget_itemConnections').click(); + cy.contains('New connection').click(); + cy.contains('New connection').click(); + cy.contains('New connection').click(); + cy.testid('ConnectionDriverFields_connectionType').select('PostgreSQL'); + cy.themeshot('connadmin'); + + cy.testid('AdminMenuWidget_itemRoles').click(); + cy.contains('Permissions').click(); + cy.themeshot('roleadmin'); + + cy.testid('AdminMenuWidget_itemAuthentication').click(); + cy.contains('Add authentication').click(); + cy.contains('Use database login').click(); + cy.contains('Add authentication').click(); + cy.contains('OAuth 2.0').click(); + cy.themeshot('authadmin'); + }); + + it('OAuth authentication', () => { + cy.testid('LoginPage_linkAdmin').click(); + cy.testid('LoginPage_password').type('adminpwd'); + cy.testid('LoginPage_submitLogin').click(); + cy.testid('AdminMenuWidget_itemAuthentication').click(); + // cy.testid('AdminAuthForm_disableButton_local').click(); + // cy.testid('AdminAuthForm_disableButton_none').click(); + + // fill OAuth + cy.contains('Add authentication').click(); + cy.contains('OAuth 2.0').click(); + cy.testid('AdminAuthForm_oauthAuth_oauth').type('http://localhost:16009/dex/auth'); + cy.testid('AdminAuthForm_oauthToken_oauth').type('http://localhost:16009/dex/token'); + cy.testid('AdminAuthForm_oauthScope_oauth').type('openid email profile'); + cy.testid('AdminAuthForm_oauthClient_oauth').type('my-app'); + cy.testid('AdminAuthForm_oauthClientSecret_oauth').type('my-secret'); + cy.testid('AdminAuthForm_oauthLoginField_oauth').type('name'); + cy.testid('AdminAuthForm_oauthSaveNotDefinedLogins_oauth').click(); + cy.testid('AdminAuthForm_oauthEmailField_oauth').type('email'); + cy.testid('AdminAuthTab_saveButton').click(); + + cy.testid('WidgetIconPanel_menu').click(); + cy.contains('File').click(); + cy.contains('Logout').click(); + cy.testid('LoginPage_linkRegularUser').click(); + + // login two times + for (let index of [1, 2]) { + // login as OAuth + cy.testid('LoginPage_loginButton_OAuth 2.0').click(); + + // login on DEX + cy.get('#login').clear().type('test@example.com'); + cy.get('#password').clear().type('test'); + cy.get('#submit-login').click(); + + // logout + cy.testid('WidgetIconPanel_menu').click(); + cy.contains('File').click(); + cy.contains('Logout').click(); + cy.testid('NotLoggedPage_loginButton').click(); + } + + // Logout and login again as admin + cy.testid('LoginPage_linkAdmin').click(); + cy.testid('LoginPage_password').type('adminpwd'); + cy.testid('LoginPage_submitLogin').click(); + cy.testid('AdminMenuWidget_itemUsers').click(); + cy.contains('test@example.com'); + cy.contains('Rows: 1'); + }); +}); diff --git a/e2e-tests/cypress/support/commands.js b/e2e-tests/cypress/support/commands.js index c4b3d0399..9723f5e03 100644 --- a/e2e-tests/cypress/support/commands.js +++ b/e2e-tests/cypress/support/commands.js @@ -1,3 +1,5 @@ +const path = require('path'); + // *********************************************** // This example commands.js shows you how to // create various custom commands and overwrite @@ -27,3 +29,65 @@ Cypress.Commands.add('testid', (testId, options = {}) => { return cy.get(`[data-testid="${testId}"]`, options); }); + +Cypress.Commands.add( + 'themeshot', + { + prevSubject: 'optional', + }, + (subject, file, options) => { + cy.window().then(win => { + win.__changeCurrentTheme('theme-dark'); + }); + + // cy.screenshot(`${file}-dark`, { + // onAfterScreenshot: (doc, props) => { + // cy.task('renameFile', { + // from: props.path, + // to: path.resolve(__dirname, `../../screenshots/${file}-dark.png`), + // }); + + // // fs.rename(props.path, path.resolve(path.join(__dirname, `../../screenshots/${file}-dark.png`))); + // }, + // }); + + if (subject) { + cy.wrap(subject).screenshot(`${file}-dark`, options); + } else { + cy.screenshot(`${file}-dark`, options); + } + // .then(props => { + // return cy.task('renameFile', { + // from: props.path, + // to: path.resolve(__dirname, `../../screenshots/${file}-dark.png`), + // }); + // }); + + cy.window().then(win => { + win.__changeCurrentTheme('theme-light'); + }); + + if (subject) { + cy.wrap(subject).screenshot(`${file}-light`, options); + } else { + cy.screenshot(`${file}-light`, options); + } + // .then(props => { + // return cy.task('renameFile', { + // from: props.path, + // to: path.resolve(__dirname, `../../screenshots/${file}-light.png`), + // }); + // }); + + // cy.screenshot(`${file}-light`, { + // onAfterScreenshot: (doc, props) => { + // cy.task('renameFile', { + // from: props.path, + // to: path.resolve(__dirname, `../../screenshots/${file}-light.png`), + // }); + + // // fs.rename(props.path, path.resolve(path.join(__dirname, `../../screenshots/${file}-light.png`))); + // }, + // }); + } +); diff --git a/e2e-tests/data/chinook-jsonl/Album.jsonl b/e2e-tests/data/chinook-jsonl/Album.jsonl new file mode 100644 index 000000000..7779a97f5 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Album.jsonl @@ -0,0 +1,347 @@ +{"AlbumId":1,"Title":"For Those About To Rock We Salute You","ArtistId":1} +{"AlbumId":2,"Title":"Balls to the Wall","ArtistId":2} +{"AlbumId":3,"Title":"Restless and Wild","ArtistId":2} +{"AlbumId":4,"Title":"Let There Be Rock","ArtistId":1} +{"AlbumId":5,"Title":"Big Ones","ArtistId":3} +{"AlbumId":6,"Title":"Jagged Little Pill","ArtistId":4} +{"AlbumId":7,"Title":"Facelift","ArtistId":5} +{"AlbumId":8,"Title":"Warner 25 Anos","ArtistId":6} +{"AlbumId":9,"Title":"Plays Metallica By Four Cellos","ArtistId":7} +{"AlbumId":10,"Title":"Audioslave","ArtistId":8} +{"AlbumId":11,"Title":"Out Of Exile","ArtistId":8} +{"AlbumId":12,"Title":"BackBeat Soundtrack","ArtistId":9} +{"AlbumId":13,"Title":"The Best Of Billy Cobham","ArtistId":10} +{"AlbumId":14,"Title":"Alcohol Fueled Brewtality Live! [Disc 1]","ArtistId":11} +{"AlbumId":15,"Title":"Alcohol Fueled Brewtality Live! [Disc 2]","ArtistId":11} +{"AlbumId":16,"Title":"Black Sabbath","ArtistId":12} +{"AlbumId":17,"Title":"Black Sabbath Vol. 4 (Remaster)","ArtistId":12} +{"AlbumId":18,"Title":"Body Count","ArtistId":13} +{"AlbumId":19,"Title":"Chemical Wedding","ArtistId":14} +{"AlbumId":20,"Title":"The Best Of Buddy Guy - The Millenium Collection","ArtistId":15} +{"AlbumId":21,"Title":"Prenda Minha","ArtistId":16} +{"AlbumId":22,"Title":"Sozinho Remix Ao Vivo","ArtistId":16} +{"AlbumId":23,"Title":"Minha Historia","ArtistId":17} +{"AlbumId":24,"Title":"Afrociberdelia","ArtistId":18} +{"AlbumId":25,"Title":"Da Lama Ao Caos","ArtistId":18} +{"AlbumId":26,"Title":"Acústico MTV [Live]","ArtistId":19} +{"AlbumId":27,"Title":"Cidade Negra - Hits","ArtistId":19} +{"AlbumId":28,"Title":"Na Pista","ArtistId":20} +{"AlbumId":29,"Title":"Axé Bahia 2001","ArtistId":21} +{"AlbumId":30,"Title":"BBC Sessions [Disc 1] [Live]","ArtistId":22} +{"AlbumId":31,"Title":"Bongo Fury","ArtistId":23} +{"AlbumId":32,"Title":"Carnaval 2001","ArtistId":21} +{"AlbumId":33,"Title":"Chill: Brazil (Disc 1)","ArtistId":24} +{"AlbumId":34,"Title":"Chill: Brazil (Disc 2)","ArtistId":6} +{"AlbumId":35,"Title":"Garage Inc. (Disc 1)","ArtistId":50} +{"AlbumId":36,"Title":"Greatest Hits II","ArtistId":51} +{"AlbumId":37,"Title":"Greatest Kiss","ArtistId":52} +{"AlbumId":38,"Title":"Heart of the Night","ArtistId":53} +{"AlbumId":39,"Title":"International Superhits","ArtistId":54} +{"AlbumId":40,"Title":"Into The Light","ArtistId":55} +{"AlbumId":41,"Title":"Meus Momentos","ArtistId":56} +{"AlbumId":42,"Title":"Minha História","ArtistId":57} +{"AlbumId":43,"Title":"MK III The Final Concerts [Disc 1]","ArtistId":58} +{"AlbumId":44,"Title":"Physical Graffiti [Disc 1]","ArtistId":22} +{"AlbumId":45,"Title":"Sambas De Enredo 2001","ArtistId":21} +{"AlbumId":46,"Title":"Supernatural","ArtistId":59} +{"AlbumId":47,"Title":"The Best of Ed Motta","ArtistId":37} +{"AlbumId":48,"Title":"The Essential Miles Davis [Disc 1]","ArtistId":68} +{"AlbumId":49,"Title":"The Essential Miles Davis [Disc 2]","ArtistId":68} +{"AlbumId":50,"Title":"The Final Concerts (Disc 2)","ArtistId":58} +{"AlbumId":51,"Title":"Up An' Atom","ArtistId":69} +{"AlbumId":52,"Title":"Vinícius De Moraes - Sem Limite","ArtistId":70} +{"AlbumId":53,"Title":"Vozes do MPB","ArtistId":21} +{"AlbumId":54,"Title":"Chronicle, Vol. 1","ArtistId":76} +{"AlbumId":55,"Title":"Chronicle, Vol. 2","ArtistId":76} +{"AlbumId":56,"Title":"Cássia Eller - Coleçăo Sem Limite [Disc 2]","ArtistId":77} +{"AlbumId":57,"Title":"Cássia Eller - Sem Limite [Disc 1]","ArtistId":77} +{"AlbumId":58,"Title":"Come Taste The Band","ArtistId":58} +{"AlbumId":59,"Title":"Deep Purple In Rock","ArtistId":58} +{"AlbumId":60,"Title":"Fireball","ArtistId":58} +{"AlbumId":61,"Title":"Knocking at Your Back Door: The Best Of Deep Purple in the 80's","ArtistId":58} +{"AlbumId":62,"Title":"Machine Head","ArtistId":58} +{"AlbumId":63,"Title":"Purpendicular","ArtistId":58} +{"AlbumId":64,"Title":"Slaves And Masters","ArtistId":58} +{"AlbumId":65,"Title":"Stormbringer","ArtistId":58} +{"AlbumId":66,"Title":"The Battle Rages On","ArtistId":58} +{"AlbumId":67,"Title":"Vault: Def Leppard's Greatest Hits","ArtistId":78} +{"AlbumId":68,"Title":"Outbreak","ArtistId":79} +{"AlbumId":69,"Title":"Djavan Ao Vivo - Vol. 02","ArtistId":80} +{"AlbumId":70,"Title":"Djavan Ao Vivo - Vol. 1","ArtistId":80} +{"AlbumId":71,"Title":"Elis Regina-Minha História","ArtistId":41} +{"AlbumId":72,"Title":"The Cream Of Clapton","ArtistId":81} +{"AlbumId":73,"Title":"Unplugged","ArtistId":81} +{"AlbumId":74,"Title":"Album Of The Year","ArtistId":82} +{"AlbumId":75,"Title":"Angel Dust","ArtistId":82} +{"AlbumId":76,"Title":"King For A Day Fool For A Lifetime","ArtistId":82} +{"AlbumId":77,"Title":"The Real Thing","ArtistId":82} +{"AlbumId":78,"Title":"Deixa Entrar","ArtistId":83} +{"AlbumId":79,"Title":"In Your Honor [Disc 1]","ArtistId":84} +{"AlbumId":80,"Title":"In Your Honor [Disc 2]","ArtistId":84} +{"AlbumId":81,"Title":"One By One","ArtistId":84} +{"AlbumId":82,"Title":"The Colour And The Shape","ArtistId":84} +{"AlbumId":83,"Title":"My Way: The Best Of Frank Sinatra [Disc 1]","ArtistId":85} +{"AlbumId":84,"Title":"Roda De Funk","ArtistId":86} +{"AlbumId":85,"Title":"As Cançőes de Eu Tu Eles","ArtistId":27} +{"AlbumId":86,"Title":"Quanta Gente Veio Ver (Live)","ArtistId":27} +{"AlbumId":87,"Title":"Quanta Gente Veio ver--Bônus De Carnaval","ArtistId":27} +{"AlbumId":88,"Title":"Faceless","ArtistId":87} +{"AlbumId":89,"Title":"American Idiot","ArtistId":54} +{"AlbumId":90,"Title":"Appetite for Destruction","ArtistId":88} +{"AlbumId":91,"Title":"Use Your Illusion I","ArtistId":88} +{"AlbumId":92,"Title":"Use Your Illusion II","ArtistId":88} +{"AlbumId":93,"Title":"Blue Moods","ArtistId":89} +{"AlbumId":94,"Title":"A Matter of Life and Death","ArtistId":90} +{"AlbumId":95,"Title":"A Real Dead One","ArtistId":90} +{"AlbumId":96,"Title":"A Real Live One","ArtistId":90} +{"AlbumId":97,"Title":"Brave New World","ArtistId":90} +{"AlbumId":98,"Title":"Dance Of Death","ArtistId":90} +{"AlbumId":99,"Title":"Fear Of The Dark","ArtistId":90} +{"AlbumId":100,"Title":"Iron Maiden","ArtistId":90} +{"AlbumId":101,"Title":"Killers","ArtistId":90} +{"AlbumId":102,"Title":"Live After Death","ArtistId":90} +{"AlbumId":103,"Title":"Live At Donington 1992 (Disc 1)","ArtistId":90} +{"AlbumId":104,"Title":"Live At Donington 1992 (Disc 2)","ArtistId":90} +{"AlbumId":105,"Title":"No Prayer For The Dying","ArtistId":90} +{"AlbumId":106,"Title":"Piece Of Mind","ArtistId":90} +{"AlbumId":107,"Title":"Powerslave","ArtistId":90} +{"AlbumId":108,"Title":"Rock In Rio [CD1]","ArtistId":90} +{"AlbumId":109,"Title":"Rock In Rio [CD2]","ArtistId":90} +{"AlbumId":110,"Title":"Seventh Son of a Seventh Son","ArtistId":90} +{"AlbumId":111,"Title":"Somewhere in Time","ArtistId":90} +{"AlbumId":112,"Title":"The Number of The Beast","ArtistId":90} +{"AlbumId":113,"Title":"The X Factor","ArtistId":90} +{"AlbumId":114,"Title":"Virtual XI","ArtistId":90} +{"AlbumId":115,"Title":"Sex Machine","ArtistId":91} +{"AlbumId":116,"Title":"Emergency On Planet Earth","ArtistId":92} +{"AlbumId":117,"Title":"Synkronized","ArtistId":92} +{"AlbumId":118,"Title":"The Return Of The Space Cowboy","ArtistId":92} +{"AlbumId":119,"Title":"Get Born","ArtistId":93} +{"AlbumId":120,"Title":"Are You Experienced?","ArtistId":94} +{"AlbumId":121,"Title":"Surfing with the Alien (Remastered)","ArtistId":95} +{"AlbumId":122,"Title":"Jorge Ben Jor 25 Anos","ArtistId":46} +{"AlbumId":123,"Title":"Jota Quest-1995","ArtistId":96} +{"AlbumId":124,"Title":"Cafezinho","ArtistId":97} +{"AlbumId":125,"Title":"Living After Midnight","ArtistId":98} +{"AlbumId":126,"Title":"Unplugged [Live]","ArtistId":52} +{"AlbumId":127,"Title":"BBC Sessions [Disc 2] [Live]","ArtistId":22} +{"AlbumId":128,"Title":"Coda","ArtistId":22} +{"AlbumId":129,"Title":"Houses Of The Holy","ArtistId":22} +{"AlbumId":130,"Title":"In Through The Out Door","ArtistId":22} +{"AlbumId":131,"Title":"IV","ArtistId":22} +{"AlbumId":132,"Title":"Led Zeppelin I","ArtistId":22} +{"AlbumId":133,"Title":"Led Zeppelin II","ArtistId":22} +{"AlbumId":134,"Title":"Led Zeppelin III","ArtistId":22} +{"AlbumId":135,"Title":"Physical Graffiti [Disc 2]","ArtistId":22} +{"AlbumId":136,"Title":"Presence","ArtistId":22} +{"AlbumId":137,"Title":"The Song Remains The Same (Disc 1)","ArtistId":22} +{"AlbumId":138,"Title":"The Song Remains The Same (Disc 2)","ArtistId":22} +{"AlbumId":139,"Title":"A TempestadeTempestade Ou O Livro Dos Dias","ArtistId":99} +{"AlbumId":140,"Title":"Mais Do Mesmo","ArtistId":99} +{"AlbumId":141,"Title":"Greatest Hits","ArtistId":100} +{"AlbumId":142,"Title":"Lulu Santos - RCA 100 Anos De Música - Álbum 01","ArtistId":101} +{"AlbumId":143,"Title":"Lulu Santos - RCA 100 Anos De Música - Álbum 02","ArtistId":101} +{"AlbumId":144,"Title":"Misplaced Childhood","ArtistId":102} +{"AlbumId":145,"Title":"Barulhinho Bom","ArtistId":103} +{"AlbumId":146,"Title":"Seek And Shall Find: More Of The Best (1963-1981)","ArtistId":104} +{"AlbumId":147,"Title":"The Best Of Men At Work","ArtistId":105} +{"AlbumId":148,"Title":"Black Album","ArtistId":50} +{"AlbumId":149,"Title":"Garage Inc. (Disc 2)","ArtistId":50} +{"AlbumId":150,"Title":"Kill 'Em All","ArtistId":50} +{"AlbumId":151,"Title":"Load","ArtistId":50} +{"AlbumId":152,"Title":"Master Of Puppets","ArtistId":50} +{"AlbumId":153,"Title":"ReLoad","ArtistId":50} +{"AlbumId":154,"Title":"Ride The Lightning","ArtistId":50} +{"AlbumId":155,"Title":"St. Anger","ArtistId":50} +{"AlbumId":156,"Title":"...And Justice For All","ArtistId":50} +{"AlbumId":157,"Title":"Miles Ahead","ArtistId":68} +{"AlbumId":158,"Title":"Milton Nascimento Ao Vivo","ArtistId":42} +{"AlbumId":159,"Title":"Minas","ArtistId":42} +{"AlbumId":160,"Title":"Ace Of Spades","ArtistId":106} +{"AlbumId":161,"Title":"Demorou...","ArtistId":108} +{"AlbumId":162,"Title":"Motley Crue Greatest Hits","ArtistId":109} +{"AlbumId":163,"Title":"From The Muddy Banks Of The Wishkah [Live]","ArtistId":110} +{"AlbumId":164,"Title":"Nevermind","ArtistId":110} +{"AlbumId":165,"Title":"Compositores","ArtistId":111} +{"AlbumId":166,"Title":"Olodum","ArtistId":112} +{"AlbumId":167,"Title":"Acústico MTV","ArtistId":113} +{"AlbumId":168,"Title":"Arquivo II","ArtistId":113} +{"AlbumId":169,"Title":"Arquivo Os Paralamas Do Sucesso","ArtistId":113} +{"AlbumId":170,"Title":"Bark at the Moon (Remastered)","ArtistId":114} +{"AlbumId":171,"Title":"Blizzard of Ozz","ArtistId":114} +{"AlbumId":172,"Title":"Diary of a Madman (Remastered)","ArtistId":114} +{"AlbumId":173,"Title":"No More Tears (Remastered)","ArtistId":114} +{"AlbumId":174,"Title":"Tribute","ArtistId":114} +{"AlbumId":175,"Title":"Walking Into Clarksdale","ArtistId":115} +{"AlbumId":176,"Title":"Original Soundtracks 1","ArtistId":116} +{"AlbumId":177,"Title":"The Beast Live","ArtistId":117} +{"AlbumId":178,"Title":"Live On Two Legs [Live]","ArtistId":118} +{"AlbumId":179,"Title":"Pearl Jam","ArtistId":118} +{"AlbumId":180,"Title":"Riot Act","ArtistId":118} +{"AlbumId":181,"Title":"Ten","ArtistId":118} +{"AlbumId":182,"Title":"Vs.","ArtistId":118} +{"AlbumId":183,"Title":"Dark Side Of The Moon","ArtistId":120} +{"AlbumId":184,"Title":"Os Căes Ladram Mas A Caravana Năo Pára","ArtistId":121} +{"AlbumId":185,"Title":"Greatest Hits I","ArtistId":51} +{"AlbumId":186,"Title":"News Of The World","ArtistId":51} +{"AlbumId":187,"Title":"Out Of Time","ArtistId":122} +{"AlbumId":188,"Title":"Green","ArtistId":124} +{"AlbumId":189,"Title":"New Adventures In Hi-Fi","ArtistId":124} +{"AlbumId":190,"Title":"The Best Of R.E.M.: The IRS Years","ArtistId":124} +{"AlbumId":191,"Title":"Cesta Básica","ArtistId":125} +{"AlbumId":192,"Title":"Raul Seixas","ArtistId":126} +{"AlbumId":193,"Title":"Blood Sugar Sex Magik","ArtistId":127} +{"AlbumId":194,"Title":"By The Way","ArtistId":127} +{"AlbumId":195,"Title":"Californication","ArtistId":127} +{"AlbumId":196,"Title":"Retrospective I (1974-1980)","ArtistId":128} +{"AlbumId":197,"Title":"Santana - As Years Go By","ArtistId":59} +{"AlbumId":198,"Title":"Santana Live","ArtistId":59} +{"AlbumId":199,"Title":"Maquinarama","ArtistId":130} +{"AlbumId":200,"Title":"O Samba Poconé","ArtistId":130} +{"AlbumId":201,"Title":"Judas 0: B-Sides and Rarities","ArtistId":131} +{"AlbumId":202,"Title":"Rotten Apples: Greatest Hits","ArtistId":131} +{"AlbumId":203,"Title":"A-Sides","ArtistId":132} +{"AlbumId":204,"Title":"Morning Dance","ArtistId":53} +{"AlbumId":205,"Title":"In Step","ArtistId":133} +{"AlbumId":206,"Title":"Core","ArtistId":134} +{"AlbumId":207,"Title":"Mezmerize","ArtistId":135} +{"AlbumId":208,"Title":"[1997] Black Light Syndrome","ArtistId":136} +{"AlbumId":209,"Title":"Live [Disc 1]","ArtistId":137} +{"AlbumId":210,"Title":"Live [Disc 2]","ArtistId":137} +{"AlbumId":211,"Title":"The Singles","ArtistId":138} +{"AlbumId":212,"Title":"Beyond Good And Evil","ArtistId":139} +{"AlbumId":213,"Title":"Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]","ArtistId":139} +{"AlbumId":214,"Title":"The Doors","ArtistId":140} +{"AlbumId":215,"Title":"The Police Greatest Hits","ArtistId":141} +{"AlbumId":216,"Title":"Hot Rocks, 1964-1971 (Disc 1)","ArtistId":142} +{"AlbumId":217,"Title":"No Security","ArtistId":142} +{"AlbumId":218,"Title":"Voodoo Lounge","ArtistId":142} +{"AlbumId":219,"Title":"Tangents","ArtistId":143} +{"AlbumId":220,"Title":"Transmission","ArtistId":143} +{"AlbumId":221,"Title":"My Generation - The Very Best Of The Who","ArtistId":144} +{"AlbumId":222,"Title":"Serie Sem Limite (Disc 1)","ArtistId":145} +{"AlbumId":223,"Title":"Serie Sem Limite (Disc 2)","ArtistId":145} +{"AlbumId":224,"Title":"Acústico","ArtistId":146} +{"AlbumId":225,"Title":"Volume Dois","ArtistId":146} +{"AlbumId":226,"Title":"Battlestar Galactica: The Story So Far","ArtistId":147} +{"AlbumId":227,"Title":"Battlestar Galactica, Season 3","ArtistId":147} +{"AlbumId":228,"Title":"Heroes, Season 1","ArtistId":148} +{"AlbumId":229,"Title":"Lost, Season 3","ArtistId":149} +{"AlbumId":230,"Title":"Lost, Season 1","ArtistId":149} +{"AlbumId":231,"Title":"Lost, Season 2","ArtistId":149} +{"AlbumId":232,"Title":"Achtung Baby","ArtistId":150} +{"AlbumId":233,"Title":"All That You Can't Leave Behind","ArtistId":150} +{"AlbumId":234,"Title":"B-Sides 1980-1990","ArtistId":150} +{"AlbumId":235,"Title":"How To Dismantle An Atomic Bomb","ArtistId":150} +{"AlbumId":236,"Title":"Pop","ArtistId":150} +{"AlbumId":237,"Title":"Rattle And Hum","ArtistId":150} +{"AlbumId":238,"Title":"The Best Of 1980-1990","ArtistId":150} +{"AlbumId":239,"Title":"War","ArtistId":150} +{"AlbumId":240,"Title":"Zooropa","ArtistId":150} +{"AlbumId":241,"Title":"UB40 The Best Of - Volume Two [UK]","ArtistId":151} +{"AlbumId":242,"Title":"Diver Down","ArtistId":152} +{"AlbumId":243,"Title":"The Best Of Van Halen, Vol. I","ArtistId":152} +{"AlbumId":244,"Title":"Van Halen","ArtistId":152} +{"AlbumId":245,"Title":"Van Halen III","ArtistId":152} +{"AlbumId":246,"Title":"Contraband","ArtistId":153} +{"AlbumId":247,"Title":"Vinicius De Moraes","ArtistId":72} +{"AlbumId":248,"Title":"Ao Vivo [IMPORT]","ArtistId":155} +{"AlbumId":249,"Title":"The Office, Season 1","ArtistId":156} +{"AlbumId":250,"Title":"The Office, Season 2","ArtistId":156} +{"AlbumId":251,"Title":"The Office, Season 3","ArtistId":156} +{"AlbumId":252,"Title":"Un-Led-Ed","ArtistId":157} +{"AlbumId":253,"Title":"Battlestar Galactica (Classic), Season 1","ArtistId":158} +{"AlbumId":254,"Title":"Aquaman","ArtistId":159} +{"AlbumId":255,"Title":"Instant Karma: The Amnesty International Campaign to Save Darfur","ArtistId":150} +{"AlbumId":256,"Title":"Speak of the Devil","ArtistId":114} +{"AlbumId":257,"Title":"20th Century Masters - The Millennium Collection: The Best of Scorpions","ArtistId":179} +{"AlbumId":258,"Title":"House of Pain","ArtistId":180} +{"AlbumId":259,"Title":"Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro","ArtistId":36} +{"AlbumId":260,"Title":"Cake: B-Sides and Rarities","ArtistId":196} +{"AlbumId":261,"Title":"LOST, Season 4","ArtistId":149} +{"AlbumId":262,"Title":"Quiet Songs","ArtistId":197} +{"AlbumId":263,"Title":"Muso Ko","ArtistId":198} +{"AlbumId":264,"Title":"Realize","ArtistId":199} +{"AlbumId":265,"Title":"Every Kind of Light","ArtistId":200} +{"AlbumId":266,"Title":"Duos II","ArtistId":201} +{"AlbumId":267,"Title":"Worlds","ArtistId":202} +{"AlbumId":268,"Title":"The Best of Beethoven","ArtistId":203} +{"AlbumId":269,"Title":"Temple of the Dog","ArtistId":204} +{"AlbumId":270,"Title":"Carry On","ArtistId":205} +{"AlbumId":271,"Title":"Revelations","ArtistId":8} +{"AlbumId":272,"Title":"Adorate Deum: Gregorian Chant from the Proper of the Mass","ArtistId":206} +{"AlbumId":273,"Title":"Allegri: Miserere","ArtistId":207} +{"AlbumId":274,"Title":"Pachelbel: Canon & Gigue","ArtistId":208} +{"AlbumId":275,"Title":"Vivaldi: The Four Seasons","ArtistId":209} +{"AlbumId":276,"Title":"Bach: Violin Concertos","ArtistId":210} +{"AlbumId":277,"Title":"Bach: Goldberg Variations","ArtistId":211} +{"AlbumId":278,"Title":"Bach: The Cello Suites","ArtistId":212} +{"AlbumId":279,"Title":"Handel: The Messiah (Highlights)","ArtistId":213} +{"AlbumId":280,"Title":"The World of Classical Favourites","ArtistId":214} +{"AlbumId":281,"Title":"Sir Neville Marriner: A Celebration","ArtistId":215} +{"AlbumId":282,"Title":"Mozart: Wind Concertos","ArtistId":216} +{"AlbumId":283,"Title":"Haydn: Symphonies 99 - 104","ArtistId":217} +{"AlbumId":284,"Title":"Beethoven: Symhonies Nos. 5 & 6","ArtistId":218} +{"AlbumId":285,"Title":"A Soprano Inspired","ArtistId":219} +{"AlbumId":286,"Title":"Great Opera Choruses","ArtistId":220} +{"AlbumId":287,"Title":"Wagner: Favourite Overtures","ArtistId":221} +{"AlbumId":288,"Title":"Fauré: Requiem, Ravel: Pavane & Others","ArtistId":222} +{"AlbumId":289,"Title":"Tchaikovsky: The Nutcracker","ArtistId":223} +{"AlbumId":290,"Title":"The Last Night of the Proms","ArtistId":224} +{"AlbumId":291,"Title":"Puccini: Madama Butterfly - Highlights","ArtistId":225} +{"AlbumId":292,"Title":"Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies","ArtistId":226} +{"AlbumId":293,"Title":"Pavarotti's Opera Made Easy","ArtistId":227} +{"AlbumId":294,"Title":"Great Performances - Barber's Adagio and Other Romantic Favorites for Strings","ArtistId":228} +{"AlbumId":295,"Title":"Carmina Burana","ArtistId":229} +{"AlbumId":296,"Title":"A Copland Celebration, Vol. I","ArtistId":230} +{"AlbumId":297,"Title":"Bach: Toccata & Fugue in D Minor","ArtistId":231} +{"AlbumId":298,"Title":"Prokofiev: Symphony No.1","ArtistId":232} +{"AlbumId":299,"Title":"Scheherazade","ArtistId":233} +{"AlbumId":300,"Title":"Bach: The Brandenburg Concertos","ArtistId":234} +{"AlbumId":301,"Title":"Chopin: Piano Concertos Nos. 1 & 2","ArtistId":235} +{"AlbumId":302,"Title":"Mascagni: Cavalleria Rusticana","ArtistId":236} +{"AlbumId":303,"Title":"Sibelius: Finlandia","ArtistId":237} +{"AlbumId":304,"Title":"Beethoven Piano Sonatas: Moonlight & Pastorale","ArtistId":238} +{"AlbumId":305,"Title":"Great Recordings of the Century - Mahler: Das Lied von der Erde","ArtistId":240} +{"AlbumId":306,"Title":"Elgar: Cello Concerto & Vaughan Williams: Fantasias","ArtistId":241} +{"AlbumId":307,"Title":"Adams, John: The Chairman Dances","ArtistId":242} +{"AlbumId":308,"Title":"Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington's Victory","ArtistId":243} +{"AlbumId":309,"Title":"Palestrina: Missa Papae Marcelli & Allegri: Miserere","ArtistId":244} +{"AlbumId":310,"Title":"Prokofiev: Romeo & Juliet","ArtistId":245} +{"AlbumId":311,"Title":"Strauss: Waltzes","ArtistId":226} +{"AlbumId":312,"Title":"Berlioz: Symphonie Fantastique","ArtistId":245} +{"AlbumId":313,"Title":"Bizet: Carmen Highlights","ArtistId":246} +{"AlbumId":314,"Title":"English Renaissance","ArtistId":247} +{"AlbumId":315,"Title":"Handel: Music for the Royal Fireworks (Original Version 1749)","ArtistId":208} +{"AlbumId":316,"Title":"Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande","ArtistId":248} +{"AlbumId":317,"Title":"Mozart Gala: Famous Arias","ArtistId":249} +{"AlbumId":318,"Title":"SCRIABIN: Vers la flamme","ArtistId":250} +{"AlbumId":319,"Title":"Armada: Music from the Courts of England and Spain","ArtistId":251} +{"AlbumId":320,"Title":"Mozart: Symphonies Nos. 40 & 41","ArtistId":248} +{"AlbumId":321,"Title":"Back to Black","ArtistId":252} +{"AlbumId":322,"Title":"Frank","ArtistId":252} +{"AlbumId":323,"Title":"Carried to Dust (Bonus Track Version)","ArtistId":253} +{"AlbumId":324,"Title":"Beethoven: Symphony No. 6 'Pastoral' Etc.","ArtistId":254} +{"AlbumId":325,"Title":"Bartok: Violin & Viola Concertos","ArtistId":255} +{"AlbumId":326,"Title":"Mendelssohn: A Midsummer Night's Dream","ArtistId":256} +{"AlbumId":327,"Title":"Bach: Orchestral Suites Nos. 1 - 4","ArtistId":257} +{"AlbumId":328,"Title":"Charpentier: Divertissements, Airs & Concerts","ArtistId":258} +{"AlbumId":329,"Title":"South American Getaway","ArtistId":259} +{"AlbumId":330,"Title":"Górecki: Symphony No. 3","ArtistId":260} +{"AlbumId":331,"Title":"Purcell: The Fairy Queen","ArtistId":261} +{"AlbumId":332,"Title":"The Ultimate Relexation Album","ArtistId":262} +{"AlbumId":333,"Title":"Purcell: Music for the Queen Mary","ArtistId":263} +{"AlbumId":334,"Title":"Weill: The Seven Deadly Sins","ArtistId":264} +{"AlbumId":335,"Title":"J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro","ArtistId":265} +{"AlbumId":336,"Title":"Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps","ArtistId":248} +{"AlbumId":337,"Title":"Szymanowski: Piano Works, Vol. 1","ArtistId":266} +{"AlbumId":338,"Title":"Nielsen: The Six Symphonies","ArtistId":267} +{"AlbumId":339,"Title":"Great Recordings of the Century: Paganini's 24 Caprices","ArtistId":268} +{"AlbumId":340,"Title":"Liszt - 12 Études D'Execution Transcendante","ArtistId":269} +{"AlbumId":341,"Title":"Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder","ArtistId":270} +{"AlbumId":342,"Title":"Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3","ArtistId":271} +{"AlbumId":343,"Title":"Respighi:Pines of Rome","ArtistId":226} +{"AlbumId":344,"Title":"Schubert: The Late String Quartets & String Quintet (3 CD's)","ArtistId":272} +{"AlbumId":345,"Title":"Monteverdi: L'Orfeo","ArtistId":273} +{"AlbumId":346,"Title":"Mozart: Chamber Music","ArtistId":274} +{"AlbumId":347,"Title":"Koyaanisqatsi (Soundtrack from the Motion Picture)","ArtistId":275} diff --git a/e2e-tests/data/chinook-jsonl/Artist.jsonl b/e2e-tests/data/chinook-jsonl/Artist.jsonl new file mode 100644 index 000000000..5309e9763 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Artist.jsonl @@ -0,0 +1,275 @@ +{"ArtistId":1,"Name":"AC/DC"} +{"ArtistId":2,"Name":"Accept"} +{"ArtistId":3,"Name":"Aerosmith"} +{"ArtistId":4,"Name":"Alanis Morissette"} +{"ArtistId":5,"Name":"Alice In Chains"} +{"ArtistId":6,"Name":"Antônio Carlos Jobim"} +{"ArtistId":7,"Name":"Apocalyptica"} +{"ArtistId":8,"Name":"Audioslave"} +{"ArtistId":9,"Name":"BackBeat"} +{"ArtistId":10,"Name":"Billy Cobham"} +{"ArtistId":11,"Name":"Black Label Society"} +{"ArtistId":12,"Name":"Black Sabbath"} +{"ArtistId":13,"Name":"Body Count"} +{"ArtistId":14,"Name":"Bruce Dickinson"} +{"ArtistId":15,"Name":"Buddy Guy"} +{"ArtistId":16,"Name":"Caetano Veloso"} +{"ArtistId":17,"Name":"Chico Buarque"} +{"ArtistId":18,"Name":"Chico Science & Naçăo Zumbi"} +{"ArtistId":19,"Name":"Cidade Negra"} +{"ArtistId":20,"Name":"Cláudio Zoli"} +{"ArtistId":21,"Name":"Various Artists"} +{"ArtistId":22,"Name":"Led Zeppelin"} +{"ArtistId":23,"Name":"Frank Zappa & Captain Beefheart"} +{"ArtistId":24,"Name":"Marcos Valle"} +{"ArtistId":25,"Name":"Milton Nascimento & Bebeto"} +{"ArtistId":26,"Name":"Azymuth"} +{"ArtistId":27,"Name":"Gilberto Gil"} +{"ArtistId":28,"Name":"Joăo Gilberto"} +{"ArtistId":29,"Name":"Bebel Gilberto"} +{"ArtistId":30,"Name":"Jorge Vercilo"} +{"ArtistId":31,"Name":"Baby Consuelo"} +{"ArtistId":32,"Name":"Ney Matogrosso"} +{"ArtistId":33,"Name":"Luiz Melodia"} +{"ArtistId":34,"Name":"Nando Reis"} +{"ArtistId":35,"Name":"Pedro Luís & A Parede"} +{"ArtistId":36,"Name":"O Rappa"} +{"ArtistId":37,"Name":"Ed Motta"} +{"ArtistId":38,"Name":"Banda Black Rio"} +{"ArtistId":39,"Name":"Fernanda Porto"} +{"ArtistId":40,"Name":"Os Cariocas"} +{"ArtistId":41,"Name":"Elis Regina"} +{"ArtistId":42,"Name":"Milton Nascimento"} +{"ArtistId":43,"Name":"A Cor Do Som"} +{"ArtistId":44,"Name":"Kid Abelha"} +{"ArtistId":45,"Name":"Sandra De Sá"} +{"ArtistId":46,"Name":"Jorge Ben"} +{"ArtistId":47,"Name":"Hermeto Pascoal"} +{"ArtistId":48,"Name":"Barăo Vermelho"} +{"ArtistId":49,"Name":"Edson, DJ Marky & DJ Patife Featuring Fernanda Porto"} +{"ArtistId":50,"Name":"Metallica"} +{"ArtistId":51,"Name":"Queen"} +{"ArtistId":52,"Name":"Kiss"} +{"ArtistId":53,"Name":"Spyro Gyra"} +{"ArtistId":54,"Name":"Green Day"} +{"ArtistId":55,"Name":"David Coverdale"} +{"ArtistId":56,"Name":"Gonzaguinha"} +{"ArtistId":57,"Name":"Os Mutantes"} +{"ArtistId":58,"Name":"Deep Purple"} +{"ArtistId":59,"Name":"Santana"} +{"ArtistId":60,"Name":"Santana Feat. Dave Matthews"} +{"ArtistId":61,"Name":"Santana Feat. Everlast"} +{"ArtistId":62,"Name":"Santana Feat. Rob Thomas"} +{"ArtistId":63,"Name":"Santana Feat. Lauryn Hill & Cee-Lo"} +{"ArtistId":64,"Name":"Santana Feat. The Project G&B"} +{"ArtistId":65,"Name":"Santana Feat. Maná"} +{"ArtistId":66,"Name":"Santana Feat. Eagle-Eye Cherry"} +{"ArtistId":67,"Name":"Santana Feat. Eric Clapton"} +{"ArtistId":68,"Name":"Miles Davis"} +{"ArtistId":69,"Name":"Gene Krupa"} +{"ArtistId":70,"Name":"Toquinho & Vinícius"} +{"ArtistId":71,"Name":"Vinícius De Moraes & Baden Powell"} +{"ArtistId":72,"Name":"Vinícius De Moraes"} +{"ArtistId":73,"Name":"Vinícius E Qurteto Em Cy"} +{"ArtistId":74,"Name":"Vinícius E Odette Lara"} +{"ArtistId":75,"Name":"Vinicius, Toquinho & Quarteto Em Cy"} +{"ArtistId":76,"Name":"Creedence Clearwater Revival"} +{"ArtistId":77,"Name":"Cássia Eller"} +{"ArtistId":78,"Name":"Def Leppard"} +{"ArtistId":79,"Name":"Dennis Chambers"} +{"ArtistId":80,"Name":"Djavan"} +{"ArtistId":81,"Name":"Eric Clapton"} +{"ArtistId":82,"Name":"Faith No More"} +{"ArtistId":83,"Name":"Falamansa"} +{"ArtistId":84,"Name":"Foo Fighters"} +{"ArtistId":85,"Name":"Frank Sinatra"} +{"ArtistId":86,"Name":"Funk Como Le Gusta"} +{"ArtistId":87,"Name":"Godsmack"} +{"ArtistId":88,"Name":"Guns N' Roses"} +{"ArtistId":89,"Name":"Incognito"} +{"ArtistId":90,"Name":"Iron Maiden"} +{"ArtistId":91,"Name":"James Brown"} +{"ArtistId":92,"Name":"Jamiroquai"} +{"ArtistId":93,"Name":"JET"} +{"ArtistId":94,"Name":"Jimi Hendrix"} +{"ArtistId":95,"Name":"Joe Satriani"} +{"ArtistId":96,"Name":"Jota Quest"} +{"ArtistId":97,"Name":"Joăo Suplicy"} +{"ArtistId":98,"Name":"Judas Priest"} +{"ArtistId":99,"Name":"Legiăo Urbana"} +{"ArtistId":100,"Name":"Lenny Kravitz"} +{"ArtistId":101,"Name":"Lulu Santos"} +{"ArtistId":102,"Name":"Marillion"} +{"ArtistId":103,"Name":"Marisa Monte"} +{"ArtistId":104,"Name":"Marvin Gaye"} +{"ArtistId":105,"Name":"Men At Work"} +{"ArtistId":106,"Name":"Motörhead"} +{"ArtistId":107,"Name":"Motörhead & Girlschool"} +{"ArtistId":108,"Name":"Mônica Marianno"} +{"ArtistId":109,"Name":"Mötley Crüe"} +{"ArtistId":110,"Name":"Nirvana"} +{"ArtistId":111,"Name":"O Terço"} +{"ArtistId":112,"Name":"Olodum"} +{"ArtistId":113,"Name":"Os Paralamas Do Sucesso"} +{"ArtistId":114,"Name":"Ozzy Osbourne"} +{"ArtistId":115,"Name":"Page & Plant"} +{"ArtistId":116,"Name":"Passengers"} +{"ArtistId":117,"Name":"Paul D'Ianno"} +{"ArtistId":118,"Name":"Pearl Jam"} +{"ArtistId":119,"Name":"Peter Tosh"} +{"ArtistId":120,"Name":"Pink Floyd"} +{"ArtistId":121,"Name":"Planet Hemp"} +{"ArtistId":122,"Name":"R.E.M. Feat. Kate Pearson"} +{"ArtistId":123,"Name":"R.E.M. Feat. KRS-One"} +{"ArtistId":124,"Name":"R.E.M."} +{"ArtistId":125,"Name":"Raimundos"} +{"ArtistId":126,"Name":"Raul Seixas"} +{"ArtistId":127,"Name":"Red Hot Chili Peppers"} +{"ArtistId":128,"Name":"Rush"} +{"ArtistId":129,"Name":"Simply Red"} +{"ArtistId":130,"Name":"Skank"} +{"ArtistId":131,"Name":"Smashing Pumpkins"} +{"ArtistId":132,"Name":"Soundgarden"} +{"ArtistId":133,"Name":"Stevie Ray Vaughan & Double Trouble"} +{"ArtistId":134,"Name":"Stone Temple Pilots"} +{"ArtistId":135,"Name":"System Of A Down"} +{"ArtistId":136,"Name":"Terry Bozzio, Tony Levin & Steve Stevens"} +{"ArtistId":137,"Name":"The Black Crowes"} +{"ArtistId":138,"Name":"The Clash"} +{"ArtistId":139,"Name":"The Cult"} +{"ArtistId":140,"Name":"The Doors"} +{"ArtistId":141,"Name":"The Police"} +{"ArtistId":142,"Name":"The Rolling Stones"} +{"ArtistId":143,"Name":"The Tea Party"} +{"ArtistId":144,"Name":"The Who"} +{"ArtistId":145,"Name":"Tim Maia"} +{"ArtistId":146,"Name":"Tităs"} +{"ArtistId":147,"Name":"Battlestar Galactica"} +{"ArtistId":148,"Name":"Heroes"} +{"ArtistId":149,"Name":"Lost"} +{"ArtistId":150,"Name":"U2"} +{"ArtistId":151,"Name":"UB40"} +{"ArtistId":152,"Name":"Van Halen"} +{"ArtistId":153,"Name":"Velvet Revolver"} +{"ArtistId":154,"Name":"Whitesnake"} +{"ArtistId":155,"Name":"Zeca Pagodinho"} +{"ArtistId":156,"Name":"The Office"} +{"ArtistId":157,"Name":"Dread Zeppelin"} +{"ArtistId":158,"Name":"Battlestar Galactica (Classic)"} +{"ArtistId":159,"Name":"Aquaman"} +{"ArtistId":160,"Name":"Christina Aguilera featuring BigElf"} +{"ArtistId":161,"Name":"Aerosmith & Sierra Leone's Refugee Allstars"} +{"ArtistId":162,"Name":"Los Lonely Boys"} +{"ArtistId":163,"Name":"Corinne Bailey Rae"} +{"ArtistId":164,"Name":"Dhani Harrison & Jakob Dylan"} +{"ArtistId":165,"Name":"Jackson Browne"} +{"ArtistId":166,"Name":"Avril Lavigne"} +{"ArtistId":167,"Name":"Big & Rich"} +{"ArtistId":168,"Name":"Youssou N'Dour"} +{"ArtistId":169,"Name":"Black Eyed Peas"} +{"ArtistId":170,"Name":"Jack Johnson"} +{"ArtistId":171,"Name":"Ben Harper"} +{"ArtistId":172,"Name":"Snow Patrol"} +{"ArtistId":173,"Name":"Matisyahu"} +{"ArtistId":174,"Name":"The Postal Service"} +{"ArtistId":175,"Name":"Jaguares"} +{"ArtistId":176,"Name":"The Flaming Lips"} +{"ArtistId":177,"Name":"Jack's Mannequin & Mick Fleetwood"} +{"ArtistId":178,"Name":"Regina Spektor"} +{"ArtistId":179,"Name":"Scorpions"} +{"ArtistId":180,"Name":"House Of Pain"} +{"ArtistId":181,"Name":"Xis"} +{"ArtistId":182,"Name":"Nega Gizza"} +{"ArtistId":183,"Name":"Gustavo & Andres Veiga & Salazar"} +{"ArtistId":184,"Name":"Rodox"} +{"ArtistId":185,"Name":"Charlie Brown Jr."} +{"ArtistId":186,"Name":"Pedro Luís E A Parede"} +{"ArtistId":187,"Name":"Los Hermanos"} +{"ArtistId":188,"Name":"Mundo Livre S/A"} +{"ArtistId":189,"Name":"Otto"} +{"ArtistId":190,"Name":"Instituto"} +{"ArtistId":191,"Name":"Naçăo Zumbi"} +{"ArtistId":192,"Name":"DJ Dolores & Orchestra Santa Massa"} +{"ArtistId":193,"Name":"Seu Jorge"} +{"ArtistId":194,"Name":"Sabotage E Instituto"} +{"ArtistId":195,"Name":"Stereo Maracana"} +{"ArtistId":196,"Name":"Cake"} +{"ArtistId":197,"Name":"Aisha Duo"} +{"ArtistId":198,"Name":"Habib Koité and Bamada"} +{"ArtistId":199,"Name":"Karsh Kale"} +{"ArtistId":200,"Name":"The Posies"} +{"ArtistId":201,"Name":"Luciana Souza/Romero Lubambo"} +{"ArtistId":202,"Name":"Aaron Goldberg"} +{"ArtistId":203,"Name":"Nicolaus Esterhazy Sinfonia"} +{"ArtistId":204,"Name":"Temple of the Dog"} +{"ArtistId":205,"Name":"Chris Cornell"} +{"ArtistId":206,"Name":"Alberto Turco & Nova Schola Gregoriana"} +{"ArtistId":207,"Name":"Richard Marlow & The Choir of Trinity College, Cambridge"} +{"ArtistId":208,"Name":"English Concert & Trevor Pinnock"} +{"ArtistId":209,"Name":"Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker"} +{"ArtistId":210,"Name":"Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer"} +{"ArtistId":211,"Name":"Wilhelm Kempff"} +{"ArtistId":212,"Name":"Yo-Yo Ma"} +{"ArtistId":213,"Name":"Scholars Baroque Ensemble"} +{"ArtistId":214,"Name":"Academy of St. Martin in the Fields & Sir Neville Marriner"} +{"ArtistId":215,"Name":"Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner"} +{"ArtistId":216,"Name":"Berliner Philharmoniker, Claudio Abbado & Sabine Meyer"} +{"ArtistId":217,"Name":"Royal Philharmonic Orchestra & Sir Thomas Beecham"} +{"ArtistId":218,"Name":"Orchestre Révolutionnaire et Romantique & John Eliot Gardiner"} +{"ArtistId":219,"Name":"Britten Sinfonia, Ivor Bolton & Lesley Garrett"} +{"ArtistId":220,"Name":"Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti"} +{"ArtistId":221,"Name":"Sir Georg Solti & Wiener Philharmoniker"} +{"ArtistId":222,"Name":"Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair"} +{"ArtistId":223,"Name":"London Symphony Orchestra & Sir Charles Mackerras"} +{"ArtistId":224,"Name":"Barry Wordsworth & BBC Concert Orchestra"} +{"ArtistId":225,"Name":"Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker"} +{"ArtistId":226,"Name":"Eugene Ormandy"} +{"ArtistId":227,"Name":"Luciano Pavarotti"} +{"ArtistId":228,"Name":"Leonard Bernstein & New York Philharmonic"} +{"ArtistId":229,"Name":"Boston Symphony Orchestra & Seiji Ozawa"} +{"ArtistId":230,"Name":"Aaron Copland & London Symphony Orchestra"} +{"ArtistId":231,"Name":"Ton Koopman"} +{"ArtistId":232,"Name":"Sergei Prokofiev & Yuri Temirkanov"} +{"ArtistId":233,"Name":"Chicago Symphony Orchestra & Fritz Reiner"} +{"ArtistId":234,"Name":"Orchestra of The Age of Enlightenment"} +{"ArtistId":235,"Name":"Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra"} +{"ArtistId":236,"Name":"James Levine"} +{"ArtistId":237,"Name":"Berliner Philharmoniker & Hans Rosbaud"} +{"ArtistId":238,"Name":"Maurizio Pollini"} +{"ArtistId":239,"Name":"Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett"} +{"ArtistId":240,"Name":"Gustav Mahler"} +{"ArtistId":241,"Name":"Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos"} +{"ArtistId":242,"Name":"Edo de Waart & San Francisco Symphony"} +{"ArtistId":243,"Name":"Antal Doráti & London Symphony Orchestra"} +{"ArtistId":244,"Name":"Choir Of Westminster Abbey & Simon Preston"} +{"ArtistId":245,"Name":"Michael Tilson Thomas & San Francisco Symphony"} +{"ArtistId":246,"Name":"Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker"} +{"ArtistId":247,"Name":"The King's Singers"} +{"ArtistId":248,"Name":"Berliner Philharmoniker & Herbert Von Karajan"} +{"ArtistId":249,"Name":"Sir Georg Solti, Sumi Jo & Wiener Philharmoniker"} +{"ArtistId":250,"Name":"Christopher O'Riley"} +{"ArtistId":251,"Name":"Fretwork"} +{"ArtistId":252,"Name":"Amy Winehouse"} +{"ArtistId":253,"Name":"Calexico"} +{"ArtistId":254,"Name":"Otto Klemperer & Philharmonia Orchestra"} +{"ArtistId":255,"Name":"Yehudi Menuhin"} +{"ArtistId":256,"Name":"Philharmonia Orchestra & Sir Neville Marriner"} +{"ArtistId":257,"Name":"Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart"} +{"ArtistId":258,"Name":"Les Arts Florissants & William Christie"} +{"ArtistId":259,"Name":"The 12 Cellists of The Berlin Philharmonic"} +{"ArtistId":260,"Name":"Adrian Leaper & Doreen de Feis"} +{"ArtistId":261,"Name":"Roger Norrington, London Classical Players"} +{"ArtistId":262,"Name":"Charles Dutoit & L'Orchestre Symphonique de Montréal"} +{"ArtistId":263,"Name":"Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir"} +{"ArtistId":264,"Name":"Kent Nagano and Orchestre de l'Opéra de Lyon"} +{"ArtistId":265,"Name":"Julian Bream"} +{"ArtistId":266,"Name":"Martin Roscoe"} +{"ArtistId":267,"Name":"Göteborgs Symfoniker & Neeme Järvi"} +{"ArtistId":268,"Name":"Itzhak Perlman"} +{"ArtistId":269,"Name":"Michele Campanella"} +{"ArtistId":270,"Name":"Gerald Moore"} +{"ArtistId":271,"Name":"Mela Tenenbaum, Pro Musica Prague & Richard Kapp"} +{"ArtistId":272,"Name":"Emerson String Quartet"} +{"ArtistId":273,"Name":"C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu"} +{"ArtistId":274,"Name":"Nash Ensemble"} +{"ArtistId":275,"Name":"Philip Glass Ensemble"} diff --git a/e2e-tests/data/chinook-jsonl/Customer.jsonl b/e2e-tests/data/chinook-jsonl/Customer.jsonl new file mode 100644 index 000000000..8aeb1e428 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Customer.jsonl @@ -0,0 +1,59 @@ +{"CustomerId":1,"FirstName":"Luís","LastName":"Gonçalves","Company":"Embraer - Empresa Brasileira de Aeronáutica S.A.","Address":"Av. Brigadeiro Faria Lima, 2170","City":"Săo José dos Campos","State":"SP","Country":"Brazil","PostalCode":"12227-000","Phone":"+55 (12) 3923-5555","Fax":"+55 (12) 3923-5566","Email":"luisg@embraer.com.br","SupportRepId":3} +{"CustomerId":2,"FirstName":"Leonie","LastName":"Köhler","Company":null,"Address":"Theodor-Heuss-Straße 34","City":"Stuttgart","State":null,"Country":"Germany","PostalCode":"70174","Phone":"+49 0711 2842222","Fax":null,"Email":"leonekohler@surfeu.de","SupportRepId":5} +{"CustomerId":3,"FirstName":"François","LastName":"Tremblay","Company":null,"Address":"1498 rue Bélanger","City":"Montréal","State":"QC","Country":"Canada","PostalCode":"H2G 1A7","Phone":"+1 (514) 721-4711","Fax":null,"Email":"ftremblay@gmail.com","SupportRepId":3} +{"CustomerId":4,"FirstName":"Bjřrn","LastName":"Hansen","Company":null,"Address":"Ullevĺlsveien 14","City":"Oslo","State":null,"Country":"Norway","PostalCode":"0171","Phone":"+47 22 44 22 22","Fax":null,"Email":"bjorn.hansen@yahoo.no","SupportRepId":4} +{"CustomerId":5,"FirstName":"František","LastName":"Wichterlová","Company":"JetBrains s.r.o.","Address":"Klanova 9/506","City":"Prague","State":null,"Country":"Czech Republic","PostalCode":"14700","Phone":"+420 2 4172 5555","Fax":"+420 2 4172 5555","Email":"frantisekw@jetbrains.com","SupportRepId":4} +{"CustomerId":6,"FirstName":"Helena","LastName":"Holý","Company":null,"Address":"Rilská 3174/6","City":"Prague","State":null,"Country":"Czech Republic","PostalCode":"14300","Phone":"+420 2 4177 0449","Fax":null,"Email":"hholy@gmail.com","SupportRepId":5} +{"CustomerId":7,"FirstName":"Astrid","LastName":"Gruber","Company":null,"Address":"Rotenturmstraße 4, 1010 Innere Stadt","City":"Vienne","State":null,"Country":"Austria","PostalCode":"1010","Phone":"+43 01 5134505","Fax":null,"Email":"astrid.gruber@apple.at","SupportRepId":5} +{"CustomerId":8,"FirstName":"Daan","LastName":"Peeters","Company":null,"Address":"Grétrystraat 63","City":"Brussels","State":null,"Country":"Belgium","PostalCode":"1000","Phone":"+32 02 219 03 03","Fax":null,"Email":"daan_peeters@apple.be","SupportRepId":4} +{"CustomerId":9,"FirstName":"Kara","LastName":"Nielsen","Company":null,"Address":"Sřnder Boulevard 51","City":"Copenhagen","State":null,"Country":"Denmark","PostalCode":"1720","Phone":"+453 3331 9991","Fax":null,"Email":"kara.nielsen@jubii.dk","SupportRepId":4} +{"CustomerId":10,"FirstName":"Eduardo","LastName":"Martins","Company":"Woodstock Discos","Address":"Rua Dr. Falcăo Filho, 155","City":"Săo Paulo","State":"SP","Country":"Brazil","PostalCode":"01007-010","Phone":"+55 (11) 3033-5446","Fax":"+55 (11) 3033-4564","Email":"eduardo@woodstock.com.br","SupportRepId":4} +{"CustomerId":11,"FirstName":"Alexandre","LastName":"Rocha","Company":"Banco do Brasil S.A.","Address":"Av. Paulista, 2022","City":"Săo Paulo","State":"SP","Country":"Brazil","PostalCode":"01310-200","Phone":"+55 (11) 3055-3278","Fax":"+55 (11) 3055-8131","Email":"alero@uol.com.br","SupportRepId":5} +{"CustomerId":12,"FirstName":"Roberto","LastName":"Almeida","Company":"Riotur","Address":"Praça Pio X, 119","City":"Rio de Janeiro","State":"RJ","Country":"Brazil","PostalCode":"20040-020","Phone":"+55 (21) 2271-7000","Fax":"+55 (21) 2271-7070","Email":"roberto.almeida@riotur.gov.br","SupportRepId":3} +{"CustomerId":13,"FirstName":"Fernanda","LastName":"Ramos","Company":null,"Address":"Qe 7 Bloco G","City":"Brasília","State":"DF","Country":"Brazil","PostalCode":"71020-677","Phone":"+55 (61) 3363-5547","Fax":"+55 (61) 3363-7855","Email":"fernadaramos4@uol.com.br","SupportRepId":4} +{"CustomerId":14,"FirstName":"Mark","LastName":"Philips","Company":"Telus","Address":"8210 111 ST NW","City":"Edmonton","State":"AB","Country":"Canada","PostalCode":"T6G 2C7","Phone":"+1 (780) 434-4554","Fax":"+1 (780) 434-5565","Email":"mphilips12@shaw.ca","SupportRepId":5} +{"CustomerId":15,"FirstName":"Jennifer","LastName":"Peterson","Company":"Rogers Canada","Address":"700 W Pender Street","City":"Vancouver","State":"BC","Country":"Canada","PostalCode":"V6C 1G8","Phone":"+1 (604) 688-2255","Fax":"+1 (604) 688-8756","Email":"jenniferp@rogers.ca","SupportRepId":3} +{"CustomerId":16,"FirstName":"Frank","LastName":"Harris","Company":"Google Inc.","Address":"1600 Amphitheatre Parkway","City":"Mountain View","State":"CA","Country":"USA","PostalCode":"94043-1351","Phone":"+1 (650) 253-0000","Fax":"+1 (650) 253-0000","Email":"fharris@google.com","SupportRepId":4} +{"CustomerId":17,"FirstName":"Jack","LastName":"Smith","Company":"Microsoft Corporation","Address":"1 Microsoft Way","City":"Redmond","State":"WA","Country":"USA","PostalCode":"98052-8300","Phone":"+1 (425) 882-8080","Fax":"+1 (425) 882-8081","Email":"jacksmith@microsoft.com","SupportRepId":5} +{"CustomerId":18,"FirstName":"Michelle","LastName":"Brooks","Company":null,"Address":"627 Broadway","City":"New York","State":"NY","Country":"USA","PostalCode":"10012-2612","Phone":"+1 (212) 221-3546","Fax":"+1 (212) 221-4679","Email":"michelleb@aol.com","SupportRepId":3} +{"CustomerId":19,"FirstName":"Tim","LastName":"Goyer","Company":"Apple Inc.","Address":"1 Infinite Loop","City":"Cupertino","State":"CA","Country":"USA","PostalCode":"95014","Phone":"+1 (408) 996-1010","Fax":"+1 (408) 996-1011","Email":"tgoyer@apple.com","SupportRepId":3} +{"CustomerId":20,"FirstName":"Dan","LastName":"Miller","Company":null,"Address":"541 Del Medio Avenue","City":"Mountain View","State":"CA","Country":"USA","PostalCode":"94040-111","Phone":"+1 (650) 644-3358","Fax":null,"Email":"dmiller@comcast.com","SupportRepId":4} +{"CustomerId":21,"FirstName":"Kathy","LastName":"Chase","Company":null,"Address":"801 W 4th Street","City":"Reno","State":"NV","Country":"USA","PostalCode":"89503","Phone":"+1 (775) 223-7665","Fax":null,"Email":"kachase@hotmail.com","SupportRepId":5} +{"CustomerId":22,"FirstName":"Heather","LastName":"Leacock","Company":null,"Address":"120 S Orange Ave","City":"Orlando","State":"FL","Country":"USA","PostalCode":"32801","Phone":"+1 (407) 999-7788","Fax":null,"Email":"hleacock@gmail.com","SupportRepId":4} +{"CustomerId":23,"FirstName":"John","LastName":"Gordon","Company":null,"Address":"69 Salem Street","City":"Boston","State":"MA","Country":"USA","PostalCode":"2113","Phone":"+1 (617) 522-1333","Fax":null,"Email":"johngordon22@yahoo.com","SupportRepId":4} +{"CustomerId":24,"FirstName":"Frank","LastName":"Ralston","Company":null,"Address":"162 E Superior Street","City":"Chicago","State":"IL","Country":"USA","PostalCode":"60611","Phone":"+1 (312) 332-3232","Fax":null,"Email":"fralston@gmail.com","SupportRepId":3} +{"CustomerId":25,"FirstName":"Victor","LastName":"Stevens","Company":null,"Address":"319 N. Frances Street","City":"Madison","State":"WI","Country":"USA","PostalCode":"53703","Phone":"+1 (608) 257-0597","Fax":null,"Email":"vstevens@yahoo.com","SupportRepId":5} +{"CustomerId":26,"FirstName":"Richard","LastName":"Cunningham","Company":null,"Address":"2211 W Berry Street","City":"Fort Worth","State":"TX","Country":"USA","PostalCode":"76110","Phone":"+1 (817) 924-7272","Fax":null,"Email":"ricunningham@hotmail.com","SupportRepId":4} +{"CustomerId":27,"FirstName":"Patrick","LastName":"Gray","Company":null,"Address":"1033 N Park Ave","City":"Tucson","State":"AZ","Country":"USA","PostalCode":"85719","Phone":"+1 (520) 622-4200","Fax":null,"Email":"patrick.gray@aol.com","SupportRepId":4} +{"CustomerId":28,"FirstName":"Julia","LastName":"Barnett","Company":null,"Address":"302 S 700 E","City":"Salt Lake City","State":"UT","Country":"USA","PostalCode":"84102","Phone":"+1 (801) 531-7272","Fax":null,"Email":"jubarnett@gmail.com","SupportRepId":5} +{"CustomerId":29,"FirstName":"Robert","LastName":"Brown","Company":null,"Address":"796 Dundas Street West","City":"Toronto","State":"ON","Country":"Canada","PostalCode":"M6J 1V1","Phone":"+1 (416) 363-8888","Fax":null,"Email":"robbrown@shaw.ca","SupportRepId":3} +{"CustomerId":30,"FirstName":"Edward","LastName":"Francis","Company":null,"Address":"230 Elgin Street","City":"Ottawa","State":"ON","Country":"Canada","PostalCode":"K2P 1L7","Phone":"+1 (613) 234-3322","Fax":null,"Email":"edfrancis@yachoo.ca","SupportRepId":3} +{"CustomerId":31,"FirstName":"Martha","LastName":"Silk","Company":null,"Address":"194A Chain Lake Drive","City":"Halifax","State":"NS","Country":"Canada","PostalCode":"B3S 1C5","Phone":"+1 (902) 450-0450","Fax":null,"Email":"marthasilk@gmail.com","SupportRepId":5} +{"CustomerId":32,"FirstName":"Aaron","LastName":"Mitchell","Company":null,"Address":"696 Osborne Street","City":"Winnipeg","State":"MB","Country":"Canada","PostalCode":"R3L 2B9","Phone":"+1 (204) 452-6452","Fax":null,"Email":"aaronmitchell@yahoo.ca","SupportRepId":4} +{"CustomerId":33,"FirstName":"Ellie","LastName":"Sullivan","Company":null,"Address":"5112 48 Street","City":"Yellowknife","State":"NT","Country":"Canada","PostalCode":"X1A 1N6","Phone":"+1 (867) 920-2233","Fax":null,"Email":"ellie.sullivan@shaw.ca","SupportRepId":3} +{"CustomerId":34,"FirstName":"Joăo","LastName":"Fernandes","Company":null,"Address":"Rua da Assunçăo 53","City":"Lisbon","State":null,"Country":"Portugal","PostalCode":null,"Phone":"+351 (213) 466-111","Fax":null,"Email":"jfernandes@yahoo.pt","SupportRepId":4} +{"CustomerId":35,"FirstName":"Madalena","LastName":"Sampaio","Company":null,"Address":"Rua dos Campeőes Europeus de Viena, 4350","City":"Porto","State":null,"Country":"Portugal","PostalCode":null,"Phone":"+351 (225) 022-448","Fax":null,"Email":"masampaio@sapo.pt","SupportRepId":4} +{"CustomerId":36,"FirstName":"Hannah","LastName":"Schneider","Company":null,"Address":"Tauentzienstraße 8","City":"Berlin","State":null,"Country":"Germany","PostalCode":"10789","Phone":"+49 030 26550280","Fax":null,"Email":"hannah.schneider@yahoo.de","SupportRepId":5} +{"CustomerId":37,"FirstName":"Fynn","LastName":"Zimmermann","Company":null,"Address":"Berger Straße 10","City":"Frankfurt","State":null,"Country":"Germany","PostalCode":"60316","Phone":"+49 069 40598889","Fax":null,"Email":"fzimmermann@yahoo.de","SupportRepId":3} +{"CustomerId":38,"FirstName":"Niklas","LastName":"Schröder","Company":null,"Address":"Barbarossastraße 19","City":"Berlin","State":null,"Country":"Germany","PostalCode":"10779","Phone":"+49 030 2141444","Fax":null,"Email":"nschroder@surfeu.de","SupportRepId":3} +{"CustomerId":39,"FirstName":"Camille","LastName":"Bernard","Company":null,"Address":"4, Rue Milton","City":"Paris","State":null,"Country":"France","PostalCode":"75009","Phone":"+33 01 49 70 65 65","Fax":null,"Email":"camille.bernard@yahoo.fr","SupportRepId":4} +{"CustomerId":40,"FirstName":"Dominique","LastName":"Lefebvre","Company":null,"Address":"8, Rue Hanovre","City":"Paris","State":null,"Country":"France","PostalCode":"75002","Phone":"+33 01 47 42 71 71","Fax":null,"Email":"dominiquelefebvre@gmail.com","SupportRepId":4} +{"CustomerId":41,"FirstName":"Marc","LastName":"Dubois","Company":null,"Address":"11, Place Bellecour","City":"Lyon","State":null,"Country":"France","PostalCode":"69002","Phone":"+33 04 78 30 30 30","Fax":null,"Email":"marc.dubois@hotmail.com","SupportRepId":5} +{"CustomerId":42,"FirstName":"Wyatt","LastName":"Girard","Company":null,"Address":"9, Place Louis Barthou","City":"Bordeaux","State":null,"Country":"France","PostalCode":"33000","Phone":"+33 05 56 96 96 96","Fax":null,"Email":"wyatt.girard@yahoo.fr","SupportRepId":3} +{"CustomerId":43,"FirstName":"Isabelle","LastName":"Mercier","Company":null,"Address":"68, Rue Jouvence","City":"Dijon","State":null,"Country":"France","PostalCode":"21000","Phone":"+33 03 80 73 66 99","Fax":null,"Email":"isabelle_mercier@apple.fr","SupportRepId":3} +{"CustomerId":44,"FirstName":"Terhi","LastName":"Hämäläinen","Company":null,"Address":"Porthaninkatu 9","City":"Helsinki","State":null,"Country":"Finland","PostalCode":"00530","Phone":"+358 09 870 2000","Fax":null,"Email":"terhi.hamalainen@apple.fi","SupportRepId":3} +{"CustomerId":45,"FirstName":"Ladislav","LastName":"Kovács","Company":null,"Address":"Erzsébet krt. 58.","City":"Budapest","State":null,"Country":"Hungary","PostalCode":"H-1073","Phone":null,"Fax":null,"Email":"ladislav_kovacs@apple.hu","SupportRepId":3} +{"CustomerId":46,"FirstName":"Hugh","LastName":"O'Reilly","Company":null,"Address":"3 Chatham Street","City":"Dublin","State":"Dublin","Country":"Ireland","PostalCode":null,"Phone":"+353 01 6792424","Fax":null,"Email":"hughoreilly@apple.ie","SupportRepId":3} +{"CustomerId":47,"FirstName":"Lucas","LastName":"Mancini","Company":null,"Address":"Via Degli Scipioni, 43","City":"Rome","State":"RM","Country":"Italy","PostalCode":"00192","Phone":"+39 06 39733434","Fax":null,"Email":"lucas.mancini@yahoo.it","SupportRepId":5} +{"CustomerId":48,"FirstName":"Johannes","LastName":"Van der Berg","Company":null,"Address":"Lijnbaansgracht 120bg","City":"Amsterdam","State":"VV","Country":"Netherlands","PostalCode":"1016","Phone":"+31 020 6223130","Fax":null,"Email":"johavanderberg@yahoo.nl","SupportRepId":5} +{"CustomerId":49,"FirstName":"Stanislaw","LastName":"Wójcik","Company":null,"Address":"Ordynacka 10","City":"Warsaw","State":null,"Country":"Poland","PostalCode":"00-358","Phone":"+48 22 828 37 39","Fax":null,"Email":"stanislaw.wójcik@wp.pl","SupportRepId":4} +{"CustomerId":50,"FirstName":"Enrique","LastName":"Muńoz","Company":null,"Address":"C/ San Bernardo 85","City":"Madrid","State":null,"Country":"Spain","PostalCode":"28015","Phone":"+34 914 454 454","Fax":null,"Email":"enrique_munoz@yahoo.es","SupportRepId":5} +{"CustomerId":51,"FirstName":"Joakim","LastName":"Johansson","Company":null,"Address":"Celsiusg. 9","City":"Stockholm","State":null,"Country":"Sweden","PostalCode":"11230","Phone":"+46 08-651 52 52","Fax":null,"Email":"joakim.johansson@yahoo.se","SupportRepId":5} +{"CustomerId":52,"FirstName":"Emma","LastName":"Jones","Company":null,"Address":"202 Hoxton Street","City":"London","State":null,"Country":"United Kingdom","PostalCode":"N1 5LH","Phone":"+44 020 7707 0707","Fax":null,"Email":"emma_jones@hotmail.com","SupportRepId":3} +{"CustomerId":53,"FirstName":"Phil","LastName":"Hughes","Company":null,"Address":"113 Lupus St","City":"London","State":null,"Country":"United Kingdom","PostalCode":"SW1V 3EN","Phone":"+44 020 7976 5722","Fax":null,"Email":"phil.hughes@gmail.com","SupportRepId":3} +{"CustomerId":54,"FirstName":"Steve","LastName":"Murray","Company":null,"Address":"110 Raeburn Pl","City":"Edinburgh","State":null,"Country":"United Kingdom","PostalCode":"EH4 1HH","Phone":"+44 0131 315 3300","Fax":null,"Email":"steve.murray@yahoo.uk","SupportRepId":5} +{"CustomerId":55,"FirstName":"Mark","LastName":"Taylor","Company":null,"Address":"421 Bourke Street","City":"Sidney","State":"NSW","Country":"Australia","PostalCode":"2010","Phone":"+61 (02) 9332 3633","Fax":null,"Email":"mark.taylor@yahoo.au","SupportRepId":4} +{"CustomerId":56,"FirstName":"Diego","LastName":"Gutiérrez","Company":null,"Address":"307 Macacha Güemes","City":"Buenos Aires","State":null,"Country":"Argentina","PostalCode":"1106","Phone":"+54 (0)11 4311 4333","Fax":null,"Email":"diego.gutierrez@yahoo.ar","SupportRepId":4} +{"CustomerId":57,"FirstName":"Luis","LastName":"Rojas","Company":null,"Address":"Calle Lira, 198","City":"Santiago","State":null,"Country":"Chile","PostalCode":null,"Phone":"+56 (0)2 635 4444","Fax":null,"Email":"luisrojas@yahoo.cl","SupportRepId":5} +{"CustomerId":58,"FirstName":"Manoj","LastName":"Pareek","Company":null,"Address":"12,Community Centre","City":"Delhi","State":null,"Country":"India","PostalCode":"110017","Phone":"+91 0124 39883988","Fax":null,"Email":"manoj.pareek@rediff.com","SupportRepId":3} +{"CustomerId":59,"FirstName":"Puja","LastName":"Srivastava","Company":null,"Address":"3,Raj Bhavan Road","City":"Bangalore","State":null,"Country":"India","PostalCode":"560001","Phone":"+91 080 22289999","Fax":null,"Email":"puja_srivastava@yahoo.in","SupportRepId":3} diff --git a/e2e-tests/data/chinook-jsonl/Employee.jsonl b/e2e-tests/data/chinook-jsonl/Employee.jsonl new file mode 100644 index 000000000..0dd158a23 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Employee.jsonl @@ -0,0 +1,8 @@ +{"EmployeeId":1,"LastName":"Adams","FirstName":"Andrew","Title":"General Manager","ReportsTo":null,"BirthDate":"1962-02-17T23:00:00.000Z","HireDate":"2002-08-13T22:00:00.000Z","Address":"11120 Jasper Ave NW","City":"Edmonton","State":"AB","Country":"Canada","PostalCode":"T5K 2N1","Phone":"+1 (780) 428-9482","Fax":"+1 (780) 428-3457","Email":"andrew@chinookcorp.com"} +{"EmployeeId":2,"LastName":"Edwards","FirstName":"Nancy","Title":"Sales Manager","ReportsTo":1,"BirthDate":"1958-12-07T23:00:00.000Z","HireDate":"2002-04-30T22:00:00.000Z","Address":"825 8 Ave SW","City":"Calgary","State":"AB","Country":"Canada","PostalCode":"T2P 2T3","Phone":"+1 (403) 262-3443","Fax":"+1 (403) 262-3322","Email":"nancy@chinookcorp.com"} +{"EmployeeId":3,"LastName":"Peacock","FirstName":"Jane","Title":"Sales Support Agent","ReportsTo":2,"BirthDate":"1973-08-28T23:00:00.000Z","HireDate":"2002-03-31T22:00:00.000Z","Address":"1111 6 Ave SW","City":"Calgary","State":"AB","Country":"Canada","PostalCode":"T2P 5M5","Phone":"+1 (403) 262-3443","Fax":"+1 (403) 262-6712","Email":"jane@chinookcorp.com"} +{"EmployeeId":4,"LastName":"Park","FirstName":"Margaret","Title":"Sales Support Agent","ReportsTo":2,"BirthDate":"1947-09-18T22:00:00.000Z","HireDate":"2003-05-02T22:00:00.000Z","Address":"683 10 Street SW","City":"Calgary","State":"AB","Country":"Canada","PostalCode":"T2P 5G3","Phone":"+1 (403) 263-4423","Fax":"+1 (403) 263-4289","Email":"margaret@chinookcorp.com"} +{"EmployeeId":5,"LastName":"Johnson","FirstName":"Steve","Title":"Sales Support Agent","ReportsTo":2,"BirthDate":"1965-03-02T23:00:00.000Z","HireDate":"2003-10-16T22:00:00.000Z","Address":"7727B 41 Ave","City":"Calgary","State":"AB","Country":"Canada","PostalCode":"T3B 1Y7","Phone":"1 (780) 836-9987","Fax":"1 (780) 836-9543","Email":"steve@chinookcorp.com"} +{"EmployeeId":6,"LastName":"Mitchell","FirstName":"Michael","Title":"IT Manager","ReportsTo":1,"BirthDate":"1973-06-30T23:00:00.000Z","HireDate":"2003-10-16T22:00:00.000Z","Address":"5827 Bowness Road NW","City":"Calgary","State":"AB","Country":"Canada","PostalCode":"T3B 0C5","Phone":"+1 (403) 246-9887","Fax":"+1 (403) 246-9899","Email":"michael@chinookcorp.com"} +{"EmployeeId":7,"LastName":"King","FirstName":"Robert","Title":"IT Staff","ReportsTo":6,"BirthDate":"1970-05-28T23:00:00.000Z","HireDate":"2004-01-01T23:00:00.000Z","Address":"590 Columbia Boulevard West","City":"Lethbridge","State":"AB","Country":"Canada","PostalCode":"T1K 5N8","Phone":"+1 (403) 456-9986","Fax":"+1 (403) 456-8485","Email":"robert@chinookcorp.com"} +{"EmployeeId":8,"LastName":"Callahan","FirstName":"Laura","Title":"IT Staff","ReportsTo":6,"BirthDate":"1968-01-08T23:00:00.000Z","HireDate":"2004-03-03T23:00:00.000Z","Address":"923 7 ST NW","City":"Lethbridge","State":"AB","Country":"Canada","PostalCode":"T1H 1Y8","Phone":"+1 (403) 467-3351","Fax":"+1 (403) 467-8772","Email":"laura@chinookcorp.com"} diff --git a/e2e-tests/data/chinook-jsonl/Genre.jsonl b/e2e-tests/data/chinook-jsonl/Genre.jsonl new file mode 100644 index 000000000..9fd1d85b0 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Genre.jsonl @@ -0,0 +1,25 @@ +{"GenreId":1,"Name":"Rock"} +{"GenreId":2,"Name":"Jazz"} +{"GenreId":3,"Name":"Metal"} +{"GenreId":4,"Name":"Alternative & Punk"} +{"GenreId":5,"Name":"Rock And Roll"} +{"GenreId":6,"Name":"Blues"} +{"GenreId":7,"Name":"Latin"} +{"GenreId":8,"Name":"Reggae"} +{"GenreId":9,"Name":"Pop"} +{"GenreId":10,"Name":"Soundtrack"} +{"GenreId":11,"Name":"Bossa Nova"} +{"GenreId":12,"Name":"Easy Listening"} +{"GenreId":13,"Name":"Heavy Metal"} +{"GenreId":14,"Name":"R&B/Soul"} +{"GenreId":15,"Name":"Electronica/Dance"} +{"GenreId":16,"Name":"World"} +{"GenreId":17,"Name":"Hip Hop/Rap"} +{"GenreId":18,"Name":"Science Fiction"} +{"GenreId":19,"Name":"TV Shows"} +{"GenreId":20,"Name":"Sci Fi & Fantasy"} +{"GenreId":21,"Name":"Drama"} +{"GenreId":22,"Name":"Comedy"} +{"GenreId":23,"Name":"Alternative"} +{"GenreId":24,"Name":"Classical"} +{"GenreId":25,"Name":"Opera"} diff --git a/e2e-tests/data/chinook-jsonl/Invoice.jsonl b/e2e-tests/data/chinook-jsonl/Invoice.jsonl new file mode 100644 index 000000000..b2aef7f7d --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Invoice.jsonl @@ -0,0 +1,412 @@ +{"InvoiceId":1,"CustomerId":2,"InvoiceDate":"2008-12-31T23:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"1.98"} +{"InvoiceId":2,"CustomerId":4,"InvoiceDate":"2009-01-01T23:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"3.96"} +{"InvoiceId":3,"CustomerId":8,"InvoiceDate":"2009-01-02T23:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"5.94"} +{"InvoiceId":4,"CustomerId":14,"InvoiceDate":"2009-01-05T23:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"8.91"} +{"InvoiceId":5,"CustomerId":23,"InvoiceDate":"2009-01-10T23:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"13.86"} +{"InvoiceId":6,"CustomerId":37,"InvoiceDate":"2009-01-18T23:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"0.99"} +{"InvoiceId":7,"CustomerId":38,"InvoiceDate":"2009-01-31T23:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"1.98"} +{"InvoiceId":8,"CustomerId":40,"InvoiceDate":"2009-01-31T23:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"1.98"} +{"InvoiceId":9,"CustomerId":42,"InvoiceDate":"2009-02-01T23:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"3.96"} +{"InvoiceId":10,"CustomerId":46,"InvoiceDate":"2009-02-02T23:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"5.94"} +{"InvoiceId":11,"CustomerId":52,"InvoiceDate":"2009-02-05T23:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"8.91"} +{"InvoiceId":12,"CustomerId":2,"InvoiceDate":"2009-02-10T23:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"13.86"} +{"InvoiceId":13,"CustomerId":16,"InvoiceDate":"2009-02-18T23:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"0.99"} +{"InvoiceId":14,"CustomerId":17,"InvoiceDate":"2009-03-03T23:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"1.98"} +{"InvoiceId":15,"CustomerId":19,"InvoiceDate":"2009-03-03T23:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"1.98"} +{"InvoiceId":16,"CustomerId":21,"InvoiceDate":"2009-03-04T23:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"3.96"} +{"InvoiceId":17,"CustomerId":25,"InvoiceDate":"2009-03-05T23:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"5.94"} +{"InvoiceId":18,"CustomerId":31,"InvoiceDate":"2009-03-08T23:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"8.91"} +{"InvoiceId":19,"CustomerId":40,"InvoiceDate":"2009-03-13T23:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"13.86"} +{"InvoiceId":20,"CustomerId":54,"InvoiceDate":"2009-03-21T23:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"0.99"} +{"InvoiceId":21,"CustomerId":55,"InvoiceDate":"2009-04-03T22:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"1.98"} +{"InvoiceId":22,"CustomerId":57,"InvoiceDate":"2009-04-03T22:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":23,"CustomerId":59,"InvoiceDate":"2009-04-04T22:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"3.96"} +{"InvoiceId":24,"CustomerId":4,"InvoiceDate":"2009-04-05T22:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"5.94"} +{"InvoiceId":25,"CustomerId":10,"InvoiceDate":"2009-04-08T22:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"8.91"} +{"InvoiceId":26,"CustomerId":19,"InvoiceDate":"2009-04-13T22:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"13.86"} +{"InvoiceId":27,"CustomerId":33,"InvoiceDate":"2009-04-21T22:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"0.99"} +{"InvoiceId":28,"CustomerId":34,"InvoiceDate":"2009-05-04T22:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":29,"CustomerId":36,"InvoiceDate":"2009-05-04T22:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"1.98"} +{"InvoiceId":30,"CustomerId":38,"InvoiceDate":"2009-05-05T22:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"3.96"} +{"InvoiceId":31,"CustomerId":42,"InvoiceDate":"2009-05-06T22:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"5.94"} +{"InvoiceId":32,"CustomerId":48,"InvoiceDate":"2009-05-09T22:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"8.91"} +{"InvoiceId":33,"CustomerId":57,"InvoiceDate":"2009-05-14T22:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"13.86"} +{"InvoiceId":34,"CustomerId":12,"InvoiceDate":"2009-05-22T22:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"0.99"} +{"InvoiceId":35,"CustomerId":13,"InvoiceDate":"2009-06-04T22:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"1.98"} +{"InvoiceId":36,"CustomerId":15,"InvoiceDate":"2009-06-04T22:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"1.98"} +{"InvoiceId":37,"CustomerId":17,"InvoiceDate":"2009-06-05T22:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"3.96"} +{"InvoiceId":38,"CustomerId":21,"InvoiceDate":"2009-06-06T22:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"5.94"} +{"InvoiceId":39,"CustomerId":27,"InvoiceDate":"2009-06-09T22:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"8.91"} +{"InvoiceId":40,"CustomerId":36,"InvoiceDate":"2009-06-14T22:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"13.86"} +{"InvoiceId":41,"CustomerId":50,"InvoiceDate":"2009-06-22T22:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"0.99"} +{"InvoiceId":42,"CustomerId":51,"InvoiceDate":"2009-07-05T22:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"1.98"} +{"InvoiceId":43,"CustomerId":53,"InvoiceDate":"2009-07-05T22:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"1.98"} +{"InvoiceId":44,"CustomerId":55,"InvoiceDate":"2009-07-06T22:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"3.96"} +{"InvoiceId":45,"CustomerId":59,"InvoiceDate":"2009-07-07T22:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"5.94"} +{"InvoiceId":46,"CustomerId":6,"InvoiceDate":"2009-07-10T22:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"8.91"} +{"InvoiceId":47,"CustomerId":15,"InvoiceDate":"2009-07-15T22:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"13.86"} +{"InvoiceId":48,"CustomerId":29,"InvoiceDate":"2009-07-23T22:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"0.99"} +{"InvoiceId":49,"CustomerId":30,"InvoiceDate":"2009-08-05T22:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"1.98"} +{"InvoiceId":50,"CustomerId":32,"InvoiceDate":"2009-08-05T22:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"1.98"} +{"InvoiceId":51,"CustomerId":34,"InvoiceDate":"2009-08-06T22:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"3.96"} +{"InvoiceId":52,"CustomerId":38,"InvoiceDate":"2009-08-07T22:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"5.94"} +{"InvoiceId":53,"CustomerId":44,"InvoiceDate":"2009-08-10T22:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"8.91"} +{"InvoiceId":54,"CustomerId":53,"InvoiceDate":"2009-08-15T22:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"13.86"} +{"InvoiceId":55,"CustomerId":8,"InvoiceDate":"2009-08-23T22:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"0.99"} +{"InvoiceId":56,"CustomerId":9,"InvoiceDate":"2009-09-05T22:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"1.98"} +{"InvoiceId":57,"CustomerId":11,"InvoiceDate":"2009-09-05T22:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"1.98"} +{"InvoiceId":58,"CustomerId":13,"InvoiceDate":"2009-09-06T22:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"3.96"} +{"InvoiceId":59,"CustomerId":17,"InvoiceDate":"2009-09-07T22:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"5.94"} +{"InvoiceId":60,"CustomerId":23,"InvoiceDate":"2009-09-10T22:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"8.91"} +{"InvoiceId":61,"CustomerId":32,"InvoiceDate":"2009-09-15T22:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"13.86"} +{"InvoiceId":62,"CustomerId":46,"InvoiceDate":"2009-09-23T22:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"0.99"} +{"InvoiceId":63,"CustomerId":47,"InvoiceDate":"2009-10-06T22:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"1.98"} +{"InvoiceId":64,"CustomerId":49,"InvoiceDate":"2009-10-06T22:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"1.98"} +{"InvoiceId":65,"CustomerId":51,"InvoiceDate":"2009-10-07T22:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"3.96"} +{"InvoiceId":66,"CustomerId":55,"InvoiceDate":"2009-10-08T22:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"5.94"} +{"InvoiceId":67,"CustomerId":2,"InvoiceDate":"2009-10-11T22:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"8.91"} +{"InvoiceId":68,"CustomerId":11,"InvoiceDate":"2009-10-16T22:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"13.86"} +{"InvoiceId":69,"CustomerId":25,"InvoiceDate":"2009-10-24T22:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"0.99"} +{"InvoiceId":70,"CustomerId":26,"InvoiceDate":"2009-11-06T23:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"1.98"} +{"InvoiceId":71,"CustomerId":28,"InvoiceDate":"2009-11-06T23:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"1.98"} +{"InvoiceId":72,"CustomerId":30,"InvoiceDate":"2009-11-07T23:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"3.96"} +{"InvoiceId":73,"CustomerId":34,"InvoiceDate":"2009-11-08T23:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"5.94"} +{"InvoiceId":74,"CustomerId":40,"InvoiceDate":"2009-11-11T23:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"8.91"} +{"InvoiceId":75,"CustomerId":49,"InvoiceDate":"2009-11-16T23:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"13.86"} +{"InvoiceId":76,"CustomerId":4,"InvoiceDate":"2009-11-24T23:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"0.99"} +{"InvoiceId":77,"CustomerId":5,"InvoiceDate":"2009-12-07T23:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"1.98"} +{"InvoiceId":78,"CustomerId":7,"InvoiceDate":"2009-12-07T23:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"1.98"} +{"InvoiceId":79,"CustomerId":9,"InvoiceDate":"2009-12-08T23:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"3.96"} +{"InvoiceId":80,"CustomerId":13,"InvoiceDate":"2009-12-09T23:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"5.94"} +{"InvoiceId":81,"CustomerId":19,"InvoiceDate":"2009-12-12T23:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"8.91"} +{"InvoiceId":82,"CustomerId":28,"InvoiceDate":"2009-12-17T23:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"13.86"} +{"InvoiceId":83,"CustomerId":42,"InvoiceDate":"2009-12-25T23:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"0.99"} +{"InvoiceId":84,"CustomerId":43,"InvoiceDate":"2010-01-07T23:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"1.98"} +{"InvoiceId":85,"CustomerId":45,"InvoiceDate":"2010-01-07T23:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"1.98"} +{"InvoiceId":86,"CustomerId":47,"InvoiceDate":"2010-01-08T23:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"3.96"} +{"InvoiceId":87,"CustomerId":51,"InvoiceDate":"2010-01-09T23:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"6.94"} +{"InvoiceId":88,"CustomerId":57,"InvoiceDate":"2010-01-12T23:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"17.91"} +{"InvoiceId":89,"CustomerId":7,"InvoiceDate":"2010-01-17T23:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"18.86"} +{"InvoiceId":90,"CustomerId":21,"InvoiceDate":"2010-01-25T23:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"0.99"} +{"InvoiceId":91,"CustomerId":22,"InvoiceDate":"2010-02-07T23:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"1.98"} +{"InvoiceId":92,"CustomerId":24,"InvoiceDate":"2010-02-07T23:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"1.98"} +{"InvoiceId":93,"CustomerId":26,"InvoiceDate":"2010-02-08T23:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"3.96"} +{"InvoiceId":94,"CustomerId":30,"InvoiceDate":"2010-02-09T23:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"5.94"} +{"InvoiceId":95,"CustomerId":36,"InvoiceDate":"2010-02-12T23:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"8.91"} +{"InvoiceId":96,"CustomerId":45,"InvoiceDate":"2010-02-17T23:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"21.86"} +{"InvoiceId":97,"CustomerId":59,"InvoiceDate":"2010-02-25T23:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"1.99"} +{"InvoiceId":98,"CustomerId":1,"InvoiceDate":"2010-03-10T23:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"3.98"} +{"InvoiceId":99,"CustomerId":3,"InvoiceDate":"2010-03-10T23:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"3.98"} +{"InvoiceId":100,"CustomerId":5,"InvoiceDate":"2010-03-11T23:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"3.96"} +{"InvoiceId":101,"CustomerId":9,"InvoiceDate":"2010-03-12T23:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"5.94"} +{"InvoiceId":102,"CustomerId":15,"InvoiceDate":"2010-03-15T23:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"9.91"} +{"InvoiceId":103,"CustomerId":24,"InvoiceDate":"2010-03-20T23:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"15.86"} +{"InvoiceId":104,"CustomerId":38,"InvoiceDate":"2010-03-28T22:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"0.99"} +{"InvoiceId":105,"CustomerId":39,"InvoiceDate":"2010-04-10T22:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"1.98"} +{"InvoiceId":106,"CustomerId":41,"InvoiceDate":"2010-04-10T22:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"1.98"} +{"InvoiceId":107,"CustomerId":43,"InvoiceDate":"2010-04-11T22:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"3.96"} +{"InvoiceId":108,"CustomerId":47,"InvoiceDate":"2010-04-12T22:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"5.94"} +{"InvoiceId":109,"CustomerId":53,"InvoiceDate":"2010-04-15T22:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"8.91"} +{"InvoiceId":110,"CustomerId":3,"InvoiceDate":"2010-04-20T22:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"13.86"} +{"InvoiceId":111,"CustomerId":17,"InvoiceDate":"2010-04-28T22:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"0.99"} +{"InvoiceId":112,"CustomerId":18,"InvoiceDate":"2010-05-11T22:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"1.98"} +{"InvoiceId":113,"CustomerId":20,"InvoiceDate":"2010-05-11T22:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"1.98"} +{"InvoiceId":114,"CustomerId":22,"InvoiceDate":"2010-05-12T22:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"3.96"} +{"InvoiceId":115,"CustomerId":26,"InvoiceDate":"2010-05-13T22:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"5.94"} +{"InvoiceId":116,"CustomerId":32,"InvoiceDate":"2010-05-16T22:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"8.91"} +{"InvoiceId":117,"CustomerId":41,"InvoiceDate":"2010-05-21T22:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"13.86"} +{"InvoiceId":118,"CustomerId":55,"InvoiceDate":"2010-05-29T22:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"0.99"} +{"InvoiceId":119,"CustomerId":56,"InvoiceDate":"2010-06-11T22:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"1.98"} +{"InvoiceId":120,"CustomerId":58,"InvoiceDate":"2010-06-11T22:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"1.98"} +{"InvoiceId":121,"CustomerId":1,"InvoiceDate":"2010-06-12T22:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"3.96"} +{"InvoiceId":122,"CustomerId":5,"InvoiceDate":"2010-06-13T22:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"5.94"} +{"InvoiceId":123,"CustomerId":11,"InvoiceDate":"2010-06-16T22:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"8.91"} +{"InvoiceId":124,"CustomerId":20,"InvoiceDate":"2010-06-21T22:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"13.86"} +{"InvoiceId":125,"CustomerId":34,"InvoiceDate":"2010-06-29T22:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"0.99"} +{"InvoiceId":126,"CustomerId":35,"InvoiceDate":"2010-07-12T22:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":127,"CustomerId":37,"InvoiceDate":"2010-07-12T22:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"1.98"} +{"InvoiceId":128,"CustomerId":39,"InvoiceDate":"2010-07-13T22:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"3.96"} +{"InvoiceId":129,"CustomerId":43,"InvoiceDate":"2010-07-14T22:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"5.94"} +{"InvoiceId":130,"CustomerId":49,"InvoiceDate":"2010-07-17T22:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"8.91"} +{"InvoiceId":131,"CustomerId":58,"InvoiceDate":"2010-07-22T22:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"13.86"} +{"InvoiceId":132,"CustomerId":13,"InvoiceDate":"2010-07-30T22:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"0.99"} +{"InvoiceId":133,"CustomerId":14,"InvoiceDate":"2010-08-12T22:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"1.98"} +{"InvoiceId":134,"CustomerId":16,"InvoiceDate":"2010-08-12T22:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"1.98"} +{"InvoiceId":135,"CustomerId":18,"InvoiceDate":"2010-08-13T22:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"3.96"} +{"InvoiceId":136,"CustomerId":22,"InvoiceDate":"2010-08-14T22:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"5.94"} +{"InvoiceId":137,"CustomerId":28,"InvoiceDate":"2010-08-17T22:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"8.91"} +{"InvoiceId":138,"CustomerId":37,"InvoiceDate":"2010-08-22T22:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"13.86"} +{"InvoiceId":139,"CustomerId":51,"InvoiceDate":"2010-08-30T22:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"0.99"} +{"InvoiceId":140,"CustomerId":52,"InvoiceDate":"2010-09-12T22:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"1.98"} +{"InvoiceId":141,"CustomerId":54,"InvoiceDate":"2010-09-12T22:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"1.98"} +{"InvoiceId":142,"CustomerId":56,"InvoiceDate":"2010-09-13T22:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"3.96"} +{"InvoiceId":143,"CustomerId":1,"InvoiceDate":"2010-09-14T22:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"5.94"} +{"InvoiceId":144,"CustomerId":7,"InvoiceDate":"2010-09-17T22:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"8.91"} +{"InvoiceId":145,"CustomerId":16,"InvoiceDate":"2010-09-22T22:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"13.86"} +{"InvoiceId":146,"CustomerId":30,"InvoiceDate":"2010-09-30T22:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"0.99"} +{"InvoiceId":147,"CustomerId":31,"InvoiceDate":"2010-10-13T22:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"1.98"} +{"InvoiceId":148,"CustomerId":33,"InvoiceDate":"2010-10-13T22:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"1.98"} +{"InvoiceId":149,"CustomerId":35,"InvoiceDate":"2010-10-14T22:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"3.96"} +{"InvoiceId":150,"CustomerId":39,"InvoiceDate":"2010-10-15T22:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"5.94"} +{"InvoiceId":151,"CustomerId":45,"InvoiceDate":"2010-10-18T22:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"8.91"} +{"InvoiceId":152,"CustomerId":54,"InvoiceDate":"2010-10-23T22:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"13.86"} +{"InvoiceId":153,"CustomerId":9,"InvoiceDate":"2010-10-31T23:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"0.99"} +{"InvoiceId":154,"CustomerId":10,"InvoiceDate":"2010-11-13T23:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"1.98"} +{"InvoiceId":155,"CustomerId":12,"InvoiceDate":"2010-11-13T23:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"1.98"} +{"InvoiceId":156,"CustomerId":14,"InvoiceDate":"2010-11-14T23:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"3.96"} +{"InvoiceId":157,"CustomerId":18,"InvoiceDate":"2010-11-15T23:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"5.94"} +{"InvoiceId":158,"CustomerId":24,"InvoiceDate":"2010-11-18T23:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"8.91"} +{"InvoiceId":159,"CustomerId":33,"InvoiceDate":"2010-11-23T23:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"13.86"} +{"InvoiceId":160,"CustomerId":47,"InvoiceDate":"2010-12-01T23:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"0.99"} +{"InvoiceId":161,"CustomerId":48,"InvoiceDate":"2010-12-14T23:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"1.98"} +{"InvoiceId":162,"CustomerId":50,"InvoiceDate":"2010-12-14T23:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"1.98"} +{"InvoiceId":163,"CustomerId":52,"InvoiceDate":"2010-12-15T23:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"3.96"} +{"InvoiceId":164,"CustomerId":56,"InvoiceDate":"2010-12-16T23:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"5.94"} +{"InvoiceId":165,"CustomerId":3,"InvoiceDate":"2010-12-19T23:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"8.91"} +{"InvoiceId":166,"CustomerId":12,"InvoiceDate":"2010-12-24T23:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"13.86"} +{"InvoiceId":167,"CustomerId":26,"InvoiceDate":"2011-01-01T23:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"0.99"} +{"InvoiceId":168,"CustomerId":27,"InvoiceDate":"2011-01-14T23:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"1.98"} +{"InvoiceId":169,"CustomerId":29,"InvoiceDate":"2011-01-14T23:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"1.98"} +{"InvoiceId":170,"CustomerId":31,"InvoiceDate":"2011-01-15T23:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"3.96"} +{"InvoiceId":171,"CustomerId":35,"InvoiceDate":"2011-01-16T23:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"5.94"} +{"InvoiceId":172,"CustomerId":41,"InvoiceDate":"2011-01-19T23:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"8.91"} +{"InvoiceId":173,"CustomerId":50,"InvoiceDate":"2011-01-24T23:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"13.86"} +{"InvoiceId":174,"CustomerId":5,"InvoiceDate":"2011-02-01T23:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"0.99"} +{"InvoiceId":175,"CustomerId":6,"InvoiceDate":"2011-02-14T23:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"1.98"} +{"InvoiceId":176,"CustomerId":8,"InvoiceDate":"2011-02-14T23:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"1.98"} +{"InvoiceId":177,"CustomerId":10,"InvoiceDate":"2011-02-15T23:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"3.96"} +{"InvoiceId":178,"CustomerId":14,"InvoiceDate":"2011-02-16T23:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"5.94"} +{"InvoiceId":179,"CustomerId":20,"InvoiceDate":"2011-02-19T23:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"8.91"} +{"InvoiceId":180,"CustomerId":29,"InvoiceDate":"2011-02-24T23:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"13.86"} +{"InvoiceId":181,"CustomerId":43,"InvoiceDate":"2011-03-04T23:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"0.99"} +{"InvoiceId":182,"CustomerId":44,"InvoiceDate":"2011-03-17T23:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"1.98"} +{"InvoiceId":183,"CustomerId":46,"InvoiceDate":"2011-03-17T23:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":184,"CustomerId":48,"InvoiceDate":"2011-03-18T23:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"3.96"} +{"InvoiceId":185,"CustomerId":52,"InvoiceDate":"2011-03-19T23:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"5.94"} +{"InvoiceId":186,"CustomerId":58,"InvoiceDate":"2011-03-22T23:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"8.91"} +{"InvoiceId":187,"CustomerId":8,"InvoiceDate":"2011-03-27T22:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"13.86"} +{"InvoiceId":188,"CustomerId":22,"InvoiceDate":"2011-04-04T22:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"0.99"} +{"InvoiceId":189,"CustomerId":23,"InvoiceDate":"2011-04-17T22:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"1.98"} +{"InvoiceId":190,"CustomerId":25,"InvoiceDate":"2011-04-17T22:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"1.98"} +{"InvoiceId":191,"CustomerId":27,"InvoiceDate":"2011-04-18T22:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"3.96"} +{"InvoiceId":192,"CustomerId":31,"InvoiceDate":"2011-04-19T22:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"5.94"} +{"InvoiceId":193,"CustomerId":37,"InvoiceDate":"2011-04-22T22:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"14.91"} +{"InvoiceId":194,"CustomerId":46,"InvoiceDate":"2011-04-27T22:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"21.86"} +{"InvoiceId":195,"CustomerId":1,"InvoiceDate":"2011-05-05T22:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"0.99"} +{"InvoiceId":196,"CustomerId":2,"InvoiceDate":"2011-05-18T22:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"1.98"} +{"InvoiceId":197,"CustomerId":4,"InvoiceDate":"2011-05-18T22:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"1.98"} +{"InvoiceId":198,"CustomerId":6,"InvoiceDate":"2011-05-19T22:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"3.96"} +{"InvoiceId":199,"CustomerId":10,"InvoiceDate":"2011-05-20T22:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"5.94"} +{"InvoiceId":200,"CustomerId":16,"InvoiceDate":"2011-05-23T22:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"8.91"} +{"InvoiceId":201,"CustomerId":25,"InvoiceDate":"2011-05-28T22:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"18.86"} +{"InvoiceId":202,"CustomerId":39,"InvoiceDate":"2011-06-05T22:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"1.99"} +{"InvoiceId":203,"CustomerId":40,"InvoiceDate":"2011-06-18T22:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"2.98"} +{"InvoiceId":204,"CustomerId":42,"InvoiceDate":"2011-06-18T22:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"3.98"} +{"InvoiceId":205,"CustomerId":44,"InvoiceDate":"2011-06-19T22:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"7.96"} +{"InvoiceId":206,"CustomerId":48,"InvoiceDate":"2011-06-20T22:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"8.94"} +{"InvoiceId":207,"CustomerId":54,"InvoiceDate":"2011-06-23T22:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"8.91"} +{"InvoiceId":208,"CustomerId":4,"InvoiceDate":"2011-06-28T22:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"15.86"} +{"InvoiceId":209,"CustomerId":18,"InvoiceDate":"2011-07-06T22:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"0.99"} +{"InvoiceId":210,"CustomerId":19,"InvoiceDate":"2011-07-19T22:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"1.98"} +{"InvoiceId":211,"CustomerId":21,"InvoiceDate":"2011-07-19T22:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"1.98"} +{"InvoiceId":212,"CustomerId":23,"InvoiceDate":"2011-07-20T22:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"3.96"} +{"InvoiceId":213,"CustomerId":27,"InvoiceDate":"2011-07-21T22:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"5.94"} +{"InvoiceId":214,"CustomerId":33,"InvoiceDate":"2011-07-24T22:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"8.91"} +{"InvoiceId":215,"CustomerId":42,"InvoiceDate":"2011-07-29T22:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"13.86"} +{"InvoiceId":216,"CustomerId":56,"InvoiceDate":"2011-08-06T22:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"0.99"} +{"InvoiceId":217,"CustomerId":57,"InvoiceDate":"2011-08-19T22:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":218,"CustomerId":59,"InvoiceDate":"2011-08-19T22:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"1.98"} +{"InvoiceId":219,"CustomerId":2,"InvoiceDate":"2011-08-20T22:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"3.96"} +{"InvoiceId":220,"CustomerId":6,"InvoiceDate":"2011-08-21T22:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"5.94"} +{"InvoiceId":221,"CustomerId":12,"InvoiceDate":"2011-08-24T22:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"8.91"} +{"InvoiceId":222,"CustomerId":21,"InvoiceDate":"2011-08-29T22:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"13.86"} +{"InvoiceId":223,"CustomerId":35,"InvoiceDate":"2011-09-06T22:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"0.99"} +{"InvoiceId":224,"CustomerId":36,"InvoiceDate":"2011-09-19T22:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"1.98"} +{"InvoiceId":225,"CustomerId":38,"InvoiceDate":"2011-09-19T22:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"1.98"} +{"InvoiceId":226,"CustomerId":40,"InvoiceDate":"2011-09-20T22:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"3.96"} +{"InvoiceId":227,"CustomerId":44,"InvoiceDate":"2011-09-21T22:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"5.94"} +{"InvoiceId":228,"CustomerId":50,"InvoiceDate":"2011-09-24T22:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"8.91"} +{"InvoiceId":229,"CustomerId":59,"InvoiceDate":"2011-09-29T22:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"13.86"} +{"InvoiceId":230,"CustomerId":14,"InvoiceDate":"2011-10-07T22:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"0.99"} +{"InvoiceId":231,"CustomerId":15,"InvoiceDate":"2011-10-20T22:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"1.98"} +{"InvoiceId":232,"CustomerId":17,"InvoiceDate":"2011-10-20T22:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"1.98"} +{"InvoiceId":233,"CustomerId":19,"InvoiceDate":"2011-10-21T22:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"3.96"} +{"InvoiceId":234,"CustomerId":23,"InvoiceDate":"2011-10-22T22:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"5.94"} +{"InvoiceId":235,"CustomerId":29,"InvoiceDate":"2011-10-25T22:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"8.91"} +{"InvoiceId":236,"CustomerId":38,"InvoiceDate":"2011-10-30T23:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"13.86"} +{"InvoiceId":237,"CustomerId":52,"InvoiceDate":"2011-11-07T23:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"0.99"} +{"InvoiceId":238,"CustomerId":53,"InvoiceDate":"2011-11-20T23:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"1.98"} +{"InvoiceId":239,"CustomerId":55,"InvoiceDate":"2011-11-20T23:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"1.98"} +{"InvoiceId":240,"CustomerId":57,"InvoiceDate":"2011-11-21T23:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"3.96"} +{"InvoiceId":241,"CustomerId":2,"InvoiceDate":"2011-11-22T23:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"5.94"} +{"InvoiceId":242,"CustomerId":8,"InvoiceDate":"2011-11-25T23:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"8.91"} +{"InvoiceId":243,"CustomerId":17,"InvoiceDate":"2011-11-30T23:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"13.86"} +{"InvoiceId":244,"CustomerId":31,"InvoiceDate":"2011-12-08T23:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"0.99"} +{"InvoiceId":245,"CustomerId":32,"InvoiceDate":"2011-12-21T23:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"1.98"} +{"InvoiceId":246,"CustomerId":34,"InvoiceDate":"2011-12-21T23:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":247,"CustomerId":36,"InvoiceDate":"2011-12-22T23:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"3.96"} +{"InvoiceId":248,"CustomerId":40,"InvoiceDate":"2011-12-23T23:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"5.94"} +{"InvoiceId":249,"CustomerId":46,"InvoiceDate":"2011-12-26T23:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"8.91"} +{"InvoiceId":250,"CustomerId":55,"InvoiceDate":"2011-12-31T23:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"13.86"} +{"InvoiceId":251,"CustomerId":10,"InvoiceDate":"2012-01-08T23:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"0.99"} +{"InvoiceId":252,"CustomerId":11,"InvoiceDate":"2012-01-21T23:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"1.98"} +{"InvoiceId":253,"CustomerId":13,"InvoiceDate":"2012-01-21T23:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"1.98"} +{"InvoiceId":254,"CustomerId":15,"InvoiceDate":"2012-01-22T23:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"3.96"} +{"InvoiceId":255,"CustomerId":19,"InvoiceDate":"2012-01-23T23:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"5.94"} +{"InvoiceId":256,"CustomerId":25,"InvoiceDate":"2012-01-26T23:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"8.91"} +{"InvoiceId":257,"CustomerId":34,"InvoiceDate":"2012-01-31T23:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"13.86"} +{"InvoiceId":258,"CustomerId":48,"InvoiceDate":"2012-02-08T23:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"0.99"} +{"InvoiceId":259,"CustomerId":49,"InvoiceDate":"2012-02-21T23:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"1.98"} +{"InvoiceId":260,"CustomerId":51,"InvoiceDate":"2012-02-21T23:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"1.98"} +{"InvoiceId":261,"CustomerId":53,"InvoiceDate":"2012-02-22T23:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"3.96"} +{"InvoiceId":262,"CustomerId":57,"InvoiceDate":"2012-02-23T23:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"5.94"} +{"InvoiceId":263,"CustomerId":4,"InvoiceDate":"2012-02-26T23:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"8.91"} +{"InvoiceId":264,"CustomerId":13,"InvoiceDate":"2012-03-02T23:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"13.86"} +{"InvoiceId":265,"CustomerId":27,"InvoiceDate":"2012-03-10T23:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"0.99"} +{"InvoiceId":266,"CustomerId":28,"InvoiceDate":"2012-03-23T23:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"1.98"} +{"InvoiceId":267,"CustomerId":30,"InvoiceDate":"2012-03-23T23:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"1.98"} +{"InvoiceId":268,"CustomerId":32,"InvoiceDate":"2012-03-24T23:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"3.96"} +{"InvoiceId":269,"CustomerId":36,"InvoiceDate":"2012-03-25T22:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"5.94"} +{"InvoiceId":270,"CustomerId":42,"InvoiceDate":"2012-03-28T22:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"8.91"} +{"InvoiceId":271,"CustomerId":51,"InvoiceDate":"2012-04-02T22:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"13.86"} +{"InvoiceId":272,"CustomerId":6,"InvoiceDate":"2012-04-10T22:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"0.99"} +{"InvoiceId":273,"CustomerId":7,"InvoiceDate":"2012-04-23T22:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"1.98"} +{"InvoiceId":274,"CustomerId":9,"InvoiceDate":"2012-04-23T22:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"1.98"} +{"InvoiceId":275,"CustomerId":11,"InvoiceDate":"2012-04-24T22:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"3.96"} +{"InvoiceId":276,"CustomerId":15,"InvoiceDate":"2012-04-25T22:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"5.94"} +{"InvoiceId":277,"CustomerId":21,"InvoiceDate":"2012-04-28T22:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"8.91"} +{"InvoiceId":278,"CustomerId":30,"InvoiceDate":"2012-05-03T22:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"13.86"} +{"InvoiceId":279,"CustomerId":44,"InvoiceDate":"2012-05-11T22:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"0.99"} +{"InvoiceId":280,"CustomerId":45,"InvoiceDate":"2012-05-24T22:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"1.98"} +{"InvoiceId":281,"CustomerId":47,"InvoiceDate":"2012-05-24T22:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"1.98"} +{"InvoiceId":282,"CustomerId":49,"InvoiceDate":"2012-05-25T22:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"3.96"} +{"InvoiceId":283,"CustomerId":53,"InvoiceDate":"2012-05-26T22:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"5.94"} +{"InvoiceId":284,"CustomerId":59,"InvoiceDate":"2012-05-29T22:00:00.000Z","BillingAddress":"3,Raj Bhavan Road","BillingCity":"Bangalore","BillingState":null,"BillingCountry":"India","BillingPostalCode":"560001","Total":"8.91"} +{"InvoiceId":285,"CustomerId":9,"InvoiceDate":"2012-06-03T22:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"13.86"} +{"InvoiceId":286,"CustomerId":23,"InvoiceDate":"2012-06-11T22:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"0.99"} +{"InvoiceId":287,"CustomerId":24,"InvoiceDate":"2012-06-24T22:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"1.98"} +{"InvoiceId":288,"CustomerId":26,"InvoiceDate":"2012-06-24T22:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"1.98"} +{"InvoiceId":289,"CustomerId":28,"InvoiceDate":"2012-06-25T22:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"3.96"} +{"InvoiceId":290,"CustomerId":32,"InvoiceDate":"2012-06-26T22:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"5.94"} +{"InvoiceId":291,"CustomerId":38,"InvoiceDate":"2012-06-29T22:00:00.000Z","BillingAddress":"Barbarossastraße 19","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10779","Total":"8.91"} +{"InvoiceId":292,"CustomerId":47,"InvoiceDate":"2012-07-04T22:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"13.86"} +{"InvoiceId":293,"CustomerId":2,"InvoiceDate":"2012-07-12T22:00:00.000Z","BillingAddress":"Theodor-Heuss-Straße 34","BillingCity":"Stuttgart","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"70174","Total":"0.99"} +{"InvoiceId":294,"CustomerId":3,"InvoiceDate":"2012-07-25T22:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"1.98"} +{"InvoiceId":295,"CustomerId":5,"InvoiceDate":"2012-07-25T22:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"1.98"} +{"InvoiceId":296,"CustomerId":7,"InvoiceDate":"2012-07-26T22:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"3.96"} +{"InvoiceId":297,"CustomerId":11,"InvoiceDate":"2012-07-27T22:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"5.94"} +{"InvoiceId":298,"CustomerId":17,"InvoiceDate":"2012-07-30T22:00:00.000Z","BillingAddress":"1 Microsoft Way","BillingCity":"Redmond","BillingState":"WA","BillingCountry":"USA","BillingPostalCode":"98052-8300","Total":"10.91"} +{"InvoiceId":299,"CustomerId":26,"InvoiceDate":"2012-08-04T22:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"23.86"} +{"InvoiceId":300,"CustomerId":40,"InvoiceDate":"2012-08-12T22:00:00.000Z","BillingAddress":"8, Rue Hanovre","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75002","Total":"0.99"} +{"InvoiceId":301,"CustomerId":41,"InvoiceDate":"2012-08-25T22:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"1.98"} +{"InvoiceId":302,"CustomerId":43,"InvoiceDate":"2012-08-25T22:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"1.98"} +{"InvoiceId":303,"CustomerId":45,"InvoiceDate":"2012-08-26T22:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"3.96"} +{"InvoiceId":304,"CustomerId":49,"InvoiceDate":"2012-08-27T22:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"5.94"} +{"InvoiceId":305,"CustomerId":55,"InvoiceDate":"2012-08-30T22:00:00.000Z","BillingAddress":"421 Bourke Street","BillingCity":"Sidney","BillingState":"NSW","BillingCountry":"Australia","BillingPostalCode":"2010","Total":"8.91"} +{"InvoiceId":306,"CustomerId":5,"InvoiceDate":"2012-09-04T22:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"16.86"} +{"InvoiceId":307,"CustomerId":19,"InvoiceDate":"2012-09-12T22:00:00.000Z","BillingAddress":"1 Infinite Loop","BillingCity":"Cupertino","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"95014","Total":"1.99"} +{"InvoiceId":308,"CustomerId":20,"InvoiceDate":"2012-09-25T22:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"3.98"} +{"InvoiceId":309,"CustomerId":22,"InvoiceDate":"2012-09-25T22:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"3.98"} +{"InvoiceId":310,"CustomerId":24,"InvoiceDate":"2012-09-26T22:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"7.96"} +{"InvoiceId":311,"CustomerId":28,"InvoiceDate":"2012-09-27T22:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"11.94"} +{"InvoiceId":312,"CustomerId":34,"InvoiceDate":"2012-09-30T22:00:00.000Z","BillingAddress":"Rua da Assunçăo 53","BillingCity":"Lisbon","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"10.91"} +{"InvoiceId":313,"CustomerId":43,"InvoiceDate":"2012-10-05T22:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"16.86"} +{"InvoiceId":314,"CustomerId":57,"InvoiceDate":"2012-10-13T22:00:00.000Z","BillingAddress":"Calle Lira, 198","BillingCity":"Santiago","BillingState":null,"BillingCountry":"Chile","BillingPostalCode":null,"Total":"0.99"} +{"InvoiceId":315,"CustomerId":58,"InvoiceDate":"2012-10-26T22:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"1.98"} +{"InvoiceId":316,"CustomerId":1,"InvoiceDate":"2012-10-26T22:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"1.98"} +{"InvoiceId":317,"CustomerId":3,"InvoiceDate":"2012-10-27T22:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"3.96"} +{"InvoiceId":318,"CustomerId":7,"InvoiceDate":"2012-10-28T23:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"5.94"} +{"InvoiceId":319,"CustomerId":13,"InvoiceDate":"2012-10-31T23:00:00.000Z","BillingAddress":"Qe 7 Bloco G","BillingCity":"Brasília","BillingState":"DF","BillingCountry":"Brazil","BillingPostalCode":"71020-677","Total":"8.91"} +{"InvoiceId":320,"CustomerId":22,"InvoiceDate":"2012-11-05T23:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"13.86"} +{"InvoiceId":321,"CustomerId":36,"InvoiceDate":"2012-11-13T23:00:00.000Z","BillingAddress":"Tauentzienstraße 8","BillingCity":"Berlin","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"10789","Total":"0.99"} +{"InvoiceId":322,"CustomerId":37,"InvoiceDate":"2012-11-26T23:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"1.98"} +{"InvoiceId":323,"CustomerId":39,"InvoiceDate":"2012-11-26T23:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"1.98"} +{"InvoiceId":324,"CustomerId":41,"InvoiceDate":"2012-11-27T23:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"3.96"} +{"InvoiceId":325,"CustomerId":45,"InvoiceDate":"2012-11-28T23:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"5.94"} +{"InvoiceId":326,"CustomerId":51,"InvoiceDate":"2012-12-01T23:00:00.000Z","BillingAddress":"Celsiusg. 9","BillingCity":"Stockholm","BillingState":null,"BillingCountry":"Sweden","BillingPostalCode":"11230","Total":"8.91"} +{"InvoiceId":327,"CustomerId":1,"InvoiceDate":"2012-12-06T23:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"13.86"} +{"InvoiceId":328,"CustomerId":15,"InvoiceDate":"2012-12-14T23:00:00.000Z","BillingAddress":"700 W Pender Street","BillingCity":"Vancouver","BillingState":"BC","BillingCountry":"Canada","BillingPostalCode":"V6C 1G8","Total":"0.99"} +{"InvoiceId":329,"CustomerId":16,"InvoiceDate":"2012-12-27T23:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"1.98"} +{"InvoiceId":330,"CustomerId":18,"InvoiceDate":"2012-12-27T23:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"1.98"} +{"InvoiceId":331,"CustomerId":20,"InvoiceDate":"2012-12-28T23:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"3.96"} +{"InvoiceId":332,"CustomerId":24,"InvoiceDate":"2012-12-29T23:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"5.94"} +{"InvoiceId":333,"CustomerId":30,"InvoiceDate":"2013-01-01T23:00:00.000Z","BillingAddress":"230 Elgin Street","BillingCity":"Ottawa","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"K2P 1L7","Total":"8.91"} +{"InvoiceId":334,"CustomerId":39,"InvoiceDate":"2013-01-06T23:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"13.86"} +{"InvoiceId":335,"CustomerId":53,"InvoiceDate":"2013-01-14T23:00:00.000Z","BillingAddress":"113 Lupus St","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"SW1V 3EN","Total":"0.99"} +{"InvoiceId":336,"CustomerId":54,"InvoiceDate":"2013-01-27T23:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"1.98"} +{"InvoiceId":337,"CustomerId":56,"InvoiceDate":"2013-01-27T23:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"1.98"} +{"InvoiceId":338,"CustomerId":58,"InvoiceDate":"2013-01-28T23:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"3.96"} +{"InvoiceId":339,"CustomerId":3,"InvoiceDate":"2013-01-29T23:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"5.94"} +{"InvoiceId":340,"CustomerId":9,"InvoiceDate":"2013-02-01T23:00:00.000Z","BillingAddress":"Sřnder Boulevard 51","BillingCity":"Copenhagen","BillingState":null,"BillingCountry":"Denmark","BillingPostalCode":"1720","Total":"8.91"} +{"InvoiceId":341,"CustomerId":18,"InvoiceDate":"2013-02-06T23:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"13.86"} +{"InvoiceId":342,"CustomerId":32,"InvoiceDate":"2013-02-14T23:00:00.000Z","BillingAddress":"696 Osborne Street","BillingCity":"Winnipeg","BillingState":"MB","BillingCountry":"Canada","BillingPostalCode":"R3L 2B9","Total":"0.99"} +{"InvoiceId":343,"CustomerId":33,"InvoiceDate":"2013-02-27T23:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"1.98"} +{"InvoiceId":344,"CustomerId":35,"InvoiceDate":"2013-02-27T23:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":345,"CustomerId":37,"InvoiceDate":"2013-02-28T23:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"3.96"} +{"InvoiceId":346,"CustomerId":41,"InvoiceDate":"2013-03-01T23:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"5.94"} +{"InvoiceId":347,"CustomerId":47,"InvoiceDate":"2013-03-04T23:00:00.000Z","BillingAddress":"Via Degli Scipioni, 43","BillingCity":"Rome","BillingState":"RM","BillingCountry":"Italy","BillingPostalCode":"00192","Total":"8.91"} +{"InvoiceId":348,"CustomerId":56,"InvoiceDate":"2013-03-09T23:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"13.86"} +{"InvoiceId":349,"CustomerId":11,"InvoiceDate":"2013-03-17T23:00:00.000Z","BillingAddress":"Av. Paulista, 2022","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01310-200","Total":"0.99"} +{"InvoiceId":350,"CustomerId":12,"InvoiceDate":"2013-03-30T23:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"1.98"} +{"InvoiceId":351,"CustomerId":14,"InvoiceDate":"2013-03-30T23:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"1.98"} +{"InvoiceId":352,"CustomerId":16,"InvoiceDate":"2013-03-31T22:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"3.96"} +{"InvoiceId":353,"CustomerId":20,"InvoiceDate":"2013-04-01T22:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"5.94"} +{"InvoiceId":354,"CustomerId":26,"InvoiceDate":"2013-04-04T22:00:00.000Z","BillingAddress":"2211 W Berry Street","BillingCity":"Fort Worth","BillingState":"TX","BillingCountry":"USA","BillingPostalCode":"76110","Total":"8.91"} +{"InvoiceId":355,"CustomerId":35,"InvoiceDate":"2013-04-09T22:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"13.86"} +{"InvoiceId":356,"CustomerId":49,"InvoiceDate":"2013-04-17T22:00:00.000Z","BillingAddress":"Ordynacka 10","BillingCity":"Warsaw","BillingState":null,"BillingCountry":"Poland","BillingPostalCode":"00-358","Total":"0.99"} +{"InvoiceId":357,"CustomerId":50,"InvoiceDate":"2013-04-30T22:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"1.98"} +{"InvoiceId":358,"CustomerId":52,"InvoiceDate":"2013-04-30T22:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"1.98"} +{"InvoiceId":359,"CustomerId":54,"InvoiceDate":"2013-05-01T22:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"3.96"} +{"InvoiceId":360,"CustomerId":58,"InvoiceDate":"2013-05-02T22:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"5.94"} +{"InvoiceId":361,"CustomerId":5,"InvoiceDate":"2013-05-05T22:00:00.000Z","BillingAddress":"Klanova 9/506","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14700","Total":"8.91"} +{"InvoiceId":362,"CustomerId":14,"InvoiceDate":"2013-05-10T22:00:00.000Z","BillingAddress":"8210 111 ST NW","BillingCity":"Edmonton","BillingState":"AB","BillingCountry":"Canada","BillingPostalCode":"T6G 2C7","Total":"13.86"} +{"InvoiceId":363,"CustomerId":28,"InvoiceDate":"2013-05-18T22:00:00.000Z","BillingAddress":"302 S 700 E","BillingCity":"Salt Lake City","BillingState":"UT","BillingCountry":"USA","BillingPostalCode":"84102","Total":"0.99"} +{"InvoiceId":364,"CustomerId":29,"InvoiceDate":"2013-05-31T22:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"1.98"} +{"InvoiceId":365,"CustomerId":31,"InvoiceDate":"2013-05-31T22:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"1.98"} +{"InvoiceId":366,"CustomerId":33,"InvoiceDate":"2013-06-01T22:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"3.96"} +{"InvoiceId":367,"CustomerId":37,"InvoiceDate":"2013-06-02T22:00:00.000Z","BillingAddress":"Berger Straße 10","BillingCity":"Frankfurt","BillingState":null,"BillingCountry":"Germany","BillingPostalCode":"60316","Total":"5.94"} +{"InvoiceId":368,"CustomerId":43,"InvoiceDate":"2013-06-05T22:00:00.000Z","BillingAddress":"68, Rue Jouvence","BillingCity":"Dijon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"21000","Total":"8.91"} +{"InvoiceId":369,"CustomerId":52,"InvoiceDate":"2013-06-10T22:00:00.000Z","BillingAddress":"202 Hoxton Street","BillingCity":"London","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"N1 5LH","Total":"13.86"} +{"InvoiceId":370,"CustomerId":7,"InvoiceDate":"2013-06-18T22:00:00.000Z","BillingAddress":"Rotenturmstraße 4, 1010 Innere Stadt","BillingCity":"Vienne","BillingState":null,"BillingCountry":"Austria","BillingPostalCode":"1010","Total":"0.99"} +{"InvoiceId":371,"CustomerId":8,"InvoiceDate":"2013-07-01T22:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"1.98"} +{"InvoiceId":372,"CustomerId":10,"InvoiceDate":"2013-07-01T22:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"1.98"} +{"InvoiceId":373,"CustomerId":12,"InvoiceDate":"2013-07-02T22:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"3.96"} +{"InvoiceId":374,"CustomerId":16,"InvoiceDate":"2013-07-03T22:00:00.000Z","BillingAddress":"1600 Amphitheatre Parkway","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94043-1351","Total":"5.94"} +{"InvoiceId":375,"CustomerId":22,"InvoiceDate":"2013-07-06T22:00:00.000Z","BillingAddress":"120 S Orange Ave","BillingCity":"Orlando","BillingState":"FL","BillingCountry":"USA","BillingPostalCode":"32801","Total":"8.91"} +{"InvoiceId":376,"CustomerId":31,"InvoiceDate":"2013-07-11T22:00:00.000Z","BillingAddress":"194A Chain Lake Drive","BillingCity":"Halifax","BillingState":"NS","BillingCountry":"Canada","BillingPostalCode":"B3S 1C5","Total":"13.86"} +{"InvoiceId":377,"CustomerId":45,"InvoiceDate":"2013-07-19T22:00:00.000Z","BillingAddress":"Erzsébet krt. 58.","BillingCity":"Budapest","BillingState":null,"BillingCountry":"Hungary","BillingPostalCode":"H-1073","Total":"0.99"} +{"InvoiceId":378,"CustomerId":46,"InvoiceDate":"2013-08-01T22:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"1.98"} +{"InvoiceId":379,"CustomerId":48,"InvoiceDate":"2013-08-01T22:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"1.98"} +{"InvoiceId":380,"CustomerId":50,"InvoiceDate":"2013-08-02T22:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"3.96"} +{"InvoiceId":381,"CustomerId":54,"InvoiceDate":"2013-08-03T22:00:00.000Z","BillingAddress":"110 Raeburn Pl","BillingCity":"Edinburgh","BillingState":null,"BillingCountry":"United Kingdom","BillingPostalCode":"EH4 1HH","Total":"5.94"} +{"InvoiceId":382,"CustomerId":1,"InvoiceDate":"2013-08-06T22:00:00.000Z","BillingAddress":"Av. Brigadeiro Faria Lima, 2170","BillingCity":"Săo José dos Campos","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"12227-000","Total":"8.91"} +{"InvoiceId":383,"CustomerId":10,"InvoiceDate":"2013-08-11T22:00:00.000Z","BillingAddress":"Rua Dr. Falcăo Filho, 155","BillingCity":"Săo Paulo","BillingState":"SP","BillingCountry":"Brazil","BillingPostalCode":"01007-010","Total":"13.86"} +{"InvoiceId":384,"CustomerId":24,"InvoiceDate":"2013-08-19T22:00:00.000Z","BillingAddress":"162 E Superior Street","BillingCity":"Chicago","BillingState":"IL","BillingCountry":"USA","BillingPostalCode":"60611","Total":"0.99"} +{"InvoiceId":385,"CustomerId":25,"InvoiceDate":"2013-09-01T22:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"1.98"} +{"InvoiceId":386,"CustomerId":27,"InvoiceDate":"2013-09-01T22:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"1.98"} +{"InvoiceId":387,"CustomerId":29,"InvoiceDate":"2013-09-02T22:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"3.96"} +{"InvoiceId":388,"CustomerId":33,"InvoiceDate":"2013-09-03T22:00:00.000Z","BillingAddress":"5112 48 Street","BillingCity":"Yellowknife","BillingState":"NT","BillingCountry":"Canada","BillingPostalCode":"X1A 1N6","Total":"5.94"} +{"InvoiceId":389,"CustomerId":39,"InvoiceDate":"2013-09-06T22:00:00.000Z","BillingAddress":"4, Rue Milton","BillingCity":"Paris","BillingState":null,"BillingCountry":"France","BillingPostalCode":"75009","Total":"8.91"} +{"InvoiceId":390,"CustomerId":48,"InvoiceDate":"2013-09-11T22:00:00.000Z","BillingAddress":"Lijnbaansgracht 120bg","BillingCity":"Amsterdam","BillingState":"VV","BillingCountry":"Netherlands","BillingPostalCode":"1016","Total":"13.86"} +{"InvoiceId":391,"CustomerId":3,"InvoiceDate":"2013-09-19T22:00:00.000Z","BillingAddress":"1498 rue Bélanger","BillingCity":"Montréal","BillingState":"QC","BillingCountry":"Canada","BillingPostalCode":"H2G 1A7","Total":"0.99"} +{"InvoiceId":392,"CustomerId":4,"InvoiceDate":"2013-10-02T22:00:00.000Z","BillingAddress":"Ullevĺlsveien 14","BillingCity":"Oslo","BillingState":null,"BillingCountry":"Norway","BillingPostalCode":"0171","Total":"1.98"} +{"InvoiceId":393,"CustomerId":6,"InvoiceDate":"2013-10-02T22:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"1.98"} +{"InvoiceId":394,"CustomerId":8,"InvoiceDate":"2013-10-03T22:00:00.000Z","BillingAddress":"Grétrystraat 63","BillingCity":"Brussels","BillingState":null,"BillingCountry":"Belgium","BillingPostalCode":"1000","Total":"3.96"} +{"InvoiceId":395,"CustomerId":12,"InvoiceDate":"2013-10-04T22:00:00.000Z","BillingAddress":"Praça Pio X, 119","BillingCity":"Rio de Janeiro","BillingState":"RJ","BillingCountry":"Brazil","BillingPostalCode":"20040-020","Total":"5.94"} +{"InvoiceId":396,"CustomerId":18,"InvoiceDate":"2013-10-07T22:00:00.000Z","BillingAddress":"627 Broadway","BillingCity":"New York","BillingState":"NY","BillingCountry":"USA","BillingPostalCode":"10012-2612","Total":"8.91"} +{"InvoiceId":397,"CustomerId":27,"InvoiceDate":"2013-10-12T22:00:00.000Z","BillingAddress":"1033 N Park Ave","BillingCity":"Tucson","BillingState":"AZ","BillingCountry":"USA","BillingPostalCode":"85719","Total":"13.86"} +{"InvoiceId":398,"CustomerId":41,"InvoiceDate":"2013-10-20T22:00:00.000Z","BillingAddress":"11, Place Bellecour","BillingCity":"Lyon","BillingState":null,"BillingCountry":"France","BillingPostalCode":"69002","Total":"0.99"} +{"InvoiceId":399,"CustomerId":42,"InvoiceDate":"2013-11-02T23:00:00.000Z","BillingAddress":"9, Place Louis Barthou","BillingCity":"Bordeaux","BillingState":null,"BillingCountry":"France","BillingPostalCode":"33000","Total":"1.98"} +{"InvoiceId":400,"CustomerId":44,"InvoiceDate":"2013-11-02T23:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"1.98"} +{"InvoiceId":401,"CustomerId":46,"InvoiceDate":"2013-11-03T23:00:00.000Z","BillingAddress":"3 Chatham Street","BillingCity":"Dublin","BillingState":"Dublin","BillingCountry":"Ireland","BillingPostalCode":null,"Total":"3.96"} +{"InvoiceId":402,"CustomerId":50,"InvoiceDate":"2013-11-04T23:00:00.000Z","BillingAddress":"C/ San Bernardo 85","BillingCity":"Madrid","BillingState":null,"BillingCountry":"Spain","BillingPostalCode":"28015","Total":"5.94"} +{"InvoiceId":403,"CustomerId":56,"InvoiceDate":"2013-11-07T23:00:00.000Z","BillingAddress":"307 Macacha Güemes","BillingCity":"Buenos Aires","BillingState":null,"BillingCountry":"Argentina","BillingPostalCode":"1106","Total":"8.91"} +{"InvoiceId":404,"CustomerId":6,"InvoiceDate":"2013-11-12T23:00:00.000Z","BillingAddress":"Rilská 3174/6","BillingCity":"Prague","BillingState":null,"BillingCountry":"Czech Republic","BillingPostalCode":"14300","Total":"25.86"} +{"InvoiceId":405,"CustomerId":20,"InvoiceDate":"2013-11-20T23:00:00.000Z","BillingAddress":"541 Del Medio Avenue","BillingCity":"Mountain View","BillingState":"CA","BillingCountry":"USA","BillingPostalCode":"94040-111","Total":"0.99"} +{"InvoiceId":406,"CustomerId":21,"InvoiceDate":"2013-12-03T23:00:00.000Z","BillingAddress":"801 W 4th Street","BillingCity":"Reno","BillingState":"NV","BillingCountry":"USA","BillingPostalCode":"89503","Total":"1.98"} +{"InvoiceId":407,"CustomerId":23,"InvoiceDate":"2013-12-03T23:00:00.000Z","BillingAddress":"69 Salem Street","BillingCity":"Boston","BillingState":"MA","BillingCountry":"USA","BillingPostalCode":"2113","Total":"1.98"} +{"InvoiceId":408,"CustomerId":25,"InvoiceDate":"2013-12-04T23:00:00.000Z","BillingAddress":"319 N. Frances Street","BillingCity":"Madison","BillingState":"WI","BillingCountry":"USA","BillingPostalCode":"53703","Total":"3.96"} +{"InvoiceId":409,"CustomerId":29,"InvoiceDate":"2013-12-05T23:00:00.000Z","BillingAddress":"796 Dundas Street West","BillingCity":"Toronto","BillingState":"ON","BillingCountry":"Canada","BillingPostalCode":"M6J 1V1","Total":"5.94"} +{"InvoiceId":410,"CustomerId":35,"InvoiceDate":"2013-12-08T23:00:00.000Z","BillingAddress":"Rua dos Campeőes Europeus de Viena, 4350","BillingCity":"Porto","BillingState":null,"BillingCountry":"Portugal","BillingPostalCode":null,"Total":"8.91"} +{"InvoiceId":411,"CustomerId":44,"InvoiceDate":"2013-12-13T23:00:00.000Z","BillingAddress":"Porthaninkatu 9","BillingCity":"Helsinki","BillingState":null,"BillingCountry":"Finland","BillingPostalCode":"00530","Total":"13.86"} +{"InvoiceId":412,"CustomerId":58,"InvoiceDate":"2013-12-21T23:00:00.000Z","BillingAddress":"12,Community Centre","BillingCity":"Delhi","BillingState":null,"BillingCountry":"India","BillingPostalCode":"110017","Total":"1.99"} diff --git a/e2e-tests/data/chinook-jsonl/InvoiceLine.jsonl b/e2e-tests/data/chinook-jsonl/InvoiceLine.jsonl new file mode 100644 index 000000000..6268a2e5d --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/InvoiceLine.jsonl @@ -0,0 +1,2240 @@ +{"InvoiceLineId":1,"InvoiceId":1,"TrackId":2,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2,"InvoiceId":1,"TrackId":4,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":3,"InvoiceId":2,"TrackId":6,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":4,"InvoiceId":2,"TrackId":8,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":5,"InvoiceId":2,"TrackId":10,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":6,"InvoiceId":2,"TrackId":12,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":7,"InvoiceId":3,"TrackId":16,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":8,"InvoiceId":3,"TrackId":20,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":9,"InvoiceId":3,"TrackId":24,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":10,"InvoiceId":3,"TrackId":28,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":11,"InvoiceId":3,"TrackId":32,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":12,"InvoiceId":3,"TrackId":36,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":13,"InvoiceId":4,"TrackId":42,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":14,"InvoiceId":4,"TrackId":48,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":15,"InvoiceId":4,"TrackId":54,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":16,"InvoiceId":4,"TrackId":60,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":17,"InvoiceId":4,"TrackId":66,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":18,"InvoiceId":4,"TrackId":72,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":19,"InvoiceId":4,"TrackId":78,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":20,"InvoiceId":4,"TrackId":84,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":21,"InvoiceId":4,"TrackId":90,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":22,"InvoiceId":5,"TrackId":99,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":23,"InvoiceId":5,"TrackId":108,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":24,"InvoiceId":5,"TrackId":117,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":25,"InvoiceId":5,"TrackId":126,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":26,"InvoiceId":5,"TrackId":135,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":27,"InvoiceId":5,"TrackId":144,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":28,"InvoiceId":5,"TrackId":153,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":29,"InvoiceId":5,"TrackId":162,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":30,"InvoiceId":5,"TrackId":171,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":31,"InvoiceId":5,"TrackId":180,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":32,"InvoiceId":5,"TrackId":189,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":33,"InvoiceId":5,"TrackId":198,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":34,"InvoiceId":5,"TrackId":207,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":35,"InvoiceId":5,"TrackId":216,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":36,"InvoiceId":6,"TrackId":230,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":37,"InvoiceId":7,"TrackId":231,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":38,"InvoiceId":7,"TrackId":232,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":39,"InvoiceId":8,"TrackId":234,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":40,"InvoiceId":8,"TrackId":236,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":41,"InvoiceId":9,"TrackId":238,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":42,"InvoiceId":9,"TrackId":240,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":43,"InvoiceId":9,"TrackId":242,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":44,"InvoiceId":9,"TrackId":244,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":45,"InvoiceId":10,"TrackId":248,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":46,"InvoiceId":10,"TrackId":252,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":47,"InvoiceId":10,"TrackId":256,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":48,"InvoiceId":10,"TrackId":260,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":49,"InvoiceId":10,"TrackId":264,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":50,"InvoiceId":10,"TrackId":268,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":51,"InvoiceId":11,"TrackId":274,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":52,"InvoiceId":11,"TrackId":280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":53,"InvoiceId":11,"TrackId":286,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":54,"InvoiceId":11,"TrackId":292,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":55,"InvoiceId":11,"TrackId":298,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":56,"InvoiceId":11,"TrackId":304,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":57,"InvoiceId":11,"TrackId":310,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":58,"InvoiceId":11,"TrackId":316,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":59,"InvoiceId":11,"TrackId":322,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":60,"InvoiceId":12,"TrackId":331,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":61,"InvoiceId":12,"TrackId":340,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":62,"InvoiceId":12,"TrackId":349,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":63,"InvoiceId":12,"TrackId":358,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":64,"InvoiceId":12,"TrackId":367,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":65,"InvoiceId":12,"TrackId":376,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":66,"InvoiceId":12,"TrackId":385,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":67,"InvoiceId":12,"TrackId":394,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":68,"InvoiceId":12,"TrackId":403,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":69,"InvoiceId":12,"TrackId":412,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":70,"InvoiceId":12,"TrackId":421,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":71,"InvoiceId":12,"TrackId":430,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":72,"InvoiceId":12,"TrackId":439,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":73,"InvoiceId":12,"TrackId":448,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":74,"InvoiceId":13,"TrackId":462,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":75,"InvoiceId":14,"TrackId":463,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":76,"InvoiceId":14,"TrackId":464,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":77,"InvoiceId":15,"TrackId":466,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":78,"InvoiceId":15,"TrackId":468,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":79,"InvoiceId":16,"TrackId":470,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":80,"InvoiceId":16,"TrackId":472,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":81,"InvoiceId":16,"TrackId":474,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":82,"InvoiceId":16,"TrackId":476,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":83,"InvoiceId":17,"TrackId":480,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":84,"InvoiceId":17,"TrackId":484,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":85,"InvoiceId":17,"TrackId":488,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":86,"InvoiceId":17,"TrackId":492,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":87,"InvoiceId":17,"TrackId":496,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":88,"InvoiceId":17,"TrackId":500,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":89,"InvoiceId":18,"TrackId":506,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":90,"InvoiceId":18,"TrackId":512,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":91,"InvoiceId":18,"TrackId":518,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":92,"InvoiceId":18,"TrackId":524,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":93,"InvoiceId":18,"TrackId":530,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":94,"InvoiceId":18,"TrackId":536,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":95,"InvoiceId":18,"TrackId":542,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":96,"InvoiceId":18,"TrackId":548,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":97,"InvoiceId":18,"TrackId":554,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":98,"InvoiceId":19,"TrackId":563,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":99,"InvoiceId":19,"TrackId":572,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":100,"InvoiceId":19,"TrackId":581,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":101,"InvoiceId":19,"TrackId":590,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":102,"InvoiceId":19,"TrackId":599,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":103,"InvoiceId":19,"TrackId":608,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":104,"InvoiceId":19,"TrackId":617,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":105,"InvoiceId":19,"TrackId":626,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":106,"InvoiceId":19,"TrackId":635,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":107,"InvoiceId":19,"TrackId":644,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":108,"InvoiceId":19,"TrackId":653,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":109,"InvoiceId":19,"TrackId":662,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":110,"InvoiceId":19,"TrackId":671,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":111,"InvoiceId":19,"TrackId":680,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":112,"InvoiceId":20,"TrackId":694,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":113,"InvoiceId":21,"TrackId":695,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":114,"InvoiceId":21,"TrackId":696,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":115,"InvoiceId":22,"TrackId":698,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":116,"InvoiceId":22,"TrackId":700,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":117,"InvoiceId":23,"TrackId":702,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":118,"InvoiceId":23,"TrackId":704,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":119,"InvoiceId":23,"TrackId":706,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":120,"InvoiceId":23,"TrackId":708,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":121,"InvoiceId":24,"TrackId":712,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":122,"InvoiceId":24,"TrackId":716,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":123,"InvoiceId":24,"TrackId":720,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":124,"InvoiceId":24,"TrackId":724,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":125,"InvoiceId":24,"TrackId":728,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":126,"InvoiceId":24,"TrackId":732,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":127,"InvoiceId":25,"TrackId":738,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":128,"InvoiceId":25,"TrackId":744,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":129,"InvoiceId":25,"TrackId":750,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":130,"InvoiceId":25,"TrackId":756,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":131,"InvoiceId":25,"TrackId":762,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":132,"InvoiceId":25,"TrackId":768,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":133,"InvoiceId":25,"TrackId":774,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":134,"InvoiceId":25,"TrackId":780,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":135,"InvoiceId":25,"TrackId":786,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":136,"InvoiceId":26,"TrackId":795,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":137,"InvoiceId":26,"TrackId":804,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":138,"InvoiceId":26,"TrackId":813,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":139,"InvoiceId":26,"TrackId":822,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":140,"InvoiceId":26,"TrackId":831,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":141,"InvoiceId":26,"TrackId":840,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":142,"InvoiceId":26,"TrackId":849,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":143,"InvoiceId":26,"TrackId":858,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":144,"InvoiceId":26,"TrackId":867,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":145,"InvoiceId":26,"TrackId":876,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":146,"InvoiceId":26,"TrackId":885,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":147,"InvoiceId":26,"TrackId":894,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":148,"InvoiceId":26,"TrackId":903,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":149,"InvoiceId":26,"TrackId":912,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":150,"InvoiceId":27,"TrackId":926,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":151,"InvoiceId":28,"TrackId":927,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":152,"InvoiceId":28,"TrackId":928,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":153,"InvoiceId":29,"TrackId":930,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":154,"InvoiceId":29,"TrackId":932,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":155,"InvoiceId":30,"TrackId":934,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":156,"InvoiceId":30,"TrackId":936,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":157,"InvoiceId":30,"TrackId":938,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":158,"InvoiceId":30,"TrackId":940,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":159,"InvoiceId":31,"TrackId":944,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":160,"InvoiceId":31,"TrackId":948,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":161,"InvoiceId":31,"TrackId":952,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":162,"InvoiceId":31,"TrackId":956,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":163,"InvoiceId":31,"TrackId":960,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":164,"InvoiceId":31,"TrackId":964,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":165,"InvoiceId":32,"TrackId":970,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":166,"InvoiceId":32,"TrackId":976,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":167,"InvoiceId":32,"TrackId":982,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":168,"InvoiceId":32,"TrackId":988,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":169,"InvoiceId":32,"TrackId":994,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":170,"InvoiceId":32,"TrackId":1000,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":171,"InvoiceId":32,"TrackId":1006,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":172,"InvoiceId":32,"TrackId":1012,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":173,"InvoiceId":32,"TrackId":1018,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":174,"InvoiceId":33,"TrackId":1027,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":175,"InvoiceId":33,"TrackId":1036,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":176,"InvoiceId":33,"TrackId":1045,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":177,"InvoiceId":33,"TrackId":1054,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":178,"InvoiceId":33,"TrackId":1063,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":179,"InvoiceId":33,"TrackId":1072,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":180,"InvoiceId":33,"TrackId":1081,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":181,"InvoiceId":33,"TrackId":1090,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":182,"InvoiceId":33,"TrackId":1099,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":183,"InvoiceId":33,"TrackId":1108,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":184,"InvoiceId":33,"TrackId":1117,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":185,"InvoiceId":33,"TrackId":1126,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":186,"InvoiceId":33,"TrackId":1135,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":187,"InvoiceId":33,"TrackId":1144,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":188,"InvoiceId":34,"TrackId":1158,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":189,"InvoiceId":35,"TrackId":1159,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":190,"InvoiceId":35,"TrackId":1160,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":191,"InvoiceId":36,"TrackId":1162,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":192,"InvoiceId":36,"TrackId":1164,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":193,"InvoiceId":37,"TrackId":1166,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":194,"InvoiceId":37,"TrackId":1168,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":195,"InvoiceId":37,"TrackId":1170,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":196,"InvoiceId":37,"TrackId":1172,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":197,"InvoiceId":38,"TrackId":1176,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":198,"InvoiceId":38,"TrackId":1180,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":199,"InvoiceId":38,"TrackId":1184,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":200,"InvoiceId":38,"TrackId":1188,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":201,"InvoiceId":38,"TrackId":1192,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":202,"InvoiceId":38,"TrackId":1196,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":203,"InvoiceId":39,"TrackId":1202,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":204,"InvoiceId":39,"TrackId":1208,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":205,"InvoiceId":39,"TrackId":1214,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":206,"InvoiceId":39,"TrackId":1220,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":207,"InvoiceId":39,"TrackId":1226,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":208,"InvoiceId":39,"TrackId":1232,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":209,"InvoiceId":39,"TrackId":1238,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":210,"InvoiceId":39,"TrackId":1244,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":211,"InvoiceId":39,"TrackId":1250,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":212,"InvoiceId":40,"TrackId":1259,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":213,"InvoiceId":40,"TrackId":1268,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":214,"InvoiceId":40,"TrackId":1277,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":215,"InvoiceId":40,"TrackId":1286,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":216,"InvoiceId":40,"TrackId":1295,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":217,"InvoiceId":40,"TrackId":1304,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":218,"InvoiceId":40,"TrackId":1313,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":219,"InvoiceId":40,"TrackId":1322,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":220,"InvoiceId":40,"TrackId":1331,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":221,"InvoiceId":40,"TrackId":1340,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":222,"InvoiceId":40,"TrackId":1349,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":223,"InvoiceId":40,"TrackId":1358,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":224,"InvoiceId":40,"TrackId":1367,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":225,"InvoiceId":40,"TrackId":1376,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":226,"InvoiceId":41,"TrackId":1390,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":227,"InvoiceId":42,"TrackId":1391,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":228,"InvoiceId":42,"TrackId":1392,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":229,"InvoiceId":43,"TrackId":1394,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":230,"InvoiceId":43,"TrackId":1396,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":231,"InvoiceId":44,"TrackId":1398,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":232,"InvoiceId":44,"TrackId":1400,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":233,"InvoiceId":44,"TrackId":1402,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":234,"InvoiceId":44,"TrackId":1404,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":235,"InvoiceId":45,"TrackId":1408,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":236,"InvoiceId":45,"TrackId":1412,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":237,"InvoiceId":45,"TrackId":1416,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":238,"InvoiceId":45,"TrackId":1420,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":239,"InvoiceId":45,"TrackId":1424,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":240,"InvoiceId":45,"TrackId":1428,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":241,"InvoiceId":46,"TrackId":1434,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":242,"InvoiceId":46,"TrackId":1440,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":243,"InvoiceId":46,"TrackId":1446,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":244,"InvoiceId":46,"TrackId":1452,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":245,"InvoiceId":46,"TrackId":1458,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":246,"InvoiceId":46,"TrackId":1464,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":247,"InvoiceId":46,"TrackId":1470,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":248,"InvoiceId":46,"TrackId":1476,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":249,"InvoiceId":46,"TrackId":1482,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":250,"InvoiceId":47,"TrackId":1491,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":251,"InvoiceId":47,"TrackId":1500,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":252,"InvoiceId":47,"TrackId":1509,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":253,"InvoiceId":47,"TrackId":1518,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":254,"InvoiceId":47,"TrackId":1527,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":255,"InvoiceId":47,"TrackId":1536,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":256,"InvoiceId":47,"TrackId":1545,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":257,"InvoiceId":47,"TrackId":1554,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":258,"InvoiceId":47,"TrackId":1563,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":259,"InvoiceId":47,"TrackId":1572,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":260,"InvoiceId":47,"TrackId":1581,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":261,"InvoiceId":47,"TrackId":1590,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":262,"InvoiceId":47,"TrackId":1599,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":263,"InvoiceId":47,"TrackId":1608,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":264,"InvoiceId":48,"TrackId":1622,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":265,"InvoiceId":49,"TrackId":1623,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":266,"InvoiceId":49,"TrackId":1624,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":267,"InvoiceId":50,"TrackId":1626,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":268,"InvoiceId":50,"TrackId":1628,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":269,"InvoiceId":51,"TrackId":1630,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":270,"InvoiceId":51,"TrackId":1632,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":271,"InvoiceId":51,"TrackId":1634,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":272,"InvoiceId":51,"TrackId":1636,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":273,"InvoiceId":52,"TrackId":1640,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":274,"InvoiceId":52,"TrackId":1644,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":275,"InvoiceId":52,"TrackId":1648,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":276,"InvoiceId":52,"TrackId":1652,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":277,"InvoiceId":52,"TrackId":1656,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":278,"InvoiceId":52,"TrackId":1660,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":279,"InvoiceId":53,"TrackId":1666,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":280,"InvoiceId":53,"TrackId":1672,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":281,"InvoiceId":53,"TrackId":1678,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":282,"InvoiceId":53,"TrackId":1684,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":283,"InvoiceId":53,"TrackId":1690,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":284,"InvoiceId":53,"TrackId":1696,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":285,"InvoiceId":53,"TrackId":1702,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":286,"InvoiceId":53,"TrackId":1708,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":287,"InvoiceId":53,"TrackId":1714,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":288,"InvoiceId":54,"TrackId":1723,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":289,"InvoiceId":54,"TrackId":1732,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":290,"InvoiceId":54,"TrackId":1741,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":291,"InvoiceId":54,"TrackId":1750,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":292,"InvoiceId":54,"TrackId":1759,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":293,"InvoiceId":54,"TrackId":1768,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":294,"InvoiceId":54,"TrackId":1777,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":295,"InvoiceId":54,"TrackId":1786,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":296,"InvoiceId":54,"TrackId":1795,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":297,"InvoiceId":54,"TrackId":1804,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":298,"InvoiceId":54,"TrackId":1813,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":299,"InvoiceId":54,"TrackId":1822,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":300,"InvoiceId":54,"TrackId":1831,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":301,"InvoiceId":54,"TrackId":1840,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":302,"InvoiceId":55,"TrackId":1854,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":303,"InvoiceId":56,"TrackId":1855,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":304,"InvoiceId":56,"TrackId":1856,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":305,"InvoiceId":57,"TrackId":1858,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":306,"InvoiceId":57,"TrackId":1860,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":307,"InvoiceId":58,"TrackId":1862,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":308,"InvoiceId":58,"TrackId":1864,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":309,"InvoiceId":58,"TrackId":1866,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":310,"InvoiceId":58,"TrackId":1868,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":311,"InvoiceId":59,"TrackId":1872,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":312,"InvoiceId":59,"TrackId":1876,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":313,"InvoiceId":59,"TrackId":1880,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":314,"InvoiceId":59,"TrackId":1884,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":315,"InvoiceId":59,"TrackId":1888,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":316,"InvoiceId":59,"TrackId":1892,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":317,"InvoiceId":60,"TrackId":1898,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":318,"InvoiceId":60,"TrackId":1904,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":319,"InvoiceId":60,"TrackId":1910,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":320,"InvoiceId":60,"TrackId":1916,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":321,"InvoiceId":60,"TrackId":1922,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":322,"InvoiceId":60,"TrackId":1928,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":323,"InvoiceId":60,"TrackId":1934,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":324,"InvoiceId":60,"TrackId":1940,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":325,"InvoiceId":60,"TrackId":1946,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":326,"InvoiceId":61,"TrackId":1955,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":327,"InvoiceId":61,"TrackId":1964,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":328,"InvoiceId":61,"TrackId":1973,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":329,"InvoiceId":61,"TrackId":1982,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":330,"InvoiceId":61,"TrackId":1991,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":331,"InvoiceId":61,"TrackId":2000,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":332,"InvoiceId":61,"TrackId":2009,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":333,"InvoiceId":61,"TrackId":2018,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":334,"InvoiceId":61,"TrackId":2027,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":335,"InvoiceId":61,"TrackId":2036,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":336,"InvoiceId":61,"TrackId":2045,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":337,"InvoiceId":61,"TrackId":2054,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":338,"InvoiceId":61,"TrackId":2063,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":339,"InvoiceId":61,"TrackId":2072,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":340,"InvoiceId":62,"TrackId":2086,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":341,"InvoiceId":63,"TrackId":2087,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":342,"InvoiceId":63,"TrackId":2088,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":343,"InvoiceId":64,"TrackId":2090,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":344,"InvoiceId":64,"TrackId":2092,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":345,"InvoiceId":65,"TrackId":2094,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":346,"InvoiceId":65,"TrackId":2096,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":347,"InvoiceId":65,"TrackId":2098,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":348,"InvoiceId":65,"TrackId":2100,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":349,"InvoiceId":66,"TrackId":2104,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":350,"InvoiceId":66,"TrackId":2108,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":351,"InvoiceId":66,"TrackId":2112,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":352,"InvoiceId":66,"TrackId":2116,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":353,"InvoiceId":66,"TrackId":2120,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":354,"InvoiceId":66,"TrackId":2124,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":355,"InvoiceId":67,"TrackId":2130,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":356,"InvoiceId":67,"TrackId":2136,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":357,"InvoiceId":67,"TrackId":2142,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":358,"InvoiceId":67,"TrackId":2148,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":359,"InvoiceId":67,"TrackId":2154,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":360,"InvoiceId":67,"TrackId":2160,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":361,"InvoiceId":67,"TrackId":2166,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":362,"InvoiceId":67,"TrackId":2172,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":363,"InvoiceId":67,"TrackId":2178,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":364,"InvoiceId":68,"TrackId":2187,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":365,"InvoiceId":68,"TrackId":2196,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":366,"InvoiceId":68,"TrackId":2205,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":367,"InvoiceId":68,"TrackId":2214,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":368,"InvoiceId":68,"TrackId":2223,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":369,"InvoiceId":68,"TrackId":2232,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":370,"InvoiceId":68,"TrackId":2241,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":371,"InvoiceId":68,"TrackId":2250,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":372,"InvoiceId":68,"TrackId":2259,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":373,"InvoiceId":68,"TrackId":2268,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":374,"InvoiceId":68,"TrackId":2277,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":375,"InvoiceId":68,"TrackId":2286,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":376,"InvoiceId":68,"TrackId":2295,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":377,"InvoiceId":68,"TrackId":2304,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":378,"InvoiceId":69,"TrackId":2318,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":379,"InvoiceId":70,"TrackId":2319,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":380,"InvoiceId":70,"TrackId":2320,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":381,"InvoiceId":71,"TrackId":2322,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":382,"InvoiceId":71,"TrackId":2324,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":383,"InvoiceId":72,"TrackId":2326,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":384,"InvoiceId":72,"TrackId":2328,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":385,"InvoiceId":72,"TrackId":2330,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":386,"InvoiceId":72,"TrackId":2332,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":387,"InvoiceId":73,"TrackId":2336,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":388,"InvoiceId":73,"TrackId":2340,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":389,"InvoiceId":73,"TrackId":2344,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":390,"InvoiceId":73,"TrackId":2348,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":391,"InvoiceId":73,"TrackId":2352,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":392,"InvoiceId":73,"TrackId":2356,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":393,"InvoiceId":74,"TrackId":2362,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":394,"InvoiceId":74,"TrackId":2368,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":395,"InvoiceId":74,"TrackId":2374,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":396,"InvoiceId":74,"TrackId":2380,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":397,"InvoiceId":74,"TrackId":2386,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":398,"InvoiceId":74,"TrackId":2392,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":399,"InvoiceId":74,"TrackId":2398,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":400,"InvoiceId":74,"TrackId":2404,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":401,"InvoiceId":74,"TrackId":2410,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":402,"InvoiceId":75,"TrackId":2419,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":403,"InvoiceId":75,"TrackId":2428,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":404,"InvoiceId":75,"TrackId":2437,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":405,"InvoiceId":75,"TrackId":2446,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":406,"InvoiceId":75,"TrackId":2455,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":407,"InvoiceId":75,"TrackId":2464,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":408,"InvoiceId":75,"TrackId":2473,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":409,"InvoiceId":75,"TrackId":2482,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":410,"InvoiceId":75,"TrackId":2491,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":411,"InvoiceId":75,"TrackId":2500,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":412,"InvoiceId":75,"TrackId":2509,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":413,"InvoiceId":75,"TrackId":2518,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":414,"InvoiceId":75,"TrackId":2527,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":415,"InvoiceId":75,"TrackId":2536,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":416,"InvoiceId":76,"TrackId":2550,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":417,"InvoiceId":77,"TrackId":2551,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":418,"InvoiceId":77,"TrackId":2552,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":419,"InvoiceId":78,"TrackId":2554,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":420,"InvoiceId":78,"TrackId":2556,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":421,"InvoiceId":79,"TrackId":2558,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":422,"InvoiceId":79,"TrackId":2560,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":423,"InvoiceId":79,"TrackId":2562,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":424,"InvoiceId":79,"TrackId":2564,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":425,"InvoiceId":80,"TrackId":2568,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":426,"InvoiceId":80,"TrackId":2572,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":427,"InvoiceId":80,"TrackId":2576,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":428,"InvoiceId":80,"TrackId":2580,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":429,"InvoiceId":80,"TrackId":2584,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":430,"InvoiceId":80,"TrackId":2588,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":431,"InvoiceId":81,"TrackId":2594,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":432,"InvoiceId":81,"TrackId":2600,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":433,"InvoiceId":81,"TrackId":2606,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":434,"InvoiceId":81,"TrackId":2612,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":435,"InvoiceId":81,"TrackId":2618,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":436,"InvoiceId":81,"TrackId":2624,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":437,"InvoiceId":81,"TrackId":2630,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":438,"InvoiceId":81,"TrackId":2636,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":439,"InvoiceId":81,"TrackId":2642,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":440,"InvoiceId":82,"TrackId":2651,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":441,"InvoiceId":82,"TrackId":2660,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":442,"InvoiceId":82,"TrackId":2669,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":443,"InvoiceId":82,"TrackId":2678,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":444,"InvoiceId":82,"TrackId":2687,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":445,"InvoiceId":82,"TrackId":2696,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":446,"InvoiceId":82,"TrackId":2705,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":447,"InvoiceId":82,"TrackId":2714,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":448,"InvoiceId":82,"TrackId":2723,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":449,"InvoiceId":82,"TrackId":2732,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":450,"InvoiceId":82,"TrackId":2741,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":451,"InvoiceId":82,"TrackId":2750,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":452,"InvoiceId":82,"TrackId":2759,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":453,"InvoiceId":82,"TrackId":2768,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":454,"InvoiceId":83,"TrackId":2782,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":455,"InvoiceId":84,"TrackId":2783,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":456,"InvoiceId":84,"TrackId":2784,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":457,"InvoiceId":85,"TrackId":2786,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":458,"InvoiceId":85,"TrackId":2788,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":459,"InvoiceId":86,"TrackId":2790,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":460,"InvoiceId":86,"TrackId":2792,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":461,"InvoiceId":86,"TrackId":2794,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":462,"InvoiceId":86,"TrackId":2796,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":463,"InvoiceId":87,"TrackId":2800,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":464,"InvoiceId":87,"TrackId":2804,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":465,"InvoiceId":87,"TrackId":2808,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":466,"InvoiceId":87,"TrackId":2812,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":467,"InvoiceId":87,"TrackId":2816,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":468,"InvoiceId":87,"TrackId":2820,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":469,"InvoiceId":88,"TrackId":2826,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":470,"InvoiceId":88,"TrackId":2832,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":471,"InvoiceId":88,"TrackId":2838,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":472,"InvoiceId":88,"TrackId":2844,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":473,"InvoiceId":88,"TrackId":2850,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":474,"InvoiceId":88,"TrackId":2856,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":475,"InvoiceId":88,"TrackId":2862,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":476,"InvoiceId":88,"TrackId":2868,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":477,"InvoiceId":88,"TrackId":2874,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":478,"InvoiceId":89,"TrackId":2883,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":479,"InvoiceId":89,"TrackId":2892,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":480,"InvoiceId":89,"TrackId":2901,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":481,"InvoiceId":89,"TrackId":2910,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":482,"InvoiceId":89,"TrackId":2919,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":483,"InvoiceId":89,"TrackId":2928,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":484,"InvoiceId":89,"TrackId":2937,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":485,"InvoiceId":89,"TrackId":2946,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":486,"InvoiceId":89,"TrackId":2955,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":487,"InvoiceId":89,"TrackId":2964,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":488,"InvoiceId":89,"TrackId":2973,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":489,"InvoiceId":89,"TrackId":2982,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":490,"InvoiceId":89,"TrackId":2991,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":491,"InvoiceId":89,"TrackId":3000,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":492,"InvoiceId":90,"TrackId":3014,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":493,"InvoiceId":91,"TrackId":3015,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":494,"InvoiceId":91,"TrackId":3016,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":495,"InvoiceId":92,"TrackId":3018,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":496,"InvoiceId":92,"TrackId":3020,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":497,"InvoiceId":93,"TrackId":3022,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":498,"InvoiceId":93,"TrackId":3024,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":499,"InvoiceId":93,"TrackId":3026,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":500,"InvoiceId":93,"TrackId":3028,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":501,"InvoiceId":94,"TrackId":3032,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":502,"InvoiceId":94,"TrackId":3036,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":503,"InvoiceId":94,"TrackId":3040,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":504,"InvoiceId":94,"TrackId":3044,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":505,"InvoiceId":94,"TrackId":3048,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":506,"InvoiceId":94,"TrackId":3052,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":507,"InvoiceId":95,"TrackId":3058,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":508,"InvoiceId":95,"TrackId":3064,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":509,"InvoiceId":95,"TrackId":3070,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":510,"InvoiceId":95,"TrackId":3076,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":511,"InvoiceId":95,"TrackId":3082,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":512,"InvoiceId":95,"TrackId":3088,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":513,"InvoiceId":95,"TrackId":3094,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":514,"InvoiceId":95,"TrackId":3100,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":515,"InvoiceId":95,"TrackId":3106,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":516,"InvoiceId":96,"TrackId":3115,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":517,"InvoiceId":96,"TrackId":3124,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":518,"InvoiceId":96,"TrackId":3133,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":519,"InvoiceId":96,"TrackId":3142,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":520,"InvoiceId":96,"TrackId":3151,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":521,"InvoiceId":96,"TrackId":3160,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":522,"InvoiceId":96,"TrackId":3169,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":523,"InvoiceId":96,"TrackId":3178,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":524,"InvoiceId":96,"TrackId":3187,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":525,"InvoiceId":96,"TrackId":3196,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":526,"InvoiceId":96,"TrackId":3205,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":527,"InvoiceId":96,"TrackId":3214,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":528,"InvoiceId":96,"TrackId":3223,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":529,"InvoiceId":96,"TrackId":3232,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":530,"InvoiceId":97,"TrackId":3246,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":531,"InvoiceId":98,"TrackId":3247,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":532,"InvoiceId":98,"TrackId":3248,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":533,"InvoiceId":99,"TrackId":3250,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":534,"InvoiceId":99,"TrackId":3252,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":535,"InvoiceId":100,"TrackId":3254,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":536,"InvoiceId":100,"TrackId":3256,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":537,"InvoiceId":100,"TrackId":3258,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":538,"InvoiceId":100,"TrackId":3260,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":539,"InvoiceId":101,"TrackId":3264,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":540,"InvoiceId":101,"TrackId":3268,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":541,"InvoiceId":101,"TrackId":3272,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":542,"InvoiceId":101,"TrackId":3276,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":543,"InvoiceId":101,"TrackId":3280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":544,"InvoiceId":101,"TrackId":3284,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":545,"InvoiceId":102,"TrackId":3290,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":546,"InvoiceId":102,"TrackId":3296,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":547,"InvoiceId":102,"TrackId":3302,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":548,"InvoiceId":102,"TrackId":3308,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":549,"InvoiceId":102,"TrackId":3314,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":550,"InvoiceId":102,"TrackId":3320,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":551,"InvoiceId":102,"TrackId":3326,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":552,"InvoiceId":102,"TrackId":3332,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":553,"InvoiceId":102,"TrackId":3338,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":554,"InvoiceId":103,"TrackId":3347,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":555,"InvoiceId":103,"TrackId":3356,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":556,"InvoiceId":103,"TrackId":3365,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":557,"InvoiceId":103,"TrackId":3374,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":558,"InvoiceId":103,"TrackId":3383,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":559,"InvoiceId":103,"TrackId":3392,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":560,"InvoiceId":103,"TrackId":3401,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":561,"InvoiceId":103,"TrackId":3410,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":562,"InvoiceId":103,"TrackId":3419,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":563,"InvoiceId":103,"TrackId":3428,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":564,"InvoiceId":103,"TrackId":3437,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":565,"InvoiceId":103,"TrackId":3446,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":566,"InvoiceId":103,"TrackId":3455,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":567,"InvoiceId":103,"TrackId":3464,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":568,"InvoiceId":104,"TrackId":3478,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":569,"InvoiceId":105,"TrackId":3479,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":570,"InvoiceId":105,"TrackId":3480,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":571,"InvoiceId":106,"TrackId":3482,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":572,"InvoiceId":106,"TrackId":3484,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":573,"InvoiceId":107,"TrackId":3486,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":574,"InvoiceId":107,"TrackId":3488,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":575,"InvoiceId":107,"TrackId":3490,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":576,"InvoiceId":107,"TrackId":3492,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":577,"InvoiceId":108,"TrackId":3496,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":578,"InvoiceId":108,"TrackId":3500,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":579,"InvoiceId":108,"TrackId":1,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":580,"InvoiceId":108,"TrackId":5,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":581,"InvoiceId":108,"TrackId":9,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":582,"InvoiceId":108,"TrackId":13,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":583,"InvoiceId":109,"TrackId":19,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":584,"InvoiceId":109,"TrackId":25,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":585,"InvoiceId":109,"TrackId":31,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":586,"InvoiceId":109,"TrackId":37,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":587,"InvoiceId":109,"TrackId":43,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":588,"InvoiceId":109,"TrackId":49,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":589,"InvoiceId":109,"TrackId":55,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":590,"InvoiceId":109,"TrackId":61,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":591,"InvoiceId":109,"TrackId":67,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":592,"InvoiceId":110,"TrackId":76,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":593,"InvoiceId":110,"TrackId":85,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":594,"InvoiceId":110,"TrackId":94,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":595,"InvoiceId":110,"TrackId":103,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":596,"InvoiceId":110,"TrackId":112,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":597,"InvoiceId":110,"TrackId":121,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":598,"InvoiceId":110,"TrackId":130,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":599,"InvoiceId":110,"TrackId":139,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":600,"InvoiceId":110,"TrackId":148,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":601,"InvoiceId":110,"TrackId":157,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":602,"InvoiceId":110,"TrackId":166,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":603,"InvoiceId":110,"TrackId":175,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":604,"InvoiceId":110,"TrackId":184,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":605,"InvoiceId":110,"TrackId":193,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":606,"InvoiceId":111,"TrackId":207,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":607,"InvoiceId":112,"TrackId":208,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":608,"InvoiceId":112,"TrackId":209,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":609,"InvoiceId":113,"TrackId":211,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":610,"InvoiceId":113,"TrackId":213,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":611,"InvoiceId":114,"TrackId":215,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":612,"InvoiceId":114,"TrackId":217,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":613,"InvoiceId":114,"TrackId":219,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":614,"InvoiceId":114,"TrackId":221,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":615,"InvoiceId":115,"TrackId":225,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":616,"InvoiceId":115,"TrackId":229,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":617,"InvoiceId":115,"TrackId":233,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":618,"InvoiceId":115,"TrackId":237,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":619,"InvoiceId":115,"TrackId":241,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":620,"InvoiceId":115,"TrackId":245,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":621,"InvoiceId":116,"TrackId":251,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":622,"InvoiceId":116,"TrackId":257,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":623,"InvoiceId":116,"TrackId":263,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":624,"InvoiceId":116,"TrackId":269,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":625,"InvoiceId":116,"TrackId":275,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":626,"InvoiceId":116,"TrackId":281,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":627,"InvoiceId":116,"TrackId":287,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":628,"InvoiceId":116,"TrackId":293,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":629,"InvoiceId":116,"TrackId":299,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":630,"InvoiceId":117,"TrackId":308,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":631,"InvoiceId":117,"TrackId":317,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":632,"InvoiceId":117,"TrackId":326,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":633,"InvoiceId":117,"TrackId":335,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":634,"InvoiceId":117,"TrackId":344,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":635,"InvoiceId":117,"TrackId":353,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":636,"InvoiceId":117,"TrackId":362,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":637,"InvoiceId":117,"TrackId":371,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":638,"InvoiceId":117,"TrackId":380,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":639,"InvoiceId":117,"TrackId":389,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":640,"InvoiceId":117,"TrackId":398,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":641,"InvoiceId":117,"TrackId":407,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":642,"InvoiceId":117,"TrackId":416,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":643,"InvoiceId":117,"TrackId":425,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":644,"InvoiceId":118,"TrackId":439,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":645,"InvoiceId":119,"TrackId":440,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":646,"InvoiceId":119,"TrackId":441,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":647,"InvoiceId":120,"TrackId":443,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":648,"InvoiceId":120,"TrackId":445,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":649,"InvoiceId":121,"TrackId":447,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":650,"InvoiceId":121,"TrackId":449,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":651,"InvoiceId":121,"TrackId":451,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":652,"InvoiceId":121,"TrackId":453,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":653,"InvoiceId":122,"TrackId":457,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":654,"InvoiceId":122,"TrackId":461,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":655,"InvoiceId":122,"TrackId":465,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":656,"InvoiceId":122,"TrackId":469,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":657,"InvoiceId":122,"TrackId":473,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":658,"InvoiceId":122,"TrackId":477,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":659,"InvoiceId":123,"TrackId":483,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":660,"InvoiceId":123,"TrackId":489,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":661,"InvoiceId":123,"TrackId":495,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":662,"InvoiceId":123,"TrackId":501,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":663,"InvoiceId":123,"TrackId":507,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":664,"InvoiceId":123,"TrackId":513,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":665,"InvoiceId":123,"TrackId":519,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":666,"InvoiceId":123,"TrackId":525,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":667,"InvoiceId":123,"TrackId":531,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":668,"InvoiceId":124,"TrackId":540,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":669,"InvoiceId":124,"TrackId":549,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":670,"InvoiceId":124,"TrackId":558,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":671,"InvoiceId":124,"TrackId":567,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":672,"InvoiceId":124,"TrackId":576,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":673,"InvoiceId":124,"TrackId":585,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":674,"InvoiceId":124,"TrackId":594,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":675,"InvoiceId":124,"TrackId":603,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":676,"InvoiceId":124,"TrackId":612,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":677,"InvoiceId":124,"TrackId":621,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":678,"InvoiceId":124,"TrackId":630,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":679,"InvoiceId":124,"TrackId":639,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":680,"InvoiceId":124,"TrackId":648,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":681,"InvoiceId":124,"TrackId":657,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":682,"InvoiceId":125,"TrackId":671,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":683,"InvoiceId":126,"TrackId":672,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":684,"InvoiceId":126,"TrackId":673,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":685,"InvoiceId":127,"TrackId":675,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":686,"InvoiceId":127,"TrackId":677,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":687,"InvoiceId":128,"TrackId":679,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":688,"InvoiceId":128,"TrackId":681,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":689,"InvoiceId":128,"TrackId":683,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":690,"InvoiceId":128,"TrackId":685,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":691,"InvoiceId":129,"TrackId":689,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":692,"InvoiceId":129,"TrackId":693,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":693,"InvoiceId":129,"TrackId":697,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":694,"InvoiceId":129,"TrackId":701,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":695,"InvoiceId":129,"TrackId":705,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":696,"InvoiceId":129,"TrackId":709,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":697,"InvoiceId":130,"TrackId":715,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":698,"InvoiceId":130,"TrackId":721,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":699,"InvoiceId":130,"TrackId":727,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":700,"InvoiceId":130,"TrackId":733,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":701,"InvoiceId":130,"TrackId":739,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":702,"InvoiceId":130,"TrackId":745,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":703,"InvoiceId":130,"TrackId":751,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":704,"InvoiceId":130,"TrackId":757,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":705,"InvoiceId":130,"TrackId":763,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":706,"InvoiceId":131,"TrackId":772,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":707,"InvoiceId":131,"TrackId":781,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":708,"InvoiceId":131,"TrackId":790,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":709,"InvoiceId":131,"TrackId":799,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":710,"InvoiceId":131,"TrackId":808,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":711,"InvoiceId":131,"TrackId":817,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":712,"InvoiceId":131,"TrackId":826,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":713,"InvoiceId":131,"TrackId":835,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":714,"InvoiceId":131,"TrackId":844,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":715,"InvoiceId":131,"TrackId":853,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":716,"InvoiceId":131,"TrackId":862,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":717,"InvoiceId":131,"TrackId":871,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":718,"InvoiceId":131,"TrackId":880,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":719,"InvoiceId":131,"TrackId":889,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":720,"InvoiceId":132,"TrackId":903,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":721,"InvoiceId":133,"TrackId":904,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":722,"InvoiceId":133,"TrackId":905,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":723,"InvoiceId":134,"TrackId":907,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":724,"InvoiceId":134,"TrackId":909,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":725,"InvoiceId":135,"TrackId":911,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":726,"InvoiceId":135,"TrackId":913,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":727,"InvoiceId":135,"TrackId":915,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":728,"InvoiceId":135,"TrackId":917,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":729,"InvoiceId":136,"TrackId":921,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":730,"InvoiceId":136,"TrackId":925,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":731,"InvoiceId":136,"TrackId":929,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":732,"InvoiceId":136,"TrackId":933,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":733,"InvoiceId":136,"TrackId":937,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":734,"InvoiceId":136,"TrackId":941,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":735,"InvoiceId":137,"TrackId":947,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":736,"InvoiceId":137,"TrackId":953,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":737,"InvoiceId":137,"TrackId":959,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":738,"InvoiceId":137,"TrackId":965,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":739,"InvoiceId":137,"TrackId":971,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":740,"InvoiceId":137,"TrackId":977,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":741,"InvoiceId":137,"TrackId":983,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":742,"InvoiceId":137,"TrackId":989,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":743,"InvoiceId":137,"TrackId":995,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":744,"InvoiceId":138,"TrackId":1004,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":745,"InvoiceId":138,"TrackId":1013,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":746,"InvoiceId":138,"TrackId":1022,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":747,"InvoiceId":138,"TrackId":1031,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":748,"InvoiceId":138,"TrackId":1040,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":749,"InvoiceId":138,"TrackId":1049,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":750,"InvoiceId":138,"TrackId":1058,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":751,"InvoiceId":138,"TrackId":1067,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":752,"InvoiceId":138,"TrackId":1076,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":753,"InvoiceId":138,"TrackId":1085,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":754,"InvoiceId":138,"TrackId":1094,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":755,"InvoiceId":138,"TrackId":1103,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":756,"InvoiceId":138,"TrackId":1112,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":757,"InvoiceId":138,"TrackId":1121,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":758,"InvoiceId":139,"TrackId":1135,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":759,"InvoiceId":140,"TrackId":1136,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":760,"InvoiceId":140,"TrackId":1137,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":761,"InvoiceId":141,"TrackId":1139,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":762,"InvoiceId":141,"TrackId":1141,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":763,"InvoiceId":142,"TrackId":1143,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":764,"InvoiceId":142,"TrackId":1145,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":765,"InvoiceId":142,"TrackId":1147,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":766,"InvoiceId":142,"TrackId":1149,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":767,"InvoiceId":143,"TrackId":1153,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":768,"InvoiceId":143,"TrackId":1157,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":769,"InvoiceId":143,"TrackId":1161,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":770,"InvoiceId":143,"TrackId":1165,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":771,"InvoiceId":143,"TrackId":1169,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":772,"InvoiceId":143,"TrackId":1173,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":773,"InvoiceId":144,"TrackId":1179,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":774,"InvoiceId":144,"TrackId":1185,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":775,"InvoiceId":144,"TrackId":1191,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":776,"InvoiceId":144,"TrackId":1197,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":777,"InvoiceId":144,"TrackId":1203,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":778,"InvoiceId":144,"TrackId":1209,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":779,"InvoiceId":144,"TrackId":1215,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":780,"InvoiceId":144,"TrackId":1221,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":781,"InvoiceId":144,"TrackId":1227,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":782,"InvoiceId":145,"TrackId":1236,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":783,"InvoiceId":145,"TrackId":1245,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":784,"InvoiceId":145,"TrackId":1254,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":785,"InvoiceId":145,"TrackId":1263,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":786,"InvoiceId":145,"TrackId":1272,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":787,"InvoiceId":145,"TrackId":1281,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":788,"InvoiceId":145,"TrackId":1290,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":789,"InvoiceId":145,"TrackId":1299,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":790,"InvoiceId":145,"TrackId":1308,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":791,"InvoiceId":145,"TrackId":1317,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":792,"InvoiceId":145,"TrackId":1326,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":793,"InvoiceId":145,"TrackId":1335,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":794,"InvoiceId":145,"TrackId":1344,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":795,"InvoiceId":145,"TrackId":1353,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":796,"InvoiceId":146,"TrackId":1367,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":797,"InvoiceId":147,"TrackId":1368,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":798,"InvoiceId":147,"TrackId":1369,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":799,"InvoiceId":148,"TrackId":1371,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":800,"InvoiceId":148,"TrackId":1373,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":801,"InvoiceId":149,"TrackId":1375,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":802,"InvoiceId":149,"TrackId":1377,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":803,"InvoiceId":149,"TrackId":1379,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":804,"InvoiceId":149,"TrackId":1381,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":805,"InvoiceId":150,"TrackId":1385,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":806,"InvoiceId":150,"TrackId":1389,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":807,"InvoiceId":150,"TrackId":1393,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":808,"InvoiceId":150,"TrackId":1397,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":809,"InvoiceId":150,"TrackId":1401,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":810,"InvoiceId":150,"TrackId":1405,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":811,"InvoiceId":151,"TrackId":1411,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":812,"InvoiceId":151,"TrackId":1417,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":813,"InvoiceId":151,"TrackId":1423,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":814,"InvoiceId":151,"TrackId":1429,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":815,"InvoiceId":151,"TrackId":1435,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":816,"InvoiceId":151,"TrackId":1441,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":817,"InvoiceId":151,"TrackId":1447,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":818,"InvoiceId":151,"TrackId":1453,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":819,"InvoiceId":151,"TrackId":1459,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":820,"InvoiceId":152,"TrackId":1468,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":821,"InvoiceId":152,"TrackId":1477,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":822,"InvoiceId":152,"TrackId":1486,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":823,"InvoiceId":152,"TrackId":1495,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":824,"InvoiceId":152,"TrackId":1504,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":825,"InvoiceId":152,"TrackId":1513,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":826,"InvoiceId":152,"TrackId":1522,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":827,"InvoiceId":152,"TrackId":1531,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":828,"InvoiceId":152,"TrackId":1540,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":829,"InvoiceId":152,"TrackId":1549,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":830,"InvoiceId":152,"TrackId":1558,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":831,"InvoiceId":152,"TrackId":1567,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":832,"InvoiceId":152,"TrackId":1576,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":833,"InvoiceId":152,"TrackId":1585,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":834,"InvoiceId":153,"TrackId":1599,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":835,"InvoiceId":154,"TrackId":1600,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":836,"InvoiceId":154,"TrackId":1601,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":837,"InvoiceId":155,"TrackId":1603,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":838,"InvoiceId":155,"TrackId":1605,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":839,"InvoiceId":156,"TrackId":1607,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":840,"InvoiceId":156,"TrackId":1609,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":841,"InvoiceId":156,"TrackId":1611,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":842,"InvoiceId":156,"TrackId":1613,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":843,"InvoiceId":157,"TrackId":1617,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":844,"InvoiceId":157,"TrackId":1621,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":845,"InvoiceId":157,"TrackId":1625,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":846,"InvoiceId":157,"TrackId":1629,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":847,"InvoiceId":157,"TrackId":1633,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":848,"InvoiceId":157,"TrackId":1637,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":849,"InvoiceId":158,"TrackId":1643,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":850,"InvoiceId":158,"TrackId":1649,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":851,"InvoiceId":158,"TrackId":1655,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":852,"InvoiceId":158,"TrackId":1661,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":853,"InvoiceId":158,"TrackId":1667,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":854,"InvoiceId":158,"TrackId":1673,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":855,"InvoiceId":158,"TrackId":1679,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":856,"InvoiceId":158,"TrackId":1685,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":857,"InvoiceId":158,"TrackId":1691,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":858,"InvoiceId":159,"TrackId":1700,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":859,"InvoiceId":159,"TrackId":1709,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":860,"InvoiceId":159,"TrackId":1718,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":861,"InvoiceId":159,"TrackId":1727,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":862,"InvoiceId":159,"TrackId":1736,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":863,"InvoiceId":159,"TrackId":1745,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":864,"InvoiceId":159,"TrackId":1754,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":865,"InvoiceId":159,"TrackId":1763,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":866,"InvoiceId":159,"TrackId":1772,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":867,"InvoiceId":159,"TrackId":1781,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":868,"InvoiceId":159,"TrackId":1790,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":869,"InvoiceId":159,"TrackId":1799,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":870,"InvoiceId":159,"TrackId":1808,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":871,"InvoiceId":159,"TrackId":1817,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":872,"InvoiceId":160,"TrackId":1831,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":873,"InvoiceId":161,"TrackId":1832,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":874,"InvoiceId":161,"TrackId":1833,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":875,"InvoiceId":162,"TrackId":1835,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":876,"InvoiceId":162,"TrackId":1837,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":877,"InvoiceId":163,"TrackId":1839,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":878,"InvoiceId":163,"TrackId":1841,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":879,"InvoiceId":163,"TrackId":1843,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":880,"InvoiceId":163,"TrackId":1845,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":881,"InvoiceId":164,"TrackId":1849,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":882,"InvoiceId":164,"TrackId":1853,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":883,"InvoiceId":164,"TrackId":1857,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":884,"InvoiceId":164,"TrackId":1861,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":885,"InvoiceId":164,"TrackId":1865,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":886,"InvoiceId":164,"TrackId":1869,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":887,"InvoiceId":165,"TrackId":1875,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":888,"InvoiceId":165,"TrackId":1881,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":889,"InvoiceId":165,"TrackId":1887,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":890,"InvoiceId":165,"TrackId":1893,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":891,"InvoiceId":165,"TrackId":1899,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":892,"InvoiceId":165,"TrackId":1905,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":893,"InvoiceId":165,"TrackId":1911,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":894,"InvoiceId":165,"TrackId":1917,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":895,"InvoiceId":165,"TrackId":1923,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":896,"InvoiceId":166,"TrackId":1932,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":897,"InvoiceId":166,"TrackId":1941,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":898,"InvoiceId":166,"TrackId":1950,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":899,"InvoiceId":166,"TrackId":1959,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":900,"InvoiceId":166,"TrackId":1968,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":901,"InvoiceId":166,"TrackId":1977,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":902,"InvoiceId":166,"TrackId":1986,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":903,"InvoiceId":166,"TrackId":1995,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":904,"InvoiceId":166,"TrackId":2004,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":905,"InvoiceId":166,"TrackId":2013,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":906,"InvoiceId":166,"TrackId":2022,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":907,"InvoiceId":166,"TrackId":2031,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":908,"InvoiceId":166,"TrackId":2040,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":909,"InvoiceId":166,"TrackId":2049,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":910,"InvoiceId":167,"TrackId":2063,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":911,"InvoiceId":168,"TrackId":2064,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":912,"InvoiceId":168,"TrackId":2065,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":913,"InvoiceId":169,"TrackId":2067,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":914,"InvoiceId":169,"TrackId":2069,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":915,"InvoiceId":170,"TrackId":2071,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":916,"InvoiceId":170,"TrackId":2073,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":917,"InvoiceId":170,"TrackId":2075,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":918,"InvoiceId":170,"TrackId":2077,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":919,"InvoiceId":171,"TrackId":2081,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":920,"InvoiceId":171,"TrackId":2085,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":921,"InvoiceId":171,"TrackId":2089,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":922,"InvoiceId":171,"TrackId":2093,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":923,"InvoiceId":171,"TrackId":2097,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":924,"InvoiceId":171,"TrackId":2101,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":925,"InvoiceId":172,"TrackId":2107,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":926,"InvoiceId":172,"TrackId":2113,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":927,"InvoiceId":172,"TrackId":2119,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":928,"InvoiceId":172,"TrackId":2125,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":929,"InvoiceId":172,"TrackId":2131,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":930,"InvoiceId":172,"TrackId":2137,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":931,"InvoiceId":172,"TrackId":2143,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":932,"InvoiceId":172,"TrackId":2149,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":933,"InvoiceId":172,"TrackId":2155,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":934,"InvoiceId":173,"TrackId":2164,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":935,"InvoiceId":173,"TrackId":2173,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":936,"InvoiceId":173,"TrackId":2182,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":937,"InvoiceId":173,"TrackId":2191,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":938,"InvoiceId":173,"TrackId":2200,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":939,"InvoiceId":173,"TrackId":2209,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":940,"InvoiceId":173,"TrackId":2218,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":941,"InvoiceId":173,"TrackId":2227,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":942,"InvoiceId":173,"TrackId":2236,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":943,"InvoiceId":173,"TrackId":2245,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":944,"InvoiceId":173,"TrackId":2254,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":945,"InvoiceId":173,"TrackId":2263,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":946,"InvoiceId":173,"TrackId":2272,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":947,"InvoiceId":173,"TrackId":2281,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":948,"InvoiceId":174,"TrackId":2295,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":949,"InvoiceId":175,"TrackId":2296,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":950,"InvoiceId":175,"TrackId":2297,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":951,"InvoiceId":176,"TrackId":2299,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":952,"InvoiceId":176,"TrackId":2301,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":953,"InvoiceId":177,"TrackId":2303,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":954,"InvoiceId":177,"TrackId":2305,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":955,"InvoiceId":177,"TrackId":2307,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":956,"InvoiceId":177,"TrackId":2309,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":957,"InvoiceId":178,"TrackId":2313,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":958,"InvoiceId":178,"TrackId":2317,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":959,"InvoiceId":178,"TrackId":2321,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":960,"InvoiceId":178,"TrackId":2325,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":961,"InvoiceId":178,"TrackId":2329,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":962,"InvoiceId":178,"TrackId":2333,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":963,"InvoiceId":179,"TrackId":2339,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":964,"InvoiceId":179,"TrackId":2345,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":965,"InvoiceId":179,"TrackId":2351,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":966,"InvoiceId":179,"TrackId":2357,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":967,"InvoiceId":179,"TrackId":2363,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":968,"InvoiceId":179,"TrackId":2369,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":969,"InvoiceId":179,"TrackId":2375,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":970,"InvoiceId":179,"TrackId":2381,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":971,"InvoiceId":179,"TrackId":2387,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":972,"InvoiceId":180,"TrackId":2396,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":973,"InvoiceId":180,"TrackId":2405,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":974,"InvoiceId":180,"TrackId":2414,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":975,"InvoiceId":180,"TrackId":2423,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":976,"InvoiceId":180,"TrackId":2432,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":977,"InvoiceId":180,"TrackId":2441,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":978,"InvoiceId":180,"TrackId":2450,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":979,"InvoiceId":180,"TrackId":2459,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":980,"InvoiceId":180,"TrackId":2468,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":981,"InvoiceId":180,"TrackId":2477,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":982,"InvoiceId":180,"TrackId":2486,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":983,"InvoiceId":180,"TrackId":2495,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":984,"InvoiceId":180,"TrackId":2504,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":985,"InvoiceId":180,"TrackId":2513,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":986,"InvoiceId":181,"TrackId":2527,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":987,"InvoiceId":182,"TrackId":2528,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":988,"InvoiceId":182,"TrackId":2529,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":989,"InvoiceId":183,"TrackId":2531,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":990,"InvoiceId":183,"TrackId":2533,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":991,"InvoiceId":184,"TrackId":2535,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":992,"InvoiceId":184,"TrackId":2537,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":993,"InvoiceId":184,"TrackId":2539,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":994,"InvoiceId":184,"TrackId":2541,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":995,"InvoiceId":185,"TrackId":2545,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":996,"InvoiceId":185,"TrackId":2549,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":997,"InvoiceId":185,"TrackId":2553,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":998,"InvoiceId":185,"TrackId":2557,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":999,"InvoiceId":185,"TrackId":2561,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1000,"InvoiceId":185,"TrackId":2565,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1001,"InvoiceId":186,"TrackId":2571,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1002,"InvoiceId":186,"TrackId":2577,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1003,"InvoiceId":186,"TrackId":2583,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1004,"InvoiceId":186,"TrackId":2589,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1005,"InvoiceId":186,"TrackId":2595,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1006,"InvoiceId":186,"TrackId":2601,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1007,"InvoiceId":186,"TrackId":2607,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1008,"InvoiceId":186,"TrackId":2613,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1009,"InvoiceId":186,"TrackId":2619,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1010,"InvoiceId":187,"TrackId":2628,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1011,"InvoiceId":187,"TrackId":2637,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1012,"InvoiceId":187,"TrackId":2646,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1013,"InvoiceId":187,"TrackId":2655,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1014,"InvoiceId":187,"TrackId":2664,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1015,"InvoiceId":187,"TrackId":2673,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1016,"InvoiceId":187,"TrackId":2682,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1017,"InvoiceId":187,"TrackId":2691,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1018,"InvoiceId":187,"TrackId":2700,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1019,"InvoiceId":187,"TrackId":2709,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1020,"InvoiceId":187,"TrackId":2718,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1021,"InvoiceId":187,"TrackId":2727,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1022,"InvoiceId":187,"TrackId":2736,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1023,"InvoiceId":187,"TrackId":2745,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1024,"InvoiceId":188,"TrackId":2759,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1025,"InvoiceId":189,"TrackId":2760,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1026,"InvoiceId":189,"TrackId":2761,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1027,"InvoiceId":190,"TrackId":2763,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1028,"InvoiceId":190,"TrackId":2765,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1029,"InvoiceId":191,"TrackId":2767,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1030,"InvoiceId":191,"TrackId":2769,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1031,"InvoiceId":191,"TrackId":2771,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1032,"InvoiceId":191,"TrackId":2773,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1033,"InvoiceId":192,"TrackId":2777,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1034,"InvoiceId":192,"TrackId":2781,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1035,"InvoiceId":192,"TrackId":2785,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1036,"InvoiceId":192,"TrackId":2789,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1037,"InvoiceId":192,"TrackId":2793,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1038,"InvoiceId":192,"TrackId":2797,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1039,"InvoiceId":193,"TrackId":2803,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1040,"InvoiceId":193,"TrackId":2809,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1041,"InvoiceId":193,"TrackId":2815,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1042,"InvoiceId":193,"TrackId":2821,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1043,"InvoiceId":193,"TrackId":2827,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1044,"InvoiceId":193,"TrackId":2833,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1045,"InvoiceId":193,"TrackId":2839,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1046,"InvoiceId":193,"TrackId":2845,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1047,"InvoiceId":193,"TrackId":2851,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1048,"InvoiceId":194,"TrackId":2860,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1049,"InvoiceId":194,"TrackId":2869,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1050,"InvoiceId":194,"TrackId":2878,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1051,"InvoiceId":194,"TrackId":2887,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1052,"InvoiceId":194,"TrackId":2896,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1053,"InvoiceId":194,"TrackId":2905,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1054,"InvoiceId":194,"TrackId":2914,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1055,"InvoiceId":194,"TrackId":2923,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1056,"InvoiceId":194,"TrackId":2932,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1057,"InvoiceId":194,"TrackId":2941,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1058,"InvoiceId":194,"TrackId":2950,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1059,"InvoiceId":194,"TrackId":2959,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1060,"InvoiceId":194,"TrackId":2968,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1061,"InvoiceId":194,"TrackId":2977,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1062,"InvoiceId":195,"TrackId":2991,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1063,"InvoiceId":196,"TrackId":2992,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1064,"InvoiceId":196,"TrackId":2993,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1065,"InvoiceId":197,"TrackId":2995,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1066,"InvoiceId":197,"TrackId":2997,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1067,"InvoiceId":198,"TrackId":2999,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1068,"InvoiceId":198,"TrackId":3001,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1069,"InvoiceId":198,"TrackId":3003,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1070,"InvoiceId":198,"TrackId":3005,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1071,"InvoiceId":199,"TrackId":3009,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1072,"InvoiceId":199,"TrackId":3013,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1073,"InvoiceId":199,"TrackId":3017,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1074,"InvoiceId":199,"TrackId":3021,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1075,"InvoiceId":199,"TrackId":3025,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1076,"InvoiceId":199,"TrackId":3029,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1077,"InvoiceId":200,"TrackId":3035,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1078,"InvoiceId":200,"TrackId":3041,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1079,"InvoiceId":200,"TrackId":3047,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1080,"InvoiceId":200,"TrackId":3053,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1081,"InvoiceId":200,"TrackId":3059,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1082,"InvoiceId":200,"TrackId":3065,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1083,"InvoiceId":200,"TrackId":3071,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1084,"InvoiceId":200,"TrackId":3077,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1085,"InvoiceId":200,"TrackId":3083,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1086,"InvoiceId":201,"TrackId":3092,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1087,"InvoiceId":201,"TrackId":3101,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1088,"InvoiceId":201,"TrackId":3110,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1089,"InvoiceId":201,"TrackId":3119,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1090,"InvoiceId":201,"TrackId":3128,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1091,"InvoiceId":201,"TrackId":3137,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1092,"InvoiceId":201,"TrackId":3146,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1093,"InvoiceId":201,"TrackId":3155,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1094,"InvoiceId":201,"TrackId":3164,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1095,"InvoiceId":201,"TrackId":3173,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1096,"InvoiceId":201,"TrackId":3182,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1097,"InvoiceId":201,"TrackId":3191,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1098,"InvoiceId":201,"TrackId":3200,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1099,"InvoiceId":201,"TrackId":3209,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1100,"InvoiceId":202,"TrackId":3223,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1101,"InvoiceId":203,"TrackId":3224,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1102,"InvoiceId":203,"TrackId":3225,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1103,"InvoiceId":204,"TrackId":3227,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1104,"InvoiceId":204,"TrackId":3229,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1105,"InvoiceId":205,"TrackId":3231,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1106,"InvoiceId":205,"TrackId":3233,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1107,"InvoiceId":205,"TrackId":3235,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1108,"InvoiceId":205,"TrackId":3237,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1109,"InvoiceId":206,"TrackId":3241,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1110,"InvoiceId":206,"TrackId":3245,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1111,"InvoiceId":206,"TrackId":3249,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1112,"InvoiceId":206,"TrackId":3253,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1113,"InvoiceId":206,"TrackId":3257,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1114,"InvoiceId":206,"TrackId":3261,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1115,"InvoiceId":207,"TrackId":3267,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1116,"InvoiceId":207,"TrackId":3273,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1117,"InvoiceId":207,"TrackId":3279,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1118,"InvoiceId":207,"TrackId":3285,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1119,"InvoiceId":207,"TrackId":3291,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1120,"InvoiceId":207,"TrackId":3297,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1121,"InvoiceId":207,"TrackId":3303,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1122,"InvoiceId":207,"TrackId":3309,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1123,"InvoiceId":207,"TrackId":3315,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1124,"InvoiceId":208,"TrackId":3324,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1125,"InvoiceId":208,"TrackId":3333,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1126,"InvoiceId":208,"TrackId":3342,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1127,"InvoiceId":208,"TrackId":3351,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1128,"InvoiceId":208,"TrackId":3360,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1129,"InvoiceId":208,"TrackId":3369,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1130,"InvoiceId":208,"TrackId":3378,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1131,"InvoiceId":208,"TrackId":3387,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1132,"InvoiceId":208,"TrackId":3396,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1133,"InvoiceId":208,"TrackId":3405,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1134,"InvoiceId":208,"TrackId":3414,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1135,"InvoiceId":208,"TrackId":3423,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1136,"InvoiceId":208,"TrackId":3432,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1137,"InvoiceId":208,"TrackId":3441,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1138,"InvoiceId":209,"TrackId":3455,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1139,"InvoiceId":210,"TrackId":3456,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1140,"InvoiceId":210,"TrackId":3457,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1141,"InvoiceId":211,"TrackId":3459,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1142,"InvoiceId":211,"TrackId":3461,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1143,"InvoiceId":212,"TrackId":3463,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1144,"InvoiceId":212,"TrackId":3465,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1145,"InvoiceId":212,"TrackId":3467,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1146,"InvoiceId":212,"TrackId":3469,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1147,"InvoiceId":213,"TrackId":3473,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1148,"InvoiceId":213,"TrackId":3477,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1149,"InvoiceId":213,"TrackId":3481,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1150,"InvoiceId":213,"TrackId":3485,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1151,"InvoiceId":213,"TrackId":3489,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1152,"InvoiceId":213,"TrackId":3493,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1153,"InvoiceId":214,"TrackId":3499,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1154,"InvoiceId":214,"TrackId":2,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1155,"InvoiceId":214,"TrackId":8,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1156,"InvoiceId":214,"TrackId":14,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1157,"InvoiceId":214,"TrackId":20,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1158,"InvoiceId":214,"TrackId":26,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1159,"InvoiceId":214,"TrackId":32,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1160,"InvoiceId":214,"TrackId":38,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1161,"InvoiceId":214,"TrackId":44,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1162,"InvoiceId":215,"TrackId":53,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1163,"InvoiceId":215,"TrackId":62,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1164,"InvoiceId":215,"TrackId":71,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1165,"InvoiceId":215,"TrackId":80,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1166,"InvoiceId":215,"TrackId":89,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1167,"InvoiceId":215,"TrackId":98,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1168,"InvoiceId":215,"TrackId":107,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1169,"InvoiceId":215,"TrackId":116,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1170,"InvoiceId":215,"TrackId":125,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1171,"InvoiceId":215,"TrackId":134,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1172,"InvoiceId":215,"TrackId":143,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1173,"InvoiceId":215,"TrackId":152,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1174,"InvoiceId":215,"TrackId":161,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1175,"InvoiceId":215,"TrackId":170,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1176,"InvoiceId":216,"TrackId":184,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1177,"InvoiceId":217,"TrackId":185,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1178,"InvoiceId":217,"TrackId":186,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1179,"InvoiceId":218,"TrackId":188,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1180,"InvoiceId":218,"TrackId":190,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1181,"InvoiceId":219,"TrackId":192,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1182,"InvoiceId":219,"TrackId":194,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1183,"InvoiceId":219,"TrackId":196,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1184,"InvoiceId":219,"TrackId":198,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1185,"InvoiceId":220,"TrackId":202,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1186,"InvoiceId":220,"TrackId":206,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1187,"InvoiceId":220,"TrackId":210,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1188,"InvoiceId":220,"TrackId":214,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1189,"InvoiceId":220,"TrackId":218,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1190,"InvoiceId":220,"TrackId":222,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1191,"InvoiceId":221,"TrackId":228,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1192,"InvoiceId":221,"TrackId":234,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1193,"InvoiceId":221,"TrackId":240,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1194,"InvoiceId":221,"TrackId":246,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1195,"InvoiceId":221,"TrackId":252,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1196,"InvoiceId":221,"TrackId":258,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1197,"InvoiceId":221,"TrackId":264,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1198,"InvoiceId":221,"TrackId":270,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1199,"InvoiceId":221,"TrackId":276,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1200,"InvoiceId":222,"TrackId":285,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1201,"InvoiceId":222,"TrackId":294,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1202,"InvoiceId":222,"TrackId":303,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1203,"InvoiceId":222,"TrackId":312,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1204,"InvoiceId":222,"TrackId":321,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1205,"InvoiceId":222,"TrackId":330,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1206,"InvoiceId":222,"TrackId":339,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1207,"InvoiceId":222,"TrackId":348,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1208,"InvoiceId":222,"TrackId":357,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1209,"InvoiceId":222,"TrackId":366,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1210,"InvoiceId":222,"TrackId":375,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1211,"InvoiceId":222,"TrackId":384,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1212,"InvoiceId":222,"TrackId":393,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1213,"InvoiceId":222,"TrackId":402,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1214,"InvoiceId":223,"TrackId":416,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1215,"InvoiceId":224,"TrackId":417,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1216,"InvoiceId":224,"TrackId":418,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1217,"InvoiceId":225,"TrackId":420,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1218,"InvoiceId":225,"TrackId":422,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1219,"InvoiceId":226,"TrackId":424,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1220,"InvoiceId":226,"TrackId":426,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1221,"InvoiceId":226,"TrackId":428,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1222,"InvoiceId":226,"TrackId":430,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1223,"InvoiceId":227,"TrackId":434,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1224,"InvoiceId":227,"TrackId":438,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1225,"InvoiceId":227,"TrackId":442,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1226,"InvoiceId":227,"TrackId":446,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1227,"InvoiceId":227,"TrackId":450,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1228,"InvoiceId":227,"TrackId":454,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1229,"InvoiceId":228,"TrackId":460,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1230,"InvoiceId":228,"TrackId":466,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1231,"InvoiceId":228,"TrackId":472,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1232,"InvoiceId":228,"TrackId":478,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1233,"InvoiceId":228,"TrackId":484,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1234,"InvoiceId":228,"TrackId":490,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1235,"InvoiceId":228,"TrackId":496,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1236,"InvoiceId":228,"TrackId":502,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1237,"InvoiceId":228,"TrackId":508,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1238,"InvoiceId":229,"TrackId":517,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1239,"InvoiceId":229,"TrackId":526,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1240,"InvoiceId":229,"TrackId":535,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1241,"InvoiceId":229,"TrackId":544,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1242,"InvoiceId":229,"TrackId":553,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1243,"InvoiceId":229,"TrackId":562,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1244,"InvoiceId":229,"TrackId":571,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1245,"InvoiceId":229,"TrackId":580,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1246,"InvoiceId":229,"TrackId":589,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1247,"InvoiceId":229,"TrackId":598,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1248,"InvoiceId":229,"TrackId":607,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1249,"InvoiceId":229,"TrackId":616,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1250,"InvoiceId":229,"TrackId":625,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1251,"InvoiceId":229,"TrackId":634,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1252,"InvoiceId":230,"TrackId":648,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1253,"InvoiceId":231,"TrackId":649,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1254,"InvoiceId":231,"TrackId":650,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1255,"InvoiceId":232,"TrackId":652,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1256,"InvoiceId":232,"TrackId":654,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1257,"InvoiceId":233,"TrackId":656,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1258,"InvoiceId":233,"TrackId":658,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1259,"InvoiceId":233,"TrackId":660,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1260,"InvoiceId":233,"TrackId":662,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1261,"InvoiceId":234,"TrackId":666,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1262,"InvoiceId":234,"TrackId":670,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1263,"InvoiceId":234,"TrackId":674,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1264,"InvoiceId":234,"TrackId":678,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1265,"InvoiceId":234,"TrackId":682,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1266,"InvoiceId":234,"TrackId":686,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1267,"InvoiceId":235,"TrackId":692,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1268,"InvoiceId":235,"TrackId":698,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1269,"InvoiceId":235,"TrackId":704,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1270,"InvoiceId":235,"TrackId":710,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1271,"InvoiceId":235,"TrackId":716,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1272,"InvoiceId":235,"TrackId":722,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1273,"InvoiceId":235,"TrackId":728,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1274,"InvoiceId":235,"TrackId":734,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1275,"InvoiceId":235,"TrackId":740,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1276,"InvoiceId":236,"TrackId":749,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1277,"InvoiceId":236,"TrackId":758,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1278,"InvoiceId":236,"TrackId":767,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1279,"InvoiceId":236,"TrackId":776,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1280,"InvoiceId":236,"TrackId":785,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1281,"InvoiceId":236,"TrackId":794,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1282,"InvoiceId":236,"TrackId":803,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1283,"InvoiceId":236,"TrackId":812,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1284,"InvoiceId":236,"TrackId":821,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1285,"InvoiceId":236,"TrackId":830,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1286,"InvoiceId":236,"TrackId":839,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1287,"InvoiceId":236,"TrackId":848,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1288,"InvoiceId":236,"TrackId":857,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1289,"InvoiceId":236,"TrackId":866,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1290,"InvoiceId":237,"TrackId":880,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1291,"InvoiceId":238,"TrackId":881,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1292,"InvoiceId":238,"TrackId":882,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1293,"InvoiceId":239,"TrackId":884,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1294,"InvoiceId":239,"TrackId":886,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1295,"InvoiceId":240,"TrackId":888,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1296,"InvoiceId":240,"TrackId":890,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1297,"InvoiceId":240,"TrackId":892,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1298,"InvoiceId":240,"TrackId":894,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1299,"InvoiceId":241,"TrackId":898,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1300,"InvoiceId":241,"TrackId":902,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1301,"InvoiceId":241,"TrackId":906,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1302,"InvoiceId":241,"TrackId":910,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1303,"InvoiceId":241,"TrackId":914,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1304,"InvoiceId":241,"TrackId":918,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1305,"InvoiceId":242,"TrackId":924,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1306,"InvoiceId":242,"TrackId":930,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1307,"InvoiceId":242,"TrackId":936,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1308,"InvoiceId":242,"TrackId":942,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1309,"InvoiceId":242,"TrackId":948,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1310,"InvoiceId":242,"TrackId":954,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1311,"InvoiceId":242,"TrackId":960,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1312,"InvoiceId":242,"TrackId":966,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1313,"InvoiceId":242,"TrackId":972,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1314,"InvoiceId":243,"TrackId":981,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1315,"InvoiceId":243,"TrackId":990,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1316,"InvoiceId":243,"TrackId":999,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1317,"InvoiceId":243,"TrackId":1008,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1318,"InvoiceId":243,"TrackId":1017,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1319,"InvoiceId":243,"TrackId":1026,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1320,"InvoiceId":243,"TrackId":1035,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1321,"InvoiceId":243,"TrackId":1044,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1322,"InvoiceId":243,"TrackId":1053,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1323,"InvoiceId":243,"TrackId":1062,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1324,"InvoiceId":243,"TrackId":1071,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1325,"InvoiceId":243,"TrackId":1080,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1326,"InvoiceId":243,"TrackId":1089,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1327,"InvoiceId":243,"TrackId":1098,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1328,"InvoiceId":244,"TrackId":1112,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1329,"InvoiceId":245,"TrackId":1113,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1330,"InvoiceId":245,"TrackId":1114,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1331,"InvoiceId":246,"TrackId":1116,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1332,"InvoiceId":246,"TrackId":1118,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1333,"InvoiceId":247,"TrackId":1120,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1334,"InvoiceId":247,"TrackId":1122,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1335,"InvoiceId":247,"TrackId":1124,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1336,"InvoiceId":247,"TrackId":1126,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1337,"InvoiceId":248,"TrackId":1130,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1338,"InvoiceId":248,"TrackId":1134,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1339,"InvoiceId":248,"TrackId":1138,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1340,"InvoiceId":248,"TrackId":1142,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1341,"InvoiceId":248,"TrackId":1146,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1342,"InvoiceId":248,"TrackId":1150,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1343,"InvoiceId":249,"TrackId":1156,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1344,"InvoiceId":249,"TrackId":1162,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1345,"InvoiceId":249,"TrackId":1168,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1346,"InvoiceId":249,"TrackId":1174,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1347,"InvoiceId":249,"TrackId":1180,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1348,"InvoiceId":249,"TrackId":1186,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1349,"InvoiceId":249,"TrackId":1192,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1350,"InvoiceId":249,"TrackId":1198,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1351,"InvoiceId":249,"TrackId":1204,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1352,"InvoiceId":250,"TrackId":1213,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1353,"InvoiceId":250,"TrackId":1222,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1354,"InvoiceId":250,"TrackId":1231,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1355,"InvoiceId":250,"TrackId":1240,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1356,"InvoiceId":250,"TrackId":1249,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1357,"InvoiceId":250,"TrackId":1258,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1358,"InvoiceId":250,"TrackId":1267,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1359,"InvoiceId":250,"TrackId":1276,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1360,"InvoiceId":250,"TrackId":1285,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1361,"InvoiceId":250,"TrackId":1294,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1362,"InvoiceId":250,"TrackId":1303,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1363,"InvoiceId":250,"TrackId":1312,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1364,"InvoiceId":250,"TrackId":1321,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1365,"InvoiceId":250,"TrackId":1330,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1366,"InvoiceId":251,"TrackId":1344,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1367,"InvoiceId":252,"TrackId":1345,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1368,"InvoiceId":252,"TrackId":1346,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1369,"InvoiceId":253,"TrackId":1348,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1370,"InvoiceId":253,"TrackId":1350,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1371,"InvoiceId":254,"TrackId":1352,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1372,"InvoiceId":254,"TrackId":1354,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1373,"InvoiceId":254,"TrackId":1356,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1374,"InvoiceId":254,"TrackId":1358,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1375,"InvoiceId":255,"TrackId":1362,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1376,"InvoiceId":255,"TrackId":1366,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1377,"InvoiceId":255,"TrackId":1370,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1378,"InvoiceId":255,"TrackId":1374,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1379,"InvoiceId":255,"TrackId":1378,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1380,"InvoiceId":255,"TrackId":1382,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1381,"InvoiceId":256,"TrackId":1388,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1382,"InvoiceId":256,"TrackId":1394,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1383,"InvoiceId":256,"TrackId":1400,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1384,"InvoiceId":256,"TrackId":1406,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1385,"InvoiceId":256,"TrackId":1412,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1386,"InvoiceId":256,"TrackId":1418,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1387,"InvoiceId":256,"TrackId":1424,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1388,"InvoiceId":256,"TrackId":1430,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1389,"InvoiceId":256,"TrackId":1436,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1390,"InvoiceId":257,"TrackId":1445,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1391,"InvoiceId":257,"TrackId":1454,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1392,"InvoiceId":257,"TrackId":1463,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1393,"InvoiceId":257,"TrackId":1472,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1394,"InvoiceId":257,"TrackId":1481,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1395,"InvoiceId":257,"TrackId":1490,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1396,"InvoiceId":257,"TrackId":1499,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1397,"InvoiceId":257,"TrackId":1508,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1398,"InvoiceId":257,"TrackId":1517,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1399,"InvoiceId":257,"TrackId":1526,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1400,"InvoiceId":257,"TrackId":1535,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1401,"InvoiceId":257,"TrackId":1544,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1402,"InvoiceId":257,"TrackId":1553,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1403,"InvoiceId":257,"TrackId":1562,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1404,"InvoiceId":258,"TrackId":1576,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1405,"InvoiceId":259,"TrackId":1577,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1406,"InvoiceId":259,"TrackId":1578,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1407,"InvoiceId":260,"TrackId":1580,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1408,"InvoiceId":260,"TrackId":1582,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1409,"InvoiceId":261,"TrackId":1584,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1410,"InvoiceId":261,"TrackId":1586,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1411,"InvoiceId":261,"TrackId":1588,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1412,"InvoiceId":261,"TrackId":1590,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1413,"InvoiceId":262,"TrackId":1594,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1414,"InvoiceId":262,"TrackId":1598,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1415,"InvoiceId":262,"TrackId":1602,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1416,"InvoiceId":262,"TrackId":1606,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1417,"InvoiceId":262,"TrackId":1610,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1418,"InvoiceId":262,"TrackId":1614,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1419,"InvoiceId":263,"TrackId":1620,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1420,"InvoiceId":263,"TrackId":1626,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1421,"InvoiceId":263,"TrackId":1632,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1422,"InvoiceId":263,"TrackId":1638,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1423,"InvoiceId":263,"TrackId":1644,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1424,"InvoiceId":263,"TrackId":1650,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1425,"InvoiceId":263,"TrackId":1656,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1426,"InvoiceId":263,"TrackId":1662,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1427,"InvoiceId":263,"TrackId":1668,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1428,"InvoiceId":264,"TrackId":1677,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1429,"InvoiceId":264,"TrackId":1686,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1430,"InvoiceId":264,"TrackId":1695,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1431,"InvoiceId":264,"TrackId":1704,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1432,"InvoiceId":264,"TrackId":1713,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1433,"InvoiceId":264,"TrackId":1722,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1434,"InvoiceId":264,"TrackId":1731,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1435,"InvoiceId":264,"TrackId":1740,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1436,"InvoiceId":264,"TrackId":1749,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1437,"InvoiceId":264,"TrackId":1758,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1438,"InvoiceId":264,"TrackId":1767,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1439,"InvoiceId":264,"TrackId":1776,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1440,"InvoiceId":264,"TrackId":1785,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1441,"InvoiceId":264,"TrackId":1794,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1442,"InvoiceId":265,"TrackId":1808,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1443,"InvoiceId":266,"TrackId":1809,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1444,"InvoiceId":266,"TrackId":1810,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1445,"InvoiceId":267,"TrackId":1812,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1446,"InvoiceId":267,"TrackId":1814,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1447,"InvoiceId":268,"TrackId":1816,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1448,"InvoiceId":268,"TrackId":1818,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1449,"InvoiceId":268,"TrackId":1820,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1450,"InvoiceId":268,"TrackId":1822,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1451,"InvoiceId":269,"TrackId":1826,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1452,"InvoiceId":269,"TrackId":1830,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1453,"InvoiceId":269,"TrackId":1834,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1454,"InvoiceId":269,"TrackId":1838,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1455,"InvoiceId":269,"TrackId":1842,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1456,"InvoiceId":269,"TrackId":1846,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1457,"InvoiceId":270,"TrackId":1852,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1458,"InvoiceId":270,"TrackId":1858,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1459,"InvoiceId":270,"TrackId":1864,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1460,"InvoiceId":270,"TrackId":1870,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1461,"InvoiceId":270,"TrackId":1876,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1462,"InvoiceId":270,"TrackId":1882,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1463,"InvoiceId":270,"TrackId":1888,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1464,"InvoiceId":270,"TrackId":1894,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1465,"InvoiceId":270,"TrackId":1900,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1466,"InvoiceId":271,"TrackId":1909,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1467,"InvoiceId":271,"TrackId":1918,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1468,"InvoiceId":271,"TrackId":1927,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1469,"InvoiceId":271,"TrackId":1936,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1470,"InvoiceId":271,"TrackId":1945,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1471,"InvoiceId":271,"TrackId":1954,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1472,"InvoiceId":271,"TrackId":1963,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1473,"InvoiceId":271,"TrackId":1972,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1474,"InvoiceId":271,"TrackId":1981,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1475,"InvoiceId":271,"TrackId":1990,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1476,"InvoiceId":271,"TrackId":1999,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1477,"InvoiceId":271,"TrackId":2008,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1478,"InvoiceId":271,"TrackId":2017,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1479,"InvoiceId":271,"TrackId":2026,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1480,"InvoiceId":272,"TrackId":2040,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1481,"InvoiceId":273,"TrackId":2041,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1482,"InvoiceId":273,"TrackId":2042,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1483,"InvoiceId":274,"TrackId":2044,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1484,"InvoiceId":274,"TrackId":2046,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1485,"InvoiceId":275,"TrackId":2048,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1486,"InvoiceId":275,"TrackId":2050,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1487,"InvoiceId":275,"TrackId":2052,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1488,"InvoiceId":275,"TrackId":2054,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1489,"InvoiceId":276,"TrackId":2058,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1490,"InvoiceId":276,"TrackId":2062,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1491,"InvoiceId":276,"TrackId":2066,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1492,"InvoiceId":276,"TrackId":2070,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1493,"InvoiceId":276,"TrackId":2074,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1494,"InvoiceId":276,"TrackId":2078,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1495,"InvoiceId":277,"TrackId":2084,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1496,"InvoiceId":277,"TrackId":2090,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1497,"InvoiceId":277,"TrackId":2096,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1498,"InvoiceId":277,"TrackId":2102,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1499,"InvoiceId":277,"TrackId":2108,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1500,"InvoiceId":277,"TrackId":2114,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1501,"InvoiceId":277,"TrackId":2120,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1502,"InvoiceId":277,"TrackId":2126,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1503,"InvoiceId":277,"TrackId":2132,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1504,"InvoiceId":278,"TrackId":2141,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1505,"InvoiceId":278,"TrackId":2150,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1506,"InvoiceId":278,"TrackId":2159,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1507,"InvoiceId":278,"TrackId":2168,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1508,"InvoiceId":278,"TrackId":2177,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1509,"InvoiceId":278,"TrackId":2186,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1510,"InvoiceId":278,"TrackId":2195,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1511,"InvoiceId":278,"TrackId":2204,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1512,"InvoiceId":278,"TrackId":2213,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1513,"InvoiceId":278,"TrackId":2222,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1514,"InvoiceId":278,"TrackId":2231,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1515,"InvoiceId":278,"TrackId":2240,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1516,"InvoiceId":278,"TrackId":2249,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1517,"InvoiceId":278,"TrackId":2258,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1518,"InvoiceId":279,"TrackId":2272,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1519,"InvoiceId":280,"TrackId":2273,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1520,"InvoiceId":280,"TrackId":2274,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1521,"InvoiceId":281,"TrackId":2276,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1522,"InvoiceId":281,"TrackId":2278,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1523,"InvoiceId":282,"TrackId":2280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1524,"InvoiceId":282,"TrackId":2282,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1525,"InvoiceId":282,"TrackId":2284,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1526,"InvoiceId":282,"TrackId":2286,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1527,"InvoiceId":283,"TrackId":2290,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1528,"InvoiceId":283,"TrackId":2294,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1529,"InvoiceId":283,"TrackId":2298,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1530,"InvoiceId":283,"TrackId":2302,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1531,"InvoiceId":283,"TrackId":2306,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1532,"InvoiceId":283,"TrackId":2310,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1533,"InvoiceId":284,"TrackId":2316,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1534,"InvoiceId":284,"TrackId":2322,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1535,"InvoiceId":284,"TrackId":2328,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1536,"InvoiceId":284,"TrackId":2334,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1537,"InvoiceId":284,"TrackId":2340,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1538,"InvoiceId":284,"TrackId":2346,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1539,"InvoiceId":284,"TrackId":2352,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1540,"InvoiceId":284,"TrackId":2358,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1541,"InvoiceId":284,"TrackId":2364,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1542,"InvoiceId":285,"TrackId":2373,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1543,"InvoiceId":285,"TrackId":2382,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1544,"InvoiceId":285,"TrackId":2391,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1545,"InvoiceId":285,"TrackId":2400,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1546,"InvoiceId":285,"TrackId":2409,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1547,"InvoiceId":285,"TrackId":2418,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1548,"InvoiceId":285,"TrackId":2427,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1549,"InvoiceId":285,"TrackId":2436,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1550,"InvoiceId":285,"TrackId":2445,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1551,"InvoiceId":285,"TrackId":2454,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1552,"InvoiceId":285,"TrackId":2463,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1553,"InvoiceId":285,"TrackId":2472,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1554,"InvoiceId":285,"TrackId":2481,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1555,"InvoiceId":285,"TrackId":2490,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1556,"InvoiceId":286,"TrackId":2504,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1557,"InvoiceId":287,"TrackId":2505,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1558,"InvoiceId":287,"TrackId":2506,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1559,"InvoiceId":288,"TrackId":2508,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1560,"InvoiceId":288,"TrackId":2510,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1561,"InvoiceId":289,"TrackId":2512,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1562,"InvoiceId":289,"TrackId":2514,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1563,"InvoiceId":289,"TrackId":2516,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1564,"InvoiceId":289,"TrackId":2518,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1565,"InvoiceId":290,"TrackId":2522,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1566,"InvoiceId":290,"TrackId":2526,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1567,"InvoiceId":290,"TrackId":2530,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1568,"InvoiceId":290,"TrackId":2534,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1569,"InvoiceId":290,"TrackId":2538,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1570,"InvoiceId":290,"TrackId":2542,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1571,"InvoiceId":291,"TrackId":2548,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1572,"InvoiceId":291,"TrackId":2554,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1573,"InvoiceId":291,"TrackId":2560,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1574,"InvoiceId":291,"TrackId":2566,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1575,"InvoiceId":291,"TrackId":2572,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1576,"InvoiceId":291,"TrackId":2578,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1577,"InvoiceId":291,"TrackId":2584,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1578,"InvoiceId":291,"TrackId":2590,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1579,"InvoiceId":291,"TrackId":2596,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1580,"InvoiceId":292,"TrackId":2605,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1581,"InvoiceId":292,"TrackId":2614,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1582,"InvoiceId":292,"TrackId":2623,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1583,"InvoiceId":292,"TrackId":2632,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1584,"InvoiceId":292,"TrackId":2641,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1585,"InvoiceId":292,"TrackId":2650,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1586,"InvoiceId":292,"TrackId":2659,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1587,"InvoiceId":292,"TrackId":2668,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1588,"InvoiceId":292,"TrackId":2677,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1589,"InvoiceId":292,"TrackId":2686,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1590,"InvoiceId":292,"TrackId":2695,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1591,"InvoiceId":292,"TrackId":2704,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1592,"InvoiceId":292,"TrackId":2713,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1593,"InvoiceId":292,"TrackId":2722,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1594,"InvoiceId":293,"TrackId":2736,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1595,"InvoiceId":294,"TrackId":2737,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1596,"InvoiceId":294,"TrackId":2738,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1597,"InvoiceId":295,"TrackId":2740,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1598,"InvoiceId":295,"TrackId":2742,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1599,"InvoiceId":296,"TrackId":2744,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1600,"InvoiceId":296,"TrackId":2746,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1601,"InvoiceId":296,"TrackId":2748,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1602,"InvoiceId":296,"TrackId":2750,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1603,"InvoiceId":297,"TrackId":2754,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1604,"InvoiceId":297,"TrackId":2758,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1605,"InvoiceId":297,"TrackId":2762,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1606,"InvoiceId":297,"TrackId":2766,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1607,"InvoiceId":297,"TrackId":2770,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1608,"InvoiceId":297,"TrackId":2774,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1609,"InvoiceId":298,"TrackId":2780,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1610,"InvoiceId":298,"TrackId":2786,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1611,"InvoiceId":298,"TrackId":2792,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1612,"InvoiceId":298,"TrackId":2798,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1613,"InvoiceId":298,"TrackId":2804,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1614,"InvoiceId":298,"TrackId":2810,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1615,"InvoiceId":298,"TrackId":2816,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1616,"InvoiceId":298,"TrackId":2822,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1617,"InvoiceId":298,"TrackId":2828,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1618,"InvoiceId":299,"TrackId":2837,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1619,"InvoiceId":299,"TrackId":2846,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1620,"InvoiceId":299,"TrackId":2855,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1621,"InvoiceId":299,"TrackId":2864,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1622,"InvoiceId":299,"TrackId":2873,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1623,"InvoiceId":299,"TrackId":2882,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1624,"InvoiceId":299,"TrackId":2891,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1625,"InvoiceId":299,"TrackId":2900,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1626,"InvoiceId":299,"TrackId":2909,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1627,"InvoiceId":299,"TrackId":2918,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1628,"InvoiceId":299,"TrackId":2927,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1629,"InvoiceId":299,"TrackId":2936,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1630,"InvoiceId":299,"TrackId":2945,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1631,"InvoiceId":299,"TrackId":2954,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1632,"InvoiceId":300,"TrackId":2968,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1633,"InvoiceId":301,"TrackId":2969,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1634,"InvoiceId":301,"TrackId":2970,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1635,"InvoiceId":302,"TrackId":2972,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1636,"InvoiceId":302,"TrackId":2974,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1637,"InvoiceId":303,"TrackId":2976,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1638,"InvoiceId":303,"TrackId":2978,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1639,"InvoiceId":303,"TrackId":2980,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1640,"InvoiceId":303,"TrackId":2982,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1641,"InvoiceId":304,"TrackId":2986,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1642,"InvoiceId":304,"TrackId":2990,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1643,"InvoiceId":304,"TrackId":2994,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1644,"InvoiceId":304,"TrackId":2998,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1645,"InvoiceId":304,"TrackId":3002,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1646,"InvoiceId":304,"TrackId":3006,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1647,"InvoiceId":305,"TrackId":3012,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1648,"InvoiceId":305,"TrackId":3018,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1649,"InvoiceId":305,"TrackId":3024,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1650,"InvoiceId":305,"TrackId":3030,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1651,"InvoiceId":305,"TrackId":3036,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1652,"InvoiceId":305,"TrackId":3042,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1653,"InvoiceId":305,"TrackId":3048,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1654,"InvoiceId":305,"TrackId":3054,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1655,"InvoiceId":305,"TrackId":3060,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1656,"InvoiceId":306,"TrackId":3069,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1657,"InvoiceId":306,"TrackId":3078,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1658,"InvoiceId":306,"TrackId":3087,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1659,"InvoiceId":306,"TrackId":3096,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1660,"InvoiceId":306,"TrackId":3105,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1661,"InvoiceId":306,"TrackId":3114,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1662,"InvoiceId":306,"TrackId":3123,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1663,"InvoiceId":306,"TrackId":3132,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1664,"InvoiceId":306,"TrackId":3141,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1665,"InvoiceId":306,"TrackId":3150,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1666,"InvoiceId":306,"TrackId":3159,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1667,"InvoiceId":306,"TrackId":3168,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1668,"InvoiceId":306,"TrackId":3177,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1669,"InvoiceId":306,"TrackId":3186,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1670,"InvoiceId":307,"TrackId":3200,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1671,"InvoiceId":308,"TrackId":3201,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1672,"InvoiceId":308,"TrackId":3202,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1673,"InvoiceId":309,"TrackId":3204,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1674,"InvoiceId":309,"TrackId":3206,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1675,"InvoiceId":310,"TrackId":3208,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1676,"InvoiceId":310,"TrackId":3210,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1677,"InvoiceId":310,"TrackId":3212,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1678,"InvoiceId":310,"TrackId":3214,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1679,"InvoiceId":311,"TrackId":3218,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1680,"InvoiceId":311,"TrackId":3222,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1681,"InvoiceId":311,"TrackId":3226,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1682,"InvoiceId":311,"TrackId":3230,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1683,"InvoiceId":311,"TrackId":3234,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1684,"InvoiceId":311,"TrackId":3238,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1685,"InvoiceId":312,"TrackId":3244,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1686,"InvoiceId":312,"TrackId":3250,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1687,"InvoiceId":312,"TrackId":3256,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1688,"InvoiceId":312,"TrackId":3262,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1689,"InvoiceId":312,"TrackId":3268,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1690,"InvoiceId":312,"TrackId":3274,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1691,"InvoiceId":312,"TrackId":3280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1692,"InvoiceId":312,"TrackId":3286,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1693,"InvoiceId":312,"TrackId":3292,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1694,"InvoiceId":313,"TrackId":3301,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1695,"InvoiceId":313,"TrackId":3310,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1696,"InvoiceId":313,"TrackId":3319,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1697,"InvoiceId":313,"TrackId":3328,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1698,"InvoiceId":313,"TrackId":3337,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1699,"InvoiceId":313,"TrackId":3346,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1700,"InvoiceId":313,"TrackId":3355,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1701,"InvoiceId":313,"TrackId":3364,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":1702,"InvoiceId":313,"TrackId":3373,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1703,"InvoiceId":313,"TrackId":3382,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1704,"InvoiceId":313,"TrackId":3391,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1705,"InvoiceId":313,"TrackId":3400,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1706,"InvoiceId":313,"TrackId":3409,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1707,"InvoiceId":313,"TrackId":3418,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1708,"InvoiceId":314,"TrackId":3432,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1709,"InvoiceId":315,"TrackId":3433,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1710,"InvoiceId":315,"TrackId":3434,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1711,"InvoiceId":316,"TrackId":3436,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1712,"InvoiceId":316,"TrackId":3438,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1713,"InvoiceId":317,"TrackId":3440,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1714,"InvoiceId":317,"TrackId":3442,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1715,"InvoiceId":317,"TrackId":3444,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1716,"InvoiceId":317,"TrackId":3446,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1717,"InvoiceId":318,"TrackId":3450,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1718,"InvoiceId":318,"TrackId":3454,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1719,"InvoiceId":318,"TrackId":3458,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1720,"InvoiceId":318,"TrackId":3462,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1721,"InvoiceId":318,"TrackId":3466,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1722,"InvoiceId":318,"TrackId":3470,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1723,"InvoiceId":319,"TrackId":3476,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1724,"InvoiceId":319,"TrackId":3482,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1725,"InvoiceId":319,"TrackId":3488,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1726,"InvoiceId":319,"TrackId":3494,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1727,"InvoiceId":319,"TrackId":3500,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1728,"InvoiceId":319,"TrackId":3,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1729,"InvoiceId":319,"TrackId":9,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1730,"InvoiceId":319,"TrackId":15,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1731,"InvoiceId":319,"TrackId":21,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1732,"InvoiceId":320,"TrackId":30,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1733,"InvoiceId":320,"TrackId":39,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1734,"InvoiceId":320,"TrackId":48,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1735,"InvoiceId":320,"TrackId":57,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1736,"InvoiceId":320,"TrackId":66,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1737,"InvoiceId":320,"TrackId":75,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1738,"InvoiceId":320,"TrackId":84,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1739,"InvoiceId":320,"TrackId":93,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1740,"InvoiceId":320,"TrackId":102,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1741,"InvoiceId":320,"TrackId":111,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1742,"InvoiceId":320,"TrackId":120,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1743,"InvoiceId":320,"TrackId":129,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1744,"InvoiceId":320,"TrackId":138,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1745,"InvoiceId":320,"TrackId":147,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1746,"InvoiceId":321,"TrackId":161,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1747,"InvoiceId":322,"TrackId":162,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1748,"InvoiceId":322,"TrackId":163,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1749,"InvoiceId":323,"TrackId":165,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1750,"InvoiceId":323,"TrackId":167,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1751,"InvoiceId":324,"TrackId":169,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1752,"InvoiceId":324,"TrackId":171,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1753,"InvoiceId":324,"TrackId":173,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1754,"InvoiceId":324,"TrackId":175,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1755,"InvoiceId":325,"TrackId":179,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1756,"InvoiceId":325,"TrackId":183,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1757,"InvoiceId":325,"TrackId":187,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1758,"InvoiceId":325,"TrackId":191,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1759,"InvoiceId":325,"TrackId":195,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1760,"InvoiceId":325,"TrackId":199,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1761,"InvoiceId":326,"TrackId":205,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1762,"InvoiceId":326,"TrackId":211,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1763,"InvoiceId":326,"TrackId":217,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1764,"InvoiceId":326,"TrackId":223,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1765,"InvoiceId":326,"TrackId":229,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1766,"InvoiceId":326,"TrackId":235,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1767,"InvoiceId":326,"TrackId":241,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1768,"InvoiceId":326,"TrackId":247,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1769,"InvoiceId":326,"TrackId":253,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1770,"InvoiceId":327,"TrackId":262,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1771,"InvoiceId":327,"TrackId":271,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1772,"InvoiceId":327,"TrackId":280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1773,"InvoiceId":327,"TrackId":289,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1774,"InvoiceId":327,"TrackId":298,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1775,"InvoiceId":327,"TrackId":307,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1776,"InvoiceId":327,"TrackId":316,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1777,"InvoiceId":327,"TrackId":325,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1778,"InvoiceId":327,"TrackId":334,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1779,"InvoiceId":327,"TrackId":343,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1780,"InvoiceId":327,"TrackId":352,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1781,"InvoiceId":327,"TrackId":361,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1782,"InvoiceId":327,"TrackId":370,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1783,"InvoiceId":327,"TrackId":379,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1784,"InvoiceId":328,"TrackId":393,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1785,"InvoiceId":329,"TrackId":394,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1786,"InvoiceId":329,"TrackId":395,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1787,"InvoiceId":330,"TrackId":397,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1788,"InvoiceId":330,"TrackId":399,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1789,"InvoiceId":331,"TrackId":401,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1790,"InvoiceId":331,"TrackId":403,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1791,"InvoiceId":331,"TrackId":405,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1792,"InvoiceId":331,"TrackId":407,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1793,"InvoiceId":332,"TrackId":411,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1794,"InvoiceId":332,"TrackId":415,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1795,"InvoiceId":332,"TrackId":419,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1796,"InvoiceId":332,"TrackId":423,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1797,"InvoiceId":332,"TrackId":427,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1798,"InvoiceId":332,"TrackId":431,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1799,"InvoiceId":333,"TrackId":437,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1800,"InvoiceId":333,"TrackId":443,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1801,"InvoiceId":333,"TrackId":449,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1802,"InvoiceId":333,"TrackId":455,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1803,"InvoiceId":333,"TrackId":461,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1804,"InvoiceId":333,"TrackId":467,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1805,"InvoiceId":333,"TrackId":473,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1806,"InvoiceId":333,"TrackId":479,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1807,"InvoiceId":333,"TrackId":485,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1808,"InvoiceId":334,"TrackId":494,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1809,"InvoiceId":334,"TrackId":503,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1810,"InvoiceId":334,"TrackId":512,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1811,"InvoiceId":334,"TrackId":521,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1812,"InvoiceId":334,"TrackId":530,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1813,"InvoiceId":334,"TrackId":539,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1814,"InvoiceId":334,"TrackId":548,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1815,"InvoiceId":334,"TrackId":557,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1816,"InvoiceId":334,"TrackId":566,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1817,"InvoiceId":334,"TrackId":575,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1818,"InvoiceId":334,"TrackId":584,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1819,"InvoiceId":334,"TrackId":593,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1820,"InvoiceId":334,"TrackId":602,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1821,"InvoiceId":334,"TrackId":611,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1822,"InvoiceId":335,"TrackId":625,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1823,"InvoiceId":336,"TrackId":626,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1824,"InvoiceId":336,"TrackId":627,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1825,"InvoiceId":337,"TrackId":629,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1826,"InvoiceId":337,"TrackId":631,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1827,"InvoiceId":338,"TrackId":633,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1828,"InvoiceId":338,"TrackId":635,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1829,"InvoiceId":338,"TrackId":637,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1830,"InvoiceId":338,"TrackId":639,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1831,"InvoiceId":339,"TrackId":643,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1832,"InvoiceId":339,"TrackId":647,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1833,"InvoiceId":339,"TrackId":651,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1834,"InvoiceId":339,"TrackId":655,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1835,"InvoiceId":339,"TrackId":659,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1836,"InvoiceId":339,"TrackId":663,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1837,"InvoiceId":340,"TrackId":669,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1838,"InvoiceId":340,"TrackId":675,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1839,"InvoiceId":340,"TrackId":681,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1840,"InvoiceId":340,"TrackId":687,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1841,"InvoiceId":340,"TrackId":693,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1842,"InvoiceId":340,"TrackId":699,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1843,"InvoiceId":340,"TrackId":705,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1844,"InvoiceId":340,"TrackId":711,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1845,"InvoiceId":340,"TrackId":717,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1846,"InvoiceId":341,"TrackId":726,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1847,"InvoiceId":341,"TrackId":735,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1848,"InvoiceId":341,"TrackId":744,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1849,"InvoiceId":341,"TrackId":753,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1850,"InvoiceId":341,"TrackId":762,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1851,"InvoiceId":341,"TrackId":771,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1852,"InvoiceId":341,"TrackId":780,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1853,"InvoiceId":341,"TrackId":789,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1854,"InvoiceId":341,"TrackId":798,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1855,"InvoiceId":341,"TrackId":807,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1856,"InvoiceId":341,"TrackId":816,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1857,"InvoiceId":341,"TrackId":825,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1858,"InvoiceId":341,"TrackId":834,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1859,"InvoiceId":341,"TrackId":843,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1860,"InvoiceId":342,"TrackId":857,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1861,"InvoiceId":343,"TrackId":858,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1862,"InvoiceId":343,"TrackId":859,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1863,"InvoiceId":344,"TrackId":861,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1864,"InvoiceId":344,"TrackId":863,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1865,"InvoiceId":345,"TrackId":865,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1866,"InvoiceId":345,"TrackId":867,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1867,"InvoiceId":345,"TrackId":869,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1868,"InvoiceId":345,"TrackId":871,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1869,"InvoiceId":346,"TrackId":875,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1870,"InvoiceId":346,"TrackId":879,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1871,"InvoiceId":346,"TrackId":883,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1872,"InvoiceId":346,"TrackId":887,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1873,"InvoiceId":346,"TrackId":891,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1874,"InvoiceId":346,"TrackId":895,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1875,"InvoiceId":347,"TrackId":901,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1876,"InvoiceId":347,"TrackId":907,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1877,"InvoiceId":347,"TrackId":913,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1878,"InvoiceId":347,"TrackId":919,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1879,"InvoiceId":347,"TrackId":925,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1880,"InvoiceId":347,"TrackId":931,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1881,"InvoiceId":347,"TrackId":937,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1882,"InvoiceId":347,"TrackId":943,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1883,"InvoiceId":347,"TrackId":949,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1884,"InvoiceId":348,"TrackId":958,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1885,"InvoiceId":348,"TrackId":967,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1886,"InvoiceId":348,"TrackId":976,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1887,"InvoiceId":348,"TrackId":985,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1888,"InvoiceId":348,"TrackId":994,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1889,"InvoiceId":348,"TrackId":1003,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1890,"InvoiceId":348,"TrackId":1012,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1891,"InvoiceId":348,"TrackId":1021,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1892,"InvoiceId":348,"TrackId":1030,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1893,"InvoiceId":348,"TrackId":1039,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1894,"InvoiceId":348,"TrackId":1048,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1895,"InvoiceId":348,"TrackId":1057,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1896,"InvoiceId":348,"TrackId":1066,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1897,"InvoiceId":348,"TrackId":1075,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1898,"InvoiceId":349,"TrackId":1089,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1899,"InvoiceId":350,"TrackId":1090,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1900,"InvoiceId":350,"TrackId":1091,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1901,"InvoiceId":351,"TrackId":1093,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1902,"InvoiceId":351,"TrackId":1095,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1903,"InvoiceId":352,"TrackId":1097,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1904,"InvoiceId":352,"TrackId":1099,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1905,"InvoiceId":352,"TrackId":1101,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1906,"InvoiceId":352,"TrackId":1103,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1907,"InvoiceId":353,"TrackId":1107,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1908,"InvoiceId":353,"TrackId":1111,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1909,"InvoiceId":353,"TrackId":1115,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1910,"InvoiceId":353,"TrackId":1119,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1911,"InvoiceId":353,"TrackId":1123,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1912,"InvoiceId":353,"TrackId":1127,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1913,"InvoiceId":354,"TrackId":1133,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1914,"InvoiceId":354,"TrackId":1139,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1915,"InvoiceId":354,"TrackId":1145,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1916,"InvoiceId":354,"TrackId":1151,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1917,"InvoiceId":354,"TrackId":1157,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1918,"InvoiceId":354,"TrackId":1163,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1919,"InvoiceId":354,"TrackId":1169,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1920,"InvoiceId":354,"TrackId":1175,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1921,"InvoiceId":354,"TrackId":1181,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1922,"InvoiceId":355,"TrackId":1190,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1923,"InvoiceId":355,"TrackId":1199,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1924,"InvoiceId":355,"TrackId":1208,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1925,"InvoiceId":355,"TrackId":1217,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1926,"InvoiceId":355,"TrackId":1226,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1927,"InvoiceId":355,"TrackId":1235,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1928,"InvoiceId":355,"TrackId":1244,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1929,"InvoiceId":355,"TrackId":1253,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1930,"InvoiceId":355,"TrackId":1262,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1931,"InvoiceId":355,"TrackId":1271,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1932,"InvoiceId":355,"TrackId":1280,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1933,"InvoiceId":355,"TrackId":1289,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1934,"InvoiceId":355,"TrackId":1298,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1935,"InvoiceId":355,"TrackId":1307,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1936,"InvoiceId":356,"TrackId":1321,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1937,"InvoiceId":357,"TrackId":1322,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1938,"InvoiceId":357,"TrackId":1323,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1939,"InvoiceId":358,"TrackId":1325,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1940,"InvoiceId":358,"TrackId":1327,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1941,"InvoiceId":359,"TrackId":1329,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1942,"InvoiceId":359,"TrackId":1331,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1943,"InvoiceId":359,"TrackId":1333,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1944,"InvoiceId":359,"TrackId":1335,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1945,"InvoiceId":360,"TrackId":1339,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1946,"InvoiceId":360,"TrackId":1343,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1947,"InvoiceId":360,"TrackId":1347,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1948,"InvoiceId":360,"TrackId":1351,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1949,"InvoiceId":360,"TrackId":1355,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1950,"InvoiceId":360,"TrackId":1359,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1951,"InvoiceId":361,"TrackId":1365,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1952,"InvoiceId":361,"TrackId":1371,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1953,"InvoiceId":361,"TrackId":1377,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1954,"InvoiceId":361,"TrackId":1383,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1955,"InvoiceId":361,"TrackId":1389,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1956,"InvoiceId":361,"TrackId":1395,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1957,"InvoiceId":361,"TrackId":1401,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1958,"InvoiceId":361,"TrackId":1407,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1959,"InvoiceId":361,"TrackId":1413,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1960,"InvoiceId":362,"TrackId":1422,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1961,"InvoiceId":362,"TrackId":1431,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1962,"InvoiceId":362,"TrackId":1440,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1963,"InvoiceId":362,"TrackId":1449,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1964,"InvoiceId":362,"TrackId":1458,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1965,"InvoiceId":362,"TrackId":1467,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1966,"InvoiceId":362,"TrackId":1476,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1967,"InvoiceId":362,"TrackId":1485,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1968,"InvoiceId":362,"TrackId":1494,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1969,"InvoiceId":362,"TrackId":1503,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1970,"InvoiceId":362,"TrackId":1512,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1971,"InvoiceId":362,"TrackId":1521,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1972,"InvoiceId":362,"TrackId":1530,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1973,"InvoiceId":362,"TrackId":1539,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1974,"InvoiceId":363,"TrackId":1553,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1975,"InvoiceId":364,"TrackId":1554,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1976,"InvoiceId":364,"TrackId":1555,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1977,"InvoiceId":365,"TrackId":1557,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1978,"InvoiceId":365,"TrackId":1559,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1979,"InvoiceId":366,"TrackId":1561,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1980,"InvoiceId":366,"TrackId":1563,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1981,"InvoiceId":366,"TrackId":1565,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1982,"InvoiceId":366,"TrackId":1567,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1983,"InvoiceId":367,"TrackId":1571,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1984,"InvoiceId":367,"TrackId":1575,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1985,"InvoiceId":367,"TrackId":1579,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1986,"InvoiceId":367,"TrackId":1583,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1987,"InvoiceId":367,"TrackId":1587,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1988,"InvoiceId":367,"TrackId":1591,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1989,"InvoiceId":368,"TrackId":1597,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1990,"InvoiceId":368,"TrackId":1603,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1991,"InvoiceId":368,"TrackId":1609,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1992,"InvoiceId":368,"TrackId":1615,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1993,"InvoiceId":368,"TrackId":1621,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1994,"InvoiceId":368,"TrackId":1627,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1995,"InvoiceId":368,"TrackId":1633,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1996,"InvoiceId":368,"TrackId":1639,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1997,"InvoiceId":368,"TrackId":1645,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1998,"InvoiceId":369,"TrackId":1654,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":1999,"InvoiceId":369,"TrackId":1663,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2000,"InvoiceId":369,"TrackId":1672,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2001,"InvoiceId":369,"TrackId":1681,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2002,"InvoiceId":369,"TrackId":1690,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2003,"InvoiceId":369,"TrackId":1699,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2004,"InvoiceId":369,"TrackId":1708,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2005,"InvoiceId":369,"TrackId":1717,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2006,"InvoiceId":369,"TrackId":1726,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2007,"InvoiceId":369,"TrackId":1735,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2008,"InvoiceId":369,"TrackId":1744,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2009,"InvoiceId":369,"TrackId":1753,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2010,"InvoiceId":369,"TrackId":1762,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2011,"InvoiceId":369,"TrackId":1771,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2012,"InvoiceId":370,"TrackId":1785,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2013,"InvoiceId":371,"TrackId":1786,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2014,"InvoiceId":371,"TrackId":1787,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2015,"InvoiceId":372,"TrackId":1789,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2016,"InvoiceId":372,"TrackId":1791,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2017,"InvoiceId":373,"TrackId":1793,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2018,"InvoiceId":373,"TrackId":1795,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2019,"InvoiceId":373,"TrackId":1797,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2020,"InvoiceId":373,"TrackId":1799,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2021,"InvoiceId":374,"TrackId":1803,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2022,"InvoiceId":374,"TrackId":1807,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2023,"InvoiceId":374,"TrackId":1811,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2024,"InvoiceId":374,"TrackId":1815,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2025,"InvoiceId":374,"TrackId":1819,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2026,"InvoiceId":374,"TrackId":1823,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2027,"InvoiceId":375,"TrackId":1829,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2028,"InvoiceId":375,"TrackId":1835,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2029,"InvoiceId":375,"TrackId":1841,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2030,"InvoiceId":375,"TrackId":1847,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2031,"InvoiceId":375,"TrackId":1853,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2032,"InvoiceId":375,"TrackId":1859,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2033,"InvoiceId":375,"TrackId":1865,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2034,"InvoiceId":375,"TrackId":1871,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2035,"InvoiceId":375,"TrackId":1877,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2036,"InvoiceId":376,"TrackId":1886,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2037,"InvoiceId":376,"TrackId":1895,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2038,"InvoiceId":376,"TrackId":1904,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2039,"InvoiceId":376,"TrackId":1913,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2040,"InvoiceId":376,"TrackId":1922,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2041,"InvoiceId":376,"TrackId":1931,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2042,"InvoiceId":376,"TrackId":1940,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2043,"InvoiceId":376,"TrackId":1949,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2044,"InvoiceId":376,"TrackId":1958,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2045,"InvoiceId":376,"TrackId":1967,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2046,"InvoiceId":376,"TrackId":1976,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2047,"InvoiceId":376,"TrackId":1985,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2048,"InvoiceId":376,"TrackId":1994,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2049,"InvoiceId":376,"TrackId":2003,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2050,"InvoiceId":377,"TrackId":2017,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2051,"InvoiceId":378,"TrackId":2018,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2052,"InvoiceId":378,"TrackId":2019,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2053,"InvoiceId":379,"TrackId":2021,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2054,"InvoiceId":379,"TrackId":2023,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2055,"InvoiceId":380,"TrackId":2025,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2056,"InvoiceId":380,"TrackId":2027,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2057,"InvoiceId":380,"TrackId":2029,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2058,"InvoiceId":380,"TrackId":2031,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2059,"InvoiceId":381,"TrackId":2035,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2060,"InvoiceId":381,"TrackId":2039,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2061,"InvoiceId":381,"TrackId":2043,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2062,"InvoiceId":381,"TrackId":2047,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2063,"InvoiceId":381,"TrackId":2051,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2064,"InvoiceId":381,"TrackId":2055,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2065,"InvoiceId":382,"TrackId":2061,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2066,"InvoiceId":382,"TrackId":2067,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2067,"InvoiceId":382,"TrackId":2073,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2068,"InvoiceId":382,"TrackId":2079,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2069,"InvoiceId":382,"TrackId":2085,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2070,"InvoiceId":382,"TrackId":2091,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2071,"InvoiceId":382,"TrackId":2097,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2072,"InvoiceId":382,"TrackId":2103,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2073,"InvoiceId":382,"TrackId":2109,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2074,"InvoiceId":383,"TrackId":2118,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2075,"InvoiceId":383,"TrackId":2127,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2076,"InvoiceId":383,"TrackId":2136,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2077,"InvoiceId":383,"TrackId":2145,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2078,"InvoiceId":383,"TrackId":2154,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2079,"InvoiceId":383,"TrackId":2163,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2080,"InvoiceId":383,"TrackId":2172,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2081,"InvoiceId":383,"TrackId":2181,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2082,"InvoiceId":383,"TrackId":2190,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2083,"InvoiceId":383,"TrackId":2199,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2084,"InvoiceId":383,"TrackId":2208,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2085,"InvoiceId":383,"TrackId":2217,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2086,"InvoiceId":383,"TrackId":2226,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2087,"InvoiceId":383,"TrackId":2235,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2088,"InvoiceId":384,"TrackId":2249,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2089,"InvoiceId":385,"TrackId":2250,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2090,"InvoiceId":385,"TrackId":2251,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2091,"InvoiceId":386,"TrackId":2253,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2092,"InvoiceId":386,"TrackId":2255,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2093,"InvoiceId":387,"TrackId":2257,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2094,"InvoiceId":387,"TrackId":2259,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2095,"InvoiceId":387,"TrackId":2261,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2096,"InvoiceId":387,"TrackId":2263,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2097,"InvoiceId":388,"TrackId":2267,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2098,"InvoiceId":388,"TrackId":2271,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2099,"InvoiceId":388,"TrackId":2275,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2100,"InvoiceId":388,"TrackId":2279,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2101,"InvoiceId":388,"TrackId":2283,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2102,"InvoiceId":388,"TrackId":2287,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2103,"InvoiceId":389,"TrackId":2293,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2104,"InvoiceId":389,"TrackId":2299,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2105,"InvoiceId":389,"TrackId":2305,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2106,"InvoiceId":389,"TrackId":2311,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2107,"InvoiceId":389,"TrackId":2317,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2108,"InvoiceId":389,"TrackId":2323,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2109,"InvoiceId":389,"TrackId":2329,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2110,"InvoiceId":389,"TrackId":2335,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2111,"InvoiceId":389,"TrackId":2341,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2112,"InvoiceId":390,"TrackId":2350,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2113,"InvoiceId":390,"TrackId":2359,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2114,"InvoiceId":390,"TrackId":2368,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2115,"InvoiceId":390,"TrackId":2377,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2116,"InvoiceId":390,"TrackId":2386,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2117,"InvoiceId":390,"TrackId":2395,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2118,"InvoiceId":390,"TrackId":2404,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2119,"InvoiceId":390,"TrackId":2413,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2120,"InvoiceId":390,"TrackId":2422,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2121,"InvoiceId":390,"TrackId":2431,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2122,"InvoiceId":390,"TrackId":2440,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2123,"InvoiceId":390,"TrackId":2449,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2124,"InvoiceId":390,"TrackId":2458,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2125,"InvoiceId":390,"TrackId":2467,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2126,"InvoiceId":391,"TrackId":2481,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2127,"InvoiceId":392,"TrackId":2482,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2128,"InvoiceId":392,"TrackId":2483,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2129,"InvoiceId":393,"TrackId":2485,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2130,"InvoiceId":393,"TrackId":2487,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2131,"InvoiceId":394,"TrackId":2489,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2132,"InvoiceId":394,"TrackId":2491,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2133,"InvoiceId":394,"TrackId":2493,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2134,"InvoiceId":394,"TrackId":2495,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2135,"InvoiceId":395,"TrackId":2499,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2136,"InvoiceId":395,"TrackId":2503,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2137,"InvoiceId":395,"TrackId":2507,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2138,"InvoiceId":395,"TrackId":2511,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2139,"InvoiceId":395,"TrackId":2515,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2140,"InvoiceId":395,"TrackId":2519,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2141,"InvoiceId":396,"TrackId":2525,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2142,"InvoiceId":396,"TrackId":2531,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2143,"InvoiceId":396,"TrackId":2537,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2144,"InvoiceId":396,"TrackId":2543,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2145,"InvoiceId":396,"TrackId":2549,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2146,"InvoiceId":396,"TrackId":2555,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2147,"InvoiceId":396,"TrackId":2561,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2148,"InvoiceId":396,"TrackId":2567,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2149,"InvoiceId":396,"TrackId":2573,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2150,"InvoiceId":397,"TrackId":2582,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2151,"InvoiceId":397,"TrackId":2591,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2152,"InvoiceId":397,"TrackId":2600,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2153,"InvoiceId":397,"TrackId":2609,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2154,"InvoiceId":397,"TrackId":2618,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2155,"InvoiceId":397,"TrackId":2627,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2156,"InvoiceId":397,"TrackId":2636,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2157,"InvoiceId":397,"TrackId":2645,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2158,"InvoiceId":397,"TrackId":2654,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2159,"InvoiceId":397,"TrackId":2663,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2160,"InvoiceId":397,"TrackId":2672,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2161,"InvoiceId":397,"TrackId":2681,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2162,"InvoiceId":397,"TrackId":2690,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2163,"InvoiceId":397,"TrackId":2699,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2164,"InvoiceId":398,"TrackId":2713,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2165,"InvoiceId":399,"TrackId":2714,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2166,"InvoiceId":399,"TrackId":2715,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2167,"InvoiceId":400,"TrackId":2717,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2168,"InvoiceId":400,"TrackId":2719,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2169,"InvoiceId":401,"TrackId":2721,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2170,"InvoiceId":401,"TrackId":2723,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2171,"InvoiceId":401,"TrackId":2725,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2172,"InvoiceId":401,"TrackId":2727,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2173,"InvoiceId":402,"TrackId":2731,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2174,"InvoiceId":402,"TrackId":2735,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2175,"InvoiceId":402,"TrackId":2739,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2176,"InvoiceId":402,"TrackId":2743,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2177,"InvoiceId":402,"TrackId":2747,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2178,"InvoiceId":402,"TrackId":2751,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2179,"InvoiceId":403,"TrackId":2757,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2180,"InvoiceId":403,"TrackId":2763,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2181,"InvoiceId":403,"TrackId":2769,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2182,"InvoiceId":403,"TrackId":2775,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2183,"InvoiceId":403,"TrackId":2781,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2184,"InvoiceId":403,"TrackId":2787,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2185,"InvoiceId":403,"TrackId":2793,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2186,"InvoiceId":403,"TrackId":2799,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2187,"InvoiceId":403,"TrackId":2805,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2188,"InvoiceId":404,"TrackId":2814,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2189,"InvoiceId":404,"TrackId":2823,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2190,"InvoiceId":404,"TrackId":2832,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2191,"InvoiceId":404,"TrackId":2841,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2192,"InvoiceId":404,"TrackId":2850,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2193,"InvoiceId":404,"TrackId":2859,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2194,"InvoiceId":404,"TrackId":2868,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2195,"InvoiceId":404,"TrackId":2877,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2196,"InvoiceId":404,"TrackId":2886,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2197,"InvoiceId":404,"TrackId":2895,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2198,"InvoiceId":404,"TrackId":2904,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2199,"InvoiceId":404,"TrackId":2913,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2200,"InvoiceId":404,"TrackId":2922,"UnitPrice":"1.99","Quantity":1} +{"InvoiceLineId":2201,"InvoiceId":404,"TrackId":2931,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2202,"InvoiceId":405,"TrackId":2945,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2203,"InvoiceId":406,"TrackId":2946,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2204,"InvoiceId":406,"TrackId":2947,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2205,"InvoiceId":407,"TrackId":2949,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2206,"InvoiceId":407,"TrackId":2951,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2207,"InvoiceId":408,"TrackId":2953,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2208,"InvoiceId":408,"TrackId":2955,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2209,"InvoiceId":408,"TrackId":2957,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2210,"InvoiceId":408,"TrackId":2959,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2211,"InvoiceId":409,"TrackId":2963,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2212,"InvoiceId":409,"TrackId":2967,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2213,"InvoiceId":409,"TrackId":2971,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2214,"InvoiceId":409,"TrackId":2975,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2215,"InvoiceId":409,"TrackId":2979,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2216,"InvoiceId":409,"TrackId":2983,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2217,"InvoiceId":410,"TrackId":2989,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2218,"InvoiceId":410,"TrackId":2995,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2219,"InvoiceId":410,"TrackId":3001,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2220,"InvoiceId":410,"TrackId":3007,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2221,"InvoiceId":410,"TrackId":3013,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2222,"InvoiceId":410,"TrackId":3019,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2223,"InvoiceId":410,"TrackId":3025,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2224,"InvoiceId":410,"TrackId":3031,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2225,"InvoiceId":410,"TrackId":3037,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2226,"InvoiceId":411,"TrackId":3046,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2227,"InvoiceId":411,"TrackId":3055,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2228,"InvoiceId":411,"TrackId":3064,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2229,"InvoiceId":411,"TrackId":3073,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2230,"InvoiceId":411,"TrackId":3082,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2231,"InvoiceId":411,"TrackId":3091,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2232,"InvoiceId":411,"TrackId":3100,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2233,"InvoiceId":411,"TrackId":3109,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2234,"InvoiceId":411,"TrackId":3118,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2235,"InvoiceId":411,"TrackId":3127,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2236,"InvoiceId":411,"TrackId":3136,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2237,"InvoiceId":411,"TrackId":3145,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2238,"InvoiceId":411,"TrackId":3154,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2239,"InvoiceId":411,"TrackId":3163,"UnitPrice":"0.99","Quantity":1} +{"InvoiceLineId":2240,"InvoiceId":412,"TrackId":3177,"UnitPrice":"1.99","Quantity":1} diff --git a/e2e-tests/data/chinook-jsonl/MediaType.jsonl b/e2e-tests/data/chinook-jsonl/MediaType.jsonl new file mode 100644 index 000000000..59abb65b7 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/MediaType.jsonl @@ -0,0 +1,5 @@ +{"MediaTypeId":1,"Name":"MPEG audio file"} +{"MediaTypeId":2,"Name":"Protected AAC audio file"} +{"MediaTypeId":3,"Name":"Protected MPEG-4 video file"} +{"MediaTypeId":4,"Name":"Purchased AAC audio file"} +{"MediaTypeId":5,"Name":"AAC audio file"} diff --git a/e2e-tests/data/chinook-jsonl/Playlist.jsonl b/e2e-tests/data/chinook-jsonl/Playlist.jsonl new file mode 100644 index 000000000..05aaef748 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Playlist.jsonl @@ -0,0 +1,18 @@ +{"PlaylistId":1,"Name":"Music"} +{"PlaylistId":2,"Name":"Movies"} +{"PlaylistId":3,"Name":"TV Shows"} +{"PlaylistId":4,"Name":"Audiobooks"} +{"PlaylistId":5,"Name":"90’s Music"} +{"PlaylistId":6,"Name":"Audiobooks"} +{"PlaylistId":7,"Name":"Movies"} +{"PlaylistId":8,"Name":"Music"} +{"PlaylistId":9,"Name":"Music Videos"} +{"PlaylistId":10,"Name":"TV Shows"} +{"PlaylistId":11,"Name":"Brazilian Music"} +{"PlaylistId":12,"Name":"Classical"} +{"PlaylistId":13,"Name":"Classical 101 - Deep Cuts"} +{"PlaylistId":14,"Name":"Classical 101 - Next Steps"} +{"PlaylistId":15,"Name":"Classical 101 - The Basics"} +{"PlaylistId":16,"Name":"Grunge"} +{"PlaylistId":17,"Name":"Heavy Metal Classic"} +{"PlaylistId":18,"Name":"On-The-Go 1"} diff --git a/e2e-tests/data/chinook-jsonl/PlaylistTrack.jsonl b/e2e-tests/data/chinook-jsonl/PlaylistTrack.jsonl new file mode 100644 index 000000000..9c68caa27 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/PlaylistTrack.jsonl @@ -0,0 +1,8715 @@ +{"PlaylistId":1,"TrackId":3402} +{"PlaylistId":1,"TrackId":3389} +{"PlaylistId":1,"TrackId":3390} +{"PlaylistId":1,"TrackId":3391} +{"PlaylistId":1,"TrackId":3392} +{"PlaylistId":1,"TrackId":3393} +{"PlaylistId":1,"TrackId":3394} +{"PlaylistId":1,"TrackId":3395} +{"PlaylistId":1,"TrackId":3396} +{"PlaylistId":1,"TrackId":3397} +{"PlaylistId":1,"TrackId":3398} +{"PlaylistId":1,"TrackId":3399} +{"PlaylistId":1,"TrackId":3400} +{"PlaylistId":1,"TrackId":3401} +{"PlaylistId":1,"TrackId":3336} +{"PlaylistId":1,"TrackId":3478} +{"PlaylistId":1,"TrackId":3375} +{"PlaylistId":1,"TrackId":3376} +{"PlaylistId":1,"TrackId":3377} +{"PlaylistId":1,"TrackId":3378} +{"PlaylistId":1,"TrackId":3379} +{"PlaylistId":1,"TrackId":3380} +{"PlaylistId":1,"TrackId":3381} +{"PlaylistId":1,"TrackId":3382} +{"PlaylistId":1,"TrackId":3383} +{"PlaylistId":1,"TrackId":3384} +{"PlaylistId":1,"TrackId":3385} +{"PlaylistId":1,"TrackId":3386} +{"PlaylistId":1,"TrackId":3387} +{"PlaylistId":1,"TrackId":3388} +{"PlaylistId":1,"TrackId":3365} +{"PlaylistId":1,"TrackId":3366} +{"PlaylistId":1,"TrackId":3367} +{"PlaylistId":1,"TrackId":3368} +{"PlaylistId":1,"TrackId":3369} +{"PlaylistId":1,"TrackId":3370} +{"PlaylistId":1,"TrackId":3371} +{"PlaylistId":1,"TrackId":3372} +{"PlaylistId":1,"TrackId":3373} +{"PlaylistId":1,"TrackId":3374} +{"PlaylistId":1,"TrackId":99} +{"PlaylistId":1,"TrackId":100} +{"PlaylistId":1,"TrackId":101} +{"PlaylistId":1,"TrackId":102} +{"PlaylistId":1,"TrackId":103} +{"PlaylistId":1,"TrackId":104} +{"PlaylistId":1,"TrackId":105} +{"PlaylistId":1,"TrackId":106} +{"PlaylistId":1,"TrackId":107} +{"PlaylistId":1,"TrackId":108} +{"PlaylistId":1,"TrackId":109} +{"PlaylistId":1,"TrackId":110} +{"PlaylistId":1,"TrackId":166} +{"PlaylistId":1,"TrackId":167} +{"PlaylistId":1,"TrackId":168} +{"PlaylistId":1,"TrackId":169} +{"PlaylistId":1,"TrackId":170} +{"PlaylistId":1,"TrackId":171} +{"PlaylistId":1,"TrackId":172} +{"PlaylistId":1,"TrackId":173} +{"PlaylistId":1,"TrackId":174} +{"PlaylistId":1,"TrackId":175} +{"PlaylistId":1,"TrackId":176} +{"PlaylistId":1,"TrackId":177} +{"PlaylistId":1,"TrackId":178} +{"PlaylistId":1,"TrackId":179} +{"PlaylistId":1,"TrackId":180} +{"PlaylistId":1,"TrackId":181} +{"PlaylistId":1,"TrackId":182} +{"PlaylistId":1,"TrackId":2591} +{"PlaylistId":1,"TrackId":2592} +{"PlaylistId":1,"TrackId":2593} +{"PlaylistId":1,"TrackId":2594} +{"PlaylistId":1,"TrackId":2595} +{"PlaylistId":1,"TrackId":2596} +{"PlaylistId":1,"TrackId":2597} +{"PlaylistId":1,"TrackId":2598} +{"PlaylistId":1,"TrackId":2599} +{"PlaylistId":1,"TrackId":2600} +{"PlaylistId":1,"TrackId":2601} +{"PlaylistId":1,"TrackId":2602} +{"PlaylistId":1,"TrackId":2603} +{"PlaylistId":1,"TrackId":2604} +{"PlaylistId":1,"TrackId":2605} +{"PlaylistId":1,"TrackId":2606} +{"PlaylistId":1,"TrackId":2607} +{"PlaylistId":1,"TrackId":2608} +{"PlaylistId":1,"TrackId":923} +{"PlaylistId":1,"TrackId":924} +{"PlaylistId":1,"TrackId":925} +{"PlaylistId":1,"TrackId":926} +{"PlaylistId":1,"TrackId":927} +{"PlaylistId":1,"TrackId":928} +{"PlaylistId":1,"TrackId":929} +{"PlaylistId":1,"TrackId":930} +{"PlaylistId":1,"TrackId":931} +{"PlaylistId":1,"TrackId":932} +{"PlaylistId":1,"TrackId":933} +{"PlaylistId":1,"TrackId":934} +{"PlaylistId":1,"TrackId":935} +{"PlaylistId":1,"TrackId":936} +{"PlaylistId":1,"TrackId":937} +{"PlaylistId":1,"TrackId":938} +{"PlaylistId":1,"TrackId":939} +{"PlaylistId":1,"TrackId":940} +{"PlaylistId":1,"TrackId":941} +{"PlaylistId":1,"TrackId":942} +{"PlaylistId":1,"TrackId":943} +{"PlaylistId":1,"TrackId":944} +{"PlaylistId":1,"TrackId":945} +{"PlaylistId":1,"TrackId":946} +{"PlaylistId":1,"TrackId":947} +{"PlaylistId":1,"TrackId":948} +{"PlaylistId":1,"TrackId":964} +{"PlaylistId":1,"TrackId":965} +{"PlaylistId":1,"TrackId":966} +{"PlaylistId":1,"TrackId":967} +{"PlaylistId":1,"TrackId":968} +{"PlaylistId":1,"TrackId":969} +{"PlaylistId":1,"TrackId":970} +{"PlaylistId":1,"TrackId":971} +{"PlaylistId":1,"TrackId":972} +{"PlaylistId":1,"TrackId":973} +{"PlaylistId":1,"TrackId":974} +{"PlaylistId":1,"TrackId":1009} +{"PlaylistId":1,"TrackId":1010} +{"PlaylistId":1,"TrackId":1011} +{"PlaylistId":1,"TrackId":1012} +{"PlaylistId":1,"TrackId":1013} +{"PlaylistId":1,"TrackId":1014} +{"PlaylistId":1,"TrackId":1015} +{"PlaylistId":1,"TrackId":1016} +{"PlaylistId":1,"TrackId":1017} +{"PlaylistId":1,"TrackId":1018} +{"PlaylistId":1,"TrackId":1019} +{"PlaylistId":1,"TrackId":1133} +{"PlaylistId":1,"TrackId":1134} +{"PlaylistId":1,"TrackId":1135} +{"PlaylistId":1,"TrackId":1136} +{"PlaylistId":1,"TrackId":1137} +{"PlaylistId":1,"TrackId":1138} +{"PlaylistId":1,"TrackId":1139} +{"PlaylistId":1,"TrackId":1140} +{"PlaylistId":1,"TrackId":1141} +{"PlaylistId":1,"TrackId":1142} +{"PlaylistId":1,"TrackId":1143} +{"PlaylistId":1,"TrackId":1144} +{"PlaylistId":1,"TrackId":1145} +{"PlaylistId":1,"TrackId":468} +{"PlaylistId":1,"TrackId":469} +{"PlaylistId":1,"TrackId":470} +{"PlaylistId":1,"TrackId":471} +{"PlaylistId":1,"TrackId":472} +{"PlaylistId":1,"TrackId":473} +{"PlaylistId":1,"TrackId":474} +{"PlaylistId":1,"TrackId":475} +{"PlaylistId":1,"TrackId":476} +{"PlaylistId":1,"TrackId":477} +{"PlaylistId":1,"TrackId":478} +{"PlaylistId":1,"TrackId":479} +{"PlaylistId":1,"TrackId":480} +{"PlaylistId":1,"TrackId":481} +{"PlaylistId":1,"TrackId":482} +{"PlaylistId":1,"TrackId":483} +{"PlaylistId":1,"TrackId":484} +{"PlaylistId":1,"TrackId":485} +{"PlaylistId":1,"TrackId":486} +{"PlaylistId":1,"TrackId":487} +{"PlaylistId":1,"TrackId":488} +{"PlaylistId":1,"TrackId":1466} +{"PlaylistId":1,"TrackId":1467} +{"PlaylistId":1,"TrackId":1468} +{"PlaylistId":1,"TrackId":1469} +{"PlaylistId":1,"TrackId":1470} +{"PlaylistId":1,"TrackId":1471} +{"PlaylistId":1,"TrackId":1472} +{"PlaylistId":1,"TrackId":1473} +{"PlaylistId":1,"TrackId":1474} +{"PlaylistId":1,"TrackId":1475} +{"PlaylistId":1,"TrackId":1476} +{"PlaylistId":1,"TrackId":1477} +{"PlaylistId":1,"TrackId":1478} +{"PlaylistId":1,"TrackId":529} +{"PlaylistId":1,"TrackId":530} +{"PlaylistId":1,"TrackId":531} +{"PlaylistId":1,"TrackId":532} +{"PlaylistId":1,"TrackId":533} +{"PlaylistId":1,"TrackId":534} +{"PlaylistId":1,"TrackId":535} +{"PlaylistId":1,"TrackId":536} +{"PlaylistId":1,"TrackId":537} +{"PlaylistId":1,"TrackId":538} +{"PlaylistId":1,"TrackId":539} +{"PlaylistId":1,"TrackId":540} +{"PlaylistId":1,"TrackId":541} +{"PlaylistId":1,"TrackId":542} +{"PlaylistId":1,"TrackId":2165} +{"PlaylistId":1,"TrackId":2166} +{"PlaylistId":1,"TrackId":2167} +{"PlaylistId":1,"TrackId":2168} +{"PlaylistId":1,"TrackId":2169} +{"PlaylistId":1,"TrackId":2170} +{"PlaylistId":1,"TrackId":2171} +{"PlaylistId":1,"TrackId":2172} +{"PlaylistId":1,"TrackId":2173} +{"PlaylistId":1,"TrackId":2174} +{"PlaylistId":1,"TrackId":2175} +{"PlaylistId":1,"TrackId":2176} +{"PlaylistId":1,"TrackId":2177} +{"PlaylistId":1,"TrackId":2318} +{"PlaylistId":1,"TrackId":2319} +{"PlaylistId":1,"TrackId":2320} +{"PlaylistId":1,"TrackId":2321} +{"PlaylistId":1,"TrackId":2322} +{"PlaylistId":1,"TrackId":2323} +{"PlaylistId":1,"TrackId":2324} +{"PlaylistId":1,"TrackId":2325} +{"PlaylistId":1,"TrackId":2326} +{"PlaylistId":1,"TrackId":2327} +{"PlaylistId":1,"TrackId":2328} +{"PlaylistId":1,"TrackId":2329} +{"PlaylistId":1,"TrackId":2330} +{"PlaylistId":1,"TrackId":2331} +{"PlaylistId":1,"TrackId":2332} +{"PlaylistId":1,"TrackId":2333} +{"PlaylistId":1,"TrackId":2285} +{"PlaylistId":1,"TrackId":2286} +{"PlaylistId":1,"TrackId":2287} +{"PlaylistId":1,"TrackId":2288} +{"PlaylistId":1,"TrackId":2289} +{"PlaylistId":1,"TrackId":2290} +{"PlaylistId":1,"TrackId":2291} +{"PlaylistId":1,"TrackId":2292} +{"PlaylistId":1,"TrackId":2293} +{"PlaylistId":1,"TrackId":2294} +{"PlaylistId":1,"TrackId":2295} +{"PlaylistId":1,"TrackId":2310} +{"PlaylistId":1,"TrackId":2311} +{"PlaylistId":1,"TrackId":2312} +{"PlaylistId":1,"TrackId":2313} +{"PlaylistId":1,"TrackId":2314} +{"PlaylistId":1,"TrackId":2315} +{"PlaylistId":1,"TrackId":2316} +{"PlaylistId":1,"TrackId":2317} +{"PlaylistId":1,"TrackId":2282} +{"PlaylistId":1,"TrackId":2283} +{"PlaylistId":1,"TrackId":2284} +{"PlaylistId":1,"TrackId":2334} +{"PlaylistId":1,"TrackId":2335} +{"PlaylistId":1,"TrackId":2336} +{"PlaylistId":1,"TrackId":2337} +{"PlaylistId":1,"TrackId":2338} +{"PlaylistId":1,"TrackId":2339} +{"PlaylistId":1,"TrackId":2340} +{"PlaylistId":1,"TrackId":2341} +{"PlaylistId":1,"TrackId":2342} +{"PlaylistId":1,"TrackId":2343} +{"PlaylistId":1,"TrackId":2358} +{"PlaylistId":1,"TrackId":2359} +{"PlaylistId":1,"TrackId":2360} +{"PlaylistId":1,"TrackId":2361} +{"PlaylistId":1,"TrackId":2362} +{"PlaylistId":1,"TrackId":2363} +{"PlaylistId":1,"TrackId":2364} +{"PlaylistId":1,"TrackId":2365} +{"PlaylistId":1,"TrackId":2366} +{"PlaylistId":1,"TrackId":2367} +{"PlaylistId":1,"TrackId":2368} +{"PlaylistId":1,"TrackId":2369} +{"PlaylistId":1,"TrackId":2370} +{"PlaylistId":1,"TrackId":2371} +{"PlaylistId":1,"TrackId":2372} +{"PlaylistId":1,"TrackId":2373} +{"PlaylistId":1,"TrackId":2374} +{"PlaylistId":1,"TrackId":2472} +{"PlaylistId":1,"TrackId":2473} +{"PlaylistId":1,"TrackId":2474} +{"PlaylistId":1,"TrackId":2475} +{"PlaylistId":1,"TrackId":2476} +{"PlaylistId":1,"TrackId":2477} +{"PlaylistId":1,"TrackId":2478} +{"PlaylistId":1,"TrackId":2479} +{"PlaylistId":1,"TrackId":2480} +{"PlaylistId":1,"TrackId":2481} +{"PlaylistId":1,"TrackId":2482} +{"PlaylistId":1,"TrackId":2483} +{"PlaylistId":1,"TrackId":2484} +{"PlaylistId":1,"TrackId":2485} +{"PlaylistId":1,"TrackId":2486} +{"PlaylistId":1,"TrackId":2487} +{"PlaylistId":1,"TrackId":2488} +{"PlaylistId":1,"TrackId":2489} +{"PlaylistId":1,"TrackId":2490} +{"PlaylistId":1,"TrackId":2491} +{"PlaylistId":1,"TrackId":2492} +{"PlaylistId":1,"TrackId":2493} +{"PlaylistId":1,"TrackId":2494} +{"PlaylistId":1,"TrackId":2495} +{"PlaylistId":1,"TrackId":2496} +{"PlaylistId":1,"TrackId":2497} +{"PlaylistId":1,"TrackId":2498} +{"PlaylistId":1,"TrackId":2499} +{"PlaylistId":1,"TrackId":2500} +{"PlaylistId":1,"TrackId":2501} +{"PlaylistId":1,"TrackId":2502} +{"PlaylistId":1,"TrackId":2503} +{"PlaylistId":1,"TrackId":2504} +{"PlaylistId":1,"TrackId":2505} +{"PlaylistId":1,"TrackId":2705} +{"PlaylistId":1,"TrackId":2706} +{"PlaylistId":1,"TrackId":2707} +{"PlaylistId":1,"TrackId":2708} +{"PlaylistId":1,"TrackId":2709} +{"PlaylistId":1,"TrackId":2710} +{"PlaylistId":1,"TrackId":2711} +{"PlaylistId":1,"TrackId":2712} +{"PlaylistId":1,"TrackId":2713} +{"PlaylistId":1,"TrackId":2714} +{"PlaylistId":1,"TrackId":2715} +{"PlaylistId":1,"TrackId":2716} +{"PlaylistId":1,"TrackId":2717} +{"PlaylistId":1,"TrackId":2718} +{"PlaylistId":1,"TrackId":2719} +{"PlaylistId":1,"TrackId":2720} +{"PlaylistId":1,"TrackId":2721} +{"PlaylistId":1,"TrackId":2722} +{"PlaylistId":1,"TrackId":2723} +{"PlaylistId":1,"TrackId":2724} +{"PlaylistId":1,"TrackId":2725} +{"PlaylistId":1,"TrackId":2726} +{"PlaylistId":1,"TrackId":2727} +{"PlaylistId":1,"TrackId":2728} +{"PlaylistId":1,"TrackId":2729} +{"PlaylistId":1,"TrackId":2730} +{"PlaylistId":1,"TrackId":2781} +{"PlaylistId":1,"TrackId":2782} +{"PlaylistId":1,"TrackId":2783} +{"PlaylistId":1,"TrackId":2784} +{"PlaylistId":1,"TrackId":2785} +{"PlaylistId":1,"TrackId":2786} +{"PlaylistId":1,"TrackId":2787} +{"PlaylistId":1,"TrackId":2788} +{"PlaylistId":1,"TrackId":2789} +{"PlaylistId":1,"TrackId":2790} +{"PlaylistId":1,"TrackId":2791} +{"PlaylistId":1,"TrackId":2792} +{"PlaylistId":1,"TrackId":2793} +{"PlaylistId":1,"TrackId":2794} +{"PlaylistId":1,"TrackId":2795} +{"PlaylistId":1,"TrackId":2796} +{"PlaylistId":1,"TrackId":2797} +{"PlaylistId":1,"TrackId":2798} +{"PlaylistId":1,"TrackId":2799} +{"PlaylistId":1,"TrackId":2800} +{"PlaylistId":1,"TrackId":2801} +{"PlaylistId":1,"TrackId":2802} +{"PlaylistId":1,"TrackId":2803} +{"PlaylistId":1,"TrackId":2804} +{"PlaylistId":1,"TrackId":2805} +{"PlaylistId":1,"TrackId":2806} +{"PlaylistId":1,"TrackId":2807} +{"PlaylistId":1,"TrackId":2808} +{"PlaylistId":1,"TrackId":2809} +{"PlaylistId":1,"TrackId":2810} +{"PlaylistId":1,"TrackId":2811} +{"PlaylistId":1,"TrackId":2812} +{"PlaylistId":1,"TrackId":2813} +{"PlaylistId":1,"TrackId":2814} +{"PlaylistId":1,"TrackId":2815} +{"PlaylistId":1,"TrackId":2816} +{"PlaylistId":1,"TrackId":2817} +{"PlaylistId":1,"TrackId":2818} +{"PlaylistId":1,"TrackId":2572} +{"PlaylistId":1,"TrackId":2573} +{"PlaylistId":1,"TrackId":2574} +{"PlaylistId":1,"TrackId":2575} +{"PlaylistId":1,"TrackId":2576} +{"PlaylistId":1,"TrackId":2577} +{"PlaylistId":1,"TrackId":2578} +{"PlaylistId":1,"TrackId":2579} +{"PlaylistId":1,"TrackId":2580} +{"PlaylistId":1,"TrackId":2581} +{"PlaylistId":1,"TrackId":2582} +{"PlaylistId":1,"TrackId":2583} +{"PlaylistId":1,"TrackId":2584} +{"PlaylistId":1,"TrackId":2585} +{"PlaylistId":1,"TrackId":2586} +{"PlaylistId":1,"TrackId":2587} +{"PlaylistId":1,"TrackId":2588} +{"PlaylistId":1,"TrackId":2589} +{"PlaylistId":1,"TrackId":2590} +{"PlaylistId":1,"TrackId":194} +{"PlaylistId":1,"TrackId":195} +{"PlaylistId":1,"TrackId":196} +{"PlaylistId":1,"TrackId":197} +{"PlaylistId":1,"TrackId":198} +{"PlaylistId":1,"TrackId":199} +{"PlaylistId":1,"TrackId":200} +{"PlaylistId":1,"TrackId":201} +{"PlaylistId":1,"TrackId":202} +{"PlaylistId":1,"TrackId":203} +{"PlaylistId":1,"TrackId":204} +{"PlaylistId":1,"TrackId":891} +{"PlaylistId":1,"TrackId":892} +{"PlaylistId":1,"TrackId":893} +{"PlaylistId":1,"TrackId":894} +{"PlaylistId":1,"TrackId":895} +{"PlaylistId":1,"TrackId":896} +{"PlaylistId":1,"TrackId":897} +{"PlaylistId":1,"TrackId":898} +{"PlaylistId":1,"TrackId":899} +{"PlaylistId":1,"TrackId":900} +{"PlaylistId":1,"TrackId":901} +{"PlaylistId":1,"TrackId":902} +{"PlaylistId":1,"TrackId":903} +{"PlaylistId":1,"TrackId":904} +{"PlaylistId":1,"TrackId":905} +{"PlaylistId":1,"TrackId":906} +{"PlaylistId":1,"TrackId":907} +{"PlaylistId":1,"TrackId":908} +{"PlaylistId":1,"TrackId":909} +{"PlaylistId":1,"TrackId":910} +{"PlaylistId":1,"TrackId":911} +{"PlaylistId":1,"TrackId":912} +{"PlaylistId":1,"TrackId":913} +{"PlaylistId":1,"TrackId":914} +{"PlaylistId":1,"TrackId":915} +{"PlaylistId":1,"TrackId":916} +{"PlaylistId":1,"TrackId":917} +{"PlaylistId":1,"TrackId":918} +{"PlaylistId":1,"TrackId":919} +{"PlaylistId":1,"TrackId":920} +{"PlaylistId":1,"TrackId":921} +{"PlaylistId":1,"TrackId":922} +{"PlaylistId":1,"TrackId":1268} +{"PlaylistId":1,"TrackId":1269} +{"PlaylistId":1,"TrackId":1270} +{"PlaylistId":1,"TrackId":1271} +{"PlaylistId":1,"TrackId":1272} +{"PlaylistId":1,"TrackId":1273} +{"PlaylistId":1,"TrackId":1274} +{"PlaylistId":1,"TrackId":1275} +{"PlaylistId":1,"TrackId":1276} +{"PlaylistId":1,"TrackId":2532} +{"PlaylistId":1,"TrackId":2533} +{"PlaylistId":1,"TrackId":2534} +{"PlaylistId":1,"TrackId":2535} +{"PlaylistId":1,"TrackId":2536} +{"PlaylistId":1,"TrackId":2537} +{"PlaylistId":1,"TrackId":2538} +{"PlaylistId":1,"TrackId":2539} +{"PlaylistId":1,"TrackId":2540} +{"PlaylistId":1,"TrackId":2541} +{"PlaylistId":1,"TrackId":646} +{"PlaylistId":1,"TrackId":647} +{"PlaylistId":1,"TrackId":648} +{"PlaylistId":1,"TrackId":649} +{"PlaylistId":1,"TrackId":651} +{"PlaylistId":1,"TrackId":653} +{"PlaylistId":1,"TrackId":655} +{"PlaylistId":1,"TrackId":658} +{"PlaylistId":1,"TrackId":652} +{"PlaylistId":1,"TrackId":656} +{"PlaylistId":1,"TrackId":657} +{"PlaylistId":1,"TrackId":650} +{"PlaylistId":1,"TrackId":659} +{"PlaylistId":1,"TrackId":654} +{"PlaylistId":1,"TrackId":660} +{"PlaylistId":1,"TrackId":3427} +{"PlaylistId":1,"TrackId":3411} +{"PlaylistId":1,"TrackId":3412} +{"PlaylistId":1,"TrackId":3419} +{"PlaylistId":1,"TrackId":3482} +{"PlaylistId":1,"TrackId":3438} +{"PlaylistId":1,"TrackId":3485} +{"PlaylistId":1,"TrackId":3403} +{"PlaylistId":1,"TrackId":3406} +{"PlaylistId":1,"TrackId":3442} +{"PlaylistId":1,"TrackId":3421} +{"PlaylistId":1,"TrackId":3436} +{"PlaylistId":1,"TrackId":3450} +{"PlaylistId":1,"TrackId":3454} +{"PlaylistId":1,"TrackId":3491} +{"PlaylistId":1,"TrackId":3413} +{"PlaylistId":1,"TrackId":3426} +{"PlaylistId":1,"TrackId":3416} +{"PlaylistId":1,"TrackId":3501} +{"PlaylistId":1,"TrackId":3487} +{"PlaylistId":1,"TrackId":3417} +{"PlaylistId":1,"TrackId":3432} +{"PlaylistId":1,"TrackId":3443} +{"PlaylistId":1,"TrackId":3447} +{"PlaylistId":1,"TrackId":3452} +{"PlaylistId":1,"TrackId":3441} +{"PlaylistId":1,"TrackId":3434} +{"PlaylistId":1,"TrackId":3500} +{"PlaylistId":1,"TrackId":3449} +{"PlaylistId":1,"TrackId":3405} +{"PlaylistId":1,"TrackId":3488} +{"PlaylistId":1,"TrackId":3423} +{"PlaylistId":1,"TrackId":3499} +{"PlaylistId":1,"TrackId":3445} +{"PlaylistId":1,"TrackId":3440} +{"PlaylistId":1,"TrackId":3453} +{"PlaylistId":1,"TrackId":3497} +{"PlaylistId":1,"TrackId":3494} +{"PlaylistId":1,"TrackId":3439} +{"PlaylistId":1,"TrackId":3422} +{"PlaylistId":1,"TrackId":3407} +{"PlaylistId":1,"TrackId":3495} +{"PlaylistId":1,"TrackId":3435} +{"PlaylistId":1,"TrackId":3490} +{"PlaylistId":1,"TrackId":3489} +{"PlaylistId":1,"TrackId":3448} +{"PlaylistId":1,"TrackId":3492} +{"PlaylistId":1,"TrackId":3425} +{"PlaylistId":1,"TrackId":3483} +{"PlaylistId":1,"TrackId":3420} +{"PlaylistId":1,"TrackId":3424} +{"PlaylistId":1,"TrackId":3493} +{"PlaylistId":1,"TrackId":3437} +{"PlaylistId":1,"TrackId":3498} +{"PlaylistId":1,"TrackId":3446} +{"PlaylistId":1,"TrackId":3444} +{"PlaylistId":1,"TrackId":3496} +{"PlaylistId":1,"TrackId":3502} +{"PlaylistId":1,"TrackId":3359} +{"PlaylistId":1,"TrackId":3433} +{"PlaylistId":1,"TrackId":3415} +{"PlaylistId":1,"TrackId":3479} +{"PlaylistId":1,"TrackId":3481} +{"PlaylistId":1,"TrackId":3404} +{"PlaylistId":1,"TrackId":3486} +{"PlaylistId":1,"TrackId":3414} +{"PlaylistId":1,"TrackId":3410} +{"PlaylistId":1,"TrackId":3431} +{"PlaylistId":1,"TrackId":3418} +{"PlaylistId":1,"TrackId":3430} +{"PlaylistId":1,"TrackId":3408} +{"PlaylistId":1,"TrackId":3480} +{"PlaylistId":1,"TrackId":3409} +{"PlaylistId":1,"TrackId":3484} +{"PlaylistId":1,"TrackId":1033} +{"PlaylistId":1,"TrackId":1034} +{"PlaylistId":1,"TrackId":1035} +{"PlaylistId":1,"TrackId":1036} +{"PlaylistId":1,"TrackId":1037} +{"PlaylistId":1,"TrackId":1038} +{"PlaylistId":1,"TrackId":1039} +{"PlaylistId":1,"TrackId":1040} +{"PlaylistId":1,"TrackId":1041} +{"PlaylistId":1,"TrackId":1042} +{"PlaylistId":1,"TrackId":1043} +{"PlaylistId":1,"TrackId":1044} +{"PlaylistId":1,"TrackId":1045} +{"PlaylistId":1,"TrackId":1046} +{"PlaylistId":1,"TrackId":1047} +{"PlaylistId":1,"TrackId":1048} +{"PlaylistId":1,"TrackId":1049} +{"PlaylistId":1,"TrackId":1050} +{"PlaylistId":1,"TrackId":1051} +{"PlaylistId":1,"TrackId":1052} +{"PlaylistId":1,"TrackId":1053} +{"PlaylistId":1,"TrackId":1054} +{"PlaylistId":1,"TrackId":1055} +{"PlaylistId":1,"TrackId":1056} +{"PlaylistId":1,"TrackId":3324} +{"PlaylistId":1,"TrackId":3331} +{"PlaylistId":1,"TrackId":3332} +{"PlaylistId":1,"TrackId":3322} +{"PlaylistId":1,"TrackId":3329} +{"PlaylistId":1,"TrackId":1455} +{"PlaylistId":1,"TrackId":1456} +{"PlaylistId":1,"TrackId":1457} +{"PlaylistId":1,"TrackId":1458} +{"PlaylistId":1,"TrackId":1459} +{"PlaylistId":1,"TrackId":1460} +{"PlaylistId":1,"TrackId":1461} +{"PlaylistId":1,"TrackId":1462} +{"PlaylistId":1,"TrackId":1463} +{"PlaylistId":1,"TrackId":1464} +{"PlaylistId":1,"TrackId":1465} +{"PlaylistId":1,"TrackId":3352} +{"PlaylistId":1,"TrackId":3358} +{"PlaylistId":1,"TrackId":3326} +{"PlaylistId":1,"TrackId":3327} +{"PlaylistId":1,"TrackId":3330} +{"PlaylistId":1,"TrackId":3321} +{"PlaylistId":1,"TrackId":3319} +{"PlaylistId":1,"TrackId":3328} +{"PlaylistId":1,"TrackId":3325} +{"PlaylistId":1,"TrackId":3323} +{"PlaylistId":1,"TrackId":3334} +{"PlaylistId":1,"TrackId":3333} +{"PlaylistId":1,"TrackId":3335} +{"PlaylistId":1,"TrackId":3320} +{"PlaylistId":1,"TrackId":1245} +{"PlaylistId":1,"TrackId":1246} +{"PlaylistId":1,"TrackId":1247} +{"PlaylistId":1,"TrackId":1248} +{"PlaylistId":1,"TrackId":1249} +{"PlaylistId":1,"TrackId":1250} +{"PlaylistId":1,"TrackId":1251} +{"PlaylistId":1,"TrackId":1252} +{"PlaylistId":1,"TrackId":1253} +{"PlaylistId":1,"TrackId":1254} +{"PlaylistId":1,"TrackId":1255} +{"PlaylistId":1,"TrackId":1277} +{"PlaylistId":1,"TrackId":1278} +{"PlaylistId":1,"TrackId":1279} +{"PlaylistId":1,"TrackId":1280} +{"PlaylistId":1,"TrackId":1281} +{"PlaylistId":1,"TrackId":1282} +{"PlaylistId":1,"TrackId":1283} +{"PlaylistId":1,"TrackId":1284} +{"PlaylistId":1,"TrackId":1285} +{"PlaylistId":1,"TrackId":1286} +{"PlaylistId":1,"TrackId":1287} +{"PlaylistId":1,"TrackId":1288} +{"PlaylistId":1,"TrackId":1300} +{"PlaylistId":1,"TrackId":1301} +{"PlaylistId":1,"TrackId":1302} +{"PlaylistId":1,"TrackId":1303} +{"PlaylistId":1,"TrackId":1304} +{"PlaylistId":1,"TrackId":3301} +{"PlaylistId":1,"TrackId":3300} +{"PlaylistId":1,"TrackId":3302} +{"PlaylistId":1,"TrackId":3303} +{"PlaylistId":1,"TrackId":3304} +{"PlaylistId":1,"TrackId":3305} +{"PlaylistId":1,"TrackId":3306} +{"PlaylistId":1,"TrackId":3307} +{"PlaylistId":1,"TrackId":3308} +{"PlaylistId":1,"TrackId":3309} +{"PlaylistId":1,"TrackId":3310} +{"PlaylistId":1,"TrackId":3311} +{"PlaylistId":1,"TrackId":3312} +{"PlaylistId":1,"TrackId":3313} +{"PlaylistId":1,"TrackId":3314} +{"PlaylistId":1,"TrackId":3315} +{"PlaylistId":1,"TrackId":3316} +{"PlaylistId":1,"TrackId":3317} +{"PlaylistId":1,"TrackId":3318} +{"PlaylistId":1,"TrackId":2238} +{"PlaylistId":1,"TrackId":2239} +{"PlaylistId":1,"TrackId":2240} +{"PlaylistId":1,"TrackId":2241} +{"PlaylistId":1,"TrackId":2242} +{"PlaylistId":1,"TrackId":2243} +{"PlaylistId":1,"TrackId":2244} +{"PlaylistId":1,"TrackId":2245} +{"PlaylistId":1,"TrackId":2246} +{"PlaylistId":1,"TrackId":2247} +{"PlaylistId":1,"TrackId":2248} +{"PlaylistId":1,"TrackId":2249} +{"PlaylistId":1,"TrackId":2250} +{"PlaylistId":1,"TrackId":2251} +{"PlaylistId":1,"TrackId":2252} +{"PlaylistId":1,"TrackId":2253} +{"PlaylistId":1,"TrackId":3357} +{"PlaylistId":1,"TrackId":3350} +{"PlaylistId":1,"TrackId":3349} +{"PlaylistId":1,"TrackId":63} +{"PlaylistId":1,"TrackId":64} +{"PlaylistId":1,"TrackId":65} +{"PlaylistId":1,"TrackId":66} +{"PlaylistId":1,"TrackId":67} +{"PlaylistId":1,"TrackId":68} +{"PlaylistId":1,"TrackId":69} +{"PlaylistId":1,"TrackId":70} +{"PlaylistId":1,"TrackId":71} +{"PlaylistId":1,"TrackId":72} +{"PlaylistId":1,"TrackId":73} +{"PlaylistId":1,"TrackId":74} +{"PlaylistId":1,"TrackId":75} +{"PlaylistId":1,"TrackId":76} +{"PlaylistId":1,"TrackId":123} +{"PlaylistId":1,"TrackId":124} +{"PlaylistId":1,"TrackId":125} +{"PlaylistId":1,"TrackId":126} +{"PlaylistId":1,"TrackId":127} +{"PlaylistId":1,"TrackId":128} +{"PlaylistId":1,"TrackId":129} +{"PlaylistId":1,"TrackId":130} +{"PlaylistId":1,"TrackId":842} +{"PlaylistId":1,"TrackId":843} +{"PlaylistId":1,"TrackId":844} +{"PlaylistId":1,"TrackId":845} +{"PlaylistId":1,"TrackId":846} +{"PlaylistId":1,"TrackId":847} +{"PlaylistId":1,"TrackId":848} +{"PlaylistId":1,"TrackId":849} +{"PlaylistId":1,"TrackId":850} +{"PlaylistId":1,"TrackId":624} +{"PlaylistId":1,"TrackId":625} +{"PlaylistId":1,"TrackId":626} +{"PlaylistId":1,"TrackId":627} +{"PlaylistId":1,"TrackId":628} +{"PlaylistId":1,"TrackId":629} +{"PlaylistId":1,"TrackId":630} +{"PlaylistId":1,"TrackId":631} +{"PlaylistId":1,"TrackId":632} +{"PlaylistId":1,"TrackId":633} +{"PlaylistId":1,"TrackId":634} +{"PlaylistId":1,"TrackId":635} +{"PlaylistId":1,"TrackId":636} +{"PlaylistId":1,"TrackId":637} +{"PlaylistId":1,"TrackId":638} +{"PlaylistId":1,"TrackId":639} +{"PlaylistId":1,"TrackId":640} +{"PlaylistId":1,"TrackId":641} +{"PlaylistId":1,"TrackId":642} +{"PlaylistId":1,"TrackId":643} +{"PlaylistId":1,"TrackId":644} +{"PlaylistId":1,"TrackId":645} +{"PlaylistId":1,"TrackId":1102} +{"PlaylistId":1,"TrackId":1103} +{"PlaylistId":1,"TrackId":1104} +{"PlaylistId":1,"TrackId":1188} +{"PlaylistId":1,"TrackId":1189} +{"PlaylistId":1,"TrackId":1190} +{"PlaylistId":1,"TrackId":1191} +{"PlaylistId":1,"TrackId":1192} +{"PlaylistId":1,"TrackId":1193} +{"PlaylistId":1,"TrackId":1194} +{"PlaylistId":1,"TrackId":1195} +{"PlaylistId":1,"TrackId":1196} +{"PlaylistId":1,"TrackId":1197} +{"PlaylistId":1,"TrackId":1198} +{"PlaylistId":1,"TrackId":1199} +{"PlaylistId":1,"TrackId":1200} +{"PlaylistId":1,"TrackId":597} +{"PlaylistId":1,"TrackId":598} +{"PlaylistId":1,"TrackId":599} +{"PlaylistId":1,"TrackId":600} +{"PlaylistId":1,"TrackId":601} +{"PlaylistId":1,"TrackId":602} +{"PlaylistId":1,"TrackId":603} +{"PlaylistId":1,"TrackId":604} +{"PlaylistId":1,"TrackId":605} +{"PlaylistId":1,"TrackId":606} +{"PlaylistId":1,"TrackId":607} +{"PlaylistId":1,"TrackId":608} +{"PlaylistId":1,"TrackId":609} +{"PlaylistId":1,"TrackId":610} +{"PlaylistId":1,"TrackId":611} +{"PlaylistId":1,"TrackId":612} +{"PlaylistId":1,"TrackId":613} +{"PlaylistId":1,"TrackId":614} +{"PlaylistId":1,"TrackId":615} +{"PlaylistId":1,"TrackId":616} +{"PlaylistId":1,"TrackId":617} +{"PlaylistId":1,"TrackId":618} +{"PlaylistId":1,"TrackId":619} +{"PlaylistId":1,"TrackId":1902} +{"PlaylistId":1,"TrackId":1903} +{"PlaylistId":1,"TrackId":1904} +{"PlaylistId":1,"TrackId":1905} +{"PlaylistId":1,"TrackId":1906} +{"PlaylistId":1,"TrackId":1907} +{"PlaylistId":1,"TrackId":1908} +{"PlaylistId":1,"TrackId":1909} +{"PlaylistId":1,"TrackId":1910} +{"PlaylistId":1,"TrackId":1911} +{"PlaylistId":1,"TrackId":1912} +{"PlaylistId":1,"TrackId":1913} +{"PlaylistId":1,"TrackId":1914} +{"PlaylistId":1,"TrackId":1915} +{"PlaylistId":1,"TrackId":456} +{"PlaylistId":1,"TrackId":457} +{"PlaylistId":1,"TrackId":458} +{"PlaylistId":1,"TrackId":459} +{"PlaylistId":1,"TrackId":460} +{"PlaylistId":1,"TrackId":461} +{"PlaylistId":1,"TrackId":462} +{"PlaylistId":1,"TrackId":463} +{"PlaylistId":1,"TrackId":464} +{"PlaylistId":1,"TrackId":465} +{"PlaylistId":1,"TrackId":466} +{"PlaylistId":1,"TrackId":467} +{"PlaylistId":1,"TrackId":2523} +{"PlaylistId":1,"TrackId":2524} +{"PlaylistId":1,"TrackId":2525} +{"PlaylistId":1,"TrackId":2526} +{"PlaylistId":1,"TrackId":2527} +{"PlaylistId":1,"TrackId":2528} +{"PlaylistId":1,"TrackId":2529} +{"PlaylistId":1,"TrackId":2530} +{"PlaylistId":1,"TrackId":2531} +{"PlaylistId":1,"TrackId":379} +{"PlaylistId":1,"TrackId":391} +{"PlaylistId":1,"TrackId":376} +{"PlaylistId":1,"TrackId":397} +{"PlaylistId":1,"TrackId":382} +{"PlaylistId":1,"TrackId":389} +{"PlaylistId":1,"TrackId":404} +{"PlaylistId":1,"TrackId":406} +{"PlaylistId":1,"TrackId":380} +{"PlaylistId":1,"TrackId":394} +{"PlaylistId":1,"TrackId":515} +{"PlaylistId":1,"TrackId":516} +{"PlaylistId":1,"TrackId":517} +{"PlaylistId":1,"TrackId":518} +{"PlaylistId":1,"TrackId":519} +{"PlaylistId":1,"TrackId":520} +{"PlaylistId":1,"TrackId":521} +{"PlaylistId":1,"TrackId":522} +{"PlaylistId":1,"TrackId":523} +{"PlaylistId":1,"TrackId":524} +{"PlaylistId":1,"TrackId":525} +{"PlaylistId":1,"TrackId":526} +{"PlaylistId":1,"TrackId":527} +{"PlaylistId":1,"TrackId":528} +{"PlaylistId":1,"TrackId":205} +{"PlaylistId":1,"TrackId":206} +{"PlaylistId":1,"TrackId":207} +{"PlaylistId":1,"TrackId":208} +{"PlaylistId":1,"TrackId":209} +{"PlaylistId":1,"TrackId":210} +{"PlaylistId":1,"TrackId":211} +{"PlaylistId":1,"TrackId":212} +{"PlaylistId":1,"TrackId":213} +{"PlaylistId":1,"TrackId":214} +{"PlaylistId":1,"TrackId":215} +{"PlaylistId":1,"TrackId":216} +{"PlaylistId":1,"TrackId":217} +{"PlaylistId":1,"TrackId":218} +{"PlaylistId":1,"TrackId":219} +{"PlaylistId":1,"TrackId":220} +{"PlaylistId":1,"TrackId":221} +{"PlaylistId":1,"TrackId":222} +{"PlaylistId":1,"TrackId":223} +{"PlaylistId":1,"TrackId":224} +{"PlaylistId":1,"TrackId":225} +{"PlaylistId":1,"TrackId":715} +{"PlaylistId":1,"TrackId":716} +{"PlaylistId":1,"TrackId":717} +{"PlaylistId":1,"TrackId":718} +{"PlaylistId":1,"TrackId":719} +{"PlaylistId":1,"TrackId":720} +{"PlaylistId":1,"TrackId":721} +{"PlaylistId":1,"TrackId":722} +{"PlaylistId":1,"TrackId":723} +{"PlaylistId":1,"TrackId":724} +{"PlaylistId":1,"TrackId":725} +{"PlaylistId":1,"TrackId":726} +{"PlaylistId":1,"TrackId":727} +{"PlaylistId":1,"TrackId":728} +{"PlaylistId":1,"TrackId":729} +{"PlaylistId":1,"TrackId":730} +{"PlaylistId":1,"TrackId":731} +{"PlaylistId":1,"TrackId":732} +{"PlaylistId":1,"TrackId":733} +{"PlaylistId":1,"TrackId":734} +{"PlaylistId":1,"TrackId":735} +{"PlaylistId":1,"TrackId":736} +{"PlaylistId":1,"TrackId":737} +{"PlaylistId":1,"TrackId":738} +{"PlaylistId":1,"TrackId":739} +{"PlaylistId":1,"TrackId":740} +{"PlaylistId":1,"TrackId":741} +{"PlaylistId":1,"TrackId":742} +{"PlaylistId":1,"TrackId":743} +{"PlaylistId":1,"TrackId":744} +{"PlaylistId":1,"TrackId":226} +{"PlaylistId":1,"TrackId":227} +{"PlaylistId":1,"TrackId":228} +{"PlaylistId":1,"TrackId":229} +{"PlaylistId":1,"TrackId":230} +{"PlaylistId":1,"TrackId":231} +{"PlaylistId":1,"TrackId":232} +{"PlaylistId":1,"TrackId":233} +{"PlaylistId":1,"TrackId":234} +{"PlaylistId":1,"TrackId":235} +{"PlaylistId":1,"TrackId":236} +{"PlaylistId":1,"TrackId":237} +{"PlaylistId":1,"TrackId":238} +{"PlaylistId":1,"TrackId":239} +{"PlaylistId":1,"TrackId":240} +{"PlaylistId":1,"TrackId":241} +{"PlaylistId":1,"TrackId":242} +{"PlaylistId":1,"TrackId":243} +{"PlaylistId":1,"TrackId":244} +{"PlaylistId":1,"TrackId":245} +{"PlaylistId":1,"TrackId":246} +{"PlaylistId":1,"TrackId":247} +{"PlaylistId":1,"TrackId":248} +{"PlaylistId":1,"TrackId":249} +{"PlaylistId":1,"TrackId":250} +{"PlaylistId":1,"TrackId":251} +{"PlaylistId":1,"TrackId":252} +{"PlaylistId":1,"TrackId":253} +{"PlaylistId":1,"TrackId":254} +{"PlaylistId":1,"TrackId":255} +{"PlaylistId":1,"TrackId":256} +{"PlaylistId":1,"TrackId":257} +{"PlaylistId":1,"TrackId":258} +{"PlaylistId":1,"TrackId":259} +{"PlaylistId":1,"TrackId":260} +{"PlaylistId":1,"TrackId":261} +{"PlaylistId":1,"TrackId":262} +{"PlaylistId":1,"TrackId":263} +{"PlaylistId":1,"TrackId":264} +{"PlaylistId":1,"TrackId":265} +{"PlaylistId":1,"TrackId":266} +{"PlaylistId":1,"TrackId":267} +{"PlaylistId":1,"TrackId":268} +{"PlaylistId":1,"TrackId":269} +{"PlaylistId":1,"TrackId":270} +{"PlaylistId":1,"TrackId":271} +{"PlaylistId":1,"TrackId":272} +{"PlaylistId":1,"TrackId":273} +{"PlaylistId":1,"TrackId":274} +{"PlaylistId":1,"TrackId":275} +{"PlaylistId":1,"TrackId":276} +{"PlaylistId":1,"TrackId":277} +{"PlaylistId":1,"TrackId":278} +{"PlaylistId":1,"TrackId":279} +{"PlaylistId":1,"TrackId":280} +{"PlaylistId":1,"TrackId":281} +{"PlaylistId":1,"TrackId":313} +{"PlaylistId":1,"TrackId":314} +{"PlaylistId":1,"TrackId":315} +{"PlaylistId":1,"TrackId":316} +{"PlaylistId":1,"TrackId":317} +{"PlaylistId":1,"TrackId":318} +{"PlaylistId":1,"TrackId":319} +{"PlaylistId":1,"TrackId":320} +{"PlaylistId":1,"TrackId":321} +{"PlaylistId":1,"TrackId":322} +{"PlaylistId":1,"TrackId":399} +{"PlaylistId":1,"TrackId":851} +{"PlaylistId":1,"TrackId":852} +{"PlaylistId":1,"TrackId":853} +{"PlaylistId":1,"TrackId":854} +{"PlaylistId":1,"TrackId":855} +{"PlaylistId":1,"TrackId":856} +{"PlaylistId":1,"TrackId":857} +{"PlaylistId":1,"TrackId":858} +{"PlaylistId":1,"TrackId":859} +{"PlaylistId":1,"TrackId":860} +{"PlaylistId":1,"TrackId":861} +{"PlaylistId":1,"TrackId":862} +{"PlaylistId":1,"TrackId":863} +{"PlaylistId":1,"TrackId":864} +{"PlaylistId":1,"TrackId":865} +{"PlaylistId":1,"TrackId":866} +{"PlaylistId":1,"TrackId":867} +{"PlaylistId":1,"TrackId":868} +{"PlaylistId":1,"TrackId":869} +{"PlaylistId":1,"TrackId":870} +{"PlaylistId":1,"TrackId":871} +{"PlaylistId":1,"TrackId":872} +{"PlaylistId":1,"TrackId":873} +{"PlaylistId":1,"TrackId":874} +{"PlaylistId":1,"TrackId":875} +{"PlaylistId":1,"TrackId":876} +{"PlaylistId":1,"TrackId":583} +{"PlaylistId":1,"TrackId":584} +{"PlaylistId":1,"TrackId":585} +{"PlaylistId":1,"TrackId":586} +{"PlaylistId":1,"TrackId":587} +{"PlaylistId":1,"TrackId":588} +{"PlaylistId":1,"TrackId":589} +{"PlaylistId":1,"TrackId":590} +{"PlaylistId":1,"TrackId":591} +{"PlaylistId":1,"TrackId":592} +{"PlaylistId":1,"TrackId":593} +{"PlaylistId":1,"TrackId":594} +{"PlaylistId":1,"TrackId":595} +{"PlaylistId":1,"TrackId":596} +{"PlaylistId":1,"TrackId":388} +{"PlaylistId":1,"TrackId":402} +{"PlaylistId":1,"TrackId":407} +{"PlaylistId":1,"TrackId":396} +{"PlaylistId":1,"TrackId":877} +{"PlaylistId":1,"TrackId":878} +{"PlaylistId":1,"TrackId":879} +{"PlaylistId":1,"TrackId":880} +{"PlaylistId":1,"TrackId":881} +{"PlaylistId":1,"TrackId":882} +{"PlaylistId":1,"TrackId":883} +{"PlaylistId":1,"TrackId":884} +{"PlaylistId":1,"TrackId":885} +{"PlaylistId":1,"TrackId":886} +{"PlaylistId":1,"TrackId":887} +{"PlaylistId":1,"TrackId":888} +{"PlaylistId":1,"TrackId":889} +{"PlaylistId":1,"TrackId":890} +{"PlaylistId":1,"TrackId":975} +{"PlaylistId":1,"TrackId":976} +{"PlaylistId":1,"TrackId":977} +{"PlaylistId":1,"TrackId":978} +{"PlaylistId":1,"TrackId":979} +{"PlaylistId":1,"TrackId":980} +{"PlaylistId":1,"TrackId":981} +{"PlaylistId":1,"TrackId":982} +{"PlaylistId":1,"TrackId":983} +{"PlaylistId":1,"TrackId":984} +{"PlaylistId":1,"TrackId":985} +{"PlaylistId":1,"TrackId":986} +{"PlaylistId":1,"TrackId":987} +{"PlaylistId":1,"TrackId":988} +{"PlaylistId":1,"TrackId":390} +{"PlaylistId":1,"TrackId":1057} +{"PlaylistId":1,"TrackId":1058} +{"PlaylistId":1,"TrackId":1059} +{"PlaylistId":1,"TrackId":1060} +{"PlaylistId":1,"TrackId":1061} +{"PlaylistId":1,"TrackId":1062} +{"PlaylistId":1,"TrackId":1063} +{"PlaylistId":1,"TrackId":1064} +{"PlaylistId":1,"TrackId":1065} +{"PlaylistId":1,"TrackId":1066} +{"PlaylistId":1,"TrackId":1067} +{"PlaylistId":1,"TrackId":1068} +{"PlaylistId":1,"TrackId":1069} +{"PlaylistId":1,"TrackId":1070} +{"PlaylistId":1,"TrackId":1071} +{"PlaylistId":1,"TrackId":1072} +{"PlaylistId":1,"TrackId":377} +{"PlaylistId":1,"TrackId":395} +{"PlaylistId":1,"TrackId":1087} +{"PlaylistId":1,"TrackId":1088} +{"PlaylistId":1,"TrackId":1089} +{"PlaylistId":1,"TrackId":1090} +{"PlaylistId":1,"TrackId":1091} +{"PlaylistId":1,"TrackId":1092} +{"PlaylistId":1,"TrackId":1093} +{"PlaylistId":1,"TrackId":1094} +{"PlaylistId":1,"TrackId":1095} +{"PlaylistId":1,"TrackId":1096} +{"PlaylistId":1,"TrackId":1097} +{"PlaylistId":1,"TrackId":1098} +{"PlaylistId":1,"TrackId":1099} +{"PlaylistId":1,"TrackId":1100} +{"PlaylistId":1,"TrackId":1101} +{"PlaylistId":1,"TrackId":1105} +{"PlaylistId":1,"TrackId":1106} +{"PlaylistId":1,"TrackId":1107} +{"PlaylistId":1,"TrackId":1108} +{"PlaylistId":1,"TrackId":1109} +{"PlaylistId":1,"TrackId":1110} +{"PlaylistId":1,"TrackId":1111} +{"PlaylistId":1,"TrackId":1112} +{"PlaylistId":1,"TrackId":1113} +{"PlaylistId":1,"TrackId":1114} +{"PlaylistId":1,"TrackId":1115} +{"PlaylistId":1,"TrackId":1116} +{"PlaylistId":1,"TrackId":1117} +{"PlaylistId":1,"TrackId":1118} +{"PlaylistId":1,"TrackId":1119} +{"PlaylistId":1,"TrackId":1120} +{"PlaylistId":1,"TrackId":501} +{"PlaylistId":1,"TrackId":502} +{"PlaylistId":1,"TrackId":503} +{"PlaylistId":1,"TrackId":504} +{"PlaylistId":1,"TrackId":505} +{"PlaylistId":1,"TrackId":506} +{"PlaylistId":1,"TrackId":507} +{"PlaylistId":1,"TrackId":508} +{"PlaylistId":1,"TrackId":509} +{"PlaylistId":1,"TrackId":510} +{"PlaylistId":1,"TrackId":511} +{"PlaylistId":1,"TrackId":512} +{"PlaylistId":1,"TrackId":513} +{"PlaylistId":1,"TrackId":514} +{"PlaylistId":1,"TrackId":405} +{"PlaylistId":1,"TrackId":378} +{"PlaylistId":1,"TrackId":392} +{"PlaylistId":1,"TrackId":403} +{"PlaylistId":1,"TrackId":1506} +{"PlaylistId":1,"TrackId":1507} +{"PlaylistId":1,"TrackId":1508} +{"PlaylistId":1,"TrackId":1509} +{"PlaylistId":1,"TrackId":1510} +{"PlaylistId":1,"TrackId":1511} +{"PlaylistId":1,"TrackId":1512} +{"PlaylistId":1,"TrackId":1513} +{"PlaylistId":1,"TrackId":1514} +{"PlaylistId":1,"TrackId":1515} +{"PlaylistId":1,"TrackId":1516} +{"PlaylistId":1,"TrackId":1517} +{"PlaylistId":1,"TrackId":1518} +{"PlaylistId":1,"TrackId":1519} +{"PlaylistId":1,"TrackId":381} +{"PlaylistId":1,"TrackId":1520} +{"PlaylistId":1,"TrackId":1521} +{"PlaylistId":1,"TrackId":1522} +{"PlaylistId":1,"TrackId":1523} +{"PlaylistId":1,"TrackId":1524} +{"PlaylistId":1,"TrackId":1525} +{"PlaylistId":1,"TrackId":1526} +{"PlaylistId":1,"TrackId":1527} +{"PlaylistId":1,"TrackId":1528} +{"PlaylistId":1,"TrackId":1529} +{"PlaylistId":1,"TrackId":1530} +{"PlaylistId":1,"TrackId":1531} +{"PlaylistId":1,"TrackId":400} +{"PlaylistId":1,"TrackId":1686} +{"PlaylistId":1,"TrackId":1687} +{"PlaylistId":1,"TrackId":1688} +{"PlaylistId":1,"TrackId":1689} +{"PlaylistId":1,"TrackId":1690} +{"PlaylistId":1,"TrackId":1691} +{"PlaylistId":1,"TrackId":1692} +{"PlaylistId":1,"TrackId":1693} +{"PlaylistId":1,"TrackId":1694} +{"PlaylistId":1,"TrackId":1695} +{"PlaylistId":1,"TrackId":1696} +{"PlaylistId":1,"TrackId":1697} +{"PlaylistId":1,"TrackId":1698} +{"PlaylistId":1,"TrackId":1699} +{"PlaylistId":1,"TrackId":1700} +{"PlaylistId":1,"TrackId":1701} +{"PlaylistId":1,"TrackId":1671} +{"PlaylistId":1,"TrackId":1672} +{"PlaylistId":1,"TrackId":1673} +{"PlaylistId":1,"TrackId":1674} +{"PlaylistId":1,"TrackId":1675} +{"PlaylistId":1,"TrackId":1676} +{"PlaylistId":1,"TrackId":1677} +{"PlaylistId":1,"TrackId":1678} +{"PlaylistId":1,"TrackId":1679} +{"PlaylistId":1,"TrackId":1680} +{"PlaylistId":1,"TrackId":1681} +{"PlaylistId":1,"TrackId":1682} +{"PlaylistId":1,"TrackId":1683} +{"PlaylistId":1,"TrackId":1684} +{"PlaylistId":1,"TrackId":1685} +{"PlaylistId":1,"TrackId":3356} +{"PlaylistId":1,"TrackId":384} +{"PlaylistId":1,"TrackId":1717} +{"PlaylistId":1,"TrackId":1720} +{"PlaylistId":1,"TrackId":1722} +{"PlaylistId":1,"TrackId":1723} +{"PlaylistId":1,"TrackId":1726} +{"PlaylistId":1,"TrackId":1727} +{"PlaylistId":1,"TrackId":1730} +{"PlaylistId":1,"TrackId":1731} +{"PlaylistId":1,"TrackId":1733} +{"PlaylistId":1,"TrackId":1736} +{"PlaylistId":1,"TrackId":1737} +{"PlaylistId":1,"TrackId":1740} +{"PlaylistId":1,"TrackId":1742} +{"PlaylistId":1,"TrackId":1743} +{"PlaylistId":1,"TrackId":1718} +{"PlaylistId":1,"TrackId":1719} +{"PlaylistId":1,"TrackId":1721} +{"PlaylistId":1,"TrackId":1724} +{"PlaylistId":1,"TrackId":1725} +{"PlaylistId":1,"TrackId":1728} +{"PlaylistId":1,"TrackId":1729} +{"PlaylistId":1,"TrackId":1732} +{"PlaylistId":1,"TrackId":1734} +{"PlaylistId":1,"TrackId":1735} +{"PlaylistId":1,"TrackId":1738} +{"PlaylistId":1,"TrackId":1739} +{"PlaylistId":1,"TrackId":1741} +{"PlaylistId":1,"TrackId":1744} +{"PlaylistId":1,"TrackId":374} +{"PlaylistId":1,"TrackId":1755} +{"PlaylistId":1,"TrackId":1762} +{"PlaylistId":1,"TrackId":1763} +{"PlaylistId":1,"TrackId":1756} +{"PlaylistId":1,"TrackId":1764} +{"PlaylistId":1,"TrackId":1757} +{"PlaylistId":1,"TrackId":1758} +{"PlaylistId":1,"TrackId":1765} +{"PlaylistId":1,"TrackId":1766} +{"PlaylistId":1,"TrackId":1759} +{"PlaylistId":1,"TrackId":1760} +{"PlaylistId":1,"TrackId":1767} +{"PlaylistId":1,"TrackId":1761} +{"PlaylistId":1,"TrackId":1768} +{"PlaylistId":1,"TrackId":1769} +{"PlaylistId":1,"TrackId":1770} +{"PlaylistId":1,"TrackId":1771} +{"PlaylistId":1,"TrackId":1772} +{"PlaylistId":1,"TrackId":398} +{"PlaylistId":1,"TrackId":1916} +{"PlaylistId":1,"TrackId":1917} +{"PlaylistId":1,"TrackId":1918} +{"PlaylistId":1,"TrackId":1919} +{"PlaylistId":1,"TrackId":1920} +{"PlaylistId":1,"TrackId":1921} +{"PlaylistId":1,"TrackId":1922} +{"PlaylistId":1,"TrackId":1923} +{"PlaylistId":1,"TrackId":1924} +{"PlaylistId":1,"TrackId":1925} +{"PlaylistId":1,"TrackId":1926} +{"PlaylistId":1,"TrackId":1927} +{"PlaylistId":1,"TrackId":1928} +{"PlaylistId":1,"TrackId":1929} +{"PlaylistId":1,"TrackId":1930} +{"PlaylistId":1,"TrackId":1931} +{"PlaylistId":1,"TrackId":1932} +{"PlaylistId":1,"TrackId":1933} +{"PlaylistId":1,"TrackId":1934} +{"PlaylistId":1,"TrackId":1935} +{"PlaylistId":1,"TrackId":1936} +{"PlaylistId":1,"TrackId":1937} +{"PlaylistId":1,"TrackId":1938} +{"PlaylistId":1,"TrackId":1939} +{"PlaylistId":1,"TrackId":1940} +{"PlaylistId":1,"TrackId":1941} +{"PlaylistId":1,"TrackId":375} +{"PlaylistId":1,"TrackId":385} +{"PlaylistId":1,"TrackId":383} +{"PlaylistId":1,"TrackId":387} +{"PlaylistId":1,"TrackId":2030} +{"PlaylistId":1,"TrackId":2031} +{"PlaylistId":1,"TrackId":2032} +{"PlaylistId":1,"TrackId":2033} +{"PlaylistId":1,"TrackId":2034} +{"PlaylistId":1,"TrackId":2035} +{"PlaylistId":1,"TrackId":2036} +{"PlaylistId":1,"TrackId":2037} +{"PlaylistId":1,"TrackId":2038} +{"PlaylistId":1,"TrackId":2039} +{"PlaylistId":1,"TrackId":2040} +{"PlaylistId":1,"TrackId":2041} +{"PlaylistId":1,"TrackId":2042} +{"PlaylistId":1,"TrackId":2043} +{"PlaylistId":1,"TrackId":393} +{"PlaylistId":1,"TrackId":2044} +{"PlaylistId":1,"TrackId":2045} +{"PlaylistId":1,"TrackId":2046} +{"PlaylistId":1,"TrackId":2047} +{"PlaylistId":1,"TrackId":2048} +{"PlaylistId":1,"TrackId":2049} +{"PlaylistId":1,"TrackId":2050} +{"PlaylistId":1,"TrackId":2051} +{"PlaylistId":1,"TrackId":2052} +{"PlaylistId":1,"TrackId":2053} +{"PlaylistId":1,"TrackId":2054} +{"PlaylistId":1,"TrackId":2055} +{"PlaylistId":1,"TrackId":2056} +{"PlaylistId":1,"TrackId":2057} +{"PlaylistId":1,"TrackId":2058} +{"PlaylistId":1,"TrackId":2059} +{"PlaylistId":1,"TrackId":2060} +{"PlaylistId":1,"TrackId":2061} +{"PlaylistId":1,"TrackId":2062} +{"PlaylistId":1,"TrackId":2063} +{"PlaylistId":1,"TrackId":2064} +{"PlaylistId":1,"TrackId":2065} +{"PlaylistId":1,"TrackId":2066} +{"PlaylistId":1,"TrackId":2067} +{"PlaylistId":1,"TrackId":2068} +{"PlaylistId":1,"TrackId":2069} +{"PlaylistId":1,"TrackId":2070} +{"PlaylistId":1,"TrackId":2071} +{"PlaylistId":1,"TrackId":2072} +{"PlaylistId":1,"TrackId":2073} +{"PlaylistId":1,"TrackId":2074} +{"PlaylistId":1,"TrackId":2075} +{"PlaylistId":1,"TrackId":2076} +{"PlaylistId":1,"TrackId":2077} +{"PlaylistId":1,"TrackId":2078} +{"PlaylistId":1,"TrackId":2079} +{"PlaylistId":1,"TrackId":2080} +{"PlaylistId":1,"TrackId":2081} +{"PlaylistId":1,"TrackId":2082} +{"PlaylistId":1,"TrackId":2083} +{"PlaylistId":1,"TrackId":2084} +{"PlaylistId":1,"TrackId":2085} +{"PlaylistId":1,"TrackId":2086} +{"PlaylistId":1,"TrackId":2087} +{"PlaylistId":1,"TrackId":2088} +{"PlaylistId":1,"TrackId":2089} +{"PlaylistId":1,"TrackId":2090} +{"PlaylistId":1,"TrackId":2091} +{"PlaylistId":1,"TrackId":2092} +{"PlaylistId":1,"TrackId":386} +{"PlaylistId":1,"TrackId":401} +{"PlaylistId":1,"TrackId":2751} +{"PlaylistId":1,"TrackId":2752} +{"PlaylistId":1,"TrackId":2753} +{"PlaylistId":1,"TrackId":2754} +{"PlaylistId":1,"TrackId":2755} +{"PlaylistId":1,"TrackId":2756} +{"PlaylistId":1,"TrackId":2757} +{"PlaylistId":1,"TrackId":2758} +{"PlaylistId":1,"TrackId":2759} +{"PlaylistId":1,"TrackId":2760} +{"PlaylistId":1,"TrackId":2761} +{"PlaylistId":1,"TrackId":2762} +{"PlaylistId":1,"TrackId":2763} +{"PlaylistId":1,"TrackId":2764} +{"PlaylistId":1,"TrackId":2765} +{"PlaylistId":1,"TrackId":2766} +{"PlaylistId":1,"TrackId":2767} +{"PlaylistId":1,"TrackId":2768} +{"PlaylistId":1,"TrackId":2769} +{"PlaylistId":1,"TrackId":2770} +{"PlaylistId":1,"TrackId":2771} +{"PlaylistId":1,"TrackId":2772} +{"PlaylistId":1,"TrackId":2773} +{"PlaylistId":1,"TrackId":2774} +{"PlaylistId":1,"TrackId":2775} +{"PlaylistId":1,"TrackId":2776} +{"PlaylistId":1,"TrackId":2777} +{"PlaylistId":1,"TrackId":2778} +{"PlaylistId":1,"TrackId":2779} +{"PlaylistId":1,"TrackId":2780} +{"PlaylistId":1,"TrackId":556} +{"PlaylistId":1,"TrackId":557} +{"PlaylistId":1,"TrackId":558} +{"PlaylistId":1,"TrackId":559} +{"PlaylistId":1,"TrackId":560} +{"PlaylistId":1,"TrackId":561} +{"PlaylistId":1,"TrackId":562} +{"PlaylistId":1,"TrackId":563} +{"PlaylistId":1,"TrackId":564} +{"PlaylistId":1,"TrackId":565} +{"PlaylistId":1,"TrackId":566} +{"PlaylistId":1,"TrackId":567} +{"PlaylistId":1,"TrackId":568} +{"PlaylistId":1,"TrackId":569} +{"PlaylistId":1,"TrackId":661} +{"PlaylistId":1,"TrackId":662} +{"PlaylistId":1,"TrackId":663} +{"PlaylistId":1,"TrackId":664} +{"PlaylistId":1,"TrackId":665} +{"PlaylistId":1,"TrackId":666} +{"PlaylistId":1,"TrackId":667} +{"PlaylistId":1,"TrackId":668} +{"PlaylistId":1,"TrackId":669} +{"PlaylistId":1,"TrackId":670} +{"PlaylistId":1,"TrackId":671} +{"PlaylistId":1,"TrackId":672} +{"PlaylistId":1,"TrackId":673} +{"PlaylistId":1,"TrackId":674} +{"PlaylistId":1,"TrackId":3117} +{"PlaylistId":1,"TrackId":3118} +{"PlaylistId":1,"TrackId":3119} +{"PlaylistId":1,"TrackId":3120} +{"PlaylistId":1,"TrackId":3121} +{"PlaylistId":1,"TrackId":3122} +{"PlaylistId":1,"TrackId":3123} +{"PlaylistId":1,"TrackId":3124} +{"PlaylistId":1,"TrackId":3125} +{"PlaylistId":1,"TrackId":3126} +{"PlaylistId":1,"TrackId":3127} +{"PlaylistId":1,"TrackId":3128} +{"PlaylistId":1,"TrackId":3129} +{"PlaylistId":1,"TrackId":3130} +{"PlaylistId":1,"TrackId":3131} +{"PlaylistId":1,"TrackId":3146} +{"PlaylistId":1,"TrackId":3147} +{"PlaylistId":1,"TrackId":3148} +{"PlaylistId":1,"TrackId":3149} +{"PlaylistId":1,"TrackId":3150} +{"PlaylistId":1,"TrackId":3151} +{"PlaylistId":1,"TrackId":3152} +{"PlaylistId":1,"TrackId":3153} +{"PlaylistId":1,"TrackId":3154} +{"PlaylistId":1,"TrackId":3155} +{"PlaylistId":1,"TrackId":3156} +{"PlaylistId":1,"TrackId":3157} +{"PlaylistId":1,"TrackId":3158} +{"PlaylistId":1,"TrackId":3159} +{"PlaylistId":1,"TrackId":3160} +{"PlaylistId":1,"TrackId":3161} +{"PlaylistId":1,"TrackId":3162} +{"PlaylistId":1,"TrackId":3163} +{"PlaylistId":1,"TrackId":3164} +{"PlaylistId":1,"TrackId":77} +{"PlaylistId":1,"TrackId":78} +{"PlaylistId":1,"TrackId":79} +{"PlaylistId":1,"TrackId":80} +{"PlaylistId":1,"TrackId":81} +{"PlaylistId":1,"TrackId":82} +{"PlaylistId":1,"TrackId":83} +{"PlaylistId":1,"TrackId":84} +{"PlaylistId":1,"TrackId":131} +{"PlaylistId":1,"TrackId":132} +{"PlaylistId":1,"TrackId":133} +{"PlaylistId":1,"TrackId":134} +{"PlaylistId":1,"TrackId":135} +{"PlaylistId":1,"TrackId":136} +{"PlaylistId":1,"TrackId":137} +{"PlaylistId":1,"TrackId":138} +{"PlaylistId":1,"TrackId":139} +{"PlaylistId":1,"TrackId":140} +{"PlaylistId":1,"TrackId":141} +{"PlaylistId":1,"TrackId":142} +{"PlaylistId":1,"TrackId":143} +{"PlaylistId":1,"TrackId":144} +{"PlaylistId":1,"TrackId":145} +{"PlaylistId":1,"TrackId":146} +{"PlaylistId":1,"TrackId":147} +{"PlaylistId":1,"TrackId":148} +{"PlaylistId":1,"TrackId":149} +{"PlaylistId":1,"TrackId":150} +{"PlaylistId":1,"TrackId":151} +{"PlaylistId":1,"TrackId":152} +{"PlaylistId":1,"TrackId":153} +{"PlaylistId":1,"TrackId":154} +{"PlaylistId":1,"TrackId":155} +{"PlaylistId":1,"TrackId":156} +{"PlaylistId":1,"TrackId":157} +{"PlaylistId":1,"TrackId":158} +{"PlaylistId":1,"TrackId":159} +{"PlaylistId":1,"TrackId":160} +{"PlaylistId":1,"TrackId":161} +{"PlaylistId":1,"TrackId":162} +{"PlaylistId":1,"TrackId":163} +{"PlaylistId":1,"TrackId":164} +{"PlaylistId":1,"TrackId":165} +{"PlaylistId":1,"TrackId":183} +{"PlaylistId":1,"TrackId":184} +{"PlaylistId":1,"TrackId":185} +{"PlaylistId":1,"TrackId":186} +{"PlaylistId":1,"TrackId":187} +{"PlaylistId":1,"TrackId":188} +{"PlaylistId":1,"TrackId":189} +{"PlaylistId":1,"TrackId":190} +{"PlaylistId":1,"TrackId":191} +{"PlaylistId":1,"TrackId":192} +{"PlaylistId":1,"TrackId":193} +{"PlaylistId":1,"TrackId":1121} +{"PlaylistId":1,"TrackId":1122} +{"PlaylistId":1,"TrackId":1123} +{"PlaylistId":1,"TrackId":1124} +{"PlaylistId":1,"TrackId":1125} +{"PlaylistId":1,"TrackId":1126} +{"PlaylistId":1,"TrackId":1127} +{"PlaylistId":1,"TrackId":1128} +{"PlaylistId":1,"TrackId":1129} +{"PlaylistId":1,"TrackId":1130} +{"PlaylistId":1,"TrackId":1131} +{"PlaylistId":1,"TrackId":1132} +{"PlaylistId":1,"TrackId":1174} +{"PlaylistId":1,"TrackId":1175} +{"PlaylistId":1,"TrackId":1176} +{"PlaylistId":1,"TrackId":1177} +{"PlaylistId":1,"TrackId":1178} +{"PlaylistId":1,"TrackId":1179} +{"PlaylistId":1,"TrackId":1180} +{"PlaylistId":1,"TrackId":1181} +{"PlaylistId":1,"TrackId":1182} +{"PlaylistId":1,"TrackId":1183} +{"PlaylistId":1,"TrackId":1184} +{"PlaylistId":1,"TrackId":1185} +{"PlaylistId":1,"TrackId":1186} +{"PlaylistId":1,"TrackId":1187} +{"PlaylistId":1,"TrackId":1289} +{"PlaylistId":1,"TrackId":1290} +{"PlaylistId":1,"TrackId":1291} +{"PlaylistId":1,"TrackId":1292} +{"PlaylistId":1,"TrackId":1293} +{"PlaylistId":1,"TrackId":1294} +{"PlaylistId":1,"TrackId":1295} +{"PlaylistId":1,"TrackId":1296} +{"PlaylistId":1,"TrackId":1297} +{"PlaylistId":1,"TrackId":1298} +{"PlaylistId":1,"TrackId":1299} +{"PlaylistId":1,"TrackId":1325} +{"PlaylistId":1,"TrackId":1326} +{"PlaylistId":1,"TrackId":1327} +{"PlaylistId":1,"TrackId":1328} +{"PlaylistId":1,"TrackId":1329} +{"PlaylistId":1,"TrackId":1330} +{"PlaylistId":1,"TrackId":1331} +{"PlaylistId":1,"TrackId":1332} +{"PlaylistId":1,"TrackId":1333} +{"PlaylistId":1,"TrackId":1334} +{"PlaylistId":1,"TrackId":1391} +{"PlaylistId":1,"TrackId":1388} +{"PlaylistId":1,"TrackId":1394} +{"PlaylistId":1,"TrackId":1387} +{"PlaylistId":1,"TrackId":1392} +{"PlaylistId":1,"TrackId":1389} +{"PlaylistId":1,"TrackId":1390} +{"PlaylistId":1,"TrackId":1335} +{"PlaylistId":1,"TrackId":1336} +{"PlaylistId":1,"TrackId":1337} +{"PlaylistId":1,"TrackId":1338} +{"PlaylistId":1,"TrackId":1339} +{"PlaylistId":1,"TrackId":1340} +{"PlaylistId":1,"TrackId":1341} +{"PlaylistId":1,"TrackId":1342} +{"PlaylistId":1,"TrackId":1343} +{"PlaylistId":1,"TrackId":1344} +{"PlaylistId":1,"TrackId":1345} +{"PlaylistId":1,"TrackId":1346} +{"PlaylistId":1,"TrackId":1347} +{"PlaylistId":1,"TrackId":1348} +{"PlaylistId":1,"TrackId":1349} +{"PlaylistId":1,"TrackId":1350} +{"PlaylistId":1,"TrackId":1351} +{"PlaylistId":1,"TrackId":1212} +{"PlaylistId":1,"TrackId":1213} +{"PlaylistId":1,"TrackId":1214} +{"PlaylistId":1,"TrackId":1215} +{"PlaylistId":1,"TrackId":1216} +{"PlaylistId":1,"TrackId":1217} +{"PlaylistId":1,"TrackId":1218} +{"PlaylistId":1,"TrackId":1219} +{"PlaylistId":1,"TrackId":1220} +{"PlaylistId":1,"TrackId":1221} +{"PlaylistId":1,"TrackId":1222} +{"PlaylistId":1,"TrackId":1223} +{"PlaylistId":1,"TrackId":1224} +{"PlaylistId":1,"TrackId":1225} +{"PlaylistId":1,"TrackId":1226} +{"PlaylistId":1,"TrackId":1227} +{"PlaylistId":1,"TrackId":1228} +{"PlaylistId":1,"TrackId":1229} +{"PlaylistId":1,"TrackId":1230} +{"PlaylistId":1,"TrackId":1231} +{"PlaylistId":1,"TrackId":1232} +{"PlaylistId":1,"TrackId":1233} +{"PlaylistId":1,"TrackId":1234} +{"PlaylistId":1,"TrackId":1352} +{"PlaylistId":1,"TrackId":1353} +{"PlaylistId":1,"TrackId":1354} +{"PlaylistId":1,"TrackId":1355} +{"PlaylistId":1,"TrackId":1356} +{"PlaylistId":1,"TrackId":1357} +{"PlaylistId":1,"TrackId":1358} +{"PlaylistId":1,"TrackId":1359} +{"PlaylistId":1,"TrackId":1360} +{"PlaylistId":1,"TrackId":1361} +{"PlaylistId":1,"TrackId":1364} +{"PlaylistId":1,"TrackId":1371} +{"PlaylistId":1,"TrackId":1372} +{"PlaylistId":1,"TrackId":1373} +{"PlaylistId":1,"TrackId":1374} +{"PlaylistId":1,"TrackId":1375} +{"PlaylistId":1,"TrackId":1376} +{"PlaylistId":1,"TrackId":1377} +{"PlaylistId":1,"TrackId":1378} +{"PlaylistId":1,"TrackId":1379} +{"PlaylistId":1,"TrackId":1380} +{"PlaylistId":1,"TrackId":1381} +{"PlaylistId":1,"TrackId":1382} +{"PlaylistId":1,"TrackId":1386} +{"PlaylistId":1,"TrackId":1383} +{"PlaylistId":1,"TrackId":1385} +{"PlaylistId":1,"TrackId":1384} +{"PlaylistId":1,"TrackId":1546} +{"PlaylistId":1,"TrackId":1547} +{"PlaylistId":1,"TrackId":1548} +{"PlaylistId":1,"TrackId":1549} +{"PlaylistId":1,"TrackId":1550} +{"PlaylistId":1,"TrackId":1551} +{"PlaylistId":1,"TrackId":1552} +{"PlaylistId":1,"TrackId":1553} +{"PlaylistId":1,"TrackId":1554} +{"PlaylistId":1,"TrackId":1555} +{"PlaylistId":1,"TrackId":1556} +{"PlaylistId":1,"TrackId":1557} +{"PlaylistId":1,"TrackId":1558} +{"PlaylistId":1,"TrackId":1559} +{"PlaylistId":1,"TrackId":1560} +{"PlaylistId":1,"TrackId":1561} +{"PlaylistId":1,"TrackId":1893} +{"PlaylistId":1,"TrackId":1894} +{"PlaylistId":1,"TrackId":1895} +{"PlaylistId":1,"TrackId":1896} +{"PlaylistId":1,"TrackId":1897} +{"PlaylistId":1,"TrackId":1898} +{"PlaylistId":1,"TrackId":1899} +{"PlaylistId":1,"TrackId":1900} +{"PlaylistId":1,"TrackId":1901} +{"PlaylistId":1,"TrackId":1801} +{"PlaylistId":1,"TrackId":1802} +{"PlaylistId":1,"TrackId":1803} +{"PlaylistId":1,"TrackId":1804} +{"PlaylistId":1,"TrackId":1805} +{"PlaylistId":1,"TrackId":1806} +{"PlaylistId":1,"TrackId":1807} +{"PlaylistId":1,"TrackId":1808} +{"PlaylistId":1,"TrackId":1809} +{"PlaylistId":1,"TrackId":1810} +{"PlaylistId":1,"TrackId":1811} +{"PlaylistId":1,"TrackId":1812} +{"PlaylistId":1,"TrackId":408} +{"PlaylistId":1,"TrackId":409} +{"PlaylistId":1,"TrackId":410} +{"PlaylistId":1,"TrackId":411} +{"PlaylistId":1,"TrackId":412} +{"PlaylistId":1,"TrackId":413} +{"PlaylistId":1,"TrackId":414} +{"PlaylistId":1,"TrackId":415} +{"PlaylistId":1,"TrackId":416} +{"PlaylistId":1,"TrackId":417} +{"PlaylistId":1,"TrackId":418} +{"PlaylistId":1,"TrackId":1813} +{"PlaylistId":1,"TrackId":1814} +{"PlaylistId":1,"TrackId":1815} +{"PlaylistId":1,"TrackId":1816} +{"PlaylistId":1,"TrackId":1817} +{"PlaylistId":1,"TrackId":1818} +{"PlaylistId":1,"TrackId":1819} +{"PlaylistId":1,"TrackId":1820} +{"PlaylistId":1,"TrackId":1821} +{"PlaylistId":1,"TrackId":1822} +{"PlaylistId":1,"TrackId":1823} +{"PlaylistId":1,"TrackId":1824} +{"PlaylistId":1,"TrackId":1825} +{"PlaylistId":1,"TrackId":1826} +{"PlaylistId":1,"TrackId":1827} +{"PlaylistId":1,"TrackId":1828} +{"PlaylistId":1,"TrackId":1829} +{"PlaylistId":1,"TrackId":1830} +{"PlaylistId":1,"TrackId":1831} +{"PlaylistId":1,"TrackId":1832} +{"PlaylistId":1,"TrackId":1833} +{"PlaylistId":1,"TrackId":1834} +{"PlaylistId":1,"TrackId":1835} +{"PlaylistId":1,"TrackId":1836} +{"PlaylistId":1,"TrackId":1837} +{"PlaylistId":1,"TrackId":1838} +{"PlaylistId":1,"TrackId":1839} +{"PlaylistId":1,"TrackId":1840} +{"PlaylistId":1,"TrackId":1841} +{"PlaylistId":1,"TrackId":1842} +{"PlaylistId":1,"TrackId":1843} +{"PlaylistId":1,"TrackId":1844} +{"PlaylistId":1,"TrackId":1845} +{"PlaylistId":1,"TrackId":1846} +{"PlaylistId":1,"TrackId":1847} +{"PlaylistId":1,"TrackId":1848} +{"PlaylistId":1,"TrackId":1849} +{"PlaylistId":1,"TrackId":1850} +{"PlaylistId":1,"TrackId":1851} +{"PlaylistId":1,"TrackId":1852} +{"PlaylistId":1,"TrackId":1853} +{"PlaylistId":1,"TrackId":1854} +{"PlaylistId":1,"TrackId":1855} +{"PlaylistId":1,"TrackId":1856} +{"PlaylistId":1,"TrackId":1857} +{"PlaylistId":1,"TrackId":1858} +{"PlaylistId":1,"TrackId":1859} +{"PlaylistId":1,"TrackId":1860} +{"PlaylistId":1,"TrackId":1861} +{"PlaylistId":1,"TrackId":1862} +{"PlaylistId":1,"TrackId":1863} +{"PlaylistId":1,"TrackId":1864} +{"PlaylistId":1,"TrackId":1865} +{"PlaylistId":1,"TrackId":1866} +{"PlaylistId":1,"TrackId":1867} +{"PlaylistId":1,"TrackId":1868} +{"PlaylistId":1,"TrackId":1869} +{"PlaylistId":1,"TrackId":1870} +{"PlaylistId":1,"TrackId":1871} +{"PlaylistId":1,"TrackId":1872} +{"PlaylistId":1,"TrackId":1873} +{"PlaylistId":1,"TrackId":1874} +{"PlaylistId":1,"TrackId":1875} +{"PlaylistId":1,"TrackId":1876} +{"PlaylistId":1,"TrackId":1877} +{"PlaylistId":1,"TrackId":1878} +{"PlaylistId":1,"TrackId":1879} +{"PlaylistId":1,"TrackId":1880} +{"PlaylistId":1,"TrackId":1881} +{"PlaylistId":1,"TrackId":1882} +{"PlaylistId":1,"TrackId":1883} +{"PlaylistId":1,"TrackId":1884} +{"PlaylistId":1,"TrackId":1885} +{"PlaylistId":1,"TrackId":1886} +{"PlaylistId":1,"TrackId":1887} +{"PlaylistId":1,"TrackId":1888} +{"PlaylistId":1,"TrackId":1889} +{"PlaylistId":1,"TrackId":1890} +{"PlaylistId":1,"TrackId":1891} +{"PlaylistId":1,"TrackId":1892} +{"PlaylistId":1,"TrackId":1969} +{"PlaylistId":1,"TrackId":1970} +{"PlaylistId":1,"TrackId":1971} +{"PlaylistId":1,"TrackId":1972} +{"PlaylistId":1,"TrackId":1973} +{"PlaylistId":1,"TrackId":1974} +{"PlaylistId":1,"TrackId":1975} +{"PlaylistId":1,"TrackId":1976} +{"PlaylistId":1,"TrackId":1977} +{"PlaylistId":1,"TrackId":1978} +{"PlaylistId":1,"TrackId":1979} +{"PlaylistId":1,"TrackId":1980} +{"PlaylistId":1,"TrackId":1981} +{"PlaylistId":1,"TrackId":1982} +{"PlaylistId":1,"TrackId":1983} +{"PlaylistId":1,"TrackId":1984} +{"PlaylistId":1,"TrackId":1985} +{"PlaylistId":1,"TrackId":1942} +{"PlaylistId":1,"TrackId":1943} +{"PlaylistId":1,"TrackId":1944} +{"PlaylistId":1,"TrackId":1945} +{"PlaylistId":1,"TrackId":1946} +{"PlaylistId":1,"TrackId":1947} +{"PlaylistId":1,"TrackId":1948} +{"PlaylistId":1,"TrackId":1949} +{"PlaylistId":1,"TrackId":1950} +{"PlaylistId":1,"TrackId":1951} +{"PlaylistId":1,"TrackId":1952} +{"PlaylistId":1,"TrackId":1953} +{"PlaylistId":1,"TrackId":1954} +{"PlaylistId":1,"TrackId":1955} +{"PlaylistId":1,"TrackId":1956} +{"PlaylistId":1,"TrackId":2099} +{"PlaylistId":1,"TrackId":2100} +{"PlaylistId":1,"TrackId":2101} +{"PlaylistId":1,"TrackId":2102} +{"PlaylistId":1,"TrackId":2103} +{"PlaylistId":1,"TrackId":2104} +{"PlaylistId":1,"TrackId":2105} +{"PlaylistId":1,"TrackId":2106} +{"PlaylistId":1,"TrackId":2107} +{"PlaylistId":1,"TrackId":2108} +{"PlaylistId":1,"TrackId":2109} +{"PlaylistId":1,"TrackId":2110} +{"PlaylistId":1,"TrackId":2111} +{"PlaylistId":1,"TrackId":2112} +{"PlaylistId":1,"TrackId":2554} +{"PlaylistId":1,"TrackId":2555} +{"PlaylistId":1,"TrackId":2556} +{"PlaylistId":1,"TrackId":2557} +{"PlaylistId":1,"TrackId":2558} +{"PlaylistId":1,"TrackId":2559} +{"PlaylistId":1,"TrackId":2560} +{"PlaylistId":1,"TrackId":2561} +{"PlaylistId":1,"TrackId":2562} +{"PlaylistId":1,"TrackId":2563} +{"PlaylistId":1,"TrackId":2564} +{"PlaylistId":1,"TrackId":3132} +{"PlaylistId":1,"TrackId":3133} +{"PlaylistId":1,"TrackId":3134} +{"PlaylistId":1,"TrackId":3135} +{"PlaylistId":1,"TrackId":3136} +{"PlaylistId":1,"TrackId":3137} +{"PlaylistId":1,"TrackId":3138} +{"PlaylistId":1,"TrackId":3139} +{"PlaylistId":1,"TrackId":3140} +{"PlaylistId":1,"TrackId":3141} +{"PlaylistId":1,"TrackId":3142} +{"PlaylistId":1,"TrackId":3143} +{"PlaylistId":1,"TrackId":3144} +{"PlaylistId":1,"TrackId":3145} +{"PlaylistId":1,"TrackId":3451} +{"PlaylistId":1,"TrackId":3256} +{"PlaylistId":1,"TrackId":3467} +{"PlaylistId":1,"TrackId":3468} +{"PlaylistId":1,"TrackId":3469} +{"PlaylistId":1,"TrackId":3470} +{"PlaylistId":1,"TrackId":3471} +{"PlaylistId":1,"TrackId":3472} +{"PlaylistId":1,"TrackId":3473} +{"PlaylistId":1,"TrackId":3474} +{"PlaylistId":1,"TrackId":3475} +{"PlaylistId":1,"TrackId":3476} +{"PlaylistId":1,"TrackId":3477} +{"PlaylistId":1,"TrackId":3262} +{"PlaylistId":1,"TrackId":3268} +{"PlaylistId":1,"TrackId":3263} +{"PlaylistId":1,"TrackId":3266} +{"PlaylistId":1,"TrackId":3255} +{"PlaylistId":1,"TrackId":3259} +{"PlaylistId":1,"TrackId":3260} +{"PlaylistId":1,"TrackId":3273} +{"PlaylistId":1,"TrackId":3265} +{"PlaylistId":1,"TrackId":3274} +{"PlaylistId":1,"TrackId":3267} +{"PlaylistId":1,"TrackId":3261} +{"PlaylistId":1,"TrackId":3272} +{"PlaylistId":1,"TrackId":3257} +{"PlaylistId":1,"TrackId":3258} +{"PlaylistId":1,"TrackId":3270} +{"PlaylistId":1,"TrackId":3271} +{"PlaylistId":1,"TrackId":3254} +{"PlaylistId":1,"TrackId":3275} +{"PlaylistId":1,"TrackId":3269} +{"PlaylistId":1,"TrackId":3253} +{"PlaylistId":1,"TrackId":323} +{"PlaylistId":1,"TrackId":324} +{"PlaylistId":1,"TrackId":325} +{"PlaylistId":1,"TrackId":326} +{"PlaylistId":1,"TrackId":327} +{"PlaylistId":1,"TrackId":328} +{"PlaylistId":1,"TrackId":329} +{"PlaylistId":1,"TrackId":330} +{"PlaylistId":1,"TrackId":331} +{"PlaylistId":1,"TrackId":332} +{"PlaylistId":1,"TrackId":333} +{"PlaylistId":1,"TrackId":334} +{"PlaylistId":1,"TrackId":335} +{"PlaylistId":1,"TrackId":336} +{"PlaylistId":1,"TrackId":3264} +{"PlaylistId":1,"TrackId":3455} +{"PlaylistId":1,"TrackId":3456} +{"PlaylistId":1,"TrackId":3457} +{"PlaylistId":1,"TrackId":3458} +{"PlaylistId":1,"TrackId":3459} +{"PlaylistId":1,"TrackId":3460} +{"PlaylistId":1,"TrackId":3461} +{"PlaylistId":1,"TrackId":3462} +{"PlaylistId":1,"TrackId":3463} +{"PlaylistId":1,"TrackId":3464} +{"PlaylistId":1,"TrackId":3465} +{"PlaylistId":1,"TrackId":3466} +{"PlaylistId":1,"TrackId":1414} +{"PlaylistId":1,"TrackId":1415} +{"PlaylistId":1,"TrackId":1416} +{"PlaylistId":1,"TrackId":1417} +{"PlaylistId":1,"TrackId":1418} +{"PlaylistId":1,"TrackId":1419} +{"PlaylistId":1,"TrackId":1420} +{"PlaylistId":1,"TrackId":1421} +{"PlaylistId":1,"TrackId":1422} +{"PlaylistId":1,"TrackId":1423} +{"PlaylistId":1,"TrackId":1424} +{"PlaylistId":1,"TrackId":1425} +{"PlaylistId":1,"TrackId":1426} +{"PlaylistId":1,"TrackId":1427} +{"PlaylistId":1,"TrackId":1428} +{"PlaylistId":1,"TrackId":1429} +{"PlaylistId":1,"TrackId":1430} +{"PlaylistId":1,"TrackId":1431} +{"PlaylistId":1,"TrackId":1432} +{"PlaylistId":1,"TrackId":1433} +{"PlaylistId":1,"TrackId":1444} +{"PlaylistId":1,"TrackId":1445} +{"PlaylistId":1,"TrackId":1446} +{"PlaylistId":1,"TrackId":1447} +{"PlaylistId":1,"TrackId":1448} +{"PlaylistId":1,"TrackId":1449} +{"PlaylistId":1,"TrackId":1450} +{"PlaylistId":1,"TrackId":1451} +{"PlaylistId":1,"TrackId":1452} +{"PlaylistId":1,"TrackId":1453} +{"PlaylistId":1,"TrackId":1454} +{"PlaylistId":1,"TrackId":1773} +{"PlaylistId":1,"TrackId":1774} +{"PlaylistId":1,"TrackId":1775} +{"PlaylistId":1,"TrackId":1776} +{"PlaylistId":1,"TrackId":1777} +{"PlaylistId":1,"TrackId":1778} +{"PlaylistId":1,"TrackId":1779} +{"PlaylistId":1,"TrackId":1780} +{"PlaylistId":1,"TrackId":1781} +{"PlaylistId":1,"TrackId":1782} +{"PlaylistId":1,"TrackId":1783} +{"PlaylistId":1,"TrackId":1784} +{"PlaylistId":1,"TrackId":1785} +{"PlaylistId":1,"TrackId":1786} +{"PlaylistId":1,"TrackId":1787} +{"PlaylistId":1,"TrackId":1788} +{"PlaylistId":1,"TrackId":1789} +{"PlaylistId":1,"TrackId":1790} +{"PlaylistId":1,"TrackId":282} +{"PlaylistId":1,"TrackId":283} +{"PlaylistId":1,"TrackId":284} +{"PlaylistId":1,"TrackId":285} +{"PlaylistId":1,"TrackId":286} +{"PlaylistId":1,"TrackId":287} +{"PlaylistId":1,"TrackId":288} +{"PlaylistId":1,"TrackId":289} +{"PlaylistId":1,"TrackId":290} +{"PlaylistId":1,"TrackId":291} +{"PlaylistId":1,"TrackId":292} +{"PlaylistId":1,"TrackId":293} +{"PlaylistId":1,"TrackId":294} +{"PlaylistId":1,"TrackId":295} +{"PlaylistId":1,"TrackId":296} +{"PlaylistId":1,"TrackId":297} +{"PlaylistId":1,"TrackId":298} +{"PlaylistId":1,"TrackId":299} +{"PlaylistId":1,"TrackId":300} +{"PlaylistId":1,"TrackId":301} +{"PlaylistId":1,"TrackId":302} +{"PlaylistId":1,"TrackId":303} +{"PlaylistId":1,"TrackId":304} +{"PlaylistId":1,"TrackId":305} +{"PlaylistId":1,"TrackId":306} +{"PlaylistId":1,"TrackId":307} +{"PlaylistId":1,"TrackId":308} +{"PlaylistId":1,"TrackId":309} +{"PlaylistId":1,"TrackId":310} +{"PlaylistId":1,"TrackId":311} +{"PlaylistId":1,"TrackId":312} +{"PlaylistId":1,"TrackId":2216} +{"PlaylistId":1,"TrackId":2217} +{"PlaylistId":1,"TrackId":2218} +{"PlaylistId":1,"TrackId":2219} +{"PlaylistId":1,"TrackId":2220} +{"PlaylistId":1,"TrackId":2221} +{"PlaylistId":1,"TrackId":2222} +{"PlaylistId":1,"TrackId":2223} +{"PlaylistId":1,"TrackId":2224} +{"PlaylistId":1,"TrackId":2225} +{"PlaylistId":1,"TrackId":2226} +{"PlaylistId":1,"TrackId":2227} +{"PlaylistId":1,"TrackId":2228} +{"PlaylistId":1,"TrackId":3038} +{"PlaylistId":1,"TrackId":3039} +{"PlaylistId":1,"TrackId":3040} +{"PlaylistId":1,"TrackId":3041} +{"PlaylistId":1,"TrackId":3042} +{"PlaylistId":1,"TrackId":3043} +{"PlaylistId":1,"TrackId":3044} +{"PlaylistId":1,"TrackId":3045} +{"PlaylistId":1,"TrackId":3046} +{"PlaylistId":1,"TrackId":3047} +{"PlaylistId":1,"TrackId":3048} +{"PlaylistId":1,"TrackId":3049} +{"PlaylistId":1,"TrackId":3050} +{"PlaylistId":1,"TrackId":3051} +{"PlaylistId":1,"TrackId":1} +{"PlaylistId":1,"TrackId":6} +{"PlaylistId":1,"TrackId":7} +{"PlaylistId":1,"TrackId":8} +{"PlaylistId":1,"TrackId":9} +{"PlaylistId":1,"TrackId":10} +{"PlaylistId":1,"TrackId":11} +{"PlaylistId":1,"TrackId":12} +{"PlaylistId":1,"TrackId":13} +{"PlaylistId":1,"TrackId":14} +{"PlaylistId":1,"TrackId":15} +{"PlaylistId":1,"TrackId":16} +{"PlaylistId":1,"TrackId":17} +{"PlaylistId":1,"TrackId":18} +{"PlaylistId":1,"TrackId":19} +{"PlaylistId":1,"TrackId":20} +{"PlaylistId":1,"TrackId":21} +{"PlaylistId":1,"TrackId":22} +{"PlaylistId":1,"TrackId":2} +{"PlaylistId":1,"TrackId":3} +{"PlaylistId":1,"TrackId":4} +{"PlaylistId":1,"TrackId":5} +{"PlaylistId":1,"TrackId":23} +{"PlaylistId":1,"TrackId":24} +{"PlaylistId":1,"TrackId":25} +{"PlaylistId":1,"TrackId":26} +{"PlaylistId":1,"TrackId":27} +{"PlaylistId":1,"TrackId":28} +{"PlaylistId":1,"TrackId":29} +{"PlaylistId":1,"TrackId":30} +{"PlaylistId":1,"TrackId":31} +{"PlaylistId":1,"TrackId":32} +{"PlaylistId":1,"TrackId":33} +{"PlaylistId":1,"TrackId":34} +{"PlaylistId":1,"TrackId":35} +{"PlaylistId":1,"TrackId":36} +{"PlaylistId":1,"TrackId":37} +{"PlaylistId":1,"TrackId":38} +{"PlaylistId":1,"TrackId":39} +{"PlaylistId":1,"TrackId":40} +{"PlaylistId":1,"TrackId":41} +{"PlaylistId":1,"TrackId":42} +{"PlaylistId":1,"TrackId":43} +{"PlaylistId":1,"TrackId":44} +{"PlaylistId":1,"TrackId":45} +{"PlaylistId":1,"TrackId":46} +{"PlaylistId":1,"TrackId":47} +{"PlaylistId":1,"TrackId":48} +{"PlaylistId":1,"TrackId":49} +{"PlaylistId":1,"TrackId":50} +{"PlaylistId":1,"TrackId":51} +{"PlaylistId":1,"TrackId":52} +{"PlaylistId":1,"TrackId":53} +{"PlaylistId":1,"TrackId":54} +{"PlaylistId":1,"TrackId":55} +{"PlaylistId":1,"TrackId":56} +{"PlaylistId":1,"TrackId":57} +{"PlaylistId":1,"TrackId":58} +{"PlaylistId":1,"TrackId":59} +{"PlaylistId":1,"TrackId":60} +{"PlaylistId":1,"TrackId":61} +{"PlaylistId":1,"TrackId":62} +{"PlaylistId":1,"TrackId":85} +{"PlaylistId":1,"TrackId":86} +{"PlaylistId":1,"TrackId":87} +{"PlaylistId":1,"TrackId":88} +{"PlaylistId":1,"TrackId":89} +{"PlaylistId":1,"TrackId":90} +{"PlaylistId":1,"TrackId":91} +{"PlaylistId":1,"TrackId":92} +{"PlaylistId":1,"TrackId":93} +{"PlaylistId":1,"TrackId":94} +{"PlaylistId":1,"TrackId":95} +{"PlaylistId":1,"TrackId":96} +{"PlaylistId":1,"TrackId":97} +{"PlaylistId":1,"TrackId":98} +{"PlaylistId":1,"TrackId":675} +{"PlaylistId":1,"TrackId":676} +{"PlaylistId":1,"TrackId":677} +{"PlaylistId":1,"TrackId":678} +{"PlaylistId":1,"TrackId":679} +{"PlaylistId":1,"TrackId":680} +{"PlaylistId":1,"TrackId":681} +{"PlaylistId":1,"TrackId":682} +{"PlaylistId":1,"TrackId":683} +{"PlaylistId":1,"TrackId":684} +{"PlaylistId":1,"TrackId":685} +{"PlaylistId":1,"TrackId":686} +{"PlaylistId":1,"TrackId":687} +{"PlaylistId":1,"TrackId":688} +{"PlaylistId":1,"TrackId":689} +{"PlaylistId":1,"TrackId":690} +{"PlaylistId":1,"TrackId":691} +{"PlaylistId":1,"TrackId":692} +{"PlaylistId":1,"TrackId":693} +{"PlaylistId":1,"TrackId":694} +{"PlaylistId":1,"TrackId":695} +{"PlaylistId":1,"TrackId":696} +{"PlaylistId":1,"TrackId":697} +{"PlaylistId":1,"TrackId":698} +{"PlaylistId":1,"TrackId":699} +{"PlaylistId":1,"TrackId":700} +{"PlaylistId":1,"TrackId":701} +{"PlaylistId":1,"TrackId":702} +{"PlaylistId":1,"TrackId":703} +{"PlaylistId":1,"TrackId":704} +{"PlaylistId":1,"TrackId":705} +{"PlaylistId":1,"TrackId":706} +{"PlaylistId":1,"TrackId":707} +{"PlaylistId":1,"TrackId":708} +{"PlaylistId":1,"TrackId":709} +{"PlaylistId":1,"TrackId":710} +{"PlaylistId":1,"TrackId":711} +{"PlaylistId":1,"TrackId":712} +{"PlaylistId":1,"TrackId":713} +{"PlaylistId":1,"TrackId":714} +{"PlaylistId":1,"TrackId":2609} +{"PlaylistId":1,"TrackId":2610} +{"PlaylistId":1,"TrackId":2611} +{"PlaylistId":1,"TrackId":2612} +{"PlaylistId":1,"TrackId":2613} +{"PlaylistId":1,"TrackId":2614} +{"PlaylistId":1,"TrackId":2615} +{"PlaylistId":1,"TrackId":2616} +{"PlaylistId":1,"TrackId":2617} +{"PlaylistId":1,"TrackId":2618} +{"PlaylistId":1,"TrackId":2619} +{"PlaylistId":1,"TrackId":2620} +{"PlaylistId":1,"TrackId":2621} +{"PlaylistId":1,"TrackId":2622} +{"PlaylistId":1,"TrackId":2623} +{"PlaylistId":1,"TrackId":2624} +{"PlaylistId":1,"TrackId":2625} +{"PlaylistId":1,"TrackId":2626} +{"PlaylistId":1,"TrackId":2627} +{"PlaylistId":1,"TrackId":2628} +{"PlaylistId":1,"TrackId":2629} +{"PlaylistId":1,"TrackId":2630} +{"PlaylistId":1,"TrackId":2631} +{"PlaylistId":1,"TrackId":2632} +{"PlaylistId":1,"TrackId":2633} +{"PlaylistId":1,"TrackId":2634} +{"PlaylistId":1,"TrackId":2635} +{"PlaylistId":1,"TrackId":2636} +{"PlaylistId":1,"TrackId":2637} +{"PlaylistId":1,"TrackId":2638} +{"PlaylistId":1,"TrackId":489} +{"PlaylistId":1,"TrackId":490} +{"PlaylistId":1,"TrackId":491} +{"PlaylistId":1,"TrackId":492} +{"PlaylistId":1,"TrackId":493} +{"PlaylistId":1,"TrackId":494} +{"PlaylistId":1,"TrackId":495} +{"PlaylistId":1,"TrackId":496} +{"PlaylistId":1,"TrackId":497} +{"PlaylistId":1,"TrackId":498} +{"PlaylistId":1,"TrackId":499} +{"PlaylistId":1,"TrackId":500} +{"PlaylistId":1,"TrackId":816} +{"PlaylistId":1,"TrackId":817} +{"PlaylistId":1,"TrackId":818} +{"PlaylistId":1,"TrackId":819} +{"PlaylistId":1,"TrackId":820} +{"PlaylistId":1,"TrackId":821} +{"PlaylistId":1,"TrackId":822} +{"PlaylistId":1,"TrackId":823} +{"PlaylistId":1,"TrackId":824} +{"PlaylistId":1,"TrackId":825} +{"PlaylistId":1,"TrackId":745} +{"PlaylistId":1,"TrackId":746} +{"PlaylistId":1,"TrackId":747} +{"PlaylistId":1,"TrackId":748} +{"PlaylistId":1,"TrackId":749} +{"PlaylistId":1,"TrackId":750} +{"PlaylistId":1,"TrackId":751} +{"PlaylistId":1,"TrackId":752} +{"PlaylistId":1,"TrackId":753} +{"PlaylistId":1,"TrackId":754} +{"PlaylistId":1,"TrackId":755} +{"PlaylistId":1,"TrackId":756} +{"PlaylistId":1,"TrackId":757} +{"PlaylistId":1,"TrackId":758} +{"PlaylistId":1,"TrackId":759} +{"PlaylistId":1,"TrackId":760} +{"PlaylistId":1,"TrackId":620} +{"PlaylistId":1,"TrackId":621} +{"PlaylistId":1,"TrackId":622} +{"PlaylistId":1,"TrackId":623} +{"PlaylistId":1,"TrackId":761} +{"PlaylistId":1,"TrackId":762} +{"PlaylistId":1,"TrackId":763} +{"PlaylistId":1,"TrackId":764} +{"PlaylistId":1,"TrackId":765} +{"PlaylistId":1,"TrackId":766} +{"PlaylistId":1,"TrackId":767} +{"PlaylistId":1,"TrackId":768} +{"PlaylistId":1,"TrackId":769} +{"PlaylistId":1,"TrackId":770} +{"PlaylistId":1,"TrackId":771} +{"PlaylistId":1,"TrackId":772} +{"PlaylistId":1,"TrackId":773} +{"PlaylistId":1,"TrackId":774} +{"PlaylistId":1,"TrackId":775} +{"PlaylistId":1,"TrackId":776} +{"PlaylistId":1,"TrackId":777} +{"PlaylistId":1,"TrackId":778} +{"PlaylistId":1,"TrackId":779} +{"PlaylistId":1,"TrackId":780} +{"PlaylistId":1,"TrackId":781} +{"PlaylistId":1,"TrackId":782} +{"PlaylistId":1,"TrackId":783} +{"PlaylistId":1,"TrackId":784} +{"PlaylistId":1,"TrackId":785} +{"PlaylistId":1,"TrackId":543} +{"PlaylistId":1,"TrackId":544} +{"PlaylistId":1,"TrackId":545} +{"PlaylistId":1,"TrackId":546} +{"PlaylistId":1,"TrackId":547} +{"PlaylistId":1,"TrackId":548} +{"PlaylistId":1,"TrackId":549} +{"PlaylistId":1,"TrackId":786} +{"PlaylistId":1,"TrackId":787} +{"PlaylistId":1,"TrackId":788} +{"PlaylistId":1,"TrackId":789} +{"PlaylistId":1,"TrackId":790} +{"PlaylistId":1,"TrackId":791} +{"PlaylistId":1,"TrackId":792} +{"PlaylistId":1,"TrackId":793} +{"PlaylistId":1,"TrackId":794} +{"PlaylistId":1,"TrackId":795} +{"PlaylistId":1,"TrackId":796} +{"PlaylistId":1,"TrackId":797} +{"PlaylistId":1,"TrackId":798} +{"PlaylistId":1,"TrackId":799} +{"PlaylistId":1,"TrackId":800} +{"PlaylistId":1,"TrackId":801} +{"PlaylistId":1,"TrackId":802} +{"PlaylistId":1,"TrackId":803} +{"PlaylistId":1,"TrackId":804} +{"PlaylistId":1,"TrackId":805} +{"PlaylistId":1,"TrackId":806} +{"PlaylistId":1,"TrackId":807} +{"PlaylistId":1,"TrackId":808} +{"PlaylistId":1,"TrackId":809} +{"PlaylistId":1,"TrackId":810} +{"PlaylistId":1,"TrackId":811} +{"PlaylistId":1,"TrackId":812} +{"PlaylistId":1,"TrackId":813} +{"PlaylistId":1,"TrackId":814} +{"PlaylistId":1,"TrackId":815} +{"PlaylistId":1,"TrackId":826} +{"PlaylistId":1,"TrackId":827} +{"PlaylistId":1,"TrackId":828} +{"PlaylistId":1,"TrackId":829} +{"PlaylistId":1,"TrackId":830} +{"PlaylistId":1,"TrackId":831} +{"PlaylistId":1,"TrackId":832} +{"PlaylistId":1,"TrackId":833} +{"PlaylistId":1,"TrackId":834} +{"PlaylistId":1,"TrackId":835} +{"PlaylistId":1,"TrackId":836} +{"PlaylistId":1,"TrackId":837} +{"PlaylistId":1,"TrackId":838} +{"PlaylistId":1,"TrackId":839} +{"PlaylistId":1,"TrackId":840} +{"PlaylistId":1,"TrackId":841} +{"PlaylistId":1,"TrackId":2639} +{"PlaylistId":1,"TrackId":2640} +{"PlaylistId":1,"TrackId":2641} +{"PlaylistId":1,"TrackId":2642} +{"PlaylistId":1,"TrackId":2643} +{"PlaylistId":1,"TrackId":2644} +{"PlaylistId":1,"TrackId":2645} +{"PlaylistId":1,"TrackId":2646} +{"PlaylistId":1,"TrackId":2647} +{"PlaylistId":1,"TrackId":2648} +{"PlaylistId":1,"TrackId":2649} +{"PlaylistId":1,"TrackId":3225} +{"PlaylistId":1,"TrackId":949} +{"PlaylistId":1,"TrackId":950} +{"PlaylistId":1,"TrackId":951} +{"PlaylistId":1,"TrackId":952} +{"PlaylistId":1,"TrackId":953} +{"PlaylistId":1,"TrackId":954} +{"PlaylistId":1,"TrackId":955} +{"PlaylistId":1,"TrackId":956} +{"PlaylistId":1,"TrackId":957} +{"PlaylistId":1,"TrackId":958} +{"PlaylistId":1,"TrackId":959} +{"PlaylistId":1,"TrackId":960} +{"PlaylistId":1,"TrackId":961} +{"PlaylistId":1,"TrackId":962} +{"PlaylistId":1,"TrackId":963} +{"PlaylistId":1,"TrackId":1020} +{"PlaylistId":1,"TrackId":1021} +{"PlaylistId":1,"TrackId":1022} +{"PlaylistId":1,"TrackId":1023} +{"PlaylistId":1,"TrackId":1024} +{"PlaylistId":1,"TrackId":1025} +{"PlaylistId":1,"TrackId":1026} +{"PlaylistId":1,"TrackId":1027} +{"PlaylistId":1,"TrackId":1028} +{"PlaylistId":1,"TrackId":1029} +{"PlaylistId":1,"TrackId":1030} +{"PlaylistId":1,"TrackId":1031} +{"PlaylistId":1,"TrackId":1032} +{"PlaylistId":1,"TrackId":989} +{"PlaylistId":1,"TrackId":990} +{"PlaylistId":1,"TrackId":991} +{"PlaylistId":1,"TrackId":992} +{"PlaylistId":1,"TrackId":993} +{"PlaylistId":1,"TrackId":994} +{"PlaylistId":1,"TrackId":995} +{"PlaylistId":1,"TrackId":996} +{"PlaylistId":1,"TrackId":997} +{"PlaylistId":1,"TrackId":998} +{"PlaylistId":1,"TrackId":999} +{"PlaylistId":1,"TrackId":1000} +{"PlaylistId":1,"TrackId":1001} +{"PlaylistId":1,"TrackId":1002} +{"PlaylistId":1,"TrackId":1003} +{"PlaylistId":1,"TrackId":1004} +{"PlaylistId":1,"TrackId":1005} +{"PlaylistId":1,"TrackId":1006} +{"PlaylistId":1,"TrackId":1007} +{"PlaylistId":1,"TrackId":1008} +{"PlaylistId":1,"TrackId":351} +{"PlaylistId":1,"TrackId":352} +{"PlaylistId":1,"TrackId":353} +{"PlaylistId":1,"TrackId":354} +{"PlaylistId":1,"TrackId":355} +{"PlaylistId":1,"TrackId":356} +{"PlaylistId":1,"TrackId":357} +{"PlaylistId":1,"TrackId":358} +{"PlaylistId":1,"TrackId":359} +{"PlaylistId":1,"TrackId":1146} +{"PlaylistId":1,"TrackId":1147} +{"PlaylistId":1,"TrackId":1148} +{"PlaylistId":1,"TrackId":1149} +{"PlaylistId":1,"TrackId":1150} +{"PlaylistId":1,"TrackId":1151} +{"PlaylistId":1,"TrackId":1152} +{"PlaylistId":1,"TrackId":1153} +{"PlaylistId":1,"TrackId":1154} +{"PlaylistId":1,"TrackId":1155} +{"PlaylistId":1,"TrackId":1156} +{"PlaylistId":1,"TrackId":1157} +{"PlaylistId":1,"TrackId":1158} +{"PlaylistId":1,"TrackId":1159} +{"PlaylistId":1,"TrackId":1160} +{"PlaylistId":1,"TrackId":1161} +{"PlaylistId":1,"TrackId":1162} +{"PlaylistId":1,"TrackId":1163} +{"PlaylistId":1,"TrackId":1164} +{"PlaylistId":1,"TrackId":1165} +{"PlaylistId":1,"TrackId":1166} +{"PlaylistId":1,"TrackId":1167} +{"PlaylistId":1,"TrackId":1168} +{"PlaylistId":1,"TrackId":1169} +{"PlaylistId":1,"TrackId":1170} +{"PlaylistId":1,"TrackId":1171} +{"PlaylistId":1,"TrackId":1172} +{"PlaylistId":1,"TrackId":1173} +{"PlaylistId":1,"TrackId":1235} +{"PlaylistId":1,"TrackId":1236} +{"PlaylistId":1,"TrackId":1237} +{"PlaylistId":1,"TrackId":1238} +{"PlaylistId":1,"TrackId":1239} +{"PlaylistId":1,"TrackId":1240} +{"PlaylistId":1,"TrackId":1241} +{"PlaylistId":1,"TrackId":1242} +{"PlaylistId":1,"TrackId":1243} +{"PlaylistId":1,"TrackId":1244} +{"PlaylistId":1,"TrackId":1256} +{"PlaylistId":1,"TrackId":1257} +{"PlaylistId":1,"TrackId":1258} +{"PlaylistId":1,"TrackId":1259} +{"PlaylistId":1,"TrackId":1260} +{"PlaylistId":1,"TrackId":1261} +{"PlaylistId":1,"TrackId":1262} +{"PlaylistId":1,"TrackId":1263} +{"PlaylistId":1,"TrackId":1264} +{"PlaylistId":1,"TrackId":1265} +{"PlaylistId":1,"TrackId":1266} +{"PlaylistId":1,"TrackId":1267} +{"PlaylistId":1,"TrackId":1305} +{"PlaylistId":1,"TrackId":1306} +{"PlaylistId":1,"TrackId":1307} +{"PlaylistId":1,"TrackId":1308} +{"PlaylistId":1,"TrackId":1309} +{"PlaylistId":1,"TrackId":1310} +{"PlaylistId":1,"TrackId":1311} +{"PlaylistId":1,"TrackId":1312} +{"PlaylistId":1,"TrackId":1313} +{"PlaylistId":1,"TrackId":1314} +{"PlaylistId":1,"TrackId":1315} +{"PlaylistId":1,"TrackId":1316} +{"PlaylistId":1,"TrackId":1317} +{"PlaylistId":1,"TrackId":1318} +{"PlaylistId":1,"TrackId":1319} +{"PlaylistId":1,"TrackId":1320} +{"PlaylistId":1,"TrackId":1321} +{"PlaylistId":1,"TrackId":1322} +{"PlaylistId":1,"TrackId":1323} +{"PlaylistId":1,"TrackId":1324} +{"PlaylistId":1,"TrackId":1201} +{"PlaylistId":1,"TrackId":1202} +{"PlaylistId":1,"TrackId":1203} +{"PlaylistId":1,"TrackId":1204} +{"PlaylistId":1,"TrackId":1205} +{"PlaylistId":1,"TrackId":1206} +{"PlaylistId":1,"TrackId":1207} +{"PlaylistId":1,"TrackId":1208} +{"PlaylistId":1,"TrackId":1209} +{"PlaylistId":1,"TrackId":1210} +{"PlaylistId":1,"TrackId":1211} +{"PlaylistId":1,"TrackId":1393} +{"PlaylistId":1,"TrackId":1362} +{"PlaylistId":1,"TrackId":1363} +{"PlaylistId":1,"TrackId":1365} +{"PlaylistId":1,"TrackId":1366} +{"PlaylistId":1,"TrackId":1367} +{"PlaylistId":1,"TrackId":1368} +{"PlaylistId":1,"TrackId":1369} +{"PlaylistId":1,"TrackId":1370} +{"PlaylistId":1,"TrackId":1406} +{"PlaylistId":1,"TrackId":1407} +{"PlaylistId":1,"TrackId":1408} +{"PlaylistId":1,"TrackId":1409} +{"PlaylistId":1,"TrackId":1410} +{"PlaylistId":1,"TrackId":1411} +{"PlaylistId":1,"TrackId":1412} +{"PlaylistId":1,"TrackId":1413} +{"PlaylistId":1,"TrackId":1395} +{"PlaylistId":1,"TrackId":1396} +{"PlaylistId":1,"TrackId":1397} +{"PlaylistId":1,"TrackId":1398} +{"PlaylistId":1,"TrackId":1399} +{"PlaylistId":1,"TrackId":1400} +{"PlaylistId":1,"TrackId":1401} +{"PlaylistId":1,"TrackId":1402} +{"PlaylistId":1,"TrackId":1403} +{"PlaylistId":1,"TrackId":1404} +{"PlaylistId":1,"TrackId":1405} +{"PlaylistId":1,"TrackId":1434} +{"PlaylistId":1,"TrackId":1435} +{"PlaylistId":1,"TrackId":1436} +{"PlaylistId":1,"TrackId":1437} +{"PlaylistId":1,"TrackId":1438} +{"PlaylistId":1,"TrackId":1439} +{"PlaylistId":1,"TrackId":1440} +{"PlaylistId":1,"TrackId":1441} +{"PlaylistId":1,"TrackId":1442} +{"PlaylistId":1,"TrackId":1443} +{"PlaylistId":1,"TrackId":1479} +{"PlaylistId":1,"TrackId":1480} +{"PlaylistId":1,"TrackId":1481} +{"PlaylistId":1,"TrackId":1482} +{"PlaylistId":1,"TrackId":1483} +{"PlaylistId":1,"TrackId":1484} +{"PlaylistId":1,"TrackId":1485} +{"PlaylistId":1,"TrackId":1486} +{"PlaylistId":1,"TrackId":1487} +{"PlaylistId":1,"TrackId":1488} +{"PlaylistId":1,"TrackId":1489} +{"PlaylistId":1,"TrackId":1490} +{"PlaylistId":1,"TrackId":1491} +{"PlaylistId":1,"TrackId":1492} +{"PlaylistId":1,"TrackId":1493} +{"PlaylistId":1,"TrackId":1494} +{"PlaylistId":1,"TrackId":1495} +{"PlaylistId":1,"TrackId":1496} +{"PlaylistId":1,"TrackId":1497} +{"PlaylistId":1,"TrackId":1498} +{"PlaylistId":1,"TrackId":1499} +{"PlaylistId":1,"TrackId":1500} +{"PlaylistId":1,"TrackId":1501} +{"PlaylistId":1,"TrackId":1502} +{"PlaylistId":1,"TrackId":1503} +{"PlaylistId":1,"TrackId":1504} +{"PlaylistId":1,"TrackId":1505} +{"PlaylistId":1,"TrackId":436} +{"PlaylistId":1,"TrackId":437} +{"PlaylistId":1,"TrackId":438} +{"PlaylistId":1,"TrackId":439} +{"PlaylistId":1,"TrackId":440} +{"PlaylistId":1,"TrackId":441} +{"PlaylistId":1,"TrackId":442} +{"PlaylistId":1,"TrackId":443} +{"PlaylistId":1,"TrackId":444} +{"PlaylistId":1,"TrackId":445} +{"PlaylistId":1,"TrackId":446} +{"PlaylistId":1,"TrackId":447} +{"PlaylistId":1,"TrackId":448} +{"PlaylistId":1,"TrackId":449} +{"PlaylistId":1,"TrackId":450} +{"PlaylistId":1,"TrackId":451} +{"PlaylistId":1,"TrackId":452} +{"PlaylistId":1,"TrackId":453} +{"PlaylistId":1,"TrackId":454} +{"PlaylistId":1,"TrackId":455} +{"PlaylistId":1,"TrackId":1562} +{"PlaylistId":1,"TrackId":1563} +{"PlaylistId":1,"TrackId":1564} +{"PlaylistId":1,"TrackId":1565} +{"PlaylistId":1,"TrackId":1566} +{"PlaylistId":1,"TrackId":1567} +{"PlaylistId":1,"TrackId":1568} +{"PlaylistId":1,"TrackId":1569} +{"PlaylistId":1,"TrackId":1570} +{"PlaylistId":1,"TrackId":1571} +{"PlaylistId":1,"TrackId":1572} +{"PlaylistId":1,"TrackId":1573} +{"PlaylistId":1,"TrackId":1574} +{"PlaylistId":1,"TrackId":1575} +{"PlaylistId":1,"TrackId":1576} +{"PlaylistId":1,"TrackId":337} +{"PlaylistId":1,"TrackId":338} +{"PlaylistId":1,"TrackId":339} +{"PlaylistId":1,"TrackId":340} +{"PlaylistId":1,"TrackId":341} +{"PlaylistId":1,"TrackId":342} +{"PlaylistId":1,"TrackId":343} +{"PlaylistId":1,"TrackId":344} +{"PlaylistId":1,"TrackId":345} +{"PlaylistId":1,"TrackId":346} +{"PlaylistId":1,"TrackId":347} +{"PlaylistId":1,"TrackId":348} +{"PlaylistId":1,"TrackId":349} +{"PlaylistId":1,"TrackId":350} +{"PlaylistId":1,"TrackId":1577} +{"PlaylistId":1,"TrackId":1578} +{"PlaylistId":1,"TrackId":1579} +{"PlaylistId":1,"TrackId":1580} +{"PlaylistId":1,"TrackId":1581} +{"PlaylistId":1,"TrackId":1582} +{"PlaylistId":1,"TrackId":1583} +{"PlaylistId":1,"TrackId":1584} +{"PlaylistId":1,"TrackId":1585} +{"PlaylistId":1,"TrackId":1586} +{"PlaylistId":1,"TrackId":1587} +{"PlaylistId":1,"TrackId":1588} +{"PlaylistId":1,"TrackId":1589} +{"PlaylistId":1,"TrackId":1590} +{"PlaylistId":1,"TrackId":1591} +{"PlaylistId":1,"TrackId":1592} +{"PlaylistId":1,"TrackId":1593} +{"PlaylistId":1,"TrackId":1594} +{"PlaylistId":1,"TrackId":1595} +{"PlaylistId":1,"TrackId":1596} +{"PlaylistId":1,"TrackId":1597} +{"PlaylistId":1,"TrackId":1598} +{"PlaylistId":1,"TrackId":1599} +{"PlaylistId":1,"TrackId":1600} +{"PlaylistId":1,"TrackId":1601} +{"PlaylistId":1,"TrackId":1602} +{"PlaylistId":1,"TrackId":1603} +{"PlaylistId":1,"TrackId":1604} +{"PlaylistId":1,"TrackId":1605} +{"PlaylistId":1,"TrackId":1606} +{"PlaylistId":1,"TrackId":1607} +{"PlaylistId":1,"TrackId":1608} +{"PlaylistId":1,"TrackId":1609} +{"PlaylistId":1,"TrackId":1610} +{"PlaylistId":1,"TrackId":1611} +{"PlaylistId":1,"TrackId":1612} +{"PlaylistId":1,"TrackId":1613} +{"PlaylistId":1,"TrackId":1614} +{"PlaylistId":1,"TrackId":1615} +{"PlaylistId":1,"TrackId":1616} +{"PlaylistId":1,"TrackId":1617} +{"PlaylistId":1,"TrackId":1618} +{"PlaylistId":1,"TrackId":1619} +{"PlaylistId":1,"TrackId":1620} +{"PlaylistId":1,"TrackId":1621} +{"PlaylistId":1,"TrackId":1622} +{"PlaylistId":1,"TrackId":1623} +{"PlaylistId":1,"TrackId":1624} +{"PlaylistId":1,"TrackId":1625} +{"PlaylistId":1,"TrackId":1626} +{"PlaylistId":1,"TrackId":1627} +{"PlaylistId":1,"TrackId":1628} +{"PlaylistId":1,"TrackId":1629} +{"PlaylistId":1,"TrackId":1630} +{"PlaylistId":1,"TrackId":1631} +{"PlaylistId":1,"TrackId":1632} +{"PlaylistId":1,"TrackId":1633} +{"PlaylistId":1,"TrackId":1634} +{"PlaylistId":1,"TrackId":1635} +{"PlaylistId":1,"TrackId":1636} +{"PlaylistId":1,"TrackId":1637} +{"PlaylistId":1,"TrackId":1638} +{"PlaylistId":1,"TrackId":1639} +{"PlaylistId":1,"TrackId":1640} +{"PlaylistId":1,"TrackId":1641} +{"PlaylistId":1,"TrackId":1642} +{"PlaylistId":1,"TrackId":1643} +{"PlaylistId":1,"TrackId":1644} +{"PlaylistId":1,"TrackId":1645} +{"PlaylistId":1,"TrackId":550} +{"PlaylistId":1,"TrackId":551} +{"PlaylistId":1,"TrackId":552} +{"PlaylistId":1,"TrackId":553} +{"PlaylistId":1,"TrackId":554} +{"PlaylistId":1,"TrackId":555} +{"PlaylistId":1,"TrackId":1646} +{"PlaylistId":1,"TrackId":1647} +{"PlaylistId":1,"TrackId":1648} +{"PlaylistId":1,"TrackId":1649} +{"PlaylistId":1,"TrackId":1650} +{"PlaylistId":1,"TrackId":1651} +{"PlaylistId":1,"TrackId":1652} +{"PlaylistId":1,"TrackId":1653} +{"PlaylistId":1,"TrackId":1654} +{"PlaylistId":1,"TrackId":1655} +{"PlaylistId":1,"TrackId":1656} +{"PlaylistId":1,"TrackId":1657} +{"PlaylistId":1,"TrackId":1658} +{"PlaylistId":1,"TrackId":1659} +{"PlaylistId":1,"TrackId":1660} +{"PlaylistId":1,"TrackId":1661} +{"PlaylistId":1,"TrackId":1662} +{"PlaylistId":1,"TrackId":1663} +{"PlaylistId":1,"TrackId":1664} +{"PlaylistId":1,"TrackId":1665} +{"PlaylistId":1,"TrackId":1666} +{"PlaylistId":1,"TrackId":1667} +{"PlaylistId":1,"TrackId":1668} +{"PlaylistId":1,"TrackId":1669} +{"PlaylistId":1,"TrackId":1670} +{"PlaylistId":1,"TrackId":1702} +{"PlaylistId":1,"TrackId":1703} +{"PlaylistId":1,"TrackId":1704} +{"PlaylistId":1,"TrackId":1705} +{"PlaylistId":1,"TrackId":1706} +{"PlaylistId":1,"TrackId":1707} +{"PlaylistId":1,"TrackId":1708} +{"PlaylistId":1,"TrackId":1709} +{"PlaylistId":1,"TrackId":1710} +{"PlaylistId":1,"TrackId":1711} +{"PlaylistId":1,"TrackId":1712} +{"PlaylistId":1,"TrackId":1713} +{"PlaylistId":1,"TrackId":1714} +{"PlaylistId":1,"TrackId":1715} +{"PlaylistId":1,"TrackId":1716} +{"PlaylistId":1,"TrackId":1745} +{"PlaylistId":1,"TrackId":1746} +{"PlaylistId":1,"TrackId":1747} +{"PlaylistId":1,"TrackId":1748} +{"PlaylistId":1,"TrackId":1749} +{"PlaylistId":1,"TrackId":1750} +{"PlaylistId":1,"TrackId":1751} +{"PlaylistId":1,"TrackId":1752} +{"PlaylistId":1,"TrackId":1753} +{"PlaylistId":1,"TrackId":1754} +{"PlaylistId":1,"TrackId":1791} +{"PlaylistId":1,"TrackId":1792} +{"PlaylistId":1,"TrackId":1793} +{"PlaylistId":1,"TrackId":1794} +{"PlaylistId":1,"TrackId":1795} +{"PlaylistId":1,"TrackId":1796} +{"PlaylistId":1,"TrackId":1797} +{"PlaylistId":1,"TrackId":1798} +{"PlaylistId":1,"TrackId":1799} +{"PlaylistId":1,"TrackId":1800} +{"PlaylistId":1,"TrackId":1986} +{"PlaylistId":1,"TrackId":1987} +{"PlaylistId":1,"TrackId":1988} +{"PlaylistId":1,"TrackId":1989} +{"PlaylistId":1,"TrackId":1990} +{"PlaylistId":1,"TrackId":1991} +{"PlaylistId":1,"TrackId":1992} +{"PlaylistId":1,"TrackId":1993} +{"PlaylistId":1,"TrackId":1994} +{"PlaylistId":1,"TrackId":1995} +{"PlaylistId":1,"TrackId":1996} +{"PlaylistId":1,"TrackId":1997} +{"PlaylistId":1,"TrackId":1998} +{"PlaylistId":1,"TrackId":1999} +{"PlaylistId":1,"TrackId":2000} +{"PlaylistId":1,"TrackId":2001} +{"PlaylistId":1,"TrackId":2002} +{"PlaylistId":1,"TrackId":2003} +{"PlaylistId":1,"TrackId":2004} +{"PlaylistId":1,"TrackId":2005} +{"PlaylistId":1,"TrackId":2006} +{"PlaylistId":1,"TrackId":2007} +{"PlaylistId":1,"TrackId":2008} +{"PlaylistId":1,"TrackId":2009} +{"PlaylistId":1,"TrackId":2010} +{"PlaylistId":1,"TrackId":2011} +{"PlaylistId":1,"TrackId":2012} +{"PlaylistId":1,"TrackId":2013} +{"PlaylistId":1,"TrackId":2014} +{"PlaylistId":1,"TrackId":2015} +{"PlaylistId":1,"TrackId":2016} +{"PlaylistId":1,"TrackId":2017} +{"PlaylistId":1,"TrackId":2018} +{"PlaylistId":1,"TrackId":2019} +{"PlaylistId":1,"TrackId":2020} +{"PlaylistId":1,"TrackId":2021} +{"PlaylistId":1,"TrackId":2022} +{"PlaylistId":1,"TrackId":2023} +{"PlaylistId":1,"TrackId":2024} +{"PlaylistId":1,"TrackId":2025} +{"PlaylistId":1,"TrackId":2026} +{"PlaylistId":1,"TrackId":2027} +{"PlaylistId":1,"TrackId":2028} +{"PlaylistId":1,"TrackId":2029} +{"PlaylistId":1,"TrackId":2093} +{"PlaylistId":1,"TrackId":2094} +{"PlaylistId":1,"TrackId":2095} +{"PlaylistId":1,"TrackId":2096} +{"PlaylistId":1,"TrackId":2097} +{"PlaylistId":1,"TrackId":2098} +{"PlaylistId":1,"TrackId":3276} +{"PlaylistId":1,"TrackId":3277} +{"PlaylistId":1,"TrackId":3278} +{"PlaylistId":1,"TrackId":3279} +{"PlaylistId":1,"TrackId":3280} +{"PlaylistId":1,"TrackId":3281} +{"PlaylistId":1,"TrackId":3282} +{"PlaylistId":1,"TrackId":3283} +{"PlaylistId":1,"TrackId":3284} +{"PlaylistId":1,"TrackId":3285} +{"PlaylistId":1,"TrackId":3286} +{"PlaylistId":1,"TrackId":3287} +{"PlaylistId":1,"TrackId":2113} +{"PlaylistId":1,"TrackId":2114} +{"PlaylistId":1,"TrackId":2115} +{"PlaylistId":1,"TrackId":2116} +{"PlaylistId":1,"TrackId":2117} +{"PlaylistId":1,"TrackId":2118} +{"PlaylistId":1,"TrackId":2119} +{"PlaylistId":1,"TrackId":2120} +{"PlaylistId":1,"TrackId":2121} +{"PlaylistId":1,"TrackId":2122} +{"PlaylistId":1,"TrackId":2123} +{"PlaylistId":1,"TrackId":2124} +{"PlaylistId":1,"TrackId":2139} +{"PlaylistId":1,"TrackId":2140} +{"PlaylistId":1,"TrackId":2141} +{"PlaylistId":1,"TrackId":2142} +{"PlaylistId":1,"TrackId":2143} +{"PlaylistId":1,"TrackId":2144} +{"PlaylistId":1,"TrackId":2145} +{"PlaylistId":1,"TrackId":2146} +{"PlaylistId":1,"TrackId":2147} +{"PlaylistId":1,"TrackId":2148} +{"PlaylistId":1,"TrackId":2149} +{"PlaylistId":1,"TrackId":2150} +{"PlaylistId":1,"TrackId":2151} +{"PlaylistId":1,"TrackId":2152} +{"PlaylistId":1,"TrackId":2153} +{"PlaylistId":1,"TrackId":2154} +{"PlaylistId":1,"TrackId":2155} +{"PlaylistId":1,"TrackId":2156} +{"PlaylistId":1,"TrackId":2157} +{"PlaylistId":1,"TrackId":2158} +{"PlaylistId":1,"TrackId":2159} +{"PlaylistId":1,"TrackId":2160} +{"PlaylistId":1,"TrackId":2161} +{"PlaylistId":1,"TrackId":2162} +{"PlaylistId":1,"TrackId":2163} +{"PlaylistId":1,"TrackId":2164} +{"PlaylistId":1,"TrackId":2178} +{"PlaylistId":1,"TrackId":2179} +{"PlaylistId":1,"TrackId":2180} +{"PlaylistId":1,"TrackId":2181} +{"PlaylistId":1,"TrackId":2182} +{"PlaylistId":1,"TrackId":2183} +{"PlaylistId":1,"TrackId":2184} +{"PlaylistId":1,"TrackId":2185} +{"PlaylistId":1,"TrackId":2186} +{"PlaylistId":1,"TrackId":2187} +{"PlaylistId":1,"TrackId":2188} +{"PlaylistId":1,"TrackId":2189} +{"PlaylistId":1,"TrackId":2190} +{"PlaylistId":1,"TrackId":2191} +{"PlaylistId":1,"TrackId":2192} +{"PlaylistId":1,"TrackId":2193} +{"PlaylistId":1,"TrackId":2194} +{"PlaylistId":1,"TrackId":2195} +{"PlaylistId":1,"TrackId":2196} +{"PlaylistId":1,"TrackId":2197} +{"PlaylistId":1,"TrackId":2198} +{"PlaylistId":1,"TrackId":2199} +{"PlaylistId":1,"TrackId":2200} +{"PlaylistId":1,"TrackId":2201} +{"PlaylistId":1,"TrackId":2202} +{"PlaylistId":1,"TrackId":2203} +{"PlaylistId":1,"TrackId":2204} +{"PlaylistId":1,"TrackId":2205} +{"PlaylistId":1,"TrackId":2206} +{"PlaylistId":1,"TrackId":2207} +{"PlaylistId":1,"TrackId":2208} +{"PlaylistId":1,"TrackId":2209} +{"PlaylistId":1,"TrackId":2210} +{"PlaylistId":1,"TrackId":2211} +{"PlaylistId":1,"TrackId":2212} +{"PlaylistId":1,"TrackId":2213} +{"PlaylistId":1,"TrackId":2214} +{"PlaylistId":1,"TrackId":2215} +{"PlaylistId":1,"TrackId":2229} +{"PlaylistId":1,"TrackId":2230} +{"PlaylistId":1,"TrackId":2231} +{"PlaylistId":1,"TrackId":2232} +{"PlaylistId":1,"TrackId":2233} +{"PlaylistId":1,"TrackId":2234} +{"PlaylistId":1,"TrackId":2235} +{"PlaylistId":1,"TrackId":2236} +{"PlaylistId":1,"TrackId":2237} +{"PlaylistId":1,"TrackId":2650} +{"PlaylistId":1,"TrackId":2651} +{"PlaylistId":1,"TrackId":2652} +{"PlaylistId":1,"TrackId":2653} +{"PlaylistId":1,"TrackId":2654} +{"PlaylistId":1,"TrackId":2655} +{"PlaylistId":1,"TrackId":2656} +{"PlaylistId":1,"TrackId":2657} +{"PlaylistId":1,"TrackId":2658} +{"PlaylistId":1,"TrackId":2659} +{"PlaylistId":1,"TrackId":2660} +{"PlaylistId":1,"TrackId":2661} +{"PlaylistId":1,"TrackId":2662} +{"PlaylistId":1,"TrackId":2663} +{"PlaylistId":1,"TrackId":3353} +{"PlaylistId":1,"TrackId":3355} +{"PlaylistId":1,"TrackId":2254} +{"PlaylistId":1,"TrackId":2255} +{"PlaylistId":1,"TrackId":2256} +{"PlaylistId":1,"TrackId":2257} +{"PlaylistId":1,"TrackId":2258} +{"PlaylistId":1,"TrackId":2259} +{"PlaylistId":1,"TrackId":2260} +{"PlaylistId":1,"TrackId":2261} +{"PlaylistId":1,"TrackId":2262} +{"PlaylistId":1,"TrackId":2263} +{"PlaylistId":1,"TrackId":2264} +{"PlaylistId":1,"TrackId":2265} +{"PlaylistId":1,"TrackId":2266} +{"PlaylistId":1,"TrackId":2267} +{"PlaylistId":1,"TrackId":2268} +{"PlaylistId":1,"TrackId":2269} +{"PlaylistId":1,"TrackId":2270} +{"PlaylistId":1,"TrackId":419} +{"PlaylistId":1,"TrackId":420} +{"PlaylistId":1,"TrackId":421} +{"PlaylistId":1,"TrackId":422} +{"PlaylistId":1,"TrackId":423} +{"PlaylistId":1,"TrackId":424} +{"PlaylistId":1,"TrackId":425} +{"PlaylistId":1,"TrackId":426} +{"PlaylistId":1,"TrackId":427} +{"PlaylistId":1,"TrackId":428} +{"PlaylistId":1,"TrackId":429} +{"PlaylistId":1,"TrackId":430} +{"PlaylistId":1,"TrackId":431} +{"PlaylistId":1,"TrackId":432} +{"PlaylistId":1,"TrackId":433} +{"PlaylistId":1,"TrackId":434} +{"PlaylistId":1,"TrackId":435} +{"PlaylistId":1,"TrackId":2271} +{"PlaylistId":1,"TrackId":2272} +{"PlaylistId":1,"TrackId":2273} +{"PlaylistId":1,"TrackId":2274} +{"PlaylistId":1,"TrackId":2275} +{"PlaylistId":1,"TrackId":2276} +{"PlaylistId":1,"TrackId":2277} +{"PlaylistId":1,"TrackId":2278} +{"PlaylistId":1,"TrackId":2279} +{"PlaylistId":1,"TrackId":2280} +{"PlaylistId":1,"TrackId":2281} +{"PlaylistId":1,"TrackId":2296} +{"PlaylistId":1,"TrackId":2297} +{"PlaylistId":1,"TrackId":2298} +{"PlaylistId":1,"TrackId":2299} +{"PlaylistId":1,"TrackId":2300} +{"PlaylistId":1,"TrackId":2301} +{"PlaylistId":1,"TrackId":2302} +{"PlaylistId":1,"TrackId":2303} +{"PlaylistId":1,"TrackId":2304} +{"PlaylistId":1,"TrackId":2305} +{"PlaylistId":1,"TrackId":2306} +{"PlaylistId":1,"TrackId":2307} +{"PlaylistId":1,"TrackId":2308} +{"PlaylistId":1,"TrackId":2309} +{"PlaylistId":1,"TrackId":2344} +{"PlaylistId":1,"TrackId":2345} +{"PlaylistId":1,"TrackId":2346} +{"PlaylistId":1,"TrackId":2347} +{"PlaylistId":1,"TrackId":2348} +{"PlaylistId":1,"TrackId":2349} +{"PlaylistId":1,"TrackId":2350} +{"PlaylistId":1,"TrackId":2351} +{"PlaylistId":1,"TrackId":2352} +{"PlaylistId":1,"TrackId":2353} +{"PlaylistId":1,"TrackId":2354} +{"PlaylistId":1,"TrackId":2355} +{"PlaylistId":1,"TrackId":2356} +{"PlaylistId":1,"TrackId":2357} +{"PlaylistId":1,"TrackId":2375} +{"PlaylistId":1,"TrackId":2376} +{"PlaylistId":1,"TrackId":2377} +{"PlaylistId":1,"TrackId":2378} +{"PlaylistId":1,"TrackId":2379} +{"PlaylistId":1,"TrackId":2380} +{"PlaylistId":1,"TrackId":2381} +{"PlaylistId":1,"TrackId":2382} +{"PlaylistId":1,"TrackId":2383} +{"PlaylistId":1,"TrackId":2384} +{"PlaylistId":1,"TrackId":2385} +{"PlaylistId":1,"TrackId":2386} +{"PlaylistId":1,"TrackId":2387} +{"PlaylistId":1,"TrackId":2388} +{"PlaylistId":1,"TrackId":2389} +{"PlaylistId":1,"TrackId":2390} +{"PlaylistId":1,"TrackId":2391} +{"PlaylistId":1,"TrackId":2392} +{"PlaylistId":1,"TrackId":2393} +{"PlaylistId":1,"TrackId":2394} +{"PlaylistId":1,"TrackId":2395} +{"PlaylistId":1,"TrackId":2396} +{"PlaylistId":1,"TrackId":2397} +{"PlaylistId":1,"TrackId":2398} +{"PlaylistId":1,"TrackId":2399} +{"PlaylistId":1,"TrackId":2400} +{"PlaylistId":1,"TrackId":2401} +{"PlaylistId":1,"TrackId":2402} +{"PlaylistId":1,"TrackId":2403} +{"PlaylistId":1,"TrackId":2404} +{"PlaylistId":1,"TrackId":2405} +{"PlaylistId":1,"TrackId":2664} +{"PlaylistId":1,"TrackId":2665} +{"PlaylistId":1,"TrackId":2666} +{"PlaylistId":1,"TrackId":2667} +{"PlaylistId":1,"TrackId":2668} +{"PlaylistId":1,"TrackId":2669} +{"PlaylistId":1,"TrackId":2670} +{"PlaylistId":1,"TrackId":2671} +{"PlaylistId":1,"TrackId":2672} +{"PlaylistId":1,"TrackId":2673} +{"PlaylistId":1,"TrackId":2674} +{"PlaylistId":1,"TrackId":2675} +{"PlaylistId":1,"TrackId":2676} +{"PlaylistId":1,"TrackId":2677} +{"PlaylistId":1,"TrackId":2678} +{"PlaylistId":1,"TrackId":2679} +{"PlaylistId":1,"TrackId":2680} +{"PlaylistId":1,"TrackId":2681} +{"PlaylistId":1,"TrackId":2682} +{"PlaylistId":1,"TrackId":2683} +{"PlaylistId":1,"TrackId":2684} +{"PlaylistId":1,"TrackId":2685} +{"PlaylistId":1,"TrackId":2686} +{"PlaylistId":1,"TrackId":2687} +{"PlaylistId":1,"TrackId":2688} +{"PlaylistId":1,"TrackId":2689} +{"PlaylistId":1,"TrackId":2690} +{"PlaylistId":1,"TrackId":2691} +{"PlaylistId":1,"TrackId":2692} +{"PlaylistId":1,"TrackId":2693} +{"PlaylistId":1,"TrackId":2694} +{"PlaylistId":1,"TrackId":2695} +{"PlaylistId":1,"TrackId":2696} +{"PlaylistId":1,"TrackId":2697} +{"PlaylistId":1,"TrackId":2698} +{"PlaylistId":1,"TrackId":2699} +{"PlaylistId":1,"TrackId":2700} +{"PlaylistId":1,"TrackId":2701} +{"PlaylistId":1,"TrackId":2702} +{"PlaylistId":1,"TrackId":2703} +{"PlaylistId":1,"TrackId":2704} +{"PlaylistId":1,"TrackId":2406} +{"PlaylistId":1,"TrackId":2407} +{"PlaylistId":1,"TrackId":2408} +{"PlaylistId":1,"TrackId":2409} +{"PlaylistId":1,"TrackId":2410} +{"PlaylistId":1,"TrackId":2411} +{"PlaylistId":1,"TrackId":2412} +{"PlaylistId":1,"TrackId":2413} +{"PlaylistId":1,"TrackId":2414} +{"PlaylistId":1,"TrackId":2415} +{"PlaylistId":1,"TrackId":2416} +{"PlaylistId":1,"TrackId":2417} +{"PlaylistId":1,"TrackId":2418} +{"PlaylistId":1,"TrackId":2419} +{"PlaylistId":1,"TrackId":2420} +{"PlaylistId":1,"TrackId":2421} +{"PlaylistId":1,"TrackId":2422} +{"PlaylistId":1,"TrackId":2423} +{"PlaylistId":1,"TrackId":2424} +{"PlaylistId":1,"TrackId":2425} +{"PlaylistId":1,"TrackId":2426} +{"PlaylistId":1,"TrackId":2427} +{"PlaylistId":1,"TrackId":2428} +{"PlaylistId":1,"TrackId":2429} +{"PlaylistId":1,"TrackId":2430} +{"PlaylistId":1,"TrackId":2431} +{"PlaylistId":1,"TrackId":2432} +{"PlaylistId":1,"TrackId":2433} +{"PlaylistId":1,"TrackId":570} +{"PlaylistId":1,"TrackId":573} +{"PlaylistId":1,"TrackId":577} +{"PlaylistId":1,"TrackId":580} +{"PlaylistId":1,"TrackId":581} +{"PlaylistId":1,"TrackId":571} +{"PlaylistId":1,"TrackId":579} +{"PlaylistId":1,"TrackId":582} +{"PlaylistId":1,"TrackId":572} +{"PlaylistId":1,"TrackId":575} +{"PlaylistId":1,"TrackId":578} +{"PlaylistId":1,"TrackId":574} +{"PlaylistId":1,"TrackId":576} +{"PlaylistId":1,"TrackId":3288} +{"PlaylistId":1,"TrackId":3289} +{"PlaylistId":1,"TrackId":3290} +{"PlaylistId":1,"TrackId":3291} +{"PlaylistId":1,"TrackId":3292} +{"PlaylistId":1,"TrackId":3293} +{"PlaylistId":1,"TrackId":3294} +{"PlaylistId":1,"TrackId":3295} +{"PlaylistId":1,"TrackId":3296} +{"PlaylistId":1,"TrackId":3297} +{"PlaylistId":1,"TrackId":3298} +{"PlaylistId":1,"TrackId":3299} +{"PlaylistId":1,"TrackId":2434} +{"PlaylistId":1,"TrackId":2435} +{"PlaylistId":1,"TrackId":2436} +{"PlaylistId":1,"TrackId":2437} +{"PlaylistId":1,"TrackId":2438} +{"PlaylistId":1,"TrackId":2439} +{"PlaylistId":1,"TrackId":2440} +{"PlaylistId":1,"TrackId":2441} +{"PlaylistId":1,"TrackId":2442} +{"PlaylistId":1,"TrackId":2443} +{"PlaylistId":1,"TrackId":2444} +{"PlaylistId":1,"TrackId":2445} +{"PlaylistId":1,"TrackId":2446} +{"PlaylistId":1,"TrackId":2447} +{"PlaylistId":1,"TrackId":2448} +{"PlaylistId":1,"TrackId":2449} +{"PlaylistId":1,"TrackId":2450} +{"PlaylistId":1,"TrackId":2451} +{"PlaylistId":1,"TrackId":2452} +{"PlaylistId":1,"TrackId":2453} +{"PlaylistId":1,"TrackId":2454} +{"PlaylistId":1,"TrackId":2455} +{"PlaylistId":1,"TrackId":2456} +{"PlaylistId":1,"TrackId":2457} +{"PlaylistId":1,"TrackId":2458} +{"PlaylistId":1,"TrackId":2459} +{"PlaylistId":1,"TrackId":2460} +{"PlaylistId":1,"TrackId":2461} +{"PlaylistId":1,"TrackId":2462} +{"PlaylistId":1,"TrackId":2463} +{"PlaylistId":1,"TrackId":2464} +{"PlaylistId":1,"TrackId":2465} +{"PlaylistId":1,"TrackId":2466} +{"PlaylistId":1,"TrackId":2467} +{"PlaylistId":1,"TrackId":2468} +{"PlaylistId":1,"TrackId":2469} +{"PlaylistId":1,"TrackId":2470} +{"PlaylistId":1,"TrackId":2471} +{"PlaylistId":1,"TrackId":2506} +{"PlaylistId":1,"TrackId":2507} +{"PlaylistId":1,"TrackId":2508} +{"PlaylistId":1,"TrackId":2509} +{"PlaylistId":1,"TrackId":2510} +{"PlaylistId":1,"TrackId":2511} +{"PlaylistId":1,"TrackId":2512} +{"PlaylistId":1,"TrackId":2513} +{"PlaylistId":1,"TrackId":2514} +{"PlaylistId":1,"TrackId":2515} +{"PlaylistId":1,"TrackId":2516} +{"PlaylistId":1,"TrackId":2517} +{"PlaylistId":1,"TrackId":2518} +{"PlaylistId":1,"TrackId":2519} +{"PlaylistId":1,"TrackId":2520} +{"PlaylistId":1,"TrackId":2521} +{"PlaylistId":1,"TrackId":2522} +{"PlaylistId":1,"TrackId":2542} +{"PlaylistId":1,"TrackId":2543} +{"PlaylistId":1,"TrackId":2544} +{"PlaylistId":1,"TrackId":2545} +{"PlaylistId":1,"TrackId":2546} +{"PlaylistId":1,"TrackId":2547} +{"PlaylistId":1,"TrackId":2548} +{"PlaylistId":1,"TrackId":2549} +{"PlaylistId":1,"TrackId":2550} +{"PlaylistId":1,"TrackId":2551} +{"PlaylistId":1,"TrackId":2552} +{"PlaylistId":1,"TrackId":2553} +{"PlaylistId":1,"TrackId":2565} +{"PlaylistId":1,"TrackId":2566} +{"PlaylistId":1,"TrackId":2567} +{"PlaylistId":1,"TrackId":2568} +{"PlaylistId":1,"TrackId":2569} +{"PlaylistId":1,"TrackId":2570} +{"PlaylistId":1,"TrackId":2571} +{"PlaylistId":1,"TrackId":2926} +{"PlaylistId":1,"TrackId":2927} +{"PlaylistId":1,"TrackId":2928} +{"PlaylistId":1,"TrackId":2929} +{"PlaylistId":1,"TrackId":2930} +{"PlaylistId":1,"TrackId":2931} +{"PlaylistId":1,"TrackId":2932} +{"PlaylistId":1,"TrackId":2933} +{"PlaylistId":1,"TrackId":2934} +{"PlaylistId":1,"TrackId":2935} +{"PlaylistId":1,"TrackId":2936} +{"PlaylistId":1,"TrackId":2937} +{"PlaylistId":1,"TrackId":2938} +{"PlaylistId":1,"TrackId":2939} +{"PlaylistId":1,"TrackId":2940} +{"PlaylistId":1,"TrackId":2941} +{"PlaylistId":1,"TrackId":2942} +{"PlaylistId":1,"TrackId":2943} +{"PlaylistId":1,"TrackId":2944} +{"PlaylistId":1,"TrackId":2945} +{"PlaylistId":1,"TrackId":2946} +{"PlaylistId":1,"TrackId":2947} +{"PlaylistId":1,"TrackId":2948} +{"PlaylistId":1,"TrackId":2949} +{"PlaylistId":1,"TrackId":2950} +{"PlaylistId":1,"TrackId":2951} +{"PlaylistId":1,"TrackId":2952} +{"PlaylistId":1,"TrackId":2953} +{"PlaylistId":1,"TrackId":2954} +{"PlaylistId":1,"TrackId":2955} +{"PlaylistId":1,"TrackId":2956} +{"PlaylistId":1,"TrackId":2957} +{"PlaylistId":1,"TrackId":2958} +{"PlaylistId":1,"TrackId":2959} +{"PlaylistId":1,"TrackId":2960} +{"PlaylistId":1,"TrackId":2961} +{"PlaylistId":1,"TrackId":2962} +{"PlaylistId":1,"TrackId":2963} +{"PlaylistId":1,"TrackId":3004} +{"PlaylistId":1,"TrackId":3005} +{"PlaylistId":1,"TrackId":3006} +{"PlaylistId":1,"TrackId":3007} +{"PlaylistId":1,"TrackId":3008} +{"PlaylistId":1,"TrackId":3009} +{"PlaylistId":1,"TrackId":3010} +{"PlaylistId":1,"TrackId":3011} +{"PlaylistId":1,"TrackId":3012} +{"PlaylistId":1,"TrackId":3013} +{"PlaylistId":1,"TrackId":3014} +{"PlaylistId":1,"TrackId":3015} +{"PlaylistId":1,"TrackId":3016} +{"PlaylistId":1,"TrackId":3017} +{"PlaylistId":1,"TrackId":2964} +{"PlaylistId":1,"TrackId":2965} +{"PlaylistId":1,"TrackId":2966} +{"PlaylistId":1,"TrackId":2967} +{"PlaylistId":1,"TrackId":2968} +{"PlaylistId":1,"TrackId":2969} +{"PlaylistId":1,"TrackId":2970} +{"PlaylistId":1,"TrackId":2971} +{"PlaylistId":1,"TrackId":2972} +{"PlaylistId":1,"TrackId":2973} +{"PlaylistId":1,"TrackId":2974} +{"PlaylistId":1,"TrackId":2975} +{"PlaylistId":1,"TrackId":2976} +{"PlaylistId":1,"TrackId":2977} +{"PlaylistId":1,"TrackId":2978} +{"PlaylistId":1,"TrackId":2979} +{"PlaylistId":1,"TrackId":2980} +{"PlaylistId":1,"TrackId":2981} +{"PlaylistId":1,"TrackId":2982} +{"PlaylistId":1,"TrackId":2983} +{"PlaylistId":1,"TrackId":2984} +{"PlaylistId":1,"TrackId":2985} +{"PlaylistId":1,"TrackId":2986} +{"PlaylistId":1,"TrackId":2987} +{"PlaylistId":1,"TrackId":2988} +{"PlaylistId":1,"TrackId":2989} +{"PlaylistId":1,"TrackId":2990} +{"PlaylistId":1,"TrackId":2991} +{"PlaylistId":1,"TrackId":2992} +{"PlaylistId":1,"TrackId":2993} +{"PlaylistId":1,"TrackId":2994} +{"PlaylistId":1,"TrackId":2995} +{"PlaylistId":1,"TrackId":2996} +{"PlaylistId":1,"TrackId":2997} +{"PlaylistId":1,"TrackId":2998} +{"PlaylistId":1,"TrackId":2999} +{"PlaylistId":1,"TrackId":3000} +{"PlaylistId":1,"TrackId":3001} +{"PlaylistId":1,"TrackId":3002} +{"PlaylistId":1,"TrackId":3003} +{"PlaylistId":1,"TrackId":3018} +{"PlaylistId":1,"TrackId":3019} +{"PlaylistId":1,"TrackId":3020} +{"PlaylistId":1,"TrackId":3021} +{"PlaylistId":1,"TrackId":3022} +{"PlaylistId":1,"TrackId":3023} +{"PlaylistId":1,"TrackId":3024} +{"PlaylistId":1,"TrackId":3025} +{"PlaylistId":1,"TrackId":3026} +{"PlaylistId":1,"TrackId":3027} +{"PlaylistId":1,"TrackId":3028} +{"PlaylistId":1,"TrackId":3029} +{"PlaylistId":1,"TrackId":3030} +{"PlaylistId":1,"TrackId":3031} +{"PlaylistId":1,"TrackId":3032} +{"PlaylistId":1,"TrackId":3033} +{"PlaylistId":1,"TrackId":3034} +{"PlaylistId":1,"TrackId":3035} +{"PlaylistId":1,"TrackId":3036} +{"PlaylistId":1,"TrackId":3037} +{"PlaylistId":1,"TrackId":3064} +{"PlaylistId":1,"TrackId":3065} +{"PlaylistId":1,"TrackId":3066} +{"PlaylistId":1,"TrackId":3067} +{"PlaylistId":1,"TrackId":3068} +{"PlaylistId":1,"TrackId":3069} +{"PlaylistId":1,"TrackId":3070} +{"PlaylistId":1,"TrackId":3071} +{"PlaylistId":1,"TrackId":3072} +{"PlaylistId":1,"TrackId":3073} +{"PlaylistId":1,"TrackId":3074} +{"PlaylistId":1,"TrackId":3075} +{"PlaylistId":1,"TrackId":3076} +{"PlaylistId":1,"TrackId":3077} +{"PlaylistId":1,"TrackId":3078} +{"PlaylistId":1,"TrackId":3079} +{"PlaylistId":1,"TrackId":3080} +{"PlaylistId":1,"TrackId":3052} +{"PlaylistId":1,"TrackId":3053} +{"PlaylistId":1,"TrackId":3054} +{"PlaylistId":1,"TrackId":3055} +{"PlaylistId":1,"TrackId":3056} +{"PlaylistId":1,"TrackId":3057} +{"PlaylistId":1,"TrackId":3058} +{"PlaylistId":1,"TrackId":3059} +{"PlaylistId":1,"TrackId":3060} +{"PlaylistId":1,"TrackId":3061} +{"PlaylistId":1,"TrackId":3062} +{"PlaylistId":1,"TrackId":3063} +{"PlaylistId":1,"TrackId":3081} +{"PlaylistId":1,"TrackId":3082} +{"PlaylistId":1,"TrackId":3083} +{"PlaylistId":1,"TrackId":3084} +{"PlaylistId":1,"TrackId":3085} +{"PlaylistId":1,"TrackId":3086} +{"PlaylistId":1,"TrackId":3087} +{"PlaylistId":1,"TrackId":3088} +{"PlaylistId":1,"TrackId":3089} +{"PlaylistId":1,"TrackId":3090} +{"PlaylistId":1,"TrackId":3091} +{"PlaylistId":1,"TrackId":3092} +{"PlaylistId":1,"TrackId":3093} +{"PlaylistId":1,"TrackId":3094} +{"PlaylistId":1,"TrackId":3095} +{"PlaylistId":1,"TrackId":3096} +{"PlaylistId":1,"TrackId":3097} +{"PlaylistId":1,"TrackId":3098} +{"PlaylistId":1,"TrackId":3099} +{"PlaylistId":1,"TrackId":3100} +{"PlaylistId":1,"TrackId":3101} +{"PlaylistId":1,"TrackId":3102} +{"PlaylistId":1,"TrackId":3103} +{"PlaylistId":1,"TrackId":3104} +{"PlaylistId":1,"TrackId":3105} +{"PlaylistId":1,"TrackId":3106} +{"PlaylistId":1,"TrackId":3107} +{"PlaylistId":1,"TrackId":3108} +{"PlaylistId":1,"TrackId":3109} +{"PlaylistId":1,"TrackId":3110} +{"PlaylistId":1,"TrackId":3111} +{"PlaylistId":1,"TrackId":3112} +{"PlaylistId":1,"TrackId":3113} +{"PlaylistId":1,"TrackId":3114} +{"PlaylistId":1,"TrackId":3115} +{"PlaylistId":1,"TrackId":3116} +{"PlaylistId":1,"TrackId":2731} +{"PlaylistId":1,"TrackId":2732} +{"PlaylistId":1,"TrackId":2733} +{"PlaylistId":1,"TrackId":2734} +{"PlaylistId":1,"TrackId":2735} +{"PlaylistId":1,"TrackId":2736} +{"PlaylistId":1,"TrackId":2737} +{"PlaylistId":1,"TrackId":2738} +{"PlaylistId":1,"TrackId":2739} +{"PlaylistId":1,"TrackId":2740} +{"PlaylistId":1,"TrackId":2741} +{"PlaylistId":1,"TrackId":2742} +{"PlaylistId":1,"TrackId":2743} +{"PlaylistId":1,"TrackId":2744} +{"PlaylistId":1,"TrackId":2745} +{"PlaylistId":1,"TrackId":2746} +{"PlaylistId":1,"TrackId":2747} +{"PlaylistId":1,"TrackId":2748} +{"PlaylistId":1,"TrackId":2749} +{"PlaylistId":1,"TrackId":2750} +{"PlaylistId":1,"TrackId":111} +{"PlaylistId":1,"TrackId":112} +{"PlaylistId":1,"TrackId":113} +{"PlaylistId":1,"TrackId":114} +{"PlaylistId":1,"TrackId":115} +{"PlaylistId":1,"TrackId":116} +{"PlaylistId":1,"TrackId":117} +{"PlaylistId":1,"TrackId":118} +{"PlaylistId":1,"TrackId":119} +{"PlaylistId":1,"TrackId":120} +{"PlaylistId":1,"TrackId":121} +{"PlaylistId":1,"TrackId":122} +{"PlaylistId":1,"TrackId":1073} +{"PlaylistId":1,"TrackId":1074} +{"PlaylistId":1,"TrackId":1075} +{"PlaylistId":1,"TrackId":1076} +{"PlaylistId":1,"TrackId":1077} +{"PlaylistId":1,"TrackId":1078} +{"PlaylistId":1,"TrackId":1079} +{"PlaylistId":1,"TrackId":1080} +{"PlaylistId":1,"TrackId":1081} +{"PlaylistId":1,"TrackId":1082} +{"PlaylistId":1,"TrackId":1083} +{"PlaylistId":1,"TrackId":1084} +{"PlaylistId":1,"TrackId":1085} +{"PlaylistId":1,"TrackId":1086} +{"PlaylistId":1,"TrackId":2125} +{"PlaylistId":1,"TrackId":2126} +{"PlaylistId":1,"TrackId":2127} +{"PlaylistId":1,"TrackId":2128} +{"PlaylistId":1,"TrackId":2129} +{"PlaylistId":1,"TrackId":2130} +{"PlaylistId":1,"TrackId":2131} +{"PlaylistId":1,"TrackId":2132} +{"PlaylistId":1,"TrackId":2133} +{"PlaylistId":1,"TrackId":2134} +{"PlaylistId":1,"TrackId":2135} +{"PlaylistId":1,"TrackId":2136} +{"PlaylistId":1,"TrackId":2137} +{"PlaylistId":1,"TrackId":2138} +{"PlaylistId":1,"TrackId":3503} +{"PlaylistId":1,"TrackId":360} +{"PlaylistId":1,"TrackId":361} +{"PlaylistId":1,"TrackId":362} +{"PlaylistId":1,"TrackId":363} +{"PlaylistId":1,"TrackId":364} +{"PlaylistId":1,"TrackId":365} +{"PlaylistId":1,"TrackId":366} +{"PlaylistId":1,"TrackId":367} +{"PlaylistId":1,"TrackId":368} +{"PlaylistId":1,"TrackId":369} +{"PlaylistId":1,"TrackId":370} +{"PlaylistId":1,"TrackId":371} +{"PlaylistId":1,"TrackId":372} +{"PlaylistId":1,"TrackId":373} +{"PlaylistId":1,"TrackId":3354} +{"PlaylistId":1,"TrackId":3351} +{"PlaylistId":1,"TrackId":1532} +{"PlaylistId":1,"TrackId":1533} +{"PlaylistId":1,"TrackId":1534} +{"PlaylistId":1,"TrackId":1535} +{"PlaylistId":1,"TrackId":1536} +{"PlaylistId":1,"TrackId":1537} +{"PlaylistId":1,"TrackId":1538} +{"PlaylistId":1,"TrackId":1539} +{"PlaylistId":1,"TrackId":1540} +{"PlaylistId":1,"TrackId":1541} +{"PlaylistId":1,"TrackId":1542} +{"PlaylistId":1,"TrackId":1543} +{"PlaylistId":1,"TrackId":1544} +{"PlaylistId":1,"TrackId":1545} +{"PlaylistId":1,"TrackId":1957} +{"PlaylistId":1,"TrackId":1958} +{"PlaylistId":1,"TrackId":1959} +{"PlaylistId":1,"TrackId":1960} +{"PlaylistId":1,"TrackId":1961} +{"PlaylistId":1,"TrackId":1962} +{"PlaylistId":1,"TrackId":1963} +{"PlaylistId":1,"TrackId":1964} +{"PlaylistId":1,"TrackId":1965} +{"PlaylistId":1,"TrackId":1966} +{"PlaylistId":1,"TrackId":1967} +{"PlaylistId":1,"TrackId":1968} +{"PlaylistId":3,"TrackId":3250} +{"PlaylistId":3,"TrackId":2819} +{"PlaylistId":3,"TrackId":2820} +{"PlaylistId":3,"TrackId":2821} +{"PlaylistId":3,"TrackId":2822} +{"PlaylistId":3,"TrackId":2823} +{"PlaylistId":3,"TrackId":2824} +{"PlaylistId":3,"TrackId":2825} +{"PlaylistId":3,"TrackId":2826} +{"PlaylistId":3,"TrackId":2827} +{"PlaylistId":3,"TrackId":2828} +{"PlaylistId":3,"TrackId":2829} +{"PlaylistId":3,"TrackId":2830} +{"PlaylistId":3,"TrackId":2831} +{"PlaylistId":3,"TrackId":2832} +{"PlaylistId":3,"TrackId":2833} +{"PlaylistId":3,"TrackId":2834} +{"PlaylistId":3,"TrackId":2835} +{"PlaylistId":3,"TrackId":2836} +{"PlaylistId":3,"TrackId":2837} +{"PlaylistId":3,"TrackId":2838} +{"PlaylistId":3,"TrackId":3226} +{"PlaylistId":3,"TrackId":3227} +{"PlaylistId":3,"TrackId":3228} +{"PlaylistId":3,"TrackId":3229} +{"PlaylistId":3,"TrackId":3230} +{"PlaylistId":3,"TrackId":3231} +{"PlaylistId":3,"TrackId":3232} +{"PlaylistId":3,"TrackId":3233} +{"PlaylistId":3,"TrackId":3234} +{"PlaylistId":3,"TrackId":3235} +{"PlaylistId":3,"TrackId":3236} +{"PlaylistId":3,"TrackId":3237} +{"PlaylistId":3,"TrackId":3238} +{"PlaylistId":3,"TrackId":3239} +{"PlaylistId":3,"TrackId":3240} +{"PlaylistId":3,"TrackId":3241} +{"PlaylistId":3,"TrackId":3242} +{"PlaylistId":3,"TrackId":3243} +{"PlaylistId":3,"TrackId":3244} +{"PlaylistId":3,"TrackId":3245} +{"PlaylistId":3,"TrackId":3246} +{"PlaylistId":3,"TrackId":3247} +{"PlaylistId":3,"TrackId":3248} +{"PlaylistId":3,"TrackId":3249} +{"PlaylistId":3,"TrackId":2839} +{"PlaylistId":3,"TrackId":2840} +{"PlaylistId":3,"TrackId":2841} +{"PlaylistId":3,"TrackId":2842} +{"PlaylistId":3,"TrackId":2843} +{"PlaylistId":3,"TrackId":2844} +{"PlaylistId":3,"TrackId":2845} +{"PlaylistId":3,"TrackId":2846} +{"PlaylistId":3,"TrackId":2847} +{"PlaylistId":3,"TrackId":2848} +{"PlaylistId":3,"TrackId":2849} +{"PlaylistId":3,"TrackId":2850} +{"PlaylistId":3,"TrackId":2851} +{"PlaylistId":3,"TrackId":2852} +{"PlaylistId":3,"TrackId":2853} +{"PlaylistId":3,"TrackId":2854} +{"PlaylistId":3,"TrackId":2855} +{"PlaylistId":3,"TrackId":2856} +{"PlaylistId":3,"TrackId":3166} +{"PlaylistId":3,"TrackId":3167} +{"PlaylistId":3,"TrackId":3168} +{"PlaylistId":3,"TrackId":3171} +{"PlaylistId":3,"TrackId":3223} +{"PlaylistId":3,"TrackId":2858} +{"PlaylistId":3,"TrackId":2861} +{"PlaylistId":3,"TrackId":2865} +{"PlaylistId":3,"TrackId":2868} +{"PlaylistId":3,"TrackId":2871} +{"PlaylistId":3,"TrackId":2873} +{"PlaylistId":3,"TrackId":2877} +{"PlaylistId":3,"TrackId":2880} +{"PlaylistId":3,"TrackId":2883} +{"PlaylistId":3,"TrackId":2885} +{"PlaylistId":3,"TrackId":2888} +{"PlaylistId":3,"TrackId":2893} +{"PlaylistId":3,"TrackId":2894} +{"PlaylistId":3,"TrackId":2898} +{"PlaylistId":3,"TrackId":2901} +{"PlaylistId":3,"TrackId":2904} +{"PlaylistId":3,"TrackId":2906} +{"PlaylistId":3,"TrackId":2911} +{"PlaylistId":3,"TrackId":2913} +{"PlaylistId":3,"TrackId":2915} +{"PlaylistId":3,"TrackId":2917} +{"PlaylistId":3,"TrackId":2919} +{"PlaylistId":3,"TrackId":2921} +{"PlaylistId":3,"TrackId":2923} +{"PlaylistId":3,"TrackId":2925} +{"PlaylistId":3,"TrackId":2859} +{"PlaylistId":3,"TrackId":2860} +{"PlaylistId":3,"TrackId":2864} +{"PlaylistId":3,"TrackId":2867} +{"PlaylistId":3,"TrackId":2869} +{"PlaylistId":3,"TrackId":2872} +{"PlaylistId":3,"TrackId":2878} +{"PlaylistId":3,"TrackId":2879} +{"PlaylistId":3,"TrackId":2884} +{"PlaylistId":3,"TrackId":2887} +{"PlaylistId":3,"TrackId":2889} +{"PlaylistId":3,"TrackId":2892} +{"PlaylistId":3,"TrackId":2896} +{"PlaylistId":3,"TrackId":2897} +{"PlaylistId":3,"TrackId":2902} +{"PlaylistId":3,"TrackId":2905} +{"PlaylistId":3,"TrackId":2907} +{"PlaylistId":3,"TrackId":2910} +{"PlaylistId":3,"TrackId":2914} +{"PlaylistId":3,"TrackId":2916} +{"PlaylistId":3,"TrackId":2918} +{"PlaylistId":3,"TrackId":2920} +{"PlaylistId":3,"TrackId":2922} +{"PlaylistId":3,"TrackId":2924} +{"PlaylistId":3,"TrackId":2857} +{"PlaylistId":3,"TrackId":2862} +{"PlaylistId":3,"TrackId":2863} +{"PlaylistId":3,"TrackId":2866} +{"PlaylistId":3,"TrackId":2870} +{"PlaylistId":3,"TrackId":2874} +{"PlaylistId":3,"TrackId":2875} +{"PlaylistId":3,"TrackId":2876} +{"PlaylistId":3,"TrackId":2881} +{"PlaylistId":3,"TrackId":2882} +{"PlaylistId":3,"TrackId":2886} +{"PlaylistId":3,"TrackId":2890} +{"PlaylistId":3,"TrackId":2891} +{"PlaylistId":3,"TrackId":2895} +{"PlaylistId":3,"TrackId":2899} +{"PlaylistId":3,"TrackId":2900} +{"PlaylistId":3,"TrackId":2903} +{"PlaylistId":3,"TrackId":2908} +{"PlaylistId":3,"TrackId":2909} +{"PlaylistId":3,"TrackId":2912} +{"PlaylistId":3,"TrackId":3165} +{"PlaylistId":3,"TrackId":3169} +{"PlaylistId":3,"TrackId":3170} +{"PlaylistId":3,"TrackId":3252} +{"PlaylistId":3,"TrackId":3224} +{"PlaylistId":3,"TrackId":3251} +{"PlaylistId":3,"TrackId":3340} +{"PlaylistId":3,"TrackId":3339} +{"PlaylistId":3,"TrackId":3338} +{"PlaylistId":3,"TrackId":3337} +{"PlaylistId":3,"TrackId":3341} +{"PlaylistId":3,"TrackId":3345} +{"PlaylistId":3,"TrackId":3342} +{"PlaylistId":3,"TrackId":3346} +{"PlaylistId":3,"TrackId":3343} +{"PlaylistId":3,"TrackId":3347} +{"PlaylistId":3,"TrackId":3344} +{"PlaylistId":3,"TrackId":3348} +{"PlaylistId":3,"TrackId":3360} +{"PlaylistId":3,"TrackId":3361} +{"PlaylistId":3,"TrackId":3362} +{"PlaylistId":3,"TrackId":3363} +{"PlaylistId":3,"TrackId":3364} +{"PlaylistId":3,"TrackId":3172} +{"PlaylistId":3,"TrackId":3173} +{"PlaylistId":3,"TrackId":3174} +{"PlaylistId":3,"TrackId":3175} +{"PlaylistId":3,"TrackId":3176} +{"PlaylistId":3,"TrackId":3177} +{"PlaylistId":3,"TrackId":3178} +{"PlaylistId":3,"TrackId":3179} +{"PlaylistId":3,"TrackId":3180} +{"PlaylistId":3,"TrackId":3181} +{"PlaylistId":3,"TrackId":3182} +{"PlaylistId":3,"TrackId":3183} +{"PlaylistId":3,"TrackId":3184} +{"PlaylistId":3,"TrackId":3185} +{"PlaylistId":3,"TrackId":3186} +{"PlaylistId":3,"TrackId":3187} +{"PlaylistId":3,"TrackId":3188} +{"PlaylistId":3,"TrackId":3189} +{"PlaylistId":3,"TrackId":3190} +{"PlaylistId":3,"TrackId":3191} +{"PlaylistId":3,"TrackId":3192} +{"PlaylistId":3,"TrackId":3193} +{"PlaylistId":3,"TrackId":3194} +{"PlaylistId":3,"TrackId":3195} +{"PlaylistId":3,"TrackId":3196} +{"PlaylistId":3,"TrackId":3197} +{"PlaylistId":3,"TrackId":3198} +{"PlaylistId":3,"TrackId":3199} +{"PlaylistId":3,"TrackId":3200} +{"PlaylistId":3,"TrackId":3201} +{"PlaylistId":3,"TrackId":3202} +{"PlaylistId":3,"TrackId":3203} +{"PlaylistId":3,"TrackId":3204} +{"PlaylistId":3,"TrackId":3205} +{"PlaylistId":3,"TrackId":3206} +{"PlaylistId":3,"TrackId":3428} +{"PlaylistId":3,"TrackId":3207} +{"PlaylistId":3,"TrackId":3208} +{"PlaylistId":3,"TrackId":3209} +{"PlaylistId":3,"TrackId":3210} +{"PlaylistId":3,"TrackId":3211} +{"PlaylistId":3,"TrackId":3212} +{"PlaylistId":3,"TrackId":3429} +{"PlaylistId":3,"TrackId":3213} +{"PlaylistId":3,"TrackId":3214} +{"PlaylistId":3,"TrackId":3215} +{"PlaylistId":3,"TrackId":3216} +{"PlaylistId":3,"TrackId":3217} +{"PlaylistId":3,"TrackId":3218} +{"PlaylistId":3,"TrackId":3219} +{"PlaylistId":3,"TrackId":3220} +{"PlaylistId":3,"TrackId":3221} +{"PlaylistId":3,"TrackId":3222} +{"PlaylistId":5,"TrackId":51} +{"PlaylistId":5,"TrackId":52} +{"PlaylistId":5,"TrackId":53} +{"PlaylistId":5,"TrackId":54} +{"PlaylistId":5,"TrackId":55} +{"PlaylistId":5,"TrackId":56} +{"PlaylistId":5,"TrackId":57} +{"PlaylistId":5,"TrackId":58} +{"PlaylistId":5,"TrackId":59} +{"PlaylistId":5,"TrackId":60} +{"PlaylistId":5,"TrackId":61} +{"PlaylistId":5,"TrackId":62} +{"PlaylistId":5,"TrackId":798} +{"PlaylistId":5,"TrackId":799} +{"PlaylistId":5,"TrackId":800} +{"PlaylistId":5,"TrackId":801} +{"PlaylistId":5,"TrackId":802} +{"PlaylistId":5,"TrackId":803} +{"PlaylistId":5,"TrackId":804} +{"PlaylistId":5,"TrackId":805} +{"PlaylistId":5,"TrackId":806} +{"PlaylistId":5,"TrackId":3225} +{"PlaylistId":5,"TrackId":1325} +{"PlaylistId":5,"TrackId":1326} +{"PlaylistId":5,"TrackId":1327} +{"PlaylistId":5,"TrackId":1328} +{"PlaylistId":5,"TrackId":1329} +{"PlaylistId":5,"TrackId":1330} +{"PlaylistId":5,"TrackId":1331} +{"PlaylistId":5,"TrackId":1332} +{"PlaylistId":5,"TrackId":1333} +{"PlaylistId":5,"TrackId":1334} +{"PlaylistId":5,"TrackId":1557} +{"PlaylistId":5,"TrackId":2506} +{"PlaylistId":5,"TrackId":2591} +{"PlaylistId":5,"TrackId":2592} +{"PlaylistId":5,"TrackId":2593} +{"PlaylistId":5,"TrackId":2594} +{"PlaylistId":5,"TrackId":2595} +{"PlaylistId":5,"TrackId":2596} +{"PlaylistId":5,"TrackId":2597} +{"PlaylistId":5,"TrackId":2598} +{"PlaylistId":5,"TrackId":2599} +{"PlaylistId":5,"TrackId":2600} +{"PlaylistId":5,"TrackId":2601} +{"PlaylistId":5,"TrackId":2602} +{"PlaylistId":5,"TrackId":2603} +{"PlaylistId":5,"TrackId":2604} +{"PlaylistId":5,"TrackId":2605} +{"PlaylistId":5,"TrackId":2606} +{"PlaylistId":5,"TrackId":2607} +{"PlaylistId":5,"TrackId":2608} +{"PlaylistId":5,"TrackId":2627} +{"PlaylistId":5,"TrackId":2631} +{"PlaylistId":5,"TrackId":2638} +{"PlaylistId":5,"TrackId":1158} +{"PlaylistId":5,"TrackId":1159} +{"PlaylistId":5,"TrackId":1160} +{"PlaylistId":5,"TrackId":1161} +{"PlaylistId":5,"TrackId":1162} +{"PlaylistId":5,"TrackId":1163} +{"PlaylistId":5,"TrackId":1164} +{"PlaylistId":5,"TrackId":1165} +{"PlaylistId":5,"TrackId":1166} +{"PlaylistId":5,"TrackId":1167} +{"PlaylistId":5,"TrackId":1168} +{"PlaylistId":5,"TrackId":1169} +{"PlaylistId":5,"TrackId":1170} +{"PlaylistId":5,"TrackId":1171} +{"PlaylistId":5,"TrackId":1172} +{"PlaylistId":5,"TrackId":1173} +{"PlaylistId":5,"TrackId":1174} +{"PlaylistId":5,"TrackId":1175} +{"PlaylistId":5,"TrackId":1176} +{"PlaylistId":5,"TrackId":1177} +{"PlaylistId":5,"TrackId":1178} +{"PlaylistId":5,"TrackId":1179} +{"PlaylistId":5,"TrackId":1180} +{"PlaylistId":5,"TrackId":1181} +{"PlaylistId":5,"TrackId":1182} +{"PlaylistId":5,"TrackId":1183} +{"PlaylistId":5,"TrackId":1184} +{"PlaylistId":5,"TrackId":1185} +{"PlaylistId":5,"TrackId":1186} +{"PlaylistId":5,"TrackId":1187} +{"PlaylistId":5,"TrackId":1414} +{"PlaylistId":5,"TrackId":1415} +{"PlaylistId":5,"TrackId":1416} +{"PlaylistId":5,"TrackId":1417} +{"PlaylistId":5,"TrackId":1418} +{"PlaylistId":5,"TrackId":1419} +{"PlaylistId":5,"TrackId":1420} +{"PlaylistId":5,"TrackId":1421} +{"PlaylistId":5,"TrackId":1422} +{"PlaylistId":5,"TrackId":1423} +{"PlaylistId":5,"TrackId":1424} +{"PlaylistId":5,"TrackId":1425} +{"PlaylistId":5,"TrackId":1426} +{"PlaylistId":5,"TrackId":1427} +{"PlaylistId":5,"TrackId":1428} +{"PlaylistId":5,"TrackId":1429} +{"PlaylistId":5,"TrackId":1430} +{"PlaylistId":5,"TrackId":1431} +{"PlaylistId":5,"TrackId":1432} +{"PlaylistId":5,"TrackId":1433} +{"PlaylistId":5,"TrackId":1801} +{"PlaylistId":5,"TrackId":1802} +{"PlaylistId":5,"TrackId":1803} +{"PlaylistId":5,"TrackId":1804} +{"PlaylistId":5,"TrackId":1805} +{"PlaylistId":5,"TrackId":1806} +{"PlaylistId":5,"TrackId":1807} +{"PlaylistId":5,"TrackId":1808} +{"PlaylistId":5,"TrackId":1809} +{"PlaylistId":5,"TrackId":1810} +{"PlaylistId":5,"TrackId":1811} +{"PlaylistId":5,"TrackId":1812} +{"PlaylistId":5,"TrackId":2003} +{"PlaylistId":5,"TrackId":2004} +{"PlaylistId":5,"TrackId":2005} +{"PlaylistId":5,"TrackId":2006} +{"PlaylistId":5,"TrackId":2007} +{"PlaylistId":5,"TrackId":2008} +{"PlaylistId":5,"TrackId":2009} +{"PlaylistId":5,"TrackId":2010} +{"PlaylistId":5,"TrackId":2011} +{"PlaylistId":5,"TrackId":2012} +{"PlaylistId":5,"TrackId":2013} +{"PlaylistId":5,"TrackId":2014} +{"PlaylistId":5,"TrackId":2193} +{"PlaylistId":5,"TrackId":2194} +{"PlaylistId":5,"TrackId":2195} +{"PlaylistId":5,"TrackId":2196} +{"PlaylistId":5,"TrackId":2197} +{"PlaylistId":5,"TrackId":2198} +{"PlaylistId":5,"TrackId":2199} +{"PlaylistId":5,"TrackId":2200} +{"PlaylistId":5,"TrackId":2201} +{"PlaylistId":5,"TrackId":2202} +{"PlaylistId":5,"TrackId":2203} +{"PlaylistId":5,"TrackId":424} +{"PlaylistId":5,"TrackId":428} +{"PlaylistId":5,"TrackId":430} +{"PlaylistId":5,"TrackId":434} +{"PlaylistId":5,"TrackId":2310} +{"PlaylistId":5,"TrackId":2311} +{"PlaylistId":5,"TrackId":2312} +{"PlaylistId":5,"TrackId":2313} +{"PlaylistId":5,"TrackId":2314} +{"PlaylistId":5,"TrackId":2315} +{"PlaylistId":5,"TrackId":2316} +{"PlaylistId":5,"TrackId":2317} +{"PlaylistId":5,"TrackId":2282} +{"PlaylistId":5,"TrackId":2283} +{"PlaylistId":5,"TrackId":2284} +{"PlaylistId":5,"TrackId":2358} +{"PlaylistId":5,"TrackId":2359} +{"PlaylistId":5,"TrackId":2360} +{"PlaylistId":5,"TrackId":2361} +{"PlaylistId":5,"TrackId":2362} +{"PlaylistId":5,"TrackId":2363} +{"PlaylistId":5,"TrackId":2364} +{"PlaylistId":5,"TrackId":2365} +{"PlaylistId":5,"TrackId":2366} +{"PlaylistId":5,"TrackId":2367} +{"PlaylistId":5,"TrackId":2368} +{"PlaylistId":5,"TrackId":2369} +{"PlaylistId":5,"TrackId":2370} +{"PlaylistId":5,"TrackId":2371} +{"PlaylistId":5,"TrackId":2372} +{"PlaylistId":5,"TrackId":2373} +{"PlaylistId":5,"TrackId":2374} +{"PlaylistId":5,"TrackId":2420} +{"PlaylistId":5,"TrackId":2421} +{"PlaylistId":5,"TrackId":2422} +{"PlaylistId":5,"TrackId":2423} +{"PlaylistId":5,"TrackId":2424} +{"PlaylistId":5,"TrackId":2425} +{"PlaylistId":5,"TrackId":2426} +{"PlaylistId":5,"TrackId":2427} +{"PlaylistId":5,"TrackId":2488} +{"PlaylistId":5,"TrackId":2489} +{"PlaylistId":5,"TrackId":2511} +{"PlaylistId":5,"TrackId":2512} +{"PlaylistId":5,"TrackId":2513} +{"PlaylistId":5,"TrackId":2711} +{"PlaylistId":5,"TrackId":2715} +{"PlaylistId":5,"TrackId":3365} +{"PlaylistId":5,"TrackId":3366} +{"PlaylistId":5,"TrackId":3367} +{"PlaylistId":5,"TrackId":3368} +{"PlaylistId":5,"TrackId":3369} +{"PlaylistId":5,"TrackId":3370} +{"PlaylistId":5,"TrackId":3371} +{"PlaylistId":5,"TrackId":3372} +{"PlaylistId":5,"TrackId":3373} +{"PlaylistId":5,"TrackId":3374} +{"PlaylistId":5,"TrackId":2926} +{"PlaylistId":5,"TrackId":2927} +{"PlaylistId":5,"TrackId":2928} +{"PlaylistId":5,"TrackId":2929} +{"PlaylistId":5,"TrackId":2930} +{"PlaylistId":5,"TrackId":2931} +{"PlaylistId":5,"TrackId":2932} +{"PlaylistId":5,"TrackId":2933} +{"PlaylistId":5,"TrackId":2934} +{"PlaylistId":5,"TrackId":2935} +{"PlaylistId":5,"TrackId":2936} +{"PlaylistId":5,"TrackId":2937} +{"PlaylistId":5,"TrackId":3075} +{"PlaylistId":5,"TrackId":3076} +{"PlaylistId":5,"TrackId":166} +{"PlaylistId":5,"TrackId":167} +{"PlaylistId":5,"TrackId":168} +{"PlaylistId":5,"TrackId":169} +{"PlaylistId":5,"TrackId":170} +{"PlaylistId":5,"TrackId":171} +{"PlaylistId":5,"TrackId":172} +{"PlaylistId":5,"TrackId":173} +{"PlaylistId":5,"TrackId":174} +{"PlaylistId":5,"TrackId":175} +{"PlaylistId":5,"TrackId":176} +{"PlaylistId":5,"TrackId":177} +{"PlaylistId":5,"TrackId":178} +{"PlaylistId":5,"TrackId":179} +{"PlaylistId":5,"TrackId":180} +{"PlaylistId":5,"TrackId":181} +{"PlaylistId":5,"TrackId":182} +{"PlaylistId":5,"TrackId":3426} +{"PlaylistId":5,"TrackId":2625} +{"PlaylistId":5,"TrackId":816} +{"PlaylistId":5,"TrackId":817} +{"PlaylistId":5,"TrackId":818} +{"PlaylistId":5,"TrackId":819} +{"PlaylistId":5,"TrackId":820} +{"PlaylistId":5,"TrackId":821} +{"PlaylistId":5,"TrackId":822} +{"PlaylistId":5,"TrackId":823} +{"PlaylistId":5,"TrackId":824} +{"PlaylistId":5,"TrackId":825} +{"PlaylistId":5,"TrackId":768} +{"PlaylistId":5,"TrackId":769} +{"PlaylistId":5,"TrackId":770} +{"PlaylistId":5,"TrackId":771} +{"PlaylistId":5,"TrackId":772} +{"PlaylistId":5,"TrackId":773} +{"PlaylistId":5,"TrackId":774} +{"PlaylistId":5,"TrackId":775} +{"PlaylistId":5,"TrackId":776} +{"PlaylistId":5,"TrackId":777} +{"PlaylistId":5,"TrackId":778} +{"PlaylistId":5,"TrackId":909} +{"PlaylistId":5,"TrackId":910} +{"PlaylistId":5,"TrackId":911} +{"PlaylistId":5,"TrackId":912} +{"PlaylistId":5,"TrackId":913} +{"PlaylistId":5,"TrackId":914} +{"PlaylistId":5,"TrackId":915} +{"PlaylistId":5,"TrackId":916} +{"PlaylistId":5,"TrackId":917} +{"PlaylistId":5,"TrackId":918} +{"PlaylistId":5,"TrackId":919} +{"PlaylistId":5,"TrackId":920} +{"PlaylistId":5,"TrackId":921} +{"PlaylistId":5,"TrackId":922} +{"PlaylistId":5,"TrackId":935} +{"PlaylistId":5,"TrackId":936} +{"PlaylistId":5,"TrackId":937} +{"PlaylistId":5,"TrackId":938} +{"PlaylistId":5,"TrackId":939} +{"PlaylistId":5,"TrackId":940} +{"PlaylistId":5,"TrackId":941} +{"PlaylistId":5,"TrackId":942} +{"PlaylistId":5,"TrackId":943} +{"PlaylistId":5,"TrackId":944} +{"PlaylistId":5,"TrackId":945} +{"PlaylistId":5,"TrackId":946} +{"PlaylistId":5,"TrackId":947} +{"PlaylistId":5,"TrackId":948} +{"PlaylistId":5,"TrackId":3301} +{"PlaylistId":5,"TrackId":3300} +{"PlaylistId":5,"TrackId":3302} +{"PlaylistId":5,"TrackId":3303} +{"PlaylistId":5,"TrackId":3304} +{"PlaylistId":5,"TrackId":3305} +{"PlaylistId":5,"TrackId":3306} +{"PlaylistId":5,"TrackId":3307} +{"PlaylistId":5,"TrackId":3308} +{"PlaylistId":5,"TrackId":3309} +{"PlaylistId":5,"TrackId":3310} +{"PlaylistId":5,"TrackId":3311} +{"PlaylistId":5,"TrackId":3312} +{"PlaylistId":5,"TrackId":3313} +{"PlaylistId":5,"TrackId":3314} +{"PlaylistId":5,"TrackId":3315} +{"PlaylistId":5,"TrackId":3316} +{"PlaylistId":5,"TrackId":3317} +{"PlaylistId":5,"TrackId":3318} +{"PlaylistId":5,"TrackId":1256} +{"PlaylistId":5,"TrackId":1257} +{"PlaylistId":5,"TrackId":1258} +{"PlaylistId":5,"TrackId":1259} +{"PlaylistId":5,"TrackId":1260} +{"PlaylistId":5,"TrackId":1261} +{"PlaylistId":5,"TrackId":1262} +{"PlaylistId":5,"TrackId":1263} +{"PlaylistId":5,"TrackId":1264} +{"PlaylistId":5,"TrackId":1265} +{"PlaylistId":5,"TrackId":1266} +{"PlaylistId":5,"TrackId":1267} +{"PlaylistId":5,"TrackId":2490} +{"PlaylistId":5,"TrackId":2542} +{"PlaylistId":5,"TrackId":2543} +{"PlaylistId":5,"TrackId":2544} +{"PlaylistId":5,"TrackId":2545} +{"PlaylistId":5,"TrackId":2546} +{"PlaylistId":5,"TrackId":2547} +{"PlaylistId":5,"TrackId":2548} +{"PlaylistId":5,"TrackId":2549} +{"PlaylistId":5,"TrackId":2550} +{"PlaylistId":5,"TrackId":2551} +{"PlaylistId":5,"TrackId":2552} +{"PlaylistId":5,"TrackId":2553} +{"PlaylistId":5,"TrackId":3411} +{"PlaylistId":5,"TrackId":3403} +{"PlaylistId":5,"TrackId":3423} +{"PlaylistId":5,"TrackId":1212} +{"PlaylistId":5,"TrackId":1213} +{"PlaylistId":5,"TrackId":1214} +{"PlaylistId":5,"TrackId":1215} +{"PlaylistId":5,"TrackId":1216} +{"PlaylistId":5,"TrackId":1217} +{"PlaylistId":5,"TrackId":1218} +{"PlaylistId":5,"TrackId":1219} +{"PlaylistId":5,"TrackId":1220} +{"PlaylistId":5,"TrackId":1221} +{"PlaylistId":5,"TrackId":1222} +{"PlaylistId":5,"TrackId":1223} +{"PlaylistId":5,"TrackId":1224} +{"PlaylistId":5,"TrackId":1225} +{"PlaylistId":5,"TrackId":1226} +{"PlaylistId":5,"TrackId":1227} +{"PlaylistId":5,"TrackId":1228} +{"PlaylistId":5,"TrackId":1229} +{"PlaylistId":5,"TrackId":1230} +{"PlaylistId":5,"TrackId":1231} +{"PlaylistId":5,"TrackId":1232} +{"PlaylistId":5,"TrackId":1233} +{"PlaylistId":5,"TrackId":1234} +{"PlaylistId":5,"TrackId":1434} +{"PlaylistId":5,"TrackId":1435} +{"PlaylistId":5,"TrackId":1436} +{"PlaylistId":5,"TrackId":1437} +{"PlaylistId":5,"TrackId":1438} +{"PlaylistId":5,"TrackId":1439} +{"PlaylistId":5,"TrackId":1440} +{"PlaylistId":5,"TrackId":1441} +{"PlaylistId":5,"TrackId":1442} +{"PlaylistId":5,"TrackId":1443} +{"PlaylistId":5,"TrackId":2204} +{"PlaylistId":5,"TrackId":2205} +{"PlaylistId":5,"TrackId":2206} +{"PlaylistId":5,"TrackId":2207} +{"PlaylistId":5,"TrackId":2208} +{"PlaylistId":5,"TrackId":2209} +{"PlaylistId":5,"TrackId":2210} +{"PlaylistId":5,"TrackId":2211} +{"PlaylistId":5,"TrackId":2212} +{"PlaylistId":5,"TrackId":2213} +{"PlaylistId":5,"TrackId":2214} +{"PlaylistId":5,"TrackId":2215} +{"PlaylistId":5,"TrackId":3404} +{"PlaylistId":5,"TrackId":2491} +{"PlaylistId":5,"TrackId":2492} +{"PlaylistId":5,"TrackId":2493} +{"PlaylistId":5,"TrackId":3028} +{"PlaylistId":5,"TrackId":3029} +{"PlaylistId":5,"TrackId":3030} +{"PlaylistId":5,"TrackId":3031} +{"PlaylistId":5,"TrackId":3032} +{"PlaylistId":5,"TrackId":3033} +{"PlaylistId":5,"TrackId":3034} +{"PlaylistId":5,"TrackId":3035} +{"PlaylistId":5,"TrackId":3036} +{"PlaylistId":5,"TrackId":3037} +{"PlaylistId":5,"TrackId":23} +{"PlaylistId":5,"TrackId":24} +{"PlaylistId":5,"TrackId":25} +{"PlaylistId":5,"TrackId":26} +{"PlaylistId":5,"TrackId":27} +{"PlaylistId":5,"TrackId":28} +{"PlaylistId":5,"TrackId":29} +{"PlaylistId":5,"TrackId":30} +{"PlaylistId":5,"TrackId":31} +{"PlaylistId":5,"TrackId":32} +{"PlaylistId":5,"TrackId":33} +{"PlaylistId":5,"TrackId":34} +{"PlaylistId":5,"TrackId":35} +{"PlaylistId":5,"TrackId":36} +{"PlaylistId":5,"TrackId":37} +{"PlaylistId":5,"TrackId":111} +{"PlaylistId":5,"TrackId":112} +{"PlaylistId":5,"TrackId":113} +{"PlaylistId":5,"TrackId":114} +{"PlaylistId":5,"TrackId":115} +{"PlaylistId":5,"TrackId":116} +{"PlaylistId":5,"TrackId":117} +{"PlaylistId":5,"TrackId":118} +{"PlaylistId":5,"TrackId":119} +{"PlaylistId":5,"TrackId":120} +{"PlaylistId":5,"TrackId":121} +{"PlaylistId":5,"TrackId":122} +{"PlaylistId":5,"TrackId":515} +{"PlaylistId":5,"TrackId":516} +{"PlaylistId":5,"TrackId":517} +{"PlaylistId":5,"TrackId":518} +{"PlaylistId":5,"TrackId":519} +{"PlaylistId":5,"TrackId":520} +{"PlaylistId":5,"TrackId":521} +{"PlaylistId":5,"TrackId":522} +{"PlaylistId":5,"TrackId":523} +{"PlaylistId":5,"TrackId":524} +{"PlaylistId":5,"TrackId":525} +{"PlaylistId":5,"TrackId":526} +{"PlaylistId":5,"TrackId":527} +{"PlaylistId":5,"TrackId":528} +{"PlaylistId":5,"TrackId":269} +{"PlaylistId":5,"TrackId":270} +{"PlaylistId":5,"TrackId":271} +{"PlaylistId":5,"TrackId":272} +{"PlaylistId":5,"TrackId":273} +{"PlaylistId":5,"TrackId":274} +{"PlaylistId":5,"TrackId":275} +{"PlaylistId":5,"TrackId":276} +{"PlaylistId":5,"TrackId":277} +{"PlaylistId":5,"TrackId":278} +{"PlaylistId":5,"TrackId":279} +{"PlaylistId":5,"TrackId":280} +{"PlaylistId":5,"TrackId":281} +{"PlaylistId":5,"TrackId":891} +{"PlaylistId":5,"TrackId":892} +{"PlaylistId":5,"TrackId":893} +{"PlaylistId":5,"TrackId":894} +{"PlaylistId":5,"TrackId":895} +{"PlaylistId":5,"TrackId":896} +{"PlaylistId":5,"TrackId":897} +{"PlaylistId":5,"TrackId":898} +{"PlaylistId":5,"TrackId":899} +{"PlaylistId":5,"TrackId":900} +{"PlaylistId":5,"TrackId":901} +{"PlaylistId":5,"TrackId":902} +{"PlaylistId":5,"TrackId":903} +{"PlaylistId":5,"TrackId":904} +{"PlaylistId":5,"TrackId":905} +{"PlaylistId":5,"TrackId":906} +{"PlaylistId":5,"TrackId":907} +{"PlaylistId":5,"TrackId":908} +{"PlaylistId":5,"TrackId":1105} +{"PlaylistId":5,"TrackId":1106} +{"PlaylistId":5,"TrackId":1107} +{"PlaylistId":5,"TrackId":1108} +{"PlaylistId":5,"TrackId":1109} +{"PlaylistId":5,"TrackId":1110} +{"PlaylistId":5,"TrackId":1111} +{"PlaylistId":5,"TrackId":1112} +{"PlaylistId":5,"TrackId":1113} +{"PlaylistId":5,"TrackId":1114} +{"PlaylistId":5,"TrackId":1115} +{"PlaylistId":5,"TrackId":1116} +{"PlaylistId":5,"TrackId":1117} +{"PlaylistId":5,"TrackId":1118} +{"PlaylistId":5,"TrackId":1119} +{"PlaylistId":5,"TrackId":1120} +{"PlaylistId":5,"TrackId":470} +{"PlaylistId":5,"TrackId":471} +{"PlaylistId":5,"TrackId":472} +{"PlaylistId":5,"TrackId":473} +{"PlaylistId":5,"TrackId":474} +{"PlaylistId":5,"TrackId":3424} +{"PlaylistId":5,"TrackId":2690} +{"PlaylistId":5,"TrackId":2691} +{"PlaylistId":5,"TrackId":2692} +{"PlaylistId":5,"TrackId":2693} +{"PlaylistId":5,"TrackId":2694} +{"PlaylistId":5,"TrackId":2695} +{"PlaylistId":5,"TrackId":2696} +{"PlaylistId":5,"TrackId":2697} +{"PlaylistId":5,"TrackId":2698} +{"PlaylistId":5,"TrackId":2699} +{"PlaylistId":5,"TrackId":2700} +{"PlaylistId":5,"TrackId":2701} +{"PlaylistId":5,"TrackId":2702} +{"PlaylistId":5,"TrackId":2703} +{"PlaylistId":5,"TrackId":2704} +{"PlaylistId":5,"TrackId":2494} +{"PlaylistId":5,"TrackId":2514} +{"PlaylistId":5,"TrackId":2515} +{"PlaylistId":5,"TrackId":2516} +{"PlaylistId":5,"TrackId":2517} +{"PlaylistId":5,"TrackId":3132} +{"PlaylistId":5,"TrackId":3133} +{"PlaylistId":5,"TrackId":3134} +{"PlaylistId":5,"TrackId":3135} +{"PlaylistId":5,"TrackId":3136} +{"PlaylistId":5,"TrackId":3137} +{"PlaylistId":5,"TrackId":3138} +{"PlaylistId":5,"TrackId":3139} +{"PlaylistId":5,"TrackId":3140} +{"PlaylistId":5,"TrackId":3141} +{"PlaylistId":5,"TrackId":3142} +{"PlaylistId":5,"TrackId":3143} +{"PlaylistId":5,"TrackId":3144} +{"PlaylistId":5,"TrackId":3145} +{"PlaylistId":5,"TrackId":3408} +{"PlaylistId":5,"TrackId":3} +{"PlaylistId":5,"TrackId":4} +{"PlaylistId":5,"TrackId":5} +{"PlaylistId":5,"TrackId":38} +{"PlaylistId":5,"TrackId":39} +{"PlaylistId":5,"TrackId":40} +{"PlaylistId":5,"TrackId":41} +{"PlaylistId":5,"TrackId":42} +{"PlaylistId":5,"TrackId":43} +{"PlaylistId":5,"TrackId":44} +{"PlaylistId":5,"TrackId":45} +{"PlaylistId":5,"TrackId":46} +{"PlaylistId":5,"TrackId":47} +{"PlaylistId":5,"TrackId":48} +{"PlaylistId":5,"TrackId":49} +{"PlaylistId":5,"TrackId":50} +{"PlaylistId":5,"TrackId":826} +{"PlaylistId":5,"TrackId":827} +{"PlaylistId":5,"TrackId":828} +{"PlaylistId":5,"TrackId":829} +{"PlaylistId":5,"TrackId":830} +{"PlaylistId":5,"TrackId":831} +{"PlaylistId":5,"TrackId":832} +{"PlaylistId":5,"TrackId":833} +{"PlaylistId":5,"TrackId":834} +{"PlaylistId":5,"TrackId":835} +{"PlaylistId":5,"TrackId":836} +{"PlaylistId":5,"TrackId":837} +{"PlaylistId":5,"TrackId":838} +{"PlaylistId":5,"TrackId":839} +{"PlaylistId":5,"TrackId":840} +{"PlaylistId":5,"TrackId":841} +{"PlaylistId":5,"TrackId":949} +{"PlaylistId":5,"TrackId":950} +{"PlaylistId":5,"TrackId":951} +{"PlaylistId":5,"TrackId":952} +{"PlaylistId":5,"TrackId":953} +{"PlaylistId":5,"TrackId":954} +{"PlaylistId":5,"TrackId":955} +{"PlaylistId":5,"TrackId":956} +{"PlaylistId":5,"TrackId":957} +{"PlaylistId":5,"TrackId":958} +{"PlaylistId":5,"TrackId":959} +{"PlaylistId":5,"TrackId":960} +{"PlaylistId":5,"TrackId":961} +{"PlaylistId":5,"TrackId":962} +{"PlaylistId":5,"TrackId":963} +{"PlaylistId":5,"TrackId":475} +{"PlaylistId":5,"TrackId":476} +{"PlaylistId":5,"TrackId":477} +{"PlaylistId":5,"TrackId":478} +{"PlaylistId":5,"TrackId":479} +{"PlaylistId":5,"TrackId":480} +{"PlaylistId":5,"TrackId":3354} +{"PlaylistId":5,"TrackId":3351} +{"PlaylistId":5,"TrackId":1395} +{"PlaylistId":5,"TrackId":1396} +{"PlaylistId":5,"TrackId":1397} +{"PlaylistId":5,"TrackId":1398} +{"PlaylistId":5,"TrackId":1399} +{"PlaylistId":5,"TrackId":1400} +{"PlaylistId":5,"TrackId":1401} +{"PlaylistId":5,"TrackId":1402} +{"PlaylistId":5,"TrackId":1403} +{"PlaylistId":5,"TrackId":1404} +{"PlaylistId":5,"TrackId":1405} +{"PlaylistId":5,"TrackId":1455} +{"PlaylistId":5,"TrackId":1456} +{"PlaylistId":5,"TrackId":1457} +{"PlaylistId":5,"TrackId":1458} +{"PlaylistId":5,"TrackId":1459} +{"PlaylistId":5,"TrackId":1460} +{"PlaylistId":5,"TrackId":1461} +{"PlaylistId":5,"TrackId":1462} +{"PlaylistId":5,"TrackId":1463} +{"PlaylistId":5,"TrackId":1464} +{"PlaylistId":5,"TrackId":1465} +{"PlaylistId":5,"TrackId":1520} +{"PlaylistId":5,"TrackId":1521} +{"PlaylistId":5,"TrackId":1522} +{"PlaylistId":5,"TrackId":1523} +{"PlaylistId":5,"TrackId":1524} +{"PlaylistId":5,"TrackId":1525} +{"PlaylistId":5,"TrackId":1526} +{"PlaylistId":5,"TrackId":1527} +{"PlaylistId":5,"TrackId":1528} +{"PlaylistId":5,"TrackId":1529} +{"PlaylistId":5,"TrackId":1530} +{"PlaylistId":5,"TrackId":1531} +{"PlaylistId":5,"TrackId":3276} +{"PlaylistId":5,"TrackId":3277} +{"PlaylistId":5,"TrackId":3278} +{"PlaylistId":5,"TrackId":3279} +{"PlaylistId":5,"TrackId":3280} +{"PlaylistId":5,"TrackId":3281} +{"PlaylistId":5,"TrackId":3282} +{"PlaylistId":5,"TrackId":3283} +{"PlaylistId":5,"TrackId":3284} +{"PlaylistId":5,"TrackId":3285} +{"PlaylistId":5,"TrackId":3286} +{"PlaylistId":5,"TrackId":3287} +{"PlaylistId":5,"TrackId":2125} +{"PlaylistId":5,"TrackId":2126} +{"PlaylistId":5,"TrackId":2127} +{"PlaylistId":5,"TrackId":2128} +{"PlaylistId":5,"TrackId":2129} +{"PlaylistId":5,"TrackId":2130} +{"PlaylistId":5,"TrackId":2131} +{"PlaylistId":5,"TrackId":2132} +{"PlaylistId":5,"TrackId":2133} +{"PlaylistId":5,"TrackId":2134} +{"PlaylistId":5,"TrackId":2135} +{"PlaylistId":5,"TrackId":2136} +{"PlaylistId":5,"TrackId":2137} +{"PlaylistId":5,"TrackId":2138} +{"PlaylistId":5,"TrackId":3410} +{"PlaylistId":5,"TrackId":2476} +{"PlaylistId":5,"TrackId":2484} +{"PlaylistId":5,"TrackId":2495} +{"PlaylistId":5,"TrackId":2496} +{"PlaylistId":5,"TrackId":2497} +{"PlaylistId":5,"TrackId":2498} +{"PlaylistId":5,"TrackId":2709} +{"PlaylistId":5,"TrackId":2710} +{"PlaylistId":5,"TrackId":2712} +{"PlaylistId":5,"TrackId":3038} +{"PlaylistId":5,"TrackId":3039} +{"PlaylistId":5,"TrackId":3040} +{"PlaylistId":5,"TrackId":3041} +{"PlaylistId":5,"TrackId":3042} +{"PlaylistId":5,"TrackId":3043} +{"PlaylistId":5,"TrackId":3044} +{"PlaylistId":5,"TrackId":3045} +{"PlaylistId":5,"TrackId":3046} +{"PlaylistId":5,"TrackId":3047} +{"PlaylistId":5,"TrackId":3048} +{"PlaylistId":5,"TrackId":3049} +{"PlaylistId":5,"TrackId":3050} +{"PlaylistId":5,"TrackId":3051} +{"PlaylistId":5,"TrackId":3077} +{"PlaylistId":5,"TrackId":77} +{"PlaylistId":5,"TrackId":78} +{"PlaylistId":5,"TrackId":79} +{"PlaylistId":5,"TrackId":80} +{"PlaylistId":5,"TrackId":81} +{"PlaylistId":5,"TrackId":82} +{"PlaylistId":5,"TrackId":83} +{"PlaylistId":5,"TrackId":84} +{"PlaylistId":5,"TrackId":3421} +{"PlaylistId":5,"TrackId":246} +{"PlaylistId":5,"TrackId":247} +{"PlaylistId":5,"TrackId":248} +{"PlaylistId":5,"TrackId":249} +{"PlaylistId":5,"TrackId":250} +{"PlaylistId":5,"TrackId":251} +{"PlaylistId":5,"TrackId":252} +{"PlaylistId":5,"TrackId":253} +{"PlaylistId":5,"TrackId":254} +{"PlaylistId":5,"TrackId":255} +{"PlaylistId":5,"TrackId":256} +{"PlaylistId":5,"TrackId":257} +{"PlaylistId":5,"TrackId":258} +{"PlaylistId":5,"TrackId":259} +{"PlaylistId":5,"TrackId":260} +{"PlaylistId":5,"TrackId":261} +{"PlaylistId":5,"TrackId":262} +{"PlaylistId":5,"TrackId":263} +{"PlaylistId":5,"TrackId":264} +{"PlaylistId":5,"TrackId":265} +{"PlaylistId":5,"TrackId":266} +{"PlaylistId":5,"TrackId":267} +{"PlaylistId":5,"TrackId":268} +{"PlaylistId":5,"TrackId":786} +{"PlaylistId":5,"TrackId":787} +{"PlaylistId":5,"TrackId":788} +{"PlaylistId":5,"TrackId":789} +{"PlaylistId":5,"TrackId":790} +{"PlaylistId":5,"TrackId":791} +{"PlaylistId":5,"TrackId":792} +{"PlaylistId":5,"TrackId":793} +{"PlaylistId":5,"TrackId":794} +{"PlaylistId":5,"TrackId":795} +{"PlaylistId":5,"TrackId":796} +{"PlaylistId":5,"TrackId":797} +{"PlaylistId":5,"TrackId":1562} +{"PlaylistId":5,"TrackId":1563} +{"PlaylistId":5,"TrackId":1564} +{"PlaylistId":5,"TrackId":1565} +{"PlaylistId":5,"TrackId":1566} +{"PlaylistId":5,"TrackId":1567} +{"PlaylistId":5,"TrackId":1568} +{"PlaylistId":5,"TrackId":1569} +{"PlaylistId":5,"TrackId":1570} +{"PlaylistId":5,"TrackId":1571} +{"PlaylistId":5,"TrackId":1572} +{"PlaylistId":5,"TrackId":1573} +{"PlaylistId":5,"TrackId":1574} +{"PlaylistId":5,"TrackId":1575} +{"PlaylistId":5,"TrackId":1576} +{"PlaylistId":5,"TrackId":1839} +{"PlaylistId":5,"TrackId":1840} +{"PlaylistId":5,"TrackId":1841} +{"PlaylistId":5,"TrackId":1842} +{"PlaylistId":5,"TrackId":1843} +{"PlaylistId":5,"TrackId":1844} +{"PlaylistId":5,"TrackId":1845} +{"PlaylistId":5,"TrackId":1846} +{"PlaylistId":5,"TrackId":1847} +{"PlaylistId":5,"TrackId":1848} +{"PlaylistId":5,"TrackId":1849} +{"PlaylistId":5,"TrackId":1850} +{"PlaylistId":5,"TrackId":1851} +{"PlaylistId":5,"TrackId":1852} +{"PlaylistId":5,"TrackId":1986} +{"PlaylistId":5,"TrackId":1987} +{"PlaylistId":5,"TrackId":1988} +{"PlaylistId":5,"TrackId":1989} +{"PlaylistId":5,"TrackId":1990} +{"PlaylistId":5,"TrackId":1991} +{"PlaylistId":5,"TrackId":1992} +{"PlaylistId":5,"TrackId":1993} +{"PlaylistId":5,"TrackId":1994} +{"PlaylistId":5,"TrackId":1995} +{"PlaylistId":5,"TrackId":1996} +{"PlaylistId":5,"TrackId":1997} +{"PlaylistId":5,"TrackId":1998} +{"PlaylistId":5,"TrackId":1999} +{"PlaylistId":5,"TrackId":2000} +{"PlaylistId":5,"TrackId":2001} +{"PlaylistId":5,"TrackId":2002} +{"PlaylistId":5,"TrackId":3415} +{"PlaylistId":5,"TrackId":2650} +{"PlaylistId":5,"TrackId":2651} +{"PlaylistId":5,"TrackId":2652} +{"PlaylistId":5,"TrackId":2653} +{"PlaylistId":5,"TrackId":2654} +{"PlaylistId":5,"TrackId":2655} +{"PlaylistId":5,"TrackId":2656} +{"PlaylistId":5,"TrackId":2657} +{"PlaylistId":5,"TrackId":2658} +{"PlaylistId":5,"TrackId":2659} +{"PlaylistId":5,"TrackId":2660} +{"PlaylistId":5,"TrackId":2661} +{"PlaylistId":5,"TrackId":2662} +{"PlaylistId":5,"TrackId":2663} +{"PlaylistId":5,"TrackId":2296} +{"PlaylistId":5,"TrackId":2297} +{"PlaylistId":5,"TrackId":2298} +{"PlaylistId":5,"TrackId":2299} +{"PlaylistId":5,"TrackId":2300} +{"PlaylistId":5,"TrackId":2301} +{"PlaylistId":5,"TrackId":2302} +{"PlaylistId":5,"TrackId":2303} +{"PlaylistId":5,"TrackId":2304} +{"PlaylistId":5,"TrackId":2305} +{"PlaylistId":5,"TrackId":2306} +{"PlaylistId":5,"TrackId":2307} +{"PlaylistId":5,"TrackId":2308} +{"PlaylistId":5,"TrackId":2309} +{"PlaylistId":5,"TrackId":2334} +{"PlaylistId":5,"TrackId":2335} +{"PlaylistId":5,"TrackId":2336} +{"PlaylistId":5,"TrackId":2337} +{"PlaylistId":5,"TrackId":2338} +{"PlaylistId":5,"TrackId":2339} +{"PlaylistId":5,"TrackId":2340} +{"PlaylistId":5,"TrackId":2341} +{"PlaylistId":5,"TrackId":2342} +{"PlaylistId":5,"TrackId":2343} +{"PlaylistId":5,"TrackId":2434} +{"PlaylistId":5,"TrackId":2435} +{"PlaylistId":5,"TrackId":2436} +{"PlaylistId":5,"TrackId":2437} +{"PlaylistId":5,"TrackId":2438} +{"PlaylistId":5,"TrackId":2439} +{"PlaylistId":5,"TrackId":2440} +{"PlaylistId":5,"TrackId":2441} +{"PlaylistId":5,"TrackId":2442} +{"PlaylistId":5,"TrackId":2443} +{"PlaylistId":5,"TrackId":2444} +{"PlaylistId":5,"TrackId":2445} +{"PlaylistId":5,"TrackId":2446} +{"PlaylistId":5,"TrackId":2447} +{"PlaylistId":5,"TrackId":2448} +{"PlaylistId":5,"TrackId":2461} +{"PlaylistId":5,"TrackId":2462} +{"PlaylistId":5,"TrackId":2463} +{"PlaylistId":5,"TrackId":2464} +{"PlaylistId":5,"TrackId":2465} +{"PlaylistId":5,"TrackId":2466} +{"PlaylistId":5,"TrackId":2467} +{"PlaylistId":5,"TrackId":2468} +{"PlaylistId":5,"TrackId":2469} +{"PlaylistId":5,"TrackId":2470} +{"PlaylistId":5,"TrackId":2471} +{"PlaylistId":5,"TrackId":2478} +{"PlaylistId":5,"TrackId":2518} +{"PlaylistId":5,"TrackId":2519} +{"PlaylistId":5,"TrackId":2520} +{"PlaylistId":5,"TrackId":2521} +{"PlaylistId":5,"TrackId":2522} +{"PlaylistId":5,"TrackId":456} +{"PlaylistId":5,"TrackId":457} +{"PlaylistId":5,"TrackId":458} +{"PlaylistId":5,"TrackId":459} +{"PlaylistId":5,"TrackId":460} +{"PlaylistId":5,"TrackId":461} +{"PlaylistId":5,"TrackId":462} +{"PlaylistId":5,"TrackId":463} +{"PlaylistId":5,"TrackId":464} +{"PlaylistId":5,"TrackId":465} +{"PlaylistId":5,"TrackId":466} +{"PlaylistId":5,"TrackId":467} +{"PlaylistId":5,"TrackId":3078} +{"PlaylistId":5,"TrackId":3079} +{"PlaylistId":5,"TrackId":3080} +{"PlaylistId":5,"TrackId":3416} +{"PlaylistId":5,"TrackId":923} +{"PlaylistId":5,"TrackId":924} +{"PlaylistId":5,"TrackId":925} +{"PlaylistId":5,"TrackId":926} +{"PlaylistId":5,"TrackId":927} +{"PlaylistId":5,"TrackId":928} +{"PlaylistId":5,"TrackId":929} +{"PlaylistId":5,"TrackId":930} +{"PlaylistId":5,"TrackId":931} +{"PlaylistId":5,"TrackId":932} +{"PlaylistId":5,"TrackId":933} +{"PlaylistId":5,"TrackId":934} +{"PlaylistId":5,"TrackId":1020} +{"PlaylistId":5,"TrackId":1021} +{"PlaylistId":5,"TrackId":1022} +{"PlaylistId":5,"TrackId":1023} +{"PlaylistId":5,"TrackId":1024} +{"PlaylistId":5,"TrackId":1025} +{"PlaylistId":5,"TrackId":1026} +{"PlaylistId":5,"TrackId":1027} +{"PlaylistId":5,"TrackId":1028} +{"PlaylistId":5,"TrackId":1029} +{"PlaylistId":5,"TrackId":1030} +{"PlaylistId":5,"TrackId":1031} +{"PlaylistId":5,"TrackId":1032} +{"PlaylistId":5,"TrackId":481} +{"PlaylistId":5,"TrackId":482} +{"PlaylistId":5,"TrackId":483} +{"PlaylistId":5,"TrackId":484} +{"PlaylistId":5,"TrackId":1188} +{"PlaylistId":5,"TrackId":1189} +{"PlaylistId":5,"TrackId":1190} +{"PlaylistId":5,"TrackId":1191} +{"PlaylistId":5,"TrackId":1192} +{"PlaylistId":5,"TrackId":1193} +{"PlaylistId":5,"TrackId":1194} +{"PlaylistId":5,"TrackId":1195} +{"PlaylistId":5,"TrackId":1196} +{"PlaylistId":5,"TrackId":1197} +{"PlaylistId":5,"TrackId":1198} +{"PlaylistId":5,"TrackId":1199} +{"PlaylistId":5,"TrackId":1200} +{"PlaylistId":5,"TrackId":436} +{"PlaylistId":5,"TrackId":437} +{"PlaylistId":5,"TrackId":438} +{"PlaylistId":5,"TrackId":439} +{"PlaylistId":5,"TrackId":440} +{"PlaylistId":5,"TrackId":441} +{"PlaylistId":5,"TrackId":442} +{"PlaylistId":5,"TrackId":443} +{"PlaylistId":5,"TrackId":444} +{"PlaylistId":5,"TrackId":445} +{"PlaylistId":5,"TrackId":446} +{"PlaylistId":5,"TrackId":447} +{"PlaylistId":5,"TrackId":448} +{"PlaylistId":5,"TrackId":449} +{"PlaylistId":5,"TrackId":450} +{"PlaylistId":5,"TrackId":451} +{"PlaylistId":5,"TrackId":453} +{"PlaylistId":5,"TrackId":454} +{"PlaylistId":5,"TrackId":455} +{"PlaylistId":5,"TrackId":337} +{"PlaylistId":5,"TrackId":338} +{"PlaylistId":5,"TrackId":339} +{"PlaylistId":5,"TrackId":340} +{"PlaylistId":5,"TrackId":341} +{"PlaylistId":5,"TrackId":342} +{"PlaylistId":5,"TrackId":343} +{"PlaylistId":5,"TrackId":344} +{"PlaylistId":5,"TrackId":345} +{"PlaylistId":5,"TrackId":346} +{"PlaylistId":5,"TrackId":347} +{"PlaylistId":5,"TrackId":348} +{"PlaylistId":5,"TrackId":349} +{"PlaylistId":5,"TrackId":350} +{"PlaylistId":5,"TrackId":1577} +{"PlaylistId":5,"TrackId":1578} +{"PlaylistId":5,"TrackId":1579} +{"PlaylistId":5,"TrackId":1580} +{"PlaylistId":5,"TrackId":1581} +{"PlaylistId":5,"TrackId":1582} +{"PlaylistId":5,"TrackId":1583} +{"PlaylistId":5,"TrackId":1584} +{"PlaylistId":5,"TrackId":1585} +{"PlaylistId":5,"TrackId":1586} +{"PlaylistId":5,"TrackId":1861} +{"PlaylistId":5,"TrackId":1862} +{"PlaylistId":5,"TrackId":1863} +{"PlaylistId":5,"TrackId":1864} +{"PlaylistId":5,"TrackId":1865} +{"PlaylistId":5,"TrackId":1866} +{"PlaylistId":5,"TrackId":1867} +{"PlaylistId":5,"TrackId":1868} +{"PlaylistId":5,"TrackId":1869} +{"PlaylistId":5,"TrackId":1870} +{"PlaylistId":5,"TrackId":1871} +{"PlaylistId":5,"TrackId":1872} +{"PlaylistId":5,"TrackId":1873} +{"PlaylistId":5,"TrackId":3359} +{"PlaylistId":5,"TrackId":2406} +{"PlaylistId":5,"TrackId":2407} +{"PlaylistId":5,"TrackId":2408} +{"PlaylistId":5,"TrackId":2409} +{"PlaylistId":5,"TrackId":2410} +{"PlaylistId":5,"TrackId":2411} +{"PlaylistId":5,"TrackId":2412} +{"PlaylistId":5,"TrackId":2413} +{"PlaylistId":5,"TrackId":2414} +{"PlaylistId":5,"TrackId":2415} +{"PlaylistId":5,"TrackId":2416} +{"PlaylistId":5,"TrackId":2417} +{"PlaylistId":5,"TrackId":2418} +{"PlaylistId":5,"TrackId":2419} +{"PlaylistId":5,"TrackId":2499} +{"PlaylistId":5,"TrackId":2706} +{"PlaylistId":5,"TrackId":2708} +{"PlaylistId":5,"TrackId":2713} +{"PlaylistId":5,"TrackId":2716} +{"PlaylistId":5,"TrackId":2720} +{"PlaylistId":5,"TrackId":2721} +{"PlaylistId":5,"TrackId":2722} +{"PlaylistId":5,"TrackId":2723} +{"PlaylistId":5,"TrackId":2724} +{"PlaylistId":5,"TrackId":2725} +{"PlaylistId":5,"TrackId":2726} +{"PlaylistId":5,"TrackId":2727} +{"PlaylistId":5,"TrackId":2728} +{"PlaylistId":5,"TrackId":2729} +{"PlaylistId":5,"TrackId":2730} +{"PlaylistId":5,"TrackId":2565} +{"PlaylistId":5,"TrackId":2566} +{"PlaylistId":5,"TrackId":2567} +{"PlaylistId":5,"TrackId":2568} +{"PlaylistId":5,"TrackId":2569} +{"PlaylistId":5,"TrackId":2570} +{"PlaylistId":5,"TrackId":2571} +{"PlaylistId":5,"TrackId":2781} +{"PlaylistId":5,"TrackId":2782} +{"PlaylistId":5,"TrackId":2783} +{"PlaylistId":5,"TrackId":2784} +{"PlaylistId":5,"TrackId":2785} +{"PlaylistId":5,"TrackId":2786} +{"PlaylistId":5,"TrackId":2787} +{"PlaylistId":5,"TrackId":2788} +{"PlaylistId":5,"TrackId":2789} +{"PlaylistId":5,"TrackId":2790} +{"PlaylistId":5,"TrackId":2791} +{"PlaylistId":5,"TrackId":2792} +{"PlaylistId":5,"TrackId":2793} +{"PlaylistId":5,"TrackId":2794} +{"PlaylistId":5,"TrackId":2795} +{"PlaylistId":5,"TrackId":2796} +{"PlaylistId":5,"TrackId":2797} +{"PlaylistId":5,"TrackId":2798} +{"PlaylistId":5,"TrackId":2799} +{"PlaylistId":5,"TrackId":2800} +{"PlaylistId":5,"TrackId":2801} +{"PlaylistId":5,"TrackId":2802} +{"PlaylistId":5,"TrackId":2975} +{"PlaylistId":5,"TrackId":2976} +{"PlaylistId":5,"TrackId":2977} +{"PlaylistId":5,"TrackId":2978} +{"PlaylistId":5,"TrackId":2979} +{"PlaylistId":5,"TrackId":2980} +{"PlaylistId":5,"TrackId":2981} +{"PlaylistId":5,"TrackId":2982} +{"PlaylistId":5,"TrackId":2983} +{"PlaylistId":5,"TrackId":2984} +{"PlaylistId":5,"TrackId":2985} +{"PlaylistId":5,"TrackId":2986} +{"PlaylistId":5,"TrackId":183} +{"PlaylistId":5,"TrackId":184} +{"PlaylistId":5,"TrackId":185} +{"PlaylistId":5,"TrackId":186} +{"PlaylistId":5,"TrackId":187} +{"PlaylistId":5,"TrackId":188} +{"PlaylistId":5,"TrackId":189} +{"PlaylistId":5,"TrackId":190} +{"PlaylistId":5,"TrackId":191} +{"PlaylistId":5,"TrackId":192} +{"PlaylistId":5,"TrackId":193} +{"PlaylistId":5,"TrackId":205} +{"PlaylistId":5,"TrackId":206} +{"PlaylistId":5,"TrackId":207} +{"PlaylistId":5,"TrackId":208} +{"PlaylistId":5,"TrackId":209} +{"PlaylistId":5,"TrackId":210} +{"PlaylistId":5,"TrackId":211} +{"PlaylistId":5,"TrackId":212} +{"PlaylistId":5,"TrackId":213} +{"PlaylistId":5,"TrackId":214} +{"PlaylistId":5,"TrackId":215} +{"PlaylistId":5,"TrackId":216} +{"PlaylistId":5,"TrackId":217} +{"PlaylistId":5,"TrackId":218} +{"PlaylistId":5,"TrackId":219} +{"PlaylistId":5,"TrackId":220} +{"PlaylistId":5,"TrackId":221} +{"PlaylistId":5,"TrackId":222} +{"PlaylistId":5,"TrackId":3417} +{"PlaylistId":5,"TrackId":583} +{"PlaylistId":5,"TrackId":584} +{"PlaylistId":5,"TrackId":585} +{"PlaylistId":5,"TrackId":586} +{"PlaylistId":5,"TrackId":587} +{"PlaylistId":5,"TrackId":588} +{"PlaylistId":5,"TrackId":589} +{"PlaylistId":5,"TrackId":590} +{"PlaylistId":5,"TrackId":591} +{"PlaylistId":5,"TrackId":592} +{"PlaylistId":5,"TrackId":593} +{"PlaylistId":5,"TrackId":594} +{"PlaylistId":5,"TrackId":595} +{"PlaylistId":5,"TrackId":596} +{"PlaylistId":5,"TrackId":976} +{"PlaylistId":5,"TrackId":977} +{"PlaylistId":5,"TrackId":978} +{"PlaylistId":5,"TrackId":979} +{"PlaylistId":5,"TrackId":984} +{"PlaylistId":5,"TrackId":1087} +{"PlaylistId":5,"TrackId":1088} +{"PlaylistId":5,"TrackId":1089} +{"PlaylistId":5,"TrackId":1090} +{"PlaylistId":5,"TrackId":1091} +{"PlaylistId":5,"TrackId":1092} +{"PlaylistId":5,"TrackId":1093} +{"PlaylistId":5,"TrackId":1094} +{"PlaylistId":5,"TrackId":1095} +{"PlaylistId":5,"TrackId":1096} +{"PlaylistId":5,"TrackId":1097} +{"PlaylistId":5,"TrackId":1098} +{"PlaylistId":5,"TrackId":1099} +{"PlaylistId":5,"TrackId":1100} +{"PlaylistId":5,"TrackId":1101} +{"PlaylistId":5,"TrackId":1305} +{"PlaylistId":5,"TrackId":1306} +{"PlaylistId":5,"TrackId":1307} +{"PlaylistId":5,"TrackId":1308} +{"PlaylistId":5,"TrackId":1309} +{"PlaylistId":5,"TrackId":1310} +{"PlaylistId":5,"TrackId":1311} +{"PlaylistId":5,"TrackId":1312} +{"PlaylistId":5,"TrackId":1313} +{"PlaylistId":5,"TrackId":1314} +{"PlaylistId":5,"TrackId":1315} +{"PlaylistId":5,"TrackId":1316} +{"PlaylistId":5,"TrackId":1317} +{"PlaylistId":5,"TrackId":1318} +{"PlaylistId":5,"TrackId":1319} +{"PlaylistId":5,"TrackId":1320} +{"PlaylistId":5,"TrackId":1321} +{"PlaylistId":5,"TrackId":1322} +{"PlaylistId":5,"TrackId":1323} +{"PlaylistId":5,"TrackId":1324} +{"PlaylistId":5,"TrackId":1406} +{"PlaylistId":5,"TrackId":1407} +{"PlaylistId":5,"TrackId":1408} +{"PlaylistId":5,"TrackId":1409} +{"PlaylistId":5,"TrackId":1410} +{"PlaylistId":5,"TrackId":1411} +{"PlaylistId":5,"TrackId":1412} +{"PlaylistId":5,"TrackId":1413} +{"PlaylistId":5,"TrackId":1686} +{"PlaylistId":5,"TrackId":1687} +{"PlaylistId":5,"TrackId":1688} +{"PlaylistId":5,"TrackId":1689} +{"PlaylistId":5,"TrackId":1690} +{"PlaylistId":5,"TrackId":1691} +{"PlaylistId":5,"TrackId":1692} +{"PlaylistId":5,"TrackId":1693} +{"PlaylistId":5,"TrackId":1694} +{"PlaylistId":5,"TrackId":1695} +{"PlaylistId":5,"TrackId":1696} +{"PlaylistId":5,"TrackId":1697} +{"PlaylistId":5,"TrackId":1698} +{"PlaylistId":5,"TrackId":1699} +{"PlaylistId":5,"TrackId":1700} +{"PlaylistId":5,"TrackId":1701} +{"PlaylistId":5,"TrackId":408} +{"PlaylistId":5,"TrackId":409} +{"PlaylistId":5,"TrackId":410} +{"PlaylistId":5,"TrackId":411} +{"PlaylistId":5,"TrackId":412} +{"PlaylistId":5,"TrackId":413} +{"PlaylistId":5,"TrackId":414} +{"PlaylistId":5,"TrackId":415} +{"PlaylistId":5,"TrackId":416} +{"PlaylistId":5,"TrackId":417} +{"PlaylistId":5,"TrackId":418} +{"PlaylistId":5,"TrackId":1813} +{"PlaylistId":5,"TrackId":1814} +{"PlaylistId":5,"TrackId":1815} +{"PlaylistId":5,"TrackId":1816} +{"PlaylistId":5,"TrackId":1817} +{"PlaylistId":5,"TrackId":1818} +{"PlaylistId":5,"TrackId":1819} +{"PlaylistId":5,"TrackId":1820} +{"PlaylistId":5,"TrackId":1821} +{"PlaylistId":5,"TrackId":1822} +{"PlaylistId":5,"TrackId":1823} +{"PlaylistId":5,"TrackId":1824} +{"PlaylistId":5,"TrackId":1825} +{"PlaylistId":5,"TrackId":1826} +{"PlaylistId":5,"TrackId":1827} +{"PlaylistId":5,"TrackId":1828} +{"PlaylistId":5,"TrackId":1969} +{"PlaylistId":5,"TrackId":1970} +{"PlaylistId":5,"TrackId":1971} +{"PlaylistId":5,"TrackId":1972} +{"PlaylistId":5,"TrackId":1973} +{"PlaylistId":5,"TrackId":1974} +{"PlaylistId":5,"TrackId":1975} +{"PlaylistId":5,"TrackId":1976} +{"PlaylistId":5,"TrackId":1977} +{"PlaylistId":5,"TrackId":1978} +{"PlaylistId":5,"TrackId":1979} +{"PlaylistId":5,"TrackId":1980} +{"PlaylistId":5,"TrackId":1981} +{"PlaylistId":5,"TrackId":1982} +{"PlaylistId":5,"TrackId":1983} +{"PlaylistId":5,"TrackId":1984} +{"PlaylistId":5,"TrackId":1985} +{"PlaylistId":5,"TrackId":2113} +{"PlaylistId":5,"TrackId":2114} +{"PlaylistId":5,"TrackId":2115} +{"PlaylistId":5,"TrackId":2116} +{"PlaylistId":5,"TrackId":2117} +{"PlaylistId":5,"TrackId":2118} +{"PlaylistId":5,"TrackId":2119} +{"PlaylistId":5,"TrackId":2120} +{"PlaylistId":5,"TrackId":2121} +{"PlaylistId":5,"TrackId":2122} +{"PlaylistId":5,"TrackId":2123} +{"PlaylistId":5,"TrackId":2124} +{"PlaylistId":5,"TrackId":2149} +{"PlaylistId":5,"TrackId":2150} +{"PlaylistId":5,"TrackId":2151} +{"PlaylistId":5,"TrackId":2152} +{"PlaylistId":5,"TrackId":2153} +{"PlaylistId":5,"TrackId":2154} +{"PlaylistId":5,"TrackId":2155} +{"PlaylistId":5,"TrackId":2156} +{"PlaylistId":5,"TrackId":2157} +{"PlaylistId":5,"TrackId":2158} +{"PlaylistId":5,"TrackId":2159} +{"PlaylistId":5,"TrackId":2160} +{"PlaylistId":5,"TrackId":2161} +{"PlaylistId":5,"TrackId":2162} +{"PlaylistId":5,"TrackId":2163} +{"PlaylistId":5,"TrackId":2164} +{"PlaylistId":5,"TrackId":2676} +{"PlaylistId":5,"TrackId":2677} +{"PlaylistId":5,"TrackId":2678} +{"PlaylistId":5,"TrackId":2679} +{"PlaylistId":5,"TrackId":2680} +{"PlaylistId":5,"TrackId":2681} +{"PlaylistId":5,"TrackId":2682} +{"PlaylistId":5,"TrackId":2683} +{"PlaylistId":5,"TrackId":2684} +{"PlaylistId":5,"TrackId":2685} +{"PlaylistId":5,"TrackId":2686} +{"PlaylistId":5,"TrackId":2687} +{"PlaylistId":5,"TrackId":2688} +{"PlaylistId":5,"TrackId":2689} +{"PlaylistId":5,"TrackId":3418} +{"PlaylistId":5,"TrackId":2500} +{"PlaylistId":5,"TrackId":2501} +{"PlaylistId":5,"TrackId":2803} +{"PlaylistId":5,"TrackId":2804} +{"PlaylistId":5,"TrackId":2805} +{"PlaylistId":5,"TrackId":2806} +{"PlaylistId":5,"TrackId":2807} +{"PlaylistId":5,"TrackId":2808} +{"PlaylistId":5,"TrackId":2809} +{"PlaylistId":5,"TrackId":2810} +{"PlaylistId":5,"TrackId":2811} +{"PlaylistId":5,"TrackId":2812} +{"PlaylistId":5,"TrackId":2813} +{"PlaylistId":5,"TrackId":2814} +{"PlaylistId":5,"TrackId":2815} +{"PlaylistId":5,"TrackId":2816} +{"PlaylistId":5,"TrackId":2817} +{"PlaylistId":5,"TrackId":2818} +{"PlaylistId":5,"TrackId":2949} +{"PlaylistId":5,"TrackId":2950} +{"PlaylistId":5,"TrackId":2951} +{"PlaylistId":5,"TrackId":2952} +{"PlaylistId":5,"TrackId":2953} +{"PlaylistId":5,"TrackId":2954} +{"PlaylistId":5,"TrackId":2955} +{"PlaylistId":5,"TrackId":2956} +{"PlaylistId":5,"TrackId":2957} +{"PlaylistId":5,"TrackId":2958} +{"PlaylistId":5,"TrackId":2959} +{"PlaylistId":5,"TrackId":2960} +{"PlaylistId":5,"TrackId":2961} +{"PlaylistId":5,"TrackId":2962} +{"PlaylistId":5,"TrackId":2963} +{"PlaylistId":5,"TrackId":3004} +{"PlaylistId":5,"TrackId":3005} +{"PlaylistId":5,"TrackId":3006} +{"PlaylistId":5,"TrackId":3007} +{"PlaylistId":5,"TrackId":3008} +{"PlaylistId":5,"TrackId":3009} +{"PlaylistId":5,"TrackId":3010} +{"PlaylistId":5,"TrackId":3011} +{"PlaylistId":5,"TrackId":3012} +{"PlaylistId":5,"TrackId":3013} +{"PlaylistId":5,"TrackId":3014} +{"PlaylistId":5,"TrackId":3015} +{"PlaylistId":5,"TrackId":3016} +{"PlaylistId":5,"TrackId":3017} +{"PlaylistId":5,"TrackId":3092} +{"PlaylistId":5,"TrackId":3093} +{"PlaylistId":5,"TrackId":3094} +{"PlaylistId":5,"TrackId":3095} +{"PlaylistId":5,"TrackId":3096} +{"PlaylistId":5,"TrackId":3097} +{"PlaylistId":5,"TrackId":3098} +{"PlaylistId":5,"TrackId":3099} +{"PlaylistId":5,"TrackId":3100} +{"PlaylistId":5,"TrackId":3101} +{"PlaylistId":5,"TrackId":3102} +{"PlaylistId":5,"TrackId":3103} +{"PlaylistId":5,"TrackId":3409} +{"PlaylistId":5,"TrackId":299} +{"PlaylistId":5,"TrackId":300} +{"PlaylistId":5,"TrackId":301} +{"PlaylistId":5,"TrackId":302} +{"PlaylistId":5,"TrackId":303} +{"PlaylistId":5,"TrackId":304} +{"PlaylistId":5,"TrackId":305} +{"PlaylistId":5,"TrackId":306} +{"PlaylistId":5,"TrackId":307} +{"PlaylistId":5,"TrackId":308} +{"PlaylistId":5,"TrackId":309} +{"PlaylistId":5,"TrackId":310} +{"PlaylistId":5,"TrackId":311} +{"PlaylistId":5,"TrackId":312} +{"PlaylistId":5,"TrackId":851} +{"PlaylistId":5,"TrackId":852} +{"PlaylistId":5,"TrackId":853} +{"PlaylistId":5,"TrackId":854} +{"PlaylistId":5,"TrackId":855} +{"PlaylistId":5,"TrackId":856} +{"PlaylistId":5,"TrackId":857} +{"PlaylistId":5,"TrackId":858} +{"PlaylistId":5,"TrackId":859} +{"PlaylistId":5,"TrackId":860} +{"PlaylistId":5,"TrackId":861} +{"PlaylistId":5,"TrackId":862} +{"PlaylistId":5,"TrackId":863} +{"PlaylistId":5,"TrackId":864} +{"PlaylistId":5,"TrackId":865} +{"PlaylistId":5,"TrackId":866} +{"PlaylistId":5,"TrackId":867} +{"PlaylistId":5,"TrackId":868} +{"PlaylistId":5,"TrackId":869} +{"PlaylistId":5,"TrackId":870} +{"PlaylistId":5,"TrackId":871} +{"PlaylistId":5,"TrackId":872} +{"PlaylistId":5,"TrackId":873} +{"PlaylistId":5,"TrackId":874} +{"PlaylistId":5,"TrackId":875} +{"PlaylistId":5,"TrackId":876} +{"PlaylistId":5,"TrackId":1057} +{"PlaylistId":5,"TrackId":1058} +{"PlaylistId":5,"TrackId":1059} +{"PlaylistId":5,"TrackId":1060} +{"PlaylistId":5,"TrackId":1061} +{"PlaylistId":5,"TrackId":1062} +{"PlaylistId":5,"TrackId":1063} +{"PlaylistId":5,"TrackId":1064} +{"PlaylistId":5,"TrackId":1065} +{"PlaylistId":5,"TrackId":1066} +{"PlaylistId":5,"TrackId":1067} +{"PlaylistId":5,"TrackId":1068} +{"PlaylistId":5,"TrackId":1069} +{"PlaylistId":5,"TrackId":1070} +{"PlaylistId":5,"TrackId":1071} +{"PlaylistId":5,"TrackId":1072} +{"PlaylistId":5,"TrackId":501} +{"PlaylistId":5,"TrackId":502} +{"PlaylistId":5,"TrackId":503} +{"PlaylistId":5,"TrackId":504} +{"PlaylistId":5,"TrackId":505} +{"PlaylistId":5,"TrackId":506} +{"PlaylistId":5,"TrackId":507} +{"PlaylistId":5,"TrackId":508} +{"PlaylistId":5,"TrackId":509} +{"PlaylistId":5,"TrackId":510} +{"PlaylistId":5,"TrackId":511} +{"PlaylistId":5,"TrackId":512} +{"PlaylistId":5,"TrackId":513} +{"PlaylistId":5,"TrackId":514} +{"PlaylistId":5,"TrackId":1444} +{"PlaylistId":5,"TrackId":1445} +{"PlaylistId":5,"TrackId":1446} +{"PlaylistId":5,"TrackId":1447} +{"PlaylistId":5,"TrackId":1448} +{"PlaylistId":5,"TrackId":1449} +{"PlaylistId":5,"TrackId":1450} +{"PlaylistId":5,"TrackId":1451} +{"PlaylistId":5,"TrackId":1452} +{"PlaylistId":5,"TrackId":1453} +{"PlaylistId":5,"TrackId":1454} +{"PlaylistId":5,"TrackId":1496} +{"PlaylistId":5,"TrackId":1497} +{"PlaylistId":5,"TrackId":1498} +{"PlaylistId":5,"TrackId":1499} +{"PlaylistId":5,"TrackId":1500} +{"PlaylistId":5,"TrackId":1501} +{"PlaylistId":5,"TrackId":1502} +{"PlaylistId":5,"TrackId":1503} +{"PlaylistId":5,"TrackId":1504} +{"PlaylistId":5,"TrackId":1505} +{"PlaylistId":5,"TrackId":1671} +{"PlaylistId":5,"TrackId":1672} +{"PlaylistId":5,"TrackId":1673} +{"PlaylistId":5,"TrackId":1674} +{"PlaylistId":5,"TrackId":1675} +{"PlaylistId":5,"TrackId":1676} +{"PlaylistId":5,"TrackId":1677} +{"PlaylistId":5,"TrackId":1678} +{"PlaylistId":5,"TrackId":1679} +{"PlaylistId":5,"TrackId":1680} +{"PlaylistId":5,"TrackId":1681} +{"PlaylistId":5,"TrackId":1682} +{"PlaylistId":5,"TrackId":1683} +{"PlaylistId":5,"TrackId":1684} +{"PlaylistId":5,"TrackId":1685} +{"PlaylistId":5,"TrackId":2044} +{"PlaylistId":5,"TrackId":2045} +{"PlaylistId":5,"TrackId":2046} +{"PlaylistId":5,"TrackId":2047} +{"PlaylistId":5,"TrackId":2048} +{"PlaylistId":5,"TrackId":2049} +{"PlaylistId":5,"TrackId":2050} +{"PlaylistId":5,"TrackId":2051} +{"PlaylistId":5,"TrackId":2052} +{"PlaylistId":5,"TrackId":2053} +{"PlaylistId":5,"TrackId":2054} +{"PlaylistId":5,"TrackId":2055} +{"PlaylistId":5,"TrackId":2056} +{"PlaylistId":5,"TrackId":2057} +{"PlaylistId":5,"TrackId":2058} +{"PlaylistId":5,"TrackId":2059} +{"PlaylistId":5,"TrackId":2060} +{"PlaylistId":5,"TrackId":2061} +{"PlaylistId":5,"TrackId":2062} +{"PlaylistId":5,"TrackId":2063} +{"PlaylistId":5,"TrackId":2064} +{"PlaylistId":5,"TrackId":2238} +{"PlaylistId":5,"TrackId":2239} +{"PlaylistId":5,"TrackId":2240} +{"PlaylistId":5,"TrackId":2241} +{"PlaylistId":5,"TrackId":2242} +{"PlaylistId":5,"TrackId":2243} +{"PlaylistId":5,"TrackId":2244} +{"PlaylistId":5,"TrackId":2245} +{"PlaylistId":5,"TrackId":2246} +{"PlaylistId":5,"TrackId":2247} +{"PlaylistId":5,"TrackId":2248} +{"PlaylistId":5,"TrackId":2249} +{"PlaylistId":5,"TrackId":2250} +{"PlaylistId":5,"TrackId":2251} +{"PlaylistId":5,"TrackId":2252} +{"PlaylistId":5,"TrackId":2253} +{"PlaylistId":5,"TrackId":2391} +{"PlaylistId":5,"TrackId":2392} +{"PlaylistId":5,"TrackId":2393} +{"PlaylistId":5,"TrackId":2394} +{"PlaylistId":5,"TrackId":2395} +{"PlaylistId":5,"TrackId":2396} +{"PlaylistId":5,"TrackId":2397} +{"PlaylistId":5,"TrackId":2398} +{"PlaylistId":5,"TrackId":2399} +{"PlaylistId":5,"TrackId":2400} +{"PlaylistId":5,"TrackId":2401} +{"PlaylistId":5,"TrackId":2402} +{"PlaylistId":5,"TrackId":2403} +{"PlaylistId":5,"TrackId":2404} +{"PlaylistId":5,"TrackId":2405} +{"PlaylistId":5,"TrackId":570} +{"PlaylistId":5,"TrackId":573} +{"PlaylistId":5,"TrackId":577} +{"PlaylistId":5,"TrackId":580} +{"PlaylistId":5,"TrackId":581} +{"PlaylistId":5,"TrackId":571} +{"PlaylistId":5,"TrackId":579} +{"PlaylistId":5,"TrackId":582} +{"PlaylistId":5,"TrackId":572} +{"PlaylistId":5,"TrackId":575} +{"PlaylistId":5,"TrackId":578} +{"PlaylistId":5,"TrackId":574} +{"PlaylistId":5,"TrackId":576} +{"PlaylistId":5,"TrackId":2707} +{"PlaylistId":5,"TrackId":2714} +{"PlaylistId":5,"TrackId":2717} +{"PlaylistId":5,"TrackId":2718} +{"PlaylistId":5,"TrackId":3146} +{"PlaylistId":5,"TrackId":3147} +{"PlaylistId":5,"TrackId":3148} +{"PlaylistId":5,"TrackId":3149} +{"PlaylistId":5,"TrackId":3150} +{"PlaylistId":5,"TrackId":3151} +{"PlaylistId":5,"TrackId":3152} +{"PlaylistId":5,"TrackId":3153} +{"PlaylistId":5,"TrackId":3154} +{"PlaylistId":5,"TrackId":3155} +{"PlaylistId":5,"TrackId":3156} +{"PlaylistId":5,"TrackId":3157} +{"PlaylistId":5,"TrackId":3158} +{"PlaylistId":5,"TrackId":3159} +{"PlaylistId":5,"TrackId":3160} +{"PlaylistId":5,"TrackId":3161} +{"PlaylistId":5,"TrackId":3162} +{"PlaylistId":5,"TrackId":3163} +{"PlaylistId":5,"TrackId":3164} +{"PlaylistId":5,"TrackId":3438} +{"PlaylistId":5,"TrackId":3442} +{"PlaylistId":5,"TrackId":3436} +{"PlaylistId":5,"TrackId":3454} +{"PlaylistId":5,"TrackId":3432} +{"PlaylistId":5,"TrackId":3447} +{"PlaylistId":5,"TrackId":3434} +{"PlaylistId":5,"TrackId":3449} +{"PlaylistId":5,"TrackId":3445} +{"PlaylistId":5,"TrackId":3439} +{"PlaylistId":5,"TrackId":3435} +{"PlaylistId":5,"TrackId":3448} +{"PlaylistId":5,"TrackId":3437} +{"PlaylistId":5,"TrackId":3446} +{"PlaylistId":5,"TrackId":3444} +{"PlaylistId":5,"TrackId":3451} +{"PlaylistId":5,"TrackId":3430} +{"PlaylistId":5,"TrackId":3482} +{"PlaylistId":5,"TrackId":3485} +{"PlaylistId":5,"TrackId":3499} +{"PlaylistId":5,"TrackId":3490} +{"PlaylistId":5,"TrackId":3489} +{"PlaylistId":5,"TrackId":3492} +{"PlaylistId":5,"TrackId":3493} +{"PlaylistId":5,"TrackId":3498} +{"PlaylistId":5,"TrackId":3481} +{"PlaylistId":5,"TrackId":3503} +{"PlaylistId":8,"TrackId":3427} +{"PlaylistId":8,"TrackId":3357} +{"PlaylistId":8,"TrackId":1} +{"PlaylistId":8,"TrackId":6} +{"PlaylistId":8,"TrackId":7} +{"PlaylistId":8,"TrackId":8} +{"PlaylistId":8,"TrackId":9} +{"PlaylistId":8,"TrackId":10} +{"PlaylistId":8,"TrackId":11} +{"PlaylistId":8,"TrackId":12} +{"PlaylistId":8,"TrackId":13} +{"PlaylistId":8,"TrackId":14} +{"PlaylistId":8,"TrackId":15} +{"PlaylistId":8,"TrackId":16} +{"PlaylistId":8,"TrackId":17} +{"PlaylistId":8,"TrackId":18} +{"PlaylistId":8,"TrackId":19} +{"PlaylistId":8,"TrackId":20} +{"PlaylistId":8,"TrackId":21} +{"PlaylistId":8,"TrackId":22} +{"PlaylistId":8,"TrackId":3411} +{"PlaylistId":8,"TrackId":3412} +{"PlaylistId":8,"TrackId":3419} +{"PlaylistId":8,"TrackId":2} +{"PlaylistId":8,"TrackId":3} +{"PlaylistId":8,"TrackId":4} +{"PlaylistId":8,"TrackId":5} +{"PlaylistId":8,"TrackId":23} +{"PlaylistId":8,"TrackId":24} +{"PlaylistId":8,"TrackId":25} +{"PlaylistId":8,"TrackId":26} +{"PlaylistId":8,"TrackId":27} +{"PlaylistId":8,"TrackId":28} +{"PlaylistId":8,"TrackId":29} +{"PlaylistId":8,"TrackId":30} +{"PlaylistId":8,"TrackId":31} +{"PlaylistId":8,"TrackId":32} +{"PlaylistId":8,"TrackId":33} +{"PlaylistId":8,"TrackId":34} +{"PlaylistId":8,"TrackId":35} +{"PlaylistId":8,"TrackId":36} +{"PlaylistId":8,"TrackId":37} +{"PlaylistId":8,"TrackId":3256} +{"PlaylistId":8,"TrackId":3350} +{"PlaylistId":8,"TrackId":3349} +{"PlaylistId":8,"TrackId":38} +{"PlaylistId":8,"TrackId":39} +{"PlaylistId":8,"TrackId":40} +{"PlaylistId":8,"TrackId":41} +{"PlaylistId":8,"TrackId":42} +{"PlaylistId":8,"TrackId":43} +{"PlaylistId":8,"TrackId":44} +{"PlaylistId":8,"TrackId":45} +{"PlaylistId":8,"TrackId":46} +{"PlaylistId":8,"TrackId":47} +{"PlaylistId":8,"TrackId":48} +{"PlaylistId":8,"TrackId":49} +{"PlaylistId":8,"TrackId":50} +{"PlaylistId":8,"TrackId":3403} +{"PlaylistId":8,"TrackId":51} +{"PlaylistId":8,"TrackId":52} +{"PlaylistId":8,"TrackId":53} +{"PlaylistId":8,"TrackId":54} +{"PlaylistId":8,"TrackId":55} +{"PlaylistId":8,"TrackId":56} +{"PlaylistId":8,"TrackId":57} +{"PlaylistId":8,"TrackId":58} +{"PlaylistId":8,"TrackId":59} +{"PlaylistId":8,"TrackId":60} +{"PlaylistId":8,"TrackId":61} +{"PlaylistId":8,"TrackId":62} +{"PlaylistId":8,"TrackId":3406} +{"PlaylistId":8,"TrackId":379} +{"PlaylistId":8,"TrackId":391} +{"PlaylistId":8,"TrackId":63} +{"PlaylistId":8,"TrackId":64} +{"PlaylistId":8,"TrackId":65} +{"PlaylistId":8,"TrackId":66} +{"PlaylistId":8,"TrackId":67} +{"PlaylistId":8,"TrackId":68} +{"PlaylistId":8,"TrackId":69} +{"PlaylistId":8,"TrackId":70} +{"PlaylistId":8,"TrackId":71} +{"PlaylistId":8,"TrackId":72} +{"PlaylistId":8,"TrackId":73} +{"PlaylistId":8,"TrackId":74} +{"PlaylistId":8,"TrackId":75} +{"PlaylistId":8,"TrackId":76} +{"PlaylistId":8,"TrackId":77} +{"PlaylistId":8,"TrackId":78} +{"PlaylistId":8,"TrackId":79} +{"PlaylistId":8,"TrackId":80} +{"PlaylistId":8,"TrackId":81} +{"PlaylistId":8,"TrackId":82} +{"PlaylistId":8,"TrackId":83} +{"PlaylistId":8,"TrackId":84} +{"PlaylistId":8,"TrackId":85} +{"PlaylistId":8,"TrackId":86} +{"PlaylistId":8,"TrackId":87} +{"PlaylistId":8,"TrackId":88} +{"PlaylistId":8,"TrackId":89} +{"PlaylistId":8,"TrackId":90} +{"PlaylistId":8,"TrackId":91} +{"PlaylistId":8,"TrackId":92} +{"PlaylistId":8,"TrackId":93} +{"PlaylistId":8,"TrackId":94} +{"PlaylistId":8,"TrackId":95} +{"PlaylistId":8,"TrackId":96} +{"PlaylistId":8,"TrackId":97} +{"PlaylistId":8,"TrackId":98} +{"PlaylistId":8,"TrackId":99} +{"PlaylistId":8,"TrackId":100} +{"PlaylistId":8,"TrackId":101} +{"PlaylistId":8,"TrackId":102} +{"PlaylistId":8,"TrackId":103} +{"PlaylistId":8,"TrackId":104} +{"PlaylistId":8,"TrackId":105} +{"PlaylistId":8,"TrackId":106} +{"PlaylistId":8,"TrackId":107} +{"PlaylistId":8,"TrackId":108} +{"PlaylistId":8,"TrackId":109} +{"PlaylistId":8,"TrackId":110} +{"PlaylistId":8,"TrackId":3402} +{"PlaylistId":8,"TrackId":3389} +{"PlaylistId":8,"TrackId":3390} +{"PlaylistId":8,"TrackId":3391} +{"PlaylistId":8,"TrackId":3392} +{"PlaylistId":8,"TrackId":3393} +{"PlaylistId":8,"TrackId":3394} +{"PlaylistId":8,"TrackId":3395} +{"PlaylistId":8,"TrackId":3396} +{"PlaylistId":8,"TrackId":3397} +{"PlaylistId":8,"TrackId":3398} +{"PlaylistId":8,"TrackId":3399} +{"PlaylistId":8,"TrackId":3400} +{"PlaylistId":8,"TrackId":3401} +{"PlaylistId":8,"TrackId":3262} +{"PlaylistId":8,"TrackId":376} +{"PlaylistId":8,"TrackId":397} +{"PlaylistId":8,"TrackId":382} +{"PlaylistId":8,"TrackId":111} +{"PlaylistId":8,"TrackId":112} +{"PlaylistId":8,"TrackId":113} +{"PlaylistId":8,"TrackId":114} +{"PlaylistId":8,"TrackId":115} +{"PlaylistId":8,"TrackId":116} +{"PlaylistId":8,"TrackId":117} +{"PlaylistId":8,"TrackId":118} +{"PlaylistId":8,"TrackId":119} +{"PlaylistId":8,"TrackId":120} +{"PlaylistId":8,"TrackId":121} +{"PlaylistId":8,"TrackId":122} +{"PlaylistId":8,"TrackId":389} +{"PlaylistId":8,"TrackId":404} +{"PlaylistId":8,"TrackId":406} +{"PlaylistId":8,"TrackId":3421} +{"PlaylistId":8,"TrackId":380} +{"PlaylistId":8,"TrackId":394} +{"PlaylistId":8,"TrackId":3268} +{"PlaylistId":8,"TrackId":3413} +{"PlaylistId":8,"TrackId":3263} +{"PlaylistId":8,"TrackId":123} +{"PlaylistId":8,"TrackId":124} +{"PlaylistId":8,"TrackId":125} +{"PlaylistId":8,"TrackId":126} +{"PlaylistId":8,"TrackId":127} +{"PlaylistId":8,"TrackId":128} +{"PlaylistId":8,"TrackId":129} +{"PlaylistId":8,"TrackId":130} +{"PlaylistId":8,"TrackId":2572} +{"PlaylistId":8,"TrackId":2573} +{"PlaylistId":8,"TrackId":2574} +{"PlaylistId":8,"TrackId":2575} +{"PlaylistId":8,"TrackId":2576} +{"PlaylistId":8,"TrackId":2577} +{"PlaylistId":8,"TrackId":2578} +{"PlaylistId":8,"TrackId":2579} +{"PlaylistId":8,"TrackId":2580} +{"PlaylistId":8,"TrackId":2581} +{"PlaylistId":8,"TrackId":2582} +{"PlaylistId":8,"TrackId":2583} +{"PlaylistId":8,"TrackId":2584} +{"PlaylistId":8,"TrackId":2585} +{"PlaylistId":8,"TrackId":2586} +{"PlaylistId":8,"TrackId":2587} +{"PlaylistId":8,"TrackId":2588} +{"PlaylistId":8,"TrackId":2589} +{"PlaylistId":8,"TrackId":2590} +{"PlaylistId":8,"TrackId":3266} +{"PlaylistId":8,"TrackId":131} +{"PlaylistId":8,"TrackId":132} +{"PlaylistId":8,"TrackId":133} +{"PlaylistId":8,"TrackId":134} +{"PlaylistId":8,"TrackId":135} +{"PlaylistId":8,"TrackId":136} +{"PlaylistId":8,"TrackId":137} +{"PlaylistId":8,"TrackId":138} +{"PlaylistId":8,"TrackId":139} +{"PlaylistId":8,"TrackId":140} +{"PlaylistId":8,"TrackId":141} +{"PlaylistId":8,"TrackId":142} +{"PlaylistId":8,"TrackId":143} +{"PlaylistId":8,"TrackId":144} +{"PlaylistId":8,"TrackId":145} +{"PlaylistId":8,"TrackId":146} +{"PlaylistId":8,"TrackId":147} +{"PlaylistId":8,"TrackId":148} +{"PlaylistId":8,"TrackId":149} +{"PlaylistId":8,"TrackId":150} +{"PlaylistId":8,"TrackId":151} +{"PlaylistId":8,"TrackId":152} +{"PlaylistId":8,"TrackId":153} +{"PlaylistId":8,"TrackId":154} +{"PlaylistId":8,"TrackId":155} +{"PlaylistId":8,"TrackId":156} +{"PlaylistId":8,"TrackId":157} +{"PlaylistId":8,"TrackId":158} +{"PlaylistId":8,"TrackId":159} +{"PlaylistId":8,"TrackId":160} +{"PlaylistId":8,"TrackId":161} +{"PlaylistId":8,"TrackId":162} +{"PlaylistId":8,"TrackId":163} +{"PlaylistId":8,"TrackId":164} +{"PlaylistId":8,"TrackId":165} +{"PlaylistId":8,"TrackId":166} +{"PlaylistId":8,"TrackId":167} +{"PlaylistId":8,"TrackId":168} +{"PlaylistId":8,"TrackId":169} +{"PlaylistId":8,"TrackId":170} +{"PlaylistId":8,"TrackId":171} +{"PlaylistId":8,"TrackId":172} +{"PlaylistId":8,"TrackId":173} +{"PlaylistId":8,"TrackId":174} +{"PlaylistId":8,"TrackId":175} +{"PlaylistId":8,"TrackId":176} +{"PlaylistId":8,"TrackId":177} +{"PlaylistId":8,"TrackId":178} +{"PlaylistId":8,"TrackId":179} +{"PlaylistId":8,"TrackId":180} +{"PlaylistId":8,"TrackId":181} +{"PlaylistId":8,"TrackId":182} +{"PlaylistId":8,"TrackId":3426} +{"PlaylistId":8,"TrackId":3416} +{"PlaylistId":8,"TrackId":183} +{"PlaylistId":8,"TrackId":184} +{"PlaylistId":8,"TrackId":185} +{"PlaylistId":8,"TrackId":186} +{"PlaylistId":8,"TrackId":187} +{"PlaylistId":8,"TrackId":188} +{"PlaylistId":8,"TrackId":189} +{"PlaylistId":8,"TrackId":190} +{"PlaylistId":8,"TrackId":191} +{"PlaylistId":8,"TrackId":192} +{"PlaylistId":8,"TrackId":193} +{"PlaylistId":8,"TrackId":194} +{"PlaylistId":8,"TrackId":195} +{"PlaylistId":8,"TrackId":196} +{"PlaylistId":8,"TrackId":197} +{"PlaylistId":8,"TrackId":198} +{"PlaylistId":8,"TrackId":199} +{"PlaylistId":8,"TrackId":200} +{"PlaylistId":8,"TrackId":201} +{"PlaylistId":8,"TrackId":202} +{"PlaylistId":8,"TrackId":203} +{"PlaylistId":8,"TrackId":204} +{"PlaylistId":8,"TrackId":515} +{"PlaylistId":8,"TrackId":516} +{"PlaylistId":8,"TrackId":517} +{"PlaylistId":8,"TrackId":518} +{"PlaylistId":8,"TrackId":519} +{"PlaylistId":8,"TrackId":520} +{"PlaylistId":8,"TrackId":521} +{"PlaylistId":8,"TrackId":522} +{"PlaylistId":8,"TrackId":523} +{"PlaylistId":8,"TrackId":524} +{"PlaylistId":8,"TrackId":525} +{"PlaylistId":8,"TrackId":526} +{"PlaylistId":8,"TrackId":527} +{"PlaylistId":8,"TrackId":528} +{"PlaylistId":8,"TrackId":205} +{"PlaylistId":8,"TrackId":206} +{"PlaylistId":8,"TrackId":207} +{"PlaylistId":8,"TrackId":208} +{"PlaylistId":8,"TrackId":209} +{"PlaylistId":8,"TrackId":210} +{"PlaylistId":8,"TrackId":211} +{"PlaylistId":8,"TrackId":212} +{"PlaylistId":8,"TrackId":213} +{"PlaylistId":8,"TrackId":214} +{"PlaylistId":8,"TrackId":215} +{"PlaylistId":8,"TrackId":216} +{"PlaylistId":8,"TrackId":217} +{"PlaylistId":8,"TrackId":218} +{"PlaylistId":8,"TrackId":219} +{"PlaylistId":8,"TrackId":220} +{"PlaylistId":8,"TrackId":221} +{"PlaylistId":8,"TrackId":222} +{"PlaylistId":8,"TrackId":223} +{"PlaylistId":8,"TrackId":224} +{"PlaylistId":8,"TrackId":225} +{"PlaylistId":8,"TrackId":3336} +{"PlaylistId":8,"TrackId":715} +{"PlaylistId":8,"TrackId":716} +{"PlaylistId":8,"TrackId":717} +{"PlaylistId":8,"TrackId":718} +{"PlaylistId":8,"TrackId":719} +{"PlaylistId":8,"TrackId":720} +{"PlaylistId":8,"TrackId":721} +{"PlaylistId":8,"TrackId":722} +{"PlaylistId":8,"TrackId":723} +{"PlaylistId":8,"TrackId":724} +{"PlaylistId":8,"TrackId":725} +{"PlaylistId":8,"TrackId":726} +{"PlaylistId":8,"TrackId":727} +{"PlaylistId":8,"TrackId":728} +{"PlaylistId":8,"TrackId":729} +{"PlaylistId":8,"TrackId":730} +{"PlaylistId":8,"TrackId":731} +{"PlaylistId":8,"TrackId":732} +{"PlaylistId":8,"TrackId":733} +{"PlaylistId":8,"TrackId":734} +{"PlaylistId":8,"TrackId":735} +{"PlaylistId":8,"TrackId":736} +{"PlaylistId":8,"TrackId":737} +{"PlaylistId":8,"TrackId":738} +{"PlaylistId":8,"TrackId":739} +{"PlaylistId":8,"TrackId":740} +{"PlaylistId":8,"TrackId":741} +{"PlaylistId":8,"TrackId":742} +{"PlaylistId":8,"TrackId":743} +{"PlaylistId":8,"TrackId":744} +{"PlaylistId":8,"TrackId":3324} +{"PlaylistId":8,"TrackId":3417} +{"PlaylistId":8,"TrackId":226} +{"PlaylistId":8,"TrackId":227} +{"PlaylistId":8,"TrackId":228} +{"PlaylistId":8,"TrackId":229} +{"PlaylistId":8,"TrackId":230} +{"PlaylistId":8,"TrackId":231} +{"PlaylistId":8,"TrackId":232} +{"PlaylistId":8,"TrackId":233} +{"PlaylistId":8,"TrackId":234} +{"PlaylistId":8,"TrackId":235} +{"PlaylistId":8,"TrackId":236} +{"PlaylistId":8,"TrackId":237} +{"PlaylistId":8,"TrackId":238} +{"PlaylistId":8,"TrackId":239} +{"PlaylistId":8,"TrackId":240} +{"PlaylistId":8,"TrackId":241} +{"PlaylistId":8,"TrackId":242} +{"PlaylistId":8,"TrackId":243} +{"PlaylistId":8,"TrackId":244} +{"PlaylistId":8,"TrackId":245} +{"PlaylistId":8,"TrackId":246} +{"PlaylistId":8,"TrackId":247} +{"PlaylistId":8,"TrackId":248} +{"PlaylistId":8,"TrackId":249} +{"PlaylistId":8,"TrackId":250} +{"PlaylistId":8,"TrackId":251} +{"PlaylistId":8,"TrackId":252} +{"PlaylistId":8,"TrackId":253} +{"PlaylistId":8,"TrackId":254} +{"PlaylistId":8,"TrackId":255} +{"PlaylistId":8,"TrackId":256} +{"PlaylistId":8,"TrackId":257} +{"PlaylistId":8,"TrackId":258} +{"PlaylistId":8,"TrackId":259} +{"PlaylistId":8,"TrackId":260} +{"PlaylistId":8,"TrackId":261} +{"PlaylistId":8,"TrackId":262} +{"PlaylistId":8,"TrackId":263} +{"PlaylistId":8,"TrackId":264} +{"PlaylistId":8,"TrackId":265} +{"PlaylistId":8,"TrackId":266} +{"PlaylistId":8,"TrackId":267} +{"PlaylistId":8,"TrackId":268} +{"PlaylistId":8,"TrackId":269} +{"PlaylistId":8,"TrackId":270} +{"PlaylistId":8,"TrackId":271} +{"PlaylistId":8,"TrackId":272} +{"PlaylistId":8,"TrackId":273} +{"PlaylistId":8,"TrackId":274} +{"PlaylistId":8,"TrackId":275} +{"PlaylistId":8,"TrackId":276} +{"PlaylistId":8,"TrackId":277} +{"PlaylistId":8,"TrackId":278} +{"PlaylistId":8,"TrackId":279} +{"PlaylistId":8,"TrackId":280} +{"PlaylistId":8,"TrackId":281} +{"PlaylistId":8,"TrackId":3375} +{"PlaylistId":8,"TrackId":3376} +{"PlaylistId":8,"TrackId":3377} +{"PlaylistId":8,"TrackId":3378} +{"PlaylistId":8,"TrackId":3379} +{"PlaylistId":8,"TrackId":3380} +{"PlaylistId":8,"TrackId":3381} +{"PlaylistId":8,"TrackId":3382} +{"PlaylistId":8,"TrackId":3383} +{"PlaylistId":8,"TrackId":3384} +{"PlaylistId":8,"TrackId":3385} +{"PlaylistId":8,"TrackId":3386} +{"PlaylistId":8,"TrackId":3387} +{"PlaylistId":8,"TrackId":3388} +{"PlaylistId":8,"TrackId":3255} +{"PlaylistId":8,"TrackId":282} +{"PlaylistId":8,"TrackId":283} +{"PlaylistId":8,"TrackId":284} +{"PlaylistId":8,"TrackId":285} +{"PlaylistId":8,"TrackId":286} +{"PlaylistId":8,"TrackId":287} +{"PlaylistId":8,"TrackId":288} +{"PlaylistId":8,"TrackId":289} +{"PlaylistId":8,"TrackId":290} +{"PlaylistId":8,"TrackId":291} +{"PlaylistId":8,"TrackId":292} +{"PlaylistId":8,"TrackId":293} +{"PlaylistId":8,"TrackId":294} +{"PlaylistId":8,"TrackId":295} +{"PlaylistId":8,"TrackId":296} +{"PlaylistId":8,"TrackId":297} +{"PlaylistId":8,"TrackId":298} +{"PlaylistId":8,"TrackId":299} +{"PlaylistId":8,"TrackId":300} +{"PlaylistId":8,"TrackId":301} +{"PlaylistId":8,"TrackId":302} +{"PlaylistId":8,"TrackId":303} +{"PlaylistId":8,"TrackId":304} +{"PlaylistId":8,"TrackId":305} +{"PlaylistId":8,"TrackId":306} +{"PlaylistId":8,"TrackId":307} +{"PlaylistId":8,"TrackId":308} +{"PlaylistId":8,"TrackId":309} +{"PlaylistId":8,"TrackId":310} +{"PlaylistId":8,"TrackId":311} +{"PlaylistId":8,"TrackId":312} +{"PlaylistId":8,"TrackId":2591} +{"PlaylistId":8,"TrackId":2592} +{"PlaylistId":8,"TrackId":2593} +{"PlaylistId":8,"TrackId":2594} +{"PlaylistId":8,"TrackId":2595} +{"PlaylistId":8,"TrackId":2596} +{"PlaylistId":8,"TrackId":2597} +{"PlaylistId":8,"TrackId":2598} +{"PlaylistId":8,"TrackId":2599} +{"PlaylistId":8,"TrackId":2600} +{"PlaylistId":8,"TrackId":2601} +{"PlaylistId":8,"TrackId":2602} +{"PlaylistId":8,"TrackId":2603} +{"PlaylistId":8,"TrackId":2604} +{"PlaylistId":8,"TrackId":2605} +{"PlaylistId":8,"TrackId":2606} +{"PlaylistId":8,"TrackId":2607} +{"PlaylistId":8,"TrackId":2608} +{"PlaylistId":8,"TrackId":313} +{"PlaylistId":8,"TrackId":314} +{"PlaylistId":8,"TrackId":315} +{"PlaylistId":8,"TrackId":316} +{"PlaylistId":8,"TrackId":317} +{"PlaylistId":8,"TrackId":318} +{"PlaylistId":8,"TrackId":319} +{"PlaylistId":8,"TrackId":320} +{"PlaylistId":8,"TrackId":321} +{"PlaylistId":8,"TrackId":322} +{"PlaylistId":8,"TrackId":399} +{"PlaylistId":8,"TrackId":3259} +{"PlaylistId":8,"TrackId":675} +{"PlaylistId":8,"TrackId":676} +{"PlaylistId":8,"TrackId":677} +{"PlaylistId":8,"TrackId":678} +{"PlaylistId":8,"TrackId":679} +{"PlaylistId":8,"TrackId":680} +{"PlaylistId":8,"TrackId":681} +{"PlaylistId":8,"TrackId":682} +{"PlaylistId":8,"TrackId":683} +{"PlaylistId":8,"TrackId":684} +{"PlaylistId":8,"TrackId":685} +{"PlaylistId":8,"TrackId":686} +{"PlaylistId":8,"TrackId":687} +{"PlaylistId":8,"TrackId":688} +{"PlaylistId":8,"TrackId":689} +{"PlaylistId":8,"TrackId":690} +{"PlaylistId":8,"TrackId":691} +{"PlaylistId":8,"TrackId":692} +{"PlaylistId":8,"TrackId":693} +{"PlaylistId":8,"TrackId":694} +{"PlaylistId":8,"TrackId":695} +{"PlaylistId":8,"TrackId":696} +{"PlaylistId":8,"TrackId":697} +{"PlaylistId":8,"TrackId":698} +{"PlaylistId":8,"TrackId":699} +{"PlaylistId":8,"TrackId":700} +{"PlaylistId":8,"TrackId":701} +{"PlaylistId":8,"TrackId":702} +{"PlaylistId":8,"TrackId":703} +{"PlaylistId":8,"TrackId":704} +{"PlaylistId":8,"TrackId":705} +{"PlaylistId":8,"TrackId":706} +{"PlaylistId":8,"TrackId":707} +{"PlaylistId":8,"TrackId":708} +{"PlaylistId":8,"TrackId":709} +{"PlaylistId":8,"TrackId":710} +{"PlaylistId":8,"TrackId":711} +{"PlaylistId":8,"TrackId":712} +{"PlaylistId":8,"TrackId":713} +{"PlaylistId":8,"TrackId":714} +{"PlaylistId":8,"TrackId":2609} +{"PlaylistId":8,"TrackId":2610} +{"PlaylistId":8,"TrackId":2611} +{"PlaylistId":8,"TrackId":2612} +{"PlaylistId":8,"TrackId":2613} +{"PlaylistId":8,"TrackId":2614} +{"PlaylistId":8,"TrackId":2615} +{"PlaylistId":8,"TrackId":2616} +{"PlaylistId":8,"TrackId":2617} +{"PlaylistId":8,"TrackId":2618} +{"PlaylistId":8,"TrackId":2619} +{"PlaylistId":8,"TrackId":2620} +{"PlaylistId":8,"TrackId":2621} +{"PlaylistId":8,"TrackId":2622} +{"PlaylistId":8,"TrackId":2623} +{"PlaylistId":8,"TrackId":2624} +{"PlaylistId":8,"TrackId":2625} +{"PlaylistId":8,"TrackId":2626} +{"PlaylistId":8,"TrackId":2627} +{"PlaylistId":8,"TrackId":2628} +{"PlaylistId":8,"TrackId":2629} +{"PlaylistId":8,"TrackId":2630} +{"PlaylistId":8,"TrackId":2631} +{"PlaylistId":8,"TrackId":2632} +{"PlaylistId":8,"TrackId":2633} +{"PlaylistId":8,"TrackId":2634} +{"PlaylistId":8,"TrackId":2635} +{"PlaylistId":8,"TrackId":2636} +{"PlaylistId":8,"TrackId":2637} +{"PlaylistId":8,"TrackId":2638} +{"PlaylistId":8,"TrackId":489} +{"PlaylistId":8,"TrackId":490} +{"PlaylistId":8,"TrackId":491} +{"PlaylistId":8,"TrackId":492} +{"PlaylistId":8,"TrackId":493} +{"PlaylistId":8,"TrackId":494} +{"PlaylistId":8,"TrackId":495} +{"PlaylistId":8,"TrackId":496} +{"PlaylistId":8,"TrackId":497} +{"PlaylistId":8,"TrackId":498} +{"PlaylistId":8,"TrackId":499} +{"PlaylistId":8,"TrackId":500} +{"PlaylistId":8,"TrackId":816} +{"PlaylistId":8,"TrackId":817} +{"PlaylistId":8,"TrackId":818} +{"PlaylistId":8,"TrackId":819} +{"PlaylistId":8,"TrackId":820} +{"PlaylistId":8,"TrackId":821} +{"PlaylistId":8,"TrackId":822} +{"PlaylistId":8,"TrackId":823} +{"PlaylistId":8,"TrackId":824} +{"PlaylistId":8,"TrackId":825} +{"PlaylistId":8,"TrackId":745} +{"PlaylistId":8,"TrackId":746} +{"PlaylistId":8,"TrackId":747} +{"PlaylistId":8,"TrackId":748} +{"PlaylistId":8,"TrackId":749} +{"PlaylistId":8,"TrackId":750} +{"PlaylistId":8,"TrackId":751} +{"PlaylistId":8,"TrackId":752} +{"PlaylistId":8,"TrackId":753} +{"PlaylistId":8,"TrackId":754} +{"PlaylistId":8,"TrackId":755} +{"PlaylistId":8,"TrackId":756} +{"PlaylistId":8,"TrackId":757} +{"PlaylistId":8,"TrackId":758} +{"PlaylistId":8,"TrackId":759} +{"PlaylistId":8,"TrackId":760} +{"PlaylistId":8,"TrackId":620} +{"PlaylistId":8,"TrackId":621} +{"PlaylistId":8,"TrackId":622} +{"PlaylistId":8,"TrackId":623} +{"PlaylistId":8,"TrackId":761} +{"PlaylistId":8,"TrackId":762} +{"PlaylistId":8,"TrackId":763} +{"PlaylistId":8,"TrackId":764} +{"PlaylistId":8,"TrackId":765} +{"PlaylistId":8,"TrackId":766} +{"PlaylistId":8,"TrackId":767} +{"PlaylistId":8,"TrackId":768} +{"PlaylistId":8,"TrackId":769} +{"PlaylistId":8,"TrackId":770} +{"PlaylistId":8,"TrackId":771} +{"PlaylistId":8,"TrackId":772} +{"PlaylistId":8,"TrackId":773} +{"PlaylistId":8,"TrackId":774} +{"PlaylistId":8,"TrackId":775} +{"PlaylistId":8,"TrackId":776} +{"PlaylistId":8,"TrackId":777} +{"PlaylistId":8,"TrackId":778} +{"PlaylistId":8,"TrackId":779} +{"PlaylistId":8,"TrackId":780} +{"PlaylistId":8,"TrackId":781} +{"PlaylistId":8,"TrackId":782} +{"PlaylistId":8,"TrackId":783} +{"PlaylistId":8,"TrackId":784} +{"PlaylistId":8,"TrackId":785} +{"PlaylistId":8,"TrackId":543} +{"PlaylistId":8,"TrackId":544} +{"PlaylistId":8,"TrackId":545} +{"PlaylistId":8,"TrackId":546} +{"PlaylistId":8,"TrackId":547} +{"PlaylistId":8,"TrackId":548} +{"PlaylistId":8,"TrackId":549} +{"PlaylistId":8,"TrackId":786} +{"PlaylistId":8,"TrackId":787} +{"PlaylistId":8,"TrackId":788} +{"PlaylistId":8,"TrackId":789} +{"PlaylistId":8,"TrackId":790} +{"PlaylistId":8,"TrackId":791} +{"PlaylistId":8,"TrackId":792} +{"PlaylistId":8,"TrackId":793} +{"PlaylistId":8,"TrackId":794} +{"PlaylistId":8,"TrackId":795} +{"PlaylistId":8,"TrackId":796} +{"PlaylistId":8,"TrackId":797} +{"PlaylistId":8,"TrackId":798} +{"PlaylistId":8,"TrackId":799} +{"PlaylistId":8,"TrackId":800} +{"PlaylistId":8,"TrackId":801} +{"PlaylistId":8,"TrackId":802} +{"PlaylistId":8,"TrackId":803} +{"PlaylistId":8,"TrackId":804} +{"PlaylistId":8,"TrackId":805} +{"PlaylistId":8,"TrackId":806} +{"PlaylistId":8,"TrackId":807} +{"PlaylistId":8,"TrackId":808} +{"PlaylistId":8,"TrackId":809} +{"PlaylistId":8,"TrackId":810} +{"PlaylistId":8,"TrackId":811} +{"PlaylistId":8,"TrackId":812} +{"PlaylistId":8,"TrackId":813} +{"PlaylistId":8,"TrackId":814} +{"PlaylistId":8,"TrackId":815} +{"PlaylistId":8,"TrackId":826} +{"PlaylistId":8,"TrackId":827} +{"PlaylistId":8,"TrackId":828} +{"PlaylistId":8,"TrackId":829} +{"PlaylistId":8,"TrackId":830} +{"PlaylistId":8,"TrackId":831} +{"PlaylistId":8,"TrackId":832} +{"PlaylistId":8,"TrackId":833} +{"PlaylistId":8,"TrackId":834} +{"PlaylistId":8,"TrackId":835} +{"PlaylistId":8,"TrackId":836} +{"PlaylistId":8,"TrackId":837} +{"PlaylistId":8,"TrackId":838} +{"PlaylistId":8,"TrackId":839} +{"PlaylistId":8,"TrackId":840} +{"PlaylistId":8,"TrackId":841} +{"PlaylistId":8,"TrackId":842} +{"PlaylistId":8,"TrackId":843} +{"PlaylistId":8,"TrackId":844} +{"PlaylistId":8,"TrackId":845} +{"PlaylistId":8,"TrackId":846} +{"PlaylistId":8,"TrackId":847} +{"PlaylistId":8,"TrackId":848} +{"PlaylistId":8,"TrackId":849} +{"PlaylistId":8,"TrackId":850} +{"PlaylistId":8,"TrackId":3260} +{"PlaylistId":8,"TrackId":3331} +{"PlaylistId":8,"TrackId":851} +{"PlaylistId":8,"TrackId":852} +{"PlaylistId":8,"TrackId":853} +{"PlaylistId":8,"TrackId":854} +{"PlaylistId":8,"TrackId":855} +{"PlaylistId":8,"TrackId":856} +{"PlaylistId":8,"TrackId":857} +{"PlaylistId":8,"TrackId":858} +{"PlaylistId":8,"TrackId":859} +{"PlaylistId":8,"TrackId":860} +{"PlaylistId":8,"TrackId":861} +{"PlaylistId":8,"TrackId":862} +{"PlaylistId":8,"TrackId":863} +{"PlaylistId":8,"TrackId":864} +{"PlaylistId":8,"TrackId":865} +{"PlaylistId":8,"TrackId":866} +{"PlaylistId":8,"TrackId":867} +{"PlaylistId":8,"TrackId":868} +{"PlaylistId":8,"TrackId":869} +{"PlaylistId":8,"TrackId":870} +{"PlaylistId":8,"TrackId":871} +{"PlaylistId":8,"TrackId":872} +{"PlaylistId":8,"TrackId":873} +{"PlaylistId":8,"TrackId":874} +{"PlaylistId":8,"TrackId":875} +{"PlaylistId":8,"TrackId":876} +{"PlaylistId":8,"TrackId":2639} +{"PlaylistId":8,"TrackId":2640} +{"PlaylistId":8,"TrackId":2641} +{"PlaylistId":8,"TrackId":2642} +{"PlaylistId":8,"TrackId":2643} +{"PlaylistId":8,"TrackId":2644} +{"PlaylistId":8,"TrackId":2645} +{"PlaylistId":8,"TrackId":2646} +{"PlaylistId":8,"TrackId":2647} +{"PlaylistId":8,"TrackId":2648} +{"PlaylistId":8,"TrackId":2649} +{"PlaylistId":8,"TrackId":3225} +{"PlaylistId":8,"TrackId":583} +{"PlaylistId":8,"TrackId":584} +{"PlaylistId":8,"TrackId":585} +{"PlaylistId":8,"TrackId":586} +{"PlaylistId":8,"TrackId":587} +{"PlaylistId":8,"TrackId":588} +{"PlaylistId":8,"TrackId":589} +{"PlaylistId":8,"TrackId":590} +{"PlaylistId":8,"TrackId":591} +{"PlaylistId":8,"TrackId":592} +{"PlaylistId":8,"TrackId":593} +{"PlaylistId":8,"TrackId":594} +{"PlaylistId":8,"TrackId":595} +{"PlaylistId":8,"TrackId":596} +{"PlaylistId":8,"TrackId":388} +{"PlaylistId":8,"TrackId":402} +{"PlaylistId":8,"TrackId":407} +{"PlaylistId":8,"TrackId":396} +{"PlaylistId":8,"TrackId":877} +{"PlaylistId":8,"TrackId":878} +{"PlaylistId":8,"TrackId":879} +{"PlaylistId":8,"TrackId":880} +{"PlaylistId":8,"TrackId":881} +{"PlaylistId":8,"TrackId":882} +{"PlaylistId":8,"TrackId":883} +{"PlaylistId":8,"TrackId":884} +{"PlaylistId":8,"TrackId":885} +{"PlaylistId":8,"TrackId":886} +{"PlaylistId":8,"TrackId":887} +{"PlaylistId":8,"TrackId":888} +{"PlaylistId":8,"TrackId":889} +{"PlaylistId":8,"TrackId":890} +{"PlaylistId":8,"TrackId":3405} +{"PlaylistId":8,"TrackId":891} +{"PlaylistId":8,"TrackId":892} +{"PlaylistId":8,"TrackId":893} +{"PlaylistId":8,"TrackId":894} +{"PlaylistId":8,"TrackId":895} +{"PlaylistId":8,"TrackId":896} +{"PlaylistId":8,"TrackId":897} +{"PlaylistId":8,"TrackId":898} +{"PlaylistId":8,"TrackId":899} +{"PlaylistId":8,"TrackId":900} +{"PlaylistId":8,"TrackId":901} +{"PlaylistId":8,"TrackId":902} +{"PlaylistId":8,"TrackId":903} +{"PlaylistId":8,"TrackId":904} +{"PlaylistId":8,"TrackId":905} +{"PlaylistId":8,"TrackId":906} +{"PlaylistId":8,"TrackId":907} +{"PlaylistId":8,"TrackId":908} +{"PlaylistId":8,"TrackId":909} +{"PlaylistId":8,"TrackId":910} +{"PlaylistId":8,"TrackId":911} +{"PlaylistId":8,"TrackId":912} +{"PlaylistId":8,"TrackId":913} +{"PlaylistId":8,"TrackId":914} +{"PlaylistId":8,"TrackId":915} +{"PlaylistId":8,"TrackId":916} +{"PlaylistId":8,"TrackId":917} +{"PlaylistId":8,"TrackId":918} +{"PlaylistId":8,"TrackId":919} +{"PlaylistId":8,"TrackId":920} +{"PlaylistId":8,"TrackId":921} +{"PlaylistId":8,"TrackId":922} +{"PlaylistId":8,"TrackId":3423} +{"PlaylistId":8,"TrackId":923} +{"PlaylistId":8,"TrackId":924} +{"PlaylistId":8,"TrackId":925} +{"PlaylistId":8,"TrackId":926} +{"PlaylistId":8,"TrackId":927} +{"PlaylistId":8,"TrackId":928} +{"PlaylistId":8,"TrackId":929} +{"PlaylistId":8,"TrackId":930} +{"PlaylistId":8,"TrackId":931} +{"PlaylistId":8,"TrackId":932} +{"PlaylistId":8,"TrackId":933} +{"PlaylistId":8,"TrackId":934} +{"PlaylistId":8,"TrackId":935} +{"PlaylistId":8,"TrackId":936} +{"PlaylistId":8,"TrackId":937} +{"PlaylistId":8,"TrackId":938} +{"PlaylistId":8,"TrackId":939} +{"PlaylistId":8,"TrackId":940} +{"PlaylistId":8,"TrackId":941} +{"PlaylistId":8,"TrackId":942} +{"PlaylistId":8,"TrackId":943} +{"PlaylistId":8,"TrackId":944} +{"PlaylistId":8,"TrackId":945} +{"PlaylistId":8,"TrackId":946} +{"PlaylistId":8,"TrackId":947} +{"PlaylistId":8,"TrackId":948} +{"PlaylistId":8,"TrackId":949} +{"PlaylistId":8,"TrackId":950} +{"PlaylistId":8,"TrackId":951} +{"PlaylistId":8,"TrackId":952} +{"PlaylistId":8,"TrackId":953} +{"PlaylistId":8,"TrackId":954} +{"PlaylistId":8,"TrackId":955} +{"PlaylistId":8,"TrackId":956} +{"PlaylistId":8,"TrackId":957} +{"PlaylistId":8,"TrackId":958} +{"PlaylistId":8,"TrackId":959} +{"PlaylistId":8,"TrackId":960} +{"PlaylistId":8,"TrackId":961} +{"PlaylistId":8,"TrackId":962} +{"PlaylistId":8,"TrackId":963} +{"PlaylistId":8,"TrackId":964} +{"PlaylistId":8,"TrackId":965} +{"PlaylistId":8,"TrackId":966} +{"PlaylistId":8,"TrackId":967} +{"PlaylistId":8,"TrackId":968} +{"PlaylistId":8,"TrackId":969} +{"PlaylistId":8,"TrackId":970} +{"PlaylistId":8,"TrackId":971} +{"PlaylistId":8,"TrackId":972} +{"PlaylistId":8,"TrackId":973} +{"PlaylistId":8,"TrackId":974} +{"PlaylistId":8,"TrackId":975} +{"PlaylistId":8,"TrackId":976} +{"PlaylistId":8,"TrackId":977} +{"PlaylistId":8,"TrackId":978} +{"PlaylistId":8,"TrackId":979} +{"PlaylistId":8,"TrackId":980} +{"PlaylistId":8,"TrackId":981} +{"PlaylistId":8,"TrackId":982} +{"PlaylistId":8,"TrackId":983} +{"PlaylistId":8,"TrackId":984} +{"PlaylistId":8,"TrackId":985} +{"PlaylistId":8,"TrackId":986} +{"PlaylistId":8,"TrackId":987} +{"PlaylistId":8,"TrackId":988} +{"PlaylistId":8,"TrackId":390} +{"PlaylistId":8,"TrackId":3273} +{"PlaylistId":8,"TrackId":1020} +{"PlaylistId":8,"TrackId":1021} +{"PlaylistId":8,"TrackId":1022} +{"PlaylistId":8,"TrackId":1023} +{"PlaylistId":8,"TrackId":1024} +{"PlaylistId":8,"TrackId":1025} +{"PlaylistId":8,"TrackId":1026} +{"PlaylistId":8,"TrackId":1027} +{"PlaylistId":8,"TrackId":1028} +{"PlaylistId":8,"TrackId":1029} +{"PlaylistId":8,"TrackId":1030} +{"PlaylistId":8,"TrackId":1031} +{"PlaylistId":8,"TrackId":1032} +{"PlaylistId":8,"TrackId":989} +{"PlaylistId":8,"TrackId":990} +{"PlaylistId":8,"TrackId":991} +{"PlaylistId":8,"TrackId":992} +{"PlaylistId":8,"TrackId":993} +{"PlaylistId":8,"TrackId":994} +{"PlaylistId":8,"TrackId":995} +{"PlaylistId":8,"TrackId":996} +{"PlaylistId":8,"TrackId":997} +{"PlaylistId":8,"TrackId":998} +{"PlaylistId":8,"TrackId":999} +{"PlaylistId":8,"TrackId":1000} +{"PlaylistId":8,"TrackId":1001} +{"PlaylistId":8,"TrackId":1002} +{"PlaylistId":8,"TrackId":1003} +{"PlaylistId":8,"TrackId":1004} +{"PlaylistId":8,"TrackId":1005} +{"PlaylistId":8,"TrackId":1006} +{"PlaylistId":8,"TrackId":1007} +{"PlaylistId":8,"TrackId":1008} +{"PlaylistId":8,"TrackId":1009} +{"PlaylistId":8,"TrackId":1010} +{"PlaylistId":8,"TrackId":1011} +{"PlaylistId":8,"TrackId":1012} +{"PlaylistId":8,"TrackId":1013} +{"PlaylistId":8,"TrackId":1014} +{"PlaylistId":8,"TrackId":1015} +{"PlaylistId":8,"TrackId":1016} +{"PlaylistId":8,"TrackId":1017} +{"PlaylistId":8,"TrackId":1018} +{"PlaylistId":8,"TrackId":1019} +{"PlaylistId":8,"TrackId":1033} +{"PlaylistId":8,"TrackId":1034} +{"PlaylistId":8,"TrackId":1035} +{"PlaylistId":8,"TrackId":1036} +{"PlaylistId":8,"TrackId":1037} +{"PlaylistId":8,"TrackId":1038} +{"PlaylistId":8,"TrackId":1039} +{"PlaylistId":8,"TrackId":1040} +{"PlaylistId":8,"TrackId":1041} +{"PlaylistId":8,"TrackId":1042} +{"PlaylistId":8,"TrackId":1043} +{"PlaylistId":8,"TrackId":1044} +{"PlaylistId":8,"TrackId":1045} +{"PlaylistId":8,"TrackId":1046} +{"PlaylistId":8,"TrackId":1047} +{"PlaylistId":8,"TrackId":1048} +{"PlaylistId":8,"TrackId":1049} +{"PlaylistId":8,"TrackId":1050} +{"PlaylistId":8,"TrackId":1051} +{"PlaylistId":8,"TrackId":1052} +{"PlaylistId":8,"TrackId":1053} +{"PlaylistId":8,"TrackId":1054} +{"PlaylistId":8,"TrackId":1055} +{"PlaylistId":8,"TrackId":1056} +{"PlaylistId":8,"TrackId":351} +{"PlaylistId":8,"TrackId":352} +{"PlaylistId":8,"TrackId":353} +{"PlaylistId":8,"TrackId":354} +{"PlaylistId":8,"TrackId":355} +{"PlaylistId":8,"TrackId":356} +{"PlaylistId":8,"TrackId":357} +{"PlaylistId":8,"TrackId":358} +{"PlaylistId":8,"TrackId":359} +{"PlaylistId":8,"TrackId":3332} +{"PlaylistId":8,"TrackId":1057} +{"PlaylistId":8,"TrackId":1058} +{"PlaylistId":8,"TrackId":1059} +{"PlaylistId":8,"TrackId":1060} +{"PlaylistId":8,"TrackId":1061} +{"PlaylistId":8,"TrackId":1062} +{"PlaylistId":8,"TrackId":1063} +{"PlaylistId":8,"TrackId":1064} +{"PlaylistId":8,"TrackId":1065} +{"PlaylistId":8,"TrackId":1066} +{"PlaylistId":8,"TrackId":1067} +{"PlaylistId":8,"TrackId":1068} +{"PlaylistId":8,"TrackId":1069} +{"PlaylistId":8,"TrackId":1070} +{"PlaylistId":8,"TrackId":1071} +{"PlaylistId":8,"TrackId":1072} +{"PlaylistId":8,"TrackId":624} +{"PlaylistId":8,"TrackId":625} +{"PlaylistId":8,"TrackId":626} +{"PlaylistId":8,"TrackId":627} +{"PlaylistId":8,"TrackId":628} +{"PlaylistId":8,"TrackId":629} +{"PlaylistId":8,"TrackId":630} +{"PlaylistId":8,"TrackId":631} +{"PlaylistId":8,"TrackId":632} +{"PlaylistId":8,"TrackId":633} +{"PlaylistId":8,"TrackId":634} +{"PlaylistId":8,"TrackId":635} +{"PlaylistId":8,"TrackId":636} +{"PlaylistId":8,"TrackId":637} +{"PlaylistId":8,"TrackId":638} +{"PlaylistId":8,"TrackId":639} +{"PlaylistId":8,"TrackId":640} +{"PlaylistId":8,"TrackId":641} +{"PlaylistId":8,"TrackId":642} +{"PlaylistId":8,"TrackId":643} +{"PlaylistId":8,"TrackId":644} +{"PlaylistId":8,"TrackId":645} +{"PlaylistId":8,"TrackId":1073} +{"PlaylistId":8,"TrackId":1074} +{"PlaylistId":8,"TrackId":1075} +{"PlaylistId":8,"TrackId":1076} +{"PlaylistId":8,"TrackId":1077} +{"PlaylistId":8,"TrackId":1078} +{"PlaylistId":8,"TrackId":1079} +{"PlaylistId":8,"TrackId":1080} +{"PlaylistId":8,"TrackId":1081} +{"PlaylistId":8,"TrackId":1082} +{"PlaylistId":8,"TrackId":1083} +{"PlaylistId":8,"TrackId":1084} +{"PlaylistId":8,"TrackId":1085} +{"PlaylistId":8,"TrackId":1086} +{"PlaylistId":8,"TrackId":377} +{"PlaylistId":8,"TrackId":395} +{"PlaylistId":8,"TrackId":1102} +{"PlaylistId":8,"TrackId":1103} +{"PlaylistId":8,"TrackId":1104} +{"PlaylistId":8,"TrackId":1087} +{"PlaylistId":8,"TrackId":1088} +{"PlaylistId":8,"TrackId":1089} +{"PlaylistId":8,"TrackId":1090} +{"PlaylistId":8,"TrackId":1091} +{"PlaylistId":8,"TrackId":1092} +{"PlaylistId":8,"TrackId":1093} +{"PlaylistId":8,"TrackId":1094} +{"PlaylistId":8,"TrackId":1095} +{"PlaylistId":8,"TrackId":1096} +{"PlaylistId":8,"TrackId":1097} +{"PlaylistId":8,"TrackId":1098} +{"PlaylistId":8,"TrackId":1099} +{"PlaylistId":8,"TrackId":1100} +{"PlaylistId":8,"TrackId":1101} +{"PlaylistId":8,"TrackId":1105} +{"PlaylistId":8,"TrackId":1106} +{"PlaylistId":8,"TrackId":1107} +{"PlaylistId":8,"TrackId":1108} +{"PlaylistId":8,"TrackId":1109} +{"PlaylistId":8,"TrackId":1110} +{"PlaylistId":8,"TrackId":1111} +{"PlaylistId":8,"TrackId":1112} +{"PlaylistId":8,"TrackId":1113} +{"PlaylistId":8,"TrackId":1114} +{"PlaylistId":8,"TrackId":1115} +{"PlaylistId":8,"TrackId":1116} +{"PlaylistId":8,"TrackId":1117} +{"PlaylistId":8,"TrackId":1118} +{"PlaylistId":8,"TrackId":1119} +{"PlaylistId":8,"TrackId":1120} +{"PlaylistId":8,"TrackId":1121} +{"PlaylistId":8,"TrackId":1122} +{"PlaylistId":8,"TrackId":1123} +{"PlaylistId":8,"TrackId":1124} +{"PlaylistId":8,"TrackId":1125} +{"PlaylistId":8,"TrackId":1126} +{"PlaylistId":8,"TrackId":1127} +{"PlaylistId":8,"TrackId":1128} +{"PlaylistId":8,"TrackId":1129} +{"PlaylistId":8,"TrackId":1130} +{"PlaylistId":8,"TrackId":1131} +{"PlaylistId":8,"TrackId":1132} +{"PlaylistId":8,"TrackId":501} +{"PlaylistId":8,"TrackId":502} +{"PlaylistId":8,"TrackId":503} +{"PlaylistId":8,"TrackId":504} +{"PlaylistId":8,"TrackId":505} +{"PlaylistId":8,"TrackId":506} +{"PlaylistId":8,"TrackId":507} +{"PlaylistId":8,"TrackId":508} +{"PlaylistId":8,"TrackId":509} +{"PlaylistId":8,"TrackId":510} +{"PlaylistId":8,"TrackId":511} +{"PlaylistId":8,"TrackId":512} +{"PlaylistId":8,"TrackId":513} +{"PlaylistId":8,"TrackId":514} +{"PlaylistId":8,"TrackId":1133} +{"PlaylistId":8,"TrackId":1134} +{"PlaylistId":8,"TrackId":1135} +{"PlaylistId":8,"TrackId":1136} +{"PlaylistId":8,"TrackId":1137} +{"PlaylistId":8,"TrackId":1138} +{"PlaylistId":8,"TrackId":1139} +{"PlaylistId":8,"TrackId":1140} +{"PlaylistId":8,"TrackId":1141} +{"PlaylistId":8,"TrackId":1142} +{"PlaylistId":8,"TrackId":1143} +{"PlaylistId":8,"TrackId":1144} +{"PlaylistId":8,"TrackId":1145} +{"PlaylistId":8,"TrackId":3265} +{"PlaylistId":8,"TrackId":468} +{"PlaylistId":8,"TrackId":469} +{"PlaylistId":8,"TrackId":470} +{"PlaylistId":8,"TrackId":471} +{"PlaylistId":8,"TrackId":472} +{"PlaylistId":8,"TrackId":473} +{"PlaylistId":8,"TrackId":474} +{"PlaylistId":8,"TrackId":475} +{"PlaylistId":8,"TrackId":476} +{"PlaylistId":8,"TrackId":477} +{"PlaylistId":8,"TrackId":478} +{"PlaylistId":8,"TrackId":479} +{"PlaylistId":8,"TrackId":480} +{"PlaylistId":8,"TrackId":481} +{"PlaylistId":8,"TrackId":482} +{"PlaylistId":8,"TrackId":483} +{"PlaylistId":8,"TrackId":484} +{"PlaylistId":8,"TrackId":485} +{"PlaylistId":8,"TrackId":486} +{"PlaylistId":8,"TrackId":487} +{"PlaylistId":8,"TrackId":488} +{"PlaylistId":8,"TrackId":1146} +{"PlaylistId":8,"TrackId":1147} +{"PlaylistId":8,"TrackId":1148} +{"PlaylistId":8,"TrackId":1149} +{"PlaylistId":8,"TrackId":1150} +{"PlaylistId":8,"TrackId":1151} +{"PlaylistId":8,"TrackId":1152} +{"PlaylistId":8,"TrackId":1153} +{"PlaylistId":8,"TrackId":1154} +{"PlaylistId":8,"TrackId":1155} +{"PlaylistId":8,"TrackId":1156} +{"PlaylistId":8,"TrackId":1157} +{"PlaylistId":8,"TrackId":1158} +{"PlaylistId":8,"TrackId":1159} +{"PlaylistId":8,"TrackId":1160} +{"PlaylistId":8,"TrackId":1161} +{"PlaylistId":8,"TrackId":1162} +{"PlaylistId":8,"TrackId":1163} +{"PlaylistId":8,"TrackId":1164} +{"PlaylistId":8,"TrackId":1165} +{"PlaylistId":8,"TrackId":1166} +{"PlaylistId":8,"TrackId":1167} +{"PlaylistId":8,"TrackId":1168} +{"PlaylistId":8,"TrackId":1169} +{"PlaylistId":8,"TrackId":1170} +{"PlaylistId":8,"TrackId":1171} +{"PlaylistId":8,"TrackId":1172} +{"PlaylistId":8,"TrackId":1173} +{"PlaylistId":8,"TrackId":1174} +{"PlaylistId":8,"TrackId":1175} +{"PlaylistId":8,"TrackId":1176} +{"PlaylistId":8,"TrackId":1177} +{"PlaylistId":8,"TrackId":1178} +{"PlaylistId":8,"TrackId":1179} +{"PlaylistId":8,"TrackId":1180} +{"PlaylistId":8,"TrackId":1181} +{"PlaylistId":8,"TrackId":1182} +{"PlaylistId":8,"TrackId":1183} +{"PlaylistId":8,"TrackId":1184} +{"PlaylistId":8,"TrackId":1185} +{"PlaylistId":8,"TrackId":1186} +{"PlaylistId":8,"TrackId":1187} +{"PlaylistId":8,"TrackId":3322} +{"PlaylistId":8,"TrackId":3354} +{"PlaylistId":8,"TrackId":3351} +{"PlaylistId":8,"TrackId":3422} +{"PlaylistId":8,"TrackId":405} +{"PlaylistId":8,"TrackId":3407} +{"PlaylistId":8,"TrackId":3301} +{"PlaylistId":8,"TrackId":3300} +{"PlaylistId":8,"TrackId":3302} +{"PlaylistId":8,"TrackId":3303} +{"PlaylistId":8,"TrackId":3304} +{"PlaylistId":8,"TrackId":3305} +{"PlaylistId":8,"TrackId":3306} +{"PlaylistId":8,"TrackId":3307} +{"PlaylistId":8,"TrackId":3308} +{"PlaylistId":8,"TrackId":3309} +{"PlaylistId":8,"TrackId":3310} +{"PlaylistId":8,"TrackId":3311} +{"PlaylistId":8,"TrackId":3312} +{"PlaylistId":8,"TrackId":3313} +{"PlaylistId":8,"TrackId":3314} +{"PlaylistId":8,"TrackId":3315} +{"PlaylistId":8,"TrackId":3316} +{"PlaylistId":8,"TrackId":3317} +{"PlaylistId":8,"TrackId":3318} +{"PlaylistId":8,"TrackId":1188} +{"PlaylistId":8,"TrackId":1189} +{"PlaylistId":8,"TrackId":1190} +{"PlaylistId":8,"TrackId":1191} +{"PlaylistId":8,"TrackId":1192} +{"PlaylistId":8,"TrackId":1193} +{"PlaylistId":8,"TrackId":1194} +{"PlaylistId":8,"TrackId":1195} +{"PlaylistId":8,"TrackId":1196} +{"PlaylistId":8,"TrackId":1197} +{"PlaylistId":8,"TrackId":1198} +{"PlaylistId":8,"TrackId":1199} +{"PlaylistId":8,"TrackId":1200} +{"PlaylistId":8,"TrackId":3329} +{"PlaylistId":8,"TrackId":1235} +{"PlaylistId":8,"TrackId":1236} +{"PlaylistId":8,"TrackId":1237} +{"PlaylistId":8,"TrackId":1238} +{"PlaylistId":8,"TrackId":1239} +{"PlaylistId":8,"TrackId":1240} +{"PlaylistId":8,"TrackId":1241} +{"PlaylistId":8,"TrackId":1242} +{"PlaylistId":8,"TrackId":1243} +{"PlaylistId":8,"TrackId":1244} +{"PlaylistId":8,"TrackId":1245} +{"PlaylistId":8,"TrackId":1246} +{"PlaylistId":8,"TrackId":1247} +{"PlaylistId":8,"TrackId":1248} +{"PlaylistId":8,"TrackId":1249} +{"PlaylistId":8,"TrackId":1250} +{"PlaylistId":8,"TrackId":1251} +{"PlaylistId":8,"TrackId":1252} +{"PlaylistId":8,"TrackId":1253} +{"PlaylistId":8,"TrackId":1254} +{"PlaylistId":8,"TrackId":1255} +{"PlaylistId":8,"TrackId":1256} +{"PlaylistId":8,"TrackId":1257} +{"PlaylistId":8,"TrackId":1258} +{"PlaylistId":8,"TrackId":1259} +{"PlaylistId":8,"TrackId":1260} +{"PlaylistId":8,"TrackId":1261} +{"PlaylistId":8,"TrackId":1262} +{"PlaylistId":8,"TrackId":1263} +{"PlaylistId":8,"TrackId":1264} +{"PlaylistId":8,"TrackId":1265} +{"PlaylistId":8,"TrackId":1266} +{"PlaylistId":8,"TrackId":1267} +{"PlaylistId":8,"TrackId":1268} +{"PlaylistId":8,"TrackId":1269} +{"PlaylistId":8,"TrackId":1270} +{"PlaylistId":8,"TrackId":1271} +{"PlaylistId":8,"TrackId":1272} +{"PlaylistId":8,"TrackId":1273} +{"PlaylistId":8,"TrackId":1274} +{"PlaylistId":8,"TrackId":1275} +{"PlaylistId":8,"TrackId":1276} +{"PlaylistId":8,"TrackId":1277} +{"PlaylistId":8,"TrackId":1278} +{"PlaylistId":8,"TrackId":1279} +{"PlaylistId":8,"TrackId":1280} +{"PlaylistId":8,"TrackId":1281} +{"PlaylistId":8,"TrackId":1282} +{"PlaylistId":8,"TrackId":1283} +{"PlaylistId":8,"TrackId":1284} +{"PlaylistId":8,"TrackId":1285} +{"PlaylistId":8,"TrackId":1286} +{"PlaylistId":8,"TrackId":1287} +{"PlaylistId":8,"TrackId":1288} +{"PlaylistId":8,"TrackId":1289} +{"PlaylistId":8,"TrackId":1290} +{"PlaylistId":8,"TrackId":1291} +{"PlaylistId":8,"TrackId":1292} +{"PlaylistId":8,"TrackId":1293} +{"PlaylistId":8,"TrackId":1294} +{"PlaylistId":8,"TrackId":1295} +{"PlaylistId":8,"TrackId":1296} +{"PlaylistId":8,"TrackId":1297} +{"PlaylistId":8,"TrackId":1298} +{"PlaylistId":8,"TrackId":1299} +{"PlaylistId":8,"TrackId":1300} +{"PlaylistId":8,"TrackId":1301} +{"PlaylistId":8,"TrackId":1302} +{"PlaylistId":8,"TrackId":1303} +{"PlaylistId":8,"TrackId":1304} +{"PlaylistId":8,"TrackId":1305} +{"PlaylistId":8,"TrackId":1306} +{"PlaylistId":8,"TrackId":1307} +{"PlaylistId":8,"TrackId":1308} +{"PlaylistId":8,"TrackId":1309} +{"PlaylistId":8,"TrackId":1310} +{"PlaylistId":8,"TrackId":1311} +{"PlaylistId":8,"TrackId":1312} +{"PlaylistId":8,"TrackId":1313} +{"PlaylistId":8,"TrackId":1314} +{"PlaylistId":8,"TrackId":1315} +{"PlaylistId":8,"TrackId":1316} +{"PlaylistId":8,"TrackId":1317} +{"PlaylistId":8,"TrackId":1318} +{"PlaylistId":8,"TrackId":1319} +{"PlaylistId":8,"TrackId":1320} +{"PlaylistId":8,"TrackId":1321} +{"PlaylistId":8,"TrackId":1322} +{"PlaylistId":8,"TrackId":1323} +{"PlaylistId":8,"TrackId":1324} +{"PlaylistId":8,"TrackId":1201} +{"PlaylistId":8,"TrackId":1202} +{"PlaylistId":8,"TrackId":1203} +{"PlaylistId":8,"TrackId":1204} +{"PlaylistId":8,"TrackId":1205} +{"PlaylistId":8,"TrackId":1206} +{"PlaylistId":8,"TrackId":1207} +{"PlaylistId":8,"TrackId":1208} +{"PlaylistId":8,"TrackId":1209} +{"PlaylistId":8,"TrackId":1210} +{"PlaylistId":8,"TrackId":1211} +{"PlaylistId":8,"TrackId":1325} +{"PlaylistId":8,"TrackId":1326} +{"PlaylistId":8,"TrackId":1327} +{"PlaylistId":8,"TrackId":1328} +{"PlaylistId":8,"TrackId":1329} +{"PlaylistId":8,"TrackId":1330} +{"PlaylistId":8,"TrackId":1331} +{"PlaylistId":8,"TrackId":1332} +{"PlaylistId":8,"TrackId":1333} +{"PlaylistId":8,"TrackId":1334} +{"PlaylistId":8,"TrackId":1391} +{"PlaylistId":8,"TrackId":1393} +{"PlaylistId":8,"TrackId":1388} +{"PlaylistId":8,"TrackId":1394} +{"PlaylistId":8,"TrackId":1387} +{"PlaylistId":8,"TrackId":1392} +{"PlaylistId":8,"TrackId":1389} +{"PlaylistId":8,"TrackId":1390} +{"PlaylistId":8,"TrackId":1335} +{"PlaylistId":8,"TrackId":1336} +{"PlaylistId":8,"TrackId":1337} +{"PlaylistId":8,"TrackId":1338} +{"PlaylistId":8,"TrackId":1339} +{"PlaylistId":8,"TrackId":1340} +{"PlaylistId":8,"TrackId":1341} +{"PlaylistId":8,"TrackId":1342} +{"PlaylistId":8,"TrackId":1343} +{"PlaylistId":8,"TrackId":1344} +{"PlaylistId":8,"TrackId":1345} +{"PlaylistId":8,"TrackId":1346} +{"PlaylistId":8,"TrackId":1347} +{"PlaylistId":8,"TrackId":1348} +{"PlaylistId":8,"TrackId":1349} +{"PlaylistId":8,"TrackId":1350} +{"PlaylistId":8,"TrackId":1351} +{"PlaylistId":8,"TrackId":1212} +{"PlaylistId":8,"TrackId":1213} +{"PlaylistId":8,"TrackId":1214} +{"PlaylistId":8,"TrackId":1215} +{"PlaylistId":8,"TrackId":1216} +{"PlaylistId":8,"TrackId":1217} +{"PlaylistId":8,"TrackId":1218} +{"PlaylistId":8,"TrackId":1219} +{"PlaylistId":8,"TrackId":1220} +{"PlaylistId":8,"TrackId":1221} +{"PlaylistId":8,"TrackId":1222} +{"PlaylistId":8,"TrackId":1223} +{"PlaylistId":8,"TrackId":1224} +{"PlaylistId":8,"TrackId":1225} +{"PlaylistId":8,"TrackId":1226} +{"PlaylistId":8,"TrackId":1227} +{"PlaylistId":8,"TrackId":1228} +{"PlaylistId":8,"TrackId":1229} +{"PlaylistId":8,"TrackId":1230} +{"PlaylistId":8,"TrackId":1231} +{"PlaylistId":8,"TrackId":1232} +{"PlaylistId":8,"TrackId":1233} +{"PlaylistId":8,"TrackId":1234} +{"PlaylistId":8,"TrackId":1352} +{"PlaylistId":8,"TrackId":1353} +{"PlaylistId":8,"TrackId":1354} +{"PlaylistId":8,"TrackId":1355} +{"PlaylistId":8,"TrackId":1356} +{"PlaylistId":8,"TrackId":1357} +{"PlaylistId":8,"TrackId":1358} +{"PlaylistId":8,"TrackId":1359} +{"PlaylistId":8,"TrackId":1360} +{"PlaylistId":8,"TrackId":1361} +{"PlaylistId":8,"TrackId":1362} +{"PlaylistId":8,"TrackId":1363} +{"PlaylistId":8,"TrackId":1364} +{"PlaylistId":8,"TrackId":1365} +{"PlaylistId":8,"TrackId":1366} +{"PlaylistId":8,"TrackId":1367} +{"PlaylistId":8,"TrackId":1368} +{"PlaylistId":8,"TrackId":1369} +{"PlaylistId":8,"TrackId":1370} +{"PlaylistId":8,"TrackId":1371} +{"PlaylistId":8,"TrackId":1372} +{"PlaylistId":8,"TrackId":1373} +{"PlaylistId":8,"TrackId":1374} +{"PlaylistId":8,"TrackId":1375} +{"PlaylistId":8,"TrackId":1376} +{"PlaylistId":8,"TrackId":1377} +{"PlaylistId":8,"TrackId":1378} +{"PlaylistId":8,"TrackId":1379} +{"PlaylistId":8,"TrackId":1380} +{"PlaylistId":8,"TrackId":1381} +{"PlaylistId":8,"TrackId":1382} +{"PlaylistId":8,"TrackId":1386} +{"PlaylistId":8,"TrackId":1383} +{"PlaylistId":8,"TrackId":1385} +{"PlaylistId":8,"TrackId":1384} +{"PlaylistId":8,"TrackId":1406} +{"PlaylistId":8,"TrackId":1407} +{"PlaylistId":8,"TrackId":1408} +{"PlaylistId":8,"TrackId":1409} +{"PlaylistId":8,"TrackId":1410} +{"PlaylistId":8,"TrackId":1411} +{"PlaylistId":8,"TrackId":1412} +{"PlaylistId":8,"TrackId":1413} +{"PlaylistId":8,"TrackId":1395} +{"PlaylistId":8,"TrackId":1396} +{"PlaylistId":8,"TrackId":1397} +{"PlaylistId":8,"TrackId":1398} +{"PlaylistId":8,"TrackId":1399} +{"PlaylistId":8,"TrackId":1400} +{"PlaylistId":8,"TrackId":1401} +{"PlaylistId":8,"TrackId":1402} +{"PlaylistId":8,"TrackId":1403} +{"PlaylistId":8,"TrackId":1404} +{"PlaylistId":8,"TrackId":1405} +{"PlaylistId":8,"TrackId":3274} +{"PlaylistId":8,"TrackId":3267} +{"PlaylistId":8,"TrackId":3261} +{"PlaylistId":8,"TrackId":3272} +{"PlaylistId":8,"TrackId":1414} +{"PlaylistId":8,"TrackId":1415} +{"PlaylistId":8,"TrackId":1416} +{"PlaylistId":8,"TrackId":1417} +{"PlaylistId":8,"TrackId":1418} +{"PlaylistId":8,"TrackId":1419} +{"PlaylistId":8,"TrackId":1420} +{"PlaylistId":8,"TrackId":1421} +{"PlaylistId":8,"TrackId":1422} +{"PlaylistId":8,"TrackId":1423} +{"PlaylistId":8,"TrackId":1424} +{"PlaylistId":8,"TrackId":1425} +{"PlaylistId":8,"TrackId":1426} +{"PlaylistId":8,"TrackId":1427} +{"PlaylistId":8,"TrackId":1428} +{"PlaylistId":8,"TrackId":1429} +{"PlaylistId":8,"TrackId":1430} +{"PlaylistId":8,"TrackId":1431} +{"PlaylistId":8,"TrackId":1432} +{"PlaylistId":8,"TrackId":1433} +{"PlaylistId":8,"TrackId":1434} +{"PlaylistId":8,"TrackId":1435} +{"PlaylistId":8,"TrackId":1436} +{"PlaylistId":8,"TrackId":1437} +{"PlaylistId":8,"TrackId":1438} +{"PlaylistId":8,"TrackId":1439} +{"PlaylistId":8,"TrackId":1440} +{"PlaylistId":8,"TrackId":1441} +{"PlaylistId":8,"TrackId":1442} +{"PlaylistId":8,"TrackId":1443} +{"PlaylistId":8,"TrackId":1455} +{"PlaylistId":8,"TrackId":1456} +{"PlaylistId":8,"TrackId":1457} +{"PlaylistId":8,"TrackId":1458} +{"PlaylistId":8,"TrackId":1459} +{"PlaylistId":8,"TrackId":1460} +{"PlaylistId":8,"TrackId":1461} +{"PlaylistId":8,"TrackId":1462} +{"PlaylistId":8,"TrackId":1463} +{"PlaylistId":8,"TrackId":1464} +{"PlaylistId":8,"TrackId":1465} +{"PlaylistId":8,"TrackId":1444} +{"PlaylistId":8,"TrackId":1445} +{"PlaylistId":8,"TrackId":1446} +{"PlaylistId":8,"TrackId":1447} +{"PlaylistId":8,"TrackId":1448} +{"PlaylistId":8,"TrackId":1449} +{"PlaylistId":8,"TrackId":1450} +{"PlaylistId":8,"TrackId":1451} +{"PlaylistId":8,"TrackId":1452} +{"PlaylistId":8,"TrackId":1453} +{"PlaylistId":8,"TrackId":1454} +{"PlaylistId":8,"TrackId":1466} +{"PlaylistId":8,"TrackId":1467} +{"PlaylistId":8,"TrackId":1468} +{"PlaylistId":8,"TrackId":1469} +{"PlaylistId":8,"TrackId":1470} +{"PlaylistId":8,"TrackId":1471} +{"PlaylistId":8,"TrackId":1472} +{"PlaylistId":8,"TrackId":1473} +{"PlaylistId":8,"TrackId":1474} +{"PlaylistId":8,"TrackId":1475} +{"PlaylistId":8,"TrackId":1476} +{"PlaylistId":8,"TrackId":1477} +{"PlaylistId":8,"TrackId":1478} +{"PlaylistId":8,"TrackId":1479} +{"PlaylistId":8,"TrackId":1480} +{"PlaylistId":8,"TrackId":1481} +{"PlaylistId":8,"TrackId":1482} +{"PlaylistId":8,"TrackId":1483} +{"PlaylistId":8,"TrackId":1484} +{"PlaylistId":8,"TrackId":1485} +{"PlaylistId":8,"TrackId":1486} +{"PlaylistId":8,"TrackId":1487} +{"PlaylistId":8,"TrackId":1488} +{"PlaylistId":8,"TrackId":1489} +{"PlaylistId":8,"TrackId":1490} +{"PlaylistId":8,"TrackId":1491} +{"PlaylistId":8,"TrackId":1492} +{"PlaylistId":8,"TrackId":1493} +{"PlaylistId":8,"TrackId":1494} +{"PlaylistId":8,"TrackId":1495} +{"PlaylistId":8,"TrackId":378} +{"PlaylistId":8,"TrackId":392} +{"PlaylistId":8,"TrackId":1532} +{"PlaylistId":8,"TrackId":1533} +{"PlaylistId":8,"TrackId":1534} +{"PlaylistId":8,"TrackId":1535} +{"PlaylistId":8,"TrackId":1536} +{"PlaylistId":8,"TrackId":1537} +{"PlaylistId":8,"TrackId":1538} +{"PlaylistId":8,"TrackId":1539} +{"PlaylistId":8,"TrackId":1540} +{"PlaylistId":8,"TrackId":1541} +{"PlaylistId":8,"TrackId":1542} +{"PlaylistId":8,"TrackId":1543} +{"PlaylistId":8,"TrackId":1544} +{"PlaylistId":8,"TrackId":1545} +{"PlaylistId":8,"TrackId":1496} +{"PlaylistId":8,"TrackId":1497} +{"PlaylistId":8,"TrackId":1498} +{"PlaylistId":8,"TrackId":1499} +{"PlaylistId":8,"TrackId":1500} +{"PlaylistId":8,"TrackId":1501} +{"PlaylistId":8,"TrackId":1502} +{"PlaylistId":8,"TrackId":1503} +{"PlaylistId":8,"TrackId":1504} +{"PlaylistId":8,"TrackId":1505} +{"PlaylistId":8,"TrackId":403} +{"PlaylistId":8,"TrackId":1506} +{"PlaylistId":8,"TrackId":1507} +{"PlaylistId":8,"TrackId":1508} +{"PlaylistId":8,"TrackId":1509} +{"PlaylistId":8,"TrackId":1510} +{"PlaylistId":8,"TrackId":1511} +{"PlaylistId":8,"TrackId":1512} +{"PlaylistId":8,"TrackId":1513} +{"PlaylistId":8,"TrackId":1514} +{"PlaylistId":8,"TrackId":1515} +{"PlaylistId":8,"TrackId":1516} +{"PlaylistId":8,"TrackId":1517} +{"PlaylistId":8,"TrackId":1518} +{"PlaylistId":8,"TrackId":1519} +{"PlaylistId":8,"TrackId":381} +{"PlaylistId":8,"TrackId":1520} +{"PlaylistId":8,"TrackId":1521} +{"PlaylistId":8,"TrackId":1522} +{"PlaylistId":8,"TrackId":1523} +{"PlaylistId":8,"TrackId":1524} +{"PlaylistId":8,"TrackId":1525} +{"PlaylistId":8,"TrackId":1526} +{"PlaylistId":8,"TrackId":1527} +{"PlaylistId":8,"TrackId":1528} +{"PlaylistId":8,"TrackId":1529} +{"PlaylistId":8,"TrackId":1530} +{"PlaylistId":8,"TrackId":1531} +{"PlaylistId":8,"TrackId":1546} +{"PlaylistId":8,"TrackId":1547} +{"PlaylistId":8,"TrackId":1548} +{"PlaylistId":8,"TrackId":1549} +{"PlaylistId":8,"TrackId":1550} +{"PlaylistId":8,"TrackId":1551} +{"PlaylistId":8,"TrackId":1552} +{"PlaylistId":8,"TrackId":1553} +{"PlaylistId":8,"TrackId":1554} +{"PlaylistId":8,"TrackId":1555} +{"PlaylistId":8,"TrackId":1556} +{"PlaylistId":8,"TrackId":1557} +{"PlaylistId":8,"TrackId":1558} +{"PlaylistId":8,"TrackId":1559} +{"PlaylistId":8,"TrackId":1560} +{"PlaylistId":8,"TrackId":1561} +{"PlaylistId":8,"TrackId":3352} +{"PlaylistId":8,"TrackId":3358} +{"PlaylistId":8,"TrackId":400} +{"PlaylistId":8,"TrackId":436} +{"PlaylistId":8,"TrackId":437} +{"PlaylistId":8,"TrackId":438} +{"PlaylistId":8,"TrackId":439} +{"PlaylistId":8,"TrackId":440} +{"PlaylistId":8,"TrackId":441} +{"PlaylistId":8,"TrackId":442} +{"PlaylistId":8,"TrackId":443} +{"PlaylistId":8,"TrackId":444} +{"PlaylistId":8,"TrackId":445} +{"PlaylistId":8,"TrackId":446} +{"PlaylistId":8,"TrackId":447} +{"PlaylistId":8,"TrackId":448} +{"PlaylistId":8,"TrackId":449} +{"PlaylistId":8,"TrackId":450} +{"PlaylistId":8,"TrackId":451} +{"PlaylistId":8,"TrackId":452} +{"PlaylistId":8,"TrackId":453} +{"PlaylistId":8,"TrackId":454} +{"PlaylistId":8,"TrackId":455} +{"PlaylistId":8,"TrackId":1562} +{"PlaylistId":8,"TrackId":1563} +{"PlaylistId":8,"TrackId":1564} +{"PlaylistId":8,"TrackId":1565} +{"PlaylistId":8,"TrackId":1566} +{"PlaylistId":8,"TrackId":1567} +{"PlaylistId":8,"TrackId":1568} +{"PlaylistId":8,"TrackId":1569} +{"PlaylistId":8,"TrackId":1570} +{"PlaylistId":8,"TrackId":1571} +{"PlaylistId":8,"TrackId":1572} +{"PlaylistId":8,"TrackId":1573} +{"PlaylistId":8,"TrackId":1574} +{"PlaylistId":8,"TrackId":1575} +{"PlaylistId":8,"TrackId":1576} +{"PlaylistId":8,"TrackId":337} +{"PlaylistId":8,"TrackId":338} +{"PlaylistId":8,"TrackId":339} +{"PlaylistId":8,"TrackId":340} +{"PlaylistId":8,"TrackId":341} +{"PlaylistId":8,"TrackId":342} +{"PlaylistId":8,"TrackId":343} +{"PlaylistId":8,"TrackId":344} +{"PlaylistId":8,"TrackId":345} +{"PlaylistId":8,"TrackId":346} +{"PlaylistId":8,"TrackId":347} +{"PlaylistId":8,"TrackId":348} +{"PlaylistId":8,"TrackId":349} +{"PlaylistId":8,"TrackId":350} +{"PlaylistId":8,"TrackId":1577} +{"PlaylistId":8,"TrackId":1578} +{"PlaylistId":8,"TrackId":1579} +{"PlaylistId":8,"TrackId":1580} +{"PlaylistId":8,"TrackId":1581} +{"PlaylistId":8,"TrackId":1582} +{"PlaylistId":8,"TrackId":1583} +{"PlaylistId":8,"TrackId":1584} +{"PlaylistId":8,"TrackId":1585} +{"PlaylistId":8,"TrackId":1586} +{"PlaylistId":8,"TrackId":1587} +{"PlaylistId":8,"TrackId":1588} +{"PlaylistId":8,"TrackId":1589} +{"PlaylistId":8,"TrackId":1590} +{"PlaylistId":8,"TrackId":1591} +{"PlaylistId":8,"TrackId":1592} +{"PlaylistId":8,"TrackId":1593} +{"PlaylistId":8,"TrackId":1594} +{"PlaylistId":8,"TrackId":1595} +{"PlaylistId":8,"TrackId":1596} +{"PlaylistId":8,"TrackId":1597} +{"PlaylistId":8,"TrackId":1598} +{"PlaylistId":8,"TrackId":1599} +{"PlaylistId":8,"TrackId":1600} +{"PlaylistId":8,"TrackId":1601} +{"PlaylistId":8,"TrackId":1602} +{"PlaylistId":8,"TrackId":1603} +{"PlaylistId":8,"TrackId":1604} +{"PlaylistId":8,"TrackId":1605} +{"PlaylistId":8,"TrackId":1606} +{"PlaylistId":8,"TrackId":1607} +{"PlaylistId":8,"TrackId":1608} +{"PlaylistId":8,"TrackId":1609} +{"PlaylistId":8,"TrackId":1610} +{"PlaylistId":8,"TrackId":1611} +{"PlaylistId":8,"TrackId":1612} +{"PlaylistId":8,"TrackId":1613} +{"PlaylistId":8,"TrackId":1614} +{"PlaylistId":8,"TrackId":1615} +{"PlaylistId":8,"TrackId":1616} +{"PlaylistId":8,"TrackId":1617} +{"PlaylistId":8,"TrackId":1618} +{"PlaylistId":8,"TrackId":1619} +{"PlaylistId":8,"TrackId":1620} +{"PlaylistId":8,"TrackId":1621} +{"PlaylistId":8,"TrackId":1622} +{"PlaylistId":8,"TrackId":1623} +{"PlaylistId":8,"TrackId":1624} +{"PlaylistId":8,"TrackId":1625} +{"PlaylistId":8,"TrackId":1626} +{"PlaylistId":8,"TrackId":1627} +{"PlaylistId":8,"TrackId":1628} +{"PlaylistId":8,"TrackId":1629} +{"PlaylistId":8,"TrackId":1630} +{"PlaylistId":8,"TrackId":1631} +{"PlaylistId":8,"TrackId":1632} +{"PlaylistId":8,"TrackId":1633} +{"PlaylistId":8,"TrackId":1634} +{"PlaylistId":8,"TrackId":1635} +{"PlaylistId":8,"TrackId":1636} +{"PlaylistId":8,"TrackId":1637} +{"PlaylistId":8,"TrackId":1638} +{"PlaylistId":8,"TrackId":1639} +{"PlaylistId":8,"TrackId":1640} +{"PlaylistId":8,"TrackId":1641} +{"PlaylistId":8,"TrackId":1642} +{"PlaylistId":8,"TrackId":1643} +{"PlaylistId":8,"TrackId":1644} +{"PlaylistId":8,"TrackId":1645} +{"PlaylistId":8,"TrackId":550} +{"PlaylistId":8,"TrackId":551} +{"PlaylistId":8,"TrackId":552} +{"PlaylistId":8,"TrackId":553} +{"PlaylistId":8,"TrackId":554} +{"PlaylistId":8,"TrackId":555} +{"PlaylistId":8,"TrackId":1646} +{"PlaylistId":8,"TrackId":1647} +{"PlaylistId":8,"TrackId":1648} +{"PlaylistId":8,"TrackId":1649} +{"PlaylistId":8,"TrackId":1650} +{"PlaylistId":8,"TrackId":1651} +{"PlaylistId":8,"TrackId":1652} +{"PlaylistId":8,"TrackId":1653} +{"PlaylistId":8,"TrackId":1654} +{"PlaylistId":8,"TrackId":1655} +{"PlaylistId":8,"TrackId":1656} +{"PlaylistId":8,"TrackId":1657} +{"PlaylistId":8,"TrackId":1658} +{"PlaylistId":8,"TrackId":1659} +{"PlaylistId":8,"TrackId":1660} +{"PlaylistId":8,"TrackId":1661} +{"PlaylistId":8,"TrackId":1662} +{"PlaylistId":8,"TrackId":1663} +{"PlaylistId":8,"TrackId":1664} +{"PlaylistId":8,"TrackId":1665} +{"PlaylistId":8,"TrackId":1666} +{"PlaylistId":8,"TrackId":1667} +{"PlaylistId":8,"TrackId":1668} +{"PlaylistId":8,"TrackId":1669} +{"PlaylistId":8,"TrackId":1670} +{"PlaylistId":8,"TrackId":1686} +{"PlaylistId":8,"TrackId":1687} +{"PlaylistId":8,"TrackId":1688} +{"PlaylistId":8,"TrackId":1689} +{"PlaylistId":8,"TrackId":1690} +{"PlaylistId":8,"TrackId":1691} +{"PlaylistId":8,"TrackId":1692} +{"PlaylistId":8,"TrackId":1693} +{"PlaylistId":8,"TrackId":1694} +{"PlaylistId":8,"TrackId":1695} +{"PlaylistId":8,"TrackId":1696} +{"PlaylistId":8,"TrackId":1697} +{"PlaylistId":8,"TrackId":1698} +{"PlaylistId":8,"TrackId":1699} +{"PlaylistId":8,"TrackId":1700} +{"PlaylistId":8,"TrackId":1701} +{"PlaylistId":8,"TrackId":1671} +{"PlaylistId":8,"TrackId":1672} +{"PlaylistId":8,"TrackId":1673} +{"PlaylistId":8,"TrackId":1674} +{"PlaylistId":8,"TrackId":1675} +{"PlaylistId":8,"TrackId":1676} +{"PlaylistId":8,"TrackId":1677} +{"PlaylistId":8,"TrackId":1678} +{"PlaylistId":8,"TrackId":1679} +{"PlaylistId":8,"TrackId":1680} +{"PlaylistId":8,"TrackId":1681} +{"PlaylistId":8,"TrackId":1682} +{"PlaylistId":8,"TrackId":1683} +{"PlaylistId":8,"TrackId":1684} +{"PlaylistId":8,"TrackId":1685} +{"PlaylistId":8,"TrackId":1702} +{"PlaylistId":8,"TrackId":1703} +{"PlaylistId":8,"TrackId":1704} +{"PlaylistId":8,"TrackId":1705} +{"PlaylistId":8,"TrackId":1706} +{"PlaylistId":8,"TrackId":1707} +{"PlaylistId":8,"TrackId":1708} +{"PlaylistId":8,"TrackId":1709} +{"PlaylistId":8,"TrackId":1710} +{"PlaylistId":8,"TrackId":1711} +{"PlaylistId":8,"TrackId":1712} +{"PlaylistId":8,"TrackId":1713} +{"PlaylistId":8,"TrackId":1714} +{"PlaylistId":8,"TrackId":1715} +{"PlaylistId":8,"TrackId":1716} +{"PlaylistId":8,"TrackId":3257} +{"PlaylistId":8,"TrackId":3425} +{"PlaylistId":8,"TrackId":3420} +{"PlaylistId":8,"TrackId":3326} +{"PlaylistId":8,"TrackId":3258} +{"PlaylistId":8,"TrackId":3356} +{"PlaylistId":8,"TrackId":3424} +{"PlaylistId":8,"TrackId":384} +{"PlaylistId":8,"TrackId":1717} +{"PlaylistId":8,"TrackId":1720} +{"PlaylistId":8,"TrackId":1722} +{"PlaylistId":8,"TrackId":1723} +{"PlaylistId":8,"TrackId":1726} +{"PlaylistId":8,"TrackId":1727} +{"PlaylistId":8,"TrackId":1730} +{"PlaylistId":8,"TrackId":1731} +{"PlaylistId":8,"TrackId":1733} +{"PlaylistId":8,"TrackId":1736} +{"PlaylistId":8,"TrackId":1737} +{"PlaylistId":8,"TrackId":1740} +{"PlaylistId":8,"TrackId":1742} +{"PlaylistId":8,"TrackId":1743} +{"PlaylistId":8,"TrackId":1718} +{"PlaylistId":8,"TrackId":1719} +{"PlaylistId":8,"TrackId":1721} +{"PlaylistId":8,"TrackId":1724} +{"PlaylistId":8,"TrackId":1725} +{"PlaylistId":8,"TrackId":1728} +{"PlaylistId":8,"TrackId":1729} +{"PlaylistId":8,"TrackId":1732} +{"PlaylistId":8,"TrackId":1734} +{"PlaylistId":8,"TrackId":1735} +{"PlaylistId":8,"TrackId":1738} +{"PlaylistId":8,"TrackId":1739} +{"PlaylistId":8,"TrackId":1741} +{"PlaylistId":8,"TrackId":1744} +{"PlaylistId":8,"TrackId":374} +{"PlaylistId":8,"TrackId":1745} +{"PlaylistId":8,"TrackId":1746} +{"PlaylistId":8,"TrackId":1747} +{"PlaylistId":8,"TrackId":1748} +{"PlaylistId":8,"TrackId":1749} +{"PlaylistId":8,"TrackId":1750} +{"PlaylistId":8,"TrackId":1751} +{"PlaylistId":8,"TrackId":1752} +{"PlaylistId":8,"TrackId":1753} +{"PlaylistId":8,"TrackId":1754} +{"PlaylistId":8,"TrackId":1755} +{"PlaylistId":8,"TrackId":1762} +{"PlaylistId":8,"TrackId":1763} +{"PlaylistId":8,"TrackId":1756} +{"PlaylistId":8,"TrackId":1764} +{"PlaylistId":8,"TrackId":1757} +{"PlaylistId":8,"TrackId":1758} +{"PlaylistId":8,"TrackId":1765} +{"PlaylistId":8,"TrackId":1766} +{"PlaylistId":8,"TrackId":1759} +{"PlaylistId":8,"TrackId":1760} +{"PlaylistId":8,"TrackId":1767} +{"PlaylistId":8,"TrackId":1761} +{"PlaylistId":8,"TrackId":1768} +{"PlaylistId":8,"TrackId":1769} +{"PlaylistId":8,"TrackId":1770} +{"PlaylistId":8,"TrackId":1771} +{"PlaylistId":8,"TrackId":1772} +{"PlaylistId":8,"TrackId":1773} +{"PlaylistId":8,"TrackId":1774} +{"PlaylistId":8,"TrackId":1775} +{"PlaylistId":8,"TrackId":1776} +{"PlaylistId":8,"TrackId":1777} +{"PlaylistId":8,"TrackId":1778} +{"PlaylistId":8,"TrackId":1779} +{"PlaylistId":8,"TrackId":1780} +{"PlaylistId":8,"TrackId":1781} +{"PlaylistId":8,"TrackId":1782} +{"PlaylistId":8,"TrackId":1783} +{"PlaylistId":8,"TrackId":1784} +{"PlaylistId":8,"TrackId":1785} +{"PlaylistId":8,"TrackId":1786} +{"PlaylistId":8,"TrackId":1787} +{"PlaylistId":8,"TrackId":1788} +{"PlaylistId":8,"TrackId":1789} +{"PlaylistId":8,"TrackId":1790} +{"PlaylistId":8,"TrackId":3270} +{"PlaylistId":8,"TrackId":1791} +{"PlaylistId":8,"TrackId":1792} +{"PlaylistId":8,"TrackId":1793} +{"PlaylistId":8,"TrackId":1794} +{"PlaylistId":8,"TrackId":1795} +{"PlaylistId":8,"TrackId":1796} +{"PlaylistId":8,"TrackId":1797} +{"PlaylistId":8,"TrackId":1798} +{"PlaylistId":8,"TrackId":1799} +{"PlaylistId":8,"TrackId":1800} +{"PlaylistId":8,"TrackId":1893} +{"PlaylistId":8,"TrackId":1894} +{"PlaylistId":8,"TrackId":1895} +{"PlaylistId":8,"TrackId":1896} +{"PlaylistId":8,"TrackId":1897} +{"PlaylistId":8,"TrackId":1898} +{"PlaylistId":8,"TrackId":1899} +{"PlaylistId":8,"TrackId":1900} +{"PlaylistId":8,"TrackId":1901} +{"PlaylistId":8,"TrackId":1801} +{"PlaylistId":8,"TrackId":1802} +{"PlaylistId":8,"TrackId":1803} +{"PlaylistId":8,"TrackId":1804} +{"PlaylistId":8,"TrackId":1805} +{"PlaylistId":8,"TrackId":1806} +{"PlaylistId":8,"TrackId":1807} +{"PlaylistId":8,"TrackId":1808} +{"PlaylistId":8,"TrackId":1809} +{"PlaylistId":8,"TrackId":1810} +{"PlaylistId":8,"TrackId":1811} +{"PlaylistId":8,"TrackId":1812} +{"PlaylistId":8,"TrackId":408} +{"PlaylistId":8,"TrackId":409} +{"PlaylistId":8,"TrackId":410} +{"PlaylistId":8,"TrackId":411} +{"PlaylistId":8,"TrackId":412} +{"PlaylistId":8,"TrackId":413} +{"PlaylistId":8,"TrackId":414} +{"PlaylistId":8,"TrackId":415} +{"PlaylistId":8,"TrackId":416} +{"PlaylistId":8,"TrackId":417} +{"PlaylistId":8,"TrackId":418} +{"PlaylistId":8,"TrackId":1813} +{"PlaylistId":8,"TrackId":1814} +{"PlaylistId":8,"TrackId":1815} +{"PlaylistId":8,"TrackId":1816} +{"PlaylistId":8,"TrackId":1817} +{"PlaylistId":8,"TrackId":1818} +{"PlaylistId":8,"TrackId":1819} +{"PlaylistId":8,"TrackId":1820} +{"PlaylistId":8,"TrackId":1821} +{"PlaylistId":8,"TrackId":1822} +{"PlaylistId":8,"TrackId":1823} +{"PlaylistId":8,"TrackId":1824} +{"PlaylistId":8,"TrackId":1825} +{"PlaylistId":8,"TrackId":1826} +{"PlaylistId":8,"TrackId":1827} +{"PlaylistId":8,"TrackId":1828} +{"PlaylistId":8,"TrackId":1829} +{"PlaylistId":8,"TrackId":1830} +{"PlaylistId":8,"TrackId":1831} +{"PlaylistId":8,"TrackId":1832} +{"PlaylistId":8,"TrackId":1833} +{"PlaylistId":8,"TrackId":1834} +{"PlaylistId":8,"TrackId":1835} +{"PlaylistId":8,"TrackId":1836} +{"PlaylistId":8,"TrackId":1837} +{"PlaylistId":8,"TrackId":1838} +{"PlaylistId":8,"TrackId":1839} +{"PlaylistId":8,"TrackId":1840} +{"PlaylistId":8,"TrackId":1841} +{"PlaylistId":8,"TrackId":1842} +{"PlaylistId":8,"TrackId":1843} +{"PlaylistId":8,"TrackId":1844} +{"PlaylistId":8,"TrackId":1845} +{"PlaylistId":8,"TrackId":1846} +{"PlaylistId":8,"TrackId":1847} +{"PlaylistId":8,"TrackId":1848} +{"PlaylistId":8,"TrackId":1849} +{"PlaylistId":8,"TrackId":1850} +{"PlaylistId":8,"TrackId":1851} +{"PlaylistId":8,"TrackId":1852} +{"PlaylistId":8,"TrackId":1853} +{"PlaylistId":8,"TrackId":1854} +{"PlaylistId":8,"TrackId":1855} +{"PlaylistId":8,"TrackId":1856} +{"PlaylistId":8,"TrackId":1857} +{"PlaylistId":8,"TrackId":1858} +{"PlaylistId":8,"TrackId":1859} +{"PlaylistId":8,"TrackId":1860} +{"PlaylistId":8,"TrackId":1861} +{"PlaylistId":8,"TrackId":1862} +{"PlaylistId":8,"TrackId":1863} +{"PlaylistId":8,"TrackId":1864} +{"PlaylistId":8,"TrackId":1865} +{"PlaylistId":8,"TrackId":1866} +{"PlaylistId":8,"TrackId":1867} +{"PlaylistId":8,"TrackId":1868} +{"PlaylistId":8,"TrackId":1869} +{"PlaylistId":8,"TrackId":1870} +{"PlaylistId":8,"TrackId":1871} +{"PlaylistId":8,"TrackId":1872} +{"PlaylistId":8,"TrackId":1873} +{"PlaylistId":8,"TrackId":1874} +{"PlaylistId":8,"TrackId":1875} +{"PlaylistId":8,"TrackId":1876} +{"PlaylistId":8,"TrackId":1877} +{"PlaylistId":8,"TrackId":1878} +{"PlaylistId":8,"TrackId":1879} +{"PlaylistId":8,"TrackId":1880} +{"PlaylistId":8,"TrackId":1881} +{"PlaylistId":8,"TrackId":1882} +{"PlaylistId":8,"TrackId":1883} +{"PlaylistId":8,"TrackId":1884} +{"PlaylistId":8,"TrackId":1885} +{"PlaylistId":8,"TrackId":1886} +{"PlaylistId":8,"TrackId":1887} +{"PlaylistId":8,"TrackId":1888} +{"PlaylistId":8,"TrackId":1889} +{"PlaylistId":8,"TrackId":1890} +{"PlaylistId":8,"TrackId":1891} +{"PlaylistId":8,"TrackId":1892} +{"PlaylistId":8,"TrackId":597} +{"PlaylistId":8,"TrackId":598} +{"PlaylistId":8,"TrackId":599} +{"PlaylistId":8,"TrackId":600} +{"PlaylistId":8,"TrackId":601} +{"PlaylistId":8,"TrackId":602} +{"PlaylistId":8,"TrackId":603} +{"PlaylistId":8,"TrackId":604} +{"PlaylistId":8,"TrackId":605} +{"PlaylistId":8,"TrackId":606} +{"PlaylistId":8,"TrackId":607} +{"PlaylistId":8,"TrackId":608} +{"PlaylistId":8,"TrackId":609} +{"PlaylistId":8,"TrackId":610} +{"PlaylistId":8,"TrackId":611} +{"PlaylistId":8,"TrackId":612} +{"PlaylistId":8,"TrackId":613} +{"PlaylistId":8,"TrackId":614} +{"PlaylistId":8,"TrackId":615} +{"PlaylistId":8,"TrackId":616} +{"PlaylistId":8,"TrackId":617} +{"PlaylistId":8,"TrackId":618} +{"PlaylistId":8,"TrackId":619} +{"PlaylistId":8,"TrackId":1902} +{"PlaylistId":8,"TrackId":1903} +{"PlaylistId":8,"TrackId":1904} +{"PlaylistId":8,"TrackId":1905} +{"PlaylistId":8,"TrackId":1906} +{"PlaylistId":8,"TrackId":1907} +{"PlaylistId":8,"TrackId":1908} +{"PlaylistId":8,"TrackId":1909} +{"PlaylistId":8,"TrackId":1910} +{"PlaylistId":8,"TrackId":1911} +{"PlaylistId":8,"TrackId":1912} +{"PlaylistId":8,"TrackId":1913} +{"PlaylistId":8,"TrackId":1914} +{"PlaylistId":8,"TrackId":1915} +{"PlaylistId":8,"TrackId":398} +{"PlaylistId":8,"TrackId":1916} +{"PlaylistId":8,"TrackId":1917} +{"PlaylistId":8,"TrackId":1918} +{"PlaylistId":8,"TrackId":1919} +{"PlaylistId":8,"TrackId":1920} +{"PlaylistId":8,"TrackId":1921} +{"PlaylistId":8,"TrackId":1922} +{"PlaylistId":8,"TrackId":1923} +{"PlaylistId":8,"TrackId":1924} +{"PlaylistId":8,"TrackId":1925} +{"PlaylistId":8,"TrackId":1926} +{"PlaylistId":8,"TrackId":1927} +{"PlaylistId":8,"TrackId":1928} +{"PlaylistId":8,"TrackId":1929} +{"PlaylistId":8,"TrackId":1930} +{"PlaylistId":8,"TrackId":1931} +{"PlaylistId":8,"TrackId":1932} +{"PlaylistId":8,"TrackId":1933} +{"PlaylistId":8,"TrackId":1934} +{"PlaylistId":8,"TrackId":1935} +{"PlaylistId":8,"TrackId":1936} +{"PlaylistId":8,"TrackId":1937} +{"PlaylistId":8,"TrackId":1938} +{"PlaylistId":8,"TrackId":1939} +{"PlaylistId":8,"TrackId":1940} +{"PlaylistId":8,"TrackId":1941} +{"PlaylistId":8,"TrackId":375} +{"PlaylistId":8,"TrackId":1957} +{"PlaylistId":8,"TrackId":1958} +{"PlaylistId":8,"TrackId":1959} +{"PlaylistId":8,"TrackId":1960} +{"PlaylistId":8,"TrackId":1961} +{"PlaylistId":8,"TrackId":1962} +{"PlaylistId":8,"TrackId":1963} +{"PlaylistId":8,"TrackId":1964} +{"PlaylistId":8,"TrackId":1965} +{"PlaylistId":8,"TrackId":1966} +{"PlaylistId":8,"TrackId":1967} +{"PlaylistId":8,"TrackId":1968} +{"PlaylistId":8,"TrackId":1969} +{"PlaylistId":8,"TrackId":1970} +{"PlaylistId":8,"TrackId":1971} +{"PlaylistId":8,"TrackId":1972} +{"PlaylistId":8,"TrackId":1973} +{"PlaylistId":8,"TrackId":1974} +{"PlaylistId":8,"TrackId":1975} +{"PlaylistId":8,"TrackId":1976} +{"PlaylistId":8,"TrackId":1977} +{"PlaylistId":8,"TrackId":1978} +{"PlaylistId":8,"TrackId":1979} +{"PlaylistId":8,"TrackId":1980} +{"PlaylistId":8,"TrackId":1981} +{"PlaylistId":8,"TrackId":1982} +{"PlaylistId":8,"TrackId":1983} +{"PlaylistId":8,"TrackId":1984} +{"PlaylistId":8,"TrackId":1985} +{"PlaylistId":8,"TrackId":1942} +{"PlaylistId":8,"TrackId":1943} +{"PlaylistId":8,"TrackId":1944} +{"PlaylistId":8,"TrackId":1945} +{"PlaylistId":8,"TrackId":1946} +{"PlaylistId":8,"TrackId":1947} +{"PlaylistId":8,"TrackId":1948} +{"PlaylistId":8,"TrackId":1949} +{"PlaylistId":8,"TrackId":1950} +{"PlaylistId":8,"TrackId":1951} +{"PlaylistId":8,"TrackId":1952} +{"PlaylistId":8,"TrackId":1953} +{"PlaylistId":8,"TrackId":1954} +{"PlaylistId":8,"TrackId":1955} +{"PlaylistId":8,"TrackId":1956} +{"PlaylistId":8,"TrackId":3327} +{"PlaylistId":8,"TrackId":3330} +{"PlaylistId":8,"TrackId":385} +{"PlaylistId":8,"TrackId":3321} +{"PlaylistId":8,"TrackId":383} +{"PlaylistId":8,"TrackId":3359} +{"PlaylistId":8,"TrackId":1986} +{"PlaylistId":8,"TrackId":1987} +{"PlaylistId":8,"TrackId":1988} +{"PlaylistId":8,"TrackId":1989} +{"PlaylistId":8,"TrackId":1990} +{"PlaylistId":8,"TrackId":1991} +{"PlaylistId":8,"TrackId":1992} +{"PlaylistId":8,"TrackId":1993} +{"PlaylistId":8,"TrackId":1994} +{"PlaylistId":8,"TrackId":1995} +{"PlaylistId":8,"TrackId":1996} +{"PlaylistId":8,"TrackId":1997} +{"PlaylistId":8,"TrackId":1998} +{"PlaylistId":8,"TrackId":1999} +{"PlaylistId":8,"TrackId":2000} +{"PlaylistId":8,"TrackId":2001} +{"PlaylistId":8,"TrackId":2002} +{"PlaylistId":8,"TrackId":2003} +{"PlaylistId":8,"TrackId":2004} +{"PlaylistId":8,"TrackId":2005} +{"PlaylistId":8,"TrackId":2006} +{"PlaylistId":8,"TrackId":2007} +{"PlaylistId":8,"TrackId":2008} +{"PlaylistId":8,"TrackId":2009} +{"PlaylistId":8,"TrackId":2010} +{"PlaylistId":8,"TrackId":2011} +{"PlaylistId":8,"TrackId":2012} +{"PlaylistId":8,"TrackId":2013} +{"PlaylistId":8,"TrackId":2014} +{"PlaylistId":8,"TrackId":387} +{"PlaylistId":8,"TrackId":3319} +{"PlaylistId":8,"TrackId":2015} +{"PlaylistId":8,"TrackId":2016} +{"PlaylistId":8,"TrackId":2017} +{"PlaylistId":8,"TrackId":2018} +{"PlaylistId":8,"TrackId":2019} +{"PlaylistId":8,"TrackId":2020} +{"PlaylistId":8,"TrackId":2021} +{"PlaylistId":8,"TrackId":2022} +{"PlaylistId":8,"TrackId":2023} +{"PlaylistId":8,"TrackId":2024} +{"PlaylistId":8,"TrackId":2025} +{"PlaylistId":8,"TrackId":2026} +{"PlaylistId":8,"TrackId":2027} +{"PlaylistId":8,"TrackId":2028} +{"PlaylistId":8,"TrackId":2029} +{"PlaylistId":8,"TrackId":2030} +{"PlaylistId":8,"TrackId":2031} +{"PlaylistId":8,"TrackId":2032} +{"PlaylistId":8,"TrackId":2033} +{"PlaylistId":8,"TrackId":2034} +{"PlaylistId":8,"TrackId":2035} +{"PlaylistId":8,"TrackId":2036} +{"PlaylistId":8,"TrackId":2037} +{"PlaylistId":8,"TrackId":2038} +{"PlaylistId":8,"TrackId":2039} +{"PlaylistId":8,"TrackId":2040} +{"PlaylistId":8,"TrackId":2041} +{"PlaylistId":8,"TrackId":2042} +{"PlaylistId":8,"TrackId":2043} +{"PlaylistId":8,"TrackId":3415} +{"PlaylistId":8,"TrackId":393} +{"PlaylistId":8,"TrackId":529} +{"PlaylistId":8,"TrackId":530} +{"PlaylistId":8,"TrackId":531} +{"PlaylistId":8,"TrackId":532} +{"PlaylistId":8,"TrackId":533} +{"PlaylistId":8,"TrackId":534} +{"PlaylistId":8,"TrackId":535} +{"PlaylistId":8,"TrackId":536} +{"PlaylistId":8,"TrackId":537} +{"PlaylistId":8,"TrackId":538} +{"PlaylistId":8,"TrackId":539} +{"PlaylistId":8,"TrackId":540} +{"PlaylistId":8,"TrackId":541} +{"PlaylistId":8,"TrackId":542} +{"PlaylistId":8,"TrackId":2044} +{"PlaylistId":8,"TrackId":2045} +{"PlaylistId":8,"TrackId":2046} +{"PlaylistId":8,"TrackId":2047} +{"PlaylistId":8,"TrackId":2048} +{"PlaylistId":8,"TrackId":2049} +{"PlaylistId":8,"TrackId":2050} +{"PlaylistId":8,"TrackId":2051} +{"PlaylistId":8,"TrackId":2052} +{"PlaylistId":8,"TrackId":2053} +{"PlaylistId":8,"TrackId":2054} +{"PlaylistId":8,"TrackId":2055} +{"PlaylistId":8,"TrackId":2056} +{"PlaylistId":8,"TrackId":2057} +{"PlaylistId":8,"TrackId":2058} +{"PlaylistId":8,"TrackId":2059} +{"PlaylistId":8,"TrackId":2060} +{"PlaylistId":8,"TrackId":2061} +{"PlaylistId":8,"TrackId":2062} +{"PlaylistId":8,"TrackId":2063} +{"PlaylistId":8,"TrackId":2064} +{"PlaylistId":8,"TrackId":2065} +{"PlaylistId":8,"TrackId":2066} +{"PlaylistId":8,"TrackId":2067} +{"PlaylistId":8,"TrackId":2068} +{"PlaylistId":8,"TrackId":2069} +{"PlaylistId":8,"TrackId":2070} +{"PlaylistId":8,"TrackId":2071} +{"PlaylistId":8,"TrackId":2072} +{"PlaylistId":8,"TrackId":2073} +{"PlaylistId":8,"TrackId":2074} +{"PlaylistId":8,"TrackId":2075} +{"PlaylistId":8,"TrackId":2076} +{"PlaylistId":8,"TrackId":2077} +{"PlaylistId":8,"TrackId":2078} +{"PlaylistId":8,"TrackId":2079} +{"PlaylistId":8,"TrackId":2080} +{"PlaylistId":8,"TrackId":2081} +{"PlaylistId":8,"TrackId":2082} +{"PlaylistId":8,"TrackId":2083} +{"PlaylistId":8,"TrackId":2084} +{"PlaylistId":8,"TrackId":2085} +{"PlaylistId":8,"TrackId":2086} +{"PlaylistId":8,"TrackId":2087} +{"PlaylistId":8,"TrackId":2088} +{"PlaylistId":8,"TrackId":2089} +{"PlaylistId":8,"TrackId":2090} +{"PlaylistId":8,"TrackId":2091} +{"PlaylistId":8,"TrackId":2092} +{"PlaylistId":8,"TrackId":3328} +{"PlaylistId":8,"TrackId":2093} +{"PlaylistId":8,"TrackId":2094} +{"PlaylistId":8,"TrackId":2095} +{"PlaylistId":8,"TrackId":2096} +{"PlaylistId":8,"TrackId":2097} +{"PlaylistId":8,"TrackId":2098} +{"PlaylistId":8,"TrackId":3276} +{"PlaylistId":8,"TrackId":3277} +{"PlaylistId":8,"TrackId":3278} +{"PlaylistId":8,"TrackId":3279} +{"PlaylistId":8,"TrackId":3280} +{"PlaylistId":8,"TrackId":3281} +{"PlaylistId":8,"TrackId":3282} +{"PlaylistId":8,"TrackId":3283} +{"PlaylistId":8,"TrackId":3284} +{"PlaylistId":8,"TrackId":3285} +{"PlaylistId":8,"TrackId":3286} +{"PlaylistId":8,"TrackId":3287} +{"PlaylistId":8,"TrackId":2099} +{"PlaylistId":8,"TrackId":2100} +{"PlaylistId":8,"TrackId":2101} +{"PlaylistId":8,"TrackId":2102} +{"PlaylistId":8,"TrackId":2103} +{"PlaylistId":8,"TrackId":2104} +{"PlaylistId":8,"TrackId":2105} +{"PlaylistId":8,"TrackId":2106} +{"PlaylistId":8,"TrackId":2107} +{"PlaylistId":8,"TrackId":2108} +{"PlaylistId":8,"TrackId":2109} +{"PlaylistId":8,"TrackId":2110} +{"PlaylistId":8,"TrackId":2111} +{"PlaylistId":8,"TrackId":2112} +{"PlaylistId":8,"TrackId":2113} +{"PlaylistId":8,"TrackId":2114} +{"PlaylistId":8,"TrackId":2115} +{"PlaylistId":8,"TrackId":2116} +{"PlaylistId":8,"TrackId":2117} +{"PlaylistId":8,"TrackId":2118} +{"PlaylistId":8,"TrackId":2119} +{"PlaylistId":8,"TrackId":2120} +{"PlaylistId":8,"TrackId":2121} +{"PlaylistId":8,"TrackId":2122} +{"PlaylistId":8,"TrackId":2123} +{"PlaylistId":8,"TrackId":2124} +{"PlaylistId":8,"TrackId":2125} +{"PlaylistId":8,"TrackId":2126} +{"PlaylistId":8,"TrackId":2127} +{"PlaylistId":8,"TrackId":2128} +{"PlaylistId":8,"TrackId":2129} +{"PlaylistId":8,"TrackId":2130} +{"PlaylistId":8,"TrackId":2131} +{"PlaylistId":8,"TrackId":2132} +{"PlaylistId":8,"TrackId":2133} +{"PlaylistId":8,"TrackId":2134} +{"PlaylistId":8,"TrackId":2135} +{"PlaylistId":8,"TrackId":2136} +{"PlaylistId":8,"TrackId":2137} +{"PlaylistId":8,"TrackId":2138} +{"PlaylistId":8,"TrackId":2139} +{"PlaylistId":8,"TrackId":2140} +{"PlaylistId":8,"TrackId":2141} +{"PlaylistId":8,"TrackId":2142} +{"PlaylistId":8,"TrackId":2143} +{"PlaylistId":8,"TrackId":2144} +{"PlaylistId":8,"TrackId":2145} +{"PlaylistId":8,"TrackId":2146} +{"PlaylistId":8,"TrackId":2147} +{"PlaylistId":8,"TrackId":2148} +{"PlaylistId":8,"TrackId":2149} +{"PlaylistId":8,"TrackId":2150} +{"PlaylistId":8,"TrackId":2151} +{"PlaylistId":8,"TrackId":2152} +{"PlaylistId":8,"TrackId":2153} +{"PlaylistId":8,"TrackId":2154} +{"PlaylistId":8,"TrackId":2155} +{"PlaylistId":8,"TrackId":2156} +{"PlaylistId":8,"TrackId":2157} +{"PlaylistId":8,"TrackId":2158} +{"PlaylistId":8,"TrackId":2159} +{"PlaylistId":8,"TrackId":2160} +{"PlaylistId":8,"TrackId":2161} +{"PlaylistId":8,"TrackId":2162} +{"PlaylistId":8,"TrackId":2163} +{"PlaylistId":8,"TrackId":2164} +{"PlaylistId":8,"TrackId":2165} +{"PlaylistId":8,"TrackId":2166} +{"PlaylistId":8,"TrackId":2167} +{"PlaylistId":8,"TrackId":2168} +{"PlaylistId":8,"TrackId":2169} +{"PlaylistId":8,"TrackId":2170} +{"PlaylistId":8,"TrackId":2171} +{"PlaylistId":8,"TrackId":2172} +{"PlaylistId":8,"TrackId":2173} +{"PlaylistId":8,"TrackId":2174} +{"PlaylistId":8,"TrackId":2175} +{"PlaylistId":8,"TrackId":2176} +{"PlaylistId":8,"TrackId":2177} +{"PlaylistId":8,"TrackId":2178} +{"PlaylistId":8,"TrackId":2179} +{"PlaylistId":8,"TrackId":2180} +{"PlaylistId":8,"TrackId":2181} +{"PlaylistId":8,"TrackId":2182} +{"PlaylistId":8,"TrackId":2183} +{"PlaylistId":8,"TrackId":2184} +{"PlaylistId":8,"TrackId":2185} +{"PlaylistId":8,"TrackId":2186} +{"PlaylistId":8,"TrackId":2187} +{"PlaylistId":8,"TrackId":2188} +{"PlaylistId":8,"TrackId":2189} +{"PlaylistId":8,"TrackId":2190} +{"PlaylistId":8,"TrackId":2191} +{"PlaylistId":8,"TrackId":2192} +{"PlaylistId":8,"TrackId":2193} +{"PlaylistId":8,"TrackId":2194} +{"PlaylistId":8,"TrackId":2195} +{"PlaylistId":8,"TrackId":2196} +{"PlaylistId":8,"TrackId":2197} +{"PlaylistId":8,"TrackId":2198} +{"PlaylistId":8,"TrackId":2199} +{"PlaylistId":8,"TrackId":2200} +{"PlaylistId":8,"TrackId":2201} +{"PlaylistId":8,"TrackId":2202} +{"PlaylistId":8,"TrackId":2203} +{"PlaylistId":8,"TrackId":2204} +{"PlaylistId":8,"TrackId":2205} +{"PlaylistId":8,"TrackId":2206} +{"PlaylistId":8,"TrackId":2207} +{"PlaylistId":8,"TrackId":2208} +{"PlaylistId":8,"TrackId":2209} +{"PlaylistId":8,"TrackId":2210} +{"PlaylistId":8,"TrackId":2211} +{"PlaylistId":8,"TrackId":2212} +{"PlaylistId":8,"TrackId":2213} +{"PlaylistId":8,"TrackId":2214} +{"PlaylistId":8,"TrackId":2215} +{"PlaylistId":8,"TrackId":386} +{"PlaylistId":8,"TrackId":3325} +{"PlaylistId":8,"TrackId":2216} +{"PlaylistId":8,"TrackId":2217} +{"PlaylistId":8,"TrackId":2218} +{"PlaylistId":8,"TrackId":2219} +{"PlaylistId":8,"TrackId":2220} +{"PlaylistId":8,"TrackId":2221} +{"PlaylistId":8,"TrackId":2222} +{"PlaylistId":8,"TrackId":2223} +{"PlaylistId":8,"TrackId":2224} +{"PlaylistId":8,"TrackId":2225} +{"PlaylistId":8,"TrackId":2226} +{"PlaylistId":8,"TrackId":2227} +{"PlaylistId":8,"TrackId":2228} +{"PlaylistId":8,"TrackId":2229} +{"PlaylistId":8,"TrackId":2230} +{"PlaylistId":8,"TrackId":2231} +{"PlaylistId":8,"TrackId":2232} +{"PlaylistId":8,"TrackId":2233} +{"PlaylistId":8,"TrackId":2234} +{"PlaylistId":8,"TrackId":2235} +{"PlaylistId":8,"TrackId":2236} +{"PlaylistId":8,"TrackId":2237} +{"PlaylistId":8,"TrackId":2238} +{"PlaylistId":8,"TrackId":2239} +{"PlaylistId":8,"TrackId":2240} +{"PlaylistId":8,"TrackId":2241} +{"PlaylistId":8,"TrackId":2242} +{"PlaylistId":8,"TrackId":2243} +{"PlaylistId":8,"TrackId":2244} +{"PlaylistId":8,"TrackId":2245} +{"PlaylistId":8,"TrackId":2246} +{"PlaylistId":8,"TrackId":2247} +{"PlaylistId":8,"TrackId":2248} +{"PlaylistId":8,"TrackId":2249} +{"PlaylistId":8,"TrackId":2250} +{"PlaylistId":8,"TrackId":2251} +{"PlaylistId":8,"TrackId":2252} +{"PlaylistId":8,"TrackId":2253} +{"PlaylistId":8,"TrackId":2650} +{"PlaylistId":8,"TrackId":2651} +{"PlaylistId":8,"TrackId":2652} +{"PlaylistId":8,"TrackId":2653} +{"PlaylistId":8,"TrackId":2654} +{"PlaylistId":8,"TrackId":2655} +{"PlaylistId":8,"TrackId":2656} +{"PlaylistId":8,"TrackId":2657} +{"PlaylistId":8,"TrackId":2658} +{"PlaylistId":8,"TrackId":2659} +{"PlaylistId":8,"TrackId":2660} +{"PlaylistId":8,"TrackId":2661} +{"PlaylistId":8,"TrackId":2662} +{"PlaylistId":8,"TrackId":2663} +{"PlaylistId":8,"TrackId":3353} +{"PlaylistId":8,"TrackId":3355} +{"PlaylistId":8,"TrackId":3271} +{"PlaylistId":8,"TrackId":2254} +{"PlaylistId":8,"TrackId":2255} +{"PlaylistId":8,"TrackId":2256} +{"PlaylistId":8,"TrackId":2257} +{"PlaylistId":8,"TrackId":2258} +{"PlaylistId":8,"TrackId":2259} +{"PlaylistId":8,"TrackId":2260} +{"PlaylistId":8,"TrackId":2261} +{"PlaylistId":8,"TrackId":2262} +{"PlaylistId":8,"TrackId":2263} +{"PlaylistId":8,"TrackId":2264} +{"PlaylistId":8,"TrackId":2265} +{"PlaylistId":8,"TrackId":2266} +{"PlaylistId":8,"TrackId":2267} +{"PlaylistId":8,"TrackId":2268} +{"PlaylistId":8,"TrackId":2269} +{"PlaylistId":8,"TrackId":2270} +{"PlaylistId":8,"TrackId":419} +{"PlaylistId":8,"TrackId":420} +{"PlaylistId":8,"TrackId":421} +{"PlaylistId":8,"TrackId":422} +{"PlaylistId":8,"TrackId":423} +{"PlaylistId":8,"TrackId":424} +{"PlaylistId":8,"TrackId":425} +{"PlaylistId":8,"TrackId":426} +{"PlaylistId":8,"TrackId":427} +{"PlaylistId":8,"TrackId":428} +{"PlaylistId":8,"TrackId":429} +{"PlaylistId":8,"TrackId":430} +{"PlaylistId":8,"TrackId":431} +{"PlaylistId":8,"TrackId":432} +{"PlaylistId":8,"TrackId":433} +{"PlaylistId":8,"TrackId":434} +{"PlaylistId":8,"TrackId":435} +{"PlaylistId":8,"TrackId":2271} +{"PlaylistId":8,"TrackId":2272} +{"PlaylistId":8,"TrackId":2273} +{"PlaylistId":8,"TrackId":2274} +{"PlaylistId":8,"TrackId":2275} +{"PlaylistId":8,"TrackId":2276} +{"PlaylistId":8,"TrackId":2277} +{"PlaylistId":8,"TrackId":2278} +{"PlaylistId":8,"TrackId":2279} +{"PlaylistId":8,"TrackId":2280} +{"PlaylistId":8,"TrackId":2281} +{"PlaylistId":8,"TrackId":2318} +{"PlaylistId":8,"TrackId":2319} +{"PlaylistId":8,"TrackId":2320} +{"PlaylistId":8,"TrackId":2321} +{"PlaylistId":8,"TrackId":2322} +{"PlaylistId":8,"TrackId":2323} +{"PlaylistId":8,"TrackId":2324} +{"PlaylistId":8,"TrackId":2325} +{"PlaylistId":8,"TrackId":2326} +{"PlaylistId":8,"TrackId":2327} +{"PlaylistId":8,"TrackId":2328} +{"PlaylistId":8,"TrackId":2329} +{"PlaylistId":8,"TrackId":2330} +{"PlaylistId":8,"TrackId":2331} +{"PlaylistId":8,"TrackId":2332} +{"PlaylistId":8,"TrackId":2333} +{"PlaylistId":8,"TrackId":2285} +{"PlaylistId":8,"TrackId":2286} +{"PlaylistId":8,"TrackId":2287} +{"PlaylistId":8,"TrackId":2288} +{"PlaylistId":8,"TrackId":2289} +{"PlaylistId":8,"TrackId":2290} +{"PlaylistId":8,"TrackId":2291} +{"PlaylistId":8,"TrackId":2292} +{"PlaylistId":8,"TrackId":2293} +{"PlaylistId":8,"TrackId":2294} +{"PlaylistId":8,"TrackId":2295} +{"PlaylistId":8,"TrackId":3254} +{"PlaylistId":8,"TrackId":2296} +{"PlaylistId":8,"TrackId":2297} +{"PlaylistId":8,"TrackId":2298} +{"PlaylistId":8,"TrackId":2299} +{"PlaylistId":8,"TrackId":2300} +{"PlaylistId":8,"TrackId":2301} +{"PlaylistId":8,"TrackId":2302} +{"PlaylistId":8,"TrackId":2303} +{"PlaylistId":8,"TrackId":2304} +{"PlaylistId":8,"TrackId":2305} +{"PlaylistId":8,"TrackId":2306} +{"PlaylistId":8,"TrackId":2307} +{"PlaylistId":8,"TrackId":2308} +{"PlaylistId":8,"TrackId":2309} +{"PlaylistId":8,"TrackId":2310} +{"PlaylistId":8,"TrackId":2311} +{"PlaylistId":8,"TrackId":2312} +{"PlaylistId":8,"TrackId":2313} +{"PlaylistId":8,"TrackId":2314} +{"PlaylistId":8,"TrackId":2315} +{"PlaylistId":8,"TrackId":2316} +{"PlaylistId":8,"TrackId":2317} +{"PlaylistId":8,"TrackId":2282} +{"PlaylistId":8,"TrackId":2283} +{"PlaylistId":8,"TrackId":2284} +{"PlaylistId":8,"TrackId":2334} +{"PlaylistId":8,"TrackId":2335} +{"PlaylistId":8,"TrackId":2336} +{"PlaylistId":8,"TrackId":2337} +{"PlaylistId":8,"TrackId":2338} +{"PlaylistId":8,"TrackId":2339} +{"PlaylistId":8,"TrackId":2340} +{"PlaylistId":8,"TrackId":2341} +{"PlaylistId":8,"TrackId":2342} +{"PlaylistId":8,"TrackId":2343} +{"PlaylistId":8,"TrackId":2344} +{"PlaylistId":8,"TrackId":2345} +{"PlaylistId":8,"TrackId":2346} +{"PlaylistId":8,"TrackId":2347} +{"PlaylistId":8,"TrackId":2348} +{"PlaylistId":8,"TrackId":2349} +{"PlaylistId":8,"TrackId":2350} +{"PlaylistId":8,"TrackId":2351} +{"PlaylistId":8,"TrackId":2352} +{"PlaylistId":8,"TrackId":2353} +{"PlaylistId":8,"TrackId":2354} +{"PlaylistId":8,"TrackId":2355} +{"PlaylistId":8,"TrackId":2356} +{"PlaylistId":8,"TrackId":2357} +{"PlaylistId":8,"TrackId":2358} +{"PlaylistId":8,"TrackId":2359} +{"PlaylistId":8,"TrackId":2360} +{"PlaylistId":8,"TrackId":2361} +{"PlaylistId":8,"TrackId":2362} +{"PlaylistId":8,"TrackId":2363} +{"PlaylistId":8,"TrackId":2364} +{"PlaylistId":8,"TrackId":2365} +{"PlaylistId":8,"TrackId":2366} +{"PlaylistId":8,"TrackId":2367} +{"PlaylistId":8,"TrackId":2368} +{"PlaylistId":8,"TrackId":2369} +{"PlaylistId":8,"TrackId":2370} +{"PlaylistId":8,"TrackId":2371} +{"PlaylistId":8,"TrackId":2372} +{"PlaylistId":8,"TrackId":2373} +{"PlaylistId":8,"TrackId":2374} +{"PlaylistId":8,"TrackId":2375} +{"PlaylistId":8,"TrackId":2376} +{"PlaylistId":8,"TrackId":2377} +{"PlaylistId":8,"TrackId":2378} +{"PlaylistId":8,"TrackId":2379} +{"PlaylistId":8,"TrackId":2380} +{"PlaylistId":8,"TrackId":2381} +{"PlaylistId":8,"TrackId":2382} +{"PlaylistId":8,"TrackId":2383} +{"PlaylistId":8,"TrackId":2384} +{"PlaylistId":8,"TrackId":2385} +{"PlaylistId":8,"TrackId":2386} +{"PlaylistId":8,"TrackId":2387} +{"PlaylistId":8,"TrackId":2388} +{"PlaylistId":8,"TrackId":2389} +{"PlaylistId":8,"TrackId":2390} +{"PlaylistId":8,"TrackId":2391} +{"PlaylistId":8,"TrackId":2392} +{"PlaylistId":8,"TrackId":2393} +{"PlaylistId":8,"TrackId":2394} +{"PlaylistId":8,"TrackId":2395} +{"PlaylistId":8,"TrackId":2396} +{"PlaylistId":8,"TrackId":2397} +{"PlaylistId":8,"TrackId":2398} +{"PlaylistId":8,"TrackId":2399} +{"PlaylistId":8,"TrackId":2400} +{"PlaylistId":8,"TrackId":2401} +{"PlaylistId":8,"TrackId":2402} +{"PlaylistId":8,"TrackId":2403} +{"PlaylistId":8,"TrackId":2404} +{"PlaylistId":8,"TrackId":2405} +{"PlaylistId":8,"TrackId":3275} +{"PlaylistId":8,"TrackId":3404} +{"PlaylistId":8,"TrackId":3323} +{"PlaylistId":8,"TrackId":2664} +{"PlaylistId":8,"TrackId":2665} +{"PlaylistId":8,"TrackId":2666} +{"PlaylistId":8,"TrackId":2667} +{"PlaylistId":8,"TrackId":2668} +{"PlaylistId":8,"TrackId":2669} +{"PlaylistId":8,"TrackId":2670} +{"PlaylistId":8,"TrackId":2671} +{"PlaylistId":8,"TrackId":2672} +{"PlaylistId":8,"TrackId":2673} +{"PlaylistId":8,"TrackId":2674} +{"PlaylistId":8,"TrackId":2675} +{"PlaylistId":8,"TrackId":2676} +{"PlaylistId":8,"TrackId":2677} +{"PlaylistId":8,"TrackId":2678} +{"PlaylistId":8,"TrackId":2679} +{"PlaylistId":8,"TrackId":2680} +{"PlaylistId":8,"TrackId":2681} +{"PlaylistId":8,"TrackId":2682} +{"PlaylistId":8,"TrackId":2683} +{"PlaylistId":8,"TrackId":2684} +{"PlaylistId":8,"TrackId":2685} +{"PlaylistId":8,"TrackId":2686} +{"PlaylistId":8,"TrackId":2687} +{"PlaylistId":8,"TrackId":2688} +{"PlaylistId":8,"TrackId":2689} +{"PlaylistId":8,"TrackId":2690} +{"PlaylistId":8,"TrackId":2691} +{"PlaylistId":8,"TrackId":2692} +{"PlaylistId":8,"TrackId":2693} +{"PlaylistId":8,"TrackId":2694} +{"PlaylistId":8,"TrackId":2695} +{"PlaylistId":8,"TrackId":2696} +{"PlaylistId":8,"TrackId":2697} +{"PlaylistId":8,"TrackId":2698} +{"PlaylistId":8,"TrackId":2699} +{"PlaylistId":8,"TrackId":2700} +{"PlaylistId":8,"TrackId":2701} +{"PlaylistId":8,"TrackId":2702} +{"PlaylistId":8,"TrackId":2703} +{"PlaylistId":8,"TrackId":2704} +{"PlaylistId":8,"TrackId":3414} +{"PlaylistId":8,"TrackId":2406} +{"PlaylistId":8,"TrackId":2407} +{"PlaylistId":8,"TrackId":2408} +{"PlaylistId":8,"TrackId":2409} +{"PlaylistId":8,"TrackId":2410} +{"PlaylistId":8,"TrackId":2411} +{"PlaylistId":8,"TrackId":2412} +{"PlaylistId":8,"TrackId":2413} +{"PlaylistId":8,"TrackId":2414} +{"PlaylistId":8,"TrackId":2415} +{"PlaylistId":8,"TrackId":2416} +{"PlaylistId":8,"TrackId":2417} +{"PlaylistId":8,"TrackId":2418} +{"PlaylistId":8,"TrackId":2419} +{"PlaylistId":8,"TrackId":3334} +{"PlaylistId":8,"TrackId":401} +{"PlaylistId":8,"TrackId":2420} +{"PlaylistId":8,"TrackId":2421} +{"PlaylistId":8,"TrackId":2422} +{"PlaylistId":8,"TrackId":2423} +{"PlaylistId":8,"TrackId":2424} +{"PlaylistId":8,"TrackId":2425} +{"PlaylistId":8,"TrackId":2426} +{"PlaylistId":8,"TrackId":2427} +{"PlaylistId":8,"TrackId":2428} +{"PlaylistId":8,"TrackId":2429} +{"PlaylistId":8,"TrackId":2430} +{"PlaylistId":8,"TrackId":2431} +{"PlaylistId":8,"TrackId":2432} +{"PlaylistId":8,"TrackId":2433} +{"PlaylistId":8,"TrackId":570} +{"PlaylistId":8,"TrackId":573} +{"PlaylistId":8,"TrackId":577} +{"PlaylistId":8,"TrackId":580} +{"PlaylistId":8,"TrackId":581} +{"PlaylistId":8,"TrackId":571} +{"PlaylistId":8,"TrackId":579} +{"PlaylistId":8,"TrackId":582} +{"PlaylistId":8,"TrackId":572} +{"PlaylistId":8,"TrackId":575} +{"PlaylistId":8,"TrackId":578} +{"PlaylistId":8,"TrackId":574} +{"PlaylistId":8,"TrackId":576} +{"PlaylistId":8,"TrackId":3410} +{"PlaylistId":8,"TrackId":3288} +{"PlaylistId":8,"TrackId":3289} +{"PlaylistId":8,"TrackId":3290} +{"PlaylistId":8,"TrackId":3291} +{"PlaylistId":8,"TrackId":3292} +{"PlaylistId":8,"TrackId":3293} +{"PlaylistId":8,"TrackId":3294} +{"PlaylistId":8,"TrackId":3295} +{"PlaylistId":8,"TrackId":3296} +{"PlaylistId":8,"TrackId":3297} +{"PlaylistId":8,"TrackId":3298} +{"PlaylistId":8,"TrackId":3299} +{"PlaylistId":8,"TrackId":3333} +{"PlaylistId":8,"TrackId":2434} +{"PlaylistId":8,"TrackId":2435} +{"PlaylistId":8,"TrackId":2436} +{"PlaylistId":8,"TrackId":2437} +{"PlaylistId":8,"TrackId":2438} +{"PlaylistId":8,"TrackId":2439} +{"PlaylistId":8,"TrackId":2440} +{"PlaylistId":8,"TrackId":2441} +{"PlaylistId":8,"TrackId":2442} +{"PlaylistId":8,"TrackId":2443} +{"PlaylistId":8,"TrackId":2444} +{"PlaylistId":8,"TrackId":2445} +{"PlaylistId":8,"TrackId":2446} +{"PlaylistId":8,"TrackId":2447} +{"PlaylistId":8,"TrackId":2448} +{"PlaylistId":8,"TrackId":3418} +{"PlaylistId":8,"TrackId":2449} +{"PlaylistId":8,"TrackId":2450} +{"PlaylistId":8,"TrackId":2451} +{"PlaylistId":8,"TrackId":2452} +{"PlaylistId":8,"TrackId":2453} +{"PlaylistId":8,"TrackId":2454} +{"PlaylistId":8,"TrackId":2455} +{"PlaylistId":8,"TrackId":2456} +{"PlaylistId":8,"TrackId":2457} +{"PlaylistId":8,"TrackId":2458} +{"PlaylistId":8,"TrackId":2459} +{"PlaylistId":8,"TrackId":2460} +{"PlaylistId":8,"TrackId":2461} +{"PlaylistId":8,"TrackId":2462} +{"PlaylistId":8,"TrackId":2463} +{"PlaylistId":8,"TrackId":2464} +{"PlaylistId":8,"TrackId":2465} +{"PlaylistId":8,"TrackId":2466} +{"PlaylistId":8,"TrackId":2467} +{"PlaylistId":8,"TrackId":2468} +{"PlaylistId":8,"TrackId":2469} +{"PlaylistId":8,"TrackId":2470} +{"PlaylistId":8,"TrackId":2471} +{"PlaylistId":8,"TrackId":2472} +{"PlaylistId":8,"TrackId":2473} +{"PlaylistId":8,"TrackId":2474} +{"PlaylistId":8,"TrackId":2475} +{"PlaylistId":8,"TrackId":2476} +{"PlaylistId":8,"TrackId":2477} +{"PlaylistId":8,"TrackId":2478} +{"PlaylistId":8,"TrackId":2479} +{"PlaylistId":8,"TrackId":2480} +{"PlaylistId":8,"TrackId":2481} +{"PlaylistId":8,"TrackId":2482} +{"PlaylistId":8,"TrackId":2483} +{"PlaylistId":8,"TrackId":2484} +{"PlaylistId":8,"TrackId":2485} +{"PlaylistId":8,"TrackId":2486} +{"PlaylistId":8,"TrackId":2487} +{"PlaylistId":8,"TrackId":2488} +{"PlaylistId":8,"TrackId":2489} +{"PlaylistId":8,"TrackId":2490} +{"PlaylistId":8,"TrackId":2491} +{"PlaylistId":8,"TrackId":2492} +{"PlaylistId":8,"TrackId":2493} +{"PlaylistId":8,"TrackId":2494} +{"PlaylistId":8,"TrackId":2495} +{"PlaylistId":8,"TrackId":2496} +{"PlaylistId":8,"TrackId":2497} +{"PlaylistId":8,"TrackId":2498} +{"PlaylistId":8,"TrackId":2499} +{"PlaylistId":8,"TrackId":2500} +{"PlaylistId":8,"TrackId":2501} +{"PlaylistId":8,"TrackId":2502} +{"PlaylistId":8,"TrackId":2503} +{"PlaylistId":8,"TrackId":2504} +{"PlaylistId":8,"TrackId":2505} +{"PlaylistId":8,"TrackId":3269} +{"PlaylistId":8,"TrackId":2506} +{"PlaylistId":8,"TrackId":2507} +{"PlaylistId":8,"TrackId":2508} +{"PlaylistId":8,"TrackId":2509} +{"PlaylistId":8,"TrackId":2510} +{"PlaylistId":8,"TrackId":2511} +{"PlaylistId":8,"TrackId":2512} +{"PlaylistId":8,"TrackId":2513} +{"PlaylistId":8,"TrackId":2514} +{"PlaylistId":8,"TrackId":2515} +{"PlaylistId":8,"TrackId":2516} +{"PlaylistId":8,"TrackId":2517} +{"PlaylistId":8,"TrackId":2518} +{"PlaylistId":8,"TrackId":2519} +{"PlaylistId":8,"TrackId":2520} +{"PlaylistId":8,"TrackId":2521} +{"PlaylistId":8,"TrackId":2522} +{"PlaylistId":8,"TrackId":456} +{"PlaylistId":8,"TrackId":457} +{"PlaylistId":8,"TrackId":458} +{"PlaylistId":8,"TrackId":459} +{"PlaylistId":8,"TrackId":460} +{"PlaylistId":8,"TrackId":461} +{"PlaylistId":8,"TrackId":462} +{"PlaylistId":8,"TrackId":463} +{"PlaylistId":8,"TrackId":464} +{"PlaylistId":8,"TrackId":465} +{"PlaylistId":8,"TrackId":466} +{"PlaylistId":8,"TrackId":467} +{"PlaylistId":8,"TrackId":2523} +{"PlaylistId":8,"TrackId":2524} +{"PlaylistId":8,"TrackId":2525} +{"PlaylistId":8,"TrackId":2526} +{"PlaylistId":8,"TrackId":2527} +{"PlaylistId":8,"TrackId":2528} +{"PlaylistId":8,"TrackId":2529} +{"PlaylistId":8,"TrackId":2530} +{"PlaylistId":8,"TrackId":2531} +{"PlaylistId":8,"TrackId":3335} +{"PlaylistId":8,"TrackId":2532} +{"PlaylistId":8,"TrackId":2533} +{"PlaylistId":8,"TrackId":2534} +{"PlaylistId":8,"TrackId":2535} +{"PlaylistId":8,"TrackId":2536} +{"PlaylistId":8,"TrackId":2537} +{"PlaylistId":8,"TrackId":2538} +{"PlaylistId":8,"TrackId":2539} +{"PlaylistId":8,"TrackId":2540} +{"PlaylistId":8,"TrackId":2541} +{"PlaylistId":8,"TrackId":2542} +{"PlaylistId":8,"TrackId":2543} +{"PlaylistId":8,"TrackId":2544} +{"PlaylistId":8,"TrackId":2545} +{"PlaylistId":8,"TrackId":2546} +{"PlaylistId":8,"TrackId":2547} +{"PlaylistId":8,"TrackId":2548} +{"PlaylistId":8,"TrackId":2549} +{"PlaylistId":8,"TrackId":2550} +{"PlaylistId":8,"TrackId":2551} +{"PlaylistId":8,"TrackId":2552} +{"PlaylistId":8,"TrackId":2553} +{"PlaylistId":8,"TrackId":2554} +{"PlaylistId":8,"TrackId":2555} +{"PlaylistId":8,"TrackId":2556} +{"PlaylistId":8,"TrackId":2557} +{"PlaylistId":8,"TrackId":2558} +{"PlaylistId":8,"TrackId":2559} +{"PlaylistId":8,"TrackId":2560} +{"PlaylistId":8,"TrackId":2561} +{"PlaylistId":8,"TrackId":2562} +{"PlaylistId":8,"TrackId":2563} +{"PlaylistId":8,"TrackId":2564} +{"PlaylistId":8,"TrackId":2705} +{"PlaylistId":8,"TrackId":2706} +{"PlaylistId":8,"TrackId":2707} +{"PlaylistId":8,"TrackId":2708} +{"PlaylistId":8,"TrackId":2709} +{"PlaylistId":8,"TrackId":2710} +{"PlaylistId":8,"TrackId":2711} +{"PlaylistId":8,"TrackId":2712} +{"PlaylistId":8,"TrackId":2713} +{"PlaylistId":8,"TrackId":2714} +{"PlaylistId":8,"TrackId":2715} +{"PlaylistId":8,"TrackId":2716} +{"PlaylistId":8,"TrackId":2717} +{"PlaylistId":8,"TrackId":2718} +{"PlaylistId":8,"TrackId":2719} +{"PlaylistId":8,"TrackId":2720} +{"PlaylistId":8,"TrackId":2721} +{"PlaylistId":8,"TrackId":2722} +{"PlaylistId":8,"TrackId":2723} +{"PlaylistId":8,"TrackId":2724} +{"PlaylistId":8,"TrackId":2725} +{"PlaylistId":8,"TrackId":2726} +{"PlaylistId":8,"TrackId":2727} +{"PlaylistId":8,"TrackId":2728} +{"PlaylistId":8,"TrackId":2729} +{"PlaylistId":8,"TrackId":2730} +{"PlaylistId":8,"TrackId":3365} +{"PlaylistId":8,"TrackId":3366} +{"PlaylistId":8,"TrackId":3367} +{"PlaylistId":8,"TrackId":3368} +{"PlaylistId":8,"TrackId":3369} +{"PlaylistId":8,"TrackId":3370} +{"PlaylistId":8,"TrackId":3371} +{"PlaylistId":8,"TrackId":3372} +{"PlaylistId":8,"TrackId":3373} +{"PlaylistId":8,"TrackId":3374} +{"PlaylistId":8,"TrackId":2565} +{"PlaylistId":8,"TrackId":2566} +{"PlaylistId":8,"TrackId":2567} +{"PlaylistId":8,"TrackId":2568} +{"PlaylistId":8,"TrackId":2569} +{"PlaylistId":8,"TrackId":2570} +{"PlaylistId":8,"TrackId":2571} +{"PlaylistId":8,"TrackId":2751} +{"PlaylistId":8,"TrackId":2752} +{"PlaylistId":8,"TrackId":2753} +{"PlaylistId":8,"TrackId":2754} +{"PlaylistId":8,"TrackId":2755} +{"PlaylistId":8,"TrackId":2756} +{"PlaylistId":8,"TrackId":2757} +{"PlaylistId":8,"TrackId":2758} +{"PlaylistId":8,"TrackId":2759} +{"PlaylistId":8,"TrackId":2760} +{"PlaylistId":8,"TrackId":2761} +{"PlaylistId":8,"TrackId":2762} +{"PlaylistId":8,"TrackId":2763} +{"PlaylistId":8,"TrackId":2764} +{"PlaylistId":8,"TrackId":2765} +{"PlaylistId":8,"TrackId":2766} +{"PlaylistId":8,"TrackId":2767} +{"PlaylistId":8,"TrackId":2768} +{"PlaylistId":8,"TrackId":2769} +{"PlaylistId":8,"TrackId":2770} +{"PlaylistId":8,"TrackId":2771} +{"PlaylistId":8,"TrackId":2772} +{"PlaylistId":8,"TrackId":2773} +{"PlaylistId":8,"TrackId":2774} +{"PlaylistId":8,"TrackId":2775} +{"PlaylistId":8,"TrackId":2776} +{"PlaylistId":8,"TrackId":2777} +{"PlaylistId":8,"TrackId":2778} +{"PlaylistId":8,"TrackId":2779} +{"PlaylistId":8,"TrackId":2780} +{"PlaylistId":8,"TrackId":2781} +{"PlaylistId":8,"TrackId":2782} +{"PlaylistId":8,"TrackId":2783} +{"PlaylistId":8,"TrackId":2784} +{"PlaylistId":8,"TrackId":2785} +{"PlaylistId":8,"TrackId":2786} +{"PlaylistId":8,"TrackId":2787} +{"PlaylistId":8,"TrackId":2788} +{"PlaylistId":8,"TrackId":2789} +{"PlaylistId":8,"TrackId":2790} +{"PlaylistId":8,"TrackId":2791} +{"PlaylistId":8,"TrackId":2792} +{"PlaylistId":8,"TrackId":2793} +{"PlaylistId":8,"TrackId":2794} +{"PlaylistId":8,"TrackId":2795} +{"PlaylistId":8,"TrackId":2796} +{"PlaylistId":8,"TrackId":2797} +{"PlaylistId":8,"TrackId":2798} +{"PlaylistId":8,"TrackId":2799} +{"PlaylistId":8,"TrackId":2800} +{"PlaylistId":8,"TrackId":2801} +{"PlaylistId":8,"TrackId":2802} +{"PlaylistId":8,"TrackId":2803} +{"PlaylistId":8,"TrackId":2804} +{"PlaylistId":8,"TrackId":2805} +{"PlaylistId":8,"TrackId":2806} +{"PlaylistId":8,"TrackId":2807} +{"PlaylistId":8,"TrackId":2808} +{"PlaylistId":8,"TrackId":2809} +{"PlaylistId":8,"TrackId":2810} +{"PlaylistId":8,"TrackId":2811} +{"PlaylistId":8,"TrackId":2812} +{"PlaylistId":8,"TrackId":2813} +{"PlaylistId":8,"TrackId":2814} +{"PlaylistId":8,"TrackId":2815} +{"PlaylistId":8,"TrackId":2816} +{"PlaylistId":8,"TrackId":2817} +{"PlaylistId":8,"TrackId":2818} +{"PlaylistId":8,"TrackId":646} +{"PlaylistId":8,"TrackId":647} +{"PlaylistId":8,"TrackId":648} +{"PlaylistId":8,"TrackId":649} +{"PlaylistId":8,"TrackId":651} +{"PlaylistId":8,"TrackId":653} +{"PlaylistId":8,"TrackId":655} +{"PlaylistId":8,"TrackId":658} +{"PlaylistId":8,"TrackId":2926} +{"PlaylistId":8,"TrackId":2927} +{"PlaylistId":8,"TrackId":2928} +{"PlaylistId":8,"TrackId":2929} +{"PlaylistId":8,"TrackId":2930} +{"PlaylistId":8,"TrackId":2931} +{"PlaylistId":8,"TrackId":2932} +{"PlaylistId":8,"TrackId":2933} +{"PlaylistId":8,"TrackId":2934} +{"PlaylistId":8,"TrackId":2935} +{"PlaylistId":8,"TrackId":2936} +{"PlaylistId":8,"TrackId":2937} +{"PlaylistId":8,"TrackId":2938} +{"PlaylistId":8,"TrackId":2939} +{"PlaylistId":8,"TrackId":2940} +{"PlaylistId":8,"TrackId":2941} +{"PlaylistId":8,"TrackId":2942} +{"PlaylistId":8,"TrackId":2943} +{"PlaylistId":8,"TrackId":2944} +{"PlaylistId":8,"TrackId":2945} +{"PlaylistId":8,"TrackId":2946} +{"PlaylistId":8,"TrackId":2947} +{"PlaylistId":8,"TrackId":2948} +{"PlaylistId":8,"TrackId":2949} +{"PlaylistId":8,"TrackId":2950} +{"PlaylistId":8,"TrackId":2951} +{"PlaylistId":8,"TrackId":2952} +{"PlaylistId":8,"TrackId":2953} +{"PlaylistId":8,"TrackId":2954} +{"PlaylistId":8,"TrackId":2955} +{"PlaylistId":8,"TrackId":2956} +{"PlaylistId":8,"TrackId":2957} +{"PlaylistId":8,"TrackId":2958} +{"PlaylistId":8,"TrackId":2959} +{"PlaylistId":8,"TrackId":2960} +{"PlaylistId":8,"TrackId":2961} +{"PlaylistId":8,"TrackId":2962} +{"PlaylistId":8,"TrackId":2963} +{"PlaylistId":8,"TrackId":3004} +{"PlaylistId":8,"TrackId":3005} +{"PlaylistId":8,"TrackId":3006} +{"PlaylistId":8,"TrackId":3007} +{"PlaylistId":8,"TrackId":3008} +{"PlaylistId":8,"TrackId":3009} +{"PlaylistId":8,"TrackId":3010} +{"PlaylistId":8,"TrackId":3011} +{"PlaylistId":8,"TrackId":3012} +{"PlaylistId":8,"TrackId":3013} +{"PlaylistId":8,"TrackId":3014} +{"PlaylistId":8,"TrackId":3015} +{"PlaylistId":8,"TrackId":3016} +{"PlaylistId":8,"TrackId":3017} +{"PlaylistId":8,"TrackId":2964} +{"PlaylistId":8,"TrackId":2965} +{"PlaylistId":8,"TrackId":2966} +{"PlaylistId":8,"TrackId":2967} +{"PlaylistId":8,"TrackId":2968} +{"PlaylistId":8,"TrackId":2969} +{"PlaylistId":8,"TrackId":2970} +{"PlaylistId":8,"TrackId":2971} +{"PlaylistId":8,"TrackId":2972} +{"PlaylistId":8,"TrackId":2973} +{"PlaylistId":8,"TrackId":2974} +{"PlaylistId":8,"TrackId":3253} +{"PlaylistId":8,"TrackId":2975} +{"PlaylistId":8,"TrackId":2976} +{"PlaylistId":8,"TrackId":2977} +{"PlaylistId":8,"TrackId":2978} +{"PlaylistId":8,"TrackId":2979} +{"PlaylistId":8,"TrackId":2980} +{"PlaylistId":8,"TrackId":2981} +{"PlaylistId":8,"TrackId":2982} +{"PlaylistId":8,"TrackId":2983} +{"PlaylistId":8,"TrackId":2984} +{"PlaylistId":8,"TrackId":2985} +{"PlaylistId":8,"TrackId":2986} +{"PlaylistId":8,"TrackId":2987} +{"PlaylistId":8,"TrackId":2988} +{"PlaylistId":8,"TrackId":2989} +{"PlaylistId":8,"TrackId":2990} +{"PlaylistId":8,"TrackId":2991} +{"PlaylistId":8,"TrackId":2992} +{"PlaylistId":8,"TrackId":2993} +{"PlaylistId":8,"TrackId":2994} +{"PlaylistId":8,"TrackId":2995} +{"PlaylistId":8,"TrackId":2996} +{"PlaylistId":8,"TrackId":2997} +{"PlaylistId":8,"TrackId":2998} +{"PlaylistId":8,"TrackId":2999} +{"PlaylistId":8,"TrackId":3000} +{"PlaylistId":8,"TrackId":3001} +{"PlaylistId":8,"TrackId":3002} +{"PlaylistId":8,"TrackId":3003} +{"PlaylistId":8,"TrackId":3018} +{"PlaylistId":8,"TrackId":3019} +{"PlaylistId":8,"TrackId":3020} +{"PlaylistId":8,"TrackId":3021} +{"PlaylistId":8,"TrackId":3022} +{"PlaylistId":8,"TrackId":3023} +{"PlaylistId":8,"TrackId":3024} +{"PlaylistId":8,"TrackId":3025} +{"PlaylistId":8,"TrackId":3026} +{"PlaylistId":8,"TrackId":3027} +{"PlaylistId":8,"TrackId":3028} +{"PlaylistId":8,"TrackId":3029} +{"PlaylistId":8,"TrackId":3030} +{"PlaylistId":8,"TrackId":3031} +{"PlaylistId":8,"TrackId":3032} +{"PlaylistId":8,"TrackId":3033} +{"PlaylistId":8,"TrackId":3034} +{"PlaylistId":8,"TrackId":3035} +{"PlaylistId":8,"TrackId":3036} +{"PlaylistId":8,"TrackId":3037} +{"PlaylistId":8,"TrackId":3038} +{"PlaylistId":8,"TrackId":3039} +{"PlaylistId":8,"TrackId":3040} +{"PlaylistId":8,"TrackId":3041} +{"PlaylistId":8,"TrackId":3042} +{"PlaylistId":8,"TrackId":3043} +{"PlaylistId":8,"TrackId":3044} +{"PlaylistId":8,"TrackId":3045} +{"PlaylistId":8,"TrackId":3046} +{"PlaylistId":8,"TrackId":3047} +{"PlaylistId":8,"TrackId":3048} +{"PlaylistId":8,"TrackId":3049} +{"PlaylistId":8,"TrackId":3050} +{"PlaylistId":8,"TrackId":3051} +{"PlaylistId":8,"TrackId":3064} +{"PlaylistId":8,"TrackId":3065} +{"PlaylistId":8,"TrackId":3066} +{"PlaylistId":8,"TrackId":3067} +{"PlaylistId":8,"TrackId":3068} +{"PlaylistId":8,"TrackId":3069} +{"PlaylistId":8,"TrackId":3070} +{"PlaylistId":8,"TrackId":3071} +{"PlaylistId":8,"TrackId":3072} +{"PlaylistId":8,"TrackId":3073} +{"PlaylistId":8,"TrackId":3074} +{"PlaylistId":8,"TrackId":3075} +{"PlaylistId":8,"TrackId":3076} +{"PlaylistId":8,"TrackId":3077} +{"PlaylistId":8,"TrackId":3078} +{"PlaylistId":8,"TrackId":3079} +{"PlaylistId":8,"TrackId":3080} +{"PlaylistId":8,"TrackId":3052} +{"PlaylistId":8,"TrackId":3053} +{"PlaylistId":8,"TrackId":3054} +{"PlaylistId":8,"TrackId":3055} +{"PlaylistId":8,"TrackId":3056} +{"PlaylistId":8,"TrackId":3057} +{"PlaylistId":8,"TrackId":3058} +{"PlaylistId":8,"TrackId":3059} +{"PlaylistId":8,"TrackId":3060} +{"PlaylistId":8,"TrackId":3061} +{"PlaylistId":8,"TrackId":3062} +{"PlaylistId":8,"TrackId":3063} +{"PlaylistId":8,"TrackId":3081} +{"PlaylistId":8,"TrackId":3082} +{"PlaylistId":8,"TrackId":3083} +{"PlaylistId":8,"TrackId":3084} +{"PlaylistId":8,"TrackId":3085} +{"PlaylistId":8,"TrackId":3086} +{"PlaylistId":8,"TrackId":3087} +{"PlaylistId":8,"TrackId":3088} +{"PlaylistId":8,"TrackId":3089} +{"PlaylistId":8,"TrackId":3090} +{"PlaylistId":8,"TrackId":3091} +{"PlaylistId":8,"TrackId":3092} +{"PlaylistId":8,"TrackId":3093} +{"PlaylistId":8,"TrackId":3094} +{"PlaylistId":8,"TrackId":3095} +{"PlaylistId":8,"TrackId":3096} +{"PlaylistId":8,"TrackId":3097} +{"PlaylistId":8,"TrackId":3098} +{"PlaylistId":8,"TrackId":3099} +{"PlaylistId":8,"TrackId":3100} +{"PlaylistId":8,"TrackId":3101} +{"PlaylistId":8,"TrackId":3102} +{"PlaylistId":8,"TrackId":3103} +{"PlaylistId":8,"TrackId":323} +{"PlaylistId":8,"TrackId":324} +{"PlaylistId":8,"TrackId":325} +{"PlaylistId":8,"TrackId":326} +{"PlaylistId":8,"TrackId":327} +{"PlaylistId":8,"TrackId":328} +{"PlaylistId":8,"TrackId":329} +{"PlaylistId":8,"TrackId":330} +{"PlaylistId":8,"TrackId":331} +{"PlaylistId":8,"TrackId":332} +{"PlaylistId":8,"TrackId":333} +{"PlaylistId":8,"TrackId":334} +{"PlaylistId":8,"TrackId":335} +{"PlaylistId":8,"TrackId":336} +{"PlaylistId":8,"TrackId":360} +{"PlaylistId":8,"TrackId":361} +{"PlaylistId":8,"TrackId":362} +{"PlaylistId":8,"TrackId":363} +{"PlaylistId":8,"TrackId":364} +{"PlaylistId":8,"TrackId":365} +{"PlaylistId":8,"TrackId":366} +{"PlaylistId":8,"TrackId":367} +{"PlaylistId":8,"TrackId":368} +{"PlaylistId":8,"TrackId":369} +{"PlaylistId":8,"TrackId":370} +{"PlaylistId":8,"TrackId":371} +{"PlaylistId":8,"TrackId":372} +{"PlaylistId":8,"TrackId":373} +{"PlaylistId":8,"TrackId":556} +{"PlaylistId":8,"TrackId":557} +{"PlaylistId":8,"TrackId":558} +{"PlaylistId":8,"TrackId":559} +{"PlaylistId":8,"TrackId":560} +{"PlaylistId":8,"TrackId":561} +{"PlaylistId":8,"TrackId":562} +{"PlaylistId":8,"TrackId":563} +{"PlaylistId":8,"TrackId":564} +{"PlaylistId":8,"TrackId":565} +{"PlaylistId":8,"TrackId":566} +{"PlaylistId":8,"TrackId":567} +{"PlaylistId":8,"TrackId":568} +{"PlaylistId":8,"TrackId":569} +{"PlaylistId":8,"TrackId":661} +{"PlaylistId":8,"TrackId":662} +{"PlaylistId":8,"TrackId":663} +{"PlaylistId":8,"TrackId":664} +{"PlaylistId":8,"TrackId":665} +{"PlaylistId":8,"TrackId":666} +{"PlaylistId":8,"TrackId":667} +{"PlaylistId":8,"TrackId":668} +{"PlaylistId":8,"TrackId":669} +{"PlaylistId":8,"TrackId":670} +{"PlaylistId":8,"TrackId":671} +{"PlaylistId":8,"TrackId":672} +{"PlaylistId":8,"TrackId":673} +{"PlaylistId":8,"TrackId":674} +{"PlaylistId":8,"TrackId":3104} +{"PlaylistId":8,"TrackId":3105} +{"PlaylistId":8,"TrackId":3106} +{"PlaylistId":8,"TrackId":3107} +{"PlaylistId":8,"TrackId":3108} +{"PlaylistId":8,"TrackId":3109} +{"PlaylistId":8,"TrackId":3110} +{"PlaylistId":8,"TrackId":3111} +{"PlaylistId":8,"TrackId":3112} +{"PlaylistId":8,"TrackId":3113} +{"PlaylistId":8,"TrackId":3114} +{"PlaylistId":8,"TrackId":3115} +{"PlaylistId":8,"TrackId":3116} +{"PlaylistId":8,"TrackId":3117} +{"PlaylistId":8,"TrackId":3118} +{"PlaylistId":8,"TrackId":3119} +{"PlaylistId":8,"TrackId":3120} +{"PlaylistId":8,"TrackId":3121} +{"PlaylistId":8,"TrackId":3122} +{"PlaylistId":8,"TrackId":3123} +{"PlaylistId":8,"TrackId":3124} +{"PlaylistId":8,"TrackId":3125} +{"PlaylistId":8,"TrackId":3126} +{"PlaylistId":8,"TrackId":3127} +{"PlaylistId":8,"TrackId":3128} +{"PlaylistId":8,"TrackId":3129} +{"PlaylistId":8,"TrackId":3130} +{"PlaylistId":8,"TrackId":3131} +{"PlaylistId":8,"TrackId":652} +{"PlaylistId":8,"TrackId":656} +{"PlaylistId":8,"TrackId":657} +{"PlaylistId":8,"TrackId":650} +{"PlaylistId":8,"TrackId":659} +{"PlaylistId":8,"TrackId":654} +{"PlaylistId":8,"TrackId":660} +{"PlaylistId":8,"TrackId":3132} +{"PlaylistId":8,"TrackId":3133} +{"PlaylistId":8,"TrackId":3134} +{"PlaylistId":8,"TrackId":3135} +{"PlaylistId":8,"TrackId":3136} +{"PlaylistId":8,"TrackId":3137} +{"PlaylistId":8,"TrackId":3138} +{"PlaylistId":8,"TrackId":3139} +{"PlaylistId":8,"TrackId":3140} +{"PlaylistId":8,"TrackId":3141} +{"PlaylistId":8,"TrackId":3142} +{"PlaylistId":8,"TrackId":3143} +{"PlaylistId":8,"TrackId":3144} +{"PlaylistId":8,"TrackId":3145} +{"PlaylistId":8,"TrackId":2731} +{"PlaylistId":8,"TrackId":2732} +{"PlaylistId":8,"TrackId":2733} +{"PlaylistId":8,"TrackId":2734} +{"PlaylistId":8,"TrackId":2735} +{"PlaylistId":8,"TrackId":2736} +{"PlaylistId":8,"TrackId":2737} +{"PlaylistId":8,"TrackId":2738} +{"PlaylistId":8,"TrackId":2739} +{"PlaylistId":8,"TrackId":2740} +{"PlaylistId":8,"TrackId":2741} +{"PlaylistId":8,"TrackId":2742} +{"PlaylistId":8,"TrackId":2743} +{"PlaylistId":8,"TrackId":2744} +{"PlaylistId":8,"TrackId":2745} +{"PlaylistId":8,"TrackId":2746} +{"PlaylistId":8,"TrackId":2747} +{"PlaylistId":8,"TrackId":2748} +{"PlaylistId":8,"TrackId":2749} +{"PlaylistId":8,"TrackId":2750} +{"PlaylistId":8,"TrackId":3408} +{"PlaylistId":8,"TrackId":3320} +{"PlaylistId":8,"TrackId":3409} +{"PlaylistId":8,"TrackId":3264} +{"PlaylistId":8,"TrackId":3146} +{"PlaylistId":8,"TrackId":3147} +{"PlaylistId":8,"TrackId":3148} +{"PlaylistId":8,"TrackId":3149} +{"PlaylistId":8,"TrackId":3150} +{"PlaylistId":8,"TrackId":3151} +{"PlaylistId":8,"TrackId":3152} +{"PlaylistId":8,"TrackId":3153} +{"PlaylistId":8,"TrackId":3154} +{"PlaylistId":8,"TrackId":3155} +{"PlaylistId":8,"TrackId":3156} +{"PlaylistId":8,"TrackId":3157} +{"PlaylistId":8,"TrackId":3158} +{"PlaylistId":8,"TrackId":3159} +{"PlaylistId":8,"TrackId":3160} +{"PlaylistId":8,"TrackId":3161} +{"PlaylistId":8,"TrackId":3162} +{"PlaylistId":8,"TrackId":3163} +{"PlaylistId":8,"TrackId":3164} +{"PlaylistId":8,"TrackId":3438} +{"PlaylistId":8,"TrackId":3442} +{"PlaylistId":8,"TrackId":3436} +{"PlaylistId":8,"TrackId":3450} +{"PlaylistId":8,"TrackId":3454} +{"PlaylistId":8,"TrackId":3432} +{"PlaylistId":8,"TrackId":3443} +{"PlaylistId":8,"TrackId":3447} +{"PlaylistId":8,"TrackId":3452} +{"PlaylistId":8,"TrackId":3441} +{"PlaylistId":8,"TrackId":3434} +{"PlaylistId":8,"TrackId":3449} +{"PlaylistId":8,"TrackId":3445} +{"PlaylistId":8,"TrackId":3440} +{"PlaylistId":8,"TrackId":3453} +{"PlaylistId":8,"TrackId":3439} +{"PlaylistId":8,"TrackId":3435} +{"PlaylistId":8,"TrackId":3448} +{"PlaylistId":8,"TrackId":3437} +{"PlaylistId":8,"TrackId":3446} +{"PlaylistId":8,"TrackId":3444} +{"PlaylistId":8,"TrackId":3433} +{"PlaylistId":8,"TrackId":3431} +{"PlaylistId":8,"TrackId":3451} +{"PlaylistId":8,"TrackId":3430} +{"PlaylistId":8,"TrackId":3455} +{"PlaylistId":8,"TrackId":3456} +{"PlaylistId":8,"TrackId":3457} +{"PlaylistId":8,"TrackId":3458} +{"PlaylistId":8,"TrackId":3459} +{"PlaylistId":8,"TrackId":3460} +{"PlaylistId":8,"TrackId":3461} +{"PlaylistId":8,"TrackId":3462} +{"PlaylistId":8,"TrackId":3463} +{"PlaylistId":8,"TrackId":3464} +{"PlaylistId":8,"TrackId":3465} +{"PlaylistId":8,"TrackId":3466} +{"PlaylistId":8,"TrackId":3467} +{"PlaylistId":8,"TrackId":3468} +{"PlaylistId":8,"TrackId":3469} +{"PlaylistId":8,"TrackId":3470} +{"PlaylistId":8,"TrackId":3471} +{"PlaylistId":8,"TrackId":3472} +{"PlaylistId":8,"TrackId":3473} +{"PlaylistId":8,"TrackId":3474} +{"PlaylistId":8,"TrackId":3475} +{"PlaylistId":8,"TrackId":3476} +{"PlaylistId":8,"TrackId":3477} +{"PlaylistId":8,"TrackId":3478} +{"PlaylistId":8,"TrackId":3482} +{"PlaylistId":8,"TrackId":3485} +{"PlaylistId":8,"TrackId":3491} +{"PlaylistId":8,"TrackId":3501} +{"PlaylistId":8,"TrackId":3487} +{"PlaylistId":8,"TrackId":3500} +{"PlaylistId":8,"TrackId":3488} +{"PlaylistId":8,"TrackId":3499} +{"PlaylistId":8,"TrackId":3497} +{"PlaylistId":8,"TrackId":3494} +{"PlaylistId":8,"TrackId":3495} +{"PlaylistId":8,"TrackId":3490} +{"PlaylistId":8,"TrackId":3489} +{"PlaylistId":8,"TrackId":3492} +{"PlaylistId":8,"TrackId":3483} +{"PlaylistId":8,"TrackId":3493} +{"PlaylistId":8,"TrackId":3498} +{"PlaylistId":8,"TrackId":3496} +{"PlaylistId":8,"TrackId":3502} +{"PlaylistId":8,"TrackId":3479} +{"PlaylistId":8,"TrackId":3481} +{"PlaylistId":8,"TrackId":3503} +{"PlaylistId":8,"TrackId":3486} +{"PlaylistId":8,"TrackId":3480} +{"PlaylistId":8,"TrackId":3484} +{"PlaylistId":9,"TrackId":3402} +{"PlaylistId":10,"TrackId":3250} +{"PlaylistId":10,"TrackId":2819} +{"PlaylistId":10,"TrackId":2820} +{"PlaylistId":10,"TrackId":2821} +{"PlaylistId":10,"TrackId":2822} +{"PlaylistId":10,"TrackId":2823} +{"PlaylistId":10,"TrackId":2824} +{"PlaylistId":10,"TrackId":2825} +{"PlaylistId":10,"TrackId":2826} +{"PlaylistId":10,"TrackId":2827} +{"PlaylistId":10,"TrackId":2828} +{"PlaylistId":10,"TrackId":2829} +{"PlaylistId":10,"TrackId":2830} +{"PlaylistId":10,"TrackId":2831} +{"PlaylistId":10,"TrackId":2832} +{"PlaylistId":10,"TrackId":2833} +{"PlaylistId":10,"TrackId":2834} +{"PlaylistId":10,"TrackId":2835} +{"PlaylistId":10,"TrackId":2836} +{"PlaylistId":10,"TrackId":2837} +{"PlaylistId":10,"TrackId":2838} +{"PlaylistId":10,"TrackId":3226} +{"PlaylistId":10,"TrackId":3227} +{"PlaylistId":10,"TrackId":3228} +{"PlaylistId":10,"TrackId":3229} +{"PlaylistId":10,"TrackId":3230} +{"PlaylistId":10,"TrackId":3231} +{"PlaylistId":10,"TrackId":3232} +{"PlaylistId":10,"TrackId":3233} +{"PlaylistId":10,"TrackId":3234} +{"PlaylistId":10,"TrackId":3235} +{"PlaylistId":10,"TrackId":3236} +{"PlaylistId":10,"TrackId":3237} +{"PlaylistId":10,"TrackId":3238} +{"PlaylistId":10,"TrackId":3239} +{"PlaylistId":10,"TrackId":3240} +{"PlaylistId":10,"TrackId":3241} +{"PlaylistId":10,"TrackId":3242} +{"PlaylistId":10,"TrackId":3243} +{"PlaylistId":10,"TrackId":3244} +{"PlaylistId":10,"TrackId":3245} +{"PlaylistId":10,"TrackId":3246} +{"PlaylistId":10,"TrackId":3247} +{"PlaylistId":10,"TrackId":3248} +{"PlaylistId":10,"TrackId":3249} +{"PlaylistId":10,"TrackId":2839} +{"PlaylistId":10,"TrackId":2840} +{"PlaylistId":10,"TrackId":2841} +{"PlaylistId":10,"TrackId":2842} +{"PlaylistId":10,"TrackId":2843} +{"PlaylistId":10,"TrackId":2844} +{"PlaylistId":10,"TrackId":2845} +{"PlaylistId":10,"TrackId":2846} +{"PlaylistId":10,"TrackId":2847} +{"PlaylistId":10,"TrackId":2848} +{"PlaylistId":10,"TrackId":2849} +{"PlaylistId":10,"TrackId":2850} +{"PlaylistId":10,"TrackId":2851} +{"PlaylistId":10,"TrackId":2852} +{"PlaylistId":10,"TrackId":2853} +{"PlaylistId":10,"TrackId":2854} +{"PlaylistId":10,"TrackId":2855} +{"PlaylistId":10,"TrackId":2856} +{"PlaylistId":10,"TrackId":3166} +{"PlaylistId":10,"TrackId":3167} +{"PlaylistId":10,"TrackId":3168} +{"PlaylistId":10,"TrackId":3171} +{"PlaylistId":10,"TrackId":3223} +{"PlaylistId":10,"TrackId":2858} +{"PlaylistId":10,"TrackId":2861} +{"PlaylistId":10,"TrackId":2865} +{"PlaylistId":10,"TrackId":2868} +{"PlaylistId":10,"TrackId":2871} +{"PlaylistId":10,"TrackId":2873} +{"PlaylistId":10,"TrackId":2877} +{"PlaylistId":10,"TrackId":2880} +{"PlaylistId":10,"TrackId":2883} +{"PlaylistId":10,"TrackId":2885} +{"PlaylistId":10,"TrackId":2888} +{"PlaylistId":10,"TrackId":2893} +{"PlaylistId":10,"TrackId":2894} +{"PlaylistId":10,"TrackId":2898} +{"PlaylistId":10,"TrackId":2901} +{"PlaylistId":10,"TrackId":2904} +{"PlaylistId":10,"TrackId":2906} +{"PlaylistId":10,"TrackId":2911} +{"PlaylistId":10,"TrackId":2913} +{"PlaylistId":10,"TrackId":2915} +{"PlaylistId":10,"TrackId":2917} +{"PlaylistId":10,"TrackId":2919} +{"PlaylistId":10,"TrackId":2921} +{"PlaylistId":10,"TrackId":2923} +{"PlaylistId":10,"TrackId":2925} +{"PlaylistId":10,"TrackId":2859} +{"PlaylistId":10,"TrackId":2860} +{"PlaylistId":10,"TrackId":2864} +{"PlaylistId":10,"TrackId":2867} +{"PlaylistId":10,"TrackId":2869} +{"PlaylistId":10,"TrackId":2872} +{"PlaylistId":10,"TrackId":2878} +{"PlaylistId":10,"TrackId":2879} +{"PlaylistId":10,"TrackId":2884} +{"PlaylistId":10,"TrackId":2887} +{"PlaylistId":10,"TrackId":2889} +{"PlaylistId":10,"TrackId":2892} +{"PlaylistId":10,"TrackId":2896} +{"PlaylistId":10,"TrackId":2897} +{"PlaylistId":10,"TrackId":2902} +{"PlaylistId":10,"TrackId":2905} +{"PlaylistId":10,"TrackId":2907} +{"PlaylistId":10,"TrackId":2910} +{"PlaylistId":10,"TrackId":2914} +{"PlaylistId":10,"TrackId":2916} +{"PlaylistId":10,"TrackId":2918} +{"PlaylistId":10,"TrackId":2920} +{"PlaylistId":10,"TrackId":2922} +{"PlaylistId":10,"TrackId":2924} +{"PlaylistId":10,"TrackId":2857} +{"PlaylistId":10,"TrackId":2862} +{"PlaylistId":10,"TrackId":2863} +{"PlaylistId":10,"TrackId":2866} +{"PlaylistId":10,"TrackId":2870} +{"PlaylistId":10,"TrackId":2874} +{"PlaylistId":10,"TrackId":2875} +{"PlaylistId":10,"TrackId":2876} +{"PlaylistId":10,"TrackId":2881} +{"PlaylistId":10,"TrackId":2882} +{"PlaylistId":10,"TrackId":2886} +{"PlaylistId":10,"TrackId":2890} +{"PlaylistId":10,"TrackId":2891} +{"PlaylistId":10,"TrackId":2895} +{"PlaylistId":10,"TrackId":2899} +{"PlaylistId":10,"TrackId":2900} +{"PlaylistId":10,"TrackId":2903} +{"PlaylistId":10,"TrackId":2908} +{"PlaylistId":10,"TrackId":2909} +{"PlaylistId":10,"TrackId":2912} +{"PlaylistId":10,"TrackId":3165} +{"PlaylistId":10,"TrackId":3169} +{"PlaylistId":10,"TrackId":3170} +{"PlaylistId":10,"TrackId":3252} +{"PlaylistId":10,"TrackId":3224} +{"PlaylistId":10,"TrackId":3251} +{"PlaylistId":10,"TrackId":3340} +{"PlaylistId":10,"TrackId":3339} +{"PlaylistId":10,"TrackId":3338} +{"PlaylistId":10,"TrackId":3337} +{"PlaylistId":10,"TrackId":3341} +{"PlaylistId":10,"TrackId":3345} +{"PlaylistId":10,"TrackId":3342} +{"PlaylistId":10,"TrackId":3346} +{"PlaylistId":10,"TrackId":3343} +{"PlaylistId":10,"TrackId":3347} +{"PlaylistId":10,"TrackId":3344} +{"PlaylistId":10,"TrackId":3348} +{"PlaylistId":10,"TrackId":3360} +{"PlaylistId":10,"TrackId":3361} +{"PlaylistId":10,"TrackId":3362} +{"PlaylistId":10,"TrackId":3363} +{"PlaylistId":10,"TrackId":3364} +{"PlaylistId":10,"TrackId":3172} +{"PlaylistId":10,"TrackId":3173} +{"PlaylistId":10,"TrackId":3174} +{"PlaylistId":10,"TrackId":3175} +{"PlaylistId":10,"TrackId":3176} +{"PlaylistId":10,"TrackId":3177} +{"PlaylistId":10,"TrackId":3178} +{"PlaylistId":10,"TrackId":3179} +{"PlaylistId":10,"TrackId":3180} +{"PlaylistId":10,"TrackId":3181} +{"PlaylistId":10,"TrackId":3182} +{"PlaylistId":10,"TrackId":3183} +{"PlaylistId":10,"TrackId":3184} +{"PlaylistId":10,"TrackId":3185} +{"PlaylistId":10,"TrackId":3186} +{"PlaylistId":10,"TrackId":3187} +{"PlaylistId":10,"TrackId":3188} +{"PlaylistId":10,"TrackId":3189} +{"PlaylistId":10,"TrackId":3190} +{"PlaylistId":10,"TrackId":3191} +{"PlaylistId":10,"TrackId":3192} +{"PlaylistId":10,"TrackId":3193} +{"PlaylistId":10,"TrackId":3194} +{"PlaylistId":10,"TrackId":3195} +{"PlaylistId":10,"TrackId":3196} +{"PlaylistId":10,"TrackId":3197} +{"PlaylistId":10,"TrackId":3198} +{"PlaylistId":10,"TrackId":3199} +{"PlaylistId":10,"TrackId":3200} +{"PlaylistId":10,"TrackId":3201} +{"PlaylistId":10,"TrackId":3202} +{"PlaylistId":10,"TrackId":3203} +{"PlaylistId":10,"TrackId":3204} +{"PlaylistId":10,"TrackId":3205} +{"PlaylistId":10,"TrackId":3206} +{"PlaylistId":10,"TrackId":3207} +{"PlaylistId":10,"TrackId":3208} +{"PlaylistId":10,"TrackId":3209} +{"PlaylistId":10,"TrackId":3210} +{"PlaylistId":10,"TrackId":3211} +{"PlaylistId":10,"TrackId":3212} +{"PlaylistId":10,"TrackId":3213} +{"PlaylistId":10,"TrackId":3214} +{"PlaylistId":10,"TrackId":3215} +{"PlaylistId":10,"TrackId":3216} +{"PlaylistId":10,"TrackId":3217} +{"PlaylistId":10,"TrackId":3218} +{"PlaylistId":10,"TrackId":3219} +{"PlaylistId":10,"TrackId":3220} +{"PlaylistId":10,"TrackId":3221} +{"PlaylistId":10,"TrackId":3222} +{"PlaylistId":10,"TrackId":3428} +{"PlaylistId":10,"TrackId":3429} +{"PlaylistId":11,"TrackId":391} +{"PlaylistId":11,"TrackId":516} +{"PlaylistId":11,"TrackId":523} +{"PlaylistId":11,"TrackId":219} +{"PlaylistId":11,"TrackId":220} +{"PlaylistId":11,"TrackId":215} +{"PlaylistId":11,"TrackId":730} +{"PlaylistId":11,"TrackId":738} +{"PlaylistId":11,"TrackId":228} +{"PlaylistId":11,"TrackId":230} +{"PlaylistId":11,"TrackId":236} +{"PlaylistId":11,"TrackId":852} +{"PlaylistId":11,"TrackId":858} +{"PlaylistId":11,"TrackId":864} +{"PlaylistId":11,"TrackId":867} +{"PlaylistId":11,"TrackId":874} +{"PlaylistId":11,"TrackId":877} +{"PlaylistId":11,"TrackId":885} +{"PlaylistId":11,"TrackId":888} +{"PlaylistId":11,"TrackId":1088} +{"PlaylistId":11,"TrackId":1093} +{"PlaylistId":11,"TrackId":1099} +{"PlaylistId":11,"TrackId":1105} +{"PlaylistId":11,"TrackId":501} +{"PlaylistId":11,"TrackId":504} +{"PlaylistId":11,"TrackId":1518} +{"PlaylistId":11,"TrackId":1519} +{"PlaylistId":11,"TrackId":1514} +{"PlaylistId":11,"TrackId":1916} +{"PlaylistId":11,"TrackId":1928} +{"PlaylistId":11,"TrackId":1921} +{"PlaylistId":11,"TrackId":2752} +{"PlaylistId":11,"TrackId":2753} +{"PlaylistId":11,"TrackId":2754} +{"PlaylistId":11,"TrackId":2758} +{"PlaylistId":11,"TrackId":2767} +{"PlaylistId":11,"TrackId":2768} +{"PlaylistId":11,"TrackId":2769} +{"PlaylistId":11,"TrackId":393} +{"PlaylistId":12,"TrackId":3479} +{"PlaylistId":12,"TrackId":3480} +{"PlaylistId":12,"TrackId":3481} +{"PlaylistId":12,"TrackId":3482} +{"PlaylistId":12,"TrackId":3483} +{"PlaylistId":12,"TrackId":3484} +{"PlaylistId":12,"TrackId":3485} +{"PlaylistId":12,"TrackId":3486} +{"PlaylistId":12,"TrackId":3487} +{"PlaylistId":12,"TrackId":3488} +{"PlaylistId":12,"TrackId":3489} +{"PlaylistId":12,"TrackId":3490} +{"PlaylistId":12,"TrackId":3491} +{"PlaylistId":12,"TrackId":3492} +{"PlaylistId":12,"TrackId":3493} +{"PlaylistId":12,"TrackId":3494} +{"PlaylistId":12,"TrackId":3495} +{"PlaylistId":12,"TrackId":3496} +{"PlaylistId":12,"TrackId":3497} +{"PlaylistId":12,"TrackId":3498} +{"PlaylistId":12,"TrackId":3499} +{"PlaylistId":12,"TrackId":3500} +{"PlaylistId":12,"TrackId":3501} +{"PlaylistId":12,"TrackId":3502} +{"PlaylistId":12,"TrackId":3503} +{"PlaylistId":12,"TrackId":3430} +{"PlaylistId":12,"TrackId":3431} +{"PlaylistId":12,"TrackId":3432} +{"PlaylistId":12,"TrackId":3433} +{"PlaylistId":12,"TrackId":3434} +{"PlaylistId":12,"TrackId":3435} +{"PlaylistId":12,"TrackId":3436} +{"PlaylistId":12,"TrackId":3437} +{"PlaylistId":12,"TrackId":3438} +{"PlaylistId":12,"TrackId":3439} +{"PlaylistId":12,"TrackId":3440} +{"PlaylistId":12,"TrackId":3441} +{"PlaylistId":12,"TrackId":3442} +{"PlaylistId":12,"TrackId":3443} +{"PlaylistId":12,"TrackId":3444} +{"PlaylistId":12,"TrackId":3445} +{"PlaylistId":12,"TrackId":3446} +{"PlaylistId":12,"TrackId":3447} +{"PlaylistId":12,"TrackId":3448} +{"PlaylistId":12,"TrackId":3449} +{"PlaylistId":12,"TrackId":3450} +{"PlaylistId":12,"TrackId":3451} +{"PlaylistId":12,"TrackId":3452} +{"PlaylistId":12,"TrackId":3453} +{"PlaylistId":12,"TrackId":3454} +{"PlaylistId":12,"TrackId":3403} +{"PlaylistId":12,"TrackId":3404} +{"PlaylistId":12,"TrackId":3405} +{"PlaylistId":12,"TrackId":3406} +{"PlaylistId":12,"TrackId":3407} +{"PlaylistId":12,"TrackId":3408} +{"PlaylistId":12,"TrackId":3409} +{"PlaylistId":12,"TrackId":3410} +{"PlaylistId":12,"TrackId":3411} +{"PlaylistId":12,"TrackId":3412} +{"PlaylistId":12,"TrackId":3413} +{"PlaylistId":12,"TrackId":3414} +{"PlaylistId":12,"TrackId":3415} +{"PlaylistId":12,"TrackId":3416} +{"PlaylistId":12,"TrackId":3417} +{"PlaylistId":12,"TrackId":3418} +{"PlaylistId":12,"TrackId":3419} +{"PlaylistId":12,"TrackId":3420} +{"PlaylistId":12,"TrackId":3421} +{"PlaylistId":12,"TrackId":3422} +{"PlaylistId":12,"TrackId":3423} +{"PlaylistId":12,"TrackId":3424} +{"PlaylistId":12,"TrackId":3425} +{"PlaylistId":12,"TrackId":3426} +{"PlaylistId":12,"TrackId":3427} +{"PlaylistId":13,"TrackId":3479} +{"PlaylistId":13,"TrackId":3480} +{"PlaylistId":13,"TrackId":3481} +{"PlaylistId":13,"TrackId":3482} +{"PlaylistId":13,"TrackId":3483} +{"PlaylistId":13,"TrackId":3484} +{"PlaylistId":13,"TrackId":3485} +{"PlaylistId":13,"TrackId":3486} +{"PlaylistId":13,"TrackId":3487} +{"PlaylistId":13,"TrackId":3488} +{"PlaylistId":13,"TrackId":3489} +{"PlaylistId":13,"TrackId":3490} +{"PlaylistId":13,"TrackId":3491} +{"PlaylistId":13,"TrackId":3492} +{"PlaylistId":13,"TrackId":3493} +{"PlaylistId":13,"TrackId":3494} +{"PlaylistId":13,"TrackId":3495} +{"PlaylistId":13,"TrackId":3496} +{"PlaylistId":13,"TrackId":3497} +{"PlaylistId":13,"TrackId":3498} +{"PlaylistId":13,"TrackId":3499} +{"PlaylistId":13,"TrackId":3500} +{"PlaylistId":13,"TrackId":3501} +{"PlaylistId":13,"TrackId":3502} +{"PlaylistId":13,"TrackId":3503} +{"PlaylistId":14,"TrackId":3430} +{"PlaylistId":14,"TrackId":3431} +{"PlaylistId":14,"TrackId":3432} +{"PlaylistId":14,"TrackId":3433} +{"PlaylistId":14,"TrackId":3434} +{"PlaylistId":14,"TrackId":3435} +{"PlaylistId":14,"TrackId":3436} +{"PlaylistId":14,"TrackId":3437} +{"PlaylistId":14,"TrackId":3438} +{"PlaylistId":14,"TrackId":3439} +{"PlaylistId":14,"TrackId":3440} +{"PlaylistId":14,"TrackId":3441} +{"PlaylistId":14,"TrackId":3442} +{"PlaylistId":14,"TrackId":3443} +{"PlaylistId":14,"TrackId":3444} +{"PlaylistId":14,"TrackId":3445} +{"PlaylistId":14,"TrackId":3446} +{"PlaylistId":14,"TrackId":3447} +{"PlaylistId":14,"TrackId":3448} +{"PlaylistId":14,"TrackId":3449} +{"PlaylistId":14,"TrackId":3450} +{"PlaylistId":14,"TrackId":3451} +{"PlaylistId":14,"TrackId":3452} +{"PlaylistId":14,"TrackId":3453} +{"PlaylistId":14,"TrackId":3454} +{"PlaylistId":15,"TrackId":3403} +{"PlaylistId":15,"TrackId":3404} +{"PlaylistId":15,"TrackId":3405} +{"PlaylistId":15,"TrackId":3406} +{"PlaylistId":15,"TrackId":3407} +{"PlaylistId":15,"TrackId":3408} +{"PlaylistId":15,"TrackId":3409} +{"PlaylistId":15,"TrackId":3410} +{"PlaylistId":15,"TrackId":3411} +{"PlaylistId":15,"TrackId":3412} +{"PlaylistId":15,"TrackId":3413} +{"PlaylistId":15,"TrackId":3414} +{"PlaylistId":15,"TrackId":3415} +{"PlaylistId":15,"TrackId":3416} +{"PlaylistId":15,"TrackId":3417} +{"PlaylistId":15,"TrackId":3418} +{"PlaylistId":15,"TrackId":3419} +{"PlaylistId":15,"TrackId":3420} +{"PlaylistId":15,"TrackId":3421} +{"PlaylistId":15,"TrackId":3422} +{"PlaylistId":15,"TrackId":3423} +{"PlaylistId":15,"TrackId":3424} +{"PlaylistId":15,"TrackId":3425} +{"PlaylistId":15,"TrackId":3426} +{"PlaylistId":15,"TrackId":3427} +{"PlaylistId":16,"TrackId":3367} +{"PlaylistId":16,"TrackId":52} +{"PlaylistId":16,"TrackId":2194} +{"PlaylistId":16,"TrackId":2195} +{"PlaylistId":16,"TrackId":2198} +{"PlaylistId":16,"TrackId":2206} +{"PlaylistId":16,"TrackId":2512} +{"PlaylistId":16,"TrackId":2516} +{"PlaylistId":16,"TrackId":2550} +{"PlaylistId":16,"TrackId":2003} +{"PlaylistId":16,"TrackId":2004} +{"PlaylistId":16,"TrackId":2005} +{"PlaylistId":16,"TrackId":2007} +{"PlaylistId":16,"TrackId":2010} +{"PlaylistId":16,"TrackId":2013} +{"PlaylistId":17,"TrackId":1} +{"PlaylistId":17,"TrackId":2} +{"PlaylistId":17,"TrackId":3} +{"PlaylistId":17,"TrackId":4} +{"PlaylistId":17,"TrackId":5} +{"PlaylistId":17,"TrackId":152} +{"PlaylistId":17,"TrackId":160} +{"PlaylistId":17,"TrackId":1278} +{"PlaylistId":17,"TrackId":1283} +{"PlaylistId":17,"TrackId":1392} +{"PlaylistId":17,"TrackId":1335} +{"PlaylistId":17,"TrackId":1345} +{"PlaylistId":17,"TrackId":1380} +{"PlaylistId":17,"TrackId":1801} +{"PlaylistId":17,"TrackId":1830} +{"PlaylistId":17,"TrackId":1837} +{"PlaylistId":17,"TrackId":1854} +{"PlaylistId":17,"TrackId":1876} +{"PlaylistId":17,"TrackId":1880} +{"PlaylistId":17,"TrackId":1984} +{"PlaylistId":17,"TrackId":1942} +{"PlaylistId":17,"TrackId":1945} +{"PlaylistId":17,"TrackId":2094} +{"PlaylistId":17,"TrackId":2095} +{"PlaylistId":17,"TrackId":2096} +{"PlaylistId":17,"TrackId":3290} +{"PlaylistId":18,"TrackId":597} diff --git a/e2e-tests/data/chinook-jsonl/Track.jsonl b/e2e-tests/data/chinook-jsonl/Track.jsonl new file mode 100644 index 000000000..4a672ace0 --- /dev/null +++ b/e2e-tests/data/chinook-jsonl/Track.jsonl @@ -0,0 +1,3503 @@ +{"TrackId":1,"Name":"For Those About To Rock (We Salute You)","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":343719,"Bytes":11170334,"UnitPrice":"0.99"} +{"TrackId":2,"Name":"Balls to the Wall","AlbumId":2,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":342562,"Bytes":5510424,"UnitPrice":"0.99"} +{"TrackId":3,"Name":"Fast As a Shark","AlbumId":3,"MediaTypeId":2,"GenreId":1,"Composer":"F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman","Milliseconds":230619,"Bytes":3990994,"UnitPrice":"0.99"} +{"TrackId":4,"Name":"Restless and Wild","AlbumId":3,"MediaTypeId":2,"GenreId":1,"Composer":"F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman","Milliseconds":252051,"Bytes":4331779,"UnitPrice":"0.99"} +{"TrackId":5,"Name":"Princess of the Dawn","AlbumId":3,"MediaTypeId":2,"GenreId":1,"Composer":"Deaffy & R.A. Smith-Diesel","Milliseconds":375418,"Bytes":6290521,"UnitPrice":"0.99"} +{"TrackId":6,"Name":"Put The Finger On You","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":205662,"Bytes":6713451,"UnitPrice":"0.99"} +{"TrackId":7,"Name":"Let's Get It Up","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":233926,"Bytes":7636561,"UnitPrice":"0.99"} +{"TrackId":8,"Name":"Inject The Venom","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":210834,"Bytes":6852860,"UnitPrice":"0.99"} +{"TrackId":9,"Name":"Snowballed","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":203102,"Bytes":6599424,"UnitPrice":"0.99"} +{"TrackId":10,"Name":"Evil Walks","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":263497,"Bytes":8611245,"UnitPrice":"0.99"} +{"TrackId":11,"Name":"C.O.D.","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":199836,"Bytes":6566314,"UnitPrice":"0.99"} +{"TrackId":12,"Name":"Breaking The Rules","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":263288,"Bytes":8596840,"UnitPrice":"0.99"} +{"TrackId":13,"Name":"Night Of The Long Knives","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":205688,"Bytes":6706347,"UnitPrice":"0.99"} +{"TrackId":14,"Name":"Spellbound","AlbumId":1,"MediaTypeId":1,"GenreId":1,"Composer":"Angus Young, Malcolm Young, Brian Johnson","Milliseconds":270863,"Bytes":8817038,"UnitPrice":"0.99"} +{"TrackId":15,"Name":"Go Down","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":331180,"Bytes":10847611,"UnitPrice":"0.99"} +{"TrackId":16,"Name":"Dog Eat Dog","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":215196,"Bytes":7032162,"UnitPrice":"0.99"} +{"TrackId":17,"Name":"Let There Be Rock","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":366654,"Bytes":12021261,"UnitPrice":"0.99"} +{"TrackId":18,"Name":"Bad Boy Boogie","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":267728,"Bytes":8776140,"UnitPrice":"0.99"} +{"TrackId":19,"Name":"Problem Child","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":325041,"Bytes":10617116,"UnitPrice":"0.99"} +{"TrackId":20,"Name":"Overdose","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":369319,"Bytes":12066294,"UnitPrice":"0.99"} +{"TrackId":21,"Name":"Hell Ain't A Bad Place To Be","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":254380,"Bytes":8331286,"UnitPrice":"0.99"} +{"TrackId":22,"Name":"Whole Lotta Rosie","AlbumId":4,"MediaTypeId":1,"GenreId":1,"Composer":"AC/DC","Milliseconds":323761,"Bytes":10547154,"UnitPrice":"0.99"} +{"TrackId":23,"Name":"Walk On Water","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw","Milliseconds":295680,"Bytes":9719579,"UnitPrice":"0.99"} +{"TrackId":24,"Name":"Love In An Elevator","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry","Milliseconds":321828,"Bytes":10552051,"UnitPrice":"0.99"} +{"TrackId":25,"Name":"Rag Doll","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Jim Vallance, Holly Knight","Milliseconds":264698,"Bytes":8675345,"UnitPrice":"0.99"} +{"TrackId":26,"Name":"What It Takes","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Desmond Child","Milliseconds":310622,"Bytes":10144730,"UnitPrice":"0.99"} +{"TrackId":27,"Name":"Dude (Looks Like A Lady)","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Desmond Child","Milliseconds":264855,"Bytes":8679940,"UnitPrice":"0.99"} +{"TrackId":28,"Name":"Janie's Got A Gun","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Tom Hamilton","Milliseconds":330736,"Bytes":10869391,"UnitPrice":"0.99"} +{"TrackId":29,"Name":"Cryin'","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Taylor Rhodes","Milliseconds":309263,"Bytes":10056995,"UnitPrice":"0.99"} +{"TrackId":30,"Name":"Amazing","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Richie Supa","Milliseconds":356519,"Bytes":11616195,"UnitPrice":"0.99"} +{"TrackId":31,"Name":"Blind Man","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Taylor Rhodes","Milliseconds":240718,"Bytes":7877453,"UnitPrice":"0.99"} +{"TrackId":32,"Name":"Deuces Are Wild","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Jim Vallance","Milliseconds":215875,"Bytes":7074167,"UnitPrice":"0.99"} +{"TrackId":33,"Name":"The Other Side","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Jim Vallance","Milliseconds":244375,"Bytes":7983270,"UnitPrice":"0.99"} +{"TrackId":34,"Name":"Crazy","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Desmond Child","Milliseconds":316656,"Bytes":10402398,"UnitPrice":"0.99"} +{"TrackId":35,"Name":"Eat The Rich","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Jim Vallance","Milliseconds":251036,"Bytes":8262039,"UnitPrice":"0.99"} +{"TrackId":36,"Name":"Angel","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Desmond Child","Milliseconds":307617,"Bytes":9989331,"UnitPrice":"0.99"} +{"TrackId":37,"Name":"Livin' On The Edge","AlbumId":5,"MediaTypeId":1,"GenreId":1,"Composer":"Steven Tyler, Joe Perry, Mark Hudson","Milliseconds":381231,"Bytes":12374569,"UnitPrice":"0.99"} +{"TrackId":38,"Name":"All I Really Want","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":284891,"Bytes":9375567,"UnitPrice":"0.99"} +{"TrackId":39,"Name":"You Oughta Know","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":249234,"Bytes":8196916,"UnitPrice":"0.99"} +{"TrackId":40,"Name":"Perfect","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":188133,"Bytes":6145404,"UnitPrice":"0.99"} +{"TrackId":41,"Name":"Hand In My Pocket","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":221570,"Bytes":7224246,"UnitPrice":"0.99"} +{"TrackId":42,"Name":"Right Through You","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":176117,"Bytes":5793082,"UnitPrice":"0.99"} +{"TrackId":43,"Name":"Forgiven","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":300355,"Bytes":9753256,"UnitPrice":"0.99"} +{"TrackId":44,"Name":"You Learn","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":239699,"Bytes":7824837,"UnitPrice":"0.99"} +{"TrackId":45,"Name":"Head Over Feet","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":267493,"Bytes":8758008,"UnitPrice":"0.99"} +{"TrackId":46,"Name":"Mary Jane","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":280607,"Bytes":9163588,"UnitPrice":"0.99"} +{"TrackId":47,"Name":"Ironic","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":229825,"Bytes":7598866,"UnitPrice":"0.99"} +{"TrackId":48,"Name":"Not The Doctor","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":227631,"Bytes":7604601,"UnitPrice":"0.99"} +{"TrackId":49,"Name":"Wake Up","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":293485,"Bytes":9703359,"UnitPrice":"0.99"} +{"TrackId":50,"Name":"You Oughta Know (Alternate)","AlbumId":6,"MediaTypeId":1,"GenreId":1,"Composer":"Alanis Morissette & Glenn Ballard","Milliseconds":491885,"Bytes":16008629,"UnitPrice":"0.99"} +{"TrackId":51,"Name":"We Die Young","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":152084,"Bytes":4925362,"UnitPrice":"0.99"} +{"TrackId":52,"Name":"Man In The Box","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Layne Staley","Milliseconds":286641,"Bytes":9310272,"UnitPrice":"0.99"} +{"TrackId":53,"Name":"Sea Of Sorrow","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":349831,"Bytes":11316328,"UnitPrice":"0.99"} +{"TrackId":54,"Name":"Bleed The Freak","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":241946,"Bytes":7847716,"UnitPrice":"0.99"} +{"TrackId":55,"Name":"I Can't Remember","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Layne Staley","Milliseconds":222955,"Bytes":7302550,"UnitPrice":"0.99"} +{"TrackId":56,"Name":"Love, Hate, Love","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Layne Staley","Milliseconds":387134,"Bytes":12575396,"UnitPrice":"0.99"} +{"TrackId":57,"Name":"It Ain't Like That","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Michael Starr, Sean Kinney","Milliseconds":277577,"Bytes":8993793,"UnitPrice":"0.99"} +{"TrackId":58,"Name":"Sunshine","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":284969,"Bytes":9216057,"UnitPrice":"0.99"} +{"TrackId":59,"Name":"Put You Down","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":196231,"Bytes":6420530,"UnitPrice":"0.99"} +{"TrackId":60,"Name":"Confusion","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Michael Starr, Layne Staley","Milliseconds":344163,"Bytes":11183647,"UnitPrice":"0.99"} +{"TrackId":61,"Name":"I Know Somethin (Bout You)","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell","Milliseconds":261955,"Bytes":8497788,"UnitPrice":"0.99"} +{"TrackId":62,"Name":"Real Thing","AlbumId":7,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Cantrell, Layne Staley","Milliseconds":243879,"Bytes":7937731,"UnitPrice":"0.99"} +{"TrackId":63,"Name":"Desafinado","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":185338,"Bytes":5990473,"UnitPrice":"0.99"} +{"TrackId":64,"Name":"Garota De Ipanema","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":285048,"Bytes":9348428,"UnitPrice":"0.99"} +{"TrackId":65,"Name":"Samba De Uma Nota Só (One Note Samba)","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":137273,"Bytes":4535401,"UnitPrice":"0.99"} +{"TrackId":66,"Name":"Por Causa De Vocę","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":169900,"Bytes":5536496,"UnitPrice":"0.99"} +{"TrackId":67,"Name":"Ligia","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":251977,"Bytes":8226934,"UnitPrice":"0.99"} +{"TrackId":68,"Name":"Fotografia","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":129227,"Bytes":4198774,"UnitPrice":"0.99"} +{"TrackId":69,"Name":"Dindi (Dindi)","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":253178,"Bytes":8149148,"UnitPrice":"0.99"} +{"TrackId":70,"Name":"Se Todos Fossem Iguais A Vocę (Instrumental)","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":134948,"Bytes":4393377,"UnitPrice":"0.99"} +{"TrackId":71,"Name":"Falando De Amor","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":219663,"Bytes":7121735,"UnitPrice":"0.99"} +{"TrackId":72,"Name":"Angela","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":169508,"Bytes":5574957,"UnitPrice":"0.99"} +{"TrackId":73,"Name":"Corcovado (Quiet Nights Of Quiet Stars)","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":205662,"Bytes":6687994,"UnitPrice":"0.99"} +{"TrackId":74,"Name":"Outra Vez","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":126511,"Bytes":4110053,"UnitPrice":"0.99"} +{"TrackId":75,"Name":"O Boto (Bôto)","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":366837,"Bytes":12089673,"UnitPrice":"0.99"} +{"TrackId":76,"Name":"Canta, Canta Mais","AlbumId":8,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":271856,"Bytes":8719426,"UnitPrice":"0.99"} +{"TrackId":77,"Name":"Enter Sandman","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":221701,"Bytes":7286305,"UnitPrice":"0.99"} +{"TrackId":78,"Name":"Master Of Puppets","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":436453,"Bytes":14375310,"UnitPrice":"0.99"} +{"TrackId":79,"Name":"Harvester Of Sorrow","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":374543,"Bytes":12372536,"UnitPrice":"0.99"} +{"TrackId":80,"Name":"The Unforgiven","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":322925,"Bytes":10422447,"UnitPrice":"0.99"} +{"TrackId":81,"Name":"Sad But True","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":288208,"Bytes":9405526,"UnitPrice":"0.99"} +{"TrackId":82,"Name":"Creeping Death","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":308035,"Bytes":10110980,"UnitPrice":"0.99"} +{"TrackId":83,"Name":"Wherever I May Roam","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":369345,"Bytes":12033110,"UnitPrice":"0.99"} +{"TrackId":84,"Name":"Welcome Home (Sanitarium)","AlbumId":9,"MediaTypeId":1,"GenreId":3,"Composer":"Apocalyptica","Milliseconds":350197,"Bytes":11406431,"UnitPrice":"0.99"} +{"TrackId":85,"Name":"Cochise","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":222380,"Bytes":5339931,"UnitPrice":"0.99"} +{"TrackId":86,"Name":"Show Me How to Live","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":277890,"Bytes":6672176,"UnitPrice":"0.99"} +{"TrackId":87,"Name":"Gasoline","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":279457,"Bytes":6709793,"UnitPrice":"0.99"} +{"TrackId":88,"Name":"What You Are","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":249391,"Bytes":5988186,"UnitPrice":"0.99"} +{"TrackId":89,"Name":"Like a Stone","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":294034,"Bytes":7059624,"UnitPrice":"0.99"} +{"TrackId":90,"Name":"Set It Off","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":263262,"Bytes":6321091,"UnitPrice":"0.99"} +{"TrackId":91,"Name":"Shadow on the Sun","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":343457,"Bytes":8245793,"UnitPrice":"0.99"} +{"TrackId":92,"Name":"I am the Highway","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":334942,"Bytes":8041411,"UnitPrice":"0.99"} +{"TrackId":93,"Name":"Exploder","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":206053,"Bytes":4948095,"UnitPrice":"0.99"} +{"TrackId":94,"Name":"Hypnotize","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":206628,"Bytes":4961887,"UnitPrice":"0.99"} +{"TrackId":95,"Name":"Bring'em Back Alive","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":329534,"Bytes":7911634,"UnitPrice":"0.99"} +{"TrackId":96,"Name":"Light My Way","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":303595,"Bytes":7289084,"UnitPrice":"0.99"} +{"TrackId":97,"Name":"Getaway Car","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":299598,"Bytes":7193162,"UnitPrice":"0.99"} +{"TrackId":98,"Name":"The Last Remaining Light","AlbumId":10,"MediaTypeId":1,"GenreId":1,"Composer":"Audioslave/Chris Cornell","Milliseconds":317492,"Bytes":7622615,"UnitPrice":"0.99"} +{"TrackId":99,"Name":"Your Time Has Come","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":255529,"Bytes":8273592,"UnitPrice":"0.99"} +{"TrackId":100,"Name":"Out Of Exile","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":291291,"Bytes":9506571,"UnitPrice":"0.99"} +{"TrackId":101,"Name":"Be Yourself","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":279484,"Bytes":9106160,"UnitPrice":"0.99"} +{"TrackId":102,"Name":"Doesn't Remind Me","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":255869,"Bytes":8357387,"UnitPrice":"0.99"} +{"TrackId":103,"Name":"Drown Me Slowly","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":233691,"Bytes":7609178,"UnitPrice":"0.99"} +{"TrackId":104,"Name":"Heaven's Dead","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":276688,"Bytes":9006158,"UnitPrice":"0.99"} +{"TrackId":105,"Name":"The Worm","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":237714,"Bytes":7710800,"UnitPrice":"0.99"} +{"TrackId":106,"Name":"Man Or Animal","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":233195,"Bytes":7542942,"UnitPrice":"0.99"} +{"TrackId":107,"Name":"Yesterday To Tomorrow","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":273763,"Bytes":8944205,"UnitPrice":"0.99"} +{"TrackId":108,"Name":"Dandelion","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":278125,"Bytes":9003592,"UnitPrice":"0.99"} +{"TrackId":109,"Name":"#1 Zero","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":299102,"Bytes":9731988,"UnitPrice":"0.99"} +{"TrackId":110,"Name":"The Curse","AlbumId":11,"MediaTypeId":1,"GenreId":4,"Composer":"Cornell, Commerford, Morello, Wilk","Milliseconds":309786,"Bytes":10029406,"UnitPrice":"0.99"} +{"TrackId":111,"Name":"Money","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Berry Gordy, Jr./Janie Bradford","Milliseconds":147591,"Bytes":2365897,"UnitPrice":"0.99"} +{"TrackId":112,"Name":"Long Tall Sally","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell","Milliseconds":106396,"Bytes":1707084,"UnitPrice":"0.99"} +{"TrackId":113,"Name":"Bad Boy","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Larry Williams","Milliseconds":116088,"Bytes":1862126,"UnitPrice":"0.99"} +{"TrackId":114,"Name":"Twist And Shout","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Bert Russell/Phil Medley","Milliseconds":161123,"Bytes":2582553,"UnitPrice":"0.99"} +{"TrackId":115,"Name":"Please Mr. Postman","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett","Milliseconds":137639,"Bytes":2206986,"UnitPrice":"0.99"} +{"TrackId":116,"Name":"C'Mon Everybody","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Eddie Cochran/Jerry Capehart","Milliseconds":140199,"Bytes":2247846,"UnitPrice":"0.99"} +{"TrackId":117,"Name":"Rock 'N' Roll Music","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Chuck Berry","Milliseconds":141923,"Bytes":2276788,"UnitPrice":"0.99"} +{"TrackId":118,"Name":"Slow Down","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Larry Williams","Milliseconds":163265,"Bytes":2616981,"UnitPrice":"0.99"} +{"TrackId":119,"Name":"Roadrunner","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Bo Diddley","Milliseconds":143595,"Bytes":2301989,"UnitPrice":"0.99"} +{"TrackId":120,"Name":"Carol","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Chuck Berry","Milliseconds":143830,"Bytes":2306019,"UnitPrice":"0.99"} +{"TrackId":121,"Name":"Good Golly Miss Molly","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Little Richard","Milliseconds":106266,"Bytes":1704918,"UnitPrice":"0.99"} +{"TrackId":122,"Name":"20 Flight Rock","AlbumId":12,"MediaTypeId":1,"GenreId":5,"Composer":"Ned Fairchild","Milliseconds":107807,"Bytes":1299960,"UnitPrice":"0.99"} +{"TrackId":123,"Name":"Quadrant","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":261851,"Bytes":8538199,"UnitPrice":"0.99"} +{"TrackId":124,"Name":"Snoopy's search-Red baron","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":456071,"Bytes":15075616,"UnitPrice":"0.99"} +{"TrackId":125,"Name":"Spanish moss-\"A sound portrait\"-Spanish moss","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":248084,"Bytes":8217867,"UnitPrice":"0.99"} +{"TrackId":126,"Name":"Moon germs","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":294060,"Bytes":9714812,"UnitPrice":"0.99"} +{"TrackId":127,"Name":"Stratus","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":582086,"Bytes":19115680,"UnitPrice":"0.99"} +{"TrackId":128,"Name":"The pleasant pheasant","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":318066,"Bytes":10630578,"UnitPrice":"0.99"} +{"TrackId":129,"Name":"Solo-Panhandler","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"Billy Cobham","Milliseconds":246151,"Bytes":8230661,"UnitPrice":"0.99"} +{"TrackId":130,"Name":"Do what cha wanna","AlbumId":13,"MediaTypeId":1,"GenreId":2,"Composer":"George Duke","Milliseconds":274155,"Bytes":9018565,"UnitPrice":"0.99"} +{"TrackId":131,"Name":"Intro/ Low Down","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":323683,"Bytes":10642901,"UnitPrice":"0.99"} +{"TrackId":132,"Name":"13 Years Of Grief","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":246987,"Bytes":8137421,"UnitPrice":"0.99"} +{"TrackId":133,"Name":"Stronger Than Death","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":300747,"Bytes":9869647,"UnitPrice":"0.99"} +{"TrackId":134,"Name":"All For You","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":235833,"Bytes":7726948,"UnitPrice":"0.99"} +{"TrackId":135,"Name":"Super Terrorizer","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":319373,"Bytes":10513905,"UnitPrice":"0.99"} +{"TrackId":136,"Name":"Phoney Smile Fake Hellos","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":273606,"Bytes":9011701,"UnitPrice":"0.99"} +{"TrackId":137,"Name":"Lost My Better Half","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":284081,"Bytes":9355309,"UnitPrice":"0.99"} +{"TrackId":138,"Name":"Bored To Tears","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":247327,"Bytes":8130090,"UnitPrice":"0.99"} +{"TrackId":139,"Name":"A.N.D.R.O.T.A.Z.","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":266266,"Bytes":8574746,"UnitPrice":"0.99"} +{"TrackId":140,"Name":"Born To Booze","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":282122,"Bytes":9257358,"UnitPrice":"0.99"} +{"TrackId":141,"Name":"World Of Trouble","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":359157,"Bytes":11820932,"UnitPrice":"0.99"} +{"TrackId":142,"Name":"No More Tears","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":555075,"Bytes":18041629,"UnitPrice":"0.99"} +{"TrackId":143,"Name":"The Begining... At Last","AlbumId":14,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":365662,"Bytes":11965109,"UnitPrice":"0.99"} +{"TrackId":144,"Name":"Heart Of Gold","AlbumId":15,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":194873,"Bytes":6417460,"UnitPrice":"0.99"} +{"TrackId":145,"Name":"Snowblind","AlbumId":15,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":420022,"Bytes":13842549,"UnitPrice":"0.99"} +{"TrackId":146,"Name":"Like A Bird","AlbumId":15,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":276532,"Bytes":9115657,"UnitPrice":"0.99"} +{"TrackId":147,"Name":"Blood In The Wall","AlbumId":15,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":284368,"Bytes":9359475,"UnitPrice":"0.99"} +{"TrackId":148,"Name":"The Beginning...At Last","AlbumId":15,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":271960,"Bytes":8975814,"UnitPrice":"0.99"} +{"TrackId":149,"Name":"Black Sabbath","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":382066,"Bytes":12440200,"UnitPrice":"0.99"} +{"TrackId":150,"Name":"The Wizard","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":264829,"Bytes":8646737,"UnitPrice":"0.99"} +{"TrackId":151,"Name":"Behind The Wall Of Sleep","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":217573,"Bytes":7169049,"UnitPrice":"0.99"} +{"TrackId":152,"Name":"N.I.B.","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":368770,"Bytes":12029390,"UnitPrice":"0.99"} +{"TrackId":153,"Name":"Evil Woman","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":204930,"Bytes":6655170,"UnitPrice":"0.99"} +{"TrackId":154,"Name":"Sleeping Village","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":644571,"Bytes":21128525,"UnitPrice":"0.99"} +{"TrackId":155,"Name":"Warning","AlbumId":16,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":212062,"Bytes":6893363,"UnitPrice":"0.99"} +{"TrackId":156,"Name":"Wheels Of Confusion / The Straightener","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":494524,"Bytes":16065830,"UnitPrice":"0.99"} +{"TrackId":157,"Name":"Tomorrow's Dream","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":192496,"Bytes":6252071,"UnitPrice":"0.99"} +{"TrackId":158,"Name":"Changes","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":286275,"Bytes":9175517,"UnitPrice":"0.99"} +{"TrackId":159,"Name":"FX","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":103157,"Bytes":3331776,"UnitPrice":"0.99"} +{"TrackId":160,"Name":"Supernaut","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":285779,"Bytes":9245971,"UnitPrice":"0.99"} +{"TrackId":161,"Name":"Snowblind","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":331676,"Bytes":10813386,"UnitPrice":"0.99"} +{"TrackId":162,"Name":"Cornucopia","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":234814,"Bytes":7653880,"UnitPrice":"0.99"} +{"TrackId":163,"Name":"Laguna Sunrise","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":173087,"Bytes":5671374,"UnitPrice":"0.99"} +{"TrackId":164,"Name":"St. Vitus Dance","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":149655,"Bytes":4884969,"UnitPrice":"0.99"} +{"TrackId":165,"Name":"Under The Sun/Every Day Comes and Goes","AlbumId":17,"MediaTypeId":1,"GenreId":3,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":350458,"Bytes":11360486,"UnitPrice":"0.99"} +{"TrackId":166,"Name":"Smoked Pork","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":47333,"Bytes":1549074,"UnitPrice":"0.99"} +{"TrackId":167,"Name":"Body Count's In The House","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":204251,"Bytes":6715413,"UnitPrice":"0.99"} +{"TrackId":168,"Name":"Now Sports","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":4884,"Bytes":161266,"UnitPrice":"0.99"} +{"TrackId":169,"Name":"Body Count","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":317936,"Bytes":10489139,"UnitPrice":"0.99"} +{"TrackId":170,"Name":"A Statistic","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":6373,"Bytes":211997,"UnitPrice":"0.99"} +{"TrackId":171,"Name":"Bowels Of The Devil","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":223216,"Bytes":7324125,"UnitPrice":"0.99"} +{"TrackId":172,"Name":"The Real Problem","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":11650,"Bytes":387360,"UnitPrice":"0.99"} +{"TrackId":173,"Name":"KKK Bitch","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":173008,"Bytes":5709631,"UnitPrice":"0.99"} +{"TrackId":174,"Name":"D Note","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":95738,"Bytes":3067064,"UnitPrice":"0.99"} +{"TrackId":175,"Name":"Voodoo","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":300721,"Bytes":9875962,"UnitPrice":"0.99"} +{"TrackId":176,"Name":"The Winner Loses","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":392254,"Bytes":12843821,"UnitPrice":"0.99"} +{"TrackId":177,"Name":"There Goes The Neighborhood","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":350171,"Bytes":11443471,"UnitPrice":"0.99"} +{"TrackId":178,"Name":"Oprah","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":6635,"Bytes":224313,"UnitPrice":"0.99"} +{"TrackId":179,"Name":"Evil Dick","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":239020,"Bytes":7828873,"UnitPrice":"0.99"} +{"TrackId":180,"Name":"Body Count Anthem","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":166426,"Bytes":5463690,"UnitPrice":"0.99"} +{"TrackId":181,"Name":"Momma's Gotta Die Tonight","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":371539,"Bytes":12122946,"UnitPrice":"0.99"} +{"TrackId":182,"Name":"Freedom Of Speech","AlbumId":18,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":281234,"Bytes":9337917,"UnitPrice":"0.99"} +{"TrackId":183,"Name":"King In Crimson","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":283167,"Bytes":9218499,"UnitPrice":"0.99"} +{"TrackId":184,"Name":"Chemical Wedding","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":246177,"Bytes":8022764,"UnitPrice":"0.99"} +{"TrackId":185,"Name":"The Tower","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":285257,"Bytes":9435693,"UnitPrice":"0.99"} +{"TrackId":186,"Name":"Killing Floor","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith","Milliseconds":269557,"Bytes":8854240,"UnitPrice":"0.99"} +{"TrackId":187,"Name":"Book Of Thel","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Eddie Casillas/Roy Z","Milliseconds":494393,"Bytes":16034404,"UnitPrice":"0.99"} +{"TrackId":188,"Name":"Gates Of Urizen","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":265351,"Bytes":8627004,"UnitPrice":"0.99"} +{"TrackId":189,"Name":"Jerusalem","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":402390,"Bytes":13194463,"UnitPrice":"0.99"} +{"TrackId":190,"Name":"Trupets Of Jericho","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":359131,"Bytes":11820908,"UnitPrice":"0.99"} +{"TrackId":191,"Name":"Machine Men","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith","Milliseconds":341655,"Bytes":11138147,"UnitPrice":"0.99"} +{"TrackId":192,"Name":"The Alchemist","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":509413,"Bytes":16545657,"UnitPrice":"0.99"} +{"TrackId":193,"Name":"Realword","AlbumId":19,"MediaTypeId":1,"GenreId":3,"Composer":"Roy Z","Milliseconds":237531,"Bytes":7802095,"UnitPrice":"0.99"} +{"TrackId":194,"Name":"First Time I Met The Blues","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Eurreal Montgomery","Milliseconds":140434,"Bytes":4604995,"UnitPrice":"0.99"} +{"TrackId":195,"Name":"Let Me Love You Baby","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Willie Dixon","Milliseconds":175386,"Bytes":5716994,"UnitPrice":"0.99"} +{"TrackId":196,"Name":"Stone Crazy","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Buddy Guy","Milliseconds":433397,"Bytes":14184984,"UnitPrice":"0.99"} +{"TrackId":197,"Name":"Pretty Baby","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Willie Dixon","Milliseconds":237662,"Bytes":7848282,"UnitPrice":"0.99"} +{"TrackId":198,"Name":"When My Left Eye Jumps","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Al Perkins/Willie Dixon","Milliseconds":235311,"Bytes":7685363,"UnitPrice":"0.99"} +{"TrackId":199,"Name":"Leave My Girl Alone","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Buddy Guy","Milliseconds":204721,"Bytes":6859518,"UnitPrice":"0.99"} +{"TrackId":200,"Name":"She Suits Me To A Tee","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Buddy Guy","Milliseconds":136803,"Bytes":4456321,"UnitPrice":"0.99"} +{"TrackId":201,"Name":"Keep It To Myself (Aka Keep It To Yourself)","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Sonny Boy Williamson [I]","Milliseconds":166060,"Bytes":5487056,"UnitPrice":"0.99"} +{"TrackId":202,"Name":"My Time After Awhile","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Robert Geddins/Ron Badger/Sheldon Feinberg","Milliseconds":182491,"Bytes":6022698,"UnitPrice":"0.99"} +{"TrackId":203,"Name":"Too Many Ways (Alternate)","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Willie Dixon","Milliseconds":135053,"Bytes":4459946,"UnitPrice":"0.99"} +{"TrackId":204,"Name":"Talkin' 'Bout Women Obviously","AlbumId":20,"MediaTypeId":1,"GenreId":6,"Composer":"Amos Blakemore/Buddy Guy","Milliseconds":589531,"Bytes":19161377,"UnitPrice":"0.99"} +{"TrackId":205,"Name":"Jorge Da Capadócia","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Jorge Ben","Milliseconds":177397,"Bytes":5842196,"UnitPrice":"0.99"} +{"TrackId":206,"Name":"Prenda Minha","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Tradicional","Milliseconds":99369,"Bytes":3225364,"UnitPrice":"0.99"} +{"TrackId":207,"Name":"Meditaçăo","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Tom Jobim - Newton Mendoça","Milliseconds":148793,"Bytes":4865597,"UnitPrice":"0.99"} +{"TrackId":208,"Name":"Terra","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":482429,"Bytes":15889054,"UnitPrice":"0.99"} +{"TrackId":209,"Name":"Eclipse Oculto","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":221936,"Bytes":7382703,"UnitPrice":"0.99"} +{"TrackId":210,"Name":"Texto \"Verdade Tropical\"","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":84088,"Bytes":2752161,"UnitPrice":"0.99"} +{"TrackId":211,"Name":"Bem Devagar","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":133172,"Bytes":4333651,"UnitPrice":"0.99"} +{"TrackId":212,"Name":"Drăo","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":156264,"Bytes":5065932,"UnitPrice":"0.99"} +{"TrackId":213,"Name":"Saudosismo","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":144326,"Bytes":4726981,"UnitPrice":"0.99"} +{"TrackId":214,"Name":"Carolina","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Buarque","Milliseconds":181812,"Bytes":5924159,"UnitPrice":"0.99"} +{"TrackId":215,"Name":"Sozinho","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Peninha","Milliseconds":190589,"Bytes":6253200,"UnitPrice":"0.99"} +{"TrackId":216,"Name":"Esse Cara","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":223111,"Bytes":7217126,"UnitPrice":"0.99"} +{"TrackId":217,"Name":"Mel","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso - Waly Salomăo","Milliseconds":294765,"Bytes":9854062,"UnitPrice":"0.99"} +{"TrackId":218,"Name":"Linha Do Equador","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso - Djavan","Milliseconds":299337,"Bytes":10003747,"UnitPrice":"0.99"} +{"TrackId":219,"Name":"Odara","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":141270,"Bytes":4704104,"UnitPrice":"0.99"} +{"TrackId":220,"Name":"A Luz De Tieta","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":251742,"Bytes":8507446,"UnitPrice":"0.99"} +{"TrackId":221,"Name":"Atrás Da Verd-E-Rosa Só Năo Vai Quem Já Morreu","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"David Corręa - Paulinho Carvalho - Carlos Sena - Bira do Ponto","Milliseconds":307252,"Bytes":10364247,"UnitPrice":"0.99"} +{"TrackId":222,"Name":"Vida Boa","AlbumId":21,"MediaTypeId":1,"GenreId":7,"Composer":"Fausto Nilo - Armandinho","Milliseconds":281730,"Bytes":9411272,"UnitPrice":"0.99"} +{"TrackId":223,"Name":"Sozinho (Hitmakers Classic Mix)","AlbumId":22,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":436636,"Bytes":14462072,"UnitPrice":"0.99"} +{"TrackId":224,"Name":"Sozinho (Hitmakers Classic Radio Edit)","AlbumId":22,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":195004,"Bytes":6455134,"UnitPrice":"0.99"} +{"TrackId":225,"Name":"Sozinho (Caędrum 'n' Bass)","AlbumId":22,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":328071,"Bytes":10975007,"UnitPrice":"0.99"} +{"TrackId":226,"Name":"Carolina","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":163056,"Bytes":5375395,"UnitPrice":"0.99"} +{"TrackId":227,"Name":"Essa Moça Ta Diferente","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":167235,"Bytes":5568574,"UnitPrice":"0.99"} +{"TrackId":228,"Name":"Vai Passar","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":369763,"Bytes":12359161,"UnitPrice":"0.99"} +{"TrackId":229,"Name":"Samba De Orly","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":162429,"Bytes":5431854,"UnitPrice":"0.99"} +{"TrackId":230,"Name":"Bye, Bye Brasil","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":283402,"Bytes":9499590,"UnitPrice":"0.99"} +{"TrackId":231,"Name":"Atras Da Porta","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":189675,"Bytes":6132843,"UnitPrice":"0.99"} +{"TrackId":232,"Name":"Tatuagem","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":172120,"Bytes":5645703,"UnitPrice":"0.99"} +{"TrackId":233,"Name":"O Que Será (Ŕ Flor Da Terra)","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":167288,"Bytes":5574848,"UnitPrice":"0.99"} +{"TrackId":234,"Name":"Morena De Angola","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":186801,"Bytes":6373932,"UnitPrice":"0.99"} +{"TrackId":235,"Name":"Apesar De Vocę","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":234501,"Bytes":7886937,"UnitPrice":"0.99"} +{"TrackId":236,"Name":"A Banda","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":132493,"Bytes":4349539,"UnitPrice":"0.99"} +{"TrackId":237,"Name":"Minha Historia","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":182256,"Bytes":6029673,"UnitPrice":"0.99"} +{"TrackId":238,"Name":"Com Açúcar E Com Afeto","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":175386,"Bytes":5846442,"UnitPrice":"0.99"} +{"TrackId":239,"Name":"Brejo Da Cruz","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":214099,"Bytes":7270749,"UnitPrice":"0.99"} +{"TrackId":240,"Name":"Meu Caro Amigo","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":260257,"Bytes":8778172,"UnitPrice":"0.99"} +{"TrackId":241,"Name":"Geni E O Zepelim","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":317570,"Bytes":10342226,"UnitPrice":"0.99"} +{"TrackId":242,"Name":"Trocando Em Miúdos","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":169717,"Bytes":5461468,"UnitPrice":"0.99"} +{"TrackId":243,"Name":"Vai Trabalhar Vagabundo","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":139154,"Bytes":4693941,"UnitPrice":"0.99"} +{"TrackId":244,"Name":"Gota D'água","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":153208,"Bytes":5074189,"UnitPrice":"0.99"} +{"TrackId":245,"Name":"Construçăo / Deus Lhe Pague","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":383059,"Bytes":12675305,"UnitPrice":"0.99"} +{"TrackId":246,"Name":"Mateus Enter","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":33149,"Bytes":1103013,"UnitPrice":"0.99"} +{"TrackId":247,"Name":"O Cidadăo Do Mundo","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":200933,"Bytes":6724966,"UnitPrice":"0.99"} +{"TrackId":248,"Name":"Etnia","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":152555,"Bytes":5061413,"UnitPrice":"0.99"} +{"TrackId":249,"Name":"Quilombo Groove [Instrumental]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":151823,"Bytes":5042447,"UnitPrice":"0.99"} +{"TrackId":250,"Name":"Macô","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":249600,"Bytes":8253934,"UnitPrice":"0.99"} +{"TrackId":251,"Name":"Um Passeio No Mundo Livre","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":240091,"Bytes":7984291,"UnitPrice":"0.99"} +{"TrackId":252,"Name":"Samba Do Lado","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":227317,"Bytes":7541688,"UnitPrice":"0.99"} +{"TrackId":253,"Name":"Maracatu Atômico","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":284264,"Bytes":9670057,"UnitPrice":"0.99"} +{"TrackId":254,"Name":"O Encontro De Isaac Asimov Com Santos Dumont No Céu","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":99108,"Bytes":3240816,"UnitPrice":"0.99"} +{"TrackId":255,"Name":"Corpo De Lama","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":232672,"Bytes":7714954,"UnitPrice":"0.99"} +{"TrackId":256,"Name":"Sobremesa","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":240091,"Bytes":7960868,"UnitPrice":"0.99"} +{"TrackId":257,"Name":"Manguetown","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":194560,"Bytes":6475159,"UnitPrice":"0.99"} +{"TrackId":258,"Name":"Um Satélite Na Cabeça","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":126615,"Bytes":4272821,"UnitPrice":"0.99"} +{"TrackId":259,"Name":"Baiăo Ambiental [Instrumental]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":152659,"Bytes":5198539,"UnitPrice":"0.99"} +{"TrackId":260,"Name":"Sangue De Bairro","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":132231,"Bytes":4415557,"UnitPrice":"0.99"} +{"TrackId":261,"Name":"Enquanto O Mundo Explode","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":88764,"Bytes":2968650,"UnitPrice":"0.99"} +{"TrackId":262,"Name":"Interlude Zumbi","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":71627,"Bytes":2408550,"UnitPrice":"0.99"} +{"TrackId":263,"Name":"Criança De Domingo","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":208222,"Bytes":6984813,"UnitPrice":"0.99"} +{"TrackId":264,"Name":"Amor De Muito","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":175333,"Bytes":5881293,"UnitPrice":"0.99"} +{"TrackId":265,"Name":"Samidarish [Instrumental]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":272431,"Bytes":8911641,"UnitPrice":"0.99"} +{"TrackId":266,"Name":"Maracatu Atômico [Atomic Version]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":273084,"Bytes":9019677,"UnitPrice":"0.99"} +{"TrackId":267,"Name":"Maracatu Atômico [Ragga Mix]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":210155,"Bytes":6986421,"UnitPrice":"0.99"} +{"TrackId":268,"Name":"Maracatu Atômico [Trip Hop]","AlbumId":24,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science","Milliseconds":221492,"Bytes":7380787,"UnitPrice":"0.99"} +{"TrackId":269,"Name":"Banditismo Por Uma Questa","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":307095,"Bytes":10251097,"UnitPrice":"0.99"} +{"TrackId":270,"Name":"Banditismo Por Uma Questa","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":243644,"Bytes":8147224,"UnitPrice":"0.99"} +{"TrackId":271,"Name":"Rios Pontes & Overdrives","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":286720,"Bytes":9659152,"UnitPrice":"0.99"} +{"TrackId":272,"Name":"Cidade","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":216346,"Bytes":7241817,"UnitPrice":"0.99"} +{"TrackId":273,"Name":"Praiera","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":183640,"Bytes":6172781,"UnitPrice":"0.99"} +{"TrackId":274,"Name":"Samba Makossa","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":271856,"Bytes":9095410,"UnitPrice":"0.99"} +{"TrackId":275,"Name":"Da Lama Ao Caos","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":251559,"Bytes":8378065,"UnitPrice":"0.99"} +{"TrackId":276,"Name":"Maracatu De Tiro Certeiro","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":88868,"Bytes":2901397,"UnitPrice":"0.99"} +{"TrackId":277,"Name":"Salustiano Song","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":215405,"Bytes":7183969,"UnitPrice":"0.99"} +{"TrackId":278,"Name":"Antene Se","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":248372,"Bytes":8253618,"UnitPrice":"0.99"} +{"TrackId":279,"Name":"Risoflora","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":105586,"Bytes":3536938,"UnitPrice":"0.99"} +{"TrackId":280,"Name":"Lixo Do Mangue","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":193253,"Bytes":6534200,"UnitPrice":"0.99"} +{"TrackId":281,"Name":"Computadores Fazem Arte","AlbumId":25,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":404323,"Bytes":13702771,"UnitPrice":"0.99"} +{"TrackId":282,"Name":"Girassol","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Pedro Luis/Toni Garrido","Milliseconds":249808,"Bytes":8327676,"UnitPrice":"0.99"} +{"TrackId":283,"Name":"A Sombra Da Maldade","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Da Gama/Toni Garrido","Milliseconds":230922,"Bytes":7697230,"UnitPrice":"0.99"} +{"TrackId":284,"Name":"Johnny B. Goode","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Chuck Berry","Milliseconds":254615,"Bytes":8505985,"UnitPrice":"0.99"} +{"TrackId":285,"Name":"Soldado Da Paz","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Herbert Vianna","Milliseconds":194220,"Bytes":6455080,"UnitPrice":"0.99"} +{"TrackId":286,"Name":"Firmamento","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Henry Lawes/Lazăo/Toni Garrido/Winston Foser-Vers","Milliseconds":222145,"Bytes":7402658,"UnitPrice":"0.99"} +{"TrackId":287,"Name":"Extra","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Gilberto Gil","Milliseconds":304352,"Bytes":10078050,"UnitPrice":"0.99"} +{"TrackId":288,"Name":"O Erę","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bernardo Vilhena/Bino Farias/Da Gama/Lazăo/Toni Garrido","Milliseconds":236382,"Bytes":7866924,"UnitPrice":"0.99"} +{"TrackId":289,"Name":"Podes Crer","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Toni Garrido","Milliseconds":232280,"Bytes":7747747,"UnitPrice":"0.99"} +{"TrackId":290,"Name":"A Estrada","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Toni Garrido","Milliseconds":248842,"Bytes":8275673,"UnitPrice":"0.99"} +{"TrackId":291,"Name":"Berlim","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Da Gama/Toni Garrido","Milliseconds":207542,"Bytes":6920424,"UnitPrice":"0.99"} +{"TrackId":292,"Name":"Já Foi","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Toni Garrido","Milliseconds":221544,"Bytes":7388466,"UnitPrice":"0.99"} +{"TrackId":293,"Name":"Onde Vocę Mora?","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Marisa Monte/Nando Reis","Milliseconds":256026,"Bytes":8502588,"UnitPrice":"0.99"} +{"TrackId":294,"Name":"Pensamento","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gamma/Lazăo/Rás Bernard","Milliseconds":173008,"Bytes":5748424,"UnitPrice":"0.99"} +{"TrackId":295,"Name":"Conciliaçăo","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Da Gama/Lazăo/Rás Bernardo","Milliseconds":257619,"Bytes":8552474,"UnitPrice":"0.99"} +{"TrackId":296,"Name":"Realidade Virtual","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Toni Garrido","Milliseconds":195239,"Bytes":6503533,"UnitPrice":"0.99"} +{"TrackId":297,"Name":"Mensagem","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bino Farias/Da Gama/Lazăo/Rás Bernardo","Milliseconds":225332,"Bytes":7488852,"UnitPrice":"0.99"} +{"TrackId":298,"Name":"A Cor Do Sol","AlbumId":26,"MediaTypeId":1,"GenreId":8,"Composer":"Bernardo Vilhena/Da Gama/Lazăo","Milliseconds":231392,"Bytes":7663348,"UnitPrice":"0.99"} +{"TrackId":299,"Name":"Onde Vocę Mora?","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Marisa Monte/Nando Reis","Milliseconds":298396,"Bytes":10056970,"UnitPrice":"0.99"} +{"TrackId":300,"Name":"O Erę","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido","Milliseconds":206942,"Bytes":6950332,"UnitPrice":"0.99"} +{"TrackId":301,"Name":"A Sombra Da Maldade","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Da Gama/Toni Garrido","Milliseconds":285231,"Bytes":9544383,"UnitPrice":"0.99"} +{"TrackId":302,"Name":"A Estrada","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Da Gama/Lazao/Toni Garrido","Milliseconds":282174,"Bytes":9344477,"UnitPrice":"0.99"} +{"TrackId":303,"Name":"Falar A Verdade","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bino/Da Gama/Ras Bernardo","Milliseconds":244950,"Bytes":8189093,"UnitPrice":"0.99"} +{"TrackId":304,"Name":"Firmamento","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Harry Lawes/Winston Foster-Vers","Milliseconds":225488,"Bytes":7507866,"UnitPrice":"0.99"} +{"TrackId":305,"Name":"Pensamento","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bino/Da Gama/Ras Bernardo","Milliseconds":192391,"Bytes":6399761,"UnitPrice":"0.99"} +{"TrackId":306,"Name":"Realidade Virtual","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bino/Da Gamma/Lazao/Toni Garrido","Milliseconds":240300,"Bytes":8069934,"UnitPrice":"0.99"} +{"TrackId":307,"Name":"Doutor","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bino/Da Gama/Toni Garrido","Milliseconds":178155,"Bytes":5950952,"UnitPrice":"0.99"} +{"TrackId":308,"Name":"Na Frente Da TV","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bino/Da Gama/Lazao/Ras Bernardo","Milliseconds":289750,"Bytes":9633659,"UnitPrice":"0.99"} +{"TrackId":309,"Name":"Downtown","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Cidade Negra","Milliseconds":239725,"Bytes":8024386,"UnitPrice":"0.99"} +{"TrackId":310,"Name":"Sábado A Noite","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Lulu Santos","Milliseconds":267363,"Bytes":8895073,"UnitPrice":"0.99"} +{"TrackId":311,"Name":"A Cor Do Sol","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Bernardo Vilhena/Da Gama/Lazao","Milliseconds":273031,"Bytes":9142937,"UnitPrice":"0.99"} +{"TrackId":312,"Name":"Eu Também Quero Beijar","AlbumId":27,"MediaTypeId":1,"GenreId":8,"Composer":"Fausto Nilo/Moraes Moreira/Pepeu Gomes","Milliseconds":211147,"Bytes":7029400,"UnitPrice":"0.99"} +{"TrackId":313,"Name":"Noite Do Prazer","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":311353,"Bytes":10309980,"UnitPrice":"0.99"} +{"TrackId":314,"Name":"Ŕ Francesa","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":244532,"Bytes":8150846,"UnitPrice":"0.99"} +{"TrackId":315,"Name":"Cada Um Cada Um (A Namoradeira)","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":253492,"Bytes":8441034,"UnitPrice":"0.99"} +{"TrackId":316,"Name":"Linha Do Equador","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":244715,"Bytes":8123466,"UnitPrice":"0.99"} +{"TrackId":317,"Name":"Amor Demais","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":254040,"Bytes":8420093,"UnitPrice":"0.99"} +{"TrackId":318,"Name":"Férias","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":264202,"Bytes":8731945,"UnitPrice":"0.99"} +{"TrackId":319,"Name":"Gostava Tanto De Vocę","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":230452,"Bytes":7685326,"UnitPrice":"0.99"} +{"TrackId":320,"Name":"Flor Do Futuro","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":275748,"Bytes":9205941,"UnitPrice":"0.99"} +{"TrackId":321,"Name":"Felicidade Urgente","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":266605,"Bytes":8873358,"UnitPrice":"0.99"} +{"TrackId":322,"Name":"Livre Pra Viver","AlbumId":28,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":214595,"Bytes":7111596,"UnitPrice":"0.99"} +{"TrackId":323,"Name":"Dig-Dig, Lambe-Lambe (Ao Vivo)","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Cassiano Costa/Cintia Maviane/J.F./Lucas Costa","Milliseconds":205479,"Bytes":6892516,"UnitPrice":"0.99"} +{"TrackId":324,"Name":"Pererę","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Augusto Conceiçăo/Chiclete Com Banana","Milliseconds":198661,"Bytes":6643207,"UnitPrice":"0.99"} +{"TrackId":325,"Name":"TriboTchan","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Cal Adan/Paulo Levi","Milliseconds":194194,"Bytes":6507950,"UnitPrice":"0.99"} +{"TrackId":326,"Name":"Tapa Aqui, Descobre Ali","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Paulo Levi/W. Rangel","Milliseconds":188630,"Bytes":6327391,"UnitPrice":"0.99"} +{"TrackId":327,"Name":"Daniela","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Jorge Cardoso/Pierre Onasis","Milliseconds":230791,"Bytes":7748006,"UnitPrice":"0.99"} +{"TrackId":328,"Name":"Bate Lata","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Fábio Nolasco/Gal Sales/Ivan Brasil","Milliseconds":206733,"Bytes":7034985,"UnitPrice":"0.99"} +{"TrackId":329,"Name":"Garotas do Brasil","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira","Milliseconds":210155,"Bytes":6973625,"UnitPrice":"0.99"} +{"TrackId":330,"Name":"Levada do Amor (Ailoviu)","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Luiz Wanderley/Paulo Levi","Milliseconds":190093,"Bytes":6457752,"UnitPrice":"0.99"} +{"TrackId":331,"Name":"Lavadeira","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Do Vale, Valverde/Gal Oliveira/Luciano Pinto","Milliseconds":214256,"Bytes":7254147,"UnitPrice":"0.99"} +{"TrackId":332,"Name":"Reboladeira","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill","Milliseconds":210599,"Bytes":7027525,"UnitPrice":"0.99"} +{"TrackId":333,"Name":"É que Nessa Encarnaçăo Eu Nasci Manga","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Lucina/Luli","Milliseconds":196519,"Bytes":6568081,"UnitPrice":"0.99"} +{"TrackId":334,"Name":"Reggae Tchan","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Cal Adan/Del Rey, Tension/Edu Casanova","Milliseconds":206654,"Bytes":6931328,"UnitPrice":"0.99"} +{"TrackId":335,"Name":"My Love","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Jauperi/Zeu Góes","Milliseconds":203493,"Bytes":6772813,"UnitPrice":"0.99"} +{"TrackId":336,"Name":"Latinha de Cerveja","AlbumId":29,"MediaTypeId":1,"GenreId":9,"Composer":"Adriano Bernandes/Edmar Neves","Milliseconds":166687,"Bytes":5532564,"UnitPrice":"0.99"} +{"TrackId":337,"Name":"You Shook Me","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"J B Lenoir/Willie Dixon","Milliseconds":315951,"Bytes":10249958,"UnitPrice":"0.99"} +{"TrackId":338,"Name":"I Can't Quit You Baby","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Willie Dixon","Milliseconds":263836,"Bytes":8581414,"UnitPrice":"0.99"} +{"TrackId":339,"Name":"Communication Breakdown","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":192653,"Bytes":6287257,"UnitPrice":"0.99"} +{"TrackId":340,"Name":"Dazed and Confused","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":401920,"Bytes":13035765,"UnitPrice":"0.99"} +{"TrackId":341,"Name":"The Girl I Love She Got Long Black Wavy Hair","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant","Milliseconds":183327,"Bytes":5995686,"UnitPrice":"0.99"} +{"TrackId":342,"Name":"What is and Should Never Be","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":260675,"Bytes":8497116,"UnitPrice":"0.99"} +{"TrackId":343,"Name":"Communication Breakdown(2)","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":161149,"Bytes":5261022,"UnitPrice":"0.99"} +{"TrackId":344,"Name":"Travelling Riverside Blues","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Johnson/Robert Plant","Milliseconds":312032,"Bytes":10232581,"UnitPrice":"0.99"} +{"TrackId":345,"Name":"Whole Lotta Love","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon","Milliseconds":373394,"Bytes":12258175,"UnitPrice":"0.99"} +{"TrackId":346,"Name":"Somethin' Else","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Bob Cochran/Sharon Sheeley","Milliseconds":127869,"Bytes":4165650,"UnitPrice":"0.99"} +{"TrackId":347,"Name":"Communication Breakdown(3)","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":185260,"Bytes":6041133,"UnitPrice":"0.99"} +{"TrackId":348,"Name":"I Can't Quit You Baby(2)","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Willie Dixon","Milliseconds":380551,"Bytes":12377615,"UnitPrice":"0.99"} +{"TrackId":349,"Name":"You Shook Me(2)","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"J B Lenoir/Willie Dixon","Milliseconds":619467,"Bytes":20138673,"UnitPrice":"0.99"} +{"TrackId":350,"Name":"How Many More Times","AlbumId":30,"MediaTypeId":1,"GenreId":1,"Composer":"Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant","Milliseconds":711836,"Bytes":23092953,"UnitPrice":"0.99"} +{"TrackId":351,"Name":"Debra Kadabra","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":234553,"Bytes":7649679,"UnitPrice":"0.99"} +{"TrackId":352,"Name":"Carolina Hard-Core Ecstasy","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":359680,"Bytes":11731061,"UnitPrice":"0.99"} +{"TrackId":353,"Name":"Sam With The Showing Scalp Flat Top","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Don Van Vliet","Milliseconds":171284,"Bytes":5572993,"UnitPrice":"0.99"} +{"TrackId":354,"Name":"Poofter's Froth Wyoming Plans Ahead","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":183902,"Bytes":6007019,"UnitPrice":"0.99"} +{"TrackId":355,"Name":"200 Years Old","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":272561,"Bytes":8912465,"UnitPrice":"0.99"} +{"TrackId":356,"Name":"Cucamonga","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":144483,"Bytes":4728586,"UnitPrice":"0.99"} +{"TrackId":357,"Name":"Advance Romance","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":677694,"Bytes":22080051,"UnitPrice":"0.99"} +{"TrackId":358,"Name":"Man With The Woman Head","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Don Van Vliet","Milliseconds":88894,"Bytes":2922044,"UnitPrice":"0.99"} +{"TrackId":359,"Name":"Muffin Man","AlbumId":31,"MediaTypeId":1,"GenreId":1,"Composer":"Frank Zappa","Milliseconds":332878,"Bytes":10891682,"UnitPrice":"0.99"} +{"TrackId":360,"Name":"Vai-Vai 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":276349,"Bytes":9402241,"UnitPrice":"0.99"} +{"TrackId":361,"Name":"X-9 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":273920,"Bytes":9310370,"UnitPrice":"0.99"} +{"TrackId":362,"Name":"Gavioes 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":282723,"Bytes":9616640,"UnitPrice":"0.99"} +{"TrackId":363,"Name":"Nene 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":284969,"Bytes":9694508,"UnitPrice":"0.99"} +{"TrackId":364,"Name":"Rosas De Ouro 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":284342,"Bytes":9721084,"UnitPrice":"0.99"} +{"TrackId":365,"Name":"Mocidade Alegre 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":282488,"Bytes":9599937,"UnitPrice":"0.99"} +{"TrackId":366,"Name":"Camisa Verde 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":283454,"Bytes":9633755,"UnitPrice":"0.99"} +{"TrackId":367,"Name":"Leandro De Itaquera 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":274808,"Bytes":9451845,"UnitPrice":"0.99"} +{"TrackId":368,"Name":"Tucuruvi 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":287921,"Bytes":9883335,"UnitPrice":"0.99"} +{"TrackId":369,"Name":"Aguia De Ouro 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":284160,"Bytes":9698729,"UnitPrice":"0.99"} +{"TrackId":370,"Name":"Ipiranga 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":248293,"Bytes":8522591,"UnitPrice":"0.99"} +{"TrackId":371,"Name":"Morro Da Casa Verde 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":284708,"Bytes":9718778,"UnitPrice":"0.99"} +{"TrackId":372,"Name":"Perola Negra 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":281626,"Bytes":9619196,"UnitPrice":"0.99"} +{"TrackId":373,"Name":"Sao Lucas 2001","AlbumId":32,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":296254,"Bytes":10020122,"UnitPrice":"0.99"} +{"TrackId":374,"Name":"Guanabara","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Marcos Valle","Milliseconds":247614,"Bytes":8499591,"UnitPrice":"0.99"} +{"TrackId":375,"Name":"Mas Que Nada","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Jorge Ben","Milliseconds":248398,"Bytes":8255254,"UnitPrice":"0.99"} +{"TrackId":376,"Name":"Vôo Sobre o Horizonte","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"J.r.Bertami/Parana","Milliseconds":225097,"Bytes":7528825,"UnitPrice":"0.99"} +{"TrackId":377,"Name":"A Paz","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Donato/Gilberto Gil","Milliseconds":263183,"Bytes":8619173,"UnitPrice":"0.99"} +{"TrackId":378,"Name":"Wave (Vou te Contar)","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Antonio Carlos Jobim","Milliseconds":271647,"Bytes":9057557,"UnitPrice":"0.99"} +{"TrackId":379,"Name":"Água de Beber","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Antonio Carlos Jobim/Vinicius de Moraes","Milliseconds":146677,"Bytes":4866476,"UnitPrice":"0.99"} +{"TrackId":380,"Name":"Samba da Bençaco","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Baden Powell/Vinicius de Moraes","Milliseconds":282200,"Bytes":9440676,"UnitPrice":"0.99"} +{"TrackId":381,"Name":"Pode Parar","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Jorge Vercilo/Jota Maranhao","Milliseconds":179408,"Bytes":6046678,"UnitPrice":"0.99"} +{"TrackId":382,"Name":"Menino do Rio","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":262713,"Bytes":8737489,"UnitPrice":"0.99"} +{"TrackId":383,"Name":"Ando Meio Desligado","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso","Milliseconds":195813,"Bytes":6547648,"UnitPrice":"0.99"} +{"TrackId":384,"Name":"Mistério da Raça","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Luiz Melodia/Ricardo Augusto","Milliseconds":184320,"Bytes":6191752,"UnitPrice":"0.99"} +{"TrackId":385,"Name":"All Star","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Nando Reis","Milliseconds":176326,"Bytes":5891697,"UnitPrice":"0.99"} +{"TrackId":386,"Name":"Menina Bonita","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Alexandre Brazil/Pedro Luis/Rodrigo Cabelo","Milliseconds":237087,"Bytes":7938246,"UnitPrice":"0.99"} +{"TrackId":387,"Name":"Pescador de Ilusőes","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Macelo Yuka/O Rappa","Milliseconds":245524,"Bytes":8267067,"UnitPrice":"0.99"} +{"TrackId":388,"Name":"Ŕ Vontade (Live Mix)","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Bombom/Ed Motta","Milliseconds":180636,"Bytes":5972430,"UnitPrice":"0.99"} +{"TrackId":389,"Name":"Maria Fumaça","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Luiz Carlos/Oberdan","Milliseconds":141008,"Bytes":4743149,"UnitPrice":"0.99"} +{"TrackId":390,"Name":"Sambassim (dj patife remix)","AlbumId":33,"MediaTypeId":1,"GenreId":7,"Composer":"Alba Carvalho/Fernando Porto","Milliseconds":213655,"Bytes":7243166,"UnitPrice":"0.99"} +{"TrackId":391,"Name":"Garota De Ipanema","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":279536,"Bytes":9141343,"UnitPrice":"0.99"} +{"TrackId":392,"Name":"Tim Tim Por Tim Tim","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":213237,"Bytes":7143328,"UnitPrice":"0.99"} +{"TrackId":393,"Name":"Tarde Em Itapoă","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":313704,"Bytes":10344491,"UnitPrice":"0.99"} +{"TrackId":394,"Name":"Tanto Tempo","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":170292,"Bytes":5572240,"UnitPrice":"0.99"} +{"TrackId":395,"Name":"Eu Vim Da Bahia - Live","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":157988,"Bytes":5115428,"UnitPrice":"0.99"} +{"TrackId":396,"Name":"Alô Alô Marciano","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":238106,"Bytes":8013065,"UnitPrice":"0.99"} +{"TrackId":397,"Name":"Linha Do Horizonte","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":279484,"Bytes":9275929,"UnitPrice":"0.99"} +{"TrackId":398,"Name":"Only A Dream In Rio","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":371356,"Bytes":12192989,"UnitPrice":"0.99"} +{"TrackId":399,"Name":"Abrir A Porta","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":271960,"Bytes":8991141,"UnitPrice":"0.99"} +{"TrackId":400,"Name":"Alice","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":165982,"Bytes":5594341,"UnitPrice":"0.99"} +{"TrackId":401,"Name":"Momentos Que Marcam","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":280137,"Bytes":9313740,"UnitPrice":"0.99"} +{"TrackId":402,"Name":"Um Jantar Pra Dois","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":237714,"Bytes":7819755,"UnitPrice":"0.99"} +{"TrackId":403,"Name":"Bumbo Da Mangueira","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":270158,"Bytes":9073350,"UnitPrice":"0.99"} +{"TrackId":404,"Name":"Mr Funk Samba","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":213890,"Bytes":7102545,"UnitPrice":"0.99"} +{"TrackId":405,"Name":"Santo Antonio","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":162716,"Bytes":5492069,"UnitPrice":"0.99"} +{"TrackId":406,"Name":"Por Vocę","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":205557,"Bytes":6792493,"UnitPrice":"0.99"} +{"TrackId":407,"Name":"Só Tinha De Ser Com Vocę","AlbumId":34,"MediaTypeId":1,"GenreId":7,"Composer":"Vários","Milliseconds":389642,"Bytes":13085596,"UnitPrice":"0.99"} +{"TrackId":408,"Name":"Free Speech For The Dumb","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Molaney/Morris/Roberts/Wainwright","Milliseconds":155428,"Bytes":5076048,"UnitPrice":"0.99"} +{"TrackId":409,"Name":"It's Electric","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Harris/Tatler","Milliseconds":213995,"Bytes":6978601,"UnitPrice":"0.99"} +{"TrackId":410,"Name":"Sabbra Cadabra","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Black Sabbath","Milliseconds":380342,"Bytes":12418147,"UnitPrice":"0.99"} +{"TrackId":411,"Name":"Turn The Page","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Seger","Milliseconds":366524,"Bytes":11946327,"UnitPrice":"0.99"} +{"TrackId":412,"Name":"Die Die My Darling","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Danzig","Milliseconds":149315,"Bytes":4867667,"UnitPrice":"0.99"} +{"TrackId":413,"Name":"Loverman","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Cave","Milliseconds":472764,"Bytes":15446975,"UnitPrice":"0.99"} +{"TrackId":414,"Name":"Mercyful Fate","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Diamond/Shermann","Milliseconds":671712,"Bytes":21942829,"UnitPrice":"0.99"} +{"TrackId":415,"Name":"Astronomy","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"A.Bouchard/J.Bouchard/S.Pearlman","Milliseconds":397531,"Bytes":13065612,"UnitPrice":"0.99"} +{"TrackId":416,"Name":"Whiskey In The Jar","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Traditional","Milliseconds":305005,"Bytes":9943129,"UnitPrice":"0.99"} +{"TrackId":417,"Name":"Tuesday's Gone","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Collins/Van Zandt","Milliseconds":545750,"Bytes":17900787,"UnitPrice":"0.99"} +{"TrackId":418,"Name":"The More I See","AlbumId":35,"MediaTypeId":1,"GenreId":3,"Composer":"Molaney/Morris/Roberts/Wainwright","Milliseconds":287973,"Bytes":9378873,"UnitPrice":"0.99"} +{"TrackId":419,"Name":"A Kind Of Magic","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Roger Taylor","Milliseconds":262608,"Bytes":8689618,"UnitPrice":"0.99"} +{"TrackId":420,"Name":"Under Pressure","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen & David Bowie","Milliseconds":236617,"Bytes":7739042,"UnitPrice":"0.99"} +{"TrackId":421,"Name":"Radio GA GA","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Roger Taylor","Milliseconds":343745,"Bytes":11358573,"UnitPrice":"0.99"} +{"TrackId":422,"Name":"I Want It All","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":241684,"Bytes":7876564,"UnitPrice":"0.99"} +{"TrackId":423,"Name":"I Want To Break Free","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"John Deacon","Milliseconds":259108,"Bytes":8552861,"UnitPrice":"0.99"} +{"TrackId":424,"Name":"Innuendo","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":387761,"Bytes":12664591,"UnitPrice":"0.99"} +{"TrackId":425,"Name":"It's A Hard Life","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Freddie Mercury","Milliseconds":249417,"Bytes":8112242,"UnitPrice":"0.99"} +{"TrackId":426,"Name":"Breakthru","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":249234,"Bytes":8150479,"UnitPrice":"0.99"} +{"TrackId":427,"Name":"Who Wants To Live Forever","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Brian May","Milliseconds":297691,"Bytes":9577577,"UnitPrice":"0.99"} +{"TrackId":428,"Name":"Headlong","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":273057,"Bytes":8921404,"UnitPrice":"0.99"} +{"TrackId":429,"Name":"The Miracle","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":294974,"Bytes":9671923,"UnitPrice":"0.99"} +{"TrackId":430,"Name":"I'm Going Slightly Mad","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":248032,"Bytes":8192339,"UnitPrice":"0.99"} +{"TrackId":431,"Name":"The Invisible Man","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":238994,"Bytes":7920353,"UnitPrice":"0.99"} +{"TrackId":432,"Name":"Hammer To Fall","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Brian May","Milliseconds":220316,"Bytes":7255404,"UnitPrice":"0.99"} +{"TrackId":433,"Name":"Friends Will Be Friends","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Freddie Mercury & John Deacon","Milliseconds":248920,"Bytes":8114582,"UnitPrice":"0.99"} +{"TrackId":434,"Name":"The Show Must Go On","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":263784,"Bytes":8526760,"UnitPrice":"0.99"} +{"TrackId":435,"Name":"One Vision","AlbumId":36,"MediaTypeId":1,"GenreId":1,"Composer":"Queen","Milliseconds":242599,"Bytes":7936928,"UnitPrice":"0.99"} +{"TrackId":436,"Name":"Detroit Rock City","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, B. Ezrin","Milliseconds":218880,"Bytes":7146372,"UnitPrice":"0.99"} +{"TrackId":437,"Name":"Black Diamond","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley","Milliseconds":314148,"Bytes":10266007,"UnitPrice":"0.99"} +{"TrackId":438,"Name":"Hard Luck Woman","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley","Milliseconds":216032,"Bytes":7109267,"UnitPrice":"0.99"} +{"TrackId":439,"Name":"Sure Know Something","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Vincent Poncia","Milliseconds":242468,"Bytes":7939886,"UnitPrice":"0.99"} +{"TrackId":440,"Name":"Love Gun","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley","Milliseconds":196257,"Bytes":6424915,"UnitPrice":"0.99"} +{"TrackId":441,"Name":"Deuce","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":185077,"Bytes":6097210,"UnitPrice":"0.99"} +{"TrackId":442,"Name":"Goin' Blind","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons, S. Coronel","Milliseconds":216215,"Bytes":7045314,"UnitPrice":"0.99"} +{"TrackId":443,"Name":"Shock Me","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Ace Frehley","Milliseconds":227291,"Bytes":7529336,"UnitPrice":"0.99"} +{"TrackId":444,"Name":"Do You Love Me","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, B. Ezrin, K. Fowley","Milliseconds":214987,"Bytes":6976194,"UnitPrice":"0.99"} +{"TrackId":445,"Name":"She","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons, S. Coronel","Milliseconds":248346,"Bytes":8229734,"UnitPrice":"0.99"} +{"TrackId":446,"Name":"I Was Made For Loving You","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Vincent Poncia, Desmond Child","Milliseconds":271360,"Bytes":9018078,"UnitPrice":"0.99"} +{"TrackId":447,"Name":"Shout It Out Loud","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons, B. Ezrin","Milliseconds":219742,"Bytes":7194424,"UnitPrice":"0.99"} +{"TrackId":448,"Name":"God Of Thunder","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley","Milliseconds":255791,"Bytes":8309077,"UnitPrice":"0.99"} +{"TrackId":449,"Name":"Calling Dr. Love","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":225332,"Bytes":7395034,"UnitPrice":"0.99"} +{"TrackId":450,"Name":"Beth","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"S. Penridge, Bob Ezrin, Peter Criss","Milliseconds":166974,"Bytes":5360574,"UnitPrice":"0.99"} +{"TrackId":451,"Name":"Strutter","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons","Milliseconds":192496,"Bytes":6317021,"UnitPrice":"0.99"} +{"TrackId":452,"Name":"Rock And Roll All Nite","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons","Milliseconds":173609,"Bytes":5735902,"UnitPrice":"0.99"} +{"TrackId":453,"Name":"Cold Gin","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Ace Frehley","Milliseconds":262243,"Bytes":8609783,"UnitPrice":"0.99"} +{"TrackId":454,"Name":"Plaster Caster","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":207333,"Bytes":6801116,"UnitPrice":"0.99"} +{"TrackId":455,"Name":"God Gave Rock 'n' Roll To You","AlbumId":37,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin","Milliseconds":320444,"Bytes":10441590,"UnitPrice":"0.99"} +{"TrackId":456,"Name":"Heart of the Night","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":273737,"Bytes":9098263,"UnitPrice":"0.99"} +{"TrackId":457,"Name":"De La Luz","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":315219,"Bytes":10518284,"UnitPrice":"0.99"} +{"TrackId":458,"Name":"Westwood Moon","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":295627,"Bytes":9765802,"UnitPrice":"0.99"} +{"TrackId":459,"Name":"Midnight","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":266866,"Bytes":8851060,"UnitPrice":"0.99"} +{"TrackId":460,"Name":"Playtime","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":273580,"Bytes":9070880,"UnitPrice":"0.99"} +{"TrackId":461,"Name":"Surrender","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":287634,"Bytes":9422926,"UnitPrice":"0.99"} +{"TrackId":462,"Name":"Valentino's","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":296124,"Bytes":9848545,"UnitPrice":"0.99"} +{"TrackId":463,"Name":"Believe","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":310778,"Bytes":10317185,"UnitPrice":"0.99"} +{"TrackId":464,"Name":"As We Sleep","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":316865,"Bytes":10429398,"UnitPrice":"0.99"} +{"TrackId":465,"Name":"When Evening Falls","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":298135,"Bytes":9863942,"UnitPrice":"0.99"} +{"TrackId":466,"Name":"J Squared","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":288757,"Bytes":9480777,"UnitPrice":"0.99"} +{"TrackId":467,"Name":"Best Thing","AlbumId":38,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":274259,"Bytes":9069394,"UnitPrice":"0.99"} +{"TrackId":468,"Name":"Maria","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":167262,"Bytes":5484747,"UnitPrice":"0.99"} +{"TrackId":469,"Name":"Poprocks And Coke","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":158354,"Bytes":5243078,"UnitPrice":"0.99"} +{"TrackId":470,"Name":"Longview","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":234083,"Bytes":7714939,"UnitPrice":"0.99"} +{"TrackId":471,"Name":"Welcome To Paradise","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":224208,"Bytes":7406008,"UnitPrice":"0.99"} +{"TrackId":472,"Name":"Basket Case","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":181629,"Bytes":5951736,"UnitPrice":"0.99"} +{"TrackId":473,"Name":"When I Come Around","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":178364,"Bytes":5839426,"UnitPrice":"0.99"} +{"TrackId":474,"Name":"She","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":134164,"Bytes":4425128,"UnitPrice":"0.99"} +{"TrackId":475,"Name":"J.A.R. (Jason Andrew Relva)","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Dirnt -Words Green Day -Music","Milliseconds":170997,"Bytes":5645755,"UnitPrice":"0.99"} +{"TrackId":476,"Name":"Geek Stink Breath","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":135888,"Bytes":4408983,"UnitPrice":"0.99"} +{"TrackId":477,"Name":"Brain Stew","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":193149,"Bytes":6305550,"UnitPrice":"0.99"} +{"TrackId":478,"Name":"Jaded","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":90331,"Bytes":2950224,"UnitPrice":"0.99"} +{"TrackId":479,"Name":"Walking Contradiction","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":151170,"Bytes":4932366,"UnitPrice":"0.99"} +{"TrackId":480,"Name":"Stuck With Me","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":135523,"Bytes":4431357,"UnitPrice":"0.99"} +{"TrackId":481,"Name":"Hitchin' A Ride","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":171546,"Bytes":5616891,"UnitPrice":"0.99"} +{"TrackId":482,"Name":"Good Riddance (Time Of Your Life)","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":153600,"Bytes":5075241,"UnitPrice":"0.99"} +{"TrackId":483,"Name":"Redundant","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":198164,"Bytes":6481753,"UnitPrice":"0.99"} +{"TrackId":484,"Name":"Nice Guys Finish Last","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":170187,"Bytes":5604618,"UnitPrice":"0.99"} +{"TrackId":485,"Name":"Minority","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":168803,"Bytes":5535061,"UnitPrice":"0.99"} +{"TrackId":486,"Name":"Warning","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":221910,"Bytes":7343176,"UnitPrice":"0.99"} +{"TrackId":487,"Name":"Waiting","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":192757,"Bytes":6316430,"UnitPrice":"0.99"} +{"TrackId":488,"Name":"Macy's Day Parade","AlbumId":39,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong -Words Green Day -Music","Milliseconds":213420,"Bytes":7075573,"UnitPrice":"0.99"} +{"TrackId":489,"Name":"Into The Light","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale","Milliseconds":76303,"Bytes":2452653,"UnitPrice":"0.99"} +{"TrackId":490,"Name":"River Song","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale","Milliseconds":439510,"Bytes":14359478,"UnitPrice":"0.99"} +{"TrackId":491,"Name":"She Give Me ...","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale","Milliseconds":252551,"Bytes":8385478,"UnitPrice":"0.99"} +{"TrackId":492,"Name":"Don't You Cry","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale","Milliseconds":347036,"Bytes":11269612,"UnitPrice":"0.99"} +{"TrackId":493,"Name":"Love Is Blind","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale/Earl Slick","Milliseconds":344999,"Bytes":11409720,"UnitPrice":"0.99"} +{"TrackId":494,"Name":"Slave","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale/Earl Slick","Milliseconds":291892,"Bytes":9425200,"UnitPrice":"0.99"} +{"TrackId":495,"Name":"Cry For Love","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"Bossi/David Coverdale/Earl Slick","Milliseconds":293015,"Bytes":9567075,"UnitPrice":"0.99"} +{"TrackId":496,"Name":"Living On Love","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"Bossi/David Coverdale/Earl Slick","Milliseconds":391549,"Bytes":12785876,"UnitPrice":"0.99"} +{"TrackId":497,"Name":"Midnight Blue","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale/Earl Slick","Milliseconds":298631,"Bytes":9750990,"UnitPrice":"0.99"} +{"TrackId":498,"Name":"Too Many Tears","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"Adrian Vanderberg/David Coverdale","Milliseconds":359497,"Bytes":11810238,"UnitPrice":"0.99"} +{"TrackId":499,"Name":"Don't Lie To Me","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale/Earl Slick","Milliseconds":283585,"Bytes":9288007,"UnitPrice":"0.99"} +{"TrackId":500,"Name":"Wherever You May Go","AlbumId":40,"MediaTypeId":1,"GenreId":1,"Composer":"David Coverdale","Milliseconds":239699,"Bytes":7803074,"UnitPrice":"0.99"} +{"TrackId":501,"Name":"Grito De Alerta","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaga Jr.","Milliseconds":202213,"Bytes":6539422,"UnitPrice":"0.99"} +{"TrackId":502,"Name":"Năo Dá Mais Pra Segurar (Explode Coraçăo)","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":219768,"Bytes":7083012,"UnitPrice":"0.99"} +{"TrackId":503,"Name":"Começaria Tudo Outra Vez","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":196545,"Bytes":6473395,"UnitPrice":"0.99"} +{"TrackId":504,"Name":"O Que É O Que É ?","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":259291,"Bytes":8650647,"UnitPrice":"0.99"} +{"TrackId":505,"Name":"Sangrando","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaga Jr/Gonzaguinha","Milliseconds":169717,"Bytes":5494406,"UnitPrice":"0.99"} +{"TrackId":506,"Name":"Diga Lá, Coraçăo","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":255921,"Bytes":8280636,"UnitPrice":"0.99"} +{"TrackId":507,"Name":"Lindo Lago Do Amor","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaga Jr.","Milliseconds":249678,"Bytes":8353191,"UnitPrice":"0.99"} +{"TrackId":508,"Name":"Eu Apenas Queria Que Voçę Soubesse","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":155637,"Bytes":5130056,"UnitPrice":"0.99"} +{"TrackId":509,"Name":"Com A Perna No Mundo","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaga Jr.","Milliseconds":227448,"Bytes":7747108,"UnitPrice":"0.99"} +{"TrackId":510,"Name":"E Vamos Ŕ Luta","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222406,"Bytes":7585112,"UnitPrice":"0.99"} +{"TrackId":511,"Name":"Um Homem Também Chora (Guerreiro Menino)","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":207229,"Bytes":6854219,"UnitPrice":"0.99"} +{"TrackId":512,"Name":"Comportamento Geral","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaga Jr","Milliseconds":181577,"Bytes":5997444,"UnitPrice":"0.99"} +{"TrackId":513,"Name":"Ponto De Interrogaçăo","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":180950,"Bytes":5946265,"UnitPrice":"0.99"} +{"TrackId":514,"Name":"Espere Por Mim, Morena","AlbumId":41,"MediaTypeId":1,"GenreId":7,"Composer":"Gonzaguinha","Milliseconds":207072,"Bytes":6796523,"UnitPrice":"0.99"} +{"TrackId":515,"Name":"Meia-Lua Inteira","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222093,"Bytes":7466288,"UnitPrice":"0.99"} +{"TrackId":516,"Name":"Voce e Linda","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":242938,"Bytes":8050268,"UnitPrice":"0.99"} +{"TrackId":517,"Name":"Um Indio","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":195944,"Bytes":6453213,"UnitPrice":"0.99"} +{"TrackId":518,"Name":"Podres Poderes","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":259761,"Bytes":8622495,"UnitPrice":"0.99"} +{"TrackId":519,"Name":"Voce Nao Entende Nada - Cotidiano","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":421982,"Bytes":13885612,"UnitPrice":"0.99"} +{"TrackId":520,"Name":"O Estrangeiro","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":374700,"Bytes":12472890,"UnitPrice":"0.99"} +{"TrackId":521,"Name":"Menino Do Rio","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":147670,"Bytes":4862277,"UnitPrice":"0.99"} +{"TrackId":522,"Name":"Qualquer Coisa","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":193410,"Bytes":6372433,"UnitPrice":"0.99"} +{"TrackId":523,"Name":"Sampa","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":185051,"Bytes":6151831,"UnitPrice":"0.99"} +{"TrackId":524,"Name":"Queixa","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":299676,"Bytes":9953962,"UnitPrice":"0.99"} +{"TrackId":525,"Name":"O Leaozinho","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":184398,"Bytes":6098150,"UnitPrice":"0.99"} +{"TrackId":526,"Name":"Fora Da Ordem","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":354011,"Bytes":11746781,"UnitPrice":"0.99"} +{"TrackId":527,"Name":"Terra","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":401319,"Bytes":13224055,"UnitPrice":"0.99"} +{"TrackId":528,"Name":"Alegria, Alegria","AlbumId":23,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":169221,"Bytes":5497025,"UnitPrice":"0.99"} +{"TrackId":529,"Name":"Balada Do Louco","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista - Rita Lee","Milliseconds":241057,"Bytes":7852328,"UnitPrice":"0.99"} +{"TrackId":530,"Name":"Ando Meio Desligado","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista - Rita Lee - Sérgio Dias","Milliseconds":287817,"Bytes":9484504,"UnitPrice":"0.99"} +{"TrackId":531,"Name":"Top Top","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Os Mutantes - Arnolpho Lima Filho","Milliseconds":146938,"Bytes":4875374,"UnitPrice":"0.99"} +{"TrackId":532,"Name":"Baby","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Caetano Veloso","Milliseconds":177188,"Bytes":5798202,"UnitPrice":"0.99"} +{"TrackId":533,"Name":"A E O Z","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Mutantes","Milliseconds":518556,"Bytes":16873005,"UnitPrice":"0.99"} +{"TrackId":534,"Name":"Panis Et Circenses","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Caetano Veloso - Gilberto Gil","Milliseconds":125152,"Bytes":4069688,"UnitPrice":"0.99"} +{"TrackId":535,"Name":"Chăo De Estrelas","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Orestes Barbosa-Sílvio Caldas","Milliseconds":284813,"Bytes":9433620,"UnitPrice":"0.99"} +{"TrackId":536,"Name":"Vida De Cachorro","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Rita Lee - Arnaldo Baptista - Sérgio Baptista","Milliseconds":195186,"Bytes":6411149,"UnitPrice":"0.99"} +{"TrackId":537,"Name":"Bat Macumba","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Gilberto Gil - Caetano Veloso","Milliseconds":187794,"Bytes":6295223,"UnitPrice":"0.99"} +{"TrackId":538,"Name":"Desculpe Babe","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista - Rita Lee","Milliseconds":170422,"Bytes":5637959,"UnitPrice":"0.99"} +{"TrackId":539,"Name":"Rita Lee","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista/Rita Lee/Sérgio Dias","Milliseconds":189257,"Bytes":6270503,"UnitPrice":"0.99"} +{"TrackId":540,"Name":"Posso Perder Minha Mulher, Minha Măe, Desde Que Eu Tenha O Rock And Roll","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho","Milliseconds":222955,"Bytes":7346254,"UnitPrice":"0.99"} +{"TrackId":541,"Name":"Banho De Lua","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"B. de Filippi - F. Migliaci - Versăo: Fred Jorge","Milliseconds":221831,"Bytes":7232123,"UnitPrice":"0.99"} +{"TrackId":542,"Name":"Meu Refrigerador Năo Funciona","AlbumId":42,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Baptista - Rita Lee - Sérgio Dias","Milliseconds":382981,"Bytes":12495906,"UnitPrice":"0.99"} +{"TrackId":543,"Name":"Burn","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale/Lord/Paice","Milliseconds":453955,"Bytes":14775708,"UnitPrice":"0.99"} +{"TrackId":544,"Name":"Stormbringer","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale","Milliseconds":277133,"Bytes":9050022,"UnitPrice":"0.99"} +{"TrackId":545,"Name":"Gypsy","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale/Hughes/Lord/Paice","Milliseconds":339173,"Bytes":11046952,"UnitPrice":"0.99"} +{"TrackId":546,"Name":"Lady Double Dealer","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale","Milliseconds":233586,"Bytes":7608759,"UnitPrice":"0.99"} +{"TrackId":547,"Name":"Mistreated","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale","Milliseconds":758648,"Bytes":24596235,"UnitPrice":"0.99"} +{"TrackId":548,"Name":"Smoke On The Water","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Gillan/Glover/Lord/Paice","Milliseconds":618031,"Bytes":20103125,"UnitPrice":"0.99"} +{"TrackId":549,"Name":"You Fool No One","AlbumId":43,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale/Lord/Paice","Milliseconds":804101,"Bytes":26369966,"UnitPrice":"0.99"} +{"TrackId":550,"Name":"Custard Pie","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":253962,"Bytes":8348257,"UnitPrice":"0.99"} +{"TrackId":551,"Name":"The Rover","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":337084,"Bytes":11011286,"UnitPrice":"0.99"} +{"TrackId":552,"Name":"In My Time Of Dying","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":666017,"Bytes":21676727,"UnitPrice":"0.99"} +{"TrackId":553,"Name":"Houses Of The Holy","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":242494,"Bytes":7972503,"UnitPrice":"0.99"} +{"TrackId":554,"Name":"Trampled Under Foot","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones","Milliseconds":336692,"Bytes":11154468,"UnitPrice":"0.99"} +{"TrackId":555,"Name":"Kashmir","AlbumId":44,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham","Milliseconds":508604,"Bytes":16686580,"UnitPrice":"0.99"} +{"TrackId":556,"Name":"Imperatriz","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Guga/Marquinho Lessa/Tuninho Professor","Milliseconds":339173,"Bytes":11348710,"UnitPrice":"0.99"} +{"TrackId":557,"Name":"Beija-Flor","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Caruso/Cleber/Deo/Osmar","Milliseconds":327000,"Bytes":10991159,"UnitPrice":"0.99"} +{"TrackId":558,"Name":"Viradouro","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto","Milliseconds":344320,"Bytes":11484362,"UnitPrice":"0.99"} +{"TrackId":559,"Name":"Mocidade","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Domenil/J. Brito/Joaozinho/Rap, Marcelo Do","Milliseconds":261720,"Bytes":8817757,"UnitPrice":"0.99"} +{"TrackId":560,"Name":"Unidos Da Tijuca","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir","Milliseconds":338834,"Bytes":11440689,"UnitPrice":"0.99"} +{"TrackId":561,"Name":"Salgueiro","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da","Milliseconds":305920,"Bytes":10294741,"UnitPrice":"0.99"} +{"TrackId":562,"Name":"Mangueira","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Bizuca/Clóvis Pę/Gilson Bernini/Marelo D'Aguia","Milliseconds":298318,"Bytes":9999506,"UnitPrice":"0.99"} +{"TrackId":563,"Name":"Uniăo Da Ilha","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Dito/Djalma Falcao/Ilha, Almir Da/Márcio André","Milliseconds":330945,"Bytes":11100945,"UnitPrice":"0.99"} +{"TrackId":564,"Name":"Grande Rio","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Carlos Santos/Ciro/Claudio Russo/Zé Luiz","Milliseconds":307252,"Bytes":10251428,"UnitPrice":"0.99"} +{"TrackId":565,"Name":"Portela","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno","Milliseconds":319608,"Bytes":10712216,"UnitPrice":"0.99"} +{"TrackId":566,"Name":"Caprichosos","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Gule/Jorge 101/Lequinho/Luiz Piao","Milliseconds":351320,"Bytes":11870956,"UnitPrice":"0.99"} +{"TrackId":567,"Name":"Tradiçăo","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Adalto Magalha/Lourenco","Milliseconds":269165,"Bytes":9114880,"UnitPrice":"0.99"} +{"TrackId":568,"Name":"Império Serrano","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao","Milliseconds":334942,"Bytes":11161196,"UnitPrice":"0.99"} +{"TrackId":569,"Name":"Tuiuti","AlbumId":45,"MediaTypeId":1,"GenreId":7,"Composer":"Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som","Milliseconds":259657,"Bytes":8749492,"UnitPrice":"0.99"} +{"TrackId":570,"Name":"(Da Le) Yaleo","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"Santana","Milliseconds":353488,"Bytes":11769507,"UnitPrice":"0.99"} +{"TrackId":571,"Name":"Love Of My Life","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana & Dave Matthews","Milliseconds":347820,"Bytes":11634337,"UnitPrice":"0.99"} +{"TrackId":572,"Name":"Put Your Lights On","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"E. Shrody","Milliseconds":285178,"Bytes":9394769,"UnitPrice":"0.99"} +{"TrackId":573,"Name":"Africa Bamba","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo","Milliseconds":282827,"Bytes":9492487,"UnitPrice":"0.99"} +{"TrackId":574,"Name":"Smooth","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"M. Itaal Shur & Rob Thomas","Milliseconds":298161,"Bytes":9867455,"UnitPrice":"0.99"} +{"TrackId":575,"Name":"Do You Like The Way","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"L. Hill","Milliseconds":354899,"Bytes":11741062,"UnitPrice":"0.99"} +{"TrackId":576,"Name":"Maria Maria","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow","Milliseconds":262635,"Bytes":8664601,"UnitPrice":"0.99"} +{"TrackId":577,"Name":"Migra","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"R. Taha, Carlos Santana & T. Lindsay","Milliseconds":329064,"Bytes":10963305,"UnitPrice":"0.99"} +{"TrackId":578,"Name":"Corazon Espinado","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"F. Olivera","Milliseconds":276114,"Bytes":9206802,"UnitPrice":"0.99"} +{"TrackId":579,"Name":"Wishing It Was","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"Eale-Eye Cherry, M. Simpson, J. King & M. Nishita","Milliseconds":292832,"Bytes":9771348,"UnitPrice":"0.99"} +{"TrackId":580,"Name":"El Farol","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana & KC Porter","Milliseconds":291160,"Bytes":9599353,"UnitPrice":"0.99"} +{"TrackId":581,"Name":"Primavera","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"KC Porter & JB Eckl","Milliseconds":378618,"Bytes":12504234,"UnitPrice":"0.99"} +{"TrackId":582,"Name":"The Calling","AlbumId":46,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana & C. Thompson","Milliseconds":747755,"Bytes":24703884,"UnitPrice":"0.99"} +{"TrackId":583,"Name":"Soluçăo","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":247431,"Bytes":8100449,"UnitPrice":"0.99"} +{"TrackId":584,"Name":"Manuel","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":230269,"Bytes":7677671,"UnitPrice":"0.99"} +{"TrackId":585,"Name":"Entre E Ouça","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":286302,"Bytes":9391004,"UnitPrice":"0.99"} +{"TrackId":586,"Name":"Um Contrato Com Deus","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":202501,"Bytes":6636465,"UnitPrice":"0.99"} +{"TrackId":587,"Name":"Um Jantar Pra Dois","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":244009,"Bytes":8021589,"UnitPrice":"0.99"} +{"TrackId":588,"Name":"Vamos Dançar","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":226194,"Bytes":7617432,"UnitPrice":"0.99"} +{"TrackId":589,"Name":"Um Love","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":181603,"Bytes":6095524,"UnitPrice":"0.99"} +{"TrackId":590,"Name":"Seis Da Tarde","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":238445,"Bytes":7935898,"UnitPrice":"0.99"} +{"TrackId":591,"Name":"Baixo Rio","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":198008,"Bytes":6521676,"UnitPrice":"0.99"} +{"TrackId":592,"Name":"Sombras Do Meu Destino","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":280685,"Bytes":9161539,"UnitPrice":"0.99"} +{"TrackId":593,"Name":"Do You Have Other Loves?","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":295235,"Bytes":9604273,"UnitPrice":"0.99"} +{"TrackId":594,"Name":"Agora Que O Dia Acordou","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":323213,"Bytes":10572752,"UnitPrice":"0.99"} +{"TrackId":595,"Name":"Já!!!","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":217782,"Bytes":7103608,"UnitPrice":"0.99"} +{"TrackId":596,"Name":"A Rua","AlbumId":47,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":238027,"Bytes":7930264,"UnitPrice":"0.99"} +{"TrackId":597,"Name":"Now's The Time","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":197459,"Bytes":6358868,"UnitPrice":"0.99"} +{"TrackId":598,"Name":"Jeru","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":193410,"Bytes":6222536,"UnitPrice":"0.99"} +{"TrackId":599,"Name":"Compulsion","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":345025,"Bytes":11254474,"UnitPrice":"0.99"} +{"TrackId":600,"Name":"Tempus Fugit","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":231784,"Bytes":7548434,"UnitPrice":"0.99"} +{"TrackId":601,"Name":"Walkin'","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":807392,"Bytes":26411634,"UnitPrice":"0.99"} +{"TrackId":602,"Name":"'Round Midnight","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":357459,"Bytes":11590284,"UnitPrice":"0.99"} +{"TrackId":603,"Name":"Bye Bye Blackbird","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":476003,"Bytes":15549224,"UnitPrice":"0.99"} +{"TrackId":604,"Name":"New Rhumba","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":277968,"Bytes":9018024,"UnitPrice":"0.99"} +{"TrackId":605,"Name":"Generique","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":168777,"Bytes":5437017,"UnitPrice":"0.99"} +{"TrackId":606,"Name":"Summertime","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":200437,"Bytes":6461370,"UnitPrice":"0.99"} +{"TrackId":607,"Name":"So What","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":564009,"Bytes":18360449,"UnitPrice":"0.99"} +{"TrackId":608,"Name":"The Pan Piper","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":233769,"Bytes":7593713,"UnitPrice":"0.99"} +{"TrackId":609,"Name":"Someday My Prince Will Come","AlbumId":48,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":544078,"Bytes":17890773,"UnitPrice":"0.99"} +{"TrackId":610,"Name":"My Funny Valentine (Live)","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":907520,"Bytes":29416781,"UnitPrice":"0.99"} +{"TrackId":611,"Name":"E.S.P.","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":330684,"Bytes":11079866,"UnitPrice":"0.99"} +{"TrackId":612,"Name":"Nefertiti","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":473495,"Bytes":15478450,"UnitPrice":"0.99"} +{"TrackId":613,"Name":"Petits Machins (Little Stuff)","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":487392,"Bytes":16131272,"UnitPrice":"0.99"} +{"TrackId":614,"Name":"Miles Runs The Voodoo Down","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":843964,"Bytes":27967919,"UnitPrice":"0.99"} +{"TrackId":615,"Name":"Little Church (Live)","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":196101,"Bytes":6273225,"UnitPrice":"0.99"} +{"TrackId":616,"Name":"Black Satin","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":316682,"Bytes":10529483,"UnitPrice":"0.99"} +{"TrackId":617,"Name":"Jean Pierre (Live)","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":243461,"Bytes":7955114,"UnitPrice":"0.99"} +{"TrackId":618,"Name":"Time After Time","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":220734,"Bytes":7292197,"UnitPrice":"0.99"} +{"TrackId":619,"Name":"Portia","AlbumId":49,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis","Milliseconds":378775,"Bytes":12520126,"UnitPrice":"0.99"} +{"TrackId":620,"Name":"Space Truckin'","AlbumId":50,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore/Gillan/Glover/Lord/Paice","Milliseconds":1196094,"Bytes":39267613,"UnitPrice":"0.99"} +{"TrackId":621,"Name":"Going Down / Highway Star","AlbumId":50,"MediaTypeId":1,"GenreId":1,"Composer":"Gillan/Glover/Lord/Nix - Blackmore/Paice","Milliseconds":913658,"Bytes":29846063,"UnitPrice":"0.99"} +{"TrackId":622,"Name":"Mistreated (Alternate Version)","AlbumId":50,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore/Coverdale","Milliseconds":854700,"Bytes":27775442,"UnitPrice":"0.99"} +{"TrackId":623,"Name":"You Fool No One (Alternate Version)","AlbumId":50,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore/Coverdale/Lord/Paice","Milliseconds":763924,"Bytes":24887209,"UnitPrice":"0.99"} +{"TrackId":624,"Name":"Jeepers Creepers","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":185965,"Bytes":5991903,"UnitPrice":"0.99"} +{"TrackId":625,"Name":"Blue Rythm Fantasy","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":348212,"Bytes":11204006,"UnitPrice":"0.99"} +{"TrackId":626,"Name":"Drum Boogie","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":191555,"Bytes":6185636,"UnitPrice":"0.99"} +{"TrackId":627,"Name":"Let Me Off Uptown","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":187637,"Bytes":6034685,"UnitPrice":"0.99"} +{"TrackId":628,"Name":"Leave Us Leap","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":182726,"Bytes":5898810,"UnitPrice":"0.99"} +{"TrackId":629,"Name":"Opus No.1","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":179800,"Bytes":5846041,"UnitPrice":"0.99"} +{"TrackId":630,"Name":"Boogie Blues","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":204199,"Bytes":6603153,"UnitPrice":"0.99"} +{"TrackId":631,"Name":"How High The Moon","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":201430,"Bytes":6529487,"UnitPrice":"0.99"} +{"TrackId":632,"Name":"Disc Jockey Jump","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":193149,"Bytes":6260820,"UnitPrice":"0.99"} +{"TrackId":633,"Name":"Up An' Atom","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":179565,"Bytes":5822645,"UnitPrice":"0.99"} +{"TrackId":634,"Name":"Bop Boogie","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":189596,"Bytes":6093124,"UnitPrice":"0.99"} +{"TrackId":635,"Name":"Lemon Drop","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":194089,"Bytes":6287531,"UnitPrice":"0.99"} +{"TrackId":636,"Name":"Coronation Drop","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":176222,"Bytes":5899898,"UnitPrice":"0.99"} +{"TrackId":637,"Name":"Overtime","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":163030,"Bytes":5432236,"UnitPrice":"0.99"} +{"TrackId":638,"Name":"Imagination","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":289306,"Bytes":9444385,"UnitPrice":"0.99"} +{"TrackId":639,"Name":"Don't Take Your Love From Me","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":282331,"Bytes":9244238,"UnitPrice":"0.99"} +{"TrackId":640,"Name":"Midget","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":217025,"Bytes":7257663,"UnitPrice":"0.99"} +{"TrackId":641,"Name":"I'm Coming Virginia","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":280163,"Bytes":9209827,"UnitPrice":"0.99"} +{"TrackId":642,"Name":"Payin' Them Dues Blues","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":198556,"Bytes":6536918,"UnitPrice":"0.99"} +{"TrackId":643,"Name":"Jungle Drums","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":199627,"Bytes":6546063,"UnitPrice":"0.99"} +{"TrackId":644,"Name":"Showcase","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":201560,"Bytes":6697510,"UnitPrice":"0.99"} +{"TrackId":645,"Name":"Swedish Schnapps","AlbumId":51,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":191268,"Bytes":6359750,"UnitPrice":"0.99"} +{"TrackId":646,"Name":"Samba Da Bęnçăo","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":409965,"Bytes":13490008,"UnitPrice":"0.99"} +{"TrackId":647,"Name":"Pot-Pourri N.ş 4","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":392437,"Bytes":13125975,"UnitPrice":"0.99"} +{"TrackId":648,"Name":"Onde Anda Vocę","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":168437,"Bytes":5550356,"UnitPrice":"0.99"} +{"TrackId":649,"Name":"Samba Da Volta","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":170631,"Bytes":5676090,"UnitPrice":"0.99"} +{"TrackId":650,"Name":"Canto De Ossanha","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":204956,"Bytes":6771624,"UnitPrice":"0.99"} +{"TrackId":651,"Name":"Pot-Pourri N.ş 5","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":219898,"Bytes":7117769,"UnitPrice":"0.99"} +{"TrackId":652,"Name":"Formosa","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":137482,"Bytes":4560873,"UnitPrice":"0.99"} +{"TrackId":653,"Name":"Como É Duro Trabalhar","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":226168,"Bytes":7541177,"UnitPrice":"0.99"} +{"TrackId":654,"Name":"Minha Namorada","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":244297,"Bytes":7927967,"UnitPrice":"0.99"} +{"TrackId":655,"Name":"Por Que Será","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":162142,"Bytes":5371483,"UnitPrice":"0.99"} +{"TrackId":656,"Name":"Berimbau","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":190667,"Bytes":6335548,"UnitPrice":"0.99"} +{"TrackId":657,"Name":"Deixa","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":179826,"Bytes":5932799,"UnitPrice":"0.99"} +{"TrackId":658,"Name":"Pot-Pourri N.ş 2","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":211748,"Bytes":6878359,"UnitPrice":"0.99"} +{"TrackId":659,"Name":"Samba Em Prelúdio","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":212636,"Bytes":6923473,"UnitPrice":"0.99"} +{"TrackId":660,"Name":"Carta Ao Tom 74","AlbumId":52,"MediaTypeId":1,"GenreId":11,"Composer":null,"Milliseconds":162560,"Bytes":5382354,"UnitPrice":"0.99"} +{"TrackId":661,"Name":"Linha de Passe (Joăo Bosco)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":230948,"Bytes":7902328,"UnitPrice":"0.99"} +{"TrackId":662,"Name":"Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":163970,"Bytes":5399626,"UnitPrice":"0.99"} +{"TrackId":663,"Name":"Chăo de Giz (Elba Ramalho)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":274834,"Bytes":9016916,"UnitPrice":"0.99"} +{"TrackId":664,"Name":"Marina (Dorival Caymmi)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":172643,"Bytes":5523628,"UnitPrice":"0.99"} +{"TrackId":665,"Name":"Aquarela (Toquinho)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":259944,"Bytes":8480140,"UnitPrice":"0.99"} +{"TrackId":666,"Name":"Coraçăo do Agreste (Fafá de Belém)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":258194,"Bytes":8380320,"UnitPrice":"0.99"} +{"TrackId":667,"Name":"Dona (Roupa Nova)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":243356,"Bytes":7991295,"UnitPrice":"0.99"} +{"TrackId":668,"Name":"Começaria Tudo Outra Vez (Maria Creuza)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":206994,"Bytes":6851151,"UnitPrice":"0.99"} +{"TrackId":669,"Name":"Caçador de Mim (Sá & Guarabyra)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":238341,"Bytes":7751360,"UnitPrice":"0.99"} +{"TrackId":670,"Name":"Romaria (Renato Teixeira)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":244793,"Bytes":8033885,"UnitPrice":"0.99"} +{"TrackId":671,"Name":"As Rosas Năo Falam (Beth Carvalho)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":116767,"Bytes":3836641,"UnitPrice":"0.99"} +{"TrackId":672,"Name":"Wave (Os Cariocas)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":130063,"Bytes":4298006,"UnitPrice":"0.99"} +{"TrackId":673,"Name":"Garota de Ipanema (Dick Farney)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":174367,"Bytes":5767474,"UnitPrice":"0.99"} +{"TrackId":674,"Name":"Preciso Apender a Viver Só (Maysa)","AlbumId":53,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":143464,"Bytes":4642359,"UnitPrice":"0.99"} +{"TrackId":675,"Name":"Susie Q","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"Hawkins-Lewis-Broadwater","Milliseconds":275565,"Bytes":9043825,"UnitPrice":"0.99"} +{"TrackId":676,"Name":"I Put A Spell On You","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"Jay Hawkins","Milliseconds":272091,"Bytes":8943000,"UnitPrice":"0.99"} +{"TrackId":677,"Name":"Proud Mary","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":189022,"Bytes":6229590,"UnitPrice":"0.99"} +{"TrackId":678,"Name":"Bad Moon Rising","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":140146,"Bytes":4609835,"UnitPrice":"0.99"} +{"TrackId":679,"Name":"Lodi","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":191451,"Bytes":6260214,"UnitPrice":"0.99"} +{"TrackId":680,"Name":"Green River","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":154279,"Bytes":5105874,"UnitPrice":"0.99"} +{"TrackId":681,"Name":"Commotion","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":162899,"Bytes":5354252,"UnitPrice":"0.99"} +{"TrackId":682,"Name":"Down On The Corner","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":164858,"Bytes":5521804,"UnitPrice":"0.99"} +{"TrackId":683,"Name":"Fortunate Son","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":140329,"Bytes":4617559,"UnitPrice":"0.99"} +{"TrackId":684,"Name":"Travelin' Band","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":129358,"Bytes":4270414,"UnitPrice":"0.99"} +{"TrackId":685,"Name":"Who'll Stop The Rain","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":149394,"Bytes":4899579,"UnitPrice":"0.99"} +{"TrackId":686,"Name":"Up Around The Bend","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":162429,"Bytes":5368701,"UnitPrice":"0.99"} +{"TrackId":687,"Name":"Run Through The Jungle","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":186044,"Bytes":6156567,"UnitPrice":"0.99"} +{"TrackId":688,"Name":"Lookin' Out My Back Door","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":152946,"Bytes":5034670,"UnitPrice":"0.99"} +{"TrackId":689,"Name":"Long As I Can See The Light","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":213237,"Bytes":6924024,"UnitPrice":"0.99"} +{"TrackId":690,"Name":"I Heard It Through The Grapevine","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"Whitfield-Strong","Milliseconds":664894,"Bytes":21947845,"UnitPrice":"0.99"} +{"TrackId":691,"Name":"Have You Ever Seen The Rain?","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":160052,"Bytes":5263675,"UnitPrice":"0.99"} +{"TrackId":692,"Name":"Hey Tonight","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":162847,"Bytes":5343807,"UnitPrice":"0.99"} +{"TrackId":693,"Name":"Sweet Hitch-Hiker","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":175490,"Bytes":5716603,"UnitPrice":"0.99"} +{"TrackId":694,"Name":"Someday Never Comes","AlbumId":54,"MediaTypeId":1,"GenreId":1,"Composer":"J. C. Fogerty","Milliseconds":239360,"Bytes":7945235,"UnitPrice":"0.99"} +{"TrackId":695,"Name":"Walking On The Water","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":281286,"Bytes":9302129,"UnitPrice":"0.99"} +{"TrackId":696,"Name":"Suzie-Q, Pt. 2","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":244114,"Bytes":7986637,"UnitPrice":"0.99"} +{"TrackId":697,"Name":"Born On The Bayou","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":316630,"Bytes":10361866,"UnitPrice":"0.99"} +{"TrackId":698,"Name":"Good Golly Miss Molly","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":163604,"Bytes":5348175,"UnitPrice":"0.99"} +{"TrackId":699,"Name":"Tombstone Shadow","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":218880,"Bytes":7209080,"UnitPrice":"0.99"} +{"TrackId":700,"Name":"Wrote A Song For Everyone","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":296385,"Bytes":9675875,"UnitPrice":"0.99"} +{"TrackId":701,"Name":"Night Time Is The Right Time","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":190119,"Bytes":6211173,"UnitPrice":"0.99"} +{"TrackId":702,"Name":"Cotton Fields","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":178181,"Bytes":5919224,"UnitPrice":"0.99"} +{"TrackId":703,"Name":"It Came Out Of The Sky","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":176718,"Bytes":5807474,"UnitPrice":"0.99"} +{"TrackId":704,"Name":"Don't Look Now","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":131918,"Bytes":4366455,"UnitPrice":"0.99"} +{"TrackId":705,"Name":"The Midnight Special","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":253596,"Bytes":8297482,"UnitPrice":"0.99"} +{"TrackId":706,"Name":"Before You Accuse Me","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":207804,"Bytes":6815126,"UnitPrice":"0.99"} +{"TrackId":707,"Name":"My Baby Left Me","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":140460,"Bytes":4633440,"UnitPrice":"0.99"} +{"TrackId":708,"Name":"Pagan Baby","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":385619,"Bytes":12713813,"UnitPrice":"0.99"} +{"TrackId":709,"Name":"(Wish I Could) Hideaway","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":228466,"Bytes":7432978,"UnitPrice":"0.99"} +{"TrackId":710,"Name":"It's Just A Thought","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":237374,"Bytes":7778319,"UnitPrice":"0.99"} +{"TrackId":711,"Name":"Molina","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":163239,"Bytes":5390811,"UnitPrice":"0.99"} +{"TrackId":712,"Name":"Born To Move","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":342804,"Bytes":11260814,"UnitPrice":"0.99"} +{"TrackId":713,"Name":"Lookin' For A Reason","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":209789,"Bytes":6933135,"UnitPrice":"0.99"} +{"TrackId":714,"Name":"Hello Mary Lou","AlbumId":55,"MediaTypeId":1,"GenreId":1,"Composer":"J.C. Fogerty","Milliseconds":132832,"Bytes":4476563,"UnitPrice":"0.99"} +{"TrackId":715,"Name":"Gatas Extraordinárias","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":212506,"Bytes":7095702,"UnitPrice":"0.99"} +{"TrackId":716,"Name":"Brasil","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":243696,"Bytes":7911683,"UnitPrice":"0.99"} +{"TrackId":717,"Name":"Eu Sou Neguinha (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":251768,"Bytes":8376000,"UnitPrice":"0.99"} +{"TrackId":718,"Name":"Geraçăo Coca-Cola (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":228153,"Bytes":7573301,"UnitPrice":"0.99"} +{"TrackId":719,"Name":"Lanterna Dos Afogados","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":204538,"Bytes":6714582,"UnitPrice":"0.99"} +{"TrackId":720,"Name":"Coroné Antonio Bento","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":200437,"Bytes":6713066,"UnitPrice":"0.99"} +{"TrackId":721,"Name":"Vocę Passa, Eu Acho Graça (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":206733,"Bytes":6943576,"UnitPrice":"0.99"} +{"TrackId":722,"Name":"Meu Mundo Fica Completo (Com Vocę)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":247771,"Bytes":8322240,"UnitPrice":"0.99"} +{"TrackId":723,"Name":"1° De Julho","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":270262,"Bytes":9017535,"UnitPrice":"0.99"} +{"TrackId":724,"Name":"Música Urbana 2","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":194899,"Bytes":6383472,"UnitPrice":"0.99"} +{"TrackId":725,"Name":"Vida Bandida (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":192626,"Bytes":6360785,"UnitPrice":"0.99"} +{"TrackId":726,"Name":"Palavras Ao Vento","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":212453,"Bytes":7048676,"UnitPrice":"0.99"} +{"TrackId":727,"Name":"Năo Sei O Que Eu Quero Da Vida","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":151849,"Bytes":5024963,"UnitPrice":"0.99"} +{"TrackId":728,"Name":"Woman Is The Nigger Of The World (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":298919,"Bytes":9724145,"UnitPrice":"0.99"} +{"TrackId":729,"Name":"Juventude Transviada (Ao Vivo)","AlbumId":56,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":278622,"Bytes":9183808,"UnitPrice":"0.99"} +{"TrackId":730,"Name":"Malandragem","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":247588,"Bytes":8165048,"UnitPrice":"0.99"} +{"TrackId":731,"Name":"O Segundo Sol","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":252133,"Bytes":8335629,"UnitPrice":"0.99"} +{"TrackId":732,"Name":"Smells Like Teen Spirit (Ao Vivo)","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":316865,"Bytes":10384506,"UnitPrice":"0.99"} +{"TrackId":733,"Name":"E.C.T.","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":227500,"Bytes":7571834,"UnitPrice":"0.99"} +{"TrackId":734,"Name":"Todo Amor Que Houver Nesta Vida","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":227160,"Bytes":7420347,"UnitPrice":"0.99"} +{"TrackId":735,"Name":"Metrô. Linha 743","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":174654,"Bytes":5837495,"UnitPrice":"0.99"} +{"TrackId":736,"Name":"Nós (Ao Vivo)","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":193828,"Bytes":6498661,"UnitPrice":"0.99"} +{"TrackId":737,"Name":"Na Cadęncia Do Samba","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":196075,"Bytes":6483952,"UnitPrice":"0.99"} +{"TrackId":738,"Name":"Admirável Gado Novo","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":274390,"Bytes":9144031,"UnitPrice":"0.99"} +{"TrackId":739,"Name":"Eleanor Rigby","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":189466,"Bytes":6303205,"UnitPrice":"0.99"} +{"TrackId":740,"Name":"Socorro","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":258586,"Bytes":8549393,"UnitPrice":"0.99"} +{"TrackId":741,"Name":"Blues Da Piedade","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":257123,"Bytes":8472964,"UnitPrice":"0.99"} +{"TrackId":742,"Name":"Rubens","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":211853,"Bytes":7026317,"UnitPrice":"0.99"} +{"TrackId":743,"Name":"Năo Deixe O Samba Morrer - Cassia Eller e Alcione","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":268173,"Bytes":8936345,"UnitPrice":"0.99"} +{"TrackId":744,"Name":"Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)","AlbumId":57,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":188473,"Bytes":6195854,"UnitPrice":"0.99"} +{"TrackId":745,"Name":"Comin' Home","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Coverdale/Paice","Milliseconds":235781,"Bytes":7644604,"UnitPrice":"0.99"} +{"TrackId":746,"Name":"Lady Luck","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Cook/Coverdale","Milliseconds":168202,"Bytes":5501379,"UnitPrice":"0.99"} +{"TrackId":747,"Name":"Gettin' Tighter","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Hughes","Milliseconds":218044,"Bytes":7176909,"UnitPrice":"0.99"} +{"TrackId":748,"Name":"Dealer","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Coverdale","Milliseconds":230922,"Bytes":7591066,"UnitPrice":"0.99"} +{"TrackId":749,"Name":"I Need Love","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Coverdale","Milliseconds":263836,"Bytes":8701064,"UnitPrice":"0.99"} +{"TrackId":750,"Name":"Drifter","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Coverdale","Milliseconds":242834,"Bytes":8001505,"UnitPrice":"0.99"} +{"TrackId":751,"Name":"Love Child","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Coverdale","Milliseconds":188160,"Bytes":6173806,"UnitPrice":"0.99"} +{"TrackId":752,"Name":"This Time Around / Owed to 'G' [Instrumental]","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Bolin/Hughes/Lord","Milliseconds":370102,"Bytes":11995679,"UnitPrice":"0.99"} +{"TrackId":753,"Name":"You Keep On Moving","AlbumId":58,"MediaTypeId":1,"GenreId":1,"Composer":"Coverdale/Hughes","Milliseconds":319111,"Bytes":10447868,"UnitPrice":"0.99"} +{"TrackId":754,"Name":"Speed King","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":264385,"Bytes":8587578,"UnitPrice":"0.99"} +{"TrackId":755,"Name":"Bloodsucker","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":256261,"Bytes":8344405,"UnitPrice":"0.99"} +{"TrackId":756,"Name":"Child In Time","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":620460,"Bytes":20230089,"UnitPrice":"0.99"} +{"TrackId":757,"Name":"Flight Of The Rat","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":478302,"Bytes":15563967,"UnitPrice":"0.99"} +{"TrackId":758,"Name":"Into The Fire","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":210259,"Bytes":6849310,"UnitPrice":"0.99"} +{"TrackId":759,"Name":"Living Wreck","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":274886,"Bytes":8993056,"UnitPrice":"0.99"} +{"TrackId":760,"Name":"Hard Lovin' Man","AlbumId":59,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Gillan, Glover, Lord, Paice","Milliseconds":431203,"Bytes":13931179,"UnitPrice":"0.99"} +{"TrackId":761,"Name":"Fireball","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":204721,"Bytes":6714807,"UnitPrice":"0.99"} +{"TrackId":762,"Name":"No No No","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":414902,"Bytes":13646606,"UnitPrice":"0.99"} +{"TrackId":763,"Name":"Strange Kind Of Woman","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":247092,"Bytes":8072036,"UnitPrice":"0.99"} +{"TrackId":764,"Name":"Anyone's Daughter","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":284682,"Bytes":9354480,"UnitPrice":"0.99"} +{"TrackId":765,"Name":"The Mule","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":322063,"Bytes":10638390,"UnitPrice":"0.99"} +{"TrackId":766,"Name":"Fools","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":500427,"Bytes":16279366,"UnitPrice":"0.99"} +{"TrackId":767,"Name":"No One Came","AlbumId":60,"MediaTypeId":1,"GenreId":1,"Composer":"Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice","Milliseconds":385880,"Bytes":12643813,"UnitPrice":"0.99"} +{"TrackId":768,"Name":"Knocking At Your Back Door","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover","Milliseconds":424829,"Bytes":13779332,"UnitPrice":"0.99"} +{"TrackId":769,"Name":"Bad Attitude","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord","Milliseconds":307905,"Bytes":10035180,"UnitPrice":"0.99"} +{"TrackId":770,"Name":"Child In Time (Son Of Aleric - Instrumental)","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice","Milliseconds":602880,"Bytes":19712753,"UnitPrice":"0.99"} +{"TrackId":771,"Name":"Nobody's Home","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice","Milliseconds":243017,"Bytes":7929493,"UnitPrice":"0.99"} +{"TrackId":772,"Name":"Black Night","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice","Milliseconds":368770,"Bytes":12058906,"UnitPrice":"0.99"} +{"TrackId":773,"Name":"Perfect Strangers","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover","Milliseconds":321149,"Bytes":10445353,"UnitPrice":"0.99"} +{"TrackId":774,"Name":"The Unwritten Law","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice","Milliseconds":295053,"Bytes":9740361,"UnitPrice":"0.99"} +{"TrackId":775,"Name":"Call Of The Wild","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord","Milliseconds":293851,"Bytes":9575295,"UnitPrice":"0.99"} +{"TrackId":776,"Name":"Hush","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"South","Milliseconds":213054,"Bytes":6944928,"UnitPrice":"0.99"} +{"TrackId":777,"Name":"Smoke On The Water","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice","Milliseconds":464378,"Bytes":15180849,"UnitPrice":"0.99"} +{"TrackId":778,"Name":"Space Trucking","AlbumId":61,"MediaTypeId":1,"GenreId":1,"Composer":"Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice","Milliseconds":341185,"Bytes":11122183,"UnitPrice":"0.99"} +{"TrackId":779,"Name":"Highway Star","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":368770,"Bytes":12012452,"UnitPrice":"0.99"} +{"TrackId":780,"Name":"Maybe I'm A Leo","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":290455,"Bytes":9502646,"UnitPrice":"0.99"} +{"TrackId":781,"Name":"Pictures Of Home","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":303777,"Bytes":9903835,"UnitPrice":"0.99"} +{"TrackId":782,"Name":"Never Before","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":239830,"Bytes":7832790,"UnitPrice":"0.99"} +{"TrackId":783,"Name":"Smoke On The Water","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":340871,"Bytes":11246496,"UnitPrice":"0.99"} +{"TrackId":784,"Name":"Lazy","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":442096,"Bytes":14397671,"UnitPrice":"0.99"} +{"TrackId":785,"Name":"Space Truckin'","AlbumId":62,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover","Milliseconds":272796,"Bytes":8981030,"UnitPrice":"0.99"} +{"TrackId":786,"Name":"Vavoom : Ted The Mechanic","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":257384,"Bytes":8510755,"UnitPrice":"0.99"} +{"TrackId":787,"Name":"Loosen My Strings","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":359680,"Bytes":11702232,"UnitPrice":"0.99"} +{"TrackId":788,"Name":"Soon Forgotten","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":287791,"Bytes":9401383,"UnitPrice":"0.99"} +{"TrackId":789,"Name":"Sometimes I Feel Like Screaming","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":451840,"Bytes":14789410,"UnitPrice":"0.99"} +{"TrackId":790,"Name":"Cascades : I'm Not Your Lover","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":283689,"Bytes":9209693,"UnitPrice":"0.99"} +{"TrackId":791,"Name":"The Aviator","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":320992,"Bytes":10532053,"UnitPrice":"0.99"} +{"TrackId":792,"Name":"Rosa's Cantina","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":312372,"Bytes":10323804,"UnitPrice":"0.99"} +{"TrackId":793,"Name":"A Castle Full Of Rascals","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":311693,"Bytes":10159566,"UnitPrice":"0.99"} +{"TrackId":794,"Name":"A Touch Away","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":276323,"Bytes":9098561,"UnitPrice":"0.99"} +{"TrackId":795,"Name":"Hey Cisco","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":354089,"Bytes":11600029,"UnitPrice":"0.99"} +{"TrackId":796,"Name":"Somebody Stole My Guitar","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":249443,"Bytes":8180421,"UnitPrice":"0.99"} +{"TrackId":797,"Name":"The Purpendicular Waltz","AlbumId":63,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice","Milliseconds":283924,"Bytes":9299131,"UnitPrice":"0.99"} +{"TrackId":798,"Name":"King Of Dreams","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner","Milliseconds":328385,"Bytes":10733847,"UnitPrice":"0.99"} +{"TrackId":799,"Name":"The Cut Runs Deep","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner, Lord, Paice","Milliseconds":342752,"Bytes":11191650,"UnitPrice":"0.99"} +{"TrackId":800,"Name":"Fire In The Basement","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner, Lord, Paice","Milliseconds":283977,"Bytes":9267550,"UnitPrice":"0.99"} +{"TrackId":801,"Name":"Truth Hurts","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner","Milliseconds":314827,"Bytes":10224612,"UnitPrice":"0.99"} +{"TrackId":802,"Name":"Breakfast In Bed","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner","Milliseconds":317126,"Bytes":10323804,"UnitPrice":"0.99"} +{"TrackId":803,"Name":"Love Conquers All","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner","Milliseconds":227186,"Bytes":7328516,"UnitPrice":"0.99"} +{"TrackId":804,"Name":"Fortuneteller","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner, Lord, Paice","Milliseconds":349335,"Bytes":11369671,"UnitPrice":"0.99"} +{"TrackId":805,"Name":"Too Much Is Not Enough","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Turner, Held, Greenwood","Milliseconds":257724,"Bytes":8382800,"UnitPrice":"0.99"} +{"TrackId":806,"Name":"Wicked Ways","AlbumId":64,"MediaTypeId":1,"GenreId":1,"Composer":"Blackmore, Glover, Turner, Lord, Paice","Milliseconds":393691,"Bytes":12826582,"UnitPrice":"0.99"} +{"TrackId":807,"Name":"Stormbringer","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/R.Blackmore/Ritchie Blackmore","Milliseconds":246413,"Bytes":8044864,"UnitPrice":"0.99"} +{"TrackId":808,"Name":"Love Don't Mean a Thing","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore","Milliseconds":263862,"Bytes":8675026,"UnitPrice":"0.99"} +{"TrackId":809,"Name":"Holy Man","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord","Milliseconds":270236,"Bytes":8818093,"UnitPrice":"0.99"} +{"TrackId":810,"Name":"Hold On","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord","Milliseconds":306860,"Bytes":10022428,"UnitPrice":"0.99"} +{"TrackId":811,"Name":"Lady Double Dealer","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/R.Blackmore/Ritchie Blackmore","Milliseconds":201482,"Bytes":6554330,"UnitPrice":"0.99"} +{"TrackId":812,"Name":"You Can't Do it Right (With the One You Love)","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore","Milliseconds":203755,"Bytes":6709579,"UnitPrice":"0.99"} +{"TrackId":813,"Name":"High Ball Shooter","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore","Milliseconds":267833,"Bytes":8772471,"UnitPrice":"0.99"} +{"TrackId":814,"Name":"The Gypsy","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore","Milliseconds":242886,"Bytes":7946614,"UnitPrice":"0.99"} +{"TrackId":815,"Name":"Soldier Of Fortune","AlbumId":65,"MediaTypeId":1,"GenreId":1,"Composer":"D.Coverdale/R.Blackmore/Ritchie Blackmore","Milliseconds":193750,"Bytes":6315321,"UnitPrice":"0.99"} +{"TrackId":816,"Name":"The Battle Rages On","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"ian paice/jon lord","Milliseconds":356963,"Bytes":11626228,"UnitPrice":"0.99"} +{"TrackId":817,"Name":"Lick It Up","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":240274,"Bytes":7792604,"UnitPrice":"0.99"} +{"TrackId":818,"Name":"Anya","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"jon lord/roger glover","Milliseconds":392437,"Bytes":12754921,"UnitPrice":"0.99"} +{"TrackId":819,"Name":"Talk About Love","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":247823,"Bytes":8072171,"UnitPrice":"0.99"} +{"TrackId":820,"Name":"Time To Kill","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":351033,"Bytes":11354742,"UnitPrice":"0.99"} +{"TrackId":821,"Name":"Ramshackle Man","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":334445,"Bytes":10874679,"UnitPrice":"0.99"} +{"TrackId":822,"Name":"A Twist In The Tail","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":257462,"Bytes":8413103,"UnitPrice":"0.99"} +{"TrackId":823,"Name":"Nasty Piece Of Work","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"jon lord/roger glover","Milliseconds":276662,"Bytes":9076997,"UnitPrice":"0.99"} +{"TrackId":824,"Name":"Solitaire","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":282226,"Bytes":9157021,"UnitPrice":"0.99"} +{"TrackId":825,"Name":"One Man's Meat","AlbumId":66,"MediaTypeId":1,"GenreId":1,"Composer":"roger glover","Milliseconds":278804,"Bytes":9068960,"UnitPrice":"0.99"} +{"TrackId":826,"Name":"Pour Some Sugar On Me","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":292519,"Bytes":9518842,"UnitPrice":"0.99"} +{"TrackId":827,"Name":"Photograph","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":248633,"Bytes":8108507,"UnitPrice":"0.99"} +{"TrackId":828,"Name":"Love Bites","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":346853,"Bytes":11305791,"UnitPrice":"0.99"} +{"TrackId":829,"Name":"Let's Get Rocked","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":296019,"Bytes":9724150,"UnitPrice":"0.99"} +{"TrackId":830,"Name":"Two Steps Behind [Acoustic Version]","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":259787,"Bytes":8523388,"UnitPrice":"0.99"} +{"TrackId":831,"Name":"Animal","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":244741,"Bytes":7985133,"UnitPrice":"0.99"} +{"TrackId":832,"Name":"Heaven Is","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":214021,"Bytes":6988128,"UnitPrice":"0.99"} +{"TrackId":833,"Name":"Rocket","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":247248,"Bytes":8092463,"UnitPrice":"0.99"} +{"TrackId":834,"Name":"When Love & Hate Collide","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":257280,"Bytes":8364633,"UnitPrice":"0.99"} +{"TrackId":835,"Name":"Action","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":220604,"Bytes":7130830,"UnitPrice":"0.99"} +{"TrackId":836,"Name":"Make Love Like A Man","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":255660,"Bytes":8309725,"UnitPrice":"0.99"} +{"TrackId":837,"Name":"Armageddon It","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":322455,"Bytes":10522352,"UnitPrice":"0.99"} +{"TrackId":838,"Name":"Have You Ever Needed Someone So Bad","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":319320,"Bytes":10400020,"UnitPrice":"0.99"} +{"TrackId":839,"Name":"Rock Of Ages","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":248424,"Bytes":8150318,"UnitPrice":"0.99"} +{"TrackId":840,"Name":"Hysteria","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":355056,"Bytes":11622738,"UnitPrice":"0.99"} +{"TrackId":841,"Name":"Bringin' On The Heartbreak","AlbumId":67,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":272457,"Bytes":8853324,"UnitPrice":"0.99"} +{"TrackId":842,"Name":"Roll Call","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Jim Beard","Milliseconds":321358,"Bytes":10653494,"UnitPrice":"0.99"} +{"TrackId":843,"Name":"Otay","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"John Scofield, Robert Aries, Milton Chambers and Gary Grainger","Milliseconds":423653,"Bytes":14176083,"UnitPrice":"0.99"} +{"TrackId":844,"Name":"Groovus Interruptus","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Jim Beard","Milliseconds":319373,"Bytes":10602166,"UnitPrice":"0.99"} +{"TrackId":845,"Name":"Paris On Mine","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Jon Herington","Milliseconds":368875,"Bytes":12059507,"UnitPrice":"0.99"} +{"TrackId":846,"Name":"In Time","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Sylvester Stewart","Milliseconds":368953,"Bytes":12287103,"UnitPrice":"0.99"} +{"TrackId":847,"Name":"Plan B","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Dean Brown, Dennis Chambers & Jim Beard","Milliseconds":272039,"Bytes":9032315,"UnitPrice":"0.99"} +{"TrackId":848,"Name":"Outbreak","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"Jim Beard & Jon Herington","Milliseconds":659226,"Bytes":21685807,"UnitPrice":"0.99"} +{"TrackId":849,"Name":"Baltimore, DC","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"John Scofield","Milliseconds":346932,"Bytes":11394473,"UnitPrice":"0.99"} +{"TrackId":850,"Name":"Talkin Loud and Saying Nothin","AlbumId":68,"MediaTypeId":1,"GenreId":2,"Composer":"James Brown & Bobby Byrd","Milliseconds":360411,"Bytes":11994859,"UnitPrice":"0.99"} +{"TrackId":851,"Name":"Pétala","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":270080,"Bytes":8856165,"UnitPrice":"0.99"} +{"TrackId":852,"Name":"Meu Bem-Querer","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":255608,"Bytes":8330047,"UnitPrice":"0.99"} +{"TrackId":853,"Name":"Cigano","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":304692,"Bytes":10037362,"UnitPrice":"0.99"} +{"TrackId":854,"Name":"Boa Noite","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":338755,"Bytes":11283582,"UnitPrice":"0.99"} +{"TrackId":855,"Name":"Fato Consumado","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":211565,"Bytes":7018586,"UnitPrice":"0.99"} +{"TrackId":856,"Name":"Faltando Um Pedaço","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":267728,"Bytes":8788760,"UnitPrice":"0.99"} +{"TrackId":857,"Name":"Álibi","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":213237,"Bytes":6928434,"UnitPrice":"0.99"} +{"TrackId":858,"Name":"Esquinas","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":280999,"Bytes":9096726,"UnitPrice":"0.99"} +{"TrackId":859,"Name":"Se...","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":286432,"Bytes":9413777,"UnitPrice":"0.99"} +{"TrackId":860,"Name":"Eu Te Devoro","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":311614,"Bytes":10312775,"UnitPrice":"0.99"} +{"TrackId":861,"Name":"Lilás","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":274181,"Bytes":9049542,"UnitPrice":"0.99"} +{"TrackId":862,"Name":"Acelerou","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":284081,"Bytes":9396942,"UnitPrice":"0.99"} +{"TrackId":863,"Name":"Um Amor Puro","AlbumId":69,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":327784,"Bytes":10687311,"UnitPrice":"0.99"} +{"TrackId":864,"Name":"Samurai","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":330997,"Bytes":10872787,"UnitPrice":"0.99"} +{"TrackId":865,"Name":"Nem Um Dia","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":337423,"Bytes":11181446,"UnitPrice":"0.99"} +{"TrackId":866,"Name":"Oceano","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":217338,"Bytes":7026441,"UnitPrice":"0.99"} +{"TrackId":867,"Name":"Açai","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":270968,"Bytes":8893682,"UnitPrice":"0.99"} +{"TrackId":868,"Name":"Serrado","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":295314,"Bytes":9842240,"UnitPrice":"0.99"} +{"TrackId":869,"Name":"Flor De Lis","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":236355,"Bytes":7801108,"UnitPrice":"0.99"} +{"TrackId":870,"Name":"Amar É Tudo","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":211617,"Bytes":7073899,"UnitPrice":"0.99"} +{"TrackId":871,"Name":"Azul","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":253962,"Bytes":8381029,"UnitPrice":"0.99"} +{"TrackId":872,"Name":"Seduzir","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":277524,"Bytes":9163253,"UnitPrice":"0.99"} +{"TrackId":873,"Name":"A Carta","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan - Gabriel, O Pensador","Milliseconds":347297,"Bytes":11493463,"UnitPrice":"0.99"} +{"TrackId":874,"Name":"Sina","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":268173,"Bytes":8906539,"UnitPrice":"0.99"} +{"TrackId":875,"Name":"Acelerou","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":284133,"Bytes":9391439,"UnitPrice":"0.99"} +{"TrackId":876,"Name":"Um Amor Puro","AlbumId":70,"MediaTypeId":1,"GenreId":7,"Composer":"Djavan","Milliseconds":327105,"Bytes":10664698,"UnitPrice":"0.99"} +{"TrackId":877,"Name":"O Bębado e a Equilibrista","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":223059,"Bytes":7306143,"UnitPrice":"0.99"} +{"TrackId":878,"Name":"O Mestre-Sala dos Mares","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":186226,"Bytes":6180414,"UnitPrice":"0.99"} +{"TrackId":879,"Name":"Atrás da Porta","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":166608,"Bytes":5432518,"UnitPrice":"0.99"} +{"TrackId":880,"Name":"Dois Pra Lá, Dois Pra Cá","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":263026,"Bytes":8684639,"UnitPrice":"0.99"} +{"TrackId":881,"Name":"Casa no Campo","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":170788,"Bytes":5531841,"UnitPrice":"0.99"} +{"TrackId":882,"Name":"Romaria","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":242834,"Bytes":7968525,"UnitPrice":"0.99"} +{"TrackId":883,"Name":"Alô, Alô, Marciano","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":241397,"Bytes":8137254,"UnitPrice":"0.99"} +{"TrackId":884,"Name":"Me Deixas Louca","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":214831,"Bytes":6888030,"UnitPrice":"0.99"} +{"TrackId":885,"Name":"Fascinaçăo","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":180793,"Bytes":5793959,"UnitPrice":"0.99"} +{"TrackId":886,"Name":"Saudosa Maloca","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":278125,"Bytes":9059416,"UnitPrice":"0.99"} +{"TrackId":887,"Name":"As Aparęncias Enganam","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":247379,"Bytes":8014346,"UnitPrice":"0.99"} +{"TrackId":888,"Name":"Madalena","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":157387,"Bytes":5243721,"UnitPrice":"0.99"} +{"TrackId":889,"Name":"Maria Rosa","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":232803,"Bytes":7592504,"UnitPrice":"0.99"} +{"TrackId":890,"Name":"Aprendendo A Jogar","AlbumId":71,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":290664,"Bytes":9391041,"UnitPrice":"0.99"} +{"TrackId":891,"Name":"Layla","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Gordon","Milliseconds":430733,"Bytes":14115792,"UnitPrice":"0.99"} +{"TrackId":892,"Name":"Badge","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Harrison","Milliseconds":163552,"Bytes":5322942,"UnitPrice":"0.99"} +{"TrackId":893,"Name":"I Feel Free","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Bruce/Clapton","Milliseconds":174576,"Bytes":5725684,"UnitPrice":"0.99"} +{"TrackId":894,"Name":"Sunshine Of Your Love","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Bruce/Clapton","Milliseconds":252891,"Bytes":8225889,"UnitPrice":"0.99"} +{"TrackId":895,"Name":"Crossroads","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Robert Johnson Arr: Eric Clapton","Milliseconds":253335,"Bytes":8273540,"UnitPrice":"0.99"} +{"TrackId":896,"Name":"Strange Brew","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Collins/Pappalardi","Milliseconds":167810,"Bytes":5489787,"UnitPrice":"0.99"} +{"TrackId":897,"Name":"White Room","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Bruce/Clapton","Milliseconds":301583,"Bytes":9872606,"UnitPrice":"0.99"} +{"TrackId":898,"Name":"Bell Bottom Blues","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton","Milliseconds":304744,"Bytes":9946681,"UnitPrice":"0.99"} +{"TrackId":899,"Name":"Cocaine","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Cale/Clapton","Milliseconds":215928,"Bytes":7138399,"UnitPrice":"0.99"} +{"TrackId":900,"Name":"I Shot The Sheriff","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Marley","Milliseconds":263862,"Bytes":8738973,"UnitPrice":"0.99"} +{"TrackId":901,"Name":"After Midnight","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/J. J. Cale","Milliseconds":191320,"Bytes":6460941,"UnitPrice":"0.99"} +{"TrackId":902,"Name":"Swing Low Sweet Chariot","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Trad. Arr. Clapton","Milliseconds":208143,"Bytes":6896288,"UnitPrice":"0.99"} +{"TrackId":903,"Name":"Lay Down Sally","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Levy","Milliseconds":231732,"Bytes":7774207,"UnitPrice":"0.99"} +{"TrackId":904,"Name":"Knockin On Heavens Door","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/Dylan","Milliseconds":264411,"Bytes":8758819,"UnitPrice":"0.99"} +{"TrackId":905,"Name":"Wonderful Tonight","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton","Milliseconds":221387,"Bytes":7326923,"UnitPrice":"0.99"} +{"TrackId":906,"Name":"Let It Grow","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton","Milliseconds":297064,"Bytes":9742568,"UnitPrice":"0.99"} +{"TrackId":907,"Name":"Promises","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton/F.eldman/Linn","Milliseconds":180401,"Bytes":6006154,"UnitPrice":"0.99"} +{"TrackId":908,"Name":"I Can't Stand It","AlbumId":72,"MediaTypeId":1,"GenreId":6,"Composer":"Clapton","Milliseconds":249730,"Bytes":8271980,"UnitPrice":"0.99"} +{"TrackId":909,"Name":"Signe","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eric Clapton","Milliseconds":193515,"Bytes":6475042,"UnitPrice":"0.99"} +{"TrackId":910,"Name":"Before You Accuse Me","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eugene McDaniel","Milliseconds":224339,"Bytes":7456807,"UnitPrice":"0.99"} +{"TrackId":911,"Name":"Hey Hey","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Big Bill Broonzy","Milliseconds":196466,"Bytes":6543487,"UnitPrice":"0.99"} +{"TrackId":912,"Name":"Tears In Heaven","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eric Clapton, Will Jennings","Milliseconds":274729,"Bytes":9032835,"UnitPrice":"0.99"} +{"TrackId":913,"Name":"Lonely Stranger","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eric Clapton","Milliseconds":328724,"Bytes":10894406,"UnitPrice":"0.99"} +{"TrackId":914,"Name":"Nobody Knows You When You're Down & Out","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Jimmy Cox","Milliseconds":231836,"Bytes":7669922,"UnitPrice":"0.99"} +{"TrackId":915,"Name":"Layla","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eric Clapton, Jim Gordon","Milliseconds":285387,"Bytes":9490542,"UnitPrice":"0.99"} +{"TrackId":916,"Name":"Running On Faith","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Jerry Lynn Williams","Milliseconds":378984,"Bytes":12536275,"UnitPrice":"0.99"} +{"TrackId":917,"Name":"Walkin' Blues","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Robert Johnson","Milliseconds":226429,"Bytes":7435192,"UnitPrice":"0.99"} +{"TrackId":918,"Name":"Alberta","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Traditional","Milliseconds":222406,"Bytes":7412975,"UnitPrice":"0.99"} +{"TrackId":919,"Name":"San Francisco Bay Blues","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Jesse Fuller","Milliseconds":203363,"Bytes":6724021,"UnitPrice":"0.99"} +{"TrackId":920,"Name":"Malted Milk","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Robert Johnson","Milliseconds":216528,"Bytes":7096781,"UnitPrice":"0.99"} +{"TrackId":921,"Name":"Old Love","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"Eric Clapton, Robert Cray","Milliseconds":472920,"Bytes":15780747,"UnitPrice":"0.99"} +{"TrackId":922,"Name":"Rollin' And Tumblin'","AlbumId":73,"MediaTypeId":1,"GenreId":6,"Composer":"McKinley Morgenfield (Muddy Waters)","Milliseconds":251768,"Bytes":8407355,"UnitPrice":"0.99"} +{"TrackId":923,"Name":"Collision","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Jon Hudson/Mike Patton","Milliseconds":204303,"Bytes":6656596,"UnitPrice":"0.99"} +{"TrackId":924,"Name":"Stripsearch","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Jon Hudson/Mike Bordin/Mike Patton","Milliseconds":270106,"Bytes":8861119,"UnitPrice":"0.99"} +{"TrackId":925,"Name":"Last Cup Of Sorrow","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Mike Patton","Milliseconds":251663,"Bytes":8221247,"UnitPrice":"0.99"} +{"TrackId":926,"Name":"Naked In Front Of The Computer","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Patton","Milliseconds":128757,"Bytes":4225077,"UnitPrice":"0.99"} +{"TrackId":927,"Name":"Helpless","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Mike Bordin/Mike Patton","Milliseconds":326217,"Bytes":10753135,"UnitPrice":"0.99"} +{"TrackId":928,"Name":"Mouth To Mouth","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Jon Hudson/Mike Bordin/Mike Patton","Milliseconds":228493,"Bytes":7505887,"UnitPrice":"0.99"} +{"TrackId":929,"Name":"Ashes To Ashes","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum","Milliseconds":217391,"Bytes":7093746,"UnitPrice":"0.99"} +{"TrackId":930,"Name":"She Loves Me Not","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Mike Bordin/Mike Patton","Milliseconds":209867,"Bytes":6887544,"UnitPrice":"0.99"} +{"TrackId":931,"Name":"Got That Feeling","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Patton","Milliseconds":140852,"Bytes":4643227,"UnitPrice":"0.99"} +{"TrackId":932,"Name":"Paths Of Glory","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum","Milliseconds":257253,"Bytes":8436300,"UnitPrice":"0.99"} +{"TrackId":933,"Name":"Home Sick Home","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Patton","Milliseconds":119040,"Bytes":3898976,"UnitPrice":"0.99"} +{"TrackId":934,"Name":"Pristina","AlbumId":74,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Gould/Mike Patton","Milliseconds":232698,"Bytes":7497361,"UnitPrice":"0.99"} +{"TrackId":935,"Name":"Land Of Sunshine","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":223921,"Bytes":7353567,"UnitPrice":"0.99"} +{"TrackId":936,"Name":"Caffeine","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":267937,"Bytes":8747367,"UnitPrice":"0.99"} +{"TrackId":937,"Name":"Midlife Crisis","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":263235,"Bytes":8628841,"UnitPrice":"0.99"} +{"TrackId":938,"Name":"RV","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":223242,"Bytes":7288162,"UnitPrice":"0.99"} +{"TrackId":939,"Name":"Smaller And Smaller","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":310831,"Bytes":10180103,"UnitPrice":"0.99"} +{"TrackId":940,"Name":"Everything's Ruined","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":273658,"Bytes":9010917,"UnitPrice":"0.99"} +{"TrackId":941,"Name":"Malpractice","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":241371,"Bytes":7900683,"UnitPrice":"0.99"} +{"TrackId":942,"Name":"Kindergarten","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":270680,"Bytes":8853647,"UnitPrice":"0.99"} +{"TrackId":943,"Name":"Be Aggressive","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":222432,"Bytes":7298027,"UnitPrice":"0.99"} +{"TrackId":944,"Name":"A Small Victory","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":297168,"Bytes":9733572,"UnitPrice":"0.99"} +{"TrackId":945,"Name":"Crack Hitler","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":279144,"Bytes":9162435,"UnitPrice":"0.99"} +{"TrackId":946,"Name":"Jizzlobber","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":398341,"Bytes":12926140,"UnitPrice":"0.99"} +{"TrackId":947,"Name":"Midnight Cowboy","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":251924,"Bytes":8242626,"UnitPrice":"0.99"} +{"TrackId":948,"Name":"Easy","AlbumId":75,"MediaTypeId":1,"GenreId":4,"Composer":null,"Milliseconds":185835,"Bytes":6073008,"UnitPrice":"0.99"} +{"TrackId":949,"Name":"Get Out","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":137482,"Bytes":4524972,"UnitPrice":"0.99"} +{"TrackId":950,"Name":"Ricochet","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":269400,"Bytes":8808812,"UnitPrice":"0.99"} +{"TrackId":951,"Name":"Evidence","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton, Trey Spruance","Milliseconds":293590,"Bytes":9626136,"UnitPrice":"0.99"} +{"TrackId":952,"Name":"The Gentle Art Of Making Enemies","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":209319,"Bytes":6908609,"UnitPrice":"0.99"} +{"TrackId":953,"Name":"Star A.D.","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":203807,"Bytes":6747658,"UnitPrice":"0.99"} +{"TrackId":954,"Name":"Cuckoo For Caca","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton, Trey Spruance","Milliseconds":222902,"Bytes":7388369,"UnitPrice":"0.99"} +{"TrackId":955,"Name":"Caralho Voador","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton, Trey Spruance","Milliseconds":242102,"Bytes":8029054,"UnitPrice":"0.99"} +{"TrackId":956,"Name":"Ugly In The Morning","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":186435,"Bytes":6224997,"UnitPrice":"0.99"} +{"TrackId":957,"Name":"Digging The Grave","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":185129,"Bytes":6109259,"UnitPrice":"0.99"} +{"TrackId":958,"Name":"Take This Bottle","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton, Trey Spruance","Milliseconds":298997,"Bytes":9779971,"UnitPrice":"0.99"} +{"TrackId":959,"Name":"King For A Day","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton, Trey Spruance","Milliseconds":395859,"Bytes":13163733,"UnitPrice":"0.99"} +{"TrackId":960,"Name":"What A Day","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":158275,"Bytes":5203430,"UnitPrice":"0.99"} +{"TrackId":961,"Name":"The Last To Know","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":267833,"Bytes":8736776,"UnitPrice":"0.99"} +{"TrackId":962,"Name":"Just A Man","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":336666,"Bytes":11031254,"UnitPrice":"0.99"} +{"TrackId":963,"Name":"Absolute Zero","AlbumId":76,"MediaTypeId":1,"GenreId":1,"Composer":"Mike Bordin, Billy Gould, Mike Patton","Milliseconds":181995,"Bytes":5929427,"UnitPrice":"0.99"} +{"TrackId":964,"Name":"From Out Of Nowhere","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":202527,"Bytes":6587802,"UnitPrice":"0.99"} +{"TrackId":965,"Name":"Epic","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":294008,"Bytes":9631296,"UnitPrice":"0.99"} +{"TrackId":966,"Name":"Falling To Pieces","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":316055,"Bytes":10333123,"UnitPrice":"0.99"} +{"TrackId":967,"Name":"Surprise! You're Dead!","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":147226,"Bytes":4823036,"UnitPrice":"0.99"} +{"TrackId":968,"Name":"Zombie Eaters","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":360881,"Bytes":11835367,"UnitPrice":"0.99"} +{"TrackId":969,"Name":"The Real Thing","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":493635,"Bytes":16233080,"UnitPrice":"0.99"} +{"TrackId":970,"Name":"Underwater Love","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":231993,"Bytes":7634387,"UnitPrice":"0.99"} +{"TrackId":971,"Name":"The Morning After","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":223764,"Bytes":7355898,"UnitPrice":"0.99"} +{"TrackId":972,"Name":"Woodpecker From Mars","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":340532,"Bytes":11174250,"UnitPrice":"0.99"} +{"TrackId":973,"Name":"War Pigs","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne","Milliseconds":464770,"Bytes":15267802,"UnitPrice":"0.99"} +{"TrackId":974,"Name":"Edge Of The World","AlbumId":77,"MediaTypeId":1,"GenreId":4,"Composer":"Faith No More","Milliseconds":250357,"Bytes":8235607,"UnitPrice":"0.99"} +{"TrackId":975,"Name":"Deixa Entrar","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":33619,"Bytes":1095012,"UnitPrice":"0.99"} +{"TrackId":976,"Name":"Falamansa Song","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":237165,"Bytes":7921313,"UnitPrice":"0.99"} +{"TrackId":977,"Name":"Xote Dos Milagres","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":269557,"Bytes":8897778,"UnitPrice":"0.99"} +{"TrackId":978,"Name":"Rindo Ŕ Toa","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222066,"Bytes":7365321,"UnitPrice":"0.99"} +{"TrackId":979,"Name":"Confidęncia","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222197,"Bytes":7460829,"UnitPrice":"0.99"} +{"TrackId":980,"Name":"Forró De Tóquio","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":169273,"Bytes":5588756,"UnitPrice":"0.99"} +{"TrackId":981,"Name":"Zeca Violeiro","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":143673,"Bytes":4781949,"UnitPrice":"0.99"} +{"TrackId":982,"Name":"Avisa","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":355030,"Bytes":11844320,"UnitPrice":"0.99"} +{"TrackId":983,"Name":"Principiando/Decolagem","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":116767,"Bytes":3923789,"UnitPrice":"0.99"} +{"TrackId":984,"Name":"Asas","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":231915,"Bytes":7711669,"UnitPrice":"0.99"} +{"TrackId":985,"Name":"Medo De Escuro","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":213760,"Bytes":7056323,"UnitPrice":"0.99"} +{"TrackId":986,"Name":"Oraçăo","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":271072,"Bytes":9003882,"UnitPrice":"0.99"} +{"TrackId":987,"Name":"Minha Gata","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":181838,"Bytes":6039502,"UnitPrice":"0.99"} +{"TrackId":988,"Name":"Desaforo","AlbumId":78,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":174524,"Bytes":5853561,"UnitPrice":"0.99"} +{"TrackId":989,"Name":"In Your Honor","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":230191,"Bytes":7468463,"UnitPrice":"0.99"} +{"TrackId":990,"Name":"No Way Back","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":196675,"Bytes":6421400,"UnitPrice":"0.99"} +{"TrackId":991,"Name":"Best Of You","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":255712,"Bytes":8363467,"UnitPrice":"0.99"} +{"TrackId":992,"Name":"DOA","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":252186,"Bytes":8232342,"UnitPrice":"0.99"} +{"TrackId":993,"Name":"Hell","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":117080,"Bytes":3819255,"UnitPrice":"0.99"} +{"TrackId":994,"Name":"The Last Song","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":199523,"Bytes":6496742,"UnitPrice":"0.99"} +{"TrackId":995,"Name":"Free Me","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":278700,"Bytes":9109340,"UnitPrice":"0.99"} +{"TrackId":996,"Name":"Resolve","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":288731,"Bytes":9416186,"UnitPrice":"0.99"} +{"TrackId":997,"Name":"The Deepest Blues Are Black","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":238419,"Bytes":7735473,"UnitPrice":"0.99"} +{"TrackId":998,"Name":"End Over End","AlbumId":79,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett","Milliseconds":352078,"Bytes":11395296,"UnitPrice":"0.99"} +{"TrackId":999,"Name":"Still","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":313182,"Bytes":10323157,"UnitPrice":"0.99"} +{"TrackId":1000,"Name":"What If I Do?","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":302994,"Bytes":9929799,"UnitPrice":"0.99"} +{"TrackId":1001,"Name":"Miracle","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":209684,"Bytes":6877994,"UnitPrice":"0.99"} +{"TrackId":1002,"Name":"Another Round","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":265848,"Bytes":8752670,"UnitPrice":"0.99"} +{"TrackId":1003,"Name":"Friend Of A Friend","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":193280,"Bytes":6355088,"UnitPrice":"0.99"} +{"TrackId":1004,"Name":"Over And Out","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":316264,"Bytes":10428382,"UnitPrice":"0.99"} +{"TrackId":1005,"Name":"On The Mend","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":271908,"Bytes":9071997,"UnitPrice":"0.99"} +{"TrackId":1006,"Name":"Virginia Moon","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":229198,"Bytes":7494639,"UnitPrice":"0.99"} +{"TrackId":1007,"Name":"Cold Day In The Sun","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":200724,"Bytes":6596617,"UnitPrice":"0.99"} +{"TrackId":1008,"Name":"Razor","AlbumId":80,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS","Milliseconds":293276,"Bytes":9721373,"UnitPrice":"0.99"} +{"TrackId":1009,"Name":"All My Life","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":263653,"Bytes":8665545,"UnitPrice":"0.99"} +{"TrackId":1010,"Name":"Low","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":268120,"Bytes":8847196,"UnitPrice":"0.99"} +{"TrackId":1011,"Name":"Have It All","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":298057,"Bytes":9729292,"UnitPrice":"0.99"} +{"TrackId":1012,"Name":"Times Like These","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":266370,"Bytes":8624691,"UnitPrice":"0.99"} +{"TrackId":1013,"Name":"Disenchanted Lullaby","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":273528,"Bytes":8919111,"UnitPrice":"0.99"} +{"TrackId":1014,"Name":"Tired Of You","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":311353,"Bytes":10094743,"UnitPrice":"0.99"} +{"TrackId":1015,"Name":"Halo","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":306442,"Bytes":10026371,"UnitPrice":"0.99"} +{"TrackId":1016,"Name":"Lonely As You","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":277185,"Bytes":9022628,"UnitPrice":"0.99"} +{"TrackId":1017,"Name":"Overdrive","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":270550,"Bytes":8793187,"UnitPrice":"0.99"} +{"TrackId":1018,"Name":"Burn Away","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":298396,"Bytes":9678073,"UnitPrice":"0.99"} +{"TrackId":1019,"Name":"Come Back","AlbumId":81,"MediaTypeId":1,"GenreId":4,"Composer":"Foo Fighters","Milliseconds":469968,"Bytes":15371980,"UnitPrice":"0.99"} +{"TrackId":1020,"Name":"Doll","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":83487,"Bytes":2702572,"UnitPrice":"0.99"} +{"TrackId":1021,"Name":"Monkey Wrench","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":231523,"Bytes":7527531,"UnitPrice":"0.99"} +{"TrackId":1022,"Name":"Hey, Johnny Park!","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":248528,"Bytes":8079480,"UnitPrice":"0.99"} +{"TrackId":1023,"Name":"My Poor Brain","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":213446,"Bytes":6973746,"UnitPrice":"0.99"} +{"TrackId":1024,"Name":"Wind Up","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":152163,"Bytes":4950667,"UnitPrice":"0.99"} +{"TrackId":1025,"Name":"Up In Arms","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":135732,"Bytes":4406227,"UnitPrice":"0.99"} +{"TrackId":1026,"Name":"My Hero","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":260101,"Bytes":8472365,"UnitPrice":"0.99"} +{"TrackId":1027,"Name":"See You","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":146782,"Bytes":4888173,"UnitPrice":"0.99"} +{"TrackId":1028,"Name":"Enough Space","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl","Milliseconds":157387,"Bytes":5169280,"UnitPrice":"0.99"} +{"TrackId":1029,"Name":"February Stars","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":289306,"Bytes":9344875,"UnitPrice":"0.99"} +{"TrackId":1030,"Name":"Everlong","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl","Milliseconds":250749,"Bytes":8270816,"UnitPrice":"0.99"} +{"TrackId":1031,"Name":"Walking After You","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Grohl","Milliseconds":303856,"Bytes":9898992,"UnitPrice":"0.99"} +{"TrackId":1032,"Name":"New Way Home","AlbumId":82,"MediaTypeId":1,"GenreId":1,"Composer":"Dave, Taylor, Nate, Chris","Milliseconds":342230,"Bytes":11205664,"UnitPrice":"0.99"} +{"TrackId":1033,"Name":"My Way","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"claude françois/gilles thibault/jacques revaux/paul anka","Milliseconds":275879,"Bytes":8928684,"UnitPrice":"0.99"} +{"TrackId":1034,"Name":"Strangers In The Night","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"berthold kaempfert/charles singleton/eddie snyder","Milliseconds":155794,"Bytes":5055295,"UnitPrice":"0.99"} +{"TrackId":1035,"Name":"New York, New York","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"fred ebb/john kander","Milliseconds":206001,"Bytes":6707993,"UnitPrice":"0.99"} +{"TrackId":1036,"Name":"I Get A Kick Out Of You","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"cole porter","Milliseconds":194429,"Bytes":6332441,"UnitPrice":"0.99"} +{"TrackId":1037,"Name":"Something Stupid","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"carson c. parks","Milliseconds":158615,"Bytes":5210643,"UnitPrice":"0.99"} +{"TrackId":1038,"Name":"Moon River","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"henry mancini/johnny mercer","Milliseconds":198922,"Bytes":6395808,"UnitPrice":"0.99"} +{"TrackId":1039,"Name":"What Now My Love","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"carl sigman/gilbert becaud/pierre leroyer","Milliseconds":149995,"Bytes":4913383,"UnitPrice":"0.99"} +{"TrackId":1040,"Name":"Summer Love","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"hans bradtke/heinz meier/johnny mercer","Milliseconds":174994,"Bytes":5693242,"UnitPrice":"0.99"} +{"TrackId":1041,"Name":"For Once In My Life","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"orlando murden/ronald miller","Milliseconds":171154,"Bytes":5557537,"UnitPrice":"0.99"} +{"TrackId":1042,"Name":"Love And Marriage","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"jimmy van heusen/sammy cahn","Milliseconds":89730,"Bytes":2930596,"UnitPrice":"0.99"} +{"TrackId":1043,"Name":"They Can't Take That Away From Me","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"george gershwin/ira gershwin","Milliseconds":161227,"Bytes":5240043,"UnitPrice":"0.99"} +{"TrackId":1044,"Name":"My Kind Of Town","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"jimmy van heusen/sammy cahn","Milliseconds":188499,"Bytes":6119915,"UnitPrice":"0.99"} +{"TrackId":1045,"Name":"Fly Me To The Moon","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"bart howard","Milliseconds":149263,"Bytes":4856954,"UnitPrice":"0.99"} +{"TrackId":1046,"Name":"I've Got You Under My Skin","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"cole porter","Milliseconds":210808,"Bytes":6883787,"UnitPrice":"0.99"} +{"TrackId":1047,"Name":"The Best Is Yet To Come","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"carolyn leigh/cy coleman","Milliseconds":173583,"Bytes":5633730,"UnitPrice":"0.99"} +{"TrackId":1048,"Name":"It Was A Very Good Year","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"ervin drake","Milliseconds":266605,"Bytes":8554066,"UnitPrice":"0.99"} +{"TrackId":1049,"Name":"Come Fly With Me","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"jimmy van heusen/sammy cahn","Milliseconds":190458,"Bytes":6231029,"UnitPrice":"0.99"} +{"TrackId":1050,"Name":"That's Life","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"dean kay thompson/kelly gordon","Milliseconds":187010,"Bytes":6095727,"UnitPrice":"0.99"} +{"TrackId":1051,"Name":"The Girl From Ipanema","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"antonio carlos jobim/norman gimbel/vinicius de moraes","Milliseconds":193750,"Bytes":6410674,"UnitPrice":"0.99"} +{"TrackId":1052,"Name":"The Lady Is A Tramp","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"lorenz hart/richard rodgers","Milliseconds":184111,"Bytes":5987372,"UnitPrice":"0.99"} +{"TrackId":1053,"Name":"Bad, Bad Leroy Brown","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"jim croce","Milliseconds":169900,"Bytes":5548581,"UnitPrice":"0.99"} +{"TrackId":1054,"Name":"Mack The Knife","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"bert brecht/kurt weill/marc blitzstein","Milliseconds":292075,"Bytes":9541052,"UnitPrice":"0.99"} +{"TrackId":1055,"Name":"Loves Been Good To Me","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"rod mckuen","Milliseconds":203964,"Bytes":6645365,"UnitPrice":"0.99"} +{"TrackId":1056,"Name":"L.A. Is My Lady","AlbumId":83,"MediaTypeId":1,"GenreId":12,"Composer":"alan bergman/marilyn bergman/peggy lipton jones/quincy jones","Milliseconds":193175,"Bytes":6378511,"UnitPrice":"0.99"} +{"TrackId":1057,"Name":"Entrando Na Sua (Intro)","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":179252,"Bytes":5840027,"UnitPrice":"0.99"} +{"TrackId":1058,"Name":"Nervosa","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":229537,"Bytes":7680421,"UnitPrice":"0.99"} +{"TrackId":1059,"Name":"Funk De Bamba (Com Fernanda Abreu)","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":237191,"Bytes":7866165,"UnitPrice":"0.99"} +{"TrackId":1060,"Name":"Call Me At Cleo´s","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":236617,"Bytes":7920510,"UnitPrice":"0.99"} +{"TrackId":1061,"Name":"Olhos Coloridos (Com Sandra De Sá)","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":321332,"Bytes":10567404,"UnitPrice":"0.99"} +{"TrackId":1062,"Name":"Zambaçăo","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":301113,"Bytes":10030604,"UnitPrice":"0.99"} +{"TrackId":1063,"Name":"Funk Hum","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":244453,"Bytes":8084475,"UnitPrice":"0.99"} +{"TrackId":1064,"Name":"Forty Days (Com DJ Hum)","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":221727,"Bytes":7347172,"UnitPrice":"0.99"} +{"TrackId":1065,"Name":"Balada Da Paula","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":"Emerson Villani","Milliseconds":322821,"Bytes":10603717,"UnitPrice":"0.99"} +{"TrackId":1066,"Name":"Dujji","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":324597,"Bytes":10833935,"UnitPrice":"0.99"} +{"TrackId":1067,"Name":"Meu Guarda-Chuva","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":248528,"Bytes":8216625,"UnitPrice":"0.99"} +{"TrackId":1068,"Name":"Motéis","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":213498,"Bytes":7041077,"UnitPrice":"0.99"} +{"TrackId":1069,"Name":"Whistle Stop","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":526132,"Bytes":17533664,"UnitPrice":"0.99"} +{"TrackId":1070,"Name":"16 Toneladas","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":191634,"Bytes":6390885,"UnitPrice":"0.99"} +{"TrackId":1071,"Name":"Divirta-Se (Saindo Da Sua)","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":74919,"Bytes":2439206,"UnitPrice":"0.99"} +{"TrackId":1072,"Name":"Forty Days Instrumental","AlbumId":84,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":292493,"Bytes":9584317,"UnitPrice":"0.99"} +{"TrackId":1073,"Name":"Óia Eu Aqui De Novo","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":219454,"Bytes":7469735,"UnitPrice":"0.99"} +{"TrackId":1074,"Name":"Baiăo Da Penha","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":null,"Milliseconds":247928,"Bytes":8393047,"UnitPrice":"0.99"} +{"TrackId":1075,"Name":"Esperando Na Janela","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Manuca/Raimundinho DoAcordion/Targino Godim","Milliseconds":261041,"Bytes":8660617,"UnitPrice":"0.99"} +{"TrackId":1076,"Name":"Juazeiro","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Humberto Teixeira/Luiz Gonzaga","Milliseconds":222275,"Bytes":7349779,"UnitPrice":"0.99"} +{"TrackId":1077,"Name":"Último Pau-De-Arara","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Corumbá/José Gumarăes/Venancio","Milliseconds":200437,"Bytes":6638563,"UnitPrice":"0.99"} +{"TrackId":1078,"Name":"Asa Branca","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Humberto Teixeira/Luiz Gonzaga","Milliseconds":217051,"Bytes":7387183,"UnitPrice":"0.99"} +{"TrackId":1079,"Name":"Qui Nem Jiló","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Humberto Teixeira/Luiz Gonzaga","Milliseconds":204695,"Bytes":6937472,"UnitPrice":"0.99"} +{"TrackId":1080,"Name":"Assum Preto","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Humberto Teixeira/Luiz Gonzaga","Milliseconds":199653,"Bytes":6625000,"UnitPrice":"0.99"} +{"TrackId":1081,"Name":"Pau-De-Arara","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Guio De Morais E Seus \"Parentes\"/Luiz Gonzaga","Milliseconds":191660,"Bytes":6340649,"UnitPrice":"0.99"} +{"TrackId":1082,"Name":"A Volta Da Asa Branca","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Luiz Gonzaga/Zé Dantas","Milliseconds":271020,"Bytes":9098093,"UnitPrice":"0.99"} +{"TrackId":1083,"Name":"O Amor Daqui De Casa","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Gilberto Gil","Milliseconds":148636,"Bytes":4888292,"UnitPrice":"0.99"} +{"TrackId":1084,"Name":"As Pegadas Do Amor","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Gilberto Gil","Milliseconds":209136,"Bytes":6899062,"UnitPrice":"0.99"} +{"TrackId":1085,"Name":"Lamento Sertanejo","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Dominguinhos/Gilberto Gil","Milliseconds":260963,"Bytes":8518290,"UnitPrice":"0.99"} +{"TrackId":1086,"Name":"Casinha Feliz","AlbumId":85,"MediaTypeId":1,"GenreId":10,"Composer":"Gilberto Gil","Milliseconds":32287,"Bytes":1039615,"UnitPrice":"0.99"} +{"TrackId":1087,"Name":"Introduçăo (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":154096,"Bytes":5227579,"UnitPrice":"0.99"} +{"TrackId":1088,"Name":"Palco (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":238315,"Bytes":8026622,"UnitPrice":"0.99"} +{"TrackId":1089,"Name":"Is This Love (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":295262,"Bytes":9819759,"UnitPrice":"0.99"} +{"TrackId":1090,"Name":"Stir It Up (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":282409,"Bytes":9594738,"UnitPrice":"0.99"} +{"TrackId":1091,"Name":"Refavela (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":236695,"Bytes":7985305,"UnitPrice":"0.99"} +{"TrackId":1092,"Name":"Vendedor De Caranguejo (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":248842,"Bytes":8358128,"UnitPrice":"0.99"} +{"TrackId":1093,"Name":"Quanta (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":357485,"Bytes":11774865,"UnitPrice":"0.99"} +{"TrackId":1094,"Name":"Estrela (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":285309,"Bytes":9436411,"UnitPrice":"0.99"} +{"TrackId":1095,"Name":"Pela Internet (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":263471,"Bytes":8804401,"UnitPrice":"0.99"} +{"TrackId":1096,"Name":"Cérebro Eletrônico (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":231627,"Bytes":7805352,"UnitPrice":"0.99"} +{"TrackId":1097,"Name":"Opachorô (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":259526,"Bytes":8596384,"UnitPrice":"0.99"} +{"TrackId":1098,"Name":"Copacabana (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":289671,"Bytes":9673672,"UnitPrice":"0.99"} +{"TrackId":1099,"Name":"A Novidade (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":316969,"Bytes":10508000,"UnitPrice":"0.99"} +{"TrackId":1100,"Name":"Ghandi (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222458,"Bytes":7481950,"UnitPrice":"0.99"} +{"TrackId":1101,"Name":"De Ouro E Marfim (Live)","AlbumId":86,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":234971,"Bytes":7838453,"UnitPrice":"0.99"} +{"TrackId":1102,"Name":"Doce De Carnaval (Candy All)","AlbumId":87,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":356101,"Bytes":11998470,"UnitPrice":"0.99"} +{"TrackId":1103,"Name":"Lamento De Carnaval","AlbumId":87,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":294530,"Bytes":9819276,"UnitPrice":"0.99"} +{"TrackId":1104,"Name":"Pretinha","AlbumId":87,"MediaTypeId":1,"GenreId":2,"Composer":null,"Milliseconds":265273,"Bytes":8914579,"UnitPrice":"0.99"} +{"TrackId":1105,"Name":"A Novidade","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":324780,"Bytes":10765600,"UnitPrice":"0.99"} +{"TrackId":1106,"Name":"Tenho Sede","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":261616,"Bytes":8708114,"UnitPrice":"0.99"} +{"TrackId":1107,"Name":"Refazenda","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":218305,"Bytes":7237784,"UnitPrice":"0.99"} +{"TrackId":1108,"Name":"Realce","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":264489,"Bytes":8847612,"UnitPrice":"0.99"} +{"TrackId":1109,"Name":"Esotérico","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":317779,"Bytes":10530533,"UnitPrice":"0.99"} +{"TrackId":1110,"Name":"Drăo","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":301453,"Bytes":9931950,"UnitPrice":"0.99"} +{"TrackId":1111,"Name":"A Paz","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":293093,"Bytes":9593064,"UnitPrice":"0.99"} +{"TrackId":1112,"Name":"Beira Mar","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":295444,"Bytes":9597994,"UnitPrice":"0.99"} +{"TrackId":1113,"Name":"Sampa","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":225697,"Bytes":7469905,"UnitPrice":"0.99"} +{"TrackId":1114,"Name":"Parabolicamará","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":284943,"Bytes":9543435,"UnitPrice":"0.99"} +{"TrackId":1115,"Name":"Tempo Rei","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":302733,"Bytes":10019269,"UnitPrice":"0.99"} +{"TrackId":1116,"Name":"Expresso 2222","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":284760,"Bytes":9690577,"UnitPrice":"0.99"} +{"TrackId":1117,"Name":"Aquele Abraço","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":263993,"Bytes":8805003,"UnitPrice":"0.99"} +{"TrackId":1118,"Name":"Palco","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":270550,"Bytes":9049901,"UnitPrice":"0.99"} +{"TrackId":1119,"Name":"Toda Menina Baiana","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":278177,"Bytes":9351000,"UnitPrice":"0.99"} +{"TrackId":1120,"Name":"Sítio Do Pica-Pau Amarelo","AlbumId":73,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":218070,"Bytes":7217955,"UnitPrice":"0.99"} +{"TrackId":1121,"Name":"Straight Out Of Line","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":259213,"Bytes":8511877,"UnitPrice":"0.99"} +{"TrackId":1122,"Name":"Faceless","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":216006,"Bytes":6992417,"UnitPrice":"0.99"} +{"TrackId":1123,"Name":"Changes","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna; Tony Rombola","Milliseconds":260022,"Bytes":8455835,"UnitPrice":"0.99"} +{"TrackId":1124,"Name":"Make Me Believe","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":248607,"Bytes":8075050,"UnitPrice":"0.99"} +{"TrackId":1125,"Name":"I Stand Alone","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":246125,"Bytes":8017041,"UnitPrice":"0.99"} +{"TrackId":1126,"Name":"Re-Align","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":260884,"Bytes":8513891,"UnitPrice":"0.99"} +{"TrackId":1127,"Name":"I Fucking Hate You","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":247170,"Bytes":8059642,"UnitPrice":"0.99"} +{"TrackId":1128,"Name":"Releasing The Demons","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":252760,"Bytes":8276372,"UnitPrice":"0.99"} +{"TrackId":1129,"Name":"Dead And Broken","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":251454,"Bytes":8206611,"UnitPrice":"0.99"} +{"TrackId":1130,"Name":"I Am","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":239516,"Bytes":7803270,"UnitPrice":"0.99"} +{"TrackId":1131,"Name":"The Awakening","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna","Milliseconds":89547,"Bytes":3035251,"UnitPrice":"0.99"} +{"TrackId":1132,"Name":"Serenity","AlbumId":88,"MediaTypeId":1,"GenreId":3,"Composer":"Sully Erna; Tony Rombola","Milliseconds":274834,"Bytes":9172976,"UnitPrice":"0.99"} +{"TrackId":1133,"Name":"American Idiot","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong, Mike Dirnt, Tré Cool","Milliseconds":174419,"Bytes":5705793,"UnitPrice":"0.99"} +{"TrackId":1134,"Name":"Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong/Green Day","Milliseconds":548336,"Bytes":17875209,"UnitPrice":"0.99"} +{"TrackId":1135,"Name":"Holiday","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Billie Joe Armstrong, Mike Dirnt, Tré Cool","Milliseconds":232724,"Bytes":7599602,"UnitPrice":"0.99"} +{"TrackId":1136,"Name":"Boulevard Of Broken Dreams","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Dint, Billie Joe, Tré Cool","Milliseconds":260858,"Bytes":8485122,"UnitPrice":"0.99"} +{"TrackId":1137,"Name":"Are We The Waiting","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":163004,"Bytes":5328329,"UnitPrice":"0.99"} +{"TrackId":1138,"Name":"St. Jimmy","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":175307,"Bytes":5716589,"UnitPrice":"0.99"} +{"TrackId":1139,"Name":"Give Me Novacaine","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":205871,"Bytes":6752485,"UnitPrice":"0.99"} +{"TrackId":1140,"Name":"She's A Rebel","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":120528,"Bytes":3901226,"UnitPrice":"0.99"} +{"TrackId":1141,"Name":"Extraordinary Girl","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":214021,"Bytes":6975177,"UnitPrice":"0.99"} +{"TrackId":1142,"Name":"Letterbomb","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":246151,"Bytes":7980902,"UnitPrice":"0.99"} +{"TrackId":1143,"Name":"Wake Me Up When September Ends","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Dint, Billie Joe, Tré Cool","Milliseconds":285753,"Bytes":9325597,"UnitPrice":"0.99"} +{"TrackId":1144,"Name":"Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We're Coming Home Again","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Mike Dirnt/Tré Cool","Milliseconds":558602,"Bytes":18139840,"UnitPrice":"0.99"} +{"TrackId":1145,"Name":"Whatsername","AlbumId":89,"MediaTypeId":1,"GenreId":4,"Composer":"Green Day","Milliseconds":252316,"Bytes":8244843,"UnitPrice":"0.99"} +{"TrackId":1146,"Name":"Welcome to the Jungle","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":273552,"Bytes":4538451,"UnitPrice":"0.99"} +{"TrackId":1147,"Name":"It's So Easy","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":202824,"Bytes":3394019,"UnitPrice":"0.99"} +{"TrackId":1148,"Name":"Nightrain","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":268537,"Bytes":4457283,"UnitPrice":"0.99"} +{"TrackId":1149,"Name":"Out Ta Get Me","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":263893,"Bytes":4382147,"UnitPrice":"0.99"} +{"TrackId":1150,"Name":"Mr. Brownstone","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":228924,"Bytes":3816323,"UnitPrice":"0.99"} +{"TrackId":1151,"Name":"Paradise City","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":406347,"Bytes":6687123,"UnitPrice":"0.99"} +{"TrackId":1152,"Name":"My Michelle","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":219961,"Bytes":3671299,"UnitPrice":"0.99"} +{"TrackId":1153,"Name":"Think About You","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":231640,"Bytes":3860275,"UnitPrice":"0.99"} +{"TrackId":1154,"Name":"Sweet Child O' Mine","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":356424,"Bytes":5879347,"UnitPrice":"0.99"} +{"TrackId":1155,"Name":"You're Crazy","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":197135,"Bytes":3301971,"UnitPrice":"0.99"} +{"TrackId":1156,"Name":"Anything Goes","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":206400,"Bytes":3451891,"UnitPrice":"0.99"} +{"TrackId":1157,"Name":"Rocket Queen","AlbumId":90,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":375349,"Bytes":6185539,"UnitPrice":"0.99"} +{"TrackId":1158,"Name":"Right Next Door to Hell","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":182321,"Bytes":3175950,"UnitPrice":"0.99"} +{"TrackId":1159,"Name":"Dust N' Bones","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":298374,"Bytes":5053742,"UnitPrice":"0.99"} +{"TrackId":1160,"Name":"Live and Let Die","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":184016,"Bytes":3203390,"UnitPrice":"0.99"} +{"TrackId":1161,"Name":"Don't Cry (Original)","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":284744,"Bytes":4833259,"UnitPrice":"0.99"} +{"TrackId":1162,"Name":"Perfect Crime","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":143637,"Bytes":2550030,"UnitPrice":"0.99"} +{"TrackId":1163,"Name":"You Ain't the First","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":156268,"Bytes":2754414,"UnitPrice":"0.99"} +{"TrackId":1164,"Name":"Bad Obsession","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":328282,"Bytes":5537678,"UnitPrice":"0.99"} +{"TrackId":1165,"Name":"Back off Bitch","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":303436,"Bytes":5135662,"UnitPrice":"0.99"} +{"TrackId":1166,"Name":"Double Talkin' Jive","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":203637,"Bytes":3520862,"UnitPrice":"0.99"} +{"TrackId":1167,"Name":"November Rain","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":537540,"Bytes":8923566,"UnitPrice":"0.99"} +{"TrackId":1168,"Name":"The Garden","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":322175,"Bytes":5438862,"UnitPrice":"0.99"} +{"TrackId":1169,"Name":"Garden of Eden","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":161539,"Bytes":2839694,"UnitPrice":"0.99"} +{"TrackId":1170,"Name":"Don't Damn Me","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":318901,"Bytes":5385886,"UnitPrice":"0.99"} +{"TrackId":1171,"Name":"Bad Apples","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":268351,"Bytes":4567966,"UnitPrice":"0.99"} +{"TrackId":1172,"Name":"Dead Horse","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":257600,"Bytes":4394014,"UnitPrice":"0.99"} +{"TrackId":1173,"Name":"Coma","AlbumId":91,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":616511,"Bytes":10201342,"UnitPrice":"0.99"} +{"TrackId":1174,"Name":"Civil War","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Duff McKagan/Slash/W. Axl Rose","Milliseconds":461165,"Bytes":15046579,"UnitPrice":"0.99"} +{"TrackId":1175,"Name":"14 Years","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Izzy Stradlin'/W. Axl Rose","Milliseconds":261355,"Bytes":8543664,"UnitPrice":"0.99"} +{"TrackId":1176,"Name":"Yesterdays","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Billy/Del James/W. Axl Rose/West Arkeen","Milliseconds":196205,"Bytes":6398489,"UnitPrice":"0.99"} +{"TrackId":1177,"Name":"Knockin' On Heaven's Door","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Dylan","Milliseconds":336457,"Bytes":10986716,"UnitPrice":"0.99"} +{"TrackId":1178,"Name":"Get In The Ring","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Duff McKagan/Slash/W. Axl Rose","Milliseconds":341054,"Bytes":11134105,"UnitPrice":"0.99"} +{"TrackId":1179,"Name":"Shotgun Blues","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"W. Axl Rose","Milliseconds":203206,"Bytes":6623916,"UnitPrice":"0.99"} +{"TrackId":1180,"Name":"Breakdown","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"W. Axl Rose","Milliseconds":424960,"Bytes":13978284,"UnitPrice":"0.99"} +{"TrackId":1181,"Name":"Pretty Tied Up","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Izzy Stradlin'","Milliseconds":287477,"Bytes":9408754,"UnitPrice":"0.99"} +{"TrackId":1182,"Name":"Locomotive","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Slash/W. Axl Rose","Milliseconds":522396,"Bytes":17236842,"UnitPrice":"0.99"} +{"TrackId":1183,"Name":"So Fine","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Duff McKagan","Milliseconds":246491,"Bytes":8039484,"UnitPrice":"0.99"} +{"TrackId":1184,"Name":"Estranged","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"W. Axl Rose","Milliseconds":563800,"Bytes":18343787,"UnitPrice":"0.99"} +{"TrackId":1185,"Name":"You Could Be Mine","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Izzy Stradlin'/W. Axl Rose","Milliseconds":343875,"Bytes":11207355,"UnitPrice":"0.99"} +{"TrackId":1186,"Name":"Don't Cry","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"Izzy Stradlin'/W. Axl Rose","Milliseconds":284238,"Bytes":9222458,"UnitPrice":"0.99"} +{"TrackId":1187,"Name":"My World","AlbumId":92,"MediaTypeId":1,"GenreId":3,"Composer":"W. Axl Rose","Milliseconds":84532,"Bytes":2764045,"UnitPrice":"0.99"} +{"TrackId":1188,"Name":"Colibri","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Richard Bull","Milliseconds":361012,"Bytes":12055329,"UnitPrice":"0.99"} +{"TrackId":1189,"Name":"Love Is The Colour","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"R. Carless","Milliseconds":251585,"Bytes":8419165,"UnitPrice":"0.99"} +{"TrackId":1190,"Name":"Magnetic Ocean","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Patrick Claher/Richard Bull","Milliseconds":321123,"Bytes":10720741,"UnitPrice":"0.99"} +{"TrackId":1191,"Name":"Deep Waters","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Richard Bull","Milliseconds":396460,"Bytes":13075359,"UnitPrice":"0.99"} +{"TrackId":1192,"Name":"L'Arc En Ciel De Miles","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Kevin Robinson/Richard Bull","Milliseconds":242390,"Bytes":8053997,"UnitPrice":"0.99"} +{"TrackId":1193,"Name":"Gypsy","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Kevin Robinson","Milliseconds":330997,"Bytes":11083374,"UnitPrice":"0.99"} +{"TrackId":1194,"Name":"Journey Into Sunlight","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Jean Paul Maunick","Milliseconds":249756,"Bytes":8241177,"UnitPrice":"0.99"} +{"TrackId":1195,"Name":"Sunchild","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Graham Harvey","Milliseconds":259970,"Bytes":8593143,"UnitPrice":"0.99"} +{"TrackId":1196,"Name":"Millenium","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Maxton Gig Beesley Jnr.","Milliseconds":379167,"Bytes":12511939,"UnitPrice":"0.99"} +{"TrackId":1197,"Name":"Thinking 'Bout Tomorrow","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Fayyaz Virgi/Richard Bull","Milliseconds":355395,"Bytes":11865384,"UnitPrice":"0.99"} +{"TrackId":1198,"Name":"Jacob's Ladder","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Julian Crampton","Milliseconds":367647,"Bytes":12201595,"UnitPrice":"0.99"} +{"TrackId":1199,"Name":"She Wears Black","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"G Harvey/R Hope-Taylor","Milliseconds":528666,"Bytes":17617944,"UnitPrice":"0.99"} +{"TrackId":1200,"Name":"Dark Side Of The Cog","AlbumId":93,"MediaTypeId":1,"GenreId":2,"Composer":"Jean Paul Maunick","Milliseconds":377155,"Bytes":12491122,"UnitPrice":"0.99"} +{"TrackId":1201,"Name":"Different World","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":258692,"Bytes":4383764,"UnitPrice":"0.99"} +{"TrackId":1202,"Name":"These Colours Don't Run","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":412152,"Bytes":6883500,"UnitPrice":"0.99"} +{"TrackId":1203,"Name":"Brighter Than a Thousand Suns","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":526255,"Bytes":8721490,"UnitPrice":"0.99"} +{"TrackId":1204,"Name":"The Pilgrim","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":307593,"Bytes":5172144,"UnitPrice":"0.99"} +{"TrackId":1205,"Name":"The Longest Day","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":467810,"Bytes":7785748,"UnitPrice":"0.99"} +{"TrackId":1206,"Name":"Out of the Shadows","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":336896,"Bytes":5647303,"UnitPrice":"0.99"} +{"TrackId":1207,"Name":"The Reincarnation of Benjamin Breeg","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":442106,"Bytes":7367736,"UnitPrice":"0.99"} +{"TrackId":1208,"Name":"For the Greater Good of God","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":564893,"Bytes":9367328,"UnitPrice":"0.99"} +{"TrackId":1209,"Name":"Lord of Light","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":444614,"Bytes":7393698,"UnitPrice":"0.99"} +{"TrackId":1210,"Name":"The Legacy","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":562966,"Bytes":9314287,"UnitPrice":"0.99"} +{"TrackId":1211,"Name":"Hallowed Be Thy Name (Live) [Non Album Bonus Track]","AlbumId":94,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":431262,"Bytes":7205816,"UnitPrice":"0.99"} +{"TrackId":1212,"Name":"The Number Of The Beast","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":294635,"Bytes":4718897,"UnitPrice":"0.99"} +{"TrackId":1213,"Name":"The Trooper","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":235311,"Bytes":3766272,"UnitPrice":"0.99"} +{"TrackId":1214,"Name":"Prowler","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":255634,"Bytes":4091904,"UnitPrice":"0.99"} +{"TrackId":1215,"Name":"Transylvania","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":265874,"Bytes":4255744,"UnitPrice":"0.99"} +{"TrackId":1216,"Name":"Remember Tomorrow","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Paul Di'Anno/Steve Harris","Milliseconds":352731,"Bytes":5648438,"UnitPrice":"0.99"} +{"TrackId":1217,"Name":"Where Eagles Dare","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":289358,"Bytes":4630528,"UnitPrice":"0.99"} +{"TrackId":1218,"Name":"Sanctuary","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"David Murray/Paul Di'Anno/Steve Harris","Milliseconds":293250,"Bytes":4694016,"UnitPrice":"0.99"} +{"TrackId":1219,"Name":"Running Free","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Paul Di'Anno/Steve Harris","Milliseconds":228937,"Bytes":3663872,"UnitPrice":"0.99"} +{"TrackId":1220,"Name":"Run To The Hilss","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":237557,"Bytes":3803136,"UnitPrice":"0.99"} +{"TrackId":1221,"Name":"2 Minutes To Midnight","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":337423,"Bytes":5400576,"UnitPrice":"0.99"} +{"TrackId":1222,"Name":"Iron Maiden","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":324623,"Bytes":5195776,"UnitPrice":"0.99"} +{"TrackId":1223,"Name":"Hallowed Be Thy Name","AlbumId":95,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":471849,"Bytes":7550976,"UnitPrice":"0.99"} +{"TrackId":1224,"Name":"Be Quick Or Be Dead","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Janick Gers","Milliseconds":196911,"Bytes":3151872,"UnitPrice":"0.99"} +{"TrackId":1225,"Name":"From Here To Eternity","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":259866,"Bytes":4159488,"UnitPrice":"0.99"} +{"TrackId":1226,"Name":"Can I Play With Madness","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":282488,"Bytes":4521984,"UnitPrice":"0.99"} +{"TrackId":1227,"Name":"Wasting Love","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Janick Gers","Milliseconds":347846,"Bytes":5566464,"UnitPrice":"0.99"} +{"TrackId":1228,"Name":"Tailgunner","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Steve Harris","Milliseconds":249469,"Bytes":3993600,"UnitPrice":"0.99"} +{"TrackId":1229,"Name":"The Evil That Men Do","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":325929,"Bytes":5216256,"UnitPrice":"0.99"} +{"TrackId":1230,"Name":"Afraid To Shoot Strangers","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":407980,"Bytes":6529024,"UnitPrice":"0.99"} +{"TrackId":1231,"Name":"Bring Your Daughter... To The Slaughter","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson","Milliseconds":317727,"Bytes":5085184,"UnitPrice":"0.99"} +{"TrackId":1232,"Name":"Heaven Can Wait","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":448574,"Bytes":7178240,"UnitPrice":"0.99"} +{"TrackId":1233,"Name":"The Clairvoyant","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":269871,"Bytes":4319232,"UnitPrice":"0.99"} +{"TrackId":1234,"Name":"Fear Of The Dark","AlbumId":96,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":431333,"Bytes":6906078,"UnitPrice":"0.99"} +{"TrackId":1235,"Name":"The Wicker Man","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":275539,"Bytes":11022464,"UnitPrice":"0.99"} +{"TrackId":1236,"Name":"Ghost Of The Navigator","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/Janick Gers/Steve Harris","Milliseconds":410070,"Bytes":16404608,"UnitPrice":"0.99"} +{"TrackId":1237,"Name":"Brave New World","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/David Murray/Steve Harris","Milliseconds":378984,"Bytes":15161472,"UnitPrice":"0.99"} +{"TrackId":1238,"Name":"Blood Brothers","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":434442,"Bytes":17379456,"UnitPrice":"0.99"} +{"TrackId":1239,"Name":"The Mercenary","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":282488,"Bytes":11300992,"UnitPrice":"0.99"} +{"TrackId":1240,"Name":"Dream Of Mirrors","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":561162,"Bytes":22448256,"UnitPrice":"0.99"} +{"TrackId":1241,"Name":"The Fallen Angel","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Adrian Smith/Steve Harris","Milliseconds":240718,"Bytes":9629824,"UnitPrice":"0.99"} +{"TrackId":1242,"Name":"The Nomad","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"David Murray/Steve Harris","Milliseconds":546115,"Bytes":21846144,"UnitPrice":"0.99"} +{"TrackId":1243,"Name":"Out Of The Silent Planet","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/Janick Gers/Steve Harris","Milliseconds":385541,"Bytes":15423616,"UnitPrice":"0.99"} +{"TrackId":1244,"Name":"The Thin Line Between Love & Hate","AlbumId":97,"MediaTypeId":1,"GenreId":1,"Composer":"David Murray/Steve Harris","Milliseconds":506801,"Bytes":20273280,"UnitPrice":"0.99"} +{"TrackId":1245,"Name":"Wildest Dreams","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Adrian Smith/Steve Harris","Milliseconds":232777,"Bytes":9312384,"UnitPrice":"0.99"} +{"TrackId":1246,"Name":"Rainmaker","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Bruce Dickinson/David Murray/Steve Harris","Milliseconds":228623,"Bytes":9146496,"UnitPrice":"0.99"} +{"TrackId":1247,"Name":"No More Lies","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":441782,"Bytes":17672320,"UnitPrice":"0.99"} +{"TrackId":1248,"Name":"Montsegur","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Bruce Dickinson/Janick Gers/Steve Harris","Milliseconds":350484,"Bytes":14020736,"UnitPrice":"0.99"} +{"TrackId":1249,"Name":"Dance Of Death","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Janick Gers/Steve Harris","Milliseconds":516649,"Bytes":20670727,"UnitPrice":"0.99"} +{"TrackId":1250,"Name":"Gates Of Tomorrow","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Bruce Dickinson/Janick Gers/Steve Harris","Milliseconds":312032,"Bytes":12482688,"UnitPrice":"0.99"} +{"TrackId":1251,"Name":"New Frontier","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Adrian Smith/Bruce Dickinson/Nicko McBrain","Milliseconds":304509,"Bytes":12181632,"UnitPrice":"0.99"} +{"TrackId":1252,"Name":"Paschendale","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Adrian Smith/Steve Harris","Milliseconds":508107,"Bytes":20326528,"UnitPrice":"0.99"} +{"TrackId":1253,"Name":"Face In The Sand","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":391105,"Bytes":15648948,"UnitPrice":"0.99"} +{"TrackId":1254,"Name":"Age Of Innocence","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"David Murray/Steve Harris","Milliseconds":370468,"Bytes":14823478,"UnitPrice":"0.99"} +{"TrackId":1255,"Name":"Journeyman","AlbumId":98,"MediaTypeId":1,"GenreId":13,"Composer":"Bruce Dickinson/David Murray/Steve Harris","Milliseconds":427023,"Bytes":17082496,"UnitPrice":"0.99"} +{"TrackId":1256,"Name":"Be Quick Or Be Dead","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/Janick Gers","Milliseconds":204512,"Bytes":8181888,"UnitPrice":"0.99"} +{"TrackId":1257,"Name":"From Here To Eternity","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":218357,"Bytes":8739038,"UnitPrice":"0.99"} +{"TrackId":1258,"Name":"Afraid To Shoot Strangers","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":416496,"Bytes":16664589,"UnitPrice":"0.99"} +{"TrackId":1259,"Name":"Fear Is The Key","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/Janick Gers","Milliseconds":335307,"Bytes":13414528,"UnitPrice":"0.99"} +{"TrackId":1260,"Name":"Childhood's End","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":280607,"Bytes":11225216,"UnitPrice":"0.99"} +{"TrackId":1261,"Name":"Wasting Love","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/Janick Gers","Milliseconds":350981,"Bytes":14041216,"UnitPrice":"0.99"} +{"TrackId":1262,"Name":"The Fugitive","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":294112,"Bytes":11765888,"UnitPrice":"0.99"} +{"TrackId":1263,"Name":"Chains Of Misery","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/David Murray","Milliseconds":217443,"Bytes":8700032,"UnitPrice":"0.99"} +{"TrackId":1264,"Name":"The Apparition","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":234605,"Bytes":9386112,"UnitPrice":"0.99"} +{"TrackId":1265,"Name":"Judas Be My Guide","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Bruce Dickinson/David Murray","Milliseconds":188786,"Bytes":7553152,"UnitPrice":"0.99"} +{"TrackId":1266,"Name":"Weekend Warrior","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":339748,"Bytes":13594678,"UnitPrice":"0.99"} +{"TrackId":1267,"Name":"Fear Of The Dark","AlbumId":99,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":436976,"Bytes":17483789,"UnitPrice":"0.99"} +{"TrackId":1268,"Name":"01 - Prowler","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Steve Harris","Milliseconds":236173,"Bytes":5668992,"UnitPrice":"0.99"} +{"TrackId":1269,"Name":"02 - Sanctuary","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"David Murray/Paul Di'Anno/Steve Harris","Milliseconds":196284,"Bytes":4712576,"UnitPrice":"0.99"} +{"TrackId":1270,"Name":"03 - Remember Tomorrow","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Harris/Paul Di´Anno","Milliseconds":328620,"Bytes":7889024,"UnitPrice":"0.99"} +{"TrackId":1271,"Name":"04 - Running Free","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Harris/Paul Di´Anno","Milliseconds":197276,"Bytes":4739122,"UnitPrice":"0.99"} +{"TrackId":1272,"Name":"05 - Phantom of the Opera","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Steve Harris","Milliseconds":428016,"Bytes":10276872,"UnitPrice":"0.99"} +{"TrackId":1273,"Name":"06 - Transylvania","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Steve Harris","Milliseconds":259343,"Bytes":6226048,"UnitPrice":"0.99"} +{"TrackId":1274,"Name":"07 - Strange World","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Steve Harris","Milliseconds":332460,"Bytes":7981184,"UnitPrice":"0.99"} +{"TrackId":1275,"Name":"08 - Charlotte the Harlot","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Murray Dave","Milliseconds":252708,"Bytes":6066304,"UnitPrice":"0.99"} +{"TrackId":1276,"Name":"09 - Iron Maiden","AlbumId":100,"MediaTypeId":1,"GenreId":6,"Composer":"Steve Harris","Milliseconds":216058,"Bytes":5189891,"UnitPrice":"0.99"} +{"TrackId":1277,"Name":"The Ides Of March","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":105926,"Bytes":2543744,"UnitPrice":"0.99"} +{"TrackId":1278,"Name":"Wrathchild","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":174471,"Bytes":4188288,"UnitPrice":"0.99"} +{"TrackId":1279,"Name":"Murders In The Rue Morgue","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":258377,"Bytes":6205786,"UnitPrice":"0.99"} +{"TrackId":1280,"Name":"Another Life","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":203049,"Bytes":4874368,"UnitPrice":"0.99"} +{"TrackId":1281,"Name":"Genghis Khan","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":187141,"Bytes":4493440,"UnitPrice":"0.99"} +{"TrackId":1282,"Name":"Innocent Exile","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Di´Anno/Harris","Milliseconds":232515,"Bytes":5584861,"UnitPrice":"0.99"} +{"TrackId":1283,"Name":"Killers","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":300956,"Bytes":7227440,"UnitPrice":"0.99"} +{"TrackId":1284,"Name":"Prodigal Son","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":372349,"Bytes":8937600,"UnitPrice":"0.99"} +{"TrackId":1285,"Name":"Purgatory","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":200150,"Bytes":4804736,"UnitPrice":"0.99"} +{"TrackId":1286,"Name":"Drifter","AlbumId":101,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":288757,"Bytes":6934660,"UnitPrice":"0.99"} +{"TrackId":1287,"Name":"Intro- Churchill S Speech","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":null,"Milliseconds":48013,"Bytes":1154488,"UnitPrice":"0.99"} +{"TrackId":1288,"Name":"Aces High","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":null,"Milliseconds":276375,"Bytes":6635187,"UnitPrice":"0.99"} +{"TrackId":1289,"Name":"2 Minutes To Midnight","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Smith/Dickinson","Milliseconds":366550,"Bytes":8799380,"UnitPrice":"0.99"} +{"TrackId":1290,"Name":"The Trooper","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":268878,"Bytes":6455255,"UnitPrice":"0.99"} +{"TrackId":1291,"Name":"Revelations","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Dickinson","Milliseconds":371826,"Bytes":8926021,"UnitPrice":"0.99"} +{"TrackId":1292,"Name":"Flight Of Icarus","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Smith/Dickinson","Milliseconds":229982,"Bytes":5521744,"UnitPrice":"0.99"} +{"TrackId":1293,"Name":"Rime Of The Ancient Mariner","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":789472,"Bytes":18949518,"UnitPrice":"0.99"} +{"TrackId":1294,"Name":"Powerslave","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":454974,"Bytes":10921567,"UnitPrice":"0.99"} +{"TrackId":1295,"Name":"The Number Of The Beast","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":275121,"Bytes":6605094,"UnitPrice":"0.99"} +{"TrackId":1296,"Name":"Hallowed Be Thy Name","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":451422,"Bytes":10836304,"UnitPrice":"0.99"} +{"TrackId":1297,"Name":"Iron Maiden","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":261955,"Bytes":6289117,"UnitPrice":"0.99"} +{"TrackId":1298,"Name":"Run To The Hills","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":231627,"Bytes":5561241,"UnitPrice":"0.99"} +{"TrackId":1299,"Name":"Running Free","AlbumId":102,"MediaTypeId":1,"GenreId":3,"Composer":"Harris/Di Anno","Milliseconds":204617,"Bytes":4912986,"UnitPrice":"0.99"} +{"TrackId":1300,"Name":"Wrathchild","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":183666,"Bytes":4410181,"UnitPrice":"0.99"} +{"TrackId":1301,"Name":"Acacia Avenue","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":null,"Milliseconds":379872,"Bytes":9119118,"UnitPrice":"0.99"} +{"TrackId":1302,"Name":"Children Of The Damned","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":278177,"Bytes":6678446,"UnitPrice":"0.99"} +{"TrackId":1303,"Name":"Die With Your Boots On","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":314174,"Bytes":7542367,"UnitPrice":"0.99"} +{"TrackId":1304,"Name":"Phantom Of The Opera","AlbumId":102,"MediaTypeId":1,"GenreId":13,"Composer":"Steve Harris","Milliseconds":441155,"Bytes":10589917,"UnitPrice":"0.99"} +{"TrackId":1305,"Name":"Be Quick Or Be Dead","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":233142,"Bytes":5599853,"UnitPrice":"0.99"} +{"TrackId":1306,"Name":"The Number Of The Beast","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":294008,"Bytes":7060625,"UnitPrice":"0.99"} +{"TrackId":1307,"Name":"Wrathchild","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":174106,"Bytes":4182963,"UnitPrice":"0.99"} +{"TrackId":1308,"Name":"From Here To Eternity","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":284447,"Bytes":6831163,"UnitPrice":"0.99"} +{"TrackId":1309,"Name":"Can I Play With Madness","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":213106,"Bytes":5118995,"UnitPrice":"0.99"} +{"TrackId":1310,"Name":"Wasting Love","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":336953,"Bytes":8091301,"UnitPrice":"0.99"} +{"TrackId":1311,"Name":"Tailgunner","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":247640,"Bytes":5947795,"UnitPrice":"0.99"} +{"TrackId":1312,"Name":"The Evil That Men Do","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":478145,"Bytes":11479913,"UnitPrice":"0.99"} +{"TrackId":1313,"Name":"Afraid To Shoot Strangers","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":412525,"Bytes":9905048,"UnitPrice":"0.99"} +{"TrackId":1314,"Name":"Fear Of The Dark","AlbumId":103,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":431542,"Bytes":10361452,"UnitPrice":"0.99"} +{"TrackId":1315,"Name":"Bring Your Daughter... To The Slaughter...","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":376711,"Bytes":9045532,"UnitPrice":"0.99"} +{"TrackId":1316,"Name":"The Clairvoyant","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":262426,"Bytes":6302648,"UnitPrice":"0.99"} +{"TrackId":1317,"Name":"Heaven Can Wait","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":440555,"Bytes":10577743,"UnitPrice":"0.99"} +{"TrackId":1318,"Name":"Run To The Hills","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":235859,"Bytes":5665052,"UnitPrice":"0.99"} +{"TrackId":1319,"Name":"2 Minutes To Midnight","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":338233,"Bytes":8122030,"UnitPrice":"0.99"} +{"TrackId":1320,"Name":"Iron Maiden","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":494602,"Bytes":11874875,"UnitPrice":"0.99"} +{"TrackId":1321,"Name":"Hallowed Be Thy Name","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":447791,"Bytes":10751410,"UnitPrice":"0.99"} +{"TrackId":1322,"Name":"The Trooper","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":232672,"Bytes":5588560,"UnitPrice":"0.99"} +{"TrackId":1323,"Name":"Sanctuary","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":318511,"Bytes":7648679,"UnitPrice":"0.99"} +{"TrackId":1324,"Name":"Running Free","AlbumId":104,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":474017,"Bytes":11380851,"UnitPrice":"0.99"} +{"TrackId":1325,"Name":"Tailgunner","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Steve Harris","Milliseconds":255582,"Bytes":4089856,"UnitPrice":"0.99"} +{"TrackId":1326,"Name":"Holy Smoke","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Steve Harris","Milliseconds":229459,"Bytes":3672064,"UnitPrice":"0.99"} +{"TrackId":1327,"Name":"No Prayer For The Dying","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":263941,"Bytes":4225024,"UnitPrice":"0.99"} +{"TrackId":1328,"Name":"Public Enema Number One","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/David Murray","Milliseconds":254197,"Bytes":4071587,"UnitPrice":"0.99"} +{"TrackId":1329,"Name":"Fates Warning","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"David Murray/Steve Harris","Milliseconds":250853,"Bytes":4018088,"UnitPrice":"0.99"} +{"TrackId":1330,"Name":"The Assassin","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":258768,"Bytes":4141056,"UnitPrice":"0.99"} +{"TrackId":1331,"Name":"Run Silent Run Deep","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Steve Harris","Milliseconds":275408,"Bytes":4407296,"UnitPrice":"0.99"} +{"TrackId":1332,"Name":"Hooks In You","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":247510,"Bytes":3960832,"UnitPrice":"0.99"} +{"TrackId":1333,"Name":"Bring Your Daughter... ...To The Slaughter","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson","Milliseconds":284238,"Bytes":4548608,"UnitPrice":"0.99"} +{"TrackId":1334,"Name":"Mother Russia","AlbumId":105,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":332617,"Bytes":5322752,"UnitPrice":"0.99"} +{"TrackId":1335,"Name":"Where Eagles Dare","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":369554,"Bytes":5914624,"UnitPrice":"0.99"} +{"TrackId":1336,"Name":"Revelations","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson","Milliseconds":408607,"Bytes":6539264,"UnitPrice":"0.99"} +{"TrackId":1337,"Name":"Flight Of The Icarus","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":230269,"Bytes":3686400,"UnitPrice":"0.99"} +{"TrackId":1338,"Name":"Die With Your Boots On","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":325694,"Bytes":5212160,"UnitPrice":"0.99"} +{"TrackId":1339,"Name":"The Trooper","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":251454,"Bytes":4024320,"UnitPrice":"0.99"} +{"TrackId":1340,"Name":"Still Life","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"David Murray/Steve Harris","Milliseconds":294347,"Bytes":4710400,"UnitPrice":"0.99"} +{"TrackId":1341,"Name":"Quest For Fire","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":221309,"Bytes":3543040,"UnitPrice":"0.99"} +{"TrackId":1342,"Name":"Sun And Steel","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":206367,"Bytes":3306324,"UnitPrice":"0.99"} +{"TrackId":1343,"Name":"To Tame A Land","AlbumId":106,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":445283,"Bytes":7129264,"UnitPrice":"0.99"} +{"TrackId":1344,"Name":"Aces High","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":269531,"Bytes":6472088,"UnitPrice":"0.99"} +{"TrackId":1345,"Name":"2 Minutes To Midnight","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Smith/Dickinson","Milliseconds":359810,"Bytes":8638809,"UnitPrice":"0.99"} +{"TrackId":1346,"Name":"Losfer Words","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":252891,"Bytes":6074756,"UnitPrice":"0.99"} +{"TrackId":1347,"Name":"Flash of The Blade","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Dickinson","Milliseconds":242729,"Bytes":5828861,"UnitPrice":"0.99"} +{"TrackId":1348,"Name":"Duelists","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":366471,"Bytes":8800686,"UnitPrice":"0.99"} +{"TrackId":1349,"Name":"Back in the Village","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Dickinson/Smith","Milliseconds":320548,"Bytes":7696518,"UnitPrice":"0.99"} +{"TrackId":1350,"Name":"Powerslave","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Dickinson","Milliseconds":407823,"Bytes":9791106,"UnitPrice":"0.99"} +{"TrackId":1351,"Name":"Rime of the Ancient Mariner","AlbumId":107,"MediaTypeId":1,"GenreId":3,"Composer":"Harris","Milliseconds":816509,"Bytes":19599577,"UnitPrice":"0.99"} +{"TrackId":1352,"Name":"Intro","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":115931,"Bytes":4638848,"UnitPrice":"0.99"} +{"TrackId":1353,"Name":"The Wicker Man","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":281782,"Bytes":11272320,"UnitPrice":"0.99"} +{"TrackId":1354,"Name":"Ghost Of The Navigator","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/Janick Gers/Steve Harris","Milliseconds":408607,"Bytes":16345216,"UnitPrice":"0.99"} +{"TrackId":1355,"Name":"Brave New World","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson/David Murray/Steve Harris","Milliseconds":366785,"Bytes":14676148,"UnitPrice":"0.99"} +{"TrackId":1356,"Name":"Wrathchild","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":185808,"Bytes":7434368,"UnitPrice":"0.99"} +{"TrackId":1357,"Name":"2 Minutes To Midnight","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson","Milliseconds":386821,"Bytes":15474816,"UnitPrice":"0.99"} +{"TrackId":1358,"Name":"Blood Brothers","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":435513,"Bytes":17422464,"UnitPrice":"0.99"} +{"TrackId":1359,"Name":"Sign Of The Cross","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":649116,"Bytes":25966720,"UnitPrice":"0.99"} +{"TrackId":1360,"Name":"The Mercenary","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Janick Gers/Steve Harris","Milliseconds":282697,"Bytes":11309184,"UnitPrice":"0.99"} +{"TrackId":1361,"Name":"The Trooper","AlbumId":108,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":273528,"Bytes":10942592,"UnitPrice":"0.99"} +{"TrackId":1362,"Name":"Dream Of Mirrors","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":578324,"Bytes":23134336,"UnitPrice":"0.99"} +{"TrackId":1363,"Name":"The Clansman","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":559203,"Bytes":22370432,"UnitPrice":"0.99"} +{"TrackId":1364,"Name":"The Evil That Men Do","AlbumId":109,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Bruce Dickinson/Steve Harris","Milliseconds":280737,"Bytes":11231360,"UnitPrice":"0.99"} +{"TrackId":1365,"Name":"Fear Of The Dark","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":460695,"Bytes":18430080,"UnitPrice":"0.99"} +{"TrackId":1366,"Name":"Iron Maiden","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":351869,"Bytes":14076032,"UnitPrice":"0.99"} +{"TrackId":1367,"Name":"The Number Of The Beast","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":300434,"Bytes":12022107,"UnitPrice":"0.99"} +{"TrackId":1368,"Name":"Hallowed Be Thy Name","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":443977,"Bytes":17760384,"UnitPrice":"0.99"} +{"TrackId":1369,"Name":"Sanctuary","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"David Murray/Paul Di'Anno/Steve Harris","Milliseconds":317335,"Bytes":12695680,"UnitPrice":"0.99"} +{"TrackId":1370,"Name":"Run To The Hills","AlbumId":109,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":292179,"Bytes":11688064,"UnitPrice":"0.99"} +{"TrackId":1371,"Name":"Moonchild","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith; Bruce Dickinson","Milliseconds":340767,"Bytes":8179151,"UnitPrice":"0.99"} +{"TrackId":1372,"Name":"Infinite Dreams","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":369005,"Bytes":8858669,"UnitPrice":"0.99"} +{"TrackId":1373,"Name":"Can I Play With Madness","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith; Bruce Dickinson; Steve Harris","Milliseconds":211043,"Bytes":5067867,"UnitPrice":"0.99"} +{"TrackId":1374,"Name":"The Evil That Men Do","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith; Bruce Dickinson; Steve Harris","Milliseconds":273998,"Bytes":6578930,"UnitPrice":"0.99"} +{"TrackId":1375,"Name":"Seventh Son of a Seventh Son","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":593580,"Bytes":14249000,"UnitPrice":"0.99"} +{"TrackId":1376,"Name":"The Prophecy","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Dave Murray; Steve Harris","Milliseconds":305475,"Bytes":7334450,"UnitPrice":"0.99"} +{"TrackId":1377,"Name":"The Clairvoyant","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith; Bruce Dickinson; Steve Harris","Milliseconds":267023,"Bytes":6411510,"UnitPrice":"0.99"} +{"TrackId":1378,"Name":"Only the Good Die Young","AlbumId":110,"MediaTypeId":1,"GenreId":3,"Composer":"Bruce Dickinson; Harris","Milliseconds":280894,"Bytes":6744431,"UnitPrice":"0.99"} +{"TrackId":1379,"Name":"Caught Somewhere in Time","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":445779,"Bytes":10701149,"UnitPrice":"0.99"} +{"TrackId":1380,"Name":"Wasted Years","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith","Milliseconds":307565,"Bytes":7384358,"UnitPrice":"0.99"} +{"TrackId":1381,"Name":"Sea of Madness","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith","Milliseconds":341995,"Bytes":8210695,"UnitPrice":"0.99"} +{"TrackId":1382,"Name":"Heaven Can Wait","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":441417,"Bytes":10596431,"UnitPrice":"0.99"} +{"TrackId":1383,"Name":"Stranger in a Strange Land","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith","Milliseconds":344502,"Bytes":8270899,"UnitPrice":"0.99"} +{"TrackId":1384,"Name":"Alexander the Great","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":515631,"Bytes":12377742,"UnitPrice":"0.99"} +{"TrackId":1385,"Name":"De Ja Vu","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"David Murray/Steve Harris","Milliseconds":296176,"Bytes":7113035,"UnitPrice":"0.99"} +{"TrackId":1386,"Name":"The Loneliness of the Long Dis","AlbumId":111,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":391314,"Bytes":9393598,"UnitPrice":"0.99"} +{"TrackId":1387,"Name":"22 Acacia Avenue","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Steve Harris","Milliseconds":395572,"Bytes":5542516,"UnitPrice":"0.99"} +{"TrackId":1388,"Name":"Children of the Damned","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":274364,"Bytes":3845631,"UnitPrice":"0.99"} +{"TrackId":1389,"Name":"Gangland","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Clive Burr/Steve Harris","Milliseconds":228440,"Bytes":3202866,"UnitPrice":"0.99"} +{"TrackId":1390,"Name":"Hallowed Be Thy Name","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":428669,"Bytes":6006107,"UnitPrice":"0.99"} +{"TrackId":1391,"Name":"Invaders","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":203180,"Bytes":2849181,"UnitPrice":"0.99"} +{"TrackId":1392,"Name":"Run to the Hills","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Steve Harris","Milliseconds":228884,"Bytes":3209124,"UnitPrice":"0.99"} +{"TrackId":1393,"Name":"The Number Of The Beast","AlbumId":112,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":293407,"Bytes":11737216,"UnitPrice":"0.99"} +{"TrackId":1394,"Name":"The Prisoner","AlbumId":112,"MediaTypeId":1,"GenreId":3,"Composer":"Adrian Smith/Steve Harris","Milliseconds":361299,"Bytes":5062906,"UnitPrice":"0.99"} +{"TrackId":1395,"Name":"Sign Of The Cross","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":678008,"Bytes":27121792,"UnitPrice":"0.99"} +{"TrackId":1396,"Name":"Lord Of The Flies","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":303699,"Bytes":12148864,"UnitPrice":"0.99"} +{"TrackId":1397,"Name":"Man On The Edge","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers","Milliseconds":253413,"Bytes":10137728,"UnitPrice":"0.99"} +{"TrackId":1398,"Name":"Fortunes Of War","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":443977,"Bytes":17760384,"UnitPrice":"0.99"} +{"TrackId":1399,"Name":"Look For The Truth","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers/Steve Harris","Milliseconds":310230,"Bytes":12411008,"UnitPrice":"0.99"} +{"TrackId":1400,"Name":"The Aftermath","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers/Steve Harris","Milliseconds":380786,"Bytes":15233152,"UnitPrice":"0.99"} +{"TrackId":1401,"Name":"Judgement Of Heaven","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":312476,"Bytes":12501120,"UnitPrice":"0.99"} +{"TrackId":1402,"Name":"Blood On The World's Hands","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":357799,"Bytes":14313600,"UnitPrice":"0.99"} +{"TrackId":1403,"Name":"The Edge Of Darkness","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers/Steve Harris","Milliseconds":399333,"Bytes":15974528,"UnitPrice":"0.99"} +{"TrackId":1404,"Name":"2 A.M.","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers/Steve Harris","Milliseconds":337658,"Bytes":13511087,"UnitPrice":"0.99"} +{"TrackId":1405,"Name":"The Unbeliever","AlbumId":113,"MediaTypeId":1,"GenreId":1,"Composer":"Janick Gers/Steve Harris","Milliseconds":490422,"Bytes":19617920,"UnitPrice":"0.99"} +{"TrackId":1406,"Name":"Futureal","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Steve Harris","Milliseconds":175777,"Bytes":7032960,"UnitPrice":"0.99"} +{"TrackId":1407,"Name":"The Angel And The Gambler","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":592744,"Bytes":23711872,"UnitPrice":"0.99"} +{"TrackId":1408,"Name":"Lightning Strikes Twice","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"David Murray/Steve Harris","Milliseconds":290377,"Bytes":11616384,"UnitPrice":"0.99"} +{"TrackId":1409,"Name":"The Clansman","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":539689,"Bytes":21592327,"UnitPrice":"0.99"} +{"TrackId":1410,"Name":"When Two Worlds Collide","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/David Murray/Steve Harris","Milliseconds":377312,"Bytes":15093888,"UnitPrice":"0.99"} +{"TrackId":1411,"Name":"The Educated Fool","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":404767,"Bytes":16191616,"UnitPrice":"0.99"} +{"TrackId":1412,"Name":"Don't Look To The Eyes Of A Stranger","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":483657,"Bytes":19347584,"UnitPrice":"0.99"} +{"TrackId":1413,"Name":"Como Estais Amigos","AlbumId":114,"MediaTypeId":1,"GenreId":1,"Composer":"Blaze Bayley/Janick Gers","Milliseconds":330292,"Bytes":13213824,"UnitPrice":"0.99"} +{"TrackId":1414,"Name":"Please Please Please","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"James Brown/Johnny Terry","Milliseconds":165067,"Bytes":5394585,"UnitPrice":"0.99"} +{"TrackId":1415,"Name":"Think","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Lowman Pauling","Milliseconds":166739,"Bytes":5513208,"UnitPrice":"0.99"} +{"TrackId":1416,"Name":"Night Train","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Jimmy Forrest/Lewis C. Simpkins/Oscar Washington","Milliseconds":212401,"Bytes":7027377,"UnitPrice":"0.99"} +{"TrackId":1417,"Name":"Out Of Sight","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Ted Wright","Milliseconds":143725,"Bytes":4711323,"UnitPrice":"0.99"} +{"TrackId":1418,"Name":"Papa's Got A Brand New Bag Pt.1","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"James Brown","Milliseconds":127399,"Bytes":4174420,"UnitPrice":"0.99"} +{"TrackId":1419,"Name":"I Got You (I Feel Good)","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"James Brown","Milliseconds":167392,"Bytes":5468472,"UnitPrice":"0.99"} +{"TrackId":1420,"Name":"It's A Man's Man's Man's World","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Betty Newsome/James Brown","Milliseconds":168228,"Bytes":5541611,"UnitPrice":"0.99"} +{"TrackId":1421,"Name":"Cold Sweat","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Alfred Ellis/James Brown","Milliseconds":172408,"Bytes":5643213,"UnitPrice":"0.99"} +{"TrackId":1422,"Name":"Say It Loud, I'm Black And I'm Proud Pt.1","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Alfred Ellis/James Brown","Milliseconds":167392,"Bytes":5478117,"UnitPrice":"0.99"} +{"TrackId":1423,"Name":"Get Up (I Feel Like Being A) Sex Machine","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Bobby Byrd/James Brown/Ron Lenhoff","Milliseconds":316551,"Bytes":10498031,"UnitPrice":"0.99"} +{"TrackId":1424,"Name":"Hey America","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Addie William Jones/Nat Jones","Milliseconds":218226,"Bytes":7187857,"UnitPrice":"0.99"} +{"TrackId":1425,"Name":"Make It Funky Pt.1","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Charles Bobbitt/James Brown","Milliseconds":196231,"Bytes":6507782,"UnitPrice":"0.99"} +{"TrackId":1426,"Name":"I'm A Greedy Man Pt.1","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Charles Bobbitt/James Brown","Milliseconds":217730,"Bytes":7251211,"UnitPrice":"0.99"} +{"TrackId":1427,"Name":"Get On The Good Foot","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Fred Wesley/James Brown/Joseph Mims","Milliseconds":215902,"Bytes":7182736,"UnitPrice":"0.99"} +{"TrackId":1428,"Name":"Get Up Offa That Thing","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Deanna Brown/Deidra Jenkins/Yamma Brown","Milliseconds":250723,"Bytes":8355989,"UnitPrice":"0.99"} +{"TrackId":1429,"Name":"It's Too Funky In Here","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Brad Shapiro/George Jackson/Robert Miller/Walter Shaw","Milliseconds":239072,"Bytes":7973979,"UnitPrice":"0.99"} +{"TrackId":1430,"Name":"Living In America","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Charlie Midnight/Dan Hartman","Milliseconds":282880,"Bytes":9432346,"UnitPrice":"0.99"} +{"TrackId":1431,"Name":"I'm Real","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Full Force/James Brown","Milliseconds":334236,"Bytes":11183457,"UnitPrice":"0.99"} +{"TrackId":1432,"Name":"Hot Pants Pt.1","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"Fred Wesley/James Brown","Milliseconds":188212,"Bytes":6295110,"UnitPrice":"0.99"} +{"TrackId":1433,"Name":"Soul Power (Live)","AlbumId":115,"MediaTypeId":1,"GenreId":14,"Composer":"James Brown","Milliseconds":260728,"Bytes":8593206,"UnitPrice":"0.99"} +{"TrackId":1434,"Name":"When You Gonna Learn (Digeridoo)","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Jay Kay/Kay, Jay","Milliseconds":230635,"Bytes":7655482,"UnitPrice":"0.99"} +{"TrackId":1435,"Name":"Too Young To Die","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":365818,"Bytes":12391660,"UnitPrice":"0.99"} +{"TrackId":1436,"Name":"Hooked Up","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":275879,"Bytes":9301687,"UnitPrice":"0.99"} +{"TrackId":1437,"Name":"If I Like It, I Do It","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Gelder, Nick van","Milliseconds":293093,"Bytes":9848207,"UnitPrice":"0.99"} +{"TrackId":1438,"Name":"Music Of The Wind","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":383033,"Bytes":12870239,"UnitPrice":"0.99"} +{"TrackId":1439,"Name":"Emergency On Planet Earth","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":245263,"Bytes":8117218,"UnitPrice":"0.99"} +{"TrackId":1440,"Name":"Whatever It Is, I Just Can't Stop","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Jay Kay/Kay, Jay","Milliseconds":247222,"Bytes":8249453,"UnitPrice":"0.99"} +{"TrackId":1441,"Name":"Blow Your Mind","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":512339,"Bytes":17089176,"UnitPrice":"0.99"} +{"TrackId":1442,"Name":"Revolution 1993","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Smith, Toby","Milliseconds":616829,"Bytes":20816872,"UnitPrice":"0.99"} +{"TrackId":1443,"Name":"Didgin' Out","AlbumId":116,"MediaTypeId":1,"GenreId":1,"Composer":"Buchanan, Wallis","Milliseconds":157100,"Bytes":5263555,"UnitPrice":"0.99"} +{"TrackId":1444,"Name":"Canned Heat","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay","Milliseconds":331964,"Bytes":11042037,"UnitPrice":"0.99"} +{"TrackId":1445,"Name":"Planet Home","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay/Toby Smith","Milliseconds":284447,"Bytes":9566237,"UnitPrice":"0.99"} +{"TrackId":1446,"Name":"Black Capricorn Day","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay","Milliseconds":341629,"Bytes":11477231,"UnitPrice":"0.99"} +{"TrackId":1447,"Name":"Soul Education","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay/Toby Smith","Milliseconds":255477,"Bytes":8575435,"UnitPrice":"0.99"} +{"TrackId":1448,"Name":"Failling","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay/Toby Smith","Milliseconds":225227,"Bytes":7503999,"UnitPrice":"0.99"} +{"TrackId":1449,"Name":"Destitute Illusions","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Derrick McKenzie/Jay Kay/Toby Smith","Milliseconds":340218,"Bytes":11452651,"UnitPrice":"0.99"} +{"TrackId":1450,"Name":"Supersonic","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay","Milliseconds":315872,"Bytes":10699265,"UnitPrice":"0.99"} +{"TrackId":1451,"Name":"Butterfly","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay/Toby Smith","Milliseconds":268852,"Bytes":8947356,"UnitPrice":"0.99"} +{"TrackId":1452,"Name":"Were Do We Go From Here","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay","Milliseconds":313626,"Bytes":10504158,"UnitPrice":"0.99"} +{"TrackId":1453,"Name":"King For A Day","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Jay Kay/Toby Smith","Milliseconds":221544,"Bytes":7335693,"UnitPrice":"0.99"} +{"TrackId":1454,"Name":"Deeper Underground","AlbumId":117,"MediaTypeId":1,"GenreId":14,"Composer":"Toby Smith","Milliseconds":281808,"Bytes":9351277,"UnitPrice":"0.99"} +{"TrackId":1455,"Name":"Just Another Story","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":529684,"Bytes":17582818,"UnitPrice":"0.99"} +{"TrackId":1456,"Name":"Stillness In Time","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":257097,"Bytes":8644290,"UnitPrice":"0.99"} +{"TrackId":1457,"Name":"Half The Man","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":289854,"Bytes":9577679,"UnitPrice":"0.99"} +{"TrackId":1458,"Name":"Light Years","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":354560,"Bytes":11796244,"UnitPrice":"0.99"} +{"TrackId":1459,"Name":"Manifest Destiny","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":382197,"Bytes":12676962,"UnitPrice":"0.99"} +{"TrackId":1460,"Name":"The Kids","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith","Milliseconds":309995,"Bytes":10334529,"UnitPrice":"0.99"} +{"TrackId":1461,"Name":"Mr. Moon","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Stuard Zender/Toby Smith","Milliseconds":329534,"Bytes":11043559,"UnitPrice":"0.99"} +{"TrackId":1462,"Name":"Scam","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Stuart Zender","Milliseconds":422321,"Bytes":14019705,"UnitPrice":"0.99"} +{"TrackId":1463,"Name":"Journey To Arnhemland","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"Toby Smith/Wallis Buchanan","Milliseconds":322455,"Bytes":10843832,"UnitPrice":"0.99"} +{"TrackId":1464,"Name":"Morning Glory","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"J. Kay/Jay Kay","Milliseconds":384130,"Bytes":12777210,"UnitPrice":"0.99"} +{"TrackId":1465,"Name":"Space Cowboy","AlbumId":118,"MediaTypeId":1,"GenreId":15,"Composer":"J. Kay/Jay Kay","Milliseconds":385697,"Bytes":12906520,"UnitPrice":"0.99"} +{"TrackId":1466,"Name":"Last Chance","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/C. Muncey","Milliseconds":112352,"Bytes":3683130,"UnitPrice":"0.99"} +{"TrackId":1467,"Name":"Are You Gonna Be My Girl","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Muncey/N. Cester","Milliseconds":213890,"Bytes":6992324,"UnitPrice":"0.99"} +{"TrackId":1468,"Name":"Rollover D.J.","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/N. Cester","Milliseconds":196702,"Bytes":6406517,"UnitPrice":"0.99"} +{"TrackId":1469,"Name":"Look What You've Done","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"N. Cester","Milliseconds":230974,"Bytes":7517083,"UnitPrice":"0.99"} +{"TrackId":1470,"Name":"Get What You Need","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/C. Muncey/N. Cester","Milliseconds":247719,"Bytes":8043765,"UnitPrice":"0.99"} +{"TrackId":1471,"Name":"Move On","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/N. Cester","Milliseconds":260623,"Bytes":8519353,"UnitPrice":"0.99"} +{"TrackId":1472,"Name":"Radio Song","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/C. Muncey/N. Cester","Milliseconds":272117,"Bytes":8871509,"UnitPrice":"0.99"} +{"TrackId":1473,"Name":"Get Me Outta Here","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/N. Cester","Milliseconds":176274,"Bytes":5729098,"UnitPrice":"0.99"} +{"TrackId":1474,"Name":"Cold Hard Bitch","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/C. Muncey/N. Cester","Milliseconds":243278,"Bytes":7929610,"UnitPrice":"0.99"} +{"TrackId":1475,"Name":"Come Around Again","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Muncey/N. Cester","Milliseconds":270497,"Bytes":8872405,"UnitPrice":"0.99"} +{"TrackId":1476,"Name":"Take It Or Leave It","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Muncey/N. Cester","Milliseconds":142889,"Bytes":4643370,"UnitPrice":"0.99"} +{"TrackId":1477,"Name":"Lazy Gun","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester/N. Cester","Milliseconds":282174,"Bytes":9186285,"UnitPrice":"0.99"} +{"TrackId":1478,"Name":"Timothy","AlbumId":119,"MediaTypeId":1,"GenreId":4,"Composer":"C. Cester","Milliseconds":270341,"Bytes":8856507,"UnitPrice":"0.99"} +{"TrackId":1479,"Name":"Foxy Lady","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":199340,"Bytes":6480896,"UnitPrice":"0.99"} +{"TrackId":1480,"Name":"Manic Depression","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":222302,"Bytes":7289272,"UnitPrice":"0.99"} +{"TrackId":1481,"Name":"Red House","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":224130,"Bytes":7285851,"UnitPrice":"0.99"} +{"TrackId":1482,"Name":"Can You See Me","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":153077,"Bytes":4987068,"UnitPrice":"0.99"} +{"TrackId":1483,"Name":"Love Or Confusion","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":193123,"Bytes":6329408,"UnitPrice":"0.99"} +{"TrackId":1484,"Name":"I Don't Live Today","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":235311,"Bytes":7661214,"UnitPrice":"0.99"} +{"TrackId":1485,"Name":"May This Be Love","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":191216,"Bytes":6240028,"UnitPrice":"0.99"} +{"TrackId":1486,"Name":"Fire","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":164989,"Bytes":5383075,"UnitPrice":"0.99"} +{"TrackId":1487,"Name":"Third Stone From The Sun","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":404453,"Bytes":13186975,"UnitPrice":"0.99"} +{"TrackId":1488,"Name":"Remember","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":168150,"Bytes":5509613,"UnitPrice":"0.99"} +{"TrackId":1489,"Name":"Are You Experienced?","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":254537,"Bytes":8292497,"UnitPrice":"0.99"} +{"TrackId":1490,"Name":"Hey Joe","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Roberts","Milliseconds":210259,"Bytes":6870054,"UnitPrice":"0.99"} +{"TrackId":1491,"Name":"Stone Free","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":216293,"Bytes":7002331,"UnitPrice":"0.99"} +{"TrackId":1492,"Name":"Purple Haze","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":171572,"Bytes":5597056,"UnitPrice":"0.99"} +{"TrackId":1493,"Name":"51st Anniversary","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":196388,"Bytes":6398044,"UnitPrice":"0.99"} +{"TrackId":1494,"Name":"The Wind Cries Mary","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":200463,"Bytes":6540638,"UnitPrice":"0.99"} +{"TrackId":1495,"Name":"Highway Chile","AlbumId":120,"MediaTypeId":1,"GenreId":1,"Composer":"Jimi Hendrix","Milliseconds":212453,"Bytes":6887949,"UnitPrice":"0.99"} +{"TrackId":1496,"Name":"Surfing with the Alien","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":263707,"Bytes":4418504,"UnitPrice":"0.99"} +{"TrackId":1497,"Name":"Ice 9","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":239721,"Bytes":4036215,"UnitPrice":"0.99"} +{"TrackId":1498,"Name":"Crushing Day","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":314768,"Bytes":5232158,"UnitPrice":"0.99"} +{"TrackId":1499,"Name":"Always With Me, Always With You","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":202035,"Bytes":3435777,"UnitPrice":"0.99"} +{"TrackId":1500,"Name":"Satch Boogie","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":193560,"Bytes":3300654,"UnitPrice":"0.99"} +{"TrackId":1501,"Name":"Hill of the Skull","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":"J. Satriani","Milliseconds":108435,"Bytes":1944738,"UnitPrice":"0.99"} +{"TrackId":1502,"Name":"Circles","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":209071,"Bytes":3548553,"UnitPrice":"0.99"} +{"TrackId":1503,"Name":"Lords of Karma","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":"J. Satriani","Milliseconds":288227,"Bytes":4809279,"UnitPrice":"0.99"} +{"TrackId":1504,"Name":"Midnight","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":"J. Satriani","Milliseconds":102630,"Bytes":1851753,"UnitPrice":"0.99"} +{"TrackId":1505,"Name":"Echo","AlbumId":121,"MediaTypeId":2,"GenreId":1,"Composer":"J. Satriani","Milliseconds":337570,"Bytes":5595557,"UnitPrice":"0.99"} +{"TrackId":1506,"Name":"Engenho De Dentro","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":310073,"Bytes":10211473,"UnitPrice":"0.99"} +{"TrackId":1507,"Name":"Alcohol","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":355239,"Bytes":12010478,"UnitPrice":"0.99"} +{"TrackId":1508,"Name":"Mama Africa","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":283062,"Bytes":9488316,"UnitPrice":"0.99"} +{"TrackId":1509,"Name":"Salve Simpatia","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":343484,"Bytes":11314756,"UnitPrice":"0.99"} +{"TrackId":1510,"Name":"W/Brasil (Chama O Síndico)","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":317100,"Bytes":10599953,"UnitPrice":"0.99"} +{"TrackId":1511,"Name":"País Tropical","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":452519,"Bytes":14946972,"UnitPrice":"0.99"} +{"TrackId":1512,"Name":"Os Alquimistas Estăo Chegando","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":367281,"Bytes":12304520,"UnitPrice":"0.99"} +{"TrackId":1513,"Name":"Charles Anjo 45","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":389276,"Bytes":13022833,"UnitPrice":"0.99"} +{"TrackId":1514,"Name":"Selassię","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":326321,"Bytes":10724982,"UnitPrice":"0.99"} +{"TrackId":1515,"Name":"Menina Sarará","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":191477,"Bytes":6393818,"UnitPrice":"0.99"} +{"TrackId":1516,"Name":"Que Maravilha","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":338076,"Bytes":10996656,"UnitPrice":"0.99"} +{"TrackId":1517,"Name":"Santa Clara Clareou","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":380081,"Bytes":12524725,"UnitPrice":"0.99"} +{"TrackId":1518,"Name":"Filho Maravilha","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":227526,"Bytes":7498259,"UnitPrice":"0.99"} +{"TrackId":1519,"Name":"Taj Mahal","AlbumId":122,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":289750,"Bytes":9502898,"UnitPrice":"0.99"} +{"TrackId":1520,"Name":"Rapidamente","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":252238,"Bytes":8470107,"UnitPrice":"0.99"} +{"TrackId":1521,"Name":"As Dores do Mundo","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":"Hyldon","Milliseconds":255477,"Bytes":8537092,"UnitPrice":"0.99"} +{"TrackId":1522,"Name":"Vou Pra Ai","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":300878,"Bytes":10053718,"UnitPrice":"0.99"} +{"TrackId":1523,"Name":"My Brother","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":253231,"Bytes":8431821,"UnitPrice":"0.99"} +{"TrackId":1524,"Name":"Há Quanto Tempo","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":270027,"Bytes":9004470,"UnitPrice":"0.99"} +{"TrackId":1525,"Name":"Vício","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":269897,"Bytes":8887216,"UnitPrice":"0.99"} +{"TrackId":1679,"Name":"Dezesseis","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":323918,"Bytes":10573515,"UnitPrice":"0.99"} +{"TrackId":1526,"Name":"Encontrar Alguém","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":"Marco Tulio Lara/Rogerio Flausino","Milliseconds":224078,"Bytes":7437935,"UnitPrice":"0.99"} +{"TrackId":1527,"Name":"Dance Enquanto é Tempo","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":229093,"Bytes":7583799,"UnitPrice":"0.99"} +{"TrackId":1528,"Name":"A Tarde","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":266919,"Bytes":8836127,"UnitPrice":"0.99"} +{"TrackId":1529,"Name":"Always Be All Right","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":128078,"Bytes":4299676,"UnitPrice":"0.99"} +{"TrackId":1530,"Name":"Sem Sentido","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":250462,"Bytes":8292108,"UnitPrice":"0.99"} +{"TrackId":1531,"Name":"Onibusfobia","AlbumId":123,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":315977,"Bytes":10474904,"UnitPrice":"0.99"} +{"TrackId":1532,"Name":"Pura Elegancia","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":284107,"Bytes":9632269,"UnitPrice":"0.99"} +{"TrackId":1533,"Name":"Choramingando","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":190484,"Bytes":6400532,"UnitPrice":"0.99"} +{"TrackId":1534,"Name":"Por Merecer","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":230582,"Bytes":7764601,"UnitPrice":"0.99"} +{"TrackId":1535,"Name":"No Futuro","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":182308,"Bytes":6056200,"UnitPrice":"0.99"} +{"TrackId":1536,"Name":"Voce Inteira","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":241084,"Bytes":8077282,"UnitPrice":"0.99"} +{"TrackId":1537,"Name":"Cuando A Noite Vai Chegando","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":270628,"Bytes":9081874,"UnitPrice":"0.99"} +{"TrackId":1538,"Name":"Naquele Dia","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":251768,"Bytes":8452654,"UnitPrice":"0.99"} +{"TrackId":1539,"Name":"Equinocio","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":269008,"Bytes":8871455,"UnitPrice":"0.99"} +{"TrackId":1540,"Name":"Papelăo","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":213263,"Bytes":7257390,"UnitPrice":"0.99"} +{"TrackId":1541,"Name":"Cuando Eu For Pro Ceu","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":118804,"Bytes":3948371,"UnitPrice":"0.99"} +{"TrackId":1542,"Name":"Do Nosso Amor","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":203415,"Bytes":6774566,"UnitPrice":"0.99"} +{"TrackId":1543,"Name":"Borogodo","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":208457,"Bytes":7104588,"UnitPrice":"0.99"} +{"TrackId":1544,"Name":"Cafezinho","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":180924,"Bytes":6031174,"UnitPrice":"0.99"} +{"TrackId":1545,"Name":"Enquanto O Dia Năo Vem","AlbumId":124,"MediaTypeId":1,"GenreId":16,"Composer":"Joăo Suplicy","Milliseconds":220891,"Bytes":7248336,"UnitPrice":"0.99"} +{"TrackId":1546,"Name":"The Green Manalishi","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":205792,"Bytes":6720789,"UnitPrice":"0.99"} +{"TrackId":1547,"Name":"Living After Midnight","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":213289,"Bytes":7056785,"UnitPrice":"0.99"} +{"TrackId":1548,"Name":"Breaking The Law (Live)","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":144195,"Bytes":4728246,"UnitPrice":"0.99"} +{"TrackId":1549,"Name":"Hot Rockin'","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":197328,"Bytes":6509179,"UnitPrice":"0.99"} +{"TrackId":1550,"Name":"Heading Out To The Highway (Live)","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":276427,"Bytes":9006022,"UnitPrice":"0.99"} +{"TrackId":1551,"Name":"The Hellion","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":41900,"Bytes":1351993,"UnitPrice":"0.99"} +{"TrackId":1552,"Name":"Electric Eye","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":222197,"Bytes":7231368,"UnitPrice":"0.99"} +{"TrackId":1553,"Name":"You've Got Another Thing Comin'","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":305162,"Bytes":9962558,"UnitPrice":"0.99"} +{"TrackId":1554,"Name":"Turbo Lover","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":335542,"Bytes":11068866,"UnitPrice":"0.99"} +{"TrackId":1555,"Name":"Freewheel Burning","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":265952,"Bytes":8713599,"UnitPrice":"0.99"} +{"TrackId":1556,"Name":"Some Heads Are Gonna Roll","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":249939,"Bytes":8198617,"UnitPrice":"0.99"} +{"TrackId":1557,"Name":"Metal Meltdown","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":290664,"Bytes":9390646,"UnitPrice":"0.99"} +{"TrackId":1558,"Name":"Ram It Down","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":292179,"Bytes":9554023,"UnitPrice":"0.99"} +{"TrackId":1559,"Name":"Diamonds And Rust (Live)","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":219350,"Bytes":7163147,"UnitPrice":"0.99"} +{"TrackId":1560,"Name":"Victim Of Change (Live)","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":430942,"Bytes":14067512,"UnitPrice":"0.99"} +{"TrackId":1561,"Name":"Tyrant (Live)","AlbumId":125,"MediaTypeId":1,"GenreId":3,"Composer":null,"Milliseconds":282253,"Bytes":9190536,"UnitPrice":"0.99"} +{"TrackId":1562,"Name":"Comin' Home","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Ace Frehley","Milliseconds":172068,"Bytes":5661120,"UnitPrice":"0.99"} +{"TrackId":1563,"Name":"Plaster Caster","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":198060,"Bytes":6528719,"UnitPrice":"0.99"} +{"TrackId":1564,"Name":"Goin' Blind","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons, Stephen Coronel","Milliseconds":217652,"Bytes":7167523,"UnitPrice":"0.99"} +{"TrackId":1565,"Name":"Do You Love Me","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Bob Ezrin, Kim Fowley","Milliseconds":193619,"Bytes":6343111,"UnitPrice":"0.99"} +{"TrackId":1566,"Name":"Domino","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":226377,"Bytes":7488191,"UnitPrice":"0.99"} +{"TrackId":1567,"Name":"Sure Know Something","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Vincent Poncia","Milliseconds":254354,"Bytes":8375190,"UnitPrice":"0.99"} +{"TrackId":1568,"Name":"A World Without Heroes","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed","Milliseconds":177815,"Bytes":5832524,"UnitPrice":"0.99"} +{"TrackId":1569,"Name":"Rock Bottom","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Ace Frehley","Milliseconds":200594,"Bytes":6560818,"UnitPrice":"0.99"} +{"TrackId":1570,"Name":"See You Tonight","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":146494,"Bytes":4817521,"UnitPrice":"0.99"} +{"TrackId":1571,"Name":"I Still Love You","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley","Milliseconds":369815,"Bytes":12086145,"UnitPrice":"0.99"} +{"TrackId":1572,"Name":"Every Time I Look At You","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Vincent Cusano","Milliseconds":283898,"Bytes":9290948,"UnitPrice":"0.99"} +{"TrackId":1573,"Name":"2,000 Man","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Jagger, Keith Richard","Milliseconds":312450,"Bytes":10292829,"UnitPrice":"0.99"} +{"TrackId":1574,"Name":"Beth","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Peter Criss, Stan Penridge, Bob Ezrin","Milliseconds":170187,"Bytes":5577807,"UnitPrice":"0.99"} +{"TrackId":1575,"Name":"Nothin' To Lose","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Gene Simmons","Milliseconds":222354,"Bytes":7351460,"UnitPrice":"0.99"} +{"TrackId":1576,"Name":"Rock And Roll All Nite","AlbumId":126,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Stanley, Gene Simmons","Milliseconds":259631,"Bytes":8549296,"UnitPrice":"0.99"} +{"TrackId":1577,"Name":"Immigrant Song","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":201247,"Bytes":6457766,"UnitPrice":"0.99"} +{"TrackId":1578,"Name":"Heartbreaker","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones/Robert Plant","Milliseconds":316081,"Bytes":10179657,"UnitPrice":"0.99"} +{"TrackId":1579,"Name":"Since I've Been Loving You","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":416365,"Bytes":13471959,"UnitPrice":"0.99"} +{"TrackId":1580,"Name":"Black Dog","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":317622,"Bytes":10267572,"UnitPrice":"0.99"} +{"TrackId":1581,"Name":"Dazed And Confused","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Led Zeppelin","Milliseconds":1116734,"Bytes":36052247,"UnitPrice":"0.99"} +{"TrackId":1582,"Name":"Stairway To Heaven","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":529658,"Bytes":17050485,"UnitPrice":"0.99"} +{"TrackId":1583,"Name":"Going To California","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":234605,"Bytes":7646749,"UnitPrice":"0.99"} +{"TrackId":1584,"Name":"That's The Way","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":343431,"Bytes":11248455,"UnitPrice":"0.99"} +{"TrackId":1585,"Name":"Whole Lotta Love (Medley)","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon","Milliseconds":825103,"Bytes":26742545,"UnitPrice":"0.99"} +{"TrackId":1586,"Name":"Thank You","AlbumId":127,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":398262,"Bytes":12831826,"UnitPrice":"0.99"} +{"TrackId":1587,"Name":"We're Gonna Groove","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Ben E.King/James Bethea","Milliseconds":157570,"Bytes":5180975,"UnitPrice":"0.99"} +{"TrackId":1588,"Name":"Poor Tom","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":182491,"Bytes":6016220,"UnitPrice":"0.99"} +{"TrackId":1589,"Name":"I Can't Quit You Baby","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Willie Dixon","Milliseconds":258168,"Bytes":8437098,"UnitPrice":"0.99"} +{"TrackId":1590,"Name":"Walter's Walk","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":270785,"Bytes":8712499,"UnitPrice":"0.99"} +{"TrackId":1591,"Name":"Ozone Baby","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":215954,"Bytes":7079588,"UnitPrice":"0.99"} +{"TrackId":1592,"Name":"Darlene","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Bonham, John Paul Jones","Milliseconds":307226,"Bytes":10078197,"UnitPrice":"0.99"} +{"TrackId":1593,"Name":"Bonzo's Montreux","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham","Milliseconds":258925,"Bytes":8557447,"UnitPrice":"0.99"} +{"TrackId":1594,"Name":"Wearing And Tearing","AlbumId":128,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":330004,"Bytes":10701590,"UnitPrice":"0.99"} +{"TrackId":1595,"Name":"The Song Remains The Same","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Jimmy Page & Robert Plant/Robert Plant","Milliseconds":330004,"Bytes":10708950,"UnitPrice":"0.99"} +{"TrackId":1596,"Name":"The Rain Song","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Jimmy Page & Robert Plant/Robert Plant","Milliseconds":459180,"Bytes":15029875,"UnitPrice":"0.99"} +{"TrackId":1597,"Name":"Over The Hills And Far Away","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Jimmy Page & Robert Plant/Robert Plant","Milliseconds":290089,"Bytes":9552829,"UnitPrice":"0.99"} +{"TrackId":1598,"Name":"The Crunge","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":197407,"Bytes":6460212,"UnitPrice":"0.99"} +{"TrackId":1599,"Name":"Dancing Days","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Jimmy Page & Robert Plant/Robert Plant","Milliseconds":223216,"Bytes":7250104,"UnitPrice":"0.99"} +{"TrackId":1600,"Name":"D'Yer Mak'er","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":262948,"Bytes":8645935,"UnitPrice":"0.99"} +{"TrackId":1601,"Name":"No Quarter","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones","Milliseconds":420493,"Bytes":13656517,"UnitPrice":"0.99"} +{"TrackId":1602,"Name":"The Ocean","AlbumId":129,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":271098,"Bytes":8846469,"UnitPrice":"0.99"} +{"TrackId":1603,"Name":"In The Evening","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant & John Paul Jones","Milliseconds":410566,"Bytes":13399734,"UnitPrice":"0.99"} +{"TrackId":1604,"Name":"South Bound Saurez","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones & Robert Plant","Milliseconds":254406,"Bytes":8420427,"UnitPrice":"0.99"} +{"TrackId":1605,"Name":"Fool In The Rain","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant & John Paul Jones","Milliseconds":372950,"Bytes":12371433,"UnitPrice":"0.99"} +{"TrackId":1606,"Name":"Hot Dog","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page & Robert Plant","Milliseconds":197198,"Bytes":6536167,"UnitPrice":"0.99"} +{"TrackId":1607,"Name":"Carouselambra","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones, Jimmy Page & Robert Plant","Milliseconds":634435,"Bytes":20858315,"UnitPrice":"0.99"} +{"TrackId":1608,"Name":"All My Love","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant & John Paul Jones","Milliseconds":356284,"Bytes":11684862,"UnitPrice":"0.99"} +{"TrackId":1609,"Name":"I'm Gonna Crawl","AlbumId":130,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant & John Paul Jones","Milliseconds":329639,"Bytes":10737665,"UnitPrice":"0.99"} +{"TrackId":1610,"Name":"Black Dog","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones","Milliseconds":296672,"Bytes":9660588,"UnitPrice":"0.99"} +{"TrackId":1611,"Name":"Rock & Roll","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones, John Bonham","Milliseconds":220917,"Bytes":7142127,"UnitPrice":"0.99"} +{"TrackId":1612,"Name":"The Battle Of Evermore","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":351555,"Bytes":11525689,"UnitPrice":"0.99"} +{"TrackId":1613,"Name":"Stairway To Heaven","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":481619,"Bytes":15706767,"UnitPrice":"0.99"} +{"TrackId":1614,"Name":"Misty Mountain Hop","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones","Milliseconds":278857,"Bytes":9092799,"UnitPrice":"0.99"} +{"TrackId":1615,"Name":"Four Sticks","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":284447,"Bytes":9481301,"UnitPrice":"0.99"} +{"TrackId":1616,"Name":"Going To California","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":215693,"Bytes":7068737,"UnitPrice":"0.99"} +{"TrackId":1617,"Name":"When The Levee Breaks","AlbumId":131,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie","Milliseconds":427702,"Bytes":13912107,"UnitPrice":"0.99"} +{"TrackId":1618,"Name":"Good Times Bad Times","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":166164,"Bytes":5464077,"UnitPrice":"0.99"} +{"TrackId":1619,"Name":"Babe I'm Gonna Leave You","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":401475,"Bytes":13189312,"UnitPrice":"0.99"} +{"TrackId":1620,"Name":"You Shook Me","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"J. B. Lenoir/Willie Dixon","Milliseconds":388179,"Bytes":12643067,"UnitPrice":"0.99"} +{"TrackId":1621,"Name":"Dazed and Confused","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":386063,"Bytes":12610326,"UnitPrice":"0.99"} +{"TrackId":1622,"Name":"Your Time Is Gonna Come","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Paul Jones","Milliseconds":274860,"Bytes":9011653,"UnitPrice":"0.99"} +{"TrackId":1623,"Name":"Black Mountain Side","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":132702,"Bytes":4440602,"UnitPrice":"0.99"} +{"TrackId":1624,"Name":"Communication Breakdown","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":150230,"Bytes":4899554,"UnitPrice":"0.99"} +{"TrackId":1625,"Name":"I Can't Quit You Baby","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Willie Dixon","Milliseconds":282671,"Bytes":9252733,"UnitPrice":"0.99"} +{"TrackId":1626,"Name":"How Many More Times","AlbumId":132,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/John Bonham/John Paul Jones","Milliseconds":508055,"Bytes":16541364,"UnitPrice":"0.99"} +{"TrackId":1627,"Name":"Whole Lotta Love","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones, John Bonham","Milliseconds":334471,"Bytes":11026243,"UnitPrice":"0.99"} +{"TrackId":1628,"Name":"What Is And What Should Never Be","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":287973,"Bytes":9369385,"UnitPrice":"0.99"} +{"TrackId":1629,"Name":"The Lemon Song","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones, John Bonham","Milliseconds":379141,"Bytes":12463496,"UnitPrice":"0.99"} +{"TrackId":1630,"Name":"Thank You","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":287791,"Bytes":9337392,"UnitPrice":"0.99"} +{"TrackId":1631,"Name":"Heartbreaker","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones, John Bonham","Milliseconds":253988,"Bytes":8387560,"UnitPrice":"0.99"} +{"TrackId":1632,"Name":"Living Loving Maid (She's Just A Woman)","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":159216,"Bytes":5219819,"UnitPrice":"0.99"} +{"TrackId":1633,"Name":"Ramble On","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":275591,"Bytes":9199710,"UnitPrice":"0.99"} +{"TrackId":1634,"Name":"Moby Dick","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham, John Paul Jones, Jimmy Page","Milliseconds":260728,"Bytes":8664210,"UnitPrice":"0.99"} +{"TrackId":1635,"Name":"Bring It On Home","AlbumId":133,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":259970,"Bytes":8494731,"UnitPrice":"0.99"} +{"TrackId":1636,"Name":"Immigrant Song","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":144875,"Bytes":4786461,"UnitPrice":"0.99"} +{"TrackId":1637,"Name":"Friends","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":233560,"Bytes":7694220,"UnitPrice":"0.99"} +{"TrackId":1638,"Name":"Celebration Day","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones","Milliseconds":209528,"Bytes":6871078,"UnitPrice":"0.99"} +{"TrackId":1639,"Name":"Since I've Been Loving You","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones","Milliseconds":444055,"Bytes":14482460,"UnitPrice":"0.99"} +{"TrackId":1640,"Name":"Out On The Tiles","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Bonham","Milliseconds":246047,"Bytes":8060350,"UnitPrice":"0.99"} +{"TrackId":1641,"Name":"Gallows Pole","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Traditional","Milliseconds":296228,"Bytes":9757151,"UnitPrice":"0.99"} +{"TrackId":1642,"Name":"Tangerine","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":189675,"Bytes":6200893,"UnitPrice":"0.99"} +{"TrackId":1643,"Name":"That's The Way","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant","Milliseconds":337345,"Bytes":11202499,"UnitPrice":"0.99"} +{"TrackId":1644,"Name":"Bron-Y-Aur Stomp","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, John Paul Jones","Milliseconds":259500,"Bytes":8674508,"UnitPrice":"0.99"} +{"TrackId":1645,"Name":"Hats Off To (Roy) Harper","AlbumId":134,"MediaTypeId":1,"GenreId":1,"Composer":"Traditional","Milliseconds":219376,"Bytes":7236640,"UnitPrice":"0.99"} +{"TrackId":1646,"Name":"In The Light","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":526785,"Bytes":17033046,"UnitPrice":"0.99"} +{"TrackId":1647,"Name":"Bron-Yr-Aur","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":126641,"Bytes":4150746,"UnitPrice":"0.99"} +{"TrackId":1648,"Name":"Down By The Seaside","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":316186,"Bytes":10371282,"UnitPrice":"0.99"} +{"TrackId":1649,"Name":"Ten Years Gone","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":393116,"Bytes":12756366,"UnitPrice":"0.99"} +{"TrackId":1650,"Name":"Night Flight","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":217547,"Bytes":7160647,"UnitPrice":"0.99"} +{"TrackId":1651,"Name":"The Wanton Song","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":249887,"Bytes":8180988,"UnitPrice":"0.99"} +{"TrackId":1652,"Name":"Boogie With Stu","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant","Milliseconds":233273,"Bytes":7657086,"UnitPrice":"0.99"} +{"TrackId":1653,"Name":"Black Country Woman","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":273084,"Bytes":8951732,"UnitPrice":"0.99"} +{"TrackId":1654,"Name":"Sick Again","AlbumId":135,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":283036,"Bytes":9279263,"UnitPrice":"0.99"} +{"TrackId":1655,"Name":"Achilles Last Stand","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":625502,"Bytes":20593955,"UnitPrice":"0.99"} +{"TrackId":1656,"Name":"For Your Life","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":384391,"Bytes":12633382,"UnitPrice":"0.99"} +{"TrackId":1657,"Name":"Royal Orleans","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":179591,"Bytes":5930027,"UnitPrice":"0.99"} +{"TrackId":1658,"Name":"Nobody's Fault But Mine","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":376215,"Bytes":12237859,"UnitPrice":"0.99"} +{"TrackId":1659,"Name":"Candy Store Rock","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":252055,"Bytes":8397423,"UnitPrice":"0.99"} +{"TrackId":1660,"Name":"Hots On For Nowhere","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":284107,"Bytes":9342342,"UnitPrice":"0.99"} +{"TrackId":1661,"Name":"Tea For One","AlbumId":136,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page/Robert Plant","Milliseconds":566752,"Bytes":18475264,"UnitPrice":"0.99"} +{"TrackId":1662,"Name":"Rock & Roll","AlbumId":137,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones/Robert Plant","Milliseconds":242442,"Bytes":7897065,"UnitPrice":"0.99"} +{"TrackId":1663,"Name":"Celebration Day","AlbumId":137,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":230034,"Bytes":7478487,"UnitPrice":"0.99"} +{"TrackId":1664,"Name":"The Song Remains The Same","AlbumId":137,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":353358,"Bytes":11465033,"UnitPrice":"0.99"} +{"TrackId":1665,"Name":"Rain Song","AlbumId":137,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":505808,"Bytes":16273705,"UnitPrice":"0.99"} +{"TrackId":1666,"Name":"Dazed And Confused","AlbumId":137,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page","Milliseconds":1612329,"Bytes":52490554,"UnitPrice":"0.99"} +{"TrackId":1667,"Name":"No Quarter","AlbumId":138,"MediaTypeId":1,"GenreId":1,"Composer":"John Paul Jones/Robert Plant","Milliseconds":749897,"Bytes":24399285,"UnitPrice":"0.99"} +{"TrackId":1668,"Name":"Stairway To Heaven","AlbumId":138,"MediaTypeId":1,"GenreId":1,"Composer":"Robert Plant","Milliseconds":657293,"Bytes":21354766,"UnitPrice":"0.99"} +{"TrackId":1669,"Name":"Moby Dick","AlbumId":138,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones","Milliseconds":766354,"Bytes":25345841,"UnitPrice":"0.99"} +{"TrackId":1670,"Name":"Whole Lotta Love","AlbumId":138,"MediaTypeId":1,"GenreId":1,"Composer":"John Bonham/John Paul Jones/Robert Plant/Willie Dixon","Milliseconds":863895,"Bytes":28191437,"UnitPrice":"0.99"} +{"TrackId":1671,"Name":"Natália","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":235728,"Bytes":7640230,"UnitPrice":"0.99"} +{"TrackId":1672,"Name":"L'Avventura","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":278256,"Bytes":9165769,"UnitPrice":"0.99"} +{"TrackId":1673,"Name":"Música De Trabalho","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":260231,"Bytes":8590671,"UnitPrice":"0.99"} +{"TrackId":1674,"Name":"Longe Do Meu Lado","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo - Marcelo Bonfá","Milliseconds":266161,"Bytes":8655249,"UnitPrice":"0.99"} +{"TrackId":1675,"Name":"A Via Láctea","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":280084,"Bytes":9234879,"UnitPrice":"0.99"} +{"TrackId":1676,"Name":"Música Ambiente","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":247614,"Bytes":8234388,"UnitPrice":"0.99"} +{"TrackId":1677,"Name":"Aloha","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":325955,"Bytes":10793301,"UnitPrice":"0.99"} +{"TrackId":1678,"Name":"Soul Parsifal","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo - Marisa Monte","Milliseconds":295053,"Bytes":9853589,"UnitPrice":"0.99"} +{"TrackId":1680,"Name":"Mil Pedaços","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":203337,"Bytes":6643291,"UnitPrice":"0.99"} +{"TrackId":1681,"Name":"Leila","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":323056,"Bytes":10608239,"UnitPrice":"0.99"} +{"TrackId":1682,"Name":"1ş De Julho","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":290298,"Bytes":9619257,"UnitPrice":"0.99"} +{"TrackId":1683,"Name":"Esperando Por Mim","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":261668,"Bytes":8844133,"UnitPrice":"0.99"} +{"TrackId":1684,"Name":"Quando Vocę Voltar","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":173897,"Bytes":5781046,"UnitPrice":"0.99"} +{"TrackId":1685,"Name":"O Livro Dos Dias","AlbumId":139,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":257253,"Bytes":8570929,"UnitPrice":"0.99"} +{"TrackId":1686,"Name":"Será","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":148401,"Bytes":4826528,"UnitPrice":"0.99"} +{"TrackId":1687,"Name":"Ainda É Cedo","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonfá","Milliseconds":236826,"Bytes":7796400,"UnitPrice":"0.99"} +{"TrackId":1688,"Name":"Geraçăo Coca-Cola","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":141453,"Bytes":4625731,"UnitPrice":"0.99"} +{"TrackId":1689,"Name":"Eduardo E Mônica","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":271229,"Bytes":9026691,"UnitPrice":"0.99"} +{"TrackId":1690,"Name":"Tempo Perdido","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":302158,"Bytes":9963914,"UnitPrice":"0.99"} +{"TrackId":1691,"Name":"Indios","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":258168,"Bytes":8610226,"UnitPrice":"0.99"} +{"TrackId":1692,"Name":"Que País É Este","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":177606,"Bytes":5822124,"UnitPrice":"0.99"} +{"TrackId":1693,"Name":"Faroeste Caboclo","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":543007,"Bytes":18092739,"UnitPrice":"0.99"} +{"TrackId":1694,"Name":"Há Tempos","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":197146,"Bytes":6432922,"UnitPrice":"0.99"} +{"TrackId":1695,"Name":"Pais E Filhos","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":308401,"Bytes":10130685,"UnitPrice":"0.99"} +{"TrackId":1696,"Name":"Meninos E Meninas","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":203781,"Bytes":6667802,"UnitPrice":"0.99"} +{"TrackId":1697,"Name":"Vento No Litoral","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":366445,"Bytes":12063806,"UnitPrice":"0.99"} +{"TrackId":1698,"Name":"Perfeiçăo","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":276558,"Bytes":9258489,"UnitPrice":"0.99"} +{"TrackId":1699,"Name":"Giz","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":202213,"Bytes":6677671,"UnitPrice":"0.99"} +{"TrackId":1700,"Name":"Dezesseis","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos/Marcelo Bonfá","Milliseconds":321724,"Bytes":10501773,"UnitPrice":"0.99"} +{"TrackId":1701,"Name":"Antes Das Seis","AlbumId":140,"MediaTypeId":1,"GenreId":7,"Composer":"Dado Villa-Lobos","Milliseconds":189231,"Bytes":6296531,"UnitPrice":"0.99"} +{"TrackId":1702,"Name":"Are You Gonna Go My Way","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Craig Ross/Lenny Kravitz","Milliseconds":211591,"Bytes":6905135,"UnitPrice":"0.99"} +{"TrackId":1703,"Name":"Fly Away","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":221962,"Bytes":7322085,"UnitPrice":"0.99"} +{"TrackId":1704,"Name":"Rock And Roll Is Dead","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":204199,"Bytes":6680312,"UnitPrice":"0.99"} +{"TrackId":1705,"Name":"Again","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":228989,"Bytes":7490476,"UnitPrice":"0.99"} +{"TrackId":1706,"Name":"It Ain't Over 'Til It's Over","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":242703,"Bytes":8078936,"UnitPrice":"0.99"} +{"TrackId":1707,"Name":"Can't Get You Off My Mind","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":273815,"Bytes":8937150,"UnitPrice":"0.99"} +{"TrackId":1708,"Name":"Mr. Cab Driver","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":230321,"Bytes":7668084,"UnitPrice":"0.99"} +{"TrackId":1709,"Name":"American Woman","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"B. Cummings/G. Peterson/M.J. Kale/R. Bachman","Milliseconds":261773,"Bytes":8538023,"UnitPrice":"0.99"} +{"TrackId":1710,"Name":"Stand By My Woman","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan","Milliseconds":259683,"Bytes":8447611,"UnitPrice":"0.99"} +{"TrackId":1711,"Name":"Always On The Run","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz/Slash","Milliseconds":232515,"Bytes":7593397,"UnitPrice":"0.99"} +{"TrackId":1712,"Name":"Heaven Help","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Gerry DeVeaux/Terry Britten","Milliseconds":190354,"Bytes":6222092,"UnitPrice":"0.99"} +{"TrackId":1713,"Name":"I Belong To You","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":257123,"Bytes":8477980,"UnitPrice":"0.99"} +{"TrackId":1714,"Name":"Believe","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Henry Hirsch/Lenny Kravitz","Milliseconds":295131,"Bytes":9661978,"UnitPrice":"0.99"} +{"TrackId":1715,"Name":"Let Love Rule","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":342648,"Bytes":11298085,"UnitPrice":"0.99"} +{"TrackId":1716,"Name":"Black Velveteen","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Lenny Kravitz","Milliseconds":290899,"Bytes":9531301,"UnitPrice":"0.99"} +{"TrackId":1717,"Name":"Assim Caminha A Humanidade","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":210755,"Bytes":6993763,"UnitPrice":"0.99"} +{"TrackId":1718,"Name":"Honolulu","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":261433,"Bytes":8558481,"UnitPrice":"0.99"} +{"TrackId":1719,"Name":"Dancin´Days","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":237400,"Bytes":7875347,"UnitPrice":"0.99"} +{"TrackId":1720,"Name":"Um Pro Outro","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":236382,"Bytes":7825215,"UnitPrice":"0.99"} +{"TrackId":1721,"Name":"Aviso Aos Navegantes","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":242808,"Bytes":8058651,"UnitPrice":"0.99"} +{"TrackId":1722,"Name":"Casa","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":307591,"Bytes":10107269,"UnitPrice":"0.99"} +{"TrackId":1723,"Name":"Condiçăo","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":263549,"Bytes":8778465,"UnitPrice":"0.99"} +{"TrackId":1724,"Name":"Hyperconectividade","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":180636,"Bytes":5948039,"UnitPrice":"0.99"} +{"TrackId":1725,"Name":"O Descobridor Dos Sete Mares","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":225854,"Bytes":7475780,"UnitPrice":"0.99"} +{"TrackId":1726,"Name":"Satisfaçăo","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":208065,"Bytes":6901681,"UnitPrice":"0.99"} +{"TrackId":1727,"Name":"Brumário","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":216241,"Bytes":7243499,"UnitPrice":"0.99"} +{"TrackId":1728,"Name":"Um Certo Alguém","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":194063,"Bytes":6430939,"UnitPrice":"0.99"} +{"TrackId":1729,"Name":"Fullgás","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":346070,"Bytes":11505484,"UnitPrice":"0.99"} +{"TrackId":1730,"Name":"Sábado Ŕ Noite","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":193854,"Bytes":6435114,"UnitPrice":"0.99"} +{"TrackId":1731,"Name":"A Cura","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":280920,"Bytes":9260588,"UnitPrice":"0.99"} +{"TrackId":1732,"Name":"Aquilo","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":246073,"Bytes":8167819,"UnitPrice":"0.99"} +{"TrackId":1733,"Name":"Atrás Do Trio Elétrico","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":149080,"Bytes":4917615,"UnitPrice":"0.99"} +{"TrackId":1734,"Name":"Senta A Pua","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":217547,"Bytes":7205844,"UnitPrice":"0.99"} +{"TrackId":1735,"Name":"Ro-Que-Se-Da-Ne","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":146703,"Bytes":4805897,"UnitPrice":"0.99"} +{"TrackId":1736,"Name":"Tudo Bem","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":196101,"Bytes":6419139,"UnitPrice":"0.99"} +{"TrackId":1737,"Name":"Toda Forma De Amor","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":227813,"Bytes":7496584,"UnitPrice":"0.99"} +{"TrackId":1738,"Name":"Tudo Igual","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":276035,"Bytes":9201645,"UnitPrice":"0.99"} +{"TrackId":1739,"Name":"Fogo De Palha","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":246804,"Bytes":8133732,"UnitPrice":"0.99"} +{"TrackId":1740,"Name":"Sereia","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":278047,"Bytes":9121087,"UnitPrice":"0.99"} +{"TrackId":1741,"Name":"Assaltaram A Gramática","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":261041,"Bytes":8698959,"UnitPrice":"0.99"} +{"TrackId":1742,"Name":"Se Vocę Pensa","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":195996,"Bytes":6552490,"UnitPrice":"0.99"} +{"TrackId":1743,"Name":"Lá Vem O Sol (Here Comes The Sun)","AlbumId":142,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":189492,"Bytes":6229645,"UnitPrice":"0.99"} +{"TrackId":1744,"Name":"O Último Romântico (Ao Vivo)","AlbumId":143,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":231993,"Bytes":7692697,"UnitPrice":"0.99"} +{"TrackId":1745,"Name":"Pseudo Silk Kimono","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":134739,"Bytes":4334038,"UnitPrice":"0.99"} +{"TrackId":1746,"Name":"Kayleigh","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":234605,"Bytes":7716005,"UnitPrice":"0.99"} +{"TrackId":1747,"Name":"Lavender","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":153417,"Bytes":4999814,"UnitPrice":"0.99"} +{"TrackId":1748,"Name":"Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":356493,"Bytes":11791068,"UnitPrice":"0.99"} +{"TrackId":1749,"Name":"Heart Of Lothian: Wide Boy / Curtain Call","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":366053,"Bytes":11893723,"UnitPrice":"0.99"} +{"TrackId":1750,"Name":"Waterhole (Expresso Bongo)","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":133093,"Bytes":4378835,"UnitPrice":"0.99"} +{"TrackId":1751,"Name":"Lords Of The Backstage","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":112875,"Bytes":3741319,"UnitPrice":"0.99"} +{"TrackId":1752,"Name":"Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":569704,"Bytes":18578995,"UnitPrice":"0.99"} +{"TrackId":1753,"Name":"Childhoods End?","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":272796,"Bytes":9015366,"UnitPrice":"0.99"} +{"TrackId":1754,"Name":"White Feather","AlbumId":144,"MediaTypeId":1,"GenreId":1,"Composer":"Kelly, Mosley, Rothery, Trewaves","Milliseconds":143595,"Bytes":4711776,"UnitPrice":"0.99"} +{"TrackId":1755,"Name":"Arrepio","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Carlinhos Brown","Milliseconds":136254,"Bytes":4511390,"UnitPrice":"0.99"} +{"TrackId":1756,"Name":"Magamalabares","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Carlinhos Brown","Milliseconds":215875,"Bytes":7183757,"UnitPrice":"0.99"} +{"TrackId":1757,"Name":"Chuva No Brejo","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Morais","Milliseconds":145606,"Bytes":4857761,"UnitPrice":"0.99"} +{"TrackId":1758,"Name":"Cérebro Eletrônico","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Gilberto Gil","Milliseconds":172800,"Bytes":5760864,"UnitPrice":"0.99"} +{"TrackId":1759,"Name":"Tempos Modernos","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Lulu Santos","Milliseconds":183066,"Bytes":6066234,"UnitPrice":"0.99"} +{"TrackId":1760,"Name":"Maraçá","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Carlinhos Brown","Milliseconds":230008,"Bytes":7621482,"UnitPrice":"0.99"} +{"TrackId":1988,"Name":"Drain You","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":215196,"Bytes":7013175,"UnitPrice":"0.99"} +{"TrackId":1761,"Name":"Blanco","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Marisa Monte/poema de Octavio Paz/versăo: Haroldo de Campos","Milliseconds":45191,"Bytes":1454532,"UnitPrice":"0.99"} +{"TrackId":1762,"Name":"Panis Et Circenses","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":192339,"Bytes":6318373,"UnitPrice":"0.99"} +{"TrackId":1763,"Name":"De Noite Na Cama","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":209005,"Bytes":7012658,"UnitPrice":"0.99"} +{"TrackId":1764,"Name":"Beija Eu","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":197276,"Bytes":6512544,"UnitPrice":"0.99"} +{"TrackId":1765,"Name":"Give Me Love","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":249808,"Bytes":8196331,"UnitPrice":"0.99"} +{"TrackId":1766,"Name":"Ainda Lembro","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":218801,"Bytes":7211247,"UnitPrice":"0.99"} +{"TrackId":1767,"Name":"A Menina Dança","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":129410,"Bytes":4326918,"UnitPrice":"0.99"} +{"TrackId":1768,"Name":"Dança Da Solidăo","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":203520,"Bytes":6699368,"UnitPrice":"0.99"} +{"TrackId":1769,"Name":"Ao Meu Redor","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":275591,"Bytes":9158834,"UnitPrice":"0.99"} +{"TrackId":1770,"Name":"Bem Leve","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":159190,"Bytes":5246835,"UnitPrice":"0.99"} +{"TrackId":1771,"Name":"Segue O Seco","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":178207,"Bytes":5922018,"UnitPrice":"0.99"} +{"TrackId":1772,"Name":"O Xote Das Meninas","AlbumId":145,"MediaTypeId":1,"GenreId":7,"Composer":"Caetano Veloso e Gilberto Gil","Milliseconds":291866,"Bytes":9553228,"UnitPrice":"0.99"} +{"TrackId":1773,"Name":"Wherever I Lay My Hat","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":null,"Milliseconds":136986,"Bytes":4477321,"UnitPrice":"0.99"} +{"TrackId":1774,"Name":"Get My Hands On Some Lovin'","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":null,"Milliseconds":149054,"Bytes":4860380,"UnitPrice":"0.99"} +{"TrackId":1775,"Name":"No Good Without You","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"William \"Mickey\" Stevenson","Milliseconds":161410,"Bytes":5259218,"UnitPrice":"0.99"} +{"TrackId":1776,"Name":"You've Been A Long Time Coming","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Brian Holland/Eddie Holland/Lamont Dozier","Milliseconds":137221,"Bytes":4437949,"UnitPrice":"0.99"} +{"TrackId":1777,"Name":"When I Had Your Love","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson","Milliseconds":152424,"Bytes":4972815,"UnitPrice":"0.99"} +{"TrackId":1778,"Name":"You're What's Happening (In The World Today)","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Allen Story/George Gordy/Robert Gordy","Milliseconds":142027,"Bytes":4631104,"UnitPrice":"0.99"} +{"TrackId":1779,"Name":"Loving You Is Sweeter Than Ever","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Ivy Hunter/Stevie Wonder","Milliseconds":166295,"Bytes":5377546,"UnitPrice":"0.99"} +{"TrackId":1780,"Name":"It's A Bitter Pill To Swallow","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Smokey Robinson/Warren \"Pete\" Moore","Milliseconds":194821,"Bytes":6477882,"UnitPrice":"0.99"} +{"TrackId":1781,"Name":"Seek And You Shall Find","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Ivy Hunter/William \"Mickey\" Stevenson","Milliseconds":223451,"Bytes":7306719,"UnitPrice":"0.99"} +{"TrackId":1782,"Name":"Gonna Keep On Tryin' Till I Win Your Love","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Barrett Strong/Norman Whitfield","Milliseconds":176404,"Bytes":5789945,"UnitPrice":"0.99"} +{"TrackId":1783,"Name":"Gonna Give Her All The Love I've Got","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Barrett Strong/Norman Whitfield","Milliseconds":210886,"Bytes":6893603,"UnitPrice":"0.99"} +{"TrackId":1784,"Name":"I Wish It Would Rain","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Barrett Strong/Norman Whitfield/Roger Penzabene","Milliseconds":172486,"Bytes":5647327,"UnitPrice":"0.99"} +{"TrackId":1785,"Name":"Abraham, Martin And John","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Dick Holler","Milliseconds":273057,"Bytes":8888206,"UnitPrice":"0.99"} +{"TrackId":1786,"Name":"Save The Children","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Al Cleveland/Marvin Gaye/Renaldo Benson","Milliseconds":194821,"Bytes":6342021,"UnitPrice":"0.99"} +{"TrackId":1787,"Name":"You Sure Love To Ball","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Marvin Gaye","Milliseconds":218540,"Bytes":7217872,"UnitPrice":"0.99"} +{"TrackId":1788,"Name":"Ego Tripping Out","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Marvin Gaye","Milliseconds":314514,"Bytes":10383887,"UnitPrice":"0.99"} +{"TrackId":1789,"Name":"Praise","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Marvin Gaye","Milliseconds":235833,"Bytes":7839179,"UnitPrice":"0.99"} +{"TrackId":1790,"Name":"Heavy Love Affair","AlbumId":146,"MediaTypeId":1,"GenreId":14,"Composer":"Marvin Gaye","Milliseconds":227892,"Bytes":7522232,"UnitPrice":"0.99"} +{"TrackId":1791,"Name":"Down Under","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":222171,"Bytes":7366142,"UnitPrice":"0.99"} +{"TrackId":1792,"Name":"Overkill","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":225410,"Bytes":7408652,"UnitPrice":"0.99"} +{"TrackId":1793,"Name":"Be Good Johnny","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":216320,"Bytes":7139814,"UnitPrice":"0.99"} +{"TrackId":1794,"Name":"Everything I Need","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":216476,"Bytes":7107625,"UnitPrice":"0.99"} +{"TrackId":1795,"Name":"Down by the Sea","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":408163,"Bytes":13314900,"UnitPrice":"0.99"} +{"TrackId":1796,"Name":"Who Can It Be Now?","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":202396,"Bytes":6682850,"UnitPrice":"0.99"} +{"TrackId":1797,"Name":"It's a Mistake","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":273371,"Bytes":8979965,"UnitPrice":"0.99"} +{"TrackId":1798,"Name":"Dr. Heckyll & Mr. Jive","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":278465,"Bytes":9110403,"UnitPrice":"0.99"} +{"TrackId":1799,"Name":"Shakes and Ladders","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":198008,"Bytes":6560753,"UnitPrice":"0.99"} +{"TrackId":1800,"Name":"No Sign of Yesterday","AlbumId":147,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":362004,"Bytes":11829011,"UnitPrice":"0.99"} +{"TrackId":1801,"Name":"Enter Sandman","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":332251,"Bytes":10852002,"UnitPrice":"0.99"} +{"TrackId":1802,"Name":"Sad But True","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":324754,"Bytes":10541258,"UnitPrice":"0.99"} +{"TrackId":1803,"Name":"Holier Than Thou","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":227892,"Bytes":7462011,"UnitPrice":"0.99"} +{"TrackId":1804,"Name":"The Unforgiven","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":387082,"Bytes":12646886,"UnitPrice":"0.99"} +{"TrackId":1805,"Name":"Wherever I May Roam","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":404323,"Bytes":13161169,"UnitPrice":"0.99"} +{"TrackId":1806,"Name":"Don't Tread On Me","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":240483,"Bytes":7827907,"UnitPrice":"0.99"} +{"TrackId":1807,"Name":"Through The Never","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":244375,"Bytes":8024047,"UnitPrice":"0.99"} +{"TrackId":1808,"Name":"Nothing Else Matters","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":388832,"Bytes":12606241,"UnitPrice":"0.99"} +{"TrackId":1809,"Name":"Of Wolf And Man","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":256835,"Bytes":8339785,"UnitPrice":"0.99"} +{"TrackId":1810,"Name":"The God That Failed","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":308610,"Bytes":10055959,"UnitPrice":"0.99"} +{"TrackId":1811,"Name":"My Friend Of Misery","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Jason Newsted","Milliseconds":409547,"Bytes":13293515,"UnitPrice":"0.99"} +{"TrackId":1812,"Name":"The Struggle Within","AlbumId":148,"MediaTypeId":1,"GenreId":3,"Composer":"Ulrich","Milliseconds":234240,"Bytes":7654052,"UnitPrice":"0.99"} +{"TrackId":1813,"Name":"Helpless","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Harris/Tatler","Milliseconds":398315,"Bytes":12977902,"UnitPrice":"0.99"} +{"TrackId":1814,"Name":"The Small Hours","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Holocaust","Milliseconds":403435,"Bytes":13215133,"UnitPrice":"0.99"} +{"TrackId":1815,"Name":"The Wait","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Killing Joke","Milliseconds":295418,"Bytes":9688418,"UnitPrice":"0.99"} +{"TrackId":1816,"Name":"Crash Course In Brain Surgery","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Bourge/Phillips/Shelley","Milliseconds":190406,"Bytes":6233729,"UnitPrice":"0.99"} +{"TrackId":1817,"Name":"Last Caress/Green Hell","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Danzig","Milliseconds":209972,"Bytes":6854313,"UnitPrice":"0.99"} +{"TrackId":1818,"Name":"Am I Evil?","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Harris/Tatler","Milliseconds":470256,"Bytes":15387219,"UnitPrice":"0.99"} +{"TrackId":1819,"Name":"Blitzkrieg","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Jones/Sirotto/Smith","Milliseconds":216685,"Bytes":7090018,"UnitPrice":"0.99"} +{"TrackId":1820,"Name":"Breadfan","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Bourge/Phillips/Shelley","Milliseconds":341551,"Bytes":11100130,"UnitPrice":"0.99"} +{"TrackId":1821,"Name":"The Prince","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Harris/Tatler","Milliseconds":265769,"Bytes":8624492,"UnitPrice":"0.99"} +{"TrackId":1822,"Name":"Stone Cold Crazy","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Deacon/May/Mercury/Taylor","Milliseconds":137717,"Bytes":4514830,"UnitPrice":"0.99"} +{"TrackId":1823,"Name":"So What","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Culmer/Exalt","Milliseconds":189152,"Bytes":6162894,"UnitPrice":"0.99"} +{"TrackId":1824,"Name":"Killing Time","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Sweet Savage","Milliseconds":183693,"Bytes":6021197,"UnitPrice":"0.99"} +{"TrackId":1825,"Name":"Overkill","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Tayler","Milliseconds":245133,"Bytes":7971330,"UnitPrice":"0.99"} +{"TrackId":1826,"Name":"Damage Case","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Farren/Kilmister/Tayler","Milliseconds":220212,"Bytes":7212997,"UnitPrice":"0.99"} +{"TrackId":1827,"Name":"Stone Dead Forever","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Tayler","Milliseconds":292127,"Bytes":9556060,"UnitPrice":"0.99"} +{"TrackId":1828,"Name":"Too Late Too Late","AlbumId":149,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Tayler","Milliseconds":192052,"Bytes":6276291,"UnitPrice":"0.99"} +{"TrackId":1829,"Name":"Hit The Lights","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":257541,"Bytes":8357088,"UnitPrice":"0.99"} +{"TrackId":1830,"Name":"The Four Horsemen","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Dave Mustaine","Milliseconds":433188,"Bytes":14178138,"UnitPrice":"0.99"} +{"TrackId":1831,"Name":"Motorbreath","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield","Milliseconds":188395,"Bytes":6153933,"UnitPrice":"0.99"} +{"TrackId":1832,"Name":"Jump In The Fire","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Dave Mustaine","Milliseconds":281573,"Bytes":9135755,"UnitPrice":"0.99"} +{"TrackId":1833,"Name":"(Anesthesia) Pulling Teeth","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"Cliff Burton","Milliseconds":254955,"Bytes":8234710,"UnitPrice":"0.99"} +{"TrackId":1834,"Name":"Whiplash","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":249208,"Bytes":8102839,"UnitPrice":"0.99"} +{"TrackId":1835,"Name":"Phantom Lord","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Dave Mustaine","Milliseconds":302053,"Bytes":9817143,"UnitPrice":"0.99"} +{"TrackId":1836,"Name":"No Remorse","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":386795,"Bytes":12672166,"UnitPrice":"0.99"} +{"TrackId":1989,"Name":"Aneurysm","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Nirvana","Milliseconds":271516,"Bytes":8862545,"UnitPrice":"0.99"} +{"TrackId":1837,"Name":"Seek & Destroy","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":415817,"Bytes":13452301,"UnitPrice":"0.99"} +{"TrackId":1838,"Name":"Metal Militia","AlbumId":150,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Dave Mustaine","Milliseconds":311327,"Bytes":10141785,"UnitPrice":"0.99"} +{"TrackId":1839,"Name":"Ain't My Bitch","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":304457,"Bytes":9931015,"UnitPrice":"0.99"} +{"TrackId":1840,"Name":"2 X 4","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":328254,"Bytes":10732251,"UnitPrice":"0.99"} +{"TrackId":1841,"Name":"The House Jack Built","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":398942,"Bytes":13005152,"UnitPrice":"0.99"} +{"TrackId":1842,"Name":"Until It Sleeps","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":269740,"Bytes":8837394,"UnitPrice":"0.99"} +{"TrackId":1843,"Name":"King Nothing","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":328097,"Bytes":10681477,"UnitPrice":"0.99"} +{"TrackId":1844,"Name":"Hero Of The Day","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":261982,"Bytes":8540298,"UnitPrice":"0.99"} +{"TrackId":1845,"Name":"Bleeding Me","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":497998,"Bytes":16249420,"UnitPrice":"0.99"} +{"TrackId":1846,"Name":"Cure","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":294347,"Bytes":9648615,"UnitPrice":"0.99"} +{"TrackId":1847,"Name":"Poor Twisted Me","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":240065,"Bytes":7854349,"UnitPrice":"0.99"} +{"TrackId":1848,"Name":"Wasted My Hate","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":237296,"Bytes":7762300,"UnitPrice":"0.99"} +{"TrackId":1849,"Name":"Mama Said","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":319764,"Bytes":10508310,"UnitPrice":"0.99"} +{"TrackId":1850,"Name":"Thorn Within","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich, Kirk Hammett","Milliseconds":351738,"Bytes":11486686,"UnitPrice":"0.99"} +{"TrackId":1851,"Name":"Ronnie","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":317204,"Bytes":10390947,"UnitPrice":"0.99"} +{"TrackId":1852,"Name":"The Outlaw Torn","AlbumId":151,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich","Milliseconds":588721,"Bytes":19286261,"UnitPrice":"0.99"} +{"TrackId":1853,"Name":"Battery","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"J.Hetfield/L.Ulrich","Milliseconds":312424,"Bytes":10229577,"UnitPrice":"0.99"} +{"TrackId":1854,"Name":"Master Of Puppets","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"K.Hammett","Milliseconds":515239,"Bytes":16893720,"UnitPrice":"0.99"} +{"TrackId":1855,"Name":"The Thing That Should Not Be","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"K.Hammett","Milliseconds":396199,"Bytes":12952368,"UnitPrice":"0.99"} +{"TrackId":1856,"Name":"Welcome Home (Sanitarium)","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"K.Hammett","Milliseconds":387186,"Bytes":12679965,"UnitPrice":"0.99"} +{"TrackId":1857,"Name":"Disposable Heroes","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"J.Hetfield/L.Ulrich","Milliseconds":496718,"Bytes":16135560,"UnitPrice":"0.99"} +{"TrackId":1858,"Name":"Leper Messiah","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"C.Burton","Milliseconds":347428,"Bytes":11310434,"UnitPrice":"0.99"} +{"TrackId":1859,"Name":"Orion","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"K.Hammett","Milliseconds":500062,"Bytes":16378477,"UnitPrice":"0.99"} +{"TrackId":1860,"Name":"Damage Inc.","AlbumId":152,"MediaTypeId":1,"GenreId":3,"Composer":"K.Hammett","Milliseconds":330919,"Bytes":10725029,"UnitPrice":"0.99"} +{"TrackId":1861,"Name":"Fuel","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":269557,"Bytes":8876811,"UnitPrice":"0.99"} +{"TrackId":1862,"Name":"The Memory Remains","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":279353,"Bytes":9110730,"UnitPrice":"0.99"} +{"TrackId":1863,"Name":"Devil's Dance","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":318955,"Bytes":10414832,"UnitPrice":"0.99"} +{"TrackId":1864,"Name":"The Unforgiven II","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":395520,"Bytes":12886474,"UnitPrice":"0.99"} +{"TrackId":1865,"Name":"Better Than You","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":322899,"Bytes":10549070,"UnitPrice":"0.99"} +{"TrackId":1866,"Name":"Slither","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":313103,"Bytes":10199789,"UnitPrice":"0.99"} +{"TrackId":1867,"Name":"Carpe Diem Baby","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":372480,"Bytes":12170693,"UnitPrice":"0.99"} +{"TrackId":1868,"Name":"Bad Seed","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":245394,"Bytes":8019586,"UnitPrice":"0.99"} +{"TrackId":1869,"Name":"Where The Wild Things Are","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Newsted","Milliseconds":414380,"Bytes":13571280,"UnitPrice":"0.99"} +{"TrackId":1870,"Name":"Prince Charming","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":365061,"Bytes":12009412,"UnitPrice":"0.99"} +{"TrackId":1871,"Name":"Low Man's Lyric","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":457639,"Bytes":14855583,"UnitPrice":"0.99"} +{"TrackId":1872,"Name":"Attitude","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich","Milliseconds":315898,"Bytes":10335734,"UnitPrice":"0.99"} +{"TrackId":1873,"Name":"Fixxxer","AlbumId":153,"MediaTypeId":1,"GenreId":3,"Composer":"Hetfield, Ulrich, Hammett","Milliseconds":496065,"Bytes":16190041,"UnitPrice":"0.99"} +{"TrackId":1874,"Name":"Fight Fire With Fire","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":285753,"Bytes":9420856,"UnitPrice":"0.99"} +{"TrackId":1875,"Name":"Ride The Lightning","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":397740,"Bytes":13055884,"UnitPrice":"0.99"} +{"TrackId":1876,"Name":"For Whom The Bell Tolls","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":311719,"Bytes":10159725,"UnitPrice":"0.99"} +{"TrackId":1877,"Name":"Fade To Black","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":414824,"Bytes":13531954,"UnitPrice":"0.99"} +{"TrackId":1878,"Name":"Trapped Under Ice","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":244532,"Bytes":7975942,"UnitPrice":"0.99"} +{"TrackId":1879,"Name":"Escape","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":264359,"Bytes":8652332,"UnitPrice":"0.99"} +{"TrackId":1880,"Name":"Creeping Death","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":396878,"Bytes":12955593,"UnitPrice":"0.99"} +{"TrackId":1881,"Name":"The Call Of Ktulu","AlbumId":154,"MediaTypeId":1,"GenreId":3,"Composer":"Metallica","Milliseconds":534883,"Bytes":17486240,"UnitPrice":"0.99"} +{"TrackId":1882,"Name":"Frantic","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":350458,"Bytes":11510849,"UnitPrice":"0.99"} +{"TrackId":1883,"Name":"St. Anger","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":441234,"Bytes":14363779,"UnitPrice":"0.99"} +{"TrackId":1884,"Name":"Some Kind Of Monster","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":505626,"Bytes":16557497,"UnitPrice":"0.99"} +{"TrackId":1885,"Name":"Dirty Window","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":324989,"Bytes":10670604,"UnitPrice":"0.99"} +{"TrackId":1886,"Name":"Invisible Kid","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":510197,"Bytes":16591800,"UnitPrice":"0.99"} +{"TrackId":1887,"Name":"My World","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":345626,"Bytes":11253756,"UnitPrice":"0.99"} +{"TrackId":1888,"Name":"Shoot Me Again","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":430210,"Bytes":14093551,"UnitPrice":"0.99"} +{"TrackId":1889,"Name":"Sweet Amber","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":327235,"Bytes":10616595,"UnitPrice":"0.99"} +{"TrackId":1890,"Name":"The Unnamed Feeling","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":429479,"Bytes":14014582,"UnitPrice":"0.99"} +{"TrackId":1891,"Name":"Purify","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":314017,"Bytes":10232537,"UnitPrice":"0.99"} +{"TrackId":1892,"Name":"All Within My Hands","AlbumId":155,"MediaTypeId":1,"GenreId":3,"Composer":"Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich","Milliseconds":527986,"Bytes":17162741,"UnitPrice":"0.99"} +{"TrackId":1893,"Name":"Blackened","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich & Jason Newsted","Milliseconds":403382,"Bytes":13254874,"UnitPrice":"0.99"} +{"TrackId":1894,"Name":"...And Justice For All","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich & Kirk Hammett","Milliseconds":585769,"Bytes":19262088,"UnitPrice":"0.99"} +{"TrackId":1895,"Name":"Eye Of The Beholder","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich & Kirk Hammett","Milliseconds":385828,"Bytes":12747894,"UnitPrice":"0.99"} +{"TrackId":1896,"Name":"One","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield & Lars Ulrich","Milliseconds":446484,"Bytes":14695721,"UnitPrice":"0.99"} +{"TrackId":1897,"Name":"The Shortest Straw","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield and Lars Ulrich","Milliseconds":395389,"Bytes":13013990,"UnitPrice":"0.99"} +{"TrackId":1898,"Name":"Harvester Of Sorrow","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield and Lars Ulrich","Milliseconds":345547,"Bytes":11377339,"UnitPrice":"0.99"} +{"TrackId":1899,"Name":"The Frayed Ends Of Sanity","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":464039,"Bytes":15198986,"UnitPrice":"0.99"} +{"TrackId":1900,"Name":"To Live Is To Die","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Cliff Burton","Milliseconds":588564,"Bytes":19243795,"UnitPrice":"0.99"} +{"TrackId":1901,"Name":"Dyers Eve","AlbumId":156,"MediaTypeId":1,"GenreId":3,"Composer":"James Hetfield, Lars Ulrich and Kirk Hammett","Milliseconds":313991,"Bytes":10302828,"UnitPrice":"0.99"} +{"TrackId":1902,"Name":"Springsville","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"J. Carisi","Milliseconds":207725,"Bytes":6776219,"UnitPrice":"0.99"} +{"TrackId":1903,"Name":"The Maids Of Cadiz","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"L. Delibes","Milliseconds":233534,"Bytes":7505275,"UnitPrice":"0.99"} +{"TrackId":1904,"Name":"The Duke","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"Dave Brubeck","Milliseconds":214961,"Bytes":6977626,"UnitPrice":"0.99"} +{"TrackId":1905,"Name":"My Ship","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"Ira Gershwin, Kurt Weill","Milliseconds":268016,"Bytes":8581144,"UnitPrice":"0.99"} +{"TrackId":1906,"Name":"Miles Ahead","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"Miles Davis, Gil Evans","Milliseconds":209893,"Bytes":6807707,"UnitPrice":"0.99"} +{"TrackId":1907,"Name":"Blues For Pablo","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"Gil Evans","Milliseconds":318328,"Bytes":10218398,"UnitPrice":"0.99"} +{"TrackId":1908,"Name":"New Rhumba","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"A. Jamal","Milliseconds":276871,"Bytes":8980400,"UnitPrice":"0.99"} +{"TrackId":1909,"Name":"The Meaning Of The Blues","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"R. Troup, L. Worth","Milliseconds":168594,"Bytes":5395412,"UnitPrice":"0.99"} +{"TrackId":1910,"Name":"Lament","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"J.J. Johnson","Milliseconds":134191,"Bytes":4293394,"UnitPrice":"0.99"} +{"TrackId":1911,"Name":"I Don't Wanna Be Kissed (By Anyone But You)","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"H. Spina, J. Elliott","Milliseconds":191320,"Bytes":6219487,"UnitPrice":"0.99"} +{"TrackId":1912,"Name":"Springsville (Alternate Take)","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"J. Carisi","Milliseconds":196388,"Bytes":6382079,"UnitPrice":"0.99"} +{"TrackId":1913,"Name":"Blues For Pablo (Alternate Take)","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"Gil Evans","Milliseconds":212558,"Bytes":6900619,"UnitPrice":"0.99"} +{"TrackId":1914,"Name":"The Meaning Of The Blues/Lament (Alternate Take)","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"J.J. Johnson/R. Troup, L. Worth","Milliseconds":309786,"Bytes":9912387,"UnitPrice":"0.99"} +{"TrackId":1915,"Name":"I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)","AlbumId":157,"MediaTypeId":1,"GenreId":2,"Composer":"H. Spina, J. Elliott","Milliseconds":192078,"Bytes":6254796,"UnitPrice":"0.99"} +{"TrackId":1916,"Name":"Coraçăo De Estudante","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Wagner Tiso, Milton Nascimento","Milliseconds":238550,"Bytes":7797308,"UnitPrice":"0.99"} +{"TrackId":1917,"Name":"A Noite Do Meu Bem","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Dolores Duran","Milliseconds":220081,"Bytes":7125225,"UnitPrice":"0.99"} +{"TrackId":1918,"Name":"Paisagem Na Janela","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Lô Borges, Fernando Brant","Milliseconds":197694,"Bytes":6523547,"UnitPrice":"0.99"} +{"TrackId":1919,"Name":"Cuitelinho","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Folclore","Milliseconds":209397,"Bytes":6803970,"UnitPrice":"0.99"} +{"TrackId":1920,"Name":"Caxangá","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":245551,"Bytes":8144179,"UnitPrice":"0.99"} +{"TrackId":1921,"Name":"Nos Bailes Da Vida","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":275748,"Bytes":9126170,"UnitPrice":"0.99"} +{"TrackId":1922,"Name":"Menestrel Das Alagoas","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":199758,"Bytes":6542289,"UnitPrice":"0.99"} +{"TrackId":1923,"Name":"Brasil","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":155428,"Bytes":5252560,"UnitPrice":"0.99"} +{"TrackId":1924,"Name":"Cançăo Do Novo Mundo","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Beto Guedes, Ronaldo Bastos","Milliseconds":215353,"Bytes":7032626,"UnitPrice":"0.99"} +{"TrackId":1925,"Name":"Um Gosto De Sol","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Ronaldo Bastos","Milliseconds":307200,"Bytes":9893875,"UnitPrice":"0.99"} +{"TrackId":1926,"Name":"Solar","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":156212,"Bytes":5098288,"UnitPrice":"0.99"} +{"TrackId":1927,"Name":"Para Lennon E McCartney","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Lô Borges, Márcio Borges, Fernando Brant","Milliseconds":321828,"Bytes":10626920,"UnitPrice":"0.99"} +{"TrackId":1928,"Name":"Maria, Maria","AlbumId":158,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":72463,"Bytes":2371543,"UnitPrice":"0.99"} +{"TrackId":1929,"Name":"Minas","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Caetano Veloso","Milliseconds":152293,"Bytes":4921056,"UnitPrice":"0.99"} +{"TrackId":1930,"Name":"Fé Cega, Faca Amolada","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Ronaldo Bastos","Milliseconds":278099,"Bytes":9258649,"UnitPrice":"0.99"} +{"TrackId":1931,"Name":"Beijo Partido","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Toninho Horta","Milliseconds":229564,"Bytes":7506969,"UnitPrice":"0.99"} +{"TrackId":1932,"Name":"Saudade Dos Aviőes Da Panair (Conversando No Bar)","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":268721,"Bytes":8805088,"UnitPrice":"0.99"} +{"TrackId":1933,"Name":"Gran Circo","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Márcio Borges","Milliseconds":251297,"Bytes":8237026,"UnitPrice":"0.99"} +{"TrackId":1934,"Name":"Ponta de Areia","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":272796,"Bytes":8874285,"UnitPrice":"0.99"} +{"TrackId":1935,"Name":"Trastevere","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Ronaldo Bastos","Milliseconds":265665,"Bytes":8708399,"UnitPrice":"0.99"} +{"TrackId":1936,"Name":"Idolatrada","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Fernando Brant","Milliseconds":286249,"Bytes":9426153,"UnitPrice":"0.99"} +{"TrackId":1937,"Name":"Leila (Venha Ser Feliz)","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento","Milliseconds":209737,"Bytes":6898507,"UnitPrice":"0.99"} +{"TrackId":1938,"Name":"Paula E Bebeto","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Milton Nascimento, Caetano Veloso","Milliseconds":135732,"Bytes":4583956,"UnitPrice":"0.99"} +{"TrackId":1939,"Name":"Simples","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Nelson Angelo","Milliseconds":133093,"Bytes":4326333,"UnitPrice":"0.99"} +{"TrackId":1940,"Name":"Norwegian Wood","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"John Lennon, Paul McCartney","Milliseconds":413910,"Bytes":13520382,"UnitPrice":"0.99"} +{"TrackId":1941,"Name":"Caso Vocę Queira Saber","AlbumId":159,"MediaTypeId":1,"GenreId":7,"Composer":"Beto Guedes, Márcio Borges","Milliseconds":205688,"Bytes":6787901,"UnitPrice":"0.99"} +{"TrackId":1942,"Name":"Ace Of Spades","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":169926,"Bytes":5523552,"UnitPrice":"0.99"} +{"TrackId":1943,"Name":"Love Me Like A Reptile","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":203546,"Bytes":6616389,"UnitPrice":"0.99"} +{"TrackId":1944,"Name":"Shoot You In The Back","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":160026,"Bytes":5175327,"UnitPrice":"0.99"} +{"TrackId":1945,"Name":"Live To Win","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":217626,"Bytes":7102182,"UnitPrice":"0.99"} +{"TrackId":1946,"Name":"Fast And Loose","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":203337,"Bytes":6643350,"UnitPrice":"0.99"} +{"TrackId":1947,"Name":"(We Are) The Road Crew","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":192600,"Bytes":6283035,"UnitPrice":"0.99"} +{"TrackId":1948,"Name":"Fire Fire","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":164675,"Bytes":5416114,"UnitPrice":"0.99"} +{"TrackId":1949,"Name":"Jailbait","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":213916,"Bytes":6983609,"UnitPrice":"0.99"} +{"TrackId":1950,"Name":"Dance","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":158432,"Bytes":5155099,"UnitPrice":"0.99"} +{"TrackId":1951,"Name":"Bite The Bullet","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":98115,"Bytes":3195536,"UnitPrice":"0.99"} +{"TrackId":1952,"Name":"The Chase Is Better Than The Catch","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":258403,"Bytes":8393310,"UnitPrice":"0.99"} +{"TrackId":1953,"Name":"The Hammer","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":168071,"Bytes":5543267,"UnitPrice":"0.99"} +{"TrackId":1954,"Name":"Dirty Love","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Clarke/Kilmister/Taylor","Milliseconds":176457,"Bytes":5805241,"UnitPrice":"0.99"} +{"TrackId":1955,"Name":"Please Don't Touch","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Heath/Robinson","Milliseconds":169926,"Bytes":5557002,"UnitPrice":"0.99"} +{"TrackId":1956,"Name":"Emergency","AlbumId":160,"MediaTypeId":1,"GenreId":3,"Composer":"Dufort/Johnson/McAuliffe/Williams","Milliseconds":180427,"Bytes":5828728,"UnitPrice":"0.99"} +{"TrackId":1957,"Name":"Kir Royal","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":234788,"Bytes":7706552,"UnitPrice":"0.99"} +{"TrackId":1958,"Name":"O Que Vai Em Meu Coraçăo","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":255373,"Bytes":8366846,"UnitPrice":"0.99"} +{"TrackId":1959,"Name":"Aos Leőes","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":234684,"Bytes":7790574,"UnitPrice":"0.99"} +{"TrackId":1960,"Name":"Dois Índios","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":219271,"Bytes":7213072,"UnitPrice":"0.99"} +{"TrackId":1961,"Name":"Noite Negra","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":206811,"Bytes":6819584,"UnitPrice":"0.99"} +{"TrackId":1962,"Name":"Beijo do Olhar","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":252682,"Bytes":8369029,"UnitPrice":"0.99"} +{"TrackId":1963,"Name":"É Fogo","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":194873,"Bytes":6501520,"UnitPrice":"0.99"} +{"TrackId":1964,"Name":"Já Foi","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":245681,"Bytes":8094872,"UnitPrice":"0.99"} +{"TrackId":1965,"Name":"Só Se For Pelo Cabelo","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":238288,"Bytes":8006345,"UnitPrice":"0.99"} +{"TrackId":1966,"Name":"No Clima","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":249495,"Bytes":8362040,"UnitPrice":"0.99"} +{"TrackId":1967,"Name":"A Moça e a Chuva","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":274625,"Bytes":8929357,"UnitPrice":"0.99"} +{"TrackId":1968,"Name":"Demorou!","AlbumId":161,"MediaTypeId":1,"GenreId":16,"Composer":"Mônica Marianno","Milliseconds":39131,"Bytes":1287083,"UnitPrice":"0.99"} +{"TrackId":1969,"Name":"Bitter Pill","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil","Milliseconds":266814,"Bytes":8666786,"UnitPrice":"0.99"} +{"TrackId":1970,"Name":"Enslaved","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx/Tommy Lee","Milliseconds":269844,"Bytes":8789966,"UnitPrice":"0.99"} +{"TrackId":1971,"Name":"Girls, Girls, Girls","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx/Tommy Lee","Milliseconds":270288,"Bytes":8874814,"UnitPrice":"0.99"} +{"TrackId":1972,"Name":"Kickstart My Heart","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx","Milliseconds":283559,"Bytes":9237736,"UnitPrice":"0.99"} +{"TrackId":1973,"Name":"Wild Side","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx/Tommy Lee/Vince Neil","Milliseconds":276767,"Bytes":9116997,"UnitPrice":"0.99"} +{"TrackId":1974,"Name":"Glitter","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Bryan Adams/Nikki Sixx/Scott Humphrey","Milliseconds":340114,"Bytes":11184094,"UnitPrice":"0.99"} +{"TrackId":1975,"Name":"Dr. Feelgood","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx","Milliseconds":282618,"Bytes":9281875,"UnitPrice":"0.99"} +{"TrackId":1976,"Name":"Same Ol' Situation","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil","Milliseconds":254511,"Bytes":8283958,"UnitPrice":"0.99"} +{"TrackId":1977,"Name":"Home Sweet Home","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx/Tommy Lee/Vince Neil","Milliseconds":236904,"Bytes":7697538,"UnitPrice":"0.99"} +{"TrackId":1978,"Name":"Afraid","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx","Milliseconds":248006,"Bytes":8077464,"UnitPrice":"0.99"} +{"TrackId":1979,"Name":"Don't Go Away Mad (Just Go Away)","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx","Milliseconds":279980,"Bytes":9188156,"UnitPrice":"0.99"} +{"TrackId":1980,"Name":"Without You","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx","Milliseconds":268956,"Bytes":8738371,"UnitPrice":"0.99"} +{"TrackId":1981,"Name":"Smokin' in The Boys Room","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Cub Coda/Michael Lutz","Milliseconds":206837,"Bytes":6735408,"UnitPrice":"0.99"} +{"TrackId":1982,"Name":"Primal Scream","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil","Milliseconds":286197,"Bytes":9421164,"UnitPrice":"0.99"} +{"TrackId":1983,"Name":"Too Fast For Love","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx","Milliseconds":200829,"Bytes":6580542,"UnitPrice":"0.99"} +{"TrackId":1984,"Name":"Looks That Kill","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx","Milliseconds":240979,"Bytes":7831122,"UnitPrice":"0.99"} +{"TrackId":1985,"Name":"Shout At The Devil","AlbumId":162,"MediaTypeId":1,"GenreId":3,"Composer":"Nikki Sixx","Milliseconds":221962,"Bytes":7281974,"UnitPrice":"0.99"} +{"TrackId":1986,"Name":"Intro","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":52218,"Bytes":1688527,"UnitPrice":"0.99"} +{"TrackId":1987,"Name":"School","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":160235,"Bytes":5234885,"UnitPrice":"0.99"} +{"TrackId":1990,"Name":"Smells Like Teen Spirit","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Nirvana","Milliseconds":287190,"Bytes":9425215,"UnitPrice":"0.99"} +{"TrackId":1991,"Name":"Been A Son","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":127555,"Bytes":4170369,"UnitPrice":"0.99"} +{"TrackId":1992,"Name":"Lithium","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":250017,"Bytes":8148800,"UnitPrice":"0.99"} +{"TrackId":1993,"Name":"Sliver","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":116218,"Bytes":3784567,"UnitPrice":"0.99"} +{"TrackId":1994,"Name":"Spank Thru","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":190354,"Bytes":6186487,"UnitPrice":"0.99"} +{"TrackId":1995,"Name":"Scentless Apprentice","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Nirvana","Milliseconds":211200,"Bytes":6898177,"UnitPrice":"0.99"} +{"TrackId":1996,"Name":"Heart-Shaped Box","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":281887,"Bytes":9210982,"UnitPrice":"0.99"} +{"TrackId":1997,"Name":"Milk It","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":225724,"Bytes":7406945,"UnitPrice":"0.99"} +{"TrackId":1998,"Name":"Negative Creep","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":163761,"Bytes":5354854,"UnitPrice":"0.99"} +{"TrackId":1999,"Name":"Polly","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":149995,"Bytes":4885331,"UnitPrice":"0.99"} +{"TrackId":2000,"Name":"Breed","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":208378,"Bytes":6759080,"UnitPrice":"0.99"} +{"TrackId":2001,"Name":"Tourette's","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":115591,"Bytes":3753246,"UnitPrice":"0.99"} +{"TrackId":2002,"Name":"Blew","AlbumId":163,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":216346,"Bytes":7096936,"UnitPrice":"0.99"} +{"TrackId":2003,"Name":"Smells Like Teen Spirit","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":301296,"Bytes":9823847,"UnitPrice":"0.99"} +{"TrackId":2004,"Name":"In Bloom","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":254928,"Bytes":8327077,"UnitPrice":"0.99"} +{"TrackId":2005,"Name":"Come As You Are","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":219219,"Bytes":7123357,"UnitPrice":"0.99"} +{"TrackId":2006,"Name":"Breed","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":183928,"Bytes":5984812,"UnitPrice":"0.99"} +{"TrackId":2007,"Name":"Lithium","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":256992,"Bytes":8404745,"UnitPrice":"0.99"} +{"TrackId":2008,"Name":"Polly","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":177031,"Bytes":5788407,"UnitPrice":"0.99"} +{"TrackId":2009,"Name":"Territorial Pissings","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":143281,"Bytes":4613880,"UnitPrice":"0.99"} +{"TrackId":2010,"Name":"Drain You","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":223973,"Bytes":7273440,"UnitPrice":"0.99"} +{"TrackId":2011,"Name":"Lounge Act","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":156786,"Bytes":5093635,"UnitPrice":"0.99"} +{"TrackId":2012,"Name":"Stay Away","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":212636,"Bytes":6956404,"UnitPrice":"0.99"} +{"TrackId":2013,"Name":"On A Plain","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":196440,"Bytes":6390635,"UnitPrice":"0.99"} +{"TrackId":2014,"Name":"Something In The Way","AlbumId":164,"MediaTypeId":1,"GenreId":1,"Composer":"Kurt Cobain","Milliseconds":230556,"Bytes":7472168,"UnitPrice":"0.99"} +{"TrackId":2015,"Name":"Time","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":96888,"Bytes":3124455,"UnitPrice":"0.99"} +{"TrackId":2016,"Name":"P.S.Apareça","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":209188,"Bytes":6842244,"UnitPrice":"0.99"} +{"TrackId":2017,"Name":"Sangue Latino","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":223033,"Bytes":7354184,"UnitPrice":"0.99"} +{"TrackId":2018,"Name":"Folhas Secas","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":161253,"Bytes":5284522,"UnitPrice":"0.99"} +{"TrackId":2019,"Name":"Poeira","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":267075,"Bytes":8784141,"UnitPrice":"0.99"} +{"TrackId":2020,"Name":"Mágica","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":233743,"Bytes":7627348,"UnitPrice":"0.99"} +{"TrackId":2021,"Name":"Quem Mata A Mulher Mata O Melhor","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":262791,"Bytes":8640121,"UnitPrice":"0.99"} +{"TrackId":2022,"Name":"Mundaréu","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":217521,"Bytes":7158975,"UnitPrice":"0.99"} +{"TrackId":2023,"Name":"O Braço Da Minha Guitarra","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":258351,"Bytes":8469531,"UnitPrice":"0.99"} +{"TrackId":2024,"Name":"Deus","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":284160,"Bytes":9188110,"UnitPrice":"0.99"} +{"TrackId":2025,"Name":"Măe Terra","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":306625,"Bytes":9949269,"UnitPrice":"0.99"} +{"TrackId":2026,"Name":"Ŕs Vezes","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":330292,"Bytes":10706614,"UnitPrice":"0.99"} +{"TrackId":2027,"Name":"Menino De Rua","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":329795,"Bytes":10784595,"UnitPrice":"0.99"} +{"TrackId":2028,"Name":"Prazer E Fé","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":214831,"Bytes":7031383,"UnitPrice":"0.99"} +{"TrackId":2029,"Name":"Elza","AlbumId":165,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":199105,"Bytes":6517629,"UnitPrice":"0.99"} +{"TrackId":2030,"Name":"Requebra","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":240744,"Bytes":8010811,"UnitPrice":"0.99"} +{"TrackId":2031,"Name":"Nossa Gente (Avisa Lŕ)","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":188212,"Bytes":6233201,"UnitPrice":"0.99"} +{"TrackId":2032,"Name":"Olodum - Alegria Geral","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":233404,"Bytes":7754245,"UnitPrice":"0.99"} +{"TrackId":2033,"Name":"Madagáscar Olodum","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":252264,"Bytes":8270584,"UnitPrice":"0.99"} +{"TrackId":2034,"Name":"Faraó Divindade Do Egito","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":228571,"Bytes":7523278,"UnitPrice":"0.99"} +{"TrackId":2035,"Name":"Todo Amor (Asas Da Liberdade)","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":245133,"Bytes":8121434,"UnitPrice":"0.99"} +{"TrackId":2036,"Name":"Denúncia","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":159555,"Bytes":5327433,"UnitPrice":"0.99"} +{"TrackId":2037,"Name":"Olodum, A Banda Do Pelô","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":146599,"Bytes":4900121,"UnitPrice":"0.99"} +{"TrackId":2038,"Name":"Cartao Postal","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":211565,"Bytes":7082301,"UnitPrice":"0.99"} +{"TrackId":2039,"Name":"Jeito Faceiro","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":217286,"Bytes":7233608,"UnitPrice":"0.99"} +{"TrackId":2040,"Name":"Revolta Olodum","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":230191,"Bytes":7557065,"UnitPrice":"0.99"} +{"TrackId":2041,"Name":"Reggae Odoyá","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":224470,"Bytes":7499807,"UnitPrice":"0.99"} +{"TrackId":2042,"Name":"Protesto Do Olodum (Ao Vivo)","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":206001,"Bytes":6766104,"UnitPrice":"0.99"} +{"TrackId":2043,"Name":"Olodum - Smile (Instrumental)","AlbumId":166,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":235833,"Bytes":7871409,"UnitPrice":"0.99"} +{"TrackId":2044,"Name":"Vulcăo Dub - Fui Eu","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Bi Ribeira/Herbert Vianna/Joăo Barone","Milliseconds":287059,"Bytes":9495202,"UnitPrice":"0.99"} +{"TrackId":2045,"Name":"O Trem Da Juventude","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":225880,"Bytes":7507655,"UnitPrice":"0.99"} +{"TrackId":2046,"Name":"Manguetown","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Chico Science/Dengue/Lúcio Maia","Milliseconds":162925,"Bytes":5382018,"UnitPrice":"0.99"} +{"TrackId":2047,"Name":"Um Amor, Um Lugar","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":184555,"Bytes":6090334,"UnitPrice":"0.99"} +{"TrackId":2048,"Name":"Bora-Bora","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":182987,"Bytes":6036046,"UnitPrice":"0.99"} +{"TrackId":2049,"Name":"Vai Valer","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":206524,"Bytes":6899778,"UnitPrice":"0.99"} +{"TrackId":2050,"Name":"I Feel Good (I Got You) - Sossego","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"James Brown/Tim Maia","Milliseconds":244976,"Bytes":8091302,"UnitPrice":"0.99"} +{"TrackId":2051,"Name":"Uns Dias","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":240796,"Bytes":7931552,"UnitPrice":"0.99"} +{"TrackId":2052,"Name":"Sincero Breu","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"C. A./C.A./Celso Alvim/Herbert Vianna/Mário Moura/Pedro Luís/Sidon Silva","Milliseconds":208013,"Bytes":6921669,"UnitPrice":"0.99"} +{"TrackId":2053,"Name":"Meu Erro","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":188577,"Bytes":6192791,"UnitPrice":"0.99"} +{"TrackId":2054,"Name":"Selvagem","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Bi Ribeiro/Herbert Vianna/Joăo Barone","Milliseconds":148558,"Bytes":4942831,"UnitPrice":"0.99"} +{"TrackId":2055,"Name":"Brasília 5:31","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":178337,"Bytes":5857116,"UnitPrice":"0.99"} +{"TrackId":2056,"Name":"Tendo A Lua","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna/Tet Tillett","Milliseconds":198922,"Bytes":6568180,"UnitPrice":"0.99"} +{"TrackId":2057,"Name":"Que País É Este","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Renato Russo","Milliseconds":216685,"Bytes":7137865,"UnitPrice":"0.99"} +{"TrackId":2058,"Name":"Navegar Impreciso","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":262870,"Bytes":8761283,"UnitPrice":"0.99"} +{"TrackId":2059,"Name":"Feira Moderna","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Beto Guedes/Fernando Brant/L Borges","Milliseconds":182517,"Bytes":6001793,"UnitPrice":"0.99"} +{"TrackId":2060,"Name":"Tequila - Lourinha Bombril (Parate Y Mira)","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna","Milliseconds":255738,"Bytes":8514961,"UnitPrice":"0.99"} +{"TrackId":2061,"Name":"Vamo Batę Lata","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":228754,"Bytes":7585707,"UnitPrice":"0.99"} +{"TrackId":2062,"Name":"Life During Wartime","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth","Milliseconds":259186,"Bytes":8543439,"UnitPrice":"0.99"} +{"TrackId":2063,"Name":"Nebulosa Do Amor","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":203415,"Bytes":6732496,"UnitPrice":"0.99"} +{"TrackId":2064,"Name":"Caleidoscópio","AlbumId":167,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":256522,"Bytes":8484597,"UnitPrice":"0.99"} +{"TrackId":2065,"Name":"Trac Trac","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Fito Paez/Herbert Vianna","Milliseconds":231653,"Bytes":7638256,"UnitPrice":"0.99"} +{"TrackId":2066,"Name":"Tendo A Lua","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna/Tetę Tillet","Milliseconds":219585,"Bytes":7342776,"UnitPrice":"0.99"} +{"TrackId":2067,"Name":"Mensagen De Amor (2000)","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":183588,"Bytes":6061324,"UnitPrice":"0.99"} +{"TrackId":2068,"Name":"Lourinha Bombril","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Bahiano/Diego Blanco/Herbert Vianna","Milliseconds":159895,"Bytes":5301882,"UnitPrice":"0.99"} +{"TrackId":2069,"Name":"La Bella Luna","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":192653,"Bytes":6428598,"UnitPrice":"0.99"} +{"TrackId":2070,"Name":"Busca Vida","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":176431,"Bytes":5798663,"UnitPrice":"0.99"} +{"TrackId":2071,"Name":"Uma Brasileira","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Carlinhos Brown/Herbert Vianna","Milliseconds":217573,"Bytes":7280574,"UnitPrice":"0.99"} +{"TrackId":2072,"Name":"Luis Inacio (300 Picaretas)","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":198191,"Bytes":6576790,"UnitPrice":"0.99"} +{"TrackId":2073,"Name":"Saber Amar","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":202788,"Bytes":6723733,"UnitPrice":"0.99"} +{"TrackId":2074,"Name":"Ela Disse Adeus","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":226298,"Bytes":7608999,"UnitPrice":"0.99"} +{"TrackId":2075,"Name":"O Amor Nao Sabe Esperar","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna","Milliseconds":241084,"Bytes":8042534,"UnitPrice":"0.99"} +{"TrackId":2076,"Name":"Aonde Quer Que Eu Va","AlbumId":168,"MediaTypeId":1,"GenreId":7,"Composer":"Herbert Vianna/Paulo Sérgio Valle","Milliseconds":258089,"Bytes":8470121,"UnitPrice":"0.99"} +{"TrackId":2077,"Name":"Caleidoscópio","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":211330,"Bytes":7000017,"UnitPrice":"0.99"} +{"TrackId":2078,"Name":"Óculos","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":219271,"Bytes":7262419,"UnitPrice":"0.99"} +{"TrackId":2079,"Name":"Cinema Mudo","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":227918,"Bytes":7612168,"UnitPrice":"0.99"} +{"TrackId":2080,"Name":"Alagados","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":302393,"Bytes":10255463,"UnitPrice":"0.99"} +{"TrackId":2081,"Name":"Lanterna Dos Afogados","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":190197,"Bytes":6264318,"UnitPrice":"0.99"} +{"TrackId":2082,"Name":"Melô Do Marinheiro","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":208352,"Bytes":6905668,"UnitPrice":"0.99"} +{"TrackId":2083,"Name":"Vital E Sua Moto","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":210207,"Bytes":6902878,"UnitPrice":"0.99"} +{"TrackId":2084,"Name":"O Beco","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":189178,"Bytes":6293184,"UnitPrice":"0.99"} +{"TrackId":2085,"Name":"Meu Erro","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":208431,"Bytes":6893533,"UnitPrice":"0.99"} +{"TrackId":2086,"Name":"Perplexo","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":161175,"Bytes":5355013,"UnitPrice":"0.99"} +{"TrackId":2087,"Name":"Me Liga","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":229590,"Bytes":7565912,"UnitPrice":"0.99"} +{"TrackId":2088,"Name":"Quase Um Segundo","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":275644,"Bytes":8971355,"UnitPrice":"0.99"} +{"TrackId":2089,"Name":"Selvagem","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":245890,"Bytes":8141084,"UnitPrice":"0.99"} +{"TrackId":2090,"Name":"Romance Ideal","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":250070,"Bytes":8260477,"UnitPrice":"0.99"} +{"TrackId":2091,"Name":"Será Que Vai Chover?","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":337057,"Bytes":11133830,"UnitPrice":"0.99"} +{"TrackId":2092,"Name":"SKA","AlbumId":169,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":148871,"Bytes":4943540,"UnitPrice":"0.99"} +{"TrackId":2093,"Name":"Bark at the Moon","AlbumId":170,"MediaTypeId":2,"GenreId":1,"Composer":"O. Osbourne","Milliseconds":257252,"Bytes":4601224,"UnitPrice":"0.99"} +{"TrackId":2094,"Name":"I Don't Know","AlbumId":171,"MediaTypeId":2,"GenreId":1,"Composer":"B. Daisley, O. Osbourne & R. Rhoads","Milliseconds":312980,"Bytes":5525339,"UnitPrice":"0.99"} +{"TrackId":2095,"Name":"Crazy Train","AlbumId":171,"MediaTypeId":2,"GenreId":1,"Composer":"B. Daisley, O. Osbourne & R. Rhoads","Milliseconds":295960,"Bytes":5255083,"UnitPrice":"0.99"} +{"TrackId":2096,"Name":"Flying High Again","AlbumId":172,"MediaTypeId":2,"GenreId":1,"Composer":"L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads","Milliseconds":290851,"Bytes":5179599,"UnitPrice":"0.99"} +{"TrackId":2097,"Name":"Mama, I'm Coming Home","AlbumId":173,"MediaTypeId":2,"GenreId":1,"Composer":"L. Kilmister, O. Osbourne & Z. Wylde","Milliseconds":251586,"Bytes":4302390,"UnitPrice":"0.99"} +{"TrackId":2098,"Name":"No More Tears","AlbumId":173,"MediaTypeId":2,"GenreId":1,"Composer":"J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde","Milliseconds":444358,"Bytes":7362964,"UnitPrice":"0.99"} +{"TrackId":2099,"Name":"I Don't Know","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":283088,"Bytes":9207869,"UnitPrice":"0.99"} +{"TrackId":2100,"Name":"Crazy Train","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":322716,"Bytes":10517408,"UnitPrice":"0.99"} +{"TrackId":2101,"Name":"Believer","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":308897,"Bytes":10003794,"UnitPrice":"0.99"} +{"TrackId":2102,"Name":"Mr. Crowley","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":344241,"Bytes":11184130,"UnitPrice":"0.99"} +{"TrackId":2103,"Name":"Flying High Again","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake","Milliseconds":261224,"Bytes":8481822,"UnitPrice":"0.99"} +{"TrackId":2104,"Name":"Relvelation (Mother Earth)","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":349440,"Bytes":11367866,"UnitPrice":"0.99"} +{"TrackId":2105,"Name":"Steal Away (The Night)","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":485720,"Bytes":15945806,"UnitPrice":"0.99"} +{"TrackId":2106,"Name":"Suicide Solution (With Guitar Solo)","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":467069,"Bytes":15119938,"UnitPrice":"0.99"} +{"TrackId":2107,"Name":"Iron Man","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"A. F. Iommi, W. Ward, T. Butler, J. Osbourne","Milliseconds":172120,"Bytes":5609799,"UnitPrice":"0.99"} +{"TrackId":2108,"Name":"Children Of The Grave","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"A. F. Iommi, W. Ward, T. Butler, J. Osbourne","Milliseconds":357067,"Bytes":11626740,"UnitPrice":"0.99"} +{"TrackId":2109,"Name":"Paranoid","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"A. F. Iommi, W. Ward, T. Butler, J. Osbourne","Milliseconds":176352,"Bytes":5729813,"UnitPrice":"0.99"} +{"TrackId":2110,"Name":"Goodbye To Romance","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":334393,"Bytes":10841337,"UnitPrice":"0.99"} +{"TrackId":2111,"Name":"No Bone Movies","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"O. Osbourne, R. Daisley, R. Rhoads","Milliseconds":249208,"Bytes":8095199,"UnitPrice":"0.99"} +{"TrackId":2112,"Name":"Dee","AlbumId":174,"MediaTypeId":1,"GenreId":3,"Composer":"R. Rhoads","Milliseconds":261302,"Bytes":8555963,"UnitPrice":"0.99"} +{"TrackId":2113,"Name":"Shining In The Light","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":240796,"Bytes":7951688,"UnitPrice":"0.99"} +{"TrackId":2114,"Name":"When The World Was Young","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":373394,"Bytes":12198930,"UnitPrice":"0.99"} +{"TrackId":2115,"Name":"Upon A Golden Horse","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":232359,"Bytes":7594829,"UnitPrice":"0.99"} +{"TrackId":2116,"Name":"Blue Train","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":405028,"Bytes":13170391,"UnitPrice":"0.99"} +{"TrackId":2117,"Name":"Please Read The Letter","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":262112,"Bytes":8603372,"UnitPrice":"0.99"} +{"TrackId":2118,"Name":"Most High","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":336535,"Bytes":10999203,"UnitPrice":"0.99"} +{"TrackId":2119,"Name":"Heart In Your Hand","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":230896,"Bytes":7598019,"UnitPrice":"0.99"} +{"TrackId":2120,"Name":"Walking Into Clarksdale","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":318511,"Bytes":10396315,"UnitPrice":"0.99"} +{"TrackId":2121,"Name":"Burning Up","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":321619,"Bytes":10525136,"UnitPrice":"0.99"} +{"TrackId":2122,"Name":"When I Was A Child","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":345626,"Bytes":11249456,"UnitPrice":"0.99"} +{"TrackId":2123,"Name":"House Of Love","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":335699,"Bytes":10990880,"UnitPrice":"0.99"} +{"TrackId":2124,"Name":"Sons Of Freedom","AlbumId":175,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy Page, Robert Plant, Charlie Jones, Michael Lee","Milliseconds":246465,"Bytes":8087944,"UnitPrice":"0.99"} +{"TrackId":2125,"Name":"United Colours","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":330266,"Bytes":10939131,"UnitPrice":"0.99"} +{"TrackId":2126,"Name":"Slug","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":281469,"Bytes":9295950,"UnitPrice":"0.99"} +{"TrackId":2127,"Name":"Your Blue Room","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":328228,"Bytes":10867860,"UnitPrice":"0.99"} +{"TrackId":2128,"Name":"Always Forever Now","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":383764,"Bytes":12727928,"UnitPrice":"0.99"} +{"TrackId":2129,"Name":"A Different Kind Of Blue","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":120816,"Bytes":3884133,"UnitPrice":"0.99"} +{"TrackId":2130,"Name":"Beach Sequence","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":212297,"Bytes":6928259,"UnitPrice":"0.99"} +{"TrackId":2131,"Name":"Miss Sarajevo","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":340767,"Bytes":11064884,"UnitPrice":"0.99"} +{"TrackId":2132,"Name":"Ito Okashi","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":205087,"Bytes":6572813,"UnitPrice":"0.99"} +{"TrackId":2133,"Name":"One Minute Warning","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":279693,"Bytes":9335453,"UnitPrice":"0.99"} +{"TrackId":2134,"Name":"Corpse (These Chains Are Way Too Long)","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":214909,"Bytes":6920451,"UnitPrice":"0.99"} +{"TrackId":2135,"Name":"Elvis Ate America","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":180166,"Bytes":5851053,"UnitPrice":"0.99"} +{"TrackId":2136,"Name":"Plot 180","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":221596,"Bytes":7253729,"UnitPrice":"0.99"} +{"TrackId":2137,"Name":"Theme From The Swan","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":203911,"Bytes":6638076,"UnitPrice":"0.99"} +{"TrackId":2138,"Name":"Theme From Let's Go Native","AlbumId":176,"MediaTypeId":1,"GenreId":10,"Composer":"Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.","Milliseconds":186723,"Bytes":6179777,"UnitPrice":"0.99"} +{"TrackId":2139,"Name":"Wrathchild","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":170396,"Bytes":5499390,"UnitPrice":"0.99"} +{"TrackId":2140,"Name":"Killers","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Di'Anno/Steve Harris","Milliseconds":309995,"Bytes":10009697,"UnitPrice":"0.99"} +{"TrackId":2141,"Name":"Prowler","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":240274,"Bytes":7782963,"UnitPrice":"0.99"} +{"TrackId":2142,"Name":"Murders In The Rue Morgue","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":258638,"Bytes":8360999,"UnitPrice":"0.99"} +{"TrackId":2143,"Name":"Women In Uniform","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Greg Macainsh","Milliseconds":189936,"Bytes":6139651,"UnitPrice":"0.99"} +{"TrackId":2144,"Name":"Remember Tomorrow","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Di'Anno/Steve Harris","Milliseconds":326426,"Bytes":10577976,"UnitPrice":"0.99"} +{"TrackId":2145,"Name":"Sanctuary","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"David Murray/Paul Di'Anno/Steve Harris","Milliseconds":198844,"Bytes":6423543,"UnitPrice":"0.99"} +{"TrackId":2146,"Name":"Running Free","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Paul Di'Anno/Steve Harris","Milliseconds":199706,"Bytes":6483496,"UnitPrice":"0.99"} +{"TrackId":2147,"Name":"Phantom Of The Opera","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":418168,"Bytes":13585530,"UnitPrice":"0.99"} +{"TrackId":2148,"Name":"Iron Maiden","AlbumId":177,"MediaTypeId":1,"GenreId":1,"Composer":"Steve Harris","Milliseconds":235232,"Bytes":7600077,"UnitPrice":"0.99"} +{"TrackId":2149,"Name":"Corduroy","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Pearl Jam & Eddie Vedder","Milliseconds":305293,"Bytes":9991106,"UnitPrice":"0.99"} +{"TrackId":2150,"Name":"Given To Fly","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder & Mike McCready","Milliseconds":233613,"Bytes":7678347,"UnitPrice":"0.99"} +{"TrackId":2151,"Name":"Hail, Hail","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready","Milliseconds":223764,"Bytes":7364206,"UnitPrice":"0.99"} +{"TrackId":2152,"Name":"Daughter","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder","Milliseconds":407484,"Bytes":13420697,"UnitPrice":"0.99"} +{"TrackId":2153,"Name":"Elderly Woman Behind The Counter In A Small Town","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder","Milliseconds":229328,"Bytes":7509304,"UnitPrice":"0.99"} +{"TrackId":2154,"Name":"Untitled","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Pearl Jam","Milliseconds":122801,"Bytes":3957141,"UnitPrice":"0.99"} +{"TrackId":2155,"Name":"MFC","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":148192,"Bytes":4817665,"UnitPrice":"0.99"} +{"TrackId":2156,"Name":"Go","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder","Milliseconds":161541,"Bytes":5290810,"UnitPrice":"0.99"} +{"TrackId":2157,"Name":"Red Mosquito","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder","Milliseconds":242991,"Bytes":7944923,"UnitPrice":"0.99"} +{"TrackId":2158,"Name":"Even Flow","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard & Eddie Vedder","Milliseconds":317100,"Bytes":10394239,"UnitPrice":"0.99"} +{"TrackId":2159,"Name":"Off He Goes","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":343222,"Bytes":11245109,"UnitPrice":"0.99"} +{"TrackId":2160,"Name":"Nothingman","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament & Eddie Vedder","Milliseconds":278595,"Bytes":9107017,"UnitPrice":"0.99"} +{"TrackId":2161,"Name":"Do The Evolution","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder & Stone Gossard","Milliseconds":225462,"Bytes":7377286,"UnitPrice":"0.99"} +{"TrackId":2162,"Name":"Better Man","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":246204,"Bytes":8019563,"UnitPrice":"0.99"} +{"TrackId":2163,"Name":"Black","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard & Eddie Vedder","Milliseconds":415712,"Bytes":13580009,"UnitPrice":"0.99"} +{"TrackId":2164,"Name":"F*Ckin' Up","AlbumId":178,"MediaTypeId":1,"GenreId":1,"Composer":"Neil Young","Milliseconds":377652,"Bytes":12360893,"UnitPrice":"0.99"} +{"TrackId":2165,"Name":"Life Wasted","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Stone Gossard","Milliseconds":234344,"Bytes":7610169,"UnitPrice":"0.99"} +{"TrackId":2166,"Name":"World Wide Suicide","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Eddie Vedder","Milliseconds":209188,"Bytes":6885908,"UnitPrice":"0.99"} +{"TrackId":2167,"Name":"Comatose","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Mike McCready & Stone Gossard","Milliseconds":139990,"Bytes":4574516,"UnitPrice":"0.99"} +{"TrackId":2168,"Name":"Severed Hand","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Eddie Vedder","Milliseconds":270341,"Bytes":8817438,"UnitPrice":"0.99"} +{"TrackId":2169,"Name":"Marker In The Sand","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Mike McCready","Milliseconds":263235,"Bytes":8656578,"UnitPrice":"0.99"} +{"TrackId":2170,"Name":"Parachutes","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Stone Gossard","Milliseconds":216555,"Bytes":7074973,"UnitPrice":"0.99"} +{"TrackId":2171,"Name":"Unemployable","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Matt Cameron & Mike McCready","Milliseconds":184398,"Bytes":6066542,"UnitPrice":"0.99"} +{"TrackId":2172,"Name":"Big Wave","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Jeff Ament","Milliseconds":178573,"Bytes":5858788,"UnitPrice":"0.99"} +{"TrackId":2173,"Name":"Gone","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Eddie Vedder","Milliseconds":249547,"Bytes":8158204,"UnitPrice":"0.99"} +{"TrackId":2174,"Name":"Wasted Reprise","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Stone Gossard","Milliseconds":53733,"Bytes":1731020,"UnitPrice":"0.99"} +{"TrackId":2175,"Name":"Army Reserve","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Jeff Ament","Milliseconds":225567,"Bytes":7393771,"UnitPrice":"0.99"} +{"TrackId":2176,"Name":"Come Back","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Eddie Vedder & Mike McCready","Milliseconds":329743,"Bytes":10768701,"UnitPrice":"0.99"} +{"TrackId":2177,"Name":"Inside Job","AlbumId":179,"MediaTypeId":1,"GenreId":4,"Composer":"Eddie Vedder & Mike McCready","Milliseconds":428643,"Bytes":14006924,"UnitPrice":"0.99"} +{"TrackId":2178,"Name":"Can't Keep","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":219428,"Bytes":7215713,"UnitPrice":"0.99"} +{"TrackId":2179,"Name":"Save You","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard","Milliseconds":230112,"Bytes":7609110,"UnitPrice":"0.99"} +{"TrackId":2180,"Name":"Love Boat Captain","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":276453,"Bytes":9016789,"UnitPrice":"0.99"} +{"TrackId":2181,"Name":"Cropduster","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Matt Cameron","Milliseconds":231888,"Bytes":7588928,"UnitPrice":"0.99"} +{"TrackId":2182,"Name":"Ghost","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament","Milliseconds":195108,"Bytes":6383772,"UnitPrice":"0.99"} +{"TrackId":2183,"Name":"I Am Mine","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":215719,"Bytes":7086901,"UnitPrice":"0.99"} +{"TrackId":2184,"Name":"Thumbing My Way","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":250226,"Bytes":8201437,"UnitPrice":"0.99"} +{"TrackId":2185,"Name":"You Are","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Matt Cameron","Milliseconds":270863,"Bytes":8938409,"UnitPrice":"0.99"} +{"TrackId":2186,"Name":"Get Right","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Matt Cameron","Milliseconds":158589,"Bytes":5223345,"UnitPrice":"0.99"} +{"TrackId":2187,"Name":"Green Disease","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":161253,"Bytes":5375818,"UnitPrice":"0.99"} +{"TrackId":2188,"Name":"Help Help","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament","Milliseconds":215092,"Bytes":7033002,"UnitPrice":"0.99"} +{"TrackId":2189,"Name":"Bushleager","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard","Milliseconds":237479,"Bytes":7849757,"UnitPrice":"0.99"} +{"TrackId":2190,"Name":"1/2 Full","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament","Milliseconds":251010,"Bytes":8197219,"UnitPrice":"0.99"} +{"TrackId":2191,"Name":"Arc","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Pearl Jam","Milliseconds":65593,"Bytes":2099421,"UnitPrice":"0.99"} +{"TrackId":2192,"Name":"All or None","AlbumId":180,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard","Milliseconds":277655,"Bytes":9104728,"UnitPrice":"0.99"} +{"TrackId":2193,"Name":"Once","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard","Milliseconds":231758,"Bytes":7561555,"UnitPrice":"0.99"} +{"TrackId":2194,"Name":"Evenflow","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard","Milliseconds":293720,"Bytes":9622017,"UnitPrice":"0.99"} +{"TrackId":2195,"Name":"Alive","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Stone Gossard","Milliseconds":341080,"Bytes":11176623,"UnitPrice":"0.99"} +{"TrackId":2196,"Name":"Why Go","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament","Milliseconds":200254,"Bytes":6539287,"UnitPrice":"0.99"} +{"TrackId":2197,"Name":"Black","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Krusen/Stone Gossard","Milliseconds":343823,"Bytes":11213314,"UnitPrice":"0.99"} +{"TrackId":2198,"Name":"Jeremy","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament","Milliseconds":318981,"Bytes":10447222,"UnitPrice":"0.99"} +{"TrackId":2199,"Name":"Oceans","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament/Stone Gossard","Milliseconds":162194,"Bytes":5282368,"UnitPrice":"0.99"} +{"TrackId":2200,"Name":"Porch","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Eddie Vedder","Milliseconds":210520,"Bytes":6877475,"UnitPrice":"0.99"} +{"TrackId":2201,"Name":"Garden","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament/Stone Gossard","Milliseconds":299154,"Bytes":9740738,"UnitPrice":"0.99"} +{"TrackId":2202,"Name":"Deep","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament/Stone Gossard","Milliseconds":258324,"Bytes":8432497,"UnitPrice":"0.99"} +{"TrackId":2203,"Name":"Release","AlbumId":181,"MediaTypeId":1,"GenreId":1,"Composer":"Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":546063,"Bytes":17802673,"UnitPrice":"0.99"} +{"TrackId":2204,"Name":"Go","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":193123,"Bytes":6351920,"UnitPrice":"0.99"} +{"TrackId":2205,"Name":"Animal","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":169325,"Bytes":5503459,"UnitPrice":"0.99"} +{"TrackId":2206,"Name":"Daughter","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":235598,"Bytes":7824586,"UnitPrice":"0.99"} +{"TrackId":2207,"Name":"Glorified G","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":206968,"Bytes":6772116,"UnitPrice":"0.99"} +{"TrackId":2208,"Name":"Dissident","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":215510,"Bytes":7034500,"UnitPrice":"0.99"} +{"TrackId":2209,"Name":"W.M.A.","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":359262,"Bytes":12037261,"UnitPrice":"0.99"} +{"TrackId":2210,"Name":"Blood","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":170631,"Bytes":5551478,"UnitPrice":"0.99"} +{"TrackId":2211,"Name":"Rearviewmirror","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":284186,"Bytes":9321053,"UnitPrice":"0.99"} +{"TrackId":2212,"Name":"Rats","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":255425,"Bytes":8341934,"UnitPrice":"0.99"} +{"TrackId":2213,"Name":"Elderly Woman Behind The Counter In A Small Town","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":196336,"Bytes":6499398,"UnitPrice":"0.99"} +{"TrackId":2214,"Name":"Leash","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":189257,"Bytes":6191560,"UnitPrice":"0.99"} +{"TrackId":2215,"Name":"Indifference","AlbumId":182,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard","Milliseconds":302053,"Bytes":9756133,"UnitPrice":"0.99"} +{"TrackId":2216,"Name":"Johnny B. Goode","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":243200,"Bytes":8092024,"UnitPrice":"0.99"} +{"TrackId":2217,"Name":"Don't Look Back","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":221100,"Bytes":7344023,"UnitPrice":"0.99"} +{"TrackId":2218,"Name":"Jah Seh No","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":276871,"Bytes":9134476,"UnitPrice":"0.99"} +{"TrackId":2219,"Name":"I'm The Toughest","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":230191,"Bytes":7657594,"UnitPrice":"0.99"} +{"TrackId":2220,"Name":"Nothing But Love","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":221570,"Bytes":7335228,"UnitPrice":"0.99"} +{"TrackId":2221,"Name":"Buk-In-Hamm Palace","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":265665,"Bytes":8964369,"UnitPrice":"0.99"} +{"TrackId":2222,"Name":"Bush Doctor","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":239751,"Bytes":7942299,"UnitPrice":"0.99"} +{"TrackId":2223,"Name":"Wanted Dread And Alive","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":260310,"Bytes":8670933,"UnitPrice":"0.99"} +{"TrackId":2224,"Name":"Mystic Man","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":353671,"Bytes":11812170,"UnitPrice":"0.99"} +{"TrackId":2225,"Name":"Coming In Hot","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":213054,"Bytes":7109414,"UnitPrice":"0.99"} +{"TrackId":2226,"Name":"Pick Myself Up","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":234684,"Bytes":7788255,"UnitPrice":"0.99"} +{"TrackId":2227,"Name":"Crystal Ball","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":309733,"Bytes":10319296,"UnitPrice":"0.99"} +{"TrackId":2228,"Name":"Equal Rights Downpresser Man","AlbumId":141,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":366733,"Bytes":12086524,"UnitPrice":"0.99"} +{"TrackId":2229,"Name":"Speak To Me/Breathe","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Mason/Waters, Gilmour, Wright","Milliseconds":234213,"Bytes":7631305,"UnitPrice":"0.99"} +{"TrackId":2230,"Name":"On The Run","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Gilmour, Waters","Milliseconds":214595,"Bytes":7206300,"UnitPrice":"0.99"} +{"TrackId":2231,"Name":"Time","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Mason, Waters, Wright, Gilmour","Milliseconds":425195,"Bytes":13955426,"UnitPrice":"0.99"} +{"TrackId":2232,"Name":"The Great Gig In The Sky","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Wright, Waters","Milliseconds":284055,"Bytes":9147563,"UnitPrice":"0.99"} +{"TrackId":2233,"Name":"Money","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Waters","Milliseconds":391888,"Bytes":12930070,"UnitPrice":"0.99"} +{"TrackId":2234,"Name":"Us And Them","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Waters, Wright","Milliseconds":461035,"Bytes":15000299,"UnitPrice":"0.99"} +{"TrackId":2235,"Name":"Any Colour You Like","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Gilmour, Mason, Wright, Waters","Milliseconds":205740,"Bytes":6707989,"UnitPrice":"0.99"} +{"TrackId":2236,"Name":"Brain Damage","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Waters","Milliseconds":230556,"Bytes":7497655,"UnitPrice":"0.99"} +{"TrackId":2237,"Name":"Eclipse","AlbumId":183,"MediaTypeId":1,"GenreId":1,"Composer":"Waters","Milliseconds":125361,"Bytes":4065299,"UnitPrice":"0.99"} +{"TrackId":2238,"Name":"ZeroVinteUm","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":315637,"Bytes":10426550,"UnitPrice":"0.99"} +{"TrackId":2239,"Name":"Queimando Tudo","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":172591,"Bytes":5723677,"UnitPrice":"0.99"} +{"TrackId":2240,"Name":"Hip Hop Rio","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":151536,"Bytes":4991935,"UnitPrice":"0.99"} +{"TrackId":2241,"Name":"Bossa","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":29048,"Bytes":967098,"UnitPrice":"0.99"} +{"TrackId":2242,"Name":"100% HardCore","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":165146,"Bytes":5407744,"UnitPrice":"0.99"} +{"TrackId":2243,"Name":"Biruta","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":213263,"Bytes":7108200,"UnitPrice":"0.99"} +{"TrackId":2244,"Name":"Măo Na Cabeça","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":202631,"Bytes":6642753,"UnitPrice":"0.99"} +{"TrackId":2245,"Name":"O Bicho Tá Pregando","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":171964,"Bytes":5683369,"UnitPrice":"0.99"} +{"TrackId":2246,"Name":"Adoled (Ocean)","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":185103,"Bytes":6009946,"UnitPrice":"0.99"} +{"TrackId":2247,"Name":"Seus Amigos","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":100858,"Bytes":3304738,"UnitPrice":"0.99"} +{"TrackId":2248,"Name":"Paga Pau","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":197485,"Bytes":6529041,"UnitPrice":"0.99"} +{"TrackId":2249,"Name":"Rappers Reais","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":202004,"Bytes":6684160,"UnitPrice":"0.99"} +{"TrackId":2250,"Name":"Nega Do Cabelo Duro","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":121808,"Bytes":4116536,"UnitPrice":"0.99"} +{"TrackId":2251,"Name":"Hemp Family","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":205923,"Bytes":6806900,"UnitPrice":"0.99"} +{"TrackId":2252,"Name":"Quem Me Cobrou?","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":121704,"Bytes":3947664,"UnitPrice":"0.99"} +{"TrackId":2253,"Name":"Se Liga","AlbumId":184,"MediaTypeId":1,"GenreId":17,"Composer":null,"Milliseconds":410409,"Bytes":13559173,"UnitPrice":"0.99"} +{"TrackId":2254,"Name":"Bohemian Rhapsody","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":358948,"Bytes":11619868,"UnitPrice":"0.99"} +{"TrackId":2255,"Name":"Another One Bites The Dust","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Deacon, John","Milliseconds":216946,"Bytes":7172355,"UnitPrice":"0.99"} +{"TrackId":2256,"Name":"Killer Queen","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":182099,"Bytes":5967749,"UnitPrice":"0.99"} +{"TrackId":2257,"Name":"Fat Bottomed Girls","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"May, Brian","Milliseconds":204695,"Bytes":6630041,"UnitPrice":"0.99"} +{"TrackId":2258,"Name":"Bicycle Race","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":183823,"Bytes":6012409,"UnitPrice":"0.99"} +{"TrackId":2259,"Name":"You're My Best Friend","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Deacon, John","Milliseconds":172225,"Bytes":5602173,"UnitPrice":"0.99"} +{"TrackId":2260,"Name":"Don't Stop Me Now","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":211826,"Bytes":6896666,"UnitPrice":"0.99"} +{"TrackId":2261,"Name":"Save Me","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"May, Brian","Milliseconds":228832,"Bytes":7444624,"UnitPrice":"0.99"} +{"TrackId":2262,"Name":"Crazy Little Thing Called Love","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":164231,"Bytes":5435501,"UnitPrice":"0.99"} +{"TrackId":2263,"Name":"Somebody To Love","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":297351,"Bytes":9650520,"UnitPrice":"0.99"} +{"TrackId":2264,"Name":"Now I'm Here","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"May, Brian","Milliseconds":255346,"Bytes":8328312,"UnitPrice":"0.99"} +{"TrackId":2265,"Name":"Good Old-Fashioned Lover Boy","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":175960,"Bytes":5747506,"UnitPrice":"0.99"} +{"TrackId":2266,"Name":"Play The Game","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":213368,"Bytes":6915832,"UnitPrice":"0.99"} +{"TrackId":2267,"Name":"Flash","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"May, Brian","Milliseconds":168489,"Bytes":5464986,"UnitPrice":"0.99"} +{"TrackId":2268,"Name":"Seven Seas Of Rhye","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":170553,"Bytes":5539957,"UnitPrice":"0.99"} +{"TrackId":2269,"Name":"We Will Rock You","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Deacon, John/May, Brian","Milliseconds":122880,"Bytes":4026955,"UnitPrice":"0.99"} +{"TrackId":2270,"Name":"We Are The Champions","AlbumId":185,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury, Freddie","Milliseconds":180950,"Bytes":5880231,"UnitPrice":"0.99"} +{"TrackId":2271,"Name":"We Will Rock You","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"May","Milliseconds":122671,"Bytes":4026815,"UnitPrice":"0.99"} +{"TrackId":2272,"Name":"We Are The Champions","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury","Milliseconds":182883,"Bytes":5939794,"UnitPrice":"0.99"} +{"TrackId":2273,"Name":"Sheer Heart Attack","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Taylor","Milliseconds":207386,"Bytes":6642685,"UnitPrice":"0.99"} +{"TrackId":2274,"Name":"All Dead, All Dead","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"May","Milliseconds":190119,"Bytes":6144878,"UnitPrice":"0.99"} +{"TrackId":2275,"Name":"Spread Your Wings","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Deacon","Milliseconds":275356,"Bytes":8936992,"UnitPrice":"0.99"} +{"TrackId":2276,"Name":"Fight From The Inside","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Taylor","Milliseconds":184737,"Bytes":6078001,"UnitPrice":"0.99"} +{"TrackId":2277,"Name":"Get Down, Make Love","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury","Milliseconds":231235,"Bytes":7509333,"UnitPrice":"0.99"} +{"TrackId":2278,"Name":"Sleep On The Sidewalk","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"May","Milliseconds":187428,"Bytes":6099840,"UnitPrice":"0.99"} +{"TrackId":2279,"Name":"Who Needs You","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Deacon","Milliseconds":186958,"Bytes":6292969,"UnitPrice":"0.99"} +{"TrackId":2280,"Name":"It's Late","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"May","Milliseconds":386194,"Bytes":12519388,"UnitPrice":"0.99"} +{"TrackId":2281,"Name":"My Melancholy Blues","AlbumId":186,"MediaTypeId":1,"GenreId":1,"Composer":"Mercury","Milliseconds":206471,"Bytes":6691838,"UnitPrice":"0.99"} +{"TrackId":2282,"Name":"Shiny Happy People","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":226298,"Bytes":7475323,"UnitPrice":"0.99"} +{"TrackId":2283,"Name":"Me In Honey","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":246674,"Bytes":8194751,"UnitPrice":"0.99"} +{"TrackId":2284,"Name":"Radio Song","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":255477,"Bytes":8421172,"UnitPrice":"0.99"} +{"TrackId":2285,"Name":"Pop Song 89","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":185730,"Bytes":6132218,"UnitPrice":"0.99"} +{"TrackId":2286,"Name":"Get Up","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":160235,"Bytes":5264376,"UnitPrice":"0.99"} +{"TrackId":2287,"Name":"You Are The Everything","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":226298,"Bytes":7373181,"UnitPrice":"0.99"} +{"TrackId":2288,"Name":"Stand","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":192862,"Bytes":6349090,"UnitPrice":"0.99"} +{"TrackId":2289,"Name":"World Leader Pretend","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":259761,"Bytes":8537282,"UnitPrice":"0.99"} +{"TrackId":2290,"Name":"The Wrong Child","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":216633,"Bytes":7065060,"UnitPrice":"0.99"} +{"TrackId":2291,"Name":"Orange Crush","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":231706,"Bytes":7742894,"UnitPrice":"0.99"} +{"TrackId":2292,"Name":"Turn You Inside-Out","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":257358,"Bytes":8395671,"UnitPrice":"0.99"} +{"TrackId":2293,"Name":"Hairshirt","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":235911,"Bytes":7753807,"UnitPrice":"0.99"} +{"TrackId":2294,"Name":"I Remember California","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":304013,"Bytes":9950311,"UnitPrice":"0.99"} +{"TrackId":2295,"Name":"Untitled","AlbumId":188,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":191503,"Bytes":6332426,"UnitPrice":"0.99"} +{"TrackId":2296,"Name":"How The West Was Won And Where It Got Us","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":271151,"Bytes":8994291,"UnitPrice":"0.99"} +{"TrackId":2297,"Name":"The Wake-Up Bomb","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":308532,"Bytes":10077337,"UnitPrice":"0.99"} +{"TrackId":2298,"Name":"New Test Leper","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":326791,"Bytes":10866447,"UnitPrice":"0.99"} +{"TrackId":2299,"Name":"Undertow","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":309498,"Bytes":10131005,"UnitPrice":"0.99"} +{"TrackId":2300,"Name":"E-Bow The Letter","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":324963,"Bytes":10714576,"UnitPrice":"0.99"} +{"TrackId":2301,"Name":"Leave","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":437968,"Bytes":14433365,"UnitPrice":"0.99"} +{"TrackId":2302,"Name":"Departure","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":209423,"Bytes":6818425,"UnitPrice":"0.99"} +{"TrackId":2303,"Name":"Bittersweet Me","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":245812,"Bytes":8114718,"UnitPrice":"0.99"} +{"TrackId":2304,"Name":"Be Mine","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":333087,"Bytes":10790541,"UnitPrice":"0.99"} +{"TrackId":2305,"Name":"Binky The Doormat","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":301688,"Bytes":9950320,"UnitPrice":"0.99"} +{"TrackId":2306,"Name":"Zither","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":154148,"Bytes":5032962,"UnitPrice":"0.99"} +{"TrackId":2307,"Name":"So Fast, So Numb","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":252682,"Bytes":8341223,"UnitPrice":"0.99"} +{"TrackId":2308,"Name":"Low Desert","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":212062,"Bytes":6989288,"UnitPrice":"0.99"} +{"TrackId":2309,"Name":"Electrolite","AlbumId":189,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Berry-Peter Buck-Mike Mills-Michael Stipe","Milliseconds":245315,"Bytes":8051199,"UnitPrice":"0.99"} +{"TrackId":2310,"Name":"Losing My Religion","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":269035,"Bytes":8885672,"UnitPrice":"0.99"} +{"TrackId":2311,"Name":"Low","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":296777,"Bytes":9633860,"UnitPrice":"0.99"} +{"TrackId":2312,"Name":"Near Wild Heaven","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":199862,"Bytes":6610009,"UnitPrice":"0.99"} +{"TrackId":2313,"Name":"Endgame","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":230687,"Bytes":7664479,"UnitPrice":"0.99"} +{"TrackId":2314,"Name":"Belong","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":247013,"Bytes":8219375,"UnitPrice":"0.99"} +{"TrackId":2315,"Name":"Half A World Away","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":208431,"Bytes":6837283,"UnitPrice":"0.99"} +{"TrackId":2316,"Name":"Texarkana","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":220081,"Bytes":7260681,"UnitPrice":"0.99"} +{"TrackId":2317,"Name":"Country Feedback","AlbumId":187,"MediaTypeId":1,"GenreId":4,"Composer":"Bill Berry/Michael Stipe/Mike Mills/Peter Buck","Milliseconds":249782,"Bytes":8178943,"UnitPrice":"0.99"} +{"TrackId":2318,"Name":"Carnival Of Sorts","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":233482,"Bytes":7669658,"UnitPrice":"0.99"} +{"TrackId":2319,"Name":"Radio Free Aurope","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":245315,"Bytes":8163490,"UnitPrice":"0.99"} +{"TrackId":2320,"Name":"Perfect Circle","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":208509,"Bytes":6898067,"UnitPrice":"0.99"} +{"TrackId":2321,"Name":"Talk About The Passion","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":203206,"Bytes":6725435,"UnitPrice":"0.99"} +{"TrackId":2322,"Name":"So Central Rain","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":194768,"Bytes":6414550,"UnitPrice":"0.99"} +{"TrackId":2323,"Name":"Don't Go Back To Rockville","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":272352,"Bytes":9010715,"UnitPrice":"0.99"} +{"TrackId":2324,"Name":"Pretty Persuasion","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":229929,"Bytes":7577754,"UnitPrice":"0.99"} +{"TrackId":2325,"Name":"Green Grow The Rushes","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":225671,"Bytes":7422425,"UnitPrice":"0.99"} +{"TrackId":2326,"Name":"Can't Get There From Here","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":220630,"Bytes":7285936,"UnitPrice":"0.99"} +{"TrackId":2327,"Name":"Driver 8","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":204747,"Bytes":6779076,"UnitPrice":"0.99"} +{"TrackId":2328,"Name":"Fall On Me","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":172016,"Bytes":5676811,"UnitPrice":"0.99"} +{"TrackId":2329,"Name":"I Believe","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":227709,"Bytes":7542929,"UnitPrice":"0.99"} +{"TrackId":2330,"Name":"Cuyahoga","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":260623,"Bytes":8591057,"UnitPrice":"0.99"} +{"TrackId":2331,"Name":"The One I Love","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":197355,"Bytes":6495125,"UnitPrice":"0.99"} +{"TrackId":2332,"Name":"The Finest Worksong","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":229276,"Bytes":7574856,"UnitPrice":"0.99"} +{"TrackId":2333,"Name":"It's The End Of The World As We Know It (And I Feel Fine)","AlbumId":190,"MediaTypeId":1,"GenreId":4,"Composer":"R.E.M.","Milliseconds":244819,"Bytes":7998987,"UnitPrice":"0.99"} +{"TrackId":2334,"Name":"Infeliz Natal","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":138266,"Bytes":4503299,"UnitPrice":"0.99"} +{"TrackId":2335,"Name":"A Sua","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":142132,"Bytes":4622064,"UnitPrice":"0.99"} +{"TrackId":2336,"Name":"Papeau Nuky Doe","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":121652,"Bytes":3995022,"UnitPrice":"0.99"} +{"TrackId":2337,"Name":"Merry Christmas","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":126040,"Bytes":4166652,"UnitPrice":"0.99"} +{"TrackId":2338,"Name":"Bodies","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":180035,"Bytes":5873778,"UnitPrice":"0.99"} +{"TrackId":2339,"Name":"Puteiro Em Joăo Pessoa","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":195578,"Bytes":6395490,"UnitPrice":"0.99"} +{"TrackId":2340,"Name":"Esporrei Na Manivela","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":293276,"Bytes":9618499,"UnitPrice":"0.99"} +{"TrackId":2341,"Name":"Bę-a-Bá","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":249051,"Bytes":8130636,"UnitPrice":"0.99"} +{"TrackId":2342,"Name":"Cajueiro","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":158589,"Bytes":5164837,"UnitPrice":"0.99"} +{"TrackId":2343,"Name":"Palhas Do Coqueiro","AlbumId":191,"MediaTypeId":1,"GenreId":4,"Composer":"Rodolfo","Milliseconds":133851,"Bytes":4396466,"UnitPrice":"0.99"} +{"TrackId":2344,"Name":"Maluco Beleza","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":203206,"Bytes":6628067,"UnitPrice":"0.99"} +{"TrackId":2345,"Name":"O Dia Em Que A Terra Parou","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":261720,"Bytes":8586678,"UnitPrice":"0.99"} +{"TrackId":2346,"Name":"No Fundo Do Quintal Da Escola","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":177606,"Bytes":5836953,"UnitPrice":"0.99"} +{"TrackId":2347,"Name":"O Segredo Do Universo","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":192679,"Bytes":6315187,"UnitPrice":"0.99"} +{"TrackId":2348,"Name":"As Profecias","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":232515,"Bytes":7657732,"UnitPrice":"0.99"} +{"TrackId":2349,"Name":"Mata Virgem","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":142602,"Bytes":4690029,"UnitPrice":"0.99"} +{"TrackId":2350,"Name":"Sapato 36","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":196702,"Bytes":6507301,"UnitPrice":"0.99"} +{"TrackId":2351,"Name":"Todo Mundo Explica","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":134896,"Bytes":4449772,"UnitPrice":"0.99"} +{"TrackId":2352,"Name":"Que Luz É Essa","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":165067,"Bytes":5620058,"UnitPrice":"0.99"} +{"TrackId":2353,"Name":"Diamante De Mendigo","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":206053,"Bytes":6775101,"UnitPrice":"0.99"} +{"TrackId":2354,"Name":"Negócio É","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":175464,"Bytes":5826775,"UnitPrice":"0.99"} +{"TrackId":2355,"Name":"Muita Estrela, Pouca Constelaçăo","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":268068,"Bytes":8781021,"UnitPrice":"0.99"} +{"TrackId":2356,"Name":"Século XXI","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":244897,"Bytes":8040563,"UnitPrice":"0.99"} +{"TrackId":2357,"Name":"Rock Das Aranhas (Ao Vivo) (Live)","AlbumId":192,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":231836,"Bytes":7591945,"UnitPrice":"0.99"} +{"TrackId":2358,"Name":"The Power Of Equality","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":243591,"Bytes":8148266,"UnitPrice":"0.99"} +{"TrackId":2359,"Name":"If You Have To Ask","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":216790,"Bytes":7199175,"UnitPrice":"0.99"} +{"TrackId":2360,"Name":"Breaking The Girl","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":295497,"Bytes":9805526,"UnitPrice":"0.99"} +{"TrackId":2361,"Name":"Funky Monks","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":323395,"Bytes":10708168,"UnitPrice":"0.99"} +{"TrackId":2362,"Name":"Suck My Kiss","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":217234,"Bytes":7129137,"UnitPrice":"0.99"} +{"TrackId":2363,"Name":"I Could Have Lied","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":244506,"Bytes":8088244,"UnitPrice":"0.99"} +{"TrackId":2364,"Name":"Mellowship Slinky In B Major","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":240091,"Bytes":7971384,"UnitPrice":"0.99"} +{"TrackId":2365,"Name":"The Righteous & The Wicked","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":248084,"Bytes":8134096,"UnitPrice":"0.99"} +{"TrackId":2366,"Name":"Give It Away","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":283010,"Bytes":9308997,"UnitPrice":"0.99"} +{"TrackId":2367,"Name":"Blood Sugar Sex Magik","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":271229,"Bytes":8940573,"UnitPrice":"0.99"} +{"TrackId":2368,"Name":"Under The Bridge","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":264359,"Bytes":8682716,"UnitPrice":"0.99"} +{"TrackId":2369,"Name":"Naked In The Rain","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":265717,"Bytes":8724674,"UnitPrice":"0.99"} +{"TrackId":2370,"Name":"Apache Rose Peacock","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":282226,"Bytes":9312588,"UnitPrice":"0.99"} +{"TrackId":2371,"Name":"The Greeting Song","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":193593,"Bytes":6346507,"UnitPrice":"0.99"} +{"TrackId":2372,"Name":"My Lovely Man","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":279118,"Bytes":9220114,"UnitPrice":"0.99"} +{"TrackId":2373,"Name":"Sir Psycho Sexy","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":496692,"Bytes":16354362,"UnitPrice":"0.99"} +{"TrackId":2374,"Name":"They're Red Hot","AlbumId":193,"MediaTypeId":1,"GenreId":4,"Composer":"Robert Johnson","Milliseconds":71941,"Bytes":2382220,"UnitPrice":"0.99"} +{"TrackId":2375,"Name":"By The Way","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":218017,"Bytes":7197430,"UnitPrice":"0.99"} +{"TrackId":2376,"Name":"Universally Speaking","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":259213,"Bytes":8501904,"UnitPrice":"0.99"} +{"TrackId":2377,"Name":"This Is The Place","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":257906,"Bytes":8469765,"UnitPrice":"0.99"} +{"TrackId":2611,"Name":"Rise","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":219088,"Bytes":7106195,"UnitPrice":"0.99"} +{"TrackId":2378,"Name":"Dosed","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":312058,"Bytes":10235611,"UnitPrice":"0.99"} +{"TrackId":2379,"Name":"Don't Forget Me","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":277995,"Bytes":9107071,"UnitPrice":"0.99"} +{"TrackId":2380,"Name":"The Zephyr Song","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":232960,"Bytes":7690312,"UnitPrice":"0.99"} +{"TrackId":2381,"Name":"Can't Stop","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":269400,"Bytes":8872479,"UnitPrice":"0.99"} +{"TrackId":2382,"Name":"I Could Die For You","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":193906,"Bytes":6333311,"UnitPrice":"0.99"} +{"TrackId":2383,"Name":"Midnight","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":295810,"Bytes":9702450,"UnitPrice":"0.99"} +{"TrackId":2384,"Name":"Throw Away Your Television","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":224574,"Bytes":7483526,"UnitPrice":"0.99"} +{"TrackId":2385,"Name":"Cabron","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":218592,"Bytes":7458864,"UnitPrice":"0.99"} +{"TrackId":2386,"Name":"Tear","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":317413,"Bytes":10395500,"UnitPrice":"0.99"} +{"TrackId":2387,"Name":"On Mercury","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":208509,"Bytes":6834762,"UnitPrice":"0.99"} +{"TrackId":2388,"Name":"Minor Thing","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":217835,"Bytes":7148115,"UnitPrice":"0.99"} +{"TrackId":2389,"Name":"Warm Tape","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":256653,"Bytes":8358200,"UnitPrice":"0.99"} +{"TrackId":2390,"Name":"Venice Queen","AlbumId":194,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis, Flea, John Frusciante, and Chad Smith","Milliseconds":369110,"Bytes":12280381,"UnitPrice":"0.99"} +{"TrackId":2391,"Name":"Around The World","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":238837,"Bytes":7859167,"UnitPrice":"0.99"} +{"TrackId":2392,"Name":"Parallel Universe","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":270654,"Bytes":8958519,"UnitPrice":"0.99"} +{"TrackId":2393,"Name":"Scar Tissue","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":217469,"Bytes":7153744,"UnitPrice":"0.99"} +{"TrackId":2394,"Name":"Otherside","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":255973,"Bytes":8357989,"UnitPrice":"0.99"} +{"TrackId":2395,"Name":"Get On Top","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":198164,"Bytes":6587883,"UnitPrice":"0.99"} +{"TrackId":2396,"Name":"Californication","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":321671,"Bytes":10568999,"UnitPrice":"0.99"} +{"TrackId":2397,"Name":"Easily","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":231418,"Bytes":7504534,"UnitPrice":"0.99"} +{"TrackId":2398,"Name":"Porcelain","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":163787,"Bytes":5278793,"UnitPrice":"0.99"} +{"TrackId":2399,"Name":"Emit Remmus","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":240300,"Bytes":7901717,"UnitPrice":"0.99"} +{"TrackId":2400,"Name":"I Like Dirt","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":157727,"Bytes":5225917,"UnitPrice":"0.99"} +{"TrackId":2401,"Name":"This Velvet Glove","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":225280,"Bytes":7480537,"UnitPrice":"0.99"} +{"TrackId":2402,"Name":"Savior","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Anthony Kiedis/Chad Smith/Flea/John Frusciante","Milliseconds":292493,"Bytes":9551885,"UnitPrice":"0.99"} +{"TrackId":2403,"Name":"Purple Stain","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":253440,"Bytes":8359971,"UnitPrice":"0.99"} +{"TrackId":2404,"Name":"Right On Time","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":112613,"Bytes":3722219,"UnitPrice":"0.99"} +{"TrackId":2405,"Name":"Road Trippin'","AlbumId":195,"MediaTypeId":1,"GenreId":1,"Composer":"Red Hot Chili Peppers","Milliseconds":205635,"Bytes":6685831,"UnitPrice":"0.99"} +{"TrackId":2406,"Name":"The Spirit Of Radio","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":299154,"Bytes":9862012,"UnitPrice":"0.99"} +{"TrackId":2407,"Name":"The Trees","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":285126,"Bytes":9345473,"UnitPrice":"0.99"} +{"TrackId":2408,"Name":"Something For Nothing","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":240770,"Bytes":7898395,"UnitPrice":"0.99"} +{"TrackId":2409,"Name":"Freewill","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":324362,"Bytes":10694110,"UnitPrice":"0.99"} +{"TrackId":2410,"Name":"Xanadu","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":667428,"Bytes":21753168,"UnitPrice":"0.99"} +{"TrackId":2411,"Name":"Bastille Day","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":280528,"Bytes":9264769,"UnitPrice":"0.99"} +{"TrackId":2412,"Name":"By-Tor And The Snow Dog","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":519888,"Bytes":17076397,"UnitPrice":"0.99"} +{"TrackId":2413,"Name":"Anthem","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":264515,"Bytes":8693343,"UnitPrice":"0.99"} +{"TrackId":2414,"Name":"Closer To The Heart","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":175412,"Bytes":5767005,"UnitPrice":"0.99"} +{"TrackId":2415,"Name":"2112 Overture","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":272718,"Bytes":8898066,"UnitPrice":"0.99"} +{"TrackId":2416,"Name":"The Temples Of Syrinx","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":133459,"Bytes":4360163,"UnitPrice":"0.99"} +{"TrackId":2417,"Name":"La Villa Strangiato","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":577488,"Bytes":19137855,"UnitPrice":"0.99"} +{"TrackId":2418,"Name":"Fly By Night","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":202318,"Bytes":6683061,"UnitPrice":"0.99"} +{"TrackId":2419,"Name":"Finding My Way","AlbumId":196,"MediaTypeId":1,"GenreId":1,"Composer":"Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush","Milliseconds":305528,"Bytes":9985701,"UnitPrice":"0.99"} +{"TrackId":2420,"Name":"Jingo","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"M.Babatunde Olantunji","Milliseconds":592953,"Bytes":19736495,"UnitPrice":"0.99"} +{"TrackId":2421,"Name":"El Corazon Manda","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"E.Weiss","Milliseconds":713534,"Bytes":23519583,"UnitPrice":"0.99"} +{"TrackId":2422,"Name":"La Puesta Del Sol","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"E.Weiss","Milliseconds":628062,"Bytes":20614621,"UnitPrice":"0.99"} +{"TrackId":2423,"Name":"Persuasion","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana","Milliseconds":318432,"Bytes":10354751,"UnitPrice":"0.99"} +{"TrackId":2424,"Name":"As The Years Go by","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"Albert King","Milliseconds":233064,"Bytes":7566829,"UnitPrice":"0.99"} +{"TrackId":2425,"Name":"Soul Sacrifice","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana","Milliseconds":296437,"Bytes":9801120,"UnitPrice":"0.99"} +{"TrackId":2426,"Name":"Fried Neckbones And Home Fries","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"W.Correa","Milliseconds":638563,"Bytes":20939646,"UnitPrice":"0.99"} +{"TrackId":2427,"Name":"Santana Jam","AlbumId":197,"MediaTypeId":1,"GenreId":1,"Composer":"Carlos Santana","Milliseconds":882834,"Bytes":29207100,"UnitPrice":"0.99"} +{"TrackId":2428,"Name":"Evil Ways","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":475402,"Bytes":15289235,"UnitPrice":"0.99"} +{"TrackId":2429,"Name":"We've Got To Get Together/Jingo","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":1070027,"Bytes":34618222,"UnitPrice":"0.99"} +{"TrackId":2430,"Name":"Rock Me","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":94720,"Bytes":3037596,"UnitPrice":"0.99"} +{"TrackId":2431,"Name":"Just Ain't Good Enough","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":850259,"Bytes":27489067,"UnitPrice":"0.99"} +{"TrackId":2432,"Name":"Funky Piano","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":934791,"Bytes":30200730,"UnitPrice":"0.99"} +{"TrackId":2433,"Name":"The Way You Do To Mer","AlbumId":198,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":618344,"Bytes":20028702,"UnitPrice":"0.99"} +{"TrackId":2434,"Name":"Holding Back The Years","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall and Neil Moss","Milliseconds":270053,"Bytes":8833220,"UnitPrice":"0.99"} +{"TrackId":2435,"Name":"Money's Too Tight To Mention","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"John and William Valentine","Milliseconds":268408,"Bytes":8861921,"UnitPrice":"0.99"} +{"TrackId":2436,"Name":"The Right Thing","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":262687,"Bytes":8624063,"UnitPrice":"0.99"} +{"TrackId":2437,"Name":"It's Only Love","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Jimmy and Vella Cameron","Milliseconds":232594,"Bytes":7659017,"UnitPrice":"0.99"} +{"TrackId":2438,"Name":"A New Flame","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":237662,"Bytes":7822875,"UnitPrice":"0.99"} +{"TrackId":2439,"Name":"You've Got It","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall and Lamont Dozier","Milliseconds":235232,"Bytes":7712845,"UnitPrice":"0.99"} +{"TrackId":2440,"Name":"If You Don't Know Me By Now","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Kenny Gamble and Leon Huff","Milliseconds":206524,"Bytes":6712634,"UnitPrice":"0.99"} +{"TrackId":2441,"Name":"Stars","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":248137,"Bytes":8194906,"UnitPrice":"0.99"} +{"TrackId":2442,"Name":"Something Got Me Started","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall and Fritz McIntyre","Milliseconds":239595,"Bytes":7997139,"UnitPrice":"0.99"} +{"TrackId":2443,"Name":"Thrill Me","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall and Fritz McIntyre","Milliseconds":303934,"Bytes":10034711,"UnitPrice":"0.99"} +{"TrackId":2444,"Name":"Your Mirror","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":240666,"Bytes":7893821,"UnitPrice":"0.99"} +{"TrackId":2445,"Name":"For Your Babies","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":256992,"Bytes":8408803,"UnitPrice":"0.99"} +{"TrackId":2446,"Name":"So Beautiful","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":298083,"Bytes":9837832,"UnitPrice":"0.99"} +{"TrackId":2447,"Name":"Angel","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Carolyn Franklin and Sonny Saunders","Milliseconds":240561,"Bytes":7880256,"UnitPrice":"0.99"} +{"TrackId":2448,"Name":"Fairground","AlbumId":141,"MediaTypeId":1,"GenreId":1,"Composer":"Mick Hucknall","Milliseconds":263888,"Bytes":8793094,"UnitPrice":"0.99"} +{"TrackId":2612,"Name":"Take The Power","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":235755,"Bytes":7650012,"UnitPrice":"0.99"} +{"TrackId":2449,"Name":"Água E Fogo","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Edgard Scandurra/Samuel Rosa","Milliseconds":278987,"Bytes":9272272,"UnitPrice":"0.99"} +{"TrackId":2450,"Name":"Tręs Lados","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":233665,"Bytes":7699609,"UnitPrice":"0.99"} +{"TrackId":2451,"Name":"Ela Desapareceu","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":250122,"Bytes":8289200,"UnitPrice":"0.99"} +{"TrackId":2452,"Name":"Balada Do Amor Inabalável","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Fausto Fawcett/Samuel Rosa","Milliseconds":240613,"Bytes":8025816,"UnitPrice":"0.99"} +{"TrackId":2453,"Name":"Cançăo Noturna","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Lelo Zanettik","Milliseconds":238628,"Bytes":7874774,"UnitPrice":"0.99"} +{"TrackId":2454,"Name":"Muçulmano","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Leăo, Rodrigo F./Samuel Rosa","Milliseconds":249600,"Bytes":8270613,"UnitPrice":"0.99"} +{"TrackId":2455,"Name":"Maquinarama","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":245629,"Bytes":8213710,"UnitPrice":"0.99"} +{"TrackId":2456,"Name":"Rebeliăo","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":298527,"Bytes":9817847,"UnitPrice":"0.99"} +{"TrackId":2457,"Name":"A Última Guerra","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Leăo, Rodrigo F./Lô Borges/Samuel Rosa","Milliseconds":314723,"Bytes":10480391,"UnitPrice":"0.99"} +{"TrackId":2458,"Name":"Fica","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":272169,"Bytes":8980972,"UnitPrice":"0.99"} +{"TrackId":2459,"Name":"Ali","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Nando Reis/Samuel Rosa","Milliseconds":306390,"Bytes":10110351,"UnitPrice":"0.99"} +{"TrackId":2460,"Name":"Preto Damiăo","AlbumId":199,"MediaTypeId":1,"GenreId":1,"Composer":"Chico Amaral/Samuel Rosa","Milliseconds":264568,"Bytes":8697658,"UnitPrice":"0.99"} +{"TrackId":2461,"Name":"É Uma Partida De Futebol","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":1071,"Bytes":38747,"UnitPrice":"0.99"} +{"TrackId":2462,"Name":"Eu Disse A Ela","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":254223,"Bytes":8479463,"UnitPrice":"0.99"} +{"TrackId":2463,"Name":"Zé Trindade","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":247954,"Bytes":8331310,"UnitPrice":"0.99"} +{"TrackId":2464,"Name":"Garota Nacional","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":317492,"Bytes":10511239,"UnitPrice":"0.99"} +{"TrackId":2465,"Name":"Tăo Seu","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":243748,"Bytes":8133126,"UnitPrice":"0.99"} +{"TrackId":2466,"Name":"Sem Terra","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":279353,"Bytes":9196411,"UnitPrice":"0.99"} +{"TrackId":2467,"Name":"Os Exilados","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":245551,"Bytes":8222095,"UnitPrice":"0.99"} +{"TrackId":2468,"Name":"Um Dia Qualquer","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":292414,"Bytes":9805570,"UnitPrice":"0.99"} +{"TrackId":2469,"Name":"Los Pretos","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":239229,"Bytes":8025667,"UnitPrice":"0.99"} +{"TrackId":2470,"Name":"Sul Da América","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":254928,"Bytes":8484871,"UnitPrice":"0.99"} +{"TrackId":2471,"Name":"Poconé","AlbumId":200,"MediaTypeId":1,"GenreId":1,"Composer":"Samuel Rosa","Milliseconds":318406,"Bytes":10771610,"UnitPrice":"0.99"} +{"TrackId":2472,"Name":"Lucky 13","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":189387,"Bytes":6200617,"UnitPrice":"0.99"} +{"TrackId":2473,"Name":"Aeroplane Flies High","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":473391,"Bytes":15408329,"UnitPrice":"0.99"} +{"TrackId":2474,"Name":"Because You Are","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":226403,"Bytes":7405137,"UnitPrice":"0.99"} +{"TrackId":2475,"Name":"Slow Dawn","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":192339,"Bytes":6269057,"UnitPrice":"0.99"} +{"TrackId":2476,"Name":"Believe","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"James Iha","Milliseconds":192940,"Bytes":6320652,"UnitPrice":"0.99"} +{"TrackId":2477,"Name":"My Mistake","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":240901,"Bytes":7843477,"UnitPrice":"0.99"} +{"TrackId":2478,"Name":"Marquis In Spades","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":192731,"Bytes":6304789,"UnitPrice":"0.99"} +{"TrackId":2479,"Name":"Here's To The Atom Bomb","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":266893,"Bytes":8763140,"UnitPrice":"0.99"} +{"TrackId":2480,"Name":"Sparrow","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":176822,"Bytes":5696989,"UnitPrice":"0.99"} +{"TrackId":2481,"Name":"Waiting","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":228336,"Bytes":7627641,"UnitPrice":"0.99"} +{"TrackId":2482,"Name":"Saturnine","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":229877,"Bytes":7523502,"UnitPrice":"0.99"} +{"TrackId":2483,"Name":"Rock On","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"David Cook","Milliseconds":366471,"Bytes":12133825,"UnitPrice":"0.99"} +{"TrackId":2484,"Name":"Set The Ray To Jerry","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":249364,"Bytes":8215184,"UnitPrice":"0.99"} +{"TrackId":2485,"Name":"Winterlong","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":299389,"Bytes":9670616,"UnitPrice":"0.99"} +{"TrackId":2486,"Name":"Soot & Stars","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":399986,"Bytes":12866557,"UnitPrice":"0.99"} +{"TrackId":2487,"Name":"Blissed & Gone","AlbumId":201,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":286302,"Bytes":9305998,"UnitPrice":"0.99"} +{"TrackId":2488,"Name":"Siva","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":261172,"Bytes":8576622,"UnitPrice":"0.99"} +{"TrackId":2489,"Name":"Rhinocerous","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":353462,"Bytes":11526684,"UnitPrice":"0.99"} +{"TrackId":2490,"Name":"Drown","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":270497,"Bytes":8883496,"UnitPrice":"0.99"} +{"TrackId":2491,"Name":"Cherub Rock","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":299389,"Bytes":9786739,"UnitPrice":"0.99"} +{"TrackId":2492,"Name":"Today","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":202213,"Bytes":6596933,"UnitPrice":"0.99"} +{"TrackId":2493,"Name":"Disarm","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":198556,"Bytes":6508249,"UnitPrice":"0.99"} +{"TrackId":2494,"Name":"Landslide","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Stevie Nicks","Milliseconds":190275,"Bytes":6187754,"UnitPrice":"0.99"} +{"TrackId":2495,"Name":"Bullet With Butterfly Wings","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":257306,"Bytes":8431747,"UnitPrice":"0.99"} +{"TrackId":2496,"Name":"1979","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":263653,"Bytes":8728470,"UnitPrice":"0.99"} +{"TrackId":2497,"Name":"Zero","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":161123,"Bytes":5267176,"UnitPrice":"0.99"} +{"TrackId":2498,"Name":"Tonight, Tonight","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":255686,"Bytes":8351543,"UnitPrice":"0.99"} +{"TrackId":2499,"Name":"Eye","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":294530,"Bytes":9784201,"UnitPrice":"0.99"} +{"TrackId":2500,"Name":"Ava Adore","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":261433,"Bytes":8590412,"UnitPrice":"0.99"} +{"TrackId":2501,"Name":"Perfect","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":203023,"Bytes":6734636,"UnitPrice":"0.99"} +{"TrackId":2502,"Name":"The Everlasting Gaze","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":242155,"Bytes":7844404,"UnitPrice":"0.99"} +{"TrackId":2503,"Name":"Stand Inside Your Love","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":253753,"Bytes":8270113,"UnitPrice":"0.99"} +{"TrackId":2504,"Name":"Real Love","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":250697,"Bytes":8025896,"UnitPrice":"0.99"} +{"TrackId":2505,"Name":"[Untitled]","AlbumId":202,"MediaTypeId":1,"GenreId":4,"Composer":"Billy Corgan","Milliseconds":231784,"Bytes":7689713,"UnitPrice":"0.99"} +{"TrackId":2506,"Name":"Nothing To Say","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell/Kim Thayil","Milliseconds":238027,"Bytes":7744833,"UnitPrice":"0.99"} +{"TrackId":2507,"Name":"Flower","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell/Kim Thayil","Milliseconds":208822,"Bytes":6830732,"UnitPrice":"0.99"} +{"TrackId":2508,"Name":"Loud Love","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":297456,"Bytes":9660953,"UnitPrice":"0.99"} +{"TrackId":2509,"Name":"Hands All Over","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell/Kim Thayil","Milliseconds":362475,"Bytes":11893108,"UnitPrice":"0.99"} +{"TrackId":2510,"Name":"Get On The Snake","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell/Kim Thayil","Milliseconds":225123,"Bytes":7313744,"UnitPrice":"0.99"} +{"TrackId":2511,"Name":"Jesus Christ Pose","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron","Milliseconds":352966,"Bytes":11739886,"UnitPrice":"0.99"} +{"TrackId":2512,"Name":"Outshined","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":312476,"Bytes":10274629,"UnitPrice":"0.99"} +{"TrackId":2513,"Name":"Rusty Cage","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":267728,"Bytes":8779485,"UnitPrice":"0.99"} +{"TrackId":2514,"Name":"Spoonman","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":248476,"Bytes":8289906,"UnitPrice":"0.99"} +{"TrackId":2515,"Name":"The Day I Tried To Live","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":321175,"Bytes":10507137,"UnitPrice":"0.99"} +{"TrackId":2516,"Name":"Black Hole Sun","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Soundgarden","Milliseconds":320365,"Bytes":10425229,"UnitPrice":"0.99"} +{"TrackId":2517,"Name":"Fell On Black Days","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":282331,"Bytes":9256082,"UnitPrice":"0.99"} +{"TrackId":2518,"Name":"Pretty Noose","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":253570,"Bytes":8317931,"UnitPrice":"0.99"} +{"TrackId":2519,"Name":"Burden In My Hand","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":292153,"Bytes":9659911,"UnitPrice":"0.99"} +{"TrackId":2520,"Name":"Blow Up The Outside World","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":347898,"Bytes":11379527,"UnitPrice":"0.99"} +{"TrackId":2521,"Name":"Ty Cobb","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Ben Shepherd/Chris Cornell","Milliseconds":188786,"Bytes":6233136,"UnitPrice":"0.99"} +{"TrackId":2522,"Name":"Bleed Together","AlbumId":203,"MediaTypeId":1,"GenreId":1,"Composer":"Chris Cornell","Milliseconds":232202,"Bytes":7597074,"UnitPrice":"0.99"} +{"TrackId":2523,"Name":"Morning Dance","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jay Beckenstein","Milliseconds":238759,"Bytes":8101979,"UnitPrice":"0.99"} +{"TrackId":2524,"Name":"Jubilee","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jeremy Wall","Milliseconds":275147,"Bytes":9151846,"UnitPrice":"0.99"} +{"TrackId":2525,"Name":"Rasul","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jeremy Wall","Milliseconds":238315,"Bytes":7854737,"UnitPrice":"0.99"} +{"TrackId":2526,"Name":"Song For Lorraine","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jay Beckenstein","Milliseconds":240091,"Bytes":8101723,"UnitPrice":"0.99"} +{"TrackId":2527,"Name":"Starburst","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jeremy Wall","Milliseconds":291500,"Bytes":9768399,"UnitPrice":"0.99"} +{"TrackId":2528,"Name":"Heliopolis","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jay Beckenstein","Milliseconds":338729,"Bytes":11365655,"UnitPrice":"0.99"} +{"TrackId":2529,"Name":"It Doesn't Matter","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Chet Catallo","Milliseconds":270027,"Bytes":9034177,"UnitPrice":"0.99"} +{"TrackId":2530,"Name":"Little Linda","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Jeremy Wall","Milliseconds":264019,"Bytes":8958743,"UnitPrice":"0.99"} +{"TrackId":2531,"Name":"End Of Romanticism","AlbumId":204,"MediaTypeId":1,"GenreId":2,"Composer":"Rick Strauss","Milliseconds":320078,"Bytes":10553155,"UnitPrice":"0.99"} +{"TrackId":2532,"Name":"The House Is Rockin'","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Doyle Bramhall/Stevie Ray Vaughan","Milliseconds":144352,"Bytes":4706253,"UnitPrice":"0.99"} +{"TrackId":2533,"Name":"Crossfire","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon","Milliseconds":251219,"Bytes":8238033,"UnitPrice":"0.99"} +{"TrackId":2534,"Name":"Tightrope","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Doyle Bramhall/Stevie Ray Vaughan","Milliseconds":281155,"Bytes":9254906,"UnitPrice":"0.99"} +{"TrackId":2535,"Name":"Let Me Love You Baby","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Willie Dixon","Milliseconds":164127,"Bytes":5378455,"UnitPrice":"0.99"} +{"TrackId":2536,"Name":"Leave My Girl Alone","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"B. Guy","Milliseconds":256365,"Bytes":8438021,"UnitPrice":"0.99"} +{"TrackId":2537,"Name":"Travis Walk","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Stevie Ray Vaughan","Milliseconds":140826,"Bytes":4650979,"UnitPrice":"0.99"} +{"TrackId":2538,"Name":"Wall Of Denial","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Doyle Bramhall/Stevie Ray Vaughan","Milliseconds":336927,"Bytes":11085915,"UnitPrice":"0.99"} +{"TrackId":2539,"Name":"Scratch-N-Sniff","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Doyle Bramhall/Stevie Ray Vaughan","Milliseconds":163422,"Bytes":5353627,"UnitPrice":"0.99"} +{"TrackId":2540,"Name":"Love Me Darlin'","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"C. Burnett","Milliseconds":201586,"Bytes":6650869,"UnitPrice":"0.99"} +{"TrackId":2541,"Name":"Riviera Paradise","AlbumId":205,"MediaTypeId":1,"GenreId":6,"Composer":"Stevie Ray Vaughan","Milliseconds":528692,"Bytes":17232776,"UnitPrice":"0.99"} +{"TrackId":2542,"Name":"Dead And Bloated","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":310386,"Bytes":10170433,"UnitPrice":"0.99"} +{"TrackId":2543,"Name":"Sex Type Thing","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"D. DeLeo/Kretz/Weiland","Milliseconds":218723,"Bytes":7102064,"UnitPrice":"0.99"} +{"TrackId":2544,"Name":"Wicked Garden","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"D. DeLeo/R. DeLeo/Weiland","Milliseconds":245368,"Bytes":7989505,"UnitPrice":"0.99"} +{"TrackId":2545,"Name":"No Memory","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"Dean Deleo","Milliseconds":80613,"Bytes":2660859,"UnitPrice":"0.99"} +{"TrackId":2546,"Name":"Sin","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":364800,"Bytes":12018823,"UnitPrice":"0.99"} +{"TrackId":2547,"Name":"Naked Sunday","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"D. DeLeo/Kretz/R. DeLeo/Weiland","Milliseconds":229720,"Bytes":7444201,"UnitPrice":"0.99"} +{"TrackId":2548,"Name":"Creep","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":333191,"Bytes":10894988,"UnitPrice":"0.99"} +{"TrackId":2549,"Name":"Piece Of Pie","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":324623,"Bytes":10605231,"UnitPrice":"0.99"} +{"TrackId":2550,"Name":"Plush","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":314017,"Bytes":10229848,"UnitPrice":"0.99"} +{"TrackId":2551,"Name":"Wet My Bed","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"R. DeLeo/Weiland","Milliseconds":96914,"Bytes":3198627,"UnitPrice":"0.99"} +{"TrackId":2552,"Name":"Crackerman","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"Kretz/R. DeLeo/Weiland","Milliseconds":194403,"Bytes":6317361,"UnitPrice":"0.99"} +{"TrackId":2553,"Name":"Where The River Goes","AlbumId":206,"MediaTypeId":1,"GenreId":1,"Composer":"D. DeLeo/Kretz/Weiland","Milliseconds":505991,"Bytes":16468904,"UnitPrice":"0.99"} +{"TrackId":2554,"Name":"Soldier Side - Intro","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Dolmayan, John/Malakian, Daron/Odadjian, Shavo","Milliseconds":63764,"Bytes":2056079,"UnitPrice":"0.99"} +{"TrackId":2555,"Name":"B.Y.O.B.","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":255555,"Bytes":8407935,"UnitPrice":"0.99"} +{"TrackId":2556,"Name":"Revenga","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":228127,"Bytes":7503805,"UnitPrice":"0.99"} +{"TrackId":2557,"Name":"Cigaro","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":131787,"Bytes":4321705,"UnitPrice":"0.99"} +{"TrackId":2558,"Name":"Radio/Video","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Dolmayan, John/Malakian, Daron/Odadjian, Shavo","Milliseconds":249312,"Bytes":8224917,"UnitPrice":"0.99"} +{"TrackId":2559,"Name":"This Cocaine Makes Me Feel Like I'm On This Song","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":128339,"Bytes":4185193,"UnitPrice":"0.99"} +{"TrackId":2560,"Name":"Violent Pornography","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Dolmayan, John/Malakian, Daron/Odadjian, Shavo","Milliseconds":211435,"Bytes":6985960,"UnitPrice":"0.99"} +{"TrackId":2561,"Name":"Question!","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":200698,"Bytes":6616398,"UnitPrice":"0.99"} +{"TrackId":2562,"Name":"Sad Statue","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":205897,"Bytes":6733449,"UnitPrice":"0.99"} +{"TrackId":2563,"Name":"Old School Hollywood","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Dolmayan, John/Malakian, Daron/Odadjian, Shavo","Milliseconds":176953,"Bytes":5830258,"UnitPrice":"0.99"} +{"TrackId":2564,"Name":"Lost in Hollywood","AlbumId":207,"MediaTypeId":1,"GenreId":3,"Composer":"Tankian, Serj","Milliseconds":320783,"Bytes":10535158,"UnitPrice":"0.99"} +{"TrackId":2565,"Name":"The Sun Road","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":880640,"Bytes":29008407,"UnitPrice":"0.99"} +{"TrackId":2566,"Name":"Dark Corners","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":513541,"Bytes":16839223,"UnitPrice":"0.99"} +{"TrackId":2567,"Name":"Duende","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":447582,"Bytes":14956771,"UnitPrice":"0.99"} +{"TrackId":2568,"Name":"Black Light Syndrome","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":526471,"Bytes":17300835,"UnitPrice":"0.99"} +{"TrackId":2569,"Name":"Falling in Circles","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":549093,"Bytes":18263248,"UnitPrice":"0.99"} +{"TrackId":2570,"Name":"Book of Hours","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":583366,"Bytes":19464726,"UnitPrice":"0.99"} +{"TrackId":2571,"Name":"Chaos-Control","AlbumId":208,"MediaTypeId":1,"GenreId":1,"Composer":"Terry Bozzio, Steve Stevens, Tony Levin","Milliseconds":529841,"Bytes":17455568,"UnitPrice":"0.99"} +{"TrackId":2572,"Name":"Midnight From The Inside Out","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":286981,"Bytes":9442157,"UnitPrice":"0.99"} +{"TrackId":2573,"Name":"Sting Me","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":268094,"Bytes":8813561,"UnitPrice":"0.99"} +{"TrackId":2574,"Name":"Thick & Thin","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":222720,"Bytes":7284377,"UnitPrice":"0.99"} +{"TrackId":2575,"Name":"Greasy Grass River","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":218749,"Bytes":7157045,"UnitPrice":"0.99"} +{"TrackId":2576,"Name":"Sometimes Salvation","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":389146,"Bytes":12749424,"UnitPrice":"0.99"} +{"TrackId":2577,"Name":"Cursed Diamonds","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":368300,"Bytes":12047978,"UnitPrice":"0.99"} +{"TrackId":2578,"Name":"Miracle To Me","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":372636,"Bytes":12222116,"UnitPrice":"0.99"} +{"TrackId":2579,"Name":"Wiser Time","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":459990,"Bytes":15161907,"UnitPrice":"0.99"} +{"TrackId":2580,"Name":"Girl From A Pawnshop","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":404688,"Bytes":13250848,"UnitPrice":"0.99"} +{"TrackId":2581,"Name":"Cosmic Fiend","AlbumId":209,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":308401,"Bytes":10115556,"UnitPrice":"0.99"} +{"TrackId":2582,"Name":"Black Moon Creeping","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":359314,"Bytes":11740886,"UnitPrice":"0.99"} +{"TrackId":2583,"Name":"High Head Blues","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":371879,"Bytes":12227998,"UnitPrice":"0.99"} +{"TrackId":2584,"Name":"Title Song","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":505521,"Bytes":16501316,"UnitPrice":"0.99"} +{"TrackId":2585,"Name":"She Talks To Angels","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":361978,"Bytes":11837342,"UnitPrice":"0.99"} +{"TrackId":2586,"Name":"Twice As Hard","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":275565,"Bytes":9008067,"UnitPrice":"0.99"} +{"TrackId":2587,"Name":"Lickin'","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":314409,"Bytes":10331216,"UnitPrice":"0.99"} +{"TrackId":2588,"Name":"Soul Singing","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":233639,"Bytes":7672489,"UnitPrice":"0.99"} +{"TrackId":2589,"Name":"Hard To Handle","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"A.Isbell/A.Jones/O.Redding","Milliseconds":206994,"Bytes":6786304,"UnitPrice":"0.99"} +{"TrackId":2590,"Name":"Remedy","AlbumId":210,"MediaTypeId":1,"GenreId":6,"Composer":"Chris Robinson/Rich Robinson","Milliseconds":337084,"Bytes":11049098,"UnitPrice":"0.99"} +{"TrackId":2591,"Name":"White Riot","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":118726,"Bytes":3922819,"UnitPrice":"0.99"} +{"TrackId":2592,"Name":"Remote Control","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":180297,"Bytes":5949647,"UnitPrice":"0.99"} +{"TrackId":2593,"Name":"Complete Control","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":192653,"Bytes":6272081,"UnitPrice":"0.99"} +{"TrackId":2594,"Name":"Clash City Rockers","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":227500,"Bytes":7555054,"UnitPrice":"0.99"} +{"TrackId":2595,"Name":"(White Man) In Hammersmith Palais","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":240640,"Bytes":7883532,"UnitPrice":"0.99"} +{"TrackId":2596,"Name":"Tommy Gun","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":195526,"Bytes":6399872,"UnitPrice":"0.99"} +{"TrackId":2597,"Name":"English Civil War","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Mick Jones/Traditional arr. Joe Strummer","Milliseconds":156708,"Bytes":5111226,"UnitPrice":"0.99"} +{"TrackId":2598,"Name":"I Fought The Law","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Sonny Curtis","Milliseconds":159764,"Bytes":5245258,"UnitPrice":"0.99"} +{"TrackId":2599,"Name":"London Calling","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":199706,"Bytes":6569007,"UnitPrice":"0.99"} +{"TrackId":2600,"Name":"Train In Vain","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":189675,"Bytes":6329877,"UnitPrice":"0.99"} +{"TrackId":2601,"Name":"Bankrobber","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"Joe Strummer/Mick Jones","Milliseconds":272431,"Bytes":9067323,"UnitPrice":"0.99"} +{"TrackId":2602,"Name":"The Call Up","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":324336,"Bytes":10746937,"UnitPrice":"0.99"} +{"TrackId":2603,"Name":"Hitsville UK","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":261433,"Bytes":8606887,"UnitPrice":"0.99"} +{"TrackId":2604,"Name":"The Magnificent Seven","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":268486,"Bytes":8889821,"UnitPrice":"0.99"} +{"TrackId":2605,"Name":"This Is Radio Clash","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":249756,"Bytes":8366573,"UnitPrice":"0.99"} +{"TrackId":2606,"Name":"Know Your Rights","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":217678,"Bytes":7195726,"UnitPrice":"0.99"} +{"TrackId":2607,"Name":"Rock The Casbah","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":222145,"Bytes":7361500,"UnitPrice":"0.99"} +{"TrackId":2608,"Name":"Should I Stay Or Should I Go","AlbumId":211,"MediaTypeId":1,"GenreId":4,"Composer":"The Clash","Milliseconds":187219,"Bytes":6188688,"UnitPrice":"0.99"} +{"TrackId":2609,"Name":"War (The Process)","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":252630,"Bytes":8254842,"UnitPrice":"0.99"} +{"TrackId":2610,"Name":"The Saint","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":216215,"Bytes":7061584,"UnitPrice":"0.99"} +{"TrackId":2613,"Name":"Breathe","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones","Milliseconds":299781,"Bytes":9742361,"UnitPrice":"0.99"} +{"TrackId":2614,"Name":"Nico","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":289488,"Bytes":9412323,"UnitPrice":"0.99"} +{"TrackId":2615,"Name":"American Gothic","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":236878,"Bytes":7739840,"UnitPrice":"0.99"} +{"TrackId":2616,"Name":"Ashes And Ghosts","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Bob Rock/Ian Astbury","Milliseconds":300591,"Bytes":9787692,"UnitPrice":"0.99"} +{"TrackId":2617,"Name":"Shape The Sky","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":209789,"Bytes":6885647,"UnitPrice":"0.99"} +{"TrackId":2618,"Name":"Speed Of Light","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Bob Rock/Ian Astbury","Milliseconds":262817,"Bytes":8563352,"UnitPrice":"0.99"} +{"TrackId":2619,"Name":"True Believers","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":308009,"Bytes":9981359,"UnitPrice":"0.99"} +{"TrackId":2620,"Name":"My Bridges Burn","AlbumId":212,"MediaTypeId":1,"GenreId":1,"Composer":"Billy Duffy/Ian Astbury","Milliseconds":231862,"Bytes":7571370,"UnitPrice":"0.99"} +{"TrackId":2621,"Name":"She Sells Sanctuary","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":253727,"Bytes":8368634,"UnitPrice":"0.99"} +{"TrackId":2622,"Name":"Fire Woman","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":312790,"Bytes":10196995,"UnitPrice":"0.99"} +{"TrackId":2623,"Name":"Lil' Evil","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":165825,"Bytes":5419655,"UnitPrice":"0.99"} +{"TrackId":2624,"Name":"Spirit Walker","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":230060,"Bytes":7555897,"UnitPrice":"0.99"} +{"TrackId":2625,"Name":"The Witch","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":258768,"Bytes":8725403,"UnitPrice":"0.99"} +{"TrackId":2626,"Name":"Revolution","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":256026,"Bytes":8371254,"UnitPrice":"0.99"} +{"TrackId":2627,"Name":"Wild Hearted Son","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":266893,"Bytes":8670550,"UnitPrice":"0.99"} +{"TrackId":2628,"Name":"Love Removal Machine","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":257619,"Bytes":8412167,"UnitPrice":"0.99"} +{"TrackId":2629,"Name":"Rain","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":236669,"Bytes":7788461,"UnitPrice":"0.99"} +{"TrackId":2630,"Name":"Edie (Ciao Baby)","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":241632,"Bytes":7846177,"UnitPrice":"0.99"} +{"TrackId":2631,"Name":"Heart Of Soul","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":274207,"Bytes":8967257,"UnitPrice":"0.99"} +{"TrackId":2632,"Name":"Love","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":326739,"Bytes":10729824,"UnitPrice":"0.99"} +{"TrackId":2633,"Name":"Wild Flower","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":215536,"Bytes":7084321,"UnitPrice":"0.99"} +{"TrackId":2634,"Name":"Go West","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":238158,"Bytes":7777749,"UnitPrice":"0.99"} +{"TrackId":2635,"Name":"Resurrection Joe","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":255451,"Bytes":8532840,"UnitPrice":"0.99"} +{"TrackId":2636,"Name":"Sun King","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":368431,"Bytes":12010865,"UnitPrice":"0.99"} +{"TrackId":2637,"Name":"Sweet Soul Sister","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":212009,"Bytes":6889883,"UnitPrice":"0.99"} +{"TrackId":2638,"Name":"Earth Mofo","AlbumId":213,"MediaTypeId":1,"GenreId":1,"Composer":null,"Milliseconds":282200,"Bytes":9204581,"UnitPrice":"0.99"} +{"TrackId":2639,"Name":"Break on Through","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":149342,"Bytes":4943144,"UnitPrice":"0.99"} +{"TrackId":2640,"Name":"Soul Kitchen","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":215066,"Bytes":7040865,"UnitPrice":"0.99"} +{"TrackId":2641,"Name":"The Crystal Ship","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":154853,"Bytes":5052658,"UnitPrice":"0.99"} +{"TrackId":2642,"Name":"Twentienth Century Fox","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":153913,"Bytes":5069211,"UnitPrice":"0.99"} +{"TrackId":2643,"Name":"Alabama Song","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Weill-Brecht","Milliseconds":200097,"Bytes":6563411,"UnitPrice":"0.99"} +{"TrackId":2644,"Name":"Light My Fire","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":428329,"Bytes":13963351,"UnitPrice":"0.99"} +{"TrackId":2645,"Name":"Back Door Man","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Willie Dixon, C. Burnett","Milliseconds":214360,"Bytes":7035636,"UnitPrice":"0.99"} +{"TrackId":2646,"Name":"I Looked At You","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":142080,"Bytes":4663988,"UnitPrice":"0.99"} +{"TrackId":2647,"Name":"End Of The Night","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":172695,"Bytes":5589732,"UnitPrice":"0.99"} +{"TrackId":2648,"Name":"Take It As It Comes","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":137168,"Bytes":4512656,"UnitPrice":"0.99"} +{"TrackId":2649,"Name":"The End","AlbumId":214,"MediaTypeId":1,"GenreId":1,"Composer":"Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison","Milliseconds":701831,"Bytes":22927336,"UnitPrice":"0.99"} +{"TrackId":2650,"Name":"Roxanne","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":192992,"Bytes":6330159,"UnitPrice":"0.99"} +{"TrackId":2651,"Name":"Can't Stand Losing You","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":181159,"Bytes":5971983,"UnitPrice":"0.99"} +{"TrackId":2652,"Name":"Message in a Bottle","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":291474,"Bytes":9647829,"UnitPrice":"0.99"} +{"TrackId":2653,"Name":"Walking on the Moon","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":302080,"Bytes":10019861,"UnitPrice":"0.99"} +{"TrackId":2654,"Name":"Don't Stand so Close to Me","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":241031,"Bytes":7956658,"UnitPrice":"0.99"} +{"TrackId":2655,"Name":"De Do Do Do, De Da Da Da","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":247196,"Bytes":8227075,"UnitPrice":"0.99"} +{"TrackId":2656,"Name":"Every Little Thing She Does is Magic","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":261120,"Bytes":8646853,"UnitPrice":"0.99"} +{"TrackId":2657,"Name":"Invisible Sun","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":225593,"Bytes":7304320,"UnitPrice":"0.99"} +{"TrackId":2658,"Name":"Spirit's in the Material World","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":181133,"Bytes":5986622,"UnitPrice":"0.99"} +{"TrackId":2659,"Name":"Every Breath You Take","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":254615,"Bytes":8364520,"UnitPrice":"0.99"} +{"TrackId":2660,"Name":"King Of Pain","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":300512,"Bytes":9880303,"UnitPrice":"0.99"} +{"TrackId":2661,"Name":"Wrapped Around Your Finger","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":315454,"Bytes":10361490,"UnitPrice":"0.99"} +{"TrackId":2662,"Name":"Don't Stand So Close to Me '86","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":293590,"Bytes":9636683,"UnitPrice":"0.99"} +{"TrackId":2663,"Name":"Message in a Bottle (new classic rock mix)","AlbumId":215,"MediaTypeId":1,"GenreId":1,"Composer":"G M Sumner","Milliseconds":290951,"Bytes":9640349,"UnitPrice":"0.99"} +{"TrackId":2664,"Name":"Time Is On My Side","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jerry Ragavoy","Milliseconds":179983,"Bytes":5855836,"UnitPrice":"0.99"} +{"TrackId":2665,"Name":"Heart Of Stone","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":164493,"Bytes":5329538,"UnitPrice":"0.99"} +{"TrackId":2666,"Name":"Play With Fire","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Nanker Phelge","Milliseconds":132022,"Bytes":4265297,"UnitPrice":"0.99"} +{"TrackId":2667,"Name":"Satisfaction","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":226612,"Bytes":7398766,"UnitPrice":"0.99"} +{"TrackId":2668,"Name":"As Tears Go By","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards/Oldham","Milliseconds":164284,"Bytes":5357350,"UnitPrice":"0.99"} +{"TrackId":2669,"Name":"Get Off Of My Cloud","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":176013,"Bytes":5719514,"UnitPrice":"0.99"} +{"TrackId":2670,"Name":"Mother's Little Helper","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":167549,"Bytes":5422434,"UnitPrice":"0.99"} +{"TrackId":2671,"Name":"19th Nervous Breakdown","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":237923,"Bytes":7742984,"UnitPrice":"0.99"} +{"TrackId":2672,"Name":"Paint It Black","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":226063,"Bytes":7442888,"UnitPrice":"0.99"} +{"TrackId":2673,"Name":"Under My Thumb","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":221387,"Bytes":7371799,"UnitPrice":"0.99"} +{"TrackId":2674,"Name":"Ruby Tuesday","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":197459,"Bytes":6433467,"UnitPrice":"0.99"} +{"TrackId":2675,"Name":"Let's Spend The Night Together","AlbumId":216,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":217495,"Bytes":7137048,"UnitPrice":"0.99"} +{"TrackId":2676,"Name":"Intro","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":49737,"Bytes":1618591,"UnitPrice":"0.99"} +{"TrackId":2677,"Name":"You Got Me Rocking","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":205766,"Bytes":6734385,"UnitPrice":"0.99"} +{"TrackId":2678,"Name":"Gimmie Shelters","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":382119,"Bytes":12528764,"UnitPrice":"0.99"} +{"TrackId":2679,"Name":"Flip The Switch","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":252421,"Bytes":8336591,"UnitPrice":"0.99"} +{"TrackId":2680,"Name":"Memory Motel","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":365844,"Bytes":11982431,"UnitPrice":"0.99"} +{"TrackId":2681,"Name":"Corinna","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jesse Ed Davis III/Taj Mahal","Milliseconds":257488,"Bytes":8449471,"UnitPrice":"0.99"} +{"TrackId":2682,"Name":"Saint Of Me","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":325694,"Bytes":10725160,"UnitPrice":"0.99"} +{"TrackId":2683,"Name":"Wainting On A Friend","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":302497,"Bytes":9978046,"UnitPrice":"0.99"} +{"TrackId":2684,"Name":"Sister Morphine","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Faithfull/Jagger/Richards","Milliseconds":376215,"Bytes":12345289,"UnitPrice":"0.99"} +{"TrackId":2685,"Name":"Live With Me","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":234893,"Bytes":7709006,"UnitPrice":"0.99"} +{"TrackId":2686,"Name":"Respectable","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":215693,"Bytes":7099669,"UnitPrice":"0.99"} +{"TrackId":2687,"Name":"Thief In The Night","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"De Beauport/Jagger/Richards","Milliseconds":337266,"Bytes":10952756,"UnitPrice":"0.99"} +{"TrackId":2688,"Name":"The Last Time","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":287294,"Bytes":9498758,"UnitPrice":"0.99"} +{"TrackId":2689,"Name":"Out Of Control","AlbumId":217,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":479242,"Bytes":15749289,"UnitPrice":"0.99"} +{"TrackId":2690,"Name":"Love Is Strong","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":230896,"Bytes":7639774,"UnitPrice":"0.99"} +{"TrackId":2691,"Name":"You Got Me Rocking","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":215928,"Bytes":7162159,"UnitPrice":"0.99"} +{"TrackId":2692,"Name":"Sparks Will Fly","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":196466,"Bytes":6492847,"UnitPrice":"0.99"} +{"TrackId":2693,"Name":"The Worst","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":144613,"Bytes":4750094,"UnitPrice":"0.99"} +{"TrackId":2694,"Name":"New Faces","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":172146,"Bytes":5689122,"UnitPrice":"0.99"} +{"TrackId":2695,"Name":"Moon Is Up","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":222119,"Bytes":7366316,"UnitPrice":"0.99"} +{"TrackId":2696,"Name":"Out Of Tears","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":327418,"Bytes":10677236,"UnitPrice":"0.99"} +{"TrackId":2697,"Name":"I Go Wild","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":264019,"Bytes":8630833,"UnitPrice":"0.99"} +{"TrackId":2698,"Name":"Brand New Car","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":256052,"Bytes":8459344,"UnitPrice":"0.99"} +{"TrackId":2699,"Name":"Sweethearts Together","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":285492,"Bytes":9550459,"UnitPrice":"0.99"} +{"TrackId":2700,"Name":"Suck On The Jugular","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":268225,"Bytes":8920566,"UnitPrice":"0.99"} +{"TrackId":2701,"Name":"Blinded By Rainbows","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":273946,"Bytes":8971343,"UnitPrice":"0.99"} +{"TrackId":2702,"Name":"Baby Break It Down","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":249417,"Bytes":8197309,"UnitPrice":"0.99"} +{"TrackId":2703,"Name":"Thru And Thru","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":375092,"Bytes":12175406,"UnitPrice":"0.99"} +{"TrackId":2704,"Name":"Mean Disposition","AlbumId":218,"MediaTypeId":1,"GenreId":1,"Composer":"Jagger/Richards","Milliseconds":249155,"Bytes":8273602,"UnitPrice":"0.99"} +{"TrackId":2705,"Name":"Walking Wounded","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":277968,"Bytes":9184345,"UnitPrice":"0.99"} +{"TrackId":2706,"Name":"Temptation","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":205087,"Bytes":6711943,"UnitPrice":"0.99"} +{"TrackId":2707,"Name":"The Messenger","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"Daniel Lanois","Milliseconds":212062,"Bytes":6975437,"UnitPrice":"0.99"} +{"TrackId":2708,"Name":"Psychopomp","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":315559,"Bytes":10295199,"UnitPrice":"0.99"} +{"TrackId":2709,"Name":"Sister Awake","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":343875,"Bytes":11299407,"UnitPrice":"0.99"} +{"TrackId":2710,"Name":"The Bazaar","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":222458,"Bytes":7245691,"UnitPrice":"0.99"} +{"TrackId":2711,"Name":"Save Me (Remix)","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":396303,"Bytes":13053839,"UnitPrice":"0.99"} +{"TrackId":2712,"Name":"Fire In The Head","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":306337,"Bytes":10005675,"UnitPrice":"0.99"} +{"TrackId":2713,"Name":"Release","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":244114,"Bytes":8014606,"UnitPrice":"0.99"} +{"TrackId":2714,"Name":"Heaven Coming Down","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":241867,"Bytes":7846459,"UnitPrice":"0.99"} +{"TrackId":2715,"Name":"The River (Remix)","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":343170,"Bytes":11193268,"UnitPrice":"0.99"} +{"TrackId":2716,"Name":"Babylon","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":169795,"Bytes":5568808,"UnitPrice":"0.99"} +{"TrackId":2717,"Name":"Waiting On A Sign","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":261903,"Bytes":8558590,"UnitPrice":"0.99"} +{"TrackId":2718,"Name":"Life Line","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":277786,"Bytes":9082773,"UnitPrice":"0.99"} +{"TrackId":2719,"Name":"Paint It Black","AlbumId":219,"MediaTypeId":1,"GenreId":4,"Composer":"Keith Richards/Mick Jagger","Milliseconds":214752,"Bytes":7101572,"UnitPrice":"0.99"} +{"TrackId":2720,"Name":"Temptation","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":205244,"Bytes":6719465,"UnitPrice":"0.99"} +{"TrackId":2721,"Name":"Army Ants","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":215405,"Bytes":7075838,"UnitPrice":"0.99"} +{"TrackId":2722,"Name":"Psychopomp","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":317231,"Bytes":10351778,"UnitPrice":"0.99"} +{"TrackId":2723,"Name":"Gyroscope","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":177711,"Bytes":5810323,"UnitPrice":"0.99"} +{"TrackId":2724,"Name":"Alarum","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":298187,"Bytes":9712545,"UnitPrice":"0.99"} +{"TrackId":2725,"Name":"Release","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":266292,"Bytes":8725824,"UnitPrice":"0.99"} +{"TrackId":2726,"Name":"Transmission","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":317257,"Bytes":10351152,"UnitPrice":"0.99"} +{"TrackId":2727,"Name":"Babylon","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":292466,"Bytes":9601786,"UnitPrice":"0.99"} +{"TrackId":2728,"Name":"Pulse","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":250253,"Bytes":8183872,"UnitPrice":"0.99"} +{"TrackId":2729,"Name":"Emerald","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":289750,"Bytes":9543789,"UnitPrice":"0.99"} +{"TrackId":2730,"Name":"Aftermath","AlbumId":220,"MediaTypeId":1,"GenreId":4,"Composer":"The Tea Party","Milliseconds":343745,"Bytes":11085607,"UnitPrice":"0.99"} +{"TrackId":2731,"Name":"I Can't Explain","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":125152,"Bytes":4082896,"UnitPrice":"0.99"} +{"TrackId":2732,"Name":"Anyway, Anyhow, Anywhere","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend, Roger Daltrey","Milliseconds":161253,"Bytes":5234173,"UnitPrice":"0.99"} +{"TrackId":2733,"Name":"My Generation","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle/Pete Townshend","Milliseconds":197825,"Bytes":6446634,"UnitPrice":"0.99"} +{"TrackId":2734,"Name":"Substitute","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":228022,"Bytes":7409995,"UnitPrice":"0.99"} +{"TrackId":2735,"Name":"I'm A Boy","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":157126,"Bytes":5120605,"UnitPrice":"0.99"} +{"TrackId":2736,"Name":"Boris The Spider","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle","Milliseconds":149472,"Bytes":4835202,"UnitPrice":"0.99"} +{"TrackId":2737,"Name":"Happy Jack","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":132310,"Bytes":4353063,"UnitPrice":"0.99"} +{"TrackId":2738,"Name":"Pictures Of Lily","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":164414,"Bytes":5329751,"UnitPrice":"0.99"} +{"TrackId":2739,"Name":"I Can See For Miles","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":262791,"Bytes":8604989,"UnitPrice":"0.99"} +{"TrackId":2740,"Name":"Magic Bus","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":197224,"Bytes":6452700,"UnitPrice":"0.99"} +{"TrackId":2741,"Name":"Pinball Wizard","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle/Pete Townshend","Milliseconds":181890,"Bytes":6055580,"UnitPrice":"0.99"} +{"TrackId":2742,"Name":"The Seeker","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":204643,"Bytes":6736866,"UnitPrice":"0.99"} +{"TrackId":2743,"Name":"Baba O'Riley","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle/Pete Townshend","Milliseconds":309472,"Bytes":10141660,"UnitPrice":"0.99"} +{"TrackId":2744,"Name":"Won't Get Fooled Again (Full Length Version)","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle/Pete Townshend","Milliseconds":513750,"Bytes":16855521,"UnitPrice":"0.99"} +{"TrackId":2745,"Name":"Let's See Action","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":243513,"Bytes":8078418,"UnitPrice":"0.99"} +{"TrackId":2746,"Name":"5.15","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":289619,"Bytes":9458549,"UnitPrice":"0.99"} +{"TrackId":2747,"Name":"Join Together","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":262556,"Bytes":8602485,"UnitPrice":"0.99"} +{"TrackId":2748,"Name":"Squeeze Box","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":161280,"Bytes":5256508,"UnitPrice":"0.99"} +{"TrackId":2749,"Name":"Who Are You (Single Edit Version)","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"John Entwistle/Pete Townshend","Milliseconds":299232,"Bytes":9900469,"UnitPrice":"0.99"} +{"TrackId":2750,"Name":"You Better You Bet","AlbumId":221,"MediaTypeId":1,"GenreId":1,"Composer":"Pete Townshend","Milliseconds":338520,"Bytes":11160877,"UnitPrice":"0.99"} +{"TrackId":2751,"Name":"Primavera","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Genival Cassiano/Silvio Rochael","Milliseconds":126615,"Bytes":4152604,"UnitPrice":"0.99"} +{"TrackId":2752,"Name":"Chocolate","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":194690,"Bytes":6411587,"UnitPrice":"0.99"} +{"TrackId":2753,"Name":"Azul Da Cor Do Mar","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":197955,"Bytes":6475007,"UnitPrice":"0.99"} +{"TrackId":2754,"Name":"O Descobridor Dos Sete Mares","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Gilson Mendonça/Michel","Milliseconds":262974,"Bytes":8749583,"UnitPrice":"0.99"} +{"TrackId":2755,"Name":"Até Que Enfim Encontrei Vocę","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":105064,"Bytes":3477751,"UnitPrice":"0.99"} +{"TrackId":2756,"Name":"Coroné Antonio Bento","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Do Vale, Joăo/Luiz Wanderley","Milliseconds":131317,"Bytes":4340326,"UnitPrice":"0.99"} +{"TrackId":2757,"Name":"New Love","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":237897,"Bytes":7786824,"UnitPrice":"0.99"} +{"TrackId":2758,"Name":"Năo Vou Ficar","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":172068,"Bytes":5642919,"UnitPrice":"0.99"} +{"TrackId":2759,"Name":"Música No Ar","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":158511,"Bytes":5184891,"UnitPrice":"0.99"} +{"TrackId":2760,"Name":"Salve Nossa Senhora","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Carlos Imperial/Edardo Araújo","Milliseconds":115461,"Bytes":3827629,"UnitPrice":"0.99"} +{"TrackId":2761,"Name":"Vocę Fugiu","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Genival Cassiano","Milliseconds":238367,"Bytes":7971147,"UnitPrice":"0.99"} +{"TrackId":2762,"Name":"Cristina Nş 2","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Carlos Imperial/Tim Maia","Milliseconds":90148,"Bytes":2978589,"UnitPrice":"0.99"} +{"TrackId":2763,"Name":"Compadre","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":171389,"Bytes":5631446,"UnitPrice":"0.99"} +{"TrackId":2764,"Name":"Over Again","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":200489,"Bytes":6612634,"UnitPrice":"0.99"} +{"TrackId":2765,"Name":"Réu Confesso","AlbumId":222,"MediaTypeId":1,"GenreId":7,"Composer":"Tim Maia","Milliseconds":217391,"Bytes":7189874,"UnitPrice":"0.99"} +{"TrackId":2766,"Name":"O Que Me Importa","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":153155,"Bytes":4977852,"UnitPrice":"0.99"} +{"TrackId":2767,"Name":"Gostava Tanto De Vocę","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":253805,"Bytes":8380077,"UnitPrice":"0.99"} +{"TrackId":2768,"Name":"Vocę","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":242599,"Bytes":7911702,"UnitPrice":"0.99"} +{"TrackId":2769,"Name":"Năo Quero Dinheiro","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":152607,"Bytes":5031797,"UnitPrice":"0.99"} +{"TrackId":2770,"Name":"Eu Amo Vocę","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":242782,"Bytes":7914628,"UnitPrice":"0.99"} +{"TrackId":2771,"Name":"A Festa Do Santo Reis","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":159791,"Bytes":5204995,"UnitPrice":"0.99"} +{"TrackId":2772,"Name":"I Don't Know What To Do With Myself","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":221387,"Bytes":7251478,"UnitPrice":"0.99"} +{"TrackId":2773,"Name":"Padre Cícero","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":139598,"Bytes":4581685,"UnitPrice":"0.99"} +{"TrackId":2774,"Name":"Nosso Adeus","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":206471,"Bytes":6793270,"UnitPrice":"0.99"} +{"TrackId":2775,"Name":"Canário Do Reino","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":139337,"Bytes":4552858,"UnitPrice":"0.99"} +{"TrackId":2776,"Name":"Preciso Ser Amado","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":174001,"Bytes":5618895,"UnitPrice":"0.99"} +{"TrackId":2777,"Name":"Balanço","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":209737,"Bytes":6890327,"UnitPrice":"0.99"} +{"TrackId":2778,"Name":"Preciso Aprender A Ser Só","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":162220,"Bytes":5213894,"UnitPrice":"0.99"} +{"TrackId":2779,"Name":"Esta É A Cançăo","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":184450,"Bytes":6069933,"UnitPrice":"0.99"} +{"TrackId":2780,"Name":"Formigueiro","AlbumId":223,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":252943,"Bytes":8455132,"UnitPrice":"0.99"} +{"TrackId":2781,"Name":"Comida","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":322612,"Bytes":10786578,"UnitPrice":"0.99"} +{"TrackId":2782,"Name":"Go Back","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":230504,"Bytes":7668899,"UnitPrice":"0.99"} +{"TrackId":2783,"Name":"Prá Dizer Adeus","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":222484,"Bytes":7382048,"UnitPrice":"0.99"} +{"TrackId":2784,"Name":"Família","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":218331,"Bytes":7267458,"UnitPrice":"0.99"} +{"TrackId":2785,"Name":"Os Cegos Do Castelo","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":296829,"Bytes":9868187,"UnitPrice":"0.99"} +{"TrackId":2786,"Name":"O Pulso","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":199131,"Bytes":6566998,"UnitPrice":"0.99"} +{"TrackId":2787,"Name":"Marvin","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":264359,"Bytes":8741444,"UnitPrice":"0.99"} +{"TrackId":2788,"Name":"Nem 5 Minutos Guardados","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":245995,"Bytes":8143797,"UnitPrice":"0.99"} +{"TrackId":2789,"Name":"Flores","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":215510,"Bytes":7148017,"UnitPrice":"0.99"} +{"TrackId":2790,"Name":"Palavras","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":158458,"Bytes":5285715,"UnitPrice":"0.99"} +{"TrackId":2791,"Name":"Hereditário","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":151693,"Bytes":5020547,"UnitPrice":"0.99"} +{"TrackId":2792,"Name":"A Melhor Forma","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":191503,"Bytes":6349938,"UnitPrice":"0.99"} +{"TrackId":2793,"Name":"Cabeça Dinossauro","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":37120,"Bytes":1220930,"UnitPrice":"0.99"} +{"TrackId":2794,"Name":"32 Dentes","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":184946,"Bytes":6157904,"UnitPrice":"0.99"} +{"TrackId":2795,"Name":"Bichos Escrotos (Vinheta)","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":104986,"Bytes":3503755,"UnitPrice":"0.99"} +{"TrackId":2796,"Name":"Năo Vou Lutar","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":189988,"Bytes":6308613,"UnitPrice":"0.99"} +{"TrackId":2797,"Name":"Homem Primata (Vinheta)","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":34168,"Bytes":1124909,"UnitPrice":"0.99"} +{"TrackId":2798,"Name":"Homem Primata","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":195500,"Bytes":6486470,"UnitPrice":"0.99"} +{"TrackId":2799,"Name":"Polícia (Vinheta)","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":56111,"Bytes":1824213,"UnitPrice":"0.99"} +{"TrackId":2800,"Name":"Querem Meu Sangue","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":212401,"Bytes":7069773,"UnitPrice":"0.99"} +{"TrackId":2801,"Name":"Diversăo","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":285936,"Bytes":9531268,"UnitPrice":"0.99"} +{"TrackId":2802,"Name":"Televisăo","AlbumId":224,"MediaTypeId":1,"GenreId":4,"Composer":"Tităs","Milliseconds":293668,"Bytes":9776548,"UnitPrice":"0.99"} +{"TrackId":2803,"Name":"Sonifera Ilha","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto","Milliseconds":170684,"Bytes":5678290,"UnitPrice":"0.99"} +{"TrackId":2804,"Name":"Lugar Nenhum","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Antunes/Charles Gavin/Marcelo Fromer/Sérgio Britto/Toni Bellotto","Milliseconds":195840,"Bytes":6472780,"UnitPrice":"0.99"} +{"TrackId":2805,"Name":"Sua Impossivel Chance","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Nando Reis","Milliseconds":246622,"Bytes":8073248,"UnitPrice":"0.99"} +{"TrackId":2806,"Name":"Desordem","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Charles Gavin/Marcelo Fromer/Sérgio Britto","Milliseconds":213289,"Bytes":7067340,"UnitPrice":"0.99"} +{"TrackId":2807,"Name":"Năo Vou Me Adaptar","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Antunes","Milliseconds":221831,"Bytes":7304656,"UnitPrice":"0.99"} +{"TrackId":2808,"Name":"Domingo","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Sérgio Britto/Toni Bellotto","Milliseconds":208613,"Bytes":6883180,"UnitPrice":"0.99"} +{"TrackId":2809,"Name":"Amanhă Năo Se Sabe","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Sérgio Britto","Milliseconds":189440,"Bytes":6243967,"UnitPrice":"0.99"} +{"TrackId":2810,"Name":"Caras Como Eu","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Toni Bellotto","Milliseconds":183092,"Bytes":5999048,"UnitPrice":"0.99"} +{"TrackId":2811,"Name":"Senhora E Senhor","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos","Milliseconds":203702,"Bytes":6733733,"UnitPrice":"0.99"} +{"TrackId":2812,"Name":"Era Uma Vez","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto","Milliseconds":224261,"Bytes":7453156,"UnitPrice":"0.99"} +{"TrackId":2813,"Name":"Miséria","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Arnaldo Antunes/Britto, SergioMiklos, Paulo","Milliseconds":262191,"Bytes":8727645,"UnitPrice":"0.99"} +{"TrackId":2814,"Name":"Insensível","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Sérgio Britto","Milliseconds":207830,"Bytes":6893664,"UnitPrice":"0.99"} +{"TrackId":2815,"Name":"Eu E Ela","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Nando Reis","Milliseconds":276035,"Bytes":9138846,"UnitPrice":"0.99"} +{"TrackId":2816,"Name":"Toda Cor","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Ciro Pressoa/Marcelo Fromer","Milliseconds":209084,"Bytes":6939176,"UnitPrice":"0.99"} +{"TrackId":2817,"Name":"É Preciso Saber Viver","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Erasmo Carlos/Roberto Carlos","Milliseconds":251115,"Bytes":8271418,"UnitPrice":"0.99"} +{"TrackId":2818,"Name":"Senhor Delegado/Eu Năo Aguento","AlbumId":225,"MediaTypeId":1,"GenreId":4,"Composer":"Antonio Lopes","Milliseconds":156656,"Bytes":5277983,"UnitPrice":"0.99"} +{"TrackId":2819,"Name":"Battlestar Galactica: The Story So Far","AlbumId":226,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2622250,"Bytes":490750393,"UnitPrice":"1.99"} +{"TrackId":2820,"Name":"Occupation / Precipice","AlbumId":227,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":5286953,"Bytes":1054423946,"UnitPrice":"1.99"} +{"TrackId":2821,"Name":"Exodus, Pt. 1","AlbumId":227,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2621708,"Bytes":475079441,"UnitPrice":"1.99"} +{"TrackId":2822,"Name":"Exodus, Pt. 2","AlbumId":227,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2618000,"Bytes":466820021,"UnitPrice":"1.99"} +{"TrackId":2823,"Name":"Collaborators","AlbumId":227,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2626626,"Bytes":483484911,"UnitPrice":"1.99"} +{"TrackId":2824,"Name":"Torn","AlbumId":227,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2631291,"Bytes":495262585,"UnitPrice":"1.99"} +{"TrackId":2825,"Name":"A Measure of Salvation","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2563938,"Bytes":489715554,"UnitPrice":"1.99"} +{"TrackId":2826,"Name":"Hero","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2713755,"Bytes":506896959,"UnitPrice":"1.99"} +{"TrackId":2827,"Name":"Unfinished Business","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2622038,"Bytes":528499160,"UnitPrice":"1.99"} +{"TrackId":2828,"Name":"The Passage","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2623875,"Bytes":490375760,"UnitPrice":"1.99"} +{"TrackId":2829,"Name":"The Eye of Jupiter","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2618750,"Bytes":517909587,"UnitPrice":"1.99"} +{"TrackId":2830,"Name":"Rapture","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2624541,"Bytes":508406153,"UnitPrice":"1.99"} +{"TrackId":2831,"Name":"Taking a Break from All Your Worries","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2624207,"Bytes":492700163,"UnitPrice":"1.99"} +{"TrackId":2832,"Name":"The Woman King","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2626376,"Bytes":552893447,"UnitPrice":"1.99"} +{"TrackId":2833,"Name":"A Day In the Life","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2620245,"Bytes":462818231,"UnitPrice":"1.99"} +{"TrackId":2834,"Name":"Dirty Hands","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2627961,"Bytes":537648614,"UnitPrice":"1.99"} +{"TrackId":2835,"Name":"Maelstrom","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2622372,"Bytes":514154275,"UnitPrice":"1.99"} +{"TrackId":2836,"Name":"The Son Also Rises","AlbumId":227,"MediaTypeId":3,"GenreId":18,"Composer":null,"Milliseconds":2621830,"Bytes":499258498,"UnitPrice":"1.99"} +{"TrackId":2837,"Name":"Crossroads, Pt. 1","AlbumId":227,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2622622,"Bytes":486233524,"UnitPrice":"1.99"} +{"TrackId":2838,"Name":"Crossroads, Pt. 2","AlbumId":227,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2869953,"Bytes":497335706,"UnitPrice":"1.99"} +{"TrackId":2839,"Name":"Genesis","AlbumId":228,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2611986,"Bytes":515671080,"UnitPrice":"1.99"} +{"TrackId":2840,"Name":"Don't Look Back","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2571154,"Bytes":493628775,"UnitPrice":"1.99"} +{"TrackId":2841,"Name":"One Giant Leap","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2607649,"Bytes":521616246,"UnitPrice":"1.99"} +{"TrackId":2842,"Name":"Collision","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2605480,"Bytes":526182322,"UnitPrice":"1.99"} +{"TrackId":2843,"Name":"Hiros","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2533575,"Bytes":488835454,"UnitPrice":"1.99"} +{"TrackId":2844,"Name":"Better Halves","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2573031,"Bytes":549353481,"UnitPrice":"1.99"} +{"TrackId":2845,"Name":"Nothing to Hide","AlbumId":228,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2605647,"Bytes":510058181,"UnitPrice":"1.99"} +{"TrackId":2846,"Name":"Seven Minutes to Midnight","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2613988,"Bytes":515590682,"UnitPrice":"1.99"} +{"TrackId":2847,"Name":"Homecoming","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2601351,"Bytes":516015339,"UnitPrice":"1.99"} +{"TrackId":2848,"Name":"Six Months Ago","AlbumId":228,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2602852,"Bytes":505133869,"UnitPrice":"1.99"} +{"TrackId":2849,"Name":"Fallout","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2594761,"Bytes":501145440,"UnitPrice":"1.99"} +{"TrackId":2850,"Name":"The Fix","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2600266,"Bytes":507026323,"UnitPrice":"1.99"} +{"TrackId":2851,"Name":"Distractions","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2590382,"Bytes":537111289,"UnitPrice":"1.99"} +{"TrackId":2852,"Name":"Run!","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2602602,"Bytes":542936677,"UnitPrice":"1.99"} +{"TrackId":2853,"Name":"Unexpected","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2598139,"Bytes":511777758,"UnitPrice":"1.99"} +{"TrackId":2854,"Name":"Company Man","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2601226,"Bytes":493168135,"UnitPrice":"1.99"} +{"TrackId":2855,"Name":"Company Man","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2601101,"Bytes":503786316,"UnitPrice":"1.99"} +{"TrackId":2856,"Name":"Parasite","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2602727,"Bytes":487461520,"UnitPrice":"1.99"} +{"TrackId":2857,"Name":"A Tale of Two Cities","AlbumId":229,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2636970,"Bytes":513691652,"UnitPrice":"1.99"} +{"TrackId":2858,"Name":"Lost (Pilot, Part 1) [Premiere]","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2548875,"Bytes":217124866,"UnitPrice":"1.99"} +{"TrackId":2859,"Name":"Man of Science, Man of Faith (Premiere)","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2612250,"Bytes":543342028,"UnitPrice":"1.99"} +{"TrackId":2860,"Name":"Adrift","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2564958,"Bytes":502663995,"UnitPrice":"1.99"} +{"TrackId":2861,"Name":"Lost (Pilot, Part 2)","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2436583,"Bytes":204995876,"UnitPrice":"1.99"} +{"TrackId":2862,"Name":"The Glass Ballerina","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2637458,"Bytes":535729216,"UnitPrice":"1.99"} +{"TrackId":2863,"Name":"Further Instructions","AlbumId":229,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2563980,"Bytes":502041019,"UnitPrice":"1.99"} +{"TrackId":2864,"Name":"Orientation","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2609083,"Bytes":500600434,"UnitPrice":"1.99"} +{"TrackId":2865,"Name":"Tabula Rasa","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2627105,"Bytes":210526410,"UnitPrice":"1.99"} +{"TrackId":2866,"Name":"Every Man for Himself","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2637387,"Bytes":513803546,"UnitPrice":"1.99"} +{"TrackId":2867,"Name":"Everybody Hates Hugo","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2609192,"Bytes":498163145,"UnitPrice":"1.99"} +{"TrackId":2868,"Name":"Walkabout","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2587370,"Bytes":207748198,"UnitPrice":"1.99"} +{"TrackId":2869,"Name":"...And Found","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2563833,"Bytes":500330548,"UnitPrice":"1.99"} +{"TrackId":2870,"Name":"The Cost of Living","AlbumId":229,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2637500,"Bytes":505647192,"UnitPrice":"1.99"} +{"TrackId":2871,"Name":"White Rabbit","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2571965,"Bytes":201654606,"UnitPrice":"1.99"} +{"TrackId":2872,"Name":"Abandoned","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2587041,"Bytes":537348711,"UnitPrice":"1.99"} +{"TrackId":2873,"Name":"House of the Rising Sun","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2590032,"Bytes":210379525,"UnitPrice":"1.99"} +{"TrackId":2874,"Name":"I Do","AlbumId":229,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2627791,"Bytes":504676825,"UnitPrice":"1.99"} +{"TrackId":2875,"Name":"Not In Portland","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2637303,"Bytes":499061234,"UnitPrice":"1.99"} +{"TrackId":2876,"Name":"Not In Portland","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2637345,"Bytes":510546847,"UnitPrice":"1.99"} +{"TrackId":2877,"Name":"The Moth","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2631327,"Bytes":228896396,"UnitPrice":"1.99"} +{"TrackId":2878,"Name":"The Other 48 Days","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2610625,"Bytes":535256753,"UnitPrice":"1.99"} +{"TrackId":2879,"Name":"Collision","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2564916,"Bytes":475656544,"UnitPrice":"1.99"} +{"TrackId":2880,"Name":"Confidence Man","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2615244,"Bytes":223756475,"UnitPrice":"1.99"} +{"TrackId":2881,"Name":"Flashes Before Your Eyes","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2636636,"Bytes":537760755,"UnitPrice":"1.99"} +{"TrackId":2882,"Name":"Lost Survival Guide","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2632590,"Bytes":486675063,"UnitPrice":"1.99"} +{"TrackId":2883,"Name":"Solitary","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2612894,"Bytes":207045178,"UnitPrice":"1.99"} +{"TrackId":2884,"Name":"What Kate Did","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2610250,"Bytes":484583988,"UnitPrice":"1.99"} +{"TrackId":2885,"Name":"Raised By Another","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2590459,"Bytes":223623810,"UnitPrice":"1.99"} +{"TrackId":2886,"Name":"Stranger In a Strange Land","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2636428,"Bytes":505056021,"UnitPrice":"1.99"} +{"TrackId":2887,"Name":"The 23rd Psalm","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2610416,"Bytes":487401604,"UnitPrice":"1.99"} +{"TrackId":2888,"Name":"All the Best Cowboys Have Daddy Issues","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2555492,"Bytes":211743651,"UnitPrice":"1.99"} +{"TrackId":2889,"Name":"The Hunting Party","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2611333,"Bytes":520350364,"UnitPrice":"1.99"} +{"TrackId":2890,"Name":"Tricia Tanaka Is Dead","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2635010,"Bytes":548197162,"UnitPrice":"1.99"} +{"TrackId":2891,"Name":"Enter 77","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2629796,"Bytes":517521422,"UnitPrice":"1.99"} +{"TrackId":2892,"Name":"Fire + Water","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2600333,"Bytes":488458695,"UnitPrice":"1.99"} +{"TrackId":2893,"Name":"Whatever the Case May Be","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2616410,"Bytes":183867185,"UnitPrice":"1.99"} +{"TrackId":2894,"Name":"Hearts and Minds","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2619462,"Bytes":207607466,"UnitPrice":"1.99"} +{"TrackId":2895,"Name":"Par Avion","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2629879,"Bytes":517079642,"UnitPrice":"1.99"} +{"TrackId":2896,"Name":"The Long Con","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2679583,"Bytes":518376636,"UnitPrice":"1.99"} +{"TrackId":2897,"Name":"One of Them","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2698791,"Bytes":542332389,"UnitPrice":"1.99"} +{"TrackId":2898,"Name":"Special","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2618530,"Bytes":219961967,"UnitPrice":"1.99"} +{"TrackId":2899,"Name":"The Man from Tallahassee","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2637637,"Bytes":550893556,"UnitPrice":"1.99"} +{"TrackId":2900,"Name":"Exposé","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2593760,"Bytes":511338017,"UnitPrice":"1.99"} +{"TrackId":2901,"Name":"Homecoming","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2515882,"Bytes":210675221,"UnitPrice":"1.99"} +{"TrackId":2902,"Name":"Maternity Leave","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2780416,"Bytes":555244214,"UnitPrice":"1.99"} +{"TrackId":2903,"Name":"Left Behind","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2635343,"Bytes":538491964,"UnitPrice":"1.99"} +{"TrackId":2904,"Name":"Outlaws","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2619887,"Bytes":206500939,"UnitPrice":"1.99"} +{"TrackId":2905,"Name":"The Whole Truth","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2610125,"Bytes":495487014,"UnitPrice":"1.99"} +{"TrackId":2906,"Name":"...In Translation","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2604575,"Bytes":215441983,"UnitPrice":"1.99"} +{"TrackId":2907,"Name":"Lockdown","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2610250,"Bytes":543886056,"UnitPrice":"1.99"} +{"TrackId":2908,"Name":"One of Us","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2638096,"Bytes":502387276,"UnitPrice":"1.99"} +{"TrackId":2909,"Name":"Catch-22","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2561394,"Bytes":489773399,"UnitPrice":"1.99"} +{"TrackId":2910,"Name":"Dave","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2825166,"Bytes":574325829,"UnitPrice":"1.99"} +{"TrackId":2911,"Name":"Numbers","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2609772,"Bytes":214709143,"UnitPrice":"1.99"} +{"TrackId":2912,"Name":"D.O.C.","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2616032,"Bytes":518556641,"UnitPrice":"1.99"} +{"TrackId":2913,"Name":"Deus Ex Machina","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2582009,"Bytes":214996732,"UnitPrice":"1.99"} +{"TrackId":2914,"Name":"S.O.S.","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2639541,"Bytes":517979269,"UnitPrice":"1.99"} +{"TrackId":2915,"Name":"Do No Harm","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2618487,"Bytes":212039309,"UnitPrice":"1.99"} +{"TrackId":2916,"Name":"Two for the Road","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2610958,"Bytes":502404558,"UnitPrice":"1.99"} +{"TrackId":2917,"Name":"The Greater Good","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2617784,"Bytes":214130273,"UnitPrice":"1.99"} +{"TrackId":2918,"Name":"\"?\"","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2782333,"Bytes":528227089,"UnitPrice":"1.99"} +{"TrackId":2919,"Name":"Born to Run","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2618619,"Bytes":213772057,"UnitPrice":"1.99"} +{"TrackId":2920,"Name":"Three Minutes","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2763666,"Bytes":531556853,"UnitPrice":"1.99"} +{"TrackId":2921,"Name":"Exodus (Part 1)","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2620747,"Bytes":213107744,"UnitPrice":"1.99"} +{"TrackId":2922,"Name":"Live Together, Die Alone, Pt. 1","AlbumId":231,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2478041,"Bytes":457364940,"UnitPrice":"1.99"} +{"TrackId":2923,"Name":"Exodus (Part 2) [Season Finale]","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2605557,"Bytes":208667059,"UnitPrice":"1.99"} +{"TrackId":2924,"Name":"Live Together, Die Alone, Pt. 2","AlbumId":231,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2656531,"Bytes":503619265,"UnitPrice":"1.99"} +{"TrackId":2925,"Name":"Exodus (Part 3) [Season Finale]","AlbumId":230,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2619869,"Bytes":197937785,"UnitPrice":"1.99"} +{"TrackId":2926,"Name":"Zoo Station","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":276349,"Bytes":9056902,"UnitPrice":"0.99"} +{"TrackId":2927,"Name":"Even Better Than The Real Thing","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":221361,"Bytes":7279392,"UnitPrice":"0.99"} +{"TrackId":2928,"Name":"One","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":276192,"Bytes":9158892,"UnitPrice":"0.99"} +{"TrackId":2929,"Name":"Until The End Of The World","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":278700,"Bytes":9132485,"UnitPrice":"0.99"} +{"TrackId":2930,"Name":"Who's Gonna Ride Your Wild Horses","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":316551,"Bytes":10304369,"UnitPrice":"0.99"} +{"TrackId":2931,"Name":"So Cruel","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":349492,"Bytes":11527614,"UnitPrice":"0.99"} +{"TrackId":2932,"Name":"The Fly","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":268982,"Bytes":8825399,"UnitPrice":"0.99"} +{"TrackId":2933,"Name":"Mysterious Ways","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":243826,"Bytes":8062057,"UnitPrice":"0.99"} +{"TrackId":2934,"Name":"Tryin' To Throw Your Arms Around The World","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":232463,"Bytes":7612124,"UnitPrice":"0.99"} +{"TrackId":2935,"Name":"Ultraviolet (Light My Way)","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":330788,"Bytes":10754631,"UnitPrice":"0.99"} +{"TrackId":2936,"Name":"Acrobat","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":270288,"Bytes":8824723,"UnitPrice":"0.99"} +{"TrackId":2937,"Name":"Love Is Blindness","AlbumId":232,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":263497,"Bytes":8531766,"UnitPrice":"0.99"} +{"TrackId":2938,"Name":"Beautiful Day","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":248163,"Bytes":8056723,"UnitPrice":"0.99"} +{"TrackId":2939,"Name":"Stuck In A Moment You Can't Get Out Of","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":272378,"Bytes":8997366,"UnitPrice":"0.99"} +{"TrackId":2940,"Name":"Elevation","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":227552,"Bytes":7479414,"UnitPrice":"0.99"} +{"TrackId":2941,"Name":"Walk On","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":296280,"Bytes":9800861,"UnitPrice":"0.99"} +{"TrackId":2942,"Name":"Kite","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":266893,"Bytes":8765761,"UnitPrice":"0.99"} +{"TrackId":2943,"Name":"In A Little While","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":219271,"Bytes":7189647,"UnitPrice":"0.99"} +{"TrackId":2944,"Name":"Wild Honey","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":226768,"Bytes":7466069,"UnitPrice":"0.99"} +{"TrackId":2945,"Name":"Peace On Earth","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":288496,"Bytes":9476171,"UnitPrice":"0.99"} +{"TrackId":2946,"Name":"When I Look At The World","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":257776,"Bytes":8500491,"UnitPrice":"0.99"} +{"TrackId":2947,"Name":"New York","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":330370,"Bytes":10862323,"UnitPrice":"0.99"} +{"TrackId":2948,"Name":"Grace","AlbumId":233,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen, The Edge","Milliseconds":330657,"Bytes":10877148,"UnitPrice":"0.99"} +{"TrackId":2949,"Name":"The Three Sunrises","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":234788,"Bytes":7717990,"UnitPrice":"0.99"} +{"TrackId":2950,"Name":"Spanish Eyes","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":196702,"Bytes":6392710,"UnitPrice":"0.99"} +{"TrackId":2951,"Name":"Sweetest Thing","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":185103,"Bytes":6154896,"UnitPrice":"0.99"} +{"TrackId":2952,"Name":"Love Comes Tumbling","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":282671,"Bytes":9328802,"UnitPrice":"0.99"} +{"TrackId":2953,"Name":"Bass Trap","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":213289,"Bytes":6834107,"UnitPrice":"0.99"} +{"TrackId":2954,"Name":"Dancing Barefoot","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"Ivan Kral/Patti Smith","Milliseconds":287895,"Bytes":9488294,"UnitPrice":"0.99"} +{"TrackId":2955,"Name":"Everlasting Love","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"Buzz Cason/Mac Gayden","Milliseconds":202631,"Bytes":6708932,"UnitPrice":"0.99"} +{"TrackId":2956,"Name":"Unchained Melody","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"Alex North/Hy Zaret","Milliseconds":294164,"Bytes":9597568,"UnitPrice":"0.99"} +{"TrackId":2957,"Name":"Walk To The Water","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":289253,"Bytes":9523336,"UnitPrice":"0.99"} +{"TrackId":2958,"Name":"Luminous Times (Hold On To Love)","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"Brian Eno/U2","Milliseconds":277760,"Bytes":9015513,"UnitPrice":"0.99"} +{"TrackId":2959,"Name":"Hallelujah Here She Comes","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":242364,"Bytes":8027028,"UnitPrice":"0.99"} +{"TrackId":2960,"Name":"Silver And Gold","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"Bono","Milliseconds":279875,"Bytes":9199746,"UnitPrice":"0.99"} +{"TrackId":2961,"Name":"Endless Deep","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":179879,"Bytes":5899070,"UnitPrice":"0.99"} +{"TrackId":2962,"Name":"A Room At The Heartbreak Hotel","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":274546,"Bytes":9015416,"UnitPrice":"0.99"} +{"TrackId":2963,"Name":"Trash, Trampoline And The Party Girl","AlbumId":234,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":153965,"Bytes":5083523,"UnitPrice":"0.99"} +{"TrackId":2964,"Name":"Vertigo","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":194612,"Bytes":6329502,"UnitPrice":"0.99"} +{"TrackId":2965,"Name":"Miracle Drug","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":239124,"Bytes":7760916,"UnitPrice":"0.99"} +{"TrackId":2966,"Name":"Sometimes You Can't Make It On Your Own","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":308976,"Bytes":10112863,"UnitPrice":"0.99"} +{"TrackId":2967,"Name":"Love And Peace Or Else","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":290690,"Bytes":9476723,"UnitPrice":"0.99"} +{"TrackId":2968,"Name":"City Of Blinding Lights","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":347951,"Bytes":11432026,"UnitPrice":"0.99"} +{"TrackId":2969,"Name":"All Because Of You","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":219141,"Bytes":7198014,"UnitPrice":"0.99"} +{"TrackId":2970,"Name":"A Man And A Woman","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":270132,"Bytes":8938285,"UnitPrice":"0.99"} +{"TrackId":2971,"Name":"Crumbs From Your Table","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":303568,"Bytes":9892349,"UnitPrice":"0.99"} +{"TrackId":2972,"Name":"One Step Closer","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":231680,"Bytes":7512912,"UnitPrice":"0.99"} +{"TrackId":2973,"Name":"Original Of The Species","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":281443,"Bytes":9230041,"UnitPrice":"0.99"} +{"TrackId":2974,"Name":"Yahweh","AlbumId":235,"MediaTypeId":1,"GenreId":1,"Composer":"Adam Clayton, Bono, Larry Mullen & The Edge","Milliseconds":262034,"Bytes":8636998,"UnitPrice":"0.99"} +{"TrackId":2975,"Name":"Discotheque","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":319582,"Bytes":10442206,"UnitPrice":"0.99"} +{"TrackId":2976,"Name":"Do You Feel Loved","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":307539,"Bytes":10122694,"UnitPrice":"0.99"} +{"TrackId":2977,"Name":"Mofo","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":349178,"Bytes":11583042,"UnitPrice":"0.99"} +{"TrackId":2978,"Name":"If God Will Send His Angels","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":322533,"Bytes":10563329,"UnitPrice":"0.99"} +{"TrackId":2979,"Name":"Staring At The Sun","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":276924,"Bytes":9082838,"UnitPrice":"0.99"} +{"TrackId":2980,"Name":"Last Night On Earth","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":285753,"Bytes":9401017,"UnitPrice":"0.99"} +{"TrackId":2981,"Name":"Gone","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":266866,"Bytes":8746301,"UnitPrice":"0.99"} +{"TrackId":2982,"Name":"Miami","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":293041,"Bytes":9741603,"UnitPrice":"0.99"} +{"TrackId":2983,"Name":"The Playboy Mansion","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":280555,"Bytes":9274144,"UnitPrice":"0.99"} +{"TrackId":2984,"Name":"If You Wear That Velvet Dress","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":315167,"Bytes":10227333,"UnitPrice":"0.99"} +{"TrackId":2985,"Name":"Please","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":302602,"Bytes":9909484,"UnitPrice":"0.99"} +{"TrackId":2986,"Name":"Wake Up Dead Man","AlbumId":236,"MediaTypeId":1,"GenreId":1,"Composer":"Bono, The Edge, Adam Clayton, and Larry Mullen","Milliseconds":292832,"Bytes":9515903,"UnitPrice":"0.99"} +{"TrackId":2987,"Name":"Helter Skelter","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Lennon, John/McCartney, Paul","Milliseconds":187350,"Bytes":6097636,"UnitPrice":"0.99"} +{"TrackId":2988,"Name":"Van Diemen's Land","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":186044,"Bytes":5990280,"UnitPrice":"0.99"} +{"TrackId":2989,"Name":"Desire","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":179226,"Bytes":5874535,"UnitPrice":"0.99"} +{"TrackId":2990,"Name":"Hawkmoon 269","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":382458,"Bytes":12494987,"UnitPrice":"0.99"} +{"TrackId":2991,"Name":"All Along The Watchtower","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Dylan, Bob","Milliseconds":264568,"Bytes":8623572,"UnitPrice":"0.99"} +{"TrackId":2992,"Name":"I Still Haven't Found What I'm Looking for","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":353567,"Bytes":11542247,"UnitPrice":"0.99"} +{"TrackId":2993,"Name":"Freedom For My People","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Mabins, Macie/Magee, Sterling/Robinson, Bobby","Milliseconds":38164,"Bytes":1249764,"UnitPrice":"0.99"} +{"TrackId":2994,"Name":"Silver And Gold","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":349831,"Bytes":11450194,"UnitPrice":"0.99"} +{"TrackId":2995,"Name":"Pride (In The Name Of Love)","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":267807,"Bytes":8806361,"UnitPrice":"0.99"} +{"TrackId":2996,"Name":"Angel Of Harlem","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":229276,"Bytes":7498022,"UnitPrice":"0.99"} +{"TrackId":2997,"Name":"Love Rescue Me","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge","Milliseconds":384522,"Bytes":12508716,"UnitPrice":"0.99"} +{"TrackId":2998,"Name":"When Love Comes To Town","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":255869,"Bytes":8340954,"UnitPrice":"0.99"} +{"TrackId":2999,"Name":"Heartland","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":303360,"Bytes":9867748,"UnitPrice":"0.99"} +{"TrackId":3000,"Name":"God Part II","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":195604,"Bytes":6497570,"UnitPrice":"0.99"} +{"TrackId":3001,"Name":"The Star Spangled Banner","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Hendrix, Jimi","Milliseconds":43232,"Bytes":1385810,"UnitPrice":"0.99"} +{"TrackId":3002,"Name":"Bullet The Blue Sky","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":337005,"Bytes":10993607,"UnitPrice":"0.99"} +{"TrackId":3003,"Name":"All I Want Is You","AlbumId":237,"MediaTypeId":1,"GenreId":1,"Composer":"Bono/Clayton, Adam/Mullen Jr., Larry/The Edge","Milliseconds":390243,"Bytes":12729820,"UnitPrice":"0.99"} +{"TrackId":3004,"Name":"Pride (In The Name Of Love)","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":230243,"Bytes":7549085,"UnitPrice":"0.99"} +{"TrackId":3005,"Name":"New Year's Day","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":258925,"Bytes":8491818,"UnitPrice":"0.99"} +{"TrackId":3006,"Name":"With Or Without You","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":299023,"Bytes":9765188,"UnitPrice":"0.99"} +{"TrackId":3007,"Name":"I Still Haven't Found What I'm Looking For","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":280764,"Bytes":9306737,"UnitPrice":"0.99"} +{"TrackId":3008,"Name":"Sunday Bloody Sunday","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":282174,"Bytes":9269668,"UnitPrice":"0.99"} +{"TrackId":3009,"Name":"Bad","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":351817,"Bytes":11628058,"UnitPrice":"0.99"} +{"TrackId":3010,"Name":"Where The Streets Have No Name","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":276218,"Bytes":9042305,"UnitPrice":"0.99"} +{"TrackId":3011,"Name":"I Will Follow","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":218253,"Bytes":7184825,"UnitPrice":"0.99"} +{"TrackId":3012,"Name":"The Unforgettable Fire","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":295183,"Bytes":9684664,"UnitPrice":"0.99"} +{"TrackId":3013,"Name":"Sweetest Thing","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2 & Daragh O'Toole","Milliseconds":183066,"Bytes":6071385,"UnitPrice":"0.99"} +{"TrackId":3014,"Name":"Desire","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":179853,"Bytes":5893206,"UnitPrice":"0.99"} +{"TrackId":3015,"Name":"When Love Comes To Town","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":258194,"Bytes":8479525,"UnitPrice":"0.99"} +{"TrackId":3016,"Name":"Angel Of Harlem","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":230217,"Bytes":7527339,"UnitPrice":"0.99"} +{"TrackId":3017,"Name":"All I Want Is You","AlbumId":238,"MediaTypeId":1,"GenreId":1,"Composer":"U2 & Van Dyke Parks","Milliseconds":591986,"Bytes":19202252,"UnitPrice":"0.99"} +{"TrackId":3018,"Name":"Sunday Bloody Sunday","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":278204,"Bytes":9140849,"UnitPrice":"0.99"} +{"TrackId":3019,"Name":"Seconds","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":191582,"Bytes":6352121,"UnitPrice":"0.99"} +{"TrackId":3020,"Name":"New Year's Day","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":336274,"Bytes":11054732,"UnitPrice":"0.99"} +{"TrackId":3021,"Name":"Like A Song...","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":287294,"Bytes":9365379,"UnitPrice":"0.99"} +{"TrackId":3022,"Name":"Drowning Man","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":254458,"Bytes":8457066,"UnitPrice":"0.99"} +{"TrackId":3023,"Name":"The Refugee","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":221283,"Bytes":7374043,"UnitPrice":"0.99"} +{"TrackId":3024,"Name":"Two Hearts Beat As One","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":243487,"Bytes":7998323,"UnitPrice":"0.99"} +{"TrackId":3025,"Name":"Red Light","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":225854,"Bytes":7453704,"UnitPrice":"0.99"} +{"TrackId":3026,"Name":"Surrender","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":333505,"Bytes":11221406,"UnitPrice":"0.99"} +{"TrackId":3027,"Name":"\"40\"","AlbumId":239,"MediaTypeId":1,"GenreId":1,"Composer":"U2","Milliseconds":157962,"Bytes":5251767,"UnitPrice":"0.99"} +{"TrackId":3028,"Name":"Zooropa","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":392359,"Bytes":12807979,"UnitPrice":"0.99"} +{"TrackId":3029,"Name":"Babyface","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":241998,"Bytes":7942573,"UnitPrice":"0.99"} +{"TrackId":3030,"Name":"Numb","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Edge, The","Milliseconds":260284,"Bytes":8577861,"UnitPrice":"0.99"} +{"TrackId":3031,"Name":"Lemon","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":418324,"Bytes":13988878,"UnitPrice":"0.99"} +{"TrackId":3032,"Name":"Stay (Faraway, So Close!)","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":298475,"Bytes":9785480,"UnitPrice":"0.99"} +{"TrackId":3033,"Name":"Daddy's Gonna Pay For Your Crashed Car","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":320287,"Bytes":10609581,"UnitPrice":"0.99"} +{"TrackId":3034,"Name":"Some Days Are Better Than Others","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":257436,"Bytes":8417690,"UnitPrice":"0.99"} +{"TrackId":3035,"Name":"The First Time","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":225697,"Bytes":7247651,"UnitPrice":"0.99"} +{"TrackId":3036,"Name":"Dirty Day","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono & Edge, The","Milliseconds":324440,"Bytes":10652877,"UnitPrice":"0.99"} +{"TrackId":3037,"Name":"The Wanderer","AlbumId":240,"MediaTypeId":1,"GenreId":1,"Composer":"U2; Bono","Milliseconds":283951,"Bytes":9258717,"UnitPrice":"0.99"} +{"TrackId":3038,"Name":"Breakfast In Bed","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":196179,"Bytes":6513325,"UnitPrice":"0.99"} +{"TrackId":3039,"Name":"Where Did I Go Wrong","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":226742,"Bytes":7485054,"UnitPrice":"0.99"} +{"TrackId":3040,"Name":"I Would Do For You","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":334524,"Bytes":11193602,"UnitPrice":"0.99"} +{"TrackId":3041,"Name":"Homely Girl","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":203833,"Bytes":6790788,"UnitPrice":"0.99"} +{"TrackId":3042,"Name":"Here I Am (Come And Take Me)","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":242102,"Bytes":8106249,"UnitPrice":"0.99"} +{"TrackId":3043,"Name":"Kingston Town","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":226951,"Bytes":7638236,"UnitPrice":"0.99"} +{"TrackId":3044,"Name":"Wear You To The Ball","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":213342,"Bytes":7159527,"UnitPrice":"0.99"} +{"TrackId":3045,"Name":"(I Can't Help) Falling In Love With You","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":207568,"Bytes":6905623,"UnitPrice":"0.99"} +{"TrackId":3046,"Name":"Higher Ground","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":260179,"Bytes":8665244,"UnitPrice":"0.99"} +{"TrackId":3047,"Name":"Bring Me Your Cup","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":341498,"Bytes":11346114,"UnitPrice":"0.99"} +{"TrackId":3048,"Name":"C'est La Vie","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":270053,"Bytes":9031661,"UnitPrice":"0.99"} +{"TrackId":3049,"Name":"Reggae Music","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":245106,"Bytes":8203931,"UnitPrice":"0.99"} +{"TrackId":3050,"Name":"Superstition","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":319582,"Bytes":10728099,"UnitPrice":"0.99"} +{"TrackId":3051,"Name":"Until My Dying Day","AlbumId":241,"MediaTypeId":1,"GenreId":8,"Composer":null,"Milliseconds":235807,"Bytes":7886195,"UnitPrice":"0.99"} +{"TrackId":3052,"Name":"Where Have All The Good Times Gone?","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Ray Davies","Milliseconds":186723,"Bytes":6063937,"UnitPrice":"0.99"} +{"TrackId":3053,"Name":"Hang 'Em High","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":210259,"Bytes":6872314,"UnitPrice":"0.99"} +{"TrackId":3054,"Name":"Cathedral","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":82860,"Bytes":2650998,"UnitPrice":"0.99"} +{"TrackId":3055,"Name":"Secrets","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":206968,"Bytes":6803255,"UnitPrice":"0.99"} +{"TrackId":3056,"Name":"Intruder","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":100153,"Bytes":3282142,"UnitPrice":"0.99"} +{"TrackId":3057,"Name":"(Oh) Pretty Woman","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Bill Dees/Roy Orbison","Milliseconds":174680,"Bytes":5665828,"UnitPrice":"0.99"} +{"TrackId":3058,"Name":"Dancing In The Street","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Ivy Jo Hunter/Marvin Gaye/William Stevenson","Milliseconds":225985,"Bytes":7461499,"UnitPrice":"0.99"} +{"TrackId":3059,"Name":"Little Guitars (Intro)","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":42240,"Bytes":1439530,"UnitPrice":"0.99"} +{"TrackId":3060,"Name":"Little Guitars","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":228806,"Bytes":7453043,"UnitPrice":"0.99"} +{"TrackId":3061,"Name":"Big Bad Bill (Is Sweet William Now)","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Jack Yellen/Milton Ager","Milliseconds":165146,"Bytes":5489609,"UnitPrice":"0.99"} +{"TrackId":3062,"Name":"The Full Bug","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony","Milliseconds":201116,"Bytes":6551013,"UnitPrice":"0.99"} +{"TrackId":3063,"Name":"Happy Trails","AlbumId":242,"MediaTypeId":1,"GenreId":1,"Composer":"Dale Evans","Milliseconds":65488,"Bytes":2111141,"UnitPrice":"0.99"} +{"TrackId":3064,"Name":"Eruption","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":102164,"Bytes":3272891,"UnitPrice":"0.99"} +{"TrackId":3065,"Name":"Ain't Talkin' 'bout Love","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":228336,"Bytes":7569506,"UnitPrice":"0.99"} +{"TrackId":3066,"Name":"Runnin' With The Devil","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":215902,"Bytes":7061901,"UnitPrice":"0.99"} +{"TrackId":3067,"Name":"Dance the Night Away","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":185965,"Bytes":6087433,"UnitPrice":"0.99"} +{"TrackId":3068,"Name":"And the Cradle Will Rock...","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":213968,"Bytes":7011402,"UnitPrice":"0.99"} +{"TrackId":3069,"Name":"Unchained","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony","Milliseconds":208953,"Bytes":6777078,"UnitPrice":"0.99"} +{"TrackId":3070,"Name":"Jump","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth","Milliseconds":241711,"Bytes":7911090,"UnitPrice":"0.99"} +{"TrackId":3071,"Name":"Panama","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, David Lee Roth","Milliseconds":211853,"Bytes":6921784,"UnitPrice":"0.99"} +{"TrackId":3072,"Name":"Why Can't This Be Love","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":227761,"Bytes":7457655,"UnitPrice":"0.99"} +{"TrackId":3073,"Name":"Dreams","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar","Milliseconds":291813,"Bytes":9504119,"UnitPrice":"0.99"} +{"TrackId":3074,"Name":"When It's Love","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar","Milliseconds":338991,"Bytes":11049966,"UnitPrice":"0.99"} +{"TrackId":3075,"Name":"Poundcake","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar","Milliseconds":321854,"Bytes":10366978,"UnitPrice":"0.99"} +{"TrackId":3076,"Name":"Right Now","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":321828,"Bytes":10503352,"UnitPrice":"0.99"} +{"TrackId":3077,"Name":"Can't Stop Loving You","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":248502,"Bytes":8107896,"UnitPrice":"0.99"} +{"TrackId":3078,"Name":"Humans Being","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar","Milliseconds":308950,"Bytes":10014683,"UnitPrice":"0.99"} +{"TrackId":3079,"Name":"Can't Get This Stuff No More","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth","Milliseconds":315376,"Bytes":10355753,"UnitPrice":"0.99"} +{"TrackId":3080,"Name":"Me Wise Magic","AlbumId":243,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth","Milliseconds":366053,"Bytes":12013467,"UnitPrice":"0.99"} +{"TrackId":3081,"Name":"Runnin' With The Devil","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":216032,"Bytes":7056863,"UnitPrice":"0.99"} +{"TrackId":3082,"Name":"Eruption","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":102556,"Bytes":3286026,"UnitPrice":"0.99"} +{"TrackId":3083,"Name":"You Really Got Me","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Ray Davies","Milliseconds":158589,"Bytes":5194092,"UnitPrice":"0.99"} +{"TrackId":3084,"Name":"Ain't Talkin' 'Bout Love","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":230060,"Bytes":7617284,"UnitPrice":"0.99"} +{"TrackId":3085,"Name":"I'm The One","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":226507,"Bytes":7373922,"UnitPrice":"0.99"} +{"TrackId":3086,"Name":"Jamie's Cryin'","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":210546,"Bytes":6946086,"UnitPrice":"0.99"} +{"TrackId":3087,"Name":"Atomic Punk","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":182073,"Bytes":5908861,"UnitPrice":"0.99"} +{"TrackId":3088,"Name":"Feel Your Love Tonight","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":222850,"Bytes":7293608,"UnitPrice":"0.99"} +{"TrackId":3089,"Name":"Little Dreamer","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":203258,"Bytes":6648122,"UnitPrice":"0.99"} +{"TrackId":3090,"Name":"Ice Cream Man","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"John Brim","Milliseconds":200306,"Bytes":6573145,"UnitPrice":"0.99"} +{"TrackId":3091,"Name":"On Fire","AlbumId":244,"MediaTypeId":1,"GenreId":1,"Composer":"Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth","Milliseconds":180636,"Bytes":5879235,"UnitPrice":"0.99"} +{"TrackId":3092,"Name":"Neworld","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":105639,"Bytes":3495897,"UnitPrice":"0.99"} +{"TrackId":3093,"Name":"Without You","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":390295,"Bytes":12619558,"UnitPrice":"0.99"} +{"TrackId":3094,"Name":"One I Want","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":330788,"Bytes":10743970,"UnitPrice":"0.99"} +{"TrackId":3095,"Name":"From Afar","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":324414,"Bytes":10524554,"UnitPrice":"0.99"} +{"TrackId":3096,"Name":"Dirty Water Dog","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":327392,"Bytes":10709202,"UnitPrice":"0.99"} +{"TrackId":3097,"Name":"Once","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":462837,"Bytes":15378082,"UnitPrice":"0.99"} +{"TrackId":3098,"Name":"Fire in the Hole","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":331728,"Bytes":10846768,"UnitPrice":"0.99"} +{"TrackId":3099,"Name":"Josephina","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":342491,"Bytes":11161521,"UnitPrice":"0.99"} +{"TrackId":3100,"Name":"Year to the Day","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":514612,"Bytes":16621333,"UnitPrice":"0.99"} +{"TrackId":3101,"Name":"Primary","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":86987,"Bytes":2812555,"UnitPrice":"0.99"} +{"TrackId":3102,"Name":"Ballot or the Bullet","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":342282,"Bytes":11212955,"UnitPrice":"0.99"} +{"TrackId":3103,"Name":"How Many Say I","AlbumId":245,"MediaTypeId":1,"GenreId":1,"Composer":"Van Halen","Milliseconds":363937,"Bytes":11716855,"UnitPrice":"0.99"} +{"TrackId":3104,"Name":"Sucker Train Blues","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":267859,"Bytes":8738780,"UnitPrice":"0.99"} +{"TrackId":3105,"Name":"Do It For The Kids","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":235911,"Bytes":7693331,"UnitPrice":"0.99"} +{"TrackId":3106,"Name":"Big Machine","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":265613,"Bytes":8673442,"UnitPrice":"0.99"} +{"TrackId":3107,"Name":"Illegal I Song","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":257750,"Bytes":8483347,"UnitPrice":"0.99"} +{"TrackId":3108,"Name":"Spectacle","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":221701,"Bytes":7252876,"UnitPrice":"0.99"} +{"TrackId":3109,"Name":"Fall To Pieces","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":270889,"Bytes":8823096,"UnitPrice":"0.99"} +{"TrackId":3110,"Name":"Headspace","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":223033,"Bytes":7237986,"UnitPrice":"0.99"} +{"TrackId":3111,"Name":"Superhuman","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":255921,"Bytes":8365328,"UnitPrice":"0.99"} +{"TrackId":3112,"Name":"Set Me Free","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":247954,"Bytes":8053388,"UnitPrice":"0.99"} +{"TrackId":3113,"Name":"You Got No Right","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":335412,"Bytes":10991094,"UnitPrice":"0.99"} +{"TrackId":3114,"Name":"Slither","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":248398,"Bytes":8118785,"UnitPrice":"0.99"} +{"TrackId":3115,"Name":"Dirty Little Thing","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash","Milliseconds":237844,"Bytes":7732982,"UnitPrice":"0.99"} +{"TrackId":3116,"Name":"Loving The Alien","AlbumId":246,"MediaTypeId":1,"GenreId":1,"Composer":"Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash","Milliseconds":348786,"Bytes":11412762,"UnitPrice":"0.99"} +{"TrackId":3117,"Name":"Pela Luz Dos Olhos Teus","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":119196,"Bytes":3905715,"UnitPrice":"0.99"} +{"TrackId":3118,"Name":"A Bencao E Outros","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":421093,"Bytes":14234427,"UnitPrice":"0.99"} +{"TrackId":3119,"Name":"Tudo Na Mais Santa Paz","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":222406,"Bytes":7426757,"UnitPrice":"0.99"} +{"TrackId":3120,"Name":"O Velho E Aflor","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":275121,"Bytes":9126828,"UnitPrice":"0.99"} +{"TrackId":3121,"Name":"Cotidiano N 2","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":55902,"Bytes":1805797,"UnitPrice":"0.99"} +{"TrackId":3122,"Name":"Adeus","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":221884,"Bytes":7259351,"UnitPrice":"0.99"} +{"TrackId":3123,"Name":"Samba Pra Endrigo","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":259265,"Bytes":8823551,"UnitPrice":"0.99"} +{"TrackId":3124,"Name":"So Por Amor","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":236591,"Bytes":7745764,"UnitPrice":"0.99"} +{"TrackId":3125,"Name":"Meu Pranto Rolou","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":181760,"Bytes":6003345,"UnitPrice":"0.99"} +{"TrackId":3126,"Name":"Mulher Carioca","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":191686,"Bytes":6395048,"UnitPrice":"0.99"} +{"TrackId":3127,"Name":"Um Homem Chamado Alfredo","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":151640,"Bytes":4976227,"UnitPrice":"0.99"} +{"TrackId":3128,"Name":"Samba Do Jato","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":220813,"Bytes":7357840,"UnitPrice":"0.99"} +{"TrackId":3129,"Name":"Oi, La","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":167053,"Bytes":5562700,"UnitPrice":"0.99"} +{"TrackId":3130,"Name":"Vinicius, Poeta Do Encontro","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":336431,"Bytes":10858776,"UnitPrice":"0.99"} +{"TrackId":3131,"Name":"Soneto Da Separacao","AlbumId":247,"MediaTypeId":1,"GenreId":7,"Composer":null,"Milliseconds":193880,"Bytes":6277511,"UnitPrice":"0.99"} +{"TrackId":3132,"Name":"Still Of The Night","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Sykes","Milliseconds":398210,"Bytes":13043817,"UnitPrice":"0.99"} +{"TrackId":3133,"Name":"Here I Go Again","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Marsden","Milliseconds":233874,"Bytes":7652473,"UnitPrice":"0.99"} +{"TrackId":3134,"Name":"Is This Love","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Sykes","Milliseconds":283924,"Bytes":9262360,"UnitPrice":"0.99"} +{"TrackId":3135,"Name":"Love Ain't No Stranger","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Galley","Milliseconds":259395,"Bytes":8490428,"UnitPrice":"0.99"} +{"TrackId":3136,"Name":"Looking For Love","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Sykes","Milliseconds":391941,"Bytes":12769847,"UnitPrice":"0.99"} +{"TrackId":3137,"Name":"Now You're Gone","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Vandenberg","Milliseconds":251141,"Bytes":8162193,"UnitPrice":"0.99"} +{"TrackId":3138,"Name":"Slide It In","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Coverdale","Milliseconds":202475,"Bytes":6615152,"UnitPrice":"0.99"} +{"TrackId":3139,"Name":"Slow An' Easy","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Moody","Milliseconds":367255,"Bytes":11961332,"UnitPrice":"0.99"} +{"TrackId":3140,"Name":"Judgement Day","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Vandenberg","Milliseconds":317074,"Bytes":10326997,"UnitPrice":"0.99"} +{"TrackId":3141,"Name":"You're Gonna Break My Hart Again","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Sykes","Milliseconds":250853,"Bytes":8176847,"UnitPrice":"0.99"} +{"TrackId":3142,"Name":"The Deeper The Love","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Vandenberg","Milliseconds":262791,"Bytes":8606504,"UnitPrice":"0.99"} +{"TrackId":3143,"Name":"Crying In The Rain","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Coverdale","Milliseconds":337005,"Bytes":10931921,"UnitPrice":"0.99"} +{"TrackId":3144,"Name":"Fool For Your Loving","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Marsden/Moody","Milliseconds":250801,"Bytes":8129820,"UnitPrice":"0.99"} +{"TrackId":3145,"Name":"Sweet Lady Luck","AlbumId":141,"MediaTypeId":1,"GenreId":3,"Composer":"Vandenberg","Milliseconds":273737,"Bytes":8919163,"UnitPrice":"0.99"} +{"TrackId":3146,"Name":"Faixa Amarela","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Beto Gogo/Jessé Pai/Luiz Carlos/Zeca Pagodinho","Milliseconds":240692,"Bytes":8082036,"UnitPrice":"0.99"} +{"TrackId":3147,"Name":"Posso Até Me Apaixonar","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Dudu Nobre","Milliseconds":200698,"Bytes":6735526,"UnitPrice":"0.99"} +{"TrackId":3148,"Name":"Năo Sou Mais Disso","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Jorge Aragăo/Zeca Pagodinho","Milliseconds":225985,"Bytes":7613817,"UnitPrice":"0.99"} +{"TrackId":3149,"Name":"Vivo Isolado Do Mundo","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Alcides Dias Lopes","Milliseconds":180035,"Bytes":6073995,"UnitPrice":"0.99"} +{"TrackId":3150,"Name":"Coraçăo Em Desalinho","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Mauro Diniz/Ratino Sigem","Milliseconds":185208,"Bytes":6225948,"UnitPrice":"0.99"} +{"TrackId":3151,"Name":"Seu Balancę","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Paulinho Rezende/Toninho Geraes","Milliseconds":219454,"Bytes":7311219,"UnitPrice":"0.99"} +{"TrackId":3152,"Name":"Vai Adiar","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Alcino Corręa/Monarco","Milliseconds":270393,"Bytes":9134882,"UnitPrice":"0.99"} +{"TrackId":3153,"Name":"Rugas","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Augusto Garcez/Nelson Cavaquinho","Milliseconds":140930,"Bytes":4703182,"UnitPrice":"0.99"} +{"TrackId":3154,"Name":"Feirinha da Pavuna/Luz do Repente/Bagaço da Laranja","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina Pérolo/Zeca Pagodinho","Milliseconds":107206,"Bytes":3593684,"UnitPrice":"0.99"} +{"TrackId":3155,"Name":"Sem Essa de Malandro Agulha","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Aldir Blanc/Jayme Vignoli","Milliseconds":158484,"Bytes":5332668,"UnitPrice":"0.99"} +{"TrackId":3156,"Name":"Chico Năo Vai na Corimba","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Dudu Nobre/Zeca Pagodinho","Milliseconds":269374,"Bytes":9122188,"UnitPrice":"0.99"} +{"TrackId":3157,"Name":"Papel Principal","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Almir Guineto/Dedé Paraiso/Luverci Ernesto","Milliseconds":217495,"Bytes":7325302,"UnitPrice":"0.99"} +{"TrackId":3158,"Name":"Saudade Louca","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Acyr Marques/Arlindo Cruz/Franco","Milliseconds":243591,"Bytes":8136475,"UnitPrice":"0.99"} +{"TrackId":3159,"Name":"Camarăo que Dorme e Onda Leva","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Acyi Marques/Arlindo Bruz/Braço, Beto Sem/Zeca Pagodinho","Milliseconds":299102,"Bytes":10012231,"UnitPrice":"0.99"} +{"TrackId":3160,"Name":"Sapopemba e Maxambomba","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Nei Lopes/Wilson Moreira","Milliseconds":245394,"Bytes":8268712,"UnitPrice":"0.99"} +{"TrackId":3161,"Name":"Minha Fé","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Murilăo","Milliseconds":206994,"Bytes":6981474,"UnitPrice":"0.99"} +{"TrackId":3162,"Name":"Lua de Ogum","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Ratinho/Zeca Pagodinho","Milliseconds":168463,"Bytes":5719129,"UnitPrice":"0.99"} +{"TrackId":3163,"Name":"Samba pras moças","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Grazielle/Roque Ferreira","Milliseconds":152816,"Bytes":5121366,"UnitPrice":"0.99"} +{"TrackId":3164,"Name":"Verdade","AlbumId":248,"MediaTypeId":1,"GenreId":7,"Composer":"Carlinhos Santana/Nelson Rufino","Milliseconds":332826,"Bytes":11120708,"UnitPrice":"0.99"} +{"TrackId":3165,"Name":"The Brig","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2617325,"Bytes":488919543,"UnitPrice":"1.99"} +{"TrackId":3166,"Name":".07%","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2585794,"Bytes":541715199,"UnitPrice":"1.99"} +{"TrackId":3167,"Name":"Five Years Gone","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2587712,"Bytes":530551890,"UnitPrice":"1.99"} +{"TrackId":3168,"Name":"The Hard Part","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2601017,"Bytes":475996611,"UnitPrice":"1.99"} +{"TrackId":3169,"Name":"The Man Behind the Curtain","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2615990,"Bytes":493951081,"UnitPrice":"1.99"} +{"TrackId":3170,"Name":"Greatest Hits","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2617117,"Bytes":522102916,"UnitPrice":"1.99"} +{"TrackId":3171,"Name":"Landslide","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2600725,"Bytes":518677861,"UnitPrice":"1.99"} +{"TrackId":3172,"Name":"The Office: An American Workplace (Pilot)","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1380833,"Bytes":290482361,"UnitPrice":"1.99"} +{"TrackId":3173,"Name":"Diversity Day","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1306416,"Bytes":257879716,"UnitPrice":"1.99"} +{"TrackId":3174,"Name":"Health Care","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1321791,"Bytes":260493577,"UnitPrice":"1.99"} +{"TrackId":3175,"Name":"The Alliance","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1317125,"Bytes":266203162,"UnitPrice":"1.99"} +{"TrackId":3176,"Name":"Basketball","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1323541,"Bytes":267464180,"UnitPrice":"1.99"} +{"TrackId":3177,"Name":"Hot Girl","AlbumId":249,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1325458,"Bytes":267836576,"UnitPrice":"1.99"} +{"TrackId":3178,"Name":"The Dundies","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1253541,"Bytes":246845576,"UnitPrice":"1.99"} +{"TrackId":3179,"Name":"Sexual Harassment","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1294541,"Bytes":273069146,"UnitPrice":"1.99"} +{"TrackId":3180,"Name":"Office Olympics","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1290458,"Bytes":256247623,"UnitPrice":"1.99"} +{"TrackId":3181,"Name":"The Fire","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1288166,"Bytes":266856017,"UnitPrice":"1.99"} +{"TrackId":3182,"Name":"Halloween","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1315333,"Bytes":249205209,"UnitPrice":"1.99"} +{"TrackId":3183,"Name":"The Fight","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1320028,"Bytes":277149457,"UnitPrice":"1.99"} +{"TrackId":3184,"Name":"The Client","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1299341,"Bytes":253836788,"UnitPrice":"1.99"} +{"TrackId":3185,"Name":"Performance Review","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1292458,"Bytes":256143822,"UnitPrice":"1.99"} +{"TrackId":3186,"Name":"Email Surveillance","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1328870,"Bytes":265101113,"UnitPrice":"1.99"} +{"TrackId":3187,"Name":"Christmas Party","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1282115,"Bytes":260891300,"UnitPrice":"1.99"} +{"TrackId":3188,"Name":"Booze Cruise","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1267958,"Bytes":252518021,"UnitPrice":"1.99"} +{"TrackId":3189,"Name":"The Injury","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1275275,"Bytes":253912762,"UnitPrice":"1.99"} +{"TrackId":3190,"Name":"The Secret","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1264875,"Bytes":253143200,"UnitPrice":"1.99"} +{"TrackId":3191,"Name":"The Carpet","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1264375,"Bytes":256477011,"UnitPrice":"1.99"} +{"TrackId":3192,"Name":"Boys and Girls","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1278333,"Bytes":255245729,"UnitPrice":"1.99"} +{"TrackId":3193,"Name":"Valentine's Day","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1270375,"Bytes":253552710,"UnitPrice":"1.99"} +{"TrackId":3194,"Name":"Dwight's Speech","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1278041,"Bytes":255001728,"UnitPrice":"1.99"} +{"TrackId":3195,"Name":"Take Your Daughter to Work Day","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1268333,"Bytes":253451012,"UnitPrice":"1.99"} +{"TrackId":3196,"Name":"Michael's Birthday","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1237791,"Bytes":247238398,"UnitPrice":"1.99"} +{"TrackId":3197,"Name":"Drug Testing","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1278625,"Bytes":244626927,"UnitPrice":"1.99"} +{"TrackId":3198,"Name":"Conflict Resolution","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1274583,"Bytes":253808658,"UnitPrice":"1.99"} +{"TrackId":3199,"Name":"Casino Night - Season Finale","AlbumId":250,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1712791,"Bytes":327642458,"UnitPrice":"1.99"} +{"TrackId":3200,"Name":"Gay Witch Hunt","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1326534,"Bytes":276942637,"UnitPrice":"1.99"} +{"TrackId":3201,"Name":"The Convention","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1297213,"Bytes":255117055,"UnitPrice":"1.99"} +{"TrackId":3202,"Name":"The Coup","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1276526,"Bytes":267205501,"UnitPrice":"1.99"} +{"TrackId":3203,"Name":"Grief Counseling","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1282615,"Bytes":256912833,"UnitPrice":"1.99"} +{"TrackId":3204,"Name":"The Initiation","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1280113,"Bytes":251728257,"UnitPrice":"1.99"} +{"TrackId":3205,"Name":"Diwali","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1279904,"Bytes":252726644,"UnitPrice":"1.99"} +{"TrackId":3206,"Name":"Branch Closing","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1822781,"Bytes":358761786,"UnitPrice":"1.99"} +{"TrackId":3207,"Name":"The Merger","AlbumId":251,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":1801926,"Bytes":345960631,"UnitPrice":"1.99"} +{"TrackId":3208,"Name":"The Convict","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1273064,"Bytes":248863427,"UnitPrice":"1.99"} +{"TrackId":3209,"Name":"A Benihana Christmas, Pts. 1 & 2","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":2519436,"Bytes":515301752,"UnitPrice":"1.99"} +{"TrackId":3210,"Name":"Back from Vacation","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1271688,"Bytes":245378749,"UnitPrice":"1.99"} +{"TrackId":3211,"Name":"Traveling Salesmen","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1289039,"Bytes":250822697,"UnitPrice":"1.99"} +{"TrackId":3212,"Name":"Producer's Cut: The Return","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1700241,"Bytes":337219980,"UnitPrice":"1.99"} +{"TrackId":3213,"Name":"Ben Franklin","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1271938,"Bytes":264168080,"UnitPrice":"1.99"} +{"TrackId":3214,"Name":"Phyllis's Wedding","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1271521,"Bytes":258561054,"UnitPrice":"1.99"} +{"TrackId":3215,"Name":"Business School","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1302093,"Bytes":254402605,"UnitPrice":"1.99"} +{"TrackId":3216,"Name":"Cocktails","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1272522,"Bytes":259011909,"UnitPrice":"1.99"} +{"TrackId":3217,"Name":"The Negotiation","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1767851,"Bytes":371663719,"UnitPrice":"1.99"} +{"TrackId":3218,"Name":"Safety Training","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1271229,"Bytes":253054534,"UnitPrice":"1.99"} +{"TrackId":3219,"Name":"Product Recall","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1268268,"Bytes":251208610,"UnitPrice":"1.99"} +{"TrackId":3220,"Name":"Women's Appreciation","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1732649,"Bytes":338778844,"UnitPrice":"1.99"} +{"TrackId":3221,"Name":"Beach Games","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1676134,"Bytes":333671149,"UnitPrice":"1.99"} +{"TrackId":3222,"Name":"The Job","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":2541875,"Bytes":501060138,"UnitPrice":"1.99"} +{"TrackId":3223,"Name":"How to Stop an Exploding Man","AlbumId":228,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2687103,"Bytes":487881159,"UnitPrice":"1.99"} +{"TrackId":3224,"Name":"Through a Looking Glass","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":5088838,"Bytes":1059546140,"UnitPrice":"1.99"} +{"TrackId":3225,"Name":"Your Time Is Gonna Come","AlbumId":252,"MediaTypeId":2,"GenreId":1,"Composer":"Page, Jones","Milliseconds":310774,"Bytes":5126563,"UnitPrice":"0.99"} +{"TrackId":3226,"Name":"Battlestar Galactica, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2952702,"Bytes":541359437,"UnitPrice":"1.99"} +{"TrackId":3227,"Name":"Battlestar Galactica, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2956081,"Bytes":521387924,"UnitPrice":"1.99"} +{"TrackId":3228,"Name":"Battlestar Galactica, Pt. 3","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2927802,"Bytes":554509033,"UnitPrice":"1.99"} +{"TrackId":3229,"Name":"Lost Planet of the Gods, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2922547,"Bytes":537812711,"UnitPrice":"1.99"} +{"TrackId":3230,"Name":"Lost Planet of the Gods, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2914664,"Bytes":534343985,"UnitPrice":"1.99"} +{"TrackId":3231,"Name":"The Lost Warrior","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2920045,"Bytes":558872190,"UnitPrice":"1.99"} +{"TrackId":3232,"Name":"The Long Patrol","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2925008,"Bytes":513122217,"UnitPrice":"1.99"} +{"TrackId":3233,"Name":"The Gun On Ice Planet Zero, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2907615,"Bytes":540980196,"UnitPrice":"1.99"} +{"TrackId":3234,"Name":"The Gun On Ice Planet Zero, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2924341,"Bytes":546542281,"UnitPrice":"1.99"} +{"TrackId":3235,"Name":"The Magnificent Warriors","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2924716,"Bytes":570152232,"UnitPrice":"1.99"} +{"TrackId":3236,"Name":"The Young Lords","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2863571,"Bytes":587051735,"UnitPrice":"1.99"} +{"TrackId":3237,"Name":"The Living Legend, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2924507,"Bytes":503641007,"UnitPrice":"1.99"} +{"TrackId":3238,"Name":"The Living Legend, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2923298,"Bytes":515632754,"UnitPrice":"1.99"} +{"TrackId":3239,"Name":"Fire In Space","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2926593,"Bytes":536784757,"UnitPrice":"1.99"} +{"TrackId":3240,"Name":"War of the Gods, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2922630,"Bytes":505761343,"UnitPrice":"1.99"} +{"TrackId":3241,"Name":"War of the Gods, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2923381,"Bytes":487899692,"UnitPrice":"1.99"} +{"TrackId":3242,"Name":"The Man With Nine Lives","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2956998,"Bytes":577829804,"UnitPrice":"1.99"} +{"TrackId":3243,"Name":"Murder On the Rising Star","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2935894,"Bytes":551759986,"UnitPrice":"1.99"} +{"TrackId":3244,"Name":"Greetings from Earth, Pt. 1","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2960293,"Bytes":536824558,"UnitPrice":"1.99"} +{"TrackId":3245,"Name":"Greetings from Earth, Pt. 2","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2903778,"Bytes":527842860,"UnitPrice":"1.99"} +{"TrackId":3246,"Name":"Baltar's Escape","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2922088,"Bytes":525564224,"UnitPrice":"1.99"} +{"TrackId":3247,"Name":"Experiment In Terra","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2923548,"Bytes":547982556,"UnitPrice":"1.99"} +{"TrackId":3248,"Name":"Take the Celestra","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2927677,"Bytes":512381289,"UnitPrice":"1.99"} +{"TrackId":3249,"Name":"The Hand of God","AlbumId":253,"MediaTypeId":3,"GenreId":20,"Composer":null,"Milliseconds":2924007,"Bytes":536583079,"UnitPrice":"1.99"} +{"TrackId":3250,"Name":"Pilot","AlbumId":254,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2484567,"Bytes":492670102,"UnitPrice":"1.99"} +{"TrackId":3251,"Name":"Through the Looking Glass, Pt. 2","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2617117,"Bytes":550943353,"UnitPrice":"1.99"} +{"TrackId":3252,"Name":"Through the Looking Glass, Pt. 1","AlbumId":229,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2610860,"Bytes":493211809,"UnitPrice":"1.99"} +{"TrackId":3253,"Name":"Instant Karma","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":193188,"Bytes":3150090,"UnitPrice":"0.99"} +{"TrackId":3254,"Name":"#9 Dream","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":278312,"Bytes":4506425,"UnitPrice":"0.99"} +{"TrackId":3255,"Name":"Mother","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":287740,"Bytes":4656660,"UnitPrice":"0.99"} +{"TrackId":3256,"Name":"Give Peace a Chance","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":274644,"Bytes":4448025,"UnitPrice":"0.99"} +{"TrackId":3257,"Name":"Cold Turkey","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":281424,"Bytes":4556003,"UnitPrice":"0.99"} +{"TrackId":3258,"Name":"Whatever Gets You Thru the Night","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":215084,"Bytes":3499018,"UnitPrice":"0.99"} +{"TrackId":3259,"Name":"I'm Losing You","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":240719,"Bytes":3907467,"UnitPrice":"0.99"} +{"TrackId":3260,"Name":"Gimme Some Truth","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":232778,"Bytes":3780807,"UnitPrice":"0.99"} +{"TrackId":3261,"Name":"Oh, My Love","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":159473,"Bytes":2612788,"UnitPrice":"0.99"} +{"TrackId":3262,"Name":"Imagine","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":192329,"Bytes":3136271,"UnitPrice":"0.99"} +{"TrackId":3263,"Name":"Nobody Told Me","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":210348,"Bytes":3423395,"UnitPrice":"0.99"} +{"TrackId":3264,"Name":"Jealous Guy","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":239094,"Bytes":3881620,"UnitPrice":"0.99"} +{"TrackId":3265,"Name":"Working Class Hero","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":265449,"Bytes":4301430,"UnitPrice":"0.99"} +{"TrackId":3266,"Name":"Power to the People","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":213018,"Bytes":3466029,"UnitPrice":"0.99"} +{"TrackId":3267,"Name":"Imagine","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":219078,"Bytes":3562542,"UnitPrice":"0.99"} +{"TrackId":3268,"Name":"Beautiful Boy","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":227995,"Bytes":3704642,"UnitPrice":"0.99"} +{"TrackId":3269,"Name":"Isolation","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":156059,"Bytes":2558399,"UnitPrice":"0.99"} +{"TrackId":3270,"Name":"Watching the Wheels","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":198645,"Bytes":3237063,"UnitPrice":"0.99"} +{"TrackId":3271,"Name":"Grow Old With Me","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":149093,"Bytes":2447453,"UnitPrice":"0.99"} +{"TrackId":3272,"Name":"Gimme Some Truth","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":187546,"Bytes":3060083,"UnitPrice":"0.99"} +{"TrackId":3273,"Name":"[Just Like] Starting Over","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":215549,"Bytes":3506308,"UnitPrice":"0.99"} +{"TrackId":3274,"Name":"God","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":260410,"Bytes":4221135,"UnitPrice":"0.99"} +{"TrackId":3275,"Name":"Real Love","AlbumId":255,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":236911,"Bytes":3846658,"UnitPrice":"0.99"} +{"TrackId":3276,"Name":"Sympton of the Universe","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":340890,"Bytes":5489313,"UnitPrice":"0.99"} +{"TrackId":3277,"Name":"Snowblind","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":295960,"Bytes":4773171,"UnitPrice":"0.99"} +{"TrackId":3278,"Name":"Black Sabbath","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":364180,"Bytes":5860455,"UnitPrice":"0.99"} +{"TrackId":3279,"Name":"Fairies Wear Boots","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":392764,"Bytes":6315916,"UnitPrice":"0.99"} +{"TrackId":3280,"Name":"War Pigs","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":515435,"Bytes":8270194,"UnitPrice":"0.99"} +{"TrackId":3281,"Name":"The Wizard","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":282678,"Bytes":4561796,"UnitPrice":"0.99"} +{"TrackId":3282,"Name":"N.I.B.","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":335248,"Bytes":5399456,"UnitPrice":"0.99"} +{"TrackId":3283,"Name":"Sweet Leaf","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":354706,"Bytes":5709700,"UnitPrice":"0.99"} +{"TrackId":3284,"Name":"Never Say Die","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":258343,"Bytes":4173799,"UnitPrice":"0.99"} +{"TrackId":3285,"Name":"Sabbath, Bloody Sabbath","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":333622,"Bytes":5373633,"UnitPrice":"0.99"} +{"TrackId":3286,"Name":"Iron Man/Children of the Grave","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":552308,"Bytes":8858616,"UnitPrice":"0.99"} +{"TrackId":3287,"Name":"Paranoid","AlbumId":256,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":189171,"Bytes":3071042,"UnitPrice":"0.99"} +{"TrackId":3288,"Name":"Rock You Like a Hurricane","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":255766,"Bytes":4300973,"UnitPrice":"0.99"} +{"TrackId":3289,"Name":"No One Like You","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":240325,"Bytes":4050259,"UnitPrice":"0.99"} +{"TrackId":3290,"Name":"The Zoo","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":332740,"Bytes":5550779,"UnitPrice":"0.99"} +{"TrackId":3291,"Name":"Loving You Sunday Morning","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":339125,"Bytes":5654493,"UnitPrice":"0.99"} +{"TrackId":3292,"Name":"Still Loving You","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":390674,"Bytes":6491444,"UnitPrice":"0.99"} +{"TrackId":3293,"Name":"Big City Nights","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":251865,"Bytes":4237651,"UnitPrice":"0.99"} +{"TrackId":3294,"Name":"Believe in Love","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":325774,"Bytes":5437651,"UnitPrice":"0.99"} +{"TrackId":3295,"Name":"Rhythm of Love","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":231246,"Bytes":3902834,"UnitPrice":"0.99"} +{"TrackId":3296,"Name":"I Can't Explain","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":205332,"Bytes":3482099,"UnitPrice":"0.99"} +{"TrackId":3297,"Name":"Tease Me Please Me","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":287229,"Bytes":4811894,"UnitPrice":"0.99"} +{"TrackId":3298,"Name":"Wind of Change","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":315325,"Bytes":5268002,"UnitPrice":"0.99"} +{"TrackId":3299,"Name":"Send Me an Angel","AlbumId":257,"MediaTypeId":2,"GenreId":1,"Composer":null,"Milliseconds":273041,"Bytes":4581492,"UnitPrice":"0.99"} +{"TrackId":3300,"Name":"Jump Around","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud","Milliseconds":217835,"Bytes":8715653,"UnitPrice":"0.99"} +{"TrackId":3301,"Name":"Salutations","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":69120,"Bytes":2767047,"UnitPrice":"0.99"} +{"TrackId":3302,"Name":"Put Your Head Out","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Freese/L. Muggerud","Milliseconds":182230,"Bytes":7291473,"UnitPrice":"0.99"} +{"TrackId":3303,"Name":"Top O' The Morning To Ya","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":216633,"Bytes":8667599,"UnitPrice":"0.99"} +{"TrackId":3304,"Name":"Commercial 1","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"L. Muggerud","Milliseconds":7941,"Bytes":319888,"UnitPrice":"0.99"} +{"TrackId":3305,"Name":"House And The Rising Sun","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/J. Vasquez/L. Dimant","Milliseconds":219402,"Bytes":8778369,"UnitPrice":"0.99"} +{"TrackId":3306,"Name":"Shamrocks And Shenanigans","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":218331,"Bytes":8735518,"UnitPrice":"0.99"} +{"TrackId":3307,"Name":"House Of Pain Anthem","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":155611,"Bytes":6226713,"UnitPrice":"0.99"} +{"TrackId":3308,"Name":"Danny Boy, Danny Boy","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud","Milliseconds":114520,"Bytes":4583091,"UnitPrice":"0.99"} +{"TrackId":3309,"Name":"Guess Who's Back","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud","Milliseconds":238393,"Bytes":9537994,"UnitPrice":"0.99"} +{"TrackId":3310,"Name":"Commercial 2","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"L. Muggerud","Milliseconds":21211,"Bytes":850698,"UnitPrice":"0.99"} +{"TrackId":3311,"Name":"Put On Your Shit Kickers","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud","Milliseconds":190432,"Bytes":7619569,"UnitPrice":"0.99"} +{"TrackId":3312,"Name":"Come And Get Some Of This","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud/R. Medrano","Milliseconds":170475,"Bytes":6821279,"UnitPrice":"0.99"} +{"TrackId":3313,"Name":"Life Goes On","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/R. Medrano","Milliseconds":163030,"Bytes":6523458,"UnitPrice":"0.99"} +{"TrackId":3314,"Name":"One For The Road","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant/L. Muggerud","Milliseconds":170213,"Bytes":6810820,"UnitPrice":"0.99"} +{"TrackId":3315,"Name":"Feel It","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/R. Medrano","Milliseconds":239908,"Bytes":9598588,"UnitPrice":"0.99"} +{"TrackId":3316,"Name":"All My Love","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":200620,"Bytes":8027065,"UnitPrice":"0.99"} +{"TrackId":3317,"Name":"Jump Around (Pete Rock Remix)","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Muggerud","Milliseconds":236120,"Bytes":9447101,"UnitPrice":"0.99"} +{"TrackId":3318,"Name":"Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)","AlbumId":258,"MediaTypeId":1,"GenreId":17,"Composer":"E. Schrody/L. Dimant","Milliseconds":237035,"Bytes":9483705,"UnitPrice":"0.99"} +{"TrackId":3319,"Name":"Instinto Colectivo","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":300564,"Bytes":12024875,"UnitPrice":"0.99"} +{"TrackId":3320,"Name":"Chapa o Coco","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":143830,"Bytes":5755478,"UnitPrice":"0.99"} +{"TrackId":3321,"Name":"Prostituta","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":359000,"Bytes":14362307,"UnitPrice":"0.99"} +{"TrackId":3322,"Name":"Eu So Queria Sumir","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":269740,"Bytes":10791921,"UnitPrice":"0.99"} +{"TrackId":3323,"Name":"Tres Reis","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":304143,"Bytes":12168015,"UnitPrice":"0.99"} +{"TrackId":3324,"Name":"Um Lugar ao Sol","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":212323,"Bytes":8495217,"UnitPrice":"0.99"} +{"TrackId":3325,"Name":"Batalha Naval","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":285727,"Bytes":11431382,"UnitPrice":"0.99"} +{"TrackId":3326,"Name":"Todo o Carnaval tem seu Fim","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":237426,"Bytes":9499371,"UnitPrice":"0.99"} +{"TrackId":3327,"Name":"O Misterio do Samba","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":226142,"Bytes":9047970,"UnitPrice":"0.99"} +{"TrackId":3328,"Name":"Armadura","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":232881,"Bytes":9317533,"UnitPrice":"0.99"} +{"TrackId":3329,"Name":"Na Ladeira","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":221570,"Bytes":8865099,"UnitPrice":"0.99"} +{"TrackId":3330,"Name":"Carimbo","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":328751,"Bytes":13152314,"UnitPrice":"0.99"} +{"TrackId":3331,"Name":"Catimbo","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":254484,"Bytes":10181692,"UnitPrice":"0.99"} +{"TrackId":3332,"Name":"Funk de Bamba","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":237322,"Bytes":9495184,"UnitPrice":"0.99"} +{"TrackId":3333,"Name":"Chega no Suingue","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":221805,"Bytes":8874509,"UnitPrice":"0.99"} +{"TrackId":3334,"Name":"Mun-Ra","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":274651,"Bytes":10988338,"UnitPrice":"0.99"} +{"TrackId":3335,"Name":"Freestyle Love","AlbumId":259,"MediaTypeId":1,"GenreId":15,"Composer":null,"Milliseconds":318484,"Bytes":12741680,"UnitPrice":"0.99"} +{"TrackId":3336,"Name":"War Pigs","AlbumId":260,"MediaTypeId":4,"GenreId":23,"Composer":null,"Milliseconds":234013,"Bytes":8052374,"UnitPrice":"0.99"} +{"TrackId":3337,"Name":"Past, Present, and Future","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2492867,"Bytes":490796184,"UnitPrice":"1.99"} +{"TrackId":3338,"Name":"The Beginning of the End","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2611903,"Bytes":526865050,"UnitPrice":"1.99"} +{"TrackId":3339,"Name":"LOST Season 4 Trailer","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":112712,"Bytes":20831818,"UnitPrice":"1.99"} +{"TrackId":3340,"Name":"LOST In 8:15","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":497163,"Bytes":98460675,"UnitPrice":"1.99"} +{"TrackId":3341,"Name":"Confirmed Dead","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2611986,"Bytes":512168460,"UnitPrice":"1.99"} +{"TrackId":3342,"Name":"The Economist","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2609025,"Bytes":516934914,"UnitPrice":"1.99"} +{"TrackId":3343,"Name":"Eggtown","AlbumId":261,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2608817,"Bytes":501061240,"UnitPrice":"1.99"} +{"TrackId":3344,"Name":"The Constant","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2611569,"Bytes":520209363,"UnitPrice":"1.99"} +{"TrackId":3345,"Name":"The Other Woman","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2605021,"Bytes":513246663,"UnitPrice":"1.99"} +{"TrackId":3346,"Name":"Ji Yeon","AlbumId":261,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2588797,"Bytes":506458858,"UnitPrice":"1.99"} +{"TrackId":3347,"Name":"Meet Kevin Johnson","AlbumId":261,"MediaTypeId":3,"GenreId":19,"Composer":null,"Milliseconds":2612028,"Bytes":504132981,"UnitPrice":"1.99"} +{"TrackId":3348,"Name":"The Shape of Things to Come","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2591299,"Bytes":502284266,"UnitPrice":"1.99"} +{"TrackId":3349,"Name":"Amanda","AlbumId":262,"MediaTypeId":5,"GenreId":2,"Composer":"Luca Gusella","Milliseconds":246503,"Bytes":4011615,"UnitPrice":"0.99"} +{"TrackId":3350,"Name":"Despertar","AlbumId":262,"MediaTypeId":5,"GenreId":2,"Composer":"Andrea Dulbecco","Milliseconds":307385,"Bytes":4821485,"UnitPrice":"0.99"} +{"TrackId":3351,"Name":"Din Din Wo (Little Child)","AlbumId":263,"MediaTypeId":5,"GenreId":16,"Composer":"Habib Koité","Milliseconds":285837,"Bytes":4615841,"UnitPrice":"0.99"} +{"TrackId":3352,"Name":"Distance","AlbumId":264,"MediaTypeId":5,"GenreId":15,"Composer":"Karsh Kale/Vishal Vaid","Milliseconds":327122,"Bytes":5327463,"UnitPrice":"0.99"} +{"TrackId":3353,"Name":"I Guess You're Right","AlbumId":265,"MediaTypeId":5,"GenreId":1,"Composer":"Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris","Milliseconds":212044,"Bytes":3453849,"UnitPrice":"0.99"} +{"TrackId":3354,"Name":"I Ka Barra (Your Work)","AlbumId":263,"MediaTypeId":5,"GenreId":16,"Composer":"Habib Koité","Milliseconds":300605,"Bytes":4855457,"UnitPrice":"0.99"} +{"TrackId":3355,"Name":"Love Comes","AlbumId":265,"MediaTypeId":5,"GenreId":1,"Composer":"Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris","Milliseconds":199923,"Bytes":3240609,"UnitPrice":"0.99"} +{"TrackId":3356,"Name":"Muita Bobeira","AlbumId":266,"MediaTypeId":5,"GenreId":7,"Composer":"Luciana Souza","Milliseconds":172710,"Bytes":2775071,"UnitPrice":"0.99"} +{"TrackId":3357,"Name":"OAM's Blues","AlbumId":267,"MediaTypeId":5,"GenreId":2,"Composer":"Aaron Goldberg","Milliseconds":266936,"Bytes":4292028,"UnitPrice":"0.99"} +{"TrackId":3358,"Name":"One Step Beyond","AlbumId":264,"MediaTypeId":5,"GenreId":15,"Composer":"Karsh Kale","Milliseconds":366085,"Bytes":6034098,"UnitPrice":"0.99"} +{"TrackId":3359,"Name":"Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace","AlbumId":268,"MediaTypeId":5,"GenreId":24,"Composer":"Ludwig van Beethoven","Milliseconds":356426,"Bytes":5817216,"UnitPrice":"0.99"} +{"TrackId":3360,"Name":"Something Nice Back Home","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2612779,"Bytes":484711353,"UnitPrice":"1.99"} +{"TrackId":3361,"Name":"Cabin Fever","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2612028,"Bytes":477733942,"UnitPrice":"1.99"} +{"TrackId":3362,"Name":"There's No Place Like Home, Pt. 1","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2609526,"Bytes":522919189,"UnitPrice":"1.99"} +{"TrackId":3363,"Name":"There's No Place Like Home, Pt. 2","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2497956,"Bytes":523748920,"UnitPrice":"1.99"} +{"TrackId":3364,"Name":"There's No Place Like Home, Pt. 3","AlbumId":261,"MediaTypeId":3,"GenreId":21,"Composer":null,"Milliseconds":2582957,"Bytes":486161766,"UnitPrice":"1.99"} +{"TrackId":3365,"Name":"Say Hello 2 Heaven","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":384497,"Bytes":6477217,"UnitPrice":"0.99"} +{"TrackId":3366,"Name":"Reach Down","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":672773,"Bytes":11157785,"UnitPrice":"0.99"} +{"TrackId":3367,"Name":"Hunger Strike","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":246292,"Bytes":4233212,"UnitPrice":"0.99"} +{"TrackId":3368,"Name":"Pushin Forward Back","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":225278,"Bytes":3892066,"UnitPrice":"0.99"} +{"TrackId":3369,"Name":"Call Me a Dog","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":304458,"Bytes":5177612,"UnitPrice":"0.99"} +{"TrackId":3370,"Name":"Times of Trouble","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":342539,"Bytes":5795951,"UnitPrice":"0.99"} +{"TrackId":3371,"Name":"Wooden Jesus","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":250565,"Bytes":4302603,"UnitPrice":"0.99"} +{"TrackId":3372,"Name":"Your Savior","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":244226,"Bytes":4199626,"UnitPrice":"0.99"} +{"TrackId":3373,"Name":"Four Walled World","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":414474,"Bytes":6964048,"UnitPrice":"0.99"} +{"TrackId":3374,"Name":"All Night Thing","AlbumId":269,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":231803,"Bytes":3997982,"UnitPrice":"0.99"} +{"TrackId":3375,"Name":"No Such Thing","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":224837,"Bytes":3691272,"UnitPrice":"0.99"} +{"TrackId":3376,"Name":"Poison Eye","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":237120,"Bytes":3890037,"UnitPrice":"0.99"} +{"TrackId":3377,"Name":"Arms Around Your Love","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":214016,"Bytes":3516224,"UnitPrice":"0.99"} +{"TrackId":3378,"Name":"Safe and Sound","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":256764,"Bytes":4207769,"UnitPrice":"0.99"} +{"TrackId":3379,"Name":"She'll Never Be Your Man","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":204078,"Bytes":3355715,"UnitPrice":"0.99"} +{"TrackId":3380,"Name":"Ghosts","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":231547,"Bytes":3799745,"UnitPrice":"0.99"} +{"TrackId":3381,"Name":"Killing Birds","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":218498,"Bytes":3588776,"UnitPrice":"0.99"} +{"TrackId":3382,"Name":"Billie Jean","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Michael Jackson","Milliseconds":281401,"Bytes":4606408,"UnitPrice":"0.99"} +{"TrackId":3383,"Name":"Scar On the Sky","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":220193,"Bytes":3616618,"UnitPrice":"0.99"} +{"TrackId":3384,"Name":"Your Soul Today","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":205959,"Bytes":3385722,"UnitPrice":"0.99"} +{"TrackId":3385,"Name":"Finally Forever","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":217035,"Bytes":3565098,"UnitPrice":"0.99"} +{"TrackId":3386,"Name":"Silence the Voices","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":267376,"Bytes":4379597,"UnitPrice":"0.99"} +{"TrackId":3387,"Name":"Disappearing Act","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":273320,"Bytes":4476203,"UnitPrice":"0.99"} +{"TrackId":3388,"Name":"You Know My Name","AlbumId":270,"MediaTypeId":2,"GenreId":23,"Composer":"Chris Cornell","Milliseconds":240255,"Bytes":3940651,"UnitPrice":"0.99"} +{"TrackId":3389,"Name":"Revelations","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":252376,"Bytes":4111051,"UnitPrice":"0.99"} +{"TrackId":3390,"Name":"One and the Same","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":217732,"Bytes":3559040,"UnitPrice":"0.99"} +{"TrackId":3391,"Name":"Sound of a Gun","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":260154,"Bytes":4234990,"UnitPrice":"0.99"} +{"TrackId":3392,"Name":"Until We Fall","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":230758,"Bytes":3766605,"UnitPrice":"0.99"} +{"TrackId":3393,"Name":"Original Fire","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":218916,"Bytes":3577821,"UnitPrice":"0.99"} +{"TrackId":3394,"Name":"Broken City","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":228366,"Bytes":3728955,"UnitPrice":"0.99"} +{"TrackId":3395,"Name":"Somedays","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":213831,"Bytes":3497176,"UnitPrice":"0.99"} +{"TrackId":3396,"Name":"Shape of Things to Come","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":274597,"Bytes":4465399,"UnitPrice":"0.99"} +{"TrackId":3397,"Name":"Jewel of the Summertime","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":233242,"Bytes":3806103,"UnitPrice":"0.99"} +{"TrackId":3398,"Name":"Wide Awake","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":266308,"Bytes":4333050,"UnitPrice":"0.99"} +{"TrackId":3399,"Name":"Nothing Left to Say But Goodbye","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":213041,"Bytes":3484335,"UnitPrice":"0.99"} +{"TrackId":3400,"Name":"Moth","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":298049,"Bytes":4838884,"UnitPrice":"0.99"} +{"TrackId":3401,"Name":"Show Me How to Live (Live at the Quart Festival)","AlbumId":271,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":301974,"Bytes":4901540,"UnitPrice":"0.99"} +{"TrackId":3402,"Name":"Band Members Discuss Tracks from \"Revelations\"","AlbumId":271,"MediaTypeId":3,"GenreId":23,"Composer":null,"Milliseconds":294294,"Bytes":61118891,"UnitPrice":"0.99"} +{"TrackId":3403,"Name":"Intoitus: Adorate Deum","AlbumId":272,"MediaTypeId":2,"GenreId":24,"Composer":"Anonymous","Milliseconds":245317,"Bytes":4123531,"UnitPrice":"0.99"} +{"TrackId":3404,"Name":"Miserere mei, Deus","AlbumId":273,"MediaTypeId":2,"GenreId":24,"Composer":"Gregorio Allegri","Milliseconds":501503,"Bytes":8285941,"UnitPrice":"0.99"} +{"TrackId":3405,"Name":"Canon and Gigue in D Major: I. Canon","AlbumId":274,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Pachelbel","Milliseconds":271788,"Bytes":4438393,"UnitPrice":"0.99"} +{"TrackId":3406,"Name":"Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro","AlbumId":275,"MediaTypeId":2,"GenreId":24,"Composer":"Antonio Vivaldi","Milliseconds":199086,"Bytes":3347810,"UnitPrice":"0.99"} +{"TrackId":3407,"Name":"Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace","AlbumId":276,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":193722,"Bytes":3192890,"UnitPrice":"0.99"} +{"TrackId":3408,"Name":"Aria Mit 30 Veränderungen, BWV 988 \"Goldberg Variations\": Aria","AlbumId":277,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":120463,"Bytes":2081895,"UnitPrice":"0.99"} +{"TrackId":3409,"Name":"Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Prélude","AlbumId":278,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":143288,"Bytes":2315495,"UnitPrice":"0.99"} +{"TrackId":3410,"Name":"The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound","AlbumId":279,"MediaTypeId":2,"GenreId":24,"Composer":"George Frideric Handel","Milliseconds":582029,"Bytes":9553140,"UnitPrice":"0.99"} +{"TrackId":3411,"Name":"Solomon HWV 67: The Arrival of the Queen of Sheba","AlbumId":280,"MediaTypeId":2,"GenreId":24,"Composer":"George Frideric Handel","Milliseconds":197135,"Bytes":3247914,"UnitPrice":"0.99"} +{"TrackId":3412,"Name":"\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro","AlbumId":281,"MediaTypeId":2,"GenreId":24,"Composer":"Wolfgang Amadeus Mozart","Milliseconds":348971,"Bytes":5760129,"UnitPrice":"0.99"} +{"TrackId":3413,"Name":"Concerto for Clarinet in A Major, K. 622: II. Adagio","AlbumId":282,"MediaTypeId":2,"GenreId":24,"Composer":"Wolfgang Amadeus Mozart","Milliseconds":394482,"Bytes":6474980,"UnitPrice":"0.99"} +{"TrackId":3414,"Name":"Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso","AlbumId":283,"MediaTypeId":4,"GenreId":24,"Composer":"Franz Joseph Haydn","Milliseconds":306687,"Bytes":10085867,"UnitPrice":"0.99"} +{"TrackId":3415,"Name":"Symphony No.5 in C Minor: I. Allegro con brio","AlbumId":284,"MediaTypeId":2,"GenreId":24,"Composer":"Ludwig van Beethoven","Milliseconds":392462,"Bytes":6419730,"UnitPrice":"0.99"} +{"TrackId":3416,"Name":"Ave Maria","AlbumId":285,"MediaTypeId":2,"GenreId":24,"Composer":"Franz Schubert","Milliseconds":338243,"Bytes":5605648,"UnitPrice":"0.99"} +{"TrackId":3417,"Name":"Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"","AlbumId":286,"MediaTypeId":2,"GenreId":24,"Composer":"Giuseppe Verdi","Milliseconds":274504,"Bytes":4498583,"UnitPrice":"0.99"} +{"TrackId":3418,"Name":"Die Walküre: The Ride of the Valkyries","AlbumId":287,"MediaTypeId":2,"GenreId":24,"Composer":"Richard Wagner","Milliseconds":189008,"Bytes":3114209,"UnitPrice":"0.99"} +{"TrackId":3419,"Name":"Requiem, Op.48: 4. Pie Jesu","AlbumId":288,"MediaTypeId":2,"GenreId":24,"Composer":"Gabriel Fauré","Milliseconds":258924,"Bytes":4314850,"UnitPrice":"0.99"} +{"TrackId":3420,"Name":"The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy","AlbumId":289,"MediaTypeId":2,"GenreId":24,"Composer":"Peter Ilyich Tchaikovsky","Milliseconds":304226,"Bytes":5184289,"UnitPrice":"0.99"} +{"TrackId":3421,"Name":"Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"","AlbumId":290,"MediaTypeId":2,"GenreId":24,"Composer":"Edward Elgar","Milliseconds":250031,"Bytes":4124707,"UnitPrice":"0.99"} +{"TrackId":3422,"Name":"Madama Butterfly: Un Bel Dě Vedremo","AlbumId":291,"MediaTypeId":2,"GenreId":24,"Composer":"Giacomo Puccini","Milliseconds":277639,"Bytes":4588197,"UnitPrice":"0.99"} +{"TrackId":3423,"Name":"Jupiter, the Bringer of Jollity","AlbumId":292,"MediaTypeId":2,"GenreId":24,"Composer":"Gustav Holst","Milliseconds":522099,"Bytes":8547876,"UnitPrice":"0.99"} +{"TrackId":3424,"Name":"Turandot, Act III, Nessun dorma!","AlbumId":293,"MediaTypeId":2,"GenreId":24,"Composer":"Giacomo Puccini","Milliseconds":176911,"Bytes":2920890,"UnitPrice":"0.99"} +{"TrackId":3425,"Name":"Adagio for Strings from the String Quartet, Op. 11","AlbumId":294,"MediaTypeId":2,"GenreId":24,"Composer":"Samuel Barber","Milliseconds":596519,"Bytes":9585597,"UnitPrice":"0.99"} +{"TrackId":3426,"Name":"Carmina Burana: O Fortuna","AlbumId":295,"MediaTypeId":2,"GenreId":24,"Composer":"Carl Orff","Milliseconds":156710,"Bytes":2630293,"UnitPrice":"0.99"} +{"TrackId":3427,"Name":"Fanfare for the Common Man","AlbumId":296,"MediaTypeId":2,"GenreId":24,"Composer":"Aaron Copland","Milliseconds":198064,"Bytes":3211245,"UnitPrice":"0.99"} +{"TrackId":3428,"Name":"Branch Closing","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1814855,"Bytes":360331351,"UnitPrice":"1.99"} +{"TrackId":3429,"Name":"The Return","AlbumId":251,"MediaTypeId":3,"GenreId":22,"Composer":null,"Milliseconds":1705080,"Bytes":343877320,"UnitPrice":"1.99"} +{"TrackId":3430,"Name":"Toccata and Fugue in D Minor, BWV 565: I. Toccata","AlbumId":297,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":153901,"Bytes":2649938,"UnitPrice":"0.99"} +{"TrackId":3431,"Name":"Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio","AlbumId":298,"MediaTypeId":2,"GenreId":24,"Composer":"Sergei Prokofiev","Milliseconds":254001,"Bytes":4195542,"UnitPrice":"0.99"} +{"TrackId":3432,"Name":"Scheherazade, Op. 35: I. The Sea and Sindbad's Ship","AlbumId":299,"MediaTypeId":2,"GenreId":24,"Composer":"Nikolai Rimsky-Korsakov","Milliseconds":545203,"Bytes":8916313,"UnitPrice":"0.99"} +{"TrackId":3433,"Name":"Concerto No.2 in F Major, BWV1047, I. Allegro","AlbumId":300,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":307244,"Bytes":5064553,"UnitPrice":"0.99"} +{"TrackId":3434,"Name":"Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto","AlbumId":301,"MediaTypeId":2,"GenreId":24,"Composer":"Frédéric Chopin","Milliseconds":560342,"Bytes":9160082,"UnitPrice":"0.99"} +{"TrackId":3435,"Name":"Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico","AlbumId":302,"MediaTypeId":2,"GenreId":24,"Composer":"Pietro Mascagni","Milliseconds":243436,"Bytes":4001276,"UnitPrice":"0.99"} +{"TrackId":3436,"Name":"Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)","AlbumId":303,"MediaTypeId":2,"GenreId":24,"Composer":"Jean Sibelius","Milliseconds":406000,"Bytes":5908455,"UnitPrice":"0.99"} +{"TrackId":3437,"Name":"Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto","AlbumId":304,"MediaTypeId":2,"GenreId":24,"Composer":"Ludwig van Beethoven","Milliseconds":391000,"Bytes":6318740,"UnitPrice":"0.99"} +{"TrackId":3438,"Name":"Fantasia On Greensleeves","AlbumId":280,"MediaTypeId":2,"GenreId":24,"Composer":"Ralph Vaughan Williams","Milliseconds":268066,"Bytes":4513190,"UnitPrice":"0.99"} +{"TrackId":3439,"Name":"Das Lied Von Der Erde, Von Der Jugend","AlbumId":305,"MediaTypeId":2,"GenreId":24,"Composer":"Gustav Mahler","Milliseconds":223583,"Bytes":3700206,"UnitPrice":"0.99"} +{"TrackId":3440,"Name":"Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato","AlbumId":306,"MediaTypeId":2,"GenreId":24,"Composer":"Edward Elgar","Milliseconds":483133,"Bytes":7865479,"UnitPrice":"0.99"} +{"TrackId":3441,"Name":"Two Fanfares for Orchestra: II. Short Ride in a Fast Machine","AlbumId":307,"MediaTypeId":2,"GenreId":24,"Composer":"John Adams","Milliseconds":254930,"Bytes":4310896,"UnitPrice":"0.99"} +{"TrackId":3442,"Name":"Wellington's Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph","AlbumId":308,"MediaTypeId":2,"GenreId":24,"Composer":"Ludwig van Beethoven","Milliseconds":412000,"Bytes":6965201,"UnitPrice":"0.99"} +{"TrackId":3443,"Name":"Missa Papae Marcelli: Kyrie","AlbumId":309,"MediaTypeId":2,"GenreId":24,"Composer":"Giovanni Pierluigi da Palestrina","Milliseconds":240666,"Bytes":4244149,"UnitPrice":"0.99"} +{"TrackId":3444,"Name":"Romeo et Juliette: No. 11 - Danse des Chevaliers","AlbumId":310,"MediaTypeId":2,"GenreId":24,"Composer":null,"Milliseconds":275015,"Bytes":4519239,"UnitPrice":"0.99"} +{"TrackId":3445,"Name":"On the Beautiful Blue Danube","AlbumId":311,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Strauss II","Milliseconds":526696,"Bytes":8610225,"UnitPrice":"0.99"} +{"TrackId":3446,"Name":"Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat","AlbumId":312,"MediaTypeId":2,"GenreId":24,"Composer":"Hector Berlioz","Milliseconds":561967,"Bytes":9173344,"UnitPrice":"0.99"} +{"TrackId":3447,"Name":"Carmen: Overture","AlbumId":313,"MediaTypeId":2,"GenreId":24,"Composer":"Georges Bizet","Milliseconds":132932,"Bytes":2189002,"UnitPrice":"0.99"} +{"TrackId":3448,"Name":"Lamentations of Jeremiah, First Set \\ Incipit Lamentatio","AlbumId":314,"MediaTypeId":2,"GenreId":24,"Composer":"Thomas Tallis","Milliseconds":69194,"Bytes":1208080,"UnitPrice":"0.99"} +{"TrackId":3449,"Name":"Music for the Royal Fireworks, HWV351 (1749): La Réjouissance","AlbumId":315,"MediaTypeId":2,"GenreId":24,"Composer":"George Frideric Handel","Milliseconds":120000,"Bytes":2193734,"UnitPrice":"0.99"} +{"TrackId":3450,"Name":"Peer Gynt Suite No.1, Op.46: 1. Morning Mood","AlbumId":316,"MediaTypeId":2,"GenreId":24,"Composer":"Edvard Grieg","Milliseconds":253422,"Bytes":4298769,"UnitPrice":"0.99"} +{"TrackId":3451,"Name":"Die Zauberflöte, K.620: \"Der Hölle Rache Kocht in Meinem Herze\"","AlbumId":317,"MediaTypeId":2,"GenreId":25,"Composer":"Wolfgang Amadeus Mozart","Milliseconds":174813,"Bytes":2861468,"UnitPrice":"0.99"} +{"TrackId":3452,"Name":"SCRIABIN: Prelude in B Major, Op. 11, No. 11","AlbumId":318,"MediaTypeId":4,"GenreId":24,"Composer":null,"Milliseconds":101293,"Bytes":3819535,"UnitPrice":"0.99"} +{"TrackId":3453,"Name":"Pavan, Lachrimae Antiquae","AlbumId":319,"MediaTypeId":2,"GenreId":24,"Composer":"John Dowland","Milliseconds":253281,"Bytes":4211495,"UnitPrice":"0.99"} +{"TrackId":3454,"Name":"Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro","AlbumId":320,"MediaTypeId":2,"GenreId":24,"Composer":"Wolfgang Amadeus Mozart","Milliseconds":362933,"Bytes":6173269,"UnitPrice":"0.99"} +{"TrackId":3455,"Name":"Rehab","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":213240,"Bytes":3416878,"UnitPrice":"0.99"} +{"TrackId":3456,"Name":"You Know I'm No Good","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":256946,"Bytes":4133694,"UnitPrice":"0.99"} +{"TrackId":3457,"Name":"Me & Mr. Jones","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":151706,"Bytes":2449438,"UnitPrice":"0.99"} +{"TrackId":3458,"Name":"Just Friends","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":191933,"Bytes":3098906,"UnitPrice":"0.99"} +{"TrackId":3459,"Name":"Back to Black","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":"Mark Ronson","Milliseconds":240320,"Bytes":3852953,"UnitPrice":"0.99"} +{"TrackId":3460,"Name":"Love Is a Losing Game","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":154386,"Bytes":2509409,"UnitPrice":"0.99"} +{"TrackId":3461,"Name":"Tears Dry On Their Own","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":"Nickolas Ashford & Valerie Simpson","Milliseconds":185293,"Bytes":2996598,"UnitPrice":"0.99"} +{"TrackId":3462,"Name":"Wake Up Alone","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":"Paul O'duffy","Milliseconds":221413,"Bytes":3576773,"UnitPrice":"0.99"} +{"TrackId":3463,"Name":"Some Unholy War","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":141520,"Bytes":2304465,"UnitPrice":"0.99"} +{"TrackId":3464,"Name":"He Can Only Hold Her","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":"Richard Poindexter & Robert Poindexter","Milliseconds":166680,"Bytes":2666531,"UnitPrice":"0.99"} +{"TrackId":3465,"Name":"You Know I'm No Good (feat. Ghostface Killah)","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":202320,"Bytes":3260658,"UnitPrice":"0.99"} +{"TrackId":3466,"Name":"Rehab (Hot Chip Remix)","AlbumId":321,"MediaTypeId":2,"GenreId":14,"Composer":null,"Milliseconds":418293,"Bytes":6670600,"UnitPrice":"0.99"} +{"TrackId":3467,"Name":"Intro / Stronger Than Me","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":234200,"Bytes":3832165,"UnitPrice":"0.99"} +{"TrackId":3468,"Name":"You Sent Me Flying / Cherry","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":409906,"Bytes":6657517,"UnitPrice":"0.99"} +{"TrackId":3469,"Name":"F**k Me Pumps","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Salaam Remi","Milliseconds":200253,"Bytes":3324343,"UnitPrice":"0.99"} +{"TrackId":3470,"Name":"I Heard Love Is Blind","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":null,"Milliseconds":129666,"Bytes":2190831,"UnitPrice":"0.99"} +{"TrackId":3471,"Name":"(There Is) No Greater Love (Teo Licks)","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Isham Jones & Marty Symes","Milliseconds":167933,"Bytes":2773507,"UnitPrice":"0.99"} +{"TrackId":3472,"Name":"In My Bed","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Salaam Remi","Milliseconds":315960,"Bytes":5211774,"UnitPrice":"0.99"} +{"TrackId":3473,"Name":"Take the Box","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Luke Smith","Milliseconds":199160,"Bytes":3281526,"UnitPrice":"0.99"} +{"TrackId":3474,"Name":"October Song","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Matt Rowe & Stefan Skarbek","Milliseconds":204846,"Bytes":3358125,"UnitPrice":"0.99"} +{"TrackId":3475,"Name":"What Is It About Men","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole","Milliseconds":209573,"Bytes":3426106,"UnitPrice":"0.99"} +{"TrackId":3476,"Name":"Help Yourself","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Freddy James, Jimmy hogarth & Larry Stock","Milliseconds":300884,"Bytes":5029266,"UnitPrice":"0.99"} +{"TrackId":3477,"Name":"Amy Amy Amy (Outro)","AlbumId":322,"MediaTypeId":2,"GenreId":9,"Composer":"Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek","Milliseconds":663426,"Bytes":10564704,"UnitPrice":"0.99"} +{"TrackId":3478,"Name":"Slowness","AlbumId":323,"MediaTypeId":2,"GenreId":23,"Composer":null,"Milliseconds":215386,"Bytes":3644793,"UnitPrice":"0.99"} +{"TrackId":3479,"Name":"Prometheus Overture, Op. 43","AlbumId":324,"MediaTypeId":4,"GenreId":24,"Composer":"Ludwig van Beethoven","Milliseconds":339567,"Bytes":10887931,"UnitPrice":"0.99"} +{"TrackId":3480,"Name":"Sonata for Solo Violin: IV: Presto","AlbumId":325,"MediaTypeId":4,"GenreId":24,"Composer":"Béla Bartók","Milliseconds":299350,"Bytes":9785346,"UnitPrice":"0.99"} +{"TrackId":3481,"Name":"A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno","AlbumId":326,"MediaTypeId":2,"GenreId":24,"Composer":null,"Milliseconds":387826,"Bytes":6497867,"UnitPrice":"0.99"} +{"TrackId":3482,"Name":"Suite No. 3 in D, BWV 1068: III. Gavotte I & II","AlbumId":327,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":225933,"Bytes":3847164,"UnitPrice":"0.99"} +{"TrackId":3483,"Name":"Concert pour 4 Parties de V**les, H. 545: I. Prelude","AlbumId":328,"MediaTypeId":2,"GenreId":24,"Composer":"Marc-Antoine Charpentier","Milliseconds":110266,"Bytes":1973559,"UnitPrice":"0.99"} +{"TrackId":3484,"Name":"Adios nonino","AlbumId":329,"MediaTypeId":2,"GenreId":24,"Composer":"Astor Piazzolla","Milliseconds":289388,"Bytes":4781384,"UnitPrice":"0.99"} +{"TrackId":3485,"Name":"Symphony No. 3 Op. 36 for Orchestra and Soprano \"Symfonia Piesni Zalosnych\" \\ Lento E Largo - Tranquillissimo","AlbumId":330,"MediaTypeId":2,"GenreId":24,"Composer":"Henryk Górecki","Milliseconds":567494,"Bytes":9273123,"UnitPrice":"0.99"} +{"TrackId":3486,"Name":"Act IV, Symphony","AlbumId":331,"MediaTypeId":2,"GenreId":24,"Composer":"Henry Purcell","Milliseconds":364296,"Bytes":5987695,"UnitPrice":"0.99"} +{"TrackId":3487,"Name":"3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux","AlbumId":332,"MediaTypeId":2,"GenreId":24,"Composer":"Erik Satie","Milliseconds":385506,"Bytes":6458501,"UnitPrice":"0.99"} +{"TrackId":3488,"Name":"Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"","AlbumId":333,"MediaTypeId":2,"GenreId":24,"Composer":"Henry Purcell","Milliseconds":142081,"Bytes":2365930,"UnitPrice":"0.99"} +{"TrackId":3489,"Name":"Symphony No. 2: III. Allegro vivace","AlbumId":334,"MediaTypeId":2,"GenreId":24,"Composer":"Kurt Weill","Milliseconds":376510,"Bytes":6129146,"UnitPrice":"0.99"} +{"TrackId":3490,"Name":"Partita in E Major, BWV 1006A: I. Prelude","AlbumId":335,"MediaTypeId":2,"GenreId":24,"Composer":"Johann Sebastian Bach","Milliseconds":285673,"Bytes":4744929,"UnitPrice":"0.99"} +{"TrackId":3491,"Name":"Le Sacre Du Printemps: I.iv. Spring Rounds","AlbumId":336,"MediaTypeId":2,"GenreId":24,"Composer":"Igor Stravinsky","Milliseconds":234746,"Bytes":4072205,"UnitPrice":"0.99"} +{"TrackId":3492,"Name":"Sing Joyfully","AlbumId":314,"MediaTypeId":2,"GenreId":24,"Composer":"William Byrd","Milliseconds":133768,"Bytes":2256484,"UnitPrice":"0.99"} +{"TrackId":3493,"Name":"Metopes, Op. 29: Calypso","AlbumId":337,"MediaTypeId":2,"GenreId":24,"Composer":"Karol Szymanowski","Milliseconds":333669,"Bytes":5548755,"UnitPrice":"0.99"} +{"TrackId":3494,"Name":"Symphony No. 2, Op. 16 - \"The Four Temperaments\": II. Allegro Comodo e Flemmatico","AlbumId":338,"MediaTypeId":2,"GenreId":24,"Composer":"Carl Nielsen","Milliseconds":286998,"Bytes":4834785,"UnitPrice":"0.99"} +{"TrackId":3495,"Name":"24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor","AlbumId":339,"MediaTypeId":2,"GenreId":24,"Composer":"Niccolň Paganini","Milliseconds":265541,"Bytes":4371533,"UnitPrice":"0.99"} +{"TrackId":3496,"Name":"Étude 1, In C Major - Preludio (Presto) - Liszt","AlbumId":340,"MediaTypeId":4,"GenreId":24,"Composer":null,"Milliseconds":51780,"Bytes":2229617,"UnitPrice":"0.99"} +{"TrackId":3497,"Name":"Erlkonig, D.328","AlbumId":341,"MediaTypeId":2,"GenreId":24,"Composer":null,"Milliseconds":261849,"Bytes":4307907,"UnitPrice":"0.99"} +{"TrackId":3498,"Name":"Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro","AlbumId":342,"MediaTypeId":4,"GenreId":24,"Composer":"Pietro Antonio Locatelli","Milliseconds":493573,"Bytes":16454937,"UnitPrice":"0.99"} +{"TrackId":3499,"Name":"Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia","AlbumId":343,"MediaTypeId":2,"GenreId":24,"Composer":null,"Milliseconds":286741,"Bytes":4718950,"UnitPrice":"0.99"} +{"TrackId":3500,"Name":"String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai","AlbumId":344,"MediaTypeId":2,"GenreId":24,"Composer":"Franz Schubert","Milliseconds":139200,"Bytes":2283131,"UnitPrice":"0.99"} +{"TrackId":3501,"Name":"L'orfeo, Act 3, Sinfonia (Orchestra)","AlbumId":345,"MediaTypeId":2,"GenreId":24,"Composer":"Claudio Monteverdi","Milliseconds":66639,"Bytes":1189062,"UnitPrice":"0.99"} +{"TrackId":3502,"Name":"Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro","AlbumId":346,"MediaTypeId":2,"GenreId":24,"Composer":"Wolfgang Amadeus Mozart","Milliseconds":221331,"Bytes":3665114,"UnitPrice":"0.99"} +{"TrackId":3503,"Name":"Koyaanisqatsi","AlbumId":347,"MediaTypeId":2,"GenreId":10,"Composer":"Philip Glass","Milliseconds":206005,"Bytes":3305164,"UnitPrice":"0.99"} diff --git a/e2e-tests/data/chinook-mysql-changed.sql b/e2e-tests/data/chinook-mysql-changed.sql new file mode 100644 index 000000000..1a1465c16 --- /dev/null +++ b/e2e-tests/data/chinook-mysql-changed.sql @@ -0,0 +1,176 @@ + +/******************************************************************************* + Create Tables +********************************************************************************/ +CREATE TABLE `Album` +( + `AlbumId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(160) NOT NULL, + `ArtistId` INT NOT NULL, + CONSTRAINT `PK_Album` PRIMARY KEY (`AlbumId`) +); + +CREATE TABLE `Artist` +( + `ArtistId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(120), + CONSTRAINT `PK_Artist` PRIMARY KEY (`ArtistId`) +); + +CREATE TABLE `Customer` +( + `CustomerId` INT NOT NULL AUTO_INCREMENT, + `FirstName` NVARCHAR(40) NOT NULL, + `LastName` NVARCHAR(20) NOT NULL, + `MiddleName` NVARCHAR(20) NOT NULL, + `Company` NVARCHAR(80), + `Street` NVARCHAR(70), + `City` NVARCHAR(40), + `State` NVARCHAR(40), + `Country` NVARCHAR(40), + `PostalCode` NVARCHAR(10), + `Phone` NVARCHAR(24), + `Fax` NVARCHAR(24), + `Email` NVARCHAR(60) NOT NULL, + `SupportRepId` INT, + CONSTRAINT `PK_Customer` PRIMARY KEY (`CustomerId`) +); + +CREATE TABLE `Employee` +( + `EmployeeId` INT NOT NULL AUTO_INCREMENT, + `LastName` NVARCHAR(20) NOT NULL, + `FirstName` NVARCHAR(20) NOT NULL, + `Title` NVARCHAR(30), + `ReportsTo` INT, + `BirthDate` DATETIME, + `HireDate` DATETIME, + `Address` NVARCHAR(70), + `City` NVARCHAR(40), + `State` NVARCHAR(40), + `Country` NVARCHAR(40), + `PostalCode` NVARCHAR(10), + `Phone` NVARCHAR(24), + `Fax` NVARCHAR(24), + `Email` NVARCHAR(60), + CONSTRAINT `PK_Employee` PRIMARY KEY (`EmployeeId`) +); + +CREATE TABLE `Genre` +( + `GenreId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(120), + CONSTRAINT `PK_Genre` PRIMARY KEY (`GenreId`) +); + +CREATE TABLE `Genre_Backup` +( + `GenreId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(120), + CONSTRAINT `PK_GenreBackup` PRIMARY KEY (`GenreId`) +); + +CREATE TABLE `Invoice` +( + `InvoiceId` INT NOT NULL AUTO_INCREMENT, + `CustomerId` INT NOT NULL, + `InvoiceDate` DATETIME NOT NULL, + `BillingAddress` NVARCHAR(70), + `BillingCity` NVARCHAR(40), + `BillingState` NVARCHAR(40), + `BillingCountry` NVARCHAR(40), + `BillingPostalCode` NVARCHAR(10), + `Total` NUMERIC(10,2) NOT NULL, + CONSTRAINT `PK_Invoice` PRIMARY KEY (`InvoiceId`) +); + + +CREATE TABLE `MediaType` +( + `MediaTypeId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(120), + CONSTRAINT `PK_MediaType` PRIMARY KEY (`MediaTypeId`) +); + +CREATE TABLE `Playlist` +( + `PlaylistId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(120), + CONSTRAINT `PK_Playlist` PRIMARY KEY (`PlaylistId`) +); + +CREATE TABLE `PlaylistTrack` +( + `PlaylistId` INT NOT NULL, + `TrackId` INT NOT NULL, + CONSTRAINT `PK_PlaylistTrack` PRIMARY KEY (`PlaylistId`, `TrackId`) +); + +CREATE TABLE `Track` +( + `TrackId` INT NOT NULL AUTO_INCREMENT, + `Name` NVARCHAR(200) NOT NULL, + `AlbumId` INT, + `MediaTypeId` INT NOT NULL, + `GenreId` INT, + `Composer` NVARCHAR(220), + `Milliseconds` INT NOT NULL, + `Bytes` INT, + `UnitPrice` NUMERIC(10,2) NOT NULL, + CONSTRAINT `PK_Track` PRIMARY KEY (`TrackId`) +); + + + +/******************************************************************************* + Create Primary Key Unique Indexes +********************************************************************************/ + +/******************************************************************************* + Create Foreign Keys +********************************************************************************/ +ALTER TABLE `Album` ADD CONSTRAINT `FK_AlbumArtistId` + FOREIGN KEY (`ArtistId`) REFERENCES `Artist` (`ArtistId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_AlbumArtistId` ON `Album` (`ArtistId`); + +ALTER TABLE `Customer` ADD CONSTRAINT `FK_CustomerSupportRepId` + FOREIGN KEY (`SupportRepId`) REFERENCES `Employee` (`EmployeeId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_CustomerSupportRepId` ON `Customer` (`SupportRepId`); + +ALTER TABLE `Employee` ADD CONSTRAINT `FK_EmployeeReportsTo` + FOREIGN KEY (`ReportsTo`) REFERENCES `Employee` (`EmployeeId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_EmployeeReportsTo` ON `Employee` (`ReportsTo`); + +ALTER TABLE `Invoice` ADD CONSTRAINT `FK_InvoiceCustomerId` + FOREIGN KEY (`CustomerId`) REFERENCES `Customer` (`CustomerId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_InvoiceCustomerId` ON `Invoice` (`CustomerId`); + +ALTER TABLE `PlaylistTrack` ADD CONSTRAINT `FK_PlaylistTrackPlaylistId` + FOREIGN KEY (`PlaylistId`) REFERENCES `Playlist` (`PlaylistId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_PlaylistTrackPlaylistId` ON `PlaylistTrack` (`PlaylistId`); + +ALTER TABLE `PlaylistTrack` ADD CONSTRAINT `FK_PlaylistTrackTrackId` + FOREIGN KEY (`TrackId`) REFERENCES `Track` (`TrackId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_PlaylistTrackTrackId` ON `PlaylistTrack` (`TrackId`); + +ALTER TABLE `Track` ADD CONSTRAINT `FK_TrackAlbumId` + FOREIGN KEY (`AlbumId`) REFERENCES `Album` (`AlbumId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_TrackAlbumId` ON `Track` (`AlbumId`); + +ALTER TABLE `Track` ADD CONSTRAINT `FK_TrackGenreId` + FOREIGN KEY (`GenreId`) REFERENCES `Genre` (`GenreId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_TrackGenreId` ON `Track` (`GenreId`); + +ALTER TABLE `Track` ADD CONSTRAINT `FK_TrackMediaTypeId` + FOREIGN KEY (`MediaTypeId`) REFERENCES `MediaType` (`MediaTypeId`) ON DELETE NO ACTION ON UPDATE NO ACTION; + +CREATE INDEX `IFK_TrackMediaTypeId` ON `Track` (`MediaTypeId`); + diff --git a/e2e-tests/data/files/charts/line-chart b/e2e-tests/data/files/charts/line-chart new file mode 100644 index 000000000..a3342585e --- /dev/null +++ b/e2e-tests/data/files/charts/line-chart @@ -0,0 +1 @@ +{"data":{"structure":{"columns":[{"columnName":"Month"},{"columnName":"Total"},{"columnName":"Invoices"}]},"rows":[{"Month":"2021-01","Total":"35.64","Invoices":"6"},{"Month":"2021-02","Total":"37.62","Invoices":"7"},{"Month":"2021-03","Total":"37.62","Invoices":"7"},{"Month":"2021-04","Total":"37.62","Invoices":"7"},{"Month":"2021-05","Total":"37.62","Invoices":"7"},{"Month":"2021-06","Total":"37.62","Invoices":"7"},{"Month":"2021-07","Total":"37.62","Invoices":"7"},{"Month":"2021-08","Total":"37.62","Invoices":"7"},{"Month":"2021-09","Total":"37.62","Invoices":"7"},{"Month":"2021-10","Total":"37.62","Invoices":"7"},{"Month":"2021-11","Total":"37.62","Invoices":"7"},{"Month":"2021-12","Total":"37.62","Invoices":"7"},{"Month":"2022-01","Total":"52.62","Invoices":"7"},{"Month":"2022-02","Total":"46.62","Invoices":"7"},{"Month":"2022-03","Total":"44.62","Invoices":"7"},{"Month":"2022-04","Total":"37.62","Invoices":"7"},{"Month":"2022-05","Total":"37.62","Invoices":"7"},{"Month":"2022-06","Total":"37.62","Invoices":"7"},{"Month":"2022-07","Total":"37.62","Invoices":"7"},{"Month":"2022-08","Total":"37.62","Invoices":"7"},{"Month":"2022-09","Total":"36.63","Invoices":"6"},{"Month":"2022-10","Total":"37.62","Invoices":"7"},{"Month":"2022-11","Total":"37.62","Invoices":"7"},{"Month":"2022-12","Total":"37.62","Invoices":"7"},{"Month":"2023-01","Total":"37.62","Invoices":"7"},{"Month":"2023-02","Total":"37.62","Invoices":"7"},{"Month":"2023-03","Total":"37.62","Invoices":"7"},{"Month":"2023-04","Total":"51.62","Invoices":"7"},{"Month":"2023-05","Total":"42.62","Invoices":"7"},{"Month":"2023-06","Total":"50.62","Invoices":"7"},{"Month":"2023-07","Total":"37.62","Invoices":"7"},{"Month":"2023-08","Total":"37.62","Invoices":"7"},{"Month":"2023-09","Total":"37.62","Invoices":"7"},{"Month":"2023-10","Total":"37.62","Invoices":"7"},{"Month":"2023-11","Total":"23.76","Invoices":"6"},{"Month":"2023-12","Total":"37.62","Invoices":"7"},{"Month":"2024-01","Total":"37.62","Invoices":"7"},{"Month":"2024-02","Total":"37.62","Invoices":"7"},{"Month":"2024-03","Total":"37.62","Invoices":"7"},{"Month":"2024-04","Total":"37.62","Invoices":"7"},{"Month":"2024-05","Total":"37.62","Invoices":"7"},{"Month":"2024-06","Total":"37.62","Invoices":"7"},{"Month":"2024-07","Total":"39.62","Invoices":"7"},{"Month":"2024-08","Total":"47.62","Invoices":"7"},{"Month":"2024-09","Total":"46.71","Invoices":"6"},{"Month":"2024-10","Total":"42.62","Invoices":"7"},{"Month":"2024-11","Total":"37.62","Invoices":"7"},{"Month":"2024-12","Total":"37.62","Invoices":"7"},{"Month":"2025-01","Total":"37.62","Invoices":"7"},{"Month":"2025-02","Total":"27.72","Invoices":"5"},{"Month":"2025-03","Total":"37.62","Invoices":"7"},{"Month":"2025-04","Total":"33.66","Invoices":"5"},{"Month":"2025-05","Total":"37.62","Invoices":"7"},{"Month":"2025-06","Total":"37.62","Invoices":"7"},{"Month":"2025-07","Total":"37.62","Invoices":"7"},{"Month":"2025-08","Total":"37.62","Invoices":"7"},{"Month":"2025-09","Total":"37.62","Invoices":"7"},{"Month":"2025-10","Total":"37.62","Invoices":"7"},{"Month":"2025-11","Total":"49.62","Invoices":"7"},{"Month":"2025-12","Total":"38.62","Invoices":"7"}]},"config":{"chartType":"line","labelColumn":"Month","dataColumn_Total":true,"dataColumn_Invoices":false,"truncateFrom":"begin","dataColumn_Month":false,"dataColumnColor_Total":"gold"}} \ No newline at end of file diff --git a/e2e-tests/data/files/charts/pie-chart b/e2e-tests/data/files/charts/pie-chart new file mode 100644 index 000000000..83293c335 --- /dev/null +++ b/e2e-tests/data/files/charts/pie-chart @@ -0,0 +1 @@ +{"data":{"structure":{"columns":[{"columnName":"OS"},{"columnName":"Downloads"}]},"rows":[{"OS":"Windows","Downloads":1724},{"OS":"MaxOS","Downloads":711},{"OS":"Linux","Downloads":445},{"OS":"iOS","Downloads":105},{"OS":"Android","Downloads":77}]},"config":{"chartType":"pie","labelColumn":"OS","dataColumn_Downloads":true,"showRelativeValues":false}} \ No newline at end of file diff --git a/e2e-tests/data/files/diagrams/chinook-diagram b/e2e-tests/data/files/diagrams/chinook-diagram new file mode 100644 index 000000000..44f479c10 --- /dev/null +++ b/e2e-tests/data/files/diagrams/chinook-diagram @@ -0,0 +1 @@ +{"tables":[{"pureName":"Playlist","tableRowCount":"18","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Playlist","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Playlist","notNull":true,"autoIncrement":true,"columnName":"PlaylistId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Playlist","notNull":false,"autoIncrement":false,"columnName":"Name","columnComment":"","dataType":"varchar(120)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Playlist","constraintType":"primaryKey","columns":[{"columnName":"PlaylistId"}]},"foreignKeys":[],"indexes":[],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_PlaylistTrackPlaylistId","constraintType":"foreignKey","pureName":"PlaylistTrack","refTableName":"Playlist","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"PlaylistId","refColumnName":"PlaylistId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Playlist-f819d546-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":330.2477855559807,"top":50,"isSelectedTable":false},{"pureName":"Artist","tableRowCount":"72","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Artist","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Artist","notNull":true,"autoIncrement":true,"columnName":"ArtistId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Artist","notNull":false,"autoIncrement":false,"columnName":"Name","columnComment":"","dataType":"varchar(120)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Artist","constraintType":"primaryKey","columns":[{"columnName":"ArtistId"}]},"foreignKeys":[],"indexes":[],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_AlbumArtistId","constraintType":"foreignKey","pureName":"Album","refTableName":"Artist","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"ArtistId","refColumnName":"ArtistId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Artist-f819d549-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":461.6979079121212,"top":578.4440568057845,"isSelectedTable":false},{"pureName":"PlaylistTrack","tableRowCount":"8715","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:50","objectId":"PlaylistTrack","contentHash":"2025-01-29 07:24:50","columns":[{"pureName":"PlaylistTrack","notNull":true,"autoIncrement":false,"columnName":"PlaylistId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"PlaylistTrack","notNull":true,"autoIncrement":false,"columnName":"TrackId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"PlaylistTrack","constraintType":"primaryKey","columns":[{"columnName":"PlaylistId"},{"columnName":"TrackId"}]},"foreignKeys":[{"constraintName":"FK_PlaylistTrackPlaylistId","constraintType":"foreignKey","pureName":"PlaylistTrack","refTableName":"Playlist","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"PlaylistId","refColumnName":"PlaylistId"}]},{"constraintName":"FK_PlaylistTrackTrackId","constraintType":"foreignKey","pureName":"PlaylistTrack","refTableName":"Track","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"TrackId","refColumnName":"TrackId"}]}],"indexes":[{"constraintName":"IFK_PlaylistTrackTrackId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"TrackId","isDescending":0}],"pureName":"PlaylistTrack","constraintType":"index"},{"constraintName":"IFK_PlaylistTrackPlaylistId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"PlaylistId","isDescending":0}],"pureName":"PlaylistTrack","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[],"objectTypeField":"tables","checks":[],"designerId":"PlaylistTrack-f819d540-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":519.3066822945327,"top":128.96597874389724,"isSelectedTable":false,"tableColor":"red"},{"pureName":"Genre","tableRowCount":"25","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Genre","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Genre","notNull":true,"autoIncrement":true,"columnName":"GenreId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Genre","notNull":false,"autoIncrement":false,"columnName":"Name","columnComment":"","dataType":"varchar(120)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Genre","constraintType":"primaryKey","columns":[{"columnName":"GenreId"}]},"foreignKeys":[],"indexes":[],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_TrackGenreId","constraintType":"foreignKey","pureName":"Track","refTableName":"Genre","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"GenreId","refColumnName":"GenreId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Genre-f819d544-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":702.2712249807678,"top":337.52547727881785,"isSelectedTable":false,"tableColor":"red"},{"pureName":"Track","tableRowCount":"3483","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:50","objectId":"Track","contentHash":"2025-01-29 07:24:50","columns":[{"pureName":"Track","notNull":true,"autoIncrement":true,"columnName":"TrackId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":true,"autoIncrement":false,"columnName":"Name","columnComment":"","dataType":"varchar(200)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":false,"autoIncrement":false,"columnName":"AlbumId","columnComment":"","dataType":"int","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":true,"autoIncrement":false,"columnName":"MediaTypeId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":false,"autoIncrement":false,"columnName":"GenreId","columnComment":"","dataType":"int","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":false,"autoIncrement":false,"columnName":"Composer","columnComment":"","dataType":"varchar(220)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":true,"autoIncrement":false,"columnName":"Milliseconds","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":false,"autoIncrement":false,"columnName":"Bytes","columnComment":"","dataType":"int","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Track","notNull":true,"autoIncrement":false,"columnName":"UnitPrice","columnComment":"","dataType":"decimal(10,2)","defaultValue":null,"isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Track","constraintType":"primaryKey","columns":[{"columnName":"TrackId"}]},"foreignKeys":[{"constraintName":"FK_TrackGenreId","constraintType":"foreignKey","pureName":"Track","refTableName":"Genre","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"GenreId","refColumnName":"GenreId"}]},{"constraintName":"FK_TrackMediaTypeId","constraintType":"foreignKey","pureName":"Track","refTableName":"MediaType","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"MediaTypeId","refColumnName":"MediaTypeId"}]},{"constraintName":"FK_TrackAlbumId","constraintType":"foreignKey","pureName":"Track","refTableName":"Album","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"AlbumId","refColumnName":"AlbumId"}]}],"indexes":[{"constraintName":"IFK_TrackAlbumId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"AlbumId","isDescending":0}],"pureName":"Track","constraintType":"index"},{"constraintName":"IFK_TrackGenreId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"GenreId","isDescending":0}],"pureName":"Track","constraintType":"index"},{"constraintName":"IFK_TrackMediaTypeId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"MediaTypeId","isDescending":0}],"pureName":"Track","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_PlaylistTrackTrackId","constraintType":"foreignKey","pureName":"PlaylistTrack","refTableName":"Track","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"TrackId","refColumnName":"TrackId"}]},{"constraintName":"FK_InvoiceLineTrackId","constraintType":"foreignKey","pureName":"InvoiceLine","refTableName":"Track","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"TrackId","refColumnName":"TrackId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":487.62692408212285,"top":298.61989768712215,"isSelectedTable":false,"tableColor":"red"},{"pureName":"MediaType","tableRowCount":"5","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"MediaType","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"MediaType","notNull":true,"autoIncrement":true,"columnName":"MediaTypeId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"MediaType","notNull":false,"autoIncrement":false,"columnName":"Name","columnComment":"","dataType":"varchar(120)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"MediaType","constraintType":"primaryKey","columns":[{"columnName":"MediaTypeId"}]},"foreignKeys":[],"indexes":[],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_TrackMediaTypeId","constraintType":"foreignKey","pureName":"Track","refTableName":"MediaType","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"MediaTypeId","refColumnName":"MediaTypeId"}]}],"objectTypeField":"tables","checks":[],"designerId":"MediaType-f819d541-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":701.1259844900316,"top":203.52547727881785,"isSelectedTable":false,"tableColor":"red"},{"pureName":"Album","tableRowCount":"347","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Album","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Album","notNull":true,"autoIncrement":true,"columnName":"AlbumId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Album","notNull":true,"autoIncrement":false,"columnName":"Title","columnComment":"","dataType":"varchar(160)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Album","notNull":true,"autoIncrement":false,"columnName":"ArtistId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Album","constraintType":"primaryKey","columns":[{"columnName":"AlbumId"}]},"foreignKeys":[{"constraintName":"FK_AlbumArtistId","constraintType":"foreignKey","pureName":"Album","refTableName":"Artist","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"ArtistId","refColumnName":"ArtistId"}]}],"indexes":[{"constraintName":"IFK_AlbumArtistId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"ArtistId","isDescending":0}],"pureName":"Album","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_TrackAlbumId","constraintType":"foreignKey","pureName":"Track","refTableName":"Album","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"AlbumId","refColumnName":"AlbumId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Album-f819d545-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":643.038502375111,"top":588.9112756934792,"isSelectedTable":false,"tableColor":"red"},{"pureName":"InvoiceLine","tableRowCount":"2240","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"InvoiceLine","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"InvoiceLine","notNull":true,"autoIncrement":true,"columnName":"InvoiceLineId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"InvoiceLine","notNull":true,"autoIncrement":false,"columnName":"InvoiceId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"InvoiceLine","notNull":true,"autoIncrement":false,"columnName":"TrackId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"InvoiceLine","notNull":true,"autoIncrement":false,"columnName":"UnitPrice","columnComment":"","dataType":"decimal(10,2)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"InvoiceLine","notNull":true,"autoIncrement":false,"columnName":"Quantity","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"InvoiceLine","constraintType":"primaryKey","columns":[{"columnName":"InvoiceLineId"}]},"foreignKeys":[{"constraintName":"FK_InvoiceLineTrackId","constraintType":"foreignKey","pureName":"InvoiceLine","refTableName":"Track","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"TrackId","refColumnName":"TrackId"}]},{"constraintName":"FK_InvoiceLineInvoiceId","constraintType":"foreignKey","pureName":"InvoiceLine","refTableName":"Invoice","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"InvoiceId","refColumnName":"InvoiceId"}]}],"indexes":[{"constraintName":"IFK_InvoiceLineTrackId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"TrackId","isDescending":0}],"pureName":"InvoiceLine","constraintType":"index"},{"constraintName":"IFK_InvoiceLineInvoiceId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"InvoiceId","isDescending":0}],"pureName":"InvoiceLine","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[],"objectTypeField":"tables","checks":[],"designerId":"InvoiceLine-f819d548-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":281.42700158698983,"top":184.00000000000003,"isSelectedTable":false,"tableColor":"green"},{"pureName":"Invoice","tableRowCount":"412","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Invoice","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Invoice","notNull":true,"autoIncrement":true,"columnName":"InvoiceId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":true,"autoIncrement":false,"columnName":"CustomerId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":true,"autoIncrement":false,"columnName":"InvoiceDate","columnComment":"","dataType":"datetime","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":false,"autoIncrement":false,"columnName":"BillingAddress","columnComment":"","dataType":"varchar(70)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":false,"autoIncrement":false,"columnName":"BillingCity","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":false,"autoIncrement":false,"columnName":"BillingState","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":false,"autoIncrement":false,"columnName":"BillingCountry","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":false,"autoIncrement":false,"columnName":"BillingPostalCode","columnComment":"","dataType":"varchar(10)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Invoice","notNull":true,"autoIncrement":false,"columnName":"Total","columnComment":"","dataType":"decimal(10,2)","defaultValue":null,"isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Invoice","constraintType":"primaryKey","columns":[{"columnName":"InvoiceId"}]},"foreignKeys":[{"constraintName":"FK_InvoiceCustomerId","constraintType":"foreignKey","pureName":"Invoice","refTableName":"Customer","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"CustomerId","refColumnName":"CustomerId"}]}],"indexes":[{"constraintName":"IFK_InvoiceCustomerId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"CustomerId","isDescending":0}],"pureName":"Invoice","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_InvoiceLineInvoiceId","constraintType":"foreignKey","pureName":"InvoiceLine","refTableName":"Invoice","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"InvoiceId","refColumnName":"InvoiceId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Invoice-f819d543-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":50.15677353968084,"top":130.3014341536835,"isSelectedTable":false,"tableColor":"green"},{"pureName":"Employee","tableRowCount":"8","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Employee","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Employee","notNull":true,"autoIncrement":true,"columnName":"EmployeeId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":true,"autoIncrement":false,"columnName":"LastName","columnComment":"","dataType":"varchar(20)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":true,"autoIncrement":false,"columnName":"FirstName","columnComment":"","dataType":"varchar(20)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Title","columnComment":"","dataType":"varchar(30)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"ReportsTo","columnComment":"","dataType":"int","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"BirthDate","columnComment":"","dataType":"datetime","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"HireDate","columnComment":"","dataType":"datetime","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Address","columnComment":"","dataType":"varchar(70)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"City","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"State","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Country","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"PostalCode","columnComment":"","dataType":"varchar(10)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Phone","columnComment":"","dataType":"varchar(24)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Fax","columnComment":"","dataType":"varchar(24)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Employee","notNull":false,"autoIncrement":false,"columnName":"Email","columnComment":"","dataType":"varchar(60)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Employee","constraintType":"primaryKey","columns":[{"columnName":"EmployeeId"}]},"foreignKeys":[{"constraintName":"FK_EmployeeReportsTo","constraintType":"foreignKey","pureName":"Employee","refTableName":"Employee","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"ReportsTo","refColumnName":"EmployeeId"}]}],"indexes":[{"constraintName":"IFK_EmployeeReportsTo","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"ReportsTo","isDescending":0}],"pureName":"Employee","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_CustomerSupportRepId","constraintType":"foreignKey","pureName":"Customer","refTableName":"Employee","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"SupportRepId","refColumnName":"EmployeeId"}]},{"constraintName":"FK_EmployeeReportsTo","constraintType":"foreignKey","pureName":"Employee","refTableName":"Employee","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"ReportsTo","refColumnName":"EmployeeId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Employee-f819d54a-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":263.62981838986,"top":454.1023094743517,"isSelectedTable":true,"tableColor":"purple"},{"pureName":"Customer","tableRowCount":"59","tableEngine":"InnoDB","objectComment":"","modifyDate":"2025-01-29 07:24:49","objectId":"Customer","contentHash":"2025-01-29 07:24:49","columns":[{"pureName":"Customer","notNull":true,"autoIncrement":true,"columnName":"CustomerId","columnComment":"","dataType":"int","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":true,"autoIncrement":false,"columnName":"FirstName","columnComment":"","dataType":"varchar(40)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":true,"autoIncrement":false,"columnName":"LastName","columnComment":"","dataType":"varchar(20)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"Company","columnComment":"","dataType":"varchar(80)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"Address","columnComment":"","dataType":"varchar(70)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"City","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"State","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"Country","columnComment":"","dataType":"varchar(40)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"PostalCode","columnComment":"","dataType":"varchar(10)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"Phone","columnComment":"","dataType":"varchar(24)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"Fax","columnComment":"","dataType":"varchar(24)","defaultValue":"NULL","isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":true,"autoIncrement":false,"columnName":"Email","columnComment":"","dataType":"varchar(60)","defaultValue":null,"isUnsigned":false,"isZerofill":false},{"pureName":"Customer","notNull":false,"autoIncrement":false,"columnName":"SupportRepId","columnComment":"","dataType":"int","defaultValue":"NULL","isUnsigned":false,"isZerofill":false}],"primaryKey":{"constraintName":"PRIMARY","pureName":"Customer","constraintType":"primaryKey","columns":[{"columnName":"CustomerId"}]},"foreignKeys":[{"constraintName":"FK_CustomerSupportRepId","constraintType":"foreignKey","pureName":"Customer","refTableName":"Employee","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"SupportRepId","refColumnName":"EmployeeId"}]}],"indexes":[{"constraintName":"IFK_CustomerSupportRepId","indexType":"BTREE","isUnique":false,"columns":[{"columnName":"SupportRepId","isDescending":0}],"pureName":"Customer","constraintType":"index"}],"uniques":[],"engine":"mysql@dbgate-plugin-mysql","dependencies":[{"constraintName":"FK_InvoiceCustomerId","constraintType":"foreignKey","pureName":"Invoice","refTableName":"Customer","updateAction":"NO ACTION","deleteAction":"NO ACTION","columns":[{"columnName":"CustomerId","refColumnName":"CustomerId"}]}],"objectTypeField":"tables","checks":[],"designerId":"Customer-f819d547-deee-11ef-8c42-4199facf3ba8","autoAddReferences":false,"needsArrange":false,"left":50,"top":433.13715736002416,"isSelectedTable":true,"tableColor":"purple"}],"references":[{"designerId":"f81ce280-deee-11ef-8c42-4199facf3ba8","sourceId":"PlaylistTrack-f819d540-deee-11ef-8c42-4199facf3ba8","targetId":"Playlist-f819d546-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"PlaylistId","target":"PlaylistId"}]},{"designerId":"f81ce281-deee-11ef-8c42-4199facf3ba8","sourceId":"PlaylistTrack-f819d540-deee-11ef-8c42-4199facf3ba8","targetId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"TrackId","target":"TrackId"}]},{"designerId":"f81ce282-deee-11ef-8c42-4199facf3ba8","sourceId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","targetId":"Genre-f819d544-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"GenreId","target":"GenreId"}]},{"designerId":"f81ce283-deee-11ef-8c42-4199facf3ba8","sourceId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","targetId":"MediaType-f819d541-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"MediaTypeId","target":"MediaTypeId"}]},{"designerId":"f81ce284-deee-11ef-8c42-4199facf3ba8","sourceId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","targetId":"Album-f819d545-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"AlbumId","target":"AlbumId"}]},{"designerId":"f81ce285-deee-11ef-8c42-4199facf3ba8","sourceId":"Invoice-f819d543-deee-11ef-8c42-4199facf3ba8","targetId":"Customer-f819d547-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"CustomerId","target":"CustomerId"}]},{"designerId":"f81ce286-deee-11ef-8c42-4199facf3ba8","sourceId":"Album-f819d545-deee-11ef-8c42-4199facf3ba8","targetId":"Artist-f819d549-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"ArtistId","target":"ArtistId"}]},{"designerId":"f81ce287-deee-11ef-8c42-4199facf3ba8","sourceId":"Customer-f819d547-deee-11ef-8c42-4199facf3ba8","targetId":"Employee-f819d54a-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"SupportRepId","target":"EmployeeId"}]},{"designerId":"f81ce288-deee-11ef-8c42-4199facf3ba8","sourceId":"InvoiceLine-f819d548-deee-11ef-8c42-4199facf3ba8","targetId":"Track-f819d542-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"TrackId","target":"TrackId"}]},{"designerId":"f81ce289-deee-11ef-8c42-4199facf3ba8","sourceId":"InvoiceLine-f819d548-deee-11ef-8c42-4199facf3ba8","targetId":"Invoice-f819d543-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"InvoiceId","target":"InvoiceId"}]},{"designerId":"f81ce28a-deee-11ef-8c42-4199facf3ba8","sourceId":"Employee-f819d54a-deee-11ef-8c42-4199facf3ba8","targetId":"Employee-f819d54a-deee-11ef-8c42-4199facf3ba8","joinType":"","columns":[{"source":"ReportsTo","target":"EmployeeId"}]}],"autoLayout":false,"columns":[{"designerId":"Employee-f819d54a-deee-11ef-8c42-4199facf3ba8","columnName":"FirstName"}]} \ No newline at end of file diff --git a/e2e-tests/data/files/query/customer b/e2e-tests/data/files/query/customer new file mode 100644 index 000000000..d2054485a --- /dev/null +++ b/e2e-tests/data/files/query/customer @@ -0,0 +1,592 @@ +{ + "tables": [ + { + "pureName": "InvoiceLine", + "tableRowCount": "2240", + "tableEngine": "InnoDB", + "objectComment": "", + "modifyDate": "2025-01-30 07:20:38", + "objectId": "InvoiceLine", + "contentHash": "2025-01-30 07:20:38", + "columns": [ + { + "pureName": "InvoiceLine", + "notNull": true, + "autoIncrement": true, + "columnName": "InvoiceLineId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "InvoiceLine", + "notNull": true, + "autoIncrement": false, + "columnName": "InvoiceId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "InvoiceLine", + "notNull": true, + "autoIncrement": false, + "columnName": "TrackId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "InvoiceLine", + "notNull": true, + "autoIncrement": false, + "columnName": "UnitPrice", + "columnComment": "", + "dataType": "decimal(10,2)", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "InvoiceLine", + "notNull": true, + "autoIncrement": false, + "columnName": "Quantity", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + } + ], + "primaryKey": { + "constraintName": "PRIMARY", + "pureName": "InvoiceLine", + "constraintType": "primaryKey", + "columns": [ + { + "columnName": "InvoiceLineId" + } + ] + }, + "foreignKeys": [ + { + "constraintName": "FK_InvoiceLineInvoiceId", + "constraintType": "foreignKey", + "pureName": "InvoiceLine", + "refTableName": "Invoice", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "InvoiceId", + "refColumnName": "InvoiceId" + } + ] + }, + { + "constraintName": "FK_InvoiceLineTrackId", + "constraintType": "foreignKey", + "pureName": "InvoiceLine", + "refTableName": "Track", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "TrackId", + "refColumnName": "TrackId" + } + ] + } + ], + "indexes": [ + { + "constraintName": "IFK_InvoiceLineInvoiceId", + "indexType": "BTREE", + "isUnique": false, + "columns": [ + { + "columnName": "InvoiceId", + "isDescending": 0 + } + ], + "pureName": "InvoiceLine", + "constraintType": "index" + }, + { + "constraintName": "IFK_InvoiceLineTrackId", + "indexType": "BTREE", + "isUnique": false, + "columns": [ + { + "columnName": "TrackId", + "isDescending": 0 + } + ], + "pureName": "InvoiceLine", + "constraintType": "index" + } + ], + "uniques": [], + "engine": "mysql@dbgate-plugin-mysql", + "dependencies": [], + "objectTypeField": "tables", + "checks": [], + "conid": "mysql", + "database": "MyChinook", + "designerId": "InvoiceLine-61eb0ba0-dedc-11ef-acf9-b7e3c0869b02", + "left": 513, + "top": 247, + "alias": null + }, + { + "pureName": "Customer", + "tableRowCount": "59", + "tableEngine": "InnoDB", + "objectComment": "", + "modifyDate": "2025-01-30 07:20:37", + "objectId": "Customer", + "contentHash": "2025-01-30 07:20:37", + "columns": [ + { + "pureName": "Customer", + "notNull": true, + "autoIncrement": true, + "columnName": "CustomerId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": true, + "autoIncrement": false, + "columnName": "FirstName", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": true, + "autoIncrement": false, + "columnName": "LastName", + "columnComment": "", + "dataType": "varchar(20)", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "Company", + "columnComment": "", + "dataType": "varchar(80)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "Address", + "columnComment": "", + "dataType": "varchar(70)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "City", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "State", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "Country", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "PostalCode", + "columnComment": "", + "dataType": "varchar(10)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "Phone", + "columnComment": "", + "dataType": "varchar(24)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "Fax", + "columnComment": "", + "dataType": "varchar(24)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": true, + "autoIncrement": false, + "columnName": "Email", + "columnComment": "", + "dataType": "varchar(60)", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Customer", + "notNull": false, + "autoIncrement": false, + "columnName": "SupportRepId", + "columnComment": "", + "dataType": "int", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + } + ], + "primaryKey": { + "constraintName": "PRIMARY", + "pureName": "Customer", + "constraintType": "primaryKey", + "columns": [ + { + "columnName": "CustomerId" + } + ] + }, + "foreignKeys": [ + { + "constraintName": "FK_CustomerSupportRepId", + "constraintType": "foreignKey", + "pureName": "Customer", + "refTableName": "Employee", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "SupportRepId", + "refColumnName": "EmployeeId" + } + ] + } + ], + "indexes": [ + { + "constraintName": "IFK_CustomerSupportRepId", + "indexType": "BTREE", + "isUnique": false, + "columns": [ + { + "columnName": "SupportRepId", + "isDescending": 0 + } + ], + "pureName": "Customer", + "constraintType": "index" + } + ], + "uniques": [], + "engine": "mysql@dbgate-plugin-mysql", + "dependencies": [ + { + "constraintName": "FK_InvoiceCustomerId", + "constraintType": "foreignKey", + "pureName": "Invoice", + "refTableName": "Customer", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "CustomerId", + "refColumnName": "CustomerId" + } + ] + } + ], + "objectTypeField": "tables", + "checks": [], + "conid": "mysql", + "database": "MyChinook", + "designerId": "5d82f690-dedc-11ef-acf9-b7e3c0869b02", + "left": 50, + "top": 50 + }, + { + "pureName": "Invoice", + "tableRowCount": "412", + "tableEngine": "InnoDB", + "objectComment": "", + "modifyDate": "2025-01-30 07:20:38", + "objectId": "Invoice", + "contentHash": "2025-01-30 07:20:38", + "columns": [ + { + "pureName": "Invoice", + "notNull": true, + "autoIncrement": true, + "columnName": "InvoiceId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": true, + "autoIncrement": false, + "columnName": "CustomerId", + "columnComment": "", + "dataType": "int", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": true, + "autoIncrement": false, + "columnName": "InvoiceDate", + "columnComment": "", + "dataType": "datetime", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": false, + "autoIncrement": false, + "columnName": "BillingAddress", + "columnComment": "", + "dataType": "varchar(70)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": false, + "autoIncrement": false, + "columnName": "BillingCity", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": false, + "autoIncrement": false, + "columnName": "BillingState", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": false, + "autoIncrement": false, + "columnName": "BillingCountry", + "columnComment": "", + "dataType": "varchar(40)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": false, + "autoIncrement": false, + "columnName": "BillingPostalCode", + "columnComment": "", + "dataType": "varchar(10)", + "defaultValue": "NULL", + "isUnsigned": false, + "isZerofill": false + }, + { + "pureName": "Invoice", + "notNull": true, + "autoIncrement": false, + "columnName": "Total", + "columnComment": "", + "dataType": "decimal(10,2)", + "defaultValue": null, + "isUnsigned": false, + "isZerofill": false + } + ], + "primaryKey": { + "constraintName": "PRIMARY", + "pureName": "Invoice", + "constraintType": "primaryKey", + "columns": [ + { + "columnName": "InvoiceId" + } + ] + }, + "foreignKeys": [ + { + "constraintName": "FK_InvoiceCustomerId", + "constraintType": "foreignKey", + "pureName": "Invoice", + "refTableName": "Customer", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "CustomerId", + "refColumnName": "CustomerId" + } + ] + } + ], + "indexes": [ + { + "constraintName": "IFK_InvoiceCustomerId", + "indexType": "BTREE", + "isUnique": false, + "columns": [ + { + "columnName": "CustomerId", + "isDescending": 0 + } + ], + "pureName": "Invoice", + "constraintType": "index" + } + ], + "uniques": [], + "engine": "mysql@dbgate-plugin-mysql", + "dependencies": [ + { + "constraintName": "FK_InvoiceLineInvoiceId", + "constraintType": "foreignKey", + "pureName": "InvoiceLine", + "refTableName": "Invoice", + "updateAction": "NO ACTION", + "deleteAction": "NO ACTION", + "columns": [ + { + "columnName": "InvoiceId", + "refColumnName": "InvoiceId" + } + ] + } + ], + "objectTypeField": "tables", + "checks": [], + "conid": "mysql", + "database": "MyChinook", + "designerId": "Invoice-609cb9b0-dedc-11ef-acf9-b7e3c0869b02", + "left": 279, + "top": 112, + "alias": null + } + ], + "references": [ + { + "designerId": "undefined-609cb9b1-dedc-11ef-acf9-b7e3c0869b02", + "sourceId": "Invoice-609cb9b0-dedc-11ef-acf9-b7e3c0869b02", + "targetId": "5d82f690-dedc-11ef-acf9-b7e3c0869b02", + "joinType": "INNER JOIN", + "columns": [ + { + "source": "CustomerId", + "target": "CustomerId" + } + ] + }, + { + "designerId": "undefined-61eb32b0-dedc-11ef-acf9-b7e3c0869b02", + "sourceId": "InvoiceLine-61eb0ba0-dedc-11ef-acf9-b7e3c0869b02", + "targetId": "Invoice-609cb9b0-dedc-11ef-acf9-b7e3c0869b02", + "joinType": "LEFT JOIN", + "columns": [ + { + "source": "InvoiceId", + "target": "InvoiceId" + } + ] + } + ], + "columns": [ + { + "designerId": "5d82f690-dedc-11ef-acf9-b7e3c0869b02", + "columnName": "LastName", + "isOutput": true, + "filter": "NOT NULL", + "sortOrder": 1 + }, + { + "designerId": "5d82f690-dedc-11ef-acf9-b7e3c0869b02", + "columnName": "FirstName", + "isOutput": true, + "sortOrder": 2 + }, + { + "designerId": "Invoice-609cb9b0-dedc-11ef-acf9-b7e3c0869b02", + "columnName": "InvoiceDate", + "isOutput": true + } + ] +} diff --git a/e2e-tests/data/geo-data-postgres.sql b/e2e-tests/data/geo-data-postgres.sql new file mode 100644 index 000000000..d03ee097a --- /dev/null +++ b/e2e-tests/data/geo-data-postgres.sql @@ -0,0 +1,16 @@ +CREATE TABLE "public"."cities" ( + "id" SERIAL, + "name" VARCHAR(250) NULL, + "location" VARCHAR(500) NULL, + CONSTRAINT "PK_cities" PRIMARY KEY ("id") +); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (1, 'Praha', 'POLYGON((14.2 50,14.2 50.15,14.6 50.15,14.6 50,14.2 50))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (2, 'Brno', 'POLYGON((16.5 49.1,16.5 49.3,16.8 49.3,16.8 49.1,16.5 49.1))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (3, 'Ostrava', 'POLYGON((18.15 49.7,18.15 49.9,18.4 49.9,18.4 49.7,18.15 49.7))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (4, 'Plzeň', 'POLYGON((13.3 49.7,13.3 49.8,13.5 49.8,13.5 49.7,13.3 49.7))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (5, 'Olomouc', 'POLYGON((17.2 49.5,17.2 49.65,17.3 49.65,17.3 49.5,17.2 49.5))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (6, 'Liberec', 'POLYGON((14.9 50.7,14.9 50.8,15.1 50.8,15.1 50.7,14.9 50.7))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (7, 'České Budějovice', 'POLYGON((14.4 48.9,14.4 49,14.6 49,14.6 48.9,14.4 48.9))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (8, 'Hradec Králové', 'POLYGON((15.7 50.1,15.7 50.3,16 50.3,16 50.1,15.7 50.1))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (9, 'Pardubice', 'POLYGON((15.7 49.9,15.7 50.1,15.9 50.1,15.9 49.9,15.7 49.9))'); +INSERT INTO "public"."cities" ("id", "name", "location") VALUES (10, 'Ústí nad Labem', 'POLYGON((13.9 50.6,13.9 50.7,14.2 50.7,14.2 50.6,13.9 50.6))'); diff --git a/e2e-tests/data/northwind-mysql.sql b/e2e-tests/data/northwind-mysql.sql new file mode 100644 index 000000000..83191c413 --- /dev/null +++ b/e2e-tests/data/northwind-mysql.sql @@ -0,0 +1,4615 @@ +# ---------------------------------------------------------------------- # +# Tables # +# ---------------------------------------------------------------------- # +# ---------------------------------------------------------------------- # +# Add table "Categories" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Categories` ( + `CategoryID` INTEGER NOT NULL AUTO_INCREMENT, + `CategoryName` VARCHAR(15) NOT NULL, + `Description` MEDIUMTEXT, + `Picture` LONGBLOB, + CONSTRAINT `PK_Categories` PRIMARY KEY (`CategoryID`) +); + +CREATE INDEX `CategoryName` ON `Categories` (`CategoryName`); + +# ---------------------------------------------------------------------- # +# Add table "CustomerCustomerDemo" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `CustomerCustomerDemo` ( + `CustomerID` VARCHAR(5) NOT NULL, + `CustomerTypeID` VARCHAR(10) NOT NULL, + CONSTRAINT `PK_CustomerCustomerDemo` PRIMARY KEY (`CustomerID`, `CustomerTypeID`) +); + +# ---------------------------------------------------------------------- # +# Add table "CustomerDemographics" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `CustomerDemographics` ( + `CustomerTypeID` VARCHAR(10) NOT NULL, + `CustomerDesc` MEDIUMTEXT, + CONSTRAINT `PK_CustomerDemographics` PRIMARY KEY (`CustomerTypeID`) +); + +# ---------------------------------------------------------------------- # +# Add table "Customers" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Customers` ( + `CustomerID` VARCHAR(5) NOT NULL, + `CompanyName` VARCHAR(40) NOT NULL, + `ContactName` VARCHAR(30), + `ContactTitle` VARCHAR(30), + `Address` VARCHAR(60), + `City` VARCHAR(15), + `Region` VARCHAR(15), + `PostalCode` VARCHAR(10), + `Country` VARCHAR(15), + `Phone` VARCHAR(24), + `Fax` VARCHAR(24), + CONSTRAINT `PK_Customers` PRIMARY KEY (`CustomerID`) +); + +CREATE INDEX `City` ON `Customers` (`City`); + +CREATE INDEX `CompanyName` ON `Customers` (`CompanyName`); + +CREATE INDEX `PostalCode` ON `Customers` (`PostalCode`); + +CREATE INDEX `Region` ON `Customers` (`Region`); + +# ---------------------------------------------------------------------- # +# Add table "Employees" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Employees` ( + `EmployeeID` INTEGER NOT NULL AUTO_INCREMENT, + `LastName` VARCHAR(20) NOT NULL, + `FirstName` VARCHAR(10) NOT NULL, + `Title` VARCHAR(30), + `TitleOfCourtesy` VARCHAR(25), + `BirthDate` DATETIME, + `HireDate` DATETIME, + `Address` VARCHAR(60), + `City` VARCHAR(15), + `Region` VARCHAR(15), + `PostalCode` VARCHAR(10), + `Country` VARCHAR(15), + `HomePhone` VARCHAR(24), + `Extension` VARCHAR(4), + `Photo` LONGBLOB, + `Notes` MEDIUMTEXT NOT NULL, + `ReportsTo` INTEGER, + `PhotoPath` VARCHAR(255), + `Salary` FLOAT, + CONSTRAINT `PK_Employees` PRIMARY KEY (`EmployeeID`) +); + +CREATE INDEX `LastName` ON `Employees` (`LastName`); + +CREATE INDEX `PostalCode` ON `Employees` (`PostalCode`); + +# ---------------------------------------------------------------------- # +# Add table "EmployeeTerritories" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `EmployeeTerritories` ( + `EmployeeID` INTEGER NOT NULL, + `TerritoryID` VARCHAR(20) NOT NULL, + CONSTRAINT `PK_EmployeeTerritories` PRIMARY KEY (`EmployeeID`, `TerritoryID`) +); + +# ---------------------------------------------------------------------- # +# Add table "Order Details" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Order Details` ( + `OrderID` INTEGER NOT NULL, + `ProductID` INTEGER NOT NULL, + `UnitPrice` DECIMAL(10,4) NOT NULL DEFAULT 0, + `Quantity` SMALLINT(2) NOT NULL DEFAULT 1, + `Discount` REAL(8,0) NOT NULL DEFAULT 0, + CONSTRAINT `PK_Order Details` PRIMARY KEY (`OrderID`, `ProductID`) +); + +# ---------------------------------------------------------------------- # +# Add table "Orders" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Orders` ( + `OrderID` INTEGER NOT NULL AUTO_INCREMENT, + `CustomerID` VARCHAR(5), + `EmployeeID` INTEGER, + `OrderDate` DATETIME, + `RequiredDate` DATETIME, + `ShippedDate` DATETIME, + `ShipVia` INTEGER, + `Freight` DECIMAL(10,4) DEFAULT 0, + `ShipName` VARCHAR(40), + `ShipAddress` VARCHAR(60), + `ShipCity` VARCHAR(15), + `ShipRegion` VARCHAR(15), + `ShipPostalCode` VARCHAR(10), + `ShipCountry` VARCHAR(15), + CONSTRAINT `PK_Orders` PRIMARY KEY (`OrderID`) +); + +CREATE INDEX `OrderDate` ON `Orders` (`OrderDate`); + +CREATE INDEX `ShippedDate` ON `Orders` (`ShippedDate`); + +CREATE INDEX `ShipPostalCode` ON `Orders` (`ShipPostalCode`); + +# ---------------------------------------------------------------------- # +# Add table "Products" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Products` ( + `ProductID` INTEGER NOT NULL AUTO_INCREMENT, + `ProductName` VARCHAR(40) NOT NULL, + `SupplierID` INTEGER, + `CategoryID` INTEGER, + `QuantityPerUnit` VARCHAR(20), + `UnitPrice` DECIMAL(10,4) DEFAULT 0, + `UnitsInStock` SMALLINT(2) DEFAULT 0, + `UnitsOnOrder` SMALLINT(2) DEFAULT 0, + `ReorderLevel` SMALLINT(2) DEFAULT 0, + `Discontinued` BIT NOT NULL DEFAULT 0, + CONSTRAINT `PK_Products` PRIMARY KEY (`ProductID`) +); + +CREATE INDEX `ProductName` ON `Products` (`ProductName`); + +# ---------------------------------------------------------------------- # +# Add table "Region" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Region` ( + `RegionID` INTEGER NOT NULL, + `RegionDescription` VARCHAR(50) NOT NULL, + CONSTRAINT `PK_Region` PRIMARY KEY (`RegionID`) +); + +# ---------------------------------------------------------------------- # +# Add table "Shippers" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Shippers` ( + `ShipperID` INTEGER NOT NULL AUTO_INCREMENT, + `CompanyName` VARCHAR(40) NOT NULL, + `Phone` VARCHAR(24), + CONSTRAINT `PK_Shippers` PRIMARY KEY (`ShipperID`) +); + +# ---------------------------------------------------------------------- # +# Add table "Suppliers" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Suppliers` ( + `SupplierID` INTEGER NOT NULL AUTO_INCREMENT, + `CompanyName` VARCHAR(40) NOT NULL, + `ContactName` VARCHAR(30), + `ContactTitle` VARCHAR(30), + `Address` VARCHAR(60), + `City` VARCHAR(15), + `Region` VARCHAR(15), + `PostalCode` VARCHAR(10), + `Country` VARCHAR(15), + `Phone` VARCHAR(24), + `Fax` VARCHAR(24), + `HomePage` MEDIUMTEXT, + CONSTRAINT `PK_Suppliers` PRIMARY KEY (`SupplierID`) +); + +CREATE INDEX `CompanyName` ON `Suppliers` (`CompanyName`); + +CREATE INDEX `PostalCode` ON `Suppliers` (`PostalCode`); + +# ---------------------------------------------------------------------- # +# Add table "Territories" # +# ---------------------------------------------------------------------- # + +CREATE TABLE `Territories` ( + `TerritoryID` VARCHAR(20) NOT NULL, + `TerritoryDescription` VARCHAR(50) NOT NULL, + `RegionID` INTEGER NOT NULL, + CONSTRAINT `PK_Territories` PRIMARY KEY (`TerritoryID`) +); + +# ---------------------------------------------------------------------- # +# Add info into "Categories" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Categories; +INSERT INTO Categories VALUES(null,'Beverages','Soft drinks, coffees, teas, beers, and ales',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000500000FFEE002641646F62650064C0000000010300150403060A0D00000A63000010E8000019F4000027A4FFDB0084000202020202020202020203020202030403020203040504040404040506050505050505060607070807070609090A0A09090C0C0C0C0C0C0C0C0C0C0C0C0C0C0C01030303050405090606090D0B090B0D0F0E0E0E0E0F0F0C0C0C0C0C0F0F0C0C0C0C0C0C0F0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0CFFC2001108006E00AF03011100021101031101FFC400E800000104030101000000000000000000000503040607000208010901000203010101000000000000000000000203000104050607100001040103030401030403000000000001000203041110120520211331221406303223154133250724341611000200030505040704080701000000000102001103213141120451712232131061810591A1425262231420C1723330F0B1E18292B234D1F1A2C2D24393241200000503040301000000000000000000003001112120403110501222410232611301000202020103030501010000000000010011213141516110718191A1B120F0C1D1E130F1FFDA000C03010002110311000001EC3E66DE66CE0DDB4FD476C69EAF0BA3DC4DAF2FD20EB7CCD681E948BADB53974AC46A2178F553DE7280A568326F76E124494661F4B40EB6F59C9135685C38755FABA9C89CDF6B267E0ED1DDE21CDAF2E46C4A38FD872EE16AD54279AB85E414CAC7B2DC09375DAB54B507D17F65C6C9324F6E654C9324C93C93DB952D3646DD3E4A6F194871F455FCB3D2AC5558049B308B10BE88FA3BEC39046EB24C9324C9324C93248E2DF5BD6C96E958D160807263548F1DB5CE178851B796A9D081E615C19FE86FB4875A87760A90FB2649A0DB51646336BA8B27509EFC8C0CA5ED134684408625B0CCCF10323C12A5C7511C182D6E6F57A4BDAF375022D624AC5C4A6C251D53E148D7071D0B38263D0E72F6E91C3E77F3DEBA0187A8396FF4E1C359C66784EBF1B30E4A0C73D9D1FEFF00931A1B182D6744344C7D10D13640C771920808ED45A4EAE69F29EE2969DE1AF3B08B14753A0711CA495B1F93B0F8DC4268BE90F79C58C8D85AB130C551B084D166929C621CA1D9E37A6F6E2FA2E6DE6FB001A9C91510B5D9ECC751AB6958B611135C7E1EC0E5BFAAFE85E5A309B0B0C44B154C428DB81E0B0D18DC5D0E7560BD7CEFE57DFD757DE62DAF60EB77BDAF7259334AE6A885653290FA7FEB3E62090C4C24696D4288229A285A9D11221B177E11EBDB42E0F4143F27D88CBD09332129180B5A1A3094848909BB067D5AF5DF1C6EB81E16956DA44EAE038F43923936851460AD2A87E57AA129D754A3A8C036B24696A7684192B33F869416134D3C6EDCF45E14C02E1C6C36228541F4CF60C629E56A3D91894E6AE5FA5439FDAD964BB89D184685CEAE8F9E71CB60CCDA0DE9E6F64FA4F9F0C85BDD28337AA670811316A882DAE2E87DDD358BA94EE0EFADCCEDA39DCAB45D315E4A484DB2D8E4D72DEEF98ED4EBF8B1D716905AD8B4ACB85EC01939094981B2BAE47E37A28F67DC217D68A61EE3B30D2EBCBA56EB6926FB3892EDDC3FFFDA0008010100010502E4EBBA4AF3C4D134A3626F1B7AD55FB3F3527D6380E4677D2ADF58E767FADDE8E46CACD398693C7F2BF5BE339F15DB38ADCB1CC1363717273C806D809B36147C86145CC4DB9DCBE64C052D0A9391C5D04D63183ECDF5D83EC9C73FFD65F63649C7FF00ABB90F99144D863D39899B5B89E3237C3C6FA2BB039E2CE4344B95238BDAF39779D4927664CF0BCCD7B3F173C7F92B01F95929F1EF5CD52304AFA16A479E3EE84FA3794ADB109F2E136505794E20B50D8FC36ED3C36092BC6985AE6CF7638899EE58069CE5BCAF1B2432399B53DA9966D5722F0B0AECD523745565F8FE786491B295BDBD05C0274ED0AE723142DBBCABAC9A6CDD0FCF99D3C14618DBB8045CC538E3E512D0FAD4A9FC07012A9FE94D9472FC1DDE0A1E2299711186B677E248EFCB126F30D4DE56AAFE56B27F2F50297EC15D8ACFD8A7914966494C5DCDBE44F1BC4F154BE1D7E4AFFC282FFDA2E6E9B9FBB223C95B726F313B1B5EF58B0D8F92E4ABAFB0F3373937556889BB9591FB8F28BD3A44E94A7CA9D22DC98A11DF903E4E545A6D6ADCCF2D35974B2B9C557AF0CD44B1D2337CB5DF07312B572AE8A49602D737B2B3FDC913D3D39393820144D55DAE0B9D7FC4E67EC1C8358DB5397B89D2AD975499F4E1B1C7EFCBFE47B8B7CC38BE4C2F3B0AB2C7191E14813DA56C28B11620C5137BB61AB141F68A8DB15B969E574AF39450EE3D56E7B14514B3282FCF564E479417220F21CDE4AEB5A62B4D5F24B5D6A932588420835D8A588B1CE8D062635548248E1E4A2F2D5E4F8E6D98ECD596BBD9812BE230D9B354D4B73C12577C67F7266491B9CE696B46508C95E43E4B75C491536CAC5256638FC5187578653244637C553728A0898BDF23DCD0E6D6B31BE4B35DA55CE132FBBC7D835F95DD2436EF41721A0DACE2E8A32BE0BEDB7F847EE8B898990CAC21EC76F6C9BD93319BD9FA4420992591813F3BA26FB429243BBEC7567A9760E48588FDAE921E56E51966E5AB4C1DFF009F72AF3F0555E79DAEA6E77909C44EF73642E6D86FEE47278DD6A3DE22F68DBB8C8CDED7537B5C611B236E0CFDA3970D64DCDC6FB17EAFF1B71B3EE06C32478DA578EB95E2AA9CC856435424CB21D8A6FD6EC23E877E5BE74376FEDF1D9E9EC526C530ADE1E636FC993FEAC5B97FC8CE7945FE517F9343F9444DFC70DA7FFFDA00080102000105027B501DC85E3241F63507ED39D4A2DCE93FA3B5C223404ADE74C2C68F6EE4617042158D4EAE190F1AEED31A63F3CCC458578CAD851042CACADC3F1176130E99D0B72A48F0B6E81C420FCA700B0B2B3D594E916729BE9958D328BDAB31ADB1946B829F096A7232649D3795BD7917911951712B1A37D1A148FDA1F69C512E2B0B6ADA50DC107922670EAC2C2C6A11F42EC09642F2D1A6DD30B2BFA4C3BA3D47560EF22B32A637A0B7B2C2F453316111F80040613CA95843C74808144E85835731616163A1A148DECE6870734B50EB3D18585844656106203A09C2D80A2D3A1282CE9B50C7E495B82E4C3DFCA42F205B9AB73579423315940E47E3749DDE308B70B72CAECBB2256534171DBD87E1EDA58FD43D0AECBDABDABDABDABDAA1C69FFDA00080103000105020ED72A9D7F9123C6C6CF4D92B1C3074614C94847D51EAC2C69959D2A5A3039BCA4443F956E1CEDC741AB7A31F9DA350EC7463528FE26B328B71A06656D016421A616D0B6A965C20C2B6A2D58E9DA99120CC27A6B517E98418E5E37AC3D79084E9BB451AC6BB178D78D788A1121181A15EA5EA18B798E9B536B342F105E208C61181855F8430B074E565656752A319219B9D5E00D40684F75EA8B17211F61F806AF2A12A9C49ADD5C32B3DD654AC0F6EC20EDEB1A651254632A9B83988A1AB8A2347B37AF169840E9959E82EC985D8746E31BA199B202B2B3900A27567747034051D32B38595B913A8F468CA6592D4D91B96A6B709C1611700BCF84EDC5DD27AAABFDAD6A93F4981AE02B90836508B252BE33936AB023D93863AC159E88E3F6C32640F70D8B0565CB2E432B6A79D80BFBFE1EEBBAA9FA7FAB33D76B3A7FFFDA0008010202063F02BC9DE6445A458C55218D7B66B6936099136AC2475B8C0C0C0C1FC54A6B7FFFDA0008010302063F02A27081BD507E86A1BC1EFA750FBCB20731D6B9D1ED518E62114E7219436C6E822D7920741DC669C8EA1D7263510AA83E87D09F65D64CE49929EDFF00FFDA0008010101063F02AF213F96D60DD19189A672D931057A641F695AEDE0C1A1A5A072E79A33599B74E293E9D65ADD44A969F35A158DAC4EE851A14CD57CCF4DD4D66A5AD2E6A4F3485C251A02287D3E93CC55535D41ADCC0192D559F1084A88668E26A7B754EA26F469B544DEA2714BCD943E9FCD3A4B5343AD46E5696649A34D48F08A0BAA75ABAA14D46A2A2890679711037C0F81E09ECB3085CF5002E6437EC89E689030C0A4917DAB2DDD0B3E5174EF9F666A9411985B3947F6A965B2944954281808FA3A953A1569B7534D5EFCADDE364044D4E9AA209F49C3B593EE2B6452ADE6DE614DE8AB035169166632C26D284A4962531251DBE65A87E5A3A5AAC7C14C79751A963D2D352471DE1003D9552CC847CB18CE1E5788BEE82B32B3F68586118DB92D5EE3B62D11C17C4E766C31D49F0ADA0E167E8E8793536969A9BA6A7CE1FE1539A9D1FE32267BB7F6EC30C40E0ADCBBF18CF4B4954CC5AD90CA38A905DEE9FF002832D3B34BDD21BFA498F9945D06D6523B2D1197D8C441E9939979E9BA9471BD5A47F42C9A66556F6F52DCA9BB69FD7BA1A9D207206CCD50DACECDCCEC71262686621917E6D65136A6BECF7B9B946F8F92B9A78A9E9D3FFD08CC7F844716A7A350F3350591FE66CCD07AAEF59BD977626712EC26857A94BF0311046B34E959AF1593E5D4F12A247C4422E89EA5466E7A751790EC983C5EA8AB51E7D52A4AA6339471F0554E47FDF16F177C5F2FB1699459C507AD5028F705F19138688B962A36218454D0689A597FBCD58FFAFE04F8CFAA1465B14E614C998CDEF19F337798B4C5AE137C65D45547118EF5631C1A8A94E7DF04E87CC15FE178A9A9D52008CD955B34C16C251F52F6BBDAB046D129C3458D31B23E62C620C7E718B6A93072A13B208A47A63BA26ED32604546A5FDE6A9FA3A41F111CDE114A9F33CF3D56C59CDE6198101B02DB60CAB112D96448EA180F447E7B7A6245986C9E305A95504ADEA6C3135CFDF94CE3CBFCBEAD46E9062EC97714003012EC6FB17FD911E5FA76E5D321AD23F17F943EA585A01C820BD47B4F2AE0076BD6A673550B6A2CEC6EFB63A62B639A4C25EBB62F34DC6C895651506DB8C7966AD4D932BE9BA04BC7B1BF42CCAB99C0F96BDF1A4AAF757D2B229C33A5A2134E9CAA8334A0F6AD45B56EA94F065D915ABE92A75594F569627BD0C677E3B78BBE32F4688960CB15180C8AA2765CA677C74EAD8EBC2EB19834C6D86E13E8EDBA2EFB0A2E04DA611688E2B0B3FBDE31A632E2A55785BD7F744EA5E40FB1283958A871C5237C37490D428B9980BE0D4A8895E763AD6133677DF6453A54687D2A4CB5645B98E18080F94671EDDB05455B0DE2422A4D81A865282B5E92D495F985B1F53A31F8E8FF00845A2DC62E8CA7C3EC67AC72AB7E521BF7C3FC0438F08B049AF53DF192AACB61C0EE84CDCB98669EC834AA83256B7BC40A2E66848937C2D069D4B089C2DAC0319365BE46F808C99325CA409C8DA337EF85013295E669CE7D8632B5BB218E5F98A384E313B95B082C2C0701072FA4C0A4E264581B6435337A9946673946CC604904F69B626E730864373020F8C56F2CD59C95A9B1142B9BACDB0F475148348F123081F466D7325A2C71D818FDF0AF5F4EF4355A4196B071CCA310718F2FD4133CF472B6F1099F4D2D6280A6B86B0F843AD5D2D5D5B9E5A74C7EA60E97E9D69D336297CD5186DCAC16174B4F474D0ACB3EB29A939945D9719ED8BBA482C0A6D7F1C22A2E2C84587F69869C03E9870703C3BB081BA0CF08CDB2F86C85733893D93F5F603D924C2F3035817E4D694AA0F785E0C04A9CE97137CA16466030FDB1528AD77E95362A00D80C7FF479669758CD633BD255697E2494717902A9F82BD61FEE8EAD0F2529545CDF5157D6271C3E55A7B394BA9A9FD64C65150504F769009FB2335462619828016F261A24794C4C732C2CF011286A23E58C76C364E24494DF7C4B1DBD83DEA8722FA270CE7D81387F2EF33A2ADA1AEB26AA27359E319695515E81E3D36A05A194EE89F75B05B309B45F16D7FF00498FCF6FE58E0666F0946C85A69693EAEF85A62CA62C9E3BE1A38A5E3D965D1C3F741CDCD8C3FE2E3DD0DEB8B21337BDC1BE462AF55C84CA736EF442DB3E0FBCC0152C59FC86EFC44196CB638413BE2C53EA8B9E3DB8B9E3E72F06315E5F992B7F0F67FFDA0008010103013F21714B51FB3D4C67326CBEF1B83452415903A0AB29BDD2B356B35E770E3E1085A8B4ED46AFC434807986FD79E8B95555BD92F98BBA73E2AAA97DC1F51E4337B47F12D9D3AB40C311ABFBA513C4768E80610AF83E6E79921F6996BB971A6963D449038DACA169F4816CAE6D4FF260994D0E3504A8638AB3D0CE2BA9640195F634458A4B3A8716147CAAB3DC1D6715158BEF30469805460EA466195C168C24A905A92368151BCD8F2B153558BF885FD0F58347ABCA1737C2F9860785AFBE046A08C3BA578B25FCCA5AAB697C47CACBB5C76770D1CCC884B3E8743CE6160DDCD46C963DCA0B6C793F30DFD7E69E4FF9B9E8519C7F7340E0F844B2732CE67668E6553D2CD55F4134CA823F252A7C2257B83344D337EC22740FFE449006A9F012F4C1E7995D0161C9FC54248ABCA4E9000F0D67FE261118B65CD3EDE8E7B67E7325AB4B28CC3D77D303A4A50029626BC85EC3049DA3297591F1BEF287DD7ABE2F4FACBC196D72F0AE2677494DCC09DEC7DC1958A3045DE0BE5DF30CB3E3070561ADEDEC9703A970C0E655D0D0B09666BF22563575DFF507E3E0E3F468DF733932F1AFACECB53E5E18BB34C1CF5739CC07DABFD983EA3156FAB30FD0DDCC4FDAF22E6D724F278A8D3C17A2294AADDEA0903C86A9F0CD951D455B58C157F32808F087DCA835647744D07C7136F659C03957CC283965EE8BF03F130FE412B065E522295FA2A94F0FCB3E8D5B9EF6133C5348CC40965AB301DB3219E1BCE5E0E7DEA166B39E55B47B6292FC6665A0396288D74627EBB65824B603FCA5A5A1CEE64BE20B36707CA2F10A721E63776DDA7C444677F262D3C1708DA294BCFB5FE0955C73D1ED25B2E975965F4841948345AC3F643A7608C550686240DD5C56012D15E3AB2D7CDEBC4D009514DD55D204436356739E254F41FF00F197BF4AEE88FD08CBD97411D23FB3F827283730B89607D05B8AD4E74E0D2F05F8CCB4F5EDC8D7E6ABE6534EDACAA5B2CAF9974DC38B996C6D410E9D1844DDCE3822B726C16BD988212A2704305ED073C40A24117680067B87BD03412B9094B05CA3411607D72E89BCE6291C349F68AF3FA7A8E7D435AD41B68EE72A69E58738D7766804D40CE784AAB3E92C2BCC507459C40500B5C01018A7C18074D6E3A544C800E436E7A9790745671DB1FDAA1912682DD5B1A2007B364FBE6A5330E84CAF6007E6036E1657C7B4B43F0020F1750162D63CA770238161C7BC6F5F23FDC55D22BB1D32CE21DC096524BE33F02099BD43B7FD4BE6CE9E4E4F91E49939B92C876A63F1EE46599524B29BB767B92E149ECAB3EF4C20ED87AB1E3DCA6301425FA7801EE4BA975894D032FED8950FCE726D71A3E3D2088168B62F692A09E2E64DAD1F4CD798237A79BE5C6311485B72C02CBE58E8468DCF2C37C4CE6BDF9AE7E62D50BAE4FEA5F985BD8B3DE535D4E15E7CC117E9D0A84E5D7D64C0FCF716C115C64E7FD817EAC18178B4E7FF0052CE08815ACD4F70CC91882F3DBF23F696BD8E3236B5DB330E2BEC1DA58F8968E698FF0002293811E751D354B91814D1CBF339EE9217072F45EBED2BBE9686CDD16FD2BC4C5CE3F04EE5D7BA5D36AFF7B3160F057DE558F708A1682AF795AC535127C1A651534E4967218E9A97980F90C7E0DED00ABA0B57006B0AD278BC9E38E22D68CDF202FEB2E983ED28AA7091F5717B5F2316759D0FD17284E2998AE4D92532ABB023DE1FDA5AB1C552BE24DAC85DB6AB0E8136378D1E63349D7E09903BFC7994657F70EA6233006BC11043973ED298D837E5E6C8301224C17C261991F7C6F1730155D37CD93F4198214BD3477027488144A5BC0F264DCB6AE6A9D99C2CD3050E0B57930C655B5A0F3F316E55D99FEA7313C12FDBFF00B8032BC581F99CCAF26234272DE9CAF69B93EF90ED799C6DE3F04D35F0C2537C33372E9532BF547E604E057DDC399DAEA936D3E272D5FB07C5C5D94B25E39694028D0CF8C0CCF112799EA7EF89EC56F8453ED423C4FC7FA97FF9BFB9EDFB62E0BF48CCA391AF8E66BD5539EFF7DCCDCFFFDA0008010203013F214CCA3D16008E8A9858DEE4A4BF5ED730824C2150BFA75D421B997713D149504D443132C107EAC65F41823519494CED0952BF557A73FA2B62F8F458F0108210C7FC822CB611ACB589CA343488CE4A0689B1A46EDE8FCCF385A5FE8B23246E5A4C58C10A7A248DDB15F49B2413319CE88BE0F45A4A279CAC4C5E3D38922A8E4837446A366CBF7070F48AD784254951F4A95EBBEBC99840FA6809E95A851E8112ED136F8827FC07D609C5F40F42036F4BCB84A9622FEA7D40188055EA38FA20A811F41F41080CC5545B2A5F72CCFAB69E81E8F5996454BE111AF42A566A2543D70972A25C292929061772DDC125FA76A6A6447F8884327A5917A37A26D98698F4E7D398FAB065FA25BC469ED0E0C0966C33F6D81FFA9D0237C4CA5C56A1E8465C2312557A1297A20AAE25DB217819EE97DA0466B1027E88FA139FD0C4A4764F295E95454D7A1D1E9FFFDA0008010303013F21C5E970804F79E65FF840713123130C565B3D6866659E929A6A07307E83D11E8BF52E50E58EE5B1B3E20551BF31916DF5DBD08B1E84A8454A951FF9D9FA20DCA95E8A95E84113FE2914EA546CB886D7FB1E29484031F49E41156B71EBE85BF4541B118466D05382332A0E700874CA764E0210EB72D6DB95A844195E25A5E10EDF4EC7A130C5C7A3D6D4E1A07C45982D9372432E529257A8C20F4081FD114A901A251E8A67399881751BC17D350F425FEA6395B2DCE507AD08548CD4A7715734125B2117E87A0C3D171710C62D6CCC3C9C6FDE11D1163D1F449949369DC054B2784AF0CBF417972E5CD47A47D7D9DCB47D1C9E92D2F612E3D0DEA370C62DF3125115CBF45BD559000975997A7CD361A660CE3B8FC041B22AF11FDA7699163150B62225F0E883184D4DCD207A54A9505ED20B925EDDC04A667E53269BED260DFB65D0645CFBCA8A258393C423063E9703D47A3B7E12E70C650CC4944A389E296EE1056457F478988C37E998431693AC502D45F12FC4BF12FC4B62C6F51B9FFFDA000C0301000211031100001009CCE8E3F307D1E02D403E0EC85FFD389B20492811FEA747B60000000A04ADFA45A74012BA857F0D683CB8BA68EFCC5D152412FC91D53E7A0ECCDF9C66610B29B3F92E6F081C5E9D2FC044B5ED24511E7B872C983CA1BBF3A258D77550407880D497C65E69C331486C1F53BBEEC7A977DD41756FFFDA0008010103013F10AF3BAC2BCC40BCB84CBCE7D470B25AD801AA235CC8C6B5AA655A8D4966DCD0102433D10F3332E738152A42D4BBB0A8CB3C50CD2AE2ED3E23686675C406CBA1D695016607E8763F497F4F4BC317D49C35BB4C132F2A9B416694A9714F55EF8ADDAA50E23B88054AE01982E00BF1FE9666AC46C7564336042B4F4CA8DF264D02B2D3C1D46AC5C84C0B7540283063DE2AD256C8C0AB33DEEE36B8A4C05442AA2C46CABCC71BA2A8745800380DCAD14294589D54A6C9DB74C74D2B87183908BF9AA0B62C9C706B3A97CCE0B25D5D01CD1034CA875772D4D8D64A4186B7C5E83ADCED5A77A56387A9CFF4BF612156B9422242940E80E00C109CFF0031F4A0A01B60BE5507962116A6EC38DD384812EE5F62475199178426E3118C1ACB7D5F35116F20B6D393B8CA6AD6104C135754F8814B7253891B2A8138BB993052EC36F66BEF1E5052A8BD25D022B5759330CB003928EF7A7B4648DF0A14B4DD598DEA1A254AFD15E95DFA2C09000B98315EA6F4D256A976B7CC5907447818589D55917BA6C141101C2E4F7943105C719C2E959583A2768540720E9127631B3CA915ED3740E15BE930660CA40004A038D930B9AD31A3C2408CA1585E002E292EDB3E78C12F4C9A4E9CA5383FF14C00E42C5882AC5AECB688E569E965AD01ACBEC514439D781ECE11A47DE27C309190D633414D8A2638A287F2DE9D393BD653891AEED15BF69BE88F14C883AB9AE193FF0066A5948DF8C71328198AC22F4F2CA8108E30C6428DA34B6D173EC4894395D6C05642D8C73014E0C559165A65AC13832EAC3A87904AB30F22420E5855423B4295F8A848BD8511F59655DE3D6AB35A00BAEAE04847656163B5FC5CA61D6215B8286F9CE894FB9B3926133F130EAA2BC17F1EE2007A3B442B2D73B443034228D736035F146D757044587542ABE0332BE32F2873485B15BFE4DBDD6F8F98A59AE01EABD94E7A82D3E85C94C675FA44D8E42CAE97039388BDF9D32E9716250F97B8502E928A07409DBF06620E5E3E14E3AFDDCC9B49FC70D79995D08560F68D4A9F73F4BACF881566D8A93BC950DA074D9F985507E08FCC35B8058A1C675D7503A11D65129B5A658F700ADBBCB98D71C10BEECD0098E83F600398754210451D5B651047A0021D0FEE3C06621E105C26ECDD59C0D130CEBE079ABC9AF68584C1D1001F632E91175BD942A1871BE49562E38B8A5253C372B64230855C095531D420893A140A2AD10756CAC5E06F556DFC4B735825544CCF2C11A73A894DB097A3AB6A28ABBAE238732E29954B2EA37C7C67F88880E178317CF010B614A29701BAE6BF11C19A67D3C81A1AAD16CC0052D0B7CEDDB056CAC17C5A317B0B5B3031B4CC01938CCB28A38712A67F8000052B488C7C84060F794CBE9F32BB585ADB3CD580E76C21B8E19C2EF3EF72C70CE2254EF9C88DA55090AE30C438CC4AE630A73348C4A26DB0D715CE416A55064A065669C903C220387B000AEF36E7E222A1B754CB59D57B444AC58C952F008470D9AB30E623061A6B94A1938130360333C0A6540E6D4428AC68D4278B6D4141908366D6AE2714F0D00DB05C295DCB40153C8559193DA612ECA50CAAF550558EE21F111AD0A0D23C32C14C731380F058F2B4F76899B3319B2A103CA1DB7344320A0DD198D96882068DB4529BB28A87F562A5AD42A737C0CCA680EB9A7F0163F1DC75194AFBB1F352E11C8BB67DEA2927D15AAE0023FA06603114033A661A1294219A1180ACE0EAECB382C182DA3E11F215790573306ECCE3A223E661935DE19BE4826DF66D0889C37A090B2D41C0154B699C57DE0AA957ABA1D3DC63C9D8250348E5C3B3E4EA2EBF7B042C3A71EF2EC5274DB3EE3ED0A6CD1CA0D617D9FD404A46D0D432510212235AD9774D7A39DFBD5896E2F91F1663EA984AB5481F08CDE4CE23C71FE398E13BE4D34C6C9500324173D9600015EF456D2F292DC35356156AB01F025F51358ECE897B140F4C51D3026426A16894E3B949102D9A0ACA8F9551C085EF001264AA011A0739BAB949120131EA2E836B5C4B5A0C2D44EF2DB5CCCD3F9B978B90978EE3CB6459C85314DF399822CA005E5ABBE639EF5DE614DE28226B0B14D28C844B4225F106EB2809928039AD885E500CA0CE6DC7D0DC007112E404CABE26E162C9713073835C543EC88F685F66668E1E152FB004AE179C592E0323A855834DD6823D32F88CE85000053811EF7114054BD83CB8691036E750959E9091119767374AA35539393B032A2B2E2F78087278181C4A618A64F578C29284158AE186B42DD394157F448C2EE200DE11B6D528D5E2F04716B345AD691995CF72B0649CF824152E357F8A1A68B30D60E1F6EE01A12EBC960FB7DE7165F4945EA540382F263DE0922A7305130F6FF70BA82038AE45E429311393014FD33F2445722D9ECA4524511E95DA42DE40B38950C58A014CD0A3B35A6ABC14FA9354341D8BB70C4A88012C145041A073097008A1083681A65B38E96CD2ABF58E3BC0D62F80CFA41B9A06B7021BA582DAB242E05E59C436303998D955EC82DCB02DA2C2D6F79CC430C53884B8CB44BC97A85C9D54E03DB8A7E6BF8877D0B136BBF8392509511E4D1B78B9BCCB19C726EA55684D68E15C88C2D552D4946EDBFBEAEE0B05BFED435A99A19E9F88A84252762378A74450172A61752B51EE7FE64046C3BC0942EA559380118156BD32B39A0495556F6DAD1C71D621265B402BDCAABE63789D13ED5FCA00BF320FD6E57C8F855F787C05AB38EF367ED14E41D95F998BD3A0839A9C0B581D90AC6510BC656EAA8D4BF334C95F339FA4BAB97FC21BB989DF2DEDCEB31E1AF5F7EB734372F371F15D54799B4C2B46BB6EAA02D06728305E1179BEA06D57DBFC428B4B617DED7DEFCC36228B64111630670412B416296311C591074D9F09D4B6936B472E232537B5D77DCB6117918BE369F796189C2D15B61ECCAEDC321CB1D2FF0062535D259BFD09DCDFBAAAB4B9878C30F1789D97778F79FFDA0008010203013F10441D09B2355562605A0EF98DCE3F6EE146F365ABB610746C7F304CC3E8F4C2987814EC40D17B978F129583300CB12E9326258DA5F3E8EA381A437300EC259C1001896DE200159DC7A2AC2504C20B750350D4711DC956512A67CFA490998A372A311B65323F4152A25C0A9E5E853487AAA2699454E07C7DC9D7FC4D923E22752CC4CD1CE28F787FC48BE25B4884C42C36C601334F6FF63D957E58C36C26982614431BE4298F2C70CAE3F7EF299E1E7F873316A2A599257F425B609820B4B3D117E75D4A94B9CCFE21025CDDB3000CDC54E3BF7F466E88AF11C70FBC9FC10F298263E60B619430DECC4EC4F0CA78333404F024B9B63065DBD4473E63A5E9032CB3B14194257BC5E9CC5A97E2368BC0F2C168BA890B99BC423094CC4C4C2620B52827022A8AE65C1D4ADDE2090082B7684495532CCF272A3787E8CB6EDA0040C4DA54A8912BD3020CD91198CA622D5FB4A123416EE008151D37150D903144AB9824517DFB7994D5AD8CE719622253E94D5C73895E9A80D5CAC6911E434CEF665767AC1531C7A08EA2992E50815363C8F10235A8D0C44DD0BF42748F84454C4B82EE1E20ECE88BED660A6A79752807CF0C71A40974B95054D6E62381AD10A421551A546166A60120111328D2914EE39C304BD91C30D55E07F89B17CBFB99285625E45735F88035983C8B02E12BDE526BE522DB3A3AE6098314DBCFA55425CA081F4F433C438961083B9D8286539FC251F5194B818FE305457FD23767DE81FF00AA604A1E08A56B1B840DBF11D912E5B984F996AA87312344C706A34CCB708C97371C6D4C31A022CCBBCC214F28070DFA2486A263AAAFACD3D6D79F4B71335BEBD1AE655A78C1477516269C3FBCC05416E595DBF30E47F33C9F9876FE625709F7872E5FC7A7FFDA0008010303013F102C23316A11F0C2458AE9E541E079654D08D0553BFA67AF128B4A28C251A7B3C3ABC6728E3494FC7AE01D301A0E6471CD3C7889B4D5B1E0971941E612AE524B4018A95208828A8A633A0A8765DE3C91603748BF8CB7055E8A2807D97DE6D24B7D7110D41701A9BE62430A95E80FD0C6C7FCEF5BA8FA22CC73613CD253B87942308311405E621FF17F24A8114302345CBFC1CCE97F7FA344672AF3FE46F204A24DF7A0B061BF782EAB9350D0B3DF895159100D6225C7E813A26FB11D10F97F897EDBDC775F13862D1DC49AFDF83A3DA5971B8BC02C6EC879775823291A20DB1500A7A36D16CA8BE9B9E32712A772651CB00189AC738131D12A0AB2F3043F282E0DFB4D30964A23F50D69F485681B7A25AE10875E8BC2B3BE241B8A8970F8608E6770287CF70C4BA800D25D59220789908C45C0FCEA1C4BB34F450A306C81515C19751CA8E600DF224CA0CAE3DA1628C733191C855E18A1F11FFD111FC0C7BF0C34D129FEFE626710109841B6714136F490B8C9619F187C4DC86039205625A24B72DCBB8473529021BBAEA27BB5F7EA16050E6295EFB97399472AA5AFBB3683210B2187A12198341BADC12F38FACDA93E83FB96BB3CAD9E497AB08ABCC08ECA81771FBB96445DA8AB2AB64B815580F2AD07CCE62588103D5CB770159A858DCBC71965583304A9B33F481654429DF997BC2531F59B79C0FF0024CAE0F9CFB435AB98829CB8863083B6618375D626BF1D3C4465472EA521C44725E3EF2C20A60C4729B4CC4B92F47A611E908076FE88CAB4F5C3012AA149032E037AFC4FB0A24FA3308A9E521BA1ED8ECAF9AFC45E8B792FE61A0CE5442BE5858880732AC333835302E7225AF3A8D246AF88B507500EBDB886028D939D10558E222C54702AFCCF07EB07008EE562D709AD88FD1B98807A18E7713BCAD1D4A6B18758B2A8A998ECEAE617CDE498B4627171FF00F52FC0FB7F717D3EA45F4FA90E0227057C22F97FB3FFD900'); +INSERT INTO Categories VALUES(null,'Condiments','Sweet and savory sauces, relishes, spreads, and seasonings',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004C0000FFEE002641646F62650064C0000000010300150403060A0D00000ADA000014EF0000202C00002F48FFDB0084000302020202020302020304030203040504030304050605050505050608060706060706080809090A0909080C0C0C0C0C0C0D0D0D0D0D0F0F0F0F0F0F0F0F0F0F010303030606060B08080B110D0B0D11140F0F0F0F14110F0F0F0F0F11110F0F0F0F0F0F110F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0FFFC2001108006E00AF03011100021101031101FFC400E2000001050101010000000000000000000005030406070802010001000203010101000000000000000000000203000104050607100001040201030402020202030000000001000203041105101213062021311441073023321522253324171100020102040403030905080300000000010203001121311204415122136171329142051081A1B1C15272231420E1F13324F0D16282B2C243155334061200020102050500000000000000000000401101002110203060225031510212130100030002020103050101010000000001001121314110516171819120F0A1B1C1D1E1F1FFDA000C0301000211031100000173C2F4B7B75789588A72F1816510D68F3546422C165820FBB6C7527490268856CD164F69E5BD324B73AB1704332EA732CCEEF0B18713D36BCEC79DC76275D8A5D85B375385D1191DAECBD5B75417A289AED79400A5D6C616F35EA1867D0B1D2D7576FA8F285F4E7CF7C5F4377757898568632D5A351CD5965D380B2CAB7237EC1EEA831DAF73D2BBA355BBF21EBB959F77522E861B77D279AFA4CF3C5F4369747958BEF3340A44A99327722B7523CB1FAC9ED5316C4A5B5B8D4E6AC1D90BF2DEA11A8BDD5C5EA3CBC9F6E2FA4CD5C4F4461E88474789488C2F9EC468B72338213E8B2EAA01A6FE908A6087D0E85B8336FAFF00CCFA44A421BB2DE3E9FCA7D73E9333F17D141ECAE2E97268598A027489C50612543C164339B0D0A1E56E84A678EDA6B7EBE6081C3B9C133C16396A8CEBE73C767C95C2F4D5A69072D0D70DC14A69E7D112BE5DBE08C9956A739D02DA9E6178B927616BD6D71CDECD47C9F620F2749B5C08E52CD4598DE566AE9F218315CDD5AE0BBDA2CABF2C3999A3E2B6D52B9AA8DAE3E396E915F6C91DE777E95F33F42571B1075B9457C31A6A4C5F767AEFD078B4581C1070616F2A5B8B8F25BAB125009BB322C4B516C131F42C734D05E4BEA1C8DB47D2E35DD4E8618C0BF6AA33EDBC0547A690607163E5D4B40AD25D4BE51395E8DC60595D2DF651E525C9F4D58E3F4DE406DA07D1167A16E56D2184E51CC0977B7F9D66071837D7D43C957B45D85BA132B50FA4C7513417E8ED5C789F9BFA0C3CF73735AC0417665299DFCCA9261D0989DB5EA3E6199ADD1478FD2BCBAFA5FB50809E83CD25614016D8BA5D27E873DA723D857ABEC8D7A7DA0F089135BF4682999A4339589E8BE6F9D0B40C657307929CC8910E83CF2E0BCCFD88108D5442378B6AB4312A83E0FD0A2FD4C8E56DF2E2560532E85A8CBE3B53BBE06BA8E40C382A44A9B305421D6588663AB9E6757358AF4E61C7DCAC3456AE7F26BFF3DF41AF9BB9D52D8133B2593C9A5C5D3D437FFFDA000801010001050286E090F8D43DAD579C6D76576623ADF7A28EB1B3AE1043FF00AEC884566DBBEBD5D8EC6D551B599952C574EDB58B93C97E0656FA9575F0EC5933A1FD4B6334A487B323620106A002F1AA7D7653EA5DD4C5AD688F5DFB06E483C983C0525D9A746DAE98DCD689E9D8AB24F4E6A676ACDA5C946BAE7FAE96D45566BD56942EAB6B5FB18EC44DFD50F8DFB2D9E7FD8B721650CAD554FA5455D85B28A2F0757E40E7CBBD2CFECF7713D0D7329DC8A8EB7A1D37FB7749035C588C96A84CEB868CB14DF61B41B65D5F6325EB95BF4ED4E9A96666CB37FC1602D0D5FB77F89A45E2F645AD5ED21316DA47D7853A111C50C2F745DF9DD568CB61AFD9B648CC33C2DD455A7AF9E06478D6433D5860AB7E512ECA3863A7E3D55BA6F049638892C3D2C661BE3D47E9D1E24F8F1ADA8D76D3F6778EFD3DCB9E5B2BECC33435D90BD031344A996F6573562431B6276DB51258BB2469F67BE99A7D8CB1F6A499F131D27893BB98FCEAE937637F979F6DB59688FC636D4FCD7C7FCB3C6ACF8E5AE96362EBC085DDA7C73191F9820A1721D8BA9C5B6D8CD5E84156526B473CD056D86BC78EE96CEF3793D377FAF678FEBEBAEE692BA6EEA84099BFA0E50DBAD638B77BA1B7EE3A6768B66ED56C20BF476D53C97F575C8CD882C539A9D59277C353ED5C9AB86D9D6EC69EAF5D6ED486DCCCAB3457DAD91DA1D7EFFC9D683414FC7A8EDB751D066C3CAE47B9FB2DC5877FDBBCCFB3DA537D6F287B1D57CD1C69CD6EC4C112BC477FD2AA5F962565DA9DBC6EFD7DE3A6593F58DE8D7FF36DD455B69E2FB2D3CB2CB5A6D747ABB1B0934BFAC5D621D657D6D2A7BDF208B5C27B6EB9361AC7F5B3BEC323C32CB0A83B5615AD3FD5D81E7241F1FF002AEA51590F41E9933F2DB32B5336AE6AEF68336FCA2BD70ED9EC37F7777719A5D443626B4F95B0867D97C2448EECB26EE9FB91F44443D0635D5FC8346248DED2D3CEB3C8AF6BD51F2BD7D951DE89E1971A43AE302BDB786156F7D1BCFEBA6496EEF97DE7CFB269ECB66983A9B9CC54844C7986C544D6FF0066AE69905B6AE1EDDC41F5B65E98AC4D0A8B67B47BFE97904A65D1DF4D82581FFACC8FADE4E41DC3CFF6B6530CE32F8E301B34A63B4D351FD7035DDE02464B7DBDB87C907FDA616161616153A53DFB1A3F17A5AE6494F22CD30D57AAC7237F5DCBF5B61E670494F71F65D2B9CD0F647276DCE94A649DC8EA11DA86799883FA61D85ACC7B03F6EDF602EC2ECAED221787E93E95586BE11AB216DAA92E37DB010CDA8DD1A1B6F26A306CB5975AE631AEED35B2D762732A96D7ED965492265313062FB6FECEFDF7CB0F611ECAFEB47A53954ED9B7AAFF00C917F90F8B9DBECF97881F3D7EE75FEBF936E755BD66B5B6FF00B32087587BA76BAA37AA298D4EACD80EFE9127FFDA0008010200010502518F673B869CA0EE0941670321742C7BA6A09DF3CD66F0537E31C74AE9E3E5147186B7DBA97E7F2D407BCBFE5CC4DC0E07C67D1EC8AC705A80CA2386F0FF009E2BB72798CFB20B289E1C9A57E5C4847E4A29AA5761BCC0CC0E0A8CE1158584780BA7DD6415D2B0BAC7127BB3885993E809A56392B0826B864B538F071C3DBECDAED0BA9817D86A165A9AF07968E03B973967D81F67332470D5D1C4D3E11917585DD09A1A5741426720DE485941EBD974845A8A1F2B08152CF84F24AFC6116AE829C4B5367C8F411E9EB5D6119139D9531C364081F72CCAC7B96AE84E59F7050F41F51517CD9765DF2837DF09EBD8F12B78704DFE0EA5DC44A813BFC82E9E0FC37D975291393937D5959E0A2A02A66FFCC371C10B0884F088E0A0E5D4BA9752CF04F1D28B5009BECADC5D42377184094E4F07242EDA3EB6A1C3D353946A40DEA5F8F6450CA3F017FFDA0008010300010502C298FBF18FE33F0DF8E6CBBD9029DF27F97F117F8F32BB2504EF93EB1EB60E6C3F0380A61EE7F9636E5FCCEFC9E656E47F26130E1FC4CFC0F4C91FAF1E96263BDFBEE72ED4857D279468BD3A270E4F0F8BD59F492AB54EB51D30176005DB5D0B00A7D06E4FA0B728C2BA0FAC8552997A8E30D1C90885D3FC384625DA28429AC0D5563EB7818F515F9F563D21AACFC6AE2C3382B0BE3D03F870820ADAA63FAB907DCAC1E47A31EA082B43DB5AFCC48A6959594C3C80B0B0B0B0B1C972EEA63F877B8D7CFD0F72CACF0D09BCB7D653B88FE4FC354F8551CFE93C1CA6FA3FFFDA0008010202063F021185203D82B32AB857D15B427320246703F1D0FFDA0008010302063F0211051B5DD5B0EF85C76058378217E858AF5E98BC8FCE343FFFDA0008010101063F02D3869348FF00F98993ECFB2B71F00D8431E88950CAEE7160C2F972A496421CFA4C79588F7695238DD6390DF51F4A9CAC39D24EB283DCB908DD2D61480065988D4E5D8696FC38543BA688BC7DAB22702AB7B816E5EDA89649C41374EA620E822D867972C6BB4E624DEC7A845A18B6B51D5D5C05A8B24644A5C231B83D68756A1F6677A32CFB9128174576558F07F572A7D8C30931C7269DB6675358620F3C72A2F35DE2DC248914E01CF0E961C181A8F00800F45F56AD473B8ADDEC8FB8C0D3C473462BEC36AB0C056759D3EECFA63CBF137C98B772218ACBCBC1AB6CA3210A7FA6B72D0B956BA9054D8E0B6A5DD4853B97BD8667C4D7703AC6797BC07017E54A24459196C0C9CC0A87B6BDDEE6063E2B636AFD26C9BB9A31963BDBAC62741E7E58D433ED53BEC0AB9BF5030DFDEFB79115BEDE7E9846E8354F0EE03608C71B11FD8D77FB06689A35B6B00DF5AEAB1D241187B2925DA45F952484445073C74E77C3C6ADBD5954A3868E4B1431694296F6655FA6D29D9DDC9A5349368A703A1AD9F5623D94B017262501A307D380E17AF89080DE111A69F6D6EEC0FF003E4FF51AE36F93026F51C2DFCCF549F88FC8633E965B542E32EC8FA16B77B9DEB093F39BA14E3A4643C282004602F7A55BE17F65EAD1E41ADAB9D1DE25976ECECBD787A78A9AEF89E2DA4F00D70CADAF43303951D8C32A45B6909E8B05B6AE6C2D7B7D55A44B218E33A5021243C4CA5411FE6C3E7A1B4DCC8892468164DBEA04AAE5A72CEC684F1DE35607B80AE01BD372BC6BB53C9214B5F1F4824DC655BCDB46AA35DBF98BE96188F106C7035134ACBAE17922DC3A1B8BFAF870FB6BE25F1022C8F224487F00B9FAEA498B0BC8C5BDA6F5EA1EDACFE9A52718A1EA6F9B21F2E271AEC9F5444A1F2388ADCC6C5577114CE8E8C38AB1146F15E46B6953C6E33A13C4E1FA413E0795198FF27237F6D7E9A4EADB8C6236F491CA92159CC497BA03E92DCABB8DB68D04C3155BDBCF490299F70A4F6FF2644E3DB6B32B0BD6EB70920132C7DC1B89316FCDD4990F2FA6A6DAEE3F37753C5DC8ADA9AE627618DFD26C6B77B652D79A3D50291A7D3EA2BCEDC2A5DE77022C9FCC751EA3C073A497B6629E56BADBD0CB99239E3502C784B345ADCFF8E6FEEBD58C8AC1B155B0F77855EF09B61A6D8F2E757BC78787EFA0CEAA269BA9B48E1EEFD1FB02294DA0DCF413C9BDDA4F8E2293B0DF61369F76603FDC3EDA0C6ED18386AC701C298A9D2CC4DD0F8F2AD133E8B9C09C8532C7231D040523D241399A548D356A185D789A114D73B482CAAD7FB3CA9F65DBC5C340DA89D01AE460A2F526C7672D9E50A674873F23715DA6B3B32E824DAEE0364C061E55B695E0EDC11A58E9013F387BD8D1DD69555219DAEC065C85411BAB5DBA46A272BF8D4617D4B082387A4D5C2C6BF74DCF0E585126205FEF5F3A481A20557AE53860BFBF2FD96B663EBA93E09F1CEBDC2A88E53916B7A641E3F6D76B709F94D86DB72A2F1CA3C7EEB73157BDE46CBC28A918DAC2839CB91C8F9DAB48E82F72AC7C39547B3DD6F3FA666332C30FAF59C353F95B0AFD66D4345F0C750D295F5AF0EB27ECA9F6F3BA6E22D1FF00B0C353C57E4C3C687EA9A48C291A64070D44F33CEBF4DB32259C7A257E89355C8D3626C6DCEB71B2DC2C5DCDB153DD17C548D5AAC00D55AC5DA356C5B12073CEBF41B6C015EDEACAC389A0FBC94C87882748FEFF00A6BF2E043E3A07DB47B70E8BE76B0AEA256BF2A40DF2616BF8576C1E9E351EE2F68CF4C9E5CEBF47F13459F6D20F7B1069B7BFFCE3FEAB6F9FE95C8EEAFE13937D7E74D06E2368B72BEA8DD4AB7CE0D5F4DE34B6BE19D1DB23148D6EC4B7BA38D1821BB9074E56BB655DCDF97DC6FE1B247B26182AE6BDC272C7F852EEA4B2BBEAEF491AE956B9D56B0B6551E963DDD57D06E45B21A6A3DCED96C72B28C2E387850F866DDA5ED2375CAD8471279F3F0A5DAEDFA9ADF992B664D6789CA8C5B3432CB6C5CDF48343B6517EF0B6544F7D09FBBA48B0AD3B98FE71C7CAB5F5596A652E1AD1B598E630CEACE7D9F28F86EE5B1FF858F11F76AE8D872A10FC5F691CEBC35A836F2398A3BAF83EEB71F0FDC3295E960EB63C2D203F5D773E1FF1484CE7D4CFB70011CAC091F4574C9B2977DADBF3CEA1A51B1E91A4E20E5CA9B6FBBDBEE65491BA37071849E6EC9ABEC352C9230771A0AAA74E837B5856DE1F85EDA69F6A635B98909C4624922F6BFD151CBF1D91A08C1321891BACEA37B1FBA3DBF352EDFE16891ECA3F484CBCEFC7CEB42F54E7D29F69F0AFD66EDCEAC75293D2BE0056B8B4E8F7AE31D279D2DB516BE2704C3E7ABF6ECB8EA1571D56E00138D49B79A0B453621335B2F88E37A8E38EFF00F5F348AA56F8D8E7FB17181191A5DAFC41AD2E4929C9BCEB0F93063575735699750F0AD6FB6883F1FCA17FAAB4EDE22C4645B0151EC8BF448DE85C16D4CF18B2A2E955A96766D4C73BF0BD14645B2E016AEC17B32AF48BDF1F31402A89782F13E74A4FA931B46349000CEBF2F1EA1DC1CBC6E28A63DCB6A2B98AEC5C5D6E8572F9A8CB12DB70A303F7BC2ACD81FD8084F7601EE9CC791A019BB6FF0075F0ABA9BF9578D63F5D12D2051568BACF3E15B8DF4B622140ABE6FF00C2BF416D5B7852ECA0DBA88A9253190C1B4B15388FED7A40C43331D435789FA2ACCA74AB8665B5885E19516D674486E07052788BD6A56793B6184E8302B8690D5185168D9595B59F0C3F751DBB6A2C9E9BD8DF2C2B50B98ED8D6A5CAD53463D37B8F9F1FDAFCA9193C8D2C316E1CB31B01444B34863E6A7F856AF5B7F8B3AD322956F1ADF65AB5C7F51ADCBF583DCD24AE56CAD400B59BA7CF95B3A55D17F771CE96C0A0C885E1C88A30150DDC239F3BF850E82928B2A3E38A8F74AD26EF6CFAA218088E0D6F0CEF4C1989284F561C7261EDA6D5362E020523DEB7017A20FAA9BF0AFED2ED76CBAA56FA3C4D07B777727394FF00B7955AD7156B635A241E5FBAB77B166D4B2A0743F80E3F5D49B9FF00866507002E79D3AF498EE086230FE342162A64536D5C4F951D6C25B1B2A9E2BE74A44962A2E352E5E00D3758568F10A40D471CAFC68C1D7672073506FF005D76F46A45BE1992BE14756BED1F45FD588C572AC72B6352EE31B31C3C861F2E759FC82775FEAE6019FC0701F25C007CCD5DF4E9A2A02A2DFA7CF8541BF3E843D56E2B91FA286FD07704485F0C6F1918DABBCA4088E7F89B98A5737BDD8A3DBA30E38D1619DB317372389B814648D812A7D07C31F61AFD4AA0C2FAD73B2D1D11FA98DC0EA37190B1A67ED93C63B806DEC0284805C0BB35BD3A73B1F1A6568F4ED85BB8E0E7ECF9703F2C2263687B8BACF85EA537E5614BE7F236A200B71A6D0DDB9C32E8231070C3C2BA7D37AEDEFE2B6CC1FE8E5245D90F867851FF00AB903EC1F1B107423E382DF31400FE41B6A66C835B1FA283001776B1AF71064CB7E3FE5A3D2AC998E76BFA68759452CD6B0BDA81017B2B98F758FCD956BB6A99B38D70D3CB1CB55AACB66BB7530E15FFDA0008010103013F2122296576FF0010EFAD5BEF8FE0427840B567438D55F37F69CA1CB576A7D9C53F9944506FED17B9C2DD42BFD0147623BADD7B854FE7B6A33731ED6397D41968569E57BF64AECCD143B517AC294D95128C49CDFD23D462E0C73D4B4ED500087714827108604D1DA720D0F917506FADA6F654A8BF04330D74C4B02B6EC62AA5755AB39C3A327A5567D6C7FB9622D57DEFF102B7B2A19578F709A6BF7EE5C8B34FE67E0FEFC5001F40EDC83C7D6E6277F4A8653BB011CA6C6113B79EBE0E07BB87E98D3BEC02385E40D42D25EB7D2093013B6C82C34B38D96799DA87509C065C1AD535ED2B8A0DB49FC083A18404DB8EAE8E6B1C0C0158C48393E8B1347717429E251CC0B058EA8EF60B26E2D41D39AD8F52CCB652130FF527BE52DC0581871E2EBAFF00723C0B592AFB4C0E9A92B25D47BEE16DD8C6213F11C2533F917F1C7DBC686290FC95355C4CF950A927470EBDCEB2A765A6B5FE4ADAD83B85A2B687A2CA8195C1B071D2BBB46BD447308CECFB597FD411559AA29C20B9E77E52875D1D310D26BE0CA94D5B434494DF45A965FA9DE8945ACBDABF140383B03A336E920B016DB5996464536537840A55C0E2724A5B69089A098E0D3F4752DC171E297FAF16830E9C6CC857DAFC3F88D97A7AA85E023EBFFABFAF3517C5CC96DEC6FF00618CA4BAB23B0770915657145EB5EBB3B99AA24E5B1AFC4234A5FB09F097B76F1866D8F7C31A82D6EEABF5BF393E52871BACA5FC974C685AA7974463D9C7442685DA4296ED5028ABB8E21A369E3029E472B799D47923728DB83F97752915D2EDEC9046D7D8976626CF609696C7E2720FB4DB6D7ECA7DA1E680EE343BCEE131C840D2DB57C399698CDB5BAE6F3E52C51B88F8BFB7D57CEE309CDCD16EBEEE7DE0560098C2AFB167B487F04515AFC5F68135E54B382FA7E583395D251055FBE129C4C6460B6EE7D22E2400F8B1A3A9AA0E8C06CC034A0792F96E6BFA4369CD7D3BB35220BA132B9064F7D7B96F92FB4244C5F4DAE62526C20DB17828B4395FBE4B440C35B2D726F52982B4A335A3A56E414AC52F85FCFD08304DE895E85E05CBCB47685E9EB8B8CBAEEDE878A36962001471E6A8656D2A267C3F9815EA152D3FACFE1E996257E1447EC7E4F659B127D505E4F7EEE0FB003D7B800C6AD59875C95709D4C7CA1CA823F43F980D491978380E5D45EF8A825404E416C947AE0FA9CFC3EAAC0007EECFA5C667129ADBE11A7CFE2236455843A032708A3280C3963193B6C46B6310B65AD3D1DB92828012694FC9CFFB3BA7802BF425C774E89F1CEE7D810DD5EEA7381F25C1AEEBA1DFC78C369C33B41B670BEBED0F89587B3FD398C6BCB141E1F84E934E488D5ED8C1CD3D07C35D3530AB850FA31FE22B4FE8917057ADEF89DBC5C52ECFD7BFBC643E190701175D96F8F4BA364AB6C2C8CF243A9E72186ABD577114B45B6BFA8FA0FD2E21BA3711A7C97C57CC0DB8843CAA3C9F4E9D4BA11ECBBDBEA7D3EBD97D171C9BC2D4AE796A1D702BF07BBBDFB4D115A947DCDFF3E60049F2D905DC31A74AF69C4366FE020FA4E3C5E785CBAEBC1C7E19F983E9D7E2187CB722111B8D1BF6DA7C8900E30AC9D29D463504E028AB76FDED2B4B4A5FD005168B3DB3A83AE4D5A3B7D10687D933C76923707C8EDFA273A064B8A16BE54A60821C47286A88E85731693003BAC7D9F766FDCBBD5797FAED2DCB315D080D0F23872CED2038DC860585631E2BA63CD4A359055202CDA3E86C180D8BABB2D0BD7ED08ABA179C1FC3EE3C67BC8AA29A28EB9C9DCDDEEB017F999C4DF518CA275561C890C887581E83D1FE18116BF99F2C31A5BED8D8027CDC32BFBF957DE56901B4BDBDD90F401A03FB16FF005164951CA1AB5DD1EE1520045F54147F3F11EBB2ECC7D5CDF8FC4CC40C4AF2B60065FA1C9EFF00A812144306CFC4CB83571A5E0D9C1C5F04169A0EC08DADAAAE42E5ADD54E1A3406CA2A980FB284F82AB3B8DDE825E2A8F4719AA4E0301DBFC9463E08B1F06FB4DE1FB31865BFFF00C0F0C2C50FB0934CC03C628CA7029FEC56EEFC13F2667621D8096D5FC411F8A144DFD418E2CCC8FC188DD6BF12B251C6A528B5CBDBCC4D0E4B561F4BF195992F6B71F16E5CFEB2DEE5453D79089490C396EC12F16FA5E63577B37352A8C0A41EABF894AE63D71BFCE1320F115C5C2F466F830F860C1885A1F31FD42D14BD7AC34D217A94F983ADDEE157F761BBC4C35103745D5CFCD34B6B3EADA6CA0FD2772ADD8DB9F6D54698BE4A14A1CDA6BA7FEC6299D72D89EF3EAB9942009B64A8ABC3FF00C824A53805F5E1295FE4B044D21DCB4A35A0F390622219B340EB853BF3F1D0793800391AE670ECC97BBB1B2AA15E7777E23FA3C9BAC1FB0ED3A082DABCE2DF083A7F3EE1EAFA2A7DE897EBE7207FF547DA88E88981B50CEEA44940715F5ABA5912F11C48F76F56EFFC8F8CB570EAB9F8FDF40F2878061D06589EFE22EE6C2CBB7B957DFD9949B1EBAB6FFAAB3EF1CC68F139E5627FE22402E0D395CE1F3D7B966342C12A0EB6368AE2585E85ADD12CCF91FC0FE08DBCB11D2C7F711AFF00E253350EE035B7FDDF99585E67D18FA3FC60C8116E7407CC1025095FB95D331A029ECE3F3AB3E934504115D2B7A3608DC9C050E3807227594E520447B1770DA1ECCD4E48AF673DC34E7B4BCE0A790E3F9A9C3133522BA15BB5F925953BD5297D459F90B818D0BA01B4AFB1D9B92EEDC828B29578F8E223402017E15A0986FF00B0DF1B3EF13B9FCC1D165A00D25A6D577FC426C70696ABD8C7585903B3903DA0B45955B77D43A6A10A94B5553B8C66B68FD3DFE25855B6A8B3541197C8FA23EB82821214A89C959E987B59CE54502CDFFE20147348AAB7BA5F95FB960F67E3B2AF7EEF6AE1FC4201BCF84DF5D673028FB59B1AAE163937DCA34F030C5A49B4ACB7B5D4D4FC0CAFC0CE39EACE27FFDA0008010203013F2165115BE3912ECF044C1082C88838E58CB8F6A622FC12F7C37E0DC6F88025A5A40E4CAB0E12CF94A0EC41C4A628DFBFD3284A73CBF0F5E362DBC5EF3997115B653C47119859DDC576F03FA199745D40B3940BA945CA753E689D2564D621586F23D96AF97F41896A7085A58628DF8A0C475B946D80EA67C4B50DBE0FD4E6E74C10CBB624171C457D4DA73026192E8B65CDCE4A96D5058EB102EA2270CF8BF27BE0F8A099B4EC4FA2FB9B9C78A9700274E3244B98C780655C431680780F0149ED96BC09F68197236A0F96043C9E3BE50690251C4204603DF26FEB2BC5B0F102266631E2781CF64DC52C5CC391A5E51E57E078B97E2FC0C3D3EA55A3C8E073388317485CC7C1C7CDF848912A22025F3B456BF32951B1387C168AEA982010CF0E32E5CBF171AC6DFA2D6181F7F00CD979909A26D0D9CB517EA8465EC0F22D6055C61E63FA9734CA8A9C18BA8A9B63A9785CD8421E39CB425273F1BCE6932FE6176F5E179CD0116EE7FFDA0008010303013F21E12C9322C7F499BE6BC7131DC3162CAFC9734E3E2FF41065F8EBCACFF17C3E2DDF213CE5FE825C51F246755282BD785FD22A2FFA17E6A1FA2E328087867DA7C8F847C3023E187E8086A54C232DFF004119DC7EA23FA1531AC12E8AB30E7B3B1049C6BC0451276113C54A8CE3E0F04B23A9CE78D48D27688823DF92C6147AA2113CD4A844BD9B0F12950ECEA6783397ACFD0F9B8C4B01E3C17F2C0A39B8401E2E752F21156C72DD418F8AF15E152A540F130AC1F69F2A117E0117F31C7CD781FD01E0762AFA1197E1A351BAC8392BC1254AF0AFD223965BD4AE3D7950C60B7903C1C3C1F29254AA220BE0884567C7F6F282353BA22A5C20231F2C3C78B197F02D0DBE626B43EF37FD9FC65173F17917E3FFDA000C03010002110311000010FC7AAD3469C07D1D15559201A4AF6B25C7D776A8935D0D589358EA50FC3D1616247005E2CB07DCF6390F19CD3FE3E2F67B0EE8321A53D56D439E19E8176CCBA9BA08F651F12EE719641E6B7F867E9DEC2D832883A1EF24A2845D2A7EC0A7188F27CD153C78B9EEE9DF4AB0226AE609093598AAEFFFDA0008010103013F1078ECC8760E2D575EA0F12B1F4CACA32E45A06E42C932050A03C0A8A3029F5EAAB543A7BE0CA507A71ACD6A2D8ADC17A00A9AC0E0B48C4104170504B9181A036FC8325DFCC14B02D40C552EDC517535006AFF003ED02AE547AF9EA840042DDBB56A9EA878B30E5AD557A50D9770F210DD41392A11B06123AA825B47F5C088D578A0DACC193B860A46DB7B965AB968E2CBDABBA223808682737489A28B29BD0A58A80B1C175D7560A0BE41AFE2E0475B683D71C25C8B7B813AE85D2D9F0F1A7FE00A568945DD043DD40D291F8565C876689AB8C0EF8813888B53544EBBB734B18D031F4547D8F0B9CF2B10B271BFD162828AA1280A00C80688CEECB9842A9F3C5CC21C81E9172925294F317EF156EFD8000E46402D5A7CC116DC1685E81D97964B2DC09402662A2E53271366807E49D0B181CE06D5A4DD52BAD765F20CF05A95AB60C726256B2D8B940154B455DB8390516491644134AFB449404075D0D34CC0EC36CAA9ABBE65B304C12BFD19D0C2088D2B0AE67A08197C03598AC78038105291909B35C9202374157F697EF902296A45535A7E0770954D28A606D397796BFBC16D1C55848134368FA4E7F80EC60C747296B7DCA476517AD750903A2FB17D46421474ED4A94DC5B80B13354E0B8BBB7069B0B348DDC24C85410BBC6292C2FAB67B14504174B3F0587319616BD08AA3C513518708B02E1E8804ED57C21C29407B55DC7357AE7A34B828A45209A66538A825AC19A9146A0B542AAB6350B82CBAD3DABA48040801A00F4873143443B694D3EBBA79179B8A5FEF5705730BF46AD3FE41F696EFD34DF79DD0BB41E2A5D2F681242B1B695CB92A0C1AA7363746D96295CCA16D758045034A51CFB8D3561ED02D502AEB7B57C47B3270087201B4BE4E6B981559AEF801C91763B878825F6E8C35AE1B1294BA8D54A8A3473740950DA975057ECA0B0BBE7AD6058886B79881AE296B65D5736609458A520302E9ADAB6A1DED6B5922392900001CC7CF1CB7BE8B4B10DE0FD2742B923C0A29DD7189A0CC54DE62546D414FA87A8554B7355D0ACB387DA2DF47C0F2B7BC561E3C84B056D71074BBB618DFB1970872C07DEAB3EC59A90E0DE22F15B98A410F59288F74288CD72AB4E81A848906E021034BFEC63480D05F6084219A7D9CEA12442D285B4B5627E3A9BED8C0EA0998B051428A2B3553B749402B67636253F3825B25574B5F3DE2B684330024B0FD0CD31B294E2049A308305D5981563CDCA56CD14D7E3216D9C53737AC330AAFBCD62F770915B4DCB962C01206511F40813759BA4BFDA68653929CCB832E2B25D22ED0078BBEA00000501801E6F17A2E082A208E57B1B1295DDFA87D2B8640D1D4DEEB95A688C0D6855D29AE858ABBC597985F0C276CE2B70710EC2F8512BD2B6CB3EF2F318B45E0085865C2C39980654034D887542E1632801D72004D36939A5BBEE801A55F0AAF0DB423AC8B5EAD46801B04C60663E5880058B9E0622D5162C4FD81E289A16801485E4E037E14D8C50EB4730BAA55CCC2D0ADDDDEFB9541BC7E8C09414077E90102BB2F2D9ABF2BF511A4A294D053E2045280A5F9B2BDB56CA12CB5403EB630C2FE053F2532E15757042A3766D87D610457BD3C3E3EA61F7A5B44350A4D75F459DC26356998BBF9BD6A12906A10D608016188DA532ADB47E22B53A4409CBE610EB2BADA531429CABD98AE42FF1C8A83A1D1B8204A40FE40CDA7756DC15977E2A242A61E641961E7A2B81681A11D9D44CDED67926D814A05E5A1C05A010E81845D0B0A2F317C14E5FB024A6BA1ED9AEC64595295C24BAFF00CA5CD04E7059625014E0E5F89A76A181616C572A840712A7D54895CA980E7BAD889CFC1556DE4CAA6950118E4602D2EC6D269C90B406D14090B5FCB181194456BDB2E88C61EBDB7A37760171E2BBE7DF32DEA636A2A601CCF7CEBC9F44BE1582CC4DA352AA1F6452ABA40FAA496DD07D972A1155F654229317C204A0EA94C59284F8B1D35A4EB2842AA0458E0D208658E89E85B2CA96E468C16D5636E0D4AC4FCE6BBF01BE30E8975C85E8522225A1556B258B59ABB9A5A95A22E532AF6C428071983A1435CD46612116B013938DA15AA4299A7EBB24D222183C350DAB1BCA45399286F81A9D64811140376A0BBB56BB932A7A36A89A0216140B2B99BA8A49F44740DBD29BBA5AD3341822B92A3FDCBB5C1E56242C09006C8CA21622688F12EBC6014625CF9D8312DF2889C5F4E4D728CD3C819C4BF589462CB7FC1B2394111A0C384C3F99A8BE2C0E245BF7863007A04ABC3D1063758E65C16E2A5D8F65CFB681A850E69B46132FD5AE0B717923A4AD2E432AA2F414052315D835511AA516C6C65D148C3B89F904D12BA00BCA7716A023064A662B68B680D4D0D4A453B313120A02D51C8CCA0587B416DA5E9EE54808EB055AAA0408EDDCCAA9D3965C02E9D74E712CD50BB734CBE0B6EE55E3136E01FA38D1A3AB0FA4ECE2B4DBD6BF9A093C1BA43E9BA6572B3ED01AF9BA8C5443E17FD4BBC0B02D707FD4B2C4B00CBE02B6AFA233A95846EA2A845FA629551416A0AD74798E3CC45078905EF0080B57C3256CA0ABC5C2EB6260ACE263F99A32E36BF2D3158631929CD01C7516C2870F291D51B8980360C769AC6B848D24294EBD5468151C26985D24B3097428ED66E4A93D85BC084A14C9EB44A659F090D71E4A1F5085A5BD740A7C02A07A89B871C907CECA20F1DC0868D9CBFD1137E57295A2D45FACB53EB5DDA432948E5770AF4A2FDD21284826C5F27B3E8C612A46B858A726DC18214495B7E96A0F3C57AA89AF2C34281F8AB30706885812E307096AA962A50F08A19DA8DDBE6E500E0A3D4594770E2AC1D2928D555820B9871660232C478A390BC600150280A101148198C62FB616C951B1F845B82DE2FCFB0A963B05685AD80D7D1563CDB1D7EAFF008BFF00989F32D157C304BDC51EE308A22F0BD334B57FB68983CDCA0B08F7946BB314BB4F4A7C947310B005D3D3FE080E56DE852FA07E387B80EA500B5B8E0349D59191A4A161A0382DF070C4B4CCE9AD14BB110F1D6A0D49175A75428A8855E736C6FBA6224A94535810D1514234B4A298CB02859E0C119B12AB8F9036AC55528562611B0DC34A28869635BC0C2F8C471C49A14218417EC370555A33C0AD8B9586A7B4F4A1BB6E8F97ED2ED87069840967A20BFD27FC8D28CF774FFC8A1B9FDBDCAF65FF006F98B17615286D83E80ECE7F04B43550AB35EDBEA10017F4CEEE88813D4A1A0EADA3E2525CD15BD9A68AF95E12ACE064281282A3DA57E8217C1B0A6139555F81AB58613D54088D245416DAA3A8835BD22D001D25D535EF49E3CB4A442110D5EB925ED5120DD48E0A50CA29A81F7BDD2CBC142C28ADBB6A6F648F7041165A38B14B2115983A4AD86FD2FAD97A03615CD07A6B062F9E404101E6B49472E8DEDA8551A7C92063F434652BB1EABFD10C369E87FF00939A9862123534286D45A555A382F85CF44D15B03B55E9FCC615EA6EDAC3D14414B0A4515418B1CC268DADC53285342F8214C18A95C8E55BCB2043E9550772B44829560C00AEB46097FC0A710556A40EB8D42D155DAA0658C1EA212124B61027DB884022AF8EF60D1A7D6654BB9282A82A085C573D988162D430AF843672BA659056154DBE444D03DC08876CEF2BCAA4BEB75D81753FFFDA0008010203013F107B52A3E6188C74B228B42B23080AF1914ABA8952AC61B2117D10FC1B299F89789C9B168EE1AE0DE42461B60AFA787CA0A1F4807B1AF847B268A711B0BCC011028C4880206845A39C296E48961DFF00234B115DFE27F2A3CC22384F6277E1D971FA4B5510F96C503E65F25E6200F32C6723106C6C60A95DCCBE50488A49553B94A4631AF82A5B7B732F669BC4DD7837CAC981041B2378E41E186106B79850A206B662A7DA1E1319717211F12A87664ED1F29C4A83E916138672C31F6F9CA88FA4BDAA00AE19CCC6290976A4377B3E7584B0D540CE096AF11DA9D5B8E03CCD0D906C75FF006284D711C2CC2057959620A5A7C263B2A5CDDC41EE53688B350AB5F49444388D44C331088F700A9DC57EEC9BEDCE38B5F1FF00670B5FC4E63270A3E3D6565C6E754156413B85847DC5E41D8A3DC4342A19CAB232C29C18ADC320B0CD45E96016A1833180DED0E7F6224B528FBF884CF057B1B8CB3878A5DCC6A53F4411056A85D66C6560545DD70472C8C25F311A6AE541AE219A758D6564BA327CC60E123EA164020C21A6CA38957CF85A7100EE31CEC2CBAD8432220631E6B2AA6B6F5D8914ECC07CCFB8DDA6A25470C3B57567FECB15BBAFBC701972C5328902148134B8DC29CC4450898DA97DCE08F4343FF23545BB86B392F58EB13C17FCA64556476AF231344E7F77096092CD8891F253C818B617A67608304A877B8BFF00B2CB764E2DD8F25DCA3869817347FB8A8347DF5311CA442E6233078012B292E22088EF7889529DC7415B385EE7016DFE47FD83BEE5F033D4A2A53191B2E60A32734EA07CCAE41916518CACACAC2F0481412E828E6B2FAA13F94F9417F6F4C6E4926B08D804663DC42AD0EEE04B61D7728A8F715CB22F483E9132DE2DD64B5BDC76271D86B1A3AD252A3A6990C9B57929CFE2185C1A77B79F5FB61C0FE610E379052CC49DA22D1C2B19FFDA0008010303013F10CDA5CFC454BF72C8A4BA890873E15044263980ACDFC9A940C7B2898C701DFF009E36635FACC600FD17C61B8CBFA238F183EBFA00A1AF53D49D7956CF98FBC7D211231547110E20A8392DE219408DD229FEC4D951F32F83973CF398CEE6DBF70A225785592A3495F25542364F4D95FF007FB8A5C164B30E31FF007C912DAB93626E3140A9425C4A4DBE2E245632096AFDF11C55CC075EA51F58B7E4C344414BEB12E27E8E11C2C25B0957C411183D105F5ECAE51F4DFF00C8F5A1F7AFEA3DC3EB6CE3C19CDA796B6583E35C69E7C169882C856AF84545EC8BB65DCE26DF88E56487123F4E30BE494D3285FD005F4836E412A9F200A639AA75DF88E7232CA9BE541C16C383931CA2BDBFC21B28934F3FEFC4A7E1FCCC65EBF9FB7EFE22A3BF797EBA8E8FBA2DC76278D4B8403D42349B988F5B1E07DE8443D3DB0E800EA07DE3698A6E03328ADFAFDE46A2AA5AF9F9FF00C88C1AA6FF00BF9FAC666631B78255D45CB41CBE1770D0E56679BF2FA1AA8BAB2CBB8FC4E7A79970776CBB660DE1EE25D3458AFDF1149663E432983731C8020C23C4FC033EC27F3B1D646B0A4420D7AB95D4A142A5DAE59C23B8952D2DE0280C0F17F311E254CA11DBF87FF67B51A3FE7F11DF055F50B995E245562737B5FF00CEE0751FD35E963420A966BFC8BD1000D9EF4939D303E81CFCF1F8816D0AA9877C5E6834C68CAC1CB3AACA5CA7E8DE5EA6FA323DC888CB8556D438B9BE3F44075032EA9F20A1FB7FC0214B70F6F6110C472A3C64768557CCFFD900'); +INSERT INTO Categories VALUES(null,'Confections','Desserts, candies, and sweet breads',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000410000FFEE002641646F62650064C0000000010300150403060A0D00000B73000012CB00001E8100002EE4FFDB0084000504040404040504040507050405070906050506090A08080908080A0D0A0B0B0B0B0A0D0C0C0C0D0C0C0C0F0F11110F0F171616161719191919191919191919010606060A090A130D0D1316110E111619191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919FFC2001108006E00AF03011100021101031101FFC400D400000202030101000000000000000000000405030601020700080100030101010100000000000000000000020304010500061000020202020300020201050000000000010200031104121310210520223114064132243415110001030302030505070207010000000001001102211203314151221361713242041081915223A1B1C1D1627233F0E120F18292B243142412000104020301010000000000000000002110304011002050016131511301000202020202020203010100000000010011213141516171108191A1B1C1F0D1E120F1FFDA000C03010002110311000001BD717A65EAE2F6EFEF49EF78727687A858A0F258B85674F96D5EA7CD9E635298B9166BA1CE6517937FCFFD9E54E1AE90575E776CF117AD4314119E17DD4E7AD9A9F1E33B251D4D592D25B934587A560AE57F74B3B0614AF8E2DC865B7A34CAB1A3D3A8F9BD1D02C3C19F8F0C1877A8763881CEF99EB101B2E606869B422BA165DBA5CCDD685A73ECD40987372FA22727A28FD5266B3C584B447CF0784F31565A631D6D6554C3619781A81134245530A302EB8E474E9A5AD931351E1771AAC179153EB67A5A32EC0449B8895E06F44EDDA9101D1258F6B864305B2D2C6B9BD9E5B1544B55584574CD7DA24D9106D3506B154B757333055933729C8CCC4D47742231C957374DB3A34D1D7B7B19D5367DE4DCEB5A572D5868E561402D0B0C343C9695EC2B1146C7DE8F58D7A331CC4194724307A48BA9EDF132E4CF06F5C824EF94C009DD95912E5F3C0269B8163504DD219BEEFF00DCF98194D529B8353A3F20874C9E1BC88D8A04DD2B09EACBB7B0503D837259B4A6512D34D5CE39A9797E990C5BAFA5F9A8B5368CE844BD29EA1718AA1A38501D8A66098DBAC14D87A116F42C54B4651CF19E0B719ED30814BD052701E75BFA2F991BC0E8B73BE005DC961FA6ED1D0F93E5333693E09E2AFA4F27A89691D699C8D060AD839F71B623CC1492D4FF0051901A79577DEEF1ACB4C75AE574E2C2696CA63926B53ECF677D588ACAD495D0A9851B67CE602C2B272FB45A9D20B1ACC5651421D7AAA3CC1C9094E2E564FEF48F5C8F53FBA199F018C9ACAC6E3DEF9B5249C16507A523B1C7515255B8B4063F4F640CCAC74F9D6CE4F6B6CF6F9EF7BD9CD6D37ACBD086CDD3E501E9DAE544BD3CAE1A687B26B9EB929A7179586AB614B84B899D4B9753021E5CCE8C83EDB3371D9C3D381B3A51D57E87E737F602A673183AB6D647CD8535B25D910D6678A4823F789C3B14D5BC99CE0D3FFFDA0008010100010502D2D8AC5566A2D84D57521AF5B02DB557117BD986BD729AF55ADD8DA60DAB6596AD9A9419B9A074254DACCE965758D3D4EF2FF293B2B0A8AE1197EE55AFADA8719AD59CBFCEDFA807DD3B09F55AB34FD8D4783635EE4ADEB06B4653651433D54562C7D7AAC6B50B43A5713B158FEB57F32DD84A7E4D6255AF5553D66DE68BF6BECFD34D9D6AACDCB75FFC7F4EC6AA8A68B459C5FF00B76EC4ABBD4F7DD6B54ECAFBB5DF73D368B686D4BF3FA68AEBEF3B5BB755FCEBA76B9FD1BD2BAB5BEA0AA2A42CD82B72BAFF0066C61F274399AA9A14709BAA3551BED69935729D595B2DD6A293B7B38D0DE7776D6A6D89B16EBB96D6DC89A9AD417DD83FB9684D5CD62BD5D4836BF7B12DCF1947D0D7B67754546D0DC8D6755777CF4DA55FF18F5635C66C35DAF59B5F082B650C95226E688651A9721AA9B82D0A929D7287612D760BB092DA9B66A4A8D2B77739D5ED2DF474F46FD8DBD6DA59AC40A031EC1B3C1FB794E94697D3DA46AD8B2BACBCB6B2EABA5D829D2D7A0B0AEC99C3D7EE5BB564A0EC584DE125ECDD7DB7A9D7B5EC9BDF39AFAD7ED1C6C7D47B068EC5B752B7A2A8BAE494A9B57832AA2BDB29AC242A70AD89B1B8BAECFF00FA9B05B774B563EDDC02EF731DAB6D42AB43A63594EE5047F6D997BC743FF8C6A4D4F8BADA6ADF2B752FB858873B042838B28AC8E2043754B2CAAFD9B7707D65A3476285AB66C17D7ABF37529AF9054A069D82ED6749CAF595D37DC5A844B00511E9ADD6CB1F59908B03DCCD29D3EE64D1AE87FA9BD76BBFCEDBB6DD86A6B78356852151626E6AD8DF4759FAEEFA975AE9F56C23637ADBE6A27A4D9B813BE636E5D2ADC67357ED19EE12BFF9158AAB50CC4A3EE5BAB2CFABD9196ADCAF4BE726979DD5B1B5353E6EF597CFB9FE3B6ED6C59F0BEA5634B500D87C2CDB076004E0B4B555DADBB5572BBAB58FBDAF84FA75D751D84BE26BAF0BD696A8E87CD69F376B6F66C67559B3BD5F34FA5673EF3B295DCA4F9B7E3D2D76DFCCFA0B65BB074B6ACDC6657DDB6C37DD6BB51797A92C780972C0243BCB55576CF20DBEEB1F7AFAC72E5030455BA26E3D4EBF4BA6CD3FB425BF7111ABFB14B3C750CBF62B3ADF494178BAD3FF0036E67D5D44A56A4286C2A21B4A14D848FB6863B6C36D662A968CF93CB3029735A575CD6AD3608D4A0CB3E4A73EE74B2FBEAA46C6AB7DA47A0D767B53A9A7D94DE804725A3D99AF628174ABE5BDF6EAFCED5D65B352AB4FAC0C6085CAF5C5C67DCD4EEEE5CF19B5FD7EAFB2B40DAF81FF004BEFA6AFF6EBC8B3597DD8B7286C85FDA6A626B97948C55FE9FFDA0008010200010502A8FA358338959D9390100E730A227131EC884986B58E98F35A729FD781710C2B830CE422E00C782440622E2145CAA085018D3A8C61E95098B4C0A04CC6C99812C7C41634E4DE3F8F1FC4FE62FA81B20D6663845B3DD8A62AB4B0CAACF53F99D715713889B1EBC709D4D3199C26333D41FC951039139069C5446B67EE62A4FD5276FBF7394EE9D825E727301F7DB3978CCE3E0113F59C419C62262580998610AF21C78C6E52ACE6C6C32BC23C6666010CC78F73A4995D188E07858D618858CE72C3EB9B095B130560CFEBC5A25C801C4C4E33115498AB8F0823590CCC36416CE59014C5FD61B561B276E01D822779961C859EA62141313909FCCC34E5885CC6B09F09C6324F71509850649840F0272CC199CA67C11056262665B4E60A409D7024CCAEC33B21B0CEC83DCF7026671F0AB3ACF8C79300F07398EDE2A1ECA4E188E209CB205B806010BCED695B66665B760AEC7BE7CA03F83D399D1152719880465C123CAE66275456C424CC7856222B622DD0580CCF83E0FA9CA078F930CC4021482B800C4300989FC4CE656BCA041089CA133333E442B38F83662162D07E1EFCD59CF86C4B6570433DFE3679FFDA0008010300010502B57D8B26419C271261FD67EC636444AE38020B1A57672866258D882D8608AF987C718464E21433898446303B466380C4459DA229F66C021B616F05B10662AC7E39C098FC8AE08B04FF007C6ABD56C21659508E9098C7105D19F94E6D29F7E11B331E33E5840C61406619673630553F410BCFD9A75CC09D73A275195AF118C9E739CC7E19855A7EC20622728CF98844CA981B892D98B89662563D63C62719C7F06821B711EFCC46988D15046E2270883DF158EB89DB882E86E95B79E53309C463332C6CCAE9CC5E027B305621AA71C1E421FDA7599D7387BE338CACFBF2AC66671309C05E1082604F2DCA2BCF50B0139780C601987D40B19B13398E62366063399F05184AEDC4374E7059098C8275CE021AE180087D1CF83898108FC2BC727B9713D78558231C4ED10D9983DF8E1ECD393885A098962E2625754344E1C615FC12DC4EE8CF3333018AD33E78F8CC299814792A0C6AF21E8962F10181F021F189880E2337A56999CA169939FC9CE231CC0A33C6011971F8E67281CC0333F899FCECC63C2E65465DFCB793F857E7FFDA0008010202063F0264B234AEF71DE94875095DB3EA05ADAB3F5C1344310CE05F9C2072E708F732E3F8D7FFDA0008010302063F02845B3A5A0D4A067C42CDE7E4E1C1874E0C2BF5C29E7054C1CFB14C812EA2077FFFDA0008010101063F02E9E42C1E87F057464C9DC188DD74F2C2F71A85C903776AB81FDC534EAA59B1FF0021FC15A033715CE3E9EC54FA73B253F13D428658463930F9A550CA7394C484E1658EC55B121EDB2357238F7A17CACC50AC61E6976946509B465E31BA18E2291A0461934951978C08CB94424A9A21188791D00D542FF4D90753C1452CFE8D8FA69017C27A4C8FEB54233F4D960784254FB42329E6963940531E6143F05D584B9BF4A6712C92F99396008A81C53CB29EE4F8B37B95D38B9568C8211F9553306F951F4D22F7C5AE2B183107A65B24B4765F50463D90D7E2BE945BB774DBABB1C6F97CAECBFF0034603D2D95063CD23EF5D5F593966CA3C3099D7E3B287A9CF804726BD2F23F6857743163CB3E5392000D11C72D0F84FE0A1D194AD20DD25CD92E8F88DDAA94A31808C4B171551BF1C6D91ACB1D3ECA2FA38E56714315D6E502D2FD8A8437175F36696FB26C8689F18BF1CF86A10612041DF446679ACA4BDEA1873038EFF0102EFE9D3C8BAA072BA8F793E4D00EE4F92D840698E35F8952CB3C11C9967594E7CC6BDFA2E9608C70BEAC8E3BE59B21F968DF9296594E5107CA4BFDA80066DC5593C62EAFD4C618290735D54E431995F3E73FA90947D3C444518EA80C9166351F92EAE2C8CFB76A626E641CD93DC226599DE57305F4D3F823C4D164C79640F5236956885F28EB395508486BA15F4C8B4EAFB2E2B2348138CDB2B7B15F70652CA298C4C8C2788147F7A10C7FCB3A0EFE251C5EA724B24A42BB3772377A862E5B976DB747A99E6DA0B4D1FDCB142279BCF38D7C4A233C3AF0D8F9832BEF6C5A689E1090AB4B29A765174BD47D3CB0A190A3A7C191FEDAABA32B32EF12B9A771D9946525C8EC2A81B64FD89FC39377A3A13C9CF9340D565E6A6BA809F9845F99D4E804A5CC7B5081CC65E985210268C8316B408DB2FC38AEB92C626A1F657CFC33F0C919C64E054A174FDC2254ADA9A31344F908881A977FB944E104C2120C347AD4AB270A1DBFC934E116DEE6284A2398502E6889368E9A308C0FE908925D6B67CA86BC4CF664DE3ED09E12A7995B77B8A3768164CF864466C00DB1DA635F8A6902DDB556C494065DA971F3047167146D55809B25AF7157C41B7B43272172F87895646A50ABCB68A6FF0074BB5462232CB9A5A60C7E2EF3C10BDBD2FA73E28632F3F7CBF24613CF127CB18F3CD639E189018993EBF05F571C6638A6C3210C9AC4204E3B82999D49F27E09FA0F33ABAB621BB974FCFA557F2CE2FA5026C72BC9375F38C49121A329669CF1CB05AD08B97D5F83231D868150D07DCB9B5F8AF07C16A032AC9BB372A07D2C8E3C5A6532A13FB518FA28E31203C7E299EE1A278894F39FE79C9C737693528C3300711F215788DD37B848EAAA547E796EB901963D59373F66A9AA06EE8C4C9D01AA63456C9E78FC9245A4633D75A2E9E8763B294B287EC2A56D61963D331E0EB1E383C71CBC795BEC0ACBA53C4439BD73074E31C5FB938002B219A1291D002A59FD342ECA2B280D65DDDA98BE288358EFEF7E0A119F2C202F988EA49A460174DD89D62365035E41EE4C1B20DB8AAE22EAEA628F13F9203162BDB5C934DBB3C7BD195A2CE27646422E175341A5BDA8E8C2A10CF5188D1D426FE02F446138BC38F6F62998CCCCCB797B73C7087CB281111DEA38B27A7942519894F3CB60361B7B25EABD10ACEB9214A9E21D753261C96EB2B58B3772864BE73C6FCC46DDE10EC4210C96CE3F50989AD144E4F5133193565DEDFF002A290F166C6488C655B8C7503B476A8CFF00EBF518DE1351E70DD88E299F168BA619C51C6CADF1E17AC9DAAA421E122A6554219A313002A24382BA00DA2B28BECA7D6B21088FE388DFBD73103BD5B8A57B6B69A7C507B6CE08749C48F6FE2BA6640E41FE09E6C32384E4AC80A87E2A31C331384C734A46D01908C81CE4EA63A481A3046B212BA40825E875EC58B25DF531811BB771A3FDC8CEE68CE57980A013EE5191D774E1084A91ECA288C4C1BC48C9E9C11964E696D1D820252D68174BD364E9633595BA929F2132FDC49FBD06A7B3964447B15C21D4FDDA230F574F9727E6BE946F89D0E8A18E5ACA8E344E118C838342167C35605DCEA44BB53C58F0D950750EC23C500719809EF43FD1470998E702606ADB5C3F4952328D472FBDD1B406DC76AB82F1546C530E6968231D4A889C0F544808E2F7E9ECA2EE4C990A5DC5F7571C708C47871C054A177A78FC10CBE9CDA41BBA72A858E53A63CBCAC7CB2FEE8DF311A3D57A8F5F8F927090845BE5017472CABC4EEA80888F8A13B84AFF0023DBF78AA1746D9C6B19EB5F7715740F127FD2A41ADC867619F00D73A33C4E0421068F7F150C5A0978A436080C58C53CC6A542721CD8CB8F77B355CC6BECE5F647A62BB2176BBFB3FF00A5BA4E35E289EA4896AC489538268D60E4DDFAB709FD3E42FBC402C8334891CC746FC172CF2DFBDA249A13130DCD2222EDF62974CDDC503A52A157460EFA0E62CB17287F3B7F643AE5CEEFC7D9FFDA0008010103013F21A4045D17D9EF99B867D914D25A6C805549B6BF88DB56956F88A991BE2178207629DE7FD5416968BB5E15A8EABB80CC40958AD36F8941BAAF2495D9FCC5B506C57765DA94F0C5F224A95DFAF5309B2E70A151D086A4451A706CE0F04B432D217874EBF52974407826A8AB6977EA08E4A39ADA9A71327B31EA217650AD3E026C9982EAA62A8C8E7987F52C789C1B1354A854396B1A6ACB2076A41BAAAF761ACA76C1FF002183896783F33D1C06E95F514522EB5FCD414ABEF96B9CE216AC636FEFB8C06A51A7F84B521379351412E3D39F7D4601E83DC079CCA74C3FFA5FF52F76B0ACE1E59D9C33533E49AC38BCDB2DA457B938BC75E0235CD479B74F0B71036B2C53E8F0D7E3B956F5514C0D05593CCF3DF8FB453574AB811C6AA9F11D6A9B5C313F885688D273F28C294E32B1EC53EE519E30570B78AEE31885632B8DFDCDAC6E060798E6E85DF422FC8F1C4CF7C8EC7FA833DA8C4FDF3F502AA9B0FAFED84A42E7B782EB22BC46DC5BA744323A52E83DB2B9C65E153EDF76C17EEDA17BC5F8096630EC6DAB2A7A83C5668559FCB30D8FB4583EA1D60087D3AF0732A90559AD73B99B59A069AE4EE37FC5C2B21790EA2AE6E26B102B979EA6105FA03DFF003022E6AEF3984131CA9081A569712FAE1F61D33C12C76BADBE63551A031733E7C8E47ADC1B258CE07A8198BB64266F58FA98EB6CA754C4947C1E7C8ADCAD5DE3294D9B17061556F284C87A29BFE3AAE1111729ACADFA25FAD2B01F09E3F398EE8D817DF2F2773E850983D238355283C16FF519930527DC4DCAF38C5B37D012906087CF0CB3CCA06D27114C5FDC4D8EF34F6E67D645F27898005D384AF00131CB0A8A852B07E7B88F6EC553FEC3A0E207F27302CACC4A1E2B129942F4FA1E61AA32CB5C705EE594831B56D3F56421501660E00E89DA76835AE147C433ECD4CB0A7D427D599375C40D1075F553606ED47F7552D8AA28574600BC467073FA4CA5EC2CFB1C8BF1A841F670B5A77E92C2C0DD08E39DC0EB558631D51BFB8694D6C575C4719072863EF32C10AE42315B7207F999960AE53B25766B4B1B8A558EC6EBC473EE0BB7FDCADD5E4A48E73D5AAA34BD8B865D81E881EB79712FE04D70E3C3FF00798AD5741766BD4053B10E7D9EA0539342DA7D4A8C07923D752D4FF57711B83CFAED6390B4D5DB5FEB13801C7B3A1DD4128D641076DD0F70E514D151D2608A118025BCE1ABCB168DA8957157E9049EEA327E6550D5235EA6D61B6573EDEF32E404C5EDAF2D43CC0B0C82B5EE2409E9D025776165D87997BD62DA2E34A1C764D2470750ACA5581E068B55ABA352EA562C78CEA1B50B255C6901D07F946F82FD5FFB16E43BDFF511C1D76E80946208B48E1E539B9844A9B4039003F996C7D8F69C2658747EA61BE6DC1BFE7CC15CC6B438FA8B6E9B750AF01DEC66AF0EA2AFF30252C43E50D1769FE2E3E3A16636B0D42CBB84385B25ADA1B32788B053864BE6A1975E48DBDC7A18ADFBB6CB2B70A747946027942B35E87ED942730844385CD5C71A6D1808B6B673EE5EE0B9403042CBAA16DF5DFD46D6AB8323F1FEF2BFD0F338B4E4E1C770E1EE647D27713EB3AB6E0EF52DCA948D67644E746C581FF70851FF00B47166BAEF5F5B4288929EDF7E23CEDCB786C81B3272B9A1EE16A0B84885B65D8E386097D8B7A671B96594175A7E3A86B88DF4C67333A16C5841A7C88DD14F80E8F72FE3832076454B9F31BA49F91AF81A86368FA665E49ABF44B96569AD0675A992C768596B65DFD442EDABF47FA2713664F47BBA9D588002FB6B593AF598722C0A2D20D0756D84C3174732900BCF07792575475E9F9946D62F7707693284141A30FC335846F991ED940DC057E041ADE004C375160B5CE278465A5B2945DDEBCC06C5F2A8E1415B643D53F72954573471F772A170CD53039C351CE2AA1CD75C3FF8C1248CB3BA3ABE631CA5A2F8216B7E203A1158DC7A19C6209A821823563A6B5D44830164727C1A3077550C0FB0C0E181CB01ACF3EDF508ECFDCAAA4569D1BEE788C5BAB8B0C260F2EA5B450B1C7F73F702CE3E133EB52C6AD72C632B758EA3BCEF3FC8A1910EEBDCA72F84FCCB25AF493EB886A65495805E71CCAB629943675E477CCA8A93258BFEE6F1311259F7926AB442C0355A470931A754D8412FA5711C5E9C2FD97FE47ACDE53FE99E22F3D596A6F8E07C1A5E22C0500E477794323A952DA8B565A99FA970A1439B2711C686CA7AEA3170D0B6A590A984B48404B011BD3ECC6C469D28BB8E17E32E29885CF3FA2021E1BE0FD8D7D4AAC1ACE676EDFB802073584C6690E01BABD9F72C0BD3D4F1F84727C798283997F94E1946FDEE5DC96C60FA71073FACD8D82553599597B10013222E12A88A766CD139F712DC42FE77F7FB87DE0560C4ADD902A43B6DE4F972CB9D707DA9BE2E8C42DA45390795799884072BC83D43EC83B8F52CADED86FEE03CDFB9EF798F7233967B727933C4F429F698993F7072C5566EE2D1BC402CECE13AA9405568D72D839C633302DFF655561FD54AD5CE1570E7B4C1DA7039FD625C495553F4E9E21FB8833699BD6BCC6D5654A6B9F3D85FD4EC160E13373BC608A3128B7E2EF5FD21721EC28C9D1EBCC2ED3FFFDA0008010203013F2112ACD64A11B612E0FC198CAC672E0D518D4F189C466DEFE03E3396F100510959995BC2612FE62E4972BB180EE7A4C23CB13ED1D9308C10CC1E6A59CCAE19635118D6C04094418CCD0FCA51AB833030D31EDB9772C86A48B30A9D32FE2007708C5DBD196A7DB529A27B99F59E1B9CEDFC0834C400F262AFCCB3E12847442929944646331DBC33B1F087C32B117729305B0583CC69AD4D6794C536F3031B885B99EB0705997881955A9C92570943A624E6E6D316C4F2A3DFA6585B9625DC3DD51D20FEE5ADCE6195CCB30CE66F899C0B688916A067B80DCC5E08AED9EB4FF65131582AAB9B582B15C4AB72E0439129BE62EE3F14D18C532CE223585239A659A5C47098075105BCC47944488AF99C0452179651957843F894225CC2F58F2C79772DFCA8657310D6A7DE25014954419899EE64798D153A2288C0C160788025259BDA79C89E3FCEE019E26D14771F19E84F121CFB9747188C6CE25020C951DC1B85D9DCDC2BF37A8B7F146964706A0D54A89F0439461BAC4C18042602A61091A2359587E256F5180A08AF84203D73F0FC03BB8D250423AC2D3F1811C6486771690BB00B1051171B32AA68A3A837718C4B8FCAA28CFC7C096EBE1B4B634483C7F32A20F90A42D7880AD080D11F882B2F4C08BF485F24669C7C3240C31295C6332C11DC6E5B187CCC4E0FCE2CC0DE25AB3A98DD66295FF93F0E7109FFDA0008010303013F214CC8C6125F857231DB71102AA1C329661398E6373985C0C1C303C7C1748B5A99B6CB6C99A452F102E5FE319062B700C711BEA0B08608AC104A22ACD5CA38974B63F19DDCB86235F7F186408B170DCB3FF3788D6ECF8795D41184A35824AD16FAB97E674C18437A8D813C9A89CD98DDDE07C026FE219952F3CC1612030D5C91D127747DACCE21A97CB4470B966E6D2C4C93190CC7442860A23F161F85A994DA8B4C914EC8B78A9AC42999E042EC259A304AFA987CC6DFE371C2A3728E261896C25F515129061E1DD431DAFC3DA86027C40DA5C6A16905583D543F68E99891081A867062F2E1487811F27043E56314451B24B7208A1B974543D2801B65DBF128CACA2062D4582E6652C8147E9007319C419EE5D352B32BF501DEFE0441A5CDC1300F4C16F1046E04357A881197882D45F6C55825A35355D47615DCB5A98A6D6A1E70F740E598CECC64AEB000C08CC089DF0035F280E170AD2D8D7C523CCDC7DC3004F04D28CE512C972D3210FCA52E616E0A193B6098E99875E636436F8FFC51AAB8148EB1F8D6EE5E7C07E12B02A2482AD80F849BC9808C425CCF71FF0086A107FE362C10317BFCDCBF943B7DCE4B7369288D6C8ECF61187C6A6B5047C0BD34A3FF0053E3911DFC66ED316494F69A6770857C313884E71B8EE7FFDA000C030100021103110000107DC8CF936A04B535E7F4237C05D458C8507DFF00D73E1D71C98A183E5E91ACA03D3856D2961BC902102490F5FCF4C62B34989DB90C40D3D4BC2F71ED9A67F9A2BF81C08D72CA34B49ED782E8E4AA80579E3DF3F1D7CCB42F501625C18D82C2F552DB218DDA5CCC48A74A15823D2BC400AB52CB981FFFDA0008010103013F1026235717A2F02894786531A051BFACDF528208603A5046FCDCBF6BCA6D5DA9FD2232A6B4816142CF021AE80B948B8E956439C72818867140052D5A398C4139ACD317CE3A99DFA8A3A139A6F30C06841D014A05E71FAC1CC1B759B618FB309A8CD2EC0524546B4DABADCB702C208047C92F18BEE0A16E4C36365C603EE3CA3AE50B1929BFFA9B0D6B2D145AE563245A5AA1C32188574682D0A23468DF7399E6CF7962FEA002F3E6B40157D472B6DBEC1226C0A00B098117C55C5C1609D2F12A64D640E054BE96573BD58B9006BBC63EB7282AB58686DA1C1B7115D35E90382F0CE2A6710EA9810B2AF16B88A2B5C8BE8B357D4C83F14463914E5EA1E931900868021B730B38060C02AB09C318870ADAD11EF9866864944B4D2D2A99F20758294978017EE6F44A8C97803478FCA0CC6A1658140BAE09498140B953CC643A500E4B429861C26059C22F0689473DE214E57237291558D28EA05708660C3B1B3436E0C2E10138D85C943FA84F2E9379D9783FA8506522D190780158EE5D98789C26832F799C7A6EF8CB957C73B8B74C00A2D344ADA20A0BD5766895987EA05A5DB0016D7A5EFF0031006C5800E6C392FC5C281BA0201AA0BB03F7FA8772D0094477E9088095152DF4D66A9D6F469872D8AC84CDB64B7B45AAA0AB5A4C7A2F8665C91A06A64A8CABD9DC582BD1715AD15BAEE0272C2D270E6FD0C7B66014D0D5D13BED715A99AA6B0BC55D34E2B76B0A303B6C2C37B1415A222010BD07F47572DA972764F6C07B6E283428220B6B5722F35A84794C14AE2C232F8CCB5956064B44729A0A2FCC071A6554364D7E709BC045C09B4033D216C1872003EDE1708BE56AA05905DD25FDC2140DCB6CE70B65F5288565F60EAC5860E41D437E433B2A038B4285AE2F6EF24ABD43E9F181AE323D1370ACE353C2E9EC8351CE30A836ACE6F5B973D88C0A00B54378011EF906C8CEC69B7D44705451FE64E9A802FA0A721E2A3279E101C17298F3AF3045BAF6B0AB6EDE3997071461D86F34D856AA61F6743C215805BE26630961DC78B57B5866EE5999D23228965A323EBCCBF1DE40DC160C7B6A5A862928D5E12EE8C20B90434D8AA185F247A166E4ABBACD99625B6D32980352DB8E665FA7C100A887779949EDEC4052EB0A2FB9492566114AC2A6B1B2257882DA3569BE658844ACB383158DCC51142A37554FD18A354DC14F2E95D4531468C0E30115B3F7E16104D507001BF31E12550A174381DDC6AA392DDB5D05C9C37E58799CE58A2A6956E39B9D4C4C68808A183AD4470C32B74493F2680E2D4D5EA5BA12C50D4000DB1B9E767DC7C06BEB1CA84F03B852E214D217A47F2990E16EB2C38ADF98095EA8535E430B049C1908980166D994570AB2BE80EC0CDCC41C54034A06DEE5FC4C8A5D1B70E8ACE37A6D0456D5D7509717A941ABA6D5C54B80488573B2AE1E074D2AA960EB079B99814664D18D5D6825F5450C47AD599F10D96A552F4D350352CA0943A172BAC85CB3D84AEC797F899FE908924179792AF09591C9972071AAF27A95E62D49CDFBBC42171CFB19239BE1D3B58C6292B14A354D834D660DDD51B627ED082F482B54E1E135D96C1D6F528ADA07831C2339AF66E90A2296F05712E621656A737581F4A8CDBCA04524E0430CB2FF00F0B2696A0A51E15478BCCCBC83C1860ABBA1BDB31F569954D0FB91096CDF8D175727C40998B4AA7A0E71C4CD3E202E3B5611D3885CADB96355BB036A59F885E79F2064B80751182048AF2DD2BC44148C0C8E83F8820E02E58B97823E25F16528816C066FC5B0EE79BBB704BD5770A4A94AAD816880CCA626D093054DB238B89867460C1BCD600FC46933AB48DF605FC45C48BD0CDB68A3ED0296114062B29BC7AA993CD80B6EF00B602FC026008B26C3FC329D124F220A8A72FA4AD0629B80A39AC6D73A4A67B5C328954DD1D6D1A76592B080AA28354EF7B8DA048AA7071BDCB3009F156D189C46737806D1616C2F012E5960E801B3AACCB1B6E5A50EECDB0F3185C1405B4A2DE2A189A3014EF6F82E675E8C94899C5EA6941B313765EB31BB16F542C0CAB6197E287BDCD72FB8081CA51BB66334D5CCDEBFD600A5355F718760FB29CA80D18053F9B740DA77E54CCACEFA2201B9A3847B1293F31B38A88DCB369687E1EF9103044C60535361BEF18A0A8015B6780C0FEDBC658D5F5833141E2691152B8760266B21B2B8BD4028D7114E8DAB91B3BE7116ED82682425F66E88355D1800CED3F16E0FD8261AA6077A9929C1411B0B37FCB8AF88B5665C40C4C041D63BB40532F1752B123A41CD4E1C732D0556CA6306ECBC4A5EB55D46960E7F528E52A0487033C841377A294A325CAB100A01146E32C2E2C63169B12D966FEB3995E272259AAD1DABF1106E08EA51DAD112DC150D310025C5729BAE6DB2DF8860A8D3807AE1BB03CB65CF31D6C177E4B42261B33919BD5A3D84550168BC50712AE8284B28A6F0045647C280963115555B97CC754B0B1D75CD5318F245CA0755AC4CE76EE6326A0C5C99541B4B19040991C770155C2A14A6F83323B40A180C141FB2E1E02749D4CD36A1EA3D5162648A1B0D35A6675A6CCC64A038EA31C58146320D3D54C8E3C10B6D6D4B31B840840EF70AD960D0ECF312140AA181B72CCAC8842ED966F1C08A26C53B9060AE192AD20AA188621AF45F4C6F52E552A52F6B35E4AD4B3D46A0E22A726E66B0C56E41B73184D34F6B4F51929C372C4EFF00B9D1306D4A64BE6C3796995932DB0D1AF284B6EF6CC1E393D0EC512F95F9ACCDC44A0A3B87813C0A0D33858B73898208C5216AEF172F944311B00ADB02BDD57CC51686CC964486D4DF7C01E6EA2D8865ED9E53E9E2092A66D96C000107AA86403401CC93402AFF00B868206E99CD649BDD0A4F2D15516E628E4B580BAD898FB856C235845B70555BCB185C0358323270C58FDC5B57D5A65D45F416FCA00AE8389E8C971534959CE149982F367989705D301AA87F1A3B0D40EC463896E716680B6C0A1545476B21D54B1B0E8F0B30155D400544557969960D5CDB6B4E74209065C01C98951C8F6A28D8E331E1CCC603805022C53B398BAAC0219B10DB8AE311FDA1CD25B54135788D9B0B0593743E65E83AB96C0157F986024A122912EF05F316EAA8ECB2952DD600E6E07D802804FA47A80288337A7D44895C2D71C8FD405A8CB201B4E030A947C20055144F2CB8C4B4AC0B4142CA34C6203E36A552E8ED304E946B7E85862EAB639014D61E0CC21E80A716EB6C8E37D890BF0EBC16251CB5CFB8E2CF5F80B6147D4AE12FB35130A1765723A843674581B1A00CE2B04477090BA1470B957F6841BC005600C363BC1E3702CA0C6808E7C5F2DC302BE5D52B276253960E03681A93D9FC75071A066CAC58EDC4C9BE78DEA0EE24AD103BF7393CE085B9C8621CD8ACABF83F728741669B338AFF0091752083BA83438C036CCE69CA6F02FF0070C310B14321EABFA825F31D76DA01FC02236A70CB90991F02468BF726BA594B4958E5C0170E81B0460CB72ECFC5622E50B552D2EE86FCAF705BB10B018A1B791898D6D282DCC706E993C42C9C1595DAC5A262F25B6F70BA406A540F9A51C0BD4C800A921A5A2D19D9C6A5815812CE07256959626EBA733FFFDA0008010203013F10E0CB1CB550B41C42DD3B372F0BED2CA3CF8F535EEB11BDA23585426FF2C63A1618344315712DBD30036D040708578C46B35880B16A2F7182DD4340625205E8E095B807BA88DAEB46C637398B5465EE396D06DD468AFA9FA2D2F8203800EA2EB0BF73247EE5C8C653F484D6314D1B2034970575B8A29A1D88446C77CC0097F71D9CDA8F334563B813751117CC3EE8F2D9B86AF0CA2C4EEC732DAB88EA97FA253EC8498E862D06980EE73D188505B80CD5C634AC302537DB06A2FA514314B88E626A25606E250370696B97EACFC41558420B8D282AA1298837595AA18992D3CC50253530D41CCA828485C8AD933501C1B8E5DE66C192639B7984ED608F58E1CB0AB90B81BE6D11B6895C615863C916338DD5C717918A8EC95DD098AD40CFC9C5C412E1F519B8CA616CDC705889293DE2AD85B861772A4B981747598D0B0C7242EAB020EC6A5AA49549823166D2B1A7A962C04569C4FEAE39CF9E150C836F9997BDFC2029349606118672B80EE7B5BFA8AB01E035895119C144014DC345BB9C011C62D64731460C77FE6257B9A572A8A8285A5B7A8A0ACF10CBCBCA508C306ADE260ED2A14C30AF01B8C85DF33A5996193E11A062A3F4E50BEF8EE50E4786568E72E0CDE0EA64200839CA289514AD4B5182E886E68DB0D4ABDA8238A604D70E65064BD4A9A89753848A582E68082E925762E504472667F66BF1B4CCCC35E7DC1893B944C5230663C212E3567960AB791FEA2760F28C821B1638AF312D58AD9376F06275E25EBB9750A853ADC782BEE625C55882463A0750A32D90C5445FF51DE4F995CDA9039E250C4C2FC266A75B8954105A012B6972F89D24846D8292E559022B968A728A820CA9A9E20BCB7030D1104AD513556BFA9528FF00E4350D414207646D9CEE2F1D4D69F71921A9A5B19DB11D7307A4D89F51EA2E622510AEA24724AAC90890ADC014D914FF00B410B1BA9AD958BEE0BC5C694B608A8135BE61F2E0E5744722C237F4DC28C32527B941B60972C0FD25000344CBD329DEF06987E861398A505F5FEE00AB1009972C6E4B5530E892D5B9E613588CA2C55F8E2260724B42B6A14E08FA4BD404547785D67E02CB8FEE045ECE7715B4862A04FD772E7C56BCCB7C51F50CEF1010DE266265717A8268C4B533FFDA0008010303013F104F2603913009988F0BC30C00F497A7A7FD8F3604C66B00166E54BF1C00601A8AB2158E116A5E2A1B85CDA6512C99652F4CA81283732385C5D278E382608AE31F89AC2B90E48BF28796887A80D178D5CA08FB94CFBE5F0A26F12EE02CBFC4C478E26E19637FD4D9E5AAE5E131358604332B3D712832228B31C57F971CF8B7FEE01311389981C18CAB9250C8DCBEB1C4C15986B9FC88F7919B9F042552E700A99FDB144118E2897042EAFAE2A2CC07DF3FEE162535CD57EA517933115770CB510B2CA712D6B148897A5C0A165A520555302EDC6941E897222D72ADBE0133CBA999CA774282732CAD43A46F711BFE37511A8B2749015A851A953885CC997EA03258F0C6254648896510C3D13B52244B8764415397DC0347F08C570F08821B893211A209B80E3C32BF743BA52E08F111D1925530899B6C40B19AA58552D116720EE03741E6608054ADFB4238F04CEFE105439E2165FA4A7768C8AB1892D50B2B28A9ED2C6C88DC78CC068306CE625D10829C51DF8FF71473C17EE1D7FD83E31EACC7E235287CF07E088A7C0864041E851829141CC1E3013683E0434F27F9E20178A984EE62A8233EA67C45F1F9410D2DFF009994B57FC11C57BFF0CBEC00313A9A3FB4552D4BBAC4AB02F0846DE25FB70B02672EA324CCB1076460B07D332AC21A547B936BFC4B711FDE605CAA1B49368ACA4176A9437F08E5051190F49887DC0C3B947B212E20DC450BABC12E4EAE98A436F1CC142D5C6B19F3E25A653A1C069801595C3E854A8C635445C2C81A03BEFE28734652B72F0333024CA620C54748086C371DA8CC040FB999B89564C5220DF3D11AD2F2CA28C7ECB2D41719A2AE0EE2C1730862A22F83E1641D214CCC624B61EA0A086C155FC04BC73DC3344A4F32BEDD4070102B52C86E170B36A297F843C196194B50365315305C57115F8CB31BF131119841E60C25DC218CB0C2323A8BFF00806259894A1176B89A981061D25232C9ECFF00932410A8A0234CB5C02A545D8118E230CB128B659A09BEBE1D7CEEC214F8CD951B8BFCCC4259F7592CB9F48046BFCFF12904ED1CB108E152D74DD4B37291FFD900'); +INSERT INTO Categories VALUES(null,'Dairy Products','Cheeses',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000500000FFEE002641646F62650064C0000000010300150403060A0D00000B2700001034000018B200002619FFDB0084000202020202020202020203020202030403020203040504040404040506050505050505060607070807070609090A0A09090C0C0C0C0C0C0C0C0C0C0C0C0C0C0C01030303050405090606090D0B090B0D0F0E0E0E0E0F0F0C0C0C0C0C0F0F0C0C0C0C0C0C0F0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0CFFC2001108006E00AF03011100021101031101FFC400DA00000203010101010000000000000000000507040608030201000100020301010100000000000000000000030401020500060710000103030304010501000301000000000100020311040510211231221306142030413223164315250711000103020404030603060700000000000100020311213141120410512213618132207191B14252231405A1D1E1824353306272A28324151200020105000203000000000000000000011130001020402131126051611301000202010402020301010100000000010011213141105161718191A1B120C1D1F0F1E1FFDA000C0301000211031100000111F3BF71D41A8A5D3041288DAC773E530E8552B54661DB2328A2AAF68E4B6FD2EE1F55E0729F95DEF0CABDC83EF6A4E2565CD645A3DC7748E039BBE9E268AE74737F7559F9AF688517BCA691BBA568D2CC18AB392A9EE107B8B6AAB6067845B8A65A4C8CA48CACD09F5275A274F4FBC7BC9F4A8D6D8A9BD9A7173E86C83E832E11C0252E8296D88228E61773DF2A36BCF36109AB506258522107CAD4FBD59514235AC8E8DCBC1CFF0091EC915A8214749AB9CDEA3CF5188D6199B27C53BFD63AA0AEB62FD2F5A05DF3F635AD5CAC3C4F9C1A9371B894117653E951513A29AAB3AD4D847671EA1AD50A9343E332F8063DC09912F85DDBA78A4AE45BF9E1EDA6723935F6832588688C35D8B179AD5825B5B49F9AC65A6B8A776B6F40864BF39B95B4F6743E609B44C1B1B39DF0DC43601C91B22737D7A4DD674A6763D5DC8B49C316240D093FB8E48D3F9CFD8481786DE3273176D69EA3129E8B759825A556373B5852D9A2BF13748B4B745CD9E14F4AAED116D24BCFD40A491712ED679BAE6751967184D2D5801AD4DA43731CAD1EC67D2E4D1436544737556B449B33C2E4A2AFA40A794C3D34113501348BC310279846C93D5119F52B9948ECFD666B69D9CABCFE1D116D08641CED84CE5AA7BAB38342CD295AC0D25C73B00C24191D4336CC032B614AF65028E11CB62F42E1B06822780F42ADB656979AA8A5A904F53DB2899A41E954932BC2CF32F72F6411B854D2BC48C83A24A7140402C995A8CE4ECF8E8B0744BA5D5806E8752EDAD1F3B574B4C512587BB9B36A22D757B394AD798D1A4D74439442A246DA2A26AF830E8742252D7BF2B0F48E8CAB4CE302E5302E2DF83C489585525E7732884024C0FD3114AF3FB214F703DC0E239CC06AC8D15A196B9B8F61F71DD56B720B2D78B6B2732F3B65ED5042767BC8BF0B9B3B6149C0ACC602271DAACCE888B757AB1127838EC2FA637478BC65667A05EB24716E54DA0E65EC40D70454E2CDBA1CCF8F9CCB43D263F95249B8B57F15F0C666BD321AB03BBA10ED049680198CC531D6880AAC4F5D16C5A749C11CC5A4D880402570775520F7FFDA000801010001050292DE40AFDE03A47D5555B0ABEC6335B788B4451129B13A8237057399B4B593257BFF00A794BB61C53EE98E22E1ABE4350B86A6CB54260179815E40B9841B086E46525EF2982A71F67558BC5485A22DADEDCB101C45D3C88FDB2E4FC87CA4BA5C87CCF4B7CAE0BE5C810C83933269990694DBC085E3536EC2F9229FC0457AFAB8AB38F93F19644AB51E18FC24A0DA2276B977F3F629FC9744AC55E38E225451555CCA64B2973A69E1732F7793038816D76DF0DB5C1EFA6F85B3322B0B60C6431F15D10EAF5973C2CCE3AE7337DFE73205D6B86BAB31C03E6B9F4286D9DFE2ED8BE2F4CC088F27EAFF001EE3FF009D621ECBFF007EB3B98330B099AB5C7D85CFA736E20CEE1DF8BBB861E7261AD1F136D8712D453635236A7D9DFE2B0F541E4CECD69E375CD97C86613D6E1B7BBBE98CAE0A32B21652BE4C146CC74393B1C77B35BDFF00A2E62CA4B6F4495D6F2DFC11DADCD2ED63EC64F362BC72BADE07353589CE6464742BDCA71C3D4E4E3ECD908A8F633781AAED842E8A37227F9BEE6479C487CD7994E1F1392CB5BDEDA3EE6660B774F2192CE69AD9966EF25A4B2B6164D3CB24B0E54DB476F9C8255ED57ED9EF30773E0F60C94D19735CA5BE6DAC57195BA99C2D5DFF004D6D701D247B8BAC1F99F87C7BB1EAF667C8FE3BB3FA8BEF5AB7BA5FE632E2E63F56A41611BA2B3BD01ED91A53FC6E59B30D9473DD995CDB831DCBF3523DF69912F576E74F0FECB23388F1D15BC8D923B986165B4F0DC092BC676F7F041B450C7C93626D238378C8E134BBC92BA43415F6732F85CF45DBC739A5B5EF138FC835CAD5F1B5D34EF95537C9CEF92EED2EA7B59ADA7F9D8E9877210A81B44231CD3A9133282536D8AA32CE653C6268B258ABCC622E513930AC69EEB43DB541B5597C6CCC9A26BE49AD60F858D986FF009E344D890D2E5F537079A23807272CA6260CB436F88C5E3F0F97C3477368C2B1F351D693F64B996B1D81B98B20A6B7F018CC10BE4CD5AB53385D45E1351DE9A8279E225755DC7BAE7B9C3BDD337C6E7B949DED7073A3C844D8A78E42C36B9291AA491D5F51BCF0E4F26E0B373CB139D72E23D46E2E1F93731BE7B5671B7694D53BF77A91DC5395A50097F670D2424ABC97CB749A68A0689D7ADE32D6DA47FF00676471F15F0B8F5AB86BB0B696987B7932EDF9039F8D9CB8B7F497F67A9AA8A7F1E6F4EE9B2BC3336D21AD505655AE2797182BC4D14FC6B7DE5F8F279397FFDA00080102000105024D080D1E9C8AE2B81422281510A0BC7D636FD9AA60411523935A5C9C9ABA291EA0DD00A6358C05454FB0CD1E538A6C9C51692B8EE5C8956E3494A6FD145454544F0804CD2472EA82AD13510A4FD61D879029082989E789F22E6848A3A3945A8C7D111C4929EE5CB7AA2990ED30EE9026740551376477344111BC478063C14640179422FD8A91C882846508CAE14206CE0A4357B53B670D0855D0F4DCA636A6F38F0AECE6D11544F154C1B17700D05C4C9C4325407753B643DC117511712A46F1634D7431A89BC1509344111A3D814436B821C4685A83171DB8209E2BA5DBF668A68D354EFA0272014640672D00DDA101A16A2DD4EFA15D13B768D28814426B54A78A734D23D9A1043470475A6842E354E146E8E45A821B079E457E346BB774BB31F5451D0951F72238AAA32EF4411DD5534AB87F101008EFA1D29A30D41088D1A78BEE772F40287F6A7701465768854C8FE6E011544C15075AECD6D0228A011154E15258810D5E42B7E3BD3FE31F61B4ABB53A0D1CA4E8BFFFDA00080103000105025F8255534AAA7B939C8B9724CB5738387640DEF3F67F2538A0829260D5C948FAE918DE01C6391E98DA4A423F637ABF468D24DCF355D231B9D98E2B8A28FD4535C9A53CE8148E4F76A15A6EFB97F10E29AF4E4D7F2D68A5D9751A0BF283B980349374742534AC78ABEF4F6A068A47724C141A02A505C4B4B13775C4AA28DC9AA478A3DF544A009D71AD579FA446A0E835A2A513CD05BFEDF9081DB914D2A4FD9ADE4A81A3C3CCBECC856E38327DDB13680A02A83404D755E469E4A299DCD3450574AE8C7A94F743B69550CA4AE49C7776C8A66900EF715D5385137EA2F47AB5A8A3D215CD39C9C7529BA376468E54E2FD4AAE837311DE435769C939C81DB5AE8D72AD113C9FA976B18FA805D11D5AD5276A6BB92A5536155A2AAE88E80268450FA8EA0A78E4C8147A5CFE95ED77528A604353F4935D4145C86C9AEA2F2A92AF3E3DB6A947AB7E83D07D0CFB0CEABFFFDA0008010202063F0287B71AC275A02758A37F34A002124D7ED76C8F9CBBAAE9D2B189C0BEA202373BCFD6703272A854AF5DE7CD4FFFDA0008010302063F02898AF5D733BCDEEBBF8A7A284A4E89B2AE40A3382CDECF696B3D37F08FFFDA0008010101063F026DAA4E4134641A07C38B5350AF82AD6CB057084336A6970F564BF32CA131CBADBE46A133735E99DAD733F985572FF043BB8DA9AE819D938642B4E2DB57EE29B2001ECA63CA8B4D2FCD5DDAB97034CECAC685B65526EBF4921FD50BBB12FF00C761FB158F0BABB97A82C562AC56375B93505F1B6B13F03E344EFF003701E0981D6D57F24228ECDE485B8D7914FA73E1B9D89F4B271337E143ECE29AD66A738D9AD17AAD12B1F1BFED774942B619951CCC8A31098C17CBE14F5553AF5AE68F00699A6E447B2E7725343B77303D91BA63ACD0507C553F087F37F05319A68E8F610D6349B9F82646E2435EF6B49173728077EA6F7579463F7A14DFC823CC6815F9AA384F33FF00B8E929FB0295BB49AB1B4558C7E3F15BDDE6EA001F0C419B7D46E0B8DC81E58AEFC957C133008DD90232E1FADED774D99F3FEA1B5741B57B4D5ADAB48A104F8AED9DF9616DC3B47F14F8FBCDDD404D23DCB303E1E09AD41A47A882D4D00569ECFF00A94CCFBF6B237E4561E68343B4B9AE0E69F1099BEDE3FBC61756081B8579BAAAA78F798DD60FA80C56E773B9676DCE20445DEAA29769349DB94F54120C5AE5A43A29E33E8941D35F22A79773BE8DB308DC76F0C771DCA5B538E4A6FF00D2747F9AD0E0E0C76A0EFB54CD95F46BFA58473181547370C57E139B276FA4D175701ACD38C71782DB8FEE07B7FDA8F9F1079F17118D1753CFC544DEAA6248C93AB8FD3C3553BFB7FEEE5E632561478EA0E0BA49EDB85EEBB913CC6F79E9737C16DA438BE2638F985ADCBBA45FFA6D5DBDD1ABA84B5E7E4A85C116B4F4B57E9B2D7FACD0EF3B2A8388B703262EFA1BE2AAE968326B70504D3B7FEC5356ACF49C2AB4A0BB9B770639DEA61C14B2CCE1ADCDD21AD45B5E9180E0E6BC0F723D979DB13F48BB7E09CC643D01D464D514239A8DBDDFC6A75DAA2AB6B13EEE646D693EE083730705669344E120133E940710BF3113C45359BA5B60EF24E738D49CD45303431BDAEF82275D6F643AA8502054B0D4D1002E4E0146C2DA3DF1B7A395931C6DCC2D5348D8DBCDC68AB04AD940C749AA28F1A95E9585954602C9D5B35B8A373DB75DAD475568056CA2A42FECB1FD53FD3AB971172AE4A6B4AEEB1ADD5F75175BB5709013D311D2D6A6CDB794C523702141BB2DD2E963AB878E68FB15A9C3D3970D23C4F99BA97B5EACFDD9A91F3B838BE82066600CD14F89C039AE0450E17511DC86E99ABA0B4D70E7EC37DE80F3E2FDCC6C2F89F775322991C4C3248E346B0624ADB6D9DEA8E3A3BDF9A3ED5168CBEA0B4D34D38B6095DDB734D62987D251D8CD1C7B893592FDC160ABDC57E6767B711CBB4660C6D3546CF7663837DE9A7C2EA8D2DB7D49D13E9DC1714543E45770358C78FAAC0AA39E5DCC8BA64D0B83D920A8582A8C153895754188C500DB9365A7318F0BDE9804E6076914A2E81A43B2F1550569AAC5415B871A109807A8E0131B52D049D5EF58A645A8BA1ED3F50C80C7E680A5B561E6AA45093747E7C4F071FA8E6A761E9907A4F81CD1E274B7AE4B35814BC98748F2E22FA5337523CCD28F4370684C92B85E88B641639E615209DAE6E5AEC53B4BBB9B995BF8B2FEE51869E9D63538FBD1A7A50AF92F9FB363D74C3C3D8DC9D9B7B9BCED3C40CF2B91557F3F61885797014C7347B40D73A724CC6BAC2FFFDA0008010103013F21346DEF2507FB2F0D00F852C64AE577096F91FA974ADB89E368FA878046184F986DD532F2829748775214E46A80D009DC694599DB373D8F243B0CDCCC385A918697D41B9E955131B337C3897AB1FA177FA963148DCA94BA87D8C59E13E618B815F7208769E35476870E4EFE097C56C713584E58CB8EFD9BB59F58C6421C9BFF00BCCBBC4FFBC423183FEF1345F918ACA3E99DA7E989AFC9700CB368CC3073A8A97A0F12DF7956FE264C7705EEC47BC41F84A00F6BDD9B0CB925D08252A1166AC7E06664E47C1334CAD781EE97EA0A587A2DDE03A44B907C925D83994E4364FD4845AF702DC873335A7A239DC9DB30ABE467DA3BF042D1DEDEE6F12B30C0A0CDBC7C4C2F1B6142D95B2F306A7649DBF4C474D8D6609832CCB6B20F2BFA8329489778641C3296947A021439730E122F0BFBC7262172D79A7080B365D8DFA4217268BB6B54A23B6731BC54DECA65FB8ED98567687B5EE665D63146AF255A3270438D8446BE67BCD0440CA2DB1FF92B830B9F53C3D3C7B88F0553F3CFE61560701CCC02E1220D6AA51872C9E0994745F2C2EB1CF67F713155B63C931772AAAB496BAED09E1EC7A8B31125C1940161F53456882E4076B8845C3560D21CF6A996EDD09E4310259CEA0B13516C3440CB2CD64581C03A94F25CCB0C9F8A1366F07276B20DACD4C510ED32A296281887969D12991CEBA084D8D613DFEBBFF2198305A04E0A8A704370764A7241A7BA8F2EB7A56267CAF9270869D11597798B50CE4C301AB5903F6DCDA980746EAAA7F83CAD55CCD1D53487744436E2ED4563AC0063DC52AEEB57C5C7355D8AF36FB97D60670C001CA8DE7B4B7A8597FD7788429FAD046E560E2EE4583976825131A4F20FC2668CF170FBC4BD7A5F27DCAD465BED21577B42321DF3707B94505ED984F4CBD2167B8FD26615A9C831F4946103BB678D3C11E9E7CB3443FBB4774B77C29D19F2C28E054C0F5185F8B5D2E34C84BAAB556D9522013CC62EAB522FBFCC56D1776D00B3C405894506D5E231528F35DD061DAECCD42365504FDA3FDDC053DCFA0967C7FAE8BF740C2145D352E942BDCD4B0290E7DCF241F46A5EAB32DE0E594CDC64595C401D04AE5375570F0217EBCC92EA2F310FB0E7F717450FE60D1CEABBBF926E4ECB8BCA36EF0315B7E63FABB5EFC27241A2183C683EC85F24E25DB264898C4707C0CA0207E317E455F96653D85635FF0044B46FDBF22EDDA2B477DCDF0C6782A167FBBBEE76742D09537307FF00704F8F411425315E9DBA9B03508E0C7BEC08E9ACDEDE7F27A53A7B95864B3B5C350C0BDA3A8788A9B2E7D87DC1ADE047773B2332EF2961B348F32CA28194D5B6856B38943F131A6D56DDCDBCCA199F39D560640B85388DAB1D29FF00D98B2CCF223ED0FB2733114FB188FF00861C268DC36CA69B38A48D1E57A94E686AE2CE13F6874CFC69955BA2AC487398F8D42E6469EE0AB6C8F9788A6A03B92F86E342478681F112B99A9EC697E60CA092B9BCEBB4716DE7CC465952F92BFB881D87C99816A73D61A95D10F2DDC5C040FE1205BC086682EDBEA1DE1AC464DF69885EAD664AEECC84DF12D44ECAF2670365DAB336F2CBF7AB1711CC600474EE0C55CAF0DBBF79F97A32EDDA50DB132EF9A8885EE9B1EB98576B8E0DEA6012853087244289C087BADC76432CA3CD785C391286C5764D42D385EFE2728ACE52DA658BEDAB672A995C625B37052F16FB77F7296DEE5236841AD8A1BCC50B099195F76EE626D3F15AFB2774AC7F53E00E8F0CFF008A88D913E62ADCD19B6EF73FFFDA0008010203013F21BA7A954D22E81B3B44E0251647B25CBBC10830832FF8697D21157432931C4A85C10C4A82EDCA4949ECF5B794CB972E5F42812184A25CC608E9A528C2098AEA62B81351D04257F06464A448312FA198351D928B7D23812B13A719541901D19699924557B87A55CDA6428375D3B9A20A08BCB85F111C3A470CA98746DB9EA3E4439266E15AC222C11C46A5C6259829C323420E2E662FB414105847099FA089B5439195B500073D1C982E258303073217B8D7A703331D01708799C29B38A2BD3712CD4B6AED1BA632AF7027888D4C6860C5B72870EE5FEFA593208853A12DA96123C0D1983A4A567A545E8588ECF1A412B0B65F1674021CA213064E9066650762527B73D33CCA9A992609548334807BDBD0A6703A0227465664C4B61D090A631D7415CCCEC8AEC330E10E8C455E514E6082711DD4CD6DCB15081DA37CCCA72C7299A791B0741DB103A180A85BFC30AA5042A6A5AEA0DD41F184F33DFA190ED3E0604508B9198408E235C37D6C41D2BC7465107F33245D1AE8162E5CCADC2B88C2E3E3A7139868CF5BD04B4C4A74713FFFDA0008010303013F21330C746749A4B2190621E86361DA56CEDD291227F2063125BD7C13B8E773B28B6C37A80F6D3F84654495D4B0F31C7A4E09B4E86D03A4C62649B7F04F47A0E65963017A466632BC4B3A3D2292084284E3A5C5C56372E91A260045E96A358AE925171D1E83A3412ED851764BB1C5188154B8DF4C94083920DCE90EECD4F24AEF8E807A74743184AC866FAAD62951239438203B2ECD5F46A8F24A8987B18EA88512263CD12BCE61B8EF1B2F45BE917A3A5CC258410E445430A86EE21860287789571831B235D93CE634AC28A98CB57082CF08DB4DA5F4A9516550B151062631417318CB2C972A5998CC421842A1B506BF81C62CB5D00CA360D7430DF4D92EE8B8B08A9714CA672CA0D741E83D31CD136CAE8EA5CDC214B9B812C290C591584475389E8BE832E65447D0BFC187A1D0B021AB94974CA7B41C391D5E91E9BDC3A54E658EB4C64A98ABA123D1424C2B7D0D7F89A75BDE3A1E86E31E8753FFDA000C030100021103110000106B6EC1F670C15D5AD66D13796BCC2D474856F1E1ED85A4001C0209B01E5187C0B8EE03DE6B6B851F23F7D46B24788E229F77312BB314B56D01E61583BA0A633D46C787AB8C12431C1893A12D9C9558C349BDBFC2EFC4115318BF59ECB4D59E144B6D7C61BA5EECDC735CCC0690CB7EEE30DD484FFFDA0008010103013F10232655B84A57D9FA95856451C581A2B4470ED65E8AE258F7956163857B431AC0D0DB4A5D7B6A0D205755E294ECF31012C946C4EF2928BC0596A00F308F606240E5B12FD4AAF78562E8368346E255512605BD2CA78953156B6ABCE4C40E0B3C509FB842FF0009FECFFE70FF00653A083DE1EB5F015FB8B973CAABFAB625A6389EBFB8A33B9088D9CBD9847BA66A9C1378BA6152F886014F066216BEE4007938E7CFE234D70142C297C346732950930D5ADDB9EDEE33BE7DEF66F45BF70A85A19B76DCC201CB55E5B8850BCBB40A39EF5C4ADB53DCFA94C0B1ABCCD90B315603CA7E922F55070DBF94C28C03B57FA810C3B2ABFACABBAF6A6FC44C4C4DCC20343C65FD4C695680193E35121513876E38849AEE8555DC02EF8B658F6B079A5D2D1C5F1AC41F86134AC06D6D624D5DEFCCB2D1B569D87938085CF71837309E4E2345B1B878770F08770C368D232596974734C55FB8E2AC675745ED14607258FB26E970C6E22E213FA0522940C1598036A7B5465A0BF32996B8ED2B05973296914174436184B1DF3C6C363504DD0E0AF81E8868E316FA9597A866682A0DAD58F4D63FE48445A0B00642A831F1099334CBCCF021B8DB5B62E008D5C416BF447F2C42CBFB8C97590054105605518F643782F1347B26BB9A99F881F60694160BCC01762A289619A960FE7018C3000775865276ED83494D3B547735899537DC250A7B8A9A07450E5A86050D17944BB2422538880579B658D350784EC1AE93AA92945454826164705C8B6E5EEF84A00E6D5655E696C45B9B68E29BD67EA35D421B2C5A1783B5D4AB400E7615EB2854AA28B8914AE108CA0B4DC6FD007CB715122E03561BAE72C47321B74AE2B7DE52F796A2D7968172FB0D89B2E099A45198B06D46E592CC2036657503A0982E00077EF38901170C2EAB0165D2D44EC438EAC2C86CF25866AE1AC898151C40D36C2CE480ADF1720F725E2D89E9C26818AA8889BBEE7A48AAFC0CD10BA6CBD660E065C2C0302E19E751492E54C1686BA4379ABB8C85CA9A2321C1ACC482EA9CD35F91201A95E61E3CDA157E01604340B5E184534D315D127E4BBA8D3140DBDC1598ADEA862B0B7715A62E018F377F8250FAB83DD1FE4BB6E018E0131180E8BDE0931EE13DBEB509E01715A829444C419DAE4079B87A99B2960ED143C56A27A8417A6B11B2978458C2DA7DB1B57378B9A2609B08A850A65DE39825BA6AF69B1BB4D6A388CD09365EEAC4DEDB5B5E007980BEC5EE0AA4DD763C410D7DE14CADAD52B58899BBA80E1C16DF78B1FC5AC6EDEAEE0880D833495F64230D146D569547A8745546C0B4BB576AFC1B659F6BA55EC195F2CC3B12C761C096E37E58A6CC8A50BD8D66F9B8F5B81FB233EC8E44B2AD9B726A10775811B5DC286221A116D166F9CE63295804750205A2F7765F98D0764B6506C54BDE9AF11AE037D75CB60EC2788CD2F38AE4626C73894396E688B07B6312850EE2614E78881AC44A5C0BA80D66300A3B9AA6CD5E79AE312C8E8A256682D9963EE2D45DD9156DDE63FDDAB8784F5165D36101DD167F518E9C51A1CDD7678DF105D54CDB22605EAC7705990A5C00032AB18D1630E220AE11217E34D52DC863CD5C35129A1C0516CFC4C1122CC6B01B3E601C149FACCB0F77F44AD6A1D0D42866A659742F415FFD9571A050E0F1EE61B3B2A68F0063EE2CA8B85140B33E12A28A8159CAAA7E6513D2A62DBC34F7961B1E020D85F72E3B7E073A201DD5B69E225B4FA8886F98B551B36CB598394302B04D3629E7CC41140B1130339BA737BCFD441E4E8EB2A3B3CC1720238318AC5117DDEF36BF64D0745A5A5CC198940007C66E44A85733080445E2EA970395F8C410A3CE03E22373066BCC3A85D49E0DFEE24652E639BAEFE6E63A0AB96C3B1F693F631010301519B2A7744695421E6EF4A3743B1716C2EF6FBE6E542C11915B54D61D92B4AE16885202D4897B210EF3360D622807CC46F5D503C41C5396EF6D7FB09A16E6B8B8C285695E6984977E731237F8492881DC29AE0325099E0708E2062F1F1885AFC2370D4214DB91ED005055B6CC9746E2190060F7FE400D895EED00E74C2E31815AAE75E6134B71B904DB2FF4D14540301F8A6088D6E1B6108681406DCC003E26AD144171466C138AAC1C778640007530037F19CC550101F41F8897D700AA61A0E0F786A83B03495FF9101A85F18945FAA65099B36F3B9BFC51AB0B2936E48D19CBED485564812551651585DDC166D4EB901D39E6620A01A3B4598529052E96AEB3515AD61C1AB310C3E6D5BCAD4A9B5835B7059D638B9BE730C995375A0E6665C0D5022EB26CCEE234A5712AE19B28546F350B2F86C814EC1550F29D128521D8DAA2CE60D8EEB572D88545696301B5CDCB5A1972D96D5EF0B474EA10AFBD994B53250CEC0C1E66CC8522CC1E34AC26988A509DA92B73C92712B0050B5FB804014F0A695F52DA83251B2850F82316DAD862F9080ED0DC46E02A3C68FEE54DDB25EF2DC514282DB57C455286D828B9171DFC422E02DD2E11ED4AAD8928010100F56FE58B2B47329755A97106AA2DC01BD298665ABD6EEE977395B8150CA2A328DDCA07BCA28504D59EF70755997FA45B2B0316D5CB3E9A2B52D06F1A81E9C90D0DCC5FB8DD69104F1429F0A830C12D2991BA2AE97352F0F5F2C85A37AC91110EF8815C91CCFF00938730077BDD31471BF11360A36BDF2CDE8B235A5C337327072CBAC69098C9D9FB4F6267FB9C6A9DD7996B5C8BCC20B3A85DB589F7737D9CDE6E181DFE669AEF3228947A182DDAEEB7F99AE2187EA0AE53CDC39CC0E1DB19420268DD5819CBA0C47E31ABDCDDD6773FFFDA0008010203013F107025CAF9E831B26660DCD04B79194AE8838F08725B9E84FEADE82AE8298211647A5157CBC4A0A7BCA2549860E830732C9A4168FC4C61CEE3EA2E65F843A0311D1E63EED3F1D2CF32AD403887843A654958B62E60699766604AD1E89A627FB94486618EF896CCC7ABC061A8E998231E56E28FA2910C4F450C5B34B2E5C0B94C342537003CDCA46A22CB515CB95946F6CF9D7FB00231A18495B20B88CD4E1CD31000598C89B6BF313969F27447C200743EBE6221773BC10B59E6880C388CADB995550DBA8DA255B061A84514F7080EEFF3FF0090D46F711CC4517351C6E622A6054A30B2A6D46F073155E9BF09DA1016DF27E2102F7CE63C3747264C98CDF10860C8E6200330844DC4EDE60A8C8F332EE4E212FA864196FF007104719F20AFD93C08B344CDA8A5A235D20D04371E1BA508517B8624708D018BA990A7311418132442F188C2B9970ECD799E48A112E558414663A8E6733C23F9258A30455BDA1578ACDEB4A90029132DA3ADDE04B13640C15328772C622585351DBDE5F78E660C6D9F339663BCA5BB83C4067673C4A67B88C4332819584D903538656ADD5F8829999053608B25EE18688611C19ADB05A9B8637193D589699973F715437570A0F678B7A38E5A71D020698D3C9081BCACC626673F110E84CC465B4AF99A8DBA5B36265135E594EF08D7CBED8046F98D4AC281E841A220E3A343314CD033D24371DB43EF310B9422E58ED23DC96526F72C54621A171CDF11B515A388AF06A3CD4770353BEF0969F84B063EFF0072E953305A35006D48F6FDC31BD54CF058D811B2EA2A3DC8F56AE69F625D6EF04CE8CCA9B605D9043B26582996AC4BB57301B5C131DDA5B1C2059DB2BA610F984A19E088B22B4ECA94B38BFEE518DACCBE550EEE0372CEDC2601C66538970C0419B805437116014F3162575EDCBD2C252E20DDB1D4E180CD71010C66BB11D5D5FE25D03DFB4B9F38BFA1FF007697B5C6ECE8B333306251FDE51789E11B3296ADAF267FF252BA6937968AB9D460D895A540DEF35A9FFFDA0008010303013F10194C4843D57920E04529332DEE398658212E6572D3E88DE547D35051529EA1C465CB972928C73E26192C32F64019972D587E626DC436553BE6EE3C88DF198409CDBF72D6FB40556013E77F91973066240471EAAA30B7546D2A43C4DE06E32E744AF327E8942F32A2C758CD4EDFD92BCED47B0C07C55359B47F8C95168192E6173BD29A435EB8DB5A970A8AE7940FEC86EFAFEA38B77150EE2695E221A566A2B882D1BC2151C5B0E06496C7705DB7B39FD4AF4ADC3B8A383102C6020216AE30223732B0324F101295EC9FB2286B5445B19F6D5FF92968BB9926206696B978805A775FB8255F8E48D9550030DBD5673F72845C21E58B9A662A0561AD6E5AE28DDC5A9F0B9FACCA762E86185BA182F1032D2A303B4D2EB372F4D6A763D2C26C54F171504B1841180A3D5BD0F10D5CCE16D59FDC1761098DA07341954C33318B44332101462BF3E25518214CA03E7731232ED9B596324A64B28E5D2686151DF049BEF7342E2345EDF730022FEC13203DFDCB196F733BB4972B82FCE63744A550B9AFA4452292164D3A2848428DCC63B73F79861DD94DA62C4B3468C4379B98F29DF88CDB64A550068C45B6E61867771815DE2502D832C8BED18660A23943A0ED3C7D057E884A83EE11D46FB7A9B968B0942B994A4BA7A705CBB102661F2971DA6B32B3D2FF00F3FA8EC4A96C31CC771CB504B428195631AC72420E2F6532D3343DFA3695331F089CA8812B301BA15DE172694D78F894F89C0EE0C5C11AE82329C4D2FA066157998E20B6603AE92A1F2110275712560EC20BDAD8FD91CDBCD7F52D0788F89862504C293265D1350D4D6274062F6991230BB988C64303DA029951DC5AD4261C0E3BC319E2142F732AA536D4AEB0BAE8EA704D1D312FC9AF1039B669D2F496E2796E6798B1A95DA177E27FFFD900'); +INSERT INTO Categories VALUES(null,'Grains/Cereals','Breads, crackers, pasta, and cereal',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004C0000FFEE002641646F62650064C0000000010300150403060A0D00000B130000149300001FF500002F60FFDB0084000302020202020302020304030203040504030304050605050505050608060706060706080809090A0909080C0C0C0C0C0C0D0D0D0D0D0F0F0F0F0F0F0F0F0F0F010303030606060B08080B110D0B0D11140F0F0F0F14110F0F0F0F0F11110F0F0F0F0F0F110F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0FFFC2001108006E00AF03011100021101031101FFC400DE00000105010101000000000000000000000500030406070208010100020301010100000000000000000000030400020501060710000104020104020202020300000000000100020304110510211213062014303141152232332416110002010204040304070507050000000001020300112131120441512213617132814214051091A1B1C1522320F072332430D1E16243531582B2E23435120001040202030100000000000000000011304001210020106150603112130100030002020202020203010100000001001121314151611071819120A1B1C130F0D1E1F1FFDA000C03010002110311000001F54C8A45229148A4F9C9C726439BAD8B617A38CEA263B724BDF3D7877E5BA7D7B101DA8A83DCA6C4B28C6688A20EDECEF77F3E5229148A45C8D724793334747CE981EA3EDC640C13DC913BD856E9B823CA9C4A2F53BBC2491FE3423B2BEADF7DF3F5229148A45C8CF2479058CBE54F37EBAB406AEF40D774968D693AB7BB83846B516170686F595CC6C3694E87D6FEE3C0292356D48CFD19B396675193718D1933BC6DCA2AAE64696B744A585A49ABD976B2E9D9FCB5917E54D2D0A8B2B1ECC704E803DCDEDFE7EA4F3DE2FA01F95AB68A00E156B66AE60625F3FF0035E89A3D73B3D2922765D3BC96854807F97917E3C3B5AD7AD26FD18096ACF73D7BF48F9D2933BCFD3C9FCDFA56AA4B00E9658ACED04EA69694CE49465FCE9A016D0D22DD847B4ACB81203B121DEDA1E56AA597A98FA0E6BDBE7B1F20A45265F81B999F9EF44ECBD93AB8FB4977114E70BBAA678C873624998FB0DD0E698564104EF3B10BCD448998716EAF4D2B671548A45264FE777F34C0F43D355B1D9624751E4997DE5EC2653CC4C40026D857465739D3009FCAEF3D52C170CA6821556B5DF49E6948A452303B795FC97ADB926D018C16D6CAB5212005A34EA3443D32FEDB919815AE42BDD6BAB5E79C22DAC0D37261C5AB7A5F34A45C8BB38ACC432F4EBD89AC457D001CB6B3B385F5734D46C06E5C6B6917F3DBBE0B97CF4985CE468420B5080678B5EAB27EBE6561570608A6482B33894494F1C5CDE82C4D0746C9028AD4BF3A48BD169437C553D05ECC91AC6A14F3C88DCDD1E2F3A2D675395866317E977130693B37B566B6A1B2AE77DAFA1B01D2ED0FAE5D67367184C692FE73D95AF82E5A07C9EA9A7DC72057E8DC4715246EC6EF4C1D70ABB2F96B16961E2BE5BA79840735BC578E56D6D81985156D77A9AE5321D1574F042D4E3EB92692967381B2D337CCDC6CD48DCB95E8D9968D277DE657A79EC58122BDDCB05FD3B5F2E067352795AF599CEAACC56D5E8CB9E05C92C4ACB83D09957FFFDA0008010100010502F9972F7C764C6E8BECCFEB4FD7CB7EEDCBF27AFF0079A7E575986D4D4F62B67EBFB4BAED84734DB4B45DE5633B959B8E9D924F042190CD607C8944AF7885CFD7CE5E63A9661AE66A57A0536E25A935BA52C7B1B71C3764F5DB37286E25BF79F6440C6432B8D49848156D7FDCB32DF889F939157E9B2FD4DBD396B5970EE6E9367F5EBBAADA3599E5628E09992D2DCB68C46F54DF49B28FE96C36BDB3D5D717C95E27789DE0AF9E27B35EAB1DED7DF6FF00F4F5E3552E56BD110AE598E9C37379B294FB24536D202546F9D92CD28B2C9E594C31112BAA1919053ACC86C5CFA37760E6CA1F6CBE96CDD94196E6771EC9626B1BFC4918D6ED45D55E6B7AE506DE372F6D320D7C64969649E4F68D43EB28A40E45E135E047159B91D3F265B03EBB536DC4D9A83DF76B7B2566DCA5A4B62E5573E26B78F68D0FDB0EED723239AF8B6362210DB64D1D894C956301AC8E47095BDB76B6CB5AFD75C8632F8E9E9371703343EC2AB45B0D89974BB3F10AEFAAE876F5E8452C4F9C687D0EE563FD16AF1CFB07AEE09FF24C05A62AF0C8B6325CA90C644D1431F63A2A8D91DEDB405BAF4F7135632EFAECEEFEF2F769F619818BDB3641F4FD945B71807B03E9D08E16F87A33C31C3F0F64D1784CD3189405CF4DBEE922A91B24D7C6E2D7D3BB25392D54EE1B8D70A3B19E296BBBBD577E252D92D1A155CFBD568C3ACA71D77B55C718E0F235CCF84ED6BA1D7DB125B6D3AF89E22C1EA72C92D89A1F022CFB0A94B7615EFBAB7DBD7C3742B9A367646003F6A160F56A81956A60BE7BF30592F11C518ADF0CAF6135B40FFF00D0E966BF23AB4B10925D6D86C95F61520AD1475DE011B363AC45E2D0505ADB1036AD5FEBA754EBEB98DB4D25CCF1189CC009003B2C06F6DEDAB335D2659A70A0F61BF5CD5F6AAF2AF61AD4B77AEDD528747BCD49D56FA2B5EBF7225EAF68C163612791D525E96232E8F77AFAA5FF007F53FD9559A93A5AB7305B2FD85897BE1680F8A40076617D8BA20AD0F9D08248C38439AEC83B629CD3B3ECDACA9B83A4BB6A0B3AEDD9B02C578AE0B533A6646C72F2354F196B6F893497B5FB58ACB18E86DBE09C30D8B915791C30E8AACC1CE998D7456E46A6CA65924D95D747239D2C96285FD790F9317A316AB964B76C6A6F598E6D5EE5B6D4337967645D92CCC0F56609A076D75115F646CB1A8BB42F46EB1B4FB06EDA9DD56CB9F2EB594B6105BAF5AA7FD7627F90B06542008CA664B97B38ACEB368D92EA0657DAAA642C688CB5EFB6243FED3F89B23BC6C826835CEAFECC263A1D8C9B06E8B5EEB262ADFE3763FF0083FFDA0008010200010502FC13A2BCB94027A03809DCB5357775FC128457F0D782B190D3D01C238E1E163202CF4EDFC2E6A9060828FEF8CAC22110B38337EDAB1C929D63085909AECF0E7603ACA95FDDC021070E4F2E4C1DCC5DC31C4CE44F11CA5AA3B40AB1FEA5029A9C38CF00ACF04285D87598F0799989CE585945365E9C058CA7725A02C859584D1D6501C3C23E166BA279CA3C347489CA46A2176A6B5762ED4100BB563E366040700829CCE984C7221095162C7191C1283539D844FC5CA68D744146A409A83934A70C20F5D8BC488C26A2F2B287C837ACF060B826BBAB9B9023E8512A370C1014727696B81537EC22B2B29D2A2F2BAA13909B64297AA0721C8B1425597261E227E0B88C92321C5A8BFBB867EF8EE29ADCAED45AB083F0992614AC0892D41D95275E3BB8CE43DDD257029DFB6F558EA0A2103C1916511858595FC3DA8B084D5E3C39EB099261641E31D037A076505DBC0F8950FE827AFE5DDA8E780820533F63193FB1C7FFDA0008010300010502FC15780DE73C07A6158E308FE2AE7AB51088E70884026AFD707F135D8319C82163E04207098EE89A8ACF2021597D629CD23863725954289BDBC382ED2B1F06E5029E70E58E606F4C22C4F60727D72155FF0064507A0782161639CA907481F918E6BCB84D1C762ED5D9D5613820F41CBBD1721215DC815844F48DC5A7CCEF857B08705CB00F0517A91AA372685809C38C2CE1172CFCAB4FC98D67AA7C794D7231263D77227E0E7268C9C7C428DEBB8F16146ECF0F68410EBC77A322EECA726B3827E59244326504E6640E85D21C84D52039EAA46653810A2FD7384D8426B42C0460053AA951F4E03CA6CCAC354013C70F194D0718387372837B504EE7B427397720E44945990E8D31CBB4143A28D12BB56563AB5A980841140A25045BC08D6135E0F184502814577746141D94E6E5616105944228BBF04BC05FC0CA18E5C8A287078FFFDA0008010202063F02621BF7E34236DFF32C8C2BF5230A848C7235A5865692C4C68352C8EF4A75C840A77F33A5BFFFDA0008010302063F02F5DBCA643530C84EE180974599CBD29889D0F0790C460E2BCB7FFFDA0008010101063F02FEC368380D4683CB95E97770488DB6EE2B438E5737B3797D75A4EE1240074EDF4E86185F8817A6F880DD8EA8A34234D978E3C693503DD4BA9F21857CBE3F98CAFB693B09DA980046A26DD43865857C56A8E4DCAAE96B5D35DB8E380AF97B6E134CD36D9D254BE01AD7B5E9771100668FDD53752B91B1AEEC67A1A8C731F45B4796557BDC1E34DB902D1C435FE3FD8A4C9EA4245FCC7F852C4F9711476B2ABF6F76E03B29C2FC30E7E35DED44ECE23FA53AD8B0C700788A886EF768F0428B1CB1B5DE4EE713700E3CEA465DAFC54135A5B0BDACD9E232A8C27E9B691088AFDC5E9CACC32A8D371DFD12A321472D89E19D6FA5EE38D8C252302DD2DC0A0C3EDA58A3F48C41F3CAFCA98A1236F23E232D2FC7EBABCA2E38D6A2DFD2C62E4D26DA352BB206C48E3CC9FEC64DAC9938C0F23C28AB74C884E1E22BB6E33398E1E35341BB284451B6827DFC38F8D1F8916F9833779A1C35E9B5B530FDF9D7C26ECB1867D45D09E6D8D1B4A750C0A8FCA3C2F5B9DD979372AA540D99C0877398737C30A47D96E845BE0BDBF82DC8B7A8FEF9534443053D5AF1E39DA9B6C9779648C6A96DD38781AEDCBFCC8CE93ECAED9F43FD86BACFEB707F1F2FA7B9B991634CAEC6D5243B1DB7C46DE3C0CBAF49D5FC246557DC6DE744C3AAC187D86BBDB570E9F77811F419E5C870E66BFA32B08E1D3AFEBA4DE0556DFA74CC22C9873B1E35E346485FB6DA480E335F2A58B7CDDDD18C1BD4FE60073120A405C3F6C9D2DC7CC1FEEA2192D305692594642DF9AA76DC153B331F4EBB1469030B0149BADB4D16B57060576D2DE47CBEDADCCD06E991B0EF42EB746502C48F3AEA42388FE1F0349BA7E9DACC3B64F0F03F41C6D1C7C79F87D33099BF461B242A7DDE6456BDB4A166CEE3EE35D89E3D1BC1EA41F78A93B2CB794DCEB1C7D9417703439F79715A8D93D1DD1AFE8D4BD511B6B419F9D7FC96CC314BFF0056BE7EFF00F7D06CC5748C6B458EA5374228491059246630CC08C6D7D4091CB0F2A025EA648DE3E8F4D8B5EFF6D6B01545BD670CF3A31424282013DC1AD4803851960061876B303A35749539F90A326D45F49D44EAD5AB86AFF0A1DC3FAD1F4B504118D64E2F7FA7FE4B683FA98C7EAA7E755FC457461E14B6166193F2F2AB93DD438DA974FA6DEDA3B19CFE83E0A4FBAD9AFDB43555E24F36E5E55240FD4AE0A953F778549B6507A4DC0F0AB8F578D1921874AAE4CE74DFCAF5ABB6CA96EA61C48C81B70BD3ED0ED65F8C56C82E1E21B952349B590EE85EF0D88F6D7CBC6EB6E63935328915ADA5F5FB6E2D4631B731EDA6EB258F5F5BE95F671A3B1D9C12F75752A477BE77EAC286EB7FBB48B58FD4DBA0D441F3AEDEA91DB2D64E479E1FB0DBEF97AF4E72C43EF5AB67CABAB2A1D9917B9CB558D397BCB0F88C57DB492E6920056DC8D0D173CC51DC42E5651704706A1BF83FF776D848AB995FFC6BABAF955C3E814354EE6DC2F6FBA91B6DAA49A5B6A370A23038BF953C22190E9D5AA761D1D2385B3BD2ED7791C7DF63D16EA0C467604545169316DA1BFF002B18ED7CF511C7970A58E116B2DAF85FDB575B3281D4C698EB5D0E33FD93F30D90B477BCA9C8F31563EA35AA5E865C4576776755C7AF23EDA5EC1FE5965BFDD4C8ADC2845258C4FC7C6BB91017FDF3A7DA8E8538C77CADCBD95A6516FA118E0ABC45303DCF8538895DC12ABE5E3CAA37D882FB994E88D5D48EDA644B52EC368A57CF1C4E399E34220353B67E35DA651D27A869CEACC715B91FBDADFB2EAD8A95208F656E7E4FBDD2779B66FD36FF0076238AB7D59D30D64E3D3866298E431FAAB75F2F720ACA8265E7C8FD94553103DEAD191CC7B284535CED8827537A94F2A5F986D98ACFB43A9EDEF467D5F557C1EFD5771B718771FA585F9115F11F2A97BE9EFC27D6BE5F9AAC59479915A55D5A6E0A3ABFEDBD49BA746D6C6CA645D0481C6DCAF5DC9338EE40F0A0D05B4DCAABAE76A692463766E7D5CE8DEE56C72FC7F68CF3C57DA1DD43348425C76C12AD7E5606A6D97CB26EFA27F29FF30B5F0E76A0CCEAC5C5D85F2269373B7B6A8C8247E61C56977109FD26E36FB0F88A9259CE8FF6B1E5418655F0C0FAC7B30E07CEB73B6F9A24BDE8DF4C2EBA8BE86175E36E9CA81BC923DFA1CF2FF303425DCED55EF9F7220DF51C6B56CE18907F91547DD4EFE1F8508C7F30817356FC96B634DEF06F7B0AD030FC6BAAF0C5CD3F13516A6BC321FE69B9BF8E34C824EE6DB2B1181FAEB46B0E8A300CB56DC46C84714EB1FDF4CC089F6B6D33A03EE7DE08A9B6DB37711C53AB6DCB7AB460CAD7A1269EDEE7FD68C6054FE344ECD8491F26F553FCA3723B5231D712B7E6B623EAA0807E9A8CF9D761BFE9A65D5A6E3D638545F369E212A422DBC8C8BEB8B9DB9AE74B2FCBE2D3B4B2EA80A00395C0A926DB06451EA0B867E1956B8DFAB23867E752037E04639F0FAAAD1E0D7C6821EA56C02FDA0D769B21C6B0B683EF7853C506A684FF003001AA9B54800F7A36B992FC34D691DF8665F5A1B37D99D69273FB7EAA38B23A75161C07957C4ED9FAB911830E4C293D3B6DE8BFC331C579F65BC2FE9E55FECEF207D3223617E163C88A2BEA2B9A9CC52EF36C3FAC80EA4E7870A8DD70EF71E5434E77C2AD30B1A77857BAB6C573B8E34FF2F1A7E10B6B0B6C429F4907EFA8E20BFAD931B0B1A6558FB125BDD3CAB433687C8F0A85A746B4CC21338C5549C99E94A759D5C7C71CEBBA874B0BE1CC7B6BB02C7A41BF81A2626EDDF318D8D58F49F2B5768EE885516BF1F69CEB16D4CDC69666B286F43060CA7CB4D6BCCE5951848F5647953A3FFF007B6F8639CCA38789B64684D1B90A08C2FD58671115D06CE0E5C6D5D8C8B3741F134B1939711588BD2BED9CFF000E3572B69D0667122F98A89A4D68E09D00B12856F6B9A49DDD41F7AC6D81C2F6340292B1AD9DB422B77172607578F2A4F97CF119367B85B0945ADCB4B2FE228EE118BED931756C4A81F85192037D58A9BDF1F1A919E5569F49F76C17961F41D7872AEBC79D36821BA0DEFF00978DA85F08EB32071AFF00252B42C53E6A96ECA0C75ADF0BF2A12582FCFD02FC5C5859D2DFEA700479FDB45E3531FCC0B754719BE9373883F5FB2F49F14A04F716E77F65751B49C3F8B8D01A0345C4E47E8BFACE375CAA71F30D327CBEF81DC79E0781BD153B9D02EE63691351F5E238617A8086917E60197B223D5A89B59B2C72C6B6D27643FCD4470DE26206A36FD404E42918A69623A92E0D8DBC29CFCA3AFE5CC6EEA98057D44304F0E38614552FA341EE30FDF957FFDA0008010103013F21FE4B5025A2718FB6BFF232CC29B38313AE7963ED6156B9856F5945A97D06E02E4A763C2C23D5971C0142A437CECC5451568B843BC94AA05B585D2516E2B98F8E3A3C5D2C9F592829C9C81780B7984A6C5AAAA86E7D3098574FDC1C167A0C689AB0DD28BF0F71A039C5B43E8F8CFF00863C0619EE3FB8B8C28F45FDD474E7034257DE60EB8682C63B707B72FBDA85272CC3B0AE1945A7659DEDE5E1E1D87988B88248A28E04F1F7F99C633C1005D58CAAB3881D491FB4BC95D1C54A1947CBC5F3F2FF003F71793825F2C9E17F71BD49C736F64B0AB60A0BF86BC42BD4B5BE88AF0FFF003FE009FD7009E5F865991E5749A42643A702BA1E2A5CB24DE3A36356E5E223DA3DE7E53C9956D5A361AAD0160549E6AC69658F4CEF16A8E81F5EE7127EEEC10A69879D264AC49C453DB75B6BA3897B55B8AEFE8DBF7938C496297B3B4B384FD40FCFBDE717F509938B73EC946A56F0781CABE7671D0C15E8BE5F5078CB5F79FE5AE3E816DC3CDC00B4E358AF2347D3F0596640394E02E60E3C2ABEDBD7D1120FEC00E0694EE697F44FA9695BB2239B732B542247116557FAFCC11B700196511DFBFCA0BEB95DB76C2516BC95B2CF4B2409228DEBC32C26180B7A49D3C3E91856868FAB17D38FD4A9E5D7C8F47B0F70BC6B1F0794FF006C34D6E5E157966FB7CB7A811408142F55EE14A8A84BBDBFA1799C74B8506DFD700A7DA354EEA0D3C1B65FFAB200367CEA110FEF25A5EF61EB3EC32F8FFDEA6954D0BA0583A37FDA670F437B2BDE9CBEFD43BF436792A3AFE21AD1B568E0F2271680704A00F7AFB22D4D6ACC0A271BCD788CAF7B928DF2BCFF00E44673559DC97C06D703D45FD64FDC18E0EBA12EB6C11EEB87F240ECB40AF8AD38F94A02469BF20F47ECC9CF3BD7A7E25BCF1569A1FE5382B54D59BAF3E0FB8D55EE0E0BBA301CA7D90220F8A045CB9E67265D8174F04F70935270A711F67F53CD921B1F16736773DACAFD25CB26517FD92C1CC80C06A1F938A82524E114B04FE8F0CB3831684B6B18E1B4CB73A3163B287C0E6EC81AA391EEB2EAA974DAF314C482039B75B73EAAA14C1B99CC37567AB87107C49774056787F826AA1EBDF17F92598B5C5A1F0577858CB2C51FA845936D5DFA1890DBF8C52EEE129687615311C263B5D3F9FCC7C2BB52CEB9DF2FA58D2A0A3A1C74FA9F5ED1BFDB1A8E4C5A1F517AC34399F67FA6F98B4ACD8E6094D3CB398D03AD601778A0E9BD61B34DBEDA1416D1F3E5C4B0389D6D0E2DDD4153990395F0E84750198A2F3CF09EFF008BDC9D118DFD4F7E3EA6937C0F5F9815C52407AD1EE9B8F4074E2D5FD3C7E22F9367D02EEDE399560414BB6EC3AD3DE14B8A6BF73A35D8A623C86B449778979C13C938F6EE684BA7A4E926896F6C5A5B7D7D907F161E67402FF07350A6E699E7A6B37BFDC2BCDA8E1659EC4DDFEB884B97A9EBEF7884E8C2EE4F362573E181A4491473E2BF055567F107D1EB9455D4487C1045878BB1888C001D1DCB7C4E2280F7FF00551FC18DE29FC9A187EEB5397C5FA964B702577AA2BCCB89F6A0947B3F11EA0C3384FCA83F88B010503F0C230AA9B057BB143EB7D4B020E4127ED9B8573D5C869D1CCB802D3E76F6897E6A30D945B18B1E72F662374919EBDD73152D6DAD6F940E0D20058B7B8F1F372E317809836A01C9D5F2F1B16969B4ED545E9D6B773884D1F4079147899CE419E41E51325FB770E82E90FC0C18A356D2FDBCDC607F0F71CD032534EFE8EC7640E9710CDE800F63CD45F1233AF0AB9DD74C0CFE43F7A414F6E91D3EE906D746AABD7BF10EC08F83B4FAC8983E8FB7BEFF00C4620A56A35FECFC646F8AA6B596FA94CD2FC4FECFF11819BAE09A8E55F8895BB7B5D975F6D2A25C89C87806F3216D36EE3F063FB99E0FD6A6EFCAE8F23D55CC3532E38A71E6ACF1703E046D3E743A7867670EFAA3C83C442A864F8AFB167E67545ADD9E5AFC403D2D7F75186B21CABA4BF0C1796AF036BD931EAE0B530AA72AADD577F712727603F676F3008266D41F56CDE0514F09EBFF005B1377D10DF2711786C0B17685A5B6712E75F592C2FC1FDA4452EB45D7E45C50A3DA23AA5C6A2E256AC8A3E0AA796CFA8ECA91AB3EE814FF005044AFDAD5D538862E90A3F612FF0073AE623615E5903B839B456CF9E9793CC0ED34189AEC79E067E65D6E27F544E47A8456A2253E5FFCFB94BB65FB7B2BF3148BE563C8C48CD629A5C321CB736D0FED89CB55ED82E9F5806ACE2F664B7C1A9EDF33AD9E4AAD57067EC989E353DBBF53307910CDC78B401AABE66F0E79AA1539B119686A5755344A6B881AC2E668EBB96C0F02D0F0D2FF00B884E97A03D70421CDC554FDA96F1CCB0A6FBB77FC46A353BC4E47FB8C39E59AF72B51E472F27B9C8E35B01B5BC3EC1D37D0A266CB96D7E38CFBA3CCB57A73F67FE40274858D5277D6C5B49A5F902E641FB3CC3A3B68D9BF17E1F7135EACC12CEFAFFA4E61C5310D0A68F1C93015CC37472320553DCA4340520BBB732DADD5D16F89ECE4E7439825428285E42D1EF4F29703100871674F129CE7EB42D1477F2FF53177B5FB7D4A1701AC6CF7006953B70CB35F8A0E5D9DFD6C0A07C369C1E2A120F642DCFF00F6738158B779FCC57886D3CE9052EF623C923677277905DD9BD29707DE8410642C6F9FE4C9D27629D3C7DA5932327A413BCE07D9CFFA94A555C3B36552E876DFD4B624A1351C1B50F1B7188581034D29D80F55BC475841F8526C1E47D7315C9DB51220E06DB97D32BD6994F7283F89D1CF496E055B9A6B48671C57994DF2D591FFDA0008010203013F21FF008625C5300272944D388B60B8BAAE22245F147FC2CA6596B6F100F73F225BAE7E16593A97CE33C20D87143B7FC3615F015B01B3B8544EC8E22221F52F94B200B1DC50CFC81CC15C45C1367C15CC4BC943DCA829D282467AC562C12D3B1A4225F2754F817C4E0E63E23E9143611C7994C085198B063FC14717C32EFE5D2C964B1F23BD08812E3985C14CA2084E399B4A6D46DF0AB12BFE16C165CD8C0A973950B87E79711BB78960BE515C903F2C01FCF0C0825333463A650D930D9769F04947DC5B23AA3F5CCA12DFE231940704E55F0D0C5784E71788574CE745BCC607CCB93CE138965B602BF9009F0EC5B384EC8E5A1590C67F13AB3B63753789B17D103B272C65541B291E917E25F9FC52399C1BA4D2801D97C7E52D409D3F05A4F4A9F56C42C846C96DC5C27736E2D844E5307C0188F27E031D914F52859C932F687329DC3D42504671181803480571A42108FCFC1AC4325D676A318867B3FA831C8EDF7988836157234246A5E554474D9B2DBF1090EF3B96F8D8C2BE0B50AFFA4E1EA515A83B731DB61CE4E4CBDE44BD253E905FB907497AD8713FFFDA0008010303013F21FF008073F14B3B97352AA004A866C1EE131FF1A8A4D4A98830C657C2F851CBB461FF008B73E36D239D97F01F176096C02CBD5304B7CABC474D6A3D6C529F85A894365DAEA1B2D9546F388F3F1475F1213D4B9CBE4C0CD46362446A6A757CD097EFCAFC3518D1A88FC58F95AB712898C431A4CF6A5AC628654D7C6C8CEC7C118FC32048FF0002AF914730907E1545064260C24475105E231847767396AFF26232A6C8562E54B27433C114C66BE0B65D6CF6F103E30A3FC5E93ADF8AE62BE0389CA25AA3ED38856631871A86F32838897FCAA07328436E0551B54403F29E339CE0A0D8F129FB8C53143770657C3F23E1E3C7C71F896B6172932020F709CCA77E30C512D3B4FCB94A9D8AAA222CC8F12E6F6F30CE09A7E445B44F81934B70C00FA40A9683CA6616DD863B2C9B02132852CCB399410FC4284C5F86D397B23C14982E6DB2887861C2889F32D71F839F87A8D7C332309CB398FF00739CD85D788290E27538EC07538CB543DCA7C7FFDA000C03010002110311000010924933CACCC5CD2424920EBB9E4E2A12092480DC1767C79A1245C69203BBAC30B490F6F069D34A026B248C9757954F08D99921633EE03C85EF864939EC8BB07890BD9244A88D88C9251C60435E58B872EB0C067E20D92408C1C6138B001FBA72AA525B3893345AFBE1956C451E38997B7ED2494FFFDA0008010103013F10FE402D806A6B37D9597F408CDA951529DD54516115E5F0005A4B2846E160DB32B6987182C26621B10DA98609E44FB5418A2726CD1E0602B041800B5CEF71F781C3534AD205E4CC35A2771A50B047457EAB88028D39035025914EA3149D314D8D10776D21395DF366A8FCE7A801C2900B5C20AF0F2CC5D4CF6141687F0C5CA2AF9D4B5408A962EB7FC9E2303B1AE17C07744E413A8220CD7B2E1B6939CB9EE31478B464E56D22230B8056024B55E343A85007939013AA483D1814CA6E9078D42F5150B673517E60D08B5B56B5ECB760C9B990C86D04C155B9A8E1A71885A8DAE6EA3788123505D4AAB50DF4AC0B1475C714D20E7306AB462CDCCA087028D02C619FBCD3BB140568FF0071A6019D1A9B947BCFE4789AF80A62C89EC76F45FA8CF06FEE39E8C469BB94036B05C0A4AB2D138EA1AFA1AB3742A842C534E6C3FBB264449A57938022D16E329CDC2DCAE294AF2CBE7D4575161E35E3C2327B5CC2EFEA10013434CD7EF1A4CE6CACAFEA94E0C9C9B443AB0B61D2461F5E631802C6AB3E7CA3CD4ACADA81876D44089CE5D8A1DE3EEFA6263C82F43529415BF5F399BDC052BC5958359C5D70D8F02C578EEA68A8859540D91392028AC57C45C0D6DA9451410F00CBA5CE1E9F735681BCFA2D8B1DC9500E51E9E0A88010085B616A5005B2AB8A8E5C2054148AA447847994C1968AD752ADDD998D5F711D39D43078A2AFC0ED5C5F90EB0738589971E2242CFF006800140D06D66B3230411F11DB5CACAAF5B30626FA513C9615A17D3C45E54D2995EADC5A12F9414EC17161B1C4A12864BB0ADA86D295C2D706CD64B1DB718C106A2A6CEAC6B4BF15F2935A6335A69D4A2D393316C90595C3B301BC41DA6D50340080BF5A3C919BC56152F6ED673BD997085007A1B5CE07D9476CD4476058EEF4AFDA134B1B4751B4697AF04266618CD34EE5D7565F9315A4BD51455BE813C94E66E04DAA01C2539089145B88AE567DB1A84D468B0E23B77C7923CF8E0065EC710EC1892950831A874852C851854AC38EDED0CDC7770643B2A1AA2BC260A88403E100501B04DEBE4348515702951108BBA286E888971A4E33FA8BF64A7DA9A562DC8B76FE53E5125B00350551F981612C34A38AB75C903F317C3AB9245A3DA984CA0504C2B045D0635173D1653CA8D837D301C59A2D4466E0F7915005EAA8AE99750C08C51031C036705398B1E9AC0932EF4A4B475E212A187E50930055BEF8859D4964E9D035BBE208762A1029E13556092C06552102A57C2B2B678E36B92C70A10AA5DEA09E118606EA0CE8E832599CB152F4A0CDDC4ADC8D5B97E70F56C7A5055286FB5A0C385056885006DABD5C1C1F2023B692BCA0720A6C5A425B00B5555813F21BFC068D00055A8791D478E4E6821B4D7212F80BE2323B4C22D5E817D910C859558E014A16996400D682222C460F278EE541BE9148405783CC4EC660207552A93A866F49005854E9D822B495AEECC6ECD78E854C7105AC5AD2225AB72E25A9AAADFE91E0FA8EB39A0C0E1632B234BEC0DB340B65647A423856345D8170A0E031ED51B804F51838035D44FF00A95BA2905240D974826050E1477D9F2D7AE082612AFDF212355EA6CF07AF2158A4A2B852EF3F8906D332975034DC3B7B65369EF31DDF20FA22BA8C62DD0A7A00FEB99E78639AAD315F2AAC5F3109C24D51A60681EBF171B2031160B5F27E65C400B9F080B296DD6F5B7D61A4B80B65C538B52E71AB8E09D765851053643E86A6C1416831138882042766C20362C9C06D9DF11BBA32676DB40EA31E173821B78EFEC361A29C02A6ED48076C2EF2479E030899126960D296BA285FD4DA4834FA20CA20D91AAC4344A982C1546633F882E0070C16ED1C8B8C6E23C9074AAAB87675488B5F28AA02151A46D6B4D1CC43A451CD702110A50406BAEEE23412A14D1BB39E551D02140ADA450C414AE73731A1D56C68851EF2EC74D107C08024A1ADC0FA52EF76EE5385A614DBF4CA4EF3713A5628F79796D5B1253B87220227865CAE42D12842B0E32F8363A86FD58A8A33C3FDA87945858A96B668CA4A9709AF56D294D5A16C738546D616AD5AB434565A56D6C195F9C422C45183CF5C7C5D4A737290A2110284C1C34F82CE8219E8B2B4E708D941D9B02C17131DCB93CA1B1446A2039042B41429DD618C42F7B213933C05E426E8B46F4E3A32ABAF13276E17D0C44EA33B6D114CEA619E40237A0F0B1525580A5DF62B04443C8089A782DF564078738330A757950F766241DAA08FDC04D5ED19A348BED8DE41A864C50AE052ED441E7E880EF85D56975B6A5B73145375980B8C76E3D3F29861217EA45715C9F8890B70345D19666D780B71EE0B3F703A00F037A672D46C56201F8595DA2A82A3509F0C8AA8B79294EBE80D95B9120B41F457DA2DC5651D2A84295E95AA8867F2B532F30CC28BFC01F2A83E58DA054C47DC31418CD0D8EBD6770874C5C80476150E53CA0B98838DF025D603CFD400E8A16DB1367FB3F5E2391DA957E0822F42579C96A2363B5056C68EE8EAA736C77080C901C0CF967128D2DCDED407012BA97E661F730504ED1AF1510159E3A9125CD00D6DB723B74328A6D946AF657FB8B7F8A261500A0F04FD4BFA02541416D9652D8FA96D2E6DA82AC2DC0F27FB94C207923ED155203F72B8754D50D6D063877D225AA4BDA21F11B57D0B871B4DE5FBB5C576503F7B2830520AD16D41BA5DF913919C42A1F490A91C45A7879862689EA4492ADA9364D2E94B4E2158B2AA2DFA3088EB9130C846D80456D8DCCDD1581DD55BA5D8FE972B445B1B2C2EA2DDA37C4BD41D58982973739892CEE531CD94A69EE3D59E0516778392ECC8D811177AAB5BCF94502C7CC12901001CE116C7B95889355AD77E9EB43C4B1A5BA63343912B93EA76D888C40AB7B899632E911455B8E9645529A7E983E980B6168E0844F86CA8BC3868CAD01EACE4AB1F119C01670D8726BBF4AA609BCA70AE0086FCD4E0947001E047C5AAD71003F03A4C1E7AF94F284DC84861C9A6BAA0FB8B046A1211BE57600F5E0FB82A10D56473070BC81C6900680AB3225B428B72F70ADC0AD243AA20F34A8A2179B0C2AD80552AFDDCB6E8D2AA3B390030E65EABAB00D2FED34891D2A869DE2224658DE147605BFB1F9E2335477D220BA8B50510E4268CB63CAB7F8D57A39AC63F02E6057954279F5E61FD8E63D5DA800402C6E3099AD92A96804C85201CE1AC0C31DAD6DAF3A0B1BBCC559A961E369AC95BFB1A0DE64769B36098007462C2C10BA0D517E6A6E4696B736382A8E5AAFF0032C493C3C1958FF86723518EF52ECA7366B7D5C640AD2D953C56717C7515941AF472283BC19BF896015CFEE544BD55A5B90DF722D9000228B0D089A22BA5517C96C10D4A1A0A9597FB8F7B0A8B0A3B0E77494A2D2A9E69C67E27047528E821A12C6878CBEA7147C7CE23A7D535F495EB5338BFC465622C838A34B43147392A62CFC594328C00BA751ACF5A65FACF6481C0B5115525D2F4A8E8A6ACC52D29487CADBD5C4B320CFBE56CAC3A8FA6C05D5485C870437288C208658896B140355B696EAB1EE7FFDA0008010203013F10FE57162680885D73CC012A53F7343051AE1819BCA808BA8F66B2716A1982B8F4CCC4A65BCC025F5094F7FC9F825C589060D1D4FF005033E1A4D147A4A016323F5C7B8AF794074C1E7CC7C00FD9FF00A4A691CABB7FA875E5FC9F9B38B026D5D11A5FC19539D407D10A15444D3E0095E9BEE5ED4B5BF22DAA9542C47B449646C97F00974CC00B2BCA0CC656D974CD2E1799E7C5966901F6952995092FE610BCDECAEC261A6193B7E6C26129AB7269DA00DCA7A66216FEA337D173418453CC1FF11FF512C712BAB66E30B9B454B192CE250DE421B94B74115FD83D41FE1F3DEB3984FC2F512DB0B710F8E65D9BAE791989E26788C23138367D2444ABB9D335E62D722E871F53B0C652A814AF30DA38EE00A05BCFE1B8F794FF00C81C615955B3605178C454CCC764A60BD1910896AD08763E9EE17C36E8F1083A13C68634730144D2F7FC4CCBBD9AEC4C8CAF1B380D836BD1000E90C8AE5B86403D70A3001F2CF20E193AE0775DB15C730A80B5FA88627DCA43E37F8D85EA1722F3E9EE6348C1AADB8DEE2A39EAEE2B05D466A0D858C736E3D4255962A5C63862EC456C1A2CCF8E04AFE165FC2C2CEF00F89412E2903CC1D6858E1DCCE16BF2869060E4607CCA380D3FD4296AAE9EA5C11FF30AA75531D0AB5C0C1F0EE5281E62F4108C4DE668A4214B84CD291D11E87F8FA825D69FDCA14136A12E6BC4CE672B850D3C4A868860484351871377FA978B7B9B879210577069C0D8833A1398554E010058F39D971E10D29F578FA86DB84B1F11EEDC75D69FA8AB257F84B22A04D1A82CBDD4A3136A521A50C5958C3CFE288AD4C506FF00A8CB5286B618322A6E430B4C3788A8501EA781217DC015BFEC400082FF0055D232E4144BEFC4C578D8784B8F07533106D7514E48D78F68E030EA50A4D9BAC87DA37CA39EF60DB276B9F44A7712A1ECF88014B6F978FF00BEA1AAADFBCA2C8EE57FA88D555C3DCE0257F7001B5CA613FF00933FF81456672EE2831E44AB6BF1CC6B0D948FFFDA0008010303013F10FE640B4C410FA8689C0C28B04A229CCC3DCA0D319405A815BCC2B2E39FAF1109CC4AC8BA899EFF00E1BCF28C0DC0F18E7E6525E208225139998F12981298EC3889AB2528CA4E79FF00868A2A19911CF54B42CC66B1968E620F800C8FCA1F1B657CB742D97515E27507FA95269F9645D558CC16FD4E0A8810EE2CA7A891AA3E53112B9844385C08C5E79F50EDE60DBFCF7D5951C54E459110367896894F1DC22D735029A828B80DDE41C388B6CBB46206C6C71044BF1122D0F32F4793227379F3E4971EA20AE4F33A399EA988FC92819078F51D01C930D6155E626EC969286A3B8E630C54120F7390E63ADDECA6CCEE41E2211B0FE1787CE07FF60392546E09C425CE7A894D84C5C2F3181E13017653C27789424D7315086A26CEE68B3D46B48FD6FF001774EB23B2C89792349BFB8D83DC2EC8978CA8D7B2B796045DC5788AF51A2D0B59142AD10ACBC788EFEF3F8A0DDDC4B798E3DC70CE66CB8067D32D5B9E25A6F918DF245C1CCBD474EE17C38850072271C658A22892040578883FCAC0D0C620F16665611232387CF5345BFC226D5003186B4E31F682959E5E66891860F70EB32D3583E5EA162E19A51F6959CD2352F504B0D61368A85474EDFF0090DEE48758DD4B5429801C655C137E5D8D749616724A898CBF1F48102CA7FDD855B16099D401EA0368361894F70018C37C99CF52B6289EA32152C7192B51729E4EFCC71E3F705B318D6D70FDF71526FF00CA035C4391593EAC762C2F5121236F10D5172A44BD0F1101102BD4251533489560B8E1081B3C9514F72B5416CAFF0064F32693987CD0FF0011122A58D40A93EE76351307A972EDF518E5901C494710288B601918C27D4369791D64B43FB84A3FFD631A4CEE47F94BB2F8ADF12C50F6FA9654B7FD47AB85D6E52914750BC188F0B884E90F4626EF13FFD900'); +INSERT INTO Categories VALUES(null,'Meat/Poultry','Prepared meats',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000410000FFEE002641646F62650064C0000000010300150403060A0D000009A600000F8000001AEB00002C0DFFDB0084000504040404040504040507050405070906050506090A08080908080A0D0A0B0B0B0B0A0D0C0C0C0D0C0C0C0F0F11110F0F171616161719191919191919191919010606060A090A130D0D1316110E111619191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919191919FFC2001108006E00AF03011100021101031101FFC400CE00000301010101010000000000000000000304050206010007010002030101000000000000000000000002030001040506100002020103030403010101000000000001020003111012042131132022140530413223332411000103020403050606020300000000000100110221123141220351613271814213041091A1B15223F0C1D1E162337214924383120001040203010000000000000000000021304050111001002031611301000202020104020301010100000000010011213141516110718191A1B1F0C1D1E1F120FFDA000C030100021103110000012F9BF50F2AF756409A707C70AAAF8601C5E10EEE980AF70DC1DB5410B57A06C24F8ED9CA81A96B18794EA207FA3F9AED1AA884257AF4559281A3F8C7270E40C08852CF33C85B576D0A51FAE650F13D4E0496B4E1D2A2ADE62CBFA179CD6B919DAA6200CEF643885B0ADEB4D36A54C8F9CBD53981AA9533893502257C6743CB4B6742E0741D9D110BBA5E46795A6CE14C26C8ABD3C3CBBA819C7A632A08C3A91B6922DB259D31FD597CD53920CF2CF90565FD3D5D270F49CFCF22DE5C67E66666ECF035518D0A64D5F0DF30DD5522DCB48D6C0E7377A79332D244955C697D2CB103D452AE37E883BA2F3FA0745AD4C4DC3F6843F9984653EC4825ACBD0D356E3B3A19B4679AD7BAF8C98D54432FE59D4C0F68CDF487B0BB87D5C85B28666CB3B8BB32F46578CED7C2F06324AA825E583E18318D9B084D89CE71F36F378BE8725C35846E8B574F9BEC3385EB51F3FBB1ADA51D163DC60A1948CDCDA2BAF97496A9849EAE8C9B87BDC231EAD1CDE51BCD89BB09E82B0550C5EC165124E472BD1C36B2EBA487D059CCD99790D982BE67741877EC48EA36D739EE864131D5161D8CE4FE35D0C6D8A6D8812C4FCEF64B12D1D59D56A98CEF7018EAB5152C8BB30CED195D433CB230E9F622CE3B93BB9CD5A3459256957A346BA69F31C6F5D0F6E36AA2AC0B39B4E9A2EADDE89106F2B6084791E9F39F5BBF4BCE8E5C7341DBCF3D2C7774280275E9CEABA85C8F98F521D0A32CF260CD90CA8EB68C19F016E9158151D8B7B3487D2C3E3B1300B40E9DD174123893A1DB296BB47C87A4E4353874059072660E4D4F42A29660B9699664B4A9A20E7587D0A8153AF1B2FEC8FCB6A095845965F3DD7E2276A73B23194586E3141FD0F98FE63463E6FA18146879500759B2CCBC50BC55D56EBEB5D1318BDCC0DD5B9FFFDA00080101000105025A800A3A0044DA0CDB33146D8C330CFEA6CCC188DDEAB16CB78350E3A6F62C1D44FB1B5EBE5FC2E33C1C4E2EEF050197849E14C2E8A73311711A127249330C0281B9B33A09EE79C76B072ABE471ED6E48DB3925D2AE425DCCB16CB6575358515AB2E2EB0D80C04881C2CDFFE7D21337432AA67836C7216160B2DDF7400BB56BD71BD1EAFF3A79689672959F91C5F6D6D82A29D896E561631338FE1548337B54C0B1B005580D4D63EC97F202C51659141276CA76C6C00324DDC2E2731DAC3E14C6F77A7CD7FDA2BF215260ED5AF0AF8114400B40A0C60CB3A34653B428B6DFE60512E5C1AA6EFF5B1822FD7231B7ECB8E05EA5404CB30E285BAAB7671571B40F69EC6F00ADF689559E4A94932A7F7F22E368AC895F486C4DB67BA2E44AB058F1BE559C8BE8E251CAE49BB914554DD0718577905AF66DB4BD4DE02DE3AEEB0AA971BE82A29E3FB948116DF12F1AD2C7B9DD1EDDCD9680C5B9501E660B5557203F0AD7B3CF5DA817DCA3D8D6E6C07716CCE4DC01A94855CF890F8C3BE672F9538EE1100573438B02BCCC070AEC5985AF9FAE5C57F6C0D3754FE5B13E4D10B59BAC7ACC166272391B541DEE8731AC455A8A6DE7200BD49A5C1959C00F89E4559E45097F34D817794E271FC8FCBF0AF1EFB858DC4AB746B5569A989189BC13756D643C75AD9305D892C54898E9770B7115B88ACCB1ADDB12EC8F298685F8E2D40F6DB73B71ECBB2FC4F70DCCF6545AAB7816575B36C44CB452C6559012BDA2B28C7E45D64F2C0D640CE05961446F313C5E3F2AD6E0FD4D6A7EFB09791678EA35A5972EE1519771823D49523F96D4AAC52EAA155053898F126598041B4F422F22795B20B346A878BC9582FCD4A51BEEB9D60A05D2E66C6D2D38DE2A93874130BD8DC95E2329C7B8F069E355C94F08ADC4C89810BE278F9174ABEA79840FAF443C8B6BE38BFEC5DCDD452A506E5C94E55ADB42EFA95BDC38BF582DAF8FBB809C40A1AD2CF7D615B8FC83BEAB890FF00E6D116BD81387399E3F95C62FE2FB76E547F3E1CDDF2CFFD0FFCB89E63C6FF00D01ACDDE1E19B838F0EE6DDB5578D2BF8F95DE2F0CBF1FFFDA000801020001050284CCCCE98874131AB77026EC911CCAFB6F3374CCCCCCCC1EA1A184CC4E98C4260898598133A03A6D9B74CFA3336E21331A98BD663ACDD33A626D9886199D73018C44EF0998D1A52B0F51B8C1A96CC03463D34CE8218ABA059FB3D2132BECC6359B4717AAE998BDA7EA0102011875131A080CC896634ACFB7CBD5CEF9526C1AB3456C4FD28804CC7D330E98998C77683B6C1030580E740757398222C3A13A2AC3098D0C074026237F3C73D0FA31157468043DD76E8D0E98988B5E266667F515711A2CC4CCC41D2039860131A2D9330CDB0ACC4DDEED9364026618B364C43A1D48CCDB3A4CCEF062332880EF95263D434066667D1BB4DB3133D7AC15131680BA634DBD00260115306778B089999989D217137E62662D4041A7E868166DE8A311171AB45D468B99585C8C7A1B198341DBD3FFDA0008010300010502FC83422018D1FBE04DB04CEA7F00D0F48730E4458CD80D6662F58B5C0A23D3D46B8F499BF300D0ACC6219DA375044ABB2B8314683D38CCFD4EB040342618613A3D1D22B112ADDB426D04EA3D59D09862C30C5961CCBBBAF76B808D7925BFAD4C2730431A2AC30CC44D1A138D1DB3A67402309DC930998834222F599D3131A1136CB2A9DBD18D5DA01E8768341DB5C4C0961EB78F40D19A08B09988E1B45307A0DB374668CFB63B6743A62661EB088341A3D736C13317AC6D0DF0DD98CD9F49306834CC066E9D74240998AD1DE3BF4F591A6276D3131A6E858C6613221B446B7309FC08C615E835DD37180CF2E25AFD59C919FC74E742746998F2C261EFF97FFFDA0008010202063F0286A85AD7887C80B52B5CAEA664B031D4A5A0358B627216FFDA0008010302063F0286B6D4DEF0387D4FEA96C8CF860238C20D762B7FFFDA0008010101063F02A63256AE6335543921EC73DCBBD7615D85578BA7F0AF51C282BC979F2AEECEB2EF52DD9E132FDDF24048B57E28EDEE444F6A758E545D7B9B7C88BBE4ACF3672957A42B7CC98ED87E88EECB75A3E1789154C47B00F6B619A3FC71518F7944F158634E61769ABAAA220D76117465BA2E1D3B833AFE8A5E9AC934283F9704444387671F0434B98D485294A86234446A0AD93532202711AAAB83C428EEEDEE1B625E702782619A6F7AA9CB04E313C53612CD091C05160FDCAE89B40C73503320818DDFC9096E121BC417D5DA9CA06E3B718978C4624AF324F29DAC38AB99A63C4EEBA1C1A8EE2A63725D408885600CF9A26DB5FDDDDC901F1F61A524335496381CD720BF35AAAF83511B85BCD69AC334783E48F1340A51DC773973C1697F2C71CCAE3396110B893EE539119D91ED2BFE31F74937E4AD853F9735561A68E9BD16DCF6FD478BE82CA3E641CC3EDE150A02EFB518DDF1AABB6FFAF3895B72308F9608021930558F4E0A67EACFBD0FC1569AA327D393AA7E193861C93F26A66D547718C1D569B63E68CF8E1D8B4757C8222AD02255CCA24E5C13B90B51D11E1CD79B2E18AF34036818A910C3CCB64D9BE0568A91030AE64A10058CA88FA6DDACCCADDBDCE78053975F35A63C3E2B21C8A2712334DC7F240E593E0848D0E09C565CFF00342366286C0C07500B1E941C1D25FBD4855E553DC811EE40290F7A89DD97D9878466BE988A0885E76E50E1E58C80423E5DBB8DD945096CCAFD8CDF15FEC5181BDFB15A2512D9ED8CCF6A203BC88C6868840F5632E4B121FE498548AC9020E4CC72E2A51270382FE4519870D58BB1539D2A6885013CA8AD26C1CDFF0034EEE047C5FB669E4AEF8A955C71404604F10EA676FF00B40AC77350EE5B9BB0DBFF00CE3915087FDB1E99E6FC169806987BA274F6F723B603346B8AACE46CA8BA8AEE1822649A3D58F6213CE72F92B9BFC944100BD632382156FC71E0BCBCDB52156F1C7BB10F92D23F944F2E68CA40BE6255756E59385F2B73553EF45A4D04CF8ADCDD9501D21096D6121D4ACDD9884444B37EDC500F1B09BB1A76A05F5755D817E0B41310B5B32328175AAAE8701D2AE3F828426ED816577A6949FC40A7C5795E127F0CA2DD510421CD54909C90067C15BE9FA7032E29A59A63A623AE6A3B5E121A20648C0CCDB13446DAC7C456E038BFDB01BB8ADD26B1B584A96E0AA29922C7040D0387EE2A51DBD7B869CA3C4AD3D11A0EE4006A2AAAA33D815CE2AB121B1F657B7D9C791084F75B6F70F4A8C2D33736D1081FB7B7C23976A128CED6A1734015F11A4977461B70A9C631A266C3AF9281778EE10786946D29BDE806CD4DBC469D8109785AAEAF2438A796A30935BE17E088B5E433C554635030A22D4B9199D52C823296250318B8E2705E77A8227B98B64108C312305B604632BAA4BB5BFA2DE9193C2CD20A8C22F183D2BC51F4DBBAF2891C55B1FECE084E5394623C19BA6946FDA9BDB1F147255C11201F31D9F264F2D239A78C71F1FECADDCAC51B63525DCA791760CBB555CBAD5A47251930903F58AAE98A71DCC14A1B00C789CD36E75BBCA52ABA16B4A1E228C30BB27C7F65B908E78CF103DEA70D981DC940E397BD46D05F0B462A3BD2008234D7DCAE67959708F0436899EE6E9ADCA5005DC3A79302CBB50E2335CF8047CB89F72799B3FC9828C777D48511B0E4BF6BA86C4BAA3D65990DCEA23537E4519EE91B808B9E3827DA8E996305F48B7A95D237067E6C8011BEEADCD5083E93E25BDB113F75E81BA8B65C95F2376F8EA381D4A7B3AB6CC83ED481D34CD4A3B72768984E7984FEA8797EAC7481571DC8E9120D575E1876550BE65BB0A07CD912F83490FF005B0F1B28581E3C501081107EA0503BAE679C50F323A5C61FB293FF0066ABB8F253F2EA5B5A9338D743CD6E67F592C899137BE057DD8DD1B7C7F4F7A1E49D3C5343138C86214B5CEE7D773DCFDE16E0DAE579ABF7BADC9757A82290340369F24488430D5078B61FA2FFDA0008010103013F21C4D4862EF2608C045337860DE2017C62A3B1BA1894C38372C77711FC1D236B15806707DC4517A35BB0F05FE669C260B756E715F5996599B658E74FF08BCBCAA2AD1701B19D7E26C54486884BD91D5E1F4B8DF305D74D7E650EDD0BB33BF79C64E2E9B8BA618E808534C6B9BCCB914777BFB4CC74347D05E3B65051E5E6516A981D9E630E0311BCB337AC8CA5EAB42B1D1F702DAE02B3E0F31E0D603DF8F0C417160D9F5999006461C1EFFC620DAD08EAFA96C393C97FA8514C9B302FCCADD7A943447C2993C45668B90DDFCCB0278C3CBABE18808059B0D60BCE3CCD3FEDCF62FF00B94ED42AB67ED2653972622B4031931F30EFC4B2AB91EE71006FD3CC5AF78E58D639F31D71A587F881A2DEC22C51456EDAF01E264B060564FF00B982D8C55DB95F316520EB93E0EE2823776537E1E3112C97500B5D6E5070A6957F35085F10135A6B5A96BC620E4159D20E2FFB8A875ED50B3B94A3A0FBB3E0F780D10E6BC6A33C32C7C3547C5C683402AEF13973CA0BC3270D7DC2C28D4655C7D763B2215B0A3DC3DA5D6AF83F9E63A1A2DD7F1B9A16F82A3EFD4BC58E063F5301D8F9C76BCA94AB0F9E6988E23427279F98911A1A9C0D2B98EC8D09BE8FC5C7ED3F037E82665794703C462545CEB17EA6455360AA566CFC108403A04F2F3FDC36570CED9603F6C03A0EBAE7A71CE58CA8240D2D7EDB2FB8C735AF010E1C7865C3A151EEB2F24C2E8B3C0ECF6E61CD76BD6BE631CC1B158472E788793AB0C5197F508662EF7C3DFAB86F2FD3FA959A0764B0A14E4BE7F820AB28E854C8359ED7A3E10CC307386CD554CA36F37BBA6A652861C9A79862142C5D984E7CEE2C5283D3C97EEC75282B3F3FC445828345E6BFF6006D19136C287F313789C2C3141D3185E2DF16F0F71B60C2F22A07B66080584D362BF133E428E6A0DA520BC27475CC25A82BB63AC1BFDC41214A2AEEBA7BCA18E1E4DB57678966E3C873F7D450D28961C76875F764380C72C5100B6CEBE6383641BC9BBAC33F71EFE5EDC7CCDA49D06F27D90B800D94F6E9EA1D1280EEEDAF69896BDB5EE47E753062A99CBBFE2C360DF980F52851742BE7DBE262034EE7E7C409831932BD12E39A0DE05BDBCD4BF510CAB65A7395EA356BB8B21A3076EA17CC03B995E0355D4D0CE8B6F873D2592586A21B32980A3319E9F35996613AB65797BC553A96F9D1AEA2FB5280B3C9317AB43F9B996B8C87143BD1DC1E095018CBE6963C0B32F446F33B05B27F4B0A38951791F3D2B5515433ACB16F06154E2E67E5D0FF00E4C6FF00E04B09999D3E3C40C005A572FB4BD9CE7283DAECCCCE78C64BE46997214992E9A29EBA875A49B52D6E8DE394773C580ED4DA712BB02B395E5A33F101AA14C7F71A6C66F5DC3C87833621F334334E15B899945162FCEA3F2912BDE7662E5E1B8ACECEB95C0F4E877AFD4796A51757F6488B650876BA1FB2532DAB15A6F2E6E71D4C93832CAB56D2AD963BEEF52E8BB38A643AF33E3CA30F996C8776B7010ECCE0797EA51E2E4B71AA7BAE26495085E4307B9CCBE7581936F87EA5E471B0E4D89ACCAB10F74AA792E2BB3418AE3A9EC88B8A6B52CB1EDD8FB422BB29306B297ECD2D558F6D30BD4F81F8AE6A0D86DB8508DCA76637E440C201533FF4B83517C1CD6662669C5B64C555B6BF0D4C9E1AD8BF20FF0062B4FF00E2654E51D75EFD4BA4052098556BF312A185326202280A5131F3329838B793A023340582856D7B9630CF21F96A5742A97ED52DFA3035583FF098E9B6470F27F9288D413BED00556BEBDAA53FD3C9D9E20B46FB8FDC9E065A641561C4CCDE4D2CB435CE055C125BC681C5FCC59AC17849F53212F200F865D6F58C0BE1BCD8C4B8073A785F6CEE59CABA5ADCBBDE7A8594B4098BBC918512A2E55CB5318CB67CF60F6F7964EA2850A63DDAE23368C5E72FC42C3687F08CA50CB7B2BFC98978392EC63BBB7535C1F30E909916DFAD7C47603A80CBA97C3C9AB55FAA23DE8D4E2E7A8D8CD88B7FD4AD1D985B58B7176BD5F07411A1DBD3171A70EF7EE35EF9F3E897EB6CC3E562A5458A5CBB69CF89CB5575AAE58C3F72A2D52A8C4B6573A2648A9DEE9CEBDFE66C2187235AF68038A96D06699DD1C6E5F06D98DCCBDE07EEE355BA30BFABB8D0B5DCF1C9977CB1BE442C71AD1895403505D6B1D4A6CC87F3DE13422BB7171CAA83E2BDE7901BDE527AD1476DFC4E34A7404BDCDB83637D43AC7458BFC11343B9CBF2BB81ACB30D3BC15FF2166AACCF51C5C5E7B71C213C705C6331361781A7D3E09971DC0E064FA96411E0C3DA8DF9864472CE96F1F32E2EB634FD53A96918DB39195ADE231CCB32676C98FC4D0C1A56F3E25BB1BE5B3E896ECACDD9C7C4E4B542B67BC0485D85ABFD416EAEB4168B1BDCD9E349B25C4B1DB79AA6EB1B8B5458340AAA039E20C38A2CCA1FF267AEEB570970012CCB5D183E59B66A2595D15DF32DD2AAE393AC4B505E6D9CCBC8D22D32EA8A36FCF70206C11ECA2B1E4DFDCAA6F10183A735C928444E1EDC5E4133AE6E857DC5C94BC17FED114380EB554C6C776952CA554C1D9F8A2102F02C209FDC68205426CF6DCA54D56C7CACC847411F886B4C17B0C644B0CB02AEFF0039FA84A6BC0B703FA851D75A07C39850053577CE7A885E643A3B57E9500026F9575BC61ADCB5DA5068DD86D9500945BEC727F53A206C677F87138FFF0084D32BA7B69DF52893B87821755FA4FFDA0008010203013F2133E83696207AA10407CCC7A630B88BAB8210253AD4778FA17978C65E21DE2B824BF4B201E826BE966C47E5067530422E500511E08C302AA5E6AA5F9852557A38F7974CBC7BC3E930675E8899612F15E85AC185751B0B9A40C6307C210F11447CC134CD30B6080DDCE4100E4EA570B40AF4D430EC946B314D9E825CB5E09F21356CDEE65BCCAB96B8B64C3DA1AB7530F8FEE3D40657F497F442BD1DCB13978F465A60E669977EC95CCBFDA6605C39B7CCC899A0FE7BFA2AF88714A89772A8A315A3857A5CA7728C62505840A72FA3866738421598CA8FA36A6B1CCE0875C22F89471A9709964BB6D963C43CCE68A8B832C8475BF451103DFA68956CC52B0D3ED97AF1295313351C46DA99EA2513A4CF3E9F5073E949665EE7BD4411EDA857C654B8E1EFD0DA5A1AC719989E7D26916578844030B7A2565B0324D2539DC035EB097AB859CCC238CC732CAA8BB444A313C42DD713809BC85CA8971EA592AE0FA301389532951CE5DCA97186DF45083C11B4466F9883AF411B5B99A48AB1FC1E96AC2BA22BA9D5EA1685203A97176428C9B8CBDE589B98DA69197CCE29E3736B9F5AD038C619A462B7A82174C1B39971998BA42ABCFA15E81AE652E1BC4AE91854273313FFDA0008010303013F21952A5CBF4DC25CB97E9F9465D8942528CC22E94984653D054B8C271E8A47D00FA566B537399992FE115B2D05E8B0D35647CCC47336952A54F117DCE025D2A58CAC38B68AF1E8B0CA2B47A563E9656605C48C122D620310BCEE5189A94FA3589CCD6A642C4446A3DD99671C1D1797FBF4774437328BC4689758823326370CA0F4947704D3CC135A61181BEE0B704F020B1E8EE5C55EF3409694D710401BF557F5156E3E9AF8DC377177C47114EE5CBDBCCBF040C9C7A59615F55917A17308023EB5D8F077E892B30A1440A25CE29635E8465388F1E976312AE54A461600E2641E595FFC6EA564C9CCEF30CC894AFD383D372EBD2C609488BDE58F4DBD0A4C999608D1327C45D45E9CB168923E99374C6ABA943AC47D226D2FD2FD28310C1BC432ABD156A5A5C0770DF30EF1C8F73122C7D1832FD19949097A4BBF41027A1BAC409715C3C4F40BE8CAFF00E2855E225D8BB9519845A5312A9DCBF175294CBCBF4BF40F4AFF00E17C7996D6750CE48C6F03057A8CB950C4BF93FF0087FF0083D18FAFFFDA000C03010002110311000010ED8323974C236F5DAA4C00C628F0B83CECFBEF4A49AE3585E22F60D7FCEF81C64BF292DC8EC25AA4647BEE5FD7A05D6C8BE2D175F3FB485708861C6840E021A1FBC85869C9F6BF4F5B9472A67A9444DDE47CF8D91064A8AB2919ADB42D61025312E4FB5868AEC47B15BCBF942779099FCB44512FFFDA0008010103013F105C0614452720A56739952A2EEB42B6865D7BC6AE8725D5ACE8AFC4158D592CE4DD35FA8565152E55D79956D6CB739D466C89AAA65BF9AFC40B95169C1BF3DCBA1AF123B577C7DCB1A15085AA28DD9D3921452C7B00D4D0B5AD998D2E11C5109421BDDC2201662C2F5B3E1B94AAB0AAACD0CD9E65184D31579ABBA33888628366182070919575107049D0534BE9A83E253391A09A9DBD6D76B4B21C2AE4D4F3A5217B48A7E32EDE2674359D9CF3516C6C4C6005EA68312BF016D3A756546DC39AD499554AB157A387170F2AB29B7C4B623554A55DE2E226AB5A057656A329150B0C41790B3F50A0B05A226A511B1D1CC61A9970BCAD1696D560C73109C41CF32DA2D792FF00C4AA845E90E70CDC596DC8010B6ED5945F0C6B183AA35AD8B71C4A5C64A954200DBF6A98762D986A2B291F02EE0144D636C2C382756F982FA882C421706554389878B6D94DD5E4BBBDA5BD2546AB18B117DAC2883AC0501DD41006D90FC09324086CB6F94211E52125AACB0ADDDD4040035B05AD46CE516AE4129CD70798F1EC7510E5F6E0987EB30A9C80C508F4672C1441EB6E90615BDD217DB873A355DC60B60C176AD12B44899DDDC31BB582AEEDE606265AF161B9CF3ED2B025D2C0CA08E0CE0AAFA98BEDB5CBF46E2AC35129396068198696CAB0B84DDEF2DCA4B0330140D020C1449AD1CB9235710A1A9917780A2ADD93251EB0AB45E0B29CF739080223B75A69EF1F1E968677C1DBB26DBC84AD891808CC94A25903A16CACA97482B7B94D24428E95BA5A68B416E889CD5A2E721BBF882905B500E12D6B0F348819B83489A37D6E769612E1A6762175C1093C168B90A1B50410B3816966F2DBA659667230B0CE6D0E7114FB1572AE14AA6758E0B989A5A0598006BBD124D94B6758674E99474AF9901E3688316E3154050DE1FE704AD56C820A293D8F48BF3B0036ADC18718BC4B122D323A0E42337C71116761C860E08E055F12DE173A1CDA51E6FA95215C8E547B2631865AB685CB4FE4697055AAC100BEBCEF10CAB68284284536D7132E8F1373000C99E5DE609CD08469A50D1496EB896EF85A88BB3B79CC4B400362ECA015CC3C6B2AA0F3CD6F084F41605697603DF31102CDC11559EC5E4C46692B2A802F89BAC60D663CBF90B4CCA702F98AE2CB36CAB4AABE88690305730683960C3F01358816B80E4B9698B8D6D706F3CAB52E18A04D239C3D1B4F88A171095A2C4C207C2E09790179190ED205737702EC46835E8ACAAF5A837411320ABBC15F31EB286089128C00C5EEAA1A5CAAD8B56D0F70F1B8315C8DEB36FCEA35C08DA9C5A8C1AE474D45B15EEA28E499D9C4455690CAB0B06946DABF7813BF373965ADAAD9B257F7C05C560DF26039653D1AF152CE0BA3BD5C45677304B84755566120CC5452C2D70B2BEC6243014DD2F6870DD467EB2BB4E61AAB85F6EA58A7840BAAD018E101B6DD4B9D8B996895CC10D1ECC42846B2170D771EE8A13CB029F193CD4B336356EAE2CC2AF50D87D8BE1340B9735796981AA2272274E4581B567246FA5ED82F2382530D8DF4AD2DC82E519CCDEC5A304C853A61E2A5E2C419D02ACF12E33482952C358354443F0ADB2386D06B365711C73C08AAA1177B1D5F9C564959B7761756C416D5E8B9E672C8F996437C836E1314AEEB5ED37705AAAEB0E3A019E8B844372A3C617A26CF301642AA8F61C066AA0CCBC2DEDC63355AAEA0717B75AE6A720E96E02DCC802E15A130F0458D88C0E8E506571960A56084B317E12867B0B182911F7DC706129820B40A44AD5C05E251605D15301CC2FC05FC036F60157F89E67561A8B354B170B04ED0689F4000707C65633AB241942CD4E4E25FF0B7D4902A89D915A02280442A66BA0EBB21800666B0D50BC18E57EE6101A91979E5D5E58FCFDFA228C377E0FB952B4D1B526B5BBE52A038280016D29301E6F130DBD665375A0568876948AE3904782C4A1826E8703C2AB1B2E3104053BB7AA40E8D56F109AC6C403DA232F1DD9E63E5A80C8B04371BDD4712926A716C1F0D55E6552082DEEEC0DD7547897081A06A182C01DAE3655380AD1E0FD12A5C0C4072C1E3DA63BD296865161DE0C2F3629880B65BD75357A0A37D46E82CE25E14090A94110B5C9B5649461398AD4015C1BC9C998C72C06B86ADA07503E66E128DAACDADF24A18A0D0E7558F66799092EF8E25B6B7A176334797718261C6271861682EEE115900051B285A1DF313E8547A59B60819C7B4456A5CA3046C56F28B3191F921DD411CC68D3A23F72B2BB8A05DA8335E604A6529EEE31DFC45AC4A45A12D160B1880D00D141A6F2B7C4A4CB56E33D1F1B8A4E058168D501C5B84370E4A129146D6D6183E9BB6CE6DE17A94221695BABC82B7E614E70913C2BB6B0CAC4864626404292B349A946A0BBE1C64C9F198E7032880AD1B38C0C568A1A40AA2D60BAEC4CC434A18BC997B0C1F08521DE6A1B70E7170AA20D545E4761FC90818D82DE63EE4D9282C06CF66519458F6EF1D2C6157956B3A16AB899434AD9607BDDE6A6CDED82679393EE0B4917443D81A8D10C14CFF00218F32DA0A9568815664F318EB19BB42FA0661045E30EB917914DB13135373E15406107FD10228D736495AD3E3A854988474952CBCC468096850DBA429A4394C098453AD8A05B38E6B9DC79B4497C1556BDC6681CEF20CB981F1095425C2EFB04023268AC0BD9B69655CDC4800AC2239A15502FB70CD74A34ADC2A5248C220A002BE6A1921D6748328A944C8C0B65DB017706B07EE5B2FB78ADF37637041BAE51C66CD7709F15940326FD0C01293C349986F6FF519D44296D95E72BCC5B945B34AD5721D4237A1B51B2E8201796A0C1B66771515B5ADBBE6642D451548836904D831ED8A6F2E31410834541A08301510E36282CA1B82722D2B05B2736ECF0C75E5105802588E06CD6825A0845A90B35CF987434704E018CF29C4A3615B0C14D6391D4DAD34B51CDCA39FA18865AA1A680D00ECD47F915412C4BA5E31E620A2C37036D8D179C1F880C45C0D39B2EDB8FD24552818AB60EA2296A154351BE54F12B081A9A29B674D91A0DF82D3905B85115BB352E81E2692C7ADD74E497357CABC2895A6BF50098155C000ED79E1EF16B0829AE4AB074D41A345B6AA8EC465BA3466515757647C8B1B0592C1582B39C97822D903295E424BAE30FAD461F5199B2A0B9076495F028C42D8A02B02B9EE081838ABBB58EA99521DB2D915455B70280A4B4CCECACA9EEA25665152A37A10D73EA0E45D37001E1C0564E28144C1E5B2DF608AF82162C502A16E5AC2656B8B40C00B1D6B89765408690403EB513579B52C705C0CF74A1FF0B7114069810604F9E96DC6792FCC2E3A2E0ED4899CF08C0E755C9600F7419D47708A89436A515BE0CE5751816A16E7818C1AFBCA7658B616D634AB2C2AD6ED2D59047740D59DC1213D14A2322F64087A578242BE4687272EE3218AE1C987B4D5B1C16849A2DB0B17F10B41BA76E39464E1A08E0F2E065684E3D9361B51512157B14AF28043A89A4C1418CA6D2EF6F3155165A770D8614B62DEC68E20952B0156302B66BA2E622582EFA11BBAE0B6128619D59734D3062A8E28DAC42AC6F2A58C080B8434E632CF21F30C16132B323160D18FA01E59C32231AF26B3291894B296BF2189887D98EDA0E80EB36EA1C11335E469A167C1E129A86A9E15AC9775AE9558A9713451A1095A6AED69A868EAAA98BABDFA5E3D93FFDA0008010203013F100587883766A08B9C03719332C110EA1CE096AD74960C6E53F9FE5B0865618432ADFE6333FD98800D9CCA239A99D4D8E601C0C6BBA2A285A1F712F045F2A461B8D958725CD416B770FB21AD60AAB8035A8B93326FF11A2B2A015C6F5FC61623473E6540E6554B39F69483DE033FB46AA351DC32471885B95E22FA24A9750A2A343DA285F4C228E883C9D3C44BAF026C5CF67FB0B8F34C42504A15EE6144C74CF89071E373F865351504CACB1CD731910CB0AAEEDC42376E2537D532F6EAA31C45802E982359B61A439C7FBF304B2BE399BC5196DDFF00DFEA712400A352914F16FB4DCE32FE20B1FC43553EF3A0566341C03272791FEA046C377FA88626638942D7F842BB482A02620D9C7F7157B1142EF5121F7F51D1BE7502CB3A63C4303FC7897055CBEFA470ED3F72868FF1CC7800AADCB4E2365713307DC224BC63E7B995B6AFE7B442B04145C383EA02B157FCB995B6E3F8C2CA536FDC13DA386F1001E120EC18EA2D92D7D448179EA59E21AAD5C3A4CEA0D2FF00F511795B9880C405A8993AFA96D6E4FC1180B2EFFD6112795F3188E208FDA210B433DBED07021D4EF06FDBA941529B3F51A016EB881541C4C9BFB888EFDA1A98955CC01FDC377F9EF518B31A75202598215FF518031DE33EE3CC104DAEA3702B5CC17253043C13253E3531869C42AB6633912F1425BAF796153FA8D0B972F7881BAAD4A1AC5D4B9BB7F37029747F700DD6BBDF898CCD3635E7171AAF41FDC733871A9B0DCBD85822D72E93BEF884F84BC29A3894B32EAC09B79C160BBF788056A38F799ADE965B7E271A9861977F98397C5FECC4101CAA12E589863C1C7CBCC5A816C64B4CC16F2D7E654DC3CDDCA82F716C7DE0B4D067DE5B26DFDC105620B7989789DC8EFA8AE661654A228C1D21BBF3FF00C825370A3F031DC2A1625DD470B6243B66118257287675100F694B062B7DC70B6A3CB5811C5C3307249DA521A0FE5C26D0401AFD86E501D185CA609805DDCAAEF70ABB811A974BB99F33F30716E5996E0343330B70AE61AC2B426445D750F2984F1AE02DEE677F9811CDC711E55881337B82B533A7B432C590812E8E7841CC6CB43F4771AC4A8B756660660F673160D239665B0F98AF4873C7FD973A98125DF7972B1551A569996BC102866456332A5C4D1A6021014ACA8E5AD411372FC8BE51D219F666ABF88BB97B42FE2250A97D12DC0B5C57117750F9CC0A217AA61F65C56A0DCC1E668989503384F8B181C5DFD43571968298678CC8AF72E93FFFDA0008010303013F10D37313B889D2A309631C230D7FDF434E26CAC54D3C5425546769DCA5FBC4A318D4C90CEA6A2638943690B76C56C2FD446958EE494D15B8567D259DB702C799419D4BD446D6580E08A31106DEA0B6E7EF72EDEFF48525FE772C92C3F9997B3FE4186172C61A250BF20F1701CA2BC90E84CF3D106DAEA19519999BFCC0E45BF50EDA1F67896B08AF0FE75136C7B7FB2CE08256B88650404A727B4C80EB1F6420394CFCC4772D4B52CBE6212E55EA2BC26B7D457AA251A4D02295593A822DC3029ED109D1F5EDF10BB57CF8DE655BA0FA347F9081FC7BCA0DB0D45F97F12DFF00A8C479710A792E7351448CB1E6FC460B1E2323A5E7E231520A5BCF9F3FE262C34BCCB12711533A8D16401C32C419FE5C5BB1701437779E2F1345CA7F1B86614FE84419771ABB2361BCB7A8240FCCAC4A8440458A1FCFFB2B8DC4A0A7266311D0CB1B32D4E41AF6CC7B8EA3566623CEFA9835A874E62C295DCC59829C04405BC1CC7CDFF7DA1B35B86EE9327D12C8B55A46B455B6614CC00CA16CD8ED84E9E045DA1194A854C98CBBA88CCAF31BA0C1E601A97D096B055C757FB83F50037AF799971A18824BAB80A159F108C7CC06B896D214CB25A9F5393CBAEBE4E259EA12917A8C737150749BF98F9B6C68510F4DC421EEC4A2AE52AAE2344115F9846DBE61EFC4A0352BE51B311B38831986F88BE5082A0ECF888351A651A9919AF88D199609164845E1B825C97B4DC07F44A56F72CCCC46515B0869E6521A0B704C56677DFB47DC11665EA5A516D98991C1A824B69173344D44A03823306B52E4DAFE25306915404BCA389860AFE28F211B88658C12DBE8873B54F898B307300BC09BF6A7940C472838972F28A99882B8CC2CC064C02DDE606AAB943412C7716A2E686183B971866E688B26B8CCC02E65B88B820E676964B4C4E06282B5183388AF8428A6141A333958408D5A05F6987C3F986BD9B8B3501C33480455B732D970351B402AA50313113808E599E25D982EC07D44E72F6B043A0B6C3CD4FBFEE38A78710816BF3042AE346865A910B0A5C7A0B9F4241C4A6E14B0BB618DC1317E118A4EED87ED85ADB507B9EECABAC39D5FEE0062E248417BBE7E26565DEF73158F42EE56E1398FA0A96B9E53144CDCFFD900'); +INSERT INTO Categories VALUES(null,'Produce','Dried fruit and bean curd',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000460000FFEE002641646F62650064C0000000010300150403060A0D00000BB50000143600001FDB0000302FFFDB008400040303030303040303040604030406070504040507080606070606080A0809090909080A0A0C0C0C0C0C0A0C0C0D0D0C0C111111111114141414141414141414010405050807080F0A0A0F140E0E0E1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC2001108006E00AF03011100021101031101FFC400D90000020301010101000000000000000000050603040702010008010003010101010000000000000000000002030405010006100001040202010402030003000000000001000203041105101221311314062032412215233325110002000305050309080105010000000001020011032131411204516171221381A1321091C1D14252231405F0B16282334353247220F1A2C234541200010305000301000000000000000000210010112030405001705161221301000300020202020300030101000000010011213141516110718191A1B1C1F0D1E1F120FFDA000C03010002110311000001D97E1AE94794E472D77418990DD342E72C100DC9BE8E0BCF4728F1DCCEEBDAA93FA41D1FBC1F783DE47D1447D17AA44DEFDCAB8B47462167B542AD07446711749401A23AC5DD784054A4323D930C5FB7B866E5F5CF51CB758A97CA0F8E7A7A43DF7384907F96D0B7420447566BA7A6D219EE2999597723EDA732DBC77891A9CFE6CFF3BD77B88FDCAE8B952268F53EDB572B173747959D65B01E05FD908B53F3AD7A9A4236E8559FD7A79BEF65E911E5E777F09AF9AF618AB3B499683B8A2627C776B4898AA939EF3BE8B8761A21316A3699870518AEDEC3FA3298E0F613BFAB9E6C649F44CD51CA0A956979A3075A393ABA38978C060F4F009156A4329F6CC7D2EC386CB9C5D24BF17FA0D7D225C6B12BF0BFA0D3987A6979AAFAFF003E5B3CEBD02CF8D5E812B3CA2AAE4C1A64D2335DE84A4207D48DE35AB267B6AE2C1DB8CFD15DAFE246258EA2C2308481B07B2F9E52B1B4DCBABDEB442EBE96B178C2B5E5F877FD251F4C3CD8146ED63179078D6A8B56ED717508C6B0C4AA51D17A26B66FE86C3C6C7EC7B2C88D03CBCD6CF2FB3C38FB1111D888A84618DB5A907A88B60C2BAA0BB3BD0D884C84D6D10EE02AE61CD944391BBE4708CBCCE34A3EDB254E9B34BD3D2B171F2461E566132A298099F0C9B5E16B565B725FA0D7BBC35FAE638816D81A0E95B2826C4D5E69ABA2A3A1F363D8B8FB203AF3DE71FA7E1E05A49DA1F0E75F2F06FAD7ACE4D0B7DB70FF00A8BF79F9D50E3A2852E2D222E8CF4FAF90841D56E41ACD16E8C8AC15F43E71B724595101C432CCDDB0B1F88FE61B7666CA75D5661BEED870AB3ABCF0A57ADD9A8C72E699543D702831E9B76BA959135CD52B531560CE0D56733A739B33D24FA42D634EBEE91F3DF408FADA8C095AE557B148A3639E8166DA9556BA453324D9A6433A88509FA3500AAA2C9567DA19C25F0134090560F81EE38E0F6337FF0096FA044D9D5D03366B7C42D51A862792662B85A601A11F4B7DDB3F1CE2B323F752AFB9BA79F31D46A1DD2CC3C1CCF9DE497D71BC77BFFFDA00080101000105028E5F123C347BCC2AD4CE91D147D43F1D633F1E4BF292AC6C5F69E23BD4F5A7FF003ABD687D88F531B1B5BD50456139A1C3D1E5C8C5D9DD1EBAB5491091925397ADBB73D686A48D9192CF1C2193D37B08658B5AFA145FBBFBD4DF1F5FF5C6B7DC8EB98A2D6D610D3003429E47B5BDC04646A8E56B97AAC2F19EC42EDE2C4E02DD3D9F0FEBCEEDAA7D96B05BBAC922135FAF429D8D97D6767F6BB35379AED08B27675E596E6CE95B0660E078964C34C13B228AB960EEC8CF6F25EBDCC13618D8BDC91C1D24F8FB35A865ABF5BA8F769E4736166D2FC7D28FD87FCFB2EDEE83630EC35F6F4CBEAF64DFD9DCAF1D9535CB1AE9F5FB9D6D884ECE3EF0B9B3C65E18A7BCD81453194F73D8BC21230363A77214C0F60B4E2B70F7DAB3F4F2F3A8BEF99B1EE5C4073551AB48B3E46D75D3EBCFC3B553EE9AA999B1FB47BB2C342CB26F6EDBE2D55BB4D8196CA9666BAC111C8AC7B359EDB0CB29F141D86C6BA1335ED9DDE3693869FA9C3EDE9F65334195B2D8B46835E9D459FE26AAE6D2D47BB8E3AD46B7D7E1A3529D08DB242D0D504F3E2C53719A56ECEB4FF159237DBBCD4618DD1DABDF11E6F06873592074E3ADFBED8A3963371F0CD257ABB19CCAA3AEDEB52AD3805BDAB2DCB45B1D5A96A76CB7F706D5BA957EC5EC867D95AA0D93C28F763AECEFCF784562BD5AE3712C85F676C6C4AED86C5804522EB71CC7C36DCB670CFF001E6A67D8B105A0C8FDC8D19A3636EDF2E06FBA39777AB7DAAD6057CE92FC42C5DD568F722F7D4F5D5D3B4F6A9875AB555477A5B4FA7AFB0C6D8D8CB4C4B7E79A0A36ECEBE77136D323318B4FCB27CC361D68F575E99A9DB0C344D6A46CB46729D110747F609FE1ECA0A57DBF376303A0D968AE42E8FEA319D2DBD15E97714F5F051A326A75ACB3BAA9289A3F90EA9AB2D0694976212C914A6CB18AC7E97EF76BADD66C0B1F5B62F750D2D77B9DADADD63D50926F8342829223232CBEEEAADEC6E66E589FE6BE1AAC32798DD52E59BEDB7057953757296D5A55EBBB7352D74D23FAC16A88FF0049F2C8D5B5B021AFA3FF009362DEAE64B5139FD2C452B560482484930CA1AB6B07BC3614FA2AF11796C124539824268C5D2A50BD504B3D231BD93C4F5DE46B865E1B3CA8599DC37D31F8A049AFB152DB248FB1736E5673C32E3A374371AE609C38B981ED903832E50711341F1CB40732DC6C8E50F0C8EC38976AB672EAE79AB3ED2AFAD21B69A6B3AC6EEC3259A3313443F2EFBB5B4E58FE0CFAE757B2D78924F786E6A97B75EEB8F91B69D1BA2B1943DB919255055FA27A6B7B99361A77C9144D701278746E0F8AB6D2CD58DB7E40BE69646EB2E7BF67EEB59A575C50FB9D9F82661009E0ED9B9E9AFF008BF1F642A1AF58DE649099933BA97DAC596D4F9ADFFAF6E2AFC9B2199AD8EB2FEEDF59339FE3FFDA0008010200010502EC8B914DE0A082117559EC4F94E765401AD43FB260C27AE88B02030E748B0B1C16AC26B72BD0A298329D9E959AAC711C60B7C2253DC57745E9AF59F180BC6782A1F59BF7EDC340C9C4823FE89FE98519C2EDC48FCA31B8011A0EEAB2B3F8D71E66FD931ABDAC8EAE6A6BC3D4C3AB5AE43CAF4594D6E539EBB21F863988604DFB0512CA7128B410E390EAEE0BDBF19E32B3F90CA3C4614DFB21E07641FF00D9FD546ECB8CB94E721C639C158E4229ADCA1E11192D08B917129AC4E3920756C4404EAEBD8288C703F0C140AC711941C83822BAA6B10621EAD4F66136521099CBDD6B974057B6027C813563CAFE56537C80D5D5062C00BBAEC9ED010CAEA0A319087752C6426159CAEA9BE11779CE0858E18CF1DC20E6A748BB2EC8B904DF29817A2EFC48035072F7117288853FA83E0A8C65D2FA21E11FC02694C7271595D94A7FB75478EAB1C10A01E7F60E18E0145B945B8E414D72073C04426F05616163C2FD4762BBF6446115194E5D51E3298F4E4D7A28228B5755D106A663326383F83F2999C9C23CB73851E70D4E4381C7FFDA0008010300010502EA805D5351282F541177E07F3C719E01C20F4004E08372B051F1C143827901616111F906A6A283135AA6E3D792390107045DCE16175E0610184E3843CA6B54E72B1C8299E5752BA2778584188858E30BB828A6A0A54C47D0B567AA272780134F0E685D56381E5630BCAE8B09BC487CB07330F0B1C610E015E165642CA032BAF01A98DE3AA68C2CA24A733C14110BB2EC16786F0701774D917B8BC204269E07002C614928E73C617A2ECBBAF71678216786A1E4755D513845E57B794635ED15D13E3C2CF00A3C84D09DEAB09A82CA3D96387784DCB903845A1E25185ED647B784461139E30B29853C2C201302889E3BE530782D5E89AE4E0A13853C7D842D52C5E5D11C98F0382B0BCF1D53421E0B98B098E5D729D1AE8814135E878714F6A29D127B7AF195E786958594D2139880EAA3722F18EA0A73179083D13940F8ED9456485237B0FC189A9D8413738728D3D479C9C27611C2194D5FCA763877AF3FFFDA0008010202063F02B12822D350D0FC68EE34771429E28F6D385C695F9BF344A38FF291D616CB862834A18C36C6D4E0142F7FFFDA0008010302063F02F11462047BB21A28A0A15C5B34046EFF00FFDA0008010101063F02E7605BF0FD8C6637466533D906964F14C19D97FDE2157DD97745B04D2A0D94DECA43082CDB2515FE9B4E83FCD4DA98166596D304EA2A7C9AEA8AE9AB96505494490B700CA2FC088F94D356A75B57AAB57A6C2A045364C91644AF663999B6980F9B331B0EECB3B3FD323747E19790922FC63C7DD121196E8E5AD295CB2B22A8D548D99A93E00884AA1A6ACA083C447383D8271D4A39466DD23191AD54E6F546BD99D2AEA9512C5F66D3398DB7469B438D6A86A7E5A625FF006820F8CDD1F3556C6BA8A1C5B085466CE5B998EF312160187901A626C480277400C6DF2102F1879787965DD1A97A6FCC564F4CFDAC8D1BB7F1812FF1E5F444CF861FA59672E5617C33692AAD4FAAEA4AD3A405ACB9664B5BBA1357A8A2D369E757BAA235F6C6875DA27CCC8CE994D8C261495E2234DF2D4CD4A94A66A20F73C33B63E5F543A7553294A6764A66351419C4A8B045E244CF94C86695F1299697B22D3DF1CE73637404B8B7846D8963E495EDBA26A2E31344CCB298DA63A8B478AB586395655A796D1269469AA3316323250D9465CC64239D594633E61E7B63902FF90827A2B52931E6616540371F5C15D494643611505BDF2EE86D57D2EA753E9EF6B2901F2F10D3F3C2D6754A3A9D3ACCD5A524EA21E5CA571E2216A99D2D5D2FD1D4D3F12F1DA37454D4EA17E1D7975D93C04ED13B8F18CDA733AA97ABCC19F6C025DA9D13EFDDD860649B5337B1B26232CA5B200AB3526CBACB61F3F2E53C8771C6D82B9C32EFC23E24F7B5CB044A4BE8809492974BDA2C4B37DC202B6596004720B63254493D0168E3BE16770770BC270D9466DA272861325DECCB7F912AEB6A3531518A2541E05612F179E0FD3F5A01A0D48BD060A02B28E1789457FABE9474D74E3944F94546C378DD0BF321E8D6C572CC4F7110DF4ED2697A94F177330F8DC309475A8AE5439735336CB3604C65E95291C2648EC83418ACA892997DA0224C67C65E88A74F28CE9F127B10D9380CC037E28CCD651A989BF3464FD922D384A16D204E5D9DB16D68560679AD58DF159E7CF8765914CFEE5526AB7E6364349981185841877552D96EDE2260718D60348A8CBD459FBC9711E784FA68A67534299F82E4E53409C7A982ED0D311F25A313CF503563EF13B061C20FD47EAEF2C296994DA5F61F5451AD4EC550009DF158B4992A093095D00483D31613B84754593B2C338A5FFCA67366DB0AE953FB32E4A82E3BA3D93DA625A86CEE2E02E077453A4D234581CAC01168C2C80E58229BA6799A39F4B9D3F28F4C49465941B4FA21D9AEB5B8C53D3D05E6A28A2D1CB64A01C92AC7EF800708CD52D95B92F87D22100541D34DC4EFEC8CBA441584CB30B554D4D9BA169D139AA69DBAAF84EA9F5468CA02C74B9855A62DB67E296F808F488962A7D11F0AAA027F92622D65DBE3047DF196A4BF2E5EC84A01BF15931C229D46A8EC806607366ED6580BA2FEC557F0A53065286EAB251C9FA9572E744E2C2706A31A3AED3513E2A58711611E68B69FC65B42B195DB0936F646644E6C0197AE26728DAB6C142C26DCB92F2670A93E7B08302AD2AF3E5E6437FAA056AE566B748050B385C86E8740D68BDB6453A8B22F4D838D84A99DB1F31A590D60917E989671D900E9C1A7AE4F64E33BC401AAA4D4AAE048C46C319F534475FF009A9F23F6EDED8FFD37DD99929F7185F96D42550D6E4F67CF1F174E02FBCA61A9AD32D4E57ECE301B5350E5F744E47CF074DA67CBA77B6CE566DCF2FBA3A6EC4A8B140B840AFA6734EA0EF1BC40FAB04A61A8B754E985D34B672F74C72B59B2310768899AA6A21E6CAD84660B64FBA1835D3E53F87641EB3096CDAB029E941E98F6DAC105EABCD8DFB22528A7435DA6AA4D31906A00E52A2E9CE51D6E9F3E0D2061C68B255E97EA69DB3169706F43467D56A351F4DD44EDA540B3D23BC6CE11D4ABACD4EACEC4A794F9DE0E928B6A34D505B48576460DFF001BE0BD726B5B2A346F52E71DDBE25569E7AE6DBBE1A6FCBED1E30692D26B7F79DA6FD804808CB40CDCF8678C533ABC88AE573027B4885ADA70BCD725D2CB677CA0D24795373D1697BA6C94646CC3780651BB8C32D213CBF0A58E68EAB655382636ED3196B65A09B3C67D519EA9CFB59AD24C49125B23A6C2C1840E9515EB1C4899F2354A7FA4F69A6DE16FB6D8A7ACD24E95416EF060D6A94916A3F8DA9AE5EEBA1149E5A9CA626A64C2E2210EBEA33D3A6D20478A58C06A00AACA5BE3A94BE20DD0D29355972BB0DBB23AF47F4969C899817D974741CCFA46F16A917F719C51AD4F97995D977037C48A0CBB54C54ACA2C45260356E636BF6C5B7CAE8E691EFF003C5802ACAC5C011788DF128CCCC796EC624D7E138CC79A7844D6320BE1032990B76882650A478CCCF7C2D3FA8E6F961612B78309A8D33034DB981433CC9F6DB195C6474BB372CC4490661838B044C0E77C06EC498664B49003D49496CC044EA52E9EFBC47445F54CBB213509E0B9A03A199616340C384628F836C3056A592B1F8ED8006DB4C64C05D165C63A552657DE1E983648452D5A5DE0A9C62764A2DF0BE3BE04AE89885AA00ABA77195E9B5C5629D7A00746BDB4AD99BEEEC84A9D5C93F02A9E7F30F4C0CB279DB3570C7B6514B4D20681CA569CB2A86379B2F3C632B552F8CF18A9D569D1A32006D26F82AD454A466D1CDF4D39B51F6870DBC2273BE2706A53F1AE1B444B4A86ACAD2A2052D4536A2E6E0D8F08F445B798E5F343AB72D3A97F1DB074757C696766D8252D6C22A52A824E87981BED83E46A08F2A670D9C2080C65798BEFB7B615CFB374720CEF94DF2138AFD54B73DBC616776116D8609D3B66AD675545DFEF1CF0B2BA3FA99724CE6CBEF63383F3672A6071CD84A58C6541D5A33E47325244786D8E611CFDF145B4CF3D50BD00BD239EE85646FEC81CE9B699BE7064786F81DFE51E4FFFDA0008010103013F21D45DBA35FDC2BE1732B076F955C6030FEC21FE1382E8037A1CC0D86CFBA80F9B531BF8560ACA34B2986A010D28CB9D2BC4A55AAAE146380A722F92AD665A0222DAF0B6A52DDFEC955F7709A30E70D87EC2B70417763C401C7C087DBAE4808018C7DFB7FA867DF83595277D2B95C4DB7A600E7F370C48CEBEE5C8FA30ADB9CA0FFDE300160685673DD964F788280126E20F907F117F9856AF650C1D8EB066DE1FCC685D8A1B320B8A3ADF6CA2F6D1D1887DBFC2244C9F74F5FB89428A0B97B1E0E7F11DE5ABDDB6995061F48611616D145CD737F8995067D0FD4A5779FF00511C8DBD81D17EFA820BAE7CCA4A7E6C1A57F729A58336F559B00E66CE2AC3B770FB8F8DE7FCA1A87B2FFD46AA2DC344BA9589FD817231D939EA50410BDE01E77B7E60C346E78A1E4AF4DE30D99E8229D511C58A7E67865E5AA8B7B53926D99E34B5E73A70D805F4F0FC36DC3160543E0B6D003AAA1321DDC225DB4ACA8BEA87B250B5E175EA55C6BE25BB26E2C1F75C13254D0EC3FD9E7F38528E82BFD8D28E77041CF306ED8EC0BB3D8C2D1555F000FF0063AF3C5FF99FCA5A3C0A70659784AD5B4E04EEBF840785560F8A3F35AC865F307AFAA1F872AEDE63B525C1B1C7E435606F51F7B17C8BD1CF3284556AFC9D7F62BC92E5CCD0D0A9E13C9C57F9380445B5978D2ABCC64189FA22B99BCA0A3883E88BDD40A253EC5CA83DA0A52FE4D965ED3936AF5BB06D607968EB8F3EE14021CF4CAB60DD8BBFBFEC9424074255F636F3F826D05E852EF3C2A586CCDE4DABF6B2B40572DFE259E8E8E2E7EDEE110FF84B5573BD747981D00BEBE7149611B9BA2EDC305FA97A7B2E2A506BF7B1E3EC257DB57318E175AE1B16D1CDB4AFE802D0FEE0CF9ABDA3689939BA28AB395EAB894855CB53C3FA7E6621AA2A06AECFF91EA70C0F5CE4E08C8DF8F43EF92E71F7A26F8559FF00089A280A9BBF66D9F529D197C546014F02D904789E489FCCE59AA17B202DB86F813FA04A45DF723AA57F738B6009F657F34FA947CDA71B059CF7CD3F903EA6A9D0195451B0BA487507DF18DF6CF01413D3F1323C4D41E17CFA7E59916A2BC5BBFE688C77D8C8F3EE8EAB62C9B1E3E0BEBD730B9F1DD9179D75C4302831B533966F1685ECCC2F130E5B1D7AB9CF3339D1AFC1121DEA0C5E1F7E65F85EDB4DB5C5ADA8F5CEACD8F41E7D5F339735963FD91C648C32B3A2A3037B7D583DE4BB02C2F1F85C2CA29B3869A7D7E181B93003576EF21CBB6ACF7EE2EDCB9A82EDF31A27F1E855F0A511380F4C15B2AC619E27A2DC046D5F8E7A8019EF8AE13CC0E7C4EAF83C4AF6FEAE7DDC29FE30D1B1811F3D7B4270EB965A7A27EA051A16A40A2D3BB4F15DC19885D96F1C8B38C8C0BCC9FB2DF1E727289CC02B72ACE1AE25C540AF3DD0FCA62D0E44A54EC0596B05CBD03AB1FC9A7FB35E542DA5578CFF006500388D1DB9F110D4541E14E6EBA65086074BB3EBF6E600A24AAF86A800BE25585712EF9F2FB80377A5E759C4D23C42C80A6788D0CAB60AF6AD6DF86FD6F3D6EDA94792E43882B034F4FF000CAE575D3FC33F74B547B6D495FB7F128A852BAFABFF00D4B0F1826D7D7FA4BA0A628BA729C0BF7100ED796CF2D3F823005669D0B39A7B54AEB9E28F9C0E095DC0A7A5E939182D7509419B370DDC8AFDACE7F2B02D5E8AE8B06EC1E833CC556528F6FB57DCE339FB09FF008D973D24D25DC679AE62E3235C2F46F35194370E23545F88F1BC16155A74199772D529E5FC6516FF00C943366D63BB15CF244F6382728CAB9430F04EFCD610A797B4585601D78989F28F06E5F64753781796EE961E92D4799B4F79A07FE354C6AAFDEA9B5F6F118569B27D03BABBA628001ADD380535E02E313AAB929647B811ABDD0FCC776DA3657399D7DBC0E7EF9970582BB5D940314258CFF4C70287EF051787EA3591552562343928E77C90B3E9D9839763AA073097BB6EA55C69E7C0D854042E387AF7FECB0AB102EF6D30BCB4731F02CA2555F1FA965726F3227090C8B8836FE4F56CA6C9472AAEDCE7D128CA7AD78AF3170F21851530F7AF77FA9400B4F801756E65A10AE6B916D829ED07B8DFD87E55FBBE221E4DB73BCA20C27C3F42E68747272BEFF6C14178073B2CB025E782787F7284A4A9E0EACFE628D4FE9062C576C14C512F7ED14AFD5C2516CC3CA1F29AE4F11B0625E495B283CFE25F8D18E3D4011C87F48F7807E8659E2F9EE76E7664C143FA8E5E029823D5F67B968916D5A3D6D445096D11DB85D408DBA6A14E4CE2D5F31DD0745BBD711DD7CEB795BCFD40235E2E3F1FB9B72407A98DA55C7FAF7150F6781E869C81CDDF2F0ABF47A8E9F97F0D41D6E8FF004C7D7F17571222CE0DFCA5505387DC5E4D69F07F370F7D86022B774FF8EA1571E7F33813F53BE0ADC6A1E13A6024951C0615EFDA57179169C6F4DF9CD5C9C4DF9907D5CA89807333B165EAFC4A4C3D21FD67EE1B1A9A74AFF4C1A95909D9BF8799F99D95FDBE9FB7DC3A6EE91E7EA50238E26440363A753FD204E144B03DBC1F99EBDCD41E4593997EA9C7E250A3D1E204D214070717478FB4F4B33D3D61B2A369CDC4B1D50A76FDFF0072FF00723312AB4F5518268BED9EFC20D78201C29C5F98EA56D6AABB7A9DC42FCB1B88D94A0AC78E8960DD7294E7C9CF11E6A57E95FF00D978928E0DFEA6B75044FB2F1FDA25734761E251C27A54C9F447B7ECFB809ABC4BF993F84CBB51E00545BFDC6F34AE824543F643C92BBE9001B959BBDAF14E92CE41E5929D9C18FB4705727770A5723AAE13B4CDD4E794ADFE3EE731C750E553FFDA0008010203013F2109F12836E17738415B34C2A37253B1503AE246812D1D1BE208C8BA87758D9C62C22B15D772FC4E6054A1CC05912D197167C4C87529565A5513492819C78959333326CBE54344D6884EA77393E1C70528E2A16A4E4A0552254096637AA86766E291054F2A26572A512F2F2F633A945C58D3891D67D48BB09E599C470CAB98AF91F39A8F0A645F115BB2F60CB8B76698C6AE0650CF2D8211C58E093185F30859C409A544A573020C978C6A38CBB947FF00819456FD40D9595CF8A0359B4E88CEBF68CE31D308AA80540CF829DFCBC8F63B8EB2D577187E405084BA17EC96C799668CA58916C52AE53729B887C96880306E5CD9AE20AF7E619CA5AA9D8E71BF1FE3DC790542712DACE0882FE25A969695473F214CA4D33E201D4210B5CC67899B84E0033D3500851D4F26CE31F69D09C466349C3E2ADC6203363CBAEFC5AA2D881B30A760CAA7247228F833384C468F88AA501319812D02C8E422B1D4ABE0EE9C6025906E0A892DF0E083D4E54BB0F84B187607C03E257CAF022D31ACB18265C152F51AC2D0B062720CA78996A2B9D2C01CC43C41510963E0E315337BF134CB7E25994950723056152936B665CFAF91177301D3F07A8ADBE3E17D3F2718FCFF00FFDA0008010303013F217C25DF0344BA7289486A5CD4BAE673FF00E0C25CB97908B2525B2D40BE22B7E24E12A8A91F8F197B2F7E49F80E53F3B512E57C5822522451D8BA9751C7C1C4595F35997F12AF6543E015ECA0F8184E1CDB194730164B4A4972888959863DFC05A5D28E3E1514C79D28F10C1916C27C19FC4FA4A951899CB2E3B626189A712FF006917E26208611BE5042E1F0C06FC947C05A62592DD4E77C1CEFE1D22442EFC6611C4AA6D7045E67BC204892912E3F814C0D452FCA8622E278F86915A9AC19718A889516845EA2986CA2188B7D415F10A7C021D862E0A78834CB4C6E108B259151B2E641349D11366E7286026DE087E706B98E9642BEA5E979398F2095154B9106CC84E261F168BF92D971518513831A2C51C4BF88388174CA9F805C3FC27329044552FA94F3289CE9B7A941872A252DCC6CA59CAC80950FE59CA055C392FD22457C2FE16752D53391C5BE4D493964ECAFE16CF88464B6DD90388362C7C08D4212A560CD994B066C7C4C95AC9796BD8E5B0EAC3E70FC26D47C23565F3F01552B0543E3FFDA000C030100021103110000106ABFA193B7D5CE9330092B985FC03E718EF900BE8C7CC02650DDF41C49EDAEA4581AFEF454ED693CD4C4C11BA052B5AB9E6033F566CD0A2A257674DB1835A695378C89B2E1FD4B70F75C1C378DF2EF1D4ED8C87FE4EC36858854D855ADBD439D3D66DA165089A66492C63730885E7A2A01B1C07FFFDA0008010103013F1023B0C189450DEDDC4F10ED05D6FA94F1AD6C834E59EA0DC6D7D877BA0ED7647A2B134B4862D792A1E81151A5C4D6CA8CCB7BB7CD7E13F8867AE5A857056EC51E19D85AE1DEA9B85EC446598A1CC3B818A1A298D9D33106202DD9D0CBB6CD4536681402B00425E3DE147BAEFF00E2DA9C6A4688F700E8315E1CB11A57F5069A756259F66CD611A07443F457ED33DB7393A3461E596C256B0802C59B47454B2F405070F93655E42A6535EEC085AF8E0BA8FEE8A40BA433323EDE241432EC45BE187F1081B375A0503CF881A11671657F490305DB8ADBBA3E26A8000A96AAA839DCC34359E10837B3F8967D2CC13885FECE85B01CADAAD166CE115C5D25C05F14AAEDA8E25F7B5DEE54F5C79ECF08AEE5CA1992155F37CB7D3508D828A007404A4C8CC988A4B90D30D63B15966A5D383ACBB78BB8514BA4AECE55E61BCD9B99381606BFF8963F52029AE4B1D3F32D45BB1B294EAA366DD0C78176FEE13A03EDFF00B0163B0D0A153C1719FB4D1BB7BC32E1F92F0D1E85F0C63AD8B23B41AABC06FB955A0206FA7A5DE418CC022659E72F8BC8E76060E6FA1560A3D9C850CF60506AD8D012B44B12C79B7E2C02FF00A12C824EEA3252CA6FB03C3996008C61EA49170D86838A968D4E549422B44B5D2724105CAFA11EE283E7DCE4D5140EEABE0DAEE5B889B50B79141DB8E4D701536A5BC35D6112922408B40C102DDE363922E34690D58D535DF888543D1C3665B4DAC61E9643CB9330E04B51AAEAF2EA2C85D72445AA5A716279D8D2E52E37557C71EF219A1EAF5F6B0446726799704E5637955D06DFA44127AAAADF4038EC40340AA8746AEBBA943CA047FC868095595716E497E9474D57C8FB0C47C39A7DAEA8BAA7A28D5642D9E6A36975564E4829AEA02ED802E7A2F91D82E64651CED09B1EF01B3471C6D79A0AFB845ACE012A2960C84A6954E759C90021DDE9E6C2EC39457B252A6930B2C16C2CF0D445EE269D494131F7EA55C57B7CC4A0AD0283263C00AA917951362F01992972CCC49ED74E14F66CF518A195A2839BBBFC3006CAD10AEB0D1ED40069A1BD9CD17551F405086B615B66478742280D520BA0FCAFB8CC8F0623640A9C6BD770AC1DFC91E06639D9C10E52FBDF112AEBB51E6C8683AFFB4D9CD1A01AAB477F0AC4B7A0550035D3A8E07892520EDB5C0A13DD413017BB728BABD031F11948243A97E7B59094DA092DD82015BC74D2DD5AD305AF766EAA58CC04AC0DCD2DBA2B8834F0020AE7A5ABC33B23BD0082F0EC56CA29BBC10A954AFF00622B8786F3A873ACD9AB28D780694B28224B54534470000F563C25534A0C1BC64783541E636EC6341A0F4D1CB99383828A5D1E2CB36982A896A1C139B01EE7109267487F1CFB851EF35DD100B40B0ACDF302F4736BC7406A623EA5F7458812F98116F57B4DE21B6C242A941FD43546994AD9E9552CE6AB8A99F933388A3C16265C8C600390C93DEDE2E839600AC89EE86792EBC74E0243CD51495D63CD5710B3C40508251A200DEE7EE5CB8750428000D76EC70BDC89E70D802969AB792D2C6C2AA5BE23401A1451F11B4E199EAD29C6AED6ECD8DCAF02BFA22EE797EE554D0E6806BA0E5ECAB724104689C5B2166CA351F0ED17DE07D8E480E9288BA7110946AA1180F1DA83D9E0AAC945449B5916AA66D770502B42C1B69746CB98C10F85DA9B52D9ECEA2D052526DB52CCEDF6F1294C80D5AB3470DF2904C162B9188578BAE3C42C8D7B1CAA05089C900BD7D53CA4EE41A3C3287AD955596D082B91909A02E5154A582D08CA3BA97BF6002FDBF38FE5BC86BED597ED425E8B5107D5E851DCD2BEA3460279AE292D057879BEA14D1DD2F934F20FC1837775955B986D727A4726C98915416E5A2CB53CB0F29968AB2295603BC5D4CFEED0250D805A52A8B7478381B310A317352808EAC29C0141F881C3389BDE4B0F3B4C8D57F7AF8007005B9DDFA949F42551D3A02EF9E66C5220D01283CA8B0D20F20E30B04845B265B7DDD4EC2C6A40D21CDB6E5DBA30411013963C3FCC6838785023617415071D522AD9401B6E27D10EE03E1B4D0B774D0FE6C1181259804E0365E7B20944D0A84BA64F263D2A50A347874145631B0FA9D4A9A815CE852DB685F4C3D00B055393D1E20B3255C5E0CBEC37D6D116E244C6D3C80A9745C7A5C5AA2AA26A34691F72FD0B8F3C291E4A39E6E5C61CB888F006E46C97C44D5D3A82FB2533255B345040EECF4628E88C310FFD25360915AC59D4AEF49DE5C24A55B451561E3903C3EA1EB2DABB00E95C571F7B8E0BB2B8F09C158118DE44D3A0D51C3FC9475410D8140145570612DD2F30DC39AE9213BC72DD0BE5612B3F7D3AE1167F34C63B7A7DB04177F098391245BF8A0C2B147A577717EC14617AFF003D165BCEF85343942DA2C7125F244A02B66280218A2BBA9520CDDC68E21DA03F5AA3999568074CD7D7EC8DD05BE4619E380F9EEA26519A782CE9193D4A43CB4DD10D3221015FD5C46AE44A153B807D640401606B9A6B42B2E4BAD15E5CFF00ECC9565328AA8DC5FEC78B865C0844C0105697C46FF15258765CD779A7889DC2AA7C68C94DDD9146664ADBA356F78CFD4755F6855EAA67164B0F5FD24E8D4D40A881656E0F6501300B8CB42C15562E807F22A41598BDA94A00D3D074E4991DE74F0D6E4B479550D4193C216A237945FE254CADA5DDA0D112C48924C0D54A2E87007056DCE7DE536A79E9ECB50ADC0B647C0E1AF882008428941CE3F9AE04364DD686182141C0073EC954B5E0BB9866BC296266A49D39C7745E60E6F25274A6871D9A913B2F0E4B00357D4BB21D8D21C9CDD25AB54AE14636AEAFF70D569D28B2C2AD0834DE7C149455B746F91F4C0FB3637BE58FA2170ABA399BFBF15110B48502D8B5330F702E4807DD1578EDC40281519A328E82FA82F296D0BD072630C23C428737DFDC32DBD09011DE25ADD861BE52C0468A15919A585E2DB145E30957CA4DA5B1D4741FC2658D8974A567E04E25321E23082E8003C8A71C836420680A5B928A3CC4D6E00DB529A51B3EF888AD142CB4DD160D5774009888E402D51A6FBAA8F59B140BBB2DC948824E00A8914D34E03D92A3D5680ED8F6D4E871C715AD0F34202BC06728E62ABE2125A3ED591A38DD4A4436123660C6685CD0E659AA57911ADAB9DF42AAA17B6B627445D1D19DA879AFB89DB8723E0E6A7E3882ABCBF4BE9105AF35C5406B6566029F47502E0A6A87A0D1B4E3FF0020A22E8056B5DEBCC3755D1385D737E799D9D71D8208AE2EAFE2C849C5FD1045710A8EA2B0D6B772B6A3557340C7A397861CD55570320D546161F08CADB8B96916EC053ABD0BDC40D44401DBB9A742999E6379BAE5D78791E6E505DD59A14B56917A86164500352E1C39B72BBEF05E28BB7576E0BEE2A5B047175EC6F3B872EA2A5736E5AC573C40C62D1A62AED157B4CBC13BCAA21C76CA255221544BA28DD6ED642EA354E9C759CC20E11523896D03F9AFB81D85695BA284E6F33FF607E10351E1A00D32C32133AB887AC3B835F49483297875D65EB0503B7867FC19686146050A8BA68BA892DCE6168DD0BE98DAD58B0B46B812E8D0F4C01CBCE478508A00512816D17077801F402A3A28AACD8C4E312F9AAFAFCBB8C0086C5BCD3895F214FC5C464177B8E4E201B3F3AC2CD6973A55668DF5E5E2E626735CC50A94DDD7971D5431EA001572AA93C51FD5CBE5696156B4167423C2DCD0F8BD1F3145495C92FF003B1192CE229BDDE7EE619A46500D6AC36BEA98C202B1D170D797EBF8855200B9995365F56DC05981BEB46B8A74D7980F215FA069B3EA5B229A33FAFE2788B7FC993B8E397177B3EA29B9FFDA0008010203013F10E876126C11BB8C6B12B317844C20AED8511C5F77E2199C30FF009E1989279395F115CE0E096175F3D4B52FC3C4F0433603AC65357A8ADAB12C9004387B2258365B98D288E53D8415FC670029A94AA4D845A5E5972075CCF4287F31AAA72732074DCAAE02073E63691BB82016D4A878B9784E7AFF0060DFBFD6C0072F98EA06BEE1AB97A5CBDC0E877047EEE2B44013C4DB14393CCBCE7AF51AF1F4FF00CEA35D54F1F711F46CA837D43BA11C2FDBCCB2760547D1E2720F5150B58E56B7E2B2365CB47D2117516A16CB6131C3A26944DDC496D89675BF27152A02A6F39271E3EA29C64BC3B4B9293DD1300C805CF50BBEA720E21B6DC180086BDA0C82A08F946127820B85C8F44D2214468BF75EA69C1747CCD944AFC798A1462D7B25A1F00BA18713B1DD5409D80F44387A8CD2BB625C639CC541D4120F021A4222970C8B196BEE9FA66A61FEFE21AF0253FF003D440567701BE5F886DC45A09DF32CC460272B618510167218A8A7E02351D11104549E095C733B966400D9C7E25D1E33F88D2B5D7FEA5962E78FD45AAA025332D9A64E31CC100B52F68C993F529757909CB8EC559E22552231DE3682194D5C646F060282F58AC6B3F8F714880F5CC02AD08AE2AFCC4299799E5C80A053FB1FF514D90CAD97AC8D12B7C4E84636332298AB9D60A8CE821B910F82880EAC624F4886AB66A5DBD9C7E66383EC2E17941F728007CD75340939DB3E35C3F12CE086FC65DDA5F31B09367B06FE99AB4BEA0938BD806B7EE59ACA70CCFA85A2B858F70BA62EAEE0B043BE48D815FB951CD209B1CC1A0AB8AF8C8D8A4A96C7503E4B943D92963E1802A1B1DB0154582BCC49B06E3E00ADDCA54CB1154A9A94545170A4C6EA1B67889627F24A3462AB5B94FA5803500BFA94463B8A84F1B416C8B1CA164EA9664A4BFC45A21D1056566CE652D22A68E61B14A7E233FA9A610840D7987E040543FD2259D4B7703D902EA4D1764454CA1EE0D9C4B2B840A18400EE21366E93984B844AE0AF911C723F318298438C09DE60FA32B81C96DC58F2FCC430B84BAB0FDDFB85D4C3E528C7ED1E725C09F697979E79C72569A9DCFFDA0008010303013F1067D22AA20B848370F1354B70834A90B2476ED348BB44216EA38C4BF20C8875CCBE047D7A9E8985F51EDAB8EF64C94AAE88D6A0FA635BDC62D9CC59EE0A90B09692D606C6117A9AD25AA8D4B954E32DF802177412E965972239BBD8694B1C68412B84B08E04AD9880422C6BE06C56A29D90162A2FEA9E92D894B709C8A3CE65C55D47BDDCE770FA8203694A2BB4E7E2D5537CCFB10C0E12738C9451080BA799CEB946CE253C5DCC1754C1F516B5E23169189D6D0AB60821738B6E16E139C1BDC716B65F3B4ADC02E446EE5B46010EE759CA32309E60722A50A799DC732F3EA5AC0C5AA7096F105111E91A8527D4F4938917051A8899335C00CC32C2085317DF1BD2B276AC803668949ED0C44AA3FDCA9B761E98295D7C45C2BC25132616DEE59C2A14234EA1471B3CAF855296C8D8C98AEC69C71F1D162529837B61AE4E48BAA42855D802D3F30762CFD4A1A76A2538A96934DB132DC201C91EF8C94332E216EC3488D9B8F50DD317B09C0AA85CA039A9C9E4FE5439165657ABC9C7136C25E8622BA9573142E03A99E3203EA3688B51DA40690C3E2E365953A238554B55DCB355E89696C08AE103A88D1704132E63DA4A01E61D6B60829863C7C048C80964A3877F32847B95F4E125DB73C930DEF44B89C5C0AE7DA7997622D2E0647317D10944A94A4836EA96045C44B93DC20A34CB1096138A6A205B31E901C2D282CB9F571FCCBEC7FEA595DF3FF3F13A7493688EEB88A2F762691135E92C8EB1FB86A9310417501C100668B83A8A4D25D204E300AD3A0318E0B25EA8BB460401F328A87D257890D1E88A4B17226AA002E6E5F8F80DBF114531DC30096C3484EF5E20BA9D9FF20FEE2E94746C846BB285BD669828A5B1657F27F50FC63EA58C763E84BAB3210D3614D8A416E61B372A0BA986DF2FFFD900'); +INSERT INTO Categories VALUES(null,'Seafood','Seaweed and fish',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004B0000FFEE002641646F62650064C0000000010300150403060A0D00000C810000142900001F1A00002F22FFDB00840003020202020203020203050303030505040303040506050505050506080607070707060808090A0A0A09080C0C0C0C0C0C0E0E0E0E0E10101010101010101010010304040606060C08080C120E0C0E1214101010101411101010101011111010101010101110101010101010101010101010101010101010101010101010101010FFC2001108006E00AF03011100021101031101FFC400DB00000202030101010000000000000000000506040702030800010901000203010101000000000000000000000405020306010007100001040201040202030101010100000001000203041105121021130631222014413215073016171100020003050507020308030100000000010200110321314112045161223213107181422314059152A1C16220B1D1E172334353F0C2152412000104020203010101000000000000001100100121203040316112220250411301000202020202020301010101000000010011213141516171108191A1B1C1D1F020E1F1FFDA000C030100021103110000016DF987D25AC95C8138B78A74AB46CA15C12BCFBA8CF8C08854A5C3094A4154C2AC86C415963CB052D8767E8E4DB5371A59AF5F13934CF4D4C9A6E8C84EDF69981E097AC79CA26814A4FF00438319CEC4D5E4FE85398C87E5F57F4A9F28D8AD33B1891A9F53AC1F1B0C74570EC15797A210343B447942DED60D3BD5CA4324673AF16376E8CAAFDB6565B40AD85D29A7A1AC4D0F4DE2F3DF0ABC28CDC6CED3B08BA5EAD1B9D4CBA88F3F46908CABD9352AB1BD78CCF5824418F8CF7D139959136E95D67D32B767AC9252FE8BD27CF54C02EA155B05F83E7E92F97DAEB9E1A06E5D06C1B090D7FE248446DC1C458D4B499D5D8D4A6B923F8D96B0B365F4836D48CB8B6F9A825CF0808AAE0965B2E16C3E835D4AC59B298B3A23C80CFDDB016E49E6BF319E50A1DCA52ED631A897C9F0F0B5693A682DD9C1BA99839F9D36E990A059AD7C92D03DED6E401876187A3F3B09D597DEA47CF2353D6261E06A48E7DCE6D0B25D0C7BF95AEAA53F964295F87660AF0E5D6C765636372BB1AD1AA79D22E5DC7901A4229159CDCBF63DDAFF00E31006EA067C98F2F788654DA8FA1866178C2572A16ACCD2D67D268FB92C0B24FEB190C26B5F29389973EFAF8562AF4C0CF93301E8FF00411BFCDBDEED419AB6C53EC0B3239543FA4B88E448ED54C33451A637BB26715C651ACE06DD78D5A0884FBE2605251961DDBFD36152F2A000D1F6B3DF9E8FA78889679B3F52006C92FDA9B22AA657AA45257B1979F57A9C6E11FF0040BCC0F3FAAD690527AC191496B8F2743F720356D25E7AC52F2D5AE7F77D51A7F8E526AECB42F882E97C995ECF752E6CCAAAC392757197B60FCD8BA6EE6253B69B31D2A43C785C4EB3077A06C5D998A233084AD052759A8F3A27CCEC163523CECA92BD407B594AAD83E8FEF409E807B84B02C4D9738BBE2297A1D26D372CD71C2376CA34040672B46E68E5C0B8D676AB0395462E6DB2F85934C8BAE8D12B6F2F63F0F9565F56B8C1B879763EF2DF0D25E851016A96C26DA3DE4C9D5BB8644F7859282C4B41E856889B6A1A37BC9F263C7EA7593C6752F9514B82B12C1AFE718D2A38E138499F0F4F85ADABD4EB8CF385AE1834675C18A0770A6F21374E37C930550FFFDA0008010100010502A25B3CAD8FEB3E9BC1B5863C27C4E513E56C739963745B08E28DCD8677DAD6D6DDCD7F4BFBD0EEA6D6B6A6CEFC376466C5EC343DCEED707DCF5EE82794CB2D18465ADE2D924F1AB36382E7F6D05FE4FC02246B79338BDAD1C43C963A4E33C7485FAD7D9AD8E099D2D7334F6455AB7F61736D7F576A9506FF00F41EB37987D6BD5766B610B6A5B8321D4EC3E8A65886586F5B0A576565663FD9D6EF9F023C644E18922787BAE8C1F968CE227EC2C3A2AED27DB36D1C698E7411BF4571E8E877B0B657D9849F9A3082608835BB68E3E6279647BCF435A45AED931CD824BDAD14B675762B8B73664E51BC304710ED53C9E3F63D95D82D9E221D5326BBB6FD7AF0B2E598E276D67B17ECC797BA8D7C36EDA6D58AD5BF33CC8E88E7A3F5F0CEB64FD5C6A8EE2DD22767ACBEA1DF4951D0EC21B51B667055A46BCD57F8A6F6891D26EB591D096DDDB3AE66E64F65B16958DB4823B121235F1B9F336C32BD7D8ECDD664336548FCAE4B9296F5A923D4FA66D6F47FFE5CC60B1FF39D942D7E9E589E7551A6ECA7A8F9363140CB5EC01E0D29ECA89EFA162D4A0CD0DDF12B765B2B037CD36AE188ADE48D85AE712472C17209B5F9C6ED4EBDD1D5F351B0AEED6BD56DAD9BF6D72239372C548985D24724366A48DAD766A6FB76A5B69B61C1DCD79E263EAD77DA9F63722D6519ECB1F006E54878309508E6E6576FEBABF079EBD8F63AD144D37FD822BBE955EAC17F612C259524B91C925ED7AE4F516C091E374EB637DEF02D1E2DA4DFF3E17F862DADD32CB142F7A712D0E24AF0C8E4D8E46A65A93874875E24F6217668C6E3D96AEBE8D998CF635EC1E2BF5BCD5AC4663949FAC2F99AE6786F2ADAFAB04B6257F1BB29A8EA946498D9E741FE42552A6663AED7C533E6D10C57D5C4D9D5EB2CAD5A817D4659FF00A0FADC0DF66F64FF0076CC672EA0D2196479E2ABA71B1963F515B3D2BF57629CACA9687AD6837D0EF451A1728EBF5D6B4DFBF04155DE6B5354A698CC45EAC7C9B1D8CB5EA3259E4134D6E081BB0DE4FEC7B2DB88AAEAECEB349A5D2CD3192581DF785E1B1BA738F4FA86C528B5AD5B8F5BA9B4ABB2A13EA6CE9FDA367A07EC8BDD352D958A324FA9AF7D95A08AB01D91AED7D2D617EB5FAFA3736CAC4F526BBFA1B1BEDF50A7019FFE83ED0E9A4976BB2B15C3946EC3AB93620B0E9201E9F51D1E8C74DE56D54DAF8BFE7362CC37BD738D8FF1648CBA192B974F5AF9862FD756B732C92682E89F65BAF626DF54756F9A9D7B9A28DD37B66E76AAAFAB88E3BD2096C47112389C6AC4DB08FC76E59FD5B9B74A9CE6B1B14726D67BFB0ABAF86CECA38294B2DBB53C9ABBBC2FD09A99AD6648A0B11C6C507370D0682CDF7C3AB6B6A47FA89BFE6AF6F24681FF00D9BC7C73F1FD1F5BC7EDE8BC1FEF54F856C44647121BEE13EE26AD1F8331E147F177F4B8EC19A20A999DAED03347FBDAF1404431C3FFDA000801020001050229ACEC5E70D08B4AF339791365C0C82B3C93A32E4E2D5DCAE09B2B82F38FCE56F47809BD1CB2A3772778402E70E59E2D385C90998B8B1C88EE563A8E83FA8590538770F5284534909923DE9AD5F0077232BC6B8E3FF0E4A48D6414410885E4EC561439E2064A635710138A71FF00C0BB063E69F082BC6F6A30E539842C269501E253708CC017592BCAE2823D71F806840124B1E9C1E1791794AF18720C39E39417CAC22C4C6E10FCF2BC61372D2A4B01A9F94531A501DB8F40B1D31D47E0513DD3C6439EF7211654B076644B384307A16F468585CBBA6844F5CF423AFDB979485E71D4043A1E85C50080CA2E43BAC273B09872B09DF29E7007D5793F16AE29C1038586944777388771C9F84E7748C7DA5786A00A2E0164B8CDFD435B8C7E113564277745B84D38E85AB96138F4FE725362CAFE7214217F63C47E2CEC3A86223A9EDD03163BBDD94D6766B4AC12831044ACAC2C21FD7AFC22F5C965028843A358B0BBA194ECE3A0F9FE5B8E47F079763AF6E8533AFF00FFDA0008010300010502FE0942205CE2B21706AE09D177F84D9DD1812A863738B1818B9B0A7D28DE9DAF702D184F5858E994E1D9047A043B1938F1F21200380DE4E85BC5B2405C8D2982F24F1A6485CDEEB91E9847AC912F85FC3828FAB83022E55634F381FB49B742128726B538A2B8A6BD3BA7CF4700516E165307719CB9498CC30F223E6D3FEB929A15766065143A3BB758BEAC3698B9A0B82E0B8A7B53C64566FD260E2D8EA3CB46BDA17EAB42C60656565734E72CACAE45C8E132C714CB81472870E823CA6D65F08A67C108A71456517742505E2CFE01AAA018FE02CF15CF3D38A6C8B922F0BF9F924AC276002EEF1FD9359F5E8308950CFC4B4E53827172C94D9539C4A95D85E647B8C7695F851B0A3D93CA704CEC9931EAD5851C45C631D8AE4A5EC79F68DCE4EE2E51C0015238851C24A7BFC6BCAA180B95C883402A36FD3F0AECE21A8F4B0B9AAEE5233937CB2465AF3C19F62E95AD0ECC8E8205CB0AEBB31C10990FD7087460C91F20F5B6F19CA6485AA39C3849187AE4993613A20F503404112A40D2A4B21A834B59D00503301A82257138B32727F46672EB2B97D729AE2146F6B91CE1F3A2ECB6BC418A49F2F58411F86B510B96473C09FF00B743F50C8CB8B60C910800C61167141FC53B08774F9CAE5D60C73FE4613FE3B719F978CF46F4AAD8C3BA1432BEB96E54C8E7A7FFDA0008010202063F0260C6106FA6ADA73869AC6B4D690DD6B30AFB56C1CC6FBD55ACAA6E9AD7CF043DF1EF874AE3456D3C3F6E25232E678BD7F26DFF00FFDA0008010302063F0262C25EB3A61C10BB552AD19D1580C7DA51D03678C4F0BE50FD4EB1385704E9ACCF02D52180E17D616E65169FD6938057DB4E3E17AE034DB985E5C4AF5FC2F3381D1484641BDA7B5180D03FD54AD0962C775376672A5F0FFFDA0008010101063F026A916F8426AA9F234E7DFD99D615165957084F6C99181B0B5A229D3D4D85F9658C75501A754702E3C20D91529A5229529905D8922708A26B96404EE006D86A46A9A95082260584C1AEF6D6965005CB28DF011C2D54D8448FD443BE465AA070D3BC13DF0CEDCCC496EF30256E61698EE8B4DA79843B01394668346AD9567396D89C4A24B841CB8C65C60D3AB08B33552A1080B1BA29B1AA65999D81C67FCE2AE54CCCA78F2986ACD605136CD156A22CB31E155B32AC015F4FD666399C9378D91D1D768328DA555A5E22D827E32B9A4FF6ABFF00D5ED8ADA5A357ACB4CE5152529C4C20698909DDDF1975284A7FB56D023AB4D832ED8966FE51BBB39A5B1D70309A5F94B27653D48E56EFD8636EF8B2CCB7C6F85AB2B05E63A98611353222E319198545971CECE180D293CA47665DF03E1344D9D51B3547BEDD9E10BA6A07D6AC402DDF19B3367C386CFDF19853EA0FD2E0FE1192BD36A4FFA811D81A2660EA34DE954DD71EF828F6B1C3F63D96BC02A6C9B7E719B453D4E9C5F458F1AFF00498269B71F9E99B187844C194149CC1C20253B844A1AA209F922DA99556CA7230352E7355AAC6CD8A3F898D352A77E70C7C224DF530DD25CFB3086B3874E0CFF0038CA201D96C13898663660B28EA258D689F7F69A94942D3DD7474A83F51F6A8B2380E74FB1A03D60DA6AE2EACB7FD440A5A8AA3534FCB5939BC447528BE6FDFD928601A5B418AE6A540C04B2CAE02574237C9D43EDC73AD3B58EE8A3F2DF1348D109CD4CC941909611652000D809867EA5A059C3289936B5A607FCC233B195904AD8B87ECD2D11676A479155659ADFC606645D2526E66226F1E9EB667F52416A5512AEE1307F1834EA4D596C20C2BE958D0A800B56E3DE2052F924CBB2B2F2984AD4C8699B2D89D3E079494C3D4A6DD46BCCE73307DCD3BF9B082B3B05D12892DED7C6563954731DD152A22C91B97BA253B705ECCD80BCF6F5365B1D2E828517485DDD1ED6BBE7A553FB2C703B3B0CB8D8602351AB3E52125DD0B0CBA8208C69DF3F08A8F4B829CECA4D7774E1A956056A6031F082B98EF8939F18C8DDD3EC01CE1389F933001A3224B31B16331E2AB54DA49B40EC94EFC3B0082371EC65038AF422F0625F29AC5A2C385A8A73996E8F6DF1DA76D1681FFB9ACAB65475FD220D4F8712697A948FF925B37C7B7A44AB21E23F943B0369C77C54A75E9160EA403E59ED89CE326A4751703E610BED5B329BFEE5F08F6638A4665F280C4C2DD3C77429AF48202B356736B31C770855EAE797110B665C239BA848BFED9E119A32F64C08BA0A1D9DBA9AF46825475B66C077631EBD022588BA1AA533EB370D153F76DF087A84E62C664ED810C18F4CD3E25630C876C6F89A464D5D125FFDB4F9FF009C67EA872BFDB98B27BE32EA2AF514E0B6CFC62B51A42D6120764E3330920E631D1CC1ACFA76067BA0D20309C58B1551ECE1217B2A557B8031FF00AAC39896AABFA0E1E113A755ABB60B4D0FE7095A9D3E853A63857CD6ED81D8F4DAE71287B4965E6CD7C5D033723DD14B501790DA368C629FC805CC196C646CBF5DF1A8D2E838941CAAE4E6901F998F775B8B52CC718D453BCA8928DEC7F28B06663708CCE331D919EE95EB8C0538A3465233556E5485E9FDE15EA613D919AA3851147E1740DE8B3FAF556ECAB69943DCA147D62A7C836993A94A96699C5E567E305F6C08BE422CF086D49136A950CC6F11C70D41AC6F236C30DA2D6ACA5CB50437B7615693DA69B5D3DBDF06B3367EB7A99F696BE3353B45A0A9D86F8F77F186DBEA69CF30EE8150D406B37905E806DEC15E9B12D3914941D7546E9841218DF0DAAD539A3A520B1AC79DFF00808A632F4F494D82AA0C5713E31D6F9CD574E8AFF88190F187F92A4B974F493A545A520C4F3111FF0091A16B10CEABAED170829ACD43D45F2A31B2CEC063AA0F0AD9008B77469AABB4DAA8EA7766EDAAFF002A80D141327CDE1BE0576ABEDB3CCAD023332AE00EF8D4692939A89A4953CE71A86D68E280E93565B41103DC8E96A459D61737F5416D52E6CB6CB031E9AF4D41E14C078427BE93ADA5CBC8285C6CBA3DA69CE4D28DD6B4A351F21596C4A6CD493B84E3AC74BA8F917171A81987D2E83A1F8ED39D38E566FB47741ADAAFEA7630E504967C2233767B567C894B8865E6F08E9296AD53018FD234695049BA6260E1D85DCC80B4938426B2B8CBA4A47369691BDDBFD8DFF51E31D6D53651E51B4EC8A0DA664ADA8D43B3EAD0DE1DF88FD2E867A202285974F9816DB8411D45A8D6711165B1EB8BF106623D5615682613E359ECDD02BCBA945EEAABFB8887098DF0B5752254F05C4C3D2CBE5232F847A593C250DD2E95FC7965CDBE51AAF6426C4714B04F318338E1F18029DF6E63BE065D91596A48DB3A2C6FCD2BA07607D7B4A806029A790B6D73DF74EC824099C0474EB69869F420AF56AE75724CECDF02569DF1C3D9FF00D32CBBE09D1549B7DB6C87E1282680CCBFE453CB2DF05B5153D339782D9081ECC8236F67FFDA0008010103013F21691C959E825ED1572BCD864E2B89545F7198ED2B047BECA8F796D8E552ACA7B82D52ECCCBD44C1D52CD90A60D78CC904F267C4D6B09C3D13895AFA28A75FA832E02F8B4F72F3C1B5ADD403C318D7AC3F92211956AE0CA7F91A3B523B2D804CB4755E6BF53D68D7A845391AFBD53AC4A397696F17AFE62BCD772F6840F57889C323918F4CB6B98418214073DA534D749D8EE4C30AB741545ADBC1D47C0C24A7957AB4C79EDEACE0BE388F819E562759990380D407078C6E0074292968D0E04CC01B295FC547E32C4664BD5258C6C3A7BC5BCE371310A5350BD0DD44D67B417DE81DE0C0F12DAC162385CFD47C070D1C4F6889541AB14F12246167F1A7022C258C0C998C97B614C67C438AE3C4D24E8A63B88BC60447624DE7053646C1396E0C002A9CB81D92119582F902E7966549B1D6CBD7E65A24F1B1FAC256EECCD7E54C4DC416BF57532C79EF71E9C0A1E6E23E0DC22A86DC3C20EE5D8215C9CD65FC4B65E67245941840D0D68E9E185D32984DFCC7881D30C65B3B8A2E57EE541A869FDC792E8099500D1B861B173719082EC316B52FB149C3615ED3F07999A6F4033589225052F9614382C16E5059A2E07006CAF3A201E5599EFC9EF88C46A93758B8C0321C80AD5E65C4B04E6983B994A6E2BCC86810DABAE208D07768D79FF2527DE15F4EC8351055C5EDD87B8B98F40077665700D570F6443777DCBCF0A608A7A5ACAA7CC4D583A11EDAE625165D17ACAA879E6B530D2F3F064B559B8D2E285A1FCA43B8108065C713330DEDE73F7287305DFDA9DF10B7BEE1E95BBF46987A665282BF8D84EAE82539F66B982DCBA91E6FFD8FFD387865095C93009D4A7A463535CEAC850CDACB9D04D30CABBA940F3D8DD2F35E25269B40B4EDC9539E005AD0789410D7E1AB998B4E6C9AF09C788802AF6B416DFBCC52D171AC301141C895571CD7FB2F0E5812A383A0BD4C98E22B6D88A1AABEC10FF8025B77D3311516F967DDECD79F7F0AEEB3CF93BA8C8391C31975EE7D62BF5281F3352F08A98B2DCC1CD384A36540AA35CBF881E4CB476BDC14F59653ED842E7974A85654FDB81D67CC12AAD7C2B394CF4470E7118B2F37F88F5AF7383AE3857F5280D4152B2BEB67332DC0574CA9EEBFAAA12CD93580036232C9B5CABAA70D5EE1CD74BDB73E7B8C042AFBE414EBF9CD7F23C230F04B91E5768164546F927611268FF30ED3316D7A5E7D32DD26875AF2B6CFD4C4C03443C6CCC6E4B14BD942B3F7706D6148D42F14358034B546834393995BC51786CA76F707C31DCAC18865B816DA7715B5152DE252AAF8611AD324D0AB2EC958D1907F8625833DD4E5E3663644D3B4EDFB8C8008A80EC3BB3A9C162D60AF129606F878A97B17C42B8A3550AE535F6FCC50E84FE98793CE20B435C682DB9129E3938EE7F588A179697A99EA5E12EFB700A6FC789D62CE74D7F72CF77A608F6484695AFDFC2775EDB5C420EC5596B30F2019D80C42BF8119A511EACBCB5E650BCC3463349E99CC1F7D3327DBDCB4A7CC377214352FF921325C9FA07E23BDA2B6D744E10DCABBD361BC1678C1165155BD37C09D4C10530E6A037ECCB3BB45E0215950E390F7010579001DD57F10FF00F9935308071E57CBE235AC370A6F39F3E631382F29A26214B26C947D09C200F385626BDF2EF86CBCCA49BB5AFBCB073F64CE4A192592B1C77358A294EB61CD0F0665AC577133FD709B3C8F3334A36EB5AEE7F2E672FDE0A3330F0DCBB369940E11F710A6D93B5E72D91E40A17595399B7AEA54DEA16643B0D28905EB5A2C9AAAD461FB1A87C2EAF5EA1B40D8D087BE96C692DC5D6FCA64D74D20BB5C015732E75FB9303FCC7CFE86D1DAA649E0049556B59B30BC47F8CE885DCB335E0FEE5EB3F18C725E1D1CECE03B9963AAC9EEF86E0D0061550C55D5CBFAE0BC47A7204895D4ACAC0157AC69F309074F68D28FA62FE8040FA047A0EB3D15EA1874400C039115B55C1D12A4FF00F489C4DE058C9E2957E91A2D9B17E860616EA839FC05AB33461E02F1FA885688961C6D8C019F0E3FCA6EAF4A5557594B522AD228E29F8000756A019556237A3FA168DD07F63354A835366C8BA7963E9C3DCCA2E28819E00B7D80A0CE1CE082DC2CEBB97F0B364439D50D61F4BBEC4E5CE783FA0C268D0B26B0D844E028D1FA235706BAB4D2A61E0FFBD4CFB97E7F6F24A3634BAB27F04FCA3317FE1948B7645BF0FC4FDC3EB98C0096F65BD37529F4FC5A0B3479012F1A0A5BB6AA8051B42DFB96D2978174699E8FB94665B577BF7998353B49A793B86EB782FAE3CC5147A445CAC9685282F9900FDD444D68158B9792C33E2057556F5E7333AB54CFFFDA0008010203013F2171F29994C908C30DB4433C62080372EE2C65951A95558FEA0B036CB6F8EDF32F3599BCCB832E04A95A1D4298A65744C9A829F87904AF563790751CD94E580B31644612A1B08440946389B83E030FE9C91754A3184B9DC541AF823644A9CC05F3FD44322C82420B6377C8418810F8A47B9DDE1DA2DFCA58CEC402E2326CF444A195C4CD026601AF948C09578F97A4876D3E2F8993A9B2618EE7E166196D6D411C910732E262F896AA66C102881F00F8A86BE52CC2FF0089E1413FA471866D894AFF000F84B2CC78988C25D114A433095FF8DA2E66663AE3E3146582D7CB3F14B896E530897309DA545D4E2A551507C19654C3FF000B701C789C63115C1D4B331487A262744D6E73CC3E3E65996042108520FCFF00F0FC64731B84A9531D9F00652430857613990CFF00C68AAA30941F1959744F891B5B630204B6A0A21194A7701C352A86A5C1850F82AFE209E66629BD6192FC401018213E715B28D406F1D45F81B058B11F5F03505D7F01A8F84A75B8A5C1D8EA50E2246530DC3F6FCBACFC14B8F84B81D25E60EE14B47C4D4CA82D473DFA261CC1F21CA0161C3FF0A0B61561F71B3F0B65B2DA8E258CA057C3A265FC3BF833F0BAFF00E380C4C4204A8CCAF33693C46EE7FFDA0008010303013F217184CB0275F804820C0277114C031B86200B7CCD56881D4E4CCB60CD9AC8601328C522D462D9B48DA961CC5BDC02419885B7514A894D998C9FD92238ACCEDF3838460B5C47908370F86FE2DCC17031411EE32623570DB311FEA3DD597442BDC472B9C987D19947C0E372CDC45B6E297995C3E3691E6D52BB47918A683EFE0C5F52531744E67B24D6360B66021DA5C772A56C0B500EA3EA21E2BE086304ABC4304D13710ED4D8B3A7134C2846CC69F0C72FA8D66326223A8C2AA0F64B645D666188E995E16218302457164D2A266349813241586C19B660F08EE5FC73B826608C058B8B1CA50EF731256D7C04D4BB4BA86C424817E2B620B4017AF94223B9BCD43172C310984BF3116E5F0145BA6E0D2A52052905522B2C5A7C0B2DAC509E1FE3E18CACCABA6527894008E5B896AD94F6877129F07B960BBEA71984D04CA436116EBE20023D7C3578D5F3A9537BCC31C580A2F7DCAC15875732C24015967D4C6BD3FCC30EA3B90CCB996E3335E675CED1AD3FF839C2E1F12CC44102AA32A5FC03FBC4D3D47C5D4CDF98A662812FC42F8260488ADFF6E26A2CBA0BBDB822A628174420E02AB11F8C6228E8218AF9948E59369B9A918C06131CC122F1813F994C2F16689803C7C6F52F63B22AF5885A7CA287B3FD7FB2AD172140D4A817FCC4E6B3016188FE44675B225A91C5472989898B70ED31626CA890C4EBE69F7FFB50DCC53A984998C4C52C18925DACF27FD89933F1FFDA000C03010002110311000010168D7A05078042F6AAB138F6B6D6F2E70FFCDE5F90704C06A8725054BDB52AFCF4536FFCCD4AFB6ED305E75D6ECCAEE18CA3840A5A827D243CC20D35788D41A56F0EFB4E240F2E95025AF4CE97F2941BCDDEF33A3CC24E8AD36A3D170A79881A5AB131B77D4230E1ECD65726129F64EEE6B149DFFFDA0008010103013F10AB9E502DD6E0D3329002AFC6FEE0A6AE7512652EF873E331B3F1415D51DC28CE2AADB1DD4A72A5BA42D5E5F30EA5242CB45B96CDDB8E250A7CA6BC00C932540A1631A8CDE5CE6617576B137599052ECCD666564D7A6184DB4BCE5D4127632C9517A4168D1E597BA78D4D77A65CEDF115A38A6295DD2D0DF88619402F519879261092C7281CA15CD8C415F5E80B780D65D45C8444D0160EFCA1580E11B28389A4C244B815404011665862BE463418FB711071A63E2EEE6A9AF2034EAB75C9B9526101C8E49534EE81405FC0E224CF21A433F504615376ABD679D443835D1AC8D5620C701ABB226CAE628E7E0CA389406E9BA95D0B714929E0595A4C4AE8AC63301D36AA37BAEE3E0A25703BAE7F71D8BBF70032E9532BCB71EF541C56983B65B02D8083D0D941EC5C2B2AAABDEC547A481407DCAC598956B5AEAE174253DA8B05B60717B195A2B2E178D599235B22DDE8D8D2573714E346B02A2E94EF12C98A6C74BCD402B747889B8F5560B4692629684DDA789BE1872A730B01E1C9015338B5F22C74900003978569BAEE5285578CB4957CB8209014B5CECEF1DC2B456D8D627DC048FB58038A9F486530AEB0372DD01F314ED420E0DA1526BEEBA653BAB4C185ABB5DEF12A00349B80C0D8E5C831B0B96581E151F01733B51C03CA1917C40337A5CAD796645B19EB15F9C5B2846ED7AD866FEAE325655D6CD25560E33CB2AF88B9026814C0DF53229B8C4A5D0F38FE6E1BBAE71CE2D58E1AA66A82AEE603156B6F0CA77B0131844CE112CC4AA10D562DEE58186DF6C2DB3CCB68BE0381BC7B963B453F9FFF00236AB95AB8E3EAB17112314F7B00DEF1AC93A62A9F5299D4750119882E855CB7345B34D6802057667D4009A0E435945C7A8147400E5A29B341CD132FC715E0B7F53B30A828D1297BA840E9025DA8A2DDFD468A48B4AB7B5C9C7D31E948204D416D76352EBB58A7DE2E06080F2AC0A5AB6398B1689B6DD5D576850C7C88155893D1AF11FC8850A18B1A1DD2FD4307959A8E807EFED99324ABD20D6454849C996CD4B427EF1EE88644D545F9C8BC9F5B976079B7C08BCADECDC5A23AB750EE518434187213A1092A1BD4E11F7B85376C39BBBB15FD4BB603638AEDCD732E32C85B536BCB9463B8185ABC0A8002140190058B35CC761B2930D21C3B7EE6392AD1BC6B4FDC5A96CDFDCA40661FEC580C500C20BB5C334AE25BC9E896ED967A3E91088F6A9D78088BACDAACEA852C526FA457639AF31F5863C859B415E513CDC003667101BD14BD34F8960FF83C16A3669AB237C1DA1395A96D9AE7506BE2A0E8D489B7B6E0B22171C9700F7ACD421110C72B091E6D609464C96D715664489C503804657DA846FD96CC0AD6B68C0210D6D0D46E1BC65FFEC2F0064021D2CA1556E4B162A9B56D80A67002A5A8BA2E9A982AA5592CDED5B5990EC6C70168FC443DA524D96C1B5971CCA661197921B5A692E051A7C69F15DA96907F514B14E019C209A1C33C9090B623EC5258B37169D59B56AAE1B4E4C45681C2A7B08B98A304AE4A5D28DC355D18E0D2BD38DB705463096E7D95CD423905B0A5540FE2A2E4304944376235825FF9108C7D09B21C14239EB57942CC6F4337B81233D4CDACE3925F0A82AD074F0D7528C92A1CF906B031D9202099B7146730085809C6DEDC771929701102C992912F70E5B11AE6A95B4A155133A82173B5854AB347150493DE81B9553ABC051EE642DF84C2357A5B7A710239DCC14B5AE55DCA1A8CADA8C046CE3B834C46CA556675A952A34E9BEDA7B096424D0A403020769FA816D135950B6A32D0BCC2FBC49A609AECB30670CB6F48165EAA1953D9EA0D770266B12102B96F7098391340B7AEF25A703808D5D38AACF382C9930AB06F57BA389994B8B6E7ACA2FF0061F7AAC6BA8B400EE69539B6F9952B59884488352C2458F455C3E5C8A41318434F4CCF3F8C02685B655EEAAE63ADB66DFB5ADAB3004696ADF0D67F518099F79A722254CAD44289B10E411C407CC5D4E7F7A811B5DE0A5F8AD7D4DBA089180A456720BA8ABABA633EC38D95B3B97D2DB5495B68A6B0F7D1031E59998E145BA359CF88750EAB66315E6355840532402D369A7C913DC79A2588C094ABB65B78A9A4E5672C48398FE25CE3BC4010010B10184B59588632CB318285136E19BF51FF006DD558416DF23246EB428DCD160AFDCA15932B239A3403C4A91CA2BF32B920D54B2C7EB0422EA0287B07563DC6C29E69467542F1BC410CC754C66EDE834266C86278884AA81756A69852ACE106ADCB5A6F3C3713AE0942AAC413A068CDCB054150D2D477071295B1C5B118B083ED9647B7628603C0732DD962036F58197F5EE25152EB1C720B3CDA0C1925182D2EFC4780B0BE3C95650D3EF5057D0808041508320D6236A9345D8C6F480217CEB6D6A5BDE0956244E28074CB6A906A2B6E58802190025B4EC02ADE06395966F13DD90BA0A6C2C0282F6C6A305DA829E7EE58700774476A80715FD4BB8F22AFB5C45A408557C1C6A2A5A35405B31815B3F88401ED839281A4D5D550AB6182C4ECED2F4C168AE201002405603C07DF492B79DBFBB9217D69F75054246902A00A702F93D4245406DD065FF63C660D8125818A447EA3B49CAB585569782FDC36EFD865129EC64051ED17F56AB468335D8F5100412DCC5532C779601F78720A99647036D40CB310156045B4A151B2CE1482DD46344B7BCBE9A10AEB0C686C67D42A8A2B7822F672451839FF00F6370471B3DB2DD5BCB08A7C151A32E960C32402DA08291A242DD9838AA69C4A7FEA15221C18258B44B34B5D623770B41642806E55C75378C022CE98F0403289ADF00E1A0CEA577A49DD580293DEFAE231936115FB00D419AA3752FC595C7A85C776076F4537D0470216A9DF2AFF002698AD4B4B04EB4DA9685CD2C32001574CC9F0155A79F16CFB9078E0FC0813640F05C5886B40C17DC269355BAD452E6CE7246C9DB4AECA22950BC6E001E8D3096011AEFE0FCFDE37800002D5844D4B4E266762D8B3C0471E988563B68A09811D0CC988B1B745467983A558050EADE488BB96830142AE4D58AB989ADE5456FB2599317556DBF983D6E0457821568A29B270DC1883E3D660537E08CD6CB4CB830C0CB0D1CC010162BEE667BDAA3FE03B7B7CEF31A8D3892142E968A51C32AE87FA406F098FC19B885578541B8A39C529809216D7D1876FB963114A07433160B24FB7106C78FBBF85D29CA78532A2B1022D926CEC2082305A02FCC6EFB4AE1A0712B856FA62015D02A37BCAA99B85A125E20B76EFEEE1A35A02F4B6597F0439043CA03F1D3A0A7CE7DF3064A6D50B22638D66FA97AE8977E36687638BA813DD60A6F81348338743D667FFDA0008010203013F106287A884B0F104F6F0CDE732AC660A105352C0DD1F8995E1E337EC9C242E30D9EA0C5D1B5FDCB6A6873A1CC2AEF3358B8097822D6C5985008376882DAB983BB9616CB1997B0355108F0FA80078495B3751A20D0D32CD86E5C26C5B012C772AB7AFFAE0E65B1551047EF37E21D11798066A3DD4FE013FB8361FFBDC7C1908481788A2C8202D2895134AFA798379E1EC3FF93B53B8E96A484B4100B420CCB0152FD502FE8F32934031F6E1EEA26341BB8B7EE05AD2097516C9624CAC2256D392017C411869202ED242870B869F71BA2C480B2EA2A62BC2628F26F9D6CE6FD47E8A8CA25744C20372990F3B4CF9E625100EA3499604DA6897115CD3AE62A82BCA0B694C1759F04697986514C4713CC269CDE1D31572DE710B55A831189C788176AB81B5CCBA6425BB8535288108C1A0F772EC3C9C4273FDE5A1B1E572AD20102C79E23707DB719444488B42884002A20621F75CDF2581E210442615602346204635A4A28CF2CCDB6B6FEBE2FD7D3C7B8C1B2F02AE164A79844669CC2DB4B208B3539225293388C3B834394680DCA22D419218CC131BDC65C56CC9EE67CA7837ED8AC2A1F7F979F5092CB0492FA9640304CB2814AE272E32C2C8D74EA363D45151BCCB72AA89003132CC38811842A3E4F9A4CCA97C253CC075136586A16ADDC52C2C90012067C42B305DAB3A958AAEE2F00C2A2B50DA1836A810802863384210784BFCFC0340739BC27B88ACBF747F72CC01F1359642BB62B54F517312CB0B925403710F0BF99C30713A818064B4A23758DCD47A8BCDF02774E5205650BEA71FD99513B2095A5AEE004C50A085D9115A3F88EA2E0742BCC417BFD33007E216FB9ECFB88707730B50DACC7B0BC99695FCC37461FC12C51BEDB670EBCCAF09D1DCADAD54B0871391886B317BB5C6B8F8A34C882B6B52E4CAA5B005332D91D44D6A6E6959556C4EBA44BB9A7F880D89FB9D80FA229C0100B7B823500C030E65402296ECF93772F0510E525D8F706C2CB8D705D4075707C59DAA495A0F33450EECE238F3FB9E747983A86B12FB4BED06BA3E0747C3518C5A72C8CF282056E36E1CFDCC425870652A69DC6575F1F07FFFDA0008010303013F103EF4E167B83DC3B1DCB7043383CC64822F2478AD3F7113C0F3C43E9A47F980EEEAC0F73179B37DAB2F61FE125269DDBCC5880614ABE2C9F88568DBBD334101533D6A7090D1C10444520612B104572435B45C6A6090F0963AC440D3D43498168432E003C426B098B2E381CAEAB1F71C09ADAEE3E7C0C46287DD22C2FAF5FD90A4A53533029618CD7DC2D2366F51CC98144CA2CF5FE41E3AE3984E658FF11EAAC32E11B7820277E63144B1D9E2548C9AEF301DBFDBC451AC15FD8C41A32F6CBE86A35A711D315AE18B1D711F4E2530A8CB8888E65729ACCC79A7BFF60C064EF896512E640527314F6B320C743D7F3E2A012943707814544B9071CC5364517842CC8B38315BE662B8218334BB8D9BDDC4FE711A1ABDE2671BF5155C896E57D40ADB3F5317C7EBE22C5B86A6C9A798AC9479DBE63415BABC7DC0A8F866A515ABF8942F3FB83C9A83963532A51332A5D69A06212BE565CA12541284DD822C5E40C9632C18A0C6188319508E40B72BB17F10FB1125430B6853A2358241DCAD915DA28744428D901B11C3BDBE8896D0B7BF856201687FA872829539AB222608941DC65D3C4117121B8C16E0F586A55B412F97E884EA3B5B63B0A4BD40AED7F108E330C10B6296FEA21903E34C1A95306B7E0940352A07E5015C479EA16D3943585EA0A1C54706DD724C2B5AFAF8F90D222D3B98C688DAD4A7BA4FC454D258184660D706E0EA045B89A736076DB893022FAB12929220607FCB6345338AF313F13104044889F88FF28CD0CDDF5DBE16A4DA1EAB2FC2E625209D46076CE106E79E28618325DAB6C8C28F7179F48B0348F32D5850B20D85AB040CB8C5F4BFF2579ABF50C0C0802388BE1837FE2541E129F5A7F315602EDE22DBEE05397F5CC5A1A043FD4558E0F330B029F31EE111080BC4CF70E1B96501885B66F5D419A4B29787FF00B2AF826ABA398074011F20277316EDFD40032E8A99C82DF36FF528CB712B3CC7773FECA0B7E2292E6D8B62121A970B81F6AE6538F8499CB0099B93B7966536CFEA14625A98895A3A63C26E597B4652971C4DB8FE1FFD8031C97E04FA2164CB473E21EA83F3CC4AB60184440A4A125A60FEA6A797E015A3715655F5787F695EED8A6614C782010534D57DBB94F5838E19452B63D30BB5BFF50EBDFCE38844D50B33DE2225F30F80AB5EBCBC4CBD905369EE207166EFD25EBE2AA0D32F35FF0038CC2205A3B978E8140FC95FB835C11F8963528B663CD54293AFCD46AC59C9C57DE2213BAB78FBFF0053DC7C7FFFD900'); + +# ---------------------------------------------------------------------- # +# Add info into "Customers" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Customers; +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ALFKI', 'Alfreds Futterkiste', 'Maria Anders', 'Sales Representative', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany', '030-0074321', '030-0076545'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ANATR', 'Ana Trujillo Emparedados y helados', 'Ana Trujillo', 'Owner', 'Avda. de la Constitucin 2222', 'Mxico D.F.', NULL, '05021', 'Mexico', '(5) 555-4729', '(5) 555-3745'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ANTON', 'Antonio Moreno Taquera', 'Antonio Moreno', 'Owner', 'Mataderos 2312', 'Mxico D.F.', NULL, '05023', 'Mexico', '(5) 555-3932', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('AROUT', 'Around the Horn', 'Thomas Hardy', 'Sales Representative', '120 Hanover Sq.', 'London', NULL, 'WA1 1DP', 'UK', '(171) 555-7788', '(171) 555-6750'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BERGS', 'Berglunds snabbkp', 'Christina Berglund', 'Order Administrator', 'Berguvsvgen 8', 'Lule', NULL, 'S-958 22', 'Sweden', '0921-12 34 65', '0921-12 34 67'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BLAUS', 'Blauer See Delikatessen', 'Hanna Moos', 'Sales Representative', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany', '0621-08460', '0621-08924'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BLONP', 'Blondesddsl pre et fils', 'Frdrique Citeaux', 'Marketing Manager', '24, place Klber', 'Strasbourg', NULL, '67000', 'France', '88.60.15.31', '88.60.15.32'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BOLID', 'Blido Comidas preparadas', 'Martn Sommer', 'Owner', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain', '(91) 555 22 82', '(91) 555 91 99'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BONAP', 'Bon app''', 'Laurence Lebihan', 'Owner', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France', '91.24.45.40', '91.24.45.41'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BOTTM', 'Bottom-Dollar Markets', 'Elizabeth Lincoln', 'Accounting Manager', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada', '(604) 555-4729', '(604) 555-3745'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('BSBEV', 'B''s Beverages', 'Victoria Ashworth', 'Sales Representative', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK', '(171) 555-1212', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('CACTU', 'Cactus Comidas para llevar', 'Patricio Simpson', 'Sales Agent', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5555', '(1) 135-4892'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('CENTC', 'Centro comercial Moctezuma', 'Francisco Chang', 'Marketing Manager', 'Sierras de Granada 9993', 'Mxico D.F.', NULL, '05022', 'Mexico', '(5) 555-3392', '(5) 555-7293'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('CHOPS', 'Chop-suey Chinese', 'Yang Wang', 'Owner', 'Hauptstr. 29', 'Bern', NULL, '3012', 'Switzerland', '0452-076545', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('COMMI', 'Comrcio Mineiro', 'Pedro Afonso', 'Sales Associate', 'Av. dos Lusadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil', '(11) 555-7647', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('CONSH', 'Consolidated Holdings', 'Elizabeth Brown', 'Sales Representative', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK', '(171) 555-2282', '(171) 555-9199'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('DRACD', 'Drachenblut Delikatessen', 'Sven Ottlieb', 'Order Administrator', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany', '0241-039123', '0241-059428'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('DUMON', 'Du monde entier', 'Janine Labrune', 'Owner', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France', '40.67.88.88', '40.67.89.89'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('EASTC', 'Eastern Connection', 'Ann Devon', 'Sales Agent', '35 King George', 'London', NULL, 'WX3 6FW', 'UK', '(171) 555-0297', '(171) 555-3373'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ERNSH', 'Ernst Handel', 'Roland Mendel', 'Sales Manager', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria', '7675-3425', '7675-3426'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FAMIA', 'Familia Arquibaldo', 'Aria Cruz', 'Marketing Assistant', 'Rua Ors, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil', '(11) 555-9857', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FISSA', 'FISSA Fabrica Inter. Salchichas S.A.', 'Diego Roel', 'Accounting Manager', 'C/ Moralzarzal, 86', 'Madrid', NULL, '28034', 'Spain', '(91) 555 94 44', '(91) 555 55 93'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FOLIG', 'Folies gourmandes', 'Martine Ranc', 'Assistant Sales Agent', '184, chausse de Tournai', 'Lille', NULL, '59000', 'France', '20.16.10.16', '20.16.10.17'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FOLKO', 'Folk och f HB', 'Maria Larsson', 'Owner', 'kergatan 24', 'Brcke', NULL, 'S-844 67', 'Sweden', '0695-34 67 21', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FRANK', 'Frankenversand', 'Peter Franken', 'Marketing Manager', 'Berliner Platz 43', 'Mnchen', NULL, '80805', 'Germany', '089-0877310', '089-0877451'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FRANR', 'France restauration', 'Carine Schmitt', 'Marketing Manager', '54, rue Royale', 'Nantes', NULL, '44000', 'France', '40.32.21.21', '40.32.21.20'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FRANS', 'Franchi S.p.A.', 'Paolo Accorti', 'Sales Representative', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy', '011-4988260', '011-4988261'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('FURIB', 'Furia Bacalhau e Frutos do Mar', 'Lino Rodriguez', 'Sales Manager', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal', '(1) 354-2534', '(1) 354-2535'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('GALED', 'Galera del gastrnomo', 'Eduardo Saavedra', 'Marketing Manager', 'Rambla de Catalua, 23', 'Barcelona', NULL, '08022', 'Spain', '(93) 203 4560', '(93) 203 4561'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('GODOS', 'Godos Cocina Tpica', 'Jos Pedro Freyre', 'Sales Manager', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain', '(95) 555 82 82', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('GOURL', 'Gourmet Lanchonetes', 'Andr Fonseca', 'Sales Associate', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil', '(11) 555-9482', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('GREAL', 'Great Lakes Food Market', 'Howard Snyder', 'Marketing Manager', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA', '(503) 555-7555', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('GROSR', 'GROSELLA-Restaurante', 'Manuel Pereira', 'Owner', '5 Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela', '(2) 283-2951', '(2) 283-3397'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('HANAR', 'Hanari Carnes', 'Mario Pontes', 'Accounting Manager', 'Rua do Pao, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil', '(21) 555-0091', '(21) 555-8765'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('HILAA', 'HILARION-Abastos', 'Carlos Hernndez', 'Sales Representative', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristbal', 'Tchira', '5022', 'Venezuela', '(5) 555-1340', '(5) 555-1948'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('HUNGC', 'Hungry Coyote Import Store', 'Yoshi Latimer', 'Sales Representative', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA', '(503) 555-6874', '(503) 555-2376'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('HUNGO', 'Hungry Owl All-Night Grocers', 'Patricia McKenna', 'Sales Associate', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland', '2967 542', '2967 3333'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ISLAT', 'Island Trading', 'Helen Bennett', 'Marketing Manager', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK', '(198) 555-8888', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('KOENE', 'Kniglich Essen', 'Philip Cramer', 'Sales Associate', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany', '0555-09876', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LACOR', 'La corne d''abondance', 'Daniel Tonini', 'Sales Representative', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France', '30.59.84.10', '30.59.85.11'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LAMAI', 'La maison d''Asie', 'Annette Roulet', 'Sales Manager', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France', '61.77.61.10', '61.77.61.11'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LAUGB', 'Laughing Bacchus Wine Cellars', 'Yoshi Tannamuri', 'Marketing Assistant', '1900 Oak St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada', '(604) 555-3392', '(604) 555-7293'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LAZYK', 'Lazy K Kountry Store', 'John Steel', 'Marketing Manager', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA', '(509) 555-7969', '(509) 555-6221'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LEHMS', 'Lehmanns Marktstand', 'Renate Messner', 'Sales Representative', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany', '069-0245984', '069-0245874'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LETSS', 'Let''s Stop N Shop', 'Jaime Yorres', 'Owner', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA', '(415) 555-5938', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LILAS', 'LILA-Supermercado', 'Carlos Gonzlez', 'Accounting Manager', 'Carrera 52 con Ave. Bolvar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela', '(9) 331-6954', '(9) 331-7256'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LINOD', 'LINO-Delicateses', 'Felipe Izquierdo', 'Owner', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela', '(8) 34-56-12', '(8) 34-93-93'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('LONEP', 'Lonesome Pine Restaurant', 'Fran Wilson', 'Sales Manager', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA', '(503) 555-9573', '(503) 555-9646'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('MAGAA', 'Magazzini Alimentari Riuniti', 'Giovanni Rovelli', 'Marketing Manager', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy', '035-640230', '035-640231'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('MAISD', 'Maison Dewey', 'Catherine Dewey', 'Sales Agent', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium', '(02) 201 24 67', '(02) 201 24 68'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('MEREP', 'Mre Paillarde', 'Jean Fresnire', 'Marketing Assistant', '43 rue St. Laurent', 'Montral', 'Qubec', 'H1J 1C3', 'Canada', '(514) 555-8054', '(514) 555-8055'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('MORGK', 'Morgenstern Gesundkost', 'Alexander Feuer', 'Marketing Assistant', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany', '0342-023176', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('NORTS', 'North/South', 'Simon Crowther', 'Sales Associate', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK', '(171) 555-7733', '(171) 555-2530'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('OCEAN', 'Ocano Atlntico Ltda.', 'Yvonne Moncada', 'Sales Agent', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5333', '(1) 135-5535'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('OLDWO', 'Old World Delicatessen', 'Rene Phillips', 'Sales Representative', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA', '(907) 555-7584', '(907) 555-2880'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('OTTIK', 'Ottilies Kseladen', 'Henriette Pfalzheim', 'Owner', 'Mehrheimerstr. 369', 'Kln', NULL, '50739', 'Germany', '0221-0644327', '0221-0765721'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('PARIS', 'Paris spcialits', 'Marie Bertrand', 'Owner', '265, boulevard Charonne', 'Paris', NULL, '75012', 'France', '(1) 42.34.22.66', '(1) 42.34.22.77'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('PERIC', 'Pericles Comidas clsicas', 'Guillermo Fernndez', 'Sales Representative', 'Calle Dr. Jorge Cash 321', 'Mxico D.F.', NULL, '05033', 'Mexico', '(5) 552-3745', '(5) 545-3745'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('PICCO', 'Piccolo und mehr', 'Georg Pipps', 'Sales Manager', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria', '6562-9722', '6562-9723'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('PRINI', 'Princesa Isabel Vinhos', 'Isabel de Castro', 'Sales Representative', 'Estrada da sade n. 58', 'Lisboa', NULL, '1756', 'Portugal', '(1) 356-5634', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('QUEDE', 'Que Delcia', 'Bernardo Batista', 'Accounting Manager', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil', '(21) 555-4252', '(21) 555-4545'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('QUEEN', 'Queen Cozinha', 'Lcia Carvalho', 'Marketing Assistant', 'Alameda dos Canrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil', '(11) 555-1189', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('QUICK', 'QUICK-Stop', 'Horst Kloss', 'Accounting Manager', 'Taucherstrae 10', 'Cunewalde', NULL, '01307', 'Germany', '0372-035188', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('RANCH', 'Rancho grande', 'Sergio Gutirrez', 'Sales Representative', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 123-5555', '(1) 123-5556'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('RATTC', 'Rattlesnake Canyon Grocery', 'Paula Wilson', 'Assistant Sales Representative', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA', '(505) 555-5939', '(505) 555-3620'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('REGGC', 'Reggiani Caseifici', 'Maurizio Moroni', 'Sales Associate', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy', '0522-556721', '0522-556722'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('RICAR', 'Ricardo Adocicados', 'Janete Limeira', 'Assistant Sales Agent', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil', '(21) 555-3412', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('RICSU', 'Richter Supermarkt', 'Michael Holz', 'Sales Manager', 'Grenzacherweg 237', 'Genve', NULL, '1203', 'Switzerland', '0897-034214', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('ROMEY', 'Romero y tomillo', 'Alejandra Camino', 'Accounting Manager', 'Gran Va, 1', 'Madrid', NULL, '28001', 'Spain', '(91) 745 6200', '(91) 745 6210'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SANTG', 'Sant Gourmet', 'Jonas Bergulfsen', 'Owner', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway', '07-98 92 35', '07-98 92 47'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SAVEA', 'Save-a-lot Markets', 'Jose Pavarotti', 'Sales Representative', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA', '(208) 555-8097', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SEVES', 'Seven Seas Imports', 'Hari Kumar', 'Sales Manager', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK', '(171) 555-1717', '(171) 555-5646'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SIMOB', 'Simons bistro', 'Jytte Petersen', 'Owner', 'Vinbltet 34', 'Kobenhavn', NULL, '1734', 'Denmark', '31 12 34 56', '31 13 35 57'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SPECD', 'Spcialits du monde', 'Dominique Perrier', 'Marketing Manager', '25, rue Lauriston', 'Paris', NULL, '75016', 'France', '(1) 47.55.60.10', '(1) 47.55.60.20'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SPLIR', 'Split Rail Beer & Ale', 'Art Braunschweiger', 'Sales Manager', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA', '(307) 555-4680', '(307) 555-6525'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('SUPRD', 'Suprmes dlices', 'Pascale Cartrain', 'Accounting Manager', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium', '(071) 23 67 22 20', '(071) 23 67 22 21'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('THEBI', 'The Big Cheese', 'Liz Nixon', 'Marketing Manager', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA', '(503) 555-3612', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('THECR', 'The Cracker Box', 'Liu Wong', 'Marketing Assistant', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA', '(406) 555-5834', '(406) 555-8083'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('TOMSP', 'Toms Spezialitten', 'Karin Josephs', 'Marketing Manager', 'Luisenstr. 48', 'Mnster', NULL, '44087', 'Germany', '0251-031259', '0251-035695'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('TORTU', 'Tortuga Restaurante', 'Miguel Angel Paolino', 'Owner', 'Avda. Azteca 123', 'Mxico D.F.', NULL, '05033', 'Mexico', '(5) 555-2933', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('TRADH', 'Tradio Hipermercados', 'Anabela Domingues', 'Sales Representative', 'Av. Ins de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil', '(11) 555-2167', '(11) 555-2168'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('TRAIH', 'Trail''s Head Gourmet Provisioners', 'Helvetius Nagy', 'Sales Associate', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA', '(206) 555-8257', '(206) 555-2174'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('VAFFE', 'Vaffeljernet', 'Palle Ibsen', 'Sales Manager', 'Smagsloget 45', 'rhus', NULL, '8200', 'Denmark', '86 21 32 43', '86 22 33 44'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('Val2 ', 'IT', 'Val2', 'IT', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('VALON', 'IT', 'Valon Hoti', 'IT', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('VICTE', 'Victuailles en stock', 'Mary Saveley', 'Sales Agent', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France', '78.32.54.86', '78.32.54.87'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('VINET', 'Vins et alcools Chevalier', 'Paul Henriot', 'Accounting Manager', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France', '26.47.15.10', '26.47.15.11'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WANDK', 'Die Wandernde Kuh', 'Rita Mller', 'Sales Representative', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany', '0711-020361', '0711-035428'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WARTH', 'Wartian Herkku', 'Pirkko Koskitalo', 'Accounting Manager', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland', '981-443655', '981-443655'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WELLI', 'Wellington Importadora', 'Paula Parente', 'Sales Manager', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil', '(14) 555-8122', NULL); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WHITC', 'White Clover Markets', 'Karl Jablonski', 'Owner', '305 - 14th Ave. S. Suite 3B', 'Seattle', 'WA', '98128', 'USA', '(206) 555-4112', '(206) 555-4115'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WILMK', 'Wilman Kala', 'Matti Karttunen', 'Owner/Marketing Assistant', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland', '90-224 8858', '90-224 8858'); +INSERT INTO Customers (CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax) +VALUES('WOLZA', 'Wolski Zajazd', 'Zbyszek Piestrzeniewicz', 'Owner', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland', '(26) 642-7012', '(26) 642-7012'); + +# ---------------------------------------------------------------------- # +# Add info into "Employees" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Employees; +INSERT INTO Employees VALUES(null,'Davolio','Nancy','Sales Representative','Ms.','1948-12-08','1992-05-01','507 - 20th Ave. E.Apt. 2A','Seattle','WA','98122','USA','(206) 555-9857','5467',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004E0000FFEE002641646F62650064C0000000010300150403060A0D00000DC7000014F800001FC700003018FFDB008400030202020202030202030403020304050303030305050404050404050705060606060507070808090808070B0B0C0C0B0B0C0C0C0C0C0E0E0E0E0E0E0E0E0E0E010303030505050A07070A0F0C0A0C0F120E0E0E0E12110E0E0E0E0E11110E0E0E0E0E0E110E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0EFFC200110800AA00A003011100021101031101FFC400E60000020203010100000000000000000000050604070203080100010002030101000000000000000000000001030204050006100001040202000503040203010000000001000203041105101220213113063022143234350723154041163311000103010505040703090803000000000100020311213141120410516122132071320581A1B14272231491C152D16282B2334373247430E1F192A2531506B334751200010305000301000000000000000000110040012030506021104161121301000202010304020301010100000000010011213141105161718191A120B1F0C1D1E1F130FFDA000C03010002110311000001AD5B446C1B5EC6C4AEECC7412721D247155CD9D4E3D06495374259AD2C0FAF8AB5A19FEF767D1FBBBC122002E2AE0C0C9E013598523A3BB6890E9898B2D956D39A6CCD8B204631D4C4DD8C3076AAF9DD8F1C048F1AEAEABD1CCB6F032BE6553811E355AD9B45D1C61BC71C5BA549605B5F4C3B7C2489B5883D91C7BB3EE3A10A30BDF1EFBB8F2A4790F69A7A360D6D17F9A083531A331516AAC195558A0AF6296B3036B6216AE6784EFE59384173AD79DD2E267ACB7D4D0B673775B8ADBEC5022F46F92E3062ED1BF5A2ECD1DAB841AC5567A1755F4B360BA1B8AC92A204D8F7BA6C251271B3F3356DDA1B4D7C967B1448BD121AAF3885AB6E9F55AA82F66A25ECE3D52C9754967572A415ED4B4197C984E24E381167646C595535493505E6B9239C66ADE615423409B92BB0673FEAF9E1D283E646A8ADBF39A9C8D08B01236BCE31A51F78DD187E8F5CA0F317B6394BC8B6D620F1632D1A1A436F65AF40862AE78BB9E5EBD86E44A1EBE1454585D85C70A5AEBD66887754BEF03D416334BD1CAB51B0D946E11A7A0DB628147D4C2666494A0B670D6965FBDD6064EA14DDF32092F009B96051F484132AEAF61DD397E81F591697D222D562A907AD73CE0DD732FC276CA1016EE01D0CE8135B354B2E1A588091603A6DE9EB1D098FEB148D29B09BD06D896730DD9A71E0C47A9AC2497FB19998E95D18B09D05555CF9E832CDF419ED674643C2A6E0894AFCC7F4E72BB96668341F61496D4ECFFA417157B7354C2DA72231175AD45E1CCD3A89D7EAB25ECA872560243AADD831B176E26890AFA0ADA103E97B0735DCD6D00AE1B449D13CFA6869B9610A0AECA9C8BA994FD1594B54E0F44470D2A743A3AD65665B30057136D8F1D03F1B4DDD58BD9A7529BCDC66CACA825571FA78547DDA35CDECADBDD8F18E3821863DD16ADE031B563E3E92E34B7C6C3AAB41A201B5F47D04797CB728FB28E655C93A587A5889A4FA3B5F70394311DE82355684F33D22CDC8DF295EE1D8B5C41687556ABB99298AD7095144D07A38C74A65774A27D895024A157BC761198ECCF1BCAF40ED8FE9969D53E902A18E04133189D1E49DAF3D16697F767EC1D9F76FE3542B427C94DCCA93FA1B0F6DEE99534AE0F39ECD7C9D07B2E052126609E7FDAC4AAAF66EDEEE9A53ECB8F26B2B558DAD4C0B7F776EE8B73A8922B960C055BE82F33EDA6F0565D9964158C512E67F3AEE79CF0F5C716746A9BF11A3B8918F01393F0ECB832C858C569919A389F4B617A5B6E3052468C084E0315CD3BFE547B90DA25D6507603B4913B87A7B866696CE36DF38E1EAE8D7A823DEF1BB32B6EFFA76971570041D4D6C79EAEF47272EEEA983DD22733117C079ED9C396650E9F9BC0AA0326BAF251ADE27EE17066ECF4467E82EC2D2D467CDDE8FC6C0640883D4B072DF738746D8EE8328D11C7FFFDA00080101000105028E6056C6D0899EA59192A5F70B7D1764DB2E62876B23541BD6B5336CC9CBDD14C8D6424666F572D05C83D770BBAEE177C2BD297BC150C9D4B9FF006D883B18A08E5475F2F531B9A610A9FE3955E18B0E855885E9B85B2ADF8F265765DCA2F28A99FDA44C3850CB92D6031CB41C0EB685872B1F1995CBFF003D66311D3B2C31D791AA42F0C2F93B7E4F74D7C5723B501AD2E5650529EACE694485A50502E5AFD6B310D36E3F020727EA61729754C8D5ED6C6F1B2A93D791B31327E4BEB5AD9B05CAA780ACBBFC7C431F673A75A6AE0CD56A795566142321A1632A58B2ACD5EC36F4FEEDBC0EA96ACCC255AC983A2BB0FB13A0AD7E84D1D8B9DD180AD23B0A8CA1F1D66A87180827AB324310DCED20B136F1B6C83E4B5927597690092310A112B23ECEA49806138F9AD2B4FE3EBE46C423F90C4651F26FC66D7F98D79CD0D9C5705FB0F861B95EE6CE561D1EAE2B37F4FBA5BBA126B7630C9D5416239A29ABFB3261581F61CA8CE139307675184454E56D99E5D5D3A158497F5F1B1F6A84926B67AD0B9CE1232D559649779A3A376968BE0B0D7B3FD9BA50D801C2A73163866C45EDA91B96B9B85A3D3D2B35773AF66BED43FAE9C7DAB3AABFDB769FE4976CD1D17B742AFC462A4E144C0CD5CBEEC7EDA15D8E4C898C5F2AA42FE88A6B8B4EBA6EEA6886651F64C307E332326D6EEF491DBA95F592B6C541D454014746295368B5AAC33ED931D350EFB9C0E1A78B403A2B51F4B0B4D26242E53FE9B1FAF5979FAEB96238EC51B551B118662A84F914E66F50E0E12F50DAB718E9A2DBC14ECBEFFBB055FC99211229A5F2FEC56D076BFCCAD737169D2A954E3FC9D32FF8D58FCCA9B1D6BE0774C2A52969A363ED8E6F2924F292A412BA2D5557286AC5137B00A477592E122BFCFAEC334F528FBD522A2DAF1CB1909DE6A66E4FB7FE7F81D3D5DAB7BF6B28BCED69DABD0355698C6EAD297A9A711B7FDE0749037E4361DFE93773ADA3DB524D6D2B0CA7F2FD9CDAAD37E3DAB126B58F8E1727B41E1C13D803FF00AFE66CF77FB42A472C5A6D339DABA52870660AD74A03B67ABABB0ADFF973AC9F5FEFB4BFDC7B21A71C73BBC99F36BC0CED2B28A3CCCDF273A6AF2CDF35FCEAFB1D9D3756D6CE5D56AD90E503D4764B98E83DF0ED37631EB26C54A22017246430ECEF3F617E37A1C611585853D1EE9FAEB2147ACB2F3A38036BC8D92B3A9EC5AABDC6154EC34A8DCD2B2117B57F64FC8FF12A50B9EF91E49AF40F115F8244305616161755AA7749E5ADEE46FAD82D7D88541B69A355BE427AFF00B8B520D86D6CD1A1B0BF63656E094C32FE457C212610938AF72580D7B71D868281E2ABBACF0C5EE4766B98DE034AF60155AA80A28C307CE3E43FEC6CA8D8E91FA1F8B6BF59461A34223B6F83D6B2361A0DCEA8711C8E8DD56D899A1CA36BE4572F3693F4F209EADDA45EDF61CD2C6E143E4BE5BF23FC1AC4E78F817C77F2E78E2739E22FF0C96AAD7309BD5DBCEB74FB1B32C5AD8E05B8DA7539CAF82DCFC8A32E3A4CCFBBD16C3631D3AD7EE497AD2F8DE8A5DF6C6A3E8D28E6919F812DCD5C17BAEEEAC738D66B61C656B3E37B1D90D6FC4A9EB9D61966087E4361BAD878FEB89CFBD3BB0AD9C12FC9F95ED3DE99004AF8DEAA2D4526CAF1142DBA9FBC9F595B670D2F8CBFE4F6BE32C669BF90D5FEDF69FC5BFF0097F9B7F21C7F5CFEFAD7ADD455EFDEAD7FEF9FE9BEFE075DFF00C361FB9F917ED3FB2BF98FFFDA000801020001050247C7D57558E0F11CD9FA79E3B705159E30BD144FCF84F8BB27397BCBDE5D96503C10BD0B5D9FA04F0E77002EABA22DE03910B19113B0793C958521E421C1088E23394D18527AB0E478E4E472515D7CD98CA94281DE1287127AAEA80594D72714382D2987C9C882D2C77608F07977AACAC22B3C05944A8FCB891AA13829DC4B21098ECA28FA80810BB270584CF07FDF0461C8F130F363F08C9E45041613B862C72537878E0F0F6E42CF20ACA3CE505944AA8E24F251E1EBB780159E005859E1DE94DBE44F9B472E59560A89BE45A79CF2015D1C9CCC2EA9ADCA098DC7808455A67DB51C019AC624E071D90E1DC443C6F6A1828D4C18E13977AF19585D1752833868FA1D78C29C79AC700A1C65307D4B238CF3959E00F1E7C330FB7C50B393C765DBC6EF3E08F044CCFD79061C8F0D098DC0FAD3FA9478819FF0274539043D3E87FFDA000801030001050243C60AEEB2BC90E26871E36F8B1C80835639963C1E31C0F17551C68D65F8EBDB2BA27059595FA839B8F037C4D8D6308B97B857BA83D1F34E620B38330C8E5BE1842011451E1A535CBD54C305C533CC11CB3C30A08A77213576C0973851953859594DE07308E3B04508C14F8F0A36A2380E69520C10861C246F529BC0E583C8E49EA070139A501820F916E50680A5F3E1854EDC84DE2080384D1F5299E8E458F2BDB4C202ECA50B2B2B2B1CFA82820A9BBED9E2EC84472DF4722EC2EE9882990E5A9C3869E1A9AA27F529C103C3DAB082737C9CDCA11F9BB19C2014EDC70E3E49A99C4527DA3CF809C1108041C53A528BD61043D6C3B271E4E767809ABFEE341DE65E091C382017B6117C217E4C41326EC647FDCE761176548FCF8014144EF395A48862FB471204C7E1318D4F604005DBC94E7C71BF864E9F38EAD3F6828AEABB617E423304F932827BB27C6245D82EE155765A46107AC2735158584FF20F6F84B7C545DE6516F1D975057408E0271CA2163C25A88F0553F7F1858E0A9DFC80B08C68B08E4845BC6146DC129AEE4A99FD47007D0C657B7CC672C0870E38523FB143C785D51479ADE8D4DE2CC9C8FA051F0554C4C453BD7E87FFDA0008010202063F02D306246C7F19CD888F4D47A5F9666119D10E95177FFFDA0008010302063F02D30E24B114071DD2CD52A6AEF8E4202D946D0B5C47101A45632D34061377FFDA0008010101063F0246978BBBCAAAB10CC3C366DB0056B5B4F4ABC7D8572B9B6EE3F950A8AF1FF059DAC3FA36ACB73FF0BAC3EB46565ACC7876E980D962AD2ABA8D14ADB95115A382CECE60ADB15EB9A667A68AC687772A64E9F1CC86719D9F9D7FA0AA789B750ACCDFD93AEE1C3B476D02A6FC37A25A8370758AEA9558DA6ABE6E9DB5FC79566310A70A9546D7E090AE4043B06EFEEDEB31B1D70237EE28B1FDC42319C2E3C3B04F0EC6772C9A7157BACCC9AD75BEF3BBD3452810AB79C7AC2F0AB9728B1104647EFC11176FDC8B1D63EE3DF826BC9B1DE2084F1F8D96D9BB1EC1EC18D8793DA80E1ED599056F608C16478E0D424DFF00726BB1C7BD74CDA0FB53983C3876681646DF8EC2EC6C43B45D2B835B89280D2564A580B712516EAA234F131F4C7674CDCEB5A78A6CCDBC5FE9EC50273B1036B5FBFEEB155E68D68ADAB2476B3F1159BA25C382A3A32C5F2D6760ABB72CDAF97A3A41EEE25558DAD2F908FBDC9DA489C0BF729348FB9B6B3E1372E22D08175AC772BBBD64C2F0786D205C51EEA6C01318300844DB22C5074F4B3172B226E4A5EFCADF6DAB9A068A62CA11F68404228D2AB8204D4D5D4B17460D1BDDAAAD7AAF35FBD7D5EA6C23C2C06E2A0F358C787E4CBE9BB665F75D871543FB465BE8DA53B55AF73830BB2303385EB242FCF03866638A1DEA3EE5589B57E0AD7E46836006E084434E19ABAF3EAA47F52422EC458BACD928DA5246FE2DCAAC35A628C6FD96D572AD6E9E9698CB9BF132D1B2A9B26EB0AAB6E28A2A4D37EF2293353F35E1366690C9582B529A1F75531A9ADC1078E53C17312EEF54C111B915995BB1CDDE08F5295BB9C47AF674CDC551537908A6CEDF0F8646EF69BD69F2782402AB9703626D5350D86AA6EA5841C772018EF964EE2BE4F88DCABA8CB9B0CBB74FAA0C6C7A8EA74B4D9685EE88379F391B8AAACD80AF632A6F96919E78F943314229395F96AE63BC5C2ED810DB9F2D1FBC2E7602A8D140A815463610A438E52054D2FB2F5A4D147A8EB49A48FA3334781AF1B9D8AA8F13CAA5EFC4ED042A7E2BBD2A77EA39B5C1DD36549A3585879A9F105E4FD49C03D373E47935CE3A9757827C7A77545F5172AAB6ED99E4395BBCAE9E8D86571B0598F05F2A37B6DA5B460F5A3D79A36FA49F62FA5D36AFADE695148A16BB25379770519D649D49FC64A967D300752F2228C3866F1703C11258E2F71A9277AC8F6E5A5DD98DFC69F62D6F9799323E50268DB767319B47D86B45A497494C9A7CED8D83185D4B7D0E5FF2CDFDB89FA61B5B3A407312A86FD8DAF723A694723B7589B2C5A99A91D7A07378495C9ABD4135CF46CBEF1BEF0A923A479367CF9896FF0095B44D8A16D5F5CD2BD7A141A21EE0EABBD360EDD772EAC4E2C70F0B9A6853619F4ED133A2E8CEFBF316DCF6D6D69DE8E9B43D402CB64770B6C1628A61BAD40A14437AA2AD083C106D5D4575A9D23CD18D152780536ACFBEEE5F845DFD856334E0AC15EE5CDCA38AFA7AD72AA8B900EBD5F6762F4DF2CD2BBF999ED7D308C7E55D297C781ECD0D878AB3B397076CB172DA3662B92327D4A5D6EA888E2636B4AD49380526B354ECD2BCE380DC9B20C0A0738B6D0AA2EEC586ADDCACF16EEC30F1D9C0ECB9556E0BFE3B4C7F9480F39FC4FF00EED818C157B8E5006F29926BA164FAF88897541B19D4BB9BC3137DCAEF46276823E848D3CCE8A18E3657F7761CCE2BAFE587E925F7B4F2D48EF6815202CFAAD3BBA35A7559CCCF56DCCD342ADF1ECE509AD6F3497D97261188550ADDBF49A577F3125951805537EC3E6BAA60E845FF00AE1E0B81907BD945E1BED50C80BE48DCD2DE9006E37BA91D1A2B8927B93DBD32C8A0358A6FA5696378451DAE278951EAF50F668C4D4649F570FF00372EE1C87977A7C6236E9A06D040E8DDF57338624B5D6F61AE8E32C67FB8FB022C76493502D399D6346F29FA385ADCB4B6461D91B4DECE43E8D8763A426E09FA87E37776C6691BCB05F349B9BF9541A2F2F97369F265859A78FA9636F7BCFE10A4D46A22F309B471BACA9A3B54EAEE6DAD6D70B0289DAA9A6D3F9DEA474E0D3C8EB34F8DAD0683D29D0F976A62F35F362FCD23B557405F6FBA2EA7723E69AA6410EBCB840FD467363A95219CA6FEE545D46372422F7B9669586792999D23E81AC59DBA563DE7974D1177FA8AFA39B461BA99AD9661BF86D9A1C051C3D282AECFA18CF2B7F69DFBB6505E99A12DEB6AA46F535718765A666E639BB8594E2A41E61AF8B46C83E6EAD9A5BE2845AC8B35B85FBD4BE7ACF306EAA321ADD2690BA38E2A5F79CF427D6993FF00D934AD779BEAF9216E9F357A723A980A0A0E354D8349A2D54CFD6BB36B678FAA4863AC19492456DC568B47E67A6E93F9B2C324858D89ADB8BDB0E6B5D828D316B7E3FBD796FF000FB13FC23DA86C729FE377B7669FF8ACFD60BCE3FAE83DB12D57FF004DFF00AA57FD6FFAB77FE25A4FE33545FD445FACBF407B4AFFDA0008010103013F21C63B9C60FF00A12965B72CD56D84D50146B88414CB1BBF797FEC66AEBBFF00999AA5BCE0FD8C194B97F91968C4D655F6866439B747D98FB94B147D7B4FDD9DFF00899609D2444A0E6CDD8E2511475EECD35DC0E6D836DA6E4D3CEA66B12CD67BCF8D03612845F54A1E1E60A5CA2A986FDCA8D2B27807D42D375E413EA7CE26500166F2EC3E97CC5A8BCEF95DD19BC7B9D03A25C78B43D26A5A87407ABB9541938A66D2DF6CE3B5F12F41B2AF1DF3106D91766FE238CCF0DC0A51B95671DF995CA26ED7C0B2E42E5467D2E673999FD98847F4A07030891BCEDDF897DF5EEB831AF4650FB328B6C61330D46F3D897E4673937DA1C7B194FA431332D71DA62569B7DC8EE8F62602B5FCF12F1016F18F79D9200E5DE5E443A6DBDEA62D57CF4DBCC1A0D5E53FD94F88F91E2F68A0CCE2D5DCAFA8EE732BAF5E7506B01DBDD19D940AF672837CB32F93368CA1E52BCCA88235308DA835B83767A5D678845D0ABE2DE20218A6117832F0E7C89DD86FD30B859F2C7714F72D436D8C45100D77C9EA4B4F6F6EECCC77BFA97611D12AC6541287668866E491743640A8EC2A1C31A0219AE3F009FDC3AF2510F946BD4F04BA3025B306E05FAF6E908CE31CBEE8A45112B13C04341EB0911B87B331B67819F31259C6AF0C449E2834CEE55925A3D1FF00924BB99E868ECC15692CEF9946D37FFCE5598E9EC8FEE33ACFB92D331994F6CC7C26CA989E151B4F38A1F3368161F318A7B2EFDFDA255DC5BBAF596A2E8AD71C6E94329149EC747BCD8346734BB9451706BD8005D1DEB5898EE81A6AA7C2111C05F1E05AC4C8ADDC76C9BEF896639B5E07E860AA5E1BDDEFFDE8B8BD547C910F9EFAF02D897E85EF29E1F49F4DFB9E49587381E056E3B4282B8F157311B0E0956AC6237C40A5549301D2ADC9DF73701B5CAAE588C863BCC0C7BC42DDFB5D105C29EFB6676AEEEC5DF2434E6100C325BC1F0E20D9564A350AFF001FB9E8A3FA8F54BFDEE67C9381D0008F12A57BC4173C7D128F00B89FAA79466E22D00C389E826A178B63ED349C40F54B2A2FB23078545A14C738D2954D475D432A234F68FB80A3B9999E6F48C611F3950985BBC946CA4AB65A2E502FC74858CDE16183B1BE11A689C9997BD5456C10E58FAB94950E9631F71AA9993E8AFA41E0CD6B3B96BC35792EA568E0DC501CC9922BAC4C9F20FF0050683BD4E383E75AC277C45C6DB18E594454E364CA9F1F1056584E0C2597C47E426F03EF52A0E472747210583E9285B0CF33882AA68146CD2F86E591983BA51392F7981343E195664F9E3561F1304A619E614AB90C09CA5202C9561C037A94A3B18CA00AB0707AC1FDEF43BA7999E90F7BB2843B5C718A5B8CA9489FB0488F0DCBEEC3C6314C5655197F0276FB8E79D9AF94764A0AC52E6BDA0A01B26F6720D060EA004AEE60FE1E1DA4AF44BE892367F6267E33D6A4B4CB4F46D8F22E66D8207385120174253190B7ACEA1CFF00C1DE04C4C6BABB5C7B5DF763DC81C875691BC61F882C3F7439D847DDC0FDA6502B912C368F81029CD15A966383FA44CF283E7FA901E85D291898B95C00EABA61F1598C4784A11524FBA22CA20D8585B017BBC8CDBFD41E90A4778945D6310597B18530FA91DBE48308F77FD607B06DE6FCCB950F6C17341694ED807C4E262B8E6368279CAA54B19C76B5ED11D3EEA6013BF97D11B2CAE7CCC87E7897975CA09A3A1EB16DFF00C999257B842E9317AB7ACFFB988A946365C90709C4C1662396480ED09E212487A07B72BDC9705712F74478981B7658C16346E1C8E4D7D627DD73B4C3175F621C658806E97D80F04EF1D3E9CCCDCC3912EA5882DAD2465980CB9941C8A5C1D728083049D9F0CABFE712D09C93192DD1699414F040AE9CF6949C7068FF00A8B89308DB29404BEF728F99D29A734EE4D82051A94B2177DBBC66C0BCE94A66338DCE18602E5D674F7AEA3A9138706CE8A55606DD1F31F62E16C01CC7DF427A2152885F38FF00B31A29E9B27B427C0DF98311296B2AED605CB670AB429753F51A10894852B6F6446528C409BADA3E5B48039345B86686C216AEC07C2886C9AC726CF617E7A82E0DC6D172861F79DAC999DA04AA5B162DAF6F12CB2DFAC47F7BCF38521857688B7A772B757AAF88E8DDF1EDC3A3F89BDA9650F2E212FB2C8E7DC0262F95DD4B428A384415D381A07306675EA497C7CDD619EDB9C6040A84018C2C0B4E3B47C5C54342B165C31982C05BE26747507F44AF1F8A17BF301B91B6BDA9230002858B34B9EB62B905F06621E676212F55D45D8DBA7C3A1802D6025F79CCBA967145256DB471D00650DF54E16AEC876C6322E1BC2F447B4676CD9C8B7EFA55F8F6C75D99372B2ADD93D654402A9416F4781796FA4FB3FDCFB38FBFFEA7EF7F04BE9CD7F9E27F64FE4BBBF121BF27F0BDF3F80EFD766BFFDA0008010203013F218BF2A8CAE2A372D29330B065F4B97D18F47A10B2907A5319CF4394A74EE5F4BFC8C5849C1132DC4F78F494740BB8947F07F11E8AAF46BD40D40983A7CCBF32A8740E58752BAF12A54D6812729D5E8E205F530E91875328AB0E97973774547F19C541CA22FAB294B04DCB2074C9D87E211688AE0A25D63D2045B2E0CC70C4562B46584C2F79CF40C5312ACD3A5740934C474E95789A85409A10958E8474F3D05F84C6D1C170AF4B368C1D484E99C86A38F40AA8F40F5949CC30CBA4B30E858574197A1E9BC4C1B94612A0F45E9B2158C2E67D28E252A2E1299712693022526D3844017D48B96F43DEA9DC43BE0E2C144BD6FE361644A731F9F430BB0A9B3A2CC408F74B70BF329E7F7053D393FF00834333284D29053224A8437838428899941F81F8314F45123719BE929718B1B8371FC2FF002C372E1164A9625E0DB894425CC4BEA45FE172972E5CB8BD282DD54B6105BADC1E9715125535D0BEB7FAAF4A952BF025C61D01EAB1983E8B195F9D4D1D461D5E65397ABFFC7923D09BF55B4D5FFC7FFFDA0008010303013F21866A5C3F0A61356040A984A8AEC952A54A95087A54BFC150214094E853345A952BA2A6D03F00E945E85CD43B5052896E86A8623AFC36FC0212F801D3A20A59042C59E86984AE8C3D425CB2007E1AFAB21D096CD4953D1EA3F19F431E90F13DE4BE89195B2BA1197F04F4C30A08DD08CD43120560EB8949BC4DEA6163A8BC063AFE028F4AA4509521BDCF5471D00615DAC56E0A5F4CF337DA1D7748C190DC38C55A88DACAF78FE217654D93297229858A8C1CC198AEB5C8846F980CA0AE82C2DE8DA0C446A3D36943D2B18BD45B61926798A215D069D3815285328CA57847A5219DF4A3A1742437375B8837398FABBC1740CF4664D50B04ACAE4A8A3CCAD258B1B206EAA6530E8AEB3DED4232CE691F81F30EE12B5CB16CAB447F0F34608A5A5BE63BDFE92584751793EE52C87C7FD80715EC7FB1CCC26BFC15D78A2A3641AA49809B845E431CE17429D32F4F3F07A5CBEB7389E93D0B47880C7A22CB414D1946BA5F553F2C8837D0A49E519AA94AE2A98A5A27E06C53F0A64B2AFA95514E1FBF509484EBF04B255D04C4B7B4560C1FC03E47F3B1F834401B810EBB788421712DE83A5FE226149A7E078A0E9E25B87515D2FA5F4271349B4771E9A469D4DF18757A109FFFDA000C03010002110311000010498D3166E2D5968B2EE595D3269EFEAC56267A86A4EBAE841541499143A2FA471539C67CF05FF8677A3644FA424CA16A889A4EB3AEE39A122E38709C212AF46DDB76C4AA87F468B46AB07595C97130DFD1ECC92D81C7552E0DE2BC52FEDDC0B2DAE3CEBDA1FB4D83F452831461BF225BDCDB38F3C3745C435E0E56A0F584BA2F66093ABD730C9AD11DE92EC1C4204909F35504C5C83CC3474AF5592E5EAECF13C53BFB27BEFFDA0008010103013F10A01A6D63598A747619B2A15E3707C5A59ACB0207DD46E34695B05EA871C312F267509517E219A611A0B50FF0A0A6F57B0798902A4B0CD2D570210814C01A7D4C09059A155670D1BEE4484637092F0EC12CE6336C593EC51F065E1BB641B1E51CDBBC22EC0A59CE799B77338B12B14AED2E7668B5ABAB612A35CB0A109C2E50775D99A1990B19018E6E98ED991B6EC00D0E72415050D500F40CD608B87C05ABFA960E0D615930C735F465D7B79987859D6270A8C70CCFE63340FB0CFA44A05801A864B29B235265B2081D9537E2EE18F6A8E19597828BE732C710B3632F94EFCC734C789C929423CC6B7BEE554DF6460B06914118280D1B3B1AD579609AB5323505D34F111AB19652961371B047B1A2894F262A219C2F98D78577F333A4BBC4F471307F4B205A620BEE3ED0C341838E0C4B39BA6300E88ED2AADA73EEFB413165B5477881BB06EE5C0DA21A3EBB3CD73DBC8D94A094A614DEB8616F62D39B47ACB51BC06DA883C5CED9A8D6BBBCC45CB5D128AB78030E45CE2BCAD55C1A2A2F0ACB576CF598675D32B2D9D856E057149CAC68D191B65CF06553A817AFFC800FB10DC39CBE6B7F3846B4C43D0F0E7B454805E39E083BCB5DCE4B5A3B575627AC455EC5AC8A942F31AA2FA94286BC587C39825B128A4656AED59AE333FEF0EE20425FDCBD2CC12E63C84B780EEF78DA8058589F0B5757ED3588C58063F7F504D466050958CDF79586C97A20371906B2C7BA412231358442B6391C951368140820BACF6890975168AB7B1851E613A97BC97961DA40FADB51AC0A1EC9FA98211B74D32E2AA676A9BA566B83D1C74B74833F2D7A8905499D8422634771B0367F51C58E5E2690142EF8BD80A989148A6549933DA35CE84F653292C358B33AC4C0BA95865897B2A073D68C0ABCAF88548C62220099AEF2FC9802406EBBBBB4B58C6EF7533901628B0C7A04F521ACA99C50F86777361151161EA1F771491A6895EA593B536B51E0DC4576BC47922D0C2DC66A11281860032EFD628A46D6A036F17369BC195CAB699DC2091612B4AB00370E156A06CA38EF07711AB3A2D81ED2AA11E266AA8BDC106B2C64D6712FC4130DAE2A96D1634F6653BCF825A0F387E650A9CA39C368FD9507FA35A1D2571829E670EF0759FEE4AE1C46405D85E90B6B88C2CBB0594F6D9B83177F5197A8C06135F55425F613CA5FDC226C056CBDA0D8311234AD05BA29B31B9E65B204D0146EA555C48E1716429EE84A90D52B080B77F32AF3B29C8D6A64DCEBC8AA200E1CF9CC7AD650660D1AD8A706C221AA047A942B5BB35021572B2EB6EC1F744B4856A317AC843B225915D20D2CBF03BD30E392C8A33765FA546C1A429B9571FE1652A179A205ACA467235734963C6BF48768CD5EE2975F71ABB501A06F358CC3CCA7883B0381BDC6DAFB72186007456A8E655147D960080504B400607362E498C18BE22AB6227679A7D2385B98B7D45A7ACD1E4F044E5A14AB4F55CC781ED25427922A80A4C2315914FEA39F4456C237BDC229940A0F3E903A34C2FD9FDC70A5D0E7C08D6995B3008318DEF128B1AB818B6B9CEE6956D641E71788B5602FEC07EA3ABDDC1ED77F7090CAB564500D2C0ED8C96A0A6EB1C4A96B2D5AA306E6BA2AD9E28C625F82D3E27A23C9A3FD3CCA2041644E653838869F956112334A30AA806196B114ECB1DF19FDCB20D9DA0C8DB35D90BFA8D3E693C14AAF896FEEB7DD980E4327999C7DDF1102DF309384C6CE02EBC5D4CC408D5AF494864959BCD8DFCF9943590CC475CB5062372880143968BC414D949805001EE172CC69D46940FB90380110AB662DBABEE276490235D2DB97BC0A5CC60570507616C06FA2812C368AC576950B813428D17AB816B95ABA0A6BEE508BCC234B1639F0CA97823D8FF12E62869EC0D5C4AF1088B92534A7B54A8A293892E8899E19745ECC8EC4E21A584A112674CFA42982BC60B1F2EB2CD10474C7C8CAC29730795BC9E2CCCF1E128C9F30C0AEB0BD71CC5D5CC521898670F0B63FB86B26E9750C15B19E224E0B64BB41836EF0198857880A7415ED1A5611AAAC6C0ED11A9171B3EF2FE8C5487228678970746015B8E3DE5B40FD8BCE0A8B01EB1F1FDEED5C47A382186EA786F504A01B52207425FB8CAF8AB530F7C7AD4AB0AB88CDB8D7B431D79BF90FF516129749302CFCE1A2D91CEE8DEEA52327B1DBCD5C42584EC1089E8DB6657454A5744230353B1ADE6242E53D958AC01661CC7F2996C96EB02FC449EFE70162565618CE894D4BB211E10C45E808F916BD20B7BF23D30D225A0E6300352A8920B6E7163512FC09756126606B94D313E11D9DA2C1DE5D7D551390C7F32B1E9772AC8B0F5192A96A1737F5D05870774662448008B14B790335ED041F255ECAB056DE4E2527F5086EC011704565D017B105D5006CBC1F62FBC10AA86188C9E664CA1B8846FDA51E7017E865B7CBEDE64C092C0F99C8E05808336ACCA703570C008AAE1A6B091F3A5C614D79ED0718E439CBAACE480B29520E16EA6B4DB129C62C8A436B60716D7DF68B06E35E78CD0BEEC0E64A136E33C893D4092D77282E9C6D20DFA894A2CAD98DBD012DC9086187FF0052F3163CA0B816386F922A8398F2EEB8986CD9A5F6399840B6F6F6825ECC11561B7EE584A94376B1C8E35DE5E5A612D2A0A6EF4C319DA41CB6847631C9B72E7C4CC02E35F337507AC70C033B388222702BB6C6AEBEA0C1E2944D05B10C091D5D88C772195156B703B11A0D3BDC0FDFA427D4CFE2061AE90095C40181683BE0A9BE0362FC9C59298ED0015A6BF988D0BCCB3BE6A3BD12ACD9AE1FEE040EB05736A5DC6C8531751ECCB135DCABB60AB5014AC5417614071781C047E6920EF7A18EE469BEC0561792EE562E62C447B24A42D4170C11A605EE8166BCC084033B48F882E6231FB9C68173B0F7C43C3D861C080773129758B4BBCE66A26222FA016FD44A9257732735555712A1C338572BFDCBC46EADD15F9B28F3110158A9678CE55688ACFE7C0454B1C1C9C9662F4E21F6179F4BB14096022872290E4C1E51E08C3ED24DCB780A6562E38F58D19464F0DE61A16AF7D0CA7883796FB4BC205A610EEB1140979832D936D4BC367DC2994AD545F62E95B7F48B1466B257D665E2CF0C36358C3CEC82FF00242D602DF038F31FB35595195576ACB118CB8A08231B360A7924BB7A3A0567CB348B556179728E825ADEED65C4159AC9F70C8E14952968B22C232A148CB4A08EB6C6397115015600CAB1413588CEF8DBD8960804FB9D0B358B2091CC95CCA60F08DA32D64BFB8C145572C037E92B00B31EB1F52C7018A99DCCE0F2B800AA65A8E9D289C2B4AFDCDC3E4B7E3262E11107BE884EF38550E14526F9C32C9CA1D0840A7813850A390ECF8DFA05A94094B4098453DC44EECD14E0CB0696CC569141D2CE45A234291A016ABD82374888072856F59A3949A8AA0617609A98682D3015C9516F8F1C083441DA5AEF30DCB0C787016FD0443C63FD416590FBC7FB168CE57C5470A6D6B14CDA2EB6F4560901B570105482B037373CA0E68A8DB3C9EA7C014D89C4B6091CB22BBF270D88990C0A8525D82AB6119158C5C3ABA2B4D20439A58736A1631AAFC8E598C37B3C3F75FD93EC63F93EC9FC8768DB021B67F2BDD3EEBF7357A469E9FEFD2573F92EE84E401FCE76CDB3BFFFDA0008010203013F10BAE891832FA2613DE765052B814B34C4375A4738B0E85C589B74189599DC886A1CD018A887E223CC551B73036F32A74209BB972DD290E8C35D00E61B2744A6B8BD282C296199C1BE9C10BF83815D19C64C32CAF5379053316D444A6589ACCDC805AD9138883CC2E5C76C7ABE5629A8DB26D1DF4194C133C48D4CFF007153172ED2BFB21D378B51D2E5DB63AA9BB154B2DC45F42A971E2516623A21B4A1F73C88DCCC90211BC58B210620660459650E8CD2C6A28798D76CE25C062533CC171C463E33EB08C19844E60C8F4DC32CE32CEE14D588D5A82B643361D3975E09508F78353A985BC41F70AC7736DC7ED35D026A50A1EF6AE6D21A72EE59560CCE0012CAA4D70CA96956C44B770020D88AF310A18C55CB1D83E3A0684A03DE367C930E99DA0054010E12EB50155104A6E52A305E4984B7D0D421C3D264A9B40A9335335732852398C43804CB304DB20E68622025670B291CEBEA1B6AE16D2284205CF333D914200EC9D41AD39377889371CA2902B3D3296040C558954352DAA94E03CEAFFD8AAE50B772D72E20DA2D5231847CD673973F11AAD960E33CF8B96C943F3D1897441B9E21C05C4B412C290822DCA60B518E2D30480D712E4AD66A6254BCC45462F112A1A6B8F7F68B4B6DDDBB3CDF8841F72FCE6885D9312885ACDC64D3F51402B593EB6FA8146DF48DD116A3B32EE5D449B892EC902CD5298EF81B0CEFDA1E8A7DACEDE678465532671C0538328D44DA5A494E40951A969512259398278209967E60E0F88BBDC155328A86C490A2497A095537D0BCA9531095314F10CAE619771017861CC9DE6391930C81B8A988E8A71D50807A5F530AB30A759A0F351790E25E6FA3AC03BFD47370BC3A542ACB8E8827A493217789C4B12E66E3DAE8CC000AE98A52F49D67A248B9677394B5256A6D158A47786037380944CA1150212E54C41F267B4F074D9532FDC7FA8F88B302320BD3A3142E074210DCFE7886BFD879A6EFAC3A3F7BFA9B4DA689FCDA8EE3399CF421D3FFDA0008010303013F10196C0A4CBF05C4EC9576848CE21FF17058B9FE6A6D18F4BD612A99417D11B80ED2A04BBA96BA8D73BB802EAE347246CE2C8AD1C8F1DA3DDB3529C7486060B12A3A3025E451322D425DC621F620B88A3532631FA85B3A859AE215FC204A8C17D572F95706E54B498E1175D4438110975320658E0F089844A83F186B886B32864D262C52E4A58704B993262B29E44BF398EBA0C082D8B52EA399138A582081BA83338299819F08B5177E960218E5751A92A1C316631B2751E431F5DC779F69948097333652A425C806A138165DF0B8AB1C432305E71AF4889B8F309B09B40B4257CA72182AB88ECC17AB4CADC4B02E5D98312B0D206D99475A4836DB14A4D5F3FA4D22CF456CF89BFB32C0F597490BCA6220F58DB97EF99520AFD4DE74E85931D2A8A665DAF6838948A82EF20FEA1E91E677C051C8CA03484E2A097AC4F2508C0445E772D462336BBA5B352B398E844A5951453327986F31E1F30506837E91DCFC4AEC40C22A15890D5228909599A837C2AFAB01C902EFDA0AB67BC73FF92A5D77958982A2C54CF52D00387A2517918622D2A5D32CB5AA80E5B80E7A389CA4F872883FCF32A2ADDD5B02B351316A1C19532AA7799C12E8879BC87EA6555514E1E32F996D6EB9E22824824B1A080E8A67731D19CC17E87EEE680725EBB68E6531A35EF3C9A02265948941328DC77320BC4417CB2F6F93B77F981CF7C7CC64440F3AAE711D438B9942355C8C7156DD997F90B4A7E7FC400680F1BF36F9210CC1D9DFAF78CBBF3351B8E4840B8C6A66534A0368EBEBEF331247078DF985D22AB936D1852DC45A84E72336EA5C7C7A16F533085198ACC4F3436A5A771FA971D6019C301711920312D9A552BE6CDDD19AD422C8338E9A97D33D33C779E832CB78830A132153B68528D1142EA58866DC450D42BBC1254D4EE3B9EB572ADC6A64891180CA08FAFE7F097365F77F538A9572A6A2FC45BBBEA6E33E9D44D319CA8C6211BED703BA92C53286510CA57A5E22AADEFA724B08CBC63311755C4C4044BBA0E8C4C2BCCAFF00188DBEB8EDF1153D713BCB60D147437309A8639E9A985B449A66765660510DCB78A27DDCBAD86C8B3744B3995D0044A88EDD328D77E9236CD3B9B7A19FA5FDCDD349A93CDDCD99BF477D0EA69D1FFFD900','Education includes a BA in psychology from Colorado State University in 1970. She also completed "The Art of the Cold Call." Nancy is a member of Toastmasters International.',2 +,'http://accweb/emmployees/davolio.bmp','2954.55'); +INSERT INTO Employees VALUES(null,'Fuller','Andrew','Vice President, Sales','Dr.','1952-02-19','1992-08-14','908 W. Capital Way','Tacoma','WA','98401','USA','(206) 555-9482','3457',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000500000FFEE002641646F62650064C0000000010300150403060A0D00000D0E000013E000001EA900003004FFDB0084000202020202020202020203020202030403020203040504040404040506050505050505060607070807070609090A0A09090C0C0C0C0C0C0C0C0C0C0C0C0C0C0C01030303050405090606090D0B090B0D0F0E0E0E0E0F0F0C0C0C0C0C0F0F0C0C0C0C0C0C0F0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0CFFC200110800AA00A003011100021101031101FFC400E500000105010101000000000000000000000502030406070801000100020301010100000000000000000000030400010205060710000103030303040105010100000000000100020311040510201221311330221406324142331535233411000103010503090407080203000000000100020311213141120451611310207181912232420530B15223A1C1D172337314F0E1F16282B24324A263344474120000050304030100000000000000000000300111211020314050022260704171130100020201030305000301000000000001001121314110516171819120F0A1B1C130D1F1E1FFDA000C03010002110311000001D0940FD5A7E47EE818CF98F37B8533BAD92E9C71832E498B56D0DCFB9AD91126F73F6D7D5B1E08BAD7B22AAF99D51FB34E548F5AAEF2FB0A13142B6EBE4233AC4FD099D666D85726A795F516D1B8F492B64B556BD96BABE69584AABFA5D580C6999318133346644D020B00F048DB952ADC0BC5A8FCFB7388113875D680E56BDA9F5DF362C35D5A6A0D55CDC9ACAD370A36BFD7A1A06070CF006586120A5CA0B58A975392620BA4FA48CCABF65FB539D462554449E24F6D2D65955A905C3309004C0C0B0DE6E0848316335598DD5E3833ABB1B8BDD374A93EA980C0AEA0C0921A4F6A7459A234B632E932304C8B0B2EDE442A71EB9123A91D1E68E7F9B65681AA970B97ED5E03A59DAB0412D6F97D2D0D576E5B85BA0B8D1B0340C0803099A821D799A7A85EB6902E873751754BE172BABF65F3BC5A4DC9E1354F99D1B1AAF1EB265CAF43193B312F7B4A97F6B390B606B40D2C1345DA401FE66FBD6E6D8E5AEAD52F9CE84F554DAD87E2FA3B58728C31CDC5771A6AD633767A8AE5D9730A7A8E910E81E61ECE4E7B4FF2F5EEB73AC1799D51C9AE73CE3E91D955AF39EF6F43E65D0A111B353A9A370574656C8395D9AB96ECF005D708164535BC68BDAF336CB84B5526EB9D8794CB54970E2FA87B9F767E8A8A6755841F20701864196F1FB5103B26513C3082DE473D9D53B5E4EE1AB7E52B78E7A0DFD2E44AB3A7D427C7EA890B5061F329D0BBB7CDA58DBF33A787AB85AC77688FCDC1EC71EFFD0E45A75722EA36B38782FD9266B35803ACF13BF6EE7375C60EB683A1E96C4C7D3973072851F04BB61267A2886EC79ED235562DDF9222564A3A455BFAA23AD649E63E93ADA3C6AE9F78FBE4D0074E6C6ED93341B5AD013B2E419EFA4F2F7D286FFAD16B8EC9F54C7AB11F3727553765E57F39F59E9A43C9169539AD4239B3DCF49BC43605086D00EE215FED706F999A46ACB5DB5249958DE84CD5CEBA000F45C83C8FA6EB80F3BD20B708E399ADE59AD4663668EE03174B51BBBC392C73EC589A96AC9DC6EA9F9ACB761F2ACD8CFC9DCBFADD144F0AD277CC723AEC7C1B11AEAA27856744E94E426DBDBFA3E5661B9A4AAB4BB926E33541B1A866196197D43B1C4EA7D606C1C0D2F0768CB8A5FB09E863CDCB01C89894D2F4FA47A3F350FAA1772D59922A55EE576F7D209B522AE88B74F9345F4D8333134BB1621A5E531A5DBD0A4619203E9ED86E274B37E26964C64DAC85AB959D45962895D6FC7788B898159FE3D1FD2ABE33B3A133A047D2F0C88B7619237090FA4698F3BD733CD3F0060A31A5C66E5C66FAAA996BAD783D8F585120739CE7B2A18FB716C50088A261BD09332BA24DC3C19CF2FD438F3FA2C5AB74C18CCB7EB254CBE44D08AF1FA7A0B2AE6E17308BF51560FA86EA08273636D2FAB7EDC556E4E1AA7F43C57468D0E87C2D40C1BEBD9ED2FF003BCD3733FFDA0008010100010502D0697B742DA389971E4B96CC15D5EFB229CC0FF73246B9ED92D8892D8C9FF3C51F3DB476E5B25A0A306F9642C65ADA5D5C4B3D99ACD8D9DCA4C74F1B8636408630164D65248618DF6B134072C4D18B8B5A2CA46B80DF9199B1C58CB192DACA3883D0B0E4A4C5C6E0EC4C6D12635957630157B8996551E23C4ADF9467C946D9CEE128EDB4AB2B517994B88FC8D8E300009C9C9C02E213DB54E6857B6E6586D1F33C433DDDBBE078922D78AE29C28307ED91C7A30AE48BAA9CE4E7549E89CEE8743690BD4AC9A0585979596B4545764B21C5CAD0E12973637AEFA49A3BA878D5B42266728FEAF04F141B02C9D7E25B3CC6DB59CCAE882EC9D2757CB40F9681D7345E5715C8E81C15D4A443F5E944B8ED6A81421F336FEC6491626DCC42F64918DBD97291B6EB259C06DF377F1496792F96AEAF9F0B6E73591E6DC96524661AE324F337799C6E5B8E89B05A576029B23989B753490D83DB22BF33B5B97C37D96E5AEC24F028F193CE7EBD88F8B8ECEFCA8E5B83987AC75D7D8E3566F374CB83421BE275B4A031AF40E8502AAB251DCCF7D87865B6B6255C63E3B94EFAFD8D6CB15696AA265197D6AC9A56D8163A264AC4D68AE5DDE38E627E45992E6B102AA8EACB764E9BD2567109EF6A9EE608859DC36EE0FC5972692B4C64B42A2BD644F8AD9D33E0B3FC588A0F55D02B09DB5698D3EF3DF717BC239E67DDCF71659382CDD9EC9566C85D3C174AE16770278EAA4844A8757DAF40D72E4B9AA68D59A8AF7E2FD365BB38D9595B9CCFB1B87B6B2B62F9FDB7F6335CBEDED5D037C655AB24B79EBD66BB642D839175B5557A54A28E8D5CB8B3EAB7A65B9751CFCAB259837EAB9A9DF1FD78B6DA3C4E35B1CB698A8656DF670CF64F7CADE40273BC92D8B47188681108E8C4E67387077ADB1CB81EFF001F211B782B8C9B98C7E46D254D6C721642C2C3EC175351ADEF62F50F50B9208E8C59EBBF858C94FBB0FF00632D6DB4EC9D9C6A2E2C8CE64C6480F8648842D591BB82C6DA1B8F9912B27F5824E9E55E442608A0A26B5ADCB64E6C94F275D313F62BBC5BF1998B2BFB775CC2D125EB1326F23BC8C8DB9ECDBF357B8F88C562E56B251D0C838998046E9807F60D5DD47075CC97C78B71A993B91547A2B7BBB8B47C3F69B9567968EE109DD1B7EC39E65CC585C73AEEE4F4533E89B71456F92A29F25ED7643935D9173531D64C8BE4406F7393D87F5321E2F79AE85382E4A8104D0BEA9908F1D70F82DEE8DE60E7736EEDEEAD1D0DCFBE7B8AA61A895E2B1BDE228CE4BE7659993763AE2270D5C7421513535596427B5C8C1F2A780DCBB9437E6564DF5FC3DEABEFA9E4181EC9AD54B3B797E500763FFB5BF8F18EB1C8C1E19A414716955474A201057371E3970F2639A3C934C2E263048CBA92904FE452B61BA8EFFE836B707EB9FE7CFF00E966BFF05DA9FF0021DA7DA15FFF002E2FF924FF003B11FC98EFF46DBFCD9562D7FFDA0008010200010502D8E3445D5D00D8468D29A7AFA04A24B8AE4B9AE6B92AEC081F41C9AD468BC754615E254D392E49AA8987D03D4BBB00868753A075103540D0EDA68DEEE4D55D4E8515551229BDB6BFB04F726B90D0EA7588E91F6DAFEC9C5355112895C917AAEB168CEDB5FD8854EAF345528008B7408342A046899A0EDB4A63EA89F7393486A3282B9203926510E29C188A677286F3ED7FEAB822D544C6F4EC6AABA47DEB57EF91A8F7680AA9CE099EE43A07F7D289A543D5C37C834E6B92017146AA88843585BD37BDB55280DD005508BEA8155D9132BE94A8209AE0516D17145A02F6EAD141E8B86A1794A2750A2654FA32BA8139A82017154D40518E9E817271AEA59540F15CC2E5A81C437B6FAAA9DDE345B4544D1443A9DEF93A7E8C1BA9B23E8ABB827745FA311DE7403A7E482E61731B1CABED8C847D18868421D555725CD07A957ED8FBBB51BA3ECFEC3B9EEE410D3FFFDA0008010300010502D8C6F241B4F42409DE8815428002805C5715C553572288F41889402F251099791072AAE8884FD1C10DE3A0622740821B084F144687D0726A2A880402036152E8EEFB5BDE89A116EA34086B28D1DDF6B3BA684740100805C1535974777DAC40D157A462A8342F1A0D459454442A14549DB7B7BDC4218A9ED8E8BA3D32DA8885249D427F3A33C89C13FB774778687407B51364A2F2145C9C7A83D2A8E87F16B4361DEC928C4535A9AC253DBC4FEADED445141BC8DED1ADDF0B8A2831358BF11E4694D635001553C5114C2AEE4ABB7C2FE26AE72FD2372797141BA15C972A82A4938B7D068A9BB8F804C29EBCD22F952A6CB33916947A68F353E84668EBA6736208A6C4106D1172E49EA67F16FA38CB7F24A54F02228AA9AFA2E68A2A95372DE327A0C6D55A45E38CE93428B5712B8221156CCA9BB772977F150B47245108F44E6828FB57309CE4C88BD4CF1047BDACA2AFB98FA3AA8E8539AB995409AD09A164855BC571D69B3F72B77738F47E842A2620AF9DEE751A9DD550AE2760A2E1EEE0563DDD0A2D55474E280416424157A0A9A16AA2E282FDCB1FF939053A1DB41A5FFE48F6D1C8A0BFFFDA0008010202063F02DFDBC926B8ABEC4FB4C69D9B7C9F31FFDA0008010302063F02F4A49F14910A336751D8B7339290D645EC190D9BD90975D1B0E35C8EA3030258C4FDBB273FC4A3A10A852562E70A4A5D29639485216956B938D2095E24A27DD67FFFDA0008010101063F02E662E91FF86C68A945CE706906B47774845CF95B2305CF165CAD7B6469AB738B3F82B2D63FF106CAF997CB1F26469A8D8762D3C97010D0EEDDF4A90799B98FF4D1AA38B2FF008DCE277D6C46137B1943D489F1136377576A6FB0716DAFF285C79230E26D0F757E809CF934F5DE2CEBB7ED59A175FE2AFEE0AA59981B246E050A32ADA10F6A70AD8FF038E0429086F8728B7A289DDCAE6A06545FBCA8E28892F36CF2BBB69B827323B69E3936A6FF00C8AA0BC61EC0B736532582969B7604CE2B32388CD92F36ED2B30ED56DAA9942EE8FA15D4DBB178457154A772972CB97336B52D1891B50606D183C8DC56692D3E56A8E94B5DDE1BBD8333FE1E9CD4EF3804D60146A000BBD83B2121EDF0D13812ECC3CA7F82A96891B5A7EC531EDB88E713B1677DB23DC49DDBBD9DD949C6E4E697671B1F8F5E098285B427BAEBC7389069BD39D836C06BEE43673ECE5A1B93A271AD7F0DFB3729B887B81F48C7BF9D253122BDA98D7798DDD2AC356E0392F5E314C79379E6D15458F65C0E23626B9A6A331A6DE71AB33B45ED4E95ADCB93C112756FF315961706BC8B1670F320C42F165070A8438F2BBA2A9C41B0016A2402E7609D648D186505011367326D70A0FA135BA97B687CAFAE6EA4DA58704E8C0A6F0B4D18A55B1B7339B89A73AAD7655FEC558F748E657EEE3D6A47B6E072F6273F4FA63A89E948C5C3B519755EA9C007FF005E2395ADECBD3F89307486E92A4B935A1EE73C5CD015350CF9C45A360DE8C5A6B00B4A7B9B9C3BC81BFB979A6A5BFA7923BEDF8931CE8CE9A56119E3B9455DBDD557D81C6B4098D183473F49A285DC26EA627BF89BC0AA6433538AD273D3A558BE7461DF7AF59B208DB8D171218435EEF3629EA4CE2C2BBB760420299B6D8AB8AD3BABFE66AD29B9B47BDC3A90279FA7D55D240DF96E1D8E0B712AA55E8BA67801A9B331B958EF0A76FB2A8E519C628806EBC72576274937874C0CA06F0146F9CD6490024F4A1CF3A47D9C405CCFAD1E11AB5872F62732BE155CD40991839B31B1A98DF48D508648ADE1CBDE69474FAE0C8668CF7DC0F71DD09874D94371778BEC5C769F9ADF100AB73B11C84386768B4C5F16C4D662DF121CF74DA02EE3C62CC9E2E90B551EB9E5DA98F54FCD5BE8E00AA5DC504665140C7652478CFBD710EA7F5339F36C546D9D29D4CA731AE6AA113A8FA5EE08AA5F1BB62AA7508329B1AD40DE4FB0738DCD153D4BD5D8F3DE90B6703AC83F5261F84D5658CE0BF53A4F55769E6CD4E1389A53AAE51BBD4E6999A8E27CC71398500DBD2A0C9EB0DCCE70CF495A2A3A159EA4EAE7F0C6ECEECB93757153706368D0C67BAED45B21EC59A500118723DFF114D3EC256569998E15E90A17C8690CD5D3CCED81D71ED4F8CDEDF72B42B2C45B23330594E959506BE1B7DC8BD8C0CAE002CB94742162CA2F7FBB900439EF373F53F2E2FACF6276C2A1D2EB5DDE8ACD36A0E23E17A0E1D6158ADAEE46D6AB458AA6F4FD4EA5D9638FE93800A3D5529C619B2ECE51CB7F2BA699CC6451B4BC979A0B119A5A36BF870B4D5AD1FCA8AA14DCD5D469BCCCC40DC84F04C1EDC771DE89CC2BB11F3515765C8BDEE0D005492A9112341A53481BF13B1795A561BC462BCCB4AF172C79B339F21A32260CC6CBEB82F517B7420B7865A739ABA972F723CBC4D34CE85D8D2E3D21535356FF00D8CB47585DC9A396BFCC2AB33E58A08FE27108E834329918FF00FC9D4ED1F0B53181B58A1A3E776C03EDE652AAF57F27163D4C7571A32478367F4A64675CEF95157811B697AD5174DA8682FF0019DB5F72DC6D1CEBB9642F88CC666819074DA893A37455F383459B48FE37F21B0A2DD440F88EF1F5F25EABC9070751A478CD76379C54B48F4DC3E10CAE17E0A7EE4125BE0EBE84E8DF1F0A588D0C7B3772D39DA76699A0C8E6E29AED5EAC318C19A8DBF2FEE4D6FA7373C8077DF27848DE427366E03C37F1A036967DA1712360D33DF73E1BBB2E59B48E6EB19834775DD8570F5113E17FC2E1457A878BE9D13DAD92FD3BAA0762CAFF00D469E5921EF5B65CA70FD64F1D1D52F1B9DD1FB76A84B753FAA8E785A592DC6ADB0828AB16FE74258724AC3649B028BF51AB7CB296E60C1BED2170FD3E310E95DE19BA70EB5047A19449ABBB8EE167DC7D171C6A0E5AFF00B9E9ECBDA76B531EC7CB2B241F2E52681DB9DB0A306B34DC784D8EE252AD3BFED464F4DD63B4E4DF0CBDF03AC5A99F98E4CFCA77F6B96A3EF9FEF62F4DFC97FD5CC1CDEA5E99D0DF729BF2CFF72D7752F53FDB12B57F7FEC52FF00F38F7047F2D9EE5FFFDA0008010103013F218741A8D10C55F4FA441FE9339F74EE0159142DCB8BFD44A1DE10A714EDF2454E58EEE0AC36772205B0C5D8654FEBC7980BCC3FAD457028764F1607F5110A6FB0DDFE350331C0B19C3F1297EF5DB9785DCA9F359EA3A54A84124232B45F98A36F9945629AC7DDC1DDAA945CF631174EF0287E42FE63A753B163BF98D35B09BEE7C4B1A4EF6B81F994254FB4B3DAF312CB08FCCB2AD66EA2791DEC20D867D488AC1DAB33CA97C5CBE0EB63DD8771067B7334E87425465EFD6AD638506D751E0B7857B3C01D8259D76A95CBF30347BBFE44AA863CAF3C777B4A8A2B86D4284E2F657A4768A94A615FF50E990185E070D7980CEFC725EF668F898A80729FF25D6D61CE8E9A8EC269310EB5D496B42E70D0F6EF31886DEC7A4AB81812A2692B39F10CC1B41638943857DCAE2593159F977FD41A0001812DE720AF33460BDBC7D222E0D0B63B12D1BABE41E901B1AAC33112A74954783A74CEE0F0C41689BABB7A91D07615D0F4D3EAD42B8F985F83D3B7D222C18D2B41CFE2585CB6555F261A3FDF6949BE998E9837881B9A625B7E9289708C42CF596036A59B0D8ABB728259BD9BCF678875B8A1454E4BB01FE43F128C8CD2C5FAD46F8DC706F7114BDC40E832FE0AF6FD4B0447B45F7CB8D8046CDB0E4970169A788B9AD5EA16FDC46DA8F7280D61F7843A6FD23062CF7BB4487ABBB9D08EA644A9C9CBE22BBACB4325DA2DCF90658EDA0FFA54D7931C5F198B997AB16EE1660500BCFA46E2EB421F14622C00DD820F77EE5258DB62DE868983B12C6F788595E3353E585D568982C985BA5CBE83C2977252AF9C68B250E230E5A8AD5ED398BA1B3CF64BB19B294ED90AF784DF62CC55E8577CDCC4521A8159CE5329A3CA544397E68E0B980ABBC16F3C0D7AC51757638503B31CC6CEC1FE9339655EE82A9CA2F7C54431A267D25FCF4062EA57691134C1F9080C8A069B67DE51DCFEBD610A056D3F8108EB1EABE97709CD0A59A7ACD4729282144CEC89B8B6A984201556ABF86BF11C16A57B7A41C5B07CB28D2845F11F76650142D81954211066C94B0FB982CFAC0A26C7E61AF33C470D0F4976C652702A7E68C5B0AB6D6A8B8D977FCCCE5B66105C4354CE93999D142AAB985C50550AC3E08FEEF04588AA146065A5DFA661DB48D723AD779C526C2BDFDE23A1A06325A077559A14D1D9B69E2085AB376729D7BC161817965F4501E606A0C6908710C2FE94C8A8151359A4728EC776068780F422A5E25466252348C041A8E0978340A5F90A9C3890486128AE6318288539013F4CC6E61D55C5BD26E50EF45B742E60E40FBD65FDD5A2A2CD8163588060FF00EC4FDD7C1ED048E13CC880A7BB39A0DAFACA2AFB4B740583A2CCA6E4FD2173E7A0BBF670B998C0AA17933BCF531E1F1460C28DF64E5879435C95D836A162995E5722016DEE7BE05178320F7D5BDA15D09056FBDC43B0EF1FB86878E23D066B704A86A03E8227E26676170DD91AD26BD804610CB84E5699426E49430A6CA8799C70EF11945C83C9DD82832E35FBC11639C265B0707FEC55C583FA8A83060E0C04328AE39CC11CABBEFADEAF48A89FFA4D617F4BC6FD3F31CFCDD730C7F844EC036C07BC2871406A29C8CC6582E206C0E3BA601CABA8DAC516BCB8F68E230651E947086509D45EA161C1BF5E25152D1AE1CB77860B5C8406D108FBC3BAE09429FE2F203654FD80B8A5386FCCC8AD320FE22CF1B1C0195809A4F677E81D8F5981BA57A97FD8EA190F31C3338E225693220EA52802D744AC0E823B25C1EECB76CA24C5553DBB7EE64741A768A8A1C25D712CFCD55E8F6182CF661BA8F90F6B84DE89417B8DFE2393ACB86F9A985B8EA3F40F2C647488C2B9F56220568344A30D6E301EBAFBCCCE30969DBC441CB9801FB52AAEB1FEDFA8E6079AB74BF7BFE76982A51623E7EEAFB6E587AAF86042C22371364B732F6F6EF05D5ABEB3B50F0C9CEA192BC1366E95AFE435190A8D60FDB50206E583DB4621BC70686A3E5625817A83604820E535DDEDFF00AC6556E713CBEFD2A0BB6C53D25ACCFDBE6DAFD8CBFE15159738913F1D40E9C7A198D52E77E933B28252F65784216DE0C2B3B07862A38612EF279098A656D6FE6F6A38DD88FE27E6589DEDEBF32CBCA234376C8B5F8DFDF0CAD84B614C737AA82260B0290F0FBCC6ACAD381874D54ABF0E7E652BCFC468B78EC62C7ACAE8CDD36F82A2D59B2E65628AB60FF6C8D7C755C67259D864F883FAB6CDF93B1D30EA894EC18F21C41147417B20FC90C01335768B8F022406C6CADD51FB4FB9773AA8E1B7DACF47FAE6A6B71D751BE9D31F69ECE997DAF9E93FC046B33AFD8C27FFDA0008010203013F21FA2942507A5570D44B3DE50C0953D031FAE83A429250807AA434F43BCC65847E87ABC4E4658CB740A25C94C112ECCA69D07EBC783A74C47A10EB49625089F495D090EF1622C745DC58A2C714229504CFE954750EA60E9652BAD061ED197FE1874FA2AD439E8F24AE343A166532BA071FE0A5DC6B1AC4B373970388D8C16F409C1C26F2E0AFA82C8F8ED2C515F136DF29A4220876E8B3E614C4DE39C18B12FEAD897175A85B2CA26B72A51B8651A47334CC53B43EBB18306CB10C339986FA0370338E84352F67F803ECCC7116C5D4B2625CB39C7D2612BB778753E9CD61D3340A50C432672A254BCDCB96EBA1F5EA659FA06154AF727311A1E636CA94875BFA489896112A0434435B2CE23122C4CFF6E97F4BD09EE3D2DD7460E9B1D19735003D187D55625CEA5E2CD080265D2A7AA4343EABE89E258AD7D06625EE55D458236981FAE096E13D709D7D23D16C58C5698EE09D1847A3054DCF9B0E7A9D0FA1BF0C2A54DCA60D04957025E5292D4671D6BADC7A253DA1775589667995CE54E20E08E8EDF10D7D7A1BB08FF836CF59A7A9F6CD233FFFDA0008010303013F21FA1D40150E8CE60F5E4831087D7726BA5FD4BD426653D2250C3E93A1B65ED11894E80BF42902021AFF0010DD8B3D25FA518E96CB50043EA3734A873D194A259D00810825AE0DCC3EA1B860FA5A83D35D4AEB38667F5A09866B3700352D96C04A1311E84CFD66D0A0BC064C7B882E276506131B821D9868E8388B9832FE8559442F5A83043C944E0623355CB798D4066550F0216E057C7C54AA090A419FAD32DE26507744D65F1D6A5826374E51C4DD141BAFF03F62CE259884C1463995620B8BEDE8C25477CEDADFEBFC0EC76851CCC5705662161AFF00E4066A59CC00D712FF004A8D90B883F7FE02877BFF00A8350997A62CCC2EE30C59E2154398B7FE0A6EE84134152F10A2A6C47EBE258D658E220D3F842BFB2A235F65CAAE96CF43EBB9784CC1C662C74C76C6364B9356371B336984EFF59D509773FD4C652BA2249D00B457309841198E3FC3CAD43272E586E2D6196E6160D044AA29E1D09277FD7D0CBEA2C4A5BABEBB6271E2674DC6F69DE5F018A455CB47AC5BCF5A952A243599C41111C7438B00EE32D928DCBF8E8A8256BCCCA2A540E83A1733F1828E258B93A317089C7580E9BFC489B040E517EEA25332FA15A62B5ED1ECC6B1316355931DEE2C4AE8A9E9C73873E19422A6B89684B2223D9D1F7FBFBE7A7AFA7A759AF13EC61D37E9F7B1D9BD4DD0D4373DF37E9FFFDA000C030100021103110000103875C26779B4B6D6118B605B47D3625621415D1FDB25CEDD99AF0E0877E3A4B4B360F35FC0B0B03C2A9E9FF1CABBB6B31A7DE515CF495B4F02F8DA995E4F0DA513178DA409ACBD00BD74A26A3663ECACBCA3F21821C4B667FE0BC2F265E6F801F05A6E0D5E4E31A15788DFBA9415A0FB134F542F5520D01AEF53E0818FEF76742BB270B13DD6EC5F3A65671136B30D6CF20B5D9FD1482C26C73FC1E83DEC02BDDE26CAF97BFFDA0008010103013F10832B2A1FD8822DEFCC7BBD6F072B1DD4322BC978878A3D211A6A2E9542AC39A476F314A1185A1DAE4D6CBB0EFC56022A05D02CB90270D22DD42ACEE06C76629415E6979308F2912D4066D740437B8E2DBC8ACD0745B5BE2E2CE741E3CCE2A8B39B3307B2DE547329742C6622306469595A56057A67D113D083B33527DB067A37FF0070544147884CB99213596E8DB44489A89434CC72CD230C8902A5302040706551E2B456D9AD3540BACB6DDF10CC2E4F8D1002871461B7BCAD39514DA034ED063DF70D6C3985A85CA161DDD6611FB010539ECAD2CA8E0825A96E08872D56AD29F134C7505AACD9056D4A379C78005041B1634AF2E25986094C285517B5683B445EC9446850C8B72B4F494370530A82EEC94ACCA0442A24BBCA18A9C3D665B9BB042A90DC25F8C61D8A178146D9DB12ED11DDC514666CFCD6731F50EEC3877A63D48D52CDE4A3ABC6739CCC0E215C21AC28C62BFF00213B789941B73BB51B7D08252520DE1AB479CBF3059783A86C342A9BA1A78D3924DCCDF8702B97711445A49B3B85C9BA3CF925D625787532CCA81577080B82870CD7C1EB16003000BA65BAC17605691D011480C3660C6202438078C40A02A50C8976037CCD0267863480AE08158C22317491C212637C84283EF08A840169AA01CFFE21FC780280E54247662CF9E0DD8C3EC4A81529204B768BDA09AB501BA0B664EC8576FB1B472EBF4ADCEADA31EF02EBBBE621ABF48A12E5DDEA102F6EA1D897E901B1895DDDDB3C80F319577501D2DC87AD577227905D2D3AA5FD82F7732BCE673E2367379642D9983CCBB81284BF882BAE309B2D735825F10CE2BB63200115685BB6CC5BC8EED6D479CBF882DEC8E235B750A5DA32C56F99615D2CC440D938A43797FB1050C92E9C3128C4948C12BA53AF092E8D59C4A29375D48592E32C7AF88338F786E1895B9A4815A4A92025BA4C72F13372ED6B11500B0B1E614B06BEF9082D72988741CB502365A16A618160936D6B6A88B0945B4E63F0B1E81AAACB0AACB5A739F512349AD88406E06B3B7528B90B52DA2EE55ADCF837E8CDA0182029792C2F88AB7B994A8568B2DA8429AE0361BC33C9DA1010561776CC03582B1CD4C602BD898476BBFF00952D1F6F6BB79326BB4CB86C60D2C034AD60CFA622061909A02F96D318CE20E51451642F73F82C0DE6AD70A54BED613158A20D2CB07FEC3119068B6A814C79FEC0F06A71B6B915E1FCA61ADD1B06926CD53F8624D480B4E0D35DE0F8385A5759318B6C6544A38005AD0B6AB981CA09BFD421CA5759D432B71671D9349EB0386E8AC418E03177519758A761100DE74371D5D4FA3A8B00725844ED5AED2B07AE9B571237EF716CEDBF26BD62446A66CC66ADA4AE2076A879B8C8314DF695854A246C702EBCA7AD44915EBB00A381B52EDCC682F7A86850077157DA0DAF5747342CC5E2EF8DB00C08C6F75282F1ABDCCA941B8B9BA156B788B0D42D8C30C3AC5A19E8016F431339ED17A8506CB51EF211D05B6D3132F955F30280BB21783DEAFC1CFA661A58F76F8431F1752B2A35BE40256C649141AD14657566E094B10075A6BF72FB1022D1EDAC6263EE0CE00F3763E88C0296C54E1AB4156B1032E3DEAB0E386E58E56F8D388697B6FDA3D413DA4683AB8D7DFD225ADB0CF787A6562FDE1334207117FD12F6AA51B77D19071B12E711A8F72D5731DE813554F77BBEB2E23E097F1037AA0E71C01CF8994521CABDF22B512A370A6A9055E2318BC050AB5C1F0EA2E61BB92CBF88A0377DE62039576B2BF32CC9690561B8DE752DECA42A410AAC2C231F040D170CD8C36163778F72C025D732B01C6A78B1BF986663B905085B709CC173000237604F1306A0AE5D9BCC56E90B660B05DD5B1B43D0967415BAE9C76A848235C69CA5EB913E1815BCA1E4B0401B4BE082BDB5C1BA1E06C654B862D322ED0ED513839710C98F0BA2A2EC39FF0093014038DC45E0A950F67E28FE462B477986F0FAC6BEF2BA85C3337151BCE3E541182F2C5F8B2391BB50BB12B28236436D994821CA6282F7D8D22F50118E8432A521C4DA60D046A6CAC8002B157064772907B29A3BE21983660A821ABAA876AD156516DCB88E168DE632E6CF3FEE11B0335289100D242E9E006F3B8AC2F77CB92FE664CA5DFE6996610A6BBCC3739835752C2625438ACA770BF04B71DE40C500F1546AD261ECE97E2E18629C0BE069BAAD3DE5C2F6A8FD3984F00798C3C68396C10665206562105040DE2F8C5388CDDB1B512200D056B106F0052612C0A2A51A36F64CE4292B18723C5D7110A802D3828DC5489726C4E1EC41649A7762AA1B530012B8546EC858A2102B8899AB99497800E268C80F8B897CE4A0086B02ABDAE575EFB30CC1EDB8981987D9984E8238359C6712CC0C05105DB8E065BAC819618692E08D41DD95CB82E59746ADE8A1D76ED00D662EB38CE1771EA056EE2DBDF509AE1198C38D9F9203FC1FA22ECF199A0304E5B83504709AAF989A9FB521DCD961672936616FE199B95EEB132578C7C7DC963B26601C3E6B388B58E3105E5D9D0D878176D54A28896ABAD98ADF38B8B0152C4F3BAF3718A42CAD6FFF002583CA30FB71981FA8C777CF07BBCF08707F309DBA17F14CDD343E6A5B4B8565752E2C7A5C57FC86D96D444DC53190DAD3B3DAA1CA741BA9C0029705ADFA5C0EC5FC4CBCE4CA2BB1CDAB1EA0E357588FBC0BEE8B572F21983132072E703E25A28103694D9B2BE63562A0000E54059863B97480761780CCD515442581CAD23FB1096B7270DD3DA0EDC46E0CAF2F3FF3714CE1F9E6E13781DE3641A96E42A9CB7F825813C04B55D0042E16F8D32D48631671E261294F3EA30559AA6ADC292A94EA1C00C057A4ECB2DFCE61AE33DE3645CDEB0DB41561F90DC1C13876DB36FAD48035A6B3BDCA0FAC620A6918DB6AFC2621E644FAA12A9346CC40238868401035805F782400280A00E2A1D8B5B6FD22BCBD7FED424298512FD36A3072D12FF1E2F7106B1B29696B80A88F52B2F7F896BBD4537D219ABC8D66B266268C3CE27656802EFDCA340AEAD4532B442299E5290CC1BEDC1C959ED2B5E6A5253B8BD2857A0D129B0EA65A05B01CCC50A684B0300838041EC186D410FF007352B2785B4696BBBD42C3A5BBDD87235586A68C48B37D8BF6181DBE2C15B878B51A5DDAFB635160B2E65BB9247D986FBA4928814AB8A09C459EB6C35946B40E2A9AA51482A2D14AC5CD4D357BD64482EB43333000BE154882F98DDCC4AE46624F7435712C6A162F72807113942E15950B1B3BEBD63A4BA6325940B3979147699A6DDD7AE4958A6471B94309E6DCB6EC286AF32A6913546D4600EC0186A20E001E513E903DF1D97A5D50B3C92CA0552864CE77A8AD8218219CD5686AB9CE22C2E0852B616A870601E4A71694220622A95E5739A1DA00C5535937250C36DD19C8C0732BE15B4BDDDD5A9F994CF893F0C1C3986D2B0087598D7905AA290539C3E261F18F494816F91BED30ABB39F260CC0D37844816BBD0B7465A64328171E7E928650C2E1E18698568A5529420468AACBB923652D50BB15621374B7C95D9061B2FE9190FE80EEF43A6FF78DFB4FC0871E909BA693ECBD3A63FB7774FC797E410FBDF6EB2813FFDA0008010203013F10A8C3A05CC40FFEC25D4CBA495CB99472DC043C2278264598098915FD049513A15CEE563291D8FD4378988603999E48211475965C6D13461954DBABD0CE253A663D564568DC59706A6A1976B9E9A398E4447A62327DA3E8DCDA2D4B972A2460EC1CCB6AD42804ACA6BA442F12897325711FC10892186A5DE632BAC8A47D2E7ACBF894E1362048BC256C35866FF130CC33067A1AB0971D11C32FA55F423D4B598CE1A86E1965711B62C625AE42019218E552B751CA0223A9B29F696329B89D195D2834CA498B4B820DCB714806EEE2D1CC7A0258CB1BA376AA60B34B920AAF449517A5B0ABCC5AD2BC4C6B10DF9650A6FCCA6597E63495518F0E7314BB2118BE333C4A83C4495D183192B7C7ACBF668FEBFD43F03044765DF46A7343CB97E388405276FB082AD012C23D2216266E3C1ACBEBCF88836978203D698FE918E654B972E2501795C7371CEF0C3CCF071E7EF71713D339942EE889A2CB2E1CCB0F588A592AD91F74B62ED2FC47FA44CB83D2E5F4451766ABF27BCD834C44C90EC4C99AE2270E8EDCC165BB8094DCA5A6010B724B57065C3CE3316219E84B65CCC261F24538D48C51A8BA5C48B85D3C0FE60D0DEC8E97C4E423BDC5344CF532F33FA4CA04A984DCD40944B2CFD4A8D426BCC0568DC3DB444AD205107B700D48C5DB20ADC22D67DB8851835F4998A84BA5F6189BBE60CC60E66641F3CC50A5175AFCFAC18B20BA552F83DDF9D4162DF4557E4B9C0D4781B7EC9E2D20C194972E24A8196A2F865CF882AE24CE12A5024419A9323188C3728A133D31FB4730A43A5F41288332FC37846565F8479A6240B8FCC7725C398952121DBFBD037D0F54E9AADB156FA04FD911D508CB0462F3987314E09BFDFEEA54A1121D165EE281329C921558CE177E91F3BE83290228D939DF9984AA897882BF17986BB1B815D5C6A0AC496C0C9ABC6BF93B9594F1C3DA24D1BB79889B84085C20A651C928C468AE2DA6A66C31DE28C3D0E21E812B61CDF3169A4BB7D35F7F6CC6DA3394FB3EFF00043A6CE970F33CC4CB8A3B82B6E9941B63FBDA27732A00BCCC3E49C2601592B80358797BC334217EFCFDFDB00A8CDF31D74ACB2A0E73D04BE8588B148FB22B302FDCA36D36778014512C51067046B26205164D3AD7AA799FA4DFADFF001FBF4B9F913426D36E7A3BE8EA137FF3FB3F05ADEA7E23F6F8EF35FF003538EA6FE9E77346BDA6E4FFDA0008010303013F103AAC1271008202A82A563042C049A122E655372F8D782B1D47421D31DC42230600A198A9944C41634635A8EC7333396D91F34CCE8755D1EDE083B4806750D095339C4B0CEA659562353DD45CE3DE107512BA5C5C45772752A2C5BE80B96DDCB3A99711B06A162D4ED71C9056254A812E5CC81DE3B0341F33021B60FA0309592E6AE38C132E26E10B299108E612AA5CA89715CC23E65CDCA044E262E6502A047112EE309E664B9809198204AEB705996B04BC45AA0DEAA6F0B86AA1BBE232D63123D745ABA660A0C1FA06D75309BF3066A52D4AA546700457004065082B6C9C9A11EC6AE51B416BED2E5EBD40C489049D2CBF4E7FEC3CA2C3F2424E52580ADD9CB302578A3F6ED8810F7D7EEE23336BD8F5FBC4D5C10A12C1DF276BFF00915D6EE513E2CB806B63F88F74E226226674B830CC49535D209E341F31055C1501381FB98869E9A9AB95FBF04BB5C474FDD4B8A0C32C22BD7BC0E933166C8803DD84A895D2A54AE608C1A6C7B9A7DA1C669910C931E6E5BB5A6FFD4B04E250DE18894437D0AD3360868D541EB0744B8E21123310CB913BF2D3F30814DCD060B2B1376EF167E1E7D663DB4165DCB24CA260C91D65603C4D94F6EF0F358FCADC3AA67A6E5C00AD3B1ED31D6C986A8460A99CED52872DD466AA896AD17D05804C5E218B106B3B8743B9EB18F733C1C79F13BCBF3DE0A4B65CA583D19E4407CB021AF81A23444661215C1E4DFCDA8D880F06FD37115BAEEEEF12CF5AC7037E665C1EE3ED9A20786E08AAEA277559504A892A1D162845D257A231B9CA460B20E0E8D7E698B60AE30B2FAA333019DCC65CE1D448D32A54B746183CBF28E1F3F88ED9D2CAE796C8A665CE657C42161346704573243FDC58AFF841FECAE8741CC1874B77FF004FF500A0160EEFFAD4A950B904A8959F9F68370478121A4A35A97BEB1C5986BCBCBEDAFCCD6F61F00FE7461154208115962D9DA997E965FE200506A62B08E63785C2D657DB8885D9D8CFC9BF7CC32C6FC13180ACAA3839F4EC42E514A7BD3F46E3356DCFCF4AE964CE2CBA057D6530374EF3CFB1C4765513412984D2092E3128208B174E83443021CF45C2D5100009C8CD9F609418DF418712C8D20A8C296B0402DFB6601FB7DFDFADBE5053EA4552E2B63F9198BB097AB1A6A10CEE560F9FABEAD7F22359F5EDDF10B28CFC4D4FD932054AE446B88B00B42FB916F07C12B7DB7F7CC524658E2926659860B67F12B6E4E1C27A77F682539771C2537D7148657B38204C369FA8ADCBA7B78F78E02F30D9700D9C71D334729C3D1FB6383F9F7F6D4FB857DF6F33427DEEBDE6BF3E77ED346FEDC4D21B9EB43DFDA7DBFC4FF64FECFD69EA68F59A3D38FECDDFD7FBE26CDFF26BFEA7FFD900','Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.',NULL +,'http://accweb/emmployees/fuller.bmp','2254.49'); +INSERT INTO Employees VALUES(null,'Leverling','Janet','Sales Representative','Ms.','1963-08-30','1992-04-01','722 Moss Bay Blvd.','Kirkland','WA','98033','USA','(206) 555-3412','3355',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004B0000FFEE002641646F62650064C0000000010300150403060A0D00000CE90000126900001C8D00002C3CFFDB00840003020202020203020203050303030505040303040506050505050506080607070707060808090A0A0A09080C0C0C0C0C0C0E0E0E0E0E10101010101010101010010304040606060C08080C120E0C0E1214101010101411101010101011111010101010101110101010101010101010101010101010101010101010101010101010FFC200110800AA00A003011100021101031101FFC400CF00000202030101010000000000000000000506040702030801000901000301010101000000000000000000000203040100050610000104010303030402020203000000000100020304111012052021133114063022322341331507423424253511000103020306040503020700000000000100110221033141121051612213042071813291B1425223723314C105A1628253732415120100000000000000000000000000000080130100020202020104030101010100000001001121311041516171208191A1F0B1C1D1E1F130FFDA000C03010002110311000001E650A36764C06D8FE5D891E948BB5CCCB2BE40318A678C6AFCEE3E8691319964A94BC6292A2EB2B22C94D7B3E6EAF521E35F99F7CAA5829E97482B52BE51B428C4ED609692C0CC87A3EF6B31769DACD6253193292F5F61AB7983EFA32B07D0F8DC37E0FB4552C30A2DB8505CB1B42A52F5B62ACD299A4C86EAD852E98F5B6B5652B968248334953229849C9B27DCF2F8C7CCF4C80E06A547E474F5B463D53C34BA5EC4A74AE2179861646DCB2AF5B2DB351BD3438EA659DCCAAE78F561E465538960DA1361F9758D6F4760314B4492E3CB7CA12C1792CF8C31640C582D9AB56CB5720D927738CCD746A3966BCDF862284BE79B5905B0552AD5B8E733A6194B4398C309333CEC92785AA9D02B8E975F12532CAF3EBB47D6F378AB9C650719836079B6473C967D3C4F35EC2A67CB318D14B525A3D80A1648633763D15B671159DA48329ABE6C7E8D72E489593E65B966C3A95355C2FD08B568B04D7949DEE004298A57AA69C402B856C0B3ED695ED87D9CA5580BA10E10D76079F5CAE3DAC1CF87635615E9918C6292B70DC04D9D16D8B26A4525B090ECF727AD9664CCE5FF00564F4F1AA2A1E61B088B0BF6CCECFB7B36068D2DEBD38DE2CE427AB5A9CBADDE8AF84378EC859BAA1DCFDEA4733349298F9E7DADCA713DDDFBD23B37764660E43D3DA5625D30399BEE6D40D8D0795380F5E6B9C8FE7AF6602C0DDC24FBE7DAF48710DC9DA723BB5E88E20923C59C4E164F0D0E9059CD6CF381704E5B37091B59535E84C4C0E4036C7F36E7002265D2F4FD1D1443F68416ACD4EF61A15094666C4F2CD1E6CB591D9E816C07399B4D7A12E7C45277D9505CC19930FB79F6427EE8C360E9EC23AA69A420CCF50AA4A5DF24A0E39351B849852DA37D48B2EC6592AB1A0BCE764B21D9BC3374AB07C3CDD9D20C19AA4C595B43550AD92E5A8DA26A65E7398EF2D7AD19351CF59593E7FA0CAA6CC20D6CC06F548E617CA628B4B12B63FCF8E9CE7FF43CD9CB64A0D6E92B796298525C8BE92082D84D4C2CB37499E5859B8B333C8E5BA78A7EB0D601FA22A2992A83409A184D44D49A3A6FDAF1881F7E6E4D59D9E8393BA706EEDCB4DE0713E82328251662C0D9AA60DC5A6CD52B024669641B08ED8063D0DE9F9BB737F3EC28170DC692F9A3D2C78D985D8CAEB85EA8F20CE6941E26E551B54598EB04CE21A36EFA10FD1D77B7A3E7FDDD44DCBE56F0FD79CA74A12983BBF86CE4D85718B9ABD87C24A715B87C191DF1310ACE3D2E5EAC0C4B3710DF7B913D99398BC3F56B496CFB3A6014E1EB126B5B51429BE633C591887CC90066B81B3D5F232BFCE747036A8B3CD9A86D7BED4759F9B6731F9BE9E3C3E76EEE1B3A3BDFE2AD15E9771D0E7B91A0603267138310C5F45F34EE587C0B1DE2923FFFDA00080101000105029A1F13DAD9A550CBE0969F89ECE5608EB4C571EDDD0455CC723F0D4F664B5B85505792A569BC22F71BEEA18FF59E326646ABC404F1CC72DFB816A9C47E6899BAAD6AB24D25B8E78D59B1E52D05AAACC589B683D46D254F078C78B706D695F2D37D76BA2195CED0F6CF864C58E2EE7EC8EC7236D70F61CF8DC1484678F0EDD5EC6D335B6DC964E3DFBB077C71E1F49B0F8A3398EC44E78844C2415E4061E3FF0064032ADD26DEA2237453C64B154BDE3878CE4E9C2FA5620B90D1AEC94D890D30D9A42E8982CBEE80D635C152AA006B22628034B1CC1891A18E8AC485ADCE60EC6B771F2BAA697314E46B5547C7E40E8F670B5C57A958C504B2073D363C17536EDF0C884787C151B2C30C2A18D3E2738378F90363A333178F2638DC1556AFF6143815B0D34FC72AE319FB2AC570BF8D81B665BBFF0082584C8EA0E9CD699EC736518746C78315634694772BB83E6CB2BE0AED8DA133628A6ACC5FEC12C938E8D8F55F0C938973BDC5B9BC3057326FB704D343041B4D36BDB0E094C685D97BF7CD01AD048A28A6AF2F1F75CE4C76E576DFB763AD5FB0E8AA9279FA95D9C0D581EE651E3DF2BE3A4D0D655B855531D5866E49CE65198B8572EB91C51B6474A0B071FBA717D96A9BDB6CC6FAF2799B033EEA916E1C8323648FB6C61AB7EBCABE4FC8B1F541DC219EEB4F19CDBDB3CF7990AF3EE6BBB9E1228DC8FEB92BE49F182AAD6F1D8E42AC77626F13144CAB56480C0DEF43F3E6A23E5BB50CCD6F1B1F235B9FE39D4ED46C3108E6919251F6EFB9FE2E3B223DCE326D78F8DEDF23C465D5984A6C4321ABC0D2BDA34A7D7DAA2876AAA763F91E3CD81FE2FEEE36896AF9E43B39085F2791A0CAE14B69A13580C8CEFB0D8FDC1E28BA09239DD22AAD1B400B6A6351ECB192A2F56333567AE09AF96AF9C4FF00FB390B18DAAC129B7E4127163F4D46B8CC47B63472E7546F7AC3EC6B53588353C868F365441CE514472C758F62276CA00EDF26B3EEB9ACB276C35CC2BCC18B8C7DD13D6DAD5636B5BC737EEA91F6ADD83534A2F5392E550460C9F21ABE78ED922972E6375394ABD71B4B8DDCE91D1ECCB442607C0D79E3F96AD03191446273E091B459854DBF647D834ADFA61AA46B57818E5446C919146D420D937CEAE78E80ECD688DEB63230031D2C3518F534FE28EBD8980A0E05B4CFDAD298B706A75D66F63C60BE151CB5D44035F0CD04820904B2FCA2FF00BCE69ECC2AED556B0962AF59C66A3C55CB6A4EEAB863D951C62752983DB19C86BB0A5765A78D864732B069650748A7A3CA4669719C94CFE538DBF0A16CF17C5EE73DD1BB2A2DCD754739CA950E43DBD6A76DCD89997C7B4A8E35017C2EA771B2074A181923256E53896A6F21E2439DED579874C9CFDECF92F2EDB92411F9088BBC7198D5400B782A71C3C536888DCFDCC7D6048631358865A7E192436EDF2FF1C6314338947E4BDAB1E9B42B954B8E8D87E51CC36B27EC95D035C1F0B7F77B0924B1C2F191C96A3608A35F29E31F4ECD63F6B0A6BB09A415C55DFF001BC855E5E3E426F9754771B6E2E6192265D95A196E07A9797878DAB34B2DB9A183726420AE3284A6CDE8E07719F13FD7674F92FC7D9CBF1203A27325C213A6CA84BDF8CB4F88FCA9CDB3C2D7A10B6B46FF0013AD71E18F8EB49E634EA4828707348E6F0CDAEEAB5D80D5AEC9594B86AF59DA547647CF7843C4F2BBD7930596004C9DAA84A246CE7C943839DF19B11E0D6731E1F09AD2464055A7198276CED81999AB478509FB20792540BFDA1FFC81A05FC7C7BFE83BFE9B3F2B1F933F2E57FB19EB1FE757FBE0FEFABE83F083FB17FFDA000801020001050207428A61CE8E59E83EBA14E1A35C9AED02FE494101A158D01D4A08A288D22777074722B1841DA14E58D0ACF41D47651B938A1DD6341A38F5040A1A1D6172282CACEA4F7EB6E851D1AD4E29BDF477A841140E4E35CACE8DD4A2B3D8A6A251E80D59289CA235002CA05128BB4DA8F741A9C3509C135A8B5108E8100B6A1A602C698D24E8283CADEB3A84D722567577449F4422346E874CE9FC27FD3210D4E8515EA9C8FD00BBE33A0D32B0884504E47A8AC1D013D5958D5DF4B0B09BD64277D2CE8342B3A0194114511D19E80163086A515B4E034F4E3E8808E87408687A189C3AB1D0135BDF53D0D3DDCEEF858D469959595FF18FD747B7B1E92B2B3AE74F55B535AB6ADA06A53DBDF4C68ED0A1D31BB280D0A3ACBD327D06FAEAED3FFFDA00080103000105023EBA04ED02C7511A0D084E1D18451D0759D06AF6A3A374CAC6810EA28A1A94F0804753A01A0EA3A0D641A1D31A8F41D65390434739008F6D074EEEA28E834C774741D04AC0432103AF72B09C1041AB2B3A6E4352822F41E81E82E5B938E992B2B0B3A335C2C23185E3406A51620D58D47433EAB90D30B0BF94DFAAED06A34087D13ABBD563508A0875E5047476BFC740FA59D1FD4504D43E9B8F7286A4A3A040F4610585B116E84E99D022513D20F482B7A2ED09E92B3A0E91DC74E7A49EDA37A4A67A396ED309DAE34FE5FE9A34A1D211F4D30B0B088C2DC89595BBA1875CACA6F41E8919859D46B1A1A951FD077A74FF00FFDA0008010202063F025C7FFFDA0008010302063F025C7FFFDA0008010101063F02D3F0437453FA1405DC3175A625F554792A2D18BE28DB3F1434D689F65EEDE679A55085938160BA96FDF152071342B4E12C7CD0BD019F81ED971BCD54CC4556AFA23EE2859BB3A8C4221B0A45D542D0A3022AA8848E69C289074C625CA8F577B03C767F2AD8E4B9EEFD4B1A1C11B130DAB092FC5C911F52367B893DD863B394AD2FE4AE7651B71D4F81FA934A2626D8D35C68874E40BD46498E23155F3A29DCFAA2C07075A5BD5510860E86ECF7A8DCBB3274D630C03EC9D890C453CD4A377E82C57B71CC2D2D4529CF5199C5756D554A271C968B742D8AEA9AB627342EE0FEEE2559843100BFA9528C8734B097152B97A88F49F9B107040E1C363851006AFB934836EDB323D9786B1FD5073928EE47A5115CC21119D4AD5193F05232E6D59ADCA3187B407F82E7A6E4E56A94D8BD10D9A638A6BB539268E07135F07677FF00545FFC555319E9211B40D0AD026D018230BA58B72AE94EA7108C94B561F25D3D3577D4AB9AA1A4B250EF2F563731E1B93BB79A1D2CF13C3C155CD303D576B76D9D43A988FD2B528CC9F341B351E80D53392D55A6E5D4B87546157CD01BD4AD98B415539545FC79FB464BEDE210793C4669A418ECE29A24843AB7356F0AE4C48B894181DE889FA21297B1D42564E9905AFABCD1C02BBDE30990D18472AA9C3EE5184AAD8142118B11845737B58B79ECD31C9F5CF31C0A84AF76ADD5AC5E4A30BD0959990E1F9A2573069663632AE489E58C47D72A2FC5DC5A9CFF00DB7627C8AED2C5BF6DCFCA7D2884EDAD16C28F6FDC0E0EB509638451D03483F0D9AC87E6016AB726D07956A3BCA9040E03090DE0A8DABB767F8CFE206A19486BF78D273A62B4996B8FD273D8014400FBD59976F01AED93AB555D0B776DE9EE4CC56DC348110BB6EDEE5D33780ACB242DC6AB560062B54CF33B843BAD4CB98AC18E6A7AB064D014DFE1C130D80AEA471215394A79D5976D303E83F35F25D329C162BA24BC4AFC21C6E5A6106E2E9E258E68038EF43C6144AD59A65DB5A1942BEA56AC19466FEA8089A47340BB92874E8575226BB82AE6821E1A6CA29180736B988E09C2757AEC70B67447FD2B13196EC96BD78E49E4B576F6DC15A89D2460B4632963B86C1E1647A9923DBF6F133D3EE9014084E271A85D2337933CA1C38AD2AF775334B7127D51948D655280346C148135FA507C96900A3749603175F8F11F02821B68ABB3075CB003C946243F9A3A2222F52C8E9C32567B007F78EA9F9453AD71F8280897A3955F6A68DB60335A584DD7B0086E6410F0697AE4154B2F7A6D485C320C9A33AEE4E15EABC2D7E387A2A2A2D598C90308EA03DCA57213D11CA280182DC5A9B93E4715CA76B2EA4873FDCAB87043A577D0A1A6D890CD90D51E9C379C94BF89DC72C702D52AEF7978F3423CBC667046E48F348B9F54C572AD51C7308F71DBC5C4F15A6D920E65480C40788DFBD011869D9AA059693492D44B04F12E99516E4C4A68A79619BAFE2D8FD8B269FE696FD9A405820DEE56A0D88AA7B786E5A5AA9F6D15DED3BB846E3C1C0907C15CBFFDB23D2BB025ED8F6C82C34C852513883B2A9884F15FF9764D59EF91F24F804236D366A31B8744542D439B7951B71C23B2CDE22930CFE5E1B3DDE513CEDF69C54AE41C44FB5F12A1FDCBB68F25DA5F03E69AC8333C16BBD64C63BC174E0A977174E1FB71CE454EFDCACEE93291F355382FFADEA84E6B96DBCC0C5446DB96E03F2439AD1E21184A863423C0C871F6A95350C7E0A13B510C4513AFE4F6D74C6D4FE9FB24B5F752EAFDB2CBE0BA91801700C061244E00E498055155D2960546E5AA3576E8923DD5A1F83BAE61C2598DB54EEA372381460735FC1BC790FEC9DC7727F8A976F783C67452B172AD9EF0A898169648C6439C26408D841DB63FE4FE9E1879CBE7B2D7EB1F353F5D967F47F543647C5FFFDA0008010103013F214CAB12E2BEA3A7AA9BC1EFF17286BECD0595152CB53DB2333876A534E9996C0AFB19683F27CB19FCA590653A8BB4BA6003C567B313A40EC3C9021B051EE08D6ADDE919B5E4F655C4D9D788B446B99A58725AFE6741143F1319528AE7ED05C483A37AD7A8D9F02DC9FB546AB674CB0C6DD0C4A8B1CB9FDC5AFB6331549E21054564AF04276D42A38FB8353A900E8FE04167C0A59C32C27434F544272D4F943D983EC7982B18B21D113A585B79713BA345C15327FC84C104AB3A6FD4D52A5BB471FAC5F223B28502D944A43204CAB67F52B287B199997346082DC166E0959896AAB46A2AA87DC3E65E83A159F53A98927F08C2DC947930928B3F4ADC55B6EAC5436B4D37D3338A6AF28B1B5BFA809EE8F0BF13256A1FD46242D8AF5AA59BE1B4DC3EB4C05F6780F30F46D432D1F12B65B80502CF981B72C5C64C08CCB3D36BCA4144AD3EE03D46F1DB8FDA16E8B58F9CC3FDCAC75BA9544EEF7F79990E561092E2DAD4BABCC42A5774D35886DA5B1E3B7EE6EF459CFDA08164D4A052D9A4AB987CA28547FB183E607C4EDBFBCC60143B41DCBDB515C9A8805C3A4DABF8450BBD622B9FA0798D9467BF646C83651CC353DBB868354B3C91827BA2507BA8578ADE26851FB44856E0691EE6CD1668FAEDFF00D255157D934D370F0C533F5081B63B667DE20613A8270287255A88AEA47AD8E108029457C442D86A9F963411390EF1E9009A45358C4BF98018CBB76ACB38D56A6344A978D7443B5033F5A86696E6ED4CC133D10DA9B189B9563E228B82945F40844ABF623727818978883AC6D446C81AFC278192550DD33AA361911810F0132B2C26F5A4F4EE0FF4F980751CA02FBB07EE5433A14C316C3A8CD453206435F27516430F843BB304CE590E9BACECCC1D5DF6263A4A4515193E55885136A948363C297542DB312E005A7D603F32FDFE25A050DD1140E5F823A5DAE0AB833DCA9037A872698C8A451F5B6625CD947C4BBEF47E5CCF44BC4130CDD43191F335650A57EEC9338DF16B697A9EC3C0A07865462FC6465897DAB10CBDCB037D6CEA62C78218AD805ACC60B4414BD626E8FA990AE22FD4B4C15BBC31B0E82B1A9D81428464A257812A25B1AF33004432DAF728035056DC3AAA83B25CE883DD43850DB3D070F86C7CE3531BB7C71CB6D96A640AF37C46736D42DC572B3D920368377A49736538BD62B3BF71EB89FE4CC276B6F1506CBFEBF106DE770CF0F4C148C9EA11081DB4A5A03BE52F6B3831244E8B3BB9880169F0BC416D9129E99F297892BD9EBB97792C7C91A7B2B7EF1ADF72D0225C49411C2F072E9B8F31AC91E477A84FBA1E196B6C09BFE2E3F093DD030E03225F53F3DCB300B875A99AEFC87A84964566BD957E67F0FDA6721D329304209836A22BADEA584CEBFB037F698E6640C4CFBC5C87FDE7E735F2CABD06FE9FB990A453CAB72CA582F6DBA1EE28663BA8542E93E2282C93E173032500990EF799797967F03D4C697B3C22F19CB88A727E513667C8CC10203D06584478416B0B52B23C4C613547DAFDC2116650CF70E4A03EEC2FE8289803DACA024B5E708CC7D7C1A9F798E9E1067F1BD4B0E0E431876BB228A7F2678C7E330D6AABE4A94F073637FD4522C2C5859D30FF00C95E307FDDFDC0C5E25851B42D8DBCDCB737357E92988B66E23A85B294A9272CAA53F9D0875B21F0044F2235CA64EC4A534F2567EE590BE0FF0092D21259BA62E1BED2E9DBF697E0A8A6AAEFE267590BF42846FE90FE556C53FB253AEBFE4A3F5206238BF195F2B57F50324B035E0FC42382ECB5FEE1041161FA843E127BB2165339F24A413706A8B64DADEDCC60772E65B2696B4A81D722DD777C3C4D11ACC64E74DCE4F994EB3E82668B327B8BE8337EE8ADE83CC15E70AA62958E15DC0EC50AB5B3BF98D0DAA2367274D771E2A4F48363310A6E1C322038A1BC1B6A75FF0070D31E02055BDFC4ACEF62E67873753005C7C30E0A000E2BA36D5A2E0C030DA83B71420DE30D9C10515180D5255C408FAED35FE653A8F43FD9560364A9E50CC10C3F3E61D051ED3A3FEC43DF720AE6D506D529BB7665ACE1CF1C536F3AE79A1093FAB7DE187695749867932D771FA6322DB6A7BCF966F1B658C8295756187A8169F12869AE996A8F4D04F10787A8635E617AFF004980F7515FFA4B3E5FBEF57A9BA376CA3D43B265F6860A16E88365F00BD937945CD7F11872984D4347D8DF73A70129FBC5BD656DA3FA245C6AEA2888EDFCF3D93064D3A2699B2E0EA1B1267DE1A003F332421506AB50037C8F6CF0EEF1DF2FF19E5347C3FEF21469F9FA311FDBFF0027F6CFEA9AB93FFFDA0008010203013F21B2344164B9A8C38DA664330E1315983C32458D2E78B5458A08C732A38331632C8B2E5B80831C40135B88E03B831067516226E6D0C721A84AC704B951C5D288629A8B457D15BE2F822E05186245E2B24C39465F0978B837C8C5CB18B1D712A313B632916E6C046121C845197C95C4DCA5440F06FC1199AE1001CC17011F197CAB8286169902659923866A65324C329E4541C37867CC60D4B97E381132B11831D90B1B46184C201C3A473988544D4CD4618E37F412E5CBE1925F2D63838DCD6516A6513EBA8475C76866E198EA155369AFFF0090A83873E358591B460391C5F49C0AA66E1B83270DCB4661172DB99228F347D198198CB03E862C0B810461CD40E2B8A54370E2114691D4A5C86FE80E18624CC463036F0F0A412C46BC31631FA24A594C2E5DCAA2A971718128408E5CB9708B297E9AE06231E174BC257D3A6D2CB4DAA5E54BE6C3E5186A5F3BF82A54A81C0D25B8B8C2DC3A455CB980AA86A7D0AA2A571AE0418B8B878B838BB83C0CC3CF4FA09B4EF823F4E467734E3FFFDA0008010303013F2185306A650571ACDA32A540C4BC54C908F108730F0EE06216678459E43C24A94C2A0E1661C62823C09462F810C23C54AE1B701AE05CAF89D4B817F43082572C4823BE55C66E0B95CAA0810254AE520FA1A4099A5637358C60CD170106E3C547973C3A9E485DCC881F4F04520497F0B516079CACC4D782C463598E13321AE4B8AE9740E1E10B347216843150701182110A4A211823B30663A7030972F3023CC3E8A95F4544822867109709B80BE07FF8F7C54DE38E0DCEA5AE6B88FA525734B2570A1A48520CB7EB23858444588478547054C454519589BE26BEA65C5845C788EA6E30DCA8B1145348F2B2F9AE6C815C020E653C02E61C4FD20252111CCA88C20DF01BA813B840E2DFA44949862CBE19E09D4C98A97982072AC193863C318DF04657C95C3E8C898522ACCA32F8612A04F49550BFA356F0B97C3C45A9552A60C32CCAC4CA1C3738B61C12F38BE478841CD3C8E2A6C1AE071B704DBE9348477C1C1C6C8EE75C1C7FFFDA000C0301000211031100001088C3E23A635350DCA8718253E5A7675F226830CDC429EF43F459C6BB434FC8FE36AEE2F7F9B20ECB31985115568FFF00043A2B68971078534B96EBB434EA9153AF350BE4AE3EFB1780BF621B0B9601648464E2DD15586AD88B6F41E6E6C2EE88E5F8333ED2535B640B497F922613D7D5D6C8DD2AC5700F9B3AAB37131879E753A4172C7C3F30622C294ABDC5014D4A47383498B91951F17C77DC6062E6F294675E4C8575426CFFDA0008010103013F10AA2B7714ED29FB92B18AAC14251A3D45A9653414B0BD67A84261E205035E0CB37EA4E0A181F3333B464E7C1682DC8B59966684012FB33DD454D8E5B10B04C47A61A7EB11FB86165290C1410E2C4F531F11016A819F114C5418B442A52EE221B08B10629217B3212CD499D25C64DCE38159BF107D41ACBB1F706FD1048285D441E795EF2BAF52962D4AD36154B7717601BD2D4AF658F4692EE55A9B1B40175880B0F479DC4973542DF3DE48ED7684EDA8672575168BA00B5380EC8FC6E200042A96227DE6CF86E60C2FD987B1CBB1223B60ACBC340665AF2AEC193F06165E5961B47D50A36347B201B6E5BA206AB50C120069B0DB6B88FC2179047CEA3B7718C63C08510B896D87235ACE189B368BB1147D24C2BA0DD01B6229194CAF37A1E5D0B8D305CBB06C0365D95BDC5ABF1B0A4C089E6154F0C52D46FF00528EDC1105517CB4238015300D869F0CB2ADD1D37DE7DC4017802C5A4156EA5BB523244F55618F3307CEC07A556AAE99480E31710428BF347BC42C97C1322E3FD4EB6BB73AC98C8C4AB8DAAC7866FE220BBC4D16C663BFB5114874CA11124BA57018716CC04F63B08A82FE3171611112C4C89827A635B151EA72D790BA8A2078E80893E2E554B760D34EFD8371F5AAA0AB5AB29E88F52A1E12D323A3B2B0CE924065E0C6E1F584B7D67B300FC146240F200732F38B369419AE8F1DB2D9D555C16DBB7F44A73540AD303D0FDC0DEAA5B2FA267F0CDDA0AD6627168C222E3344486D6DBE4A2E3DC49B9047377D9E61E40BB0B2D5E33031C8565997923905CF621791B58A6A51431155DAF1A9990B6BB1F98C89807903C37922971681B4C9DD4274C7C4C3C8AA748A1824D669C1CB57208221A1581014990ADCCED2BB80701150505BD7A330EF97665201FA65F9D87CFF00F971058289C5B359845605BCD7675B232F463BD60FEA55A58E9576ABF441A7191115C37F38FB4C659B58082BB762D10DAF035997B58EA46FA1F388EC2E5AAC382FF70155CE0684BAF564B9C8A1BF6A9F08C358AA36F8994C4C5CB6543CFF005023BA0CF755014263B275417E26385E455042A817182B51354700B02EB57501668F03D89BFDC6923707678A96AB2A4C6594B86CC6A059464FB451436856B0A0A6BE634011D095903A1FFD8E03B8E70847F10EB15DD8A03DDD7DA39C5E41B3AA95483AA13FEC2D2159A37F88984B632006B04F3710644055ABD8367EA38A311AD35EC018ACCCCA82CD5B061FBDC397BC45D472EE5ADD7F72D5C1E9ED553FA853B4C445D74AB2C6662A8581F4B12B5C3E0019A3CCA4C058D96A275EE161041CD9559F7063264C6052BF6982B5C0D4B1E143F700A451C156783BAEEA1B36DB7A3B7DA0C022406D483D2BF71F8B70AA4E9D3549918F2C29D6657F7B8495C6CC8B553E61C0C0A57B4B90E961A3519AA4487A45CDF6A8CDD8F73A2471FEFF00933A6EACADF4FF00B0C8016E6A6DEA2B4242F0F830C482694AB06CA8C5EE6450B775DAFB9FC4C43D0D5BBD247D9842DDF6371D21076B68D52427442DAF6B1FF6325A629818AC96D5CB4A51B18508D0EB153DC40A564D6E40146BE5845CD400C36D7B62C510DBCC06BFA63341F3CF22A8537E9A6589EC951BCE40039B26633A41E3863B194DCB12AE9600BC162630CC008D556253F14441AED75A9B445B312BD220FD5494AA3495534A303C72D921746882F472ADD0061F79DC11A539EE05766130995B2110A0C1586BF33212C8ED1A31AEE6593C01E8C1A23F586440E71FA8D740A02DD0C7BCE21B522B959908E0AD1510D0B4E35DC2EC578BC7EA6943B142C758FCC255D7565D7E6681FDAB328ABF6D27FD80009689845DF89FD2FC0070C854121A3481013085CC9882C8DE29C35D46C1B6D16B4D9A2AE0B3D6B430FF00F216181BBD15083ECD2F67F50D3112C765F794875616CA341F91733E6B8351A6A8B814AD451B9669A02BFC875966803863025470D9796EA301F82635463B9A56977865851502F4BF32810E0843DD998F2CA0CFE630A41EB65CD1D067E48646ACA8F57EA0086F0B2BCAA0105D2E89B456A8DD8E07EF1C3D2E7B4A0B26E0AADD31D3F10A9B36C59DAB456A112B43F95114E2FB3188E8254956FB8CC25DEE395CEBC4B652E97D0FFE4A06A2D835289DA5345DC72AB0A645436F06638F8A3EF399781974CC7E06B4A34FECCAB581545B8DDDF52E9B5AE9973577D329111685D59EB32C209744B6614409C45063A796EEE20000828B064CD0CD436E145D7EE12F1548BF609554F3F8C1FE457B77D432932260EDE5ADF7500B585985ECCFDA02E92D19B34D6DF0623D404020E49936412AAF20A2978731417A1B1E1ECFBC05CDA5AC843F7442EB07FB24FE589B14D59A3385EA1D4072E29D62F0CB95033B9A895A332F14E9A99C801850466B26A17D946CA16D498F232AD3C9F771FD4B1BB6BFA4558C57FAC10CE2155D8F72887EC4B26AD66013A406BC4A2321B09F904C3C12A19F922A8082D35AB465833A00EAD567E7505787DE6347DDFEA6149D1F13B0D019D3F7992A0B762E4D4CD7D81AB5FB4C2EAD65AB9D7B80985797382ACCE1229AD1DB8E1C8AB5DC2D6C4F6237FEC03D21F8A1072C425FEA08FCCB29FAE0A420EB0B72C97058255C1BB1E8FF004219886171FCA54BE5E185A754598BC0502D42D0B9782FD1BEDFF26AA9E1B28D33E5B0014BF32F2C80F7446250092C83C7717564C174CEC803F55B6AC5BE26C5E52F16D5E3ED2FBEC5BA154A74B50E8611E50ECF642F868C9D500D9D4139DC3C2F3006658FC92BD8857B43CF93D426694D8FB19D7C4080A968DC1ED5B08491B41456118F3306FE2E600569AF100B8F0C29AF74097522256EE87B465C2AA76A27DD60A35A2AD1351694F2EA5C02B9A50E05EE61F6255D2C337695800E2E9F30850CA244AB7E5AFDA00036A0AABF740026B51E360B3B0749D93DF80F23F12B0836A83E618D01689712147DC8F1ACF0C520DD3592CDD623217D5859AF89869C12A16E6EBEF1C5E8A8814B55D608AAF12AD8C52E69AFCA3D7A918FCC068DCC4A942A3AEA1CA539E834CC2B2ADCA65FCB702B3B6BDCD2DC68A28E7D622B8AF0FBD4A0D660BFD21B4D681A4F848245664060A0E4A3884D00CD261A51601F315810BA5501E4488B8D93B22E528496B35D9833EA61FF00382AFEEB7D412FC01506F0F699CB544A4DD6206BBC76CB40DEA8796565969440EA9CCC007A3DABDB88B397692D13C3EA7DB842870C0543246B00F8661D2BFF00B0AA3282373519BF0E8351EE9B3D91B9A9153D31D5EC25E19C6F2D8EACB5513D79DC3EE8A3F31F0E2F1516A280EF188156D49B51F1571BA9814A65337876E888B8896AB16FA3AF5052AA58B2DCAEEB1B39F1D9082B0B6CD97DAC494D51A262AECB752974763C5B747E79105B06695DB3A546898942BA1F848D458AA30A89068F89D3B1F9352975C9400D4A2CAA86B724C94C2A67151DB1AD4B1B1AADC7A83A20A57B04627A9F2C36D82EECE58D7880EAC017668346F64D53510D5810C1ED897B989EAAB0A5CD6196CD7F506959460725545842F6374D63F12C01414ABBCD308846353764A7DCA09B04FF00D5691DACEA08118202FEA518446F29788C8ADC48D875668112BA8B9E8B4B2A2F18B6C97C12D6063DFCC522C2C0D14CC5172B045D2634693C9178B969812C7E4CFA6553E113687FC9A60697563AF9F13FA9A23B2F500054B8FB27F901ABC8D3C55AD452DE8AFC11F1BAA4D74C753FAD3F5B1A46E9FEE76E357F0BE38E1FB9FEA7F13DCFE6FB4FD89FE1FE4FE27B4FEC7F735FF1D4FD69BFE5FF0078FFDA0008010203013F10A917DE98E9622C1E21AA98D888B2773B8A8A8B041EA6378557C1F28D0E5DCDE4B9DDDCA00EA1FBE6B93D445B96172D65E254E009015984EA24E1BA542CE0361A81552FDCAEE5A0DC4B0D998C324B32EA684C0751A58958A24038373C9B8ADAEA653A4D08BD70AAE22D135095B1AB853756235EA65A225B8ACBC5B2A1A6E225BC070751AEE25DB10943051488A546D0579DC1EA6918A54B63124E94AC541A2B8ED8B999C2E84077280A889743706A502A037200FA894A8060AF8C7956E2AD4A4A47C3923112E950E615200A929E772C99DBB85054C35C28AA0BDCD469826A5CBD53645C5348C2983A4135C5A8A349A81D0DEE561B842484B962A312B060BDBA22611C4A75329462C55E07B5F13D46DB1EA6A39DC1573C0CD10B65C58961E7FAF89482D91368097297509719B6E2B72C6EE191A8AD0C90C80B9286A5E351968B72E398AA048DE29E2C5B8ED983D401495B08DCA6509F71366E62A95FD01CD26304F8E310163D42ED2854BAD1691182430A653E95F0B504EA246CD3A81DA75055605F50F1A88EA51DE65DC46DDCA3856F873C08E26DA8D29366C1A9AA4AA9E08CDB690ADB1C48099E270FA0A85F73E52FB3C097894270A8532D5B6249EE97BC463BCCA9987D11B289508096562BACA615EE7BA5EA816D1316E0A891802310C4AE254A9D84A3B986E2DE208CB7331C0AD403B846E520B2620545C12E777C344A8D29815C28F00A62B944C592AD98613C2815288C3C14D4B975E38A870262B502256B31B50634CC1F515BC3DC833189332ABA40C6C4A3469D4A7788A34C511AB44B095C520595DC3319E792364CA32CB024B912D8C11CCBB80AA494982A28AB8FE498E8343C59FB84E06264BAE5545C34F0268DC0854B46586CDCC0100704D710C04E74FBA3CEDF531E757F934E2F27FFDA0008010303013F10302CBD728330DCEA5DA3078407514B72D0AF29A38CD82D180886AA75A256E11BCD8371BD102346334DC062EA1B3D4A65E2D2C33B80CD45215E3B8B7D54D818FB8421660D77065416A3869992E0547EA0809C5E21749BD3C2C25C33431B180EE31C4BDDCB964F5804ED619A967042EE36C198FC172D18EE095442F2E8C319D99521422701768B088DA03B8512A34720C4C3710ED886481326668458187944EF34B86A51A975C7972959C2B8B994D202941B9772A6FA47139DFF00D866A0C547328EE18C4D2E3378C46DA512B5B1AC622F6B8700596ABEA3815894A630C30F280CB688960DD4352F3316EEA0EB08DB086E2C5E600E353B48543CC71A86B0818BB8954C2630690335C17CA5F533350F58AAA69046BAE2C4AC5695954511AEE32DDC0EF2EDC43151C04A95298A60086624A171C0DEA509EA3ADC16821B9B92F4CE8105472AB8A812B90835244449522205B732713922DEF9CC3E80CAA5046A517770A4A9724EA2DA89DE19316B13183888F0B8638DEA80C338255CB6619DCAB72965B8180512994B20D41B465CB971CC44431B6711854C63CCA16261D92A054A3E90A752AA45259328C38199AAE308BC6055CC8DC2C966789D086B50D2D84708961425592F2A3E5CEE28CDC134C0B718A8C4CC4B2DCF211A50D46A590766E548F49F8F116364D0662532A054ED27BE1B84A1B972BA8600813A9AB46AB71454361BE0A254313133A940372B35124CA24C21DC01FA81E21278DC7B392571CB95288601B1B815FCA3A1982ECAE083EE378772AEF335B3BB0E9CEFE2852578C353594465342218AC2CF79286C2E6B164163D5915BC3A98AC8C553612C94959482CACC6B744712C964630D544A531672D37CB187EA2FBB876E2781CFD2FBF11C3638FFFD900','Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.',2 +,'http://accweb/emmployees/leverling.bmp','3119.15'); +INSERT INTO Employees VALUES(null,'Peacock','Margaret','Sales Representative','Mrs.','1937-09-19','1993-05-03','4110 Old Redmond Rd.','Redmond','WA','98052','USA','(206) 555-8122','5176',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004A0000FFEE002641646F62650064C0000000010300150403060A0D00000D42000013C000001EC400002F56FFDB008400030202020302030303030503030305060403030406070505060505070807070707070708080A0A0B0A0A080C0C0C0C0C0C0E0E0E0E0E11111111111111111111010404040706070D08080D120E0C0E1214111111111411111111111111111111111111111111111111111111111111111111111111111111111111111111111111FFC200110800AA00A003011100021101031101FFC400E40000020203010101000000000000000000040605070003080102090100020301010100000000000000000000020300010405060710000104010304010302060203000000000100020304111012052021130631302214321542233324340743351636171100010301050406070507050000000000010011020321314112041051221320617181324291A15272231405F0B1C1D16230E1823343532492C2E2738312000104020301000000000000000000002120405011000110708031130100020201040104030101010000000001001121314110516171812091A1B1F0C1D130E1F1FFDA000C03010002110311000001A1AB17D49B2A8E19D0C2FE8873C1A13ACB24C9324C9592F5D56B908BBC91680298664C35F3E2584C9BAA7D84EB86E87E266C9012A9103C9324C932564BC9324C9324AC2F3AFEAC9CEFCF6C8C8448CD2FA1F4B770B8A60FB2A752CFB93E6EBDABF65E499264992649E495AEDE7F3772CA52AEE86B1FF492D2DD1086B4EA411526147F443A1AB224DE061A8C8966DD7B7324C90225F2062CB3F2FA3373D3698A195EB40473C2C662F62CCC3AD353E0ABE0AA45647954F043AEBD93EAE65CE36C38588E5AFB1CB79B64029BB98B0637566D360EBCBA641849333E8AF14F746E5B25D9DBDA0685CA0D4B6957A538D7161FB92E1E85977A97323866449E774DA05B825E014789832C69083CEE1A3132B55352DB20CD6BCF85389F260F6474D11D2BA096251CAD32E8D9B94C86532469995345CD120707E8D0E1A72BD314E76A99D48F4A705E7E7955242AEC466E866366F27434A1D53D822EAC768F2BB0EAB67862418F8C5C7D0F84AB8F4E3B0DB98BD01973F3FD3CF3C64B013F076460DCC5631EB7C25454A82D5D8ABB5130502A9591EAC41836768C2FA42CF6B234AF8113CF34649893867EE4DA7A529A73800F0288283B6A88B88ECCC9171734E4BB79DD21DD9595D9AC351D98FCE8531730C41550BA29C4F41AABAE4AD9179B5C55DEB309CD682AAA3295AA1112B508C53737D3B3D9C0764967A4D7CFA99824542061344EE5B43E77A45A0D1A6A8F8320DBFB6A55D8A685398D89262D05F92CE7E23833A88671006A664B0F40BD6DA7C56A451729F9FF004EAC0C87D7964D5B6341DEB717C8531A75CE68C732ECE6082E69F3B176B3021955E7A2C037A2C09393642F13B05E6D165F9DF4B090B4B888657CDE446607999EC88D2FFAB0F8AD338CE120E8E58B709AA3C6BE3E91E71091AA4383D9A4716D9D437A138BDED6506138E0D312F678788DCB26CD77DF4B8696681C5288915E212254C852BFD1FCFE9E76F71F3FDAE5F4BAD6173BF1BB52A55A45D855F061AA82380AEC625FBAFC4E4FEEF2A51CAB239BA7471F5D329434AEA17E8BE7ED2E0F6E97C1D0AF16CBC33EC038FD6218AD68D5E4B31C8358AFA5318744E80E8F0A9DD19A85EE73192C7A6B8DBAB5E79D5391507F42E1B0E2D91BC6EF04B63664D509C6EA112425DEBA9BD8A98130A1D93D4E7DFDA7971EDBE39E9F2E79A0E4ABB0B2B01E36AA0FDE79A0D6D6CE2F781C5B9DD2DACB85D73C0F5ACC8B105C1F02C8ED99BB03ADC8D8E48A67493B254D4B91621834E7BFF1B39BBBFCAD544C983A25F1FBAEA0558F1FA9A706CF81A18E09717DEAE8FEB736C8E8734307FDD5E4B8635D4C1497BF93667479889D0C43E57ED0D2E1E7FD3B10D29737A2B3C3EAE548364D06226FC7D87D6E5EFD19F4234C767D125AB18D4C8D92A2EC79FF003A5CAFFFDA0008010100010502DAB615E32ABC61D2FF00AFE8579AD2FC48BF33A9EC6BDB042C8A3D3958BC6CE4EC7E44F4E2DC8448429B0A6D6DCFF4BE323A1C5472B5C3704CB07C9F4B9FF5E635B4438B638936142155BD7B90F355124752A4FDA5988304C1CE6BB216567AC8047E17867862EE215E9DC1560CB1C846D56B98ED4F9481D63CED2A373636413B712D96A168E7CE0A6CAC53CB33668A7C81F1AC955AE745F3507F3439B050B738562656A9B9EDAFCF5C85915CFCAA91727B13A7639198AFCF2133D868790F291154E76974737DBBBB039D58B8E9A06BD97DB72ADB32EEDB2EE85B2BA4BB598171B6E7AD20B75276B9D004FE4205CAF33296CD149E2E36CC8E8B8FBAEDF1D9C8164B61AD2E75CA0F217AFDB924A3636354F76B355EB9F8B469CF3D94D830D0084E95E9E5EF4F891886DA7F6A8260ABCBDE166F92B81AF95795705CF8A51F20EF3321A566BCDCDF967752A7B5597AFDC2488C5345334A2118D3D8428AF4AC34790DE29C9DEB35CE03E109534A8C053CEF7F1552E3DEABD704589DCC5CE4BCB39F1D9BE25E1EDBDF1EE715BC05F6AF002A5A6E559C6397876B546F603AC49855331BEAC513E588FE9746A763B75CE36279A1C7189C07DBCD5E6C114BCE9317177458142C4E15F9836CD2BEE10F1975B2B1AE72C841A981302E34FF0022AFF58B53C8CBB08C61361CA0173B55CE51F124B0D2E46AC9C15A3660B2D1FBA476C7E7F1D9F1D697CADF69E4DFBDAD41898A9C802E31ED92CCD630F332B3798C14DF6A63F706C4CCA9BC2646D08137882156E31B5E5B9062D430CEF9389964067B15E856B9726B13040A6A0B803FCAB04EE9ED3C3E381C4B647B0FEE0A2E5A169E639061E46BCE7656B0318533E7772505382AC163D86B56AF73919EDBC04245C77AC5E9055E3BD1D8AB4BEABE0FDF383B534E3EEB106EB1C656B8EB7245C8C68DB8B70654910899E463B0291DC7907F8AA71D4457A3CA5DB0FB124BBE763935CB84E3EAF16394E744CECC93BBD7BDAFF6DB3C7DCAD17BD4DFADCC3E4B15772839B96364FF00F8FBE0E620A75A0E3A4B8F8DA5EBD7E9BDE7CDE7B9CC5A7B99235670A37A6B9729C8B9F2CF2E536A4D578269EFC14847345ED28B7ED0EED6226BD1AC73F8913543100B8EA2EB3665E15ACE21BC4D584CDC3C9615A6491BA493060932A356A42E34297967F70987FF00365EAFC431BC7B1DD98F063C04004EAC0A35F03EE74BC2D7AD4A2E4B8E8EFF001FCBC962A5BADC95981FC7FB7D1BD0F3DE8D1C95E0739AE85E0863A20A4A956D7ACFB47253721C651E31CF7732C1578B8CFD9B884EB384DB8C51DA05CDF2CC6B16D7771771F25EAC36C1FEC8F5A75DA1F91FDBF09564F370B9862F72E02299F09EDB331DDE4E37F0F5AA6EA55A1685EEE76411BBEDDFDACBA6F2BEBCA9B04C07E54A196F906C117FAFB8D9DD0597ED8AACFDF976C2399AF6F11D6F6FE6201C37B4B2C2E5FD2A19948E2E70CEEE2706131ECB9CDD1FDCFD7F8E9BCB5B0A3F9253E676F91D86F1B41FCB731C7451C2CB136539D88B95F4404892DD27FE680A85BCAF54E65D658E7268CBB88958D92E43FDE71270CE469FE0FB03FE07C3DE3635CC0DBF6A473BD3FD7FF6EE3CBBED1DDEC70723B02BDC750B51F33E8B49D1F17C759A91F1576DD77397F1D4FF002AEFF91C5FC7BA7FD94ABF86C7E8FF008F88FF00DA21F877C45F143FA2ED2D7E8B1FE63BFA3FFFDA0008010200010502E81F582C7481A91F51BD18D07D666ADD0BD0768741A6163AC1D5A1128AC2CE99D32B7ADE16567AC207508A122DC0E9B8273D650281D7287446539656709C72B6E9959D020741A8D709AEC277741A9C5008BD67A8140EA3A73A14E4D6845A1386A34C20821D4E5BF5C2EE11EEB6ADA831118594350EC74B931159D33AB56E590E58434C2F944F410A308944ACA0B6AC21A6346E9958C750F83D1B9028ACEA34CA3AB227397E2397894918C1E8DAB09C8208F64167A20AD90006891DD89CA28AC2074C20148820BE50E968DA1C54CE413CA7698D03D6514026C6856714E89C3A5C9E549F394EF84EECB3A6356A63B6ADD91F29F5822DC23A14F27749F20297E0E9B741AB0772A37610D25EE9ECC6842F1F7907752EB95B96740A309A138262CA2C694E85399ACA3BA7774750356041BDB184167083B48CE5588F08E92B16116A99BD053028DBA140ACE854213E3DDA14FF00828A9FA589BA14DE88B4FFDA0008010300010502E86FD63D4DFACE6F50FAEED40D03511F588E8082CAC69858585B56C5858FA0D3A94D08C4B611A6D2991ADA88447D11A0098D59D36AC6AE0B1F45A894C6A2506AC751088D0F544328841353C941E720F514EEBAC3B16610D7B6995BD6F4082884753D357E244DD30B1A95B32B696ACF671D4A71E8AF26D323C14D080D0EB8E87EAE723D30FC8E8C22105844229C9CEC22F59D4901091AB70511EE34C9696B9AE5B516A6E8E5F2652023D124B85DCA8DBDF6A6A089413A047785E4728C944A7140614EFCF49EE9AD5137460EE34083917A2ED1C548ECA3395F2B1D0D4C099F099F29AB1A6752329EDCA211EC84AB1A84DF88C76516BBB43A9F829CD4ED22EC8E80A0FED11EC54486B85858D1EED5C884090848B1AC27B2087C0E9794F28272DA9CD584F50C9AC122CA054450E8714F768D442C2C2DAA54D7610D19F28287A5E9DA04EE89B4FFDA0008010202063F02F0C5ED15267026985E5F36C435B89FFFDA0008010302063F02EB7DC41862A2D42C33FAD8C517150DFFDA0008010101063F02DB18C8B47CC7A90AF4DFFC5777120F9BB767CC9F188E48F674CC6571429C3C31F08DB3AF104821AB01B863DCA750869C6661663172C9FA005CE8877350E6993D9B72CBBBF67F31A7F0C7C547F15F86D60153784A9195C6E21D53819E7CB10253189088DCBB6EEC41F0C3F66C55511F009101BEEDB2D6D402A105A8C8DDD66D44585B7E2AC360C13666325965DCB12E5751E85FE950FED4AC7EB45EF73D1CC098937B5C7B46C8F07330CA6EB5528E4CBC238058DD4BF34D729487970518CE1CD846CCC4DAB9B47C71BE3D6BE2FC33B9382BC6ADE25CB956119DD964518E6B310875A053F478B3E6C0C1AEEF50E51C99035D659B9345DBF57D82F0E5F523023F72B496182CD4EEF3477A07C12DD256D6007515C0F3EBB87AD1A742C7F1540B980F166B5427E76B42027675A21FB13137E3D8BDEE8588D231B626C947715C5676AF1046A800549E2700B3CC9E2BB6D8B88EC31C0A6BB2EC09E46CC3A469E4CC2A979C8366013BB4262C9B5CE9CB54860CEEA9699DB31CF54EE8A1800B827917C419C6F09E07A0E2F56B1404AC96C7C3A503098CD02DCA8D962E20627126F6EB52AD216CFC237470459C772910F1A42FBDC7728E4AE67238027D16A8C8D952E9856A0F8ECB0AB934AE4F38BB074C2E3683D2A311E5273BF505CB9DC276F5809AED9702DE1465CB027BD08DA311B3F56002E227B97C2D49CC2FA72BD18D439861BD538C7CEA9024BC636942371677C107E8918BB7A91DCDD17D998076BD13060771B4142A08CA3285A24142A483122D1D6ADF2DCB90EC453B076B7E4A26E946D51CD6485BDA8E9E99CB932E690BDCF4240E2CA60068C62E111BB6991E188F2E3B4C49B772FC5615618C6410E517833E437AA92C19BD2A94AADA63E0AB8F7A10209F665F9AE6D6B1EE8DFC4A7399F14B365EDE8D73806456488CD259EA1CD2C372B0B2B5714B285A79502F1208A9DE6C42D4CF6ACC30BD0300F136486F084EBE60ED75B7DCEB95A5B6BBF1990B9B72CF50973787263DC0DDB799AB3F21A7FEE55F11F7638A6A95E750C6D3299CA3D4B2E9E952A94C0CF20239D835E5ED5AED269694215A8B7C5A5E09EF608AEE55F4F3D4CB38B6866BB27EE5C51CF11C5760B89E09E32796EC501B63016D4ADF7296B2A06B7E1137D89CD412A67C223ECBBB10A73BB317DBF33AA0FABFE93DD0EB08CE750991F6AC65F2F0794AB1CB10F82AF9A89AB29658D198998E4303EB0B55F2CD1D3EA2A4E301808CAD60C8A75CCA72C95079A361469EA21CDFD62C366F0A98711366691B25D77A13A35FE249E54A22DB3059EB472CBCBD698DEA55241A940669CBA90AD2F0F31A23F4AF979B16F88FD670E88FB60AEEA6BD7D4FEAC32C6EA1A79DFC750B131EED9A69E399FD49F7EDB477AB2442CCCF2DE8CCF70518B3BAF978D68E9E5263294B16C1716BE9098F3538999F5629F495E9EAF2039B2969D87D82A509C4C251B251361E81B7ECCB3D4063A7A3F1351506100B4F962290ADA9072477711D95BEA1587113CBD3BF6DA7A56AC82D4E6DD4C9859E57C172A45A57D39EE929D0AA32D5A65A587DCA35E8CDABB7F3370DCB93F53D2C6A983732A30F4AF9AFA54F341B39A24BB8FD2531B378D919183C7710FF009AAFA8A1563A1336A5C760681CC400D7C9951A308B69F43FCBEBEB4F2B97D3B4D1B012F2EE0FB6DD8C118D18E7CBE29DD01DA53C48955F6F008D11751E23EFCD47B17CFE9639B51A6FE6C479A97FC543798842B6714F370F13B7A90D3C84C64019E3C27AC4AD55B5DA439AB526F9CA2301BDB602EE3DA6B7EE5A7D0D28988A12E65433639A6886B4BD8A200B6457D3AA61CCCBFEA086CCB0B5F645CF0CAF084333423744581191368BA2BE6ABF8F572E601BA26E4C8895DB96AE340369B9B2106C03A84A1DA3AB72108CF3EE719A366FC54BE6A8479A48819C318CACB57CC7D364239AFA1E5FE14EC49550118661E9447B2518E112E154A70B6AC07328FBD040FA7B71D8E7630C1194CB050D3FF421C75CFE91F9A8888CA2218264CA757E9F57248FF42A5B13DE8697594CD2A90F0BDD21F727C5BD48CC1F0CA24773AE5CAFA43B1F33975E1920447BCD8E084699BE7727DE020D82D45101A8EABFC8D3EEB7C43D28EC2E3B0A72A30A62D99CB18E24A1CCB7535F8F512FC3BB63A3B859B3257A11AB1DD208CB492969E780F147D6AAD39CFE212FC3BB05F0EAFF00055E21F9ECFB752A7EFA1D9B3E91FF00AFFB76CB6683FED086C3DAA3B4AD47BDF8297BEBFFDA0008010103013F21B42442F91393EE95D8AD88AE2D2B8BC745858EED82D6FDFE9BE8445E3496B0624CD1DAFAD04EB22DF74C63258011652C5E7CCD7996ADC7697B3C33BA461F665ABA396A5CF99DE9D3F305A3B8F7263FABDBF5FF0024129C8EC8A0A8FB65DE8FE2A503455D0A3ED3C7314752C2E8E66660152E7291A84B1713452FCCA11CFF00D81738CBB152A723B2F1E666BAA9DFEB40163847B4288163575CC5D1E195AAC7635A0E5C6499074AF3A42C01C1E9EE6D37D38B7D4F0BEEFEA3C0511CBEA0BBB9A075F8984D9DE1E3FA4B8CA317F8E227D9C6DD9C0F99CE800F571587BFD093CB6BDC590845951CAC196A5BC6799A46F04C743C6A55BAA78A62A5AB90F563F31916F2035ACE3CCA0D4150358CAEE52D2EE5D0D988187909FD9304339730FA47CCD4B57930C05E16811BED0520AC5C7DFF00C874264DFBA8591430B1E0C318EB8B988DAD62C9EE2A9DBBCB8A5B1F0A9660E2E1982E6A2D617B7A12EDF17159561B2C7FA4D70D43BCE58F08E07AFEE3B6B982CFB91D3E0841E051BAFE5A4B08A6BF407FB830A021AE5B073286B4A72117A11C31703FFA1C7956C026A8E116D667F0086BA52356AA1406F071B33158EAF485B93BD39959C57B28E588AF2AECF10709C45A0CD3DCAAB50E3882815AFF0065DE0C488BF13DEAEF11CD55F93FC8EE1ACF317200E1C660350D740D44D4A46A4940D76FDB1C4BBDE53B89B7F2F22FC329EC80328688470E1CADA5F68D47DEF27D9B9DC34CB25D1EB286926AC3853367CC7A97786A050DF26656988140EDD2F6A5B39C5F89A0E9FD45D6F2E20CA1B024039CA306C57610D3FB60C0077152FB272621A1469E4DF7878702505B9B00D7DA3F7C0303E7100088A355AA532EC09470373FDAE2A071B7B8C0A0AA1C94E32F61801EFC4A9CF53712CD133A8510CDF77B768F95CE0E3C8D4754E8515886E2DA87C38238C76B8206334C3F88346E68784DD302ADDDCAC65B081659ED194C2A60932EA6016F671A116ACAA09A1707CD1CCECD42DB1861902AE21B6A6495CD1308693B1D912EF30CAFC621B6C0414B8DC7DE2E18B6271F047DA0FC1DE1D88CD7DB7311AA78727DAA9D70C704EBF1EECCDACEA62EDFD230070024C6B8E1E3CC8076EEC0C86AFD4CBD2C2068A36768AFB36736D4EC040E6D889583A56C735F78001C3CC4FF007152C1CB751D800BE108B475EC2ABC399706A8EBFA7C7DE01B8397CE52F0EBEB29B0EE8779D739E3FD402D7C08B2FB570F330A46A343D9CC65F4348D0997F912C3CDCD7F96DB4041BCA01A4B837A45D62796629791A9549B2673642174A9579212D85197B4A55C767276ED18AD3693E6FEB11D0DC696BDC3F73D94EE3DCF85CC51961815160D7D95DB7A9851B963E8A7DA1CAB5731E461C0DF3078F963AC320D54291079E18978FA5C15B2FC0967686CEDE6D4BC3F709896D9748751319BF5070C7C1BA8DDDC0376FF00C9BBE4D7B035E2D8DB8473B4E024124A383DCC1B98A121E7AD94341CB59BAC4E772971E9AAF883F8092974BC14FCE23B19FC484E44363BD6AE0392F54D9F11BD457646BFB7D45620682353B2C99C86869A45526E06D8B6E1BD1163F30ED8359A4B6B8A1EE411457225B9197829C7F52C56D566F6427858BD9801E03133660174B0C3ABA3DD6B0D1E5CC5B02CBF313FCBFDC0628AB1D867739711725BE5BEF2D26DB3DED36AB83B3F33E4116BBDF8301863C3983CA7C2203B27DE799BC273EB996563A3F03C9CE627C7A1585D3F27E255B910C3D59CA476654283E47A41F3F51623A654DDFF0015FF00B314BC15BCDB2BCEA6DFE6B781831DAF1F9970D6501E183FD64C5CCA47C313BAE83226E0DD93C40196D546EE6F2C57973A79ADCD3026ED273E3BC515511780BCAD271C9B891F4294A2381B80E81030585D766F875371B34637DE7D328C287261845B8D7781362D2A83BA1A426B277959068E18D9D2F9370A0C7AE7CC261429AF705DFDC8BF2CC487A8CF45DE5C86B4733CD7DB93CBE0277FE7BB3BABFDC44ACAFDAF73D07E6657E4DC2F5462DA5B7CBB7ABF11D5CFEB7731D8B86E43CBD841514EF86D3423E5B9DF4D2DA2AA0F19F5714A30AED85A03E76A65E133580AB0029AEF193A81205D017EF53C98AFB332D00C540F85D4D9C7A8EA9E4750177F888BA2B3E65D10314CA66C8F03F125F973823285BC5B55CC28B4DEA6CA3C4471B2D2B1FF0015005DCCFBCB070C76652CE5CE1DA1B7E23092776166E9571EA6190A0DA519EC0E7DC696A53B1B0B85EFB844FF00F4CC3AAA17C99821A9EBDEF0F9313B9F543B0D20AD256DB0D415C4C938E1C4C201CF78371BEB71C4F9D21B4A84C506A5FA3FC65B538AFBC7DD755956F1B1F373797CFCA0D88FBC2FA6C2AEF445ED2F0356330B6613D4B0C21D18344158D546B77276BBFBDB3CA968EE23BEA62F10F99C4AD9FF00CD73BB8B10E83F41F07EBF08EBBDC455ACD60ACFF4CB756EE3EE6A2CADA310A80A1E4705EDFB4A15711DDB063E62F4CA64789637F13B586035E9D9027BD2FE0CBF32D0426EDB1B6B9974C95751F1E11B75D0EDFCE67F99E67E07F6CFDBFDCFC6FD23874FE6BFDCE1D05F864DF3F313F77F6CDD8CFC17F53F03FACFCC7EA7FFDA0008010203013F21E8F419E95FF34821172E5F56A57FD02097D2E5A2623E8FFD14B9704AA85324183AA87A586E67E9A25F58A65D04DD90A4B19842B195665D2E0FD14961888C6E5E3A94BD3B5DE3D04EB3B8BD1A7D187329297D075D4D65DDC62E90C537F42BAB2B742A9467AB61D2A27D10170574AEBA41C419B8D7539928EA50E20CB8A5742E854FD2EA2AA82711654571060A08CE2C6DE01825D4BB8D84BFA1C199B4A4BE8BEAC589331AB88654DA0119ABE8BA39D708CE503A1473D42332C43745E97D5752E649662F310C38CBE8EB135185D752448B658DC058E9304410A224248514B743BE16FA7AAD0510FA16AC66C200DCAED0E84043047287E91A271CCB514C1736B8460B3A0CE6F491311CD4D8C095D18BAF106AECE7A0494CAF4A9B4450374A0C2A1DD7432950D03071D526D17198C024B318CB2368AAA3C42EEE66D3F9E220F28BD172AE8086E3B8BD0430B05CE5ED2E7A29A8566C498F2C768832EFA516E9821A7A3D07AF44144CE30E065F32E43C1CCBF69963EFA334A9B8F43A9E581D73377B986A256600CC66DD2DA6F3586FA10DF54E9DE3D399A4753FFFDA0008010303013F21FA074ACFFC03ABF5D4B9707FE83F553A543A5CBFF80CFD055F5D48744EA423F4DBD0E8661D4AA8DA5BA19175ABFE08CC4A4B2587420F6EB08D4AFA152A27D27454B2007585812113A6C24AA8FD1708CDCB65D383A378755E87D75F55C6A659890779C39CF4B8CF562CB867844FAC83282FA6252862611A44D749A22C74A83E9194D26902FA18A8C371AA1A132E9AE6E0AFA2370A8D2691B987A15309B8C6D0C11CF512BA0ADFACB2E5DCA42FA115417D42A7E8579704D75F779830E47427B631D091E60485BE636EDEACE0455B73D06199B8CD7A0C70C1738F5DA32F433F4C4AB4FA53D27246684D65C52AE8DF07A37B750055A5F77D21D4AA670CCBA18F537A4D094312B1D2512C8F474C267D41B86A1BC421633A1308DE5D0E63A8B4621D74A66874B84553484A8AE822EA628B1833D0D6B895B63E6372C81D2F966333EA2CA95D0B61BE8CBA8C099A12E15C692C979F40EBABD5184C257719D54E97135EB7EB3AC3A713684FFFDA000C0301000211031100001089F52C9219F49E142F2AD82032480B1AC6A90671249209898E29E894292104BCC36B3AEDB942EF9AB55320B4BCC57A3EB558FBA1453874C7029600CC68FA0AEFD10B6D46FE43E477E2AE24F93C0889B407D9F7D687DF7C3D919D27B7A0AB789CC4A602C9D70F0CEE7B761D249692C6E870B224BCEC677F4D102DF1765DDF31DF4A78A5E30ACA245312B39CE55CB14A408A37FD8A72A6C8E8037896CCF392C13B35074E2A50FFDA0008010103013F10570173B798C86484ECBCAA0674E68C4A36D96C0005DCD1728D8F40E07E40E6F46DB1BD57D2812DABC1D29B929298F64AF42B2B79CCB9B739EABB187EA025615BA50112E14698E58852BA549815CEC56C2B61E564C007CC702ADE88B5747C4741020ACCD0CB46580177CDADC0341403E572E21E6E6036FF00B0E8505D3E663FDB4223969576C57CFD083B80001C68FA50000A4C88F0C163B59B28099709E8BBCB3198E2B897740C4B1E5E61E551103C00B4B800371697900C4198525DDD71713A508D19575802F98CF2DA039DA99BB99F4064C66C4C32C2C2DB748B30739D46C0C3A48D6E50DEBBCF0BEB000746B1584478618C4F0B2C2B91075044A9880DA200E5CEB1B65172046EBBC600D604142AC07BF63ED0481DA3906950BF694F80A9AB940B2F7861D6929DCF70D9E633752934050E31BA822DD8AEC759F1882E4A7182FBDD4FC2055FD9204596DAB079A48003E4A993DD03F9897295B3D0168184A61F8AE60F7C019AAABDC12385FD1AFA229E60D5F35701603B44702878A61072400C9C44202C28A86EA73F93972C180885791C8B2E257D2BA2A4E4037EB7282D0417B59A1A1E657F2550A03D83994CDF4B5EEBEED9F9E49474EAC90F0236FC434B2B5013392B312B74D6E7D958340F99B7F170CDA43012E9941F690811E4954896BC239A17DAE50F540E17B2316AA0545C14A67ED082CD16ECA79B96C81E84B042D415DB0A5D8E4429A3A986E7C049837EF23B1F303CC0C95194A153D9267D1BA0D874593F3550C5882C8058A2D2FB0661F590298798D6A5402EB4381638034501F89764443ACE689A9BF12142C760B8E286DA156EFF005062F49A010774BFA47999915214DA9877898E27B0B662F574CE625533AD5273C554AC2A29766158D1C8DD242582A800BA6B30A39A326B02DCC344EC57440B1825ACE47B949F317DA802EFD219CECBB988B99BC988D234B05C1BA0A058360EC003358055D04AC160645E90B42FB10E5174D19D73324C06AE5100AE45BF98D8B9034CBC0546558159F67FB86062D8E8714F8C903ED16AC36B20EC583C64DA1BE2D554C1CA0C2BC19B508EDAC6751B343E3C418D1D2F788474652E54D73163A11C19C97556C6AE20388245E427906AEE31CF54B2380AC61C8BB81DAAA831AD896967EA1663CAD96E3B1EB31870A41CAD3B6B89FA46916D700C7570DB887B20B7E271A32B8ED44B4537CEBC4AB0005D2342B4BF3150D7C0AAE30F0FB80A775B040B8C63C106B0185EEF699E2E817EBA2E44760BB96C6AF2EE9FB532AA8A6C782A2A324C5F9CC78408B51B4B14561DCE2A4901825BCE8BDC3AFCD8D8C5129F032B8F56F06CEB0284546A164B42D72B4CD0F62C28961947638619F12AA01AC52BE60B2A0FCD966AE2ADEF1B3E11DBEE5CCEF6B176EEB2588100294CDD8BC3C8C5EBD83D4AE42AC79E6572152CA0297BE7997D2D46305C3C1D4714A2C6429EEA356D547D96863508D0B19EDC472BC006A0C155016D6562EEF7750DF29428C8B215EF4EA33F64579365D1805DBF02C0AD9937121F898B231E4E615DD35BDCC174A75DB74DE52010534565E4B5B39C4646455B8363AC3965083BAB40ABF12866B6EAAA8D1330B80E1A0BA506CBAF87104B83CE1BC6BBEE12201C0AD66331708C94DC11E056C2C1849B728C95A61EE1DAEF5EA200CF78E540597BBA95E08DDF3F787C8ADD959C3CB154F100D45AA3695811C39388AECDA745381AEFE108D2C8059CAA9C3C8C18428D8E081EEDA788C211C06828AFA0ABF3280E8336400D348CA19369F74E6F3637CCABBD67682B3E0EE41624814C103554F77705D2101885A5CB1C8A762D14F2D843AD8CCA217556F2388E519102FF00F3987B64EFB95924D08BBED5BD42667258B542B8D5D4321E04C69CE3B2F7091ED82F02D1C5B00CA160587CB7FBA94825A42C1D166FB46AA042B2A9B90688868376C47D142144F136979CF1112E49125253C286C6A0636F2CACA2A151D523E7B898C2E8C50658F36C1D94B1ADE16BA76B60368145457A11D374267C9B8AE394BED687E21AF5A6AFCB2FED035D9CAC2CB66ADDCE0E589EAA8E55AEFDE0CACB30673EACA81D32E50B23A39CF9805B6BC891CD1CC7E6858EEEA3B5C283758F3EA35B8F1C2B2CF8C626D6B93680E1620ACE6BB731D3BB2A29D01A5C150A21933E0E6F8E4CD573AE672C8715B5690CBB0CE2B51DD211E6DA032DCCB950616A8BAD5385336EA3C87CACE630DD2F930C32C93B740665876DC470A100E29864ABF1860ADE5FC987F309AD006DAAC1D26AA1825841AF3B2A8BCCDEC8159EEAB6042F32B855B2B37CD24B8FDCC1A8B6FC47866529936DFC41C2A0307899CEECC1EC983F0B9E2B4BAAC647CCBE012AC00663B5F8892D1B7410315959B36B4D45C6A6E50560CC2A8460E4E50959A041C592020656ACC2754C6912D196B0A87653D8B296D9814231CF3297F463341B827842C50897562A805A030A380944C294BF5CCE20DD5E16F6D12740C5598CCADDEB569CB070CA37E25B9E90B6992CA1CF12DB8591951B2DA2ABAD423596C6914EF1C043AB10BB86B31F1A29D4D85E568799532C6A800CD6AA24446956ECC0060A3B92E6FDD111F68AB578EF134854A420DB41C802B22F4435A1840C7CACA08094620A354D1498C558C70BCC05E21B15DE597BB999F804CCE4E6E62A362F9E6627BB10FC426A15B062C25340BFB846669202BE2D86169DAC31B0AC6B1329C5E84A82D2150056864576860CAD05655AB42EEA7865F9A85EA511555A39B0DA17868FF8AFC44715BB5BFB45642063E00231EDBA25C61FDA0A6F72E8860133816057803DCB2AC0E7A22CE8ADB4E72C0D24DA2539016A10298B79431F72A8A5CEC40F2859DAE5A9A39F17072D855FCEE46EDBB75C663AFBC6AECB29C5C655710E23BFC156D3B00DC7E6570104F61B5F4987D9816AA1EE5A1DBCD4608ABEDC17360D2F15A2216CAC08688AC36F7C47463895019502B9CDF642AE6AF9C0A45943B97BDCAE8401411C88EA69A130FEE6F7D19100032EDA6F372DE297DC2034A0BEE9285BEDC50AD380D5702C570FFA83411E17B7F52AFD4262D6FBF1AAF6DA1AF7995F9F440BE55D9DFDA36F6A72F3FE7E62A3920D4C0F38596DE8D845C0ABB9DDCF172D90B4465063168E3095EB9120669DB4F70635556F0DE7F531927BE729865589B6AE202B6281BA2E9690715AD5BE2E369385AC805908B9F718E28500DD675B4A8604352C4C460A3178316BF0BBA1B6AAE212404B4B34215489B22E0489A810F02B82DB84CDA087A7396EAEEF707A073316959C7696B8A532B548657E007DA5376929F31AB60376F1DA55AE5E4FF9165F2152AD4E9AF988B08B6AA058A1419DA6C8E1B16165F63CB339A44E6867C3A28710B4955E431FBA83447CD4979599B98324E96280694D1A0A20C22C5021600C6990EEE3C759EFC2545B540C5051A506588DA9B2A576014199042ADABC6EB822004940C4A189824417C8AA356AC7DD9E289CAC0065C79A136ACE8D54B8C72CAD0A2554A8B56B703952169DF735A260C8C231AAFD454FA4F2DE18D2838B46B52CF8C55B0F39A87894E5BECA084F04B00763055A83C41877C10000BEC1A8A96F61DEF94C786F4EEB07F70F0AAD0341E6D6098013566F214818A03EE846B916F98565AB6858958B860EE5435CBC6215180DD6A16C1159B85BCE4EA00077BCD0B728DAAF015013C029A24512F2AD5E0AF337924715B6BDC71585A1DD1BFB545B04FF001CA989C6C505D7619903910C061A1E9715EED786133E7E868A5F7995438369E2A1B1E894109ECE087CEC0E518BD907E6CCCE94FF0088EDBC17E7F88C6860209C1D791871479A3FE4CE5CB445DF027912158D56F4DD28D7CDA5CEDF1A69DE29A582F0421742DAD2ADD8992FCE6C59A3EBFB9FA70FC2743BD5E9FA742FB7B10DE7F21DA3F77F73F8CF13F98EC4FE5F53F9AEC75FA6CCFE53BBA04FE0FB27FFDA0008010203013F10CCAE8A9DC74A5DFD69702BE8B14B5EA30AB8951EE322806BFE6E9F12CEA72A8238DC437CCEE3048CA8EFA54A7FE00911D16372A2DC40944283A8157033D06A4B918E2110A1987D09169731DBD213486798A150B152E67A6568CE64545A20626A6B705837D2EA2D9672286B94469CCA97355AE654ECC076484D3728C115CCB20C4BA88416A68E892A57417EA5ADEA389282C948198172A2691DE4A245D4A1CC33530C55437159F44C682376A3135BBC0C92A683128E92794444E8AB5149C108AB12B5756A5DB712652BB4B7989888E27317AC84C6646BCCC25B2AC6B287133DCF5D06F5D1231D260DD322711094731F1B6976EA25E61AC80688B610499660A9415CC42C6252AFAA5FA84E18CF7C354884AB2928C33152D477654605CC895C53145998BB8583897165D470D6E00A9285B96B1021BE6600863086014B1A9A974C494C903F54B1B62C6165CA111D4B264D1116E6C5CE3AE09AA99A02CAB872C405E22732E262F710A95781F92215001EA23CDFD7DA1CBE65F45C7223BC570901C8CAA20544B9923ADC2C36D18CA881CDC7635F9E25747F0CB0D418812E62BFE622C3DA73CC47288E5731EA0731AA184C308F047E61D1232A59665A9442A6E2AB941756A1B8D2DDC4788ECBC80312A3657C4BF07F5FBA9A954EE6FA131D192578E606EB2825843B1982C98BA14351C445C061CC1090A0B98902319559ECFF00B31064D91743C1CF817F5704EDFF00DF8E800DB13A155A4763A65C86A3A49531AD25CFA65A6A2B4E6A56AFB539F4AAD78B82118D3CCB1889BFC1FE31042ECAD7F3F152EAF682CF529477688CA06615D54C1898331D84CEC92F84966E033CC5B47B99E4C7EA2A86A66DDFF9DE382A9388A1DA36DD92D22A86017865CDC59699A6042D89F7952733DC436CCA146E2DE95D42ED38961789E807C715FDCA1CAF881942BDC7117BCCAA1EB73D030CB3A966599BB2658E19A88B72A6F297196FA4ADB6F867CFE82756A7A37D2E5EAB7E3A369A3D41B3518D7AF99AF5F13FFFDA0008010303013F10B972E6A02DF4E6FA6FA25CA3AD4885D45FA6821DF1ED96BF4543B7D40164C5A952E05F4638EB5A263509A7D6929E8A98EE5DD6E38C4A89C46AD3352E8892EE33BC44A71F48F46D15AA8B2D08A99E6176626412880764B3503C4B451D28CAEB72E50D305A8411A63EB0736E2EEE4A742836E896B6CBD84B4F48A6E56EE73C7E8DE15D4B84B399626395473E6056CD1131664B961647D332F4358F4BE859BE208A428B172E292F2D61D860A2530C32C963B8E9464898CC122DF5AB8B802393422630E3E609913D2C2D15101DA21C4482B7D1A32DF5154325F3F4302AA13E44FEE0984BD712882371E24060388B8AB6CCC2CD23154AE1DC58DC17245ADF5BC9703E42225542C5C89043359CC98918E5C58970CC38841423BC6A3DD1D4507BC5D854A9ABC8D42A30AA565441B5F4B0858221BD71174089495F5667022A8E111840CCCE2419AE9718023ED0154BB53711897A2A116ABFB8FC0AF895D5CC6D8A8B4CA4130B35E219D98C995938E955A772831065FC0473B439734DCAAE8D2DA0E5DA3BA430C0C6EF2D559D888576319B580F4DE235555C081A655B865B9653AEF3EE591A30F408C62E546E024052103844E2EFFAEA5794C32C62545BB89534144B8AAF100701628DC4EA52DCF111A460D350E2CED15AA10122EA59071999D824F93516A6581545C02CEF324D9053D371AFB7EEBA1DDB11175072371C0AB462A60B010730D8C62C56A11BE7A0061CB2D548BDCFEE58DB26CED19A15FBFE926012502E2E502FEEA04815152B6E6D985105B8E30992A63D212662D9BDB309721E1FDC1B9B2550D6E60BB437505FE6E3C905B2C8D0B30ACAE6A445101512EE739C741BE258747E603B9287300969E6382A56CC063C4F38B98E610CB14312E1258C12EDC329899B564CD04508AF1D4D3FD475F5374DA1AE86713E7366733627AE6F1D73D1B7A3FFD900','Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.',2 +,'http://accweb/emmployees/peacock.bmp','1861.08'); +INSERT INTO Employees VALUES(null,'Buchanan','Steven','Sales Manager','Mr.','1955-03-04','1993-10-17','14 Garrett Hill','London',NULL,'SW1 8JR','UK','(71) 555-4848','3453',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004B0000FFEE002641646F62650064C0000000010300150403060A0D00000CF80000147400001F5300002F80FFDB00840003020202020203020203050303030505040303040506050505050506080607070707060808090A0A0A09080C0C0C0C0C0C0E0E0E0E0E10101010101010101010010304040606060C08080C120E0C0E1214101010101411101010101011111010101010101110101010101010101010101010101010101010101010101010101010FFC200110800AA00A003011100021101031101FFC400E8000002020301010100000000000000000005060407020308010009010002030101000000000000000000000002030001040506100001040201030302050402030000000001000203041105102012062131133014223223340740413335501542241611000103010503070A05030305000000000100020311213141120451221310206171913205F081B1C1D14252722314A162823373B2431530F192C253C32406120001030305010000000000000000000021001030406011205070800112130100020201040104020301010000000001001121314110516171812091A1B1F0C130D1E1F140FFDA000C03010002110311000001EA8A9F9E78BA58A36CF5698B45E516027B2AC9A7433832C76E73242D6DCF38D66F672CE6DE6E8CD6BF99AC1A037EA0F067E7C62E96856B909D5AA5F827AE8B7019753DB018E44B3842CE6A3DAF06A7E67ADFC7D68B0391AC1B1593ABE19C338BA09EBD5B93ABDA6E353E139A0C3AB635D130511BAA9B74BEC4B5EACB74F5FCCC2CC41B3B5936272757C339972EBA091BF583A42F4634522883E8C8616767E7D5A13A8C01C96023B5162351D0FD3F3BA52A14B6346956CD23F0CA3B2EBE574EEF56ECC34E8ABD261296D2625631AD3D7A25E6D76E125629CFC59ECDE8F0663798254C69D0BDBAC30A9C6B87B69026068325E9F81D8587B71AB26EB1D669053103E8666398751C5AFBBF8729BCB149634E956DD63CE987A4B793791975C03401527EBCE5326E3D9B63D29A66C6B83A28A2B40D763EBE5D298FB5703B9CF5D2F2C3546D3A95B750F10713D1ED53D9B36E691A7AD1986C3A99E15AE7DCEA96EC62510E8B503C299746EE5A0592A66D5D3FD4F291154CDB9393AB85B85E9658349234BF89C6D02B49D772379D4835CB9976AEEBE6C06E71BA713825EFC2C516A1EF9FD3E9FEAF93848B3FD04FC7386B87E93729E5D4DB98D54CF47252A52E8E2FA2BBB473396766452703A62DACA35635C98CAA85F92D4CCEBF7A3E68666631F453E9CE1FE1FA4F52F36B6DE0FCA82F04E5BE783DFC48EECE5526D3FA31A53A47E7DD6A3B151878EE76E1B0E73A12CDB37A7D6D71070BD2F8A73025D7669CE91A73055B182C0810146A4A9ACC316E1A70C4A6D53C8F4B4F1ABA63670CB526228D875A327570DF9FF51B818D297DC1A928FB3980EA1D1B96552487740CAC5B74673AE042E6F7AB695D33B7873495F49ED57B7387F85EA8BACDAA9966E85D57BF88B04A08AD2661B792DA2D7BEEB710A49B7783275D746E9E46025910E455ECAE29F39EC190498EEC43B3D57D3E034D142030C2D5B0D31582CA68C487E87D0668B34D452E8F332F9578D5FB271A79EF5F6054C2C2A1EA70C11AE7C8C60702AE1DDEAA3DE2C36576AB11D07BB97180802F416209F6AF656475C85E73D8D812569B794ABA716CAB8527B566864BABF6595B21CE07B36BEDE0B61F9E38980071535908BF6EB98FCE7B19E4AA9BA9C28B7354BF6A48ABD926FABC864CABAC36E4B6875D5A39FBA9896E68055680F4C69666964AE78F39EC54F7729574E3175466CB0922D4D1537D590AB1D255FBB1360B9DD471977D93AB2C45E9D161810B333373A79FF562BA5C71A42B743E48C3097E4272D3EC238CDE455A6BC4E02E638BE8F56A9154F24265995505FB2E28A9E8617A2A677004A9D5702501AA8B22A10E0CA0AC53E568A85D83BB33ED67AB6435C881A212C09AED156EABDB7264BF4A8155E03014B58A15D209ACA8CD1755EAAA5DCEE955E9B9566C861BAAB1BB5EABFFDA00080101000105023E82EFEE2B14E2BDF8C20AB9C1ACF54C89EB51930E87D10CE75EEFC4A5196B9BF8E2186F176322E444044F056535576E55384854BBE3737F4A6AF2FA436AB96B77342BDC4FFCBF9A51EDC795539286FF00283F8CAC7AC713957C31413C3974E238E09DB61C257893E31616BB45AF81AACBFB5911FD41CFF28D1036659DA5A4976386BC304B35891F4F5D62C1D678CC8F8EFB6C6BA4D4DC6C9B0F26DBFDB5FBB7B63157D70F2A35684DF354B4A3FCECF6E3F936EEB7ED2692273E34E2BF1295C72D635AA1D93221A9B1BDD96BB78FD877EA672CB3B6D37FDBB6A411B8C3726F8F54F0D56533F333D939CD637CA347B5D9792DCD0EDAAB44A5A3E40577045AE29B5657BA9F656754B4F0CD816CB62087E37F8B4826ABB0A5A71252A15D8F66237D951FE767B2BDB597E26EE7E45F2BE466C7432DD9EDF8D5D86BFF00ECC2E85F950E734C12D7D5608E6B01D6E35E2B73E3B3E45A71B081B7F61A8B34772DB75653F2431FE767B296D4F6503DB1D798166B09BA63657AF25AA9ACD8C9E4BE0ACA55EB4A0AA0F5B7BEE8A08A46C062DA51274F6A2F99BB985D06E7ECADB7C4AEC9621AA33AD8DBFAA3D933F2C8554240F1E63A2B5E5BB9FF00AEDE43BE9E4DA6AF6B05E6F99F8B8D44952DC71C573641F2C93F73595BE66C51CDF0D686C50ADBAD9598F65E3955B534F1B7E3A507ACDC45EC7DEA3727C72BAFE54AAF97C82217AA49E2D77B0EC9F5DD1F9569EEE92DD6ACC92687413976BFC72CF654D252D735B735BE4D73CDDA1DE53A4884B6ADBFB594DD993868EC7054FD0F8EFB79B343B791EBE17A975DF0C5A789FB3A3B3F1CABB7D649FC5BB87883F8D3C9AB48DF02DFC4D97436639F434ABEB686FBE2B3E61E29AD2DD9DD765523FA8383ECCF6A032ED2FE18FCCBFDCD64CC28DFD8A3BF65899B62AB6C6B4AE67B5DA505E86B57BD1599E016B67E355BEDF5362B3A450549227B7D93FD546C2A8C47E4D565ACF2770936B0CD1E58E4D726B9772CAD26CDF1CB7366F6DCFF00E863B2FD63FBEF558DD157C12B1C678AED55301D45E3B37171963656A38E78C5ADC6B554F326AABE45A9B298E0E0A238936DE72DB3B6F2226C55F0FD649736A7D17A95DAB1C067AD2AFDCE920C0D96EE4D7D2D75F7141D952774667A905A53579614D7588956F29F20845BD86DAFAD5EB6DDA9FC6FC377CCB162AD3D5434EC471D41EAB21772F550E5CEA158017AC8A51D974B3C934049A779C535E1E26ACF2B361ABED229933510B9F6F470C10F87BE1D2595357827575D62DD91339B376AC71421EE737F459BBB5F3CFF002617E9BD4B4C3D43348C2C9907B1C835A157733BBC936AC82FD27B27A7E2DE5B059BEA7F97E2AF0B68C74AC7CD1678D756C2D959FB7AEF2492DCAF81C17C8F8D37E19876F62EC76439ED4C9BB4EFAD1B1B4F13BDF3D5B565E36FE2BBE6F906A5C702E415EC3DB6DD7E58668E57A83F4DBB673E59258D1CB4C2C6C8D747D8BECDAE05F2442BD863CB9CD7995FF0A73430EA6EC9AFD30F1C66C6B78DEFEDF8D5FF00B98AE536FE256E2B5141DCFD6C2D77736594313E30A7A41CACD2705481EF30B656E1D5A5C413B6F6AA78CD6B965763AC3ACB1A6D491BA0F15FE39F268F53B1D8F8950BEDF1DD7DED152AA0B96558AD4E8494AD393BE2731EF64EFCE13EB472A7503048C0336A16C89E0C69D6DC16C2771505A95F036073A6FB5FB9F1F8DCE89FE23B93B8F1E63BBA48FF004D9952B239D966BDDB36AEFECE1FF1BBFC70FBD9FC8FF62ACFBCAAFF00B53FDE0FD96ABFC5B8FF006FFC53FB38BF76BFB2DEFF00AEFFDA0008010200010502E0FD01D0CE0F0DE83F482087BA770DFA5858E8EE40F0EE1BCBBA822E5DDD0D0114D3E9C3797F0790B2BB561BD4C3CB79C2C74E51E86A2101D0DE32BE45F22F910917A23D18E01F578585DDCB793CE38CA3C04576958432BB538617F64DE4F2E1C03C6106AEDE72823C8E4F0D5947B4A3E8494CC224AEE5958584D407ABB81D2C4782135A9ACC2C1442EC28E421E8021EE786F0796A3D195959E08CAC6104161613783CB5058EA695947D501F4421F40F039C753467AB3D18FA206501D785843D3E9307D11C0E0F5019FA43969CF5B07F478FA4393FF103AFFFDA0008010300010502E1BD43828F328E83C843E9B8270F4EA6F03A72B3D184475B381D072830AEDC21C353DCE40A78C3BA58D3C0E8C2EF40BB9F6E30A61D4D77A772F640F3DA82C73226925128FA8E8017C6BE25F1A2CC204A0874BC7A44FC2F429D1F4E10E8FEC3087078EE0B28800F7ACE43BF3740E0FB464631E8E6A6B96517A2F5EE8657694E18E0FBF40E1E7D1A32D68734FBB5A14A4A0D19ED6AF40BBD33387FBB9DF87AE4F667B263F09EF011932BBDA5364685F70C4D21C24392E523BD3A072E43DBA31C14C7969EECA29FEFD010E1C9C70B3D4E083501844A3F40A7FBACAC7480814F3E9F41EEC7402B28B56392E081CA3D64E0139EACAEE5DC9D93C650EB91DF473C387016511D0E38FA450E1C30821C1E643F4C7B703DD657BF04FD32BFF169E4F27E91E7FB7F4611F71D5FFFDA0008010202063F02B24A1D6EFFDA0008010302063F02B24233047566434237FC3170BEBD9831A8CF27FF00FFDA0008010101063F02AA95C6F2F713DBFE854223172C87CDCAE67473E761C1EFAF6F3E8A847254F5AB7059B35146C32039F74D08B2BB790F37C42070FEE38B7E579CC3D3CDB392D428F15EB45E304C07BD44F605938C6FB688C8D666756C2EB79FA7D581FBD16527F330FB0ABED0A9CB9F62DD71030086793CCAA0D7A57027DD6BB1C0A650DF46809DE1DA6DDCB4E349D62E0B8FE1AE68941CBC3A667D3D08788E9673F6ED6D658F591B41EA1C351B8F780A3BAF9D069A4987DD46FCFC0169C8E5F4EE75DCC6B079D57B511A7FACF6F75A31F3A063CD04A1CFCD1D008B2D065DEAE6ADEA2835B271329B2953DB54D72678A697F708AC8CF8A9B3A56512E5737DD213746F21ECC46D3EC4E87F573733CE502F256BF5504C3EDDEFAC7256B51D08BE460918DB73C7B3A90AF25CBE9B4D7AFDABEB8CE3E1AFB10608F2F974A2CE27087E5565A0629AF06E5C276C45BAA2C131B763956175978A28E4D9676F34CDAD91EECBEE38A1B97AAC2CCEEF8735119786E86B7B1968AA2FD347248E1865AFA165D431D19F85E08F4F258AD2B336C3B518A1B5A2F7F2061362059648D158DFEA421D502DA775D82E9013641EF0AF6F32B3BCBD05BB6230345D7A1A43DECB9EDC51D26AE06BC116B5D8E29DAFF086968877A586A5D566D1D48727023EF3BD0897DCA8E7E5EB41D0BF37526E7983B2ECB7D09C4C81C311B16A73772376461E8507F18F421CCA2A6D551DD75842834B9AD8E3249F9EE4DD4BAC646DA306D5C22EDE3DD057F98F0F1FFA92BA93C63FB4F3EA2B88E37DC8B9E5582B5F52925AF76E6ED50360B4E50ECA3A2B5475F334430B403BD654BB0A74A0D7C7C313B038B3A4B7DAA2CA28E96419946C38300FC398396A547232A07018091D65678DC537565D6BA8093784DE36F69B5CCE14CDE9A28B4CCDE85E0F025C085C12FDFE9344C6EED48AB6DC13A58DCC686D6A2AA2D4F886B9B0C66B9EB46D079D47E1DE10DE27876888965D5381AC935A03466170AA642306368BC3F48DB582FEB3CDA6CB796D43F899E92BB83B1574F0DBF94FA93B4DAA0594CB94E232F42FF1DAA79AB6D86603798E595F24120C1C1CE07FA50923D4C6ECA28DDF7569B1031914BDED63F1F3D1183551B80B0FD7A56CD82DC51644032B6D027E6A10C00548A8B029E723721A16BBA5EDE6976DE4A20133F89B5ED3CBBB62EFD7AED5BECEC595CEC87F37218676D6FCAEC5A76852691FDD81DBE7685A8D635A736634DB40A236974C38849E9B958554F2D391A9B55F2B1A3D6B2D6876739BA398D58FB19F94AFB2D3EE3A3A3E673856AC22E674A9DCC6E571AD8EECA2E031E417D777AD46CF85A073DAE414CF61A807283F2D88B24150ABA6978D08F75FBD40A9AD83F547EC2A8D9C31DF0C9BBE95569A8DA391AE2E0C0DB4BDD606D31434DE1A69031F98CE47EF1A52A7A362678CE9002F690358CD848B1FD471506AF265861B5F5F886CF3F3C21C3BC5E9D169FF0079E373A2B8AE1CF63C77B93337B117B7E9C9F81EB5499B4E9C166D34AE89C2E2D710B8667AFE67B43917EA662FA7EDB2E6F605963617EDB17DEEBA6FB689E083A7EF3E95B11CB23B88EEE126DF3517166AB58DF7DFD2AA399B50E94F7BAFC074A32BCD495C466EBC7BCB8726EB860BAD6688ACA455A30C16F4797A5B62037FA5AB4EE81EE8E4949CC5F4395831A210F8980D74DBB06A8D95E8736F656B66DE46F1981F96D6D57D8C51FD3651D238DC5334AE6D6ADAE7170A733A557B170EFC97FCDCB56DF83970E5B0EDDAAD55C5583CBA901B36DDDAB45A6A9191B9EA40731B9DD94B9D8DC848D73B24ADC8E7F79F35E0E4BB754DFF00CD6B4E4D5E9FF6333B3678EF02BF10E47707BF4DDAED5F77E2329E2BAFB7F0599EEA924E5EAC39732749EF0B183A4AA9B7A792C2B7C2A3AE4237DB5346BB03EC2ACC3B500E44F6A9DE1C5ACDD88BDA6A28D6D32FE08E72192D2A5ECA64646061B1F627F89698989E1F9E122F196E51EA9D64EDDDD433F36DEA3C914B2DBC2B69814D64317D089C0E6BAD09EC6D8E677DBD7CA00EEB7FAB92856556F5ACF0D87D88B266D8EEC5C3FF00856F23DAAB86DF6856DC2DFF0065F7BA9364FC47C6C63867AE04DF4B56A3581E5C5AE8DAFD30FDB731C6B57118A3E29A3B44ACE2478585324901C82C923DAD51EAF4CECD1C80398E1883C80681BBCF751DD15C5653309350EF74E283B6A0D7599AC1547379D1CBD8AB8DFD8B27997962A87CA8B2117D9EB08C9A435D8D5C2D5B0B1C2E76D47EA88DB6E198DD804FE193C30EA6770C2B4048C13DB5E189248DC23FFB97EFF52FF1FE22E3F69AADC15EEC6F7628F15B96BEF0C14BE1F2CDC6D3D6B0D7BCC388EA59B925F12D5932663B80E1D09FAE9A37471BA803701E644EA58D7B5B6EFB6EA27482C04D40E872CE765BFA793337CA8A987B566F2D85797BAA95F22ABD47CF72713F4AB40F0DEFCC337B965E132C0E7BC8315AC22FFEF571EB5AB81BEEB43DF21C1CCB4C4DC3A936461CAE6EF35C2F045CB4F2CB289A660026736DB7A7A5491BBE254E4E1CADCCDD853F892F074F1F736152F52FF823D4F5FABFE94579BD68FEA5E7F52F33576AF0DFE6FF00CABC4BF9A2FEA7A6FC91AD47CEBC43F97D453FE61FD1CC7F5B7D2BFFDA0008010103013F21422D196659EAD3597187F9DA5C45E8C9B98E22DE7F0896678C6D495ECA655F2622941EF0630C4A1DC87ECFFDE9692A8ADE89624C4CA6F0A64C0F32F9717465D1AA7037530438389EC997CC17F225FC079F1172AEC676917757D1823D9857C90D53AE040E3F7FA1463EE60CC52AC8070C5341B987885ED827998C1DF48871E44C4CD3E6F1187C178F505E20D824D7CCD8B92EDFF9D2C0EF2F17DE3B3AD6DF01E793F04E6B64A01C1B84698F1661F66181C12C881CB65669AD8B62E0FCC6F3BA3CCCAB8C0E0D44B37B1343FEE6293C45A1CA00C8CFB345BA79D4BB560F1822B3EF150F64567A85A0549A6456B5A12F72D37CDF64D7C4ED315386FC13323385C5C3058AD9D4C066DB057E11101A368DBEE997C620482B83A78C812BD692BE3331129ABB3578764B8CD4B489391BB551C37FC5CEE9A03DE99AFDE7EFEBBE2ED2A0F96581255554500E0D4C9F5096D3976FB4A5B86335BBFCA65AC393F7B407E01243E339B9960BC6FC8213CBE39ABF68ECF3DCAB7CC6AA2D92064C697BBCC029026B03CC2E7790BC704B93591F4A9AFDE68F7D6EC7894ABA28BA81404DAADC1C5B51AC5B307E552B70CC1E43DB338D34D588AA30F21FB52341A116CFB6826CB196091B95C57E226818B46623DA624F03B4EE88C75563738A6585A2C55F6CCE0B0FDAB871F64D3D16691ABD1F062079396045B817C4B916C31796625780CE74BF1A956BE0CF81DC0EA6F726B5BCF22614C443C1FDC12BDF4E23734CA9005C77D3F1003321B778850D0E6521D277EE0D67B41EC93DC26896962C01DC86BA0DAF7530038C12D2D4521C36B4972E66D21BC210FC10E8CA0EEDACA3C47BA6CC915DBEE4871E6FB3EE13E301DD999118A3C40EF059F9467698D1C9C7FECBE2D606EB007EDCC25E3134164EEAB410D3DD864223F03F70BBCA45D17646C157BD861ABC43A0B4EECAB2464D5B02190841AC9BE5AA6BB39FB32C63F30827200BEAD413E3F51525570B7C62FBC1F941A3FB90CBA32FF81EE6A20DA6F349F885E2D62C9E15DBC469E5B815101A2D70800DAF72F116F6B3E285DFA061A9E19430D74A8E21817997FB131F56E2E6F61164D9E92A2F06DA8FCA0069B1A513CBC31E6A8E606F3B1E4E676F588FD5C25D3325ECD6A314B3737D516E63A6F72316CE98F2496B5B840DBB583BFD12BF042E49235692AABC5B193DA998734E8FCEA045715EF94FCC350F8BF99BE197EC244C5CC13715BB988B611ED23957F975F8615B56B83F3295AD56132307C58C3CE2ACE19B3B864A2D25F7331A60E8577078481742363430F825860856A4EF3474580D11BA84A77643E91FB8C9BBFEE7FB42947BA69983A81D1440E15FB1E997080ADDA1C3BC7997C97F80C696EE7305D0F6E496D637C47DB4D476A351D9661B9AD417799B312CA81468772F676941842785BF33F6200F242D664EE7CD9AF4CA820F3DFF000F71F1AB1B3F7C3F30D19B4964180CEC3D4B252F045AC528D4C9D02EBF2EE0C44EDF081D8C797B835C9B720C0B9E518A762793024A261D42F265A3C4F78FD164BF62ADEA01770CFEE559D91BFE0FF51859CC866F0E1F247EEDF5B2F4988A9FF3D12CAE2FE52EE5F6D9101F16563F30A855C0CD6C2839BF1048EB5C4E6560C79C47E37380ADD01009D65D8AF73CE56201A1C8C4B99E1328704F49DF3C8BE1A9AB39566F84DDF3FAF04009C4A6FDC6ABE53E4EE7726799368E359F1BFF00B2BBE1C61FEA0211ECFE86A661ADE0D78C4E108924DE8B72637174321E5C02327231DDD36A6E0DD33C66D52D87A978C27D884F3D053A53D724976E5C633972A379A7F09DE21A10ECCA8C47461182C3B3C44CB42AF5E7D3333F973F33480BB430FB8C4C0705F87097118D1D2039C06208C540A5AB47B39364B83754386771173DCCF4E239AFA765C43BA4BA3D95B8860EC039FE55D2665DEE257F90F2A4BF2B9EE1E6129BDDAFCEA736AEFEB717083BD279267481BF09605C2F7C387FB201411D26BFE32A1C3AFF00A2094565514231CA8F6DE6BB64C4A7D92FE60917E03493F6CCAE6200C51343E426626DE57941EE7C4487401BACB22A22714BDC3104B33E0FAB666E2B0FE983900E2FC475F63EF24CA0E30BF51496BC51A5C89660604E5C933DDD36B04767B3F31726B4B9F8FEC86EDD682E40EEFEA11AD98B2E8130DB90535DE1E1C8432865B66BC620BCB37996C13C33C3448BF67FAF301478E4081708FD043476A4D5EFAD7676F3030185E324B6434685AF13DE45B771A611D85BFDA07D8CBDE0FE219765FDD925B5E77EB060B0D9BF77854AA54B85001BB746F1F329386DFACC08A701DAB55ECD7B997463981A0ADD353109916A34CF4AB5DCD47CCE5D5E00A7670621C06B001B767C30FA2DDB65790CA66BCECF300144A8DAEFD985D5ED8603057941C540EF25E609C767145543068023DA9FC406CABBFD1DBD4D7212AEB9C865C272FF00A3F32930B330C18D5157E618BF2A7D0861EA56308CEDB2A041CD1776634B6B566DAE4A8528B89156772D79A798E113C8A65F78D27A8504D5C3473076A2C7C859FDCA873E618C7C26A5CC5901AA47B7F8BB9F9F9A3D7ED3F97EF3543F4BF7D07F4FF4EB4347BFD89F86FD3A7CFE3BB33F37FD4FCFF451E6107473FFDA0008010203013F217EB31EA21D1F43D07475FE03D09798A22636FA1A75631FA58B74B970EA174D3A33065C7E8004122988F4497A28784B25E8BAA3E908C5B9C44350A8CB972DAA9C51FA4E53C655C4E972A6A598351E99C03A06123F41EE96ED2BDA60EA5CE6270823D748CABA1B1097E82ACD3A730A6218712DCF58B81633512E3318B5384E60C7D061B8D165D89B96BE891751AE8765CC962609CCD3E91B66110C31AA9975ACA588A8B99C4D813496D6284D3A318CDE6F0974670F400386591884861AC3B74134EA63D6AE84174904014C6EAE8188C5FE81FA062A07D2348ACF403A574B8B1EAD7A54BFA0898970DB1EAA95F45CFA12542B310A8A41B100874B97D6A58A9415F5574060174632E54AEB72B2FF00C3A747587AB5065F5B9FE238E8E495A31970AEB417FE2F12AE54D662D9D2A5D741DFF852084370448150E8C2547FC0409FCFFC86FF00F848699CF4D2339FA7FFDA0008010303013F21845D4E8756DD0F4D4F53EB674210E8CE22458ED7E87AA845F41012B0891311BF54E8FD0AFA4D319CC0422712896C2184668DE5E10E8F56E49AFA2B08A0728F70A96DC215844656EF99AE0E8F5A0933DC5EA120960046D03A5C2E1D61898A6610E8F4BDA257BCBF79994B294723E9AE12D9D697001B9CF47A009BF4705CB52E531D887A61040E8D19804090937747A73D371433DE71473338D880EB195D01A5EA9A022B5F5AA8A4CD4DDAC975456F912D810F4598042E9AE1105E926895261F41087D1362397172EA22A33139499B52D178F1FDCD4EA6D3461D1E9BC204D63A8597188742745809860C570747E9B49A109B97F45B9974101DBA4C5972FA54A81D4EE46018CA3F414AF12983A5CBFA095BCFD14C032C97E80C14682AE3A54AFA329195C487D0296968C3A089897139972FE8B9AFF0B47A66EA6D826695D695C7FC2F31E23B96BA0B2AA04EB735FE2F3155A54AB2A1AE8A5F424A0B8FD6907A0CC48E09710BBEA1BC41C4B7FC41C4A897F41CCA863FC6CE7E85A7D24FFFDA000C03010002110311000010B28B9521D76CED4E8F24AAB446CDDC59BB4E6039EAE2C3F6DE5CA0ED984C4D50CD65A2771C4F270177FC62705C85945CFD23E3B74872A632F54AF0AC24FC0A9E0A4545C56A5F76179FDBEC5A5952661EA845437D2A39A744A38CF598899E947A33E0C0A3D7844619E7D1D2777B8D307E989F456137B324F8A096A7E8525064F219C751D949661714795FBE2A618CD5A77C7E8EA504F9D9099BEDB8153CF2CDB147D544D691FFDA0008010103013F10506854780CCCB833F9198FBC70A552FE691FD339D88B587128DA47A3EF08351A71B5B9520A085E9BE31114AA031C01779A81A0A133774E3110F2287CBCC426B5D832B6643C7787A3D5331103BD1110EDBFDF4253913EF1A1BA74A5BB5E486A97E144A9881173B8466F12F750ED0004D988FA19163B5BA0377716042B7E77C7BFCCB0AA5D1720732BDCF22684ED33CF69587445608EC26E16A5549569380BC63A7011FA22076A9F984438E8C4BC3558CBE1E825A8687697F7F5EA2AC5D45BEC40D75C002E3EF80E1B42BD8E6081C34A033EE6378C8B35DF88B900152F90AC7B9590C34E40B5BA8A40CEE0185FBA949DDBE32B40CA5E88C38E7266EB0C677B83659CC201C84FD1FDCB82D9FDCA17BF4664B9ECA9332D687C4C1E78D88163E022D53A49857CCAEDBA8A1DEBB9005A0B3BE25E9056C12E2D3F71B4C1D006B8C62556B6DAC6837E7CC5BB28A84B560CD1190F5121A377283525029B16B1B1C1DBBC0F3C41D1BB43B063333343299CA61366B609B8F5E084A46113D53F31E875FF00137ED37E65E1E8C20A6D556C28EC0434C41063616572B1C9365E36208DD12989E05BF8804C640A5AC059ABBAA6565116BAA1B5BC40C738AAA1A03BEF8FBC5BE1C263005217B3106D31AAF1B2A9DC0DEC28D36B225796D0D884A8BB2778E546B6202F1844764DD322664505A2295C76798B2E3846C03FEA3C3F8E222BE9FB9ABA08EBB08DDD4021B2DF6C730EF90D18C5C33AED3B1B574536D12598840355656F300CD372AE04E1B0FDC4889C5170D601454775C3702F257F931135BBB152C378FB61F24B2CE512E861732C2DE96E48AAE624442F0D3C5FEE0F045CAB0B867145473663B17524CB6621F2661339B1B753094A4980320F198F1BFE3115FA9FB831E832782E50D2CB3793E626E82C735A282DF0453561C23D910DD5CD2520B91DC0573288308919CD02EE367AFEE5E058997BC159837069618C59CF136B802A5A2D6F0F364434649EFB7D573057EE1D06C06F5983C825532E5997D54AE5A3588F106286E66A4C3773186142B559C5E34C64B742A5D3F68012869BA076F98D4BFC187A0A85005E8ED40FB42771A5E100FC42F8166EC95CD3A8C930A0B0C14E72BDE00A054D56AA4F7644B5128228692581BB292A59A421AF32C0039293C931CDB02C46DC4B05D82F94312E89790E61FBC0C154A651F9A9502A80C2DED32E8D24E00EF0D5622F868D8D7872CD42DD42D9B458D5E8B35E2300B76DBEBEC8174C4336D2FC18AF25FBA191D2D9DEAFB1078627A0D478DA28FBDC14CA7904E54F73BF12F4DDF639862D7EEC6CE9396AE3B9C0076214B80AA640BB8E6CA98BB045BC538451E8D08200004E595A3EDB823B202BDA90BCE20DDB1B45381F3128D44E5E1B2BA1457FB96733B08272A94516ED0C14F2C2BCA9805B7144B261D2DFB28F0511BE131CE292C52E76C41729ABB004FBC153A57FD4D3A51C62DAF062216798292EBF6E0DC2A0D113488335708DE50F87787439697ADE2AC6FE2E5AF4D62D3821D66E36E5E0D8784D82BC3DE3715D253ADC8113DAA6BB7845E5E5BE25472FE055CA168ECD56616C317105120864621488AA30DFDDEDC1E212F225D5C048A94E28A2DAC3C0D82C214472152E92E8CA908C1C85424B4B83D54365EFFD8F5052CFDD8A4046D1500C2E5F7FD448828022D30F41626C90565D6C547E1254E9D9E700DD23F0CC541F47C6DC5D0CB50969268009342EC3B34993417ECB495EB24AB1D83430538D7B7DA270096A3942D172A4025AE4AD2B0A60CB0D99A80277C6334C33772FD9412295305D146CC5EE1F74E051C06A85EC6085E141F0442B793F61FDC565E863BF170721293C46654107B363FA99E01A14D8033009C16A770EFE61C633B8D118887166D55FB210A46310FBB9FCC3C26737F01FDC7F6C2843C5568F98A99141750AC224A33084604DF0FCE9B23485ED5E555E103B4B93045BAA2B7553364B692D2C9F3BC0950540D101BDA54A314961F372C03D1925DBED656B1AC0969C6770002589F15B7AC4CE159B0C5B821A3CAA327A1DEB8874CE626330032CBF1B2644522A75ABA17CD8AE1F98B7771313D45460D706596D46A4A128AB1200778FF380A55B591B63535780E6005BC908E681A1954BB65515A8AADB31EDABC97F130F425A681966B38FBA6A1BBD001A7D9830D5BE4D88721913B92F7B886B339C28EFF012F1828481EEAE27C38DAE682DCE0D0EFC465A84021E12C8A96430C10516A600B61528206F174699460E4C0797D6822B0145721AAED121E437744B630A6A8CCA672E61E2106CBC97B9E282D09D81467B356CAD45746D5AB0D469D164E0880469EBBBF3385C97AECD79DF30691BCD7CC39EA93994F96E04E5623B83C6736BDCF83C4ED562C179CA0C67AAA016F085881684DD393556015CDAC36FE73EEDC05AEEB884F6F70A8023620EDAF115991A9356EBC165A6C95020634624609CD85A730DDE9B1ECEE2C8D45A0480691C8CC4B976975C27C64177B2D4EE5D1AD614DC2A3C8162EC14717B63086E1B05555C01A22F3D7961A0D2CE25A7E03EE8C5BFF408DC6692EC5F3E7F3142AAA94A9BAEC71ADC4BE4266539A1B5787111265DB5BE1197B2166C0A56BCACE1F27CC5692B4EFC4B9C556D1CB953CB1EB486DED70E89A66C05B6EAE0168B77AAA4D643C1B4F112C2AE04A052C52EB3C401BCC1E10C4B060C09D93B7B97270BD0DA6A2875A0DCAF41FB4B26D2A90F1C9F1002C55918C3FCC4B49BF889A46F9311BA61C58DCBFF0033EA0015828A57E13EA266D1E2571FC32D94611B8B92BE4863AAAB19D6791FE2294F7099AC40EA0D6621188D15314D02CE51225DB22191BA499C8B66FA5834A1D1D3838B9C464D03E159FAC788E569C2E4908858DAA517111A41B379B6E30FFD8E845D9C2C57A0BF88F0A8DB654A89EE3B97D685C9E5E61754095BBD64F1DAAA026F5D414D5B1C76D904E40E16BC361918254322AC6707037D9E26240BBBEF38B896203988DF0EFC12C92464171E3692B925DBACCE0810DBA97F50C40934CB51D8A026A1C8EB8AD0A2ADB547B2614A88015895C9F70E2012C6425C8B29D882CC57486105DF71A6012801744B11323BD0AC844ED018102EAD09F76E2D2EC1764CB8C5157362CDC6B8DFB31C3589785B9FE48545A0F8B33E18608705D851C6B37D3663479186CAB3AC2AC1E1D966A2A78C40C80B2A936307140BE22DF0B1A86952AF082D53601952D62015AEAC6DC04F382AC8F4360E080694E5C4365A58929B30E0FC9290E87DD8940616B2B81EE24F66ACB61F0979F38994370DA39E47A74DEDA85D21582C369A957958065009791334F30638E5165817597B42AEF74208E8B9C8D33B222068430E71B2601A100AAB3B9A5DCAC34A0CEB7B3F69590A198E4008F9A63B806D90120855F0CCB74201CA7977A99F0EB69734B2F1877E63B2CE5484321A536F7330E19E65352A97BBF14F710EF11ED24E8416EDBC66356CB42D54A88F0B603CA3C352B10BA851043DB88F160A6356219FE86323F56B1A25AD17C55CA3C20AE3397D920382A46A059704B44B30BA229BA32A455ACDB28132D359DAC28E4D951D89C800C10E0B0859C11DCA8EFBA5CA2A1AD77C836ADA5572C7602DDD6531075A441EC1A3E2562120FBD380F9CB182C3007308DFA8C2B16B359439F371E2B63696B548EF17078A0DC552A20B60DF7D4B0CB51261547DA99BBC4A289CD9FEA6C2B51A298B8346CDD5D2CE288C0F805492BB284A0AB1CB2DC94779B443DCA10DEAD55BC855FE2516B897B80E42C7D8C0654576356DA50B9F8E83FE4FBFA53F908FCBFD136FAC6FF00CF98FD89E1FC32FD68A135F6004FE6FB23B4DF394FE17B67FFDA0008010203013F10542C35F10F558F41E8AC8F35191C333A74A98EE5CDF43689C4EEE8F448B1666E2A984648C88ED3A6B1DC1D0EE61899415D1E8971186EA88900A42AC6222660D972D6A731754FC918388CA89C4CD2258268673205245E260943736A1BBFF7B94EF8E937D648342F32A0E98960B2EC46E354329AB001862A55732EC98800F8F41B9B7450DC052979943301F68B293980E5FC449C7F9E62CCB2C6226A2E20123306B999B0CC8741B833D0C2E10CE9EE0C6D07602606A0C716C7D4AA38C261659618032F67063A533486E1E82B6C31E252D082AD09C260AD677CFF0038811A8DCF89296A50D5C5359881CE230B0F6B81F63A2AB74AC7409AD9DDEA39507244AD7DA2948C98254CA1A94B6CA71053B25D0EEEA545E21D72743D36AF572A080C463B44ABA772AFB13303117DF71F896A370520E7EE567732E6A6FF0044D2382A3384908EB2415D134EEC96AF8A39D0314580CA625424572CB187794AEC8A6D174BA3A54DA0B58C130E84EE84CD3A6065B5D46FC748ECA1CCC0AE8E28C14C362F48E92A04A8A61850A8EF108C0445E8A96399637174744159C731442447A54DE3BD4017CCA498B32F404948BD2F11FC047118CB2589ACE496F4F4046E6C0A262519B65C491732C61094A054D41A89F4265673AE5AB8EFD08E21CD42D8AEB98891C2641B6574B8C65CB9770DA78FCFC4ABC31FB6E1FEBFD4A96E2002DDC44CF48DC59527135821D2A5C49513A62FF3E62559C11E066D364D622166E05A815D3DCBA30E95292574AB61929C46C4311E12D54D904D26E5E105E632AC0A2BA9D1C30650C3324B9BED162A67799EFEF06304E1825CA198BBC074666E53D6A6A0B8460CFE8F72F1EA15425E278841A964B9E7E9E3A3D1E9F0BF9DE71F5387A3B1EA72FE711E8467FFDA0008010303013F102398212E021D4AC4C2062E18A56662F83A1D0B3D0994618E8BA282A692F10592AFA3B388CB919E843536EB7033096C08335140733C928CA460C3C54F7E860626DD5E2A11BD43C4BA84C5181661CCB7D334AA9530E4179CFE26105DD066ABC46F31D2439EB621899C18E198A9292A73B2C5373B6BEF2C8422A086A34B71A86F311C7ED1BF074137E80B0798080C6591D984C6AA2F033950E0EDF6982095210E60E6311E196610A6442FC9741A9BF4C010D7BFA8DFA57A89B445CA549AE53DC770732AC954C73A0946231E2327CB2748C044A479875B25623BE9AD88B87BD7A8ECB6436E33047517CA3AB813BA953788911B9B88E6BCB30F6B0D459E9B8D616962268547EDA805F7466A60DCB9E4FD9DC964610EE1A6216996946A215144F30C26825CBBAC751E9E6690E8940B6DA6B997017BB3F981A9C9AF3E658065B3D4EE0712D85A435AE22C4372F634C4932E0E0F51FD89E10218EA3D3222CCCFA189F9FDC519BF70C24C2E6FE6168259EBE4D9E9FE13227CA33FB8051FB8FF00D81287B3FBBFE472061F68462A079618EA6DD034BE20CF40DC54FCFEE61E8515C44778C1326E067F670F8654F4185BE67A8203BC7536E828B82E1820B52F1E1FB9774B17162C014DC216E6F07FD8AD6E9092E28803A910A1D2083884B5C471C4C5B862F0C16C8B18E7100676FE220B7C7FA973DD816608CAA5B121822A87E66A0AEF70847C389A485AE195993E6527B9B350CC36F8D4532625036899827A70422C345C452A59EE2E812AA0798457D54ACAF4D430175CB0693D2F40D1D280E8FDCB96441EB7060C1A25CA527CF4ADE751153895E063A122F12EE12B6C3E9A874C97F3FD4B0ACCAF3D0305B0027787C908CC5E98571D4E952AA0F45A8E32E7511566512CE63908C831822B9471C4A1A86A25955892A13734F44E23692059B963789569395F10CA307222A225B145312D29B86A183D2A57469EAA88BB63FBF50CBF9F997843106C1393A0B46070980F30EA4771847AF8EFF9DA1A66937FB9FB23A9CC77D5FFD900','Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses "Successful Telemarketing" and "International Sales Management." He is fluent in French.',2 +,'http://accweb/emmployees/buchanan.bmp','1744.21'); +INSERT INTO Employees VALUES(null,'Suyama','Michael','Sales Representative','Mr.','1963-07-02','1993-10-17','Coventry House +Miner Rd.','London',NULL,'EC2 7JR','UK','(71) 555-7773','428',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004E0000FFEE002641646F62650064C0000000010300150403060A0D00000D540000138500001E2D00002E5DFFDB008400030202020202030202030403020304050303030305050404050404050705060606060507070808090808070B0B0C0C0B0B0C0C0C0C0C0E0E0E0E0E0E0E0E0E0E010303030505050A07070A0F0C0A0C0F120E0E0E0E12110E0E0E0E0E11110E0E0E0E0E0E110E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0E0EFFC200110800AA00A003011100021101031101FFC400E00000020301010101000000000000000000040503060702010800010002030101000000000000000000000001020003040506100002020103030304010403010000000001020003041112051013063021312022321441422333152434351611000102040206050A040603000000000001000211211203310441517122321310306181A120F091B1425272233314C1D1E1246282B2C24305739334120001050001050100000000000000000021003040011120105060700261130100020201040104030101010000000001001121314110516171812091A1B1F0C1D1F130E1FFDA000C03010002110311000001CAF312961E2C794EA714F41BC6AFBA559E80C849650F56D215EC1568D875F3F4ED382783D93F49E49E49F1064B8E563031C9BB84BAA56514CD78E188403D8609D0907B0DABE4E87D0BAF05EEEC5D03E99E49E49F1561D8602D6594F96AA65A969C6FB3EABAD1A6F0469A8522D9999390EFE57B0FD2D26F77E3EA0FD0FB27827C498F4990CA4E45A155DB46A5CCEDFD17468B96BE74EC9D491230B5DB920BB1DD3836579BF6BC1E28EA19E4EC4F8633B152141F25BE1D5DDF4C713D15CADA2C9AF0906B95D660B025AA05983CB2DDA7169DAB08117A32C863313E1AA14A90A57CEAD66D9F5FD23C9EFDBEECD67D7CF9D9025B2B51E40D6AB3361F55F05F96DFA312F2212AC98D80CF96B3A90614ACAA32CAB6FD09CEEDD66FA07ADEFB55D3A9CD198FBF1EA323CD386A89709B39633D30C02B2C560CB715D295224315A8674ED9CEEED12DA252B78CFB76DD9CBCAB17565616E19AEDD1E4D63174EA9D1E2AEB2989A02CA2B2E738AE9882417F46DAD51D5D529B3C4D04DA1806D37A9E7C0CDA620CC5E89E529D3652B6F251D9473208C0174CEB1E82202A4301B8727D85B8656AE5633C51AC77E42DE8A967DE1D66F47175AEACDBA1C50593C86280675CD33587A92042A1D1B276E3C3D358AFE3C8EEA1601ADDB4C0F553736EBF55555FB7E7535D444CBC09EC90326654B98A4C10B0CC6BB4CC7D7EB1F61769CDD367D058591AAAFCB6DA816E3D353EF79906EA2133F09EC8294CA9498B18AB3346314CC1FDE57A9D06149AAB315DCB1B8BF3C8AD15537663D9E070F5C4E3C83959030CB54F7239ADDF54C703D49373BD113568BC9101773767B4DB8BC502536E47D5E1836D5C3CFD07200362536AD3C00E2B2F91CE33A5B6DDC8F419B06B5B0BAB819E72909A0BEBF3D375F3E9BD0E544E9E99C48BD95465D9FA06A859C8D0680B2EFBE727A345B6DA0E9C603D7EC9A1E6D9A254CF2EA2B5B3929F44A9EFE2CF0F51878C9F1E83509C23D5D2EF95E9336E8F275CE0EDAD3E9AFEA5ADDB54C1B56ADDE9A0BCEAA75F2EB1B355CA8B52EBC2AB565F21AFE37B2E4EA3DA768156A051F3BDFCD5BBB83A679CF411AD8AF4147A65E2B6B7E6CC7D54E25EAB86D70F6B51C3B1055B1E68C4D3673EABCEEC4A02D16AB5BB988A2C1817A9F0C745BB72FA76CE7F4242D4CD14E914D79DF6F9552DB8F64F31EC34FC970E5EB4BB1DB67EA2802CAD8B9CC4FC1539B327EDF9CA2F5BCFCB077217076678C3A86353F40793F7576A64862E5B564B7C80486191B11F954126B9A28C3BD278B82EA7F41EC9399332940B7E7F4376F3DEC9CAD654AE12CA5740260227B2390278AB59A056CBFAFE733CE9E1874F3FD8A4411136BC3BB77F27DC974760F287CA472EB85DFFDA00080101000105020B1122894E3ED94E7299DF0532B94C531F9614CCAE71EAAA9E491913C95695A7C8159F1ADA678EF9163FEAA3ABAFD2A91122571B2DAB4B2EC7A133395D1AFCCB5DEB772C71ACB18F1D95A3E35B59A325A818B9D7F1F7F1F9B8E32782E6F0AFAC7D2A04131DEAAD32AE1BEFE4B16997E48BACE3B8EC9CA95F8BE73AF03E1B677078EE1699DE23837AF2BE19B466E1D98C6AB77A780627EE5426BF42BC578F63F6726EB19802C7C7BC77BAFC6F1F4575D695A8044DC231D63D2B68F29F1FAAE9FE96DC3BBC5B2EFAF92164EE882D1034D60681A062464EE16F15477B2B0294AEAC47695EED36982B9DAF6D844E4A8EF63F239056FF001CBBFE5B72004B793D251CA0329CA0D16E10340D11A7214DB565709A0C9C0FC7136A44B526F4D1F3E9A864F97F198AD8FE5581906AB68CA4F31E17B195E34FB686BE3B163BCA9A791B2B9573226D8B1672F41B31FC7AA37E7FEED1C763E4F9372AC71FC9B9557E339A6CE9CC53776AECCC4C638BE4FC7A2F03998F973C8B17BF8BC2E053834E4F6BBD1C43374DB1522A44A7BB38A2D87CC7254856FDDE73342F13CBDCBE3DC7BE2E6E761A64E2E770CB4D9C7538F59A3029AEC289750F7E2E365F215AD7971A3C3D1609C5E75DC7DD918CB7E66761D2569C2BEE0BC25DBA9A0F7310F731AE4AAA94DF8F03A19A8D32F0D73CF2FA7EEEE84C731A078B1621D0D805992853229C6ED5499BCAD54BD19187D9C1E6314237318979CDC1ED1C0F20637D76325F57238B52E5641C8BF7CDF098D162C11670D7537E3E6B598B68E56E4C0E35EE3394E2933260F19C8E3DB834263A721CFF000986AD755CED4090DC81FF0098C619AF4315A2B453165173D0EF7DB7B63D3FB0332CE678D4E2F91E6F96989C472F62FE8F0F8A2DC5C1F22B3F4E9A6AB350F916772F3D4C33588D2BF78822AC034988E52DA2CAF22ABF82C2B6FA786A2B9878B858C282BB5962E36FB9BF2D7A6B0985A30225729952C0B34995886CC7E3391D8ED8CCD130B218D1C3DBAD18894CC975AC50DBA64FDB90C66E9AC6319E5954AEB94572B59B66C50B9745744CA57C4B787E7D367FBDA006F26A54FF00F50865B996644C53A4E4716AC8B1F7236B358C63C222D7295D22CC6A1AF7CEB07FBEE5D0AB6520B13231ECA9DB2B222DB658785C40CCD4B06C76158E670DEBF1EBA87CFC1DD019B758F5182B262D32BA899571992F014AAAE6F20E2F20F90322ABB155A5D8E25F82866171E03F1552D32D752D453BE799658A780F13CBDD3370F8FB0378FE3591F8DB683FA731F8FBAF6AF8CC5A2535EC8F97DFB6FF00C7C9AA366078FF00939C5AD2FA7290DB5BCCAE2B234C7C9ED5F5F20B31318957CB449E4FCF0E4723C3189A77875B2D7C6B71F3F7AAD78570DC58568AB33B33DB087DB6EE26EA52FAEFADB12FC3E4F270DE8F286B17139CC53398E3933D5F2FF53178AE7B1F07C7B98F21C9E49FBA44F0BD3FD5A6932A916282D8F6D791B86A958BAFD65DAD8D8FF6D5626B19769F28C12991B489A90A59A265DD0E6DAC064DE61666971D8BE389D9E1813A7BCC9A77AA96586D2D2C7D62A8D54693432D0273381FBDC776B2428758498A67B1802CAF5696F0994060A0AF151B4E8DF72B2E87F83F92FE43A5DF9FF189FF00B99FFF0070FC0FF1FF004FF4F15FF5B98FCA98237C096FE7FFDA0008010200010502EA4C3D7481611364DBD15BD4DB00EBBA6B34846BD10FA5B4C02334EE4D759B26D3039115A69147A23A596403E8D7A0F69AC5F44473EC603D749A746822CD7D012CE826BD374DD37741ED07A225B00E866B0C1A99DB314C226FD229D47A0FF102AC3B67F2CBEDEF379E8212354F8FADF5D11E374DB041F044D7A08CBAC1E89FC8C10B41A4164DF184D66BEEA60F4587B9FA0C51098C3A2FA44435F45F78566D9B44023741F1E9B0826B349ED358628F55BE7A859B634107A84EBD774DF37984C595BC1E8B36913DD41E80F53D04A1BEE53B5BAEB359ACD6178EFACA3DD5BD887E81A13D0C2D31FDDB23F3EE1116F9BA6B0986C9B8CD7A63B68D7E3EE854AC1AC1675668263D3B464FE5AF40F37C2DD35EA0C43ECC81A36247C661002A026A4D2CCD550126B2FF00CFD2C77F46CFCBD2ADB43BBEA263DBEA9FF127D3FCFF0057F3F47FFFDA0008010300010502EA8B00E84CDD0D903CEE4EE747AFD0D269166B19E13D349B0C2B01D22B687596A7A0BD0BC2D11099DA9A059DD9BC18503475D26B19BEBD60309E955519A1D7A69349AE93F21B348FE8030CAC7BC6866B359ACD6218F1CFA557CC69A4D20ACCED4ED4F710FB87F8F469F9266A62C2A22E91B4105CB2CF849B374B1369F413D88859E207336FB23E87D9A76C085A7C1552459F3F5E3E9BAEABDD27B09BE131FE5493194CD218966C967CFD622FDC82111521D63D260A488AF0A42350EBA43E8D0FEC3AB4F78C499B48887A3FCFA2AFA45C8DC636B0590DC26F733DC40D07C3FCFA43DA2B6A215D66D8758DD09F63EA57F8CDD37436C2F16187D3092B1F69F69F33B73B4276840B1A5957B9F46B4DC6F1A1ACFB11089B8C06080C69789626E5E9A4DBD748B49312BDB333D8AF52B152345118CB3E31BDEBED068D8DA4D9348B593131A6D5102E9D32D355A6FDB0303D4374669A4B6CD4E28FEDE934D63D50A40BA4262AC3D08D4589A1562B172A25EA66AA6359A0EE28165E5BA638FED98A67CC23A01F4E657E8A0FB7A29F42C4DCBB7EA12BAFDFF8F4841FE5BBE7E8FE9AE7F1F47FFFDA0008010202063F02F49160FA5EEDABF96AEA28450461142164CFC95FFFDA0008010302063F02747991E78B1B08F53C369932F7A07322D7108F857CD355F54D55C530F16208F3A6F59A6F3B17FFDA0008010101063F02E90FBB2609C972402D6E80269BBF36AA63BE116D999763B16EC2A6C9A76A0CB84060D6A0D735A3011613FDCA398B545585EB7BD6CFC5A97372F0F79CCC7C57DB5C8975B32842219DBB107366D381EA5AC640D8D265EB42E3DB33AA24A258480ED6AAD2A3AF4AA57018285C6A2CA7E59102102C24D98C693A8A6D4E80B82AB6F18EC29B94E7379E240604F505F721D914EA1D089C49DD0A9E6736E6922254409685F4491A0ADDB725CCCDF0850A57008A26D4A1C28DABA20E6E114C6B3EA3443BC609F7B3D6F7C06D35638E20F5173923E6526016F71050D29B773022351424A407910722F6B7108444B5ACBDBB2F85A7EE5D6C0EA8F5040D2084EAA6EED4CAB08A14A80C3CA301BC2683234BC70C555002E35B179F0974CCF94F0F9B63169EC4D3A62A92847A22A2E7436AA5EE2760506E0AAB4620E84DCDD9F684084F3ED891D9D115158A99F205C689DB313B1011E19AE6DEC4F08D2BF699734E82705FBBC15319A0E7C9AA37DBCC8681F8A8332C4307BA9999C9BBE5604694DEC2AE66B3CD8E58E838984D38D805B64CDAD76201EA28855194134680FA0EC8A6DE7C3961B109DF636A9B3EC9231EF5CCCC8A5FF126173A234A2D2261739960DCB70810DF192865BFD790E38970002FB836B9775D89B7C2A9770EB43259B0EA69F96FF61D548A7DB6F0B6006C87506EE5C0374B4B4457DE0B66DDE73C3E9EF9A67DC9F961B3D2BF68EA1A253C07EAABCE5F75C860DD0896880D09B563082249805B8E07B57E28B46AD182634FF8E2EA8EA443700D68F0EA2231594D19730B92D8A9BBF503A149D7AD065BC02E4DBF997BB300BEE2E5DF9DA4470EE527C91CADB05CF70D52F4AFB8CB3DCCBAD9CB0EF432B9E672DE64D7FB2572C98B221CDD8F92754F83D91A9875C53EF1C5E63D4B6D5E607F2819C60E1A912251C238E1055366EC3F995575BBCEC4A888B5DFC2872EE1E5FF0014D5770C359289CC5F6CB54D1CC6558E161AF1CBBA453131D09BD8C878ABDF17555DB3029D72F3AA7425D89D69BFE415B3E20B9B62D736DF67E4A2CE5DB6912A869D4ABB99A6362D0EB74B5077FB0CCD65CC81171D1DED6004FB1632A59911BB76FDC6D1553093063B532C59686DAB70000EC5E809EFD6E3D61B383C1AAD6DD5DEBEE069DDB8D3A1C85FB4EB9977C62459716B4ED0846F3E990239AFC141B08E98627BCA14E1A94D02701BC511DBD65BCC5BFAAC1E9017CCFA6FDDBA3FB97CB9E91B1420B7DF258A8A075ABADD4F70F1EAF9978D36E348D25CED411B0C106DB14F78C517B7E9BB11DA85B7BA0061AC28C4454DD05B8629A1D21890804EBD60865F75DB964DA320E7DB3387722D70838620F5301C2388F62FF5D647FE763EDEEE89BD3AF0E1748F61502ABB71537286283A13082ADD80994ECF4D978670E77B436EBA9F5410CE337B336B76EC3170D7E5C062AA7328B7EF3E48DA649BE27B4ACAE647B30737E263A29B98B7BD6EE36A81C08289B3FF0059C7B94C40AED51C42D4A3A107DDFA7ECB3DEDBD89F65DC5987B6D0D91A8FA95E648861186C5CCBB6018E259BA7C15593BD3F72E7E615375B03E1D10B4D9692700BE71376E7BAD935458D6DAB7A69134EB6CFA6CF5F4739B8D9755FCA6450C9E66796D1AD9FA2E6D8787375854669B1D4F18AE6654F3ADEAC1FF00AAA2E1A5C310EC428C7600866735C266C67E68DDBA435A349C17CA3FB7B1BB6E1A4BB172BEF97D48782A4AA7BDA7B14E0E6EA2B82976A060A96883750C154EC550DC13DDACA9E09F61FC0F05A7BD3EC3F8D8EA4AAAC3CB7D5DEA199B6091ED325E08537683A9D25F741EC1987EF5A783A86051B762A7DD2206E3BB752C9333572BBCDB7C0D9BA11945169345807E968EF44683ECA0ED2F7B9DE3D12E21822D52E891DD58C934053E866740DDBDBA7E21D1FC4A11D9EA5C5E9DAA974C68F05127447F151F483E7B5547BA0B2D2DEA63E95158A8E96A97950D6AED81C60556FE26A2E2D2E60E286236A13DB1DAAA1E7A50F5F715E78C943BA3E90A9B7C67018C628DBBEC70BEC30E4D380D65CACDAF7580782868E8234A9F414DDBE4E63E177F4AB9B50F3D0BBFF05E7A82F3F793FF00E567AD66F633FA026F9057FFDA0008010103013F219B5C723B57842B30693C8DF7563A405326CDEA1EBCFD38CC411769D18E67B9980028317CAB999A2D8D8CB9568BCCE10D161F94D9F19EF8A37F099DB1B084EE6588D2E9823D00AD9FD464E8D876812BA27506A0297AE6235C8A82F6DA8F598B84C007F313F513013030CFAB8F937F957B99B91C1E198590ABAE61F0BBE19615D8DEA6502F1EFDE632E0E5DE33B2A3895DF79FD92C71967E03A8A54AE952E4D62641B0A7166650729C2A2F81A2668A8C0A5F6D12FD3C932E2BC75E25E2840231344340C1146CFB4B762B65798571434D47588B1F954761440FF2556223F5D2AA1C8F81D41E953240DC506C1B8BF98FB454ECDC0832B040A94CF04C1BA0A31C4A49A0F07487D2552B25775FE09CC5A264E2EC656522F4BC8D71C6FA297319CC185A56F4C5EBC41E495F6D99454318BA594AA8C7E260F6042F97DA5D9233290B63E4585155739682F0DF0C2AB70F89B3E67FF16568CD7B205871F88C30CC93B712EED3D618B9A895CBCE234DB0AFBCCA8638F99AA6E288E212360032C5D65DD920FF0091049C17DD99429A6E05EF30B0D8FBF65498265898C398E16B12BE8831820659D3CE2FB8F8A7FAC1063472A88BFC4AAFB21E407618E6511CBB06F716821DB925F7EC783D9834C56A2E8BDEA5122B0C40BB1181737B7D98871EDE26C4DA8CD44AB739D02E99B3A0EA5C657AA358BA5A4B51F040CEC97C12DA9916B5160C58A0A8D614E3D269DEF6AE4A83F5129E5E258002CA8C9771D6871A399B3CFB71E5DC27840A1AF7ADCDA846307F50C889B0C63F0CE6707DC1A7E894ACF46B39A6803BD0F1752DB00A30DE41E65C7650CD50E0C4AAAEB01E0D7DDC13BE4E2D5FE206816291363912E9B7B8522F3E3D33E9BE150322952721E2516D1C8616C2BD4674B2BDD077D18E031E65914528B4324C42DC69CE60F8B98E8F686BA5E399F22AEEBB657150B7F3185E5AB856ED0841FF005176F0B156F9748F546A3BAB812F7C2A88BF3A9BE33FD88F572D35FABC11826C9CD7B5E88F42EE8DE3C74B8A8417FDE86E5CC0C8E5450BA86B4B73DAA5ADC6B7ACFF0095296BBCAABF641E5081213ACD03F3296EDEAFEA4C1CA1209D36C145B4ADEB08561CA7EF32452D1D472A6E5F0FA0E537ECFB8CD5EA5D5338FB435DF6AD89F7229ACE5B64F6330919C2AD2B79671A8B04202CA8D8F6A4A8DED3DC9A4645FE72C11FDC366A63250D456B1794FF00AC3E2D9F9E9B86E2C4BDC11D350BD1686439EFEEFB1088D7EF015E61FC364BF83C972B49AD2426DAABEECA76914CDD0F28B2904340474B860F9FD8F0474ED88FCC654EA4BA625616E603A2D6622ECB5C87F243178A2D29807987D3CCB0E7B89CEBEF01ACBD63C621055A8971705CF737F7076CFB0394EA304E18E3153132CC84AC8612BEEE6B2D1AA7973381203968C9F6C22EF357AEE237933DE49BD7DD2AC08FB4C73E16E17753C88349BCCE7EF382C7C2A1AEF0A19F58089D468F3052668314A9AB59BB71492C23BDBB0F726447F42FE62E1B1C467F65BFC4B1498E3508BDBBDB1FD7E467A42EE5F4AC87A8C2B0A0A51A63D937DB0F30E4F3418652E961119A8E4623C02F00CB29958AF83E07301BA0F92077DB5DA1C3FE653A8DB008D31D4B7CFED39FDC5D9DE786E2EAFC8832F43749982E4A72F3DE66408A78F716DAE1FE17124C5979DA7C11B087ED9F467066B09BE6E097C27F3BF12DBF89DFC1E60FB3F04CD80ECBDCB1E0F5B67DED8C29B3808F7B8CD2EBCADABF7155AF786173B3AFE2768E0F7379978EFF00A4B635CB74C68EC1806211B75707C6A375A56321C370391CF72AF8954F4576CA7234DC43266AD00995F8870784FAD7F790E41B2053ABFDC2C3C453F1181FF500808D888FC30250D8C0683170D7E113C7D8B0EED5AA92DDDFEB235A10EAE1BB631E054D8662EF53B0B74391E1CC13B2CD6D72B11EB987F9B11E1577878B3BF10DF68BD74CD7B7F18E529EEAD3F451DE69ECC77F6C5E3FBED3355756DF9FE698C73E3C58D2FA589873777996F30E4AF32B1D390DDC2A3E6224A066FC44FCB8E20481AB802C47478254903D7A2EBC430394FD67F50E60D31E32DFCCD55B8B6F1FEAE16EEEB652FC3ED10B508B78D1CFCCC8FE06F9A163EFF78859CFDC1BFBD7DD015F21E07F9FDCBB9A7FBD9416DE4999DCC3F6E3D4ED36356AFCCB1434567E6669F8F72951A0A8A392E085EFB3B403DB176C87F90C7AA6D5B2E9B232C5ADC396CDF684A005A7872C2641ADF95911EEF15BFBB317CACB556BAF88903B72AAB00D7DC9790812D38B9541F2C3CF6BF427183C099AB7117D8171AADA3B4FD3FD4FC67EE6B0D93F4477F4FD2C9717397F47F4EB931FD7FD4D3A5BB3F93D4FFFDA0008010203013F21972FA8B80F49F46D151B98FF00F0B971255C246A212C256058DA0894D4C39FFC8694C339E8B42E21A9B0974DE0DFD552A54245C4E03A6054B25C612E659991C4FA6BAEB2A85D206A574315534B9AFD15F4A952A3295349CF482592B0B4A7330CCD37EA4BE97D54544BE01CB2BC4B5CB409138D739A5326653A1D465F4B994F1398956A5DC5B186A590336CC880AC0AEA3E962C444CC50560AA199C55012C8B880E6BD4E95D582BA2FA146E012AE251A9E70506C074AE87D58F51A8065101C112733587D352BA830C3A022A83677985C418953543E83A547AD4A58A18D4CA1594E9C907A1D43AB1FA3D44845843A8A690FA6FA3D2A2972F5C3335D178C2D9D91933F48972FA865147E38742A211CA8EB30CF696A7FE0204453DE2050E49DE97D448BA6288EAD0D496C03D14CECCB371EA0077B47AA288371844BE96C0AD1B8D73B8BA1A6390BC47A3D54232D0C0B083CBEF37443CF0C4B98A68A2E65B9E87942274BE8FD38A2BEB62B7F4DFD54ECA9BFA4941706AC4B45B5E95D1FF00C6D4F5D0EAFBEB99FC7686DF433FFFDA0008010303013F21AE84B2012A044931742B01CC29D4BF3095F557493810EEE8BCCCBBD2426845952E28D9FF00900974E13E889B041B13950C6357D57D434DC332C63115A53D045A1086494A9C7D372FA4B32E808094FA1969433066095F4DF418B7D2BC4CE2FA1130DC31C31173D3085E84B97F40C3735478889E1D0B8A16C4EA1B97C4E27D024951952A11C5662B5E8FC1C488E28E1A11AA862B0BEF1ABBEAF47A5CB41A304C3A1E494E21D5435380E8D64112DE62EA7E8B98373725EE3339181B5C4644AD2CDCBFCA05B1C5F115BF43F4AB539E9E62C1704CD640D6CE5946660A3F55F5476450688EE319332CE20389C7FDB8983B7F9F889D0C9FD29F467A3B5CA88B033770A4BA15DCBE9B68CBE972FA90EBAA5C04A90AA5D0DC13663F42CA95D0E9716EA543A14417EA00430F4789625F57E94AA01BA96740E6BA08C344086E76A7DF44E6A543A012A5989C31442C6A241A890594F594CC5B3F227337389147470107995704A10E83A51983A81895738C8E30282667B98408812981174AFA4971DD2CE16CA2DE1F69CBC5B8980B8DB2C2A8C12A53D25534E8B9EB30832AC63D731B95D2AE5451EA3995D5EB71E172F2BA3D42B51F6DCAA044E9AFA5E8747AA7AB7C4E6308C3D669FCB8F47319C4FFDA000C030100021103110000101C5F504E69A489218E081CB42618B2D03C92DD722A7966009225ABCD0784A635DAB70B0A2F20F56A05E68B881FE46F206C31909F5CE8003111B91505670AD9A419B3ECF594AA56A5C9D688391E96BC596E7EF02459066ED416DFEFA764BADBC237465FA6902B8A10190BE321F255755534DE442896D8AE6B82F8C68AC603AF42A44FB6828AC7BD15AF7115D10DAD285AEB52EFB37315C90DD896C01C1F92DFCB142268BEB8FFDA0008010103013F105C041DE0C0EA05200EE25880DD1733000804D171B3D543C03C205C94B03C71027BA0AB4B0A769DC95ECE458F8A1BC8E60DA30B36B27274B0D47547B8AC1360F1AF128B1E3950051B6B1B4A975431443489BBAB6ACDD242DFC565E1AACD9786FC464D360E4B32168B2D460DC81A856984C4B12A03989DA5A81DE18293450A5AAE8F52A6A8B481E600A640A805DA9AECBC15BE47A9C54E04B8CB84838F42B68B58642D107DE0B2F219B5B8B9B2D96143BE619C131C95F11CA6D02D1016EBCB3231D931A6060CBCCB57230A61033C71DF31F84C7C3B76340D8D7037171928B69BA48B67E78FA213888B82C600146251E843602292EAFCCA7A6AA6D6704340ECD4113803C0E1335F98CAFCD0C52DD01715321EDBBBE4E6BD4BBFAB4B607ACD30B5B469DFA39885E3462E86B8966D998D36B58E23B2E15557B39BFC4AD5BF376B755A4CD77259B2CADAB6CD7282B85621100C98A39CF31816CF84F262397115398C1962FB17513B52CC5130F94104B4E10B6DBE6014A40DAAB50B4B0A17953FB87E6180028D9881001D8251502769535E2612A120787BDF861211F9044586AA969ED0AF1908CD084BAF530B756894B4A52AFEC815B999691FA0BE9B8A70C11077C66B350BEAA5C16DD5C6DE8D092EB4298D4AB88A39A1D57988655E01CE5BF99515C41C9E53B62075179D1958C0F371EB63EC4B98291C6B4E1B712A84651164FCC2F4CA94D2D2A5050B8BA78825A89ACAFF0076C4B3076C0FEA60B0336C63D7981DEE85723C2D4DC88F5CFDE35454581A5FD87896074273699598BA7CCA64289CE298953B833E283F44B0AEBD255F251F88705C8670E235E1B8D7EE1949E063EE41348888CBC159820ABCDBB7D9AF980CB28220EE0598266F68A1BE98C4AB43C1A057D9F11F2115E2E2C48BE07881CD06ABC37181FE1977EC989461CDAFDE5C1B8B58800C41F4960D3AA7A69973B03316C32098A3A152A1747CC112355C438A3FECB33A2F947F8DCAE739894BBE74711AEC2D24E5BB312E750942032E91EB6C689DAD140AD76866B31A6E538F6895F2798820B019A8A7D97BB8F21199B08A40A688D5D9702E505317DE56C8153E4C311128377F89466ACE2396A428852191C4275346D5AAA77A8B90B3C1226913647867413C20DE338A94BF86BD54A6A60AC25BA8F05602806AD586921B7C00CB6521EE2E7F2298E66CF26EFCC719F292B3642BCDDCAEB36C42700288EE83E20D7DC1458617030C4F1DB782D7756B0FB9994EDD8D0F09A80050E2011A9837047B43B1895E2762505BEFA34F94C1732490C9453FB9F72A45649520834CB8CBBA95DFC5CAF2C51321B027E08D0036F4384DAE02269883665C1D9EF2E21497BD1B7CC50F6A8816D6CBE60255DAC237E5F9986774BC84F3784F70F02CEF7F17D88B9209AD253B20914BBD5CC796992A043CD4A7780C00DEA01425DA9682118DE96326A41BB23642B6E2805C895815BEE40655A58DC5EF00F8625AA32D92872A795DCC7A80B23AB42A884476B5EA294FDA3C7DEB0641BB379B8DC20B8E28A5A3C5DC7940A56A2A8E131179D3007DAA5BC4255442DD079706CED1E1B77DAC16065E2638DB8E0BF014461CC5265F98A5A99F44283C44A8128948A16025354AB4AEC999B5A7601C8529BAD45150BABBB3A379C3995357C49B652B2E49A02CDB28BD0E7DC573CA05618B011947DA4C774AE5C54DD019A37414C5B588AD42DD5C6C0DD2E2E3BCB679549DBD4E147CB817F3170DF40D1C76969B9DE608DA0AF111519446C95AD2901BA0E1311BEDAA02A541DD17E2516C4BDE158429C10AC85BA692CD40E9A23D374A039686CB2D31CC503F585F1AF244DC015796CD5BF11B001BE2539831521514040CB57730505706714572475BB96B154AABEF50D4D8078A283F2139F78DE33295D3BC6AE6A3B9C4212E2013BC60768886313D27FA53194DA5C6B92DD535E617FCBA3D2EB8DF30A407115A38B8209DB364205B468A98A05C86B2C587FB3C80744E1A480A3ADA87895032666ACCDF2FC99CB177417C220B87338F29C4A8CEE6D3181A8109503A65A090AA99CAD4BAFA90E74EAECD9FF23B2D14070C4D00E60E29AB9A7AAEE767B328779678577CD308B4456B2B7DC837448CDE535CCB578475CB7407CCB77EB5FC2185544AC600445716E22778F6F5281799731EE522C8D98CFF00F2575C0A56E2B2E1AC90BE6417C1055832B6E683168DCB16F2FAB65860739836922C90206FBF3C40FC0BB81ECE16A592470DA3C608A410A0722F003306208DEF57E8E26599468CD2B2BCEBA0136349458CB2468C039C211199E2E08D4A1B9B771589B95DAB1281AE21031982AEA956CFF67446D643D7C582DA56C46A58733E32F7E0167CC07C7C92E8F5CC4D41C2F478F8104453617F06262AD2D477AB71318E76477AAAE2D0CCB05429874F06F72848EB3419ABF045E2E88EB171B1299C93105023C1B77056C8E322F0A8DE4DABF042271E60D7848D1D386A7A085662AA51F3493D809831E5B420CA985C7C6A5D4B2CA1653BCF64463172AF04A317F0CCAC8B400BCE6D4F3F742DC0BB256BB9FECAF92DAEB155AFFEC742A66714C01CDC274DB69563438FCC607039B2B412B4AE1696B0934734FB6257B6F400006B3BB8967B1B279B21CD9B952F20238AC15F9B8ACF9546EF40076E638E9AC2A770B202551CF1CC8BACEFC6C7ADC61E02D1B4C0F3BE26C4DC300BAB2A6B962F8AFB965CAE5831B80C28AB358AB65B92A1BF6D75766A16225A151D52ECDA63285F538DE021913CC54812CAA6AACDD79C47AD2ED9478168F0DF8886E0C3771016399439D53B8A405AFC46FC14E38DBDC48946A0341AE67F6AC54A1D350681528E16746848BAC2D5902C1F3CA31B14AAD62AAB11676239D4B5BB115996F8610C33E2F398D5475063A6EB1B81B841AE5BB4816086722B15A8266651525A098E3895AB926358F3F75978A60E3830E3CA4F71C76163C9B806A2A376616AB0D8CCF93B150865B3017DC38646CCA2D0EE34EF12DE02F92DAD16DB23CC451BCD72E5101DD96FC4BB76F6EA819D0E28E7BB51D8BA810342D59328C7A8117710A1F3DDAEDC014A603E147BC1B169563629CF7735515DD2CC118D608D1461A869B951D4743DC74206FB18C9D3B22A9046214F2B59622AAE1CF6F1DA2B4E6D5A67883E8270C2F95C79810C64B3BABC43E07156F6840CDB6FA865866A0099E4DE6BE2217CE45E0057DFA7DE5B5A61434391659703D4A9A12CB8920CDDD595414B02C18A748F0709878E3EF21D8715CA36A8818034E17C32297115B19A839BC220D30E286ED342D96B6E730DA11C4A5285AF2C00C5118BC5964B25A762FF00B0B3DCB5D082D2A0F57B3271AAD463515595E08F74B0797657C445B15C1BACB1185D4807C6255197065C410327C2F79BF05470174B97033DD7DD0C0A2C2C2800AE03257030410158B2DBCC8C0593E721545B590E31F78D2C5C503B28FBDCB33B746685182B3BF8884F2AACA9A56591549157AC151BA3BE6338B63E761F17CB9145D5602383407E99C3137DBCD8BE0BBC4535BBC39A601E60781F1F318621BAEA39FC0764D3EFA2D1FCED9FCE76EAD4FE11FB74C3F545D21FF33DFD08EFE99FDFFDCFDDFDF49F927E93FFDA0008010203013F10B8C3D1AB871E9AC998E62EAA2BDE18C33EF4168C11254AFA2EE208C593354B821A092A5CAF6C02C66FC77DC947A417BD1FA5B952A08C622ED3431A72C70CC46F336288D65033398D2EEA315CCFD0C6080414A2D1D600E5CDC2E90095E80CDB6622F744BDC0A952A54484212886E341137122207704F4D4E5A0AE0D32ACB85BA36968408F04CE1062A393A3F344799C0224D0986CD4A65E636D097154074045892861C52070EFE01495B72B0302B612AC7B214F04233A78953CA7A89D45CA5DC054CBC2B7059D914E8082292DEF48E0A30CA0C40DB895A9CEA630D4AE825C224A883863D14A08150406529632884ADD4E3D4BB88258C2C057C4340952A3865A984AE86CAE263B4456C009828332A5ACC3AA69882AE076104C75C44E8BB942574554C6547A54D94883880D84AA848C113D4B56C5E8B601A4A82808ACB5D15D1CC198454A950DA62345565D50F11CA5A20BF1DE196344A4BFEE82CE2F7F10FDA166A1A0F1D17D54082E608B50AA8D8A7996328E2E03664F329CB1072DCA8C4C8839BA25810D412A357D0A8FD1724790C4B622710AC76E08E58717BE22C22863A17702FA16395D3803616F8986F3118731170A711E08CDC674EA3CC2E0DD3F8947238952BAC84C5B970DB768AB6F5315B6474C14A605802C96CC597ED3C070FBCE342D9044C4B964218728D61F7772D4C02F084D9500C40786E29A63D54C9B580B73888C60D67ED03BE9915701E482D9D222D61DC2DB544B9DC5B9583CC598FB3BC6054CA371CB0EF10599974663606A160B5006DCBF18AAA8BA23770FDA2399ACC67A188A671299ED1802DCEC78C8DA77331B85F0727B87C28113C845FB8DA375CF9EA394BD0860334CF1C400DC58C4352D970A65A96EF11074565C137CC3BCA788B0DCBE71065B119CC62FE823A9AD4C6155E7C413DF5A22021BF667E399E1E06F37DAA5C9EAAC4BD5FD46A71346F67A9E669A8F430D7FBFD4DBE4F0FF0091F4DBFF003E67E07D1B4FFFDA0008010303013F1080CC171567500C4EF83DB10C663C1AE580F27E631C311781CC7576222A77F519F55C2821784C186A5882BA0C77517A48BE07641D6E1966DB940AC97F480CB82D87685D2DC0728B846AEC2726960B83A757C54C7C7844486E08D4BCDB2FE82B2B2F66844C0E60C65F1310C11DB4B372F2A86A4CC8CCBD702AC62BE854BC618DB403600622B72A620892176E0994A70C58081F7C728D1B95D7696C6188AE222C45C61E96F74CD291E44B6D0AE42A53644A5CA1E96252522532D82D4B098DE2061352F97680882C8C689DBC8CD27ED3CC47A62CF99632A6D39E9502E52096E82AD11C580A761B8CA61E218A288FC6443984587CCAAA278DCB0B8799710CF694F184B39FF915B65B7AED16A09A8258764952EE70315B8205B8BB0600F296493CA200C8C130C641DE65C09B5BCBD5352E2CBE8690E1B3DC74BDD10595A99A66B4A25447B4D0CB155E238A17042E0335DE50652D8FB2AA1C5581F796AF4B8F4DF5B98181F695513372CB7897EA31CAFC43696CF318A17345E5001BA8352B0C48ADABEFF41D4731652A0F42EF4CAEA16EB980126980230C2E826CCCDADFEF07D6BD2303CEAA0E6EC717BF9E632179FC461B4650EF17ABD4A8415288E227BD11AE8C24A20A3C98FBF79431BF44656B6FE3ED18CAE1D932C371168B3D171444B2BA08224AC4BAD0B1E658CEE390B34598E751DD451A9F9D36972E2E251D0B815045B992A8EDF3D839958D5FDFE62B59A81F12D65886D82935E4C4BDA0055687DDC29494C6D2D8AC78958950E8301887068FDEE520EE0446E13E629516C63096A8E626968FD40314857947166185BA0DBAB35219AC12AFCEC979ED082B9D47C180F442CA00288DA8360CF7F11BDE0A3E668791FE40E80FDBA42B9210BD184217AC28334005DBD19B364C0D7DFB426DB20CB9E411DDD2C86B839811AC25574D959B9ABC51DA5FC98EF02A22E040C98882A0B1A865B438801427FDCD30C11ECE22315273C7C4C1BDA0AB4F6E6588815AAE27DF9F99847598D59034C0C53B83884EF14A18ECCF8CC561D2A08E65867A1F30581B9436AB3EE5068CCC7695B529074DC502A1039AC1F116307C4B1B3A612D637050E62C01CB55C7785A0AC741DD43282263EA6936F89FBDEFE7C4FC97FD43D3ADAFF3F33F34D6FF00ECD9BE3FEBC4D5FC3AB784FF00FFD900','Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses "Multi-Cultural Selling" and "Time Management for the Sales Professional." He is fluent in Japanese and can read and write French, Portuguese, and Spanish.',5 +,'http://accweb/emmployees/davolio.bmp','2004.07'); +INSERT INTO Employees VALUES(null,'King','Robert','Sales Representative','Mr.','1960-05-29','1994-01-02','Edgeham Hollow +Winchester Way','London',NULL,'RG1 9SP','UK','(71) 555-5598','465',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000500000FFEE002641646F62650064C0000000010300150403060A0D00000D060000148800001EFD00002E78FFDB0084000202020202020202020203020202030403020203040504040404040506050505050505060607070807070609090A0A09090C0C0C0C0C0C0C0C0C0C0C0C0C0C0C01030303050405090606090D0B090B0D0F0E0E0E0E0F0F0C0C0C0C0C0F0F0C0C0C0C0C0C0F0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0CFFC200110800AA00A003011100021101031101FFC400E500000105000301000000000000000000000600040507080102030901000301010101000000000000000000000003040201050610000103030304010304030101000000000100020311040510201221311306223032144134150723333542241100010302030505050604030900000000010002031104213112415171221310206132058191422314A1B1D1627233C1E15282303415A2B24353732444740612000104010403010000000000000000001130405021010010603120704161130100020201030402030101010000000001001121314110516120718191A1B1F0C1D130E1F1FFDA000C03010002110311000001F1F95699AB5A4BD449F7B3CE7420415648ECF72D35270AEF788976603BC9F46E43079AFB74ACDCDE9CA635E10601F967CE679AD3D54977AA2E9D3850933F342288F5D434BD8BF7A30C40F350D589979F45136DE635A1A6378FD1C1D9BCC1FF00374183D3AAFD1C4AD9D4032ADE1F9AE9E8BD2359E80256D87723DBCD7EC4D7F4CAD748F2D27B6336E40EFA6FEAC535E82F1278941C532699B3AE9DA415E2DD46C1EA1F4B642AD802870DF39C73822646B598C16C349ACFD2F36E3F3F5BBEF9AE3F5518EBC479AB93A33D2CFA6FA82B84D21B0FAC47C647AF55FC8F01575B73912647C21F23E5E2B5B2377B9368D08D37ECCD8EFE7E8B61D8BAFD8573A170ACD15F58BD27DC2096F009DF5BA3B19CE3201AE7224CBA5E7C7AAADEFF003F5CBE6D95EC4F803E70D2959757AE73D3C31B044D3C45E8016B813964CA5E272BC431C8E018C6234C38C73CFAA09B61D6F5CBAF7D69F217898BCAB2CBBF6BA0BCD6AE6BC53DAD536E59E1219DD948AEB65804E9074510C8D9B46E15C9694C7BCEF92E2F493E2AE7AEFBCE841169A0363F47D300DEB58C33C93C3EFC4F730B258FAE71C569C23471E755DB6B9574BF423DB8A628C204081042A688087D015CB2B39AC803452C4414EDC6D579648FD0E715232B6E5972C73AF1D51BEBDEF24BA99F8C9CE84083CB3A8086F81C554745E93AD66EBBBCECD3E6FA3973B0F933B3DDE3F528AE4731626C1653BC7E93E79047C848542E88100EC3755B2FA945CB7DDD52091D3657F32CA9F92403C2ECF5CA71388C8CB1DB4BD9F2EF6F47CF40DD43868810201187D1C9907B1EED5DC15606E57E7F98A85B1B31961A2A72A989B0B276F7777D2F81CF441D567660810750AC7CFF004EB78BD3A875B32A781C8767DECC31A8FC3B9398EA78237FDD059574F2EDC2040C503E788380C98A6C1CBEA5E33B20B344352EAAE7C5258C55F44736AE9123A442BE9E7B9E53BDF102041522021772677CE8DC7C9A83D3FA0D2FA45E2454688AA8A233AAC85344CFDB4AF3EE37E5B2681BE64081020CD3CC449ABC7D145531D38BBCDF737229EF7B3C6EB95D25F50AB95CE531E279337074FA37EE798810204083373130B8DDD97A69C8ABC85E5FB9B2D74CC6D356AB61D9CD702EB9D4CCC576C3FE8B591E80BA44081020419534A20672CCAB145CEDCAB07A76FC3EC595DE5209650AE93A9865D5F5E688E6EFD58F4FC833A96810204083316D33ADCE4DE332D2B77E3B32D1FA45FE5FB607CC826D5E3CCF4E721F68B0F31D83C4DCEDE6B4B94FDBC408107CEEDA33FE183E173B06FA2F67F72CFCE7D31AA5E37BC4332761579F38444D3F62B3A20C68E166A1BD579DB84083E74391198D0B85D6FE516AD69CB33833C1F7EE6459DE894BAEF040A6D464DA74BDC2F7B24126BD1D63BF46FD79F9D883FFDA0008010100010502B5F888E45871FE3D99DF606591BBB4730E4AFADC2932E2492EAFE2318BC4CBD8D8D9AFF946C89CD67ACFB65EE19D88CE63B350681B4308ABF14DE30684868CDFB4DCDA89BD81F0A6DBDFDE29B15D65C2706BF1E68F81EC4C9F82E5CC7E6BA082D6E035DEB79216F7C3B202A71F6FE4B8B46708B4CA5C786DF2AD96E67C4E061B765CC5464AC08C6D70B8B38A971661CA7C67516CF899787CF1DA1E471775F8F2E3E6FC9B44C62C475B887FD7A654B9D2B31959E7B7F129612E13DB14D610646FC6686AA48118398BAC531D0430BADA7838193D2B206F314A362C34245D37EDD2FC379DAC679CCCE4DE2DE376D1578E249A87D14817643E4DCADA7036330919FD75F1099335605BCA4D6F64315CC718ACA035A5955908CB0CBDEA9E54AE55519EB7CD6B995F04BFD6F7ACFE455BDC75F5A3C869248D89B7B0F99B1B45BC794CCF8145EDD6357E42D2FC4F0558450CC9FD51098AE5C38D1BF91FD798831E450F569187058E7DA47A6643CE34B43EDE22C0B239065B8BFC8E2E79B12CB67AAB8584B703C7779C8224CCE5ABCC57504E8355D0E2EF0791DE9111661D706ECBD9590DA59CAF9E2965157626DA539FC35C1C87AF5ADDFE6E67F11968D8E1FC8B9BDB08E66CF8E9DECB4B095F6E5FC6EED269062AD99249611C1159EDC8DA8BEB2B38BC56F9106074F917C723A37DC9C6625A64F6E3C659DC209EC5914B1C960F92E1B04B1BACBC3C1E64BBBAB86C85982C7C98BC46D78E4C8BB5FC6D7B6E2DA16BAC6DE29E586386DE1F6D787DCDDC7D638E85BCCA8E22E16AF13BA3B9FC65E92C390CEE8E790ED97F2189BEC199B7C5C308BEC89C75A436CDBA90D95AE6247492DE465C2DBE463A30174B29B0608DD7519907A0610E2B0DA39B53B323F7E5C7E47B06032B6791BA96B1ABDC944EB6F61BB640F9328F78B69446EF234B20782F987821F4DC71BECA6F2401FCAD965565AC99F9171EAB15E4181BACABADBD82D645746270E30B535ECE50F289B8E98C93FAA6321FE1ACEC6CF1F1EB1B8BCEBFD8DEDEEC5DBFF5CC0E8F013C7E48E367176571F1DC32EB377E2DB233433C977666EDF69630DB9B9700DF5DC6CB7B75042CB78365BFB0357F3B6C1457E266DC5D8821F65B8BAF61CFE32D598DC735C1C2F5C227DE5E97C17B3554EF7720107517CA67FA2FAD9C5DAEDB5B60AD9FF9B9384AF7BBD7DAE1BD120FCBCE48FEAD7F895E06CE2EFF00F9A2BB8FC91BE95AD5715E9B88191CC6EBB97F1AD70D118540BDF62F2D87A64E2CEFDEF45E08BECC0B196FB250DDC4EBAA4534D473270D5E67C87FAF30FF008188DD3FF99D8F8BE51F45EDF9DC232E64F5DCFD964ADF3A248E0BBF2C5ECF33791B873CB9F305F37AA2B3883A4F5F9592E27770E86E6CF116BEC7FDA3733AB88AE5EFF56CC65E0BCF68B7FE3EEB1993E76594E5707C2D8D70E49CD0D0646B4E2AD5C24C8E6EEAD21F58F7BB970B7B982EE3D992F6FC8C4B24CCD65E4871327972986E381F51A09FD96DA33EB386BCFF000CDF24F894CFE0BF0AFEE15BD841665B212AFC831629D1C71C79CBCB097D67DCA1CC6CB8573FEBB4FDC64BFE0FAB7EF337FF00030DA5A7EFEE3F7051FBA359350FDACFB303FF00435FFFDA0008010200010502D234363DDA86AE2A8A8A8AABB26495D42A28C6CAE85CB9AE6B920E45B5D38D51D187A26841A9835768E722AAAAAAB92122E754CE89C8AB7AD134209BB1E88446EAA12752EE415BBB5614379DF1B910A1FBB4621A947576F0828BEED23D49A277608AA270446D2820A1EA506A8DBACBF6FE829A508D0E8188C4516D346E96FA701B24EC0FC4A6A2FD1D44C62A23545382669101C76C82A023AD149DD87A5573555226E91338B769D1DA040297BB557576910F9EF9138AA263688F40E434E49CEAE95503753B64EE9BA3D52ABC68E8504D67276A76BFAA7261451D3AE85395BB3E2D606EC1B1C8AA69FA209AFE28BC9D0F54D141B06802A5172D48D29B6266E6B537E454A7A3B5AA3B5BD4EE3D033497B3BBE95D28A8A9A42DDE53747F54E8CD08D69B0A88FC7785CB4054AC5540ECA555289A1732D4D7076DEDAD13511D1E35E284689D027201364D8ED023D99DCF691051774ED0A6EAE4DEDA7FFFDA00080103000105021BDADFA3DD114D876F1544235E35E35C116FD127604026B29A534A2E28C68B289C10D1DA1450D426040A1B8845AB8D0A78D48D8D410D06F9068FD5DB1BA03A0DE5393B4AEC68AA6773D50554DDE5393B4A6CB7FBFF00F5425502F8A08228C945E45CB428A7EE8855D20A39A895E147A00E7274CBBAE8A9440A79D1DBA27F07486A46AF29BD9E3AF15E25D932A9EA26A95DC9DB4777288AA22288D491F691A9405152A65E8CDF08AA89AB927390F913A52AB8AA53460570FA9DF0F61D8E8DEEF345CD34A3A7EB23B8B7E8449A57747E2A81C9CC5C5043B02A47752E27E83426F6AE8D2BC4B814E8EA800112BB23F43BAF192A9A34E9E445EAAABA3DDB89D62EF1E850434AA2747741B823A44A3EDA71D2A9C5040295DD7704746A649D41D6BA51534777FA14D627A08854D49A273EBA52BF4C1EAC774D0B93A544D76D360D874851537DBF4FFFDA0008010202063F02614CEA2C710CB4A9B30F4804C22522CC343014FED3F8AFFFDA0008010302063F02F4861A6359DAF7E9629FE6C7461C238863E271AEF8F897FFDA0008010101063F02037209A7C3BBF4769F3AF5F8380C74577AFAAB90D6BB325CEA2F96EA7B6A98C73C363AE340A48A291CE8A423AD5D38D32C900DE468C1795F28F888A0C7DC9ADB7E415C6B9946E22F94F69E67BB663B950B19716D33BE650531F0426B39DAE77FC580E0F61DC5BDC8C7884DE1DA49C866A564223B50DC0CAFE67FB005AE2ADCDEDC790E9AE908BEE0C83579AA7EDDB8A2D6B08AF99E4F35117D164B1690B3A21A28D5D1B81A1F71B73141960A94662310DF29E215BBE360D1311150E7CD8535786CEE45C53476E96BB4C92E0386D53B43F0D66AF3F82134B57CCFC89D816400ECA6C39AAE8470D34556ADB86D51EA3A648F01B8FE08301F9ADF2B86DF04D2F617C7260E8FC767DAA09E94123416D73ED604DED2D0681ACA7BD0E7D5CD575136992E1D851ED2C2334699D16939EA1A4F8AA169D3A6BC2BFCD089EED525A3B413E1DBABC10ED989C5C6B40AAF6D10F0EC777A8992347152326A8ABA9AF8AF54656BCED70F68ED27B8C85C2A27796EAF655728E5ED3DE08022A8ED6E45BBC2BCB4EA57AB6E1ED6BB3E53FCFB29555DFDBADD965EFC14AF70E6CDA80268D68C1690D01BFD5992831D3D1C33690B5452B5C1CB5F785551C36ABEF5270E58E06C4CFD4FC4FD83B2A2AB9BB6EBA62B2340730788702817E05F4D54F146399BD4747835F4FB698A93CBD169D2F9E5341ABFA5BBD3E96D6F76EAF99BCAEF61A02BAB625CC0F3A3A6E3E57EE3C54E4FC07141DB76A2284D36AC496F1546BB139767151D0639A2F779A599DF6507665DC9E5930631B52A07114606EB1FDD929295D40FF0085FDBB836F62D4592BB9DB8E634952C8191471E2D63606B8000E7B4E3C53F4B0C7035BAAE243E5D0DC71F1DC9DA6F3E9C5CB43C36588EDDE59A9359777ADFA0CE692D9C1CE207C2D07227C4278B3F4AB46DAB7F6DD70CEB3C8FCC64AE2A92FA75AB8EE8C748FF00B242FF00B195F69203FB52BB532BBB56047B56891BA5F19D2E6F051C8E2D82220E82EF33BF4B76FDCAD21EB089951D6BA98D0515BC76CF12C0D6F248DC43BC7BD716A5DA44CDA6A4D8BFE5B432A7F2E0BEA3CCD384AD38F020782AC32D43B753F82A9AD5CA68751A4ADA5D115A6926B43C5168C83700AF75335B666B7450D310A621DCD24658E0EC4D1C8CB210FD54D54E5CB821AF134A178DBBAA84B700BE76C6C2C8CF95C721ABD8A42F7173EB4515ADAB7AB777123628A2DE4E0AC6C667F526823F9CF196A389A7BFBCE6EF08F81C51E089F29FEA4D8FEA1DFDA8322F2ED5CB8A6C9BB070F0283A37693BD61B36A74927EC45FBD26E1F894F9460D929A5BB80D9EC5717741C87946F764BD3E67455E80966977021BA41F79ED03BADD39BDC07BD5657739C9BB715AE4F9113B207CDEE418D34D7E771CD3DE5D81C19ED41CF38A246CD8B0D9982BFCB87F125007067C3137068F6294641A6B4E2AED908AB46007B712A39E78F4DE5EF3BAB9867C23F8F6B7BB6DE12B495EA37173CD1FA6C35B78FF338D014EB66CBA2EDA2A2DDF8175376F58FB57D3F51BAAB565547ABCDA71684E1D302BE283B76610737169C8A68F15777018E735879C8196C15510922EADB31A5F39D9E00F13FE0124D00CCA99F632F5459CDD290FE66E2A6980FF391697A984558AEDB492D2E1B839AE1E2BE83D5AE9B25EB1CD65AF54734D5C33DEAB3C125B3711D46E2C25AA9D527C4AC66038A018F0E2772E93F6E21337028BEE226CBFEA753331E2A0B3200D574ACAD996D1ED6B053B95D9DC77A7DA3F4CB20F9AEDBC11BB93F73D426748E2770C0270CCEC437A12B0F4AE233AA395B81077A8BD36E2265CC10BF51764F77356878A9E48EC445566989BB01FEA4C38441834E96FDE9BA5BC4A2FF008F26F156F690FEE5C3B45770CDC7D8A1B78C52381818C1E0D14EED34E0B998420E6C64039554934868D8DA5C549D1E712CBA211C55958B32B689ACF6EDEC69AD11D2781CD48E2E692E3CBBD119F8F68DC325FEA176CA5E5D37E530E71C7F8BBBC4D3009CCA7CAB7CC209F1C674BAE3949F042E24C45BD5C38A0AA7CAECFC163EF4F60F8455BED5D40453B281536956D191AE284F5AE0ECD2DFC7BF268F39C963FBB39D5220A1DF5387B1491BB95DAE8878E4A8BA52F936109E192875762315472D562AA56E1B97D6CADA4FEA1CC3C231E5F7E7DF6D472B507F659FA45CDEB59772BA876B63D430EA1D8A4BC82CFEA2DFCFD481CD7E1C3351F351E33424AF15D407DAA8305848EF7AE635EC6572A85641A7F6A311B86ED3DFA2375EA170CB689B8973CFDC9F6BFF00CF33E9A2C8DFBC739FD2362FAAB97BA592E0EA74AEC493E2AD34752E6D5A34DCB1DF0B7782997F6234D95D62F60F85FB5715F9762F1EDF139051DCDC61A718E2FE2546EB795CCA3B0D2689917A9FCF88E1D61E61F8A12DBCAD9633F137BBD2F4DF4F0D79FF00C8979A9C02EBFA95CC9707E169F2B7804D696ED51CC1BCD01C4F82D07DCBD5A8CAB843AC7F69AA0DD5C47662B486389390A2C84209C3567EE5A89EB4FB5E7B1AD76D2BC026CB613988FC5B8F109B6978CFA7BEF848F249C37777D850575FA3B3D57FF524FF00751415B7EA4FE28F128F641C4A282B7FFA8CFBFB9FFFDA0008010103013F21F7F1FDC1C3965FE261E800471507979788812048ACEDA28F885950D8D3DD653FB942256FA9E731EAE94D9EADABE3EE007688E52B58A65F554305F75A816C71522218B75F5514ACD02D7E4B189804E63C9DFC5C14670AEE8AC9D5CEB117BE7EE9A570EAE5D0DA8FB6DBB4FAD7F7333269E185AEF9DCC5FEB0051F896A5808C1659D19EFCC2B5A55D90951D5A807305BA4EE4669B774FF004CDB692CED7DEBB330417A3577472372DAE48D9F67AA59AE43D21546B25F2F758ED321D10F10C2EB36089DBAB6EC5EAEB92256C0C9B4C5995B7DE1267E4B7FE8C12A04680F100AD62627BD08AA01C29B8356CC2F7FB96AC1B704B0616C6B4C5D6833FCB4F6839B1BC2C32A849180F0D5C8F242D80F1C1DDF3D37307741CC15EC7579350AC672CB08CE5B4B1BBA3BC0C1D409ABDF64BAF60DCB97BE2025CCBAD95E65778B8764820295C12E950FD1A3B9543ADD15BE104CDD916D591F9E9B8804643221A1F1D6AE349B8E215F700C6FE268D19269ADC200519FB25A24CC4288591942EF2A8F92A2E54155DC331FEA0A7754AFCE60FE936BBF7D1850E61A3B2BD084B34323847DC97A6C6135FF00B16DE30CE1731A8E5FDCB0AE39A108161E639CFB08083685205FEE9FEE3AF97282783D87D3E413F3F7562B413E4A87DB0F89993418FD4C1A513DA799517C4DE0C1F313DA10ABE58A8CD9A7B40A3A2C7F72D6FE23C6202D3B70F3DA26C69FC32D386905D5389F7980DC4F8A1F7E8554CA12D3D7E368211AF6980F251C9CEAFB41A85D925B5817A633B962232BA5346D9E236E20A9C7DEFC894EC72B182FC4F0EFDE5646E9F0971B567B304A813B0D74C09E0068F79A26D706B33B9B45358A5206888365608FEBA78FF500345756D6C55FC4BC02DDB6CFE908428538933FBA2D5B3801F14C18304470706CB72A67796CF835BA35EE712DB55E5C1DA29F510EC56B84557AB686A32E6AA30E67E7015BC80F045AD4E1347885C6199F23459E289DD81C973B63833245392BE2CD3BB5E51FD788C4F2D9AD62A16388A3B8B18CBEA5BD721C523FD4636DA20A5065F328CC4ED43226F6BFFC9874DC295F021844C76218144BED84D5E81DAD9C6EA7682587DB18D653A799DBEE4C14FCCE3937ADAD14606B88A64B2DEB763BEBBC484E822E2C46702EB9C7994206B7C500715C11A8553EFE18F3092D46C1D3F01A1EA70B6C1F301CFA3E131966C9EE7FF62DD11B435F3DA070177CAA67442DAED576AC26BA43BBA5E77F84BB0EC3B4ECDDDCFEA5BF9908F80EFA00FD5C126E7664A0FB09B196ACF82426C591955E161EBA617E9A41C0FCA540384DC9C0C736C17985EF0F66A15240E513BB08C680CB71F288EDBE65276CB1552AEC2C4B1B53A447D08FE652B938363C0E7CEE68C10E0233287F913B72F8A7F10553EAFF006EA48ECFA6E85E3E0116EECFC493C1A8538E32A6CF8BC4D3155A456AA1175AE3339AD0839829AF41B357365CF94410F46E1C8C4545BE12921C25345B303C6EC0DC0000014180EAEC3D0098769A020722A368FD4A6526A077F77137B30BDB6351507E3138A8174D31595B9AA672630C54CE702B8F78E57D0A31AE5021FD4BD64BD3DBBC644C86FC0C0F35181A76C267E62D646F247CBB7D0D5E98F4608C63C1E12F53BFC7F852D431FEF0B1C07F719C5F753F04A6524125CCB572305D6A2A16DB55BF110015EE3C976B370165BB7E66DF52F3BA07F651F38F8199EDE20E03F5E9B3F3C58D5B27599CA1C5FF00C9E33F80A81D622F7756A54B0E2B9065F72C7F0937702FF31DF80E1569947500600BBA98403C5A62B65A6B8985CFF13301B2172739EDB1F18EFEAC96DB2E0B1C9FD47CCB4014711B9A287696CD07D6B97AFA94C1689C5E4E18B0D9A0ECA8768155802A10E2B2F999D66A254781CC08CF28ECD87CA8F59D861AF94B1BDFB7FB1303C23537023BAD4D86043096ADD2FCA616B2A676F66BAF72797B8E63E521A65BEDE2330B3147E8E61F839FECA1C46AEF4DF2BFA7ADDFE6D3CF13CE2EABDE688F15826C82C9459AF8F9539206DF503060A0EC4C2663763F3C4603B7C223F609B82E07CA2B5AAEF0CE019BCA3E6092B39E428FC7AF1AB39B8734F04CD6872FB459CCB887DDF1EF73085816AB6553CC55CCB966915A4ED197F9185DB76B84594A6C7199745B4B3C2163170D99D4C5A1EB6F4395F880055783FC311E660A7FBD47DF1A97FF0034D77952FE138F4E33A5F70EC6251D1CE27E048E419E5A87825F7AD1D931A62885740C885BF114B404D87105319599AF03B4B662B92CFB4C17160B7FB7DCBACF89FB10D6A25355EFC4B509861E7BA19F0A61881D5D6C1FB3C7A7FC6F13F8FDE7E2FF00AE9FF0BDD34F7463F8BE19F909BFF1667E54DD9FC0F69FB5FA9FB9D203475FFFDA0008010203013F217A0D4D3D16E0E95D129194B0ACA473B83DF0FA80E8B45C5A4ACC3BE93A76741ADCC97018CB0BE89CBD72C468964C3A84915CA42B43CC313CF5D28860EBCC5C4A7A29E8BE862331126EEBC935EAE08EE3A9C43E96338A55A9FAFA0DCDA69D57137FF899BCC898FBFA133874ADD2C20B963D035E97583E1F50EE8BBB2885AE3A45BDCD204B3A46EA10617502BAAA72C11CC332F9B60E0CB9CC68F41AEE50F42C00DBD56E4D6A18B020B5055260465943A943DE6B2EDA98AE97E836540A86E6A64D4ABA2B8870620EA0476C0C54C23D07A1D4E3977A07D238E250E3A0730A4DBDFF00AEA7D3AA5E597E996A594041121994AA20575D8F4BB4198833681196BC4F6446B333CC388393CFEA689E8C9BF42CC18CD531461CC15CF5135986F44A6F4AF1B22B282E0455CC5874AF1292A3D352BCFD72F861288A11E8DBADEA2BF59C4D4218D517AD3AACA54ACF2F5E7042030EA813998F4B971C341FF0C2317299C90F41772EA5CB4263343C92098F4B177D3599C3B4A584209956E71119B7454CA31F6FF899B26F358F67A6D1E8D231E8D1D7FFDA0008010303013F2131F5599EB72FA5B2EE532B947EA0F5010844E9658A25D44ED2E8E8E48FA21EA65D0A03A2A32CDD13A91053D4E69D75946659154BF4574052A3D166BE8FAAE9FF0001E96F4D3FE08D12E65CCE27A2FA6504D7A10B7D55D1308518CAC52FA31E8F46FE8ABAD737F3113208E540CCCCB5053368BA4AB0B7A3DBD4A23A004CD4310ED67226C3F4859EF0794AF44805D4B5E7D553DB323338188BE83A5CA98F465AFB733B25194161EA7418F3D02F36A2C882A39A57699984A9D1BBFF00E1CA9C9026A239958EB12E125F7EB53300D1D4F4EC8307412B93087419145847BC7FC4D130443680DB5DE02C304E624E67845546591F5E26E7FE18AD0E0C2071D040DB4C796076662498E5D2E2B6FD4662D4329A04C0A8E2590C4B12F8DA3172EC7AC707417191702098C516E34E85CDBF5E4C7D16638352A3CA62BA8B3D0BA9DBFE43A8640448E08DE24CBA347FC0B9B874D4E7412E85225CAA830B0BD04AF485CD4B971639177430087C4583A0C58FAC2690DCD27CA7B9E823D4F47FFFDA000C0301000211031100001082D005F5A168340AFA1748F7E7A070A480541ED5A9CB02180D444354C5F8F080643F2272F905305BD92218B4F8D205C32FC9B2A60950A9836476E250A80062E6D6C756000027870EB71120C0031EFB31B01406800B79DBB5F58000004C998D74EC04001233B188CC00E04B1E43137900075B487889F1000010303EF7A980000BDEFE0B45080000C8B417B90E000004B7D051A3C260007ACB8F6CD146A009D2CD18D6EC2CC0FFDA0008010103013F10BB7B43F298079803E632B8301343D0899034C38C28A75049B13EBDB305DE82FB409D2135C5811053127DE90217565E1A5C5D46B52C6C4DA4F72237C08CE800394A14B08F75264D764654364876C66356BE7A11AD90F052853DDCA4580A1497BD464DF8BFA15F375DB6D10EDAD1C7E09570D53D73A6DC4082E327C25770A1FC435D2C199DA016EA21F721C5A2A0108D384550C70D9CB45A9020BECDDA2473A5596A1B58416A1E7579A344592D4B4A9D351B00A576EB3618B1E2F3C4D8586FDCA0AE6B6919B9B5347DBF31FEF8019AD5E077136748405EF446CD912853530B0571C0099AE21E09318B054BC050EFB31622870445867B0ECC887656D42D77D070A1CB043B0305EA06DEE3B7559788F68180EE587CCA9AC303636D644A3A428BBCF9673C72350A8D2A4D68D78D452D380C675932E93B31562E928B18FD4211B872C8775ECE2A56656030ADEAB35FA96E024D5B180CBF882A54922099A6AD34D7D2E5AB96A815AC572569E3B72BB80642A69D088B56042AAD02E9564E98C4D6255C5ADF662536AA8F526C94A06C4A64DF7861C2D188DD79C1CB6788336A96E5B2CABACD0131ABF208E71C7994D439B40FA1614AA301C94BB228F3867BE65192C51482C183C543A54593163670E983D25EDD2B784AC15003DCD5416C9F0DD3DFDA3711DAECD52A7668A4AF3AC11DE6CAF9BE8E9451149A0C192DC4E28A1675CFE238A60383783983B73C7CBD9A57046BD60AB67B7F9333C2829A5D3F1005E0518A46BEE177FDB6ED84AAB3B3B471833A9570120AF946E9B29E1978D7038C1587377A8759D1A51592B01397985BBD8C518C29D59AE94219E21C57497F30283A3F5E60139C715DC942E478AE654E17A7F6E16F86E0920362FF003CC7ABE3F12F5B2D85F0DF1DB105C316BF13CD1C46615E23D10C4D5DCA7CA0BF786380408236027D3338F2C3C06ACA4184784B82664D85142AB6D1ED5E7A326846D4EE5B3AC869DD868E8064EAD013DA7B813169A0C2E961D8E6618500857818DF7ED1EED26B8AB0769E511031CCAA83741DB454A8AB4988B2F7D989529B0C6D0A18F6857D45ED16D71ED5332CAF328505A4513B83F50D694306F42D76B2361023B6DCF64C42E76220D01365FC11D17D855E6FF70CAA9A86B8D1D52819EB2F2F647B25CD5EB14A99B5D2DA61E110D35550AC8B645D51996DDE24B8A425F16099780959B597A098AA4772F01BD88E4C534AD328E6B554CDC2CCE9B208E3225058F75C06E58839BF5D6356DF6958A8B2865F602528EAC4DFB410A957DA3E422B7DE80650D7022817AE325A410D438E31DDAD9EFD15CAFF00087D10EC15D402E9E468FC923F9422BDCB7EF63BC221402AAB6FF528CA6781AB2545A8B3371DECC44E445AC962DC6311C28E9235D94B72BE466E34159C2DD7B0E73F379B1762D8808C1B285AC051961D70A3A362DE82A0EB6B75864390F88E874B036C3E0B7840660B4D8144E8479B862D3DF3D56A2996B319626527B499497B001F9A96D291E0A9BAAF569DFA941B334D45AF785473B30011C6170061A35A5B4A5AC06546CB68AE084DE7D549DD1ABF798AE057758036EB7A864B2B2930F4676ABB30001DBB88003B109169119EDED079317DE0D5505A300BA415846A34B5D80275A6FA5FB9DC3392D62F91D589C3FC8374BC28A310149D43861218136D6EAE00500280C1440418CBB48C8E3BAE148B035E428E4E42FA59E84569BF59084ADB65AEC360B332F609F02387DE91286FC10DD94BD98A6516D00376850572C1BD787B5B965772BC60027B6BF1046EE8C9A4E9CBC9F300EE223E96EA82CF105D75430166B6A31F10D3AD74DD6825606D2F35445FB8855A1E06047E639A4E63096965AB45755032286E472C69BCF5D1356F1BB87A1CE822ED74F66F6436156F180C395A0ACC1FAE5A56B65B0271BB5E4847ACD066C4716E8854089C215186BF739B1C3822DE1AA0984105CDD36BF5150664C50E30889BE18C0B191EBEEEED191999AE51784AD2AD72B0040EF615003831A993913D6121DAD11A9F0F155C85D0D8E697AEB58BBFF35FE7A48C416F14AF3F241F1E18206B66AEF57177022806489771CC974DD54E482A5132FBD710E7118D9B086A6AAA98D4952B2D8BABD175DE65A42A40ABAA2E5A3515652BB3FB80843E253E2019350DEEE0742DA92E07076E33193A5A96973AD057398098E08A00C0075477DBAF43B043F405AABA0269F39A0068655617998A0321A550AE85AC7E23F546A8D46BA9EE73962896BED86C674A8DDFBCC9CD0057C25CB420E3B467AD42609AA460F12F8FDB49FEE9090295AAEB0996DE2D76ADA0BC62FEE50069D6CB41F75712DE8AC9309007CE2909FA8EF6E0E2D6BD00B50D10C5F6EAA05AD073082B4EE8D1C879964B5A339297C228584809152AC7C1BA94358E9AA530A96A4A8AB694A555A8DCC2F8B03662C2BB68C32F611EA50145960254F1A6D216ED3233072E1C8E5CBC83C105E579E5E50A3C5AC629544A5A860E0ABC12C45B9B2E1AACD65E918191E00B72DE182F0840CFB5840A2AAE96B868FED0F6BE7405624D4A96E9B9703735C01E28F477B42A387DD4C6900E68113B35B894F2CF541132631B771AF5C597016B5E0A2E145705691BCE7BC56987889616692A93A402DB5B547B7E214169949196D57629C87A934F65605529A608708AD414E7716ACC2361C03406289C99CFD607E6A181A146CC2DFB3330077DA6D9E133A5F053A7E2080D5C8D9716F0FCAEC496D1C3B2B894BD5EEA156DCD563FF633403A4B9D976916A1D0B261F8B95E71AC6F5EFEB34B5006D45633F132C0047617CBA182B6E804DC1312C006FDA3365CE380681C8A54A6D019B23C4B402D29C955A9718A6866068285A0E48606025542AD38DA6A5DD932D6E4D9CD05A8D356DA3774F2B32A4E839F754AB34AE3973CECCA315842ED3BC588767D61BD29BD63951C73117B95FD961C3E08124DE261EEE101780D006F968886DF14041A6CA2F1A4B9E1A1EC40D3E263B077D0D02BC1550CC66CC823769ED0A9736D27E0C44DB94965FDB18A76DEE28C4BF30B7282F3600FB66139861A0938C04F5949B9946DD11670401565B1560031DA5A29661B00ED678112252929A12B977850E681C0CE98142F172A0A6E3C0CE0D1062ADD5D9C1912FEE5957226AC190C77CCFBB8697E1022D82BCA6BED5AC0E6651EDBA011AE1EDE41E2B7B3E65F0DE28E0DBC4A2470B0FDD78BCE7B3023AE068FC85E12FD2AD3CB1522E91879615B0362078C45EC5C63D0C5154376CC2C2282D5E5ACE3CC2D99B5691D622584B8C6E3560167E65A218B807429E62DB80CB36DFC863B10B6E23D99F88902CA315AD84A5738FD4B0639C82E0F68F78E5843CBA655A2EE13CF011B75B8259050D26F3C7EE4AC875D54EE72B5BEF8EDE8E3F13741F99FD27F11DE77FB9FAE87BC9DBF4CD7D9D2CFE6FB4FE03BA7E53F6CFCC9FC8F13F83FA27E57ECCFE33B67E21D7FFFDA0008010203013F10C88953008687A0B2B1CFF8444E25DD111DCD0A815A8C5699936451A66C549DE1E08ECDEFDBBF50A46CD4C878828E86CB44C8DDC064E881A6E5388AB07CB35A50B8DB77266E40953175E485188D6E8FBE96901484750B9F7F6998BA2328912C415C5954485B99655918E760F0CBCC32C1E23E3A10973E8B932CC232971728977D06BA2E370F30EA768D588859EE7F6741A97FA1311F30AA61B941A7302511C4CB2EBA05330AA5CBCA3B7FC71D3952E382BA12C8C46542262578829E845E957046915BA61E344FEFFAE984194D0E8173ED164C5A3105438D8965DCA0BE8A8D906650665E5AEE0BF6E3FDE89510815D0B71B11FC901EE37512A39ECC55A15DAD7E230EE8C2A4B22EB01C4DC466531331CE029F8DFEFA010CD1D416EAA307E60998414693E658CFF003EF30AB8D57D4781F71B8866902A080B8526132FE7D4B095277F1701103B9CBCFABD9D813C12A228D41DF31D87387DBA12D230DCADB97199E35D9E3DA5E117C22AB44D8880F6DAFCFF00E7E7A05F45BF7103084312F463C0FE7EE08A221730FE114811192B41F4C7CD0AB0EEEE6FEB3D559A7A2E15FC62986DFC4B3332F98B65E1D40ADBB80448CE650FF4C434E897A4062C2053381FC777F5D6F4AF4FE411CB815298961C4C1054C266E3EA67A95905A8989F039F68000D1D5E0F48D87133FCCA15FC779903572DC744CDAB3ED0761515A928CF72C0EF5F87FEFE8961417F7F6E7D17BDE86A1DBB87692E8419D349CC588E889CD04B595EF0DCB3201A8C3CCD4323415FCF7F4BD09C826E71330E26C834992FA39659A54B8E4624E666E26095B445CAEBDBBFA9AAE32DEA015169EF0D2450A2A54CC40542596554DE6391A1CFB40AF57B94E66DDCD25C7DE26CEE7E630C7536A622E629E2118209A966F7FA7ADD8BD4E6984232CCE0AD3B31AEE583312E4033048D230CE399603263D758CCA1CC7AA31FB8D9882CCF7218F13C4BF1006E2E180981A8867760A86335F0F3F12F0FE393D2D19DC5ED01634BC369A94BBEA3DA7EA167001C12B2DA42B88965D3DE3A34BAFF005FEFA3486BFC9BFA097B13FF00A373FF0097FA8EF9F511DE6A4FC03F5D7FFFDA0008010303013F10A098C5CC7D0F93500D114E6263660D30ABC4744A3510287D453C750262437D42DA9EF2350732F0E250DC0AD4322C64A6591883B830D9053D3474AE2FAE6B8950800C05898E30D97435328464B63C4D2128747327A031505287489662318861A54BCA5D1C4BEF28A39E99F4428AEA2D210A13065B7348B16FAE51940798BDE69F7E824447A812CE26758D0255221D1E948B531532A6647A572F7513BBFCCC151DA1691122F4726A566523AE8A299C3A2BA3065D704A86CFCA53C0DD5F8D4000D1792FCCB463E2561798E43CFD4CB2805C25507661F3971D456C781D107D1B925FFEFE2098F69495FCDCB55C5F0FDC61BFB37FE4C716747FEC0191E57F483280A418444FAEFF00110DB82E997C8712C21689A05B32EB4F6F5602BB7EF107C9CFDCE6AC437489C6A0D17C38F2CC8AED8AF8C0B916B0E20382DCB1903C9B76AEDE6FE261425AD219F89A0C5C7B74AF41B1C244A792369839027B625750BEECE04ED148764B939439C2F298BBAC0A4F7F996C1C4218EE8EA64F4825D02E582F0748586D10286CDCA184AD70C58D315BFC081566FA115E5997BFD79FAEA2BD3F8B04F162A2873127BCA160C4C2595AC4721D59A97C3749748D2C1155B7A87A573F331BB906AD5FB3C900B163638F7255417F3D0593814E431521CC8CC95FDA316D5F468EAB501E07128F993B52D87A4723B3BC5EC4FA26A03FDC42DAA62199812AEB822B2E7D2C5D1AC0404062147B0AE86A43BDC76A994B5132896CB3B97EBA3D5C131FBC5836768948B08ADA4C92CCCA90A2D710CA643DBAF599DDF1D2892110C60C3AA4B14E6203728659D4CF305D7EDEB744578E88EE648E18E26488B5976A57D0C09B9ED334F7FF0081B52ADCD4B2C72A382E20A8275D15054CBACC4982629518DC554FA4E04D2139B528801954916E1EF33F64D6852D7A1A0844BA739EA136E8689A7737FEBAE95F986A1E809B7C477D7FFFD900','Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled "Selling in Europe," he was transferred to the London office in March 1993.',5 +,'http://accweb/emmployees/davolio.bmp','1991.55'); +INSERT INTO Employees VALUES(null,'Callahan','Laura','Inside Sales Coordinator','Ms.','1958-01-09','1994-03-05','4726 - 11th Ave. N.E.','Seattle','WA','98105','USA','(206) 555-1189','2344',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B79000100040000004B0000FFEE002641646F62650064C0000000010300150403060A0D00000DFB0000139900001E3F00002EAAFFDB00840003020202020203020203050303030505040303040506050505050506080607070707060808090A0A0A09080C0C0C0C0C0C0E0E0E0E0E10101010101010101010010304040606060C08080C120E0C0E1214101010101411101010101011111010101010101110101010101010101010101010101010101010101010101010101010FFC200110800AA00A003011100021101031101FFC400D500000202030101000000000000000000000506040701020308000100020301010000000000000000000000030401020500061000010401040103030402030000000000010002030411102112053120130630223241231415243433253511000102050106050206010501000000000100021121311203411020512213046171813242A11491B1C15272230530823343731512000103050101000000000000000000002140011100103050602061130100020201040105010101010100000001001121314110516171812091A1B1C1F0D1E130F1FFDA000C03010002110311000001F41675ABD5DBDBA0D941646807799D622BAC5D3F3E2EEAC3AB75E996B9D65F4E196904EB9258ED198F90E1779AE84A7A4D9496827DA78D5C1613C0CF4A179DD7A306EA4EAA52E384DE1FF0B62B7DFC610D031D1CAF422AB58B54A2873A0B5EAD6774A9333C4481B21C5C2E3BD5461EE573AC0BCE8214B36B9430558F5DEE67AD3E972B8C43896F5820BB50CC069CBD1F469B3BB50BF5A1B9959B981AFE3BF5AAEEBDB2B4E0DE108C0976D0157D52DD5F6EE5ED1554D9C59013E2470185B3D6F676631A049F5B9C185CE06C47457AE7075DCDB522AC784330551C5C55D585CA85A5400E249DB986733B4D6B5B1B9CD33D1EC5C77BAC76679B9A5D82D4119AE4C685F00DC4771AB32195716D66A252F4E6B88534A037F37A56E19DCDE95BF3B53D718CE4AB462DD3980358E7415C9311B2E48802C2118022FAC05C082BA66805799003D0CEE56AAFE964B2E5E9AAEB64FAEB034E65BBA4F73A716B46C12D79CDDDA544128E5445273AD8880FDD13A598A29859535F2648AEBDA090F613E571FAD3CF6A4DBF74E9076192A5A296A34A56354AA39BAEACC88AD8524058212803DF151A9EA20E992C53FEBFCCCA09A0B0A7AE7375E4DBB798974E0C715888C8B474081434F65ED47606EDA19FE74713DD4759107D51D045301A73AF55FAAF32C19BAB0D805CA2DAED3DDFBBA4C34541710B3740D9133B5D354D063BABF12AA54647C7740DABBD11C03AF89081D0425059D2F7651EAE6637EEEBDCFA25AF4A667D58A932F747D6D63B281A2AC29769317794A6D5A6C2510A09C0BF0256508C3DA50DF6C739AEBDD9EE9315BE320448EAD1D47A508B6372AF074D3D3D34E83A9984A5A696DC028B97A8D9D2D502FE31BEF47CED53901B4049E8AB4D30BB5359F5227A415768B0E4D906A837138F402D2C2DA5E50A98982AB68ABEAE1916F349E7FB229517A843871446ACD3DB8136777F3C656890B36BE510B209A5171598A8C308536AC632859785DD04A6D69EA1656A132BDC92A8FD30A64A3A7A95399B9778B96D9A36C7AE84D82B88BAB0E808ABDB906D2C25C4795C130568475C4388B22D730AFB1E734BD94CFCA0E243313F6F12CFF3DA41E0A863602DEB0EDDDA2EA6EAE15C462997E56E9412453806B59B3EB470CDF6FCBAAE001DDC9282C4CF18E3EC2C182C2885946644B6E2E15C4C5B48F3BD3B0CF8E9FA6BCEC2D08A1581B0E6FB6E735B2D3A3E254175B341D50C16837315E909148A216EF9E934B82655FBA768BE3A33DDA4D08486670CC66FB5D26B70E6D4E2574CAB3CCA2B0EEB070388A6BAEB20C7036D2C64C2C896F3F598C4D7EE8E9DC76B491312B37D96935BA326C494BA7F1E79C0D1489171725CA88694E6E9F11651DCF3C0EE2C4C67A731C5220BF578DAB2F33D8EB35B9B1CE455B28C96C0691F8054AA9DF7970543D72D0C2389C1DEF32953D8EEDE2DDAA4212029351F6A7FFFDA0008010100010502ED4FEC04EF1D1FFB034CE17C83E515A8AED3B512289C6691B2BFDDBB5E46D7998E6BB759DE271647D55CE0EBD69864648EB3518D918BB3B41E82778E94E24694F78637B7EE5BC3BAEC9B59BFC5B37DC7AEB55E08E1B2D9BB36971EDF69A10F7B9ED786FB9C4B97BAF91D0D97851D8041717109DE3AA6B9D3B06DD85B351767DB34C74FA9B1DF5FA9D1D2A105BE9E2953BA8629FDB07B5EBC34C1FB6A593F9088CAAC65334C4D5B2D9036486ED76DBE38413BC74508F6F3856A99ECE56FC76B5BEE7AAEA60EA6B39AA46ED2B36EDA909DF76BF0A4FADC66BB106D78B72F89D5E6B760CEE40A7A09FE3AF97D8EBAB424B3668ACC16FE4AE4E4F2A7DD588B99EC2AE549071B5DB1E4DAA3FC8EC1B80F58FB7051765045506B1D055CB1B62589D72B5586A46E4EF12298A92D18E6B0F6867616CC762D8F75BD77FB9D8C8E9258A5F6DD3C3ED86CCE0014D4F542D16B9B7B9196C5486BC176B5B6B948709DBA9F736AB92AB452F2ECA9C4F55D814314705CB0C7491085C65EE3D8863032814D2B1953DFAD5C75D6A3732F76D5FAF86BDCAD15A6586CB07617D95DB63E61D83A58FE41DC3CB3B5ED53ED0995C797CD520FE4DDEF23CF69D55593B0569AD8EECCF749234F12D4D44AECAAB833A7E33C5D8753176763E5262B35FE0F2587F4DDF5C7F3A727D8C9A48847F21879761D832EBA47CAD5D5D9F684CF31760DFF00ACEA1CF2E7881D2B1073535ED5C839472363553FC6BB1576A9FAC7DB3638D1A13C4D9E7FEB2095B5BB01D475DD875F3BAD7570C92C8E6B82124B59D19362C7C8E4228AEBA70C53C0D32FF6C876C876EBFB62E5D496DD9DCD686B1802EF2D82E8072963A71B94DD7CED16BABBAF23AA7446E451BE3B658D6D57607653FF0035952080A10C58733F732B92E684ABE2571ADEDA7B62213CEE860ECAC73757B8E69EBF8CAC2CE2AC3F02D380334E057EC1DF6C530E10D37F0929FED9867E7603430EB9556C3EAD99EDCB65FF0021BD2D6864ED8BE592FF00B51F40F962649678B6D5ADEE5824589F1059FDC1D6471F391D3DDB7245ED16CC58E95D4E690E9D7F47D9F6669FC2BAFAECB5D77491BEAC750D5FE4C5619DEFC6EACF341D4C35D72F611EC19621B7670AD4D94F712A67A823FDA82C185DCC2BF74B975BF1BED6DB4AEA2A9BBD93E5AF55AF7CD28ECA76B64EA2F8AB6A783FED2EF53F23E735DEDEAB26F91B5863EE8CF24752DD88ACC6F639CAC6C7DC731B5238ED502E9314FDA12747DCD47D52BAAB868762C31C8BBAEEA7ACBFBC92790D5EC2D425F27B2FECE1805EEC5F689A75E57C31D781099AC82E49EE4B2B94A7918F12BE9FBB5A5BCC6B4B5F8547B3B1591D3E23DA7F329F7949D3BA7E9A1A6CE96F5B8628E338B95415660E2E932C4D7E0CDD8FD92D8DDF3A2ECA077F7DFC5F21231B86E013A7C5DF345D8D91EE452568AF365EB58C4DB50B9B6A7E4ADCCD60B3718A6BEA4BC9F61CE4092B2B2B28951B793F0B3A7C562562CCD1A83B4E128B0D70B71A96C4D2D296BF63624B5D13FD96D67367B7D69891610815C965656540DC00165657C6DBC6AD82AE7E55FB39E054E39E6AD3F5D9577FB4A0BFB78A64E632C3641CA09C0475CA602E731BB01859595D0BBFC2B2EDAC9C9E9FABFE6C96EE5F62AFD94171B2C0245DD7575E66C0CB15448EC1ECA27432EA06544DE022FC5F26FA743FE9DAF13F9E97FF00126FC9FF00FACDFC7B3F16BC4DE7BAFF008B58BF351FFC727E7FFFDA00080102000105027EA3D0F9535AB1A35DB83A95235342F051F4044E1492E546DCA0405C82C84C2A245058D3088F500A6710BCA6EC9C34CE91BD39018D1D8C3771845870756A2516991CD67DC1B8D4E8C3BF2D9877281C86371A9D73811B17843779D4A282CED127F88FD613364F239B5B807428A2804C6E53149F8C41109A563D01672765C91D4A3A35C9C89CB5BE73B43927D1825670B256EB29C500B885808A6F871C3613F64878A67E207A0A61446FFA731A0457145A506AC2902032DFC9D85CB1A715C56116AC6C5613B6016535F85EE052698051D8571F7295A9A565656565724E40279DFD194135394438A7B8AC943D45C89DB46AC23AC68845C83D6426FA8F972E0805FA93A81BB765215B000AC201C06B95EE6EEC22564844FA00D004E28B73A46C4ED0A7380592B3A145AB884235EDE341A35613B676C8A63F43A124AF6D7138075E489CE8D4104764EC14C3A11A94E4C9113B047D1C5008375E280F4B93B4DD651D0041883106FD272250F464212207283FE9B91D70B0860AF6CA070BF243E93BCE802CE984C7908E0A679C7D2779D3F4287845350F3F43FFDA00080103000105026EA7D0C891D9674E3B11E86393B51A9D638D38A3BAE250051F1226A216750741A9D18DCA0DC27205674C27B1351DF4693976C5724353A35DC4193ED2ECEA104516A78D9A88C17BB3A8D71BB8E87666810434C293C33CC88FA8A29A0F1273A84163471C2728FF00294A6BB09C172F4158C2DD71D0681028A21613460BC646379761E8CE1610016015C776B7D034FD651BB374EFC9C727D0F081D879F6DD97657E8B9204699411D8F804EFC723D384173C26FDCE413E3E4BD921334F0BC99BF15114E62E2B8AE2B8A70C208951B742B92CAC68504FDD3581710B1E978D83501921613D6500869220500B8A014A7D40614402CE8E41A80D0A7268D068482742E0173250692B75C7086E868068743A03A4D2A6E84EC01286134278C807ED12B16422E0107E5028E8E44A1B824A09CDD0E8C6041CD45EDD3865706A21BA9453B4013C7A5E146E4F6E5637281F465128BB5CA28FA0A6A0EC2C85C501A145C8C88C9EA3E828045AB09A50F2414589C083C110B2B2B2B3A1F41434C681C8B97B8139B95BB51FA450D09580B08145B94149E397D31A1FC86A1391F1F43FFFDA0008010202063F02F70CB4ADF95088A48A2B66C6D3A666D48D39C2149E4070DFFFDA0008010302063F02F72EB42E9E122F151A677E64E586C833C702786FFFDA0008010101063F02DA4EE1ED713A2F35709A738C0926305D48411B440FEE58CE406E7C3EB3463E8A22814D5BEE07E89C1FA43E8B23633298EBE0FC7C93D419A996E387B5C4F82B1BB4EC2E3A4D43017738834094D1C38B18EA1F7E5333E485ADF128C4409D535E636DC10CDF1039608B59284118709ABB4421EA83BB6779840C7986A8B0BAB0FA21FBA7729EEB8E59E3344C6B298D741BEC1CD91FA21870B3CDDA94795110566495B21E68BE1E6542355FD82D0D934230A3537163ABC809C04E1241E38CD078A10770E4D9D3C861859C2A4ACFFE33B9CA7A5805ED0D9120F8A38B08F71893B97CE5FB502E374E11F02B9A9E154E77056E8EAA0784D0308437AFD7457643125705DC77780C7163686B9DC5DC376D6D4AE832767E68BCE89CDFA2682AF754EC8FD1486E745FAAE8BBE34F2471F72E8321CA3C511868F376EDCDA0D538B66AE2AFC73D50742E851BC53E3FEE853C94611142131EDF6BC5C22A0372D5065409943B8EE5B36D48112AEEDF2078F0DD30D57DA38FF12754E0E1CDAA7768F9384F1B93DD99F6FED1A98A2CC342EA6A50C3F2260B1F6B88DC5800BB727456621E655CE308D027BFBC23A6E94E935F77FE27B80DB6ADBEE611C137337E4145CE822CEDF05C2328A31EDAE8D2455D9BB2E4D609B9B10B6DF746504EC8E95D357698EB0595B8A70E09F88085822E7700ACC7F13545EE31F151DB35D4C42210E2D401C5D57E2E62CB880E4D3D8761F6FDC35965C45B67942AB333BA88E8BF92EE104E634A710DBF27C42EA64EF31C47C18C2E8784426B5D91AE6EA5A55B8DF6307FC61945FDA6E851E9CE1C6303C745D57F345D71F55DDF731B4F747D6D1A22FE28B98262A372011C79072945D8FDA4D13BB803DF205472E488F25D36D4D53DCE4D6E17F4C0887B0FC8F9A7761F681CDB4863F1526350B2773100BA126348121C174C4599346BE41DE49D8DE274215D58542BDC24B162D1AD01ADFD7610E94289DD2FC37398AC4C06A66831B40A254340AF46527551FB779870AAD3F02864C862E1A239FE7F32882A2049935135D3D543332EBBDB382936D87A95F9EEE1C7C62A2A2EAEA8AB61215281064A4A07665F21F9AF34D6704ECD9B9455838F8AC591BC68A390438A74F9CD3771F70CAE37072EDDAD12CF02D7688B4B0F9C15A488F8945AC1CCE4C192AE0091B08460BA5C4C4FA6C393350506A7C974BB71CA3DC49FCD7423EDF71E251BB99A6B15D463A92B4ED1F6D84DBFBCC820FF00F2190E57EAC6C82E8BBB583788AAC0DED0DCDC27963545AD9C24E69D175AC8478201ADA20E655B451067A8D908ECB539CDF742B4804D0251D517391C3869A95D66E12319A13B3B7ED808DEE98F0418D16812028AE27A4CFAAC8DBAFF00E4289B8FA97332543AA0A6E4EB1C38F2B6170A07A7747B96E6C6D9C63FA20EEE3B688718031F4471F7188B08AEAADED417FA14323C5A48261E0141DB02238AEE271CF879D8CE2DD54C941CFA26638090D983BA1F074FC91CC67183B194EE5240F927BDE231355FFD0C5DB9E9B08B5E9B92DBC3808B78146D73F1794D58E04B4522AF7620E26A4A835A0780929FED476961946855F6C6156F11428D9EDF89D9C8E96DFB7CA79FB7E5F36AE9E39077B9E7443230723B42B176FEEC594B840E8A0B99A09506B40D97BCAB41DDB6E30E1156C77464C7EDA3C7151022B1E2CD4C712E1C535F85B0B0DC020586AB968893B2AA47FD33917F5D382E66C095147276EEB4EA0D0ABF1641236BB94C884475011C4845E7B9E68484174BB9F42AEC7EDDFBB7228ECB6A17DCF76D01AFF6631587129DD1365D582713FDB886ADAFE0B9CF905F922C356EF41406E0DAEEE3372E0C5AF177041D839C0FFAE925293C49CC3221457B219051C2AAC708E91423A95E0777C5454368DA3FF477E88A67F1417A23E6BD421B8373FFDA0008010103013F210B430407E0478E8816EA1C21B201EB9898120CB9F26271019799AD88F779D1339C254D7A3C405D0AE1A88B2770C4B2CDA01B58BA0CBF32E8F6FDAC7E201E966778AC137609A00C13F88EEF1C1260F7CDCCB98C410403DEE4B89A4B2AF8866DE3AC2DB58E3EFC0FF422E4E9C86293C13D7B0712AA1416B8E7EF379814EE4D1F12B91B37DB51E35F82127872FC5FE52A8C64E2CF24B711055436558ABB1FD87B4A684E7CCB441E930AD1510103C3344324CCE039EEBA9AEF607576C041605DB225C1B1B8611576C66BD40AEC3BA38CC80396CC3332A96C35A396651F0021A998F73DC6540EAEAD6A3C956DB86CA6A333B0DBDCC01A8FBD4BA87A560F2C44326EE3B8E2E13ED86C12AFC2F32BAEA73BC1F699A651F994284301BE8946FCF92511B0018B4C44EFBA362CD4069996CBC84770B04C6B0554BC451803A045DFA7DD964F9F2BB711C4F0A5830FB450730A01512DF32507B8E2D2EDD61FFCCC0031A3BB7C4B52B1C7F50DD06FED385F5105967CCA6073CC5CFC944BFD2F89B180C1E625A5BB9E784ACD84B1A5423F60FB8DB986512DCA1CEA3CED2F65E2E70EEC3DFCC04163B8CA9FDA569DF9F711C33CDAD0F64B556857C8C016FC21752C7556A668A3C6226DF4DCA2CCC26AD85AAC1EFEA57D2DDB50E71349840AE2661147885FBC06D81758766298E35DC3329E47AF9A952C96819381DA50869AED4AB940F556A2F610D07FEC6744CFD2432D5C986C0F679F98D84B249558E3315D8B2EA2C8877626A3A250273B945D41C72BDA24F3A24F79494F41FC22725E4B0CB186ED7EC73034B3C3DC33CF78E5C6E7314AAE08648C26FC368812F13DF51D427945A1C44DCBCE0D3986DC3B0CC178E231DA6EAB00038AD5CD299850BBD809F30F5B139441ACC5A872FC4DDEDF11EE32DAC93F27346A1680FF0036398BEFED2079610E28C1CD779899B6A5B2BEC8C332E5ECA1011605610A03DB98C4DAB8E59CA1C92A983764EEC96AC2E197435154B9DE1708D72006F108D01BAA43AD536C5B0A4BDD1E605A9822298BA3C7696BBC0CCA8B4CF9731C37907541450ED3C1322D7970C1A805AB67B9411B2CE489B10E2F56E8977E8AFBE2D408EE896BBC1C545D88D5E652FF00F21FFAA56D8E63BACD64A8C0D050461D110A7B24A825E724B17703CC0E06D7C238C3EED1FCA826B82BAA8E82C63B86B30CDC5563CE200E4CD78712B071BFF9446D3C2958F998C7CD66CAE263174816F89683829514C48358F3DEA5D5B75285E65D38BE21F74BA9B3BACE23BE882BCCDAD21AC1A2FF008278E40F6C2E11FE14B05AE7C9FF00040DDDAC9D3FF252EA2818A66AF395F02DFEA08CBE8516883E98A4FC98E6A0505851B0929E9A550FDA0A801DB2BE22181D81C0F2711043EFB4EFC61D67269E3482E3B6A0FC05E5FB08B818B0941DDA3D108B9361F83C132A8147B3BFB879296A3AF4F3D0CB423DE37E595A2F780BFB8444354A95893C3AAC33A653E3C88BC930CBC5A82501AB858578593E106D2A7CDDA0591B788E690E77887B4713E6CE9567E660056BB6D258B4CE58AE42C1FE883CB1C2BE816956CD532C0DE1A9863C13C602BB7A372E48E4D0F91155821182E1899C39D65DBEE63F29656EF8C1866AA3015BE1EE6BD3C1232E23A03F5169842CE4A88E018AD73337B964B8D2D2E5FABF8B998ACF988B4A25DCF460BA38229F6618988612CD597644C8CDA0DC681CB5262E3B4B676F12C8BE9B38B30DAE2AEF4F552D732EEAAA711F73CDA42472F1D22E704A675A84A350468842BC40FE574DDCD47635DCAB0F817C8CDA9C1F031DD4C2394D5F4ACDB8AB27669F88EABBEEB1FECADA59E5AE7DCDACC79D701562A7CDBA8B869E9B539B2874352FBCFBC2137F32E7736A51694D3637654E2A165786316E80B2DDDF85308AFB79F111DF907C107B01079AE25E53F4F72D3F72343F7E6315BC170B3C3E23B793ED12BB99C669D37E9A191E11858794CEEE2F908DB97A79A43C9DCACBDB3FAD4A8F88B9368377BDCEF005A51298F8021732929681C333BDAE18CE653D57A578F9D4B331860BCE0E99669E664CD5AB9A6E0B3F21FA952C15671F98505B0E99E7FE236F1A1E759A56B3E0CE0859965656E5CBE93465078A528CB247A0FD4AD7CCB59741DC3EF0FF00628736555BC1EF3C17D6D76A62D6DC1FE9F01FE9160AD8703CCEFC067DC46FAE2CB631151CC3BDDB7099A110633F4FF5367CCDFD3EFD2EAC347B74AD70FD5FA43B3A5B27FFDA0008010203013F21E8228745A8EBF963B312215D10574A8333B7314E09431DF43A2862E5DC6BA2065CC68992A6998C2235328450272CD47A12A628AD3AE8C1888CC91505BE9E53832E6E3C415C6C7411D082E09338D208FB254F31224134F465BA3F7C0953E89D64CD62A5C50211D351F47A8F338A6F14BCD43A5C5BE84165316C8AA2C40C5F5894A60D3D2A09792DC3C44C3A1147520573B947A1890412EA39A8B8FCC72A8AA09CA583E7E8BA86EEA3A08231A6C999D1C3963DD8F7A1A82A301DE542E1E515DD9511EA2C9C0C723584C74928CD4C98267A218886580E25ACC4CB7B6C285442A7E920C65AC5BCCD5E822B660D8880BE27994669CB1BD2CD45ACFD0291E81CBFA089D1948CB2F4DA80DBA4B1D6E5C7A4E43D047AD5920CCCF70EE89911851899BE3E94C46E11B2D52D61D9D1584B3A06AA205B8B331BCA03F42485722588C5847562BB84581D20E9649B12A53965931F4114F04FBFDCC1A832798BEFA0AEA3542831C20805892ECC08BC1AA7A6928BB8845D40ECEA63A659C425C30C4E814410CC17187493E845330630D3D18820C230EA4A8CA5FD46B0592AEA50808BE9E408F4A9503E979E829718D4A4863A822E32530654A952BEA59E83A6B7153D494457302CFF00E918742D16308C70707FF34C21FF00CD99FA3FFFDA0008010303013F21FADC10443661771824CF12E1613B9D1B26A1FA41728DC4818AA588309E302B137308855C5ACE0897F505ACCCEA4903AB15153313F131073D10D364A5FD070268B71A9DD2E41831470E264E8F6A8B74BDD07E86539689B9823B8420E95506E394E28645170CAC4A6075C1B99E602C455987D06B0E9B321DA592C4AC1350FA0262CC2CE2288410FA32E8405EE6825E0C290EB5113916F44418525F1C6882F683D55708E33866353A40F51A6721D1679CDC1990B8151730DC5730AEA6ECA245969B874A952A03D3BC0709B11D4C25CB1E8AFCF4CC5C1D57A70CEC7D3F4BAAA88B88A1DD00C22A543A71CE7400C4684AEB52E72FE9868E8C265D63162639C8C4A13B93047E860066D4ACB2667D06A652A995C413CCBE47A6E23A902C331B8B28C199423994B08A2C7095B50AE815BCC6556E8A079663ED1E1938B4FD4ED2BAADE52241D1CA264F79577291388C16546F5294D68F68E60661C80CA389D9F40E95143388C7446A0C7A734C59826CDF4D7FF0CD70E850747A1B22A664D7306DC55F4822E89C460AF4B9717E96B0598A613B90764B51D37281094B2290FA12FA997F4688A0D1D1F0CB211A85B4EA563D2E5CBEB72FE82BC10AE2CE8845886DCB574BE951FA78FA839FA38FAD9FFFDA000C0301000211031100001067F9AF6EF42D8FE0DBBDC75891A42B9B68FBF35AA4EFDB8B42A616FF009D78541737614C9563A81470C8A552A2EFFC04D4B6CF7153EC9396BCA0638011EEC51336A42771163C9BCE318BE201C9781E4CA0B97FBD48510505FDC4512FA08387FAA210366B785DDDD4074D3DAF4716330824F2E084923C5B46D6CDB3A26DF4FBF1C3F026E5A2F1A992770603CE074A9C1733580FFF007F5210F2B8B4DA2DEC414A5797B1302F112EFFDA0008010103013F10CD1CA344C9287286F17F32F9BC470E032AE00202992041BB174E32FDB32BE8102ADF0A51AF11B305D228B440579E7D12A1646D45AC8410BADF10FE50D2A96D40C088BBD545765E9396FD4F2F12B2D679CC46CB9AF1973329B0F29E34D9CCA8CAECA842ACE1B401F70D42A0D023C45D0217600B158E3873E2E0653049698900145FA6675A0E47397043BC74B8387041189A6A1CB42DA963B472172A99C3A944BE5CD0C11ACAD19EF099290EC253C10BAC0085AD5A15BAB8CBDC5AD90F705971F861E718E7051431062C948D77A3C8B1786951792F733C5C31DBB94ABED507A299A3C5EDEA2BA9A02C95C877169801583A5D9E77A8519AF7C9518CDD38FEABAADA36771847CCB9D6F3C4D1306C7D2E73EDE20B7622F6374244A47960E02AC328A0439727606D0A7BD778CF021C4652AD6211050B4C22E7923EF3D8A5159C2D8C8871CEF576AA6EE2132EFD639BEF9FE4002A00ADF01BA22951098A7093AB5371AA56E7C0547DE51CD010082AEAAE0064765E51FB9A65E900EAED02BB26532DA806605F266578CA421C880132C0FA53F507C71069AD9400AA2BD1B866E39975858EC370223619A2D33E3F28EAA99C14A3F7427A5264FBC73AC095C309A018EC44331A7BA43C8BA96A4A4B650500F9959ABD4DE010A2A2B9A003841B2E0284C0F61BAF75292B1672F2B2ADAE99DC95C47B10B12F5294412A25E6A2FEF02559BAE01C9F7B82DA15AB80F981362ED34C8E43286597032232EF5CC6BA2ADFBCA76F96C9FF00B2CDCB9792DAF8E11A8B1A6589951F70C70BD8B56F97837093C15FE502A2816668FDDAC512B0D8D1031B8AE40AC3DA65591C2C6862D3C46D134F0633702B5C945B3B31C926B79B6F8D41AB59C38D8D5DB52ACCC600A93B0628895512CC114E62B2E81BF12BDC5BFAF3DDAE5A90B0B9B24569B152EEC5C12A006B1CD9EDE0180B5423E4D0DC420A3B0A7A4E688E6FAE11A93C3E609CD76962646BC908546CA2C3B4B66D08A5D6638C50F23070DC407B00A1C57CAC0F934361BD5F95C4D894AE7D86922BD895049430339650B6F657E25C404F0A38ED3BC47980BB0BA81BC40141DA6EBCCB4B06D360C3DC6B4EA58BA5D39F44C5079E264422DE030AEFE635ED68D3419718B83A1CC6CF6B8E32AEFB874ED7446634406CD7A8E588507CA41C53F32B0AE8578C779788858A556B019E65A3FAD9A96E5878523F80B0D045A59DA3C40A0E6D550EF88E18C218282D1122B0CB0EFC96217F700179698F573454429BA52755CC6888AF0D26432E0B29283A65283DF6894F40B1E002BB45ABE0E2B55A2735F1007D00B62C96DBBC4420B8D881442216DB7E4A88D18805CCA5D7C53B730903A9147377983DDECE50F6122D7AAF4B0A04F0290B0DD6B5A924828CA34EB220ACEC0390BC5C2A80026017454CCDA2BA9E9CAD04D98048E954929EA54C1AF817461F998D4939038B6BE561883F5F0780E16662A86DCA64CD0B61C9CF92A04FB371F430E8907E0457C4C0C731CC3CAB40BC8A7A8A419FDA041EBEF111D85A0486FAE834D63F5986041406C57FE99A2A1081929ED834000AEB2EBC5CE2302190837416D15128103CD9631921E04499D419CADC8BF511C87B8D58E2CE4B2E6200AD30C2631A7EE211466911BA4AB7B3B7CC4E0E048A6103A943C2B120ED09EA52094AD08B672E6EA570A28D1B128CBBF5EE58E3895FDA2745D2CBA08AB80D03D81AF883F2FB21398635035A6BF7193E16098709472065D4142985C01511810363AFCCA048E04ABBF7B61BC8CECA2DD117AF6399B9B2240628D7F4BFD9949ADD9CB396F81DA5E06ECA8594C85B8C32B818CCB7C15DEA8B95746AC2DAB50D4BA6926020AEDCDD9DFD47A10D31DE235F88FEE35A917B043DE2C5CABC9452F30EC0C7BC580F1DE27CC0F33BA832307C4BB9BA0CCBC76943FD51C682B0AE99738CC0A7360CBDE7E63F67302D97702B34470A0F71732E98F117C2DB039BC915EC86BB86627AA5A77610FD4392EE5BE6D6088DA3206CEF18B6C556EC0476BBE5965CA8A576D838CAA941D721601A4314EC94654688159B450626188525A38132BDCFDC8AA821E190565A2AA19218A73C09658EC88945C3016BB3B8178345976287308C981B5D64C7B8C32DC4C441ADC68F659C059C5F6258FB6D56DAF02DC6770CDC820BED6B2F0D7E42EA55C9A6605B463DB0B7158430A95A0AC1464176936955D80FDE3A079AFA668BA1C334C12361D9C06EF398D9762C3E05233CE1BF8941484B0D69616F965D5A822EEBC2CC830BEAD3625F3517C048657C227EE28388C115E6E8086CF70B18ADB6911534E9EF943C98C3B29959798D5E8596EA8E5F13030F8721E7DDC756DBBB3182916A76C952A5E85872443BB68AE2E3F4A5636E642AFB4475394BCB977185D127273FD188E05887D4730C1FE85B4B6FE2882F3C7169AC05B1681853D0A70E5F31300D8569365AE38A63A8C593043563A94DAD01D0684B061C938ADB72D5A2B92BBC42B210EE22E11BA97B25C29BBB8BD311612F568A8EC49856D2FB378968A37558B3B7E25E657DB0FE18DB56A118AB0BEC768E1AF421402E2AAA943BC20C9652E935AB88A8E517A4943D6800535DAC8D8A3D7B66DFE195D97E01C49C5D5661BC128A072864FB46477CEDC390EF1E6EC4AEC188DA2B3C450D33CAA6200BA6A1E900B69560959AB825FCCD422A8C936F733B1CDE2A54DA4028FC19F98FD880F2240957D971AB89D35B9DD135EA5BDD3445597B4849FA8805186959CC434BDBB7EE4ECD8F920F4E222092A680B8ABA1459CA6C455F330C532F9F4DABC6D76253230033514BB2D919A9641DF4012B24318800C63ED075B219DCC5ED2E50A011A5AED31534464BC7925FE53DBBBD888D4948B67F1886B0AB6A4A6137278B9949CF10BDB8263621B17DCBA87D2A82D8B2D3EF9967CA14752EE85D0811687AF6710ED538F2D81AF3B2260B80B154BAB45E584603B565CFB26A05F270695C96D2698EE7B6DAC621CA156CA0A15B08EF022D8617159CCB8281B0343D66341381568CEC2FBE5885972E52E1012DB8975CA0F8BB7D10EE9D64F5D6792F4D4DA96A664AE1E20D99A8DC15CF32FF00E2A9F5994715734872870F9253F6F02BD02A0E9FA4071F62B5DAABAE799688C9820BA4BB4EF03D8B82DB56304139A644A339898155B9A7A8B4DC2ECC31B5CAC59D9FB8BD2BB9385DFB84989728FEA2A8526DE710F2FEEFA7CB2D190015C72317C7DD2D4A06EAB80A055D19C453CD407271CED77B421D9C53938C9FF0061952B44E6BBF32C055E0ED0E7CCA80A7491594C7098F31B73391573E083A0008023B9E699B7281DC48AF1FA4B1C4439B116556F7C67B0F70686853343A0AECBC3175965943DAC9E9D3195C25715FDB8E88229ED165A51E062F3D39486AD9117D47C20023B60FE2058712EF9A8EB6439A0BCC1019541E581FF00C6D4EFF36FF254CEA709BCFC697E37E93F47F44FF17B47F8BC13F37FB9F8C7EA7FB1DE7FB3CCFF0063B4FCFF00DA3CC37399FB3FA7A3D5E9FDB3FD3D4FFFDA0008010203013F10DFAA848ACE822D8DBE5FF88965732956E10CB18688C150AE4CCAD5E203A57F66B7946AE312CC6C398F96CB9D3697997914AE22509290B270445995F5A8F65174CC9E4B2F9E8C201EF14D3731371A2862976876012655F1B22BE82651084B956A16C23C3B3FA9B0656A8384F662D05C5BD44A5AD770A55ED802D22E031C3BFF0091146619E1228F55ECC03CCA92AEC450BCA645CA974A6046D93989AE049ADDCB49DE503B88ACEF090EFD012A33AB08DC40CAB0A4D04D0B205C48E3CC736E7039868B28492DA3447996DD4A56597BA2849A18D6E2D7923EA435DAE36EFCC6AC712D146D6214B7398B888DC6EAF98275F1FF00660AE939969A2D5463714BE820B60F8A6E0A870772BD10B788D30CB099A254BBBE2302B114AD1C2111BEFD80EF0EED83E0805C6AE0C2825FF7C458306245C672A8354EA2FA2EE3E3180B66482DABE995B1058BCCA80979CA0913537B1E3BC4A9DF108C0A82C81022D12BA930AD30F7198F4234A5880CF349A961918F30FDA3F4DB11D97C4401EC4C0F145478AA083812C261E95202009AEDC072DC29393629DF3B8A98EEF730C07CC070FD4D60F86CF704B0468350141CCB9776FF00F9D100F282075B5804B1A87004B96E89653998FA946A5D399C24A91A84150AB4B94A89E077F133D406F171BB2DDFC12FF0B972E5BA1A370C991ED8ED9980CA18B1518583CF4D974FFC8E19DE5EC76F6C43B74B615C083C087D1722220FA12A39198BE08E94524BE0B6663B4768F1B7F539B0E8FEC4D7BD41056195037DA1D2F1886672F8834638F341702A22596267D4B0CBC96740C9CD2C23ABFBCA8AE25F41069F1CB4ADF4D2A61B6CC9AFF6F8982834F08D8363BC0BAE81F98CBE07696386A0F90C7B154AB1920A745C41189C07897CF1FF0025CC11F08C18D840E9B85845BC4A6DC0877150B84177089EC9EA0ACDEA63B047B2DCACF48C128197019ADCA55EFCEA2217B96CBA1D3D1C3A671F5D41BAE4A7119893B932831446B8EF430C4D26C217006E0E225C3A01F29C04F5AA3A6B52A62678658AC5789DFE880095D14E868EA1D1B8C51B954CC21A60A0DE3ED0B605618AC7DF4A8900B1B4AC608AEB5D3362CCDA04136416A5E0BB79D7DE3C497722F32E65CC43A54A8E20461D1E5378332C2E26E59719E950071C8EA236460A40195D565DF4A8426F9B4DE7EE9A4DDFDD475D1B1D2EDEBE913886A7FFDA0008010303013F10DBA3D232E1997707B41B44F092E8202ED8073A8E19622EE98FB9FE4BC4E1116C46FED896C5508C318EA88AAC164047EA00CEE0C378876459AD88E13550C5B533951D67DC1077965ACCD2831D1E8656689329DE316DD4A75013313289052E09A9640AAD426EB5151CAA8D5E4D41BC9C7E48FA338A2B06E16E5386708E5D83A17CC90929990452FC4A1332EC2C17D91092591C6E1E8C691C4328D04B5776249650C5D0B54A96CA96F336A64A30460DADCC17299906704025448DA1C4381E6521B616EC8486E0CC388068C0F305788731017B54669C1FEA990AB1E20EC68C144495122AE25AD8C23C332EC78CCB3315388A883101704D3076F8884EA251AAFCC1C53370A9B232D112542D821DDD8B2E485AB6AA1186C8A8138422DB071DE2A6454A8E4768AF9D448B14CA0ED22A2B72A6E3D2A1961234788CCEC101CD5C62B52FF3AD50B309AA12830C18663B279E9F7E62A7265B92FF006654BCBC5F41716A00F387D116B3A214ACA26CB9A71E182EC6A31808FE3E25B55052C9B6989804AB9B5710555FD3F62C6DABB961474BD48C7B84B84031021C6A5C4A1EA57CBC47946D7CD4C215FB99C7823152A31F1897E1E1D1D110C4B80DA66C40D419947B4C02E2E60C071196F68656F2A412BA8B2A3D768868F7C4ADABA88106C25AC0A9809C90D605962D7D398261704472352966EA6DD36A8851A3BB2F39622834A4CF3F7944DA02A2036E9181D1BA5388685E600774A0B96DBFB632153680CB825F37B8BD07F09606ADE228BAB34916A2C35DE291773C54BD69D432D6A0BFE4C419DC62328463888E40C87FBEF308AA8519845614065A62005A39F333DF796B2AA8048C05CBA4E7BC543039A221BAAC502828973117532C1582EAE62B75029AEA9DA2CADA7300BEDDA3AC237048E1EF0EE21A58ABCC710F32810E0CC9B60CC5D55CBC9925C598B09465FE7112CEC7FEC5702FBCBAB94EE6082423980D318C462D838E973F12F8F3D162F40CCCB22DA45D0B86A157300204645C7D4DF93A014732996978F41E65C518CAA086AA399CB6257C1305B6F50150CBBA0F831971719717A59CA39E8C3030432E5E322CBC137CC471AE81175934C58183DC54BA160A3051563A2C631D26B19B3D13846729AF46EFA1C4E23BEAFFD900','Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.',2 +,'http://accweb/emmployees/davolio.bmp','2100.50'); +INSERT INTO Employees VALUES(null,'Dodsworth','Anne','Sales Representative','Ms.','1966-01-27','1994-11-15','7 Houndstooth Rd.','London',NULL,'WG2 7LT','UK','(71) 555-4444','452',X'FFD8FFE000104A46494600010200006400640000FFEC00114475636B7900010004000000480000FFEE002641646F62650064C0000000010300150403060A0D00000E270000133200001E3500002FA8FFDB008400040303030303040303040503030305060504040506070606060606070907080808080709090B0B0C0B0B090C0C0C0C0C0C101010101012121212121212121212010404040707070E09090E140E0D0E1414121212121412121212121212121212121212121212121212121212121212121212121212121212121212121212121212FFC200110800AA00A003011100021101031101FFC400D400000301000301010000000000000000000405060301020700080100030101010100000000000000000000020304050100061000020202010401040202030003000000010200031104121021310513204122323314230630421524343511000103020305050704030100000000000100110221033141121051812232206171421391A1B1C152230430627233D143531412000102070101000000000000000000001130210010204050600131701301000202010401040301010000000000010011213141105161718191A1B1C120F0D1E1F1FFDA000C03010002110311000001ED29902650B34064A05732C665DEB253F0246FDEB69E993BA0673D40905545A0FE6A32F29A796EADC43A89229BED04FB89A35D737CACF5B17513E7CF5CC37F76017E2048412E2E209CAA32D3459E6683658B6740C7431A0A857224226E9B0B9E4D74CDD9E0BA7A09B43D063A693929853906AD7A1D3BD91E55E27A33DF63ED1A836AC8DFE8FCF41D72F29AA5D3ACB0FD411E8C56A62B84597B069D38ADD7613DB210C512C4FDEE600DF19EDF9C9A6C676A77CE75595AD992966D44BCAF9E13C93420B67E7AEB3B62D27735F2DA946C1B290C49269FBBCCC4E79177875155766E8EDE4CF3C37D1F9A4F3EBF7552C54E7F2D11DA79AE81F693B5A794D0E22DA829B3EE4AFBDEE9C3194DFCF2DD2B2CBD2CBA277912BA79132C63F8748C5986E5627E6A2EB54F0CEA59B2662731868D8D620386F33B8FBC64365CC6E17A2ADC906ACF48DE3B92D0DC8DF9D49405AC5A2C7C0FBC933C02F1B4DC8DABA3925EA2D721B80F9D7AB194FA794E2ED9BE743DA7BF3EF65F4F15C47A2F916341629B33C3B33AF57C2E0D5DD457B562F9BF3546B72FBC77A845BC476ABA2608B9CD78CB5773296E158A61C205BEF4095ED4A52FA0C8E7CF9D9C0B7D02BC1C78588B4825239EB87975A569197BF3E926256C1E4B96595AE134267422F4882DA4E4F42FCCD4813AAE4435DDD985DC97DC87A012692DFCF94DEC67B34E4EBA99563E55B5C9559DA3E8B8DB7E73B19D5D3554AB1A4284934497B44811B6AB10407EA6BEFCE4BA2BF07BFBEA787B0ADA904F93F5C896C8F1625E45A0391D54D5D128E8F88C7BEF3CAFAC07BE92103329E6D5A0EFD241B7BE79CD4A09C93D51E1D5625E55547C7BA33A725355BC1A6ED4E7C2181797116A435DE8F360E6A32963E5D7493EAD37731980682A8806A93571BDCFD50E9938F759F196F0DF4E09977B523FD5E9E3D64A08D3481982ADBF9FF56203DDA5CDD9C18A19B2700D9BD3CB653D15599AC2B9515AF87EA38BF4558AE76F183D6107D6A5337F47BF150BDA3C7B4603D14359EA709EC5E8679A8B3EE12EA2515F3DD636E798FD1FCB9AB7FA0656D54CF453825E3A121B3F1EE460D5E46F6FC1E5944FA0FB0A61D27A066016B7E25E3E7A8762446A92DF9A42DB471DF7F068DC2C193259B3F78DD226CF616B28ED6C406891CA98643A49AB87706328F4457251E8663ECDD50698837A8859B3552F515B943A1ADCE366AC959B34B66F4F226EDCE7007518FBB1BAB8AC66B8D9EB594CA1BA6AACED49AD1CCE38452DC470FB7B80351C81398F437F732354CE8667268D3BC719BAB33A594DE3B494DCB6A80A4D2D26B30352EAA4296EDC58BDD206E49687B98F40B125744B31A590D97C56D5BB87411DB0B053C99ED04A76434D0C3A0A8D2B6B94E455CB16B9D286E41A87BC8749925CA6B82375B1A86720181FFFDA00080101000105020860AE2A438137F6F338C38CD4789BB4B604D652C86DC25299BBFB440FED58C7436ED59F2072C9961DD696C883A666D6DE2043637F49F1768DBC752B0D62503157AB0B3FF1F03FF01955BD0B3CDAF556EB97D7E269B9A99A569B12B20CA3F513E49F24BF638A9334D512ADCD86B9EBACE75B5C31D5AC895AC0938415C6A11C7B1F4A8C97D1651B1A2AF5526D0175F690BF2060AE37145BECE44372766E1EB9ACE274D5EE3AD471954AE01166262309FECDA46AB92EFEA36920642966BCAFDBFC4DCA6D5A736FEBA957E62A3F1F03CFD7A77412B112083A99ED3597675762D228F5AE4D1B162BEA7F5B30D865AFF9589CCA2FF9341D3687B1A169D8D0FD6A891562883A98E32BED2BFF00E77AC503535A94D845D7E12CC2A5D664D3DD1072AF52DFCF737976E691FC682028DCD7589BBAF12FA5E022663ED5554FEF54D17611A7B850BECFD6372A57606956FEDECB0DFF00E44B2BC26AFF00F5B57702CDEBB5F9B29B36EA1F1AD6CF64AADD1AA3A5162262B9AD6F30DE368D68EBED6AAA6B7B3D7DB3FEC0BC3D9695CC53D8D28D5A6B72DB450A761070D57089B15709A296D735ECAAE98EDB2360A8F537F1F49A6E945C2D69EB1CF33DE6F699B767D6FAC6A80FF5FE3B5FEC1ACE37A8D11C1B65D2DA369393760D6BACD74E53675C7C9B806A68E919AE061756BB426958B12961364FE1ABF86C4B691704A1D271C4F6B48BB4B577AAD9D2DE236D6AFCC920CB2DAC4F5DBD5D765BA449F6949BF5FD75BDF59FB50F15F30CD8F15FF2839026219B8D8D6AB35B521EDBEFD25D2D94ED1F1C9D7134BDADDAE3FC362DB47F5B6F59FF001A5E56F0BCB76C6CDFA8839A8FC6EB5AA8978785A7B9BBE3F5FA6AEEFAB4534CBAA4D9F60ADA3B55ED6B288E040253B469AEEBC9B754E6AA2CC4AAC9B37FE256DD7B75BD85B5D95FB35B2712EBF236A5FF002647FB4DFF001FAFD73C557746BD6765AAA8A622E41BF10642B39966668FF02031338B9914D96E94D63EADDC5FEBF5459EEB5AA5FEC27B1A75C114FF00B6DD9BB46BFEC1B3D65BA2529D7D917AB2963C61EF2AAC1A5FD7B2B7B04E13D3ECF3AE93DD14327B3D14DB1A9559AB284D4B12A5D5A50D06FB788542401EE367FB9BBABB4FACD67B06B65747CA0ECBBC71CD2E57E5A3B675CB6D5564F6D58E1ADB075B635F612C1AD7623FE4CFAA5A534EED5026FBCA28F8A59E3DCFB11AF55BE757552C4AB449B7D96E6B68A4E05632ABC6A51A00F558DC37752FADA96D4DB7D73ABBEAF2AD90D28E2F11567110F69EE7DAA692586CBCDB462B5D87A636DB9957F96DFB35ACB2BDDF952E06569522FF0065AAB7717E601488ACCB357D85A934BDA2CA3711E7F6567B4F7756954D6DBB5755FA93CE6D028CA67E9AAE878D8788A0298F88F7607260F5FE54BB547A20C4AD88946C5AB2CF606B4B2E6D8B6A181A67B2606C7BA0AB62779B4F88BC3E27FC9A8002DA3E48EB86B12534AFFE3D7A76593E3E05566313E5E31ED67293C5742F0A36DD85DB96FCCFA4BCAF6B2BE4F67E218F2AECC2FC8480DDCAE5511FFA4A5A9AC7E65463A59D2BFD9FF5AC37C1B3CA5BFCBAEBC75B8996F8FBD717F55FDEC94FF16C7E94F9E9674AFCC3FC77FF0023FF0028FF00F344FFDA0008010200010502EB9E99EAA5634C43384F8C465FA10FD599CA0611A6672999CE7C903CCC61184310F7EA7A3794584C63F4E2627899ECC7A2F9E84F55FDB11CE213F5995998CC780C10F5B1A03DF3D9BFE1300EF67959CA37407A30C4A8E43FFC2629FC5FC980C680433EEC2226237D39E9CA72999F6680667C533DC18DE5AB880C07B74C198FA7818441E184485BB388A6379432D68463A2E22B88F887AAB609B04E66661681632C2662344695F767FA4F52263A18EB8959C47EC2012DAA0694B60D83E93F4986130F8E795304063D59E81B20FD42667284CFBD9884CFFA904447826614CC45EC7E8F30ACCFD150CB3CE398064E7A274C411BCF5C19DFA9E94CB3B4F933391117A084F7174A4CB97BF456C42DF41E958C074CCF8E667183B4532DAF3024A0C65C823AE66667A18A208EF0BCAEBCF4CC10399E60FC4AB663A661598E804C74033D15A15CC15CC740B1ABC458C4CE19159C74C464857A7280667807A2741E7304782049887C807A1E844E331886590F8D7862C3E44783B4114C63FE4364CFD00433EEDE57C56311A080746138CC4CC27F2F27C751D1A087CA45F07A0821E9F65862C783A0E8DD47813FED3FFFDA000801030001050298988040B31D595A28998077E7058629E87B42332D5C7D2AB3138C64313A002769859C04290AC530451897AF69999883A2896340B152621309999CA07303E663BE3A5A3B4C445804FBBF652D2B19E863743D443DC41184748220E952C61DB1DD3A1861FA6B318F61E0CE32B19331D03CB17053A184C30FD00C2B963D1A52B18C1E3EC8D0B0316198850C2A663A0AC99F119C2570C782C8A3B32C4F0964723247E5D18CE5331C41018CC262219987BCE3F956F1BC278759421110E618F99652C227210471DA30CA8A984C289577E84C5695ACE588B1D3BDA78A55E0C267C82334410F88AF885C4CCA9B050F296A6457DE010912ABB1312E4CAD0DDA3084744EA666089E42740983D184AEE999C78B43184C40311A1F2AB986B804594E619F704347486622BE23BF71D08807534CCE27EC3118E057E19B13381C7A3C10B4689E3E8338BB4FEBCE1C63F9B3C567215310AC6CF551F89D7EF7CD77C884CC030510A308C18CECA33DE59DE23E20B232CE50F78C2536719F209B03B23F120E7A081A330332B1DF3074695D7D956596E2098861413183FB2B0C4AECC457CF4318CCF41DA11197B0B311AF9CA085A25D98E228027C98370CF40625B0106324F8E71C45EE474B3A1F18EC624319E660FD491D0410319CE72C95954FBEC798D07832B11BBC6118451FE21599882626616CC13EC9E1E58D983A3374569CBB6611147E1E079EADD16183C591BC8E8DD1609F77823F8AE1E8DD17ABF933ED3FFFDA0008010202063F02D2C6FE571D93EA03E1BFFFDA0008010302063F02B13C49EA6C5140E14D014366C80879B54D7A173C9365BDB078F63D87ED66C8D6CB99BD072452182FFFDA0008010101063F02EC1B30E2766F4ED446EDBE7B5D5467AA790C0AB9A308823DC4A12FA6A113E51EF2B56FC934B029C06284863DB36E18E69973697CA264C9CFDA6FF9CB52F4AEF2CBC930BEE0137A6A54FEB7520309A3A7CD4E0843209A1171BD5633B92DFA999565A4F797475113F76CEF07B040C577A37A689D46B843061DE9C120A1593AC7C7B2D2089B1CB25A2E3E2BD48F4363FE57AD1C3CC1063496D75DC1377AD5F4934DE4D02FAA47155A442C3F421F9301CA4D50B78D9BD1D51E28E768CA5EF4243A41A1E29AE61B348D9EA4B0C22AED8356E788DEC1737521DDFA372043D28A3025AE5945B0841CFF0022A301599C7E2B987B765735180CD088E9B50250FF00B443C3F705CAFA6551DDBC2F1FD1211B78312FE0A51CE6E7E4133E9904D3E644A75EA1CA0A7A7AC865A22744E21ED1FDE3FCA1298D374758F9A75CD45D4B16E0B9640EDE72CB95CA63CAAE9C194E72A3547F1011BB2A199A384FA7D853450DEEAEBFFAE2ECBEED6370F8206D83EA6523434F8A6FA8D5782FB8744534F43FEE2B5C6DCB4FD50AAF52DCB5410CDF63CCEA96355C92B65B1029F15E9F9B726C44EDC65F247F1C757E41D3E11CD42DEF93A94052D809D6A8658A909613EAF02BD138DA2C3BD19CDE9BF2467E9812C04C67C1385F6B139EE40932D7206BB8E4A27F25EC5FB5097DE8CCF3C9E943DCA575B4DD8FF6C474C81C24168396C91EA303C142C7E4017AC4273909480333ABCB45FF00A2C1F400938864AD5D90FB738697F0285DB7C97460A77AFF002CA1CB18F7237246A7109D538A07CB38B21290D5002A7BC263D7759F8A6C9326216024AA045969408CCECC58A6D41B65DDF08EA8F8840C6938D0F71449E5BD67DE111B0B54AF4AF7F5C8D25B9424FAAD4F13BD4A4DA8C082B8F6878F66EFF097C17AD627A44B18A8D1F515A6D4FAC381B34EC8465CF6A8E0A3506321F152D1D13AF143B12B303C96A92237A6DDB04B119EDFC897EC23DA84327AA78B6B635EF2A65DC588C627C5961E8DC8E4B5C0EB8FC1315A4705A09E93F14244B890AA89EE4366919A9DCB785CC5032AD72405A1A89C91D78C97A77BA27D13CB669CEECC040719295CEA9E108AD313CF78EB9CBBF648794AA2077A6DE83E4A1E1B1D34CB2695C8FB573CE1C5389C6B946AB5185CD233644FA5285BCB506E214357535559B19446A420ECB5DA9FAD6CE20AFE9B7AB7D4262139555BE3318A898D60ECB7307F6AF4CF543610AA48943064232D176317C47326B9F8BAC935217D8FC56B9FC7E6535CC751221945D691805E0AE5C1D2ED1F009E356427070E2A14AF47543B82E754AAD2B4CEB0508DB6237A9CBBA284FCB8142512E0A6D8F1C57DB5D71B7E017D5238C8EC36607EEDCF704F932D72F7216B5698E3291C95BB1F89A6721D5E1B1E1CC366284AD973B9107A998AD12C42A5607108189E1B01EC691CD7E5D3146733AA72C5537260582C54AECB01B394B32D331CE3CCBBD56B25F6CE192F5063B1C165CC7505D49DD62A875DE97443E651BD7A5AE72A9289DD2D872AEC1F55C2FB5D394C0556ACD6B382A7639664273324A3724B823B9D4AD9E0A206245501992C84079518CB1288180433DE8461866996A52BBE629C609BB44A1F548B95EB0A0409C50395B06478233359144F72754C53E1B2B45280E9ED84C139E0A314595DBB9CDA11F9F6386C082978047B43645414BC55BFE6767FFFDA0008010103013F216CEF4025094105BF14A99DCB29045620AA32CD69F2CC0C9C3980A8078F788D51867D4315C30ABF35FA9F5BDAF88F10C2B2B003EB29EBEDD1FA8790846C0C363FF23A254DC3A06630D64532ED2B2B6B7EE2586DE7DF29750D8438D1F9CDC30AECEEBB5FFB118E64A67E6A26D6D07D5364775E37D254C8548E11405FAEA5AAD19E27FB3414D602F144A21D34AB264CC3082B1DF100AE7B79264A052BC4132FC678986D6D7D657780D5F7771E34E9FC8A7DA57D0596D221541BB4B20E397941031D20302B24AE14603C3F3598D9ED8539BAECCB456B2DA8F0ED2A3F78709B87A5585F780313B912971196B77DE30777D84AB79CBED5FB2627BA4F779974F14412583F308554CBA420222022391989C73FEE57D88E70E441130D0F14C46760FC1169B0639E8CE784981356CB10FED3B95B1AF95A0C0DD7B586206054BC8C54C6A3E92E5F40A2AB7DA706A39CEA925DFBA97F5ED0FF00143E05B16CC13B451DCDDCA17824CC03846FDA707591C3CA7B8E6A379CAF2FA7ED0A05C41B2E1CF5930E87982D724B4A615F77986DE67D549858B7241E70E6263A0885A8608EAD9F7089E99F74C474FC360E7E3B23B80071D98A7E1895583820F552B2C6AB27C0B2AD2D7B4A5CE74D58D55AF5716D1FB314C89EFA8BFC37F6D3074C50ED11918D088DE764A2483A76115E9A225CB7FC60A0C9B7D99B995CC4A5B278F52E7091B57E9758F694E777D1CB0879A44BD69E20E667D8C734EE241F4BFC435793EE600D3F2972F3DC22507B9742B922CFA8B828ADDF7ECA9641B11EF58473A8093767E989CD34C7782BF70C076AF530265C317EF476EF351D879E37ECC64267D9AB6A0CAA11AD07CC26D2BD28BE783EA0B1AC26F0D3FE113AA31695EC972BFD451BEF6AB58388035E0607FEB2867CCDC200EF1F16688A8CE4CE31294DEE7282CB19BCCA45D55BF86F111A50EC5E880EC98E925C289471E1FEC7D52DA3ED2A9D92D5D367C406417A9C0EE2E950F21A7EB2E9AF816D5BF697FBF211E68556A52257188AE03C5C200EECDC52AD6A2E2144BA06592DF6BE936C7D2A0F685696EFACCA913D1C843F4CB135CE4289A370DDDC232508F6962FEB2FF8C045F50685D935540F382B10AFF54C0F5339EE5488A9BBBC3A788A1F5D6C6125D1216F21ED431E190E6F731C8D93384B8B23BC492C712DBDA34DE66F9258E701F6584F984FC34BB1724F9C09AA60B8759650672065ED8249B558CC5202065A3EE09632D8175C4F784CC6731F1063009CB800992415EEBFCC60ECA1AA7CA9B528C95AC0F29769DEF1827A9548017E19E528B0198771B27237DA37196FB1655ED06397D66AF15E589DAD290D131952795E1F30830DE31E0CC33F1793F51825A7602F2C61CDAF6B2CEE698734A63A565984166B6BDA086D6A868B0A17332DA429C4ADF0253AA4B6D9D80F194AA785A7E66A64C25DFA47276E6C25B19DB5C7164033508CF5948F2C3DC7CCA6FD4D78E6C66701D86CF8217A18DC492ADE105894943866B7A7A45B861FAE2127FC882086FC29F8CC315F64A6633F055F77FE4CF032212D65392929A6E193AA48AB6CD44BD40454B8326714F91E884F39E9D2769802E4732C266CA2656555AEA5C6E9A43466730DC8F115B01D3C3A65C8605BF192127C13B30CE456AFA4C32B61A633F851AD03B337C077B3EF0CB97CF0C5505ED2A69DDCCCE8825B5783699D4B218BF13E70D981CFCCB14BD5E60BBAD8464A7982342FCCA3D2E7BAA1A474BC9E7E18A469EA67A810BF66946F3CC000E254E276A022CF9F04F2C4489B4C20A66398566614E7185711F57EB029ACC9AC1A866A3CFB970BF29832D37DA08FBDC3E605056FF110C951CB48E4958313F32F1783C4A6E5986E89EE38A8687DFF00011F92ED7E08B1327D89528280801B10F76E713878B1F5C4B1A270176D30C2BA65C182B983427BA7BC33308B46E0BDD2ADC44571438881F518A060D6A30B6BABED051EEA206F0C1ED6F94276A2858E90F980F4C84218324BA6B48E9DD62153572436EC9594F986B22955D818FF00697B8E6B29314258654971360EEC319BA84BDA6421F10454563092C0FB043D92C45DFEEE56ADE84277203396D5312C9ED2CC9B9BCE5C730B6F76EBDF332FDEA5ACDB1308EBA6EA7DEC0FA53802DA12E534CA780D4BA7088F1BFD2372B37FAE8E3D07DC13F7CFEEBB741BA3B8EBA79E8399F87F89F60CFBD4FECFBF47FFDA0008010203013F218B2E3067A1B8C46CCC54C2E971518994667C4A867106B12DEAC631AF4FFEE8F164B4532F2D2C4EF422D95333E90952A2E8D68420EAABD2A543A6314709632B350D40CBE911D41725E07504204A9504D91CDDA6D2E978A2C37380984FF1A4210E8CC1B9F5D05460F4AA2128B65E2FBC75FC5010207561C4AAD15C2A60315B5D2DEA5D784C7713AD5096422E523D1EC8732D54C79985A679AE5DAE250F12A9DC40834B44831810939B8629CF68A9BE95266A9CD2F2E038226108F945C6F5D0EFA6E2388D54C2A545F8961447D74AAC55F129313E8A6DD2E530B8BADB072A1B8AE59F0C442E2C44A6C983A1E78F41FE01C425752E289521F5932CC0D4261A65233E2E095065C4E8311A43A434881119929DE69F513996DCEE972E7C89BC4EB60E80E55CD4BE99930BAA7A53A5AAE95B612FF84742A025F58DB1DE231713B980A817D0E4D824B2510F5C4CB972FF008228CA9B8551CA45681B9B24437338743522743AA3A2D7A546A62B89758C6DB8920258332D1A17021E3D412952D4109960C1C70A8EE0B2D623C4447726A4B88871C835D0CE354741899C499482E66C4CB12E6012A634EA144830BCC151E609C934E8EE97D2624598F9477D3D08242FD6A53D47724C2529AC1899E2625B306690CB10B38D7417D6FF0004E6C51B84BE9D26BD19D67F5DE6DD63F85CC3A5AC36E9FFDA0008010303013F21A6107F004084DC352E234311DB4B9112FDF4E6E92B5E23D081D22FD343B7A8335F54A20BAC678A29EEC537322687409D7BE10C2D88B1FA4FF04D814E7EE58CE142799738908B6510CD22C92A8D930C7517A2E5C5151C8964D3A4704AC958996D2D641EDFC488C7A13357794FA4D50B1BEFA06A36A2567D40ABE9063D62FE019532B8823A8DA941D03DA55A99208A828E85F4C28C54D04AB7164FC51731513C134E504DB3BBCCF6915965CF24F69963A3B4C539301B5D1CF138210086EC41ACABD2642033E82E02BDCE71709F0F4235D1CE4C24808A065396139E85E3320B96A7CC7514F4859921B9A892AE3AC4722643920B7445095B536E95643D5C3A1D44CFF03AA50DF8ED05B8391B83588B9A94C402169995A60C1D026B4588E0B1957406270CD214AF10EF3D2AEA764AF4CC0ED163AD54AA658E277E64C46AC233633007D6548E9ED856698E0A2FA56AEA2C20C0D608F125BB209EFA0E810A09A417315A2D47CC361C090D7C4C0F68B324AF509E538C453860D83EB2EDBA3B47D65E5905132F05236A2E0EA59A99CCCCC11644B9A4A20D989F1D65C17D22D932D4D18A15D403152F0249DD312422E3A89191BE82274CF8C4E2165506229A946B6EFD01FCCB61E841288DCFF0C08DE0D91E239260CB984AE1D1091130CB0DC77688E822E99A11CA8311620E9D67C4C3299B02A1D094339FA0746B074631BA0E24D5E2462E4DE2E7A432A99C19CC1D1332202BF89AE25D83A3A5A75B379A43F9107F80C3A3BF57FFDA000C030100021103110000107C2EB2954834D3A1215E385E0D4FE6B5728AFF00C85C9C12AB29EDFA0EFA8B1E599834416C91A3D45713D599789725B83CE1E1889358543F63E44646AD67BFFDCBD0357B3193247A619DD8F23C1A8BB8A1E7EC57C192A0C4830C929A52B2FA1C68C0EA7433CA1D61BF6BEF39A4EA2118B8236953657933D44D4A2848F766FCC16DA83A2B3DC58700289C730CC6CFE79A463C26123F78AC49C726A931480C9C42A56A9D04D409FFDA0008010103013F105325462ADA948AC4B7B198EE5C00583B0B7983CBDCD390B9B60BC3FE43320A6C09F1080B92D84094D2E58B38DF35719F2E256336D5A2E415D82A2EE5D55EE1699C0A617E97DAC62718705E76C5F736192D726B5DA64DF46637E7222B48526EC5798BDB5629C0DD2A3D9C2E8ECF243D3354F84C47B8337089416BC446B506F278298F0329AE6D3839CBDA302AE09318A4A0F6BFA47059802FBCBC4466DA966BC86B2DE3E10B9889506028E0E1FF00D8E973C5ABDE1C4667514DDA32E74C6D45E1D8B5A19E7C472AD73A975B718E226092F22FB1B572E3C464156ACF28F23D12BA3284EAAA1C32A832A42AC21A72988E850146D93612E8B2C587642A205A6E3DF5F98946C2CD11D2DEBE9330EBCDB767BCDDA9F76985EF05DD7996E026A906AFA6763B4666C044F2B59FAC089316E0A6ECAFEF30456A14156790D32920355607B85DB100A30917406242A264D0F66079268FD86B1EE5BED452EB8159AE1A6524A899D8387C2FB4CBDBE634D638D2B1452C9D58E3C8C30BB1E606D4E2BD83CCB5D48CF96F3CD407B660ADD997E910102C1D90F45AFC11F6A8602F23DCAC7FCF280571DFE91118C1AD39F3F5948003B437CC2D3B1000A80A404A1AC71052A154CB95AA9A41C7B12D60F5D008C6B6224A30BF8129A659C0C359073BA7273EA1134D4283CF1DAA041B623BC047237C7E2240CAC1F87FD99D27EB40BFC5EE2EA415289293CE1C7303B6AD73E04F6542C0005050B56FB95A1B2A222A27B04BC399DC62A3A45554F2890CB39744513E622250110036D9A52F5B16628838140F1ED097181568CCBDB04690968357EAE213603CB2ACAB4A7DE3F5119052F00CDBF48420F1A5A0E55E6A199489344D65E09DF7517119306D1896256794A6C164EEB87ED0C818E3F331A601A8825CA92F51912DC4A7F49CAD67D48EC9C1EB9571791522F757DE0C081C0DFD20BF13046EEB37D98BA86198B656309308C80395755081FB42B08E526DEC81F994C2EB2D93DA7B338E61F50D80609A53063FD1335D05B625C590370855A0480346C9C51FF20647FB451103442B4E7D12A0EE80D2D634D4A58730033866AC8BA17E112923943ED5B9D8A06397B1FCCA4D065E104F632BD2D8B462ADFC7B968A1C82A6C546BC4CF1BB76269BC403914BA453E8F88C6300E315A3F2B345E3906B47DD5CCB0551440BBEAE98B8011680506DCE10CB2F761C0C3118B77EE338124077AD7D582C446EFBCAAAAF061ED164D10C86342C34A2B45083697004117A645E58BAECF883828323F282A3144E46CA09DE69A2B467D4075AC5ED61015F1507871071D5961F8661911BBA87D08E009A640C34555FFD4173989B2F382A1A66668D0800F764A22A086511E1B854AE89762B0F8DFA991ECADB0EF81B31AF11768785AE710549CA588691B1A2FB462AEC10FA395F1AE0DE411AEF2CD42DC294F4E5B9625FD1DD2125ED8A4A4624C6B13B49E222303CE04142EA9EEC663F4AD859CE7752B4582A0EF5C906D5859227A819E61D2253BABB1284BD7AA690AB21A43E278697E316E3B46E3240FB2F9F95EF09E10B6C3251DDD5C382B2C26D683C56D96EBA7D5E08324C540A5B1751FA5A2C84298E108AF144AC1057B6131162A3815165806880AA8556B17462C89CBAB42AAFB7CCAA0270A50D6CA26011D0557B8B931D2DDE779FCCB2C39686046CBDC628646FB2E22E06808C2521BBBB57E6128F7D5F66016AD3B6A1D37BE2C3AFD6AA3D09B44FB479CF7E603026F80398EE6C99E0B2C63018EFCC685056698786CD5553E60868EE755AAF43BE25060285204C6071490804474C95ED51236E2A1ABA421AA392AFDA52FF00D590CAB16164CE31970E48D7DA1BCA06FE603F8045C439ACC5471371F0FA145A04E619CD1A7C41E248760072F863B2201D8552AF8E26197FF30CDC96DE4C473860D89829D4A81A6D818BB392276F2AE554F854CF0CA22D6F06AAE0761E65393B8F52C05ED08480C1620073899804018179781CCCC120EF9FCC428E43101391E60689F32BFA9D1A6BEAC31B8BDA2FAE6BF98A3A61192CD55F170D74BBB1FC01B8ACA5E1DC0F642AC0D5F167095BB88D41CCD0E7C31AC554C3FF0063696FB2D3E18390B6BC1C2BACB6799FD9F611BC66380A80DCBDF8283DF102BA5778554596130EF15514F6D666D3B9DE180390252CC5420C1E896099BEDF314BB24B0BAAEE9DE66462AD9C76BF28C48D896269880C52B92B7FC40170852AD7BBC9302648AEA1780A8DE96832501F83D4B56A4366E2A94CC2F3EA1AE5A85F26DAFB4B73C819155D4B19202DBA01B7F107881FDAB5F56210C10FD09CC370A7B2BBF96A555496A11C732983ED4C4FA2E668CF322FD809705A102D6A8BFDD88A9E835DB28E5ED052A19523B80A4C3B9705456CE62838BE7968BF88C9A6A25A410A74CE0132989CAD0FB3334DE8AE68672A5F7C4B26DB03379EE7682B7A5648D060DBCB54C20C836390C7A945CC6B74BCAFFD8E90115159B0FD05891F0E79E0C425C244BA8913BAA7EA33D8CAECF934FCCAD6816EDE194A2FCA5F9E9B1C290196CC73455F02CA0772111042B47305A39C1C42B80AD145151D00CA7006597F116DE47DD370E9BF90ABECC2874C7E09761DE573086FEACA53884D557A6B350C8842CA6EFE92C29F6097FA97FD542F16A3171B20BA6EC14784E25C300C98EE3BD5EA28B6AD4C3BBE92B66A888FB1A995552D9677FBC2A0D586554A5BC91F6C64B4EC94D8EAA3A3B84B4F5095BC67376C68F13C7AB1D93C82C14AAD35014B430F2E5633162C17474463000428D2FDEB309049529A0B45E5802AAAADD8BCCADB07CF9C7F9183DB5C8F24A682D382738B8828EA1F267C244607C6C2BBB925B29556A8E47B309D882ED7B2659655DA8784995445504BD76831914D258D559101A5AC518F503C83E202BDA7154FB9089E208CF8796B7759D112330B5E4A73EA155B6156E5E2660B76B1B6F9B4F7119D36B1AF38EC788D80B78872C4294F351D501AF4F0D371E7B9C8C61C667341936E4688FD5BA7B154826275A01C3D9F0CA1223C407C8629FB4AFD666C0869195FA0CB584C9B370C0238991C55E605472143F7519DA841787813FC9DA1BDB06C0D01A08FC1463C09418015B8D3BC91CD30499D19CCAAA33A9BA387D2983B640724CC3A63B591DA97D1F588CC02AD1CD25456BE5EF149A8EC12BE2BB458CC2138A6566A79E189A7460C118055DC6A53F4260B1F7B89F51412CFC544A2DAB1682D199DF385F7533028DF93314E171762CCB5F30E11AD39CB5A9F7E34101F980BE0808801DC6088032D04EDBF518C9AA0ACD35B8ECC9D0E29D452EF6D300131255D352A03095EDC403B01E790FBC460091C2F7559970B669808C7137A6753996A55E2F10087151F58B8E5D7E232AD02EC347E20F6A2D3B43328C3C4392A6B6BE5781F227333100A2DD5F6FF004C666663D84A11A4DBF3B835D97676C102D6A639130AC976C11C478D15674C58B07C945948ED1559C44986B8DC0BB77252E952B2EAEA19BBACA65D5251D8A010E6B898037658D09C3E980415840DF371B35825ECDC3B36B5846A616461549F7AFC746FFD389A7DBF99FD9779AFF4E27F47DD3F3E7E07E19A3A3B308FBF21A4FEAF9CFEA7B3D25FD9F7747FFFDA0008010203013F10B2047A4C96CC30448B8EF1730807A47F24EE841330FD44A0ACB09C1EE1F58B08E968ED7F129676418B1451AC0102EBEB570CF7F4A8C6CF7180386A6F266163697C4389980CDA6103D5C0CC3F04CD8547833EBA28C2266A9B61A903C7CC00ADFF007717C4065DC21BF412E232B7242DE316EE1FAB1CAF8E8314CF2DB304CC0471E2600DCB1EB10A108E850A7262583C953121EF880F3B81172825CDC7383B5B957C362115A23EFD1E97D4B82620E25C93516BE5A872B3028E806CE806CD6D546DDAEBFBEE2D2ECC445FF18AA12A096A86D1948BE0884787BF0A31DE35AF95CAF94E7FBE229871C3336541C61D22A94A806E0BA88713383BCC6098B66255FDD89B0372E5EA1C872C655073B7CBFF003640F2D4729A0990058740A997A8AB389342C4F916C15E2FBC64F094DF9669442E8140E3F3068E933E1E6260E7F2FEE1A5DF4C77B857C23898082E84A989808030BB4988EFC4622B963CAE330E60834BCC11E92E6A5CCEE33AE5455152BF697BCD7E10C7305C4B27C72E62E618A8100D245F30D5799574C31ABDFEE97996B8DCBA8787B87894A2A921EDC32A1EA1CC197C75D0CB047D38937AF3077A34C4BADEE2B22FBA5123570171D4A0B8F1A65759995F7BFBA64E8AA32A65E625CD08B20CB2645E63074F118628FC913E514284E244790EE1BF754A51C20AE82A04001E20D5906428CCA61C6505F02C16AF7A256F0E7FE41B13809998D4B063302EE021DA072515F8856E3773745E81750E2189EEE090EC2146E133F82A26020D45B8A9630AA260B1214A0DC5098475014C353639596C9A60E8CE646AAE64DE602B56C5EA6BD04976C2C9FF0092CA7C63521CD7C79812A4DA4AB03DD41D70DC6A9DD8753848C53D0629012ECB3B9A47F14EC951CADA3D7BFF0026AD8187CC0969DA1E18311C389B020E87710D350EA73F686F9868A4ACC260C086F1111A25939D76C1392520F331A9302933CB1DA0DAB445FB1029198EED12B18E733853291D41CF169884DE9ED0DC951354363C13630CAED710EACDC4B171028830B981DC3BC16031E6496352B4A582589586A05116611961A2DCC0AFA5CC258AA210BDA38BEF32D3C45CDA21F514E22CBB99C036CBEE191EE0D0688EB6602207DD426012E04B01E222A595A771C09A8E2A4A27B9AA8E153286E2CC16C4D2CA5B72A63B880E48D5BE62BED332944FEAB73F04F54373DD37FCFB9C751AB7F134E671DCDA6D19A436FE9FFB396FFBFA9FD49ABFA7C789F77CFEBC477CCFFFDA0008010303013F101A3F42D84666506F7986882C8B1B022A1A54B8388015707DE297F68A200D4B628668F67799536D410209630F98FE845867E97FB88CBEA5F4C1AA9973059DA15D0C519713D04B1913DC2417DD62C6C44F0E2014ECCCD01C414D84C4007418EB7EBB7B8C6F31AB98019953D05916F110B1806B0829D6184138231ECC637D3B50051A262794FECB72C5733B6100236A3AE928C0A28D9100D85C490E1D4A1383C456B12C6672358F00D13C6199E70CA0622C4543D4D2074576E854AD39847993F51CE200B1D100C65681401A11076199D34E4FF2257469D6547ACC2F989C53BF5B822541569AFD40552DC92E1E1341B497AD3147BFFB2BA2AB8ED2927846C5B82659311A2E1D631025E10AB3308A2D11848A75D434AD3C66580F067DCA18EACE0B8417CDEA04636C71FF001985E96E60416D94F6410984362185C630D8860886A144D751C55BF13472589C9A99D5AA8D6E0F6483939DFA6366DA43CDC1146BCF12C2BB85DC1AB660602B9ACCB5A9E6632783FC975A3652BED4D5EE5E5C0778310DF310133B3EF1C61999781ED0F860B600A350049A4FBC3E8B19F92064DA94D351F4F8B2D46EC56165DE1A128DC67573336FACA382392733397B3B42A9883A04A8C421EF2CAE5A7B302EDFDE2068B4CC043B304B894C6B863CA50A0AE856C193B47DF9B5197752EF47645C9CC35A8B6A838E4A800CEE375DCFCF3FC03CF0FCB2B8D89977C457994CA93E25A9B9CC4E1025CFED294E0431B20A5A59F29E28996E44B831D4B26D732CC9CC32504B5E2500D483964A597636D131CDA5C12B30CB918AAD732D43642351C7BA298BB600178A9A6710F515B70267AE980B079C4170D9F586B05ED116A9ED0B633B7FD8CAB51D8FFD99304152266CCEDD2561C89B99102C9AC687E6643BE8100C2867C261208A2AF2666800F72D815F3FA9BA78AEE7D76824B6C0BF998D344C66D2842590979AB77E20866696598520520AC84B3C443E0C20989520A867298617CA69E8ED2AB10F03366BA2C500BEF02A297B7882D5EAE364EC80649AB6232A1D2EEA39DC47FC768361804C4482452309516EF8995C3807B224AC27611326E0F6AAA2D04114BDCCD72A085FE218A6E21B88ACC41E3282CBCC452D5426F6E0EF12CE1114F9FB4702A1D0A83BCD44C44C5620171500A05B3CEA66E609AE95DA391861B99945896218FCCAD0F78765280085EA640712B4ED15B5001DB1D838E605528A8D937FF62B7C4174F45A1D142A5752E95DA3DEDADC37193999F102CCA457B441B846C332D6189A8C1736A35FE88309B5C5875D2350E48D690B2632A6A56D5363F12A6ECDBA9E9D4D89ABBD7C4D9D3F19A741362684D6699B7DC35F709FFFD900','Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.',5 +,'http://accweb/emmployees/davolio.bmp','2333.33'); + +# ---------------------------------------------------------------------- # +# Add info into "EmployeeTerritories" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE EmployeeTerritories; +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(1, '06897'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(1, '19713'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '01581'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '01730'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '01833'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '02116'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '02139'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '02184'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(2, '40222'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(3, '30346'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(3, '31406'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(3, '32859'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(3, '33607'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(4, '20852'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(4, '27403'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(4, '27511'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '02903'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '07960'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '08837'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '10019'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '10038'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '11747'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(5, '14450'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(6, '85014'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(6, '85251'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(6, '98004'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(6, '98052'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(6, '98104'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '60179'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '60601'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '80202'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '80909'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '90405'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '94025'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '94105'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '95008'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '95054'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(7, '95060'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(8, '19428'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(8, '44122'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(8, '45839'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(8, '53404'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '03049'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '03801'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '48075'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '48084'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '48304'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '55113'); +INSERT INTO EmployeeTerritories (EmployeeID, TerritoryID) +VALUES(9, '55439'); + +# ---------------------------------------------------------------------- # +# Add info into "Orders" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Orders; +INSERT INTO Orders Values ('10248','VINET',5,'1996-07-04 00:00:00.000','1996-08-01 00:00:00.000','1996-07-16 00:00:00.000',3,32.38,'Vins et alcools Chevalier','59 rue de l-Abbaye','Reims',NULL,'51100','France'); +INSERT INTO Orders Values ('10249','TOMSP',6,'1996-07-05 00:00:00.000','1996-08-16 00:00:00.000','1996-07-10 00:00:00.000',1,11.61,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10250','HANAR',4,'1996-07-08 00:00:00.000','1996-08-05 00:00:00.000','1996-07-12 00:00:00.000',2,65.83,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10251','VICTE',3,'1996-07-08 00:00:00.000','1996-08-05 00:00:00.000','1996-07-15 00:00:00.000',1,41.34,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10252','SUPRD',4,'1996-07-09 00:00:00.000','1996-08-06 00:00:00.000','1996-07-11 00:00:00.000',2,51.3,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10253','HANAR',3,'1996-07-10 00:00:00.000','1996-07-24 00:00:00.000','1996-07-16 00:00:00.000',2,58.17,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10254','CHOPS',5,'1996-07-11 00:00:00.000','1996-08-08 00:00:00.000','1996-07-23 00:00:00.000',2,22.98,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10255','RICSU',9,'1996-07-12 00:00:00.000','1996-08-09 00:00:00.000','1996-07-15 00:00:00.000',3,148.33,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10256','WELLI',3,'1996-07-15 00:00:00.000','1996-08-12 00:00:00.000','1996-07-17 00:00:00.000',2,13.97,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10257','HILAA',4,'1996-07-16 00:00:00.000','1996-08-13 00:00:00.000','1996-07-22 00:00:00.000',3,81.91,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10258','ERNSH',1,'1996-07-17 00:00:00.000','1996-08-14 00:00:00.000','1996-07-23 00:00:00.000',1,140.51,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10259','CENTC',4,'1996-07-18 00:00:00.000','1996-08-15 00:00:00.000','1996-07-25 00:00:00.000',3,3.25,'Centro comercial Moctezuma','Sierras de Granada 9993','Mxico D.F.',NULL,'5022','Mexico'); +INSERT INTO Orders Values ('10260','OTTIK',4,'1996-07-19 00:00:00.000','1996-08-16 00:00:00.000','1996-07-29 00:00:00.000',1,55.09,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10261','QUEDE',4,'1996-07-19 00:00:00.000','1996-08-16 00:00:00.000','1996-07-30 00:00:00.000',2,3.05,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10262','RATTC',8,'1996-07-22 00:00:00.000','1996-08-19 00:00:00.000','1996-07-25 00:00:00.000',3,48.29,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10263','ERNSH',9,'1996-07-23 00:00:00.000','1996-08-20 00:00:00.000','1996-07-31 00:00:00.000',3,146.06,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10264','FOLKO',6,'1996-07-24 00:00:00.000','1996-08-21 00:00:00.000','1996-08-23 00:00:00.000',3,3.67,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10265','BLONP',2,'1996-07-25 00:00:00.000','1996-08-22 00:00:00.000','1996-08-12 00:00:00.000',1,55.28,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10266','WARTH',3,'1996-07-26 00:00:00.000','1996-09-06 00:00:00.000','1996-07-31 00:00:00.000',3,25.73,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10267','FRANK',4,'1996-07-29 00:00:00.000','1996-08-26 00:00:00.000','1996-08-06 00:00:00.000',1,208.58,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10268','GROSR',8,'1996-07-30 00:00:00.000','1996-08-27 00:00:00.000','1996-08-02 00:00:00.000',3,66.29,'GROSELLA-Restaurante','5 Ave. Los Palos Grandes','Caracas','DF','1081','Venezuela'); +INSERT INTO Orders Values ('10269','WHITC',5,'1996-07-31 00:00:00.000','1996-08-14 00:00:00.000','1996-08-09 00:00:00.000',1,4.56,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10270','WARTH',1,'1996-08-01 00:00:00.000','1996-08-29 00:00:00.000','1996-08-02 00:00:00.000',1,136.54,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10271','SPLIR',6,'1996-08-01 00:00:00.000','1996-08-29 00:00:00.000','1996-08-30 00:00:00.000',2,4.54,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10272','RATTC',6,'1996-08-02 00:00:00.000','1996-08-30 00:00:00.000','1996-08-06 00:00:00.000',2,98.03,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10273','QUICK',3,'1996-08-05 00:00:00.000','1996-09-02 00:00:00.000','1996-08-12 00:00:00.000',3,76.07,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10274','VINET',6,'1996-08-06 00:00:00.000','1996-09-03 00:00:00.000','1996-08-16 00:00:00.000',1,6.01,'Vins et alcools Chevalier','59 rue de l-Abbaye','Reims',NULL,'51100','France'); +INSERT INTO Orders Values ('10275','MAGAA',1,'1996-08-07 00:00:00.000','1996-09-04 00:00:00.000','1996-08-09 00:00:00.000',1,26.93,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10276','TORTU',8,'1996-08-08 00:00:00.000','1996-08-22 00:00:00.000','1996-08-14 00:00:00.000',3,13.84,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10277','MORGK',2,'1996-08-09 00:00:00.000','1996-09-06 00:00:00.000','1996-08-13 00:00:00.000',3,125.77,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'4179','Germany'); +INSERT INTO Orders Values ('10278','BERGS',8,'1996-08-12 00:00:00.000','1996-09-09 00:00:00.000','1996-08-16 00:00:00.000',2,92.69,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10279','LEHMS',8,'1996-08-13 00:00:00.000','1996-09-10 00:00:00.000','1996-08-16 00:00:00.000',2,25.83,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10280','BERGS',2,'1996-08-14 00:00:00.000','1996-09-11 00:00:00.000','1996-09-12 00:00:00.000',1,8.98,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10281','ROMEY',4,'1996-08-14 00:00:00.000','1996-08-28 00:00:00.000','1996-08-21 00:00:00.000',1,2.94,'Romero y tomillo','Gran Va, 1','Madrid',NULL,'28001','Spain'); +INSERT INTO Orders Values ('10282','ROMEY',4,'1996-08-15 00:00:00.000','1996-09-12 00:00:00.000','1996-08-21 00:00:00.000',1,12.69,'Romero y tomillo','Gran Va, 1','Madrid',NULL,'28001','Spain'); +INSERT INTO Orders Values ('10283','LILAS',3,'1996-08-16 00:00:00.000','1996-09-13 00:00:00.000','1996-08-23 00:00:00.000',3,84.81,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10284','LEHMS',4,'1996-08-19 00:00:00.000','1996-09-16 00:00:00.000','1996-08-27 00:00:00.000',1,76.56,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10285','QUICK',1,'1996-08-20 00:00:00.000','1996-09-17 00:00:00.000','1996-08-26 00:00:00.000',2,76.83,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10286','QUICK',8,'1996-08-21 00:00:00.000','1996-09-18 00:00:00.000','1996-08-30 00:00:00.000',3,229.24,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10287','RICAR',8,'1996-08-22 00:00:00.000','1996-09-19 00:00:00.000','1996-08-28 00:00:00.000',3,12.76,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10288','REGGC',4,'1996-08-23 00:00:00.000','1996-09-20 00:00:00.000','1996-09-03 00:00:00.000',1,7.45,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10289','BSBEV',7,'1996-08-26 00:00:00.000','1996-09-23 00:00:00.000','1996-08-28 00:00:00.000',3,22.77,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10290','COMMI',8,'1996-08-27 00:00:00.000','1996-09-24 00:00:00.000','1996-09-03 00:00:00.000',1,79.7,'Comrcio Mineiro','Av. dos Lusadas, 23','Sao Paulo','SP','05432-043','Brazil'); +INSERT INTO Orders Values ('10291','QUEDE',6,'1996-08-27 00:00:00.000','1996-09-24 00:00:00.000','1996-09-04 00:00:00.000',2,6.4,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10292','TRADH',1,'1996-08-28 00:00:00.000','1996-09-25 00:00:00.000','1996-09-02 00:00:00.000',2,1.35,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10293','TORTU',1,'1996-08-29 00:00:00.000','1996-09-26 00:00:00.000','1996-09-11 00:00:00.000',3,21.18,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10294','RATTC',4,'1996-08-30 00:00:00.000','1996-09-27 00:00:00.000','1996-09-05 00:00:00.000',2,147.26,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10295','VINET',2,'1996-09-02 00:00:00.000','1996-09-30 00:00:00.000','1996-09-10 00:00:00.000',2,1.15,'Vins et alcools Chevalier','59 rue de l-Abbaye','Reims',NULL,'51100','France'); +INSERT INTO Orders Values ('10296','LILAS',6,'1996-09-03 00:00:00.000','1996-10-01 00:00:00.000','1996-09-11 00:00:00.000',1,0.12,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10297','BLONP',5,'1996-09-04 00:00:00.000','1996-10-16 00:00:00.000','1996-09-10 00:00:00.000',2,5.74,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10298','HUNGO',6,'1996-09-05 00:00:00.000','1996-10-03 00:00:00.000','1996-09-11 00:00:00.000',2,168.22,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10299','RICAR',4,'1996-09-06 00:00:00.000','1996-10-04 00:00:00.000','1996-09-13 00:00:00.000',2,29.76,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10300','MAGAA',2,'1996-09-09 00:00:00.000','1996-10-07 00:00:00.000','1996-09-18 00:00:00.000',2,17.68,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10301','WANDK',8,'1996-09-09 00:00:00.000','1996-10-07 00:00:00.000','1996-09-17 00:00:00.000',2,45.08,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10302','SUPRD',4,'1996-09-10 00:00:00.000','1996-10-08 00:00:00.000','1996-10-09 00:00:00.000',2,6.27,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10303','GODOS',7,'1996-09-11 00:00:00.000','1996-10-09 00:00:00.000','1996-09-18 00:00:00.000',2,107.83,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10304','TORTU',1,'1996-09-12 00:00:00.000','1996-10-10 00:00:00.000','1996-09-17 00:00:00.000',2,63.79,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10305','OLDWO',8,'1996-09-13 00:00:00.000','1996-10-11 00:00:00.000','1996-10-09 00:00:00.000',3,257.62,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10306','ROMEY',1,'1996-09-16 00:00:00.000','1996-10-14 00:00:00.000','1996-09-23 00:00:00.000',3,7.56,'Romero y tomillo','Gran Va, 1','Madrid',NULL,'28001','Spain'); +INSERT INTO Orders Values ('10307','LONEP',2,'1996-09-17 00:00:00.000','1996-10-15 00:00:00.000','1996-09-25 00:00:00.000',2,0.56,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10308','ANATR',7,'1996-09-18 00:00:00.000','1996-10-16 00:00:00.000','1996-09-24 00:00:00.000',3,1.61,'Ana Trujillo Emparedados y helados','Avda. de la Constitucin 2222','Mxico D.F.',NULL,'5021','Mexico'); +INSERT INTO Orders Values ('10309','HUNGO',3,'1996-09-19 00:00:00.000','1996-10-17 00:00:00.000','1996-10-23 00:00:00.000',1,47.3,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10310','THEBI',8,'1996-09-20 00:00:00.000','1996-10-18 00:00:00.000','1996-09-27 00:00:00.000',2,17.52,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA'); +INSERT INTO Orders Values ('10311','DUMON',1,'1996-09-20 00:00:00.000','1996-10-04 00:00:00.000','1996-09-26 00:00:00.000',3,24.69,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10312','WANDK',2,'1996-09-23 00:00:00.000','1996-10-21 00:00:00.000','1996-10-03 00:00:00.000',2,40.26,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10313','QUICK',2,'1996-09-24 00:00:00.000','1996-10-22 00:00:00.000','1996-10-04 00:00:00.000',2,1.96,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10314','RATTC',1,'1996-09-25 00:00:00.000','1996-10-23 00:00:00.000','1996-10-04 00:00:00.000',2,74.16,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10315','ISLAT',4,'1996-09-26 00:00:00.000','1996-10-24 00:00:00.000','1996-10-03 00:00:00.000',2,41.76,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10316','RATTC',1,'1996-09-27 00:00:00.000','1996-10-25 00:00:00.000','1996-10-08 00:00:00.000',3,150.15,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10317','LONEP',6,'1996-09-30 00:00:00.000','1996-10-28 00:00:00.000','1996-10-10 00:00:00.000',1,12.69,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10318','ISLAT',8,'1996-10-01 00:00:00.000','1996-10-29 00:00:00.000','1996-10-04 00:00:00.000',2,4.73,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10319','TORTU',7,'1996-10-02 00:00:00.000','1996-10-30 00:00:00.000','1996-10-11 00:00:00.000',3,64.5,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10320','WARTH',5,'1996-10-03 00:00:00.000','1996-10-17 00:00:00.000','1996-10-18 00:00:00.000',3,34.57,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10321','ISLAT',3,'1996-10-03 00:00:00.000','1996-10-31 00:00:00.000','1996-10-11 00:00:00.000',2,3.43,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10322','PERIC',7,'1996-10-04 00:00:00.000','1996-11-01 00:00:00.000','1996-10-23 00:00:00.000',3,0.4,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10323','KOENE',4,'1996-10-07 00:00:00.000','1996-11-04 00:00:00.000','1996-10-14 00:00:00.000',1,4.88,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10324','SAVEA',9,'1996-10-08 00:00:00.000','1996-11-05 00:00:00.000','1996-10-10 00:00:00.000',1,214.27,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10325','KOENE',1,'1996-10-09 00:00:00.000','1996-10-23 00:00:00.000','1996-10-14 00:00:00.000',3,64.86,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10326','BOLID',4,'1996-10-10 00:00:00.000','1996-11-07 00:00:00.000','1996-10-14 00:00:00.000',2,77.92,'Blido Comidas preparadas','C/ Araquil, 67','Madrid',NULL,'28023','Spain'); +INSERT INTO Orders Values ('10327','FOLKO',2,'1996-10-11 00:00:00.000','1996-11-08 00:00:00.000','1996-10-14 00:00:00.000',1,63.36,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10328','FURIB',4,'1996-10-14 00:00:00.000','1996-11-11 00:00:00.000','1996-10-17 00:00:00.000',3,87.03,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10329','SPLIR',4,'1996-10-15 00:00:00.000','1996-11-26 00:00:00.000','1996-10-23 00:00:00.000',2,191.67,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10330','LILAS',3,'1996-10-16 00:00:00.000','1996-11-13 00:00:00.000','1996-10-28 00:00:00.000',1,12.75,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10331','BONAP',9,'1996-10-16 00:00:00.000','1996-11-27 00:00:00.000','1996-10-21 00:00:00.000',1,10.19,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10332','MEREP',3,'1996-10-17 00:00:00.000','1996-11-28 00:00:00.000','1996-10-21 00:00:00.000',2,52.84,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10333','WARTH',5,'1996-10-18 00:00:00.000','1996-11-15 00:00:00.000','1996-10-25 00:00:00.000',3,0.59,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10334','VICTE',8,'1996-10-21 00:00:00.000','1996-11-18 00:00:00.000','1996-10-28 00:00:00.000',2,8.56,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10335','HUNGO',7,'1996-10-22 00:00:00.000','1996-11-19 00:00:00.000','1996-10-24 00:00:00.000',2,42.11,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10336','PRINI',7,'1996-10-23 00:00:00.000','1996-11-20 00:00:00.000','1996-10-25 00:00:00.000',2,15.51,'Princesa Isabel Vinhos','Estrada da sade n. 58','Lisboa',NULL,'1756','Portugal'); +INSERT INTO Orders Values ('10337','FRANK',4,'1996-10-24 00:00:00.000','1996-11-21 00:00:00.000','1996-10-29 00:00:00.000',3,108.26,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10338','OLDWO',4,'1996-10-25 00:00:00.000','1996-11-22 00:00:00.000','1996-10-29 00:00:00.000',3,84.21,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10339','MEREP',2,'1996-10-28 00:00:00.000','1996-11-25 00:00:00.000','1996-11-04 00:00:00.000',2,15.66,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10340','BONAP',1,'1996-10-29 00:00:00.000','1996-11-26 00:00:00.000','1996-11-08 00:00:00.000',3,166.31,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10341','SIMOB',7,'1996-10-29 00:00:00.000','1996-11-26 00:00:00.000','1996-11-05 00:00:00.000',3,26.78,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10342','FRANK',4,'1996-10-30 00:00:00.000','1996-11-13 00:00:00.000','1996-11-04 00:00:00.000',2,54.83,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10343','LEHMS',4,'1996-10-31 00:00:00.000','1996-11-28 00:00:00.000','1996-11-06 00:00:00.000',1,110.37,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10344','WHITC',4,'1996-11-01 00:00:00.000','1996-11-29 00:00:00.000','1996-11-05 00:00:00.000',2,23.29,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10345','QUICK',2,'1996-11-04 00:00:00.000','1996-12-02 00:00:00.000','1996-11-11 00:00:00.000',2,249.06,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10346','RATTC',3,'1996-11-05 00:00:00.000','1996-12-17 00:00:00.000','1996-11-08 00:00:00.000',3,142.08,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10347','FAMIA',4,'1996-11-06 00:00:00.000','1996-12-04 00:00:00.000','1996-11-08 00:00:00.000',3,3.1,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10348','WANDK',4,'1996-11-07 00:00:00.000','1996-12-05 00:00:00.000','1996-11-15 00:00:00.000',2,0.78,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10349','SPLIR',7,'1996-11-08 00:00:00.000','1996-12-06 00:00:00.000','1996-11-15 00:00:00.000',1,8.63,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10350','LAMAI',6,'1996-11-11 00:00:00.000','1996-12-09 00:00:00.000','1996-12-03 00:00:00.000',2,64.19,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10351','ERNSH',1,'1996-11-11 00:00:00.000','1996-12-09 00:00:00.000','1996-11-20 00:00:00.000',1,162.33,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10352','FURIB',3,'1996-11-12 00:00:00.000','1996-11-26 00:00:00.000','1996-11-18 00:00:00.000',3,1.3,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10353','PICCO',7,'1996-11-13 00:00:00.000','1996-12-11 00:00:00.000','1996-11-25 00:00:00.000',3,360.63,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10354','PERIC',8,'1996-11-14 00:00:00.000','1996-12-12 00:00:00.000','1996-11-20 00:00:00.000',3,53.8,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10355','AROUT',6,'1996-11-15 00:00:00.000','1996-12-13 00:00:00.000','1996-11-20 00:00:00.000',1,41.95,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10356','WANDK',6,'1996-11-18 00:00:00.000','1996-12-16 00:00:00.000','1996-11-27 00:00:00.000',2,36.71,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10357','LILAS',1,'1996-11-19 00:00:00.000','1996-12-17 00:00:00.000','1996-12-02 00:00:00.000',3,34.88,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10358','LAMAI',5,'1996-11-20 00:00:00.000','1996-12-18 00:00:00.000','1996-11-27 00:00:00.000',1,19.64,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10359','SEVES',5,'1996-11-21 00:00:00.000','1996-12-19 00:00:00.000','1996-11-26 00:00:00.000',3,288.43,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10360','BLONP',4,'1996-11-22 00:00:00.000','1996-12-20 00:00:00.000','1996-12-02 00:00:00.000',3,131.7,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10361','QUICK',1,'1996-11-22 00:00:00.000','1996-12-20 00:00:00.000','1996-12-03 00:00:00.000',2,183.17,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10362','BONAP',3,'1996-11-25 00:00:00.000','1996-12-23 00:00:00.000','1996-11-28 00:00:00.000',1,96.04,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10363','DRACD',4,'1996-11-26 00:00:00.000','1996-12-24 00:00:00.000','1996-12-04 00:00:00.000',3,30.54,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('10364','EASTC',1,'1996-11-26 00:00:00.000','1997-01-07 00:00:00.000','1996-12-04 00:00:00.000',1,71.97,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('10365','ANTON',3,'1996-11-27 00:00:00.000','1996-12-25 00:00:00.000','1996-12-02 00:00:00.000',2,22,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10366','GALED',8,'1996-11-28 00:00:00.000','1997-01-09 00:00:00.000','1996-12-30 00:00:00.000',2,10.14,'Galera del gastronmo','Rambla de Catalua, 23','Barcelona',NULL,'8022','Spain'); +INSERT INTO Orders Values ('10367','VAFFE',7,'1996-11-28 00:00:00.000','1996-12-26 00:00:00.000','1996-12-02 00:00:00.000',3,13.55,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10368','ERNSH',2,'1996-11-29 00:00:00.000','1996-12-27 00:00:00.000','1996-12-02 00:00:00.000',2,101.95,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10369','SPLIR',8,'1996-12-02 00:00:00.000','1996-12-30 00:00:00.000','1996-12-09 00:00:00.000',2,195.68,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10370','CHOPS',6,'1996-12-03 00:00:00.000','1996-12-31 00:00:00.000','1996-12-27 00:00:00.000',2,1.17,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10371','LAMAI',1,'1996-12-03 00:00:00.000','1996-12-31 00:00:00.000','1996-12-24 00:00:00.000',1,0.45,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10372','QUEEN',5,'1996-12-04 00:00:00.000','1997-01-01 00:00:00.000','1996-12-09 00:00:00.000',2,890.78,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10373','HUNGO',4,'1996-12-05 00:00:00.000','1997-01-02 00:00:00.000','1996-12-11 00:00:00.000',3,124.12,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10374','WOLZA',1,'1996-12-05 00:00:00.000','1997-01-02 00:00:00.000','1996-12-09 00:00:00.000',3,3.94,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10375','HUNGC',3,'1996-12-06 00:00:00.000','1997-01-03 00:00:00.000','1996-12-09 00:00:00.000',2,20.12,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA'); +INSERT INTO Orders Values ('10376','MEREP',1,'1996-12-09 00:00:00.000','1997-01-06 00:00:00.000','1996-12-13 00:00:00.000',2,20.39,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10377','SEVES',1,'1996-12-09 00:00:00.000','1997-01-06 00:00:00.000','1996-12-13 00:00:00.000',3,22.21,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10378','FOLKO',5,'1996-12-10 00:00:00.000','1997-01-07 00:00:00.000','1996-12-19 00:00:00.000',3,5.44,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10379','QUEDE',2,'1996-12-11 00:00:00.000','1997-01-08 00:00:00.000','1996-12-13 00:00:00.000',1,45.03,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10380','HUNGO',8,'1996-12-12 00:00:00.000','1997-01-09 00:00:00.000','1997-01-16 00:00:00.000',3,35.03,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10381','LILAS',3,'1996-12-12 00:00:00.000','1997-01-09 00:00:00.000','1996-12-13 00:00:00.000',3,7.99,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10382','ERNSH',4,'1996-12-13 00:00:00.000','1997-01-10 00:00:00.000','1996-12-16 00:00:00.000',1,94.77,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10383','AROUT',8,'1996-12-16 00:00:00.000','1997-01-13 00:00:00.000','1996-12-18 00:00:00.000',3,34.24,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10384','BERGS',3,'1996-12-16 00:00:00.000','1997-01-13 00:00:00.000','1996-12-20 00:00:00.000',3,168.64,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10385','SPLIR',1,'1996-12-17 00:00:00.000','1997-01-14 00:00:00.000','1996-12-23 00:00:00.000',2,30.96,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10386','FAMIA',9,'1996-12-18 00:00:00.000','1997-01-01 00:00:00.000','1996-12-25 00:00:00.000',3,13.99,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10387','SANTG',1,'1996-12-18 00:00:00.000','1997-01-15 00:00:00.000','1996-12-20 00:00:00.000',2,93.63,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('10388','SEVES',2,'1996-12-19 00:00:00.000','1997-01-16 00:00:00.000','1996-12-20 00:00:00.000',1,34.86,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10389','BOTTM',4,'1996-12-20 00:00:00.000','1997-01-17 00:00:00.000','1996-12-24 00:00:00.000',2,47.42,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10390','ERNSH',6,'1996-12-23 00:00:00.000','1997-01-20 00:00:00.000','1996-12-26 00:00:00.000',1,126.38,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10391','DRACD',3,'1996-12-23 00:00:00.000','1997-01-20 00:00:00.000','1996-12-31 00:00:00.000',3,5.45,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('10392','PICCO',2,'1996-12-24 00:00:00.000','1997-01-21 00:00:00.000','1997-01-01 00:00:00.000',3,122.46,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10393','SAVEA',1,'1996-12-25 00:00:00.000','1997-01-22 00:00:00.000','1997-01-03 00:00:00.000',3,126.56,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10394','HUNGC',1,'1996-12-25 00:00:00.000','1997-01-22 00:00:00.000','1997-01-03 00:00:00.000',3,30.34,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA'); +INSERT INTO Orders Values ('10395','HILAA',6,'1996-12-26 00:00:00.000','1997-01-23 00:00:00.000','1997-01-03 00:00:00.000',1,184.41,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10396','FRANK',1,'1996-12-27 00:00:00.000','1997-01-10 00:00:00.000','1997-01-06 00:00:00.000',3,135.35,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10397','PRINI',5,'1996-12-27 00:00:00.000','1997-01-24 00:00:00.000','1997-01-02 00:00:00.000',1,60.26,'Princesa Isabel Vinhos','Estrada da sade n. 58','Lisboa',NULL,'1756','Portugal'); +INSERT INTO Orders Values ('10398','SAVEA',2,'1996-12-30 00:00:00.000','1997-01-27 00:00:00.000','1997-01-09 00:00:00.000',3,89.16,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10399','VAFFE',8,'1996-12-31 00:00:00.000','1997-01-14 00:00:00.000','1997-01-08 00:00:00.000',3,27.36,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10400','EASTC',1,'1997-01-01 00:00:00.000','1997-01-29 00:00:00.000','1997-01-16 00:00:00.000',3,83.93,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('10401','RATTC',1,'1997-01-01 00:00:00.000','1997-01-29 00:00:00.000','1997-01-10 00:00:00.000',1,12.51,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10402','ERNSH',8,'1997-01-02 00:00:00.000','1997-02-13 00:00:00.000','1997-01-10 00:00:00.000',2,67.88,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10403','ERNSH',4,'1997-01-03 00:00:00.000','1997-01-31 00:00:00.000','1997-01-09 00:00:00.000',3,73.79,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10404','MAGAA',2,'1997-01-03 00:00:00.000','1997-01-31 00:00:00.000','1997-01-08 00:00:00.000',1,155.97,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10405','LINOD',1,'1997-01-06 00:00:00.000','1997-02-03 00:00:00.000','1997-01-22 00:00:00.000',1,34.82,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10406','QUEEN',7,'1997-01-07 00:00:00.000','1997-02-18 00:00:00.000','1997-01-13 00:00:00.000',1,108.04,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10407','OTTIK',2,'1997-01-07 00:00:00.000','1997-02-04 00:00:00.000','1997-01-30 00:00:00.000',2,91.48,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10408','FOLIG',8,'1997-01-08 00:00:00.000','1997-02-05 00:00:00.000','1997-01-14 00:00:00.000',1,11.26,'Folies gourmandes','184, chausse de Tournai','Lille',NULL,'59000','France'); +INSERT INTO Orders Values ('10409','OCEAN',3,'1997-01-09 00:00:00.000','1997-02-06 00:00:00.000','1997-01-14 00:00:00.000',1,29.83,'Ocano Atlntico Ltda.','Ing. Gustavo Moncada 8585 Piso 20-A','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10410','BOTTM',3,'1997-01-10 00:00:00.000','1997-02-07 00:00:00.000','1997-01-15 00:00:00.000',3,2.4,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10411','BOTTM',9,'1997-01-10 00:00:00.000','1997-02-07 00:00:00.000','1997-01-21 00:00:00.000',3,23.65,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10412','WARTH',8,'1997-01-13 00:00:00.000','1997-02-10 00:00:00.000','1997-01-15 00:00:00.000',2,3.77,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10413','LAMAI',3,'1997-01-14 00:00:00.000','1997-02-11 00:00:00.000','1997-01-16 00:00:00.000',2,95.66,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10414','FAMIA',2,'1997-01-14 00:00:00.000','1997-02-11 00:00:00.000','1997-01-17 00:00:00.000',3,21.48,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10415','HUNGC',3,'1997-01-15 00:00:00.000','1997-02-12 00:00:00.000','1997-01-24 00:00:00.000',1,0.2,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA'); +INSERT INTO Orders Values ('10416','WARTH',8,'1997-01-16 00:00:00.000','1997-02-13 00:00:00.000','1997-01-27 00:00:00.000',3,22.72,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10417','SIMOB',4,'1997-01-16 00:00:00.000','1997-02-13 00:00:00.000','1997-01-28 00:00:00.000',3,70.29,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10418','QUICK',4,'1997-01-17 00:00:00.000','1997-02-14 00:00:00.000','1997-01-24 00:00:00.000',1,17.55,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10419','RICSU',4,'1997-01-20 00:00:00.000','1997-02-17 00:00:00.000','1997-01-30 00:00:00.000',2,137.35,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10420','WELLI',3,'1997-01-21 00:00:00.000','1997-02-18 00:00:00.000','1997-01-27 00:00:00.000',1,44.12,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10421','QUEDE',8,'1997-01-21 00:00:00.000','1997-03-04 00:00:00.000','1997-01-27 00:00:00.000',1,99.23,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10422','FRANS',2,'1997-01-22 00:00:00.000','1997-02-19 00:00:00.000','1997-01-31 00:00:00.000',1,3.02,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('10423','GOURL',6,'1997-01-23 00:00:00.000','1997-02-06 00:00:00.000','1997-02-24 00:00:00.000',3,24.5,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10424','MEREP',7,'1997-01-23 00:00:00.000','1997-02-20 00:00:00.000','1997-01-27 00:00:00.000',2,370.61,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10425','LAMAI',6,'1997-01-24 00:00:00.000','1997-02-21 00:00:00.000','1997-02-14 00:00:00.000',2,7.93,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10426','GALED',4,'1997-01-27 00:00:00.000','1997-02-24 00:00:00.000','1997-02-06 00:00:00.000',1,18.69,'Galera del gastronmo','Rambla de Catalua, 23','Barcelona',NULL,'8022','Spain'); +INSERT INTO Orders Values ('10427','PICCO',4,'1997-01-27 00:00:00.000','1997-02-24 00:00:00.000','1997-03-03 00:00:00.000',2,31.29,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10428','REGGC',7,'1997-01-28 00:00:00.000','1997-02-25 00:00:00.000','1997-02-04 00:00:00.000',1,11.09,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10429','HUNGO',3,'1997-01-29 00:00:00.000','1997-03-12 00:00:00.000','1997-02-07 00:00:00.000',2,56.63,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10430','ERNSH',4,'1997-01-30 00:00:00.000','1997-02-13 00:00:00.000','1997-02-03 00:00:00.000',1,458.78,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10431','BOTTM',4,'1997-01-30 00:00:00.000','1997-02-13 00:00:00.000','1997-02-07 00:00:00.000',2,44.17,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10432','SPLIR',3,'1997-01-31 00:00:00.000','1997-02-14 00:00:00.000','1997-02-07 00:00:00.000',2,4.34,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10433','PRINI',3,'1997-02-03 00:00:00.000','1997-03-03 00:00:00.000','1997-03-04 00:00:00.000',3,73.83,'Princesa Isabel Vinhos','Estrada da sade n. 58','Lisboa',NULL,'1756','Portugal'); +INSERT INTO Orders Values ('10434','FOLKO',3,'1997-02-03 00:00:00.000','1997-03-03 00:00:00.000','1997-02-13 00:00:00.000',2,17.92,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10435','CONSH',8,'1997-02-04 00:00:00.000','1997-03-18 00:00:00.000','1997-02-07 00:00:00.000',2,9.21,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London',NULL,'WX1 6LT','UK'); +INSERT INTO Orders Values ('10436','BLONP',3,'1997-02-05 00:00:00.000','1997-03-05 00:00:00.000','1997-02-11 00:00:00.000',2,156.66,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10437','WARTH',8,'1997-02-05 00:00:00.000','1997-03-05 00:00:00.000','1997-02-12 00:00:00.000',1,19.97,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10438','TOMSP',3,'1997-02-06 00:00:00.000','1997-03-06 00:00:00.000','1997-02-14 00:00:00.000',2,8.24,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10439','MEREP',6,'1997-02-07 00:00:00.000','1997-03-07 00:00:00.000','1997-02-10 00:00:00.000',3,4.07,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10440','SAVEA',4,'1997-02-10 00:00:00.000','1997-03-10 00:00:00.000','1997-02-28 00:00:00.000',2,86.53,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10441','OLDWO',3,'1997-02-10 00:00:00.000','1997-03-24 00:00:00.000','1997-03-14 00:00:00.000',2,73.02,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10442','ERNSH',3,'1997-02-11 00:00:00.000','1997-03-11 00:00:00.000','1997-02-18 00:00:00.000',2,47.94,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10443','REGGC',8,'1997-02-12 00:00:00.000','1997-03-12 00:00:00.000','1997-02-14 00:00:00.000',1,13.95,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10444','BERGS',3,'1997-02-12 00:00:00.000','1997-03-12 00:00:00.000','1997-02-21 00:00:00.000',3,3.5,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10445','BERGS',3,'1997-02-13 00:00:00.000','1997-03-13 00:00:00.000','1997-02-20 00:00:00.000',1,9.3,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10446','TOMSP',6,'1997-02-14 00:00:00.000','1997-03-14 00:00:00.000','1997-02-19 00:00:00.000',1,14.68,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10447','RICAR',4,'1997-02-14 00:00:00.000','1997-03-14 00:00:00.000','1997-03-07 00:00:00.000',2,68.66,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10448','RANCH',4,'1997-02-17 00:00:00.000','1997-03-17 00:00:00.000','1997-02-24 00:00:00.000',2,38.82,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10449','BLONP',3,'1997-02-18 00:00:00.000','1997-03-18 00:00:00.000','1997-02-27 00:00:00.000',2,53.3,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10450','VICTE',8,'1997-02-19 00:00:00.000','1997-03-19 00:00:00.000','1997-03-11 00:00:00.000',2,7.23,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10451','QUICK',4,'1997-02-19 00:00:00.000','1997-03-05 00:00:00.000','1997-03-12 00:00:00.000',3,189.09,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10452','SAVEA',8,'1997-02-20 00:00:00.000','1997-03-20 00:00:00.000','1997-02-26 00:00:00.000',1,140.26,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10453','AROUT',1,'1997-02-21 00:00:00.000','1997-03-21 00:00:00.000','1997-02-26 00:00:00.000',2,25.36,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10454','LAMAI',4,'1997-02-21 00:00:00.000','1997-03-21 00:00:00.000','1997-02-25 00:00:00.000',3,2.74,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10455','WARTH',8,'1997-02-24 00:00:00.000','1997-04-07 00:00:00.000','1997-03-03 00:00:00.000',2,180.45,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10456','KOENE',8,'1997-02-25 00:00:00.000','1997-04-08 00:00:00.000','1997-02-28 00:00:00.000',2,8.12,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10457','KOENE',2,'1997-02-25 00:00:00.000','1997-03-25 00:00:00.000','1997-03-03 00:00:00.000',1,11.57,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10458','SUPRD',7,'1997-02-26 00:00:00.000','1997-03-26 00:00:00.000','1997-03-04 00:00:00.000',3,147.06,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10459','VICTE',4,'1997-02-27 00:00:00.000','1997-03-27 00:00:00.000','1997-02-28 00:00:00.000',2,25.09,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10460','FOLKO',8,'1997-02-28 00:00:00.000','1997-03-28 00:00:00.000','1997-03-03 00:00:00.000',1,16.27,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10461','LILAS',1,'1997-02-28 00:00:00.000','1997-03-28 00:00:00.000','1997-03-05 00:00:00.000',3,148.61,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10462','CONSH',2,'1997-03-03 00:00:00.000','1997-03-31 00:00:00.000','1997-03-18 00:00:00.000',1,6.17,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London',NULL,'WX1 6LT','UK'); +INSERT INTO Orders Values ('10463','SUPRD',5,'1997-03-04 00:00:00.000','1997-04-01 00:00:00.000','1997-03-06 00:00:00.000',3,14.78,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10464','FURIB',4,'1997-03-04 00:00:00.000','1997-04-01 00:00:00.000','1997-03-14 00:00:00.000',2,89,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10465','VAFFE',1,'1997-03-05 00:00:00.000','1997-04-02 00:00:00.000','1997-03-14 00:00:00.000',3,145.04,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10466','COMMI',4,'1997-03-06 00:00:00.000','1997-04-03 00:00:00.000','1997-03-13 00:00:00.000',1,11.93,'Comrcio Mineiro','Av. dos Lusadas, 23','Sao Paulo','SP','05432-043','Brazil'); +INSERT INTO Orders Values ('10467','MAGAA',8,'1997-03-06 00:00:00.000','1997-04-03 00:00:00.000','1997-03-11 00:00:00.000',2,4.93,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10468','KOENE',3,'1997-03-07 00:00:00.000','1997-04-04 00:00:00.000','1997-03-12 00:00:00.000',3,44.12,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10469','WHITC',1,'1997-03-10 00:00:00.000','1997-04-07 00:00:00.000','1997-03-14 00:00:00.000',1,60.18,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10470','BONAP',4,'1997-03-11 00:00:00.000','1997-04-08 00:00:00.000','1997-03-14 00:00:00.000',2,64.56,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10471','BSBEV',2,'1997-03-11 00:00:00.000','1997-04-08 00:00:00.000','1997-03-18 00:00:00.000',3,45.59,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10472','SEVES',8,'1997-03-12 00:00:00.000','1997-04-09 00:00:00.000','1997-03-19 00:00:00.000',1,4.2,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10473','ISLAT',1,'1997-03-13 00:00:00.000','1997-03-27 00:00:00.000','1997-03-21 00:00:00.000',3,16.37,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10474','PERIC',5,'1997-03-13 00:00:00.000','1997-04-10 00:00:00.000','1997-03-21 00:00:00.000',2,83.49,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10475','SUPRD',9,'1997-03-14 00:00:00.000','1997-04-11 00:00:00.000','1997-04-04 00:00:00.000',1,68.52,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10476','HILAA',8,'1997-03-17 00:00:00.000','1997-04-14 00:00:00.000','1997-03-24 00:00:00.000',3,4.41,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10477','PRINI',5,'1997-03-17 00:00:00.000','1997-04-14 00:00:00.000','1997-03-25 00:00:00.000',2,13.02,'Princesa Isabel Vinhos','Estrada da sade n. 58','Lisboa',NULL,'1756','Portugal'); +INSERT INTO Orders Values ('10478','VICTE',2,'1997-03-18 00:00:00.000','1997-04-01 00:00:00.000','1997-03-26 00:00:00.000',3,4.81,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10479','RATTC',3,'1997-03-19 00:00:00.000','1997-04-16 00:00:00.000','1997-03-21 00:00:00.000',3,708.95,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10480','FOLIG',6,'1997-03-20 00:00:00.000','1997-04-17 00:00:00.000','1997-03-24 00:00:00.000',2,1.35,'Folies gourmandes','184, chausse de Tournai','Lille',NULL,'59000','France'); +INSERT INTO Orders Values ('10481','RICAR',8,'1997-03-20 00:00:00.000','1997-04-17 00:00:00.000','1997-03-25 00:00:00.000',2,64.33,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10482','LAZYK',1,'1997-03-21 00:00:00.000','1997-04-18 00:00:00.000','1997-04-10 00:00:00.000',3,7.48,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','USA'); +INSERT INTO Orders Values ('10483','WHITC',7,'1997-03-24 00:00:00.000','1997-04-21 00:00:00.000','1997-04-25 00:00:00.000',2,15.28,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10484','BSBEV',3,'1997-03-24 00:00:00.000','1997-04-21 00:00:00.000','1997-04-01 00:00:00.000',3,6.88,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10485','LINOD',4,'1997-03-25 00:00:00.000','1997-04-08 00:00:00.000','1997-03-31 00:00:00.000',2,64.45,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10486','HILAA',1,'1997-03-26 00:00:00.000','1997-04-23 00:00:00.000','1997-04-02 00:00:00.000',2,30.53,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10487','QUEEN',2,'1997-03-26 00:00:00.000','1997-04-23 00:00:00.000','1997-03-28 00:00:00.000',2,71.07,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10488','FRANK',8,'1997-03-27 00:00:00.000','1997-04-24 00:00:00.000','1997-04-02 00:00:00.000',2,4.93,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10489','PICCO',6,'1997-03-28 00:00:00.000','1997-04-25 00:00:00.000','1997-04-09 00:00:00.000',2,5.29,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10490','HILAA',7,'1997-03-31 00:00:00.000','1997-04-28 00:00:00.000','1997-04-03 00:00:00.000',2,210.19,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10491','FURIB',8,'1997-03-31 00:00:00.000','1997-04-28 00:00:00.000','1997-04-08 00:00:00.000',3,16.96,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10492','BOTTM',3,'1997-04-01 00:00:00.000','1997-04-29 00:00:00.000','1997-04-11 00:00:00.000',1,62.89,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10493','LAMAI',4,'1997-04-02 00:00:00.000','1997-04-30 00:00:00.000','1997-04-10 00:00:00.000',3,10.64,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10494','COMMI',4,'1997-04-02 00:00:00.000','1997-04-30 00:00:00.000','1997-04-09 00:00:00.000',2,65.99,'Comrcio Mineiro','Av. dos Lusadas, 23','Sao Paulo','SP','05432-043','Brazil'); +INSERT INTO Orders Values ('10495','LAUGB',3,'1997-04-03 00:00:00.000','1997-05-01 00:00:00.000','1997-04-11 00:00:00.000',3,4.65,'Laughing Bacchus Wine Cellars','2319 Elm St.','Vancouver','BC','V3F 2K1','Canada'); +INSERT INTO Orders Values ('10496','TRADH',7,'1997-04-04 00:00:00.000','1997-05-02 00:00:00.000','1997-04-07 00:00:00.000',2,46.77,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10497','LEHMS',7,'1997-04-04 00:00:00.000','1997-05-02 00:00:00.000','1997-04-07 00:00:00.000',1,36.21,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10498','HILAA',8,'1997-04-07 00:00:00.000','1997-05-05 00:00:00.000','1997-04-11 00:00:00.000',2,29.75,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10499','LILAS',4,'1997-04-08 00:00:00.000','1997-05-06 00:00:00.000','1997-04-16 00:00:00.000',2,102.02,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10500','LAMAI',6,'1997-04-09 00:00:00.000','1997-05-07 00:00:00.000','1997-04-17 00:00:00.000',1,42.68,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10501','BLAUS',9,'1997-04-09 00:00:00.000','1997-05-07 00:00:00.000','1997-04-16 00:00:00.000',3,8.85,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10502','PERIC',2,'1997-04-10 00:00:00.000','1997-05-08 00:00:00.000','1997-04-29 00:00:00.000',1,69.32,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10503','HUNGO',6,'1997-04-11 00:00:00.000','1997-05-09 00:00:00.000','1997-04-16 00:00:00.000',2,16.74,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10504','WHITC',4,'1997-04-11 00:00:00.000','1997-05-09 00:00:00.000','1997-04-18 00:00:00.000',3,59.13,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10505','MEREP',3,'1997-04-14 00:00:00.000','1997-05-12 00:00:00.000','1997-04-21 00:00:00.000',3,7.13,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10506','KOENE',9,'1997-04-15 00:00:00.000','1997-05-13 00:00:00.000','1997-05-02 00:00:00.000',2,21.19,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10507','ANTON',7,'1997-04-15 00:00:00.000','1997-05-13 00:00:00.000','1997-04-22 00:00:00.000',1,47.45,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10508','OTTIK',1,'1997-04-16 00:00:00.000','1997-05-14 00:00:00.000','1997-05-13 00:00:00.000',2,4.99,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10509','BLAUS',4,'1997-04-17 00:00:00.000','1997-05-15 00:00:00.000','1997-04-29 00:00:00.000',1,0.15,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10510','SAVEA',6,'1997-04-18 00:00:00.000','1997-05-16 00:00:00.000','1997-04-28 00:00:00.000',3,367.63,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10511','BONAP',4,'1997-04-18 00:00:00.000','1997-05-16 00:00:00.000','1997-04-21 00:00:00.000',3,350.64,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10512','FAMIA',7,'1997-04-21 00:00:00.000','1997-05-19 00:00:00.000','1997-04-24 00:00:00.000',2,3.53,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10513','WANDK',7,'1997-04-22 00:00:00.000','1997-06-03 00:00:00.000','1997-04-28 00:00:00.000',1,105.65,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10514','ERNSH',3,'1997-04-22 00:00:00.000','1997-05-20 00:00:00.000','1997-05-16 00:00:00.000',2,789.95,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10515','QUICK',2,'1997-04-23 00:00:00.000','1997-05-07 00:00:00.000','1997-05-23 00:00:00.000',1,204.47,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10516','HUNGO',2,'1997-04-24 00:00:00.000','1997-05-22 00:00:00.000','1997-05-01 00:00:00.000',3,62.78,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10517','NORTS',3,'1997-04-24 00:00:00.000','1997-05-22 00:00:00.000','1997-04-29 00:00:00.000',3,32.07,'North/South','South House 300 Queensbridge','London',NULL,'SW7 1RZ','UK'); +INSERT INTO Orders Values ('10518','TORTU',4,'1997-04-25 00:00:00.000','1997-05-09 00:00:00.000','1997-05-05 00:00:00.000',2,218.15,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10519','CHOPS',6,'1997-04-28 00:00:00.000','1997-05-26 00:00:00.000','1997-05-01 00:00:00.000',3,91.76,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10520','SANTG',7,'1997-04-29 00:00:00.000','1997-05-27 00:00:00.000','1997-05-01 00:00:00.000',1,13.37,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('10521','CACTU',8,'1997-04-29 00:00:00.000','1997-05-27 00:00:00.000','1997-05-02 00:00:00.000',2,17.22,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10522','LEHMS',4,'1997-04-30 00:00:00.000','1997-05-28 00:00:00.000','1997-05-06 00:00:00.000',1,45.33,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10523','SEVES',7,'1997-05-01 00:00:00.000','1997-05-29 00:00:00.000','1997-05-30 00:00:00.000',2,77.63,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10524','BERGS',1,'1997-05-01 00:00:00.000','1997-05-29 00:00:00.000','1997-05-07 00:00:00.000',2,244.79,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10525','BONAP',1,'1997-05-02 00:00:00.000','1997-05-30 00:00:00.000','1997-05-23 00:00:00.000',2,11.06,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10526','WARTH',4,'1997-05-05 00:00:00.000','1997-06-02 00:00:00.000','1997-05-15 00:00:00.000',2,58.59,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10527','QUICK',7,'1997-05-05 00:00:00.000','1997-06-02 00:00:00.000','1997-05-07 00:00:00.000',1,41.9,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10528','GREAL',6,'1997-05-06 00:00:00.000','1997-05-20 00:00:00.000','1997-05-09 00:00:00.000',2,3.35,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10529','MAISD',5,'1997-05-07 00:00:00.000','1997-06-04 00:00:00.000','1997-05-09 00:00:00.000',2,66.69,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10530','PICCO',3,'1997-05-08 00:00:00.000','1997-06-05 00:00:00.000','1997-05-12 00:00:00.000',2,339.22,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10531','OCEAN',7,'1997-05-08 00:00:00.000','1997-06-05 00:00:00.000','1997-05-19 00:00:00.000',1,8.12,'Ocano Atlntico Ltda.','Ing. Gustavo Moncada 8585 Piso 20-A','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10532','EASTC',7,'1997-05-09 00:00:00.000','1997-06-06 00:00:00.000','1997-05-12 00:00:00.000',3,74.46,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('10533','FOLKO',8,'1997-05-12 00:00:00.000','1997-06-09 00:00:00.000','1997-05-22 00:00:00.000',1,188.04,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10534','LEHMS',8,'1997-05-12 00:00:00.000','1997-06-09 00:00:00.000','1997-05-14 00:00:00.000',2,27.94,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10535','ANTON',4,'1997-05-13 00:00:00.000','1997-06-10 00:00:00.000','1997-05-21 00:00:00.000',1,15.64,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10536','LEHMS',3,'1997-05-14 00:00:00.000','1997-06-11 00:00:00.000','1997-06-06 00:00:00.000',2,58.88,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10537','RICSU',1,'1997-05-14 00:00:00.000','1997-05-28 00:00:00.000','1997-05-19 00:00:00.000',1,78.85,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10538','BSBEV',9,'1997-05-15 00:00:00.000','1997-06-12 00:00:00.000','1997-05-16 00:00:00.000',3,4.87,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10539','BSBEV',6,'1997-05-16 00:00:00.000','1997-06-13 00:00:00.000','1997-05-23 00:00:00.000',3,12.36,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10540','QUICK',3,'1997-05-19 00:00:00.000','1997-06-16 00:00:00.000','1997-06-13 00:00:00.000',3,1007.64,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10541','HANAR',2,'1997-05-19 00:00:00.000','1997-06-16 00:00:00.000','1997-05-29 00:00:00.000',1,68.65,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10542','KOENE',1,'1997-05-20 00:00:00.000','1997-06-17 00:00:00.000','1997-05-26 00:00:00.000',3,10.95,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10543','LILAS',8,'1997-05-21 00:00:00.000','1997-06-18 00:00:00.000','1997-05-23 00:00:00.000',2,48.17,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10544','LONEP',4,'1997-05-21 00:00:00.000','1997-06-18 00:00:00.000','1997-05-30 00:00:00.000',1,24.91,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10545','LAZYK',8,'1997-05-22 00:00:00.000','1997-06-19 00:00:00.000','1997-06-26 00:00:00.000',2,11.92,'Lazy K Kountry Store','12 Orchestra Terrace','Walla Walla','WA','99362','USA'); +INSERT INTO Orders Values ('10546','VICTE',1,'1997-05-23 00:00:00.000','1997-06-20 00:00:00.000','1997-05-27 00:00:00.000',3,194.72,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10547','SEVES',3,'1997-05-23 00:00:00.000','1997-06-20 00:00:00.000','1997-06-02 00:00:00.000',2,178.43,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10548','TOMSP',3,'1997-05-26 00:00:00.000','1997-06-23 00:00:00.000','1997-06-02 00:00:00.000',2,1.43,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10549','QUICK',5,'1997-05-27 00:00:00.000','1997-06-10 00:00:00.000','1997-05-30 00:00:00.000',1,171.24,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10550','GODOS',7,'1997-05-28 00:00:00.000','1997-06-25 00:00:00.000','1997-06-06 00:00:00.000',3,4.32,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10551','FURIB',4,'1997-05-28 00:00:00.000','1997-07-09 00:00:00.000','1997-06-06 00:00:00.000',3,72.95,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10552','HILAA',2,'1997-05-29 00:00:00.000','1997-06-26 00:00:00.000','1997-06-05 00:00:00.000',1,83.22,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10553','WARTH',2,'1997-05-30 00:00:00.000','1997-06-27 00:00:00.000','1997-06-03 00:00:00.000',2,149.49,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10554','OTTIK',4,'1997-05-30 00:00:00.000','1997-06-27 00:00:00.000','1997-06-05 00:00:00.000',3,120.97,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10555','SAVEA',6,'1997-06-02 00:00:00.000','1997-06-30 00:00:00.000','1997-06-04 00:00:00.000',3,252.49,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10556','SIMOB',2,'1997-06-03 00:00:00.000','1997-07-15 00:00:00.000','1997-06-13 00:00:00.000',1,9.8,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10557','LEHMS',9,'1997-06-03 00:00:00.000','1997-06-17 00:00:00.000','1997-06-06 00:00:00.000',2,96.72,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10558','AROUT',1,'1997-06-04 00:00:00.000','1997-07-02 00:00:00.000','1997-06-10 00:00:00.000',2,72.97,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10559','BLONP',6,'1997-06-05 00:00:00.000','1997-07-03 00:00:00.000','1997-06-13 00:00:00.000',1,8.05,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10560','FRANK',8,'1997-06-06 00:00:00.000','1997-07-04 00:00:00.000','1997-06-09 00:00:00.000',1,36.65,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10561','FOLKO',2,'1997-06-06 00:00:00.000','1997-07-04 00:00:00.000','1997-06-09 00:00:00.000',2,242.21,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10562','REGGC',1,'1997-06-09 00:00:00.000','1997-07-07 00:00:00.000','1997-06-12 00:00:00.000',1,22.95,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10563','RICAR',2,'1997-06-10 00:00:00.000','1997-07-22 00:00:00.000','1997-06-24 00:00:00.000',2,60.43,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10564','RATTC',4,'1997-06-10 00:00:00.000','1997-07-08 00:00:00.000','1997-06-16 00:00:00.000',3,13.75,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10565','MEREP',8,'1997-06-11 00:00:00.000','1997-07-09 00:00:00.000','1997-06-18 00:00:00.000',2,7.15,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10566','BLONP',9,'1997-06-12 00:00:00.000','1997-07-10 00:00:00.000','1997-06-18 00:00:00.000',1,88.4,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10567','HUNGO',1,'1997-06-12 00:00:00.000','1997-07-10 00:00:00.000','1997-06-17 00:00:00.000',1,33.97,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10568','GALED',3,'1997-06-13 00:00:00.000','1997-07-11 00:00:00.000','1997-07-09 00:00:00.000',3,6.54,'Galera del gastronmo','Rambla de Catalua, 23','Barcelona',NULL,'8022','Spain'); +INSERT INTO Orders Values ('10569','RATTC',5,'1997-06-16 00:00:00.000','1997-07-14 00:00:00.000','1997-07-11 00:00:00.000',1,58.98,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10570','MEREP',3,'1997-06-17 00:00:00.000','1997-07-15 00:00:00.000','1997-06-19 00:00:00.000',3,188.99,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10571','ERNSH',8,'1997-06-17 00:00:00.000','1997-07-29 00:00:00.000','1997-07-04 00:00:00.000',3,26.06,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10572','BERGS',3,'1997-06-18 00:00:00.000','1997-07-16 00:00:00.000','1997-06-25 00:00:00.000',2,116.43,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10573','ANTON',7,'1997-06-19 00:00:00.000','1997-07-17 00:00:00.000','1997-06-20 00:00:00.000',3,84.84,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10574','TRAIH',4,'1997-06-19 00:00:00.000','1997-07-17 00:00:00.000','1997-06-30 00:00:00.000',2,37.6,'Trail-s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA'); +INSERT INTO Orders Values ('10575','MORGK',5,'1997-06-20 00:00:00.000','1997-07-04 00:00:00.000','1997-06-30 00:00:00.000',1,127.34,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'4179','Germany'); +INSERT INTO Orders Values ('10576','TORTU',3,'1997-06-23 00:00:00.000','1997-07-07 00:00:00.000','1997-06-30 00:00:00.000',3,18.56,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10577','TRAIH',9,'1997-06-23 00:00:00.000','1997-08-04 00:00:00.000','1997-06-30 00:00:00.000',2,25.41,'Trail-s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA'); +INSERT INTO Orders Values ('10578','BSBEV',4,'1997-06-24 00:00:00.000','1997-07-22 00:00:00.000','1997-07-25 00:00:00.000',3,29.6,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10579','LETSS',1,'1997-06-25 00:00:00.000','1997-07-23 00:00:00.000','1997-07-04 00:00:00.000',2,13.73,'Let-s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA'); +INSERT INTO Orders Values ('10580','OTTIK',4,'1997-06-26 00:00:00.000','1997-07-24 00:00:00.000','1997-07-01 00:00:00.000',3,75.89,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10581','FAMIA',3,'1997-06-26 00:00:00.000','1997-07-24 00:00:00.000','1997-07-02 00:00:00.000',1,3.01,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10582','BLAUS',3,'1997-06-27 00:00:00.000','1997-07-25 00:00:00.000','1997-07-14 00:00:00.000',2,27.71,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10583','WARTH',2,'1997-06-30 00:00:00.000','1997-07-28 00:00:00.000','1997-07-04 00:00:00.000',2,7.28,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10584','BLONP',4,'1997-06-30 00:00:00.000','1997-07-28 00:00:00.000','1997-07-04 00:00:00.000',1,59.14,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10585','WELLI',7,'1997-07-01 00:00:00.000','1997-07-29 00:00:00.000','1997-07-10 00:00:00.000',1,13.41,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10586','REGGC',9,'1997-07-02 00:00:00.000','1997-07-30 00:00:00.000','1997-07-09 00:00:00.000',1,0.48,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10587','QUEDE',1,'1997-07-02 00:00:00.000','1997-07-30 00:00:00.000','1997-07-09 00:00:00.000',1,62.52,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10588','QUICK',2,'1997-07-03 00:00:00.000','1997-07-31 00:00:00.000','1997-07-10 00:00:00.000',3,194.67,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10589','GREAL',8,'1997-07-04 00:00:00.000','1997-08-01 00:00:00.000','1997-07-14 00:00:00.000',2,4.42,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10590','MEREP',4,'1997-07-07 00:00:00.000','1997-08-04 00:00:00.000','1997-07-14 00:00:00.000',3,44.77,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10591','VAFFE',1,'1997-07-07 00:00:00.000','1997-07-21 00:00:00.000','1997-07-16 00:00:00.000',1,55.92,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10592','LEHMS',3,'1997-07-08 00:00:00.000','1997-08-05 00:00:00.000','1997-07-16 00:00:00.000',1,32.1,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10593','LEHMS',7,'1997-07-09 00:00:00.000','1997-08-06 00:00:00.000','1997-08-13 00:00:00.000',2,174.2,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10594','OLDWO',3,'1997-07-09 00:00:00.000','1997-08-06 00:00:00.000','1997-07-16 00:00:00.000',2,5.24,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10595','ERNSH',2,'1997-07-10 00:00:00.000','1997-08-07 00:00:00.000','1997-07-14 00:00:00.000',1,96.78,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10596','WHITC',8,'1997-07-11 00:00:00.000','1997-08-08 00:00:00.000','1997-08-12 00:00:00.000',1,16.34,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10597','PICCO',7,'1997-07-11 00:00:00.000','1997-08-08 00:00:00.000','1997-07-18 00:00:00.000',3,35.12,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10598','RATTC',1,'1997-07-14 00:00:00.000','1997-08-11 00:00:00.000','1997-07-18 00:00:00.000',3,44.42,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10599','BSBEV',6,'1997-07-15 00:00:00.000','1997-08-26 00:00:00.000','1997-07-21 00:00:00.000',3,29.98,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10600','HUNGC',4,'1997-07-16 00:00:00.000','1997-08-13 00:00:00.000','1997-07-21 00:00:00.000',1,45.13,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA'); +INSERT INTO Orders Values ('10601','HILAA',7,'1997-07-16 00:00:00.000','1997-08-27 00:00:00.000','1997-07-22 00:00:00.000',1,58.3,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10602','VAFFE',8,'1997-07-17 00:00:00.000','1997-08-14 00:00:00.000','1997-07-22 00:00:00.000',2,2.92,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10603','SAVEA',8,'1997-07-18 00:00:00.000','1997-08-15 00:00:00.000','1997-08-08 00:00:00.000',2,48.77,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10604','FURIB',1,'1997-07-18 00:00:00.000','1997-08-15 00:00:00.000','1997-07-29 00:00:00.000',1,7.46,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10605','MEREP',1,'1997-07-21 00:00:00.000','1997-08-18 00:00:00.000','1997-07-29 00:00:00.000',2,379.13,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10606','TRADH',4,'1997-07-22 00:00:00.000','1997-08-19 00:00:00.000','1997-07-31 00:00:00.000',3,79.4,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10607','SAVEA',5,'1997-07-22 00:00:00.000','1997-08-19 00:00:00.000','1997-07-25 00:00:00.000',1,200.24,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10608','TOMSP',4,'1997-07-23 00:00:00.000','1997-08-20 00:00:00.000','1997-08-01 00:00:00.000',2,27.79,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10609','DUMON',7,'1997-07-24 00:00:00.000','1997-08-21 00:00:00.000','1997-07-30 00:00:00.000',2,1.85,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10610','LAMAI',8,'1997-07-25 00:00:00.000','1997-08-22 00:00:00.000','1997-08-06 00:00:00.000',1,26.78,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10611','WOLZA',6,'1997-07-25 00:00:00.000','1997-08-22 00:00:00.000','1997-08-01 00:00:00.000',2,80.65,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10612','SAVEA',1,'1997-07-28 00:00:00.000','1997-08-25 00:00:00.000','1997-08-01 00:00:00.000',2,544.08,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10613','HILAA',4,'1997-07-29 00:00:00.000','1997-08-26 00:00:00.000','1997-08-01 00:00:00.000',2,8.11,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10614','BLAUS',8,'1997-07-29 00:00:00.000','1997-08-26 00:00:00.000','1997-08-01 00:00:00.000',3,1.93,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10615','WILMK',2,'1997-07-30 00:00:00.000','1997-08-27 00:00:00.000','1997-08-06 00:00:00.000',3,0.75,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10616','GREAL',1,'1997-07-31 00:00:00.000','1997-08-28 00:00:00.000','1997-08-05 00:00:00.000',2,116.53,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10617','GREAL',4,'1997-07-31 00:00:00.000','1997-08-28 00:00:00.000','1997-08-04 00:00:00.000',2,18.53,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10618','MEREP',1,'1997-08-01 00:00:00.000','1997-09-12 00:00:00.000','1997-08-08 00:00:00.000',1,154.68,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10619','MEREP',3,'1997-08-04 00:00:00.000','1997-09-01 00:00:00.000','1997-08-07 00:00:00.000',3,91.05,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10620','LAUGB',2,'1997-08-05 00:00:00.000','1997-09-02 00:00:00.000','1997-08-14 00:00:00.000',3,0.94,'Laughing Bacchus Wine Cellars','2319 Elm St.','Vancouver','BC','V3F 2K1','Canada'); +INSERT INTO Orders Values ('10621','ISLAT',4,'1997-08-05 00:00:00.000','1997-09-02 00:00:00.000','1997-08-11 00:00:00.000',2,23.73,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10622','RICAR',4,'1997-08-06 00:00:00.000','1997-09-03 00:00:00.000','1997-08-11 00:00:00.000',3,50.97,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10623','FRANK',8,'1997-08-07 00:00:00.000','1997-09-04 00:00:00.000','1997-08-12 00:00:00.000',2,97.18,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10624','THECR',4,'1997-08-07 00:00:00.000','1997-09-04 00:00:00.000','1997-08-19 00:00:00.000',2,94.8,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','USA'); +INSERT INTO Orders Values ('10625','ANATR',3,'1997-08-08 00:00:00.000','1997-09-05 00:00:00.000','1997-08-14 00:00:00.000',1,43.9,'Ana Trujillo Emparedados y helados','Avda. de la Constitucin 2222','Mxico D.F.',NULL,'5021','Mexico'); +INSERT INTO Orders Values ('10626','BERGS',1,'1997-08-11 00:00:00.000','1997-09-08 00:00:00.000','1997-08-20 00:00:00.000',2,138.69,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10627','SAVEA',8,'1997-08-11 00:00:00.000','1997-09-22 00:00:00.000','1997-08-21 00:00:00.000',3,107.46,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10628','BLONP',4,'1997-08-12 00:00:00.000','1997-09-09 00:00:00.000','1997-08-20 00:00:00.000',3,30.36,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10629','GODOS',4,'1997-08-12 00:00:00.000','1997-09-09 00:00:00.000','1997-08-20 00:00:00.000',3,85.46,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10630','KOENE',1,'1997-08-13 00:00:00.000','1997-09-10 00:00:00.000','1997-08-19 00:00:00.000',2,32.35,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10631','LAMAI',8,'1997-08-14 00:00:00.000','1997-09-11 00:00:00.000','1997-08-15 00:00:00.000',1,0.87,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10632','WANDK',8,'1997-08-14 00:00:00.000','1997-09-11 00:00:00.000','1997-08-19 00:00:00.000',1,41.38,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10633','ERNSH',7,'1997-08-15 00:00:00.000','1997-09-12 00:00:00.000','1997-08-18 00:00:00.000',3,477.9,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10634','FOLIG',4,'1997-08-15 00:00:00.000','1997-09-12 00:00:00.000','1997-08-21 00:00:00.000',3,487.38,'Folies gourmandes','184, chausse de Tournai','Lille',NULL,'59000','France'); +INSERT INTO Orders Values ('10635','MAGAA',8,'1997-08-18 00:00:00.000','1997-09-15 00:00:00.000','1997-08-21 00:00:00.000',3,47.46,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10636','WARTH',4,'1997-08-19 00:00:00.000','1997-09-16 00:00:00.000','1997-08-26 00:00:00.000',1,1.15,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10637','QUEEN',6,'1997-08-19 00:00:00.000','1997-09-16 00:00:00.000','1997-08-26 00:00:00.000',1,201.29,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10638','LINOD',3,'1997-08-20 00:00:00.000','1997-09-17 00:00:00.000','1997-09-01 00:00:00.000',1,158.44,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10639','SANTG',7,'1997-08-20 00:00:00.000','1997-09-17 00:00:00.000','1997-08-27 00:00:00.000',3,38.64,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('10640','WANDK',4,'1997-08-21 00:00:00.000','1997-09-18 00:00:00.000','1997-08-28 00:00:00.000',1,23.55,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10641','HILAA',4,'1997-08-22 00:00:00.000','1997-09-19 00:00:00.000','1997-08-26 00:00:00.000',2,179.61,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10642','SIMOB',7,'1997-08-22 00:00:00.000','1997-09-19 00:00:00.000','1997-09-05 00:00:00.000',3,41.89,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10643','ALFKI',6,'1997-08-25 00:00:00.000','1997-09-22 00:00:00.000','1997-09-02 00:00:00.000',1,29.46,'Alfreds Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('10644','WELLI',3,'1997-08-25 00:00:00.000','1997-09-22 00:00:00.000','1997-09-01 00:00:00.000',2,0.14,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10645','HANAR',4,'1997-08-26 00:00:00.000','1997-09-23 00:00:00.000','1997-09-02 00:00:00.000',1,12.41,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10646','HUNGO',9,'1997-08-27 00:00:00.000','1997-10-08 00:00:00.000','1997-09-03 00:00:00.000',3,142.33,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10647','QUEDE',4,'1997-08-27 00:00:00.000','1997-09-10 00:00:00.000','1997-09-03 00:00:00.000',2,45.54,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10648','RICAR',5,'1997-08-28 00:00:00.000','1997-10-09 00:00:00.000','1997-09-09 00:00:00.000',2,14.25,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10649','MAISD',5,'1997-08-28 00:00:00.000','1997-09-25 00:00:00.000','1997-08-29 00:00:00.000',3,6.2,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10650','FAMIA',5,'1997-08-29 00:00:00.000','1997-09-26 00:00:00.000','1997-09-03 00:00:00.000',3,176.81,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10651','WANDK',8,'1997-09-01 00:00:00.000','1997-09-29 00:00:00.000','1997-09-11 00:00:00.000',2,20.6,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10652','GOURL',4,'1997-09-01 00:00:00.000','1997-09-29 00:00:00.000','1997-09-08 00:00:00.000',2,7.14,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10653','FRANK',1,'1997-09-02 00:00:00.000','1997-09-30 00:00:00.000','1997-09-19 00:00:00.000',1,93.25,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10654','BERGS',5,'1997-09-02 00:00:00.000','1997-09-30 00:00:00.000','1997-09-11 00:00:00.000',1,55.26,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10655','REGGC',1,'1997-09-03 00:00:00.000','1997-10-01 00:00:00.000','1997-09-11 00:00:00.000',2,4.41,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10656','GREAL',6,'1997-09-04 00:00:00.000','1997-10-02 00:00:00.000','1997-09-10 00:00:00.000',1,57.15,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10657','SAVEA',2,'1997-09-04 00:00:00.000','1997-10-02 00:00:00.000','1997-09-15 00:00:00.000',2,352.69,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10658','QUICK',4,'1997-09-05 00:00:00.000','1997-10-03 00:00:00.000','1997-09-08 00:00:00.000',1,364.15,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10659','QUEEN',7,'1997-09-05 00:00:00.000','1997-10-03 00:00:00.000','1997-09-10 00:00:00.000',2,105.81,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10660','HUNGC',8,'1997-09-08 00:00:00.000','1997-10-06 00:00:00.000','1997-10-15 00:00:00.000',1,111.29,'Hungry Coyote Import Store','City Center Plaza 516 Main St.','Elgin','OR','97827','USA'); +INSERT INTO Orders Values ('10661','HUNGO',7,'1997-09-09 00:00:00.000','1997-10-07 00:00:00.000','1997-09-15 00:00:00.000',3,17.55,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10662','LONEP',3,'1997-09-09 00:00:00.000','1997-10-07 00:00:00.000','1997-09-18 00:00:00.000',2,1.28,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10663','BONAP',2,'1997-09-10 00:00:00.000','1997-09-24 00:00:00.000','1997-10-03 00:00:00.000',2,113.15,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10664','FURIB',1,'1997-09-10 00:00:00.000','1997-10-08 00:00:00.000','1997-09-19 00:00:00.000',3,1.27,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10665','LONEP',1,'1997-09-11 00:00:00.000','1997-10-09 00:00:00.000','1997-09-17 00:00:00.000',2,26.31,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10666','RICSU',7,'1997-09-12 00:00:00.000','1997-10-10 00:00:00.000','1997-09-22 00:00:00.000',2,232.42,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10667','ERNSH',7,'1997-09-12 00:00:00.000','1997-10-10 00:00:00.000','1997-09-19 00:00:00.000',1,78.09,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10668','WANDK',1,'1997-09-15 00:00:00.000','1997-10-13 00:00:00.000','1997-09-23 00:00:00.000',2,47.22,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('10669','SIMOB',2,'1997-09-15 00:00:00.000','1997-10-13 00:00:00.000','1997-09-22 00:00:00.000',1,24.39,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10670','FRANK',4,'1997-09-16 00:00:00.000','1997-10-14 00:00:00.000','1997-09-18 00:00:00.000',1,203.48,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10671','FRANR',1,'1997-09-17 00:00:00.000','1997-10-15 00:00:00.000','1997-09-24 00:00:00.000',1,30.34,'France restauration','54, rue Royale','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10672','BERGS',9,'1997-09-17 00:00:00.000','1997-10-01 00:00:00.000','1997-09-26 00:00:00.000',2,95.75,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10673','WILMK',2,'1997-09-18 00:00:00.000','1997-10-16 00:00:00.000','1997-09-19 00:00:00.000',1,22.76,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10674','ISLAT',4,'1997-09-18 00:00:00.000','1997-10-16 00:00:00.000','1997-09-30 00:00:00.000',2,0.9,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10675','FRANK',5,'1997-09-19 00:00:00.000','1997-10-17 00:00:00.000','1997-09-23 00:00:00.000',2,31.85,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10676','TORTU',2,'1997-09-22 00:00:00.000','1997-10-20 00:00:00.000','1997-09-29 00:00:00.000',2,2.01,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10677','ANTON',1,'1997-09-22 00:00:00.000','1997-10-20 00:00:00.000','1997-09-26 00:00:00.000',3,4.03,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10678','SAVEA',7,'1997-09-23 00:00:00.000','1997-10-21 00:00:00.000','1997-10-16 00:00:00.000',3,388.98,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10679','BLONP',8,'1997-09-23 00:00:00.000','1997-10-21 00:00:00.000','1997-09-30 00:00:00.000',3,27.94,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10680','OLDWO',1,'1997-09-24 00:00:00.000','1997-10-22 00:00:00.000','1997-09-26 00:00:00.000',1,26.61,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10681','GREAL',3,'1997-09-25 00:00:00.000','1997-10-23 00:00:00.000','1997-09-30 00:00:00.000',3,76.13,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10682','ANTON',3,'1997-09-25 00:00:00.000','1997-10-23 00:00:00.000','1997-10-01 00:00:00.000',2,36.13,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10683','DUMON',2,'1997-09-26 00:00:00.000','1997-10-24 00:00:00.000','1997-10-01 00:00:00.000',1,4.4,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10684','OTTIK',3,'1997-09-26 00:00:00.000','1997-10-24 00:00:00.000','1997-09-30 00:00:00.000',1,145.63,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10685','GOURL',4,'1997-09-29 00:00:00.000','1997-10-13 00:00:00.000','1997-10-03 00:00:00.000',2,33.75,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10686','PICCO',2,'1997-09-30 00:00:00.000','1997-10-28 00:00:00.000','1997-10-08 00:00:00.000',1,96.5,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10687','HUNGO',9,'1997-09-30 00:00:00.000','1997-10-28 00:00:00.000','1997-10-30 00:00:00.000',2,296.43,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10688','VAFFE',4,'1997-10-01 00:00:00.000','1997-10-15 00:00:00.000','1997-10-07 00:00:00.000',2,299.09,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10689','BERGS',1,'1997-10-01 00:00:00.000','1997-10-29 00:00:00.000','1997-10-07 00:00:00.000',2,13.42,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10690','HANAR',1,'1997-10-02 00:00:00.000','1997-10-30 00:00:00.000','1997-10-03 00:00:00.000',1,15.8,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10691','QUICK',2,'1997-10-03 00:00:00.000','1997-11-14 00:00:00.000','1997-10-22 00:00:00.000',2,810.05,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10692','ALFKI',4,'1997-10-03 00:00:00.000','1997-10-31 00:00:00.000','1997-10-13 00:00:00.000',2,61.02,'Alfred-s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('10693','WHITC',3,'1997-10-06 00:00:00.000','1997-10-20 00:00:00.000','1997-10-10 00:00:00.000',3,139.34,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10694','QUICK',8,'1997-10-06 00:00:00.000','1997-11-03 00:00:00.000','1997-10-09 00:00:00.000',3,398.36,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10695','WILMK',7,'1997-10-07 00:00:00.000','1997-11-18 00:00:00.000','1997-10-14 00:00:00.000',1,16.72,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10696','WHITC',8,'1997-10-08 00:00:00.000','1997-11-19 00:00:00.000','1997-10-14 00:00:00.000',3,102.55,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10697','LINOD',3,'1997-10-08 00:00:00.000','1997-11-05 00:00:00.000','1997-10-14 00:00:00.000',1,45.52,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10698','ERNSH',4,'1997-10-09 00:00:00.000','1997-11-06 00:00:00.000','1997-10-17 00:00:00.000',1,272.47,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10699','MORGK',3,'1997-10-09 00:00:00.000','1997-11-06 00:00:00.000','1997-10-13 00:00:00.000',3,0.58,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'4179','Germany'); +INSERT INTO Orders Values ('10700','SAVEA',3,'1997-10-10 00:00:00.000','1997-11-07 00:00:00.000','1997-10-16 00:00:00.000',1,65.1,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10701','HUNGO',6,'1997-10-13 00:00:00.000','1997-10-27 00:00:00.000','1997-10-15 00:00:00.000',3,220.31,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10702','ALFKI',4,'1997-10-13 00:00:00.000','1997-11-24 00:00:00.000','1997-10-21 00:00:00.000',1,23.94,'Alfred-s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('10703','FOLKO',6,'1997-10-14 00:00:00.000','1997-11-11 00:00:00.000','1997-10-20 00:00:00.000',2,152.3,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10704','QUEEN',6,'1997-10-14 00:00:00.000','1997-11-11 00:00:00.000','1997-11-07 00:00:00.000',1,4.78,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10705','HILAA',9,'1997-10-15 00:00:00.000','1997-11-12 00:00:00.000','1997-11-18 00:00:00.000',2,3.52,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10706','OLDWO',8,'1997-10-16 00:00:00.000','1997-11-13 00:00:00.000','1997-10-21 00:00:00.000',3,135.63,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10707','AROUT',4,'1997-10-16 00:00:00.000','1997-10-30 00:00:00.000','1997-10-23 00:00:00.000',3,21.74,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10708','THEBI',6,'1997-10-17 00:00:00.000','1997-11-28 00:00:00.000','1997-11-05 00:00:00.000',2,2.96,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA'); +INSERT INTO Orders Values ('10709','GOURL',1,'1997-10-17 00:00:00.000','1997-11-14 00:00:00.000','1997-11-20 00:00:00.000',3,210.8,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10710','FRANS',1,'1997-10-20 00:00:00.000','1997-11-17 00:00:00.000','1997-10-23 00:00:00.000',1,4.98,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('10711','SAVEA',5,'1997-10-21 00:00:00.000','1997-12-02 00:00:00.000','1997-10-29 00:00:00.000',2,52.41,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10712','HUNGO',3,'1997-10-21 00:00:00.000','1997-11-18 00:00:00.000','1997-10-31 00:00:00.000',1,89.93,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10713','SAVEA',1,'1997-10-22 00:00:00.000','1997-11-19 00:00:00.000','1997-10-24 00:00:00.000',1,167.05,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10714','SAVEA',5,'1997-10-22 00:00:00.000','1997-11-19 00:00:00.000','1997-10-27 00:00:00.000',3,24.49,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10715','BONAP',3,'1997-10-23 00:00:00.000','1997-11-06 00:00:00.000','1997-10-29 00:00:00.000',1,63.2,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10716','RANCH',4,'1997-10-24 00:00:00.000','1997-11-21 00:00:00.000','1997-10-27 00:00:00.000',2,22.57,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10717','FRANK',1,'1997-10-24 00:00:00.000','1997-11-21 00:00:00.000','1997-10-29 00:00:00.000',2,59.25,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10718','KOENE',1,'1997-10-27 00:00:00.000','1997-11-24 00:00:00.000','1997-10-29 00:00:00.000',3,170.88,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10719','LETSS',8,'1997-10-27 00:00:00.000','1997-11-24 00:00:00.000','1997-11-05 00:00:00.000',2,51.44,'Let-s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA'); +INSERT INTO Orders Values ('10720','QUEDE',8,'1997-10-28 00:00:00.000','1997-11-11 00:00:00.000','1997-11-05 00:00:00.000',2,9.53,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10721','QUICK',5,'1997-10-29 00:00:00.000','1997-11-26 00:00:00.000','1997-10-31 00:00:00.000',3,48.92,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10722','SAVEA',8,'1997-10-29 00:00:00.000','1997-12-10 00:00:00.000','1997-11-04 00:00:00.000',1,74.58,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10723','WHITC',3,'1997-10-30 00:00:00.000','1997-11-27 00:00:00.000','1997-11-25 00:00:00.000',1,21.72,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10724','MEREP',8,'1997-10-30 00:00:00.000','1997-12-11 00:00:00.000','1997-11-05 00:00:00.000',2,57.75,'Mre Paillarde','43 rue St. Laurent','Montral','Qubec','H1J 1C3','Canada'); +INSERT INTO Orders Values ('10725','FAMIA',4,'1997-10-31 00:00:00.000','1997-11-28 00:00:00.000','1997-11-05 00:00:00.000',3,10.83,'Familia Arquibaldo','Rua Ors, 92','Sao Paulo','SP','05442-030','Brazil'); +INSERT INTO Orders Values ('10726','EASTC',4,'1997-11-03 00:00:00.000','1997-11-17 00:00:00.000','1997-12-05 00:00:00.000',1,16.56,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('10727','REGGC',2,'1997-11-03 00:00:00.000','1997-12-01 00:00:00.000','1997-12-05 00:00:00.000',1,89.9,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10728','QUEEN',4,'1997-11-04 00:00:00.000','1997-12-02 00:00:00.000','1997-11-11 00:00:00.000',2,58.33,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10729','LINOD',8,'1997-11-04 00:00:00.000','1997-12-16 00:00:00.000','1997-11-14 00:00:00.000',3,141.06,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10730','BONAP',5,'1997-11-05 00:00:00.000','1997-12-03 00:00:00.000','1997-11-14 00:00:00.000',1,20.12,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10731','CHOPS',7,'1997-11-06 00:00:00.000','1997-12-04 00:00:00.000','1997-11-14 00:00:00.000',1,96.65,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10732','BONAP',3,'1997-11-06 00:00:00.000','1997-12-04 00:00:00.000','1997-11-07 00:00:00.000',1,16.97,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10733','BERGS',1,'1997-11-07 00:00:00.000','1997-12-05 00:00:00.000','1997-11-10 00:00:00.000',3,110.11,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10734','GOURL',2,'1997-11-07 00:00:00.000','1997-12-05 00:00:00.000','1997-11-12 00:00:00.000',3,1.63,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10735','LETSS',6,'1997-11-10 00:00:00.000','1997-12-08 00:00:00.000','1997-11-21 00:00:00.000',2,45.97,'Let-s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA'); +INSERT INTO Orders Values ('10736','HUNGO',9,'1997-11-11 00:00:00.000','1997-12-09 00:00:00.000','1997-11-21 00:00:00.000',2,44.1,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10737','VINET',2,'1997-11-11 00:00:00.000','1997-12-09 00:00:00.000','1997-11-18 00:00:00.000',2,7.79,'Vins et alcools Chevalier','59 rue de l-Abbaye','Reims',NULL,'51100','France'); +INSERT INTO Orders Values ('10738','SPECD',2,'1997-11-12 00:00:00.000','1997-12-10 00:00:00.000','1997-11-18 00:00:00.000',1,2.91,'Spcialits du monde','25, rue Lauriston','Paris',NULL,'75016','France'); +INSERT INTO Orders Values ('10739','VINET',3,'1997-11-12 00:00:00.000','1997-12-10 00:00:00.000','1997-11-17 00:00:00.000',3,11.08,'Vins et alcools Chevalier','59 rue de l-Abbaye','Reims',NULL,'51100','France'); +INSERT INTO Orders Values ('10740','WHITC',4,'1997-11-13 00:00:00.000','1997-12-11 00:00:00.000','1997-11-25 00:00:00.000',2,81.88,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10741','AROUT',4,'1997-11-14 00:00:00.000','1997-11-28 00:00:00.000','1997-11-18 00:00:00.000',3,10.96,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10742','BOTTM',3,'1997-11-14 00:00:00.000','1997-12-12 00:00:00.000','1997-11-18 00:00:00.000',3,243.73,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10743','AROUT',1,'1997-11-17 00:00:00.000','1997-12-15 00:00:00.000','1997-11-21 00:00:00.000',2,23.72,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10744','VAFFE',6,'1997-11-17 00:00:00.000','1997-12-15 00:00:00.000','1997-11-24 00:00:00.000',1,69.19,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10745','QUICK',9,'1997-11-18 00:00:00.000','1997-12-16 00:00:00.000','1997-11-27 00:00:00.000',1,3.52,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10746','CHOPS',1,'1997-11-19 00:00:00.000','1997-12-17 00:00:00.000','1997-11-21 00:00:00.000',3,31.43,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10747','PICCO',6,'1997-11-19 00:00:00.000','1997-12-17 00:00:00.000','1997-11-26 00:00:00.000',1,117.33,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10748','SAVEA',3,'1997-11-20 00:00:00.000','1997-12-18 00:00:00.000','1997-11-28 00:00:00.000',1,232.55,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10749','ISLAT',4,'1997-11-20 00:00:00.000','1997-12-18 00:00:00.000','1997-12-19 00:00:00.000',2,61.53,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10750','WARTH',9,'1997-11-21 00:00:00.000','1997-12-19 00:00:00.000','1997-11-24 00:00:00.000',1,79.3,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10751','RICSU',3,'1997-11-24 00:00:00.000','1997-12-22 00:00:00.000','1997-12-03 00:00:00.000',3,130.79,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10752','NORTS',2,'1997-11-24 00:00:00.000','1997-12-22 00:00:00.000','1997-11-28 00:00:00.000',3,1.39,'North/South','South House 300 Queensbridge','London',NULL,'SW7 1RZ','UK'); +INSERT INTO Orders Values ('10753','FRANS',3,'1997-11-25 00:00:00.000','1997-12-23 00:00:00.000','1997-11-27 00:00:00.000',1,7.7,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('10754','MAGAA',6,'1997-11-25 00:00:00.000','1997-12-23 00:00:00.000','1997-11-27 00:00:00.000',3,2.38,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10755','BONAP',4,'1997-11-26 00:00:00.000','1997-12-24 00:00:00.000','1997-11-28 00:00:00.000',2,16.71,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10756','SPLIR',8,'1997-11-27 00:00:00.000','1997-12-25 00:00:00.000','1997-12-02 00:00:00.000',2,73.21,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10757','SAVEA',6,'1997-11-27 00:00:00.000','1997-12-25 00:00:00.000','1997-12-15 00:00:00.000',1,8.19,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10758','RICSU',3,'1997-11-28 00:00:00.000','1997-12-26 00:00:00.000','1997-12-04 00:00:00.000',3,138.17,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10759','ANATR',3,'1997-11-28 00:00:00.000','1997-12-26 00:00:00.000','1997-12-12 00:00:00.000',3,11.99,'Ana Trujillo Emparedados y helados','Avda. de la Constitucin 2222','Mxico D.F.',NULL,'5021','Mexico'); +INSERT INTO Orders Values ('10760','MAISD',4,'1997-12-01 00:00:00.000','1997-12-29 00:00:00.000','1997-12-10 00:00:00.000',1,155.64,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10761','RATTC',5,'1997-12-02 00:00:00.000','1997-12-30 00:00:00.000','1997-12-08 00:00:00.000',2,18.66,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10762','FOLKO',3,'1997-12-02 00:00:00.000','1997-12-30 00:00:00.000','1997-12-09 00:00:00.000',1,328.74,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10763','FOLIG',3,'1997-12-03 00:00:00.000','1997-12-31 00:00:00.000','1997-12-08 00:00:00.000',3,37.35,'Folies gourmandes','184, chausse de Tournai','Lille',NULL,'59000','France'); +INSERT INTO Orders Values ('10764','ERNSH',6,'1997-12-03 00:00:00.000','1997-12-31 00:00:00.000','1997-12-08 00:00:00.000',3,145.45,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10765','QUICK',3,'1997-12-04 00:00:00.000','1998-01-01 00:00:00.000','1997-12-09 00:00:00.000',3,42.74,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10766','OTTIK',4,'1997-12-05 00:00:00.000','1998-01-02 00:00:00.000','1997-12-09 00:00:00.000',1,157.55,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10767','SUPRD',4,'1997-12-05 00:00:00.000','1998-01-02 00:00:00.000','1997-12-15 00:00:00.000',3,1.59,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10768','AROUT',3,'1997-12-08 00:00:00.000','1998-01-05 00:00:00.000','1997-12-15 00:00:00.000',2,146.32,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10769','VAFFE',3,'1997-12-08 00:00:00.000','1998-01-05 00:00:00.000','1997-12-12 00:00:00.000',1,65.06,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10770','HANAR',8,'1997-12-09 00:00:00.000','1998-01-06 00:00:00.000','1997-12-17 00:00:00.000',3,5.32,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10771','ERNSH',9,'1997-12-10 00:00:00.000','1998-01-07 00:00:00.000','1998-01-02 00:00:00.000',2,11.19,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10772','LEHMS',3,'1997-12-10 00:00:00.000','1998-01-07 00:00:00.000','1997-12-19 00:00:00.000',2,91.28,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10773','ERNSH',1,'1997-12-11 00:00:00.000','1998-01-08 00:00:00.000','1997-12-16 00:00:00.000',3,96.43,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10774','FOLKO',4,'1997-12-11 00:00:00.000','1997-12-25 00:00:00.000','1997-12-12 00:00:00.000',1,48.2,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10775','THECR',7,'1997-12-12 00:00:00.000','1998-01-09 00:00:00.000','1997-12-26 00:00:00.000',1,20.25,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','USA'); +INSERT INTO Orders Values ('10776','ERNSH',1,'1997-12-15 00:00:00.000','1998-01-12 00:00:00.000','1997-12-18 00:00:00.000',3,351.53,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10777','GOURL',7,'1997-12-15 00:00:00.000','1997-12-29 00:00:00.000','1998-01-21 00:00:00.000',2,3.01,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10778','BERGS',3,'1997-12-16 00:00:00.000','1998-01-13 00:00:00.000','1997-12-24 00:00:00.000',1,6.79,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10779','MORGK',3,'1997-12-16 00:00:00.000','1998-01-13 00:00:00.000','1998-01-14 00:00:00.000',2,58.13,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'4179','Germany'); +INSERT INTO Orders Values ('10780','LILAS',2,'1997-12-16 00:00:00.000','1997-12-30 00:00:00.000','1997-12-25 00:00:00.000',1,42.13,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10781','WARTH',2,'1997-12-17 00:00:00.000','1998-01-14 00:00:00.000','1997-12-19 00:00:00.000',3,73.16,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('10782','CACTU',9,'1997-12-17 00:00:00.000','1998-01-14 00:00:00.000','1997-12-22 00:00:00.000',3,1.1,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10783','HANAR',4,'1997-12-18 00:00:00.000','1998-01-15 00:00:00.000','1997-12-19 00:00:00.000',2,124.98,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10784','MAGAA',4,'1997-12-18 00:00:00.000','1998-01-15 00:00:00.000','1997-12-22 00:00:00.000',3,70.09,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10785','GROSR',1,'1997-12-18 00:00:00.000','1998-01-15 00:00:00.000','1997-12-24 00:00:00.000',3,1.51,'GROSELLA-Restaurante','5 Ave. Los Palos Grandes','Caracas','DF','1081','Venezuela'); +INSERT INTO Orders Values ('10786','QUEEN',8,'1997-12-19 00:00:00.000','1998-01-16 00:00:00.000','1997-12-23 00:00:00.000',1,110.87,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10787','LAMAI',2,'1997-12-19 00:00:00.000','1998-01-02 00:00:00.000','1997-12-26 00:00:00.000',1,249.93,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10788','QUICK',1,'1997-12-22 00:00:00.000','1998-01-19 00:00:00.000','1998-01-19 00:00:00.000',2,42.7,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10789','FOLIG',1,'1997-12-22 00:00:00.000','1998-01-19 00:00:00.000','1997-12-31 00:00:00.000',2,100.6,'Folies gourmandes','184, chausse de Tournai','Lille',NULL,'59000','France'); +INSERT INTO Orders Values ('10790','GOURL',6,'1997-12-22 00:00:00.000','1998-01-19 00:00:00.000','1997-12-26 00:00:00.000',1,28.23,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10791','FRANK',6,'1997-12-23 00:00:00.000','1998-01-20 00:00:00.000','1998-01-01 00:00:00.000',2,16.85,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10792','WOLZA',1,'1997-12-23 00:00:00.000','1998-01-20 00:00:00.000','1997-12-31 00:00:00.000',3,23.79,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10793','AROUT',3,'1997-12-24 00:00:00.000','1998-01-21 00:00:00.000','1998-01-08 00:00:00.000',3,4.52,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10794','QUEDE',6,'1997-12-24 00:00:00.000','1998-01-21 00:00:00.000','1998-01-02 00:00:00.000',1,21.49,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10795','ERNSH',8,'1997-12-24 00:00:00.000','1998-01-21 00:00:00.000','1998-01-20 00:00:00.000',2,126.66,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10796','HILAA',3,'1997-12-25 00:00:00.000','1998-01-22 00:00:00.000','1998-01-14 00:00:00.000',1,26.52,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10797','DRACD',7,'1997-12-25 00:00:00.000','1998-01-22 00:00:00.000','1998-01-05 00:00:00.000',2,33.35,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('10798','ISLAT',2,'1997-12-26 00:00:00.000','1998-01-23 00:00:00.000','1998-01-05 00:00:00.000',1,2.33,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10799','KOENE',9,'1997-12-26 00:00:00.000','1998-02-06 00:00:00.000','1998-01-05 00:00:00.000',3,30.76,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10800','SEVES',1,'1997-12-26 00:00:00.000','1998-01-23 00:00:00.000','1998-01-05 00:00:00.000',3,137.44,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10801','BOLID',4,'1997-12-29 00:00:00.000','1998-01-26 00:00:00.000','1997-12-31 00:00:00.000',2,97.09,'Blido Comidas preparadas','C/ Araquil, 67','Madrid',NULL,'28023','Spain'); +INSERT INTO Orders Values ('10802','SIMOB',4,'1997-12-29 00:00:00.000','1998-01-26 00:00:00.000','1998-01-02 00:00:00.000',2,257.26,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('10803','WELLI',4,'1997-12-30 00:00:00.000','1998-01-27 00:00:00.000','1998-01-06 00:00:00.000',1,55.23,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10804','SEVES',6,'1997-12-30 00:00:00.000','1998-01-27 00:00:00.000','1998-01-07 00:00:00.000',2,27.33,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10805','THEBI',2,'1997-12-30 00:00:00.000','1998-01-27 00:00:00.000','1998-01-09 00:00:00.000',3,237.34,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA'); +INSERT INTO Orders Values ('10806','VICTE',3,'1997-12-31 00:00:00.000','1998-01-28 00:00:00.000','1998-01-05 00:00:00.000',2,22.11,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10807','FRANS',4,'1997-12-31 00:00:00.000','1998-01-28 00:00:00.000','1998-01-30 00:00:00.000',1,1.36,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('10808','OLDWO',2,'1998-01-01 00:00:00.000','1998-01-29 00:00:00.000','1998-01-09 00:00:00.000',3,45.53,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10809','WELLI',7,'1998-01-01 00:00:00.000','1998-01-29 00:00:00.000','1998-01-07 00:00:00.000',1,4.87,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10810','LAUGB',2,'1998-01-01 00:00:00.000','1998-01-29 00:00:00.000','1998-01-07 00:00:00.000',3,4.33,'Laughing Bacchus Wine Cellars','2319 Elm St.','Vancouver','BC','V3F 2K1','Canada'); +INSERT INTO Orders Values ('10811','LINOD',8,'1998-01-02 00:00:00.000','1998-01-30 00:00:00.000','1998-01-08 00:00:00.000',1,31.22,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10812','REGGC',5,'1998-01-02 00:00:00.000','1998-01-30 00:00:00.000','1998-01-12 00:00:00.000',1,59.78,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10813','RICAR',1,'1998-01-05 00:00:00.000','1998-02-02 00:00:00.000','1998-01-09 00:00:00.000',1,47.38,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10814','VICTE',3,'1998-01-05 00:00:00.000','1998-02-02 00:00:00.000','1998-01-14 00:00:00.000',3,130.94,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10815','SAVEA',2,'1998-01-05 00:00:00.000','1998-02-02 00:00:00.000','1998-01-14 00:00:00.000',3,14.62,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10816','GREAL',4,'1998-01-06 00:00:00.000','1998-02-03 00:00:00.000','1998-02-04 00:00:00.000',2,719.78,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10817','KOENE',3,'1998-01-06 00:00:00.000','1998-01-20 00:00:00.000','1998-01-13 00:00:00.000',2,306.07,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10818','MAGAA',7,'1998-01-07 00:00:00.000','1998-02-04 00:00:00.000','1998-01-12 00:00:00.000',3,65.48,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10819','CACTU',2,'1998-01-07 00:00:00.000','1998-02-04 00:00:00.000','1998-01-16 00:00:00.000',3,19.76,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10820','RATTC',3,'1998-01-07 00:00:00.000','1998-02-04 00:00:00.000','1998-01-13 00:00:00.000',2,37.52,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10821','SPLIR',1,'1998-01-08 00:00:00.000','1998-02-05 00:00:00.000','1998-01-15 00:00:00.000',1,36.68,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10822','TRAIH',6,'1998-01-08 00:00:00.000','1998-02-05 00:00:00.000','1998-01-16 00:00:00.000',3,7,'Trail-s Head Gourmet Provisioners','722 DaVinci Blvd.','Kirkland','WA','98034','USA'); +INSERT INTO Orders Values ('10823','LILAS',5,'1998-01-09 00:00:00.000','1998-02-06 00:00:00.000','1998-01-13 00:00:00.000',2,163.97,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10824','FOLKO',8,'1998-01-09 00:00:00.000','1998-02-06 00:00:00.000','1998-01-30 00:00:00.000',1,1.23,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10825','DRACD',1,'1998-01-09 00:00:00.000','1998-02-06 00:00:00.000','1998-01-14 00:00:00.000',1,79.25,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('10826','BLONP',6,'1998-01-12 00:00:00.000','1998-02-09 00:00:00.000','1998-02-06 00:00:00.000',1,7.09,'Blondel pre et fils','24, place Klber','Strasbourg',NULL,'67000','France'); +INSERT INTO Orders Values ('10827','BONAP',1,'1998-01-12 00:00:00.000','1998-01-26 00:00:00.000','1998-02-06 00:00:00.000',2,63.54,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10828','RANCH',9,'1998-01-13 00:00:00.000','1998-01-27 00:00:00.000','1998-02-04 00:00:00.000',1,90.85,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10829','ISLAT',9,'1998-01-13 00:00:00.000','1998-02-10 00:00:00.000','1998-01-23 00:00:00.000',1,154.72,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10830','TRADH',4,'1998-01-13 00:00:00.000','1998-02-24 00:00:00.000','1998-01-21 00:00:00.000',2,81.83,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10831','SANTG',3,'1998-01-14 00:00:00.000','1998-02-11 00:00:00.000','1998-01-23 00:00:00.000',2,72.19,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('10832','LAMAI',2,'1998-01-14 00:00:00.000','1998-02-11 00:00:00.000','1998-01-19 00:00:00.000',2,43.26,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10833','OTTIK',6,'1998-01-15 00:00:00.000','1998-02-12 00:00:00.000','1998-01-23 00:00:00.000',2,71.49,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('10834','TRADH',1,'1998-01-15 00:00:00.000','1998-02-12 00:00:00.000','1998-01-19 00:00:00.000',3,29.78,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10835','ALFKI',1,'1998-01-15 00:00:00.000','1998-02-12 00:00:00.000','1998-01-21 00:00:00.000',3,69.53,'Alfred-s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('10836','ERNSH',7,'1998-01-16 00:00:00.000','1998-02-13 00:00:00.000','1998-01-21 00:00:00.000',1,411.88,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10837','BERGS',9,'1998-01-16 00:00:00.000','1998-02-13 00:00:00.000','1998-01-23 00:00:00.000',3,13.32,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10838','LINOD',3,'1998-01-19 00:00:00.000','1998-02-16 00:00:00.000','1998-01-23 00:00:00.000',3,59.28,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10839','TRADH',3,'1998-01-19 00:00:00.000','1998-02-16 00:00:00.000','1998-01-22 00:00:00.000',3,35.43,'Tradiao Hipermercados','Av. Ins de Castro, 414','Sao Paulo','SP','05634-030','Brazil'); +INSERT INTO Orders Values ('10840','LINOD',4,'1998-01-19 00:00:00.000','1998-03-02 00:00:00.000','1998-02-16 00:00:00.000',2,2.71,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10841','SUPRD',5,'1998-01-20 00:00:00.000','1998-02-17 00:00:00.000','1998-01-29 00:00:00.000',2,424.3,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10842','TORTU',1,'1998-01-20 00:00:00.000','1998-02-17 00:00:00.000','1998-01-29 00:00:00.000',3,54.42,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10843','VICTE',4,'1998-01-21 00:00:00.000','1998-02-18 00:00:00.000','1998-01-26 00:00:00.000',2,9.26,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10844','PICCO',8,'1998-01-21 00:00:00.000','1998-02-18 00:00:00.000','1998-01-26 00:00:00.000',2,25.22,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('10845','QUICK',8,'1998-01-21 00:00:00.000','1998-02-04 00:00:00.000','1998-01-30 00:00:00.000',1,212.98,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10846','SUPRD',2,'1998-01-22 00:00:00.000','1998-03-05 00:00:00.000','1998-01-23 00:00:00.000',3,56.46,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10847','SAVEA',4,'1998-01-22 00:00:00.000','1998-02-05 00:00:00.000','1998-02-10 00:00:00.000',3,487.57,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10848','CONSH',7,'1998-01-23 00:00:00.000','1998-02-20 00:00:00.000','1998-01-29 00:00:00.000',2,38.24,'Consolidated Holdings','Berkeley Gardens 12 Brewery','London',NULL,'WX1 6LT','UK'); +INSERT INTO Orders Values ('10849','KOENE',9,'1998-01-23 00:00:00.000','1998-02-20 00:00:00.000','1998-01-30 00:00:00.000',2,0.56,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10850','VICTE',1,'1998-01-23 00:00:00.000','1998-03-06 00:00:00.000','1998-01-30 00:00:00.000',1,49.19,'Victuailles en stock','2, rue du Commerce','Lyon',NULL,'69004','France'); +INSERT INTO Orders Values ('10851','RICAR',5,'1998-01-26 00:00:00.000','1998-02-23 00:00:00.000','1998-02-02 00:00:00.000',1,160.55,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10852','RATTC',8,'1998-01-26 00:00:00.000','1998-02-09 00:00:00.000','1998-01-30 00:00:00.000',1,174.05,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10853','BLAUS',9,'1998-01-27 00:00:00.000','1998-02-24 00:00:00.000','1998-02-03 00:00:00.000',2,53.83,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10854','ERNSH',3,'1998-01-27 00:00:00.000','1998-02-24 00:00:00.000','1998-02-05 00:00:00.000',2,100.22,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10855','OLDWO',3,'1998-01-27 00:00:00.000','1998-02-24 00:00:00.000','1998-02-04 00:00:00.000',1,170.97,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10856','ANTON',3,'1998-01-28 00:00:00.000','1998-02-25 00:00:00.000','1998-02-10 00:00:00.000',2,58.43,'Antonio Moreno Taquera','Mataderos 2312','Mxico D.F.',NULL,'5023','Mexico'); +INSERT INTO Orders Values ('10857','BERGS',8,'1998-01-28 00:00:00.000','1998-02-25 00:00:00.000','1998-02-06 00:00:00.000',2,188.85,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10858','LACOR',2,'1998-01-29 00:00:00.000','1998-02-26 00:00:00.000','1998-02-03 00:00:00.000',1,52.51,'La corne d-abondance','67, avenue de l-Europe','Versailles',NULL,'78000','France'); +INSERT INTO Orders Values ('10859','FRANK',1,'1998-01-29 00:00:00.000','1998-02-26 00:00:00.000','1998-02-02 00:00:00.000',2,76.1,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10860','FRANR',3,'1998-01-29 00:00:00.000','1998-02-26 00:00:00.000','1998-02-04 00:00:00.000',3,19.26,'France restauration','54, rue Royale','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10861','WHITC',4,'1998-01-30 00:00:00.000','1998-02-27 00:00:00.000','1998-02-17 00:00:00.000',2,14.93,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10862','LEHMS',8,'1998-01-30 00:00:00.000','1998-03-13 00:00:00.000','1998-02-02 00:00:00.000',2,53.23,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10863','HILAA',4,'1998-02-02 00:00:00.000','1998-03-02 00:00:00.000','1998-02-17 00:00:00.000',2,30.26,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10864','AROUT',4,'1998-02-02 00:00:00.000','1998-03-02 00:00:00.000','1998-02-09 00:00:00.000',2,3.04,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10865','QUICK',2,'1998-02-02 00:00:00.000','1998-02-16 00:00:00.000','1998-02-12 00:00:00.000',1,348.14,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10866','BERGS',5,'1998-02-03 00:00:00.000','1998-03-03 00:00:00.000','1998-02-12 00:00:00.000',1,109.11,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10867','LONEP',6,'1998-02-03 00:00:00.000','1998-03-17 00:00:00.000','1998-02-11 00:00:00.000',1,1.93,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10868','QUEEN',7,'1998-02-04 00:00:00.000','1998-03-04 00:00:00.000','1998-02-23 00:00:00.000',2,191.27,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10869','SEVES',5,'1998-02-04 00:00:00.000','1998-03-04 00:00:00.000','1998-02-09 00:00:00.000',1,143.28,'Seven Seas Imports','90 Wadhurst Rd.','London',NULL,'OX15 4NB','UK'); +INSERT INTO Orders Values ('10870','WOLZA',5,'1998-02-04 00:00:00.000','1998-03-04 00:00:00.000','1998-02-13 00:00:00.000',3,12.04,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10871','BONAP',9,'1998-02-05 00:00:00.000','1998-03-05 00:00:00.000','1998-02-10 00:00:00.000',2,112.27,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10872','GODOS',5,'1998-02-05 00:00:00.000','1998-03-05 00:00:00.000','1998-02-09 00:00:00.000',2,175.32,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10873','WILMK',4,'1998-02-06 00:00:00.000','1998-03-06 00:00:00.000','1998-02-09 00:00:00.000',1,0.82,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10874','GODOS',5,'1998-02-06 00:00:00.000','1998-03-06 00:00:00.000','1998-02-11 00:00:00.000',2,19.58,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10875','BERGS',4,'1998-02-06 00:00:00.000','1998-03-06 00:00:00.000','1998-03-03 00:00:00.000',2,32.37,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10876','BONAP',7,'1998-02-09 00:00:00.000','1998-03-09 00:00:00.000','1998-02-12 00:00:00.000',3,60.42,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10877','RICAR',1,'1998-02-09 00:00:00.000','1998-03-09 00:00:00.000','1998-02-19 00:00:00.000',1,38.06,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('10878','QUICK',4,'1998-02-10 00:00:00.000','1998-03-10 00:00:00.000','1998-02-12 00:00:00.000',1,46.69,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10879','WILMK',3,'1998-02-10 00:00:00.000','1998-03-10 00:00:00.000','1998-02-12 00:00:00.000',3,8.5,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10880','FOLKO',7,'1998-02-10 00:00:00.000','1998-03-24 00:00:00.000','1998-02-18 00:00:00.000',1,88.01,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10881','CACTU',4,'1998-02-11 00:00:00.000','1998-03-11 00:00:00.000','1998-02-18 00:00:00.000',1,2.84,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10882','SAVEA',4,'1998-02-11 00:00:00.000','1998-03-11 00:00:00.000','1998-02-20 00:00:00.000',3,23.1,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10883','LONEP',8,'1998-02-12 00:00:00.000','1998-03-12 00:00:00.000','1998-02-20 00:00:00.000',3,0.53,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('10884','LETSS',4,'1998-02-12 00:00:00.000','1998-03-12 00:00:00.000','1998-02-13 00:00:00.000',2,90.97,'Let-s Stop N Shop','87 Polk St. Suite 5','San Francisco','CA','94117','USA'); +INSERT INTO Orders Values ('10885','SUPRD',6,'1998-02-12 00:00:00.000','1998-03-12 00:00:00.000','1998-02-18 00:00:00.000',3,5.64,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10886','HANAR',1,'1998-02-13 00:00:00.000','1998-03-13 00:00:00.000','1998-03-02 00:00:00.000',1,4.99,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10887','GALED',8,'1998-02-13 00:00:00.000','1998-03-13 00:00:00.000','1998-02-16 00:00:00.000',3,1.25,'Galera del gastronmo','Rambla de Catalua, 23','Barcelona',NULL,'8022','Spain'); +INSERT INTO Orders Values ('10888','GODOS',1,'1998-02-16 00:00:00.000','1998-03-16 00:00:00.000','1998-02-23 00:00:00.000',2,51.87,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10889','RATTC',9,'1998-02-16 00:00:00.000','1998-03-16 00:00:00.000','1998-02-23 00:00:00.000',3,280.61,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10890','DUMON',7,'1998-02-16 00:00:00.000','1998-03-16 00:00:00.000','1998-02-18 00:00:00.000',1,32.76,'Du monde entier','67, rue des Cinquante Otages','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10891','LEHMS',7,'1998-02-17 00:00:00.000','1998-03-17 00:00:00.000','1998-02-19 00:00:00.000',2,20.37,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10892','MAISD',4,'1998-02-17 00:00:00.000','1998-03-17 00:00:00.000','1998-02-19 00:00:00.000',2,120.27,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10893','KOENE',9,'1998-02-18 00:00:00.000','1998-03-18 00:00:00.000','1998-02-20 00:00:00.000',2,77.78,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('10894','SAVEA',1,'1998-02-18 00:00:00.000','1998-03-18 00:00:00.000','1998-02-20 00:00:00.000',1,116.13,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10895','ERNSH',3,'1998-02-18 00:00:00.000','1998-03-18 00:00:00.000','1998-02-23 00:00:00.000',1,162.75,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10896','MAISD',7,'1998-02-19 00:00:00.000','1998-03-19 00:00:00.000','1998-02-27 00:00:00.000',3,32.45,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10897','HUNGO',3,'1998-02-19 00:00:00.000','1998-03-19 00:00:00.000','1998-02-25 00:00:00.000',2,603.54,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10898','OCEAN',4,'1998-02-20 00:00:00.000','1998-03-20 00:00:00.000','1998-03-06 00:00:00.000',2,1.27,'Ocano Atlntico Ltda.','Ing. Gustavo Moncada 8585 Piso 20-A','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10899','LILAS',5,'1998-02-20 00:00:00.000','1998-03-20 00:00:00.000','1998-02-26 00:00:00.000',3,1.21,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10900','WELLI',1,'1998-02-20 00:00:00.000','1998-03-20 00:00:00.000','1998-03-04 00:00:00.000',2,1.66,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10901','HILAA',4,'1998-02-23 00:00:00.000','1998-03-23 00:00:00.000','1998-02-26 00:00:00.000',1,62.09,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10902','FOLKO',1,'1998-02-23 00:00:00.000','1998-03-23 00:00:00.000','1998-03-03 00:00:00.000',1,44.15,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10903','HANAR',3,'1998-02-24 00:00:00.000','1998-03-24 00:00:00.000','1998-03-04 00:00:00.000',3,36.71,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10904','WHITC',3,'1998-02-24 00:00:00.000','1998-03-24 00:00:00.000','1998-02-27 00:00:00.000',3,162.95,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('10905','WELLI',9,'1998-02-24 00:00:00.000','1998-03-24 00:00:00.000','1998-03-06 00:00:00.000',2,13.72,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10906','WOLZA',4,'1998-02-25 00:00:00.000','1998-03-11 00:00:00.000','1998-03-03 00:00:00.000',3,26.29,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10907','SPECD',6,'1998-02-25 00:00:00.000','1998-03-25 00:00:00.000','1998-02-27 00:00:00.000',3,9.19,'Spcialits du monde','25, rue Lauriston','Paris',NULL,'75016','France'); +INSERT INTO Orders Values ('10908','REGGC',4,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-06 00:00:00.000',2,32.96,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10909','SANTG',1,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-10 00:00:00.000',2,53.05,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('10910','WILMK',1,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-04 00:00:00.000',3,38.11,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('10911','GODOS',3,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-05 00:00:00.000',1,38.19,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10912','HUNGO',2,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-18 00:00:00.000',2,580.91,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10913','QUEEN',4,'1998-02-26 00:00:00.000','1998-03-26 00:00:00.000','1998-03-04 00:00:00.000',1,33.05,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10914','QUEEN',6,'1998-02-27 00:00:00.000','1998-03-27 00:00:00.000','1998-03-02 00:00:00.000',1,21.19,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10915','TORTU',2,'1998-02-27 00:00:00.000','1998-03-27 00:00:00.000','1998-03-02 00:00:00.000',2,3.51,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10916','RANCH',1,'1998-02-27 00:00:00.000','1998-03-27 00:00:00.000','1998-03-09 00:00:00.000',2,63.77,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10917','ROMEY',4,'1998-03-02 00:00:00.000','1998-03-30 00:00:00.000','1998-03-11 00:00:00.000',2,8.29,'Romero y tomillo','Gran Va, 1','Madrid',NULL,'28001','Spain'); +INSERT INTO Orders Values ('10918','BOTTM',3,'1998-03-02 00:00:00.000','1998-03-30 00:00:00.000','1998-03-11 00:00:00.000',3,48.83,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10919','LINOD',2,'1998-03-02 00:00:00.000','1998-03-30 00:00:00.000','1998-03-04 00:00:00.000',2,19.8,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10920','AROUT',4,'1998-03-03 00:00:00.000','1998-03-31 00:00:00.000','1998-03-09 00:00:00.000',2,29.61,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10921','VAFFE',1,'1998-03-03 00:00:00.000','1998-04-14 00:00:00.000','1998-03-09 00:00:00.000',1,176.48,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10922','HANAR',5,'1998-03-03 00:00:00.000','1998-03-31 00:00:00.000','1998-03-05 00:00:00.000',3,62.74,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10923','LAMAI',7,'1998-03-03 00:00:00.000','1998-04-14 00:00:00.000','1998-03-13 00:00:00.000',3,68.26,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('10924','BERGS',3,'1998-03-04 00:00:00.000','1998-04-01 00:00:00.000','1998-04-08 00:00:00.000',2,151.52,'Berglunds snabbkp','Berguvsvgen 8','Lule',NULL,'S-958 22','Sweden'); +INSERT INTO Orders Values ('10925','HANAR',3,'1998-03-04 00:00:00.000','1998-04-01 00:00:00.000','1998-03-13 00:00:00.000',1,2.27,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10926','ANATR',4,'1998-03-04 00:00:00.000','1998-04-01 00:00:00.000','1998-03-11 00:00:00.000',3,39.92,'Ana Trujillo Emparedados y helados','Avda. de la Constitucin 2222','Mxico D.F.',NULL,'5021','Mexico'); +INSERT INTO Orders Values ('10927','LACOR',4,'1998-03-05 00:00:00.000','1998-04-02 00:00:00.000','1998-04-08 00:00:00.000',1,19.79,'La corne d-abondance','67, avenue de l-Europe','Versailles',NULL,'78000','France'); +INSERT INTO Orders Values ('10928','GALED',1,'1998-03-05 00:00:00.000','1998-04-02 00:00:00.000','1998-03-18 00:00:00.000',1,1.36,'Galera del gastronmo','Rambla de Catalua, 23','Barcelona',NULL,'8022','Spain'); +INSERT INTO Orders Values ('10929','FRANK',6,'1998-03-05 00:00:00.000','1998-04-02 00:00:00.000','1998-03-12 00:00:00.000',1,33.93,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('10930','SUPRD',4,'1998-03-06 00:00:00.000','1998-04-17 00:00:00.000','1998-03-18 00:00:00.000',3,15.55,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('10931','RICSU',4,'1998-03-06 00:00:00.000','1998-03-20 00:00:00.000','1998-03-19 00:00:00.000',2,13.6,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10932','BONAP',8,'1998-03-06 00:00:00.000','1998-04-03 00:00:00.000','1998-03-24 00:00:00.000',1,134.64,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10933','ISLAT',6,'1998-03-06 00:00:00.000','1998-04-03 00:00:00.000','1998-03-16 00:00:00.000',3,54.15,'Island Trading','Garden House Crowther Way','Cowes','Isle of Wight','PO31 7PJ','UK'); +INSERT INTO Orders Values ('10934','LEHMS',3,'1998-03-09 00:00:00.000','1998-04-06 00:00:00.000','1998-03-12 00:00:00.000',3,32.01,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('10935','WELLI',4,'1998-03-09 00:00:00.000','1998-04-06 00:00:00.000','1998-03-18 00:00:00.000',3,47.59,'Wellington Importadora','Rua do Mercado, 12','Resende','SP','08737-363','Brazil'); +INSERT INTO Orders Values ('10936','GREAL',3,'1998-03-09 00:00:00.000','1998-04-06 00:00:00.000','1998-03-18 00:00:00.000',2,33.68,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('10937','CACTU',7,'1998-03-10 00:00:00.000','1998-03-24 00:00:00.000','1998-03-13 00:00:00.000',3,31.51,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10938','QUICK',3,'1998-03-10 00:00:00.000','1998-04-07 00:00:00.000','1998-03-16 00:00:00.000',2,31.89,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10939','MAGAA',2,'1998-03-10 00:00:00.000','1998-04-07 00:00:00.000','1998-03-13 00:00:00.000',2,76.33,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10940','BONAP',8,'1998-03-11 00:00:00.000','1998-04-08 00:00:00.000','1998-03-23 00:00:00.000',3,19.77,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('10941','SAVEA',7,'1998-03-11 00:00:00.000','1998-04-08 00:00:00.000','1998-03-20 00:00:00.000',2,400.81,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10942','REGGC',9,'1998-03-11 00:00:00.000','1998-04-08 00:00:00.000','1998-03-18 00:00:00.000',3,17.95,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('10943','BSBEV',4,'1998-03-11 00:00:00.000','1998-04-08 00:00:00.000','1998-03-19 00:00:00.000',2,2.17,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10944','BOTTM',6,'1998-03-12 00:00:00.000','1998-03-26 00:00:00.000','1998-03-13 00:00:00.000',3,52.92,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10945','MORGK',4,'1998-03-12 00:00:00.000','1998-04-09 00:00:00.000','1998-03-18 00:00:00.000',1,10.22,'Morgenstern Gesundkost','Heerstr. 22','Leipzig',NULL,'4179','Germany'); +INSERT INTO Orders Values ('10946','VAFFE',1,'1998-03-12 00:00:00.000','1998-04-09 00:00:00.000','1998-03-19 00:00:00.000',2,27.2,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10947','BSBEV',3,'1998-03-13 00:00:00.000','1998-04-10 00:00:00.000','1998-03-16 00:00:00.000',2,3.26,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('10948','GODOS',3,'1998-03-13 00:00:00.000','1998-04-10 00:00:00.000','1998-03-19 00:00:00.000',3,23.39,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('10949','BOTTM',2,'1998-03-13 00:00:00.000','1998-04-10 00:00:00.000','1998-03-17 00:00:00.000',3,74.44,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10950','MAGAA',1,'1998-03-16 00:00:00.000','1998-04-13 00:00:00.000','1998-03-23 00:00:00.000',2,2.5,'Magazzini Alimentari Riuniti','Via Ludovico il Moro 22','Bergamo',NULL,'24100','Italy'); +INSERT INTO Orders Values ('10951','RICSU',9,'1998-03-16 00:00:00.000','1998-04-27 00:00:00.000','1998-04-07 00:00:00.000',2,30.85,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('10952','ALFKI',1,'1998-03-16 00:00:00.000','1998-04-27 00:00:00.000','1998-03-24 00:00:00.000',1,40.42,'Alfred-s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('10953','AROUT',9,'1998-03-16 00:00:00.000','1998-03-30 00:00:00.000','1998-03-25 00:00:00.000',2,23.72,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('10954','LINOD',5,'1998-03-17 00:00:00.000','1998-04-28 00:00:00.000','1998-03-20 00:00:00.000',1,27.91,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('10955','FOLKO',8,'1998-03-17 00:00:00.000','1998-04-14 00:00:00.000','1998-03-20 00:00:00.000',2,3.26,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10956','BLAUS',6,'1998-03-17 00:00:00.000','1998-04-28 00:00:00.000','1998-03-20 00:00:00.000',2,44.65,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('10957','HILAA',8,'1998-03-18 00:00:00.000','1998-04-15 00:00:00.000','1998-03-27 00:00:00.000',3,105.36,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10958','OCEAN',7,'1998-03-18 00:00:00.000','1998-04-15 00:00:00.000','1998-03-27 00:00:00.000',2,49.56,'Ocano Atlntico Ltda.','Ing. Gustavo Moncada 8585 Piso 20-A','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10959','GOURL',6,'1998-03-18 00:00:00.000','1998-04-29 00:00:00.000','1998-03-23 00:00:00.000',2,4.98,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('10960','HILAA',3,'1998-03-19 00:00:00.000','1998-04-02 00:00:00.000','1998-04-08 00:00:00.000',1,2.08,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10961','QUEEN',8,'1998-03-19 00:00:00.000','1998-04-16 00:00:00.000','1998-03-30 00:00:00.000',1,104.47,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('10962','QUICK',8,'1998-03-19 00:00:00.000','1998-04-16 00:00:00.000','1998-03-23 00:00:00.000',2,275.79,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10963','FURIB',9,'1998-03-19 00:00:00.000','1998-04-16 00:00:00.000','1998-03-26 00:00:00.000',3,2.7,'Furia Bacalhau e Frutos do Mar','Jardim das rosas n. 32','Lisboa',NULL,'1675','Portugal'); +INSERT INTO Orders Values ('10964','SPECD',3,'1998-03-20 00:00:00.000','1998-04-17 00:00:00.000','1998-03-24 00:00:00.000',2,87.38,'Spcialits du monde','25, rue Lauriston','Paris',NULL,'75016','France'); +INSERT INTO Orders Values ('10965','OLDWO',6,'1998-03-20 00:00:00.000','1998-04-17 00:00:00.000','1998-03-30 00:00:00.000',3,144.38,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('10966','CHOPS',4,'1998-03-20 00:00:00.000','1998-04-17 00:00:00.000','1998-04-08 00:00:00.000',1,27.19,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('10967','TOMSP',2,'1998-03-23 00:00:00.000','1998-04-20 00:00:00.000','1998-04-02 00:00:00.000',2,62.22,'Toms Spezialitten','Luisenstr. 48','Mnster',NULL,'44087','Germany'); +INSERT INTO Orders Values ('10968','ERNSH',1,'1998-03-23 00:00:00.000','1998-04-20 00:00:00.000','1998-04-01 00:00:00.000',3,74.6,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10969','COMMI',1,'1998-03-23 00:00:00.000','1998-04-20 00:00:00.000','1998-03-30 00:00:00.000',2,0.21,'Comrcio Mineiro','Av. dos Lusadas, 23','Sao Paulo','SP','05432-043','Brazil'); +INSERT INTO Orders Values ('10970','BOLID',9,'1998-03-24 00:00:00.000','1998-04-07 00:00:00.000','1998-04-24 00:00:00.000',1,16.16,'Blido Comidas preparadas','C/ Araquil, 67','Madrid',NULL,'28023','Spain'); +INSERT INTO Orders Values ('10971','FRANR',2,'1998-03-24 00:00:00.000','1998-04-21 00:00:00.000','1998-04-02 00:00:00.000',2,121.82,'France restauration','54, rue Royale','Nantes',NULL,'44000','France'); +INSERT INTO Orders Values ('10972','LACOR',4,'1998-03-24 00:00:00.000','1998-04-21 00:00:00.000','1998-03-26 00:00:00.000',2,0.02,'La corne d-abondance','67, avenue de l-Europe','Versailles',NULL,'78000','France'); +INSERT INTO Orders Values ('10973','LACOR',6,'1998-03-24 00:00:00.000','1998-04-21 00:00:00.000','1998-03-27 00:00:00.000',2,15.17,'La corne d-abondance','67, avenue de l-Europe','Versailles',NULL,'78000','France'); +INSERT INTO Orders Values ('10974','SPLIR',3,'1998-03-25 00:00:00.000','1998-04-08 00:00:00.000','1998-04-03 00:00:00.000',3,12.96,'Split Rail Beer & Ale','P.O. Box 555','Lander','WY','82520','USA'); +INSERT INTO Orders Values ('10975','BOTTM',1,'1998-03-25 00:00:00.000','1998-04-22 00:00:00.000','1998-03-27 00:00:00.000',3,32.27,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10976','HILAA',1,'1998-03-25 00:00:00.000','1998-05-06 00:00:00.000','1998-04-03 00:00:00.000',1,37.97,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('10977','FOLKO',8,'1998-03-26 00:00:00.000','1998-04-23 00:00:00.000','1998-04-10 00:00:00.000',3,208.5,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10978','MAISD',9,'1998-03-26 00:00:00.000','1998-04-23 00:00:00.000','1998-04-23 00:00:00.000',2,32.82,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('10979','ERNSH',8,'1998-03-26 00:00:00.000','1998-04-23 00:00:00.000','1998-03-31 00:00:00.000',2,353.07,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10980','FOLKO',4,'1998-03-27 00:00:00.000','1998-05-08 00:00:00.000','1998-04-17 00:00:00.000',1,1.26,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10981','HANAR',1,'1998-03-27 00:00:00.000','1998-04-24 00:00:00.000','1998-04-02 00:00:00.000',2,193.37,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('10982','BOTTM',2,'1998-03-27 00:00:00.000','1998-04-24 00:00:00.000','1998-04-08 00:00:00.000',1,14.01,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('10983','SAVEA',2,'1998-03-27 00:00:00.000','1998-04-24 00:00:00.000','1998-04-06 00:00:00.000',2,657.54,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10984','SAVEA',1,'1998-03-30 00:00:00.000','1998-04-27 00:00:00.000','1998-04-03 00:00:00.000',3,211.22,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('10985','HUNGO',2,'1998-03-30 00:00:00.000','1998-04-27 00:00:00.000','1998-04-02 00:00:00.000',1,91.51,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('10986','OCEAN',8,'1998-03-30 00:00:00.000','1998-04-27 00:00:00.000','1998-04-21 00:00:00.000',2,217.86,'Ocano Atlntico Ltda.','Ing. Gustavo Moncada 8585 Piso 20-A','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('10987','EASTC',8,'1998-03-31 00:00:00.000','1998-04-28 00:00:00.000','1998-04-06 00:00:00.000',1,185.48,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('10988','RATTC',3,'1998-03-31 00:00:00.000','1998-04-28 00:00:00.000','1998-04-10 00:00:00.000',2,61.14,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('10989','QUEDE',2,'1998-03-31 00:00:00.000','1998-04-28 00:00:00.000','1998-04-02 00:00:00.000',1,34.76,'Que Delcia','Rua da Panificadora, 12','Rio de Janeiro','RJ','02389-673','Brazil'); +INSERT INTO Orders Values ('10990','ERNSH',2,'1998-04-01 00:00:00.000','1998-05-13 00:00:00.000','1998-04-07 00:00:00.000',3,117.61,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('10991','QUICK',1,'1998-04-01 00:00:00.000','1998-04-29 00:00:00.000','1998-04-07 00:00:00.000',1,38.51,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10992','THEBI',1,'1998-04-01 00:00:00.000','1998-04-29 00:00:00.000','1998-04-03 00:00:00.000',3,4.27,'The Big Cheese','89 Jefferson Way Suite 2','Portland','OR','97201','USA'); +INSERT INTO Orders Values ('10993','FOLKO',7,'1998-04-01 00:00:00.000','1998-04-29 00:00:00.000','1998-04-10 00:00:00.000',3,8.81,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('10994','VAFFE',2,'1998-04-02 00:00:00.000','1998-04-16 00:00:00.000','1998-04-09 00:00:00.000',3,65.53,'Vaffeljernet','Smagsloget 45','rhus',NULL,'8200','Denmark'); +INSERT INTO Orders Values ('10995','PERIC',1,'1998-04-02 00:00:00.000','1998-04-30 00:00:00.000','1998-04-06 00:00:00.000',3,46,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('10996','QUICK',4,'1998-04-02 00:00:00.000','1998-04-30 00:00:00.000','1998-04-10 00:00:00.000',2,1.12,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('10997','LILAS',8,'1998-04-03 00:00:00.000','1998-05-15 00:00:00.000','1998-04-13 00:00:00.000',2,73.91,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('10998','WOLZA',8,'1998-04-03 00:00:00.000','1998-04-17 00:00:00.000','1998-04-17 00:00:00.000',2,20.31,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('10999','OTTIK',6,'1998-04-03 00:00:00.000','1998-05-01 00:00:00.000','1998-04-10 00:00:00.000',2,96.35,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('11000','RATTC',2,'1998-04-06 00:00:00.000','1998-05-04 00:00:00.000','1998-04-14 00:00:00.000',3,55.12,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); +INSERT INTO Orders Values ('11001','FOLKO',2,'1998-04-06 00:00:00.000','1998-05-04 00:00:00.000','1998-04-14 00:00:00.000',2,197.3,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('11002','SAVEA',4,'1998-04-06 00:00:00.000','1998-05-04 00:00:00.000','1998-04-16 00:00:00.000',1,141.16,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('11003','THECR',3,'1998-04-06 00:00:00.000','1998-05-04 00:00:00.000','1998-04-08 00:00:00.000',3,14.91,'The Cracker Box','55 Grizzly Peak Rd.','Butte','MT','59801','USA'); +INSERT INTO Orders Values ('11004','MAISD',3,'1998-04-07 00:00:00.000','1998-05-05 00:00:00.000','1998-04-20 00:00:00.000',1,44.84,'Maison Dewey','Rue Joseph-Bens 532','Bruxelles',NULL,'B-1180','Belgium'); +INSERT INTO Orders Values ('11005','WILMK',2,'1998-04-07 00:00:00.000','1998-05-05 00:00:00.000','1998-04-10 00:00:00.000',1,0.75,'Wilman Kala','Keskuskatu 45','Helsinki',NULL,'21240','Finland'); +INSERT INTO Orders Values ('11006','GREAL',3,'1998-04-07 00:00:00.000','1998-05-05 00:00:00.000','1998-04-15 00:00:00.000',2,25.19,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('11007','PRINI',8,'1998-04-08 00:00:00.000','1998-05-06 00:00:00.000','1998-04-13 00:00:00.000',2,202.24,'Princesa Isabel Vinhos','Estrada da sade n. 58','Lisboa',NULL,'1756','Portugal'); +INSERT INTO Orders Values ('11008','ERNSH',7,'1998-04-08 00:00:00.000','1998-05-06 00:00:00.000',NULL,3,79.46,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('11009','GODOS',2,'1998-04-08 00:00:00.000','1998-05-06 00:00:00.000','1998-04-10 00:00:00.000',1,59.11,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('11010','REGGC',2,'1998-04-09 00:00:00.000','1998-05-07 00:00:00.000','1998-04-21 00:00:00.000',2,28.71,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('11011','ALFKI',3,'1998-04-09 00:00:00.000','1998-05-07 00:00:00.000','1998-04-13 00:00:00.000',1,1.21,'Alfred-s Futterkiste','Obere Str. 57','Berlin',NULL,'12209','Germany'); +INSERT INTO Orders Values ('11012','FRANK',1,'1998-04-09 00:00:00.000','1998-04-23 00:00:00.000','1998-04-17 00:00:00.000',3,242.95,'Frankenversand','Berliner Platz 43','Mnchen',NULL,'80805','Germany'); +INSERT INTO Orders Values ('11013','ROMEY',2,'1998-04-09 00:00:00.000','1998-05-07 00:00:00.000','1998-04-10 00:00:00.000',1,32.99,'Romero y tomillo','Gran Va, 1','Madrid',NULL,'28001','Spain'); +INSERT INTO Orders Values ('11014','LINOD',2,'1998-04-10 00:00:00.000','1998-05-08 00:00:00.000','1998-04-15 00:00:00.000',3,23.6,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('11015','SANTG',2,'1998-04-10 00:00:00.000','1998-04-24 00:00:00.000','1998-04-20 00:00:00.000',2,4.62,'Sant Gourmet','Erling Skakkes gate 78','Stavern',NULL,'4110','Norway'); +INSERT INTO Orders Values ('11016','AROUT',9,'1998-04-10 00:00:00.000','1998-05-08 00:00:00.000','1998-04-13 00:00:00.000',2,33.8,'Around the Horn','Brook Farm Stratford St. Mary','Colchester','Essex','CO7 6JX','UK'); +INSERT INTO Orders Values ('11017','ERNSH',9,'1998-04-13 00:00:00.000','1998-05-11 00:00:00.000','1998-04-20 00:00:00.000',2,754.26,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('11018','LONEP',4,'1998-04-13 00:00:00.000','1998-05-11 00:00:00.000','1998-04-16 00:00:00.000',2,11.65,'Lonesome Pine Restaurant','89 Chiaroscuro Rd.','Portland','OR','97219','USA'); +INSERT INTO Orders Values ('11019','RANCH',6,'1998-04-13 00:00:00.000','1998-05-11 00:00:00.000',NULL,3,3.17,'Rancho grande','Av. del Libertador 900','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('11020','OTTIK',2,'1998-04-14 00:00:00.000','1998-05-12 00:00:00.000','1998-04-16 00:00:00.000',2,43.3,'Ottilies Kseladen','Mehrheimerstr. 369','Kln',NULL,'50739','Germany'); +INSERT INTO Orders Values ('11021','QUICK',3,'1998-04-14 00:00:00.000','1998-05-12 00:00:00.000','1998-04-21 00:00:00.000',1,297.18,'QUICK-Stop','Taucherstrae 10','Cunewalde',NULL,'1307','Germany'); +INSERT INTO Orders Values ('11022','HANAR',9,'1998-04-14 00:00:00.000','1998-05-12 00:00:00.000','1998-05-04 00:00:00.000',2,6.27,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('11023','BSBEV',1,'1998-04-14 00:00:00.000','1998-04-28 00:00:00.000','1998-04-24 00:00:00.000',2,123.83,'B-s Beverages','Fauntleroy Circus','London',NULL,'EC2 5NT','UK'); +INSERT INTO Orders Values ('11024','EASTC',4,'1998-04-15 00:00:00.000','1998-05-13 00:00:00.000','1998-04-20 00:00:00.000',1,74.36,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('11025','WARTH',6,'1998-04-15 00:00:00.000','1998-05-13 00:00:00.000','1998-04-24 00:00:00.000',3,29.17,'Wartian Herkku','Torikatu 38','Oulu',NULL,'90110','Finland'); +INSERT INTO Orders Values ('11026','FRANS',4,'1998-04-15 00:00:00.000','1998-05-13 00:00:00.000','1998-04-28 00:00:00.000',1,47.09,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('11027','BOTTM',1,'1998-04-16 00:00:00.000','1998-05-14 00:00:00.000','1998-04-20 00:00:00.000',1,52.52,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('11028','KOENE',2,'1998-04-16 00:00:00.000','1998-05-14 00:00:00.000','1998-04-22 00:00:00.000',1,29.59,'Kniglich Essen','Maubelstr. 90','Brandenburg',NULL,'14776','Germany'); +INSERT INTO Orders Values ('11029','CHOPS',4,'1998-04-16 00:00:00.000','1998-05-14 00:00:00.000','1998-04-27 00:00:00.000',1,47.84,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('11030','SAVEA',7,'1998-04-17 00:00:00.000','1998-05-15 00:00:00.000','1998-04-27 00:00:00.000',2,830.75,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('11031','SAVEA',6,'1998-04-17 00:00:00.000','1998-05-15 00:00:00.000','1998-04-24 00:00:00.000',2,227.22,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('11032','WHITC',2,'1998-04-17 00:00:00.000','1998-05-15 00:00:00.000','1998-04-23 00:00:00.000',3,606.19,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('11033','RICSU',7,'1998-04-17 00:00:00.000','1998-05-15 00:00:00.000','1998-04-23 00:00:00.000',3,84.74,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('11034','OLDWO',8,'1998-04-20 00:00:00.000','1998-06-01 00:00:00.000','1998-04-27 00:00:00.000',1,40.32,'Old World Delicatessen','2743 Bering St.','Anchorage','AK','99508','USA'); +INSERT INTO Orders Values ('11035','SUPRD',2,'1998-04-20 00:00:00.000','1998-05-18 00:00:00.000','1998-04-24 00:00:00.000',2,0.17,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('11036','DRACD',8,'1998-04-20 00:00:00.000','1998-05-18 00:00:00.000','1998-04-22 00:00:00.000',3,149.47,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('11037','GODOS',7,'1998-04-21 00:00:00.000','1998-05-19 00:00:00.000','1998-04-27 00:00:00.000',1,3.2,'Godos Cocina Tpica','C/ Romero, 33','Sevilla',NULL,'41101','Spain'); +INSERT INTO Orders Values ('11038','SUPRD',1,'1998-04-21 00:00:00.000','1998-05-19 00:00:00.000','1998-04-30 00:00:00.000',2,29.59,'Suprmes dlices','Boulevard Tirou, 255','Charleroi',NULL,'B-6000','Belgium'); +INSERT INTO Orders Values ('11039','LINOD',1,'1998-04-21 00:00:00.000','1998-05-19 00:00:00.000',NULL,2,65,'LINO-Delicateses','Ave. 5 de Mayo Porlamar','I. de Margarita','Nueva Esparta','4980','Venezuela'); +INSERT INTO Orders Values ('11040','GREAL',4,'1998-04-22 00:00:00.000','1998-05-20 00:00:00.000',NULL,3,18.84,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('11041','CHOPS',3,'1998-04-22 00:00:00.000','1998-05-20 00:00:00.000','1998-04-28 00:00:00.000',2,48.22,'Chop-suey Chinese','Hauptstr. 31','Bern',NULL,'3012','Switzerland'); +INSERT INTO Orders Values ('11042','COMMI',2,'1998-04-22 00:00:00.000','1998-05-06 00:00:00.000','1998-05-01 00:00:00.000',1,29.99,'Comrcio Mineiro','Av. dos Lusadas, 23','Sao Paulo','SP','05432-043','Brazil'); +INSERT INTO Orders Values ('11043','SPECD',5,'1998-04-22 00:00:00.000','1998-05-20 00:00:00.000','1998-04-29 00:00:00.000',2,8.8,'Spcialits du monde','25, rue Lauriston','Paris',NULL,'75016','France'); +INSERT INTO Orders Values ('11044','WOLZA',4,'1998-04-23 00:00:00.000','1998-05-21 00:00:00.000','1998-05-01 00:00:00.000',1,8.72,'Wolski Zajazd','ul. Filtrowa 68','Warszawa',NULL,'01-012','Poland'); +INSERT INTO Orders Values ('11045','BOTTM',6,'1998-04-23 00:00:00.000','1998-05-21 00:00:00.000',NULL,2,70.58,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('11046','WANDK',8,'1998-04-23 00:00:00.000','1998-05-21 00:00:00.000','1998-04-24 00:00:00.000',2,71.64,'Die Wandernde Kuh','Adenauerallee 900','Stuttgart',NULL,'70563','Germany'); +INSERT INTO Orders Values ('11047','EASTC',7,'1998-04-24 00:00:00.000','1998-05-22 00:00:00.000','1998-05-01 00:00:00.000',3,46.62,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('11048','BOTTM',7,'1998-04-24 00:00:00.000','1998-05-22 00:00:00.000','1998-04-30 00:00:00.000',3,24.12,'Bottom-Dollar Markets','23 Tsawassen Blvd.','Tsawassen','BC','T2F 8M4','Canada'); +INSERT INTO Orders Values ('11049','GOURL',3,'1998-04-24 00:00:00.000','1998-05-22 00:00:00.000','1998-05-04 00:00:00.000',1,8.34,'Gourmet Lanchonetes','Av. Brasil, 442','Campinas','SP','04876-786','Brazil'); +INSERT INTO Orders Values ('11050','FOLKO',8,'1998-04-27 00:00:00.000','1998-05-25 00:00:00.000','1998-05-05 00:00:00.000',2,59.41,'Folk och f HB','kergatan 24','Brcke',NULL,'S-844 67','Sweden'); +INSERT INTO Orders Values ('11051','LAMAI',7,'1998-04-27 00:00:00.000','1998-05-25 00:00:00.000',NULL,3,2.79,'La maison d-Asie','1 rue Alsace-Lorraine','Toulouse',NULL,'31000','France'); +INSERT INTO Orders Values ('11052','HANAR',3,'1998-04-27 00:00:00.000','1998-05-25 00:00:00.000','1998-05-01 00:00:00.000',1,67.26,'Hanari Carnes','Rua do Pao, 67','Rio de Janeiro','RJ','05454-876','Brazil'); +INSERT INTO Orders Values ('11053','PICCO',2,'1998-04-27 00:00:00.000','1998-05-25 00:00:00.000','1998-04-29 00:00:00.000',2,53.05,'Piccolo und mehr','Geislweg 14','Salzburg',NULL,'5020','Austria'); +INSERT INTO Orders Values ('11054','CACTU',8,'1998-04-28 00:00:00.000','1998-05-26 00:00:00.000',NULL,1,0.33,'Cactus Comidas para llevar','Cerrito 333','Buenos Aires',NULL,'1010','Argentina'); +INSERT INTO Orders Values ('11055','HILAA',7,'1998-04-28 00:00:00.000','1998-05-26 00:00:00.000','1998-05-05 00:00:00.000',2,120.92,'HILARION-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristbal','Tchira','5022','Venezuela'); +INSERT INTO Orders Values ('11056','EASTC',8,'1998-04-28 00:00:00.000','1998-05-12 00:00:00.000','1998-05-01 00:00:00.000',2,278.96,'Eastern Connection','35 King George','London',NULL,'WX3 6FW','UK'); +INSERT INTO Orders Values ('11057','NORTS',3,'1998-04-29 00:00:00.000','1998-05-27 00:00:00.000','1998-05-01 00:00:00.000',3,4.13,'North/South','South House 300 Queensbridge','London',NULL,'SW7 1RZ','UK'); +INSERT INTO Orders Values ('11058','BLAUS',9,'1998-04-29 00:00:00.000','1998-05-27 00:00:00.000',NULL,3,31.14,'Blauer See Delikatessen','Forsterstr. 57','Mannheim',NULL,'68306','Germany'); +INSERT INTO Orders Values ('11059','RICAR',2,'1998-04-29 00:00:00.000','1998-06-10 00:00:00.000',NULL,2,85.8,'Ricardo Adocicados','Av. Copacabana, 267','Rio de Janeiro','RJ','02389-890','Brazil'); +INSERT INTO Orders Values ('11060','FRANS',2,'1998-04-30 00:00:00.000','1998-05-28 00:00:00.000','1998-05-04 00:00:00.000',2,10.98,'Franchi S.p.A.','Via Monte Bianco 34','Torino',NULL,'10100','Italy'); +INSERT INTO Orders Values ('11061','GREAL',4,'1998-04-30 00:00:00.000','1998-06-11 00:00:00.000',NULL,3,14.01,'Great Lakes Food Market','2732 Baker Blvd.','Eugene','OR','97403','USA'); +INSERT INTO Orders Values ('11062','REGGC',4,'1998-04-30 00:00:00.000','1998-05-28 00:00:00.000',NULL,2,29.93,'Reggiani Caseifici','Strada Provinciale 124','Reggio Emilia',NULL,'42100','Italy'); +INSERT INTO Orders Values ('11063','HUNGO',3,'1998-04-30 00:00:00.000','1998-05-28 00:00:00.000','1998-05-06 00:00:00.000',2,81.73,'Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Ireland'); +INSERT INTO Orders Values ('11064','SAVEA',1,'1998-05-01 00:00:00.000','1998-05-29 00:00:00.000','1998-05-04 00:00:00.000',1,30.09,'Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','USA'); +INSERT INTO Orders Values ('11065','LILAS',8,'1998-05-01 00:00:00.000','1998-05-29 00:00:00.000',NULL,1,12.91,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('11066','WHITC',7,'1998-05-01 00:00:00.000','1998-05-29 00:00:00.000','1998-05-04 00:00:00.000',2,44.72,'White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','USA'); +INSERT INTO Orders Values ('11067','DRACD',1,'1998-05-04 00:00:00.000','1998-05-18 00:00:00.000','1998-05-06 00:00:00.000',2,7.98,'Drachenblut Delikatessen','Walserweg 21','Aachen',NULL,'52066','Germany'); +INSERT INTO Orders Values ('11068','QUEEN',8,'1998-05-04 00:00:00.000','1998-06-01 00:00:00.000',NULL,2,81.75,'Queen Cozinha','Alameda dos Canrios, 891','Sao Paulo','SP','05487-020','Brazil'); +INSERT INTO Orders Values ('11069','TORTU',1,'1998-05-04 00:00:00.000','1998-06-01 00:00:00.000','1998-05-06 00:00:00.000',2,15.67,'Tortuga Restaurante','Avda. Azteca 123','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('11070','LEHMS',2,'1998-05-05 00:00:00.000','1998-06-02 00:00:00.000',NULL,1,136,'Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M.',NULL,'60528','Germany'); +INSERT INTO Orders Values ('11071','LILAS',1,'1998-05-05 00:00:00.000','1998-06-02 00:00:00.000',NULL,1,0.93,'LILA-Supermercado','Carrera 52 con Ave. Bolvar #65-98 Llano Largo','Barquisimeto','Lara','3508','Venezuela'); +INSERT INTO Orders Values ('11072','ERNSH',4,'1998-05-05 00:00:00.000','1998-06-02 00:00:00.000',NULL,2,258.64,'Ernst Handel','Kirchgasse 6','Graz',NULL,'8010','Austria'); +INSERT INTO Orders Values ('11073','PERIC',2,'1998-05-05 00:00:00.000','1998-06-02 00:00:00.000',NULL,2,24.95,'Pericles Comidas clsicas','Calle Dr. Jorge Cash 321','Mxico D.F.',NULL,'5033','Mexico'); +INSERT INTO Orders Values ('11074','SIMOB',7,'1998-05-06 00:00:00.000','1998-06-03 00:00:00.000',NULL,2,18.44,'Simons bistro','Vinbltet 34','Kobenhavn',NULL,'1734','Denmark'); +INSERT INTO Orders Values ('11075','RICSU',8,'1998-05-06 00:00:00.000','1998-06-03 00:00:00.000',NULL,2,6.19,'Richter Supermarkt','Starenweg 5','Genve',NULL,'1204','Switzerland'); +INSERT INTO Orders Values ('11076','BONAP',4,'1998-05-06 00:00:00.000','1998-06-03 00:00:00.000',NULL,2,38.28,'Bon app-','12, rue des Bouchers','Marseille',NULL,'13008','France'); +INSERT INTO Orders Values ('11077','RATTC',1,'1998-05-06 00:00:00.000','1998-06-03 00:00:00.000',NULL,2,8.53,'Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','USA'); + +# ---------------------------------------------------------------------- # +# Add info into "Order Details" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE `Order Details`; +INSERT INTO `Order Details` Values (10248, 11, 14, 12, 0.0); +INSERT INTO `Order Details` Values (10248, 42, 9.8, 10, 0.0); +INSERT INTO `Order Details` Values (10248, 72, 34.8, 5, 0.0); +INSERT INTO `Order Details` Values (10249, 14, 18.6, 9, 0.0); +INSERT INTO `Order Details` Values (10249, 51, 42.4, 40, 0.0); +INSERT INTO `Order Details` Values (10250, 41, 7.7, 10, 0.0); +INSERT INTO `Order Details` Values (10250, 51, 42.4, 35, 0.15); +INSERT INTO `Order Details` Values (10250, 65, 16.8, 15, 0.15); +INSERT INTO `Order Details` Values (10251, 22, 16.8, 6, 0.05); +INSERT INTO `Order Details` Values (10251, 57, 15.6, 15, 0.05); +INSERT INTO `Order Details` Values (10251, 65, 16.8, 20, 0.0); +INSERT INTO `Order Details` Values (10252, 20, 64.8, 40, 0.05); +INSERT INTO `Order Details` Values (10252, 33, 2, 25, 0.05); +INSERT INTO `Order Details` Values (10252, 60, 27.2, 40, 0.0); +INSERT INTO `Order Details` Values (10253, 31, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10253, 39, 14.4, 42, 0.0); +INSERT INTO `Order Details` Values (10253, 49, 16, 40, 0.0); +INSERT INTO `Order Details` Values (10254, 24, 3.6, 15, 0.15); +INSERT INTO `Order Details` Values (10254, 55, 19.2, 21, 0.15); +INSERT INTO `Order Details` Values (10254, 74, 8, 21, 0.0); +INSERT INTO `Order Details` Values (10255, 2, 15.2, 20, 0.0); +INSERT INTO `Order Details` Values (10255, 16, 13.9, 35, 0.0); +INSERT INTO `Order Details` Values (10255, 36, 15.2, 25, 0.0); +INSERT INTO `Order Details` Values (10255, 59, 44, 30, 0.0); +INSERT INTO `Order Details` Values (10256, 53, 26.2, 15, 0.0); +INSERT INTO `Order Details` Values (10256, 77, 10.4, 12, 0.0); +INSERT INTO `Order Details` Values (10257, 27, 35.1, 25, 0.0); +INSERT INTO `Order Details` Values (10257, 39, 14.4, 6, 0.0); +INSERT INTO `Order Details` Values (10257, 77, 10.4, 15, 0.0); +INSERT INTO `Order Details` Values (10258, 2, 15.2, 50, 0.2); +INSERT INTO `Order Details` Values (10258, 5, 17, 65, 0.2); +INSERT INTO `Order Details` Values (10258, 32, 25.6, 6, 0.2); +INSERT INTO `Order Details` Values (10259, 21, 8, 10, 0.0); +INSERT INTO `Order Details` Values (10259, 37, 20.8, 1, 0.0); +INSERT INTO `Order Details` Values (10260, 41, 7.7, 16, 0.25); +INSERT INTO `Order Details` Values (10260, 57, 15.6, 50, 0.0); +INSERT INTO `Order Details` Values (10260, 62, 39.4, 15, 0.25); +INSERT INTO `Order Details` Values (10260, 70, 12, 21, 0.25); +INSERT INTO `Order Details` Values (10261, 21, 8, 20, 0.0); +INSERT INTO `Order Details` Values (10261, 35, 14.4, 20, 0.0); +INSERT INTO `Order Details` Values (10262, 5, 17, 12, 0.2); +INSERT INTO `Order Details` Values (10262, 7, 24, 15, 0.0); +INSERT INTO `Order Details` Values (10262, 56, 30.4, 2, 0.0); +INSERT INTO `Order Details` Values (10263, 16, 13.9, 60, 0.25); +INSERT INTO `Order Details` Values (10263, 24, 3.6, 28, 0.0); +INSERT INTO `Order Details` Values (10263, 30, 20.7, 60, 0.25); +INSERT INTO `Order Details` Values (10263, 74, 8, 36, 0.25); +INSERT INTO `Order Details` Values (10264, 2, 15.2, 35, 0.0); +INSERT INTO `Order Details` Values (10264, 41, 7.7, 25, 0.15); +INSERT INTO `Order Details` Values (10265, 17, 31.2, 30, 0.0); +INSERT INTO `Order Details` Values (10265, 70, 12, 20, 0.0); +INSERT INTO `Order Details` Values (10266, 12, 30.4, 12, 0.05); +INSERT INTO `Order Details` Values (10267, 40, 14.7, 50, 0.0); +INSERT INTO `Order Details` Values (10267, 59, 44, 70, 0.15); +INSERT INTO `Order Details` Values (10267, 76, 14.4, 15, 0.15); +INSERT INTO `Order Details` Values (10268, 29, 99, 10, 0.0); +INSERT INTO `Order Details` Values (10268, 72, 27.8, 4, 0.0); +INSERT INTO `Order Details` Values (10269, 33, 2, 60, 0.05); +INSERT INTO `Order Details` Values (10269, 72, 27.8, 20, 0.05); +INSERT INTO `Order Details` Values (10270, 36, 15.2, 30, 0.0); +INSERT INTO `Order Details` Values (10270, 43, 36.8, 25, 0.0); +INSERT INTO `Order Details` Values (10271, 33, 2, 24, 0.0); +INSERT INTO `Order Details` Values (10272, 20, 64.8, 6, 0.0); +INSERT INTO `Order Details` Values (10272, 31, 10, 40, 0.0); +INSERT INTO `Order Details` Values (10272, 72, 27.8, 24, 0.0); +INSERT INTO `Order Details` Values (10273, 10, 24.8, 24, 0.05); +INSERT INTO `Order Details` Values (10273, 31, 10, 15, 0.05); +INSERT INTO `Order Details` Values (10273, 33, 2, 20, 0.0); +INSERT INTO `Order Details` Values (10273, 40, 14.7, 60, 0.05); +INSERT INTO `Order Details` Values (10273, 76, 14.4, 33, 0.05); +INSERT INTO `Order Details` Values (10274, 71, 17.2, 20, 0.0); +INSERT INTO `Order Details` Values (10274, 72, 27.8, 7, 0.0); +INSERT INTO `Order Details` Values (10275, 24, 3.6, 12, 0.05); +INSERT INTO `Order Details` Values (10275, 59, 44, 6, 0.05); +INSERT INTO `Order Details` Values (10276, 10, 24.8, 15, 0.0); +INSERT INTO `Order Details` Values (10276, 13, 4.8, 10, 0.0); +INSERT INTO `Order Details` Values (10277, 28, 36.4, 20, 0.0); +INSERT INTO `Order Details` Values (10277, 62, 39.4, 12, 0.0); +INSERT INTO `Order Details` Values (10278, 44, 15.5, 16, 0.0); +INSERT INTO `Order Details` Values (10278, 59, 44, 15, 0.0); +INSERT INTO `Order Details` Values (10278, 63, 35.1, 8, 0.0); +INSERT INTO `Order Details` Values (10278, 73, 12, 25, 0.0); +INSERT INTO `Order Details` Values (10279, 17, 31.2, 15, 0.25); +INSERT INTO `Order Details` Values (10280, 24, 3.6, 12, 0.0); +INSERT INTO `Order Details` Values (10280, 55, 19.2, 20, 0.0); +INSERT INTO `Order Details` Values (10280, 75, 6.2, 30, 0.0); +INSERT INTO `Order Details` Values (10281, 19, 7.3, 1, 0.0); +INSERT INTO `Order Details` Values (10281, 24, 3.6, 6, 0.0); +INSERT INTO `Order Details` Values (10281, 35, 14.4, 4, 0.0); +INSERT INTO `Order Details` Values (10282, 30, 20.7, 6, 0.0); +INSERT INTO `Order Details` Values (10282, 57, 15.6, 2, 0.0); +INSERT INTO `Order Details` Values (10283, 15, 12.4, 20, 0.0); +INSERT INTO `Order Details` Values (10283, 19, 7.3, 18, 0.0); +INSERT INTO `Order Details` Values (10283, 60, 27.2, 35, 0.0); +INSERT INTO `Order Details` Values (10283, 72, 27.8, 3, 0.0); +INSERT INTO `Order Details` Values (10284, 27, 35.1, 15, 0.25); +INSERT INTO `Order Details` Values (10284, 44, 15.5, 21, 0.0); +INSERT INTO `Order Details` Values (10284, 60, 27.2, 20, 0.25); +INSERT INTO `Order Details` Values (10284, 67, 11.2, 5, 0.25); +INSERT INTO `Order Details` Values (10285, 1, 14.4, 45, 0.2); +INSERT INTO `Order Details` Values (10285, 40, 14.7, 40, 0.2); +INSERT INTO `Order Details` Values (10285, 53, 26.2, 36, 0.2); +INSERT INTO `Order Details` Values (10286, 35, 14.4, 100, 0.0); +INSERT INTO `Order Details` Values (10286, 62, 39.4, 40, 0.0); +INSERT INTO `Order Details` Values (10287, 16, 13.9, 40, 0.15); +INSERT INTO `Order Details` Values (10287, 34, 11.2, 20, 0.0); +INSERT INTO `Order Details` Values (10287, 46, 9.6, 15, 0.15); +INSERT INTO `Order Details` Values (10288, 54, 5.9, 10, 0.1); +INSERT INTO `Order Details` Values (10288, 68, 10, 3, 0.1); +INSERT INTO `Order Details` Values (10289, 3, 8, 30, 0.0); +INSERT INTO `Order Details` Values (10289, 64, 26.6, 9, 0.0); +INSERT INTO `Order Details` Values (10290, 5, 17, 20, 0.0); +INSERT INTO `Order Details` Values (10290, 29, 99, 15, 0.0); +INSERT INTO `Order Details` Values (10290, 49, 16, 15, 0.0); +INSERT INTO `Order Details` Values (10290, 77, 10.4, 10, 0.0); +INSERT INTO `Order Details` Values (10291, 13, 4.8, 20, 0.1); +INSERT INTO `Order Details` Values (10291, 44, 15.5, 24, 0.1); +INSERT INTO `Order Details` Values (10291, 51, 42.4, 2, 0.1); +INSERT INTO `Order Details` Values (10292, 20, 64.8, 20, 0.0); +INSERT INTO `Order Details` Values (10293, 18, 50, 12, 0.0); +INSERT INTO `Order Details` Values (10293, 24, 3.6, 10, 0.0); +INSERT INTO `Order Details` Values (10293, 63, 35.1, 5, 0.0); +INSERT INTO `Order Details` Values (10293, 75, 6.2, 6, 0.0); +INSERT INTO `Order Details` Values (10294, 1, 14.4, 18, 0.0); +INSERT INTO `Order Details` Values (10294, 17, 31.2, 15, 0.0); +INSERT INTO `Order Details` Values (10294, 43, 36.8, 15, 0.0); +INSERT INTO `Order Details` Values (10294, 60, 27.2, 21, 0.0); +INSERT INTO `Order Details` Values (10294, 75, 6.2, 6, 0.0); +INSERT INTO `Order Details` Values (10295, 56, 30.4, 4, 0.0); +INSERT INTO `Order Details` Values (10296, 11, 16.8, 12, 0.0); +INSERT INTO `Order Details` Values (10296, 16, 13.9, 30, 0.0); +INSERT INTO `Order Details` Values (10296, 69, 28.8, 15, 0.0); +INSERT INTO `Order Details` Values (10297, 39, 14.4, 60, 0.0); +INSERT INTO `Order Details` Values (10297, 72, 27.8, 20, 0.0); +INSERT INTO `Order Details` Values (10298, 2, 15.2, 40, 0.0); +INSERT INTO `Order Details` Values (10298, 36, 15.2, 40, 0.25); +INSERT INTO `Order Details` Values (10298, 59, 44, 30, 0.25); +INSERT INTO `Order Details` Values (10298, 62, 39.4, 15, 0.0); +INSERT INTO `Order Details` Values (10299, 19, 7.3, 15, 0.0); +INSERT INTO `Order Details` Values (10299, 70, 12, 20, 0.0); +INSERT INTO `Order Details` Values (10300, 66, 13.6, 30, 0.0); +INSERT INTO `Order Details` Values (10300, 68, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10301, 40, 14.7, 10, 0.0); +INSERT INTO `Order Details` Values (10301, 56, 30.4, 20, 0.0); +INSERT INTO `Order Details` Values (10302, 17, 31.2, 40, 0.0); +INSERT INTO `Order Details` Values (10302, 28, 36.4, 28, 0.0); +INSERT INTO `Order Details` Values (10302, 43, 36.8, 12, 0.0); +INSERT INTO `Order Details` Values (10303, 40, 14.7, 40, 0.1); +INSERT INTO `Order Details` Values (10303, 65, 16.8, 30, 0.1); +INSERT INTO `Order Details` Values (10303, 68, 10, 15, 0.1); +INSERT INTO `Order Details` Values (10304, 49, 16, 30, 0.0); +INSERT INTO `Order Details` Values (10304, 59, 44, 10, 0.0); +INSERT INTO `Order Details` Values (10304, 71, 17.2, 2, 0.0); +INSERT INTO `Order Details` Values (10305, 18, 50, 25, 0.1); +INSERT INTO `Order Details` Values (10305, 29, 99, 25, 0.1); +INSERT INTO `Order Details` Values (10305, 39, 14.4, 30, 0.1); +INSERT INTO `Order Details` Values (10306, 30, 20.7, 10, 0.0); +INSERT INTO `Order Details` Values (10306, 53, 26.2, 10, 0.0); +INSERT INTO `Order Details` Values (10306, 54, 5.9, 5, 0.0); +INSERT INTO `Order Details` Values (10307, 62, 39.4, 10, 0.0); +INSERT INTO `Order Details` Values (10307, 68, 10, 3, 0.0); +INSERT INTO `Order Details` Values (10308, 69, 28.8, 1, 0.0); +INSERT INTO `Order Details` Values (10308, 70, 12, 5, 0.0); +INSERT INTO `Order Details` Values (10309, 4, 17.6, 20, 0.0); +INSERT INTO `Order Details` Values (10309, 6, 20, 30, 0.0); +INSERT INTO `Order Details` Values (10309, 42, 11.2, 2, 0.0); +INSERT INTO `Order Details` Values (10309, 43, 36.8, 20, 0.0); +INSERT INTO `Order Details` Values (10309, 71, 17.2, 3, 0.0); +INSERT INTO `Order Details` Values (10310, 16, 13.9, 10, 0.0); +INSERT INTO `Order Details` Values (10310, 62, 39.4, 5, 0.0); +INSERT INTO `Order Details` Values (10311, 42, 11.2, 6, 0.0); +INSERT INTO `Order Details` Values (10311, 69, 28.8, 7, 0.0); +INSERT INTO `Order Details` Values (10312, 28, 36.4, 4, 0.0); +INSERT INTO `Order Details` Values (10312, 43, 36.8, 24, 0.0); +INSERT INTO `Order Details` Values (10312, 53, 26.2, 20, 0.0); +INSERT INTO `Order Details` Values (10312, 75, 6.2, 10, 0.0); +INSERT INTO `Order Details` Values (10313, 36, 15.2, 12, 0.0); +INSERT INTO `Order Details` Values (10314, 32, 25.6, 40, 0.1); +INSERT INTO `Order Details` Values (10314, 58, 10.6, 30, 0.1); +INSERT INTO `Order Details` Values (10314, 62, 39.4, 25, 0.1); +INSERT INTO `Order Details` Values (10315, 34, 11.2, 14, 0.0); +INSERT INTO `Order Details` Values (10315, 70, 12, 30, 0.0); +INSERT INTO `Order Details` Values (10316, 41, 7.7, 10, 0.0); +INSERT INTO `Order Details` Values (10316, 62, 39.4, 70, 0.0); +INSERT INTO `Order Details` Values (10317, 1, 14.4, 20, 0.0); +INSERT INTO `Order Details` Values (10318, 41, 7.7, 20, 0.0); +INSERT INTO `Order Details` Values (10318, 76, 14.4, 6, 0.0); +INSERT INTO `Order Details` Values (10319, 17, 31.2, 8, 0.0); +INSERT INTO `Order Details` Values (10319, 28, 36.4, 14, 0.0); +INSERT INTO `Order Details` Values (10319, 76, 14.4, 30, 0.0); +INSERT INTO `Order Details` Values (10320, 71, 17.2, 30, 0.0); +INSERT INTO `Order Details` Values (10321, 35, 14.4, 10, 0.0); +INSERT INTO `Order Details` Values (10322, 52, 5.6, 20, 0.0); +INSERT INTO `Order Details` Values (10323, 15, 12.4, 5, 0.0); +INSERT INTO `Order Details` Values (10323, 25, 11.2, 4, 0.0); +INSERT INTO `Order Details` Values (10323, 39, 14.4, 4, 0.0); +INSERT INTO `Order Details` Values (10324, 16, 13.9, 21, 0.15); +INSERT INTO `Order Details` Values (10324, 35, 14.4, 70, 0.15); +INSERT INTO `Order Details` Values (10324, 46, 9.6, 30, 0.0); +INSERT INTO `Order Details` Values (10324, 59, 44, 40, 0.15); +INSERT INTO `Order Details` Values (10324, 63, 35.1, 80, 0.15); +INSERT INTO `Order Details` Values (10325, 6, 20, 6, 0.0); +INSERT INTO `Order Details` Values (10325, 13, 4.8, 12, 0.0); +INSERT INTO `Order Details` Values (10325, 14, 18.6, 9, 0.0); +INSERT INTO `Order Details` Values (10325, 31, 10, 4, 0.0); +INSERT INTO `Order Details` Values (10325, 72, 27.8, 40, 0.0); +INSERT INTO `Order Details` Values (10326, 4, 17.6, 24, 0.0); +INSERT INTO `Order Details` Values (10326, 57, 15.6, 16, 0.0); +INSERT INTO `Order Details` Values (10326, 75, 6.2, 50, 0.0); +INSERT INTO `Order Details` Values (10327, 2, 15.2, 25, 0.2); +INSERT INTO `Order Details` Values (10327, 11, 16.8, 50, 0.2); +INSERT INTO `Order Details` Values (10327, 30, 20.7, 35, 0.2); +INSERT INTO `Order Details` Values (10327, 58, 10.6, 30, 0.2); +INSERT INTO `Order Details` Values (10328, 59, 44, 9, 0.0); +INSERT INTO `Order Details` Values (10328, 65, 16.8, 40, 0.0); +INSERT INTO `Order Details` Values (10328, 68, 10, 10, 0.0); +INSERT INTO `Order Details` Values (10329, 19, 7.3, 10, 0.05); +INSERT INTO `Order Details` Values (10329, 30, 20.7, 8, 0.05); +INSERT INTO `Order Details` Values (10329, 38, 210.8, 20, 0.05); +INSERT INTO `Order Details` Values (10329, 56, 30.4, 12, 0.05); +INSERT INTO `Order Details` Values (10330, 26, 24.9, 50, 0.15); +INSERT INTO `Order Details` Values (10330, 72, 27.8, 25, 0.15); +INSERT INTO `Order Details` Values (10331, 54, 5.9, 15, 0.0); +INSERT INTO `Order Details` Values (10332, 18, 50, 40, 0.2); +INSERT INTO `Order Details` Values (10332, 42, 11.2, 10, 0.2); +INSERT INTO `Order Details` Values (10332, 47, 7.6, 16, 0.2); +INSERT INTO `Order Details` Values (10333, 14, 18.6, 10, 0.0); +INSERT INTO `Order Details` Values (10333, 21, 8, 10, 0.1); +INSERT INTO `Order Details` Values (10333, 71, 17.2, 40, 0.1); +INSERT INTO `Order Details` Values (10334, 52, 5.6, 8, 0.0); +INSERT INTO `Order Details` Values (10334, 68, 10, 10, 0.0); +INSERT INTO `Order Details` Values (10335, 2, 15.2, 7, 0.2); +INSERT INTO `Order Details` Values (10335, 31, 10, 25, 0.2); +INSERT INTO `Order Details` Values (10335, 32, 25.6, 6, 0.2); +INSERT INTO `Order Details` Values (10335, 51, 42.4, 48, 0.2); +INSERT INTO `Order Details` Values (10336, 4, 17.6, 18, 0.1); +INSERT INTO `Order Details` Values (10337, 23, 7.2, 40, 0.0); +INSERT INTO `Order Details` Values (10337, 26, 24.9, 24, 0.0); +INSERT INTO `Order Details` Values (10337, 36, 15.2, 20, 0.0); +INSERT INTO `Order Details` Values (10337, 37, 20.8, 28, 0.0); +INSERT INTO `Order Details` Values (10337, 72, 27.8, 25, 0.0); +INSERT INTO `Order Details` Values (10338, 17, 31.2, 20, 0.0); +INSERT INTO `Order Details` Values (10338, 30, 20.7, 15, 0.0); +INSERT INTO `Order Details` Values (10339, 4, 17.6, 10, 0.0); +INSERT INTO `Order Details` Values (10339, 17, 31.2, 70, 0.05); +INSERT INTO `Order Details` Values (10339, 62, 39.4, 28, 0.0); +INSERT INTO `Order Details` Values (10340, 18, 50, 20, 0.05); +INSERT INTO `Order Details` Values (10340, 41, 7.7, 12, 0.05); +INSERT INTO `Order Details` Values (10340, 43, 36.8, 40, 0.05); +INSERT INTO `Order Details` Values (10341, 33, 2, 8, 0.0); +INSERT INTO `Order Details` Values (10341, 59, 44, 9, 0.15); +INSERT INTO `Order Details` Values (10342, 2, 15.2, 24, 0.2); +INSERT INTO `Order Details` Values (10342, 31, 10, 56, 0.2); +INSERT INTO `Order Details` Values (10342, 36, 15.2, 40, 0.2); +INSERT INTO `Order Details` Values (10342, 55, 19.2, 40, 0.2); +INSERT INTO `Order Details` Values (10343, 64, 26.6, 50, 0.0); +INSERT INTO `Order Details` Values (10343, 68, 10, 4, 0.05); +INSERT INTO `Order Details` Values (10343, 76, 14.4, 15, 0.0); +INSERT INTO `Order Details` Values (10344, 4, 17.6, 35, 0.0); +INSERT INTO `Order Details` Values (10344, 8, 32, 70, 0.25); +INSERT INTO `Order Details` Values (10345, 8, 32, 70, 0.0); +INSERT INTO `Order Details` Values (10345, 19, 7.3, 80, 0.0); +INSERT INTO `Order Details` Values (10345, 42, 11.2, 9, 0.0); +INSERT INTO `Order Details` Values (10346, 17, 31.2, 36, 0.1); +INSERT INTO `Order Details` Values (10346, 56, 30.4, 20, 0.0); +INSERT INTO `Order Details` Values (10347, 25, 11.2, 10, 0.0); +INSERT INTO `Order Details` Values (10347, 39, 14.4, 50, 0.15); +INSERT INTO `Order Details` Values (10347, 40, 14.7, 4, 0.0); +INSERT INTO `Order Details` Values (10347, 75, 6.2, 6, 0.15); +INSERT INTO `Order Details` Values (10348, 1, 14.4, 15, 0.15); +INSERT INTO `Order Details` Values (10348, 23, 7.2, 25, 0.0); +INSERT INTO `Order Details` Values (10349, 54, 5.9, 24, 0.0); +INSERT INTO `Order Details` Values (10350, 50, 13, 15, 0.1); +INSERT INTO `Order Details` Values (10350, 69, 28.8, 18, 0.1); +INSERT INTO `Order Details` Values (10351, 38, 210.8, 20, 0.05); +INSERT INTO `Order Details` Values (10351, 41, 7.7, 13, 0.0); +INSERT INTO `Order Details` Values (10351, 44, 15.5, 77, 0.05); +INSERT INTO `Order Details` Values (10351, 65, 16.8, 10, 0.05); +INSERT INTO `Order Details` Values (10352, 24, 3.6, 10, 0.0); +INSERT INTO `Order Details` Values (10352, 54, 5.9, 20, 0.15); +INSERT INTO `Order Details` Values (10353, 11, 16.8, 12, 0.2); +INSERT INTO `Order Details` Values (10353, 38, 210.8, 50, 0.2); +INSERT INTO `Order Details` Values (10354, 1, 14.4, 12, 0.0); +INSERT INTO `Order Details` Values (10354, 29, 99, 4, 0.0); +INSERT INTO `Order Details` Values (10355, 24, 3.6, 25, 0.0); +INSERT INTO `Order Details` Values (10355, 57, 15.6, 25, 0.0); +INSERT INTO `Order Details` Values (10356, 31, 10, 30, 0.0); +INSERT INTO `Order Details` Values (10356, 55, 19.2, 12, 0.0); +INSERT INTO `Order Details` Values (10356, 69, 28.8, 20, 0.0); +INSERT INTO `Order Details` Values (10357, 10, 24.8, 30, 0.2); +INSERT INTO `Order Details` Values (10357, 26, 24.9, 16, 0.0); +INSERT INTO `Order Details` Values (10357, 60, 27.2, 8, 0.2); +INSERT INTO `Order Details` Values (10358, 24, 3.6, 10, 0.05); +INSERT INTO `Order Details` Values (10358, 34, 11.2, 10, 0.05); +INSERT INTO `Order Details` Values (10358, 36, 15.2, 20, 0.05); +INSERT INTO `Order Details` Values (10359, 16, 13.9, 56, 0.05); +INSERT INTO `Order Details` Values (10359, 31, 10, 70, 0.05); +INSERT INTO `Order Details` Values (10359, 60, 27.2, 80, 0.05); +INSERT INTO `Order Details` Values (10360, 28, 36.4, 30, 0.0); +INSERT INTO `Order Details` Values (10360, 29, 99, 35, 0.0); +INSERT INTO `Order Details` Values (10360, 38, 210.8, 10, 0.0); +INSERT INTO `Order Details` Values (10360, 49, 16, 35, 0.0); +INSERT INTO `Order Details` Values (10360, 54, 5.9, 28, 0.0); +INSERT INTO `Order Details` Values (10361, 39, 14.4, 54, 0.1); +INSERT INTO `Order Details` Values (10361, 60, 27.2, 55, 0.1); +INSERT INTO `Order Details` Values (10362, 25, 11.2, 50, 0.0); +INSERT INTO `Order Details` Values (10362, 51, 42.4, 20, 0.0); +INSERT INTO `Order Details` Values (10362, 54, 5.9, 24, 0.0); +INSERT INTO `Order Details` Values (10363, 31, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10363, 75, 6.2, 12, 0.0); +INSERT INTO `Order Details` Values (10363, 76, 14.4, 12, 0.0); +INSERT INTO `Order Details` Values (10364, 69, 28.8, 30, 0.0); +INSERT INTO `Order Details` Values (10364, 71, 17.2, 5, 0.0); +INSERT INTO `Order Details` Values (10365, 11, 16.8, 24, 0.0); +INSERT INTO `Order Details` Values (10366, 65, 16.8, 5, 0.0); +INSERT INTO `Order Details` Values (10366, 77, 10.4, 5, 0.0); +INSERT INTO `Order Details` Values (10367, 34, 11.2, 36, 0.0); +INSERT INTO `Order Details` Values (10367, 54, 5.9, 18, 0.0); +INSERT INTO `Order Details` Values (10367, 65, 16.8, 15, 0.0); +INSERT INTO `Order Details` Values (10367, 77, 10.4, 7, 0.0); +INSERT INTO `Order Details` Values (10368, 21, 8, 5, 0.1); +INSERT INTO `Order Details` Values (10368, 28, 36.4, 13, 0.1); +INSERT INTO `Order Details` Values (10368, 57, 15.6, 25, 0.0); +INSERT INTO `Order Details` Values (10368, 64, 26.6, 35, 0.1); +INSERT INTO `Order Details` Values (10369, 29, 99, 20, 0.0); +INSERT INTO `Order Details` Values (10369, 56, 30.4, 18, 0.25); +INSERT INTO `Order Details` Values (10370, 1, 14.4, 15, 0.15); +INSERT INTO `Order Details` Values (10370, 64, 26.6, 30, 0.0); +INSERT INTO `Order Details` Values (10370, 74, 8, 20, 0.15); +INSERT INTO `Order Details` Values (10371, 36, 15.2, 6, 0.2); +INSERT INTO `Order Details` Values (10372, 20, 64.8, 12, 0.25); +INSERT INTO `Order Details` Values (10372, 38, 210.8, 40, 0.25); +INSERT INTO `Order Details` Values (10372, 60, 27.2, 70, 0.25); +INSERT INTO `Order Details` Values (10372, 72, 27.8, 42, 0.25); +INSERT INTO `Order Details` Values (10373, 58, 10.6, 80, 0.2); +INSERT INTO `Order Details` Values (10373, 71, 17.2, 50, 0.2); +INSERT INTO `Order Details` Values (10374, 31, 10, 30, 0.0); +INSERT INTO `Order Details` Values (10374, 58, 10.6, 15, 0.0); +INSERT INTO `Order Details` Values (10375, 14, 18.6, 15, 0.0); +INSERT INTO `Order Details` Values (10375, 54, 5.9, 10, 0.0); +INSERT INTO `Order Details` Values (10376, 31, 10, 42, 0.05); +INSERT INTO `Order Details` Values (10377, 28, 36.4, 20, 0.15); +INSERT INTO `Order Details` Values (10377, 39, 14.4, 20, 0.15); +INSERT INTO `Order Details` Values (10378, 71, 17.2, 6, 0.0); +INSERT INTO `Order Details` Values (10379, 41, 7.7, 8, 0.1); +INSERT INTO `Order Details` Values (10379, 63, 35.1, 16, 0.1); +INSERT INTO `Order Details` Values (10379, 65, 16.8, 20, 0.1); +INSERT INTO `Order Details` Values (10380, 30, 20.7, 18, 0.1); +INSERT INTO `Order Details` Values (10380, 53, 26.2, 20, 0.1); +INSERT INTO `Order Details` Values (10380, 60, 27.2, 6, 0.1); +INSERT INTO `Order Details` Values (10380, 70, 12, 30, 0.0); +INSERT INTO `Order Details` Values (10381, 74, 8, 14, 0.0); +INSERT INTO `Order Details` Values (10382, 5, 17, 32, 0.0); +INSERT INTO `Order Details` Values (10382, 18, 50, 9, 0.0); +INSERT INTO `Order Details` Values (10382, 29, 99, 14, 0.0); +INSERT INTO `Order Details` Values (10382, 33, 2, 60, 0.0); +INSERT INTO `Order Details` Values (10382, 74, 8, 50, 0.0); +INSERT INTO `Order Details` Values (10383, 13, 4.8, 20, 0.0); +INSERT INTO `Order Details` Values (10383, 50, 13, 15, 0.0); +INSERT INTO `Order Details` Values (10383, 56, 30.4, 20, 0.0); +INSERT INTO `Order Details` Values (10384, 20, 64.8, 28, 0.0); +INSERT INTO `Order Details` Values (10384, 60, 27.2, 15, 0.0); +INSERT INTO `Order Details` Values (10385, 7, 24, 10, 0.2); +INSERT INTO `Order Details` Values (10385, 60, 27.2, 20, 0.2); +INSERT INTO `Order Details` Values (10385, 68, 10, 8, 0.2); +INSERT INTO `Order Details` Values (10386, 24, 3.6, 15, 0.0); +INSERT INTO `Order Details` Values (10386, 34, 11.2, 10, 0.0); +INSERT INTO `Order Details` Values (10387, 24, 3.6, 15, 0.0); +INSERT INTO `Order Details` Values (10387, 28, 36.4, 6, 0.0); +INSERT INTO `Order Details` Values (10387, 59, 44, 12, 0.0); +INSERT INTO `Order Details` Values (10387, 71, 17.2, 15, 0.0); +INSERT INTO `Order Details` Values (10388, 45, 7.6, 15, 0.2); +INSERT INTO `Order Details` Values (10388, 52, 5.6, 20, 0.2); +INSERT INTO `Order Details` Values (10388, 53, 26.2, 40, 0.0); +INSERT INTO `Order Details` Values (10389, 10, 24.8, 16, 0.0); +INSERT INTO `Order Details` Values (10389, 55, 19.2, 15, 0.0); +INSERT INTO `Order Details` Values (10389, 62, 39.4, 20, 0.0); +INSERT INTO `Order Details` Values (10389, 70, 12, 30, 0.0); +INSERT INTO `Order Details` Values (10390, 31, 10, 60, 0.1); +INSERT INTO `Order Details` Values (10390, 35, 14.4, 40, 0.1); +INSERT INTO `Order Details` Values (10390, 46, 9.6, 45, 0.0); +INSERT INTO `Order Details` Values (10390, 72, 27.8, 24, 0.1); +INSERT INTO `Order Details` Values (10391, 13, 4.8, 18, 0.0); +INSERT INTO `Order Details` Values (10392, 69, 28.8, 50, 0.0); +INSERT INTO `Order Details` Values (10393, 2, 15.2, 25, 0.25); +INSERT INTO `Order Details` Values (10393, 14, 18.6, 42, 0.25); +INSERT INTO `Order Details` Values (10393, 25, 11.2, 7, 0.25); +INSERT INTO `Order Details` Values (10393, 26, 24.9, 70, 0.25); +INSERT INTO `Order Details` Values (10393, 31, 10, 32, 0.0); +INSERT INTO `Order Details` Values (10394, 13, 4.8, 10, 0.0); +INSERT INTO `Order Details` Values (10394, 62, 39.4, 10, 0.0); +INSERT INTO `Order Details` Values (10395, 46, 9.6, 28, 0.1); +INSERT INTO `Order Details` Values (10395, 53, 26.2, 70, 0.1); +INSERT INTO `Order Details` Values (10395, 69, 28.8, 8, 0.0); +INSERT INTO `Order Details` Values (10396, 23, 7.2, 40, 0.0); +INSERT INTO `Order Details` Values (10396, 71, 17.2, 60, 0.0); +INSERT INTO `Order Details` Values (10396, 72, 27.8, 21, 0.0); +INSERT INTO `Order Details` Values (10397, 21, 8, 10, 0.15); +INSERT INTO `Order Details` Values (10397, 51, 42.4, 18, 0.15); +INSERT INTO `Order Details` Values (10398, 35, 14.4, 30, 0.0); +INSERT INTO `Order Details` Values (10398, 55, 19.2, 120, 0.1); +INSERT INTO `Order Details` Values (10399, 68, 10, 60, 0.0); +INSERT INTO `Order Details` Values (10399, 71, 17.2, 30, 0.0); +INSERT INTO `Order Details` Values (10399, 76, 14.4, 35, 0.0); +INSERT INTO `Order Details` Values (10399, 77, 10.4, 14, 0.0); +INSERT INTO `Order Details` Values (10400, 29, 99, 21, 0.0); +INSERT INTO `Order Details` Values (10400, 35, 14.4, 35, 0.0); +INSERT INTO `Order Details` Values (10400, 49, 16, 30, 0.0); +INSERT INTO `Order Details` Values (10401, 30, 20.7, 18, 0.0); +INSERT INTO `Order Details` Values (10401, 56, 30.4, 70, 0.0); +INSERT INTO `Order Details` Values (10401, 65, 16.8, 20, 0.0); +INSERT INTO `Order Details` Values (10401, 71, 17.2, 60, 0.0); +INSERT INTO `Order Details` Values (10402, 23, 7.2, 60, 0.0); +INSERT INTO `Order Details` Values (10402, 63, 35.1, 65, 0.0); +INSERT INTO `Order Details` Values (10403, 16, 13.9, 21, 0.15); +INSERT INTO `Order Details` Values (10403, 48, 10.2, 70, 0.15); +INSERT INTO `Order Details` Values (10404, 26, 24.9, 30, 0.05); +INSERT INTO `Order Details` Values (10404, 42, 11.2, 40, 0.05); +INSERT INTO `Order Details` Values (10404, 49, 16, 30, 0.05); +INSERT INTO `Order Details` Values (10405, 3, 8, 50, 0.0); +INSERT INTO `Order Details` Values (10406, 1, 14.4, 10, 0.0); +INSERT INTO `Order Details` Values (10406, 21, 8, 30, 0.1); +INSERT INTO `Order Details` Values (10406, 28, 36.4, 42, 0.1); +INSERT INTO `Order Details` Values (10406, 36, 15.2, 5, 0.1); +INSERT INTO `Order Details` Values (10406, 40, 14.7, 2, 0.1); +INSERT INTO `Order Details` Values (10407, 11, 16.8, 30, 0.0); +INSERT INTO `Order Details` Values (10407, 69, 28.8, 15, 0.0); +INSERT INTO `Order Details` Values (10407, 71, 17.2, 15, 0.0); +INSERT INTO `Order Details` Values (10408, 37, 20.8, 10, 0.0); +INSERT INTO `Order Details` Values (10408, 54, 5.9, 6, 0.0); +INSERT INTO `Order Details` Values (10408, 62, 39.4, 35, 0.0); +INSERT INTO `Order Details` Values (10409, 14, 18.6, 12, 0.0); +INSERT INTO `Order Details` Values (10409, 21, 8, 12, 0.0); +INSERT INTO `Order Details` Values (10410, 33, 2, 49, 0.0); +INSERT INTO `Order Details` Values (10410, 59, 44, 16, 0.0); +INSERT INTO `Order Details` Values (10411, 41, 7.7, 25, 0.2); +INSERT INTO `Order Details` Values (10411, 44, 15.5, 40, 0.2); +INSERT INTO `Order Details` Values (10411, 59, 44, 9, 0.2); +INSERT INTO `Order Details` Values (10412, 14, 18.6, 20, 0.1); +INSERT INTO `Order Details` Values (10413, 1, 14.4, 24, 0.0); +INSERT INTO `Order Details` Values (10413, 62, 39.4, 40, 0.0); +INSERT INTO `Order Details` Values (10413, 76, 14.4, 14, 0.0); +INSERT INTO `Order Details` Values (10414, 19, 7.3, 18, 0.05); +INSERT INTO `Order Details` Values (10414, 33, 2, 50, 0.0); +INSERT INTO `Order Details` Values (10415, 17, 31.2, 2, 0.0); +INSERT INTO `Order Details` Values (10415, 33, 2, 20, 0.0); +INSERT INTO `Order Details` Values (10416, 19, 7.3, 20, 0.0); +INSERT INTO `Order Details` Values (10416, 53, 26.2, 10, 0.0); +INSERT INTO `Order Details` Values (10416, 57, 15.6, 20, 0.0); +INSERT INTO `Order Details` Values (10417, 38, 210.8, 50, 0.0); +INSERT INTO `Order Details` Values (10417, 46, 9.6, 2, 0.25); +INSERT INTO `Order Details` Values (10417, 68, 10, 36, 0.25); +INSERT INTO `Order Details` Values (10417, 77, 10.4, 35, 0.0); +INSERT INTO `Order Details` Values (10418, 2, 15.2, 60, 0.0); +INSERT INTO `Order Details` Values (10418, 47, 7.6, 55, 0.0); +INSERT INTO `Order Details` Values (10418, 61, 22.8, 16, 0.0); +INSERT INTO `Order Details` Values (10418, 74, 8, 15, 0.0); +INSERT INTO `Order Details` Values (10419, 60, 27.2, 60, 0.05); +INSERT INTO `Order Details` Values (10419, 69, 28.8, 20, 0.05); +INSERT INTO `Order Details` Values (10420, 9, 77.6, 20, 0.1); +INSERT INTO `Order Details` Values (10420, 13, 4.8, 2, 0.1); +INSERT INTO `Order Details` Values (10420, 70, 12, 8, 0.1); +INSERT INTO `Order Details` Values (10420, 73, 12, 20, 0.1); +INSERT INTO `Order Details` Values (10421, 19, 7.3, 4, 0.15); +INSERT INTO `Order Details` Values (10421, 26, 24.9, 30, 0.0); +INSERT INTO `Order Details` Values (10421, 53, 26.2, 15, 0.15); +INSERT INTO `Order Details` Values (10421, 77, 10.4, 10, 0.15); +INSERT INTO `Order Details` Values (10422, 26, 24.9, 2, 0.0); +INSERT INTO `Order Details` Values (10423, 31, 10, 14, 0.0); +INSERT INTO `Order Details` Values (10423, 59, 44, 20, 0.0); +INSERT INTO `Order Details` Values (10424, 35, 14.4, 60, 0.2); +INSERT INTO `Order Details` Values (10424, 38, 210.8, 49, 0.2); +INSERT INTO `Order Details` Values (10424, 68, 10, 30, 0.2); +INSERT INTO `Order Details` Values (10425, 55, 19.2, 10, 0.25); +INSERT INTO `Order Details` Values (10425, 76, 14.4, 20, 0.25); +INSERT INTO `Order Details` Values (10426, 56, 30.4, 5, 0.0); +INSERT INTO `Order Details` Values (10426, 64, 26.6, 7, 0.0); +INSERT INTO `Order Details` Values (10427, 14, 18.6, 35, 0.0); +INSERT INTO `Order Details` Values (10428, 46, 9.6, 20, 0.0); +INSERT INTO `Order Details` Values (10429, 50, 13, 40, 0.0); +INSERT INTO `Order Details` Values (10429, 63, 35.1, 35, 0.25); +INSERT INTO `Order Details` Values (10430, 17, 31.2, 45, 0.2); +INSERT INTO `Order Details` Values (10430, 21, 8, 50, 0.0); +INSERT INTO `Order Details` Values (10430, 56, 30.4, 30, 0.0); +INSERT INTO `Order Details` Values (10430, 59, 44, 70, 0.2); +INSERT INTO `Order Details` Values (10431, 17, 31.2, 50, 0.25); +INSERT INTO `Order Details` Values (10431, 40, 14.7, 50, 0.25); +INSERT INTO `Order Details` Values (10431, 47, 7.6, 30, 0.25); +INSERT INTO `Order Details` Values (10432, 26, 24.9, 10, 0.0); +INSERT INTO `Order Details` Values (10432, 54, 5.9, 40, 0.0); +INSERT INTO `Order Details` Values (10433, 56, 30.4, 28, 0.0); +INSERT INTO `Order Details` Values (10434, 11, 16.8, 6, 0.0); +INSERT INTO `Order Details` Values (10434, 76, 14.4, 18, 0.15); +INSERT INTO `Order Details` Values (10435, 2, 15.2, 10, 0.0); +INSERT INTO `Order Details` Values (10435, 22, 16.8, 12, 0.0); +INSERT INTO `Order Details` Values (10435, 72, 27.8, 10, 0.0); +INSERT INTO `Order Details` Values (10436, 46, 9.6, 5, 0.0); +INSERT INTO `Order Details` Values (10436, 56, 30.4, 40, 0.1); +INSERT INTO `Order Details` Values (10436, 64, 26.6, 30, 0.1); +INSERT INTO `Order Details` Values (10436, 75, 6.2, 24, 0.1); +INSERT INTO `Order Details` Values (10437, 53, 26.2, 15, 0.0); +INSERT INTO `Order Details` Values (10438, 19, 7.3, 15, 0.2); +INSERT INTO `Order Details` Values (10438, 34, 11.2, 20, 0.2); +INSERT INTO `Order Details` Values (10438, 57, 15.6, 15, 0.2); +INSERT INTO `Order Details` Values (10439, 12, 30.4, 15, 0.0); +INSERT INTO `Order Details` Values (10439, 16, 13.9, 16, 0.0); +INSERT INTO `Order Details` Values (10439, 64, 26.6, 6, 0.0); +INSERT INTO `Order Details` Values (10439, 74, 8, 30, 0.0); +INSERT INTO `Order Details` Values (10440, 2, 15.2, 45, 0.15); +INSERT INTO `Order Details` Values (10440, 16, 13.9, 49, 0.15); +INSERT INTO `Order Details` Values (10440, 29, 99, 24, 0.15); +INSERT INTO `Order Details` Values (10440, 61, 22.8, 90, 0.15); +INSERT INTO `Order Details` Values (10441, 27, 35.1, 50, 0.0); +INSERT INTO `Order Details` Values (10442, 11, 16.8, 30, 0.0); +INSERT INTO `Order Details` Values (10442, 54, 5.9, 80, 0.0); +INSERT INTO `Order Details` Values (10442, 66, 13.6, 60, 0.0); +INSERT INTO `Order Details` Values (10443, 11, 16.8, 6, 0.2); +INSERT INTO `Order Details` Values (10443, 28, 36.4, 12, 0.0); +INSERT INTO `Order Details` Values (10444, 17, 31.2, 10, 0.0); +INSERT INTO `Order Details` Values (10444, 26, 24.9, 15, 0.0); +INSERT INTO `Order Details` Values (10444, 35, 14.4, 8, 0.0); +INSERT INTO `Order Details` Values (10444, 41, 7.7, 30, 0.0); +INSERT INTO `Order Details` Values (10445, 39, 14.4, 6, 0.0); +INSERT INTO `Order Details` Values (10445, 54, 5.9, 15, 0.0); +INSERT INTO `Order Details` Values (10446, 19, 7.3, 12, 0.1); +INSERT INTO `Order Details` Values (10446, 24, 3.6, 20, 0.1); +INSERT INTO `Order Details` Values (10446, 31, 10, 3, 0.1); +INSERT INTO `Order Details` Values (10446, 52, 5.6, 15, 0.1); +INSERT INTO `Order Details` Values (10447, 19, 7.3, 40, 0.0); +INSERT INTO `Order Details` Values (10447, 65, 16.8, 35, 0.0); +INSERT INTO `Order Details` Values (10447, 71, 17.2, 2, 0.0); +INSERT INTO `Order Details` Values (10448, 26, 24.9, 6, 0.0); +INSERT INTO `Order Details` Values (10448, 40, 14.7, 20, 0.0); +INSERT INTO `Order Details` Values (10449, 10, 24.8, 14, 0.0); +INSERT INTO `Order Details` Values (10449, 52, 5.6, 20, 0.0); +INSERT INTO `Order Details` Values (10449, 62, 39.4, 35, 0.0); +INSERT INTO `Order Details` Values (10450, 10, 24.8, 20, 0.2); +INSERT INTO `Order Details` Values (10450, 54, 5.9, 6, 0.2); +INSERT INTO `Order Details` Values (10451, 55, 19.2, 120, 0.1); +INSERT INTO `Order Details` Values (10451, 64, 26.6, 35, 0.1); +INSERT INTO `Order Details` Values (10451, 65, 16.8, 28, 0.1); +INSERT INTO `Order Details` Values (10451, 77, 10.4, 55, 0.1); +INSERT INTO `Order Details` Values (10452, 28, 36.4, 15, 0.0); +INSERT INTO `Order Details` Values (10452, 44, 15.5, 100, 0.05); +INSERT INTO `Order Details` Values (10453, 48, 10.2, 15, 0.1); +INSERT INTO `Order Details` Values (10453, 70, 12, 25, 0.1); +INSERT INTO `Order Details` Values (10454, 16, 13.9, 20, 0.2); +INSERT INTO `Order Details` Values (10454, 33, 2, 20, 0.2); +INSERT INTO `Order Details` Values (10454, 46, 9.6, 10, 0.2); +INSERT INTO `Order Details` Values (10455, 39, 14.4, 20, 0.0); +INSERT INTO `Order Details` Values (10455, 53, 26.2, 50, 0.0); +INSERT INTO `Order Details` Values (10455, 61, 22.8, 25, 0.0); +INSERT INTO `Order Details` Values (10455, 71, 17.2, 30, 0.0); +INSERT INTO `Order Details` Values (10456, 21, 8, 40, 0.15); +INSERT INTO `Order Details` Values (10456, 49, 16, 21, 0.15); +INSERT INTO `Order Details` Values (10457, 59, 44, 36, 0.0); +INSERT INTO `Order Details` Values (10458, 26, 24.9, 30, 0.0); +INSERT INTO `Order Details` Values (10458, 28, 36.4, 30, 0.0); +INSERT INTO `Order Details` Values (10458, 43, 36.8, 20, 0.0); +INSERT INTO `Order Details` Values (10458, 56, 30.4, 15, 0.0); +INSERT INTO `Order Details` Values (10458, 71, 17.2, 50, 0.0); +INSERT INTO `Order Details` Values (10459, 7, 24, 16, 0.05); +INSERT INTO `Order Details` Values (10459, 46, 9.6, 20, 0.05); +INSERT INTO `Order Details` Values (10459, 72, 27.8, 40, 0.0); +INSERT INTO `Order Details` Values (10460, 68, 10, 21, 0.25); +INSERT INTO `Order Details` Values (10460, 75, 6.2, 4, 0.25); +INSERT INTO `Order Details` Values (10461, 21, 8, 40, 0.25); +INSERT INTO `Order Details` Values (10461, 30, 20.7, 28, 0.25); +INSERT INTO `Order Details` Values (10461, 55, 19.2, 60, 0.25); +INSERT INTO `Order Details` Values (10462, 13, 4.8, 1, 0.0); +INSERT INTO `Order Details` Values (10462, 23, 7.2, 21, 0.0); +INSERT INTO `Order Details` Values (10463, 19, 7.3, 21, 0.0); +INSERT INTO `Order Details` Values (10463, 42, 11.2, 50, 0.0); +INSERT INTO `Order Details` Values (10464, 4, 17.6, 16, 0.2); +INSERT INTO `Order Details` Values (10464, 43, 36.8, 3, 0.0); +INSERT INTO `Order Details` Values (10464, 56, 30.4, 30, 0.2); +INSERT INTO `Order Details` Values (10464, 60, 27.2, 20, 0.0); +INSERT INTO `Order Details` Values (10465, 24, 3.6, 25, 0.0); +INSERT INTO `Order Details` Values (10465, 29, 99, 18, 0.1); +INSERT INTO `Order Details` Values (10465, 40, 14.7, 20, 0.0); +INSERT INTO `Order Details` Values (10465, 45, 7.6, 30, 0.1); +INSERT INTO `Order Details` Values (10465, 50, 13, 25, 0.0); +INSERT INTO `Order Details` Values (10466, 11, 16.8, 10, 0.0); +INSERT INTO `Order Details` Values (10466, 46, 9.6, 5, 0.0); +INSERT INTO `Order Details` Values (10467, 24, 3.6, 28, 0.0); +INSERT INTO `Order Details` Values (10467, 25, 11.2, 12, 0.0); +INSERT INTO `Order Details` Values (10468, 30, 20.7, 8, 0.0); +INSERT INTO `Order Details` Values (10468, 43, 36.8, 15, 0.0); +INSERT INTO `Order Details` Values (10469, 2, 15.2, 40, 0.15); +INSERT INTO `Order Details` Values (10469, 16, 13.9, 35, 0.15); +INSERT INTO `Order Details` Values (10469, 44, 15.5, 2, 0.15); +INSERT INTO `Order Details` Values (10470, 18, 50, 30, 0.0); +INSERT INTO `Order Details` Values (10470, 23, 7.2, 15, 0.0); +INSERT INTO `Order Details` Values (10470, 64, 26.6, 8, 0.0); +INSERT INTO `Order Details` Values (10471, 7, 24, 30, 0.0); +INSERT INTO `Order Details` Values (10471, 56, 30.4, 20, 0.0); +INSERT INTO `Order Details` Values (10472, 24, 3.6, 80, 0.05); +INSERT INTO `Order Details` Values (10472, 51, 42.4, 18, 0.0); +INSERT INTO `Order Details` Values (10473, 33, 2, 12, 0.0); +INSERT INTO `Order Details` Values (10473, 71, 17.2, 12, 0.0); +INSERT INTO `Order Details` Values (10474, 14, 18.6, 12, 0.0); +INSERT INTO `Order Details` Values (10474, 28, 36.4, 18, 0.0); +INSERT INTO `Order Details` Values (10474, 40, 14.7, 21, 0.0); +INSERT INTO `Order Details` Values (10474, 75, 6.2, 10, 0.0); +INSERT INTO `Order Details` Values (10475, 31, 10, 35, 0.15); +INSERT INTO `Order Details` Values (10475, 66, 13.6, 60, 0.15); +INSERT INTO `Order Details` Values (10475, 76, 14.4, 42, 0.15); +INSERT INTO `Order Details` Values (10476, 55, 19.2, 2, 0.05); +INSERT INTO `Order Details` Values (10476, 70, 12, 12, 0.0); +INSERT INTO `Order Details` Values (10477, 1, 14.4, 15, 0.0); +INSERT INTO `Order Details` Values (10477, 21, 8, 21, 0.25); +INSERT INTO `Order Details` Values (10477, 39, 14.4, 20, 0.25); +INSERT INTO `Order Details` Values (10478, 10, 24.8, 20, 0.05); +INSERT INTO `Order Details` Values (10479, 38, 210.8, 30, 0.0); +INSERT INTO `Order Details` Values (10479, 53, 26.2, 28, 0.0); +INSERT INTO `Order Details` Values (10479, 59, 44, 60, 0.0); +INSERT INTO `Order Details` Values (10479, 64, 26.6, 30, 0.0); +INSERT INTO `Order Details` Values (10480, 47, 7.6, 30, 0.0); +INSERT INTO `Order Details` Values (10480, 59, 44, 12, 0.0); +INSERT INTO `Order Details` Values (10481, 49, 16, 24, 0.0); +INSERT INTO `Order Details` Values (10481, 60, 27.2, 40, 0.0); +INSERT INTO `Order Details` Values (10482, 40, 14.7, 10, 0.0); +INSERT INTO `Order Details` Values (10483, 34, 11.2, 35, 0.05); +INSERT INTO `Order Details` Values (10483, 77, 10.4, 30, 0.05); +INSERT INTO `Order Details` Values (10484, 21, 8, 14, 0.0); +INSERT INTO `Order Details` Values (10484, 40, 14.7, 10, 0.0); +INSERT INTO `Order Details` Values (10484, 51, 42.4, 3, 0.0); +INSERT INTO `Order Details` Values (10485, 2, 15.2, 20, 0.1); +INSERT INTO `Order Details` Values (10485, 3, 8, 20, 0.1); +INSERT INTO `Order Details` Values (10485, 55, 19.2, 30, 0.1); +INSERT INTO `Order Details` Values (10485, 70, 12, 60, 0.1); +INSERT INTO `Order Details` Values (10486, 11, 16.8, 5, 0.0); +INSERT INTO `Order Details` Values (10486, 51, 42.4, 25, 0.0); +INSERT INTO `Order Details` Values (10486, 74, 8, 16, 0.0); +INSERT INTO `Order Details` Values (10487, 19, 7.3, 5, 0.0); +INSERT INTO `Order Details` Values (10487, 26, 24.9, 30, 0.0); +INSERT INTO `Order Details` Values (10487, 54, 5.9, 24, 0.25); +INSERT INTO `Order Details` Values (10488, 59, 44, 30, 0.0); +INSERT INTO `Order Details` Values (10488, 73, 12, 20, 0.2); +INSERT INTO `Order Details` Values (10489, 11, 16.8, 15, 0.25); +INSERT INTO `Order Details` Values (10489, 16, 13.9, 18, 0.0); +INSERT INTO `Order Details` Values (10490, 59, 44, 60, 0.0); +INSERT INTO `Order Details` Values (10490, 68, 10, 30, 0.0); +INSERT INTO `Order Details` Values (10490, 75, 6.2, 36, 0.0); +INSERT INTO `Order Details` Values (10491, 44, 15.5, 15, 0.15); +INSERT INTO `Order Details` Values (10491, 77, 10.4, 7, 0.15); +INSERT INTO `Order Details` Values (10492, 25, 11.2, 60, 0.05); +INSERT INTO `Order Details` Values (10492, 42, 11.2, 20, 0.05); +INSERT INTO `Order Details` Values (10493, 65, 16.8, 15, 0.1); +INSERT INTO `Order Details` Values (10493, 66, 13.6, 10, 0.1); +INSERT INTO `Order Details` Values (10493, 69, 28.8, 10, 0.1); +INSERT INTO `Order Details` Values (10494, 56, 30.4, 30, 0.0); +INSERT INTO `Order Details` Values (10495, 23, 7.2, 10, 0.0); +INSERT INTO `Order Details` Values (10495, 41, 7.7, 20, 0.0); +INSERT INTO `Order Details` Values (10495, 77, 10.4, 5, 0.0); +INSERT INTO `Order Details` Values (10496, 31, 10, 20, 0.05); +INSERT INTO `Order Details` Values (10497, 56, 30.4, 14, 0.0); +INSERT INTO `Order Details` Values (10497, 72, 27.8, 25, 0.0); +INSERT INTO `Order Details` Values (10497, 77, 10.4, 25, 0.0); +INSERT INTO `Order Details` Values (10498, 24, 4.5, 14, 0.0); +INSERT INTO `Order Details` Values (10498, 40, 18.4, 5, 0.0); +INSERT INTO `Order Details` Values (10498, 42, 14, 30, 0.0); +INSERT INTO `Order Details` Values (10499, 28, 45.6, 20, 0.0); +INSERT INTO `Order Details` Values (10499, 49, 20, 25, 0.0); +INSERT INTO `Order Details` Values (10500, 15, 15.5, 12, 0.05); +INSERT INTO `Order Details` Values (10500, 28, 45.6, 8, 0.05); +INSERT INTO `Order Details` Values (10501, 54, 7.45, 20, 0.0); +INSERT INTO `Order Details` Values (10502, 45, 9.5, 21, 0.0); +INSERT INTO `Order Details` Values (10502, 53, 32.8, 6, 0.0); +INSERT INTO `Order Details` Values (10502, 67, 14, 30, 0.0); +INSERT INTO `Order Details` Values (10503, 14, 23.25, 70, 0.0); +INSERT INTO `Order Details` Values (10503, 65, 21.05, 20, 0.0); +INSERT INTO `Order Details` Values (10504, 2, 19, 12, 0.0); +INSERT INTO `Order Details` Values (10504, 21, 10, 12, 0.0); +INSERT INTO `Order Details` Values (10504, 53, 32.8, 10, 0.0); +INSERT INTO `Order Details` Values (10504, 61, 28.5, 25, 0.0); +INSERT INTO `Order Details` Values (10505, 62, 49.3, 3, 0.0); +INSERT INTO `Order Details` Values (10506, 25, 14, 18, 0.1); +INSERT INTO `Order Details` Values (10506, 70, 15, 14, 0.1); +INSERT INTO `Order Details` Values (10507, 43, 46, 15, 0.15); +INSERT INTO `Order Details` Values (10507, 48, 12.75, 15, 0.15); +INSERT INTO `Order Details` Values (10508, 13, 6, 10, 0.0); +INSERT INTO `Order Details` Values (10508, 39, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10509, 28, 45.6, 3, 0.0); +INSERT INTO `Order Details` Values (10510, 29, 123.79, 36, 0.0); +INSERT INTO `Order Details` Values (10510, 75, 7.75, 36, 0.1); +INSERT INTO `Order Details` Values (10511, 4, 22, 50, 0.15); +INSERT INTO `Order Details` Values (10511, 7, 30, 50, 0.15); +INSERT INTO `Order Details` Values (10511, 8, 40, 10, 0.15); +INSERT INTO `Order Details` Values (10512, 24, 4.5, 10, 0.15); +INSERT INTO `Order Details` Values (10512, 46, 12, 9, 0.15); +INSERT INTO `Order Details` Values (10512, 47, 9.5, 6, 0.15); +INSERT INTO `Order Details` Values (10512, 60, 34, 12, 0.15); +INSERT INTO `Order Details` Values (10513, 21, 10, 40, 0.2); +INSERT INTO `Order Details` Values (10513, 32, 32, 50, 0.2); +INSERT INTO `Order Details` Values (10513, 61, 28.5, 15, 0.2); +INSERT INTO `Order Details` Values (10514, 20, 81, 39, 0.0); +INSERT INTO `Order Details` Values (10514, 28, 45.6, 35, 0.0); +INSERT INTO `Order Details` Values (10514, 56, 38, 70, 0.0); +INSERT INTO `Order Details` Values (10514, 65, 21.05, 39, 0.0); +INSERT INTO `Order Details` Values (10514, 75, 7.75, 50, 0.0); +INSERT INTO `Order Details` Values (10515, 9, 97, 16, 0.15); +INSERT INTO `Order Details` Values (10515, 16, 17.45, 50, 0.0); +INSERT INTO `Order Details` Values (10515, 27, 43.9, 120, 0.0); +INSERT INTO `Order Details` Values (10515, 33, 2.5, 16, 0.15); +INSERT INTO `Order Details` Values (10515, 60, 34, 84, 0.15); +INSERT INTO `Order Details` Values (10516, 18, 62.5, 25, 0.1); +INSERT INTO `Order Details` Values (10516, 41, 9.65, 80, 0.1); +INSERT INTO `Order Details` Values (10516, 42, 14, 20, 0.0); +INSERT INTO `Order Details` Values (10517, 52, 7, 6, 0.0); +INSERT INTO `Order Details` Values (10517, 59, 55, 4, 0.0); +INSERT INTO `Order Details` Values (10517, 70, 15, 6, 0.0); +INSERT INTO `Order Details` Values (10518, 24, 4.5, 5, 0.0); +INSERT INTO `Order Details` Values (10518, 38, 263.5, 15, 0.0); +INSERT INTO `Order Details` Values (10518, 44, 19.45, 9, 0.0); +INSERT INTO `Order Details` Values (10519, 10, 31, 16, 0.05); +INSERT INTO `Order Details` Values (10519, 56, 38, 40, 0.0); +INSERT INTO `Order Details` Values (10519, 60, 34, 10, 0.05); +INSERT INTO `Order Details` Values (10520, 24, 4.5, 8, 0.0); +INSERT INTO `Order Details` Values (10520, 53, 32.8, 5, 0.0); +INSERT INTO `Order Details` Values (10521, 35, 18, 3, 0.0); +INSERT INTO `Order Details` Values (10521, 41, 9.65, 10, 0.0); +INSERT INTO `Order Details` Values (10521, 68, 12.5, 6, 0.0); +INSERT INTO `Order Details` Values (10522, 1, 18, 40, 0.2); +INSERT INTO `Order Details` Values (10522, 8, 40, 24, 0.0); +INSERT INTO `Order Details` Values (10522, 30, 25.89, 20, 0.2); +INSERT INTO `Order Details` Values (10522, 40, 18.4, 25, 0.2); +INSERT INTO `Order Details` Values (10523, 17, 39, 25, 0.1); +INSERT INTO `Order Details` Values (10523, 20, 81, 15, 0.1); +INSERT INTO `Order Details` Values (10523, 37, 26, 18, 0.1); +INSERT INTO `Order Details` Values (10523, 41, 9.65, 6, 0.1); +INSERT INTO `Order Details` Values (10524, 10, 31, 2, 0.0); +INSERT INTO `Order Details` Values (10524, 30, 25.89, 10, 0.0); +INSERT INTO `Order Details` Values (10524, 43, 46, 60, 0.0); +INSERT INTO `Order Details` Values (10524, 54, 7.45, 15, 0.0); +INSERT INTO `Order Details` Values (10525, 36, 19, 30, 0.0); +INSERT INTO `Order Details` Values (10525, 40, 18.4, 15, 0.1); +INSERT INTO `Order Details` Values (10526, 1, 18, 8, 0.15); +INSERT INTO `Order Details` Values (10526, 13, 6, 10, 0.0); +INSERT INTO `Order Details` Values (10526, 56, 38, 30, 0.15); +INSERT INTO `Order Details` Values (10527, 4, 22, 50, 0.1); +INSERT INTO `Order Details` Values (10527, 36, 19, 30, 0.1); +INSERT INTO `Order Details` Values (10528, 11, 21, 3, 0.0); +INSERT INTO `Order Details` Values (10528, 33, 2.5, 8, 0.2); +INSERT INTO `Order Details` Values (10528, 72, 34.8, 9, 0.0); +INSERT INTO `Order Details` Values (10529, 55, 24, 14, 0.0); +INSERT INTO `Order Details` Values (10529, 68, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10529, 69, 36, 10, 0.0); +INSERT INTO `Order Details` Values (10530, 17, 39, 40, 0.0); +INSERT INTO `Order Details` Values (10530, 43, 46, 25, 0.0); +INSERT INTO `Order Details` Values (10530, 61, 28.5, 20, 0.0); +INSERT INTO `Order Details` Values (10530, 76, 18, 50, 0.0); +INSERT INTO `Order Details` Values (10531, 59, 55, 2, 0.0); +INSERT INTO `Order Details` Values (10532, 30, 25.89, 15, 0.0); +INSERT INTO `Order Details` Values (10532, 66, 17, 24, 0.0); +INSERT INTO `Order Details` Values (10533, 4, 22, 50, 0.05); +INSERT INTO `Order Details` Values (10533, 72, 34.8, 24, 0.0); +INSERT INTO `Order Details` Values (10533, 73, 15, 24, 0.05); +INSERT INTO `Order Details` Values (10534, 30, 25.89, 10, 0.0); +INSERT INTO `Order Details` Values (10534, 40, 18.4, 10, 0.2); +INSERT INTO `Order Details` Values (10534, 54, 7.45, 10, 0.2); +INSERT INTO `Order Details` Values (10535, 11, 21, 50, 0.1); +INSERT INTO `Order Details` Values (10535, 40, 18.4, 10, 0.1); +INSERT INTO `Order Details` Values (10535, 57, 19.5, 5, 0.1); +INSERT INTO `Order Details` Values (10535, 59, 55, 15, 0.1); +INSERT INTO `Order Details` Values (10536, 12, 38, 15, 0.25); +INSERT INTO `Order Details` Values (10536, 31, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10536, 33, 2.5, 30, 0.0); +INSERT INTO `Order Details` Values (10536, 60, 34, 35, 0.25); +INSERT INTO `Order Details` Values (10537, 31, 12.5, 30, 0.0); +INSERT INTO `Order Details` Values (10537, 51, 53, 6, 0.0); +INSERT INTO `Order Details` Values (10537, 58, 13.25, 20, 0.0); +INSERT INTO `Order Details` Values (10537, 72, 34.8, 21, 0.0); +INSERT INTO `Order Details` Values (10537, 73, 15, 9, 0.0); +INSERT INTO `Order Details` Values (10538, 70, 15, 7, 0.0); +INSERT INTO `Order Details` Values (10538, 72, 34.8, 1, 0.0); +INSERT INTO `Order Details` Values (10539, 13, 6, 8, 0.0); +INSERT INTO `Order Details` Values (10539, 21, 10, 15, 0.0); +INSERT INTO `Order Details` Values (10539, 33, 2.5, 15, 0.0); +INSERT INTO `Order Details` Values (10539, 49, 20, 6, 0.0); +INSERT INTO `Order Details` Values (10540, 3, 10, 60, 0.0); +INSERT INTO `Order Details` Values (10540, 26, 31.23, 40, 0.0); +INSERT INTO `Order Details` Values (10540, 38, 263.5, 30, 0.0); +INSERT INTO `Order Details` Values (10540, 68, 12.5, 35, 0.0); +INSERT INTO `Order Details` Values (10541, 24, 4.5, 35, 0.1); +INSERT INTO `Order Details` Values (10541, 38, 263.5, 4, 0.1); +INSERT INTO `Order Details` Values (10541, 65, 21.05, 36, 0.1); +INSERT INTO `Order Details` Values (10541, 71, 21.5, 9, 0.1); +INSERT INTO `Order Details` Values (10542, 11, 21, 15, 0.05); +INSERT INTO `Order Details` Values (10542, 54, 7.45, 24, 0.05); +INSERT INTO `Order Details` Values (10543, 12, 38, 30, 0.15); +INSERT INTO `Order Details` Values (10543, 23, 9, 70, 0.15); +INSERT INTO `Order Details` Values (10544, 28, 45.6, 7, 0.0); +INSERT INTO `Order Details` Values (10544, 67, 14, 7, 0.0); +INSERT INTO `Order Details` Values (10545, 11, 21, 10, 0.0); +INSERT INTO `Order Details` Values (10546, 7, 30, 10, 0.0); +INSERT INTO `Order Details` Values (10546, 35, 18, 30, 0.0); +INSERT INTO `Order Details` Values (10546, 62, 49.3, 40, 0.0); +INSERT INTO `Order Details` Values (10547, 32, 32, 24, 0.15); +INSERT INTO `Order Details` Values (10547, 36, 19, 60, 0.0); +INSERT INTO `Order Details` Values (10548, 34, 14, 10, 0.25); +INSERT INTO `Order Details` Values (10548, 41, 9.65, 14, 0.0); +INSERT INTO `Order Details` Values (10549, 31, 12.5, 55, 0.15); +INSERT INTO `Order Details` Values (10549, 45, 9.5, 100, 0.15); +INSERT INTO `Order Details` Values (10549, 51, 53, 48, 0.15); +INSERT INTO `Order Details` Values (10550, 17, 39, 8, 0.1); +INSERT INTO `Order Details` Values (10550, 19, 9.2, 10, 0.0); +INSERT INTO `Order Details` Values (10550, 21, 10, 6, 0.1); +INSERT INTO `Order Details` Values (10550, 61, 28.5, 10, 0.1); +INSERT INTO `Order Details` Values (10551, 16, 17.45, 40, 0.15); +INSERT INTO `Order Details` Values (10551, 35, 18, 20, 0.15); +INSERT INTO `Order Details` Values (10551, 44, 19.45, 40, 0.0); +INSERT INTO `Order Details` Values (10552, 69, 36, 18, 0.0); +INSERT INTO `Order Details` Values (10552, 75, 7.75, 30, 0.0); +INSERT INTO `Order Details` Values (10553, 11, 21, 15, 0.0); +INSERT INTO `Order Details` Values (10553, 16, 17.45, 14, 0.0); +INSERT INTO `Order Details` Values (10553, 22, 21, 24, 0.0); +INSERT INTO `Order Details` Values (10553, 31, 12.5, 30, 0.0); +INSERT INTO `Order Details` Values (10553, 35, 18, 6, 0.0); +INSERT INTO `Order Details` Values (10554, 16, 17.45, 30, 0.05); +INSERT INTO `Order Details` Values (10554, 23, 9, 20, 0.05); +INSERT INTO `Order Details` Values (10554, 62, 49.3, 20, 0.05); +INSERT INTO `Order Details` Values (10554, 77, 13, 10, 0.05); +INSERT INTO `Order Details` Values (10555, 14, 23.25, 30, 0.2); +INSERT INTO `Order Details` Values (10555, 19, 9.2, 35, 0.2); +INSERT INTO `Order Details` Values (10555, 24, 4.5, 18, 0.2); +INSERT INTO `Order Details` Values (10555, 51, 53, 20, 0.2); +INSERT INTO `Order Details` Values (10555, 56, 38, 40, 0.2); +INSERT INTO `Order Details` Values (10556, 72, 34.8, 24, 0.0); +INSERT INTO `Order Details` Values (10557, 64, 33.25, 30, 0.0); +INSERT INTO `Order Details` Values (10557, 75, 7.75, 20, 0.0); +INSERT INTO `Order Details` Values (10558, 47, 9.5, 25, 0.0); +INSERT INTO `Order Details` Values (10558, 51, 53, 20, 0.0); +INSERT INTO `Order Details` Values (10558, 52, 7, 30, 0.0); +INSERT INTO `Order Details` Values (10558, 53, 32.8, 18, 0.0); +INSERT INTO `Order Details` Values (10558, 73, 15, 3, 0.0); +INSERT INTO `Order Details` Values (10559, 41, 9.65, 12, 0.05); +INSERT INTO `Order Details` Values (10559, 55, 24, 18, 0.05); +INSERT INTO `Order Details` Values (10560, 30, 25.89, 20, 0.0); +INSERT INTO `Order Details` Values (10560, 62, 49.3, 15, 0.25); +INSERT INTO `Order Details` Values (10561, 44, 19.45, 10, 0.0); +INSERT INTO `Order Details` Values (10561, 51, 53, 50, 0.0); +INSERT INTO `Order Details` Values (10562, 33, 2.5, 20, 0.1); +INSERT INTO `Order Details` Values (10562, 62, 49.3, 10, 0.1); +INSERT INTO `Order Details` Values (10563, 36, 19, 25, 0.0); +INSERT INTO `Order Details` Values (10563, 52, 7, 70, 0.0); +INSERT INTO `Order Details` Values (10564, 17, 39, 16, 0.05); +INSERT INTO `Order Details` Values (10564, 31, 12.5, 6, 0.05); +INSERT INTO `Order Details` Values (10564, 55, 24, 25, 0.05); +INSERT INTO `Order Details` Values (10565, 24, 4.5, 25, 0.1); +INSERT INTO `Order Details` Values (10565, 64, 33.25, 18, 0.1); +INSERT INTO `Order Details` Values (10566, 11, 21, 35, 0.15); +INSERT INTO `Order Details` Values (10566, 18, 62.5, 18, 0.15); +INSERT INTO `Order Details` Values (10566, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10567, 31, 12.5, 60, 0.2); +INSERT INTO `Order Details` Values (10567, 51, 53, 3, 0.0); +INSERT INTO `Order Details` Values (10567, 59, 55, 40, 0.2); +INSERT INTO `Order Details` Values (10568, 10, 31, 5, 0.0); +INSERT INTO `Order Details` Values (10569, 31, 12.5, 35, 0.2); +INSERT INTO `Order Details` Values (10569, 76, 18, 30, 0.0); +INSERT INTO `Order Details` Values (10570, 11, 21, 15, 0.05); +INSERT INTO `Order Details` Values (10570, 56, 38, 60, 0.05); +INSERT INTO `Order Details` Values (10571, 14, 23.25, 11, 0.15); +INSERT INTO `Order Details` Values (10571, 42, 14, 28, 0.15); +INSERT INTO `Order Details` Values (10572, 16, 17.45, 12, 0.1); +INSERT INTO `Order Details` Values (10572, 32, 32, 10, 0.1); +INSERT INTO `Order Details` Values (10572, 40, 18.4, 50, 0.0); +INSERT INTO `Order Details` Values (10572, 75, 7.75, 15, 0.1); +INSERT INTO `Order Details` Values (10573, 17, 39, 18, 0.0); +INSERT INTO `Order Details` Values (10573, 34, 14, 40, 0.0); +INSERT INTO `Order Details` Values (10573, 53, 32.8, 25, 0.0); +INSERT INTO `Order Details` Values (10574, 33, 2.5, 14, 0.0); +INSERT INTO `Order Details` Values (10574, 40, 18.4, 2, 0.0); +INSERT INTO `Order Details` Values (10574, 62, 49.3, 10, 0.0); +INSERT INTO `Order Details` Values (10574, 64, 33.25, 6, 0.0); +INSERT INTO `Order Details` Values (10575, 59, 55, 12, 0.0); +INSERT INTO `Order Details` Values (10575, 63, 43.9, 6, 0.0); +INSERT INTO `Order Details` Values (10575, 72, 34.8, 30, 0.0); +INSERT INTO `Order Details` Values (10575, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10576, 1, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10576, 31, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10576, 44, 19.45, 21, 0.0); +INSERT INTO `Order Details` Values (10577, 39, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10577, 75, 7.75, 20, 0.0); +INSERT INTO `Order Details` Values (10577, 77, 13, 18, 0.0); +INSERT INTO `Order Details` Values (10578, 35, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10578, 57, 19.5, 6, 0.0); +INSERT INTO `Order Details` Values (10579, 15, 15.5, 10, 0.0); +INSERT INTO `Order Details` Values (10579, 75, 7.75, 21, 0.0); +INSERT INTO `Order Details` Values (10580, 14, 23.25, 15, 0.05); +INSERT INTO `Order Details` Values (10580, 41, 9.65, 9, 0.05); +INSERT INTO `Order Details` Values (10580, 65, 21.05, 30, 0.05); +INSERT INTO `Order Details` Values (10581, 75, 7.75, 50, 0.2); +INSERT INTO `Order Details` Values (10582, 57, 19.5, 4, 0.0); +INSERT INTO `Order Details` Values (10582, 76, 18, 14, 0.0); +INSERT INTO `Order Details` Values (10583, 29, 123.79, 10, 0.0); +INSERT INTO `Order Details` Values (10583, 60, 34, 24, 0.15); +INSERT INTO `Order Details` Values (10583, 69, 36, 10, 0.15); +INSERT INTO `Order Details` Values (10584, 31, 12.5, 50, 0.05); +INSERT INTO `Order Details` Values (10585, 47, 9.5, 15, 0.0); +INSERT INTO `Order Details` Values (10586, 52, 7, 4, 0.15); +INSERT INTO `Order Details` Values (10587, 26, 31.23, 6, 0.0); +INSERT INTO `Order Details` Values (10587, 35, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10587, 77, 13, 20, 0.0); +INSERT INTO `Order Details` Values (10588, 18, 62.5, 40, 0.2); +INSERT INTO `Order Details` Values (10588, 42, 14, 100, 0.2); +INSERT INTO `Order Details` Values (10589, 35, 18, 4, 0.0); +INSERT INTO `Order Details` Values (10590, 1, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10590, 77, 13, 60, 0.05); +INSERT INTO `Order Details` Values (10591, 3, 10, 14, 0.0); +INSERT INTO `Order Details` Values (10591, 7, 30, 10, 0.0); +INSERT INTO `Order Details` Values (10591, 54, 7.45, 50, 0.0); +INSERT INTO `Order Details` Values (10592, 15, 15.5, 25, 0.05); +INSERT INTO `Order Details` Values (10592, 26, 31.23, 5, 0.05); +INSERT INTO `Order Details` Values (10593, 20, 81, 21, 0.2); +INSERT INTO `Order Details` Values (10593, 69, 36, 20, 0.2); +INSERT INTO `Order Details` Values (10593, 76, 18, 4, 0.2); +INSERT INTO `Order Details` Values (10594, 52, 7, 24, 0.0); +INSERT INTO `Order Details` Values (10594, 58, 13.25, 30, 0.0); +INSERT INTO `Order Details` Values (10595, 35, 18, 30, 0.25); +INSERT INTO `Order Details` Values (10595, 61, 28.5, 120, 0.25); +INSERT INTO `Order Details` Values (10595, 69, 36, 65, 0.25); +INSERT INTO `Order Details` Values (10596, 56, 38, 5, 0.2); +INSERT INTO `Order Details` Values (10596, 63, 43.9, 24, 0.2); +INSERT INTO `Order Details` Values (10596, 75, 7.75, 30, 0.2); +INSERT INTO `Order Details` Values (10597, 24, 4.5, 35, 0.2); +INSERT INTO `Order Details` Values (10597, 57, 19.5, 20, 0.0); +INSERT INTO `Order Details` Values (10597, 65, 21.05, 12, 0.2); +INSERT INTO `Order Details` Values (10598, 27, 43.9, 50, 0.0); +INSERT INTO `Order Details` Values (10598, 71, 21.5, 9, 0.0); +INSERT INTO `Order Details` Values (10599, 62, 49.3, 10, 0.0); +INSERT INTO `Order Details` Values (10600, 54, 7.45, 4, 0.0); +INSERT INTO `Order Details` Values (10600, 73, 15, 30, 0.0); +INSERT INTO `Order Details` Values (10601, 13, 6, 60, 0.0); +INSERT INTO `Order Details` Values (10601, 59, 55, 35, 0.0); +INSERT INTO `Order Details` Values (10602, 77, 13, 5, 0.25); +INSERT INTO `Order Details` Values (10603, 22, 21, 48, 0.0); +INSERT INTO `Order Details` Values (10603, 49, 20, 25, 0.05); +INSERT INTO `Order Details` Values (10604, 48, 12.75, 6, 0.1); +INSERT INTO `Order Details` Values (10604, 76, 18, 10, 0.1); +INSERT INTO `Order Details` Values (10605, 16, 17.45, 30, 0.05); +INSERT INTO `Order Details` Values (10605, 59, 55, 20, 0.05); +INSERT INTO `Order Details` Values (10605, 60, 34, 70, 0.05); +INSERT INTO `Order Details` Values (10605, 71, 21.5, 15, 0.05); +INSERT INTO `Order Details` Values (10606, 4, 22, 20, 0.2); +INSERT INTO `Order Details` Values (10606, 55, 24, 20, 0.2); +INSERT INTO `Order Details` Values (10606, 62, 49.3, 10, 0.2); +INSERT INTO `Order Details` Values (10607, 7, 30, 45, 0.0); +INSERT INTO `Order Details` Values (10607, 17, 39, 100, 0.0); +INSERT INTO `Order Details` Values (10607, 33, 2.5, 14, 0.0); +INSERT INTO `Order Details` Values (10607, 40, 18.4, 42, 0.0); +INSERT INTO `Order Details` Values (10607, 72, 34.8, 12, 0.0); +INSERT INTO `Order Details` Values (10608, 56, 38, 28, 0.0); +INSERT INTO `Order Details` Values (10609, 1, 18, 3, 0.0); +INSERT INTO `Order Details` Values (10609, 10, 31, 10, 0.0); +INSERT INTO `Order Details` Values (10609, 21, 10, 6, 0.0); +INSERT INTO `Order Details` Values (10610, 36, 19, 21, 0.25); +INSERT INTO `Order Details` Values (10611, 1, 18, 6, 0.0); +INSERT INTO `Order Details` Values (10611, 2, 19, 10, 0.0); +INSERT INTO `Order Details` Values (10611, 60, 34, 15, 0.0); +INSERT INTO `Order Details` Values (10612, 10, 31, 70, 0.0); +INSERT INTO `Order Details` Values (10612, 36, 19, 55, 0.0); +INSERT INTO `Order Details` Values (10612, 49, 20, 18, 0.0); +INSERT INTO `Order Details` Values (10612, 60, 34, 40, 0.0); +INSERT INTO `Order Details` Values (10612, 76, 18, 80, 0.0); +INSERT INTO `Order Details` Values (10613, 13, 6, 8, 0.1); +INSERT INTO `Order Details` Values (10613, 75, 7.75, 40, 0.0); +INSERT INTO `Order Details` Values (10614, 11, 21, 14, 0.0); +INSERT INTO `Order Details` Values (10614, 21, 10, 8, 0.0); +INSERT INTO `Order Details` Values (10614, 39, 18, 5, 0.0); +INSERT INTO `Order Details` Values (10615, 55, 24, 5, 0.0); +INSERT INTO `Order Details` Values (10616, 38, 263.5, 15, 0.05); +INSERT INTO `Order Details` Values (10616, 56, 38, 14, 0.0); +INSERT INTO `Order Details` Values (10616, 70, 15, 15, 0.05); +INSERT INTO `Order Details` Values (10616, 71, 21.5, 15, 0.05); +INSERT INTO `Order Details` Values (10617, 59, 55, 30, 0.15); +INSERT INTO `Order Details` Values (10618, 6, 25, 70, 0.0); +INSERT INTO `Order Details` Values (10618, 56, 38, 20, 0.0); +INSERT INTO `Order Details` Values (10618, 68, 12.5, 15, 0.0); +INSERT INTO `Order Details` Values (10619, 21, 10, 42, 0.0); +INSERT INTO `Order Details` Values (10619, 22, 21, 40, 0.0); +INSERT INTO `Order Details` Values (10620, 24, 4.5, 5, 0.0); +INSERT INTO `Order Details` Values (10620, 52, 7, 5, 0.0); +INSERT INTO `Order Details` Values (10621, 19, 9.2, 5, 0.0); +INSERT INTO `Order Details` Values (10621, 23, 9, 10, 0.0); +INSERT INTO `Order Details` Values (10621, 70, 15, 20, 0.0); +INSERT INTO `Order Details` Values (10621, 71, 21.5, 15, 0.0); +INSERT INTO `Order Details` Values (10622, 2, 19, 20, 0.0); +INSERT INTO `Order Details` Values (10622, 68, 12.5, 18, 0.2); +INSERT INTO `Order Details` Values (10623, 14, 23.25, 21, 0.0); +INSERT INTO `Order Details` Values (10623, 19, 9.2, 15, 0.1); +INSERT INTO `Order Details` Values (10623, 21, 10, 25, 0.1); +INSERT INTO `Order Details` Values (10623, 24, 4.5, 3, 0.0); +INSERT INTO `Order Details` Values (10623, 35, 18, 30, 0.1); +INSERT INTO `Order Details` Values (10624, 28, 45.6, 10, 0.0); +INSERT INTO `Order Details` Values (10624, 29, 123.79, 6, 0.0); +INSERT INTO `Order Details` Values (10624, 44, 19.45, 10, 0.0); +INSERT INTO `Order Details` Values (10625, 14, 23.25, 3, 0.0); +INSERT INTO `Order Details` Values (10625, 42, 14, 5, 0.0); +INSERT INTO `Order Details` Values (10625, 60, 34, 10, 0.0); +INSERT INTO `Order Details` Values (10626, 53, 32.8, 12, 0.0); +INSERT INTO `Order Details` Values (10626, 60, 34, 20, 0.0); +INSERT INTO `Order Details` Values (10626, 71, 21.5, 20, 0.0); +INSERT INTO `Order Details` Values (10627, 62, 49.3, 15, 0.0); +INSERT INTO `Order Details` Values (10627, 73, 15, 35, 0.15); +INSERT INTO `Order Details` Values (10628, 1, 18, 25, 0.0); +INSERT INTO `Order Details` Values (10629, 29, 123.79, 20, 0.0); +INSERT INTO `Order Details` Values (10629, 64, 33.25, 9, 0.0); +INSERT INTO `Order Details` Values (10630, 55, 24, 12, 0.05); +INSERT INTO `Order Details` Values (10630, 76, 18, 35, 0.0); +INSERT INTO `Order Details` Values (10631, 75, 7.75, 8, 0.1); +INSERT INTO `Order Details` Values (10632, 2, 19, 30, 0.05); +INSERT INTO `Order Details` Values (10632, 33, 2.5, 20, 0.05); +INSERT INTO `Order Details` Values (10633, 12, 38, 36, 0.15); +INSERT INTO `Order Details` Values (10633, 13, 6, 13, 0.15); +INSERT INTO `Order Details` Values (10633, 26, 31.23, 35, 0.15); +INSERT INTO `Order Details` Values (10633, 62, 49.3, 80, 0.15); +INSERT INTO `Order Details` Values (10634, 7, 30, 35, 0.0); +INSERT INTO `Order Details` Values (10634, 18, 62.5, 50, 0.0); +INSERT INTO `Order Details` Values (10634, 51, 53, 15, 0.0); +INSERT INTO `Order Details` Values (10634, 75, 7.75, 2, 0.0); +INSERT INTO `Order Details` Values (10635, 4, 22, 10, 0.1); +INSERT INTO `Order Details` Values (10635, 5, 21.35, 15, 0.1); +INSERT INTO `Order Details` Values (10635, 22, 21, 40, 0.0); +INSERT INTO `Order Details` Values (10636, 4, 22, 25, 0.0); +INSERT INTO `Order Details` Values (10636, 58, 13.25, 6, 0.0); +INSERT INTO `Order Details` Values (10637, 11, 21, 10, 0.0); +INSERT INTO `Order Details` Values (10637, 50, 16.25, 25, 0.05); +INSERT INTO `Order Details` Values (10637, 56, 38, 60, 0.05); +INSERT INTO `Order Details` Values (10638, 45, 9.5, 20, 0.0); +INSERT INTO `Order Details` Values (10638, 65, 21.05, 21, 0.0); +INSERT INTO `Order Details` Values (10638, 72, 34.8, 60, 0.0); +INSERT INTO `Order Details` Values (10639, 18, 62.5, 8, 0.0); +INSERT INTO `Order Details` Values (10640, 69, 36, 20, 0.25); +INSERT INTO `Order Details` Values (10640, 70, 15, 15, 0.25); +INSERT INTO `Order Details` Values (10641, 2, 19, 50, 0.0); +INSERT INTO `Order Details` Values (10641, 40, 18.4, 60, 0.0); +INSERT INTO `Order Details` Values (10642, 21, 10, 30, 0.2); +INSERT INTO `Order Details` Values (10642, 61, 28.5, 20, 0.2); +INSERT INTO `Order Details` Values (10643, 28, 45.6, 15, 0.25); +INSERT INTO `Order Details` Values (10643, 39, 18, 21, 0.25); +INSERT INTO `Order Details` Values (10643, 46, 12, 2, 0.25); +INSERT INTO `Order Details` Values (10644, 18, 62.5, 4, 0.1); +INSERT INTO `Order Details` Values (10644, 43, 46, 20, 0.0); +INSERT INTO `Order Details` Values (10644, 46, 12, 21, 0.1); +INSERT INTO `Order Details` Values (10645, 18, 62.5, 20, 0.0); +INSERT INTO `Order Details` Values (10645, 36, 19, 15, 0.0); +INSERT INTO `Order Details` Values (10646, 1, 18, 15, 0.25); +INSERT INTO `Order Details` Values (10646, 10, 31, 18, 0.25); +INSERT INTO `Order Details` Values (10646, 71, 21.5, 30, 0.25); +INSERT INTO `Order Details` Values (10646, 77, 13, 35, 0.25); +INSERT INTO `Order Details` Values (10647, 19, 9.2, 30, 0.0); +INSERT INTO `Order Details` Values (10647, 39, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10648, 22, 21, 15, 0.0); +INSERT INTO `Order Details` Values (10648, 24, 4.5, 15, 0.15); +INSERT INTO `Order Details` Values (10649, 28, 45.6, 20, 0.0); +INSERT INTO `Order Details` Values (10649, 72, 34.8, 15, 0.0); +INSERT INTO `Order Details` Values (10650, 30, 25.89, 30, 0.0); +INSERT INTO `Order Details` Values (10650, 53, 32.8, 25, 0.05); +INSERT INTO `Order Details` Values (10650, 54, 7.45, 30, 0.0); +INSERT INTO `Order Details` Values (10651, 19, 9.2, 12, 0.25); +INSERT INTO `Order Details` Values (10651, 22, 21, 20, 0.25); +INSERT INTO `Order Details` Values (10652, 30, 25.89, 2, 0.25); +INSERT INTO `Order Details` Values (10652, 42, 14, 20, 0.0); +INSERT INTO `Order Details` Values (10653, 16, 17.45, 30, 0.1); +INSERT INTO `Order Details` Values (10653, 60, 34, 20, 0.1); +INSERT INTO `Order Details` Values (10654, 4, 22, 12, 0.1); +INSERT INTO `Order Details` Values (10654, 39, 18, 20, 0.1); +INSERT INTO `Order Details` Values (10654, 54, 7.45, 6, 0.1); +INSERT INTO `Order Details` Values (10655, 41, 9.65, 20, 0.2); +INSERT INTO `Order Details` Values (10656, 14, 23.25, 3, 0.1); +INSERT INTO `Order Details` Values (10656, 44, 19.45, 28, 0.1); +INSERT INTO `Order Details` Values (10656, 47, 9.5, 6, 0.1); +INSERT INTO `Order Details` Values (10657, 15, 15.5, 50, 0.0); +INSERT INTO `Order Details` Values (10657, 41, 9.65, 24, 0.0); +INSERT INTO `Order Details` Values (10657, 46, 12, 45, 0.0); +INSERT INTO `Order Details` Values (10657, 47, 9.5, 10, 0.0); +INSERT INTO `Order Details` Values (10657, 56, 38, 45, 0.0); +INSERT INTO `Order Details` Values (10657, 60, 34, 30, 0.0); +INSERT INTO `Order Details` Values (10658, 21, 10, 60, 0.0); +INSERT INTO `Order Details` Values (10658, 40, 18.4, 70, 0.05); +INSERT INTO `Order Details` Values (10658, 60, 34, 55, 0.05); +INSERT INTO `Order Details` Values (10658, 77, 13, 70, 0.05); +INSERT INTO `Order Details` Values (10659, 31, 12.5, 20, 0.05); +INSERT INTO `Order Details` Values (10659, 40, 18.4, 24, 0.05); +INSERT INTO `Order Details` Values (10659, 70, 15, 40, 0.05); +INSERT INTO `Order Details` Values (10660, 20, 81, 21, 0.0); +INSERT INTO `Order Details` Values (10661, 39, 18, 3, 0.2); +INSERT INTO `Order Details` Values (10661, 58, 13.25, 49, 0.2); +INSERT INTO `Order Details` Values (10662, 68, 12.5, 10, 0.0); +INSERT INTO `Order Details` Values (10663, 40, 18.4, 30, 0.05); +INSERT INTO `Order Details` Values (10663, 42, 14, 30, 0.05); +INSERT INTO `Order Details` Values (10663, 51, 53, 20, 0.05); +INSERT INTO `Order Details` Values (10664, 10, 31, 24, 0.15); +INSERT INTO `Order Details` Values (10664, 56, 38, 12, 0.15); +INSERT INTO `Order Details` Values (10664, 65, 21.05, 15, 0.15); +INSERT INTO `Order Details` Values (10665, 51, 53, 20, 0.0); +INSERT INTO `Order Details` Values (10665, 59, 55, 1, 0.0); +INSERT INTO `Order Details` Values (10665, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10666, 29, 123.79, 36, 0.0); +INSERT INTO `Order Details` Values (10666, 65, 21.05, 10, 0.0); +INSERT INTO `Order Details` Values (10667, 69, 36, 45, 0.2); +INSERT INTO `Order Details` Values (10667, 71, 21.5, 14, 0.2); +INSERT INTO `Order Details` Values (10668, 31, 12.5, 8, 0.1); +INSERT INTO `Order Details` Values (10668, 55, 24, 4, 0.1); +INSERT INTO `Order Details` Values (10668, 64, 33.25, 15, 0.1); +INSERT INTO `Order Details` Values (10669, 36, 19, 30, 0.0); +INSERT INTO `Order Details` Values (10670, 23, 9, 32, 0.0); +INSERT INTO `Order Details` Values (10670, 46, 12, 60, 0.0); +INSERT INTO `Order Details` Values (10670, 67, 14, 25, 0.0); +INSERT INTO `Order Details` Values (10670, 73, 15, 50, 0.0); +INSERT INTO `Order Details` Values (10670, 75, 7.75, 25, 0.0); +INSERT INTO `Order Details` Values (10671, 16, 17.45, 10, 0.0); +INSERT INTO `Order Details` Values (10671, 62, 49.3, 10, 0.0); +INSERT INTO `Order Details` Values (10671, 65, 21.05, 12, 0.0); +INSERT INTO `Order Details` Values (10672, 38, 263.5, 15, 0.1); +INSERT INTO `Order Details` Values (10672, 71, 21.5, 12, 0.0); +INSERT INTO `Order Details` Values (10673, 16, 17.45, 3, 0.0); +INSERT INTO `Order Details` Values (10673, 42, 14, 6, 0.0); +INSERT INTO `Order Details` Values (10673, 43, 46, 6, 0.0); +INSERT INTO `Order Details` Values (10674, 23, 9, 5, 0.0); +INSERT INTO `Order Details` Values (10675, 14, 23.25, 30, 0.0); +INSERT INTO `Order Details` Values (10675, 53, 32.8, 10, 0.0); +INSERT INTO `Order Details` Values (10675, 58, 13.25, 30, 0.0); +INSERT INTO `Order Details` Values (10676, 10, 31, 2, 0.0); +INSERT INTO `Order Details` Values (10676, 19, 9.2, 7, 0.0); +INSERT INTO `Order Details` Values (10676, 44, 19.45, 21, 0.0); +INSERT INTO `Order Details` Values (10677, 26, 31.23, 30, 0.15); +INSERT INTO `Order Details` Values (10677, 33, 2.5, 8, 0.15); +INSERT INTO `Order Details` Values (10678, 12, 38, 100, 0.0); +INSERT INTO `Order Details` Values (10678, 33, 2.5, 30, 0.0); +INSERT INTO `Order Details` Values (10678, 41, 9.65, 120, 0.0); +INSERT INTO `Order Details` Values (10678, 54, 7.45, 30, 0.0); +INSERT INTO `Order Details` Values (10679, 59, 55, 12, 0.0); +INSERT INTO `Order Details` Values (10680, 16, 17.45, 50, 0.25); +INSERT INTO `Order Details` Values (10680, 31, 12.5, 20, 0.25); +INSERT INTO `Order Details` Values (10680, 42, 14, 40, 0.25); +INSERT INTO `Order Details` Values (10681, 19, 9.2, 30, 0.1); +INSERT INTO `Order Details` Values (10681, 21, 10, 12, 0.1); +INSERT INTO `Order Details` Values (10681, 64, 33.25, 28, 0.0); +INSERT INTO `Order Details` Values (10682, 33, 2.5, 30, 0.0); +INSERT INTO `Order Details` Values (10682, 66, 17, 4, 0.0); +INSERT INTO `Order Details` Values (10682, 75, 7.75, 30, 0.0); +INSERT INTO `Order Details` Values (10683, 52, 7, 9, 0.0); +INSERT INTO `Order Details` Values (10684, 40, 18.4, 20, 0.0); +INSERT INTO `Order Details` Values (10684, 47, 9.5, 40, 0.0); +INSERT INTO `Order Details` Values (10684, 60, 34, 30, 0.0); +INSERT INTO `Order Details` Values (10685, 10, 31, 20, 0.0); +INSERT INTO `Order Details` Values (10685, 41, 9.65, 4, 0.0); +INSERT INTO `Order Details` Values (10685, 47, 9.5, 15, 0.0); +INSERT INTO `Order Details` Values (10686, 17, 39, 30, 0.2); +INSERT INTO `Order Details` Values (10686, 26, 31.23, 15, 0.0); +INSERT INTO `Order Details` Values (10687, 9, 97, 50, 0.25); +INSERT INTO `Order Details` Values (10687, 29, 123.79, 10, 0.0); +INSERT INTO `Order Details` Values (10687, 36, 19, 6, 0.25); +INSERT INTO `Order Details` Values (10688, 10, 31, 18, 0.1); +INSERT INTO `Order Details` Values (10688, 28, 45.6, 60, 0.1); +INSERT INTO `Order Details` Values (10688, 34, 14, 14, 0.0); +INSERT INTO `Order Details` Values (10689, 1, 18, 35, 0.25); +INSERT INTO `Order Details` Values (10690, 56, 38, 20, 0.25); +INSERT INTO `Order Details` Values (10690, 77, 13, 30, 0.25); +INSERT INTO `Order Details` Values (10691, 1, 18, 30, 0.0); +INSERT INTO `Order Details` Values (10691, 29, 123.79, 40, 0.0); +INSERT INTO `Order Details` Values (10691, 43, 46, 40, 0.0); +INSERT INTO `Order Details` Values (10691, 44, 19.45, 24, 0.0); +INSERT INTO `Order Details` Values (10691, 62, 49.3, 48, 0.0); +INSERT INTO `Order Details` Values (10692, 63, 43.9, 20, 0.0); +INSERT INTO `Order Details` Values (10693, 9, 97, 6, 0.0); +INSERT INTO `Order Details` Values (10693, 54, 7.45, 60, 0.15); +INSERT INTO `Order Details` Values (10693, 69, 36, 30, 0.15); +INSERT INTO `Order Details` Values (10693, 73, 15, 15, 0.15); +INSERT INTO `Order Details` Values (10694, 7, 30, 90, 0.0); +INSERT INTO `Order Details` Values (10694, 59, 55, 25, 0.0); +INSERT INTO `Order Details` Values (10694, 70, 15, 50, 0.0); +INSERT INTO `Order Details` Values (10695, 8, 40, 10, 0.0); +INSERT INTO `Order Details` Values (10695, 12, 38, 4, 0.0); +INSERT INTO `Order Details` Values (10695, 24, 4.5, 20, 0.0); +INSERT INTO `Order Details` Values (10696, 17, 39, 20, 0.0); +INSERT INTO `Order Details` Values (10696, 46, 12, 18, 0.0); +INSERT INTO `Order Details` Values (10697, 19, 9.2, 7, 0.25); +INSERT INTO `Order Details` Values (10697, 35, 18, 9, 0.25); +INSERT INTO `Order Details` Values (10697, 58, 13.25, 30, 0.25); +INSERT INTO `Order Details` Values (10697, 70, 15, 30, 0.25); +INSERT INTO `Order Details` Values (10698, 11, 21, 15, 0.0); +INSERT INTO `Order Details` Values (10698, 17, 39, 8, 0.05); +INSERT INTO `Order Details` Values (10698, 29, 123.79, 12, 0.05); +INSERT INTO `Order Details` Values (10698, 65, 21.05, 65, 0.05); +INSERT INTO `Order Details` Values (10698, 70, 15, 8, 0.05); +INSERT INTO `Order Details` Values (10699, 47, 9.5, 12, 0.0); +INSERT INTO `Order Details` Values (10700, 1, 18, 5, 0.2); +INSERT INTO `Order Details` Values (10700, 34, 14, 12, 0.2); +INSERT INTO `Order Details` Values (10700, 68, 12.5, 40, 0.2); +INSERT INTO `Order Details` Values (10700, 71, 21.5, 60, 0.2); +INSERT INTO `Order Details` Values (10701, 59, 55, 42, 0.15); +INSERT INTO `Order Details` Values (10701, 71, 21.5, 20, 0.15); +INSERT INTO `Order Details` Values (10701, 76, 18, 35, 0.15); +INSERT INTO `Order Details` Values (10702, 3, 10, 6, 0.0); +INSERT INTO `Order Details` Values (10702, 76, 18, 15, 0.0); +INSERT INTO `Order Details` Values (10703, 2, 19, 5, 0.0); +INSERT INTO `Order Details` Values (10703, 59, 55, 35, 0.0); +INSERT INTO `Order Details` Values (10703, 73, 15, 35, 0.0); +INSERT INTO `Order Details` Values (10704, 4, 22, 6, 0.0); +INSERT INTO `Order Details` Values (10704, 24, 4.5, 35, 0.0); +INSERT INTO `Order Details` Values (10704, 48, 12.75, 24, 0.0); +INSERT INTO `Order Details` Values (10705, 31, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10705, 32, 32, 4, 0.0); +INSERT INTO `Order Details` Values (10706, 16, 17.45, 20, 0.0); +INSERT INTO `Order Details` Values (10706, 43, 46, 24, 0.0); +INSERT INTO `Order Details` Values (10706, 59, 55, 8, 0.0); +INSERT INTO `Order Details` Values (10707, 55, 24, 21, 0.0); +INSERT INTO `Order Details` Values (10707, 57, 19.5, 40, 0.0); +INSERT INTO `Order Details` Values (10707, 70, 15, 28, 0.15); +INSERT INTO `Order Details` Values (10708, 5, 21.35, 4, 0.0); +INSERT INTO `Order Details` Values (10708, 36, 19, 5, 0.0); +INSERT INTO `Order Details` Values (10709, 8, 40, 40, 0.0); +INSERT INTO `Order Details` Values (10709, 51, 53, 28, 0.0); +INSERT INTO `Order Details` Values (10709, 60, 34, 10, 0.0); +INSERT INTO `Order Details` Values (10710, 19, 9.2, 5, 0.0); +INSERT INTO `Order Details` Values (10710, 47, 9.5, 5, 0.0); +INSERT INTO `Order Details` Values (10711, 19, 9.2, 12, 0.0); +INSERT INTO `Order Details` Values (10711, 41, 9.65, 42, 0.0); +INSERT INTO `Order Details` Values (10711, 53, 32.8, 120, 0.0); +INSERT INTO `Order Details` Values (10712, 53, 32.8, 3, 0.05); +INSERT INTO `Order Details` Values (10712, 56, 38, 30, 0.0); +INSERT INTO `Order Details` Values (10713, 10, 31, 18, 0.0); +INSERT INTO `Order Details` Values (10713, 26, 31.23, 30, 0.0); +INSERT INTO `Order Details` Values (10713, 45, 9.5, 110, 0.0); +INSERT INTO `Order Details` Values (10713, 46, 12, 24, 0.0); +INSERT INTO `Order Details` Values (10714, 2, 19, 30, 0.25); +INSERT INTO `Order Details` Values (10714, 17, 39, 27, 0.25); +INSERT INTO `Order Details` Values (10714, 47, 9.5, 50, 0.25); +INSERT INTO `Order Details` Values (10714, 56, 38, 18, 0.25); +INSERT INTO `Order Details` Values (10714, 58, 13.25, 12, 0.25); +INSERT INTO `Order Details` Values (10715, 10, 31, 21, 0.0); +INSERT INTO `Order Details` Values (10715, 71, 21.5, 30, 0.0); +INSERT INTO `Order Details` Values (10716, 21, 10, 5, 0.0); +INSERT INTO `Order Details` Values (10716, 51, 53, 7, 0.0); +INSERT INTO `Order Details` Values (10716, 61, 28.5, 10, 0.0); +INSERT INTO `Order Details` Values (10717, 21, 10, 32, 0.05); +INSERT INTO `Order Details` Values (10717, 54, 7.45, 15, 0.0); +INSERT INTO `Order Details` Values (10717, 69, 36, 25, 0.05); +INSERT INTO `Order Details` Values (10718, 12, 38, 36, 0.0); +INSERT INTO `Order Details` Values (10718, 16, 17.45, 20, 0.0); +INSERT INTO `Order Details` Values (10718, 36, 19, 40, 0.0); +INSERT INTO `Order Details` Values (10718, 62, 49.3, 20, 0.0); +INSERT INTO `Order Details` Values (10719, 18, 62.5, 12, 0.25); +INSERT INTO `Order Details` Values (10719, 30, 25.89, 3, 0.25); +INSERT INTO `Order Details` Values (10719, 54, 7.45, 40, 0.25); +INSERT INTO `Order Details` Values (10720, 35, 18, 21, 0.0); +INSERT INTO `Order Details` Values (10720, 71, 21.5, 8, 0.0); +INSERT INTO `Order Details` Values (10721, 44, 19.45, 50, 0.05); +INSERT INTO `Order Details` Values (10722, 2, 19, 3, 0.0); +INSERT INTO `Order Details` Values (10722, 31, 12.5, 50, 0.0); +INSERT INTO `Order Details` Values (10722, 68, 12.5, 45, 0.0); +INSERT INTO `Order Details` Values (10722, 75, 7.75, 42, 0.0); +INSERT INTO `Order Details` Values (10723, 26, 31.23, 15, 0.0); +INSERT INTO `Order Details` Values (10724, 10, 31, 16, 0.0); +INSERT INTO `Order Details` Values (10724, 61, 28.5, 5, 0.0); +INSERT INTO `Order Details` Values (10725, 41, 9.65, 12, 0.0); +INSERT INTO `Order Details` Values (10725, 52, 7, 4, 0.0); +INSERT INTO `Order Details` Values (10725, 55, 24, 6, 0.0); +INSERT INTO `Order Details` Values (10726, 4, 22, 25, 0.0); +INSERT INTO `Order Details` Values (10726, 11, 21, 5, 0.0); +INSERT INTO `Order Details` Values (10727, 17, 39, 20, 0.05); +INSERT INTO `Order Details` Values (10727, 56, 38, 10, 0.05); +INSERT INTO `Order Details` Values (10727, 59, 55, 10, 0.05); +INSERT INTO `Order Details` Values (10728, 30, 25.89, 15, 0.0); +INSERT INTO `Order Details` Values (10728, 40, 18.4, 6, 0.0); +INSERT INTO `Order Details` Values (10728, 55, 24, 12, 0.0); +INSERT INTO `Order Details` Values (10728, 60, 34, 15, 0.0); +INSERT INTO `Order Details` Values (10729, 1, 18, 50, 0.0); +INSERT INTO `Order Details` Values (10729, 21, 10, 30, 0.0); +INSERT INTO `Order Details` Values (10729, 50, 16.25, 40, 0.0); +INSERT INTO `Order Details` Values (10730, 16, 17.45, 15, 0.05); +INSERT INTO `Order Details` Values (10730, 31, 12.5, 3, 0.05); +INSERT INTO `Order Details` Values (10730, 65, 21.05, 10, 0.05); +INSERT INTO `Order Details` Values (10731, 21, 10, 40, 0.05); +INSERT INTO `Order Details` Values (10731, 51, 53, 30, 0.05); +INSERT INTO `Order Details` Values (10732, 76, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10733, 14, 23.25, 16, 0.0); +INSERT INTO `Order Details` Values (10733, 28, 45.6, 20, 0.0); +INSERT INTO `Order Details` Values (10733, 52, 7, 25, 0.0); +INSERT INTO `Order Details` Values (10734, 6, 25, 30, 0.0); +INSERT INTO `Order Details` Values (10734, 30, 25.89, 15, 0.0); +INSERT INTO `Order Details` Values (10734, 76, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10735, 61, 28.5, 20, 0.1); +INSERT INTO `Order Details` Values (10735, 77, 13, 2, 0.1); +INSERT INTO `Order Details` Values (10736, 65, 21.05, 40, 0.0); +INSERT INTO `Order Details` Values (10736, 75, 7.75, 20, 0.0); +INSERT INTO `Order Details` Values (10737, 13, 6, 4, 0.0); +INSERT INTO `Order Details` Values (10737, 41, 9.65, 12, 0.0); +INSERT INTO `Order Details` Values (10738, 16, 17.45, 3, 0.0); +INSERT INTO `Order Details` Values (10739, 36, 19, 6, 0.0); +INSERT INTO `Order Details` Values (10739, 52, 7, 18, 0.0); +INSERT INTO `Order Details` Values (10740, 28, 45.6, 5, 0.2); +INSERT INTO `Order Details` Values (10740, 35, 18, 35, 0.2); +INSERT INTO `Order Details` Values (10740, 45, 9.5, 40, 0.2); +INSERT INTO `Order Details` Values (10740, 56, 38, 14, 0.2); +INSERT INTO `Order Details` Values (10741, 2, 19, 15, 0.2); +INSERT INTO `Order Details` Values (10742, 3, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10742, 60, 34, 50, 0.0); +INSERT INTO `Order Details` Values (10742, 72, 34.8, 35, 0.0); +INSERT INTO `Order Details` Values (10743, 46, 12, 28, 0.05); +INSERT INTO `Order Details` Values (10744, 40, 18.4, 50, 0.2); +INSERT INTO `Order Details` Values (10745, 18, 62.5, 24, 0.0); +INSERT INTO `Order Details` Values (10745, 44, 19.45, 16, 0.0); +INSERT INTO `Order Details` Values (10745, 59, 55, 45, 0.0); +INSERT INTO `Order Details` Values (10745, 72, 34.8, 7, 0.0); +INSERT INTO `Order Details` Values (10746, 13, 6, 6, 0.0); +INSERT INTO `Order Details` Values (10746, 42, 14, 28, 0.0); +INSERT INTO `Order Details` Values (10746, 62, 49.3, 9, 0.0); +INSERT INTO `Order Details` Values (10746, 69, 36, 40, 0.0); +INSERT INTO `Order Details` Values (10747, 31, 12.5, 8, 0.0); +INSERT INTO `Order Details` Values (10747, 41, 9.65, 35, 0.0); +INSERT INTO `Order Details` Values (10747, 63, 43.9, 9, 0.0); +INSERT INTO `Order Details` Values (10747, 69, 36, 30, 0.0); +INSERT INTO `Order Details` Values (10748, 23, 9, 44, 0.0); +INSERT INTO `Order Details` Values (10748, 40, 18.4, 40, 0.0); +INSERT INTO `Order Details` Values (10748, 56, 38, 28, 0.0); +INSERT INTO `Order Details` Values (10749, 56, 38, 15, 0.0); +INSERT INTO `Order Details` Values (10749, 59, 55, 6, 0.0); +INSERT INTO `Order Details` Values (10749, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10750, 14, 23.25, 5, 0.15); +INSERT INTO `Order Details` Values (10750, 45, 9.5, 40, 0.15); +INSERT INTO `Order Details` Values (10750, 59, 55, 25, 0.15); +INSERT INTO `Order Details` Values (10751, 26, 31.23, 12, 0.1); +INSERT INTO `Order Details` Values (10751, 30, 25.89, 30, 0.0); +INSERT INTO `Order Details` Values (10751, 50, 16.25, 20, 0.1); +INSERT INTO `Order Details` Values (10751, 73, 15, 15, 0.0); +INSERT INTO `Order Details` Values (10752, 1, 18, 8, 0.0); +INSERT INTO `Order Details` Values (10752, 69, 36, 3, 0.0); +INSERT INTO `Order Details` Values (10753, 45, 9.5, 4, 0.0); +INSERT INTO `Order Details` Values (10753, 74, 10, 5, 0.0); +INSERT INTO `Order Details` Values (10754, 40, 18.4, 3, 0.0); +INSERT INTO `Order Details` Values (10755, 47, 9.5, 30, 0.25); +INSERT INTO `Order Details` Values (10755, 56, 38, 30, 0.25); +INSERT INTO `Order Details` Values (10755, 57, 19.5, 14, 0.25); +INSERT INTO `Order Details` Values (10755, 69, 36, 25, 0.25); +INSERT INTO `Order Details` Values (10756, 18, 62.5, 21, 0.2); +INSERT INTO `Order Details` Values (10756, 36, 19, 20, 0.2); +INSERT INTO `Order Details` Values (10756, 68, 12.5, 6, 0.2); +INSERT INTO `Order Details` Values (10756, 69, 36, 20, 0.2); +INSERT INTO `Order Details` Values (10757, 34, 14, 30, 0.0); +INSERT INTO `Order Details` Values (10757, 59, 55, 7, 0.0); +INSERT INTO `Order Details` Values (10757, 62, 49.3, 30, 0.0); +INSERT INTO `Order Details` Values (10757, 64, 33.25, 24, 0.0); +INSERT INTO `Order Details` Values (10758, 26, 31.23, 20, 0.0); +INSERT INTO `Order Details` Values (10758, 52, 7, 60, 0.0); +INSERT INTO `Order Details` Values (10758, 70, 15, 40, 0.0); +INSERT INTO `Order Details` Values (10759, 32, 32, 10, 0.0); +INSERT INTO `Order Details` Values (10760, 25, 14, 12, 0.25); +INSERT INTO `Order Details` Values (10760, 27, 43.9, 40, 0.0); +INSERT INTO `Order Details` Values (10760, 43, 46, 30, 0.25); +INSERT INTO `Order Details` Values (10761, 25, 14, 35, 0.25); +INSERT INTO `Order Details` Values (10761, 75, 7.75, 18, 0.0); +INSERT INTO `Order Details` Values (10762, 39, 18, 16, 0.0); +INSERT INTO `Order Details` Values (10762, 47, 9.5, 30, 0.0); +INSERT INTO `Order Details` Values (10762, 51, 53, 28, 0.0); +INSERT INTO `Order Details` Values (10762, 56, 38, 60, 0.0); +INSERT INTO `Order Details` Values (10763, 21, 10, 40, 0.0); +INSERT INTO `Order Details` Values (10763, 22, 21, 6, 0.0); +INSERT INTO `Order Details` Values (10763, 24, 4.5, 20, 0.0); +INSERT INTO `Order Details` Values (10764, 3, 10, 20, 0.1); +INSERT INTO `Order Details` Values (10764, 39, 18, 130, 0.1); +INSERT INTO `Order Details` Values (10765, 65, 21.05, 80, 0.1); +INSERT INTO `Order Details` Values (10766, 2, 19, 40, 0.0); +INSERT INTO `Order Details` Values (10766, 7, 30, 35, 0.0); +INSERT INTO `Order Details` Values (10766, 68, 12.5, 40, 0.0); +INSERT INTO `Order Details` Values (10767, 42, 14, 2, 0.0); +INSERT INTO `Order Details` Values (10768, 22, 21, 4, 0.0); +INSERT INTO `Order Details` Values (10768, 31, 12.5, 50, 0.0); +INSERT INTO `Order Details` Values (10768, 60, 34, 15, 0.0); +INSERT INTO `Order Details` Values (10768, 71, 21.5, 12, 0.0); +INSERT INTO `Order Details` Values (10769, 41, 9.65, 30, 0.05); +INSERT INTO `Order Details` Values (10769, 52, 7, 15, 0.05); +INSERT INTO `Order Details` Values (10769, 61, 28.5, 20, 0.0); +INSERT INTO `Order Details` Values (10769, 62, 49.3, 15, 0.0); +INSERT INTO `Order Details` Values (10770, 11, 21, 15, 0.25); +INSERT INTO `Order Details` Values (10771, 71, 21.5, 16, 0.0); +INSERT INTO `Order Details` Values (10772, 29, 123.79, 18, 0.0); +INSERT INTO `Order Details` Values (10772, 59, 55, 25, 0.0); +INSERT INTO `Order Details` Values (10773, 17, 39, 33, 0.0); +INSERT INTO `Order Details` Values (10773, 31, 12.5, 70, 0.2); +INSERT INTO `Order Details` Values (10773, 75, 7.75, 7, 0.2); +INSERT INTO `Order Details` Values (10774, 31, 12.5, 2, 0.25); +INSERT INTO `Order Details` Values (10774, 66, 17, 50, 0.0); +INSERT INTO `Order Details` Values (10775, 10, 31, 6, 0.0); +INSERT INTO `Order Details` Values (10775, 67, 14, 3, 0.0); +INSERT INTO `Order Details` Values (10776, 31, 12.5, 16, 0.05); +INSERT INTO `Order Details` Values (10776, 42, 14, 12, 0.05); +INSERT INTO `Order Details` Values (10776, 45, 9.5, 27, 0.05); +INSERT INTO `Order Details` Values (10776, 51, 53, 120, 0.05); +INSERT INTO `Order Details` Values (10777, 42, 14, 20, 0.2); +INSERT INTO `Order Details` Values (10778, 41, 9.65, 10, 0.0); +INSERT INTO `Order Details` Values (10779, 16, 17.45, 20, 0.0); +INSERT INTO `Order Details` Values (10779, 62, 49.3, 20, 0.0); +INSERT INTO `Order Details` Values (10780, 70, 15, 35, 0.0); +INSERT INTO `Order Details` Values (10780, 77, 13, 15, 0.0); +INSERT INTO `Order Details` Values (10781, 54, 7.45, 3, 0.2); +INSERT INTO `Order Details` Values (10781, 56, 38, 20, 0.2); +INSERT INTO `Order Details` Values (10781, 74, 10, 35, 0.0); +INSERT INTO `Order Details` Values (10782, 31, 12.5, 1, 0.0); +INSERT INTO `Order Details` Values (10783, 31, 12.5, 10, 0.0); +INSERT INTO `Order Details` Values (10783, 38, 263.5, 5, 0.0); +INSERT INTO `Order Details` Values (10784, 36, 19, 30, 0.0); +INSERT INTO `Order Details` Values (10784, 39, 18, 2, 0.15); +INSERT INTO `Order Details` Values (10784, 72, 34.8, 30, 0.15); +INSERT INTO `Order Details` Values (10785, 10, 31, 10, 0.0); +INSERT INTO `Order Details` Values (10785, 75, 7.75, 10, 0.0); +INSERT INTO `Order Details` Values (10786, 8, 40, 30, 0.2); +INSERT INTO `Order Details` Values (10786, 30, 25.89, 15, 0.2); +INSERT INTO `Order Details` Values (10786, 75, 7.75, 42, 0.2); +INSERT INTO `Order Details` Values (10787, 2, 19, 15, 0.05); +INSERT INTO `Order Details` Values (10787, 29, 123.79, 20, 0.05); +INSERT INTO `Order Details` Values (10788, 19, 9.2, 50, 0.05); +INSERT INTO `Order Details` Values (10788, 75, 7.75, 40, 0.05); +INSERT INTO `Order Details` Values (10789, 18, 62.5, 30, 0.0); +INSERT INTO `Order Details` Values (10789, 35, 18, 15, 0.0); +INSERT INTO `Order Details` Values (10789, 63, 43.9, 30, 0.0); +INSERT INTO `Order Details` Values (10789, 68, 12.5, 18, 0.0); +INSERT INTO `Order Details` Values (10790, 7, 30, 3, 0.15); +INSERT INTO `Order Details` Values (10790, 56, 38, 20, 0.15); +INSERT INTO `Order Details` Values (10791, 29, 123.79, 14, 0.05); +INSERT INTO `Order Details` Values (10791, 41, 9.65, 20, 0.05); +INSERT INTO `Order Details` Values (10792, 2, 19, 10, 0.0); +INSERT INTO `Order Details` Values (10792, 54, 7.45, 3, 0.0); +INSERT INTO `Order Details` Values (10792, 68, 12.5, 15, 0.0); +INSERT INTO `Order Details` Values (10793, 41, 9.65, 14, 0.0); +INSERT INTO `Order Details` Values (10793, 52, 7, 8, 0.0); +INSERT INTO `Order Details` Values (10794, 14, 23.25, 15, 0.2); +INSERT INTO `Order Details` Values (10794, 54, 7.45, 6, 0.2); +INSERT INTO `Order Details` Values (10795, 16, 17.45, 65, 0.0); +INSERT INTO `Order Details` Values (10795, 17, 39, 35, 0.25); +INSERT INTO `Order Details` Values (10796, 26, 31.23, 21, 0.2); +INSERT INTO `Order Details` Values (10796, 44, 19.45, 10, 0.0); +INSERT INTO `Order Details` Values (10796, 64, 33.25, 35, 0.2); +INSERT INTO `Order Details` Values (10796, 69, 36, 24, 0.2); +INSERT INTO `Order Details` Values (10797, 11, 21, 20, 0.0); +INSERT INTO `Order Details` Values (10798, 62, 49.3, 2, 0.0); +INSERT INTO `Order Details` Values (10798, 72, 34.8, 10, 0.0); +INSERT INTO `Order Details` Values (10799, 13, 6, 20, 0.15); +INSERT INTO `Order Details` Values (10799, 24, 4.5, 20, 0.15); +INSERT INTO `Order Details` Values (10799, 59, 55, 25, 0.0); +INSERT INTO `Order Details` Values (10800, 11, 21, 50, 0.1); +INSERT INTO `Order Details` Values (10800, 51, 53, 10, 0.1); +INSERT INTO `Order Details` Values (10800, 54, 7.45, 7, 0.1); +INSERT INTO `Order Details` Values (10801, 17, 39, 40, 0.25); +INSERT INTO `Order Details` Values (10801, 29, 123.79, 20, 0.25); +INSERT INTO `Order Details` Values (10802, 30, 25.89, 25, 0.25); +INSERT INTO `Order Details` Values (10802, 51, 53, 30, 0.25); +INSERT INTO `Order Details` Values (10802, 55, 24, 60, 0.25); +INSERT INTO `Order Details` Values (10802, 62, 49.3, 5, 0.25); +INSERT INTO `Order Details` Values (10803, 19, 9.2, 24, 0.05); +INSERT INTO `Order Details` Values (10803, 25, 14, 15, 0.05); +INSERT INTO `Order Details` Values (10803, 59, 55, 15, 0.05); +INSERT INTO `Order Details` Values (10804, 10, 31, 36, 0.0); +INSERT INTO `Order Details` Values (10804, 28, 45.6, 24, 0.0); +INSERT INTO `Order Details` Values (10804, 49, 20, 4, 0.15); +INSERT INTO `Order Details` Values (10805, 34, 14, 10, 0.0); +INSERT INTO `Order Details` Values (10805, 38, 263.5, 10, 0.0); +INSERT INTO `Order Details` Values (10806, 2, 19, 20, 0.25); +INSERT INTO `Order Details` Values (10806, 65, 21.05, 2, 0.0); +INSERT INTO `Order Details` Values (10806, 74, 10, 15, 0.25); +INSERT INTO `Order Details` Values (10807, 40, 18.4, 1, 0.0); +INSERT INTO `Order Details` Values (10808, 56, 38, 20, 0.15); +INSERT INTO `Order Details` Values (10808, 76, 18, 50, 0.15); +INSERT INTO `Order Details` Values (10809, 52, 7, 20, 0.0); +INSERT INTO `Order Details` Values (10810, 13, 6, 7, 0.0); +INSERT INTO `Order Details` Values (10810, 25, 14, 5, 0.0); +INSERT INTO `Order Details` Values (10810, 70, 15, 5, 0.0); +INSERT INTO `Order Details` Values (10811, 19, 9.2, 15, 0.0); +INSERT INTO `Order Details` Values (10811, 23, 9, 18, 0.0); +INSERT INTO `Order Details` Values (10811, 40, 18.4, 30, 0.0); +INSERT INTO `Order Details` Values (10812, 31, 12.5, 16, 0.1); +INSERT INTO `Order Details` Values (10812, 72, 34.8, 40, 0.1); +INSERT INTO `Order Details` Values (10812, 77, 13, 20, 0.0); +INSERT INTO `Order Details` Values (10813, 2, 19, 12, 0.2); +INSERT INTO `Order Details` Values (10813, 46, 12, 35, 0.0); +INSERT INTO `Order Details` Values (10814, 41, 9.65, 20, 0.0); +INSERT INTO `Order Details` Values (10814, 43, 46, 20, 0.15); +INSERT INTO `Order Details` Values (10814, 48, 12.75, 8, 0.15); +INSERT INTO `Order Details` Values (10814, 61, 28.5, 30, 0.15); +INSERT INTO `Order Details` Values (10815, 33, 2.5, 16, 0.0); +INSERT INTO `Order Details` Values (10816, 38, 263.5, 30, 0.05); +INSERT INTO `Order Details` Values (10816, 62, 49.3, 20, 0.05); +INSERT INTO `Order Details` Values (10817, 26, 31.23, 40, 0.15); +INSERT INTO `Order Details` Values (10817, 38, 263.5, 30, 0.0); +INSERT INTO `Order Details` Values (10817, 40, 18.4, 60, 0.15); +INSERT INTO `Order Details` Values (10817, 62, 49.3, 25, 0.15); +INSERT INTO `Order Details` Values (10818, 32, 32, 20, 0.0); +INSERT INTO `Order Details` Values (10818, 41, 9.65, 20, 0.0); +INSERT INTO `Order Details` Values (10819, 43, 46, 7, 0.0); +INSERT INTO `Order Details` Values (10819, 75, 7.75, 20, 0.0); +INSERT INTO `Order Details` Values (10820, 56, 38, 30, 0.0); +INSERT INTO `Order Details` Values (10821, 35, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10821, 51, 53, 6, 0.0); +INSERT INTO `Order Details` Values (10822, 62, 49.3, 3, 0.0); +INSERT INTO `Order Details` Values (10822, 70, 15, 6, 0.0); +INSERT INTO `Order Details` Values (10823, 11, 21, 20, 0.1); +INSERT INTO `Order Details` Values (10823, 57, 19.5, 15, 0.0); +INSERT INTO `Order Details` Values (10823, 59, 55, 40, 0.1); +INSERT INTO `Order Details` Values (10823, 77, 13, 15, 0.1); +INSERT INTO `Order Details` Values (10824, 41, 9.65, 12, 0.0); +INSERT INTO `Order Details` Values (10824, 70, 15, 9, 0.0); +INSERT INTO `Order Details` Values (10825, 26, 31.23, 12, 0.0); +INSERT INTO `Order Details` Values (10825, 53, 32.8, 20, 0.0); +INSERT INTO `Order Details` Values (10826, 31, 12.5, 35, 0.0); +INSERT INTO `Order Details` Values (10826, 57, 19.5, 15, 0.0); +INSERT INTO `Order Details` Values (10827, 10, 31, 15, 0.0); +INSERT INTO `Order Details` Values (10827, 39, 18, 21, 0.0); +INSERT INTO `Order Details` Values (10828, 20, 81, 5, 0.0); +INSERT INTO `Order Details` Values (10828, 38, 263.5, 2, 0.0); +INSERT INTO `Order Details` Values (10829, 2, 19, 10, 0.0); +INSERT INTO `Order Details` Values (10829, 8, 40, 20, 0.0); +INSERT INTO `Order Details` Values (10829, 13, 6, 10, 0.0); +INSERT INTO `Order Details` Values (10829, 60, 34, 21, 0.0); +INSERT INTO `Order Details` Values (10830, 6, 25, 6, 0.0); +INSERT INTO `Order Details` Values (10830, 39, 18, 28, 0.0); +INSERT INTO `Order Details` Values (10830, 60, 34, 30, 0.0); +INSERT INTO `Order Details` Values (10830, 68, 12.5, 24, 0.0); +INSERT INTO `Order Details` Values (10831, 19, 9.2, 2, 0.0); +INSERT INTO `Order Details` Values (10831, 35, 18, 8, 0.0); +INSERT INTO `Order Details` Values (10831, 38, 263.5, 8, 0.0); +INSERT INTO `Order Details` Values (10831, 43, 46, 9, 0.0); +INSERT INTO `Order Details` Values (10832, 13, 6, 3, 0.2); +INSERT INTO `Order Details` Values (10832, 25, 14, 10, 0.2); +INSERT INTO `Order Details` Values (10832, 44, 19.45, 16, 0.2); +INSERT INTO `Order Details` Values (10832, 64, 33.25, 3, 0.0); +INSERT INTO `Order Details` Values (10833, 7, 30, 20, 0.1); +INSERT INTO `Order Details` Values (10833, 31, 12.5, 9, 0.1); +INSERT INTO `Order Details` Values (10833, 53, 32.8, 9, 0.1); +INSERT INTO `Order Details` Values (10834, 29, 123.79, 8, 0.05); +INSERT INTO `Order Details` Values (10834, 30, 25.89, 20, 0.05); +INSERT INTO `Order Details` Values (10835, 59, 55, 15, 0.0); +INSERT INTO `Order Details` Values (10835, 77, 13, 2, 0.2); +INSERT INTO `Order Details` Values (10836, 22, 21, 52, 0.0); +INSERT INTO `Order Details` Values (10836, 35, 18, 6, 0.0); +INSERT INTO `Order Details` Values (10836, 57, 19.5, 24, 0.0); +INSERT INTO `Order Details` Values (10836, 60, 34, 60, 0.0); +INSERT INTO `Order Details` Values (10836, 64, 33.25, 30, 0.0); +INSERT INTO `Order Details` Values (10837, 13, 6, 6, 0.0); +INSERT INTO `Order Details` Values (10837, 40, 18.4, 25, 0.0); +INSERT INTO `Order Details` Values (10837, 47, 9.5, 40, 0.25); +INSERT INTO `Order Details` Values (10837, 76, 18, 21, 0.25); +INSERT INTO `Order Details` Values (10838, 1, 18, 4, 0.25); +INSERT INTO `Order Details` Values (10838, 18, 62.5, 25, 0.25); +INSERT INTO `Order Details` Values (10838, 36, 19, 50, 0.25); +INSERT INTO `Order Details` Values (10839, 58, 13.25, 30, 0.1); +INSERT INTO `Order Details` Values (10839, 72, 34.8, 15, 0.1); +INSERT INTO `Order Details` Values (10840, 25, 14, 6, 0.2); +INSERT INTO `Order Details` Values (10840, 39, 18, 10, 0.2); +INSERT INTO `Order Details` Values (10841, 10, 31, 16, 0.0); +INSERT INTO `Order Details` Values (10841, 56, 38, 30, 0.0); +INSERT INTO `Order Details` Values (10841, 59, 55, 50, 0.0); +INSERT INTO `Order Details` Values (10841, 77, 13, 15, 0.0); +INSERT INTO `Order Details` Values (10842, 11, 21, 15, 0.0); +INSERT INTO `Order Details` Values (10842, 43, 46, 5, 0.0); +INSERT INTO `Order Details` Values (10842, 68, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10842, 70, 15, 12, 0.0); +INSERT INTO `Order Details` Values (10843, 51, 53, 4, 0.25); +INSERT INTO `Order Details` Values (10844, 22, 21, 35, 0.0); +INSERT INTO `Order Details` Values (10845, 23, 9, 70, 0.1); +INSERT INTO `Order Details` Values (10845, 35, 18, 25, 0.1); +INSERT INTO `Order Details` Values (10845, 42, 14, 42, 0.1); +INSERT INTO `Order Details` Values (10845, 58, 13.25, 60, 0.1); +INSERT INTO `Order Details` Values (10845, 64, 33.25, 48, 0.0); +INSERT INTO `Order Details` Values (10846, 4, 22, 21, 0.0); +INSERT INTO `Order Details` Values (10846, 70, 15, 30, 0.0); +INSERT INTO `Order Details` Values (10846, 74, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10847, 1, 18, 80, 0.2); +INSERT INTO `Order Details` Values (10847, 19, 9.2, 12, 0.2); +INSERT INTO `Order Details` Values (10847, 37, 26, 60, 0.2); +INSERT INTO `Order Details` Values (10847, 45, 9.5, 36, 0.2); +INSERT INTO `Order Details` Values (10847, 60, 34, 45, 0.2); +INSERT INTO `Order Details` Values (10847, 71, 21.5, 55, 0.2); +INSERT INTO `Order Details` Values (10848, 5, 21.35, 30, 0.0); +INSERT INTO `Order Details` Values (10848, 9, 97, 3, 0.0); +INSERT INTO `Order Details` Values (10849, 3, 10, 49, 0.0); +INSERT INTO `Order Details` Values (10849, 26, 31.23, 18, 0.15); +INSERT INTO `Order Details` Values (10850, 25, 14, 20, 0.15); +INSERT INTO `Order Details` Values (10850, 33, 2.5, 4, 0.15); +INSERT INTO `Order Details` Values (10850, 70, 15, 30, 0.15); +INSERT INTO `Order Details` Values (10851, 2, 19, 5, 0.05); +INSERT INTO `Order Details` Values (10851, 25, 14, 10, 0.05); +INSERT INTO `Order Details` Values (10851, 57, 19.5, 10, 0.05); +INSERT INTO `Order Details` Values (10851, 59, 55, 42, 0.05); +INSERT INTO `Order Details` Values (10852, 2, 19, 15, 0.0); +INSERT INTO `Order Details` Values (10852, 17, 39, 6, 0.0); +INSERT INTO `Order Details` Values (10852, 62, 49.3, 50, 0.0); +INSERT INTO `Order Details` Values (10853, 18, 62.5, 10, 0.0); +INSERT INTO `Order Details` Values (10854, 10, 31, 100, 0.15); +INSERT INTO `Order Details` Values (10854, 13, 6, 65, 0.15); +INSERT INTO `Order Details` Values (10855, 16, 17.45, 50, 0.0); +INSERT INTO `Order Details` Values (10855, 31, 12.5, 14, 0.0); +INSERT INTO `Order Details` Values (10855, 56, 38, 24, 0.0); +INSERT INTO `Order Details` Values (10855, 65, 21.05, 15, 0.15); +INSERT INTO `Order Details` Values (10856, 2, 19, 20, 0.0); +INSERT INTO `Order Details` Values (10856, 42, 14, 20, 0.0); +INSERT INTO `Order Details` Values (10857, 3, 10, 30, 0.0); +INSERT INTO `Order Details` Values (10857, 26, 31.23, 35, 0.25); +INSERT INTO `Order Details` Values (10857, 29, 123.79, 10, 0.25); +INSERT INTO `Order Details` Values (10858, 7, 30, 5, 0.0); +INSERT INTO `Order Details` Values (10858, 27, 43.9, 10, 0.0); +INSERT INTO `Order Details` Values (10858, 70, 15, 4, 0.0); +INSERT INTO `Order Details` Values (10859, 24, 4.5, 40, 0.25); +INSERT INTO `Order Details` Values (10859, 54, 7.45, 35, 0.25); +INSERT INTO `Order Details` Values (10859, 64, 33.25, 30, 0.25); +INSERT INTO `Order Details` Values (10860, 51, 53, 3, 0.0); +INSERT INTO `Order Details` Values (10860, 76, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10861, 17, 39, 42, 0.0); +INSERT INTO `Order Details` Values (10861, 18, 62.5, 20, 0.0); +INSERT INTO `Order Details` Values (10861, 21, 10, 40, 0.0); +INSERT INTO `Order Details` Values (10861, 33, 2.5, 35, 0.0); +INSERT INTO `Order Details` Values (10861, 62, 49.3, 3, 0.0); +INSERT INTO `Order Details` Values (10862, 11, 21, 25, 0.0); +INSERT INTO `Order Details` Values (10862, 52, 7, 8, 0.0); +INSERT INTO `Order Details` Values (10863, 1, 18, 20, 0.15); +INSERT INTO `Order Details` Values (10863, 58, 13.25, 12, 0.15); +INSERT INTO `Order Details` Values (10864, 35, 18, 4, 0.0); +INSERT INTO `Order Details` Values (10864, 67, 14, 15, 0.0); +INSERT INTO `Order Details` Values (10865, 38, 263.5, 60, 0.05); +INSERT INTO `Order Details` Values (10865, 39, 18, 80, 0.05); +INSERT INTO `Order Details` Values (10866, 2, 19, 21, 0.25); +INSERT INTO `Order Details` Values (10866, 24, 4.5, 6, 0.25); +INSERT INTO `Order Details` Values (10866, 30, 25.89, 40, 0.25); +INSERT INTO `Order Details` Values (10867, 53, 32.8, 3, 0.0); +INSERT INTO `Order Details` Values (10868, 26, 31.23, 20, 0.0); +INSERT INTO `Order Details` Values (10868, 35, 18, 30, 0.0); +INSERT INTO `Order Details` Values (10868, 49, 20, 42, 0.1); +INSERT INTO `Order Details` Values (10869, 1, 18, 40, 0.0); +INSERT INTO `Order Details` Values (10869, 11, 21, 10, 0.0); +INSERT INTO `Order Details` Values (10869, 23, 9, 50, 0.0); +INSERT INTO `Order Details` Values (10869, 68, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10870, 35, 18, 3, 0.0); +INSERT INTO `Order Details` Values (10870, 51, 53, 2, 0.0); +INSERT INTO `Order Details` Values (10871, 6, 25, 50, 0.05); +INSERT INTO `Order Details` Values (10871, 16, 17.45, 12, 0.05); +INSERT INTO `Order Details` Values (10871, 17, 39, 16, 0.05); +INSERT INTO `Order Details` Values (10872, 55, 24, 10, 0.05); +INSERT INTO `Order Details` Values (10872, 62, 49.3, 20, 0.05); +INSERT INTO `Order Details` Values (10872, 64, 33.25, 15, 0.05); +INSERT INTO `Order Details` Values (10872, 65, 21.05, 21, 0.05); +INSERT INTO `Order Details` Values (10873, 21, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10873, 28, 45.6, 3, 0.0); +INSERT INTO `Order Details` Values (10874, 10, 31, 10, 0.0); +INSERT INTO `Order Details` Values (10875, 19, 9.2, 25, 0.0); +INSERT INTO `Order Details` Values (10875, 47, 9.5, 21, 0.1); +INSERT INTO `Order Details` Values (10875, 49, 20, 15, 0.0); +INSERT INTO `Order Details` Values (10876, 46, 12, 21, 0.0); +INSERT INTO `Order Details` Values (10876, 64, 33.25, 20, 0.0); +INSERT INTO `Order Details` Values (10877, 16, 17.45, 30, 0.25); +INSERT INTO `Order Details` Values (10877, 18, 62.5, 25, 0.0); +INSERT INTO `Order Details` Values (10878, 20, 81, 20, 0.05); +INSERT INTO `Order Details` Values (10879, 40, 18.4, 12, 0.0); +INSERT INTO `Order Details` Values (10879, 65, 21.05, 10, 0.0); +INSERT INTO `Order Details` Values (10879, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10880, 23, 9, 30, 0.2); +INSERT INTO `Order Details` Values (10880, 61, 28.5, 30, 0.2); +INSERT INTO `Order Details` Values (10880, 70, 15, 50, 0.2); +INSERT INTO `Order Details` Values (10881, 73, 15, 10, 0.0); +INSERT INTO `Order Details` Values (10882, 42, 14, 25, 0.0); +INSERT INTO `Order Details` Values (10882, 49, 20, 20, 0.15); +INSERT INTO `Order Details` Values (10882, 54, 7.45, 32, 0.15); +INSERT INTO `Order Details` Values (10883, 24, 4.5, 8, 0.0); +INSERT INTO `Order Details` Values (10884, 21, 10, 40, 0.05); +INSERT INTO `Order Details` Values (10884, 56, 38, 21, 0.05); +INSERT INTO `Order Details` Values (10884, 65, 21.05, 12, 0.05); +INSERT INTO `Order Details` Values (10885, 2, 19, 20, 0.0); +INSERT INTO `Order Details` Values (10885, 24, 4.5, 12, 0.0); +INSERT INTO `Order Details` Values (10885, 70, 15, 30, 0.0); +INSERT INTO `Order Details` Values (10885, 77, 13, 25, 0.0); +INSERT INTO `Order Details` Values (10886, 10, 31, 70, 0.0); +INSERT INTO `Order Details` Values (10886, 31, 12.5, 35, 0.0); +INSERT INTO `Order Details` Values (10886, 77, 13, 40, 0.0); +INSERT INTO `Order Details` Values (10887, 25, 14, 5, 0.0); +INSERT INTO `Order Details` Values (10888, 2, 19, 20, 0.0); +INSERT INTO `Order Details` Values (10888, 68, 12.5, 18, 0.0); +INSERT INTO `Order Details` Values (10889, 11, 21, 40, 0.0); +INSERT INTO `Order Details` Values (10889, 38, 263.5, 40, 0.0); +INSERT INTO `Order Details` Values (10890, 17, 39, 15, 0.0); +INSERT INTO `Order Details` Values (10890, 34, 14, 10, 0.0); +INSERT INTO `Order Details` Values (10890, 41, 9.65, 14, 0.0); +INSERT INTO `Order Details` Values (10891, 30, 25.89, 15, 0.05); +INSERT INTO `Order Details` Values (10892, 59, 55, 40, 0.05); +INSERT INTO `Order Details` Values (10893, 8, 40, 30, 0.0); +INSERT INTO `Order Details` Values (10893, 24, 4.5, 10, 0.0); +INSERT INTO `Order Details` Values (10893, 29, 123.79, 24, 0.0); +INSERT INTO `Order Details` Values (10893, 30, 25.89, 35, 0.0); +INSERT INTO `Order Details` Values (10893, 36, 19, 20, 0.0); +INSERT INTO `Order Details` Values (10894, 13, 6, 28, 0.05); +INSERT INTO `Order Details` Values (10894, 69, 36, 50, 0.05); +INSERT INTO `Order Details` Values (10894, 75, 7.75, 120, 0.05); +INSERT INTO `Order Details` Values (10895, 24, 4.5, 110, 0.0); +INSERT INTO `Order Details` Values (10895, 39, 18, 45, 0.0); +INSERT INTO `Order Details` Values (10895, 40, 18.4, 91, 0.0); +INSERT INTO `Order Details` Values (10895, 60, 34, 100, 0.0); +INSERT INTO `Order Details` Values (10896, 45, 9.5, 15, 0.0); +INSERT INTO `Order Details` Values (10896, 56, 38, 16, 0.0); +INSERT INTO `Order Details` Values (10897, 29, 123.79, 80, 0.0); +INSERT INTO `Order Details` Values (10897, 30, 25.89, 36, 0.0); +INSERT INTO `Order Details` Values (10898, 13, 6, 5, 0.0); +INSERT INTO `Order Details` Values (10899, 39, 18, 8, 0.15); +INSERT INTO `Order Details` Values (10900, 70, 15, 3, 0.25); +INSERT INTO `Order Details` Values (10901, 41, 9.65, 30, 0.0); +INSERT INTO `Order Details` Values (10901, 71, 21.5, 30, 0.0); +INSERT INTO `Order Details` Values (10902, 55, 24, 30, 0.15); +INSERT INTO `Order Details` Values (10902, 62, 49.3, 6, 0.15); +INSERT INTO `Order Details` Values (10903, 13, 6, 40, 0.0); +INSERT INTO `Order Details` Values (10903, 65, 21.05, 21, 0.0); +INSERT INTO `Order Details` Values (10903, 68, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (10904, 58, 13.25, 15, 0.0); +INSERT INTO `Order Details` Values (10904, 62, 49.3, 35, 0.0); +INSERT INTO `Order Details` Values (10905, 1, 18, 20, 0.05); +INSERT INTO `Order Details` Values (10906, 61, 28.5, 15, 0.0); +INSERT INTO `Order Details` Values (10907, 75, 7.75, 14, 0.0); +INSERT INTO `Order Details` Values (10908, 7, 30, 20, 0.05); +INSERT INTO `Order Details` Values (10908, 52, 7, 14, 0.05); +INSERT INTO `Order Details` Values (10909, 7, 30, 12, 0.0); +INSERT INTO `Order Details` Values (10909, 16, 17.45, 15, 0.0); +INSERT INTO `Order Details` Values (10909, 41, 9.65, 5, 0.0); +INSERT INTO `Order Details` Values (10910, 19, 9.2, 12, 0.0); +INSERT INTO `Order Details` Values (10910, 49, 20, 10, 0.0); +INSERT INTO `Order Details` Values (10910, 61, 28.5, 5, 0.0); +INSERT INTO `Order Details` Values (10911, 1, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10911, 17, 39, 12, 0.0); +INSERT INTO `Order Details` Values (10911, 67, 14, 15, 0.0); +INSERT INTO `Order Details` Values (10912, 11, 21, 40, 0.25); +INSERT INTO `Order Details` Values (10912, 29, 123.79, 60, 0.25); +INSERT INTO `Order Details` Values (10913, 4, 22, 30, 0.25); +INSERT INTO `Order Details` Values (10913, 33, 2.5, 40, 0.25); +INSERT INTO `Order Details` Values (10913, 58, 13.25, 15, 0.0); +INSERT INTO `Order Details` Values (10914, 71, 21.5, 25, 0.0); +INSERT INTO `Order Details` Values (10915, 17, 39, 10, 0.0); +INSERT INTO `Order Details` Values (10915, 33, 2.5, 30, 0.0); +INSERT INTO `Order Details` Values (10915, 54, 7.45, 10, 0.0); +INSERT INTO `Order Details` Values (10916, 16, 17.45, 6, 0.0); +INSERT INTO `Order Details` Values (10916, 32, 32, 6, 0.0); +INSERT INTO `Order Details` Values (10916, 57, 19.5, 20, 0.0); +INSERT INTO `Order Details` Values (10917, 30, 25.89, 1, 0.0); +INSERT INTO `Order Details` Values (10917, 60, 34, 10, 0.0); +INSERT INTO `Order Details` Values (10918, 1, 18, 60, 0.25); +INSERT INTO `Order Details` Values (10918, 60, 34, 25, 0.25); +INSERT INTO `Order Details` Values (10919, 16, 17.45, 24, 0.0); +INSERT INTO `Order Details` Values (10919, 25, 14, 24, 0.0); +INSERT INTO `Order Details` Values (10919, 40, 18.4, 20, 0.0); +INSERT INTO `Order Details` Values (10920, 50, 16.25, 24, 0.0); +INSERT INTO `Order Details` Values (10921, 35, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10921, 63, 43.9, 40, 0.0); +INSERT INTO `Order Details` Values (10922, 17, 39, 15, 0.0); +INSERT INTO `Order Details` Values (10922, 24, 4.5, 35, 0.0); +INSERT INTO `Order Details` Values (10923, 42, 14, 10, 0.2); +INSERT INTO `Order Details` Values (10923, 43, 46, 10, 0.2); +INSERT INTO `Order Details` Values (10923, 67, 14, 24, 0.2); +INSERT INTO `Order Details` Values (10924, 10, 31, 20, 0.1); +INSERT INTO `Order Details` Values (10924, 28, 45.6, 30, 0.1); +INSERT INTO `Order Details` Values (10924, 75, 7.75, 6, 0.0); +INSERT INTO `Order Details` Values (10925, 36, 19, 25, 0.15); +INSERT INTO `Order Details` Values (10925, 52, 7, 12, 0.15); +INSERT INTO `Order Details` Values (10926, 11, 21, 2, 0.0); +INSERT INTO `Order Details` Values (10926, 13, 6, 10, 0.0); +INSERT INTO `Order Details` Values (10926, 19, 9.2, 7, 0.0); +INSERT INTO `Order Details` Values (10926, 72, 34.8, 10, 0.0); +INSERT INTO `Order Details` Values (10927, 20, 81, 5, 0.0); +INSERT INTO `Order Details` Values (10927, 52, 7, 5, 0.0); +INSERT INTO `Order Details` Values (10927, 76, 18, 20, 0.0); +INSERT INTO `Order Details` Values (10928, 47, 9.5, 5, 0.0); +INSERT INTO `Order Details` Values (10928, 76, 18, 5, 0.0); +INSERT INTO `Order Details` Values (10929, 21, 10, 60, 0.0); +INSERT INTO `Order Details` Values (10929, 75, 7.75, 49, 0.0); +INSERT INTO `Order Details` Values (10929, 77, 13, 15, 0.0); +INSERT INTO `Order Details` Values (10930, 21, 10, 36, 0.0); +INSERT INTO `Order Details` Values (10930, 27, 43.9, 25, 0.0); +INSERT INTO `Order Details` Values (10930, 55, 24, 25, 0.2); +INSERT INTO `Order Details` Values (10930, 58, 13.25, 30, 0.2); +INSERT INTO `Order Details` Values (10931, 13, 6, 42, 0.15); +INSERT INTO `Order Details` Values (10931, 57, 19.5, 30, 0.0); +INSERT INTO `Order Details` Values (10932, 16, 17.45, 30, 0.1); +INSERT INTO `Order Details` Values (10932, 62, 49.3, 14, 0.1); +INSERT INTO `Order Details` Values (10932, 72, 34.8, 16, 0.0); +INSERT INTO `Order Details` Values (10932, 75, 7.75, 20, 0.1); +INSERT INTO `Order Details` Values (10933, 53, 32.8, 2, 0.0); +INSERT INTO `Order Details` Values (10933, 61, 28.5, 30, 0.0); +INSERT INTO `Order Details` Values (10934, 6, 25, 20, 0.0); +INSERT INTO `Order Details` Values (10935, 1, 18, 21, 0.0); +INSERT INTO `Order Details` Values (10935, 18, 62.5, 4, 0.25); +INSERT INTO `Order Details` Values (10935, 23, 9, 8, 0.25); +INSERT INTO `Order Details` Values (10936, 36, 19, 30, 0.2); +INSERT INTO `Order Details` Values (10937, 28, 45.6, 8, 0.0); +INSERT INTO `Order Details` Values (10937, 34, 14, 20, 0.0); +INSERT INTO `Order Details` Values (10938, 13, 6, 20, 0.25); +INSERT INTO `Order Details` Values (10938, 43, 46, 24, 0.25); +INSERT INTO `Order Details` Values (10938, 60, 34, 49, 0.25); +INSERT INTO `Order Details` Values (10938, 71, 21.5, 35, 0.25); +INSERT INTO `Order Details` Values (10939, 2, 19, 10, 0.15); +INSERT INTO `Order Details` Values (10939, 67, 14, 40, 0.15); +INSERT INTO `Order Details` Values (10940, 7, 30, 8, 0.0); +INSERT INTO `Order Details` Values (10940, 13, 6, 20, 0.0); +INSERT INTO `Order Details` Values (10941, 31, 12.5, 44, 0.25); +INSERT INTO `Order Details` Values (10941, 62, 49.3, 30, 0.25); +INSERT INTO `Order Details` Values (10941, 68, 12.5, 80, 0.25); +INSERT INTO `Order Details` Values (10941, 72, 34.8, 50, 0.0); +INSERT INTO `Order Details` Values (10942, 49, 20, 28, 0.0); +INSERT INTO `Order Details` Values (10943, 13, 6, 15, 0.0); +INSERT INTO `Order Details` Values (10943, 22, 21, 21, 0.0); +INSERT INTO `Order Details` Values (10943, 46, 12, 15, 0.0); +INSERT INTO `Order Details` Values (10944, 11, 21, 5, 0.25); +INSERT INTO `Order Details` Values (10944, 44, 19.45, 18, 0.25); +INSERT INTO `Order Details` Values (10944, 56, 38, 18, 0.0); +INSERT INTO `Order Details` Values (10945, 13, 6, 20, 0.0); +INSERT INTO `Order Details` Values (10945, 31, 12.5, 10, 0.0); +INSERT INTO `Order Details` Values (10946, 10, 31, 25, 0.0); +INSERT INTO `Order Details` Values (10946, 24, 4.5, 25, 0.0); +INSERT INTO `Order Details` Values (10946, 77, 13, 40, 0.0); +INSERT INTO `Order Details` Values (10947, 59, 55, 4, 0.0); +INSERT INTO `Order Details` Values (10948, 50, 16.25, 9, 0.0); +INSERT INTO `Order Details` Values (10948, 51, 53, 40, 0.0); +INSERT INTO `Order Details` Values (10948, 55, 24, 4, 0.0); +INSERT INTO `Order Details` Values (10949, 6, 25, 12, 0.0); +INSERT INTO `Order Details` Values (10949, 10, 31, 30, 0.0); +INSERT INTO `Order Details` Values (10949, 17, 39, 6, 0.0); +INSERT INTO `Order Details` Values (10949, 62, 49.3, 60, 0.0); +INSERT INTO `Order Details` Values (10950, 4, 22, 5, 0.0); +INSERT INTO `Order Details` Values (10951, 33, 2.5, 15, 0.05); +INSERT INTO `Order Details` Values (10951, 41, 9.65, 6, 0.05); +INSERT INTO `Order Details` Values (10951, 75, 7.75, 50, 0.05); +INSERT INTO `Order Details` Values (10952, 6, 25, 16, 0.05); +INSERT INTO `Order Details` Values (10952, 28, 45.6, 2, 0.0); +INSERT INTO `Order Details` Values (10953, 20, 81, 50, 0.05); +INSERT INTO `Order Details` Values (10953, 31, 12.5, 50, 0.05); +INSERT INTO `Order Details` Values (10954, 16, 17.45, 28, 0.15); +INSERT INTO `Order Details` Values (10954, 31, 12.5, 25, 0.15); +INSERT INTO `Order Details` Values (10954, 45, 9.5, 30, 0.0); +INSERT INTO `Order Details` Values (10954, 60, 34, 24, 0.15); +INSERT INTO `Order Details` Values (10955, 75, 7.75, 12, 0.2); +INSERT INTO `Order Details` Values (10956, 21, 10, 12, 0.0); +INSERT INTO `Order Details` Values (10956, 47, 9.5, 14, 0.0); +INSERT INTO `Order Details` Values (10956, 51, 53, 8, 0.0); +INSERT INTO `Order Details` Values (10957, 30, 25.89, 30, 0.0); +INSERT INTO `Order Details` Values (10957, 35, 18, 40, 0.0); +INSERT INTO `Order Details` Values (10957, 64, 33.25, 8, 0.0); +INSERT INTO `Order Details` Values (10958, 5, 21.35, 20, 0.0); +INSERT INTO `Order Details` Values (10958, 7, 30, 6, 0.0); +INSERT INTO `Order Details` Values (10958, 72, 34.8, 5, 0.0); +INSERT INTO `Order Details` Values (10959, 75, 7.75, 20, 0.15); +INSERT INTO `Order Details` Values (10960, 24, 4.5, 10, 0.25); +INSERT INTO `Order Details` Values (10960, 41, 9.65, 24, 0.0); +INSERT INTO `Order Details` Values (10961, 52, 7, 6, 0.05); +INSERT INTO `Order Details` Values (10961, 76, 18, 60, 0.0); +INSERT INTO `Order Details` Values (10962, 7, 30, 45, 0.0); +INSERT INTO `Order Details` Values (10962, 13, 6, 77, 0.0); +INSERT INTO `Order Details` Values (10962, 53, 32.8, 20, 0.0); +INSERT INTO `Order Details` Values (10962, 69, 36, 9, 0.0); +INSERT INTO `Order Details` Values (10962, 76, 18, 44, 0.0); +INSERT INTO `Order Details` Values (10963, 60, 34, 2, 0.15); +INSERT INTO `Order Details` Values (10964, 18, 62.5, 6, 0.0); +INSERT INTO `Order Details` Values (10964, 38, 263.5, 5, 0.0); +INSERT INTO `Order Details` Values (10964, 69, 36, 10, 0.0); +INSERT INTO `Order Details` Values (10965, 51, 53, 16, 0.0); +INSERT INTO `Order Details` Values (10966, 37, 26, 8, 0.0); +INSERT INTO `Order Details` Values (10966, 56, 38, 12, 0.15); +INSERT INTO `Order Details` Values (10966, 62, 49.3, 12, 0.15); +INSERT INTO `Order Details` Values (10967, 19, 9.2, 12, 0.0); +INSERT INTO `Order Details` Values (10967, 49, 20, 40, 0.0); +INSERT INTO `Order Details` Values (10968, 12, 38, 30, 0.0); +INSERT INTO `Order Details` Values (10968, 24, 4.5, 30, 0.0); +INSERT INTO `Order Details` Values (10968, 64, 33.25, 4, 0.0); +INSERT INTO `Order Details` Values (10969, 46, 12, 9, 0.0); +INSERT INTO `Order Details` Values (10970, 52, 7, 40, 0.2); +INSERT INTO `Order Details` Values (10971, 29, 123.79, 14, 0.0); +INSERT INTO `Order Details` Values (10972, 17, 39, 6, 0.0); +INSERT INTO `Order Details` Values (10972, 33, 2.5, 7, 0.0); +INSERT INTO `Order Details` Values (10973, 26, 31.23, 5, 0.0); +INSERT INTO `Order Details` Values (10973, 41, 9.65, 6, 0.0); +INSERT INTO `Order Details` Values (10973, 75, 7.75, 10, 0.0); +INSERT INTO `Order Details` Values (10974, 63, 43.9, 10, 0.0); +INSERT INTO `Order Details` Values (10975, 8, 40, 16, 0.0); +INSERT INTO `Order Details` Values (10975, 75, 7.75, 10, 0.0); +INSERT INTO `Order Details` Values (10976, 28, 45.6, 20, 0.0); +INSERT INTO `Order Details` Values (10977, 39, 18, 30, 0.0); +INSERT INTO `Order Details` Values (10977, 47, 9.5, 30, 0.0); +INSERT INTO `Order Details` Values (10977, 51, 53, 10, 0.0); +INSERT INTO `Order Details` Values (10977, 63, 43.9, 20, 0.0); +INSERT INTO `Order Details` Values (10978, 8, 40, 20, 0.15); +INSERT INTO `Order Details` Values (10978, 21, 10, 40, 0.15); +INSERT INTO `Order Details` Values (10978, 40, 18.4, 10, 0.0); +INSERT INTO `Order Details` Values (10978, 44, 19.45, 6, 0.15); +INSERT INTO `Order Details` Values (10979, 7, 30, 18, 0.0); +INSERT INTO `Order Details` Values (10979, 12, 38, 20, 0.0); +INSERT INTO `Order Details` Values (10979, 24, 4.5, 80, 0.0); +INSERT INTO `Order Details` Values (10979, 27, 43.9, 30, 0.0); +INSERT INTO `Order Details` Values (10979, 31, 12.5, 24, 0.0); +INSERT INTO `Order Details` Values (10979, 63, 43.9, 35, 0.0); +INSERT INTO `Order Details` Values (10980, 75, 7.75, 40, 0.2); +INSERT INTO `Order Details` Values (10981, 38, 263.5, 60, 0.0); +INSERT INTO `Order Details` Values (10982, 7, 30, 20, 0.0); +INSERT INTO `Order Details` Values (10982, 43, 46, 9, 0.0); +INSERT INTO `Order Details` Values (10983, 13, 6, 84, 0.15); +INSERT INTO `Order Details` Values (10983, 57, 19.5, 15, 0.0); +INSERT INTO `Order Details` Values (10984, 16, 17.45, 55, 0.0); +INSERT INTO `Order Details` Values (10984, 24, 4.5, 20, 0.0); +INSERT INTO `Order Details` Values (10984, 36, 19, 40, 0.0); +INSERT INTO `Order Details` Values (10985, 16, 17.45, 36, 0.1); +INSERT INTO `Order Details` Values (10985, 18, 62.5, 8, 0.1); +INSERT INTO `Order Details` Values (10985, 32, 32, 35, 0.1); +INSERT INTO `Order Details` Values (10986, 11, 21, 30, 0.0); +INSERT INTO `Order Details` Values (10986, 20, 81, 15, 0.0); +INSERT INTO `Order Details` Values (10986, 76, 18, 10, 0.0); +INSERT INTO `Order Details` Values (10986, 77, 13, 15, 0.0); +INSERT INTO `Order Details` Values (10987, 7, 30, 60, 0.0); +INSERT INTO `Order Details` Values (10987, 43, 46, 6, 0.0); +INSERT INTO `Order Details` Values (10987, 72, 34.8, 20, 0.0); +INSERT INTO `Order Details` Values (10988, 7, 30, 60, 0.0); +INSERT INTO `Order Details` Values (10988, 62, 49.3, 40, 0.1); +INSERT INTO `Order Details` Values (10989, 6, 25, 40, 0.0); +INSERT INTO `Order Details` Values (10989, 11, 21, 15, 0.0); +INSERT INTO `Order Details` Values (10989, 41, 9.65, 4, 0.0); +INSERT INTO `Order Details` Values (10990, 21, 10, 65, 0.0); +INSERT INTO `Order Details` Values (10990, 34, 14, 60, 0.15); +INSERT INTO `Order Details` Values (10990, 55, 24, 65, 0.15); +INSERT INTO `Order Details` Values (10990, 61, 28.5, 66, 0.15); +INSERT INTO `Order Details` Values (10991, 2, 19, 50, 0.2); +INSERT INTO `Order Details` Values (10991, 70, 15, 20, 0.2); +INSERT INTO `Order Details` Values (10991, 76, 18, 90, 0.2); +INSERT INTO `Order Details` Values (10992, 72, 34.8, 2, 0.0); +INSERT INTO `Order Details` Values (10993, 29, 123.79, 50, 0.25); +INSERT INTO `Order Details` Values (10993, 41, 9.65, 35, 0.25); +INSERT INTO `Order Details` Values (10994, 59, 55, 18, 0.05); +INSERT INTO `Order Details` Values (10995, 51, 53, 20, 0.0); +INSERT INTO `Order Details` Values (10995, 60, 34, 4, 0.0); +INSERT INTO `Order Details` Values (10996, 42, 14, 40, 0.0); +INSERT INTO `Order Details` Values (10997, 32, 32, 50, 0.0); +INSERT INTO `Order Details` Values (10997, 46, 12, 20, 0.25); +INSERT INTO `Order Details` Values (10997, 52, 7, 20, 0.25); +INSERT INTO `Order Details` Values (10998, 24, 4.5, 12, 0.0); +INSERT INTO `Order Details` Values (10998, 61, 28.5, 7, 0.0); +INSERT INTO `Order Details` Values (10998, 74, 10, 20, 0.0); +INSERT INTO `Order Details` Values (10998, 75, 7.75, 30, 0.0); +INSERT INTO `Order Details` Values (10999, 41, 9.65, 20, 0.05); +INSERT INTO `Order Details` Values (10999, 51, 53, 15, 0.05); +INSERT INTO `Order Details` Values (10999, 77, 13, 21, 0.05); +INSERT INTO `Order Details` Values (11000, 4, 22, 25, 0.25); +INSERT INTO `Order Details` Values (11000, 24, 4.5, 30, 0.25); +INSERT INTO `Order Details` Values (11000, 77, 13, 30, 0.0); +INSERT INTO `Order Details` Values (11001, 7, 30, 60, 0.0); +INSERT INTO `Order Details` Values (11001, 22, 21, 25, 0.0); +INSERT INTO `Order Details` Values (11001, 46, 12, 25, 0.0); +INSERT INTO `Order Details` Values (11001, 55, 24, 6, 0.0); +INSERT INTO `Order Details` Values (11002, 13, 6, 56, 0.0); +INSERT INTO `Order Details` Values (11002, 35, 18, 15, 0.15); +INSERT INTO `Order Details` Values (11002, 42, 14, 24, 0.15); +INSERT INTO `Order Details` Values (11002, 55, 24, 40, 0.0); +INSERT INTO `Order Details` Values (11003, 1, 18, 4, 0.0); +INSERT INTO `Order Details` Values (11003, 40, 18.4, 10, 0.0); +INSERT INTO `Order Details` Values (11003, 52, 7, 10, 0.0); +INSERT INTO `Order Details` Values (11004, 26, 31.23, 6, 0.0); +INSERT INTO `Order Details` Values (11004, 76, 18, 6, 0.0); +INSERT INTO `Order Details` Values (11005, 1, 18, 2, 0.0); +INSERT INTO `Order Details` Values (11005, 59, 55, 10, 0.0); +INSERT INTO `Order Details` Values (11006, 1, 18, 8, 0.0); +INSERT INTO `Order Details` Values (11006, 29, 123.79, 2, 0.25); +INSERT INTO `Order Details` Values (11007, 8, 40, 30, 0.0); +INSERT INTO `Order Details` Values (11007, 29, 123.79, 10, 0.0); +INSERT INTO `Order Details` Values (11007, 42, 14, 14, 0.0); +INSERT INTO `Order Details` Values (11008, 28, 45.6, 70, 0.05); +INSERT INTO `Order Details` Values (11008, 34, 14, 90, 0.05); +INSERT INTO `Order Details` Values (11008, 71, 21.5, 21, 0.0); +INSERT INTO `Order Details` Values (11009, 24, 4.5, 12, 0.0); +INSERT INTO `Order Details` Values (11009, 36, 19, 18, 0.25); +INSERT INTO `Order Details` Values (11009, 60, 34, 9, 0.0); +INSERT INTO `Order Details` Values (11010, 7, 30, 20, 0.0); +INSERT INTO `Order Details` Values (11010, 24, 4.5, 10, 0.0); +INSERT INTO `Order Details` Values (11011, 58, 13.25, 40, 0.05); +INSERT INTO `Order Details` Values (11011, 71, 21.5, 20, 0.0); +INSERT INTO `Order Details` Values (11012, 19, 9.2, 50, 0.05); +INSERT INTO `Order Details` Values (11012, 60, 34, 36, 0.05); +INSERT INTO `Order Details` Values (11012, 71, 21.5, 60, 0.05); +INSERT INTO `Order Details` Values (11013, 23, 9, 10, 0.0); +INSERT INTO `Order Details` Values (11013, 42, 14, 4, 0.0); +INSERT INTO `Order Details` Values (11013, 45, 9.5, 20, 0.0); +INSERT INTO `Order Details` Values (11013, 68, 12.5, 2, 0.0); +INSERT INTO `Order Details` Values (11014, 41, 9.65, 28, 0.1); +INSERT INTO `Order Details` Values (11015, 30, 25.89, 15, 0.0); +INSERT INTO `Order Details` Values (11015, 77, 13, 18, 0.0); +INSERT INTO `Order Details` Values (11016, 31, 12.5, 15, 0.0); +INSERT INTO `Order Details` Values (11016, 36, 19, 16, 0.0); +INSERT INTO `Order Details` Values (11017, 3, 10, 25, 0.0); +INSERT INTO `Order Details` Values (11017, 59, 55, 110, 0.0); +INSERT INTO `Order Details` Values (11017, 70, 15, 30, 0.0); +INSERT INTO `Order Details` Values (11018, 12, 38, 20, 0.0); +INSERT INTO `Order Details` Values (11018, 18, 62.5, 10, 0.0); +INSERT INTO `Order Details` Values (11018, 56, 38, 5, 0.0); +INSERT INTO `Order Details` Values (11019, 46, 12, 3, 0.0); +INSERT INTO `Order Details` Values (11019, 49, 20, 2, 0.0); +INSERT INTO `Order Details` Values (11020, 10, 31, 24, 0.15); +INSERT INTO `Order Details` Values (11021, 2, 19, 11, 0.25); +INSERT INTO `Order Details` Values (11021, 20, 81, 15, 0.0); +INSERT INTO `Order Details` Values (11021, 26, 31.23, 63, 0.0); +INSERT INTO `Order Details` Values (11021, 51, 53, 44, 0.25); +INSERT INTO `Order Details` Values (11021, 72, 34.8, 35, 0.0); +INSERT INTO `Order Details` Values (11022, 19, 9.2, 35, 0.0); +INSERT INTO `Order Details` Values (11022, 69, 36, 30, 0.0); +INSERT INTO `Order Details` Values (11023, 7, 30, 4, 0.0); +INSERT INTO `Order Details` Values (11023, 43, 46, 30, 0.0); +INSERT INTO `Order Details` Values (11024, 26, 31.23, 12, 0.0); +INSERT INTO `Order Details` Values (11024, 33, 2.5, 30, 0.0); +INSERT INTO `Order Details` Values (11024, 65, 21.05, 21, 0.0); +INSERT INTO `Order Details` Values (11024, 71, 21.5, 50, 0.0); +INSERT INTO `Order Details` Values (11025, 1, 18, 10, 0.1); +INSERT INTO `Order Details` Values (11025, 13, 6, 20, 0.1); +INSERT INTO `Order Details` Values (11026, 18, 62.5, 8, 0.0); +INSERT INTO `Order Details` Values (11026, 51, 53, 10, 0.0); +INSERT INTO `Order Details` Values (11027, 24, 4.5, 30, 0.25); +INSERT INTO `Order Details` Values (11027, 62, 49.3, 21, 0.25); +INSERT INTO `Order Details` Values (11028, 55, 24, 35, 0.0); +INSERT INTO `Order Details` Values (11028, 59, 55, 24, 0.0); +INSERT INTO `Order Details` Values (11029, 56, 38, 20, 0.0); +INSERT INTO `Order Details` Values (11029, 63, 43.9, 12, 0.0); +INSERT INTO `Order Details` Values (11030, 2, 19, 100, 0.25); +INSERT INTO `Order Details` Values (11030, 5, 21.35, 70, 0.0); +INSERT INTO `Order Details` Values (11030, 29, 123.79, 60, 0.25); +INSERT INTO `Order Details` Values (11030, 59, 55, 100, 0.25); +INSERT INTO `Order Details` Values (11031, 1, 18, 45, 0.0); +INSERT INTO `Order Details` Values (11031, 13, 6, 80, 0.0); +INSERT INTO `Order Details` Values (11031, 24, 4.5, 21, 0.0); +INSERT INTO `Order Details` Values (11031, 64, 33.25, 20, 0.0); +INSERT INTO `Order Details` Values (11031, 71, 21.5, 16, 0.0); +INSERT INTO `Order Details` Values (11032, 36, 19, 35, 0.0); +INSERT INTO `Order Details` Values (11032, 38, 263.5, 25, 0.0); +INSERT INTO `Order Details` Values (11032, 59, 55, 30, 0.0); +INSERT INTO `Order Details` Values (11033, 53, 32.8, 70, 0.1); +INSERT INTO `Order Details` Values (11033, 69, 36, 36, 0.1); +INSERT INTO `Order Details` Values (11034, 21, 10, 15, 0.1); +INSERT INTO `Order Details` Values (11034, 44, 19.45, 12, 0.0); +INSERT INTO `Order Details` Values (11034, 61, 28.5, 6, 0.0); +INSERT INTO `Order Details` Values (11035, 1, 18, 10, 0.0); +INSERT INTO `Order Details` Values (11035, 35, 18, 60, 0.0); +INSERT INTO `Order Details` Values (11035, 42, 14, 30, 0.0); +INSERT INTO `Order Details` Values (11035, 54, 7.45, 10, 0.0); +INSERT INTO `Order Details` Values (11036, 13, 6, 7, 0.0); +INSERT INTO `Order Details` Values (11036, 59, 55, 30, 0.0); +INSERT INTO `Order Details` Values (11037, 70, 15, 4, 0.0); +INSERT INTO `Order Details` Values (11038, 40, 18.4, 5, 0.2); +INSERT INTO `Order Details` Values (11038, 52, 7, 2, 0.0); +INSERT INTO `Order Details` Values (11038, 71, 21.5, 30, 0.0); +INSERT INTO `Order Details` Values (11039, 28, 45.6, 20, 0.0); +INSERT INTO `Order Details` Values (11039, 35, 18, 24, 0.0); +INSERT INTO `Order Details` Values (11039, 49, 20, 60, 0.0); +INSERT INTO `Order Details` Values (11039, 57, 19.5, 28, 0.0); +INSERT INTO `Order Details` Values (11040, 21, 10, 20, 0.0); +INSERT INTO `Order Details` Values (11041, 2, 19, 30, 0.2); +INSERT INTO `Order Details` Values (11041, 63, 43.9, 30, 0.0); +INSERT INTO `Order Details` Values (11042, 44, 19.45, 15, 0.0); +INSERT INTO `Order Details` Values (11042, 61, 28.5, 4, 0.0); +INSERT INTO `Order Details` Values (11043, 11, 21, 10, 0.0); +INSERT INTO `Order Details` Values (11044, 62, 49.3, 12, 0.0); +INSERT INTO `Order Details` Values (11045, 33, 2.5, 15, 0.0); +INSERT INTO `Order Details` Values (11045, 51, 53, 24, 0.0); +INSERT INTO `Order Details` Values (11046, 12, 38, 20, 0.05); +INSERT INTO `Order Details` Values (11046, 32, 32, 15, 0.05); +INSERT INTO `Order Details` Values (11046, 35, 18, 18, 0.05); +INSERT INTO `Order Details` Values (11047, 1, 18, 25, 0.25); +INSERT INTO `Order Details` Values (11047, 5, 21.35, 30, 0.25); +INSERT INTO `Order Details` Values (11048, 68, 12.5, 42, 0.0); +INSERT INTO `Order Details` Values (11049, 2, 19, 10, 0.2); +INSERT INTO `Order Details` Values (11049, 12, 38, 4, 0.2); +INSERT INTO `Order Details` Values (11050, 76, 18, 50, 0.1); +INSERT INTO `Order Details` Values (11051, 24, 4.5, 10, 0.2); +INSERT INTO `Order Details` Values (11052, 43, 46, 30, 0.2); +INSERT INTO `Order Details` Values (11052, 61, 28.5, 10, 0.2); +INSERT INTO `Order Details` Values (11053, 18, 62.5, 35, 0.2); +INSERT INTO `Order Details` Values (11053, 32, 32, 20, 0.0); +INSERT INTO `Order Details` Values (11053, 64, 33.25, 25, 0.2); +INSERT INTO `Order Details` Values (11054, 33, 2.5, 10, 0.0); +INSERT INTO `Order Details` Values (11054, 67, 14, 20, 0.0); +INSERT INTO `Order Details` Values (11055, 24, 4.5, 15, 0.0); +INSERT INTO `Order Details` Values (11055, 25, 14, 15, 0.0); +INSERT INTO `Order Details` Values (11055, 51, 53, 20, 0.0); +INSERT INTO `Order Details` Values (11055, 57, 19.5, 20, 0.0); +INSERT INTO `Order Details` Values (11056, 7, 30, 40, 0.0); +INSERT INTO `Order Details` Values (11056, 55, 24, 35, 0.0); +INSERT INTO `Order Details` Values (11056, 60, 34, 50, 0.0); +INSERT INTO `Order Details` Values (11057, 70, 15, 3, 0.0); +INSERT INTO `Order Details` Values (11058, 21, 10, 3, 0.0); +INSERT INTO `Order Details` Values (11058, 60, 34, 21, 0.0); +INSERT INTO `Order Details` Values (11058, 61, 28.5, 4, 0.0); +INSERT INTO `Order Details` Values (11059, 13, 6, 30, 0.0); +INSERT INTO `Order Details` Values (11059, 17, 39, 12, 0.0); +INSERT INTO `Order Details` Values (11059, 60, 34, 35, 0.0); +INSERT INTO `Order Details` Values (11060, 60, 34, 4, 0.0); +INSERT INTO `Order Details` Values (11060, 77, 13, 10, 0.0); +INSERT INTO `Order Details` Values (11061, 60, 34, 15, 0.0); +INSERT INTO `Order Details` Values (11062, 53, 32.8, 10, 0.2); +INSERT INTO `Order Details` Values (11062, 70, 15, 12, 0.2); +INSERT INTO `Order Details` Values (11063, 34, 14, 30, 0.0); +INSERT INTO `Order Details` Values (11063, 40, 18.4, 40, 0.1); +INSERT INTO `Order Details` Values (11063, 41, 9.65, 30, 0.1); +INSERT INTO `Order Details` Values (11064, 17, 39, 77, 0.1); +INSERT INTO `Order Details` Values (11064, 41, 9.65, 12, 0.0); +INSERT INTO `Order Details` Values (11064, 53, 32.8, 25, 0.1); +INSERT INTO `Order Details` Values (11064, 55, 24, 4, 0.1); +INSERT INTO `Order Details` Values (11064, 68, 12.5, 55, 0.0); +INSERT INTO `Order Details` Values (11065, 30, 25.89, 4, 0.25); +INSERT INTO `Order Details` Values (11065, 54, 7.45, 20, 0.25); +INSERT INTO `Order Details` Values (11066, 16, 17.45, 3, 0.0); +INSERT INTO `Order Details` Values (11066, 19, 9.2, 42, 0.0); +INSERT INTO `Order Details` Values (11066, 34, 14, 35, 0.0); +INSERT INTO `Order Details` Values (11067, 41, 9.65, 9, 0.0); +INSERT INTO `Order Details` Values (11068, 28, 45.6, 8, 0.15); +INSERT INTO `Order Details` Values (11068, 43, 46, 36, 0.15); +INSERT INTO `Order Details` Values (11068, 77, 13, 28, 0.15); +INSERT INTO `Order Details` Values (11069, 39, 18, 20, 0.0); +INSERT INTO `Order Details` Values (11070, 1, 18, 40, 0.15); +INSERT INTO `Order Details` Values (11070, 2, 19, 20, 0.15); +INSERT INTO `Order Details` Values (11070, 16, 17.45, 30, 0.15); +INSERT INTO `Order Details` Values (11070, 31, 12.5, 20, 0.0); +INSERT INTO `Order Details` Values (11071, 7, 30, 15, 0.05); +INSERT INTO `Order Details` Values (11071, 13, 6, 10, 0.05); +INSERT INTO `Order Details` Values (11072, 2, 19, 8, 0.0); +INSERT INTO `Order Details` Values (11072, 41, 9.65, 40, 0.0); +INSERT INTO `Order Details` Values (11072, 50, 16.25, 22, 0.0); +INSERT INTO `Order Details` Values (11072, 64, 33.25, 130, 0.0); +INSERT INTO `Order Details` Values (11073, 11, 21, 10, 0.0); +INSERT INTO `Order Details` Values (11073, 24, 4.5, 20, 0.0); +INSERT INTO `Order Details` Values (11074, 16, 17.45, 14, 0.05); +INSERT INTO `Order Details` Values (11075, 2, 19, 10, 0.15); +INSERT INTO `Order Details` Values (11075, 46, 12, 30, 0.15); +INSERT INTO `Order Details` Values (11075, 76, 18, 2, 0.15); +INSERT INTO `Order Details` Values (11076, 6, 25, 20, 0.25); +INSERT INTO `Order Details` Values (11076, 14, 23.25, 20, 0.25); +INSERT INTO `Order Details` Values (11076, 19, 9.2, 10, 0.25); +INSERT INTO `Order Details` Values (11077, 2, 19, 24, 0.2); +INSERT INTO `Order Details` Values (11077, 3, 10, 4, 0.0); +INSERT INTO `Order Details` Values (11077, 4, 22, 1, 0.0); +INSERT INTO `Order Details` Values (11077, 6, 25, 1, 0.02); +INSERT INTO `Order Details` Values (11077, 7, 30, 1, 0.05); +INSERT INTO `Order Details` Values (11077, 8, 40, 2, 0.1); +INSERT INTO `Order Details` Values (11077, 10, 31, 1, 0.0); +INSERT INTO `Order Details` Values (11077, 12, 38, 2, 0.05); +INSERT INTO `Order Details` Values (11077, 13, 6, 4, 0.0); +INSERT INTO `Order Details` Values (11077, 14, 23.25, 1, 0.03); +INSERT INTO `Order Details` Values (11077, 16, 17.45, 2, 0.03); +INSERT INTO `Order Details` Values (11077, 20, 81, 1, 0.04); +INSERT INTO `Order Details` Values (11077, 23, 9, 2, 0.0); +INSERT INTO `Order Details` Values (11077, 32, 32, 1, 0.0); +INSERT INTO `Order Details` Values (11077, 39, 18, 2, 0.05); +INSERT INTO `Order Details` Values (11077, 41, 9.65, 3, 0.0); +INSERT INTO `Order Details` Values (11077, 46, 12, 3, 0.02); +INSERT INTO `Order Details` Values (11077, 52, 7, 2, 0.0); +INSERT INTO `Order Details` Values (11077, 55, 24, 2, 0.0); +INSERT INTO `Order Details` Values (11077, 60, 34, 2, 0.06); +INSERT INTO `Order Details` Values (11077, 64, 33.25, 2, 0.03); +INSERT INTO `Order Details` Values (11077, 66, 17, 1, 0.0); +INSERT INTO `Order Details` Values (11077, 73, 15, 2, 0.01); +INSERT INTO `Order Details` Values (11077, 75, 7.75, 4, 0.0); +INSERT INTO `Order Details` Values (11077, 77, 13, 2, 0.0); + +# ---------------------------------------------------------------------- # +# Add info into "Products" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Products; +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(1, 'Chai', 1, 1, '10 boxes x 20 bags', 18, 39, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(2, 'Chang', 1, 1, '24 - 12 oz bottles', 19, 17, 40, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(3, 'Aniseed Syrup', 1, 2, '12 - 550 ml bottles', 10, 13, 70, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(4, 'Chef Anton''s Cajun Seasoning', 2, 2, '48 - 6 oz jars', 22, 53, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(5, 'Chef Anton''s Gumbo Mix', 2, 2, '36 boxes', 21.35, 0, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(6, 'Grandma''s Boysenberry Spread', 3, 2, '12 - 8 oz jars', 25, 120, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(7, 'Uncle Bob''s Organic Dried Pears', 3, 7, '12 - 1 lb pkgs.', 30, 15, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(8, 'Northwoods Cranberry Sauce', 3, 2, '12 - 12 oz jars', 40, 6, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(9, 'Mishi Kobe Niku', 4, 6, '18 - 500 g pkgs.', 97, 29, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(10, 'Ikura', 4, 8, '12 - 200 ml jars', 31, 31, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(11, 'Queso Cabrales', 5, 4, '1 kg pkg.', 21, 22, 30, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(12, 'Queso Manchego La Pastora', 5, 4, '10 - 500 g pkgs.', 38, 86, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(13, 'Konbu', 6, 8, '2 kg box', 6, 24, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(14, 'Tofu', 6, 7, '40 - 100 g pkgs.', 23.25, 35, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(15, 'Genen Shouyu', 6, 2, '24 - 250 ml bottles', 15.5, 39, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(16, 'Pavlova', 7, 3, '32 - 500 g boxes', 17.45, 29, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(17, 'Alice Mutton', 7, 6, '20 - 1 kg tins', 39, 0, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(18, 'Carnarvon Tigers', 7, 8, '16 kg pkg.', 62.5, 42, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(19, 'Teatime Chocolate Biscuits', 8, 3, '10 boxes x 12 pieces', 9.2, 25, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(20, 'Sir Rodney''s Marmalade', 8, 3, '30 gift boxes', 81, 40, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(21, 'Sir Rodney''s Scones', 8, 3, '24 pkgs. x 4 pieces', 10, 3, 40, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(22, 'Gustaf''s Knckebrd', 9, 5, '24 - 500 g pkgs.', 21, 104, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(23, 'Tunnbrd', 9, 5, '12 - 250 g pkgs.', 9, 61, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(24, 'Guaran Fantstica', 10, 1, '12 - 355 ml cans', 4.5, 20, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(25, 'NuNuCa Nu-Nougat-Creme', 11, 3, '20 - 450 g glasses', 14, 76, 0, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(26, 'Gumbr Gummibrchen', 11, 3, '100 - 250 g bags', 31.23, 15, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(27, 'Schoggi Schokolade', 11, 3, '100 - 100 g pieces', 43.9, 49, 0, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(28, 'Rssle Sauerkraut', 12, 7, '25 - 825 g cans', 45.6, 26, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(29, 'Thringer Rostbratwurst', 12, 6, '50 bags x 30 sausgs.', 123.79, 0, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(30, 'Nord-Ost Matjeshering', 13, 8, '10 - 200 g glasses', 25.89, 10, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(31, 'Gorgonzola Telino', 14, 4, '12 - 100 g pkgs', 12.5, 0, 70, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(32, 'Mascarpone Fabioli', 14, 4, '24 - 200 g pkgs.', 32, 9, 40, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(33, 'Geitost', 15, 4, '500 g', 2.5, 112, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(34, 'Sasquatch Ale', 16, 1, '24 - 12 oz bottles', 14, 111, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(35, 'Steeleye Stout', 16, 1, '24 - 12 oz bottles', 18, 20, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(36, 'Inlagd Sill', 17, 8, '24 - 250 g jars', 19, 112, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(37, 'Gravad lax', 17, 8, '12 - 500 g pkgs.', 26, 11, 50, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(38, 'Cte de Blaye', 18, 1, '12 - 75 cl bottles', 263.5, 17, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(39, 'Chartreuse verte', 18, 1, '750 cc per bottle', 18, 69, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(40, 'Boston Crab Meat', 19, 8, '24 - 4 oz tins', 18.4, 123, 0, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(41, 'Jack''s New England Clam Chowder', 19, 8, '12 - 12 oz cans', 9.65, 85, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(42, 'Singaporean Hokkien Fried Mee', 20, 5, '32 - 1 kg pkgs.', 14, 26, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(43, 'Ipoh Coffee', 20, 1, '16 - 500 g tins', 46, 17, 10, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(44, 'Gula Malacca', 20, 2, '20 - 2 kg bags', 19.45, 27, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(45, 'Rogede sild', 21, 8, '1k pkg.', 9.5, 5, 70, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(46, 'Spegesild', 21, 8, '4 - 450 g glasses', 12, 95, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(47, 'Zaanse koeken', 22, 3, '10 - 4 oz boxes', 9.5, 36, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(48, 'Chocolade', 22, 3, '10 pkgs.', 12.75, 15, 70, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(49, 'Maxilaku', 23, 3, '24 - 50 g pkgs.', 20, 10, 60, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(50, 'Valkoinen suklaa', 23, 3, '12 - 100 g bars', 16.25, 65, 0, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(51, 'Manjimup Dried Apples', 24, 7, '50 - 300 g pkgs.', 53, 20, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(52, 'Filo Mix', 24, 5, '16 - 2 kg boxes', 7, 38, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(53, 'Perth Pasties', 24, 6, '48 pieces', 32.8, 0, 0, 0, 1); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(54, 'Tourtire', 25, 6, '16 pies', 7.45, 21, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(55, 'Pt chinois', 25, 6, '24 boxes x 2 pies', 24, 115, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(56, 'Gnocchi di nonna Alice', 26, 5, '24 - 250 g pkgs.', 38, 21, 10, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(57, 'Ravioli Angelo', 26, 5, '24 - 250 g pkgs.', 19.5, 36, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(58, 'Escargots de Bourgogne', 27, 8, '24 pieces', 13.25, 62, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(59, 'Raclette Courdavault', 28, 4, '5 kg pkg.', 55, 79, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(60, 'Camembert Pierrot', 28, 4, '15 - 300 g rounds', 34, 19, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(61, 'Sirop d''rable', 29, 2, '24 - 500 ml bottles', 28.5, 113, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(62, 'Tarte au sucre', 29, 3, '48 pies', 49.3, 17, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(63, 'Vegie-spread', 7, 2, '15 - 625 g jars', 43.9, 24, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(64, 'Wimmers gute Semmelkndel', 12, 5, '20 bags x 4 pieces', 33.25, 22, 80, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(65, 'Louisiana Fiery Hot Pepper Sauce', 2, 2, '32 - 8 oz bottles', 21.05, 76, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(66, 'Louisiana Hot Spiced Okra', 2, 2, '24 - 8 oz jars', 17, 4, 100, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(67, 'Laughing Lumberjack Lager', 16, 1, '24 - 12 oz bottles', 14, 52, 0, 10, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(68, 'Scottish Longbreads', 8, 3, '10 boxes x 8 pieces', 12.5, 6, 10, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(69, 'Gudbrandsdalsost', 15, 4, '10 kg pkg.', 36, 26, 0, 15, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(70, 'Outback Lager', 7, 1, '24 - 355 ml bottles', 15, 15, 10, 30, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(71, 'Flotemysost', 15, 4, '10 - 500 g pkgs.', 21.5, 26, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(72, 'Mozzarella di Giovanni', 14, 4, '24 - 200 g pkgs.', 34.8, 14, 0, 0, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(73, 'Rd Kaviar', 17, 8, '24 - 150 g jars', 15, 101, 0, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(74, 'Longlife Tofu', 4, 7, '5 kg pkg.', 10, 4, 20, 5, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(75, 'Rhnbru Klosterbier', 12, 1, '24 - 0.5 l bottles', 7.75, 125, 0, 25, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(76, 'Lakkalikri', 23, 1, '500 ml', 18, 57, 0, 20, 0); +INSERT INTO Products (ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued) +VALUES(77, 'Original Frankfurter grne Soe', 12, 2, '12 boxes', 13, 32, 0, 15, 0); + +# ---------------------------------------------------------------------- # +# Add info into "Region" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Region; +INSERT INTO Region (RegionID, RegionDescription) +VALUES(1, 'Eastern '); +INSERT INTO Region (RegionID, RegionDescription) +VALUES(2, 'Westerns '); +INSERT INTO Region (RegionID, RegionDescription) +VALUES(3, 'Northern '); +INSERT INTO Region (RegionID, RegionDescription) +VALUES(4, 'Southern '); + +# ---------------------------------------------------------------------- # +# Add info into "Shippers" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Shippers; +INSERT INTO Shippers (ShipperID, CompanyName, Phone) +VALUES(1, 'Speedy Express', '(503) 555-9831'); +INSERT INTO Shippers (ShipperID, CompanyName, Phone) +VALUES(2, 'United Package', '(503) 555-3199'); +INSERT INTO Shippers (ShipperID, CompanyName, Phone) +VALUES(3, 'Federal Shipping', '(503) 555-9931'); + +# ---------------------------------------------------------------------- # +# Add info into "Suppliers" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Suppliers; +INSERT INTO Suppliers VALUES(1,'Exotic Liquids','Charlotte Cooper','Purchasing Manager','49 Gilbert St.','London',NULL,'EC1 4SD','UK','(171) 555-2222',NULL,NULL); +INSERT INTO Suppliers VALUES(2,'New Orleans Cajun Delights','Shelley Burke','Order Administrator','P.O. Box 78934','New Orleans','LA','70117','USA','(100) 555-4822',NULL,'#CAJUN.HTM#'); +INSERT INTO Suppliers VALUES(3,'Grandma Kelly''s Homestead','Regina Murphy','Sales Representative','707 Oxford Rd.','Ann Arbor','MI','48104','USA','(313) 555-5735','(313) 555-3349',NULL); +INSERT INTO Suppliers VALUES(4,'Tokyo Traders','Yoshi Nagase','Marketing Manager','9-8 Sekimai +Musashino-shi','Tokyo',NULL,'100','Japan','(03) 3555-5011',NULL,NULL); +INSERT INTO Suppliers VALUES(5,'Cooperativa de Quesos ''Las Cabras''','Antonio del Valle Saavedra ','Export Administrator','Calle del Rosal 4','Oviedo','Asturias','33007','Spain','(98) 598 76 54',NULL,NULL); +INSERT INTO Suppliers VALUES(6,'Mayumi''s','Mayumi Ohno','Marketing Representative','92 Setsuko +Chuo-ku','Osaka',NULL,'545','Japan','(06) 431-7877',NULL,'Mayumi''s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#'); +INSERT INTO Suppliers VALUES(7,'Pavlova, Ltd.','Ian Devling','Marketing Manager','74 Rose St. +Moonie Ponds','Melbourne','Victoria','3058','Australia','(03) 444-2343','(03) 444-6588',NULL); +INSERT INTO Suppliers VALUES(8,'Specialty Biscuits, Ltd.','Peter Wilson','Sales Representative','29 King''s Way','Manchester',NULL,'M14 GSD','UK','(161) 555-4448',NULL,NULL); +INSERT INTO Suppliers VALUES(9,'PB Knckebrd AB','Lars Peterson','Sales Agent','Kaloadagatan 13','Gteborg',NULL,'S-345 67','Sweden ','031-987 65 43','031-987 65 91',NULL); +INSERT INTO Suppliers VALUES(10,'Refrescos Americanas LTDA','Carlos Diaz','Marketing Manager','Av. das Americanas 12.890','So Paulo',NULL,'5442','Brazil','(11) 555 4640',NULL,NULL); +INSERT INTO Suppliers VALUES(11,'Heli Swaren GmbH & Co. KG','Petra Winkler','Sales Manager','Tiergartenstrae 5','Berlin',NULL,'10785','Germany','(010) 9984510',NULL,NULL); +INSERT INTO Suppliers VALUES(12,'Plutzer Lebensmittelgromrkte AG','Martin Bein','International Marketing Mgr.','Bogenallee 51','Frankfurt',NULL,'60439','Germany','(069) 992755',NULL,'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#'); +INSERT INTO Suppliers VALUES(13,'Nord-Ost-Fisch Handelsgesellschaft mbH','Sven Petersen','Coordinator Foreign Markets','Frahmredder 112a','Cuxhaven',NULL,'27478','Germany','(04721) 8713','(04721) 8714',NULL); +INSERT INTO Suppliers VALUES(14,'Formaggi Fortini s.r.l.','Elio Rossi','Sales Representative','Viale Dante, 75','Ravenna',NULL,'48100','Italy','(0544) 60323','(0544) 60603','#FORMAGGI.HTM#'); +INSERT INTO Suppliers VALUES(15,'Norske Meierier','Beate Vileid','Marketing Manager','Hatlevegen 5','Sandvika',NULL,'1320','Norway','(0)2-953010',NULL,NULL); +INSERT INTO Suppliers VALUES(16,'Bigfoot Breweries','Cheryl Saylor','Regional Account Rep.','3400 - 8th Avenue +Suite 210','Bend','OR','97101','USA','(503) 555-9931',NULL,NULL); +INSERT INTO Suppliers VALUES(17,'Svensk Sjfda AB','Michael Bjrn','Sales Representative','Brovallavgen 231','Stockholm',NULL,'S-123 45','Sweden','08-123 45 67',NULL,NULL); +INSERT INTO Suppliers VALUES(18,'Aux joyeux ecclsiastiques','Guylne Nodier','Sales Manager','203, Rue des Francs-Bourgeois','Paris',NULL,'75004','France','(1) 03.83.00.68','(1) 03.83.00.62',NULL); +INSERT INTO Suppliers VALUES(19,'New England Seafood Cannery','Robb Merchant','Wholesale Account Agent','Order Processing Dept. +2100 Paul Revere Blvd.','Boston','MA','02134','USA','(617) 555-3267','(617) 555-3389',NULL); +INSERT INTO Suppliers VALUES(20,'Leka Trading','Chandra Leka','Owner','471 Serangoon Loop, Suite #402','Singapore',NULL,'0512','Singapore','555-8787',NULL,NULL); +INSERT INTO Suppliers VALUES(21,'Lyngbysild','Niels Petersen','Sales Manager','Lyngbysild +Fiskebakken 10','Lyngby',NULL,'2800','Denmark','43844108','43844115',NULL); +INSERT INTO Suppliers VALUES(22,'Zaanse Snoepfabriek','Dirk Luchte','Accounting Manager','Verkoop +Rijnweg 22','Zaandam',NULL,'9999 ZZ','Netherlands','(12345) 1212','(12345) 1210',NULL); +INSERT INTO Suppliers VALUES(23,'Karkki Oy','Anne Heikkonen','Product Manager','Valtakatu 12','Lappeenranta',NULL,'53120','Finland','(953) 10956',NULL,NULL); +INSERT INTO Suppliers VALUES(24,'G''day, Mate','Wendy Mackenzie','Sales Representative','170 Prince Edward Parade +Hunter''s Hill','Sydney','NSW','2042','Australia','(02) 555-5914','(02) 555-4873','G''day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#'); +INSERT INTO Suppliers VALUES(25,'Ma Maison','Jean-Guy Lauzon','Marketing Manager','2960 Rue St. Laurent','Montral','Qubec','H1J 1C3','Canada','(514) 555-9022',NULL,NULL); +INSERT INTO Suppliers VALUES(26,'Pasta Buttini s.r.l.','Giovanni Giudici','Order Administrator','Via dei Gelsomini, 153','Salerno',NULL,'84100','Italy','(089) 6547665','(089) 6547667',NULL); +INSERT INTO Suppliers VALUES(27,'Escargots Nouveaux','Marie Delamare','Sales Manager','22, rue H. Voiron','Montceau',NULL,'71300','France','85.57.00.07',NULL,NULL); +INSERT INTO Suppliers VALUES(28,'Gai pturage','Eliane Noz','Sales Representative','Bat. B +3, rue des Alpes','Annecy',NULL,'74000','France','38.76.98.06','38.76.98.58',NULL); +INSERT INTO Suppliers VALUES(29,'Forts d''rables','Chantal Goulet','Accounting Manager','148 rue Chasseur','Ste-Hyacinthe','Qubec','J2S 7S8','Canada','(514) 555-2955','(514) 555-2921',NULL); + +# ---------------------------------------------------------------------- # +# Add info into "Territories" # +# ---------------------------------------------------------------------- # + +TRUNCATE TABLE Territories; +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('01581', 'Westboro ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('01730', 'Bedford ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('01833', 'Georgetow ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('02116', 'Boston ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('02139', 'Cambridge ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('02184', 'Braintree ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('02903', 'Providence ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('03049', 'Hollis ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('03801', 'Portsmouth ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('06897', 'Wilton ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('07960', 'Morristown ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('08837', 'Edison ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('10019', 'New York ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('10038', 'New York ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('11747', 'Mellvile ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('14450', 'Fairport ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('19428', 'Philadelphia ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('19713', 'Neward ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('20852', 'Rockville ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('27403', 'Greensboro ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('27511', 'Cary ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('29202', 'Columbia ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('30346', 'Atlanta ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('31406', 'Savannah ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('32859', 'Orlando ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('33607', 'Tampa ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('40222', 'Louisville ', 1); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('44122', 'Beachwood ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('45839', 'Findlay ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('48075', 'Southfield ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('48084', 'Troy ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('48304', 'Bloomfield Hills ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('53404', 'Racine ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('55113', 'Roseville ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('55439', 'Minneapolis ', 3); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('60179', 'Hoffman Estates ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('60601', 'Chicago ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('72716', 'Bentonville ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('75234', 'Dallas ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('78759', 'Austin ', 4); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('80202', 'Denver ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('80909', 'Colorado Springs ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('85014', 'Phoenix ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('85251', 'Scottsdale ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('90405', 'Santa Monica ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('94025', 'Menlo Park ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('94105', 'San Francisco ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('95008', 'Campbell ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('95054', 'Santa Clara ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('95060', 'Santa Cruz ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('98004', 'Bellevue ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('98052', 'Redmond ', 2); +INSERT INTO Territories (TerritoryID, TerritoryDescription, RegionID) +VALUES('98104', 'Seattle ', 2); + + +# ---------------------------------------------------------------------- # +# Foreign key constraints # +# ---------------------------------------------------------------------- # + +ALTER TABLE `CustomerCustomerDemo` ADD CONSTRAINT `FK_CustomerCustomerDemo` + FOREIGN KEY (`CustomerTypeID`) REFERENCES `CustomerDemographics` (`CustomerTypeID`); + +ALTER TABLE `CustomerCustomerDemo` ADD CONSTRAINT `FK_CustomerCustomerDemo_Customers` + FOREIGN KEY (`CustomerID`) REFERENCES `Customers` (`CustomerID`); + +ALTER TABLE `Employees` ADD CONSTRAINT `FK_Employees_Employees` + FOREIGN KEY (`ReportsTo`) REFERENCES `Employees` (`EmployeeID`); + +ALTER TABLE `EmployeeTerritories` ADD CONSTRAINT `FK_EmployeeTerritories_Employees` + FOREIGN KEY (`EmployeeID`) REFERENCES `Employees` (`EmployeeID`); + +ALTER TABLE `EmployeeTerritories` ADD CONSTRAINT `FK_EmployeeTerritories_Territories` + FOREIGN KEY (`TerritoryID`) REFERENCES `Territories` (`TerritoryID`); + +ALTER TABLE `Order Details` ADD CONSTRAINT `FK_Order_Details_Orders` + FOREIGN KEY (`OrderID`) REFERENCES `Orders` (`OrderID`); + +ALTER TABLE `Order Details` ADD CONSTRAINT `FK_Order_Details_Products` + FOREIGN KEY (`ProductID`) REFERENCES `Products` (`ProductID`); + +ALTER TABLE `Orders` ADD CONSTRAINT `FK_Orders_Customers` + FOREIGN KEY (`CustomerID`) REFERENCES `Customers` (`CustomerID`); + +ALTER TABLE `Orders` ADD CONSTRAINT `FK_Orders_Employees` + FOREIGN KEY (`EmployeeID`) REFERENCES `Employees` (`EmployeeID`); + +ALTER TABLE `Orders` ADD CONSTRAINT `FK_Orders_Shippers` + FOREIGN KEY (`ShipVia`) REFERENCES `Shippers` (`ShipperID`); + +ALTER TABLE `Products` ADD CONSTRAINT `FK_Products_Categories` + FOREIGN KEY (`CategoryID`) REFERENCES `Categories` (`CategoryID`); + +ALTER TABLE `Products` ADD CONSTRAINT `FK_Products_Suppliers` + FOREIGN KEY (`SupplierID`) REFERENCES `Suppliers` (`SupplierID`); + +ALTER TABLE `Territories` ADD CONSTRAINT `FK_Territories_Region` + FOREIGN KEY (`RegionID`) REFERENCES `Region` (`RegionID`); + +# ---------------------------------------------------------------------- # +# Add View "Alphabetical list of products" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Alphabetical list of products` +AS +SELECT Products.*, + Categories.CategoryName +FROM Categories + INNER JOIN Products ON Categories.CategoryID = Products.CategoryID +WHERE (((Products.Discontinued)=0)); + +# ---------------------------------------------------------------------- # +# Add View "Current Product List" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Current Product List` +AS +SELECT ProductID, + ProductName +FROM Products +WHERE Discontinued=0; + +# ---------------------------------------------------------------------- # +# Add View "Customer and Suppliers by City" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Customer and Suppliers by City` +AS +SELECT City, + CompanyName, + ContactName, + 'Customers' AS Relationship +FROM Customers +UNION +SELECT City, + CompanyName, + ContactName, + 'Suppliers' +FROM Suppliers +ORDER BY City, CompanyName; + +# ---------------------------------------------------------------------- # +# Add View "Invoices" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Invoices` +AS +SELECT Orders.ShipName, + Orders.ShipAddress, + Orders.ShipCity, + Orders.ShipRegion, + Orders.ShipPostalCode, + Orders.ShipCountry, + Orders.CustomerID, + Customers.CompanyName AS CustomerName, + Customers.Address, + Customers.City, + Customers.Region, + Customers.PostalCode, + Customers.Country, + (Employees.FirstName + ' ' + Employees.LastName) AS Salesperson, + Orders.OrderID, + Orders.OrderDate, + Orders.RequiredDate, + Orders.ShippedDate, + Shippers.CompanyName As ShipperName, + `Order Details`.ProductID, + Products.ProductName, + `Order Details`.UnitPrice, + `Order Details`.Quantity, + `Order Details`.Discount, + (((`Order Details`.UnitPrice*Quantity*(1-Discount))/100)*100) AS ExtendedPrice, + Orders.Freight +FROM Customers + JOIN Orders ON Customers.CustomerID = Orders.CustomerID + JOIN Employees ON Employees.EmployeeID = Orders.EmployeeID + JOIN `Order Details` ON Orders.OrderID = `Order Details`.OrderID + JOIN Products ON Products.ProductID = `Order Details`.ProductID + JOIN Shippers ON Shippers.ShipperID = Orders.ShipVia; + +# ---------------------------------------------------------------------- # +# Add View "Orders Qry" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Orders Qry` AS +SELECT Orders.OrderID, + Orders.CustomerID, + Orders.EmployeeID, + Orders.OrderDate, + Orders.RequiredDate, + Orders.ShippedDate, + Orders.ShipVia, + Orders.Freight, + Orders.ShipName, + Orders.ShipAddress, + Orders.ShipCity, + Orders.ShipRegion, + Orders.ShipPostalCode, + Orders.ShipCountry, + Customers.CompanyName, + Customers.Address, + Customers.City, + Customers.Region, + Customers.PostalCode, + Customers.Country +FROM Customers + JOIN Orders ON Customers.CustomerID = Orders.CustomerID; + +# ---------------------------------------------------------------------- # +# Add View "Order Subtotals" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Order Subtotals` AS +SELECT `Order Details`.OrderID, +Sum((`Order Details`.UnitPrice*Quantity*(1-Discount)/100)*100) AS Subtotal +FROM `Order Details` +GROUP BY `Order Details`.OrderID; + +# ---------------------------------------------------------------------- # +# Add View "Product Sales for 1997" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Product Sales for 1997` AS +SELECT Categories.CategoryName, + Products.ProductName, + Sum((`Order Details`.UnitPrice*Quantity*(1-Discount)/100)*100) AS ProductSales +FROM Categories + JOIN Products On Categories.CategoryID = Products.CategoryID + JOIN `Order Details` on Products.ProductID = `Order Details`.ProductID + JOIN `Orders` on Orders.OrderID = `Order Details`.OrderID +WHERE Orders.ShippedDate Between '1997-01-01' And '1997-12-31' +GROUP BY Categories.CategoryName, Products.ProductName; + +# ---------------------------------------------------------------------- # +# Add View "Products Above Average Price" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Products Above Average Price` AS +SELECT Products.ProductName, + Products.UnitPrice +FROM Products +WHERE Products.UnitPrice>(SELECT AVG(UnitPrice) From Products); + +# ---------------------------------------------------------------------- # +# Add View "Products by Category" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Products by Category` AS +SELECT Categories.CategoryName, + Products.ProductName, + Products.QuantityPerUnit, + Products.UnitsInStock, + Products.Discontinued +FROM Categories + INNER JOIN Products ON Categories.CategoryID = Products.CategoryID +WHERE Products.Discontinued <> 1; + +# ---------------------------------------------------------------------- # +# Add View "Quarterly Orders" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Quarterly Orders` AS +SELECT DISTINCT Customers.CustomerID, + Customers.CompanyName, + Customers.City, + Customers.Country +FROM Customers + JOIN Orders ON Customers.CustomerID = Orders.CustomerID +WHERE Orders.OrderDate BETWEEN '1997-01-01' And '1997-12-31'; + +# ---------------------------------------------------------------------- # +# Add View "Sales Totals by Amount" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Sales Totals by Amount` AS +SELECT `Order Subtotals`.Subtotal AS SaleAmount, + Orders.OrderID, + Customers.CompanyName, + Orders.ShippedDate +FROM Customers + JOIN Orders ON Customers.CustomerID = Orders.CustomerID + JOIN `Order Subtotals` ON Orders.OrderID = `Order Subtotals`.OrderID +WHERE (`Order Subtotals`.Subtotal >2500) +AND (Orders.ShippedDate BETWEEN '1997-01-01' And '1997-12-31'); + +# ---------------------------------------------------------------------- # +# Add View "Summary of Sales by Quarter" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Summary of Sales by Quarter` AS +SELECT Orders.ShippedDate, + Orders.OrderID, + `Order Subtotals`.Subtotal +FROM Orders + INNER JOIN `Order Subtotals` ON Orders.OrderID = `Order Subtotals`.OrderID +WHERE Orders.ShippedDate IS NOT NULL; + +# ---------------------------------------------------------------------- # +# Add View "Summary of Sales by Year" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Summary of Sales by Year` AS +SELECT Orders.ShippedDate, + Orders.OrderID, + `Order Subtotals`.Subtotal +FROM Orders + INNER JOIN `Order Subtotals` ON Orders.OrderID = `Order Subtotals`.OrderID +WHERE Orders.ShippedDate IS NOT NULL; + +# ---------------------------------------------------------------------- # +# Add View "Category Sales for 1997" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Category Sales for 1997` AS +SELECT `Product Sales for 1997`.CategoryName, + Sum(`Product Sales for 1997`.ProductSales) AS CategorySales +FROM `Product Sales for 1997` +GROUP BY `Product Sales for 1997`.CategoryName; + +# ---------------------------------------------------------------------- # +# Add View "Order Details Extended" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Order Details Extended` AS +SELECT `Order Details`.OrderID, + `Order Details`.ProductID, + Products.ProductName, + `Order Details`.UnitPrice, + `Order Details`.Quantity, + `Order Details`.Discount, + (`Order Details`.UnitPrice*Quantity*(1-Discount)/100)*100 AS ExtendedPrice +FROM Products + JOIN `Order Details` ON Products.ProductID = `Order Details`.ProductID; + +# ---------------------------------------------------------------------- # +# Add View "Sales by Category" # +# ---------------------------------------------------------------------- # + +CREATE VIEW `Sales by Category` AS +SELECT Categories.CategoryID, + Categories.CategoryName, + Products.ProductName, + Sum(`Order Details Extended`.ExtendedPrice) AS ProductSales +FROM Categories + JOIN Products + ON Categories.CategoryID = Products.CategoryID + JOIN `Order Details Extended` + ON Products.ProductID = `Order Details Extended`.ProductID + JOIN Orders + ON Orders.OrderID = `Order Details Extended`.OrderID +WHERE Orders.OrderDate BETWEEN '1997-01-01' And '1997-12-31' +GROUP BY Categories.CategoryID, Categories.CategoryName, Products.ProductName; + +# ---------------------------------------------------------------------- # +# Add Procedure "CustOrderHist" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `CustOrderHist`; + +DELIMITER $$ + +CREATE PROCEDURE `CustOrderHist`(in AtCustomerID varchar(5)) +BEGIN + +SELECT ProductName, + SUM(Quantity) as TOTAL +FROM Products P, + `Order Details` OD, + Orders O, + Customers C +WHERE C.CustomerID = AtCustomerID + AND C.CustomerID = O.CustomerID + AND O.OrderID = OD.OrderID + AND OD.ProductID = P.ProductID +GROUP BY ProductName; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "CustOrdersOrders" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `CustOrdersOrders`; + +DELIMITER $$ + +CREATE PROCEDURE `CustOrdersOrders`(in AtCustomerID varchar(5)) +BEGIN + SELECT OrderID, + OrderDate, + RequiredDate, + ShippedDate +FROM Orders +WHERE CustomerID = AtCustomerID +ORDER BY OrderID; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "Employee Sales by Country" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `Employee Sales by Country`; + +DELIMITER $$ + +CREATE PROCEDURE `Employee Sales by Country`(in AtBeginning_Date Datetime,in AtEnding_Date Datetime) +BEGIN + SELECT Employees.Country, + Employees.LastName, + Employees.FirstName, + Orders.ShippedDate, + Orders.OrderID, + `Order Subtotals`.Subtotal AS SaleAmount +FROM Employees + JOIN Orders ON Employees.EmployeeID = Orders.EmployeeID + JOIN `Order Subtotals` ON Orders.OrderID = `Order Subtotals`.OrderID +WHERE Orders.ShippedDate Between AtBeginning_Date And AtEnding_Date; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "Employee Sales by Year" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `Sales by Year`; + +DELIMITER $$ + +CREATE PROCEDURE `Sales by Year`(in AtBeginning_Date Datetime,in AtEnding_Date Datetime) +BEGIN + + SELECT Orders.ShippedDate, + Orders.OrderID, + `Order Subtotals`.Subtotal, + ShippedDate AS Year +FROM Orders JOIN `Order Subtotals` ON Orders.OrderID = `Order Subtotals`.OrderID +WHERE Orders.ShippedDate Between AtBeginning_Date And AtEnding_Date; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "SalesByCategory" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `SalesByCategory`; +DELIMITER $$ + +CREATE PROCEDURE `SalesByCategory`() +BEGIN + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "sp_Employees_Insert" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `sp_Employees_Insert`; + +DELIMITER $$ + +CREATE PROCEDURE `sp_Employees_Insert`( +In AtLastName VARCHAR(20), +In AtFirstName VARCHAR(10), +In AtTitle VARCHAR(30), +In AtTitleOfCourtesy VARCHAR(25), +In AtBirthDate DateTime, +In AtHireDate DateTime, +In AtAddress VARCHAR(60), +In AtCity VARCHAR(15), +In AtRegion VARCHAR(15), +In AtPostalCode VARCHAR(10), +In AtCountry VARCHAR(15), +In AtHomePhone VARCHAR(24), +In AtExtension VARCHAR(4), +In AtPhoto LONGBLOB, +In AtNotes MEDIUMTEXT, +In AtReportsTo INTEGER, +IN AtPhotoPath VARCHAR(255), +OUT AtReturnID INTEGER +) +BEGIN +Insert Into Employees Values(AtLastName,AtFirstName,AtTitle,AtTitleOfCourtesy,AtBirthDate,AtHireDate,AtAddress,AtCity,AtRegion,AtPostalCode,AtCountry,AtHomePhone,AtExtension,AtPhoto,AtNotes,AtReportsTo,AtPhotoPath); + + SELECT AtReturnID = LAST_INSERT_ID(); + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "sp_Employees_SelectAll" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `sp_Employees_SelectAll`; + +DELIMITER $$ + +CREATE PROCEDURE `sp_Employees_SelectAll`() +BEGIN +SELECT * FROM Employees; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "sp_Employees_SelectRow" # +# ---------------------------------------------------------------------- # + + +DROP PROCEDURE IF EXISTS `sp_Employees_SelectRow`; + +DELIMITER $$ + +CREATE PROCEDURE `sp_Employees_SelectRow`(In AtEmployeeID INTEGER) +BEGIN +SELECT * FROM Employees Where EmployeeID = AtEmployeeID; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add Procedure "sp_Employees_Update" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `sp_Employees_Update`; + +DELIMITER $$ + +CREATE PROCEDURE `sp_Employees_Update`( +In AtEmployeeID INTEGER, +In AtLastName VARCHAR(20), +In AtFirstName VARCHAR(10), +In AtTitle VARCHAR(30), +In AtTitleOfCourtesy VARCHAR(25), +In AtBirthDate DateTime, +In AtHireDate DateTime, +In AtAddress VARCHAR(60), +In AtCity VARCHAR(15), +In AtRegion VARCHAR(15), +In AtPostalCode VARCHAR(10), +In AtCountry VARCHAR(15), +In AtHomePhone VARCHAR(24), +In AtExtension VARCHAR(4), +In AtPhoto LONGBLOB, +In AtNotes MEDIUMTEXT, +In AtReportsTo INTEGER, +IN AtPhotoPath VARCHAR(255) +) +BEGIN +Update Employees + Set + LastName = AtLastName, + FirstName = AtFirstName, + Title = AtTitle, + TitleOfCourtesy = AtTitleOfCourtesy, + BirthDate = AtBirthDate, + HireDate = AtHireDate, + Address = AtAddress, + City = AtCity, + Region = AtRegion, + PostalCode = AtPostalCode, + Country = AtCountry, + HomePhone = AtHomePhone, + Extension = AtExtension, + Photo = AtPhoto, + Notes = AtNotes, + ReportsTo = AtReportsTo, + PhotoPath = AtPhotoPath + Where + EmployeeID = AtEmployeeID; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add FUNCTION "MyRound" # +# ---------------------------------------------------------------------- # + +DROP FUNCTION IF EXISTS `MyRound`; + +DELIMITER $$ + +CREATE FUNCTION `MyRound`(Operand DOUBLE,Places INTEGER) RETURNS DOUBLE +DETERMINISTIC +BEGIN + +DECLARE x DOUBLE; +DECLARE i INTEGER; +DECLARE ix DOUBLE; + + SET x = Operand*POW(10,Places); + SET i=x; + + IF (i-x) >= 0.5 THEN + SET ix = 1; + ELSE + SET ix = 0; + END IF; + + SET x=i+ix; + SET x=x/POW(10,Places); + +RETURN x; + + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add PROCEDURE "LookByFName" # +# ---------------------------------------------------------------------- # + +DROP PROCEDURE IF EXISTS `LookByFName`; + +DELIMITER $$ + +CREATE PROCEDURE `LookByFName`(IN AtFirstLetter CHAR(1)) +BEGIN + SELECT * FROM Employees Where LEFT(FirstName, 1)=AtFirstLetter; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add FUNCTION "DateOnly" # +# ---------------------------------------------------------------------- # + +DELIMITER $$ + +DROP FUNCTION IF EXISTS `DateOnly` $$ + +CREATE FUNCTION `DateOnly` (InDateTime datetime) RETURNS VARCHAR(10) +BEGIN + + DECLARE MyOutput varchar(10); + SET MyOutput = DATE_FORMAT(InDateTime,'%Y-%m-%d'); + + RETURN MyOutput; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add PROCEDURE "sp_employees_cursor" CURSOR SAMPLE # +# ---------------------------------------------------------------------- # +DELIMITER $$ + +DROP PROCEDURE IF EXISTS `sp_employees_cursor` $$ +CREATE PROCEDURE `sp_employees_cursor`(IN city_in VARCHAR(15)) +BEGIN + DECLARE name_val VARCHAR(10); + DECLARE surname_val VARCHAR(10); + DECLARE photopath_val VARCHAR(255); + + DECLARE no_more_rows BOOLEAN; + + DECLARE fetch_status INT DEFAULT 0; + + DECLARE employees_cur CURSOR FOR SELECT firstname, lastname,photopath FROM employees WHERE city = city_in; + + DECLARE CONTINUE HANDLER FOR NOT FOUND SET no_more_rows = TRUE; + + DROP TABLE IF EXISTS atpeople; + CREATE TABLE atpeople( + FirstName VARCHAR(10), + LastName VARCHAR(20), + PhotoPath VARCHAR(255) + ); + + + OPEN employees_cur; + select FOUND_ROWS() into fetch_status; + + + the_loop: LOOP + + FETCH employees_cur INTO name_val,surname_val,photopath_val; + + + IF no_more_rows THEN + CLOSE employees_cur; + LEAVE the_loop; + END IF; + + + INSERT INTO atpeople SELECT name_val,surname_val,photopath_val; + + END LOOP the_loop; + + SELECT * FROM atpeople; + DROP TABLE atpeople; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add PROCEDURE "sp_employees_rownum" rownum SAMPLE # +# ---------------------------------------------------------------------- # + +DELIMITER $$ + +DROP PROCEDURE IF EXISTS `sp_employees_rownum`$$ +CREATE PROCEDURE `sp_employees_rownum` () +BEGIN + +SELECT * +FROM +(select @rownum:=@rownum+1 as RowNum, + p.* from employees p + ,(SELECT @rownum:=0) R + order by firstname desc limit 10 +) a +WHERE a.RowNum >= 2 AND a.RowNum<= 4; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add PROCEDURE "sp_employees_rollup" rollup SAMPLE # +# ---------------------------------------------------------------------- # + +DELIMITER $$ + +DROP PROCEDURE IF EXISTS `sp_employees_rollup`$$ +CREATE PROCEDURE `sp_employees_rollup` () +BEGIN +SELECT Distinct City ,Sum(Salary) Salary_By_City FROM employees +GROUP BY City WITH ROLLUP; + +END $$ + +DELIMITER ; + +# ---------------------------------------------------------------------- # +# Add PROCEDURE "sp_employees_rank" rank SAMPLE # +# ---------------------------------------------------------------------- # + +DELIMITER $$ + +DROP PROCEDURE IF EXISTS `northwind`.`sp_employees_rank` $$ +CREATE PROCEDURE `northwind`.`sp_employees_rank` () +BEGIN +select * + from (select a.Title, a.EmployeeID, a.FirstName, a.Salary, + (select 1 + count(*) + from Employees b + where b.Title = a.Title + and b.Salary > a.Salary) RANK + from Employees as a) as x + order by x.Title, x.RANK; + +END $$ + +DELIMITER ; \ No newline at end of file diff --git a/e2e-tests/data/redis/actors.redis b/e2e-tests/data/redis/actors.redis new file mode 100644 index 000000000..175329b45 --- /dev/null +++ b/e2e-tests/data/redis/actors.redis @@ -0,0 +1,1319 @@ +HSET "actor:1" first_name "Chris" last_name "Pratt" date_of_birth 1979 +HSET "actor:2" first_name "Zoe" last_name "Saldana" date_of_birth 1978 +HSET "actor:3" first_name "Dave" last_name "Bautista" date_of_birth 1969 +HSET "actor:4" first_name "Vin" last_name "Diesel" date_of_birth 1967 +HSET "actor:5" first_name "Bradley" last_name "Cooper" date_of_birth 1975 +HSET "actor:6" first_name "Lee" last_name "Pace" date_of_birth 1979 +HSET "actor:7" first_name "Michael" last_name "Rooker" date_of_birth 1955 +HSET "actor:8" first_name "Karen" last_name "Gillan" date_of_birth 1987 +HSET "actor:9" first_name "Djimon" last_name "Hounsou" date_of_birth 1964 +HSET "actor:10" first_name "Ellen" last_name "Burstyn" date_of_birth 1932 +HSET "actor:11" first_name "Matthew" last_name "McConaughey" date_of_birth 1969 +HSET "actor:12" first_name "Mackenzie" last_name "Foy" date_of_birth 2000 +HSET "actor:13" first_name "John" last_name "Lithgow" date_of_birth 1945 +HSET "actor:14" first_name "David" last_name "Oyelowo" date_of_birth 1976 +HSET "actor:15" first_name "Collette" last_name "Wolfe" date_of_birth 1980 +HSET "actor:16" first_name "Francis" last_name "X. McCarthy" date_of_birth 1942 +HSET "actor:17" first_name "Bill" last_name "Irwin" date_of_birth 1950 +HSET "actor:18" first_name "Ralph" last_name "Fiennes" date_of_birth 1962 +HSET "actor:19" first_name "F." last_name "Murray Abraham" date_of_birth 1939 +HSET "actor:20" first_name "Mathieu" last_name "Amalric" date_of_birth 1965 +HSET "actor:21" first_name "Adrien" last_name "Brody" date_of_birth 1973 +HSET "actor:22" first_name "Willem" last_name "Dafoe" date_of_birth 1955 +HSET "actor:23" first_name "Jeff" last_name "Goldblum" date_of_birth 1952 +HSET "actor:24" first_name "Harvey" last_name "Keitel" date_of_birth 1939 +HSET "actor:25" first_name "Jude" last_name "Law" date_of_birth 1972 +HSET "actor:26" first_name "Bill" last_name "Murray" date_of_birth 1950 +HSET "actor:27" first_name "Ben" last_name "Affleck" date_of_birth 1972 +HSET "actor:28" first_name "Rosamund" last_name "Pike" date_of_birth 1979 +HSET "actor:29" first_name "Neil" last_name "Patrick Harris" date_of_birth 1973 +HSET "actor:30" first_name "Tyler" last_name "Perry" date_of_birth 1969 +HSET "actor:31" first_name "Carrie" last_name "Coon" date_of_birth 1981 +HSET "actor:32" first_name "Kim" last_name "Dickens" date_of_birth 1965 +HSET "actor:33" first_name "Patrick" last_name "Fugit" date_of_birth 1982 +HSET "actor:34" first_name "David" last_name "Clennon" date_of_birth 1943 +HSET "actor:35" first_name "Lisa" last_name "Banes" date_of_birth 1955 +HSET "actor:36" first_name "Benedict" last_name "Cumberbatch" date_of_birth 1976 +HSET "actor:37" first_name "Keira" last_name "Knightley" date_of_birth 1985 +HSET "actor:38" first_name "Matthew" last_name "Goode" date_of_birth 1978 +HSET "actor:39" first_name "Rory" last_name "Kinnear" date_of_birth 1978 +HSET "actor:40" first_name "Allen" last_name "Leech" date_of_birth 1981 +HSET "actor:41" first_name "Matthew" last_name "Beard" date_of_birth 1989 +HSET "actor:42" first_name "Charles" last_name "Dance" date_of_birth 1946 +HSET "actor:43" first_name "Mark" last_name "Strong" date_of_birth 1963 +HSET "actor:44" first_name "Keanu" last_name "Reeves" date_of_birth 1964 +HSET "actor:45" first_name "Michael" last_name "Nyqvist" date_of_birth 1960 +HSET "actor:46" first_name "Alfie" last_name "Allen" date_of_birth 1986 +HSET "actor:47" first_name "Dean" last_name "Winters" date_of_birth 1964 +HSET "actor:48" first_name "Adrianne" last_name "Palicki" date_of_birth 1983 +HSET "actor:49" first_name "Omer" last_name "Barnea" date_of_birth 1980 +HSET "actor:50" first_name "Daniel" last_name "Bernhardt" date_of_birth 1965 +HSET "actor:51" first_name "Hugh" last_name "Jackman" date_of_birth 1968 +HSET "actor:52" first_name "James" last_name "McAvoy" date_of_birth 1979 +HSET "actor:53" first_name "Michael" last_name "Fassbender" date_of_birth 1977 +HSET "actor:54" first_name "Jennifer" last_name "Lawrence" date_of_birth 1990 +HSET "actor:55" first_name "Halle" last_name "Berry" date_of_birth 1966 +HSET "actor:56" first_name "Nicholas" last_name "Hoult" date_of_birth 1989 +HSET "actor:57" first_name "Anna" last_name "Paquin" date_of_birth 1982 +HSET "actor:58" first_name "Ellen" last_name "Page" date_of_birth 1987 +HSET "actor:59" first_name "Peter" last_name "Dinklage" date_of_birth 1969 +HSET "actor:60" first_name "Elizabeth" last_name "Reaser" date_of_birth 1975 +HSET "actor:61" first_name "Henry" last_name "Thomas" date_of_birth 1971 +HSET "actor:62" first_name "Doug" last_name "Jones" date_of_birth 1960 +HSET "actor:63" first_name "Kate" last_name "Siegel" date_of_birth 1982 +HSET "actor:64" first_name "Denzel" last_name "Washington" date_of_birth 1954 +HSET "actor:65" first_name "Marton" last_name "Csokas" date_of_birth 1966 +HSET "actor:66" first_name "David" last_name "Harbour" date_of_birth 1975 +HSET "actor:67" first_name "Haley" last_name "Bennett" date_of_birth 1988 +HSET "actor:68" first_name "Bill" last_name "Pullman" date_of_birth 1953 +HSET "actor:69" first_name "Melissa" last_name "Leo" date_of_birth 1960 +HSET "actor:70" first_name "David" last_name "Meunier" date_of_birth 1973 +HSET "actor:71" first_name "Angelina" last_name "Jolie" date_of_birth 1975 +HSET "actor:72" first_name "Elle" last_name "Fanning" date_of_birth 1998 +HSET "actor:73" first_name "Sharlto" last_name "Copley" date_of_birth 1973 +HSET "actor:74" first_name "Lesley" last_name "Manville" date_of_birth 1956 +HSET "actor:75" first_name "Imelda" last_name "Staunton" date_of_birth 1956 +HSET "actor:76" first_name "Juno" last_name "Temple" date_of_birth 1989 +HSET "actor:77" first_name "Sam" last_name "Riley" date_of_birth 1980 +HSET "actor:78" first_name "Brenton" last_name "Thwaites" date_of_birth 1989 +HSET "actor:79" first_name "Kenneth" last_name "Cranham" date_of_birth 1944 +HSET "actor:80" first_name "Miles" last_name "Teller" date_of_birth 1987 +HSET "actor:81" first_name "J.K." last_name "Simmons" date_of_birth 1955 +HSET "actor:82" first_name "Paul" last_name "Reiser" date_of_birth 1957 +HSET "actor:83" first_name "Melissa" last_name "Benoist" date_of_birth 1988 +HSET "actor:84" first_name "Chris" last_name "Mulkey" date_of_birth 1948 +HSET "actor:85" first_name "Brad" last_name "Pitt" date_of_birth 1963 +HSET "actor:86" first_name "Shia" last_name "LaBeouf" date_of_birth 1986 +HSET "actor:87" first_name "Logan" last_name "Lerman" date_of_birth 1992 +HSET "actor:88" first_name "Jon" last_name "Bernthal" date_of_birth 1976 +HSET "actor:89" first_name "Jim" last_name "Parrack" date_of_birth 1981 +HSET "actor:90" first_name "Brad" last_name "William Henke" date_of_birth 1966 +HSET "actor:91" first_name "Xavier" last_name "Samuel" date_of_birth 1983 +HSET "actor:92" first_name "Colin" last_name "Firth" date_of_birth 1960 +HSET "actor:93" first_name "Jonno" last_name "Davies" date_of_birth 1992 +HSET "actor:94" first_name "Jack" last_name "Davenport" date_of_birth 1973 +HSET "actor:95" first_name "Samantha" last_name "Womack" date_of_birth 1972 +HSET "actor:96" first_name "Mark" last_name "Hamill" date_of_birth 1951 +HSET "actor:97" first_name "Velibor" last_name "Topic" date_of_birth 1970 +HSET "actor:98" first_name "Keir" last_name "Gilchrist" date_of_birth 1992 +HSET "actor:99" first_name "Maika" last_name "Monroe" date_of_birth 1993 +HSET "actor:100" first_name "Lili" last_name "Sepe" date_of_birth 1997 +HSET "actor:101" first_name "Olivia" last_name "Luccardi" date_of_birth 1989 +HSET "actor:102" first_name "Tom" last_name "Cruise" date_of_birth 1962 +HSET "actor:103" first_name "Emily" last_name "Blunt" date_of_birth 1983 +HSET "actor:104" first_name "Brendan" last_name "Gleeson" date_of_birth 1955 +HSET "actor:105" first_name "Bill" last_name "Paxton" date_of_birth 1955 +HSET "actor:106" first_name "Jonas" last_name "Armstrong" date_of_birth 1981 +HSET "actor:107" first_name "Tony" last_name "Way" date_of_birth 1978 +HSET "actor:108" first_name "Kick" last_name "Gurry" date_of_birth 1978 +HSET "actor:109" first_name "Franz" last_name "Drameh" date_of_birth 1993 +HSET "actor:110" first_name "Eddie" last_name "Redmayne" date_of_birth 1982 +HSET "actor:111" first_name "Felicity" last_name "Jones" date_of_birth 1983 +HSET "actor:112" first_name "Harry" last_name "Lloyd" date_of_birth 1983 +HSET "actor:113" first_name "Alice" last_name "Orr-Ewing" date_of_birth 1989 +HSET "actor:114" first_name "David" last_name "Thewlis" date_of_birth 1963 +HSET "actor:115" first_name "Thomas" last_name "Morrison" date_of_birth 1983 +HSET "actor:116" first_name "Essie" last_name "Davis" date_of_birth 1970 +HSET "actor:117" first_name "Hayley" last_name "McElhinney" date_of_birth 1974 +HSET "actor:118" first_name "Daniel" last_name "Henshall" date_of_birth 1982 +HSET "actor:119" first_name "Shailene" last_name "Woodley" date_of_birth 1991 +HSET "actor:120" first_name "Theo" last_name "James" date_of_birth 1984 +HSET "actor:121" first_name "Ashley" last_name "Judd" date_of_birth 1968 +HSET "actor:122" first_name "Jai" last_name "Courtney" date_of_birth 1986 +HSET "actor:123" first_name "Ray" last_name "Stevenson" date_of_birth 1964 +HSET "actor:124" first_name "Tony" last_name "Goldwyn" date_of_birth 1960 +HSET "actor:125" first_name "Ansel" last_name "Elgort" date_of_birth 1994 +HSET "actor:126" first_name "Mickey" last_name "Rourke" date_of_birth 1952 +HSET "actor:127" first_name "Jessica" last_name "Alba" date_of_birth 1981 +HSET "actor:128" first_name "Josh" last_name "Brolin" date_of_birth 1968 +HSET "actor:129" first_name "Joseph" last_name "Gordon-Levitt" date_of_birth 1981 +HSET "actor:130" first_name "Rosario" last_name "Dawson" date_of_birth 1979 +HSET "actor:131" first_name "Bruce" last_name "Willis" date_of_birth 1955 +HSET "actor:132" first_name "Eva" last_name "Green" date_of_birth 1980 +HSET "actor:133" first_name "Powers" last_name "Boothe" date_of_birth 1948 +HSET "actor:134" first_name "Dennis" last_name "Haysbert" date_of_birth 1954 +HSET "actor:135" first_name "Aaron" last_name "Paul" date_of_birth 1979 +HSET "actor:136" first_name "Dominic" last_name "Cooper" date_of_birth 1978 +HSET "actor:137" first_name "Imogen" last_name "Poots" date_of_birth 1989 +HSET "actor:138" first_name "Scott" last_name "Mescudi" date_of_birth 1984 +HSET "actor:139" first_name "Rami" last_name "Malek" date_of_birth 1981 +HSET "actor:140" first_name "Ramon" last_name "Rodriguez" date_of_birth 1979 +HSET "actor:141" first_name "Dakota" last_name "Johnson" date_of_birth 1989 +HSET "actor:142" first_name "Stevie" last_name "Ray Dallimore" date_of_birth 1967 +HSET "actor:143" first_name "Andrew" last_name "Garfield" date_of_birth 1983 +HSET "actor:144" first_name "Emma" last_name "Stone" date_of_birth 1988 +HSET "actor:145" first_name "Jamie" last_name "Foxx" date_of_birth 1967 +HSET "actor:146" first_name "Dane" last_name "DeHaan" date_of_birth 1986 +HSET "actor:147" first_name "Colm" last_name "Feore" date_of_birth 1958 +HSET "actor:148" first_name "Paul" last_name "Giamatti" date_of_birth 1967 +HSET "actor:149" first_name "Sally" last_name "Field" date_of_birth 1946 +HSET "actor:150" first_name "Embeth" last_name "Davidtz" date_of_birth 1965 +HSET "actor:151" first_name "Luke" last_name "Evans" date_of_birth 1979 +HSET "actor:152" first_name "Sarah" last_name "Gadon" date_of_birth 1987 +HSET "actor:153" first_name "Art" last_name "Parkinson" date_of_birth 2001 +HSET "actor:154" first_name "Paul" last_name "Kaye" date_of_birth 1965 +HSET "actor:155" first_name "William" last_name "Houston" date_of_birth 1968 +HSET "actor:156" first_name "Noah" last_name "Huntley" date_of_birth 1974 +HSET "actor:157" first_name "Diego" last_name "Luna" date_of_birth 1979 +HSET "actor:158" first_name "Channing" last_name "Tatum" date_of_birth 1980 +HSET "actor:159" first_name "Ron" last_name "Perlman" date_of_birth 1950 +HSET "actor:160" first_name "Christina" last_name "Applegate" date_of_birth 1971 +HSET "actor:161" first_name "Ice" last_name "Cube" date_of_birth 1969 +HSET "actor:162" first_name "Kate" last_name "del Castillo" date_of_birth 1972 +HSET "actor:163" first_name "Hector" last_name "Elizondo" date_of_birth 1936 +HSET "actor:164" first_name "Danny" last_name "Trejo" date_of_birth 1944 +HSET "actor:165" first_name "Frank" last_name "Grillo" date_of_birth 1965 +HSET "actor:166" first_name "Carmen" last_name "Ejogo" date_of_birth 1973 +HSET "actor:167" first_name "Zach" last_name "Gilford" date_of_birth 1982 +HSET "actor:168" first_name "Kiele" last_name "Sanchez" date_of_birth 1977 +HSET "actor:169" first_name "Justina" last_name "Machado" date_of_birth 1972 +HSET "actor:170" first_name "John" last_name "Beasley" date_of_birth 1943 +HSET "actor:171" first_name "Noel" last_name "Gugliemi" date_of_birth 1970 +HSET "actor:172" first_name "Chris" last_name "Evans" date_of_birth 1981 +HSET "actor:173" first_name "Samuel" last_name "L. Jackson" date_of_birth 1948 +HSET "actor:174" first_name "Scarlett" last_name "Johansson" date_of_birth 1984 +HSET "actor:175" first_name "Robert" last_name "Redford" date_of_birth 1936 +HSET "actor:176" first_name "Sebastian" last_name "Stan" date_of_birth 1982 +HSET "actor:177" first_name "Anthony" last_name "Mackie" date_of_birth 1978 +HSET "actor:178" first_name "Cobie" last_name "Smulders" date_of_birth 1982 +HSET "actor:179" first_name "Mark" last_name "Wahlberg" date_of_birth 1971 +HSET "actor:180" first_name "Stanley" last_name "Tucci" date_of_birth 1960 +HSET "actor:181" first_name "Kelsey" last_name "Grammer" date_of_birth 1955 +HSET "actor:182" first_name "Nicola" last_name "Peltz" date_of_birth 1995 +HSET "actor:183" first_name "Jack" last_name "Reynor" date_of_birth 1992 +HSET "actor:184" first_name "Titus" last_name "Welliver" date_of_birth 1961 +HSET "actor:185" first_name "Sophia" last_name "Myles" date_of_birth 1980 +HSET "actor:186" first_name "Bingbing" last_name "Li" date_of_birth 1973 +HSET "actor:187" first_name "T.J." last_name "Miller" date_of_birth 1981 +HSET "actor:188" first_name "Megan" last_name "Fox" date_of_birth 1986 +HSET "actor:189" first_name "Will" last_name "Arnett" date_of_birth 1970 +HSET "actor:190" first_name "William" last_name "Fichtner" date_of_birth 1956 +HSET "actor:191" first_name "Alan" last_name "Ritchson" date_of_birth 1984 +HSET "actor:192" first_name "Noel" last_name "Fisher" date_of_birth 1984 +HSET "actor:193" first_name "Pete" last_name "Ploszek" date_of_birth 1987 +HSET "actor:194" first_name "Johnny" last_name "Knoxville" date_of_birth 1971 +HSET "actor:195" first_name "Jeremy" last_name "Howard" date_of_birth 1981 +HSET "actor:196" first_name "Danny" last_name "Woodburn" date_of_birth 1964 +HSET "actor:197" first_name "Tom" last_name "Ellis" date_of_birth 1978 +HSET "actor:198" first_name "Lauren" last_name "German" date_of_birth 1978 +HSET "actor:199" first_name "Kevin" last_name "Alejandro" date_of_birth 1976 +HSET "actor:200" first_name "D.B." last_name "Woodside" date_of_birth 1969 +HSET "actor:201" first_name "Rachael" last_name "Harris" date_of_birth 1968 +HSET "actor:202" first_name "Tricia" last_name "Helfer" date_of_birth 1974 +HSET "actor:203" first_name "Aimee" last_name "Garcia" date_of_birth 1978 +HSET "actor:204" first_name "Ian" last_name "McKellen" date_of_birth 1939 +HSET "actor:205" first_name "Martin" last_name "Freeman" date_of_birth 1971 +HSET "actor:206" first_name "Richard" last_name "Armitage" date_of_birth 1971 +HSET "actor:207" first_name "Ken" last_name "Stott" date_of_birth 1955 +HSET "actor:208" first_name "Graham" last_name "McTavish" date_of_birth 1961 +HSET "actor:209" first_name "James" last_name "Nesbitt" date_of_birth 1965 +HSET "actor:210" first_name "Dean" last_name "O'Gorman" date_of_birth 1976 +HSET "actor:211" first_name "Laura" last_name "Allen" date_of_birth 1974 +HSET "actor:212" first_name "Peter" last_name "Stormare" date_of_birth 1953 +HSET "actor:213" first_name "Christian" last_name "Distefano" date_of_birth 2005 +HSET "actor:214" first_name "Elizabeth" last_name "Whitmere" date_of_birth 1981 +HSET "actor:215" first_name "Michael" last_name "Keaton" date_of_birth 1951 +HSET "actor:216" first_name "Zach" last_name "Galifianakis" date_of_birth 1969 +HSET "actor:217" first_name "Naomi" last_name "Watts" date_of_birth 1968 +HSET "actor:218" first_name "Andrea" last_name "Riseborough" date_of_birth 1981 +HSET "actor:219" first_name "Bruce" last_name "Campbell" date_of_birth 1958 +HSET "actor:220" first_name "Ellen" last_name "Sandweiss" date_of_birth 1958 +HSET "actor:221" first_name "Betsy" last_name "Baker" date_of_birth 1955 +HSET "actor:222" first_name "Theresa" last_name "Tilly" date_of_birth 1953 +HSET "actor:223" first_name "Jeff" last_name "Bridges" date_of_birth 1949 +HSET "actor:224" first_name "Meryl" last_name "Streep" date_of_birth 1949 +HSET "actor:225" first_name "Katie" last_name "Holmes" date_of_birth 1978 +HSET "actor:226" first_name "Odeya" last_name "Rush" date_of_birth 1997 +HSET "actor:227" first_name "Cameron" last_name "Monaghan" date_of_birth 1993 +HSET "actor:228" first_name "Taylor" last_name "Swift" date_of_birth 1989 +HSET "actor:229" first_name "Jemaine" last_name "Clement" date_of_birth 1974 +HSET "actor:230" first_name "Taika" last_name "Waititi" date_of_birth 1975 +HSET "actor:231" first_name "Hiroki" last_name "Hasegawa" date_of_birth 1977 +HSET "actor:232" first_name "Yutaka" last_name "Takenouchi" date_of_birth 1971 +HSET "actor:233" first_name "Satomi" last_name "Ishihara" date_of_birth 1986 +HSET "actor:234" first_name "Ren" last_name "Ohsugi" date_of_birth 1951 +HSET "actor:235" first_name "Akira" last_name "Emoto" date_of_birth 1948 +HSET "actor:236" first_name "Mikako" last_name "Ichikawa" date_of_birth 1978 +HSET "actor:237" first_name "Jun" last_name "Kunimura" date_of_birth 1955 +HSET "actor:238" first_name "Pierre" last_name "Taki" date_of_birth 1967 +HSET "actor:239" first_name "Dylan" last_name "O'Brien" date_of_birth 1991 +HSET "actor:240" first_name "Aml" last_name "Ameen" date_of_birth 1985 +HSET "actor:241" first_name "Thomas" last_name "Brodie-Sangster" date_of_birth 1990 +HSET "actor:242" first_name "Will" last_name "Poulter" date_of_birth 1993 +HSET "actor:243" first_name "Kaya" last_name "Scodelario" date_of_birth 1992 +HSET "actor:244" first_name "Chris" last_name "Sheffield" date_of_birth 1988 +HSET "actor:245" first_name "Jake" last_name "Gyllenhaal" date_of_birth 1980 +HSET "actor:246" first_name "Michael" last_name "Papajohn" date_of_birth 1964 +HSET "actor:247" first_name "James" last_name "Huang" date_of_birth 1977 +HSET "actor:248" first_name "Kent" last_name "Shocknek" date_of_birth 1956 +HSET "actor:249" first_name "Sharon" last_name "Tay" date_of_birth 1966 +HSET "actor:250" first_name "Nat" last_name "Wolff" date_of_birth 1994 +HSET "actor:251" first_name "Laura" last_name "Dern" date_of_birth 1967 +HSET "actor:252" first_name "Sam" last_name "Trammell" date_of_birth 1969 +HSET "actor:253" first_name "Lotte" last_name "Verbeek" date_of_birth 1982 +HSET "actor:254" first_name "Randy" last_name "Kovitz" date_of_birth 1955 +HSET "actor:255" first_name "Dwayne" last_name "Johnson" date_of_birth 1972 +HSET "actor:256" first_name "Ian" last_name "McShane" date_of_birth 1942 +HSET "actor:257" first_name "John" last_name "Hurt" date_of_birth 1940 +HSET "actor:258" first_name "Rufus" last_name "Sewell" date_of_birth 1967 +HSET "actor:259" first_name "Aksel" last_name "Hennie" date_of_birth 1975 +HSET "actor:260" first_name "Reece" last_name "Ritchie" date_of_birth 1986 +HSET "actor:261" first_name "Joseph" last_name "Fiennes" date_of_birth 1970 +HSET "actor:262" first_name "Tobias" last_name "Santelmann" date_of_birth 1980 +HSET "actor:263" first_name "Seth" last_name "Rogen" date_of_birth 1982 +HSET "actor:264" first_name "Rose" last_name "Byrne" date_of_birth 1979 +HSET "actor:265" first_name "Brian" last_name "Huskey" date_of_birth 1968 +HSET "actor:266" first_name "Ike" last_name "Barinholtz" date_of_birth 1977 +HSET "actor:267" first_name "Carla" last_name "Gallo" date_of_birth 1975 +HSET "actor:268" first_name "Zac" last_name "Efron" date_of_birth 1987 +HSET "actor:269" first_name "Dave" last_name "Franco" date_of_birth 1985 +HSET "actor:270" first_name "Sylvester" last_name "Stallone" date_of_birth 1946 +HSET "actor:271" first_name "Jason" last_name "Statham" date_of_birth 1967 +HSET "actor:272" first_name "Harrison" last_name "Ford" date_of_birth 1942 +HSET "actor:273" first_name "Arnold" last_name "Schwarzenegger" date_of_birth 1947 +HSET "actor:274" first_name "Mel" last_name "Gibson" date_of_birth 1956 +HSET "actor:275" first_name "Wesley" last_name "Snipes" date_of_birth 1962 +HSET "actor:276" first_name "Dolph" last_name "Lundgren" date_of_birth 1957 +HSET "actor:277" first_name "Randy" last_name "Couture" date_of_birth 1963 +HSET "actor:278" first_name "Terry" last_name "Crews" date_of_birth 1968 +HSET "actor:279" first_name "Elizabeth" last_name "Banks" date_of_birth 1974 +HSET "actor:280" first_name "Alison" last_name "Brie" date_of_birth 1982 +HSET "actor:281" first_name "Anthony" last_name "Daniels" date_of_birth 1946 +HSET "actor:282" first_name "Charlie" last_name "Day" date_of_birth 1976 +HSET "actor:283" first_name "Keith" last_name "Ferguson" date_of_birth 1972 +HSET "actor:284" first_name "Lily" last_name "Collins" date_of_birth 1989 +HSET "actor:285" first_name "Sam" last_name "Claflin" date_of_birth 1986 +HSET "actor:286" first_name "Christian" last_name "Cooke" date_of_birth 1987 +HSET "actor:287" first_name "Jaime" last_name "Winstone" date_of_birth 1985 +HSET "actor:288" first_name "Suki" last_name "Waterhouse" date_of_birth 1992 +HSET "actor:289" first_name "Tamsin" last_name "Egerton" date_of_birth 1988 +HSET "actor:290" first_name "Jamie" last_name "Beamish" date_of_birth 1976 +HSET "actor:291" first_name "Lorcan" last_name "Cranitch" date_of_birth 1959 +HSET "actor:292" first_name "Ellar" last_name "Coltrane" date_of_birth 1994 +HSET "actor:293" first_name "Patricia" last_name "Arquette" date_of_birth 1968 +HSET "actor:294" first_name "Lorelei" last_name "Linklater" date_of_birth 1994 +HSET "actor:295" first_name "Ethan" last_name "Hawke" date_of_birth 1970 +HSET "actor:296" first_name "Kyle" last_name "Gallner" date_of_birth 1986 +HSET "actor:297" first_name "Ben" last_name "Reed" date_of_birth 1965 +HSET "actor:298" first_name "Keir" last_name "O'Donnell" date_of_birth 1978 +HSET "actor:299" first_name "Scott" last_name "Adsit" date_of_birth 1965 +HSET "actor:300" first_name "Daniel" last_name "Henney" date_of_birth 1979 +HSET "actor:301" first_name "Jamie" last_name "Chung" date_of_birth 1983 +HSET "actor:302" first_name "Damon" last_name "Wayans Jr." date_of_birth 1982 +HSET "actor:303" first_name "Genesis" last_name "Rodriguez" date_of_birth 1987 +HSET "actor:304" first_name "James" last_name "Cromwell" date_of_birth 1940 +HSET "actor:305" first_name "Alan" last_name "Tudyk" date_of_birth 1971 +HSET "actor:306" first_name "Josh" last_name "Hutcherson" date_of_birth 1992 +HSET "actor:307" first_name "Liam" last_name "Hemsworth" date_of_birth 1990 +HSET "actor:308" first_name "Woody" last_name "Harrelson" date_of_birth 1961 +HSET "actor:309" first_name "Donald" last_name "Sutherland" date_of_birth 1935 +HSET "actor:310" first_name "Philip" last_name "Seymour Hoffman" date_of_birth 1967 +HSET "actor:311" first_name "Julianne" last_name "Moore" date_of_birth 1960 +HSET "actor:312" first_name "Willow" last_name "Shields" date_of_birth 2000 +HSET "actor:313" first_name "Russell" last_name "Crowe" date_of_birth 1964 +HSET "actor:314" first_name "Jennifer" last_name "Connelly" date_of_birth 1970 +HSET "actor:315" first_name "Ray" last_name "Winstone" date_of_birth 1957 +HSET "actor:316" first_name "Anthony" last_name "Hopkins" date_of_birth 1937 +HSET "actor:317" first_name "Emma" last_name "Watson" date_of_birth 1990 +HSET "actor:318" first_name "Douglas" last_name "Booth" date_of_birth 1992 +HSET "actor:319" first_name "Nick" last_name "Nolte" date_of_birth 1941 +HSET "actor:320" first_name "Mark" last_name "Margolis" date_of_birth 1939 +HSET "actor:321" first_name "Jack" last_name "O'Connell" date_of_birth 1990 +HSET "actor:322" first_name "Domhnall" last_name "Gleeson" date_of_birth 1983 +HSET "actor:323" first_name "Garrett" last_name "Hedlund" date_of_birth 1984 +HSET "actor:324" first_name "Finn" last_name "Wittrock" date_of_birth 1984 +HSET "actor:325" first_name "Vincenzo" last_name "Amato" date_of_birth 1966 +HSET "actor:326" first_name "Amy" last_name "Adams" date_of_birth 1974 +HSET "actor:327" first_name "Christoph" last_name "Waltz" date_of_birth 1956 +HSET "actor:328" first_name "Danny" last_name "Huston" date_of_birth 1962 +HSET "actor:329" first_name "Krysten" last_name "Ritter" date_of_birth 1981 +HSET "actor:330" first_name "Jason" last_name "Schwartzman" date_of_birth 1980 +HSET "actor:331" first_name "Terence" last_name "Stamp" date_of_birth 1938 +HSET "actor:332" first_name "Jon" last_name "Polito" date_of_birth 1950 +HSET "actor:333" first_name "Madeleine" last_name "Arthur" date_of_birth 1997 +HSET "actor:334" first_name "Michael" last_name "Pitt" date_of_birth 1981 +HSET "actor:335" first_name "Steven" last_name "Yeun" date_of_birth 1983 +HSET "actor:336" first_name "Brit" last_name "Marling" date_of_birth 1982 +HSET "actor:337" first_name "Charles" last_name "Woods Gray" date_of_birth 1949 +HSET "actor:338" first_name "Joanna" last_name "Newsom" date_of_birth 1982 +HSET "actor:339" first_name "Katherine" last_name "Waterston" date_of_birth 1980 +HSET "actor:340" first_name "Joaquin" last_name "Phoenix" date_of_birth 1974 +HSET "actor:341" first_name "Jeannie" last_name "Berlin" date_of_birth 1949 +HSET "actor:342" first_name "Eric" last_name "Roberts" date_of_birth 1956 +HSET "actor:343" first_name "Serena" last_name "Scott Thomas" date_of_birth 1961 +HSET "actor:344" first_name "Rita" last_name "Cortese" date_of_birth 1949 +HSET "actor:345" first_name "Julieta" last_name "Zylberberg" date_of_birth 1983 +HSET "actor:346" first_name "Leonardo" last_name "Sbaraglia" date_of_birth 1970 +HSET "actor:347" first_name "Jill" last_name "Larson" date_of_birth 1947 +HSET "actor:348" first_name "Anne" last_name "Ramsay" date_of_birth 1960 +HSET "actor:349" first_name "Michelle" last_name "Ang" date_of_birth 1983 +HSET "actor:350" first_name "Brett" last_name "Gentile" date_of_birth 1973 +HSET "actor:351" first_name "Ryan" last_name "Cutrona" date_of_birth 1949 +HSET "actor:352" first_name "Anne" last_name "Bedian" date_of_birth 1972 +HSET "actor:353" first_name "Sullivan" last_name "Stapleton" date_of_birth 1977 +HSET "actor:354" first_name "Lena" last_name "Headey" date_of_birth 1973 +HSET "actor:355" first_name "Hans" last_name "Matheson" date_of_birth 1975 +HSET "actor:356" first_name "Callan" last_name "Mulvey" date_of_birth 1975 +HSET "actor:357" first_name "David" last_name "Wenham" date_of_birth 1965 +HSET "actor:358" first_name "Rodrigo" last_name "Santoro" date_of_birth 1975 +HSET "actor:359" first_name "Andrew" last_name "Tiernan" date_of_birth 1965 +HSET "actor:360" first_name "Jonah" last_name "Hill" date_of_birth 1983 +HSET "actor:361" first_name "Wyatt" last_name "Russell" date_of_birth 1986 +HSET "actor:362" first_name "Amber" last_name "Stevens West" date_of_birth 1986 +HSET "actor:363" first_name "Michelle" last_name "Monaghan" date_of_birth 1976 +HSET "actor:364" first_name "James" last_name "Marsden" date_of_birth 1973 +HSET "actor:365" first_name "Liana" last_name "Liberato" date_of_birth 1995 +HSET "actor:366" first_name "Gerald" last_name "McRaney" date_of_birth 1947 +HSET "actor:367" first_name "Caroline" last_name "Goodall" date_of_birth 1959 +HSET "actor:368" first_name "Clarke" last_name "Peters" date_of_birth 1952 +HSET "actor:369" first_name "Sebastian" last_name "Arcelus" date_of_birth 1976 +HSET "actor:370" first_name "Jon" last_name "Tenney" date_of_birth 1961 +HSET "actor:371" first_name "Zoey" last_name "Deutch" date_of_birth 1994 +HSET "actor:372" first_name "Danila" last_name "Kozlovsky" date_of_birth 1985 +HSET "actor:373" first_name "Gabriel" last_name "Byrne" date_of_birth 1950 +HSET "actor:374" first_name "Olga" last_name "Kurylenko" date_of_birth 1979 +HSET "actor:375" first_name "Sarah" last_name "Hyland" date_of_birth 1990 +HSET "actor:376" first_name "Sami" last_name "Gayle" date_of_birth 1996 +HSET "actor:377" first_name "Ben" last_name "Barnes" date_of_birth 1981 +HSET "actor:378" first_name "Alicia" last_name "Vikander" date_of_birth 1988 +HSET "actor:379" first_name "Antje" last_name "Traue" date_of_birth 1981 +HSET "actor:380" first_name "Olivia" last_name "Williams" date_of_birth 1968 +HSET "actor:381" first_name "Kit" last_name "Harington" date_of_birth 1986 +HSET "actor:382" first_name "Eric" last_name "Bana" date_of_birth 1968 +HSET "actor:383" first_name "Olivia" last_name "Munn" date_of_birth 1980 +HSET "actor:384" first_name "Chris" last_name "Coy" date_of_birth 1986 +HSET "actor:385" first_name "Dorian" last_name "Missick" date_of_birth 1976 +HSET "actor:386" first_name "Sean" last_name "Harris" date_of_birth 1966 +HSET "actor:387" first_name "Joel" last_name "McHale" date_of_birth 1971 +HSET "actor:388" first_name "Mike" last_name "Houston" date_of_birth 1976 +HSET "actor:389" first_name "Andy" last_name "Serkis" date_of_birth 1964 +HSET "actor:390" first_name "Jason" last_name "Clarke" date_of_birth 1969 +HSET "actor:391" first_name "Gary" last_name "Oldman" date_of_birth 1958 +HSET "actor:392" first_name "Keri" last_name "Russell" date_of_birth 1976 +HSET "actor:393" first_name "Toby" last_name "Kebbell" date_of_birth 1982 +HSET "actor:394" first_name "Kodi" last_name "Smit-McPhee" date_of_birth 1996 +HSET "actor:395" first_name "Kirk" last_name "Acevedo" date_of_birth 1971 +HSET "actor:396" first_name "Christian" last_name "Bale" date_of_birth 1974 +HSET "actor:397" first_name "Joel" last_name "Edgerton" date_of_birth 1974 +HSET "actor:398" first_name "John" last_name "Turturro" date_of_birth 1957 +HSET "actor:399" first_name "Ben" last_name "Mendelsohn" date_of_birth 1969 +HSET "actor:400" first_name "Sigourney" last_name "Weaver" date_of_birth 1949 +HSET "actor:401" first_name "Ben" last_name "Kingsley" date_of_birth 1943 +HSET "actor:402" first_name "Annabelle" last_name "Wallis" date_of_birth 1984 +HSET "actor:403" first_name "Ward" last_name "Horton" date_of_birth 1976 +HSET "actor:404" first_name "Tony" last_name "Amendola" date_of_birth 1951 +HSET "actor:405" first_name "Alfre" last_name "Woodard" date_of_birth 1952 +HSET "actor:406" first_name "Eric" last_name "Ladin" date_of_birth 1978 +HSET "actor:407" first_name "Ivar" last_name "Brogger" date_of_birth 1947 +HSET "actor:408" first_name "Karl" last_name "Urban" date_of_birth 1972 +HSET "actor:409" first_name "Wentworth" last_name "Miller" date_of_birth 1972 +HSET "actor:410" first_name "Eric" last_name "Stonestreet" date_of_birth 1971 +HSET "actor:411" first_name "Matthias" last_name "Schoenaerts" date_of_birth 1977 +HSET "actor:412" first_name "Isabel" last_name "Lucas" date_of_birth 1985 +HSET "actor:413" first_name "Rachael" last_name "Taylor" date_of_birth 1984 +HSET "actor:414" first_name "Rhona" last_name "Mitra" date_of_birth 1976 +HSET "actor:415" first_name "Valerie" last_name "Cruz" date_of_birth 1976 +HSET "actor:416" first_name "Michael" last_name "Parks" date_of_birth 1940 +HSET "actor:417" first_name "Justin" last_name "Long" date_of_birth 1978 +HSET "actor:418" first_name "Haley" last_name "Joel Osment" date_of_birth 1988 +HSET "actor:419" first_name "Johnny" last_name "Depp" date_of_birth 1963 +HSET "actor:420" first_name "Ralph" last_name "Garman" date_of_birth 1964 +HSET "actor:421" first_name "Jennifer" last_name "Schwalbach Smith" date_of_birth 1971 +HSET "actor:422" first_name "Harley" last_name "Quinn Smith" date_of_birth 1999 +HSET "actor:423" first_name "James" last_name "Franco" date_of_birth 1978 +HSET "actor:424" first_name "Lizzy" last_name "Caplan" date_of_birth 1982 +HSET "actor:425" first_name "Timothy" last_name "Simons" date_of_birth 1978 +HSET "actor:426" first_name "Ryan" last_name "Reynolds" date_of_birth 1976 +HSET "actor:427" first_name "Gemma" last_name "Arterton" date_of_birth 1986 +HSET "actor:428" first_name "Anna" last_name "Kendrick" date_of_birth 1985 +HSET "actor:429" first_name "Jacki" last_name "Weaver" date_of_birth 1947 +HSET "actor:430" first_name "Ella" last_name "Smith" date_of_birth 1983 +HSET "actor:431" first_name "Sam" last_name "Spruell" date_of_birth 1977 +HSET "actor:432" first_name "Aaron" last_name "Eckhart" date_of_birth 1968 +HSET "actor:433" first_name "Yvonne" last_name "Strahovski" date_of_birth 1982 +HSET "actor:434" first_name "Miranda" last_name "Otto" date_of_birth 1967 +HSET "actor:435" first_name "Bill" last_name "Nighy" date_of_birth 1949 +HSET "actor:436" first_name "Aden" last_name "Young" date_of_birth 1972 +HSET "actor:437" first_name "Caitlin" last_name "Stasey" date_of_birth 1990 +HSET "actor:438" first_name "Mahesh" last_name "Jadu" date_of_birth 1982 +HSET "actor:439" first_name "Robert" last_name "Downey Jr." date_of_birth 1965 +HSET "actor:440" first_name "Robert" last_name "Duvall" date_of_birth 1931 +HSET "actor:441" first_name "Vera" last_name "Farmiga" date_of_birth 1973 +HSET "actor:442" first_name "Billy" last_name "Bob Thornton" date_of_birth 1955 +HSET "actor:443" first_name "Vincent" last_name "D'Onofrio" date_of_birth 1959 +HSET "actor:444" first_name "Dax" last_name "Shepard" date_of_birth 1975 +HSET "actor:445" first_name "Leighton" last_name "Meester" date_of_birth 1986 +HSET "actor:446" first_name "Ken" last_name "Howard" date_of_birth 1944 +HSET "actor:447" first_name "Sienna" last_name "Miller" date_of_birth 1981 +HSET "actor:448" first_name "Riccardo" last_name "Scamarcio" date_of_birth 1979 +HSET "actor:449" first_name "Omar" last_name "Sy" date_of_birth 1978 +HSET "actor:450" first_name "Henry" last_name "Goodman" date_of_birth 1950 +HSET "actor:451" first_name "Matthew" last_name "Rhys" date_of_birth 1974 +HSET "actor:452" first_name "Stephen" last_name "Campbell Moore" date_of_birth 1979 +HSET "actor:453" first_name "Mireille" last_name "Enos" date_of_birth 1975 +HSET "actor:454" first_name "Jamie" last_name "Blackley" date_of_birth 1991 +HSET "actor:455" first_name "Joshua" last_name "Leonard" date_of_birth 1975 +HSET "actor:456" first_name "Stacy" last_name "Keach" date_of_birth 1941 +HSET "actor:457" first_name "Gabrielle" last_name "Rose" date_of_birth 1954 +HSET "actor:458" first_name "Jakob" last_name "Davies" date_of_birth 2003 +HSET "actor:459" first_name "Perdita" last_name "Weeks" date_of_birth 1985 +HSET "actor:460" first_name "Ben" last_name "Feldman" date_of_birth 1980 +HSET "actor:461" first_name "Edwin" last_name "Hodge" date_of_birth 1985 +HSET "actor:462" first_name "Kevin" last_name "Costner" date_of_birth 1955 +HSET "actor:463" first_name "Amber" last_name "Heard" date_of_birth 1986 +HSET "actor:464" first_name "Hailee" last_name "Steinfeld" date_of_birth 1996 +HSET "actor:465" first_name "Connie" last_name "Nielsen" date_of_birth 1965 +HSET "actor:466" first_name "Richard" last_name "Sammel" date_of_birth 1960 +HSET "actor:467" first_name "Alice" last_name "Eve" date_of_birth 1982 +HSET "actor:468" first_name "Emma" last_name "Fitzpatrick" date_of_birth 1985 +HSET "actor:469" first_name "John" last_name "Cullum" date_of_birth 1930 +HSET "actor:470" first_name "Mark" last_name "Kassen" date_of_birth 1971 +HSET "actor:471" first_name "Daniel" last_name "Spink" date_of_birth 1979 +HSET "actor:472" first_name "Liam" last_name "Neeson" date_of_birth 1952 +HSET "actor:473" first_name "Scoot" last_name "McNairy" date_of_birth 1977 +HSET "actor:474" first_name "Michelle" last_name "Dockery" date_of_birth 1981 +HSET "actor:475" first_name "Nate" last_name "Parker" date_of_birth 1979 +HSET "actor:476" first_name "Corey" last_name "Stoll" date_of_birth 1976 +HSET "actor:477" first_name "Lupita" last_name "Nyong'o" date_of_birth 1983 +HSET "actor:478" first_name "Omar" last_name "Metwally" date_of_birth 1974 +HSET "actor:479" first_name "Jason" last_name "Butler Harner" date_of_birth 1970 +HSET "actor:480" first_name "Michael" last_name "B. Jordan" date_of_birth 1987 +HSET "actor:481" first_name "Mackenzie" last_name "Davis" date_of_birth 1987 +HSET "actor:482" first_name "Jessica" last_name "Lucas" date_of_birth 1985 +HSET "actor:483" first_name "Addison" last_name "Timlin" date_of_birth 1991 +HSET "actor:484" first_name "Josh" last_name "Pais" date_of_birth 1964 +HSET "actor:485" first_name "Vincent" last_name "Price" date_of_birth 1911 +HSET "actor:486" first_name "Adam" last_name "Sandler" date_of_birth 1966 +HSET "actor:487" first_name "Drew" last_name "Barrymore" date_of_birth 1975 +HSET "actor:488" first_name "Kevin" last_name "Nealon" date_of_birth 1953 +HSET "actor:489" first_name "Wendi" last_name "McLendon-Covey" date_of_birth 1969 +HSET "actor:490" first_name "Bella" last_name "Thorne" date_of_birth 1997 +HSET "actor:491" first_name "Dan" last_name "Stevens" date_of_birth 1982 +HSET "actor:492" first_name "Brendan" last_name "Meyer" date_of_birth 1994 +HSET "actor:493" first_name "Sheila" last_name "Kelley" date_of_birth 1961 +HSET "actor:494" first_name "Leland" last_name "Orser" date_of_birth 1960 +HSET "actor:495" first_name "Lance" last_name "Reddick" date_of_birth 1962 +HSET "actor:496" first_name "Chase" last_name "Williamson" date_of_birth 1988 +HSET "actor:497" first_name "Joel" last_name "David Moore" date_of_birth 1977 +HSET "actor:498" first_name "Cameron" last_name "Diaz" date_of_birth 1972 +HSET "actor:499" first_name "Leslie" last_name "Mann" date_of_birth 1972 +HSET "actor:500" first_name "Nikolaj" last_name "Coster-Waldau" date_of_birth 1970 +HSET "actor:501" first_name "Don" last_name "Johnson" date_of_birth 1949 +HSET "actor:502" first_name "Kate" last_name "Upton" date_of_birth 1992 +HSET "actor:503" first_name "Taylor" last_name "Kinney" date_of_birth 1981 +HSET "actor:504" first_name "Nicki" last_name "Minaj" date_of_birth 1982 +HSET "actor:505" first_name "Nicolas" last_name "Cage" date_of_birth 1964 +HSET "actor:506" first_name "Chad" last_name "Michael Murray" date_of_birth 1981 +HSET "actor:507" first_name "Cassi" last_name "Thomson" date_of_birth 1993 +HSET "actor:508" first_name "Jordin" last_name "Sparks" date_of_birth 1989 +HSET "actor:509" first_name "Lea" last_name "Thompson" date_of_birth 1961 +HSET "actor:510" first_name "Gary" last_name "Grubbs" date_of_birth 1949 +HSET "actor:511" first_name "Quinton" last_name "Aaron" date_of_birth 1984 +HSET "actor:512" first_name "Martin" last_name "Klebba" date_of_birth 1969 +HSET "actor:513" first_name "Bobby" last_name "Cannavale" date_of_birth 1970 +HSET "actor:514" first_name "Adewale" last_name "Akinnuoye-Agbaje" date_of_birth 1967 +HSET "actor:515" first_name "David" last_name "Zayas" date_of_birth 1962 +HSET "actor:516" first_name "Nicolette" last_name "Pierini" date_of_birth 2003 +HSET "actor:517" first_name "Heather" last_name "Sossaman" date_of_birth 1987 +HSET "actor:518" first_name "Courtney" last_name "Halverson" date_of_birth 1989 +HSET "actor:519" first_name "Shelley" last_name "Hennig" date_of_birth 1987 +HSET "actor:520" first_name "Will" last_name "Peltz" date_of_birth 1986 +HSET "actor:521" first_name "Renee" last_name "Olstead" date_of_birth 1989 +HSET "actor:522" first_name "George" last_name "Kennedy" date_of_birth 1925 +HSET "actor:523" first_name "Jessica" last_name "Lange" date_of_birth 1949 +HSET "actor:524" first_name "Brie" last_name "Larson" date_of_birth 1989 +HSET "actor:525" first_name "Michael" last_name "Kenneth Williams" date_of_birth 1966 +HSET "actor:526" first_name "Mads" last_name "Mikkelsen" date_of_birth 1965 +HSET "actor:527" first_name "Jeffrey" last_name "Dean Morgan" date_of_birth 1966 +HSET "actor:528" first_name "Eric" last_name "Cantona" date_of_birth 1966 +HSET "actor:529" first_name "Mikael" last_name "Persbrandt" date_of_birth 1963 +HSET "actor:530" first_name "Douglas" last_name "Henshall" date_of_birth 1965 +HSET "actor:531" first_name "Michael" last_name "Raymond-James" date_of_birth 1977 +HSET "actor:532" first_name "Jonathan" last_name "Pryce" date_of_birth 1947 +HSET "actor:533" first_name "Seth" last_name "MacFarlane" date_of_birth 1973 +HSET "actor:534" first_name "Charlize" last_name "Theron" date_of_birth 1975 +HSET "actor:535" first_name "Amanda" last_name "Seyfried" date_of_birth 1985 +HSET "actor:536" first_name "Giovanni" last_name "Ribisi" date_of_birth 1974 +HSET "actor:537" first_name "Sarah" last_name "Silverman" date_of_birth 1970 +HSET "actor:538" first_name "Wes" last_name "Studi" date_of_birth 1947 +HSET "actor:539" first_name "Taron" last_name "Egerton" date_of_birth 1989 +HSET "actor:540" first_name "Colin" last_name "Morgan" date_of_birth 1986 +HSET "actor:541" first_name "Dominic" last_name "West" date_of_birth 1969 +HSET "actor:542" first_name "Emily" last_name "Watson" date_of_birth 1967 +HSET "actor:543" first_name "Joanna" last_name "Scanlan" date_of_birth 1961 +HSET "actor:544" first_name "Miranda" last_name "Richardson" date_of_birth 1958 +HSET "actor:545" first_name "Sam" last_name "Neill" date_of_birth 1947 +HSET "actor:546" first_name "Rima" last_name "Te Wiata" date_of_birth 1963 +HSET "actor:547" first_name "Rebecca" last_name "Hall" date_of_birth 1982 +HSET "actor:548" first_name "Paul" last_name "Bettany" date_of_birth 1971 +HSET "actor:549" first_name "Cillian" last_name "Murphy" date_of_birth 1976 +HSET "actor:550" first_name "Kate" last_name "Mara" date_of_birth 1983 +HSET "actor:551" first_name "Cole" last_name "Hauser" date_of_birth 1975 +HSET "actor:552" first_name "Morgan" last_name "Freeman" date_of_birth 1937 +HSET "actor:553" first_name "Clifton" last_name "Collins Jr." date_of_birth 1970 +HSET "actor:554" first_name "Cory" last_name "Hardrict" date_of_birth 1979 +HSET "actor:555" first_name "Jason" last_name "Segel" date_of_birth 1980 +HSET "actor:556" first_name "Rob" last_name "Corddry" date_of_birth 1971 +HSET "actor:557" first_name "Ellie" last_name "Kemper" date_of_birth 1980 +HSET "actor:558" first_name "Rob" last_name "Lowe" date_of_birth 1964 +HSET "actor:559" first_name "Nancy" last_name "Lenehan" date_of_birth 1953 +HSET "actor:560" first_name "Jessica" last_name "Sula" date_of_birth 1994 +HSET "actor:561" first_name "Lucien" last_name "Laviscount" date_of_birth 1992 +HSET "actor:562" first_name "Naomi" last_name "Ryan" date_of_birth 1977 +HSET "actor:563" first_name "Asa" last_name "Butterfield" date_of_birth 1997 +HSET "actor:564" first_name "Rafe" last_name "Spall" date_of_birth 1983 +HSET "actor:565" first_name "Sally" last_name "Hawkins" date_of_birth 1976 +HSET "actor:566" first_name "Eddie" last_name "Marsan" date_of_birth 1968 +HSET "actor:567" first_name "Martin" last_name "McCann" date_of_birth 1983 +HSET "actor:568" first_name "Jake" last_name "Davies" date_of_birth 1993 +HSET "actor:569" first_name "Mark" last_name "Duplass" date_of_birth 1976 +HSET "actor:570" first_name "Tom" last_name "Hardy" date_of_birth 1977 +HSET "actor:571" first_name "Noomi" last_name "Rapace" date_of_birth 1979 +HSET "actor:572" first_name "James" last_name "Gandolfini" date_of_birth 1961 +HSET "actor:573" first_name "John" last_name "Ortiz" date_of_birth 1968 +HSET "actor:574" first_name "Elizabeth" last_name "Rodriguez" date_of_birth 1980 +HSET "actor:575" first_name "Michael" last_name "Esper" date_of_birth 1976 +HSET "actor:576" first_name "Susanne" last_name "Wuest" date_of_birth 1979 +HSET "actor:577" first_name "Kate" last_name "Beckinsale" date_of_birth 1973 +HSET "actor:578" first_name "Jim" last_name "Sturgess" date_of_birth 1978 +HSET "actor:579" first_name "Michael" last_name "Caine" date_of_birth 1933 +HSET "actor:580" first_name "Jason" last_name "Flemyng" date_of_birth 1966 +HSET "actor:581" first_name "Jason" last_name "Bateman" date_of_birth 1969 +HSET "actor:582" first_name "Jason" last_name "Sudeikis" date_of_birth 1975 +HSET "actor:583" first_name "Jennifer" last_name "Aniston" date_of_birth 1969 +HSET "actor:584" first_name "Kevin" last_name "Spacey" date_of_birth 1959 +HSET "actor:585" first_name "Chris" last_name "Pine" date_of_birth 1980 +HSET "actor:586" first_name "Jonathan" last_name "Banks" date_of_birth 1947 +HSET "actor:587" first_name "Kenneth" last_name "Branagh" date_of_birth 1960 +HSET "actor:588" first_name "Lenn" last_name "Kudrjawizki" date_of_birth 1975 +HSET "actor:589" first_name "Peter" last_name "Andersson" date_of_birth 1953 +HSET "actor:590" first_name "Elena" last_name "Velikanova" date_of_birth 1984 +HSET "actor:591" first_name "Nonso" last_name "Anozie" date_of_birth 1979 +HSET "actor:592" first_name "Jose" last_name "Pablo Cantillo" date_of_birth 1979 +HSET "actor:593" first_name "Carrie" last_name "Fisher" date_of_birth 1956 +HSET "actor:594" first_name "Adam" last_name "Driver" date_of_birth 1983 +HSET "actor:595" first_name "Daisy" last_name "Ridley" date_of_birth 1992 +HSET "actor:596" first_name "John" last_name "Boyega" date_of_birth 1992 +HSET "actor:597" first_name "Oscar" last_name "Isaac" date_of_birth 1979 +HSET "actor:598" first_name "Leonardo" last_name "DiCaprio" date_of_birth 1974 +HSET "actor:599" first_name "Forrest" last_name "Goodluck" date_of_birth 1998 +HSET "actor:600" first_name "Kristoffer" last_name "Joner" date_of_birth 1972 +HSET "actor:601" first_name "Robert" last_name "De Niro" date_of_birth 1943 +HSET "actor:602" first_name "Diane" last_name "Ladd" date_of_birth 1935 +HSET "actor:603" first_name "Virginia" last_name "Madsen" date_of_birth 1961 +HSET "actor:604" first_name "Isabella" last_name "Rossellini" date_of_birth 1952 +HSET "actor:605" first_name "Daniel" last_name "Craig" date_of_birth 1968 +HSET "actor:606" first_name "Monica" last_name "Bellucci" date_of_birth 1964 +HSET "actor:607" first_name "Ben" last_name "Whishaw" date_of_birth 1980 +HSET "actor:608" first_name "Naomie" last_name "Harris" date_of_birth 1976 +HSET "actor:609" first_name "Andrew" last_name "Scott" date_of_birth 1976 +HSET "actor:610" first_name "Anya" last_name "Taylor-Joy" date_of_birth 1996 +HSET "actor:611" first_name "Ralph" last_name "Ineson" date_of_birth 1969 +HSET "actor:612" first_name "Kate" last_name "Dickie" date_of_birth 1971 +HSET "actor:613" first_name "Julian" last_name "Richings" date_of_birth 1955 +HSET "actor:614" first_name "Sarah" last_name "Stephens" date_of_birth 1990 +HSET "actor:615" first_name "Ryan" last_name "Gosling" date_of_birth 1980 +HSET "actor:616" first_name "Charlie" last_name "Talbert" date_of_birth 1978 +HSET "actor:617" first_name "Bryce" last_name "Dallas Howard" date_of_birth 1981 +HSET "actor:618" first_name "Irrfan" last_name "Khan" date_of_birth 1967 +HSET "actor:619" first_name "Nick" last_name "Robinson" date_of_birth 1995 +HSET "actor:620" first_name "Jake" last_name "Johnson" date_of_birth 1978 +HSET "actor:621" first_name "BD" last_name "Wong" date_of_birth 1960 +HSET "actor:622" first_name "Hugh" last_name "Keays-Byrne" date_of_birth 1947 +HSET "actor:623" first_name "Josh" last_name "Helman" date_of_birth 1986 +HSET "actor:624" first_name "Nathan" last_name "Jones" date_of_birth 1969 +HSET "actor:625" first_name "Rosie" last_name "Huntington-Whiteley" date_of_birth 1987 +HSET "actor:626" first_name "Riley" last_name "Keough" date_of_birth 1989 +HSET "actor:627" first_name "Matt" last_name "Damon" date_of_birth 1970 +HSET "actor:628" first_name "Jessica" last_name "Chastain" date_of_birth 1977 +HSET "actor:629" first_name "Kristen" last_name "Wiig" date_of_birth 1973 +HSET "actor:630" first_name "Jeff" last_name "Daniels" date_of_birth 1955 +HSET "actor:631" first_name "Sean" last_name "Bean" date_of_birth 1959 +HSET "actor:632" first_name "Kurt" last_name "Russell" date_of_birth 1951 +HSET "actor:633" first_name "Jennifer" last_name "Jason Leigh" date_of_birth 1962 +HSET "actor:634" first_name "Walton" last_name "Goggins" date_of_birth 1971 +HSET "actor:635" first_name "Tim" last_name "Roth" date_of_birth 1961 +HSET "actor:636" first_name "Michael" last_name "Madsen" date_of_birth 1958 +HSET "actor:637" first_name "Bruce" last_name "Dern" date_of_birth 1936 +HSET "actor:638" first_name "James" last_name "Parks" date_of_birth 1968 +HSET "actor:639" first_name "Emerald" last_name "Fennell" date_of_birth 1985 +HSET "actor:640" first_name "Claus" last_name "Bue" date_of_birth 1947 +HSET "actor:641" first_name "Benicio" last_name "Del Toro" date_of_birth 1967 +HSET "actor:642" first_name "Victor" last_name "Garber" date_of_birth 1949 +HSET "actor:643" first_name "Daniel" last_name "Kaluuya" date_of_birth 1989 +HSET "actor:644" first_name "Jeffrey" last_name "Donovan" date_of_birth 1968 +HSET "actor:645" first_name "Raoul" last_name "Max Trujillo" date_of_birth 1955 +HSET "actor:646" first_name "Chris" last_name "Hemsworth" date_of_birth 1983 +HSET "actor:647" first_name "Mark" last_name "Ruffalo" date_of_birth 1967 +HSET "actor:648" first_name "Jeremy" last_name "Renner" date_of_birth 1971 +HSET "actor:649" first_name "James" last_name "Spader" date_of_birth 1960 +HSET "actor:650" first_name "Don" last_name "Cheadle" date_of_birth 1964 +HSET "actor:651" first_name "Rachel" last_name "McAdams" date_of_birth 1978 +HSET "actor:652" first_name "Liev" last_name "Schreiber" date_of_birth 1967 +HSET "actor:653" first_name "John" last_name "Slattery" date_of_birth 1962 +HSET "actor:654" first_name "Brian" last_name "d'Arcy James" date_of_birth 1968 +HSET "actor:655" first_name "Elena" last_name "Wohl" date_of_birth 1963 +HSET "actor:656" first_name "Jacob" last_name "Tremblay" date_of_birth 2006 +HSET "actor:657" first_name "Sean" last_name "Bridgers" date_of_birth 1968 +HSET "actor:658" first_name "Wendy" last_name "Crewson" date_of_birth 1956 +HSET "actor:659" first_name "Amanda" last_name "Brugel" date_of_birth 1978 +HSET "actor:660" first_name "Joan" last_name "Allen" date_of_birth 1956 +HSET "actor:661" first_name "Jamie" last_name "Dornan" date_of_birth 1982 +HSET "actor:662" first_name "Jennifer" last_name "Ehle" date_of_birth 1969 +HSET "actor:663" first_name "Eloise" last_name "Mumford" date_of_birth 1986 +HSET "actor:664" first_name "Victor" last_name "Rasuk" date_of_birth 1984 +HSET "actor:665" first_name "Luke" last_name "Grimes" date_of_birth 1984 +HSET "actor:666" first_name "Marcia" last_name "Gay Harden" date_of_birth 1959 +HSET "actor:667" first_name "Rita" last_name "Ora" date_of_birth 1990 +HSET "actor:668" first_name "Max" last_name "Martini" date_of_birth 1969 +HSET "actor:669" first_name "Corey" last_name "Johnson" date_of_birth 1961 +HSET "actor:670" first_name "Roger" last_name "Ashton-Griffiths" date_of_birth 1957 +HSET "actor:671" first_name "Jessica" last_name "Barden" date_of_birth 1992 +HSET "actor:672" first_name "Olivia" last_name "Colman" date_of_birth 1974 +HSET "actor:673" first_name "Colin" last_name "Farrell" date_of_birth 1976 +HSET "actor:674" first_name "Sam" last_name "Rockwell" date_of_birth 1968 +HSET "actor:675" first_name "James" last_name "Ransone" date_of_birth 1979 +HSET "actor:676" first_name "Anson" last_name "Mount" date_of_birth 1973 +HSET "actor:677" first_name "RZA" last_name " " date_of_birth 1969 +HSET "actor:678" first_name "Simon" last_name "Pegg" date_of_birth 1970 +HSET "actor:679" first_name "Rebecca" last_name "Ferguson" date_of_birth 1983 +HSET "actor:680" first_name "Ving" last_name "Rhames" date_of_birth 1959 +HSET "actor:681" first_name "Simon" last_name "McBurney" date_of_birth 1957 +HSET "actor:682" first_name "Jingchu" last_name "Zhang" date_of_birth 1980 +HSET "actor:683" first_name "Tom" last_name "Hollander" date_of_birth 1967 +HSET "actor:684" first_name "Hilary" last_name "Swank" date_of_birth 1974 +HSET "actor:685" first_name "Gerard" last_name "Butler" date_of_birth 1969 +HSET "actor:686" first_name "Lisa" last_name "Kudrow" date_of_birth 1963 +HSET "actor:687" first_name "Gina" last_name "Gershon" date_of_birth 1962 +HSET "actor:688" first_name "James" last_name "Marsters" date_of_birth 1962 +HSET "actor:689" first_name "Kathy" last_name "Bates" date_of_birth 1948 +HSET "actor:690" first_name "Harry" last_name "Connick Jr." date_of_birth 1967 +HSET "actor:691" first_name "Nellie" last_name "McKay" date_of_birth 1982 +HSET "actor:692" first_name "Kevin" last_name "Bacon" date_of_birth 1958 +HSET "actor:693" first_name "Peter" last_name "Sarsgaard" date_of_birth 1971 +HSET "actor:694" first_name "Jesse" last_name "Plemons" date_of_birth 1988 +HSET "actor:695" first_name "Rory" last_name "Cochrane" date_of_birth 1972 +HSET "actor:696" first_name "Benjamin" last_name "Walker" date_of_birth 1982 +HSET "actor:697" first_name "Tom" last_name "Holland" date_of_birth 1996 +HSET "actor:698" first_name "Frank" last_name "Dillane" date_of_birth 1991 +HSET "actor:699" first_name "Melvil" last_name "Poupaud" date_of_birth 1973 +HSET "actor:700" first_name "Niels" last_name "Arestrup" date_of_birth 1949 +HSET "actor:701" first_name "Richard" last_name "Bohringer" date_of_birth 1942 +HSET "actor:702" first_name "Marika" last_name "Green" date_of_birth 1943 +HSET "actor:703" first_name "Lorenza" last_name "Izzo" date_of_birth 1989 +HSET "actor:704" first_name "Ana" last_name "de Armas" date_of_birth 1988 +HSET "actor:705" first_name "Aaron" last_name "Burns" date_of_birth 1985 +HSET "actor:706" first_name "Ignacia" last_name "Allamand" date_of_birth 1981 +HSET "actor:707" first_name "Colleen" last_name "Camp" date_of_birth 1953 +HSET "actor:708" first_name "Amy" last_name "Poehler" date_of_birth 1971 +HSET "actor:709" first_name "Phyllis" last_name "Smith" date_of_birth 1951 +HSET "actor:710" first_name "Richard" last_name "Kind" date_of_birth 1956 +HSET "actor:711" first_name "Bill" last_name "Hader" date_of_birth 1978 +HSET "actor:712" first_name "Lewis" last_name "Black" date_of_birth 1948 +HSET "actor:713" first_name "Mindy" last_name "Kaling" date_of_birth 1979 +HSET "actor:714" first_name "Diane" last_name "Lane" date_of_birth 1965 +HSET "actor:715" first_name "Kyle" last_name "MacLachlan" date_of_birth 1959 +HSET "actor:716" first_name "O'Shea" last_name "Jackson Jr." date_of_birth 1991 +HSET "actor:717" first_name "Corey" last_name "Hawkins" date_of_birth 1988 +HSET "actor:718" first_name "Neil" last_name "Brown Jr." date_of_birth 1980 +HSET "actor:719" first_name "Aldis" last_name "Hodge" date_of_birth 1986 +HSET "actor:720" first_name "Paul" last_name "Rudd" date_of_birth 1969 +HSET "actor:721" first_name "Michael" last_name "Douglas" date_of_birth 1944 +HSET "actor:722" first_name "Evangeline" last_name "Lilly" date_of_birth 1979 +HSET "actor:723" first_name "Judy" last_name "Greer" date_of_birth 1975 +HSET "actor:724" first_name "Logan" last_name "Marshall-Green" date_of_birth 1976 +HSET "actor:725" first_name "Emayatzy" last_name "Corinealdi" date_of_birth 1980 +HSET "actor:726" first_name "Michelle" last_name "Krusiec" date_of_birth 1974 +HSET "actor:727" first_name "Jordi" last_name "Vilasuso" date_of_birth 1981 +HSET "actor:728" first_name "Marieh" last_name "Delfino" date_of_birth 1977 +HSET "actor:729" first_name "Tammy" last_name "Blanchard" date_of_birth 1976 +HSET "actor:730" first_name "Saoirse" last_name "Ronan" date_of_birth 1994 +HSET "actor:731" first_name "Brid" last_name "Brennan" date_of_birth 1955 +HSET "actor:732" first_name "Fiona" last_name "Glascott" date_of_birth 1982 +HSET "actor:733" first_name "Mark" last_name "Rylance" date_of_birth 1960 +HSET "actor:734" first_name "Domenick" last_name "Lombardozzi" date_of_birth 1976 +HSET "actor:735" first_name "Tom" last_name "Hanks" date_of_birth 1956 +HSET "actor:736" first_name "Joshua" last_name "Harto" date_of_birth 1979 +HSET "actor:737" first_name "Cate" last_name "Blanchett" date_of_birth 1969 +HSET "actor:738" first_name "Lily" last_name "James" date_of_birth 1989 +HSET "actor:739" first_name "Richard" last_name "Madden" date_of_birth 1986 +HSET "actor:740" first_name "Helena" last_name "Bonham Carter" date_of_birth 1966 +HSET "actor:741" first_name "Sophie" last_name "McShera" date_of_birth 1985 +HSET "actor:742" first_name "Holliday" last_name "Grainger" date_of_birth 1988 +HSET "actor:743" first_name "Derek" last_name "Jacobi" date_of_birth 1938 +HSET "actor:744" first_name "Anton" last_name "Yelchin" date_of_birth 1989 +HSET "actor:745" first_name "Joe" last_name "Cole" date_of_birth 1988 +HSET "actor:746" first_name "Alia" last_name "Shawkat" date_of_birth 1989 +HSET "actor:747" first_name "Mark" last_name "Webber" date_of_birth 1980 +HSET "actor:748" first_name "Eric" last_name "Edelstein" date_of_birth 1977 +HSET "actor:749" first_name "Kate" last_name "Winslet" date_of_birth 1975 +HSET "actor:750" first_name "Michael" last_name "Stuhlbarg" date_of_birth 1968 +HSET "actor:751" first_name "Perla" last_name "Haney-Jardine" date_of_birth 1997 +HSET "actor:752" first_name "Emjay" last_name "Anthony" date_of_birth 2003 +HSET "actor:753" first_name "Adam" last_name "Scott" date_of_birth 1973 +HSET "actor:754" first_name "Toni" last_name "Collette" date_of_birth 1972 +HSET "actor:755" first_name "Stefania" last_name "LaVie Owen" date_of_birth 1997 +HSET "actor:756" first_name "Krista" last_name "Stadler" date_of_birth 1942 +HSET "actor:757" first_name "Conchata" last_name "Ferrell" date_of_birth 1943 +HSET "actor:758" first_name "Allison" last_name "Tolman" date_of_birth 1981 +HSET "actor:759" first_name "David" last_name "Koechner" date_of_birth 1962 +HSET "actor:760" first_name "Paul" last_name "Walker" date_of_birth 1973 +HSET "actor:761" first_name "Michelle" last_name "Rodriguez" date_of_birth 1978 +HSET "actor:762" first_name "Jordana" last_name "Brewster" date_of_birth 1980 +HSET "actor:763" first_name "Tyrese" last_name "Gibson" date_of_birth 1978 +HSET "actor:764" first_name "Ludacris" last_name "Christopher Brian Bridges" date_of_birth 1977 +HSET "actor:765" first_name "Lucas" last_name "Black" date_of_birth 1982 +HSET "actor:766" first_name "Mia" last_name "Wasikowska" date_of_birth 1989 +HSET "actor:767" first_name "Tom" last_name "Hiddleston" date_of_birth 1981 +HSET "actor:768" first_name "Charlie" last_name "Hunnam" date_of_birth 1980 +HSET "actor:769" first_name "Jim" last_name "Beaver" date_of_birth 1950 +HSET "actor:770" first_name "Burn" last_name "Gorman" date_of_birth 1974 +HSET "actor:771" first_name "Leslie" last_name "Hope" date_of_birth 1965 +HSET "actor:772" first_name "Jonathan" last_name "Hyde" date_of_birth 1948 +HSET "actor:773" first_name "Diane" last_name "Kruger" date_of_birth 1976 +HSET "actor:774" first_name "Bruce" last_name "Greenwood" date_of_birth 1956 +HSET "actor:775" first_name "Janet" last_name "McTeer" date_of_birth 1961 +HSET "actor:776" first_name "Kylie" last_name "Rogers" date_of_birth 2004 +HSET "actor:777" first_name "Jane" last_name "Fonda" date_of_birth 1937 +HSET "actor:778" first_name "Emilia" last_name "Clarke" date_of_birth 1986 +HSET "actor:779" first_name "Matt" last_name "Smith" date_of_birth 1982 +HSET "actor:780" first_name "Courtney" last_name "B. Vance" date_of_birth 1960 +HSET "actor:781" first_name "Byung-hun" last_name "Lee" date_of_birth 1970 +HSET "actor:782" first_name "Brandon" last_name "Routh" date_of_birth 1979 +HSET "actor:783" first_name "Caity" last_name "Lotz" date_of_birth 1986 +HSET "actor:784" first_name "Dominic" last_name "Purcell" date_of_birth 1970 +HSET "actor:785" first_name "Arthur" last_name "Darvill" date_of_birth 1982 +HSET "actor:786" first_name "Melissa" last_name "McCarthy" date_of_birth 1970 +HSET "actor:787" first_name "Miranda" last_name "Hart" date_of_birth 1972 +HSET "actor:788" first_name "Helen" last_name "Mirren" date_of_birth 1945 +HSET "actor:789" first_name "Thomas" last_name "M. Wright" date_of_birth 1983 +HSET "actor:790" first_name "Martin" last_name "Henderson" date_of_birth 1974 +HSET "actor:791" first_name "Tom" last_name "Goodman-Hill" date_of_birth 1968 +HSET "actor:792" first_name "Jeremy" last_name "Irons" date_of_birth 1948 +HSET "actor:793" first_name "Dev" last_name "Patel" date_of_birth 1990 +HSET "actor:794" first_name "Malcolm" last_name "Sinclair" date_of_birth 1950 +HSET "actor:795" first_name "Dhritiman" last_name "Chatterjee" date_of_birth 1945 +HSET "actor:796" first_name "Stephen" last_name "Fry" date_of_birth 1957 +HSET "actor:797" first_name "Olivia" last_name "DeJonge" date_of_birth 1998 +HSET "actor:798" first_name "Ed" last_name "Oxenbould" date_of_birth 2001 +HSET "actor:799" first_name "Deanna" last_name "Dunagan" date_of_birth 1940 +HSET "actor:800" first_name "Peter" last_name "McRobbie" date_of_birth 1943 +HSET "actor:801" first_name "Kathryn" last_name "Hahn" date_of_birth 1973 +HSET "actor:802" first_name "Rooney" last_name "Mara" date_of_birth 1985 +HSET "actor:803" first_name "Kyle" last_name "Chandler" date_of_birth 1965 +HSET "actor:804" first_name "Sarah" last_name "Paulson" date_of_birth 1974 +HSET "actor:805" first_name "Kevin" last_name "Crowley" date_of_birth 1958 +HSET "actor:806" first_name "Tia" last_name "Mowry-Hardrict" date_of_birth 1978 +HSET "actor:807" first_name "Tamera" last_name "Mowry-Housley" date_of_birth 1978 +HSET "actor:808" first_name "Tim" last_name "Reid" date_of_birth 1944 +HSET "actor:809" first_name "Marques" last_name "Houston" date_of_birth 1981 +HSET "actor:810" first_name "Anne" last_name "Hathaway" date_of_birth 1982 +HSET "actor:811" first_name "Rene" last_name "Russo" date_of_birth 1954 +HSET "actor:812" first_name "Andrew" last_name "Rannells" date_of_birth 1978 +HSET "actor:813" first_name "Adam" last_name "Devine" date_of_birth 1983 +HSET "actor:814" first_name "Chris" last_name "Cooper" date_of_birth 1951 +HSET "actor:815" first_name "Polly" last_name "Draper" date_of_birth 1955 +HSET "actor:816" first_name "Debra" last_name "Monk" date_of_birth 1949 +HSET "actor:817" first_name "Heather" last_name "Lind" date_of_birth 1983 +HSET "actor:818" first_name "Jack" last_name "Black" date_of_birth 1969 +HSET "actor:819" first_name "Dylan" last_name "Minnette" date_of_birth 1996 +HSET "actor:820" first_name "Ryan" last_name "Lee" date_of_birth 1996 +HSET "actor:821" first_name "Amy" last_name "Ryan" date_of_birth 1968 +HSET "actor:822" first_name "Halston" last_name "Sage" date_of_birth 1993 +HSET "actor:823" first_name "Steven" last_name "Krueger" date_of_birth 1989 +HSET "actor:824" first_name "Svetlana" last_name "Ustinova" date_of_birth 1982 +HSET "actor:825" first_name "Darya" last_name "Charusha" date_of_birth 1980 +HSET "actor:826" first_name "Yuri" last_name "Zackoqv" date_of_birth 1993 +HSET "actor:827" first_name "Jodelle" last_name "Ferland" date_of_birth 1994 +HSET "actor:828" first_name "Pascale" last_name "Hutton" date_of_birth 1979 +HSET "actor:829" first_name "Jonathan" last_name "Whitesell" date_of_birth 1991 +HSET "actor:830" first_name "Chanelle" last_name "Peloso" date_of_birth 1994 +HSET "actor:831" first_name "Rukiya" last_name "Bernard" date_of_birth 1983 +HSET "actor:832" first_name "Lochlyn" last_name "Munro" date_of_birth 1966 +HSET "actor:833" first_name "Colin" last_name "Quinn" date_of_birth 1959 +HSET "actor:834" first_name "Amy" last_name "Schumer" date_of_birth 1981 +HSET "actor:835" first_name "Josh" last_name "Segarra" date_of_birth 1986 +HSET "actor:836" first_name "Ryan" last_name "Farrell" date_of_birth 1981 +HSET "actor:837" first_name "Jim" last_name "Florentine" date_of_birth 1964 +HSET "actor:838" first_name "Robert" last_name "Kelly" date_of_birth 1970 +HSET "actor:839" first_name "Tessa" last_name "Thompson" date_of_birth 1983 +HSET "actor:840" first_name "Phylicia" last_name "Rashad" date_of_birth 1948 +HSET "actor:841" first_name "Andre" last_name "Ward" date_of_birth 1984 +HSET "actor:842" first_name "Tony" last_name "Bellew" date_of_birth 1982 +HSET "actor:843" first_name "Ritchie" last_name "Coster" date_of_birth 1967 +HSET "actor:844" first_name "Forest" last_name "Whitaker" date_of_birth 1961 +HSET "actor:845" first_name "Oona" last_name "Laurence" date_of_birth 2002 +HSET "actor:846" first_name "50" last_name "Cent" date_of_birth 1975 +HSET "actor:847" first_name "Daniel" last_name "Radcliffe" date_of_birth 1989 +HSET "actor:848" first_name "Jessica" last_name "Brown Findlay" date_of_birth 1989 +HSET "actor:849" first_name "Bronson" last_name "Webb" date_of_birth 1983 +HSET "actor:850" first_name "Daniel" last_name "Mays" date_of_birth 1978 +HSET "actor:851" first_name "Spencer" last_name "Wilding" date_of_birth 1972 +HSET "actor:852" first_name "Rebel" last_name "Wilson" date_of_birth 1980 +HSET "actor:853" first_name "Brittany" last_name "Snow" date_of_birth 1986 +HSET "actor:854" first_name "Skylar" last_name "Astin" date_of_birth 1987 +HSET "actor:855" first_name "Katey" last_name "Sagal" date_of_birth 1954 +HSET "actor:856" first_name "Anna" last_name "Camp" date_of_birth 1982 +HSET "actor:857" first_name "Ben" last_name "Platt" date_of_birth 1993 +HSET "actor:858" first_name "Richenda" last_name "Carey" date_of_birth 1948 +HSET "actor:859" first_name "Vicky" last_name "Krieps" date_of_birth 1983 +HSET "actor:860" first_name "Julian" last_name "Ovenden" date_of_birth 1976 +HSET "actor:861" first_name "August" last_name "Zirner" date_of_birth 1956 +HSET "actor:862" first_name "Martin" last_name "Wuttke" date_of_birth 1962 +HSET "actor:863" first_name "Carla" last_name "Gugino" date_of_birth 1971 +HSET "actor:864" first_name "Alexandra" last_name "Daddario" date_of_birth 1986 +HSET "actor:865" first_name "Ioan" last_name "Gruffudd" date_of_birth 1973 +HSET "actor:866" first_name "Archie" last_name "Panjabi" date_of_birth 1972 +HSET "actor:867" first_name "Will" last_name "Yun Lee" date_of_birth 1971 +HSET "actor:868" first_name "Blake" last_name "Lively" date_of_birth 1987 +HSET "actor:869" first_name "Michiel" last_name "Huisman" date_of_birth 1981 +HSET "actor:870" first_name "Kathy" last_name "Baker" date_of_birth 1950 +HSET "actor:871" first_name "Amanda" last_name "Crew" date_of_birth 1986 +HSET "actor:872" first_name "Lynda" last_name "Boyd" date_of_birth 1965 +HSET "actor:873" first_name "Richard" last_name "Harmon" date_of_birth 1991 +HSET "actor:874" first_name "Teresa" last_name "Palmer" date_of_birth 1986 +HSET "actor:875" first_name "Matias" last_name "Varela" date_of_birth 1980 +HSET "actor:876" first_name "Clemens" last_name "Schick" date_of_birth 1972 +HSET "actor:877" first_name "Max" last_name "Thieriot" date_of_birth 1988 +HSET "actor:878" first_name "Delroy" last_name "Lindo" date_of_birth 1952 +HSET "actor:879" first_name "Evan" last_name "Rachel Wood" date_of_birth 1987 +HSET "actor:880" first_name "Max" last_name "Minghella" date_of_birth 1985 +HSET "actor:881" first_name "Callum" last_name "Keith Rennie" date_of_birth 1960 +HSET "actor:882" first_name "Andy" last_name "Samberg" date_of_birth 1978 +HSET "actor:883" first_name "Selena" last_name "Gomez" date_of_birth 1992 +HSET "actor:884" first_name "Kevin" last_name "James" date_of_birth 1965 +HSET "actor:885" first_name "Steve" last_name "Buscemi" date_of_birth 1957 +HSET "actor:886" first_name "David" last_name "Spade" date_of_birth 1964 +HSET "actor:887" first_name "Keegan-Michael" last_name "Key" date_of_birth 1971 +HSET "actor:888" first_name "Fran" last_name "Drescher" date_of_birth 1957 +HSET "actor:889" first_name "Levi" last_name "Miller" date_of_birth 2002 +HSET "actor:890" first_name "Kathy" last_name "Burke" date_of_birth 1964 +HSET "actor:891" first_name "Hugo" last_name "Weaving" date_of_birth 1960 +HSET "actor:892" first_name "Judy" last_name "Davis" date_of_birth 1955 +HSET "actor:893" first_name "Kerry" last_name "Fox" date_of_birth 1966 +HSET "actor:894" first_name "Rebecca" last_name "Gibney" date_of_birth 1964 +HSET "actor:895" first_name "Alexander" last_name "Flores" date_of_birth 1990 +HSET "actor:896" first_name "Jacob" last_name "Lofland" date_of_birth 1996 +HSET "actor:897" first_name "Rosa" last_name "Salazar" date_of_birth 1985 +HSET "actor:898" first_name "Giancarlo" last_name "Esposito" date_of_birth 1958 +HSET "actor:899" first_name "Rachel" last_name "Weisz" date_of_birth 1970 +HSET "actor:900" first_name "Paul" last_name "Dano" date_of_birth 1984 +HSET "actor:901" first_name "Ed" last_name "Stoppard" date_of_birth 1974 +HSET "actor:902" first_name "Alex" last_name "Macqueen" date_of_birth 1974 +HSET "actor:903" first_name "Madalina" last_name "Diana Ghenea" date_of_birth 1988 +HSET "actor:904" first_name "Ed" last_name "Helms" date_of_birth 1974 +HSET "actor:905" first_name "Skyler" last_name "Gisondo" date_of_birth 1996 +HSET "actor:906" first_name "Chevy" last_name "Chase" date_of_birth 1943 +HSET "actor:907" first_name "Beverly" last_name "D'Angelo" date_of_birth 1951 +HSET "actor:908" first_name "Patrick" last_name "Wilson" date_of_birth 1973 +HSET "actor:909" first_name "Matthew" last_name "Fox" date_of_birth 1966 +HSET "actor:910" first_name "Richard" last_name "Jenkins" date_of_birth 1947 +HSET "actor:911" first_name "Lili" last_name "Simmons" date_of_birth 1993 +HSET "actor:912" first_name "David" last_name "Arquette" date_of_birth 1971 +HSET "actor:913" first_name "Fred" last_name "Melamed" date_of_birth 1956 +HSET "actor:914" first_name "Sid" last_name "Haig" date_of_birth 1939 +HSET "actor:915" first_name "Tye" last_name "Sheridan" date_of_birth 1996 +HSET "actor:916" first_name "Logan" last_name "Miller" date_of_birth 1992 +HSET "actor:917" first_name "Cloris" last_name "Leachman" date_of_birth 1926 +HSET "actor:918" first_name "Niki" last_name "Koss" date_of_birth 1994 +HSET "actor:919" first_name "Hiram" last_name "A. Murray" date_of_birth 1981 +HSET "actor:920" first_name "George" last_name "Clooney" date_of_birth 1961 +HSET "actor:921" first_name "Hugh" last_name "Laurie" date_of_birth 1959 +HSET "actor:922" first_name "Britt" last_name "Robertson" date_of_birth 1990 +HSET "actor:923" first_name "Tim" last_name "McGraw" date_of_birth 1967 +HSET "actor:924" first_name "Chris" last_name "Bauer" date_of_birth 1966 +HSET "actor:925" first_name "Tim" last_name "Griffin" date_of_birth 1969 +HSET "actor:926" first_name "Busy" last_name "Philipps" date_of_birth 1979 +HSET "actor:927" first_name "Adam" last_name "Lazarre-White" date_of_birth 1969 +HSET "actor:928" first_name "Wendell" last_name "Pierce" date_of_birth 1963 +HSET "actor:929" first_name "Rose" last_name "Leslie" date_of_birth 1987 +HSET "actor:930" first_name "Elijah" last_name "Wood" date_of_birth 1981 +HSET "actor:931" first_name "Rena" last_name "Owen" date_of_birth 1962 +HSET "actor:932" first_name "Julie" last_name "Engelbrecht" date_of_birth 1984 +HSET "actor:933" first_name "Joseph" last_name "Gilgun" date_of_birth 1984 +HSET "actor:934" first_name "Mekhi" last_name "Phifer" date_of_birth 1974 +HSET "actor:935" first_name "Justice" last_name "Leak" date_of_birth 1979 +HSET "actor:936" first_name "Mae" last_name "Whitman" date_of_birth 1988 +HSET "actor:937" first_name "Robbie" last_name "Amell" date_of_birth 1988 +HSET "actor:938" first_name "Skyler" last_name "Samuels" date_of_birth 1994 +HSET "actor:939" first_name "Romany" last_name "Malco" date_of_birth 1968 +HSET "actor:940" first_name "Nick" last_name "Eversman" date_of_birth 1986 +HSET "actor:941" first_name "Chris" last_name "Wylde" date_of_birth 1976 +HSET "actor:942" first_name "Ken" last_name "Jeong" date_of_birth 1969 +HSET "actor:943" first_name "Jeffrey" last_name "Wright" date_of_birth 1965 +HSET "actor:944" first_name "Frances" last_name "McDormand" date_of_birth 1957 +HSET "actor:945" first_name "Raymond" last_name "Ochoa" date_of_birth 2001 +HSET "actor:946" first_name "Will" last_name "Smith" date_of_birth 1968 +HSET "actor:947" first_name "Margot" last_name "Robbie" date_of_birth 1990 +HSET "actor:948" first_name "Brennan" last_name "Brown" date_of_birth 1968 +HSET "actor:949" first_name "Robert" last_name "Taylor" date_of_birth 1963 +HSET "actor:950" first_name "Mila" last_name "Kunis" date_of_birth 1983 +HSET "actor:951" first_name "Tuppence" last_name "Middleton" date_of_birth 1987 +HSET "actor:952" first_name "Nikki" last_name "Amuka-Bird" date_of_birth 1976 +HSET "actor:953" first_name "Christina" last_name "Cole" date_of_birth 1982 +HSET "actor:954" first_name "Jamie" last_name "Bell" date_of_birth 1986 +HSET "actor:955" first_name "Reg" last_name "E. Cathey" date_of_birth 1958 +HSET "actor:956" first_name "Tim" last_name "Blake Nelson" date_of_birth 1964 +HSET "actor:957" first_name "Dan" last_name "Castellaneta" date_of_birth 1957 +HSET "actor:958" first_name "Alec" last_name "Baldwin" date_of_birth 1958 +HSET "actor:959" first_name "Albert" last_name "Brooks" date_of_birth 1947 +HSET "actor:960" first_name "Gugu" last_name "Mbatha-Raw" date_of_birth 1983 +HSET "actor:961" first_name "David" last_name "Morse" date_of_birth 1953 +HSET "actor:962" first_name "Arliss" last_name "Howard" date_of_birth 1954 +HSET "actor:963" first_name "Mike" last_name "O'Malley" date_of_birth 1966 +HSET "actor:964" first_name "Hill" last_name "Harper" date_of_birth 1966 +HSET "actor:965" first_name "Sareh" last_name "Bayat" date_of_birth 1979 +HSET "actor:966" first_name "Siamak" last_name "Adib" date_of_birth 1974 +HSET "actor:967" first_name "Scott" last_name "Lawrence" date_of_birth 1963 +HSET "actor:968" first_name "Kristen" last_name "Stewart" date_of_birth 1990 +HSET "actor:969" first_name "Bel" last_name "Powley" date_of_birth 1992 +HSET "actor:970" first_name "David" last_name "Selby" date_of_birth 1941 +HSET "actor:971" first_name "Juan" last_name "Piedrahita" date_of_birth 1985 +HSET "actor:972" first_name "Joe" last_name "Manganiello" date_of_birth 1976 +HSET "actor:973" first_name "Kevin" last_name "Nash" date_of_birth 1959 +HSET "actor:974" first_name "Gabriel" last_name "Iglesias" date_of_birth 1976 +HSET "actor:975" first_name "Matt" last_name "Bomer" date_of_birth 1977 +HSET "actor:976" first_name "Scott" last_name "Eastwood" date_of_birth 1986 +HSET "actor:977" first_name "Alan" last_name "Alda" date_of_birth 1936 +HSET "actor:978" first_name "Jack" last_name "Huston" date_of_birth 1982 +HSET "actor:979" first_name "Oona" last_name "Chaplin" date_of_birth 1986 +HSET "actor:980" first_name "Lolita" last_name "Davidovich" date_of_birth 1961 +HSET "actor:981" first_name "Will" last_name "Ferrell" date_of_birth 1967 +HSET "actor:982" first_name "Linda" last_name "Cardellini" date_of_birth 1975 +HSET "actor:983" first_name "Thomas" last_name "Haden Church" date_of_birth 1960 +HSET "actor:984" first_name "Hannibal" last_name "Buress" date_of_birth 1983 +HSET "actor:985" first_name "Bill" last_name "Burr" date_of_birth 1968 +HSET "actor:986" first_name "Natalie" last_name "Portman" date_of_birth 1981 +HSET "actor:987" first_name "Brian" last_name "Dennehy" date_of_birth 1938 +HSET "actor:988" first_name "Antonio" last_name "Banderas" date_of_birth 1960 +HSET "actor:989" first_name "Freida" last_name "Pinto" date_of_birth 1984 +HSET "actor:990" first_name "Wes" last_name "Bentley" date_of_birth 1978 +HSET "actor:991" first_name "Jorge" last_name "Garcia" date_of_birth 1973 +HSET "actor:992" first_name "Taylor" last_name "Lautner" date_of_birth 1992 +HSET "actor:993" first_name "Rob" last_name "Schneider" date_of_birth 1963 +HSET "actor:994" first_name "Luke" last_name "Wilson" date_of_birth 1971 +HSET "actor:995" first_name "Will" last_name "Forte" date_of_birth 1970 +HSET "actor:996" first_name "Steve" last_name "Zahn" date_of_birth 1967 +HSET "actor:997" first_name "Sam" last_name "J. Jones" date_of_birth 1954 +HSET "actor:998" first_name "Patrick" last_name "Warburton" date_of_birth 1964 +HSET "actor:999" first_name "Michael" last_name "Dorn" date_of_birth 1952 +HSET "actor:1000" first_name "Sandra" last_name "Bullock" date_of_birth 1964 +HSET "actor:1001" first_name "Jon" last_name "Hamm" date_of_birth 1971 +HSET "actor:1002" first_name "Allison" last_name "Janney" date_of_birth 1959 +HSET "actor:1003" first_name "Steve" last_name "Coogan" date_of_birth 1965 +HSET "actor:1004" first_name "Jennifer" last_name "Saunders" date_of_birth 1958 +HSET "actor:1005" first_name "Geoffrey" last_name "Rush" date_of_birth 1951 +HSET "actor:1006" first_name "Steve" last_name "Carell" date_of_birth 1962 +HSET "actor:1007" first_name "Marion" last_name "Cotillard" date_of_birth 1975 +HSET "actor:1008" first_name "Paddy" last_name "Considine" date_of_birth 1974 +HSET "actor:1009" first_name "Taissa" last_name "Farmiga" date_of_birth 1994 +HSET "actor:1010" first_name "Malin" last_name "Akerman" date_of_birth 1978 +HSET "actor:1011" first_name "Alexander" last_name "Ludwig" date_of_birth 1992 +HSET "actor:1012" first_name "Nina" last_name "Dobrev" date_of_birth 1989 +HSET "actor:1013" first_name "Thomas" last_name "Middleditch" date_of_birth 1982 +HSET "actor:1014" first_name "Angela" last_name "Trimbur" date_of_birth 1981 +HSET "actor:1015" first_name "Chloe" last_name "Bridges" date_of_birth 1991 +HSET "actor:1016" first_name "Tilda" last_name "Swinton" date_of_birth 1960 +HSET "actor:1017" first_name "Corrado" last_name "Guzzanti" date_of_birth 1965 +HSET "actor:1018" first_name "Ninja" last_name "Watkin Tudor Jones" date_of_birth 1974 +HSET "actor:1019" first_name "Yo-Landi" last_name "Visser" date_of_birth 1984 +HSET "actor:1020" first_name "Bahar" last_name "Pars" date_of_birth 1979 +HSET "actor:1021" first_name "Filip" last_name "Berg" date_of_birth 1986 +HSET "actor:1022" first_name "Anna-Lena" last_name "Brundin" date_of_birth 1959 +HSET "actor:1023" first_name "Karin" last_name "de Frumerie" date_of_birth 1978 +HSET "actor:1024" first_name "Chiwetel" last_name "Ejiofor" date_of_birth 1977 +HSET "actor:1025" first_name "Benedict" last_name "Wong" date_of_birth 1970 +HSET "actor:1026" first_name "Benjamin" last_name "Bratt" date_of_birth 1963 +HSET "actor:1027" first_name "Scott" last_name "Adkins" date_of_birth 1976 +HSET "actor:1028" first_name "Danika" last_name "Yarosh" date_of_birth 1998 +HSET "actor:1029" first_name "Holt" last_name "McCallany" date_of_birth 1963 +HSET "actor:1030" first_name "Sidse" last_name "Babett Knudsen" date_of_birth 1968 +HSET "actor:1031" first_name "Ben" last_name "Foster" date_of_birth 1980 +HSET "actor:1032" first_name "Ana" last_name "Ularu" date_of_birth 1985 +HSET "actor:1033" first_name "Sugar" last_name "Lyn Beard" date_of_birth 1981 +HSET "actor:1034" first_name "Michael" last_name "Cera" date_of_birth 1988 +HSET "actor:1035" first_name "Ian" last_name "James Corlett" date_of_birth 1962 +HSET "actor:1036" first_name "Michael" last_name "Daingerfield" date_of_birth 1970 +HSET "actor:1037" first_name "Brian" last_name "Dobson" date_of_birth 1973 +HSET "actor:1038" first_name "Michael" last_name "Dobson" date_of_birth 1966 +HSET "actor:1039" first_name "Jeffrey" last_name "Tambor" date_of_birth 1944 +HSET "actor:1040" first_name "Cynthia" last_name "Addai-Robinson" date_of_birth 1985 +HSET "actor:1041" first_name "Jean" last_name "Smart" date_of_birth 1951 +HSET "actor:1042" first_name "Michael" last_name "Shannon" date_of_birth 1974 +HSET "actor:1043" first_name "Aaron" last_name "Taylor-Johnson" date_of_birth 1990 +HSET "actor:1044" first_name "Isla" last_name "Fisher" date_of_birth 1976 +HSET "actor:1045" first_name "Ellie" last_name "Bamber" date_of_birth 1997 +HSET "actor:1046" first_name "Armie" last_name "Hammer" date_of_birth 1986 +HSET "actor:1047" first_name "Karl" last_name "Glusman" date_of_birth 1988 +HSET "actor:1048" first_name "Justin" last_name "Theroux" date_of_birth 1971 +HSET "actor:1049" first_name "Laura" last_name "Prepon" date_of_birth 1980 +HSET "actor:1050" first_name "Darren" last_name "Goldstein" date_of_birth 1974 +HSET "actor:1051" first_name "Christopher" last_name "Dyson" date_of_birth 1978 +HSET "actor:1052" first_name "Bambadjan" last_name "Bamba" date_of_birth 1982 +HSET "actor:1053" first_name "Viola" last_name "Davis" date_of_birth 1965 +HSET "actor:1054" first_name "Cassi" last_name "Davis" date_of_birth 1964 +HSET "actor:1055" first_name "Yousef" last_name "Erakat" date_of_birth 1990 +HSET "actor:1056" first_name "Haley" last_name "Lu Richardson" date_of_birth 1995 +HSET "actor:1057" first_name "Kim" last_name "Director" date_of_birth 1974 +HSET "actor:1058" first_name "Maria" last_name "Breyman" date_of_birth 1987 +HSET "actor:1059" first_name "Betty" last_name "Buckley" date_of_birth 1947 +HSET "actor:1060" first_name "Lyne" last_name "Renee" date_of_birth 1979 +HSET "actor:1061" first_name "Judi" last_name "Dench" date_of_birth 1934 +HSET "actor:1062" first_name "Rupert" last_name "Everett" date_of_birth 1959 +HSET "actor:1063" first_name "Chris" last_name "O'Dowd" date_of_birth 1979 +HSET "actor:1064" first_name "Ella" last_name "Purnell" date_of_birth 1996 +HSET "actor:1065" first_name "Gal" last_name "Gadot" date_of_birth 1985 +HSET "actor:1066" first_name "Patton" last_name "Oswalt" date_of_birth 1969 +HSET "actor:1067" first_name "Matt" last_name "Walsh" date_of_birth 1964 +HSET "actor:1068" first_name "Justin" last_name "Timberlake" date_of_birth 1981 +HSET "actor:1069" first_name "Zooey" last_name "Deschanel" date_of_birth 1980 +HSET "actor:1070" first_name "Christopher" last_name "Mintz-Plasse" date_of_birth 1989 +HSET "actor:1071" first_name "Christine" last_name "Baranski" date_of_birth 1952 +HSET "actor:1072" first_name "Russell" last_name "Brand" date_of_birth 1975 +HSET "actor:1073" first_name "Gwen" last_name "Stefani" date_of_birth 1969 +HSET "actor:1074" first_name "John" last_name "Cleese" date_of_birth 1939 +HSET "actor:1075" first_name "James" last_name "Corden" date_of_birth 1978 +HSET "actor:1076" first_name "Viggo" last_name "Mortensen" date_of_birth 1958 +HSET "actor:1077" first_name "George" last_name "MacKay" date_of_birth 1992 +HSET "actor:1078" first_name "Samantha" last_name "Isler" date_of_birth 1998 +HSET "actor:1079" first_name "Nicholas" last_name "Hamilton" date_of_birth 2000 +HSET "actor:1080" first_name "Zachary" last_name "Quinto" date_of_birth 1977 +HSET "actor:1081" first_name "John" last_name "Cho" date_of_birth 1972 +HSET "actor:1082" first_name "Idris" last_name "Elba" date_of_birth 1972 +HSET "actor:1083" first_name "Sofia" last_name "Boutella" date_of_birth 1982 +HSET "actor:1084" first_name "Kristen" last_name "Bell" date_of_birth 1980 +HSET "actor:1085" first_name "Jada" last_name "Pinkett Smith" date_of_birth 1971 +HSET "actor:1086" first_name "Annie" last_name "Mumolo" date_of_birth 1973 +HSET "actor:1087" first_name "David" last_name "Walton" date_of_birth 1978 +HSET "actor:1088" first_name "Zach" last_name "Woods" date_of_birth 1984 +HSET "actor:1089" first_name "Ed" last_name "Begley Jr." date_of_birth 1949 +HSET "actor:1090" first_name "Kate" last_name "McKinnon" date_of_birth 1984 +HSET "actor:1091" first_name "Mark" last_name "O'Brien" date_of_birth 1984 +HSET "actor:1092" first_name "Stephen" last_name "Lang" date_of_birth 1952 +HSET "actor:1093" first_name "Jane" last_name "Levy" date_of_birth 1989 +HSET "actor:1094" first_name "Katia" last_name "Bokor" date_of_birth 1975 +HSET "actor:1095" first_name "Sergej" last_name "Onopko" date_of_birth 1985 +HSET "actor:1096" first_name "Emma" last_name "Roberts" date_of_birth 1991 +HSET "actor:1097" first_name "Emily" last_name "Meade" date_of_birth 1989 +HSET "actor:1098" first_name "Miles" last_name "Heizer" date_of_birth 1994 +HSET "actor:1099" first_name "Kimiko" last_name "Glenn" date_of_birth 1989 +HSET "actor:1100" first_name "Marc" last_name "John Jefferies" date_of_birth 1990 +HSET "actor:1101" first_name "Machine" last_name "Gun Kelly" date_of_birth 1990 +HSET "actor:1102" first_name "Ellen" last_name "DeGeneres" date_of_birth 1958 +HSET "actor:1103" first_name "Ed" last_name "O'Neill" date_of_birth 1946 +HSET "actor:1104" first_name "Kaitlin" last_name "Olson" date_of_birth 1975 +HSET "actor:1105" first_name "Ty" last_name "Burrell" date_of_birth 1967 +HSET "actor:1106" first_name "Diane" last_name "Keaton" date_of_birth 1946 +HSET "actor:1107" first_name "Eugene" last_name "Levy" date_of_birth 1946 +HSET "actor:1108" first_name "Courtney" last_name "Eaton" date_of_birth 1996 +HSET "actor:1109" first_name "Emily" last_name "Wheaton" date_of_birth 1989 +HSET "actor:1110" first_name "Elodie" last_name "Yung" date_of_birth 1981 +HSET "actor:1111" first_name "Rachael" last_name "Blake" date_of_birth 1971 +HSET "actor:1112" first_name "Evan" last_name "Peters" date_of_birth 1987 +HSET "actor:1113" first_name "Sophie" last_name "Turner" date_of_birth 1996 +HSET "actor:1114" first_name "Ed" last_name "Skrein" date_of_birth 1983 +HSET "actor:1115" first_name "Michael" last_name "Benyaer" date_of_birth 1970 +HSET "actor:1116" first_name "Stefan" last_name "Kapicic" date_of_birth 1978 +HSET "actor:1117" first_name "Brianna" last_name "Hildebrand" date_of_birth 1996 +HSET "actor:1118" first_name "Kyle" last_name "Cassie" date_of_birth 1976 +HSET "actor:1119" first_name "Taylor" last_name "Hickson" date_of_birth 1997 +HSET "actor:1120" first_name "Jessie" last_name "T. Usher" date_of_birth 1992 +HSET "actor:1121" first_name "Sela" last_name "Ward" date_of_birth 1956 +HSET "actor:1122" first_name "Judd" last_name "Hirsch" date_of_birth 1935 +HSET "actor:1123" first_name "Brent" last_name "Spiner" date_of_birth 1949 +HSET "actor:1124" first_name "Ruby" last_name "Barnhill" date_of_birth 2004 +HSET "actor:1125" first_name "Penelope" last_name "Wilton" date_of_birth 1946 +HSET "actor:1126" first_name "Adam" last_name "Godley" date_of_birth 1964 +HSET "actor:1127" first_name "Charlotte" last_name "Le Bon" date_of_birth 1986 +HSET "actor:1128" first_name "Marcin" last_name "Dorocinski" date_of_birth 1973 +HSET "actor:1129" first_name "Manuel" last_name "Garcia-Rulfo" date_of_birth 1981 +HSET "actor:1130" first_name "Douglas" last_name "M. Griffin" date_of_birth 1966 +HSET "actor:1131" first_name "James" last_name "DuMont" date_of_birth 1965 +HSET "actor:1132" first_name "Gina" last_name "Rodriguez" date_of_birth 1984 +HSET "actor:1133" first_name "Brad" last_name "Leland" date_of_birth 1954 +HSET "actor:1134" first_name "John" last_name "Malkovich" date_of_birth 1953 +HSET "actor:1135" first_name "Bryan" last_name "Cranston" date_of_birth 1956 +HSET "actor:1136" first_name "Tom" last_name "Vaughan-Lawlor" date_of_birth 1977 +HSET "actor:1137" first_name "Juliet" last_name "Aubrey" date_of_birth 1966 +HSET "actor:1138" first_name "Olympia" last_name "Dukakis" date_of_birth 1931 +HSET "actor:1139" first_name "Billy" last_name "Burke" date_of_birth 1966 +HSET "actor:1140" first_name "Maria" last_name "Bello" date_of_birth 1967 +HSET "actor:1141" first_name "Alicia" last_name "Vela-Bailey" date_of_birth 1982 +HSET "actor:1142" first_name "Andi" last_name "Osho" date_of_birth 1973 +HSET "actor:1143" first_name "John" last_name "Travolta" date_of_birth 1954 +HSET "actor:1144" first_name "Toby" last_name "Huss" date_of_birth 1966 +HSET "actor:1145" first_name "Larry" last_name "Fessenden" date_of_birth 1963 +HSET "actor:1146" first_name "Ginnifer" last_name "Goodwin" date_of_birth 1978 +HSET "actor:1147" first_name "Jenny" last_name "Slate" date_of_birth 1982 +HSET "actor:1148" first_name "Nate" last_name "Torrence" date_of_birth 1977 +HSET "actor:1149" first_name "Bonnie" last_name "Hunt" date_of_birth 1961 +HSET "actor:1150" first_name "Don" last_name "Lake" date_of_birth 1956 +HSET "actor:1151" first_name "Tommy" last_name "Chong" date_of_birth 1938 +HSET "actor:1152" first_name "Travis" last_name "Fimmel" date_of_birth 1979 +HSET "actor:1153" first_name "Paula" last_name "Patton" date_of_birth 1975 +HSET "actor:1154" first_name "Robert" last_name "Kazinsky" date_of_birth 1983 +HSET "actor:1155" first_name "Clancy" last_name "Brown" date_of_birth 1959 +HSET "actor:1156" first_name "Daniel" last_name "Wu" date_of_birth 1974 +HSET "actor:1157" first_name "Chadwick" last_name "Boseman" date_of_birth 1976 +HSET "actor:1158" first_name "Steve" last_name "Martin" date_of_birth 1945 +HSET "actor:1159" first_name "Chris" last_name "Tucker" date_of_birth 1972 +HSET "actor:1160" first_name "Deirdre" last_name "Lovejoy" date_of_birth 1962 +HSET "actor:1161" first_name "Joe" last_name "Alwyn" date_of_birth 1991 +HSET "actor:1162" first_name "Mahershala" last_name "Ali" date_of_birth 1974 +HSET "actor:1163" first_name "Ewan" last_name "McGregor" date_of_birth 1971 +HSET "actor:1164" first_name "Dakota" last_name "Fanning" date_of_birth 1994 +HSET "actor:1165" first_name "Peter" last_name "Riegert" date_of_birth 1947 +HSET "actor:1166" first_name "Rupert" last_name "Evans" date_of_birth 1976 +HSET "actor:1167" first_name "Uzo" last_name "Aduba" date_of_birth 1981 +HSET "actor:1168" first_name "Molly" last_name "Parker" date_of_birth 1972 +HSET "actor:1169" first_name "Valorie" last_name "Curry" date_of_birth 1986 +HSET "actor:1170" first_name "Samantha" last_name "Spiro" date_of_birth 1968 +HSET "actor:1171" first_name "Brendan" last_name "Coyle" date_of_birth 1963 +HSET "actor:1172" first_name "Henry" last_name "Cavill" date_of_birth 1983 +HSET "actor:1173" first_name "Jesse" last_name "Eisenberg" date_of_birth 1983 +HSET "actor:1174" first_name "Laurence" last_name "Fishburne" date_of_birth 1961 +HSET "actor:1175" first_name "Holly" last_name "Hunter" date_of_birth 1958 +HSET "actor:1176" first_name "Sacha" last_name "Baron Cohen" date_of_birth 1971 +HSET "actor:1177" first_name "Rhys" last_name "Ifans" date_of_birth 1967 +HSET "actor:1178" first_name "Matt" last_name "Lucas" date_of_birth 1974 +HSET "actor:1179" first_name "Lindsay" last_name "Duncan" date_of_birth 1950 +HSET "actor:1180" first_name "Leo" last_name "Bill" date_of_birth 1980 +HSET "actor:1181" first_name "Ajay" last_name "Devgn" date_of_birth 1969 +HSET "actor:1182" first_name "Girish" last_name "Karnad" date_of_birth 1938 +HSET "actor:1183" first_name "Saurabh" last_name "Shukla" date_of_birth 1963 +HSET "actor:1184" first_name "Alicia" last_name "Silverstone" date_of_birth 1976 +HSET "actor:1185" first_name "Molly" last_name "Ringwald" date_of_birth 1968 +HSET "actor:1186" first_name "Christian" last_name "Slater" date_of_birth 1969 +HSET "actor:1187" first_name "Keegan" last_name "Allen" date_of_birth 1989 +HSET "actor:1188" first_name "Sean" last_name "Grandillo" date_of_birth 1992 +HSET "actor:1189" first_name "Madison" last_name "Wolfe" date_of_birth 2002 +HSET "actor:1190" first_name "Frances" last_name "O'Connor" date_of_birth 1967 +HSET "actor:1191" first_name "Maria" last_name "Doyle Kennedy" date_of_birth 1964 +HSET "actor:1192" first_name "Valerie" last_name "Mahaffey" date_of_birth 1953 +HSET "actor:1193" first_name "Delphi" last_name "Harrington" date_of_birth 1937 +HSET "actor:1194" first_name "Jamey" last_name "Sheridan" date_of_birth 1951 +HSET "actor:1195" first_name "Anna" last_name "Gunn" date_of_birth 1968 +HSET "actor:1196" first_name "Aubrey" last_name "Plaza" date_of_birth 1984 +HSET "actor:1197" first_name "Stephen" last_name "Root" date_of_birth 1951 +HSET "actor:1198" first_name "Stephanie" last_name "Faracy" date_of_birth 1952 +HSET "actor:1199" first_name "Jim" last_name "Belushi" date_of_birth 1954 +HSET "actor:1200" first_name "Lara" last_name "Grice" date_of_birth 1971 +HSET "actor:1201" first_name "Tracy" last_name "Letts" date_of_birth 1965 +HSET "actor:1202" first_name "Nestor" last_name "Carbonell" date_of_birth 1967 +HSET "actor:1203" first_name "Pawel" last_name "Szajda" date_of_birth 1982 +HSET "actor:1204" first_name "Luis" last_name "Gnecco" date_of_birth 1962 +HSET "actor:1205" first_name "Alfredo" last_name "Castro" date_of_birth 1955 +HSET "actor:1206" first_name "Pablo" last_name "Derqui" date_of_birth 1976 +HSET "actor:1207" first_name "Alejandro" last_name "Goic" date_of_birth 1969 +HSET "actor:1208" first_name "Leslie" last_name "Jones" date_of_birth 1967 +HSET "actor:1209" first_name "Owen" last_name "Wilson" date_of_birth 1968 +HSET "actor:1210" first_name "Mary" last_name "Elizabeth Ellis" date_of_birth 1979 +HSET "actor:1211" first_name "Ken" last_name "Marino" date_of_birth 1968 +HSET "actor:1212" first_name "Devin" last_name "Ratray" date_of_birth 1977 +HSET "actor:1213" first_name "Jennifer" last_name "Garner" date_of_birth 1972 +HSET "actor:1214" first_name "Cheryl" last_name "Hines" date_of_birth 1965 +HSET "actor:1215" first_name "Mark" last_name "Consuelos" date_of_birth 1971 +HSET "actor:1216" first_name "Christopher" last_name "Walken" date_of_birth 1943 +HSET "actor:1217" first_name "Teddy" last_name "Sears" date_of_birth 1977 +HSET "actor:1218" first_name "Yaya" last_name "DaCosta" date_of_birth 1982 +HSET "actor:1219" first_name "Keith" last_name "David" date_of_birth 1956 +HSET "actor:1220" first_name "Lois" last_name "Smith" date_of_birth 1930 +HSET "actor:1221" first_name "Mary" last_name "Elizabeth Winstead" date_of_birth 1984 +HSET "actor:1222" first_name "Kevin" last_name "Hart" date_of_birth 1979 +HSET "actor:1223" first_name "Danielle" last_name "Nicolet" date_of_birth 1973 +HSET "actor:1224" first_name "Ryan" last_name "Hansen" date_of_birth 1981 +HSET "actor:1225" first_name "Jason" last_name "O'Mara" date_of_birth 1972 +HSET "actor:1226" first_name "Emmanuelle" last_name "Seigner" date_of_birth 1966 +HSET "actor:1227" first_name "Guillaume" last_name "Canet" date_of_birth 1973 +HSET "actor:1228" first_name "Michael" last_name "McElhatton" date_of_birth 1963 +HSET "actor:1229" first_name "Brett" last_name "Cullen" date_of_birth 1956 +HSET "actor:1230" first_name "Neel" last_name "Sethi" date_of_birth 2003 +HSET "actor:1231" first_name "Garry" last_name "Shandling" date_of_birth 1949 +HSET "actor:1232" first_name "Erin" last_name "Moriarty" date_of_birth 1994 +HSET "actor:1233" first_name "William" last_name "H. Macy" date_of_birth 1950 +HSET "actor:1234" first_name "Miguel" last_name "Sandoval" date_of_birth 1951 +HSET "actor:1235" first_name "Dale" last_name "Dickey" date_of_birth 1961 +HSET "actor:1236" first_name "Louis" last_name "C.K." date_of_birth 1967 +HSET "actor:1237" first_name "Lake" last_name "Bell" date_of_birth 1979 +HSET "actor:1238" first_name "Dana" last_name "Carvey" date_of_birth 1955 +HSET "actor:1239" first_name "Jordan" last_name "Peele" date_of_birth 1979 +HSET "actor:1240" first_name "Jena" last_name "Malone" date_of_birth 1984 +HSET "actor:1241" first_name "Bella" last_name "Heathcote" date_of_birth 1987 +HSET "actor:1242" first_name "Abbey" last_name "Lee" date_of_birth 1987 +HSET "actor:1243" first_name "Desmond" last_name "Harrington" date_of_birth 1976 +HSET "actor:1244" first_name "Christina" last_name "Hendricks" date_of_birth 1975 +HSET "actor:1245" first_name "Charles" last_name "Baker" date_of_birth 1971 +HSET "actor:1246" first_name "Kelly" last_name "Chen" date_of_birth 1972 +HSET "actor:1247" first_name "Jaymes" last_name "Butler" date_of_birth 1959 +HSET "actor:1248" first_name "Elizabeth" last_name "Mitchell" date_of_birth 1970 +HSET "actor:1249" first_name "Mykelti" last_name "Williamson" date_of_birth 1957 +HSET "actor:1250" first_name "Kyle" last_name "Secor" date_of_birth 1957 +HSET "actor:1251" first_name "Barry" last_name "Nolan" date_of_birth 1947 +HSET "actor:1252" first_name "Ted" last_name "Levine" date_of_birth 1957 +HSET "actor:1253" first_name "Tina" last_name "Casciani" date_of_birth 1982 +HSET "actor:1254" first_name "Jay" last_name "Chou" date_of_birth 1979 +HSET "actor:1255" first_name "Sanaa" last_name "Lathan" date_of_birth 1971 +HSET "actor:1256" first_name "Gemma" last_name "Jones" date_of_birth 1942 +HSET "actor:1257" first_name "Jim" last_name "Broadbent" date_of_birth 1949 +HSET "actor:1258" first_name "Sally" last_name "Phillips" date_of_birth 1970 +HSET "actor:1259" first_name "Julian" last_name "Rhind-Tutt" date_of_birth 1968 +HSET "actor:1260" first_name "Shirley" last_name "Henderson" date_of_birth 1965 +HSET "actor:1261" first_name "Ben" last_name "Willbond" date_of_birth 1973 +HSET "actor:1262" first_name "Paul" last_name "Bentall" date_of_birth 1948 +HSET "actor:1263" first_name "Josh" last_name "Brener" date_of_birth 1984 +HSET "actor:1264" first_name "Andy" last_name "Garcia" date_of_birth 1956 +HSET "actor:1265" first_name "Phillip" last_name "DeVona" date_of_birth 1970 +HSET "actor:1266" first_name "Billy" last_name "Slaughter" date_of_birth 1980 +HSET "actor:1267" first_name "Laura" last_name "Linney" date_of_birth 1964 +HSET "actor:1268" first_name "Stephen" last_name "Amell" date_of_birth 1981 +HSET "actor:1269" first_name "Wayne" last_name "Wilderson" date_of_birth 1966 +HSET "actor:1270" first_name "Michael" last_name "Hitchcock" date_of_birth 1958 +HSET "actor:1271" first_name "Parker" last_name "Posey" date_of_birth 1968 +HSET "actor:1272" first_name "Min-hee" last_name "Kim" date_of_birth 1982 +HSET "actor:1273" first_name "Kim" last_name "Tae-ri" date_of_birth 1990 +HSET "actor:1274" first_name "Jung-woo" last_name "Ha" date_of_birth 1978 +HSET "actor:1275" first_name "Jin-woong" last_name "Jo" date_of_birth 1976 +HSET "actor:1276" first_name "So-ri" last_name "Moon" date_of_birth 1974 +HSET "actor:1277" first_name "Hae-suk" last_name "Kim" date_of_birth 1955 +HSET "actor:1278" first_name "Neil" last_name "deGrasse Tyson" date_of_birth 1958 +HSET "actor:1279" first_name "Jesse" last_name "Tyler Ferguson" date_of_birth 1975 +HSET "actor:1280" first_name "Max" last_name "Greenfield" date_of_birth 1980 +HSET "actor:1281" first_name "Jessie" last_name "J" date_of_birth 1988 +HSET "actor:1282" first_name "Queen" last_name "Latifah" date_of_birth 1970 +HSET "actor:1283" first_name "Denis" last_name "Leary" date_of_birth 1957 +HSET "actor:1284" first_name "John" last_name "Krasinski" date_of_birth 1979 +HSET "actor:1285" first_name "James" last_name "Badge Dale" date_of_birth 1978 +HSET "actor:1286" first_name "Pablo" last_name "Schreiber" date_of_birth 1978 +HSET "actor:1287" first_name "David" last_name "Denman" date_of_birth 1973 +HSET "actor:1288" first_name "Dominic" last_name "Fumusa" date_of_birth 1969 +HSET "actor:1289" first_name "Peyman" last_name "Moaadi" date_of_birth 1970 +HSET "actor:1290" first_name "Cameron" last_name "McKendry" date_of_birth 1996 +HSET "actor:1291" first_name "Victoria" last_name "Staley" date_of_birth 1996 +HSET "actor:1292" first_name "Taylor" last_name "Kalupa" date_of_birth 1990 +HSET "actor:1293" first_name "Blake" last_name "Jenner" date_of_birth 1992 +HSET "actor:1294" first_name "Kyra" last_name "Sedgwick" date_of_birth 1965 +HSET "actor:1295" first_name "Hayden" last_name "Szeto" date_of_birth 1985 +HSET "actor:1296" first_name "Eric" last_name "Keenleyside" date_of_birth 1957 +HSET "actor:1297" first_name "Tommy" last_name "Lee Jones" date_of_birth 1946 +HSET "actor:1298" first_name "Vincent" last_name "Cassel" date_of_birth 1966 +HSET "actor:1299" first_name "Julia" last_name "Stiles" date_of_birth 1981 +HSET "actor:1300" first_name "Riz" last_name "Ahmed" date_of_birth 1982 +HSET "actor:1301" first_name "Ato" last_name "Essandoh" date_of_birth 1972 +HSET "actor:1302" first_name "Sasha" last_name "Lane" date_of_birth 1995 +HSET "actor:1303" first_name "Michelle" last_name "Yeoh" date_of_birth 1962 +HSET "actor:1304" first_name "Sam" last_name "Hazeldine" date_of_birth 1972 +HSET "actor:1305" first_name "John" last_name "Cenatiempo" date_of_birth 1963 +HSET "actor:1306" first_name "Yoo" last_name "Gong" date_of_birth 1979 +HSET "actor:1307" first_name "Yu-mi" last_name "Jeong" date_of_birth 1983 +HSET "actor:1308" first_name "Dong-seok" last_name "Ma" date_of_birth 1971 +HSET "actor:1309" first_name "Woo-sik" last_name "Choi" date_of_birth 1990 +HSET "actor:1310" first_name "Sohee" last_name "Ahn So-hee" date_of_birth 1992 +HSET "actor:1311" first_name "Lex" last_name "Shrapnel" date_of_birth 1979 +HSET "actor:1312" first_name "Buck" last_name "Taylor" date_of_birth 1938 +HSET "actor:1313" first_name "Gil" last_name "Birmingham" date_of_birth 1953 +HSET "actor:1314" first_name "John" last_name "Goodman" date_of_birth 1952 +HSET "actor:1315" first_name "John" last_name "Gallagher Jr." date_of_birth 1984 +HSET "actor:1316" first_name "Suzanne" last_name "Cryer" date_of_birth 1967 +HSET "actor:1317" first_name "Casey" last_name "Affleck" date_of_birth 1975 +HSET "actor:1318" first_name "Val" last_name "Kilmer" date_of_birth 1959 +HSET "actor:1319" first_name "Anthony" last_name "Edwards" date_of_birth 1962 \ No newline at end of file diff --git a/e2e-tests/data/redis/movies.redis b/e2e-tests/data/redis/movies.redis new file mode 100644 index 000000000..5b4f12131 --- /dev/null +++ b/e2e-tests/data/redis/movies.redis @@ -0,0 +1,923 @@ +HSET "movie:1" title "Guardians of the Galaxy" genre "Action" votes 704613 rating 8.1 release_year 2014 plot "A group of intergalactic criminals must pull together to stop a fanatical warrior with plans to purge the universe." poster "https://m.media-amazon.com/images/M/MV5BMTAwMjU5OTgxNjZeQTJeQWpwZ15BbWU4MDUxNDYxODEx._V1_SX300.jpg" ibmdb_id "tt2015381" +HSET "movie:2" title "Interstellar" genre "Adventure" votes 961763 rating 8.6 release_year 2014 plot "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival." poster "https://m.media-amazon.com/images/M/MV5BZjdkOTU3MDktN2IxOS00OGEyLWFmMjktY2FiMmZkNWIyODZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt0816692" +HSET "movie:3" title "The Grand Budapest Hotel" genre "Adventure" votes 492158 rating 8.1 release_year 2014 plot "A writer encounters the owner of an aging high-class hotel,who tells him of his early years serving as a lobby boy in the hotel's glorious years under an exceptional concierge." poster "https://m.media-amazon.com/images/M/MV5BMzM5NjUxOTEyMl5BMl5BanBnXkFtZTgwNjEyMDM0MDE@._V1_SX300.jpg" ibmdb_id "tt2278388" +HSET "movie:4" title "Gone Girl" genre "Crime" votes 589116 rating 8.1 release_year 2014 plot "With his wife's disappearance having become the focus of an intense media circus,a man sees the spotlight turned on him when it's suspected that he may not be innocent." poster "https://m.media-amazon.com/images/M/MV5BMTk0MDQ3MzAzOV5BMl5BanBnXkFtZTgwNzU1NzE3MjE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2267998" +HSET "movie:5" title "The Imitation Game" genre "Biography" votes 489175 rating 8.1 release_year 2014 +HSET "movie:6" title "John Wick" genre "Action" votes 503014 rating 7.4 release_year 2014 plot "An ex-hit-man comes out of retirement to track down the gangsters that killed his dog and took everything from him." poster "https://m.media-amazon.com/images/M/MV5BMTU2NjA1ODgzMF5BMl5BanBnXkFtZTgwMTM2MTI4MjE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2911666" +HSET "movie:7" title "X-Men: Days of Future Past" genre "Action" votes 524078 rating 8.0 release_year 2014 +HSET "movie:8" title "Ouija: Origin of Evil" genre "Horror" votes 6144 rating 6.6 release_year 2016 +HSET "movie:9" title "The Equalizer" genre "Action" votes 235859 rating 7.2 release_year 2014 +HSET "movie:10" title "Maleficent" genre "Action" votes 257707 rating 7.0 release_year 2014 +HSET "movie:11" title "Whiplash" genre "Drama" votes 667323 rating 8.5 release_year 2014 plot "A promising young drummer enrolls at a cut-throat music conservatory where his dreams of greatness are mentored by an instructor who will stop at nothing to realize a student's potential." poster "https://m.media-amazon.com/images/M/MV5BOTA5NDZlZGUtMjAxOS00YTRkLTkwYmMtYWQ0NWEwZDZiNjEzXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2582802" +HSET "movie:12" title "Fury" genre "Action" votes 312068 rating 7.6 release_year 2014 +HSET "movie:13" title "Kingsman: The Secret Service" genre "Action" votes 410076 rating 7.7 release_year 2014 +HSET "movie:14" title "It Follows" genre "Horror" votes 120440 rating 6.9 release_year 2014 +HSET "movie:15" title "Edge of Tomorrow" genre "Action" votes 443643 rating 7.9 release_year 2014 +HSET "movie:16" title "The Theory of Everything" genre "Biography" votes 275057 rating 7.7 release_year 2014 +HSET "movie:17" title "The Babadook" genre "Drama" votes 185189 rating 6.8 release_year 2014 plot "A single mother and her child fall into a deep well of paranoia when an eerie children's book titled Mister Babadook manifests in their home." poster "https://m.media-amazon.com/images/M/MV5BMTk0NzMzODc2NF5BMl5BanBnXkFtZTgwOTYzNTM1MzE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2321549" +HSET "movie:18" title "Divergent" genre "Adventure" votes 412364 rating 6.7 release_year 2014 plot "In a world divided by factions based on virtues,Tris learns she's Divergent and won't fit in. When she discovers a plot to destroy Divergents,Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late." poster "https://m.media-amazon.com/images/M/MV5BMTYxMzYwODE4OV5BMl5BanBnXkFtZTgwNDE5MzE2MDE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt1840309" +HSET "movie:19" title "Sin City: A Dame to Kill For" genre "Action" votes 114899 rating 6.5 release_year 2014 +HSET "movie:20" title "Need for Speed" genre "Action" votes 139153 rating 6.5 release_year 2014 +HSET "movie:22" title "Dracula Untold" genre "Action" votes 141759 rating 6.3 release_year 2014 +HSET "movie:23" title "The Book of Life" genre "Animation" votes 47048 rating 7.3 release_year 2014 +HSET "movie:24" title "The Purge: Anarchy" genre "Action" votes 99115 rating 6.5 release_year 2014 +HSET "movie:25" title "Captain America: The Winter Soldier" genre "Action" votes 510608 rating 7.8 release_year 2014 +HSET "movie:26" title "Transformers: Age of Extinction" genre "Action" votes 246318 rating 5.7 release_year 2014 +HSET "movie:27" title "Teenage Mutant Ninja Turtles" genre "Action" votes 172213 rating 5.9 release_year 2014 +HSET "movie:28" title "Lucifer" genre "Crime" votes 58703 rating 8.3 release_year 2015 +HSET "movie:29" title "The Hobbit: The Battle of the Five Armies" genre "Adventure" votes 363557 rating 7.4 release_year 2014 +HSET "movie:30" title "Clown" genre "Horror" votes 12690 rating 5.7 release_year 2014 +HSET "movie:31" title "Birdman or (The Unexpected Virtue of Ignorance)" genre "Comedy" votes 408054 rating 7.8 release_year 2014 +HSET "movie:32" title "The Evil Dead" genre "Horror" votes 144850 rating 7.6 release_year 1981 +HSET "movie:33" title "The Giver" genre "Drama" votes 88897 rating 6.5 release_year 2014 +HSET "movie:34" title "What We Do in the Shadows" genre "Comedy" votes 73230 rating 7.6 release_year 2014 +HSET "movie:35" title "Shin Gojira" genre "Action" votes 2915 rating 7.6 release_year 2016 +HSET "movie:36" title "The Maze Runner" genre "Action" votes 318953 rating 6.8 release_year 2014 +HSET "movie:37" title "Nightcrawler" genre "Crime" votes 304445 rating 7.9 release_year 2014 +HSET "movie:38" title "The Fault in Our Stars" genre "Drama" votes 256899 rating 7.8 release_year 2014 +HSET "movie:39" title "Hercules" genre "Action" votes 117904 rating 6.0 release_year 2014 +HSET "movie:40" title "Neighbors" genre "Comedy" votes 224378 rating 6.4 release_year 2014 +HSET "movie:41" title "The Expendables 3" genre "Action" votes 130394 rating 6.1 release_year 2014 +HSET "movie:42" title "The Lego Movie" genre "Animation" votes 251297 rating 7.8 release_year 2014 +HSET "movie:43" title "Love Rosie" genre "Comedy" votes 72052 rating 7.2 release_year 2014 +HSET "movie:44" title "Boyhood" genre "Drama" votes 272604 rating 7.9 release_year 2014 +HSET "movie:45" title "American Sniper" genre "Action" votes 333228 rating 7.3 release_year 2014 +HSET "movie:46" title "Big Hero 6" genre "Animation" votes 288143 rating 7.9 release_year 2014 +HSET "movie:47" title "The Hunger Games: Mockingjay - Part 1" genre "Adventure" votes 313261 rating 6.7 release_year 2014 plot "Katniss Everdeen is in District 13 after she shatters the games forever. Under the leadership of President Coin and the advice of her trusted friends,Katniss spreads her wings as she fights to save Peeta and a nation moved by her courage." poster "https://m.media-amazon.com/images/M/MV5BMTcxNDI2NDAzNl5BMl5BanBnXkFtZTgwODM3MTc2MjE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt1951265" +HSET "movie:48" title "Noah" genre "Action" votes 203170 rating 5.8 release_year 2014 +HSET "movie:49" title "Predestination" genre "Drama" votes 172521 rating 7.4 release_year 2014 +HSET "movie:50" title "Unbroken" genre "Biography" votes 106707 rating 7.2 release_year 2014 +HSET "movie:51" title "Big Eyes" genre "Biography" votes 58303 rating 7.0 release_year 2014 +HSET "movie:52" title "I Origins" genre "Drama" votes 78760 rating 7.3 release_year 2014 +HSET "movie:53" title "Inherent Vice" genre "Comedy" votes 64396 rating 6.7 release_year 2014 +HSET "movie:54" title "Relatos salvajes" genre "Comedy" votes 96058 rating 8.1 release_year 2014 +HSET "movie:55" title "The Taking" genre "Horror" votes 16365 rating 6.0 release_year 2014 +HSET "movie:56" title "300: Rise of an Empire" genre "Action" votes 229109 rating 6.2 release_year 2014 +HSET "movie:57" title "22 Jump Street" genre "Action" votes 265037 rating 7.1 release_year 2014 +HSET "movie:58" title "The Best of Me" genre "Drama" votes 45116 rating 6.7 release_year 2014 +HSET "movie:59" title "Vampire Academy" genre "Action" votes 42267 rating 5.6 release_year 2014 +HSET "movie:60" title "Seventh Son" genre "Action" votes 56323 rating 5.5 release_year 2014 +HSET "movie:61" title "Deliver Us from Evil" genre "Horror" votes 55582 rating 6.2 release_year 2014 +HSET "movie:62" title "Dawn of the Planet of the Apes" genre "Action" votes 323652 rating 7.6 release_year 2014 +HSET "movie:63" title "Exodus: Gods and Kings" genre "Action" votes 131331 rating 6.1 release_year 2014 +HSET "movie:64" title "Annabelle" genre "Horror" votes 85055 rating 5.4 release_year 2014 +HSET "movie:65" title "The Loft" genre "Mystery" votes 35542 rating 6.3 release_year 2014 +HSET "movie:66" title "Tusk" genre "Comedy" votes 32399 rating 5.4 release_year 2014 +HSET "movie:67" title "The Interview" genre "Comedy" votes 251910 rating 6.6 release_year 2014 +HSET "movie:68" title "The Voices" genre "Comedy" votes 36321 rating 6.3 release_year 2014 +HSET "movie:69" title "I Frankenstein" genre "Action" votes 67009 rating 5.1 release_year 2014 +HSET "movie:70" title "The Judge" genre "Crime" votes 140247 rating 7.4 release_year 2014 +HSET "movie:71" title "Burnt" genre "Comedy" votes 66999 rating 6.6 release_year 2015 +HSET "movie:72" title "If I Stay" genre "Drama" votes 86751 rating 6.8 release_year 2014 +HSET "movie:73" title "As Above So Below" genre "Horror" votes 52008 rating 6.2 release_year 2014 +HSET "movie:74" title "3 Days to Kill" genre "Action" votes 70604 rating 6.2 release_year 2014 +HSET "movie:75" title "Before We Go" genre "Comedy" votes 48623 rating 6.8 release_year 2014 plot "Two strangers stuck in Manhattan for the night grow into each other's most trusted confidants when an evening of unexpected adventure forces them to confront their fears and take control of their lives." poster "https://m.media-amazon.com/images/M/MV5BOTMxNzE0NjY4NV5BMl5BanBnXkFtZTgwMjIxNjIzNjE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:76" title "Non-Stop" genre "Action" votes 242556 rating 6.9 release_year 2014 plot "An air marshal springs into action during a transatlantic flight after receiving a series of text messages demanding $150 million into an off-shore account,or someone will die every 20 minutes." poster "https://m.media-amazon.com/images/M/MV5BOTI3NzcxMjkzMl5BMl5BanBnXkFtZTgwMDY0NTQ0MDE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:77" title "That Awkward Moment" genre "Comedy" votes 95104 rating 6.1 release_year 2014 plot "Three best friends find themselves where we've all been - at that confusing moment in every dating relationship when you have to decide 'So...where is this going?'" poster "https://m.media-amazon.com/images/M/MV5BMjExODEyMjMwNV5BMl5BanBnXkFtZTgwMTAyODM1MDE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:78" title "Vincent" genre "Short" votes 18284 rating 8.4 release_year 1982 +HSET "movie:79" title "Blended" genre "Comedy" votes 89403 rating 6.5 release_year 2014 +HSET "movie:80" title "The Guest" genre "Action" votes 65590 rating 6.7 release_year 2014 +HSET "movie:81" title "The Other Woman" genre "Comedy" votes 106752 rating 6.0 release_year 2014 +HSET "movie:82" title "Left Behind" genre "Action" votes 25659 rating 3.1 release_year 2014 +HSET "movie:83" title "Annie" genre "Comedy" votes 25486 rating 5.3 release_year 2014 +HSET "movie:84" title "Cybernatural (aka Unfriended)" genre "Horror" votes 65166 rating 5.5 release_year 2014 plot "A group of online chat room friends find themselves haunted by a mysterious,supernatural force using the account of their dead friend." poster "https://m.media-amazon.com/images/M/MV5BMzdlNWI2MjYtMWY3ZC00N2EzLWIzNTgtZDY2NGI4OTY3Yzc5XkEyXkFqcGdeQXVyMjQwMjk0NjI@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:85" title "The Gambler" genre "Crime" votes 62581 rating 6.0 release_year 2014 plot "Literature professor and gambler Jim Bennett's debt causes him to borrow money from his mother and a loan shark. Further complicating his situation,is his relationship with one of his students. Will Bennett risk his life for a second chance?" poster "https://m.media-amazon.com/images/M/MV5BMjA5MjIzODE3N15BMl5BanBnXkFtZTgwNzUwNzYwMzE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:86" title "The Salvation" genre "Drama" votes 24481 rating 6.8 release_year 2014 +HSET "movie:87" title "A Million Ways to Die in the West" genre "Comedy" votes 138651 rating 6.1 release_year 2014 +HSET "movie:88" title "Testament of Youth" genre "Biography" votes 15500 rating 7.3 release_year 2014 +HSET "movie:89" title "Hunt for the Wilderpeople" genre "Adventure" votes 22696 rating 8.0 release_year 2016 +HSET "movie:90" title "Transcendence" genre "Drama" votes 176429 rating 6.3 release_year 2014 +HSET "movie:91" title "Sex Tape" genre "Comedy" votes 86018 rating 5.1 release_year 2014 +HSET "movie:92" title "Honeytrap" genre "Crime" votes 325 rating 5.6 release_year 2014 +HSET "movie:93" title "X+Y" genre "Drama" votes 19609 rating 7.2 release_year 2014 +HSET "movie:94" title "Creep" genre "Horror" votes 14696 rating 6.2 release_year 2014 +HSET "movie:95" title "The Drop" genre "Crime" votes 109038 rating 7.1 release_year 2014 +HSET "movie:96" title "Ich seh ich seh" genre "Drama" votes 22916 rating 6.7 release_year 2014 +HSET "movie:97" title "Eliza Graves" genre "Drama" votes 36059 rating 6.8 release_year 2014 +HSET "movie:98" title "Horrible Bosses 2" genre "Comedy" votes 117742 rating 6.3 release_year 2014 +HSET "movie:99" title "Jack Ryan: Shadow Recruit" genre "Action" votes 100550 rating 6.2 release_year 2014 +HSET "movie:100" title "Man Down" genre "Drama" votes 414 rating 6.5 release_year 2015 +HSET "movie:102" title "The Revenant" genre "Adventure" votes 441653 rating 8.1 release_year 2015 +HSET "movie:103" title "Joy" genre "Biography" votes 83047 rating 6.6 release_year 2015 +HSET "movie:104" title "Spectre" genre "Action" votes 287494 rating 6.8 release_year 2015 +HSET "movie:105" title "The VVitch: A New-England Folktale" genre "Horror" votes 79688 rating 6.7 release_year 2015 +HSET "movie:106" title "The Big Short" genre "Biography" votes 206783 rating 7.8 release_year 2015 +HSET "movie:107" title "Jurassic World" genre "Action" votes 429565 rating 7.0 release_year 2015 +HSET "movie:108" title "Mad Max: Fury Road" genre "Action" votes 578046 rating 8.1 release_year 2015 +HSET "movie:109" title "The Martian" genre "Adventure" votes 506641 rating 8.0 release_year 2015 +HSET "movie:110" title "The Hateful Eight" genre "Crime" votes 294908 rating 7.9 release_year 2015 +HSET "movie:111" title "The Danish Girl" genre "Biography" votes 92054 rating 7.0 release_year 2015 +HSET "movie:112" title "Sicario" genre "Action" votes 212880 rating 7.6 release_year 2015 +HSET "movie:113" title "Avengers: Age of Ultron" genre "Action" votes 479512 rating 7.5 release_year 2015 +HSET "movie:114" title "Spotlight" genre "Biography" votes 220052 rating 8.1 release_year 2015 +HSET "movie:115" title "Room" genre "Drama" votes 182004 rating 8.2 release_year 2015 +HSET "movie:116" title "Fifty Shades of Grey" genre "Drama" votes 224710 rating 4.1 release_year 2015 +HSET "movie:117" title "Ex Machina" genre "Drama" votes 304335 rating 7.7 release_year 2015 +HSET "movie:118" title "The Lobster" genre "Comedy" votes 90934 rating 7.1 release_year 2015 +HSET "movie:119" title "Mr. Right" genre "Action" votes 22752 rating 6.3 release_year 2015 +HSET "movie:120" title "Mission: Impossible - Rogue Nation" genre "Action" votes 241599 rating 7.4 release_year 2015 +HSET "movie:121" title "The Hunger Games: Mockingjay - Part 2" genre "Adventure" votes 179028 rating 6.6 release_year 2015 plot "Katniss and a team of rebels from District 13 prepare for the final battle that will decide the fate of Panem." poster "https://m.media-amazon.com/images/M/MV5BNjQzNDI2NTU1Ml5BMl5BanBnXkFtZTgwNTAyMDQ5NjE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt1951266" +HSET "movie:122" title "P.S. I Love You" genre "Drama" votes 170878 rating 7.1 release_year 2007 +HSET "movie:123" title "Black Mass" genre "Biography" votes 123475 rating 7.0 release_year 2015 +HSET "movie:124" title "In the Heart of the Sea" genre "Action" votes 79623 rating 6.9 release_year 2015 +HSET "movie:125" title "By the Sea" genre "Drama" votes 9662 rating 5.3 release_year 2015 +HSET "movie:126" title "Knock Knock" genre "Drama" votes 47192 rating 4.9 release_year 2015 +HSET "movie:127" title "Inside Out" genre "Animation" votes 367848 rating 8.2 release_year 2015 +HSET "movie:128" title "Straight Outta Compton" genre "Biography" votes 127258 rating 7.9 release_year 2015 +HSET "movie:130" title "The Invitation" genre "Thriller" votes 28593 rating 6.7 release_year 2015 +HSET "movie:131" title "Brooklyn" genre "Drama" votes 82468 rating 7.5 release_year 2015 +HSET "movie:132" title "Bridge of Spies" genre "Drama" votes 192125 rating 7.6 release_year 2015 +HSET "movie:133" title "Cinderella" genre "Drama" votes 107389 rating 7.0 release_year 2015 +HSET "movie:134" title "Green Room" genre "Crime" votes 41386 rating 7.1 release_year 2015 +HSET "movie:135" title "Steve Jobs" genre "Biography" votes 102485 rating 7.2 release_year 2015 +HSET "movie:136" title "Krampus" genre "Comedy" votes 33237 rating 6.2 release_year 2015 +HSET "movie:137" title "Furious Seven" genre "Action" votes 284316 rating 7.2 release_year 2015 +HSET "movie:138" title "Crimson Peak" genre "Drama" votes 88501 rating 6.6 release_year 2015 +HSET "movie:139" title "Fathers & Daughters" genre "Drama" votes 12242 rating 7.1 release_year 2015 +HSET "movie:140" title "Terminator Genisys" genre "Action" votes 194182 rating 6.5 release_year 2015 +HSET "movie:141" title "Legends of Tomorrow" genre "Action" votes 42082 rating 7.1 release_year 2016 +HSET "movie:142" title "Spy" genre "Action" votes 176403 rating 7.1 release_year 2015 +HSET "movie:143" title "Eye in the Sky" genre "Drama" votes 44086 rating 7.3 release_year 2015 +HSET "movie:144" title "Everest" genre "Adventure" votes 142142 rating 7.1 release_year 2015 +HSET "movie:145" title "The Man Who Knew Infinity" genre "Biography" votes 18444 rating 7.2 release_year 2015 +HSET "movie:146" title "The Visit" genre "Horror" votes 70878 rating 6.2 release_year 2015 +HSET "movie:147" title "Carol" genre "Drama" votes 66848 rating 7.2 release_year 2015 +HSET "movie:148" title "Sister Sister" genre "Comedy" votes 8021 rating 6.1 release_year 1994 +HSET "movie:149" title "The Intern" genre "Comedy" votes 142646 rating 7.2 release_year 2015 +HSET "movie:150" title "Demolition" genre "Drama" votes 42400 rating 7.0 release_year 2015 +HSET "movie:151" title "Goosebumps" genre "Adventure" votes 51870 rating 6.3 release_year 2015 +HSET "movie:152" title "Hardcore Henry" genre "Action" votes 48460 rating 6.8 release_year 2015 +HSET "movie:153" title "Desierto" genre "Drama" votes 2618 rating 5.8 release_year 2015 +HSET "movie:154" title "The Unspoken" genre "Thriller" votes 423 rating 4.9 release_year 2015 +HSET "movie:155" title "Trainwreck" genre "Comedy" votes 98763 rating 6.3 release_year 2015 +HSET "movie:156" title "Creed" genre "Drama" votes 157387 rating 7.7 release_year 2015 +HSET "movie:157" title "Southpaw" genre "Drama" votes 154514 rating 7.4 release_year 2015 +HSET "movie:158" title "Victor Frankenstein" genre "Drama" votes 32516 rating 6.0 release_year 2015 +HSET "movie:159" title "Pitch Perfect 2" genre "Comedy" votes 101190 rating 6.5 release_year 2015 +HSET "movie:160" title "Colonia" genre "Drama" votes 22234 rating 7.1 release_year 2015 +HSET "movie:161" title "San Andreas" genre "Action" votes 152249 rating 6.1 release_year 2015 +HSET "movie:162" title "The Age of Adaline" genre "Drama" votes 99943 rating 7.2 release_year 2015 +HSET "movie:163" title "Point Break" genre "Action" votes 38527 rating 5.3 release_year 2015 plot "A young FBI agent infiltrates an extraordinary team of extreme sports athletes he suspects of masterminding a string of unprecedented,sophisticated corporate heists." poster "https://m.media-amazon.com/images/M/MV5BMjIxNDkzOTAyNV5BMl5BanBnXkFtZTgwNjEyOTY3NjE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:164" title "Into the Forest" genre "Drama" votes 5638 rating 6.0 release_year 2015 +HSET "movie:165" title "Hotel Transylvania 2" genre "Animation" votes 61666 rating 6.7 release_year 2015 +HSET "movie:166" title "Pan" genre "Adventure" votes 43442 rating 5.8 release_year 2015 +HSET "movie:167" title "The Dressmaker" genre "Drama" votes 25597 rating 7.1 release_year 2015 +HSET "movie:168" title "Maze Runner: The Scorch Trials" genre "Action" votes 146153 rating 6.4 release_year 2015 +HSET "movie:169" title "Youth" genre "Comedy" votes 45576 rating 7.4 release_year 2015 +HSET "movie:170" title "Vacation" genre "Adventure" votes 69598 rating 6.1 release_year 2015 +HSET "movie:171" title "Bone Tomahawk" genre "Adventure" votes 38814 rating 7.1 release_year 2015 +HSET "movie:172" title "Scouts Guide to the Zombie Apocalypse" genre "Action" votes 28124 rating 6.3 release_year 2015 +HSET "movie:173" title "Tomorrowland" genre "Action" votes 132793 rating 6.5 release_year 2015 +HSET "movie:174" title "The Gift" genre "Mystery" votes 86698 rating 7.1 release_year 2015 plot "A young married couple's lives are thrown into a harrowing tailspin when an acquaintance from the husband's past brings mysterious gifts and a horrifying secret to light after more than 20 years." poster "https://m.media-amazon.com/images/M/MV5BMTQzMjM2NjM1Nl5BMl5BanBnXkFtZTgwMDM1MjQyNTE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:175" title "The Last Witch Hunter" genre "Action" votes 63434 rating 6.0 release_year 2015 +HSET "movie:176" title "Insurgent" genre "Adventure" votes 160386 rating 6.3 release_year 2015 +HSET "movie:177" title "The DUFF" genre "Comedy" votes 79071 rating 6.5 release_year 2015 plot "A high school senior instigates a social pecking order revolution after finding out that she has been labeled the DUFF - Designated Ugly Fat Friend - by her prettier,more popular counterparts." poster "https://m.media-amazon.com/images/M/MV5BMTc3OTg3MDUwN15BMl5BanBnXkFtZTgwMTAwMTkxNDE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:178" title "The Good Dinosaur" genre "Animation" votes 68749 rating 6.8 release_year 2015 +HSET "movie:179" title "Focus" genre "Comedy" votes 155186 rating 6.6 release_year 2015 +HSET "movie:180" title "Jupiter Ascending" genre "Action" votes 142878 rating 5.4 release_year 2015 +HSET "movie:181" title "Fantastic Four" genre "Action" votes 114717 rating 4.3 release_year 2015 +HSET "movie:182" title "Concussion" genre "Biography" votes 51021 rating 7.1 release_year 2015 +HSET "movie:183" title "Muhammad: The Messenger of God" genre "Biography" votes 4266 rating 8.1 release_year 2015 +HSET "movie:184" title "Equals" genre "Drama" votes 10357 rating 6.1 release_year 2015 +HSET "movie:185" title "Magic Mike XXL" genre "Comedy" votes 39910 rating 5.7 release_year 2015 +HSET "movie:186" title "The Longest Ride" genre "Drama" votes 53050 rating 7.1 release_year 2015 +HSET "movie:187" title "Daddy's Home" genre "Comedy" votes 59706 rating 6.1 release_year 2015 +HSET "movie:188" title "Knight of Cups" genre "Drama" votes 14456 rating 5.7 release_year 2015 +HSET "movie:189" title "The Ridiculous 6" genre "Comedy" votes 28505 rating 4.9 release_year 2015 +HSET "movie:190" title "Ted 2" genre "Comedy" votes 123758 rating 6.4 release_year 2015 +HSET "movie:191" title "Minions" genre "Animation" votes 148448 rating 6.4 release_year 2015 +HSET "movie:192" title "Macbeth" genre "Drama" votes 37044 rating 6.7 release_year 2015 +HSET "movie:193" title "The Final Girls" genre "Comedy" votes 20599 rating 6.6 release_year 2015 plot "A young woman grieving the loss of her mother,a famous scream queen from the 1980s,finds herself pulled into the world of her mom's most famous movie. Reunited,the women must fight off the film's maniacal killer." poster "https://m.media-amazon.com/images/M/MV5BMjI4Nzk2NzAzOV5BMl5BanBnXkFtZTgwNjI1NzY4NjE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2118624" +HSET "movie:194" title "A Bigger Splash" genre "Crime" votes 10315 rating 6.4 release_year 2015 +HSET "movie:195" title "Chappie" genre "Action" votes 177519 rating 6.9 release_year 2015 +HSET "movie:196" title "En man som heter Ove" genre "Comedy" votes 7806 rating 7.6 release_year 2015 +HSET "movie:197" title "Doctor Strange" genre "Action" votes 71532 rating 8.0 release_year 2016 +HSET "movie:198" title "Jack Reacher: Never Go Back" genre "Action" votes 130230 rating 6.1 release_year 2016 plot "Jack Reacher must uncover the truth behind a major government conspiracy in order to clear his name while on the run as a fugitive from the law." poster "https://m.media-amazon.com/images/M/MV5BODQ3ODQ3NDI4NV5BMl5BanBnXkFtZTgwMDY1Mzk5OTE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt3393786" +HSET "movie:199" title "Inferno" genre "Action" votes 28671 rating 6.4 release_year 2016 +HSET "movie:200" title "Sausage Party" genre "Animation" votes 61333 rating 6.5 release_year 2016 +HSET "movie:201" title "The Accountant" genre "Action" votes 27335 rating 7.7 release_year 2016 +HSET "movie:202" title "Nocturnal Animals" genre "Drama" votes 2060 rating 8.1 release_year 2016 +HSET "movie:204" title "Suicide Squad" genre "Action" votes 249658 rating 6.6 release_year 2016 +HSET "movie:205" title "Boo! A Madea Halloween" genre "Comedy" votes 1851 rating 4.7 release_year 2016 +HSET "movie:206" title "Split" genre "Horror" votes 331 rating 8.1 release_year 2016 +HSET "movie:207" title "Miss Peregrine's Home for Peculiar Children" genre "Adventure" votes 31522 rating 7.0 release_year 2016 +HSET "movie:208" title "Keeping Up with the Joneses" genre "Action" votes 1964 rating 5.8 release_year 2016 +HSET "movie:209" title "Hacksaw Ridge" genre "Biography" votes 6904 rating 8.8 release_year 2016 +HSET "movie:210" title "Trolls" genre "Animation" votes 3307 rating 6.7 release_year 2016 +HSET "movie:211" title "Captain Fantastic" genre "Comedy" votes 30203 rating 8.0 release_year 2016 +HSET "movie:212" title "Star Trek Beyond" genre "Action" votes 111125 rating 7.2 release_year 2016 +HSET "movie:213" title "Bad Moms" genre "Comedy" votes 30510 rating 6.3 release_year 2016 +HSET "movie:214" title "Ghostbusters" genre "Action" votes 111399 rating 5.4 release_year 2016 +HSET "movie:215" title "Arrival" genre "Drama" votes 2396 rating 8.5 release_year 2016 +HSET "movie:216" title "Don't Breathe" genre "Crime" votes 55841 rating 7.3 release_year 2016 +HSET "movie:217" title "Nerve" genre "Adventure" votes 37601 rating 6.7 release_year 2016 +HSET "movie:218" title "Finding Dory" genre "Animation" votes 87660 rating 7.6 release_year 2016 +HSET "movie:219" title "Gods of Egypt" genre "Action" votes 60592 rating 5.5 release_year 2016 +HSET "movie:220" title "X-Men: Apocalypse" genre "Action" votes 210509 rating 7.2 release_year 2016 +HSET "movie:221" title "Deadpool" genre "Action" votes 533503 rating 8.1 release_year 2016 +HSET "movie:222" title "Independence Day: Resurgence" genre "Action" votes 93353 rating 5.4 release_year 2016 +HSET "movie:223" title "The BFG" genre "Adventure" votes 21997 rating 6.6 release_year 2016 +HSET "movie:224" title "Anthropoid" genre "Biography" votes 8307 rating 7.3 release_year 2016 +HSET "movie:225" title "The Magnificent Seven" genre "Action" votes 35670 rating 7.1 release_year 2016 +HSET "movie:226" title "Deepwater Horizon" genre "Action" votes 19531 rating 7.5 release_year 2016 +HSET "movie:227" title "The Infiltrator" genre "Biography" votes 20436 rating 7.1 release_year 2016 +HSET "movie:228" title "Lights Out" genre "Horror" votes 43426 rating 6.5 release_year 2016 +HSET "movie:229" title "In a Valley of Violence" genre "Western" votes 1942 rating 6.0 release_year 2016 +HSET "movie:230" title "Zootopia" genre "Animation" votes 216939 rating 8.1 release_year 2016 +HSET "movie:231" title "The Legend of Tarzan" genre "Action" votes 80332 rating 6.4 release_year 2016 +HSET "movie:232" title "Warcraft" genre "Action" votes 154327 rating 7.1 release_year 2016 +HSET "movie:233" title "Captain America: Civil War" genre "Action" votes 627228 rating 7.8 release_year 2016 plot "Political involvement in the Avengers' affairs causes a rift between Captain America and Iron Man." poster "https://m.media-amazon.com/images/M/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:234" title "Billy Lynn's Long Halftime Walk" genre "Drama" votes 348 rating 6.4 release_year 2016 +HSET "movie:235" title "Moonlight" genre "Drama" votes 2184 rating 8.7 release_year 2016 plot "A young African-American man grapples with his identity and sexuality while experiencing the everyday struggles of childhood,adolescence,and burgeoning adulthood." poster "https://m.media-amazon.com/images/M/MV5BNzQxNTIyODAxMV5BMl5BanBnXkFtZTgwNzQyMDA3OTE@._V1_SX300.jpg" +HSET "movie:236" title "American Pastoral" genre "Crime" votes 742 rating 6.2 release_year 2016 +HSET "movie:237" title "Me Before You" genre "Drama" votes 82868 rating 7.5 release_year 2016 +HSET "movie:238" title "Batman v Superman: Dawn of Justice" genre "Action" votes 415255 rating 6.8 release_year 2016 +HSET "movie:239" title "Alice Through the Looking Glass" genre "Adventure" votes 37184 rating 6.3 release_year 2016 +HSET "movie:240" title "Shivaay" genre "Action" votes 4948 rating 7.2 release_year 2016 +HSET "movie:241" title "King Cobra" genre "Crime" votes 928 rating 5.8 release_year 2016 plot "Veteran gay pornography producer Stephen battles two rival producers over the rights to his underage porn star creation,Brent Corrigan,with deadly results." poster "https://m.media-amazon.com/images/M/MV5BMTU1Njk2NzMxOF5BMl5BanBnXkFtZTgwMzY4ODUxMDI@._V1_SX300.jpg" +HSET "movie:242" title "The Conjuring 2" genre "Horror" votes 108550 rating 7.5 release_year 2016 +HSET "movie:243" title "Sully" genre "Biography" votes 34289 rating 7.9 release_year 2016 +HSET "movie:244" title "Mike and Dave Need Wedding Dates" genre "Adventure" votes 30530 rating 6.1 release_year 2016 +HSET "movie:245" title "The Whole Truth" genre "Drama" votes 3888 rating 6.0 release_year 2016 +HSET "movie:246" title "Imperium" genre "Crime" votes 14516 rating 6.5 release_year 2016 +HSET "movie:247" title "Neruda" genre "Biography" votes 812 rating 7.3 release_year 2016 +HSET "movie:248" title "Masterminds" genre "Action" votes 3254 rating 5.8 release_year 2016 +HSET "movie:249" title "Nine Lives" genre "Comedy" votes 19857 rating 5.3 release_year 2016 plot "A stuffy businessman finds himself trapped inside the body of his family's cat." poster "https://m.media-amazon.com/images/M/MV5BMzEzMjkwMjc3NV5BMl5BanBnXkFtZTgwMzc0NjY5ODE@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:250" title "The Nice Guys" genre "Action" votes 116011 rating 7.4 release_year 2016 +HSET "movie:252" title "Central Intelligence" genre "Action" votes 66143 rating 6.4 release_year 2016 +HSET "movie:253" title "The Siege of Jadotville" genre "Action" votes 6428 rating 7.4 release_year 2016 +HSET "movie:254" title "The Shallows" genre "Drama" votes 54247 rating 6.4 release_year 2016 +HSET "movie:255" title "The Jungle Book" genre "Adventure" votes 151342 rating 7.6 release_year 2016 +HSET "movie:256" title "Blood Father" genre "Action" votes 25837 rating 6.5 release_year 2016 +HSET "movie:257" title "The Secret Life of Pets" genre "Animation" votes 63437 rating 6.7 release_year 2016 +HSET "movie:258" title "Storks" genre "Animation" votes 5798 rating 7.0 release_year 2016 +HSET "movie:259" title "The Neon Demon" genre "Horror" votes 29895 rating 6.4 release_year 2016 +HSET "movie:260" title "Tokyo Zance" genre "Comedy" votes 5 rating 5.4 release_year 2001 +HSET "movie:261" title "Snowden" genre "Biography" votes 12257 rating 7.4 release_year 2016 +HSET "movie:262" title "The Purge: Election Year" genre "Action" votes 38837 rating 6.0 release_year 2016 +HSET "movie:263" title "Bleed for This" genre "Biography" votes 382 rating 6.5 release_year 2016 +HSET "movie:264" title "Now You See Me 2" genre "Action" votes 112664 rating 6.5 release_year 2016 +HSET "movie:265" title "Free State of Jones" genre "Action" votes 16935 rating 6.9 release_year 2016 +HSET "movie:266" title "Bridget Jones's Baby" genre "Comedy" votes 16892 rating 7.3 release_year 2016 +HSET "movie:267" title "Max Steel" genre "Action" votes 897 rating 4.9 release_year 2016 +HSET "movie:268" title "Teenage Mutant Ninja Turtles: Out of the Shadows" genre "Action" votes 45213 rating 6.1 release_year 2016 +HSET "movie:269" title "Mascots" genre "Comedy" votes 3147 rating 5.9 release_year 2016 +HSET "movie:270" title "Ah-ga-ssi" genre "Drama" votes 7135 rating 8.1 release_year 2016 +HSET "movie:271" title "Ice Age: Collision Course" genre "Animation" votes 21966 rating 5.7 release_year 2016 +HSET "movie:272" title "13 Hours" genre "Action" votes 59515 rating 7.3 release_year 2016 +HSET "movie:273" title "La La Land" genre "Comedy" votes 1473 rating 8.6 release_year 2016 +HSET "movie:274" title "I'm Not Ashamed" genre "Biography" votes 345 rating 6.1 release_year 2016 +HSET "movie:275" title "The Edge of Seventeen" genre "Comedy" votes 305 rating 7.7 release_year 2016 +HSET "movie:276" title "Jason Bourne" genre "Action" votes 87772 rating 6.8 release_year 2016 +HSET "movie:277" title "American Honey" genre "Drama" votes 2493 rating 7.5 release_year 2016 +HSET "movie:278" title "Mechanic: Resurrection" genre "Action" votes 18817 rating 5.7 release_year 2016 +HSET "movie:279" title "Busanhaeng" genre "Action" votes 22742 rating 7.6 release_year 2016 +HSET "movie:280" title "Grimsby" genre "Action" votes 50897 rating 6.2 release_year 2016 +HSET "movie:281" title "Hell or High Water" genre "Crime" votes 15385 rating 8.2 release_year 2016 +HSET "movie:282" title "10 Cloverfield Lane" genre "Drama" votes 149415 rating 7.3 release_year 2016 +HSET "movie:283" title "The Finest Hours" genre "Action" votes 34666 rating 6.8 release_year 2016 +HSET "movie:284" title "Top Gun" genre "Action" votes 273458 rating 6.9 release_year 1986 plot "As students at the United States Navy's elite fighter weapons school compete to be best in the class,one daring young pilot learns a few things from a civilian instructor that are not taught in the classroom." poster "https://m.media-amazon.com/images/M/MV5BZjQxYTA3ODItNzgxMy00N2Y2LWJlZGMtMTRlM2JkZjI1ZDhhXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg" +HSET "movie:295" title "Guardians of the Galaxy Vol. 2" genre "Action" votes 531435 rating 7.6 release_year 2017 plot "The Guardians struggle to keep together as a team while dealing with their personal family issues notably Star-Lord's encounter with his father the ambitious celestial being Ego." poster "https://m.media-amazon.com/images/M/MV5BNjM0NTc0NzItM2FlYS00YzEwLWE0YmUtNTA2ZWIzODc2OTgxXkEyXkFqcGdeQXVyNTgwNzIyNzg@._V1_SX300.jpg" ibmdb_id "tt3896198" +HSET "movie:286" title "Battle for the Lost Planet (Galaxy)" genre "Action" votes 263 rating 4.3 release_year 2017 plot "After hijacking a space shuttle,a spy finds that the controls are malfunctioning and sees alien battleships approaching Earth. Many years later,when the arc of his flight path returns to earth,he finds the planet under alien domination." poster "https://m.media-amazon.com/images/M/MV5BOTBhMGNhMTUtNTUwNS00NmYwLWI1ZmEtZWVlMTU4NDE3ZTFhXkEyXkFqcGdeQXVyMTQ2MjQyNDc@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:290" title "Star Wars: Episode I - The Phantom Menace" genre "Action" votes 698056 rating 6.5 release_year 1999 plot "Two Jedi escape a hostile blockade to find allies and come across a young boy who may bring balance to the Force,but the long dormant Sith resurface to claim their old glory." poster "https://m.media-amazon.com/images/M/MV5BYTRhNjcwNWQtMGJmMi00NmQyLWE2YzItODVmMTdjNWI0ZDA2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0120915" +HSET "movie:291" title "Star Wars: Episode II - Attack of the Clones" genre "Action" votes 618036 rating 6.5 release_year 2002 plot "Ten years after initially meeting,Anakin Skywalker shares a forbidden romance with Padmé Amidala,while Obi-Wan Kenobi investigates an assassination attempt on the senator and discovers a secret clone army crafted for the Jedi." poster "https://m.media-amazon.com/images/M/MV5BMDAzM2M0Y2UtZjRmZi00MzVlLTg4MjEtOTE3NzU5ZDVlMTU5XkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0121765" +HSET "movie:292" title "Star Wars: Episode III - Revenge of the Sith" genre "Action" votes 679858 rating 7.5 release_year 2005 plot "Three years into the Clone Wars,the Jedi rescue Palpatine from Count Dooku. As Obi-Wan pursues a new threat,Anakin acts as a double agent between the Jedi Council and Palpatine and is lured into a sinister plan to rule the galaxy." poster "https://m.media-amazon.com/images/M/MV5BNTc4MTc3NTQ5OF5BMl5BanBnXkFtZTcwOTg0NjI4NA@@._V1_UY268_CR9,0,182,268_AL_.jpg" ibmdb_id "tt0121766" +HSET "movie:288" title "Star Wars: Episode IV - A New Hope" genre "Action" votes 1181515 rating 8.6 release_year 1977 plot "Luke Skywalker joins forces with a Jedi Knight,a cocky pilot,a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station,while also attempting to rescue Princess Leia from the mysterious Darth Vader." poster "https://m.media-amazon.com/images/M/MV5BNzVlY2MwMjktM2E4OS00Y2Y3LWE3ZjctYzhkZGM3YzA1ZWM2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0076759" +HSET "movie:293" title "Star Wars: Episode V - The Empire Strikes Back" genre "Action" votes 1109656 rating 8.7 release_year 1980 plot "After the Rebels are brutally overpowered by the Empire on the ice planet Hoth Luke Skywalker begins Jedi training with Yoda while his friends are pursued by Darth Vader and a bounty hunter named Boba Fett all over the galaxy." poster "https://m.media-amazon.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0080684" +HSET "movie:294" title "Star Wars: Episode VI - Return of the Jedi" genre "Action" votes 906260 rating 8.3 release_year 1983 plot "After a daring mission to rescue Han Solo from Jabba the Hutt the Rebels dispatch to Endor to destroy the second Death Star. Meanwhile Luke struggles to help Darth Vader back from the dark side without falling into the Emperor's trap." poster "https://m.media-amazon.com/images/M/MV5BOWZlMjFiYzgtMTUzNC00Y2IzLTk1NTMtZmNhMTczNTk0ODk1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0086190" +HSET "movie:101" title "Star Wars: Episode VII - The Force Awakens" genre "Action" votes 831843 rating 7.9 release_year 2015 plot "Three decades after the Empire's defeat,a new threat arises in the militant First Order. Defected stormtrooper Finn and the scavenger Rey are caught up in the Resistance's search for the missing Luke Skywalker." poster "https://m.media-amazon.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2488496" +HSET "movie:289" title "Star Wars: Episode VIII - The Last Jedi" genre "Action" votes 531361 rating 7.0 release_year 2017 plot "Rey develops her newly discovered abilities with the guidance of Luke Skywalker,who is unsettled by the strength of her powers. Meanwhile,the Resistance prepares for battle with the First Order" poster "https://m.media-amazon.com/images/M/MV5BMjQ1MzcxNjg4N15BMl5BanBnXkFtZTgwNzgwMjY4MzI@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt2527336" +HSET "movie:287" title "Star Wars: Episode IX - The Rise of Skywalker" genre "Action" votes 295585 rating 6.7 release_year 2019 plot "The surviving members of the resistance face the First Order once again,and the legendary conflict between the Jedi and the Sith reaches its peak bringing the Skywalker saga to its end" poster "https://m.media-amazon.com/images/M/MV5BMDljNTQ5ODItZmQwMy00M2ExLTljOTQtZTVjNGE2NTg0NGIxXkEyXkFqcGdeQXVyODkzNTgxMDg@._V1_UX182_CR0,0,182,268_AL_.jpg" +HSET "movie:296" title "Once Upon a Time in the West" genre "Western" votes 285258 rating 8.5 release_year 1968 plot "A mysterious stranger with a harmonica joins forces with a notorious desperado to protect a beautiful widow from a ruthless assassin working for the railroad." poster "https://m.media-amazon.com/images/M/MV5BZGI5MjBmYzYtMzJhZi00NGI1LTk3MzItYjBjMzcxM2U3MDdiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0064116" " +HSET "movie:297" title "Pod livnem pul" genre "Drama" votes 33 rating 6.6 release_year 2006 plot "Crimea Ukraine ca 1942. WWII. An elite squad of \"razvedchiks\" - army scouts - is sent deep behind German lines on a series of dangerous but vital reconnaissance missions for the Red Army." poster "https://m.media-amazon.com/images/M/MV5BNDlkZmUwMGEtMTJmNC00ODlmLTk3NjYtMDc1MjViOWRlM2YxXkEyXkFqcGdeQXVyNjExMjE5OTM@._V1_SX300.jpg" ibmdb_id "tt0902116" +HSET "movie:298" title "Un homme pressé" genre "Comedy" votes 956 rating 6.4 release_year 2018 plot "Based on the life of the former head of Peugeot Christian Stieff the film serves as a wake up call for those enslaved in the unrelenting arduousness of contemporary existence. A high ..." poster "https://m.media-amazon.com/images/M/MV5BZjU1MGQyN2MtYjIyMC00YTVkLTlmMWUtZThiOTJiOTQxYTVmXkEyXkFqcGdeQXVyMjY1OTM1Mzc@._V1_SX300.jpg" ibmdb_id "tt6948326" +HSET "movie:299" title "Pulp" genre "Comedy" votes 2033 rating 6.0 release_year 1972 plot "A seedy writer of sleazy pulp novels is recruited by a quirky reclusive ex-actor to help him write his biography at his house in Malta." poster "https://m.media-amazon.com/images/M/MV5BYjA1YTc5YTEtOWRkMy00MjY0LWFhN2YtM2JkYzFlOTcxMTFhL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0069134" +HSET "movie:301" title "Raiders of the Lost Ark" genre "Action" votes 844506 rating 8.4 release_year 1981 plot "In 1936 archaeologist and adventurer Indiana Jones is hired by the U.S. government to find the Ark of the Covenant before Adolf Hitler's Nazis can obtain its awesome powers." poster "https://m.media-amazon.com/images/M/MV5BMjA0ODEzMTc1Nl5BMl5BanBnXkFtZTcwODM2MjAxNA@@._V1_SX300.jpg" ibmdb_id "tt0082971" +HSET "movie:302" title "E.T. the Extra-Terrestrial" genre "Family" votes 353257 rating 7.8 release_year 1982 plot "A troubled child summons the courage to help a friendly alien escape Earth and return to his home world." poster "https://m.media-amazon.com/images/M/MV5BMTQ2ODFlMDAtNzdhOC00ZDYzLWE3YTMtNDU4ZGFmZmJmYTczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0083866" +HSET "movie:304" title "The Terminator" genre "Action" votes 768770 rating 8.0 release_year 1984 plot "In 1984 a human soldier is tasked to stop an indestructible cyborg killing machine both sent from 2029 from executing a young woman whose unborn son is the key to humanity's future salvation." poster "https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0088247" +HSET "movie:305" title "Back to the Future" genre "Adventure" votes 985123 rating 8.5 release_year 1985 plot "Marty McFly a 17-year-old high school student is accidentally sent thirty years into the past in a time-traveling DeLorean invented by his close friend the eccentric scientist Doc Brown." poster "https://m.media-amazon.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0088763" +HSET "movie:306" title "The Fly" genre "Drama" votes 151646 rating 7.5 release_year 1986 plot "A brilliant but eccentric scientist begins to transform into a giant man/fly hybrid after one of his experiments goes horribly wrong." poster "https://m.media-amazon.com/images/M/MV5BODcxMGMwOGEtMDUxMi00MzE5LTg4YTYtYjk1YjA4MzQxNTNlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0091064" +HSET "movie:307" title "The Princess Bride" genre "Adventure" votes 374688 rating 8.1 release_year 1987 plot "While home sick in bed a young boy's grandfather reads him the story of a farmboy-turned-pirate who encounters numerous obstacles enemies and allies in his quest to be reunited with his true love." poster "https://m.media-amazon.com/images/M/MV5BMGM4M2Q5N2MtNThkZS00NTc1LTk1NTItNWEyZjJjNDRmNDk5XkEyXkFqcGdeQXVyMjA0MDQ0Mjc@._V1_SX300.jpg" ibmdb_id "tt0093779" +HSET "movie:308" title "Grave of the Fireflies" genre "Animation" votes 213046 rating 8.5 release_year 1988 plot "A young boy and his little sister struggle to survive in Japan during World War II." poster "https://m.media-amazon.com/images/M/MV5BZmY2NjUzNDQtNTgxNC00M2Q4LTljOWQtMjNjNDBjNWUxNmJlXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_SX300.jpg" ibmdb_id "tt0095327" +HSET "movie:309" title "Indiana Jones and the Last Crusade" genre "Action" votes 660318 rating 8.2 release_year 1989 plot "In 1938 after his father Professor Henry Jones Sr. goes missing while pursuing the Holy Grail Professor Henry Indiana Jones Jr. finds himself up against Adolf Hitler's Nazis again to stop them from obtaining its powers." poster "https://m.media-amazon.com/images/M/MV5BMjNkMzc2N2QtNjVlNS00ZTk5LTg0MTgtODY2MDAwNTMwZjBjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg" ibmdb_id "tt0097576" +HSET "movie:310" title "Back to the Future Part III" genre "Adventure" votes 379333 rating 7.4 release_year 1990 plot "Stranded in 1955 Marty McFly learns about the death of Doc Brown in 1885 and must travel back in time to save him. With no fuel readily available for the DeLorean the two must figure how to escape the Old West before Emmett is murdered." poster "https://m.media-amazon.com/images/M/MV5BYjhlMGYxNmMtOWFmMi00Y2M2LWE5NWYtZTdlMDRlMGEzMDA3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0099088" +HSET "movie:311" title "The Silence of the Lambs" genre "Crime" votes 1194897 rating 8.6 release_year 1991 plot "A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer a madman who skins his victims." poster "https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" ibmdb_id "tt0102926" +HSET "movie:312" title "The Last of the Mohicans" genre "Action" votes 141645 rating 7.7 release_year 1992 plot "Three trappers protect the daughters of a British Colonel in the midst of the French and Indian War." poster "https://m.media-amazon.com/images/M/MV5BZDNiYmRkNDYtOWU1NC00NmMxLWFkNmUtMGI5NTJjOTJmYTM5XkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_SX300.jpg" ibmdb_id "tt0104691" +HSET "movie:313" title "The Nightmare Before Christmas" genre "Animation" votes 279774 rating 8.0 release_year 1993 plot "Jack Skellington king of Halloween Town discovers Christmas Town but his attempts to bring Christmas to his home causes confusion." poster "https://m.media-amazon.com/images/M/MV5BNWE4OTNiM2ItMjY4Ni00ZTViLWFiZmEtZGEyNGY2ZmNlMzIyXkEyXkFqcGdeQXVyMDU5NDcxNw@@._V1_SX300.jpg" ibmdb_id "tt0107688" +HSET "movie:314" title "The Shawshank Redemption" genre "Drama" votes 2217195 rating 9.3 release_year 1994 plot "Two imprisoned men bond over a number of years finding solace and eventual redemption through acts of common decency." poster "https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt0111161" +HSET "movie:315" title "The Usual Suspects" genre "Crime" votes 944220 rating 8.5 release_year 1995 plot "A sole survivor tells of the twisty events leading up to a horrific gun battle on a boat which began when five criminals met at a seemingly random police lineup." poster "https://m.media-amazon.com/images/M/MV5BYTViNjMyNmUtNDFkNC00ZDRlLThmMDUtZDU2YWE4NGI2ZjVmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" ibmdb_id "tt0114814" +HSET "movie:316" title "The Rock" genre "Action" votes 301597 rating 7.4 release_year 1996 plot "A mild-mannered chemist and an ex-con must lead the counterstrike when a rogue group of military men led by a renegade general threaten a nerve gas attack from Alcatraz against San Francisco." poster "https://m.media-amazon.com/images/M/MV5BZDJjOTE0N2EtMmRlZS00NzU0LWE0ZWQtM2Q3MWMxNjcwZjBhXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg" ibmdb_id "tt0117500" +HSET "movie:317" title "The Fifth Element" genre "Action" votes 416870 rating 7.7 release_year 1997 plot "In the colorful future a cab driver unwittingly becomes the central figure in the search for a legendary cosmic weapon to keep Evil and Mr. Zorg at bay." poster "https://m.media-amazon.com/images/M/MV5BZWFjYmZmZGQtYzg4YS00ZGE5LTgwYzAtZmQwZjQ2NDliMGVmXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_SX300.jpg" ibmdb_id "tt0119116" +HSET "movie:318" title "The Truman Show" genre "Comedy" votes 881234 rating 8.1 release_year 1998 plot "An insurance salesman discovers his whole life is actually a reality TV show." poster "https://m.media-amazon.com/images/M/MV5BMDIzODcyY2EtMmY2MC00ZWVlLTgwMzAtMjQwOWUyNmJjNTYyXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg" ibmdb_id "tt0120382" +HSET "movie:319" title "The Matrix" genre "Action" votes 1584862 rating 8.7 release_year 1999 plot "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers." poster "https://m.media-amazon.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" ibmdb_id "tt0133093" +HSET "movie:320" title "Meet the Parents" genre "Comedy" votes 300653 rating 7.0 release_year 2000 plot "Male nurse Greg Focker meets his girlfriend's parents before proposing but her suspicious father is every date's worst nightmare." poster "https://m.media-amazon.com/images/M/MV5BMGNlMGZiMmUtZjU0NC00MWU4LWI0YTgtYzdlNGVhZGU4NWZlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" ibmdb_id "tt0212338" +HSET "movie:321" title "The Elephant Man" genre "Biography" votes 208304 rating 8.1 release_year 1980 plot "A Victorian surgeon rescues a heavily disfigured man who is mistreated while scraping a living as a side-show freak. Behind his monstrous façade there is revealed a person of kindness intelligence and sophistication." poster "https://m.media-amazon.com/images/M/MV5BMDVjNjIwOGItNDE3Ny00OThjLWE0NzQtZTU3YjMzZTZjMzhkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0080678" +HSET "movie:322" title "Tarzan the Ape Man" genre "Adventure" votes 4988 rating 3.4 release_year 1981 plot "While on an African expedition with her father Jane Parker meets Tarzan and the two become fascinated by each other." poster "https://m.media-amazon.com/images/M/MV5BZGU5ZTUyZmMtZjExYy00MDAzLTljZTEtMGE0MWI5YWFiYTJkXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0083170" +HSET "movie:323" title "Honkytonk Man" genre "Comedy" votes 7591 rating 6.6 release_year 1982 plot "A boy with a music talent goes on a journey with his uncle for a stage concert." poster "https://m.media-amazon.com/images/M/MV5BZmNlMTE4MjktMTBjYi00Yjc5LWFlYjMtMDU5YWE4YzVhNTdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0084088" +HSET "movie:324" title "The Man with Two Brains" genre "Comedy" votes 23241 rating 6.4 release_year 1983 plot "A brain surgeon marries a femme fatale causing his life to turn upside down. Things go more awry when he falls in love with a talking brain." poster "https://m.media-amazon.com/images/M/MV5BZTY3NzkwMWQtMDU1Ny00OTBhLWIzYzAtMmMwZTFmMmU4NmI2XkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt0085894" +HSET "movie:325" title "Repo Man" genre "Action" votes 31939 rating 6.9 release_year 1984 plot "A young punk recruited by a car repossession agency finds himself in pursuit of a Chevrolet Malibu that is wanted for a $20000 bounty - and has something otherworldly stashed in its trunk." poster "https://m.media-amazon.com/images/M/MV5BNzdkMzVhNTgtMjlhNC00M2JkLWI3MzktYzdkNzYxNTk1NjcwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0087995" +HSET "movie:326" title "The Man with One Red Shoe" genre "Comedy" votes 14064 rating 5.7 release_year 1985 plot "A man picked randomly out of a crowd is made the target of CIA survelliance and pursuit." poster "https://m.media-amazon.com/images/M/MV5BMTJjMWQyODItYjUwNC00ZmVhLWFjOGYtMmI3MTRjYjRjY2U0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0089543" +HSET "movie:327" title "Soul Man" genre "Comedy" votes 7279 rating 5.2 release_year 1986 plot "To achieve his dream of attending Harvard a pampered teen poses as a young black man to receive a full scholarship." poster "https://m.media-amazon.com/images/M/MV5BY2M1ZTI5MGUtMDQ1ZS00ZmJkLWFmNjYtNWIzODE2MWI2ZGJmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0091991" +HSET "movie:328" title "The Running Man" genre "Action" votes 135639 rating 6.7 release_year 1987 plot "A wrongly convicted man must try to survive a public execution gauntlet staged as a game show." poster "https://m.media-amazon.com/images/M/MV5BMWU4NzA2OWYtNGQ0MS00YWNkLTg4M2YtZjlkZmY1YmJjMDE4XkEyXkFqcGdeQXVyNDc2NjEyMw@@._V1_SX300.jpg" ibmdb_id "tt0093894" +HSET "movie:329" title "Rain Man" genre "Drama" votes 454437 rating 8.0 release_year 1988 plot "Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country." poster "https://m.media-amazon.com/images/M/MV5BMzVjNzI4NzYtMjE4NS00M2IzLWFkOWMtOTYwMWUzN2ZlNGVjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0095953" +HSET "movie:331" title "Cadillac Man" genre "Comedy" votes 12739 rating 5.7 release_year 1990 plot "Joey gets 2 days to sell 12 cars to keep his job and keep his girlfriends happy. It gets worse. He's juggling 3 buyers when a guy with a machine gun crashes into the car dealership and takes everybody hostage." poster "https://m.media-amazon.com/images/M/MV5BNjk0NzQyODQ0OV5BMl5BanBnXkFtZTcwNzM2NjgyNA@@._V1_SX300.jpg" ibmdb_id "tt0099204" +HSET "movie:332" title "Harley Davidson and the Marlboro Man" genre "Action" votes 17743 rating 6.2 release_year 1991 plot "Forced by the imminent foreclosure of their friend's bar two lifelong buddies will decide to rob a bank's armoured car not knowing that its cargo is not money but a new street drug." poster "https://m.media-amazon.com/images/M/MV5BZmRiNGVjMGYtZDMzOC00ZmU2LTk0YWItZDczMGE3YzZjYTQwXkEyXkFqcGdeQXVyMjY3MjUzNDk@._V1_SX300.jpg" ibmdb_id "tt0102005" +HSET "movie:333" title "Encino Man" genre "Comedy" votes 35908 rating 5.8 release_year 1992 plot "When they find a frozen caveman in their back yard two high school outcasts thaw him and introduce him to modern life while he in turn gets them to actually enjoy life." poster "https://m.media-amazon.com/images/M/MV5BZjc5OGIzYTUtYjFkYy00NDcxLTgwMzUtNzRlMTJmZjZkZDQ4L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_SX300.jpg" ibmdb_id "tt0104187" +HSET "movie:334" title "Demolition Man" genre "Action" votes 151001 rating 6.7 release_year 1993 plot "A police officer is brought out of suspended animation in prison to pursue an old ultra-violent nemesis who is loose in a non-violent future society." poster "https://m.media-amazon.com/images/M/MV5BMDBmNDhjOTYtZWVlMC00YzUwLWIyZjEtYzFjMWM5OTdiZDJkXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_SX300.jpg" ibmdb_id "tt0106697" +HSET "movie:335" title "Spider-Man: The Animated Series" genre "Animation" votes 24829 rating 8.3 release_year 1994 plot "A young man with spider-like abilities fights crime as a superhero in New York City while trying to have a normal personal life." poster "https://m.media-amazon.com/images/M/MV5BMmQ1NzBlYmItNmZkZi00OTZkLTg5YTEtNTI5YjczZjk3Yjc1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0112175" +HSET "movie:338" title "Austin Powers: International Man of Mystery" genre "Adventure" votes 213984 rating 7.0 release_year 1997 plot "A 1960s secret agent is brought out of cryofreeze to oppose his greatest enemy in the 1990s where his social attitudes are glaringly out of place." poster "https://m.media-amazon.com/images/M/MV5BMTRhZTY0MDItY2I1Yi00MGE3LTk1ZDEtMjA0ZGZhNDQyNGU0XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_SX300.jpg" ibmdb_id "tt0118655" +HSET "movie:339" title "The Man in the Iron Mask" genre "Action" votes 151222 rating 6.5 release_year 1998 plot "The cruel King Louis XIV of France has a secret twin brother whom he keeps imprisoned. Can the twin be substituted for the real king?" poster "https://m.media-amazon.com/images/M/MV5BZjM2YzcxMmQtOTc2Mi00YjdhLWFlZjUtNmFmMDQzYzU2YTk5L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0120744" +HSET "movie:340" title "Man on the Moon" genre "Biography" votes 120205 rating 7.4 release_year 1999 plot "The life and career of legendary comedian Andy Kaufman." poster "https://m.media-amazon.com/images/M/MV5BNDI1Mjc3MzAtZDk0OS00OTZlLTlhZjktNzA3ODgwZGY2NWIwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0125664" +HSET "movie:341" title "Hollow Man" genre "Action" votes 118998 rating 5.8 release_year 2000 plot "When the leader of a team of scientists volunteers to be the test subject for their experiment in human invisibility he slowly unravels and turns against them with horrific consequences." poster "https://m.media-amazon.com/images/M/MV5BZTM1MjM2Y2QtOTMyOS00ZTE4LWFiZTEtMjBjMjg3NmE0ZjMxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0164052" +HSET "movie:342" title "The Man Who Wasn't There" genre "Crime" votes 100137 rating 7.5 release_year 2001 plot "A laconic chain-smoking barber blackmails his wife's boss and lover for money to invest in dry cleaning but his plan goes terribly wrong." poster "https://m.media-amazon.com/images/M/MV5BYjEwMGZkYTgtMTA5Ny00OWFhLTgzMWItYjhhMWUxYTIxNDgwXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_SX300.jpg" ibmdb_id "tt0243133" +HSET "movie:343" title "Spider-Man" genre "Action" votes 662219 rating 7.3 release_year 2002 plot "When bitten by a genetically modified spider a nerdy shy and awkward high school student gains spider-like abilities that he eventually must use to fight evil as a superhero after tragedy befalls his family." poster "https://m.media-amazon.com/images/M/MV5BZDEyN2NhMjgtMjdhNi00MmNlLWE5YTgtZGE4MzNjMTRlMGEwXkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_SX300.jpg" ibmdb_id "tt0145487" +HSET "movie:344" title "A Man Apart" genre "Action" votes 43248 rating 6.1 release_year 2003 plot "A man known as Diablo emerges to head a drug cartel after the previous leader is imprisoned." poster "https://m.media-amazon.com/images/M/MV5BMTk4NzEwNjk1N15BMl5BanBnXkFtZTYwNTEzNTk5._V1_SX300.jpg" ibmdb_id "tt0266465" +HSET "movie:345" title "Spider-Man 2" genre "Action" votes 521043 rating 7.3 release_year 2004 plot "Peter Parker is beset with troubles in his failing personal life as he battles a brilliant scientist named Doctor Otto Octavius." poster "https://m.media-amazon.com/images/M/MV5BMzY2ODk4NmUtOTVmNi00ZTdkLTlmOWYtMmE2OWVhNTU2OTVkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0316654" +HSET "movie:346" title "Cinderella Man" genre "Biography" votes 170693 rating 8.0 release_year 2005 plot "The story of James J. Braddock (Russell Crowe) a supposedly washed-up boxer who came back to become a champion and an inspiration in the 1930s." poster "https://m.media-amazon.com/images/M/MV5BODEyYmQxZjUtZGQ0NS00ZTAwLTkwOGQtNGY2NzEwMWE0MDc3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0352248" +HSET "movie:347" title "Inside Man" genre "Crime" votes 323827 rating 7.6 release_year 2006 plot "A police detective a bank robber and a high-power broker enter high-stakes negotiations after the criminal's brilliant heist spirals into a hostage situation." poster "https://m.media-amazon.com/images/M/MV5BYjc4MjA2ZDgtOGY3YS00NDYzLTlmNTEtYWMxMzcwZjgzYWNjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0454848" +HSET "movie:348" title "Spider-Man 3" genre "Action" votes 480601 rating 6.2 release_year 2007 plot "A strange black entity from another world bonds with Peter Parker and causes inner turmoil as he contends with new villains temptations and revenge." poster "https://m.media-amazon.com/images/M/MV5BYTk3MDljOWQtNGI2My00OTEzLTlhYjQtOTQ4ODM2MzUwY2IwXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_SX300.jpg" ibmdb_id "tt0413300" +HSET "movie:350" title "I Love You,Man" genre "Comedy" votes 189374 rating 7.0 release_year 2009 plot "Friendless Peter Klaven goes on a series of man-dates to find a Best Man for his wedding. But when his insta-bond with his new B.F.F. puts a strain on his relationship with his fiancée can the trio learn to live happily ever after?" poster "https://m.media-amazon.com/images/M/MV5BMTU4MjI5NTEyNV5BMl5BanBnXkFtZTcwNjQ1NTMzMg@@._V1_SX300.jpg" ibmdb_id "tt1155056" +HSET "movie:351" title "Iron Man 2" genre "Action" votes 688828 rating 7.0 release_year 2010 plot "With the world now aware of his identity as Iron Man Tony Stark must contend with both his declining health and a vengeful mad man with ties to his father's legacy." poster "https://m.media-amazon.com/images/M/MV5BMTM0MDgwNjMyMl5BMl5BanBnXkFtZTcwNTg3NzAzMw@@._V1_SX300.jpg" ibmdb_id "tt1228705" +HSET "movie:352" title "Last Man Standing" genre "Comedy" votes 27589 rating 7.6 release_year 2011 plot "A married father of three tries to maintain his manliness in a world increasingly dominated by women." poster "https://m.media-amazon.com/images/M/MV5BMDg1OTYxYWEtNWEyYi00OWJjLWI5MjktMTI1ZWE3YjBlMGQwXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_SX300.jpg" ibmdb_id "tt1828327" +HSET "movie:353" title "Man" genre "Animation" votes 214 rating 7.7 release_year 2012 plot "500000 years ago the modern man appears. He treats the animals and nature as a consumer with frivolity and cruelty and pridefully turns the world into a dumpster. However someone is watching." poster "https://m.media-amazon.com/images/M/MV5BZGJjOTBkZmQtYjZlNy00YmIwLTg3YmQtMjEwNTgyNTk3YjFiXkEyXkFqcGdeQXVyMzQ5MjE2ODI@._V1_SX300.jpg" ibmdb_id "tt3175218" +HSET "movie:354" title "Iron Man 3" genre "Action" votes 726152 rating 7.2 release_year 2013 plot "When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin he starts an odyssey of rebuilding and retribution." poster "https://m.media-amazon.com/images/M/MV5BMjE5MzcyNjk1M15BMl5BanBnXkFtZTcwMjQ4MjcxOQ@@._V1_SX300.jpg" ibmdb_id "tt1300854" +HSET "movie:21" title "The Amazing Spider-Man 2" genre "Action" votes 402143 rating 6.6 release_year 2014 plot "When New York is put under siege by Oscorp it is up to Spider-Man to save the city he swore to protect as well as his loved ones." poster "https://m.media-amazon.com/images/M/MV5BOTA5NDYxNTg0OV5BMl5BanBnXkFtZTgwODE5NzU1MTE@._V1_SX300.jpg" ibmdb_id "tt1872181" +HSET "movie:129" title "Ant-Man" genre "Action" votes 535953 rating 7.3 release_year 2015 plot "Armed with a super-suit with the astonishing ability to shrink in scale but increase in strength cat burglar Scott Lang must embrace his inner hero and help his mentor Dr. Hank Pym plan and pull off a heist that will save the world." poster "https://m.media-amazon.com/images/M/MV5BMjM2NTQ5Mzc2M15BMl5BanBnXkFtZTgwNTcxMDI2NTE@._V1_SX300.jpg" ibmdb_id "tt0478970" +HSET "movie:251" title "Swiss Army Man" genre "Comedy" votes 99283 rating 7.0 release_year 2016 plot "A hopeless man stranded on a deserted island befriends a dead body and together they go on a surreal journey to get home." poster "https://m.media-amazon.com/images/M/MV5BMTk0OTEyMjM1OF5BMl5BanBnXkFtZTgwMzMzODM4ODE@._V1_SX300.jpg" ibmdb_id "tt4034354" +HSET "movie:358" title "Spider-Man: Homecoming" genre "Action" votes 473931 rating 7.4 release_year 2017 plot "Peter Parker balances his life as an ordinary high school student in Queens with his superhero alter-ego Spider-Man and finds himself on the trail of a new menace prowling the skies of New York City." poster "https://m.media-amazon.com/images/M/MV5BNTk4ODQ1MzgzNl5BMl5BanBnXkFtZTgwMTMyMzM4MTI@._V1_SX300.jpg" ibmdb_id "tt2250912" +HSET "movie:359" title "Spider-Man: Into the Spider-Verse" genre "Animation" votes 302962 rating 8.4 release_year 2018 plot "Teen Miles Morales becomes Spider-Man of his reality crossing his path with five counterparts from other dimensions to stop a threat for all realities." poster "https://m.media-amazon.com/images/M/MV5BMjMwNDkxMTgzOF5BMl5BanBnXkFtZTgwNTkwNTQ3NjM@._V1_SX300.jpg" ibmdb_id "tt4633694" +HSET "movie:360" title "Spider-Man: Far from Home" genre "Action" votes 269287 rating 7.5 release_year 2019 plot "Following the events of Avengers: Endgame (2019) Spider-Man must step up to take on new threats in a world that has changed forever." poster "https://m.media-amazon.com/images/M/MV5BMGZlNTY1ZWUtYTMzNC00ZjUyLWE0MjQtMTMxN2E3ODYxMWVmXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_SX300.jpg" ibmdb_id "tt6320628" +HSET "movie:361" title "The Train" genre "Action" votes 129 rating 6.6 release_year 1970 plot "Hardworking capable honest and dedicated CBI inspector Shyam Kumar is assigned the case of bringing to justice the criminals behind the use of fake cheques to purchase commodities. The ..." poster "https://m.media-amazon.com/images/M/MV5BNWI3OWM4OWYtMTBlNC00ZDIzLTk1MzItMWI3NzJjNmFkNzIyXkEyXkFqcGdeQXVyMjU4NDY1ODA@._V1_SX300.jpg" ibmdb_id "tt0246286" +HSET "movie:362" title "Soul Train" genre "Music" votes 455 rating 7.9 release_year 1971 plot "Created by music impresario Don Cornelius Soul Train is an African-American focused music-dance television program that spanned 35 years primarily featuring performances by R&B soul funk pop and hip hop artists." poster "https://m.media-amazon.com/images/M/MV5BMmJiNmY3MTYtMzE2Mi00ZGIwLTg1YmItYmJjZWNlYTBhY2Y3XkEyXkFqcGdeQXVyODQ1NTk5OQ@@._V1_SX300.jpg" ibmdb_id "tt0161194" +HSET "movie:363" title "The Train Now Standing" genre "Comedy" votes 6 rating 5.8 release_year 1972 plot "N/A" poster "N/A" ibmdb_id "tt0068143" +HSET "movie:364" title "The Train Robbers" genre "Action" votes 4992 rating 6.5 release_year 1973 plot "A gunhand named Lane is hired by a widow Mrs. Lowe to find gold stolen by her husband so that she may return it and start fresh." poster "https://m.media-amazon.com/images/M/MV5BODYyMDUwYmYtMTRkMy00NTg5LThjZDEtNzVlNjMxYjk5MDlmXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0070825" +HSET "movie:365" title "The Gravy Train" genre "Action" votes 287 rating 6.9 release_year 1974 plot "Two rural West Virginia brothers leave home rob an armored car and become fugitives." poster "https://m.media-amazon.com/images/M/MV5BZmEzOWQxZTctOGM5MC00ZmExLTk2MzItMTk1M2FiNzAzOGQ3XkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0071575" +HSET "movie:366" title "Last Stop on the Night Train" genre "Horror" votes 2381 rating 6.2 release_year 1975 plot "A pair of psychotic hoodlums and an equally demented nymphomaniac woman terrorize two young girls on a train trip from Germany to Italy." poster "https://m.media-amazon.com/images/M/MV5BODEwOTIzODctYTYzNS00ZmM1LWExMzQtY2ViN2VlMDBlMzg4L2ltYWdlXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0073836" +HSET "movie:367" title "Train in the Snow" genre "Adventure" votes 920 rating 7.9 release_year 1976 plot "One class of school children from a small village make the trip to Zagreb. Teacher gets sick and the class is forced to go home without him. During their journey the train gets stuck in a ..." poster "https://m.media-amazon.com/images/M/MV5BYzYyMWQxN2MtNWJjZi00NjAwLTg4OTctYjc2NTA1MDdiOWYwL2ltYWdlXkEyXkFqcGdeQXVyNDg2NzE0MjE@._V1_SX300.jpg" ibmdb_id "tt0076893" +HSET "movie:368" title "Hitler's Last Train" genre "Drama" votes 367 rating 2.8 release_year 1977 plot "The SS puts a slutty nightclub singer in charge of a train car full of prostitutes whose services are reserved solely for senior Nazis." poster "https://m.media-amazon.com/images/M/MV5BOGQ5MGM5Y2ItOGU3NC00YjViLWJhYjItYjM4NGIyMzljNTNlXkEyXkFqcGdeQXVyMTQ2MjQyNDc@._V1_SX300.jpg" ibmdb_id "tt0076836" +HSET "movie:369" title "The Great Train Robbery" genre "Adventure" votes 14965 rating 6.9 release_year 1978 plot "England 1850s. A master criminal aims to rob a train of a large sum of gold. Security is incredibly tight and the task seems an impossible one. However he has a plan and just the right people to carry it out." poster "https://m.media-amazon.com/images/M/MV5BOWE4M2UwNWEtODFjOS00M2JiLTlhOGQtNTljZjI5ZTZlM2MzXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_SX300.jpg" ibmdb_id "tt0079240" +HSET "movie:370" title "Orphan Train" genre "Adventure" votes 182 rating 7.3 release_year 1979 plot "In 1854 there were living on the streets of New York City over 10000 abandoned orphaned children. Out of this desperate situation was born the orphan Train. This is a fictionalized account based on actual events." poster "https://m.media-amazon.com/images/M/MV5BMTg2NDQ1NzEwOV5BMl5BanBnXkFtZTcwNzc1NzMyMQ@@._V1_SX300.jpg" ibmdb_id "tt0079676" +HSET "movie:371" title "Terror Train" genre "Horror" votes 9028 rating 5.9 release_year 1980 plot "Three years after a prank that went terribly awry the six college students responsible are targeted by a masked killer at a New Year's Eve party aboard a moving train." poster "https://m.media-amazon.com/images/M/MV5BZjNkZmUwOGQtZGZjNC00MTIzLWFmYzItNmQ4ZTA0ZjJlYzM2XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0081617" +HSET "movie:372" title "Fire on East Train 34" genre "Action" votes 82 rating 6.7 release_year 1981 plot "" poster "https://m.media-amazon.com/images/M/MV5BN2JiMmQxODUtZjg5MS00MjA0LTg4YzUtYmE3NGIwM2YxMDNhXkEyXkFqcGdeQXVyMjQ0MzY3ODc@._V1_SX300.jpg" ibmdb_id "tt0081967" +HSET "movie:374" title "The Christmas Tree Train" genre "Animation" votes 42 rating 6.9 release_year 1983 plot "Bear cub Buttons and his fox companion Rusty take a ride on a freight train bound for the city. Now they're lost and must get home before Christmas but first they gotta dodge people cars and other dangers." poster "https://m.media-amazon.com/images/M/MV5BOTVmOGJhMDAtM2RlYi00ZjY2LTlhOWItY2VlMDBmZTI1YjFmXkEyXkFqcGdeQXVyNjg5MzE4NTA@._V1_SX300.jpg" ibmdb_id "tt0270281" +HSET "movie:375" title "Night Train to Murder" genre "Comedy" votes 133 rating 5.4 release_year 1984 plot "When Eric's niece Kathy becomes one of the heirs to a considerable fortune her life (and those of the other heirs) is placed in jeopardy by the actions of a mysterious inter-loper." poster "https://m.media-amazon.com/images/M/MV5BYjBjM2Q3YTQtY2QxNS00OTQyLTlmYWUtNDNmN2U1YzVlMzYwXkEyXkFqcGdeQXVyNTgwNTk5MDU@._V1_SX300.jpg" ibmdb_id "tt0124809" +HSET "movie:376" title "Runaway Train" genre "Action" votes 25397 rating 7.2 release_year 1985 plot "Two escaped convicts and a female railway worker find themselves trapped on a train with no brakes and nobody driving." poster "https://m.media-amazon.com/images/M/MV5BODQyYWU1NGUtNjEzYS00YmNhLTk1YWEtZDdlZGQzMTI4MTI1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0089941" +HSET "movie:378" title "Throw Momma from the Train" genre "Comedy" votes 31893 rating 6.3 release_year 1987 plot "A bitter ex-husband wants his former spouse dead. A put-upon momma's boy wants his mother dead. Who will pull it off?" poster "https://m.media-amazon.com/images/M/MV5BOGI0ODZhMDYtYjNhYy00MjZlLWFiMzQtMTdkYjM3MWM4YWRkXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_SX300.jpg" ibmdb_id "tt0094142" +HSET "movie:379" title "Train" genre "Action" votes 98 rating 6.6 release_year 1988 plot "The film is about a train carrying fuel for the army in 1979 during the revolution movement in Iran but with the help of revolutionary forces the train is redirected to a cold region of the..." poster "https://m.media-amazon.com/images/M/MV5BMDk2ZWU0ZTUtZDY5Yy00ZWQwLWI5MDUtZTVkNGMzM2YzZWZkXkEyXkFqcGdeQXVyMzc0Nzc4MDk@._V1_SX300.jpg" ibmdb_id "tt1600756" +HSET "movie:380" title "Mystery Train" genre "Comedy" votes 23961 rating 7.6 release_year 1989 plot "Three stories are connected by a Memphis hotel and the spirit of Elvis Presley." poster "https://m.media-amazon.com/images/M/MV5BNjcyMDYyM2ItYzFlNy00N2FmLTljNTAtODllZjZhNWIwMTVlXkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_SX300.jpg" ibmdb_id "tt0097940" +HSET "movie:381" title "The Gravy Train ()" genre "Comedy" votes 71 rating 8.1 release_year 1990 plot "" poster "https://m.media-amazon.com/images/M/MV5BMDBlZjZkOTQtNzU5YS00OTk1LTg2MGUtMGY5ZGZhNDBmMGMyXkEyXkFqcGdeQXVyMzY2ODUzMjA@._V1_SX300.jpg" ibmdb_id "tt0099698" +HSET "movie:382" title "Zombie and the Ghost Train" genre "Comedy" votes 830 rating 7.3 release_year 1991 plot "Antti Zombie Autiomaa does two things well: play the bass guitar and drink. After several months' sleeping on the streets of Istanbul he returns to Helsinki where he's called into the ..." poster "https://m.media-amazon.com/images/M/MV5BNTkyNzAyODEzNF5BMl5BanBnXkFtZTcwNTQ1ODI4MQ@@._V1_SX300.jpg" ibmdb_id "tt0103337" +HSET "movie:384" title "Night Train to Venice" genre "Mystery" votes 814 rating 2.2 release_year 1993 plot "The Orient Express on it's night trip from Munich to Venice is full because of the beginning of the carnival in Venice. Between the passengers are a journalist an actress and her ..." poster "https://m.media-amazon.com/images/M/MV5BMTI4NTUwMDQ5N15BMl5BanBnXkFtZTcwMDQ4ODQyMQ@@._V1_SX300.jpg" ibmdb_id "tt0107683" +HSET "movie:386" title "Money Train" genre "Action" votes 37546 rating 5.7 release_year 1995 plot "A vengeful New York City transit cop decides to steal a trainload of subway fares. His foster brother a fellow cop tries to protect him." poster "https://m.media-amazon.com/images/M/MV5BYWZlMzIwYzYtOWZiMi00ZGEzLWFhYmQtNmEzYzJlNDg1NjhjXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0113845" +HSET "movie:387" title "The Night Train" genre "Mystery" votes 115 rating 5.2 release_year 1996 plot "Young Ari Nykänen joins a board of inquiry investigating a mysterious freight train accident which at first seems just a case of vandalism. Ari delves deeper into the case and discovers a ..." poster "N/A" ibmdb_id "tt0118212" +HSET "movie:388" title "Train of Shadows" genre "Drama" votes 498 rating 7.3 release_year 1997 plot "A silent homage to the origins of cinema recreating the apparent disappearance of a French photographer in the 1920s. Experimental." poster "https://m.media-amazon.com/images/M/MV5BYWZlOWQ2ODAtNTAzYi00ZTY2LThmMWYtYmI5YTUwZDYzZTVkXkEyXkFqcGdeQXVyNjU1MDMxNDE@._V1_SX300.jpg" ibmdb_id "tt0120371" +HSET "movie:389" title "Train of Life" genre "Comedy" votes 8490 rating 7.7 release_year 1998 plot "In 1941 the inhabitants of a small Jewish village in Central Europe organize a fake deportation train so that they can escape the Nazis and flee to Palestine." poster "https://m.media-amazon.com/images/M/MV5BMTM0OTEzMDc4OF5BMl5BanBnXkFtZTYwNDMwNTM5._V1_SX300.jpg" ibmdb_id "tt0170705" +HSET "movie:390" title "Atomic Train" genre "Action" votes 2089 rating 4.7 release_year 1999 plot "A train filled with atomic devices threatens to destroy the city of Denver. John Serger (an NTSB agent) has to prevent this from happening" poster "https://m.media-amazon.com/images/M/MV5BMTU0MDI4ODMzNF5BMl5BanBnXkFtZTcwNTEyODAwMQ@@._V1_SX300.jpg" ibmdb_id "tt0144039" +HSET "movie:391" title "Train Ride" genre "Drama" votes 227 rating 4.5 release_year 2000 plot "Three college seniors who are thinking about nothing but graduation and going out with a bang from college harshly discover that a culmination of four years of hard work can lead to a ..." poster "https://m.media-amazon.com/images/M/MV5BMTk2NDYzODI1MV5BMl5BanBnXkFtZTcwMzcxODgyMQ@@._V1_SX300.jpg" ibmdb_id "tt0161003" +HSET "movie:392" title "Train Quest" genre "Adventure" votes 69 rating 5.7 release_year 2001 plot "A fifteen-year-old model train geek's date with his dream girl suddenly derails when a sinister hobby store owner shrinks and imprisons them in an elaborate unearthly train set." poster "https://m.media-amazon.com/images/M/MV5BMTgyOTQxODg3NV5BMl5BanBnXkFtZTcwNzg5ODU5Mw@@._V1_SX300.jpg" ibmdb_id "tt0279479" +HSET "movie:393" title "Man on the Train" genre "Crime" votes 6643 rating 7.2 release_year 2002 plot "A bank robber arrives to do a job in a small French town and strikes up a friendship with a retired poetry teacher." poster "https://m.media-amazon.com/images/M/MV5BNWFmY2U5M2QtNTA0YS00MjdjLWJkZGItMjkzOWU3OTY4ZGU5XkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt0301414" +HSET "movie:394" title "Death Train" genre "Action" votes 286 rating 2.9 release_year 2003 plot "A man is supposed to guard a shipment of diamonds being sent by rail. But a man robs the train and kills the men guarding the diamonds. The robbers derail the train and hope to get away ..." poster "https://m.media-amazon.com/images/M/MV5BMTQ2NTk4OTY0N15BMl5BanBnXkFtZTcwODA0OTYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0297076" +HSET "movie:395" title "Howard Zinn: You Can't Be Neutral on a Moving Train" genre "Documentary" votes 752 rating 7.4 release_year 2004 plot "The life and times of Howard Zinn: the historian activist and author of several classics including A Peoples History of the United States. Archival footage and commentary by friend colleagues and Zinn himself." poster "https://m.media-amazon.com/images/M/MV5BMTkyNTQzNjE2Nl5BMl5BanBnXkFtZTcwNjA4MzcyMQ@@._V1_SX300.jpg" ibmdb_id "tt0416825" +HSET "movie:397" title "Snakes on a Train" genre "Action" votes 2161 rating 2.2 release_year 2006 plot "A Zombie curse is placed upon a woman which causes her to have living snakes inside her. Brujo who is looking after her attempts to take her to Los Angeles on the train. After several ..." poster "https://m.media-amazon.com/images/M/MV5BMjA5OTgyMzE0Nl5BMl5BanBnXkFtZTgwMDczNjg4MDE@._V1_SX300.jpg" ibmdb_id "tt0843873" +HSET "movie:398" title "The Train: Some Lines Should Never Be Crossed..." genre "Crime" votes 953 rating 4.3 release_year 2007 plot "When two married business executives having an affair are blackmailed by a violent criminal the two must turn the tables on him to save their families." poster "https://m.media-amazon.com/images/M/MV5BN2JmYzc1NGUtY2Y3NS00ZDIyLThkMjMtNDk0Y2FkNmQwMDY3XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_SX300.jpg" ibmdb_id "tt0995827" +HSET "movie:399" title "Train 2" genre "Horror" votes 5712 rating 4.7 release_year 2008 plot "In Europe a group of American college athletes unknowingly board a train that will become one deadly ride." poster "https://m.media-amazon.com/images/M/MV5BNzQ0ZDM3MjUtZTAwNi00ZWEyLWE5NWEtOTI4OWFlYjI5YTk1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt1015474" +HSET "movie:400" title "Night Train" genre "Crime" votes 8735 rating 5.7 release_year 2009 plot "Two passengers and the conductor discover that a man has passed away on their night train cabin. They come across a mysterious object in a box the dead man was carrying and they all wish to keep for themselves." poster "https://m.media-amazon.com/images/M/MV5BMTQxMjMzNDYxMV5BMl5BanBnXkFtZTcwMzY5NjU1Mg@@._V1_SX300.jpg" ibmdb_id "tt1020055" +HSET "movie:403" title "The Drudgery Train" genre "Comedy" votes 301 rating 6.9 release_year 2012 plot "Kitamichi is a 19-year-old labor worker. He develops feelings for Yasuko who works in a used used bookstore but he has never had a girlfriend. He also befriends Kusakabe but jealousy soon threatens their friendship." poster "https://m.media-amazon.com/images/M/MV5BMjkyNzU3ZGQtYTQ5NC00ZThiLTkwZmUtOWM5M2UyNmQ3NGJmXkEyXkFqcGdeQXVyNjUwMTQ4NjE@._V1_SX300.jpg" ibmdb_id "tt2127305" +HSET "movie:203" title "The Girl on the Train" genre "Crime" votes 160200 rating 6.5 release_year 2016 plot "A divorcee becomes entangled in a missing persons investigation that promises to send shockwaves throughout her life." poster "https://m.media-amazon.com/images/M/MV5BNzFlMjA0ZmUtZWI0Mi00ZGJkLTlmMmYtZmE1ODZiMjhjMGM0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt3631112" +HSET "movie:408" title "Deidra & Laney Rob a Train" genre "Comedy" votes 1443 rating 6.1 release_year 2017 plot "After their mother ends up in jail two sisters turn to train robbery in order to support their family." poster "https://m.media-amazon.com/images/M/MV5BMjAxNzA0NTQxMl5BMl5BanBnXkFtZTgwMDk2NjQ3MTI@._V1_SX300.jpg" ibmdb_id "tt4144332" +HSET "movie:410" title "How to Train Your Dragon: The Hidden World" genre "Animation" votes 88326 rating 7.5 release_year 2019 plot "When Hiccup discovers Toothless isn't the only Night Fury he must seek 'The Hidden World' a secret Dragon Utopia before a hired tyrant named Grimmel finds it first." poster "https://m.media-amazon.com/images/M/MV5BMjIwMDIwNjAyOF5BMl5BanBnXkFtZTgwNDE1MDc2NTM@._V1_SX300.jpg" ibmdb_id "tt2386490" +HSET "movie:411" title "Jazz Boat" genre "Comedy" votes 56 rating 6.3 release_year 1960 plot "An electrician is summoned to assist a gang in a big robbery." poster "https://m.media-amazon.com/images/M/MV5BNDhmZWYxMjEtOWNiYi00OTFmLWEwODUtN2RmYzA0OTE1YzQ1XkEyXkFqcGdeQXVyMjIyNjE2NA@@._V1_SX300.jpg" ibmdb_id "tt0053963" +HSET "movie:412" title "Mississippi Slow Boat" genre "Animation" votes 8 rating 4.4 release_year 1961 plot "N/A" poster "N/A" ibmdb_id "tt0151595" +HSET "movie:413" title "The Girl on the Boat" genre "Comedy" votes 148 rating 5.9 release_year 1962 plot "The zany Wisdom,put in charge of his aunt's cottage during an English summer in the roaring twenties,decides to invite several of his friends to his posh new digs. Among the invitees is ..." poster "https://m.media-amazon.com/images/M/MV5BMTIyMjM5MTU2MV5BMl5BanBnXkFtZTcwMjkwMDUyMQ@@._V1_SX300.jpg" ibmdb_id "tt0056022" +HSET "movie:415" title "The Glass Bottom Boat" genre "Comedy" votes 4030 rating 6.5 release_year 1966 plot "After a series of misunderstandings,the head of an aerospace research laboratory begins to suspect his new girlfriend is a Russian spy." poster "https://m.media-amazon.com/images/M/MV5BYzdiMWViOTQtNzQxNS00ZmNlLWEwNjMtYjY2NDcwNTljOGY5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_SX300.jpg" ibmdb_id "tt0060463" +HSET "movie:416" title "My Dream Boat" genre "Drama" votes 10 rating 6.9 release_year 1967 plot "The film tells a complicated love story. Carmen with Ke,Xiang Yi and Jiyuan. They start as a friend,but somehow a love triangle occur,and the outcome is very tragic." poster "https://m.media-amazon.com/images/M/MV5BNmJlY2FjYjEtZDQ1NS00MmM1LTg0MzAtNzgxNjQxZWM2OGU4XkEyXkFqcGdeQXVyMjAyNTEwOQ@@._V1_SX300.jpg" ibmdb_id "tt0185232" +HSET "movie:417" title "Small Boat Navy in Vietnam" genre "Short" votes 5 rating 8.4 release_year 1968 plot "N/A" poster "N/A" ibmdb_id "tt0282984" +HSET "movie:418" title "Ballerina on the Boat" genre "Animation" votes 124 rating 7.1 release_year 1969 plot "A Graceful passenger charmes the seamen with a marvellous dance. And when the storm comes,she reaches coast in a jump-weed and helps the ship to throw an anchor and rescues it from destruction." poster "N/A" ibmdb_id "tt0480343" +HSET "movie:419" title "The Boat on the Grass" genre "Drama" votes 250 rating 5.0 release_year 1971 plot "Trotz ihrer sozialen Differenzen sind der arme David und der reiche Olivier die besten Freunde. David hat in Oliviers Pariser Appartement die junge Eleanore untergebracht. Als Olivier sie ..." poster "https://m.media-amazon.com/images/M/MV5BNDY3NjU3MzEtMGMxNC00ZjkwLTkzZGEtNDQzZGQ4ZDcwYzVlXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0065454" +HSET "movie:421" title "Why Rock the Boat?" genre "Comedy" votes 18 rating 7.1 release_year 1974 plot "A young naive reporter romances a female reporter who is quietly organizing a journalist union and joins her cause." poster "https://m.media-amazon.com/images/M/MV5BYWZmMGFmYmUtMzVhOC00ODkwLTg2MzItMjE3ODhmZmYxN2RhXkEyXkFqcGdeQXVyMDAyMTY3Nw@@._V1_SX300.jpg" ibmdb_id "tt0072406" +HSET "movie:422" title "Three Men in a Boat" genre "Comedy" votes 268 rating 7.3 release_year 1975 plot "One hot June day,three friends decide there is nothing they would like to do more than to get away from London. A boating holiday with lots of fresh air and exercise would be just the very..." poster "https://m.media-amazon.com/images/M/MV5BNGRiNTQ2ZDQtZjg0YS00MjJjLTgxN2EtNTEwMmZlMTJkY2MxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMzcyODA0MDM@._V1_SX300.jpg" ibmdb_id "tt0073803" +HSET "movie:423" title "When the Boat Comes In" genre "Drama" votes 306 rating 8.4 release_year 1976 plot "Set in Gallowshields on Tyneside between the 2 World Wars,this story follows the life of ex-sergeant Jack Ford and the Seaton family as they deal with the aftermath of the Great War,the Great 1920s Depression and trade union activists." poster "https://m.media-amazon.com/images/M/MV5BMGY0NmY0MWEtNTk3YS00YjJjLWJkZmItMGM0MTEzZjU2NGE4XkEyXkFqcGdeQXVyMTk0MjQ3Nzk@._V1_SX300.jpg" ibmdb_id "tt0074072" +HSET "movie:424" title "The Love Boat" genre "Comedy" votes 8263 rating 6.1 release_year 1977 plot "The romantic and comic tales of the passengers and crew of the cruise ship,Pacific Princess." poster "https://m.media-amazon.com/images/M/MV5BMTY0NTYwMDg1MV5BMl5BanBnXkFtZTcwMjAyMjE2MQ@@._V1_SX300.jpg" ibmdb_id "tt0075529" +HSET "movie:425" title "Patrol Boat" genre "Action" votes 27 rating 8.5 release_year 1979 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMTU2NjkyNzY5OF5BMl5BanBnXkFtZTgwNTczMzU4MTE@._V1_SX300.jpg" ibmdb_id "tt0139788" +HSET "movie:428" title "Boat People" genre "Drama" votes 733 rating 7.6 release_year 1982 plot "A Japanese photojournalist revisits Vietnam after the Liberation and learns harsh truths about its regime and its 'New Economic Zones'." poster "https://m.media-amazon.com/images/M/MV5BNDhhOTY2MGYtZDhjMy00YjJhLThlNDAtMjAyZDM0ODI1YTljXkEyXkFqcGdeQXVyNzI1NzMxNzM@._V1_SX300.jpg" ibmdb_id "tt0084807" +HSET "movie:434" title "The Show Boat Story" genre "Documentary" votes 14 rating 7.6 release_year 1989 plot "A documentary detailing the writing and premiere production of the famous Kern-Hammerstein musical,as well as the recording of the landmark 1988 EMI 3-CD 'authentic' version,the first ..." poster "N/A" ibmdb_id "tt0283594" +HSET "movie:435" title "Utolsó hajó" genre "Short" votes 31 rating 7.1 release_year 1990 plot "The last ship (Utolsó hajó) is leaving the quay. Sirens are sounding." poster "N/A" ibmdb_id "tt0264139" +HSET "movie:436" title "Ferry Boat Fred" genre "Animation" votes 10 rating 8.0 release_year 1992 plot "N/A" poster "N/A" ibmdb_id "tt0343263" +HSET "movie:437" title "The Last U-Boat" genre "Drama" votes 250 rating 6.2 release_year 1993 plot "In 1945 an advanced type of German U-boat loaded with atomic technology en route for Japan and escorted by Japanese naval officers receives news that Germany has capitulated." poster "https://m.media-amazon.com/images/M/MV5BMjk2NjcwOTc1NV5BMl5BanBnXkFtZTcwOTM0NjM0MQ@@._V1_SX300.jpg" ibmdb_id "tt0100012" +HSET "movie:440" title "Fresh Off the Boat" genre "Drama" votes 7 rating 6.0 release_year 1997 plot "A romantic comedy about Johnny,a handsome waiter with a wild imagination. In his attempt to seduce confident,yet cynical Anna he convinces he that he is an immigrant terrorist." poster "https://m.media-amazon.com/images/M/MV5BMTg5ODc2MDM5N15BMl5BanBnXkFtZTcwODcwODM2MQ@@._V1_SX300.jpg" ibmdb_id "tt0154516" +HSET "movie:441" title "Love Boat: The Next Wave" genre "Comedy" votes 349 rating 4.7 release_year 1998 plot "Retired Navy commander Jim Kennedy is divorced and has a teenage son. He takes over the famous cruise ship,where he and his crew tackle various scenarios with different passengers every ..." poster "https://m.media-amazon.com/images/M/MV5BMTYxMjM3MzU2MV5BMl5BanBnXkFtZTcwNTU3NzAxOA@@._V1_SX300.jpg" ibmdb_id "tt0143050" +HSET "movie:442" title "Row Your Boat" genre "Drama" votes 299 rating 5.9 release_year 1999 plot "Jamey Meadows is a convict just released from prison,hoping to live a straight life on the outside. His brother tries to reenlist him into the crime world,but Jamey resists,getting a job..." poster "https://m.media-amazon.com/images/M/MV5BMTUyNzE4Njc1N15BMl5BanBnXkFtZTcwOTk0MjUyMQ@@._V1_SX300.jpg" ibmdb_id "tt0147287" +HSET "movie:443" title "Entertainment Tonight Presents: The Love Boat - Secrets from the Ship" genre "Documentary" votes 6 rating 4.2 release_year 2000 plot "N/A" poster "N/A" ibmdb_id "tt0488531" +HSET "movie:444" title "Is Harry on the Boat?" genre "Drama" votes 528 rating 6.5 release_year 2001 plot "The lives of reps on the island of Ibiza." poster "https://m.media-amazon.com/images/M/MV5BMTY0NzM5ODc0MF5BMl5BanBnXkFtZTcwODYyODAwMQ@@._V1_SX300.jpg" ibmdb_id "tt0280779" +HSET "movie:445" title "Boat Trip" genre "Comedy" votes 29639 rating 4.9 release_year 2002 plot "Two straight men mistakenly end up on a 'gays only' cruise." poster "https://m.media-amazon.com/images/M/MV5BMjAxNzQ4MjczMV5BMl5BanBnXkFtZTYwNjEzNTk5._V1_SX300.jpg" ibmdb_id "tt0285462" +HSET "movie:448" title "Haunted Boat" genre "Drama" votes 612 rating 2.0 release_year 2005 plot "HAUNTED BOAT is a mystical,mind-twisting psychological horror film about six teenagers going on a boat trip and getting lost in parallel dimensions where they have to face their greatest fears." poster "https://m.media-amazon.com/images/M/MV5BNzU1MTAxNDE1MV5BMl5BanBnXkFtZTYwNjQyODg2._V1_SX300.jpg" ibmdb_id "tt0428081" +HSET "movie:450" title "Boat" genre "Short" votes 1002 rating 5.8 release_year 2007 plot "A journey into night." poster "https://m.media-amazon.com/images/M/MV5BN2U1MTVkNTktOTg2Yi00YTQ4LTgxMTUtMjg3MTU5MDdmODI5XkEyXkFqcGdeQXVyMjExNjgyMTc@._V1_SX300.jpg" ibmdb_id "tt0940502" +HSET "movie:452" title "Boat (2)" genre "Drama" votes 103 rating 6.0 release_year 2009 plot "A drama centered on two men involved in the smuggling industry in Japan." poster "https://m.media-amazon.com/images/M/MV5BMTUxNTEyMDIzN15BMl5BanBnXkFtZTgwMzI2MjA2MDE@._V1_SX300.jpg" ibmdb_id "tt1242533" +HSET "movie:453" title "Attach Boat to Motor" genre "Short" votes 6 rating 5.2 release_year 2010 plot "Follow the events of an otherwise ordinary day,during which one boy makes a decision to follow his own path." poster "N/A" ibmdb_id "tt1922553" +HSET "movie:454" title "The Boat" genre "Adventure" votes 3872 rating 7.3 release_year 2011 plot "A global cataclysm,caused by a fatal accident in Geneva (Switzerland) during the implementation of the particle accelerator will lead to crew of vessel-school Estrella Polar to live the adventure of their lives." poster "https://m.media-amazon.com/images/M/MV5BY2U4ZTYwMjgtZjRmNS00MzYwLWI2NmQtYmQ4YmE3MTcxOWE3XkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt1788634" +HSET "movie:455" title "Paper Boat" genre "Drama" votes 400 rating 7.2 release_year 2012 plot "Tidal relationship between two human beings,Kugy and Keenan. Kugy is a tomboyish girl,cheerful,and who believes that she is the agent of Neptune." poster "https://m.media-amazon.com/images/M/MV5BNjNhYTRlZTYtZjYwZi00MDFiLTk5MTItN2YyZDcyNzM3ZTQwXkEyXkFqcGdeQXVyMzgxNTk0NTE@._V1_SX300.jpg" ibmdb_id "tt2343134" +HSET "movie:456" title "Old Jack's Boat" genre "Family" votes 53 rating 7.5 release_year 2013 plot "Cbeebies TV show featuring live action and animation. A ship captain tells of his sea adventures with his dog Salty" poster "https://m.media-amazon.com/images/M/MV5BNTQ2NTI5ZWUtMTM4Yy00M2MyLWEyZTMtMDA2NGI5MjQ4YWYzXkEyXkFqcGdeQXVyMTY1MjU3OQ@@._V1_SX300.jpg" ibmdb_id "tt2645782" +HSET "movie:459" title "In the Same Boat" genre "Documentary" votes 30 rating 8.4 release_year 2016 plot "In The Same Boat is an artistic and sophisticated analysis of the effects of globalisation on the world,which presents an optimistic argument for the future of the planet. Guided by some ..." poster "https://m.media-amazon.com/images/M/MV5BZGNhZWYyNTgtNDkwNi00N2Y4LWJmYjEtYzQzMDMzY2NmZTE1XkEyXkFqcGdeQXVyMjU1MTY3NDQ@._V1_SX300.jpg" ibmdb_id "tt5545582" +HSET "movie:460" title "Dream Boat" genre "Documentary" votes 1282 rating 5.3 release_year 2017 plot "Once a year,the Dream Boat sets sail - a cruise only for gay men. Far from their families and political restrictions,we follow five men from five countries on a quest for their dreams. ..." poster "https://m.media-amazon.com/images/M/MV5BYmM2NDhjYTQtMTExZi00OThlLTkzYzItNzNmODQxM2IyMjg2XkEyXkFqcGdeQXVyNjc2NTI1OTc@._V1_SX300.jpg" ibmdb_id "tt6627466" +HSET "movie:461" title "The Boat ()" genre "Mystery" votes 1438 rating 5.4 release_year 2018 plot "A solo sailor is locked inside the head of a sailboat which is under steam on autopilot." poster "https://m.media-amazon.com/images/M/MV5BMjA5MDQ1MTc5Ml5BMl5BanBnXkFtZTgwNTk5MjAzNjM@._V1_SX300.jpg" ibmdb_id "tt7468616" +HSET "movie:462" title "Same Boat" genre "Comedy" votes 20 rating 4.3 release_year 2019 plot "A time traveling assassin inadvertently falls in love with his target aboard a cruise ship." poster "https://m.media-amazon.com/images/M/MV5BZjcxM2Q3YzItZDFmNi00NTcwLWEyODMtNzc4M2ZkZWM5MDJhXkEyXkFqcGdeQXVyMjUxMTAzNzE@._V1_SX300.jpg" ibmdb_id "tt9663666" +HSET "movie:463" title "The Boy and the Pirates" genre "Family" votes 275 rating 5.1 release_year 1960 plot "A young boy is magically transported back in time to a pirate ship on the high seas." poster "https://m.media-amazon.com/images/M/MV5BMTY3MTE4NDM2OV5BMl5BanBnXkFtZTgwMTU4Nzk1MDE@._V1_SX300.jpg" ibmdb_id "tt0053672" +HSET "movie:464" title "The Errand Boy" genre "Comedy" votes 1680 rating 6.4 release_year 1961 plot "Paramutual Pictures wants to know where all the money is going,so they hire Morty to be their spy. Morty works for Mr. Sneak and gets a job in the mail room so that he can have access to ..." poster "https://m.media-amazon.com/images/M/MV5BNWVmYWYxMTAtYjg3Mi00YjAwLTkwNWEtZWU5MzhkMWZhZTE2XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_SX300.jpg" ibmdb_id "tt0054853" +HSET "movie:465" title "Naughty Boy" genre "Comedy" votes 348 rating 5.7 release_year 1962 plot "Pritam works as a Book-keeper in an Export Import Firm and does not have a roof to live under. When he goes to search for accommodation,he runs into a friend,Jagdish,who takes him to a ..." poster "https://m.media-amazon.com/images/M/MV5BMzI5YzRmODUtMWE1Zi00ZjkwLWI3ZGQtYTJkNjFiZGVjZmZlXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_SX300.jpg" ibmdb_id "tt0268489" +HSET "movie:466" title "A Boy Ten Feet Tall" genre "Adventure" votes 369 rating 7.2 release_year 1963 plot "Ten year old Sammy travels 4500 miles on his own from the Suez Canal to Durban,South Africa." poster "N/A" ibmdb_id "tt0056886" +HSET "movie:467" title "Astro Boy" genre "Animation" votes 37 rating 7.2 release_year 1964 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMTg4NjY4NDA3MF5BMl5BanBnXkFtZTcwNDE2NzMzMQ@@._V1_SX300.jpg" ibmdb_id "tt0185719" +HSET "movie:468" title "Boy and Bicycle" genre "Short" votes 941 rating 5.9 release_year 1965 plot "A teenage boy plays truant from school,and spends the day riding around the town and the deserted beach on his bicycle,letting his mind wander as he imagines he is the only person in the world." poster "https://m.media-amazon.com/images/M/MV5BNDkyMWUyMTMtZWQ5NC00MTgzLThmNDktY2Q4NDU3NDVlNmNhXkEyXkFqcGdeQXVyNjE4MDMwMjk@._V1_SX300.jpg" ibmdb_id "tt0346645" +HSET "movie:469" title "You're a Big Boy Now" genre "Comedy" votes 1237 rating 6.2 release_year 1966 plot "Post-teen virgin moves to New York City,falls for a cold-hearted beauty,then finds true love with a loyal lass." poster "https://ia.media-imdb.com/images/M/MV5BMTQ4NTQzNzY3MV5BMl5BanBnXkFtZTgwNjQyNjIzMTE@._V1_SX300.jpg" ibmdb_id "tt0061209" +HSET "movie:470" title "Pretty Boy and Rosa" genre "Comedy" votes 88 rating 6.7 release_year 1967 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNTk3MjVhZmUtOTc4YS00MzBkLTllYzMtYTEzNDM1MTdiMWQ5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_SX300.jpg" ibmdb_id "tt0124130" +HSET "movie:471" title "The Little Drummer Boy" genre "Animation" votes 4212 rating 7.0 release_year 1968 plot "An orphan drummer boy who hated humanity finds his life changed forever when he meets three wise men on route to Bethlehem." poster "https://m.media-amazon.com/images/M/MV5BMTU0MDY4NjAwMl5BMl5BanBnXkFtZTcwODY4NTYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0063230" +HSET "movie:472" title "Boy" genre "Drama" votes 1240 rating 7.5 release_year 1969 plot "A young boy reluctantly aids his swindling father in a threatening scam." poster "https://m.media-amazon.com/images/M/MV5BY2NiNjA4MzktYTBiOC00ZjZjLThkMzYtNThhY2VlMDRlMjY3XkEyXkFqcGdeQXVyMTIyNzY1NzM@._V1_SX300.jpg" ibmdb_id "tt0063876" +HSET "movie:473" title "A Bullet for Pretty Boy" genre "Action" votes 151 rating 4.8 release_year 1970 plot "The movie tells the biography of the gangster Charles 'Pretty Boy' Floyd who started his career young aged when he saw his father die and seeked out revenge by killing his murderer during a..." poster "https://m.media-amazon.com/images/M/MV5BMjI3MTE1MDk0Ml5BMl5BanBnXkFtZTgwMDcxODk1MDE@._V1_SX300.jpg" ibmdb_id "tt0065501" +HSET "movie:474" title "The Boy Friend" genre "Comedy" votes 2441 rating 7.8 release_year 1971 plot "When the leading lady of a low-budget musical revue sprains her ankle,the assistant stage manager is forced to understudy and perform in her place,becoming a star and finding love in the process." poster "https://ia.media-imdb.com/images/M/MV5BYWUzOTQ0MzAtODIyNy00OWQyLWE5YmUtZmZmYjBlMWExMDNjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0066858" +HSET "movie:475" title "The Boy Who Turned Yellow" genre "Adventure" votes 185 rating 5.7 release_year 1972 plot "John and his class go on a school trip to the Tower of London. While he is there he loses his pet mouse and vows to return and find her later. Back in school,he is not very attentive and ..." poster "https://m.media-amazon.com/images/M/MV5BM2FlNzhmMjItZGVhNy00Y2M3LWEzZTUtMWMyYmZmMWVmMDNlXkEyXkFqcGdeQXVyMzYyMzU2OA@@._V1_SX300.jpg" ibmdb_id "tt0068311" +HSET "movie:476" title "The Boy Who Cried Werewolf" genre "Horror" votes 510 rating 5.2 release_year 1973 plot "Richie Bridgestone (whose parents are divorced) goes to spend the weekend with his father at his secluded mountain cabin. During a moonlight hike,they are attacked in the darkness by a ..." poster "https://m.media-amazon.com/images/M/MV5BZTRhNGQ1ZmMtODg4Ny00YjMyLWFlZDYtMTBkYzJlZWM3YzBjXkEyXkFqcGdeQXVyNTEwMjc1MjI@._V1_SX300.jpg" ibmdb_id "tt0069820" +HSET "movie:477" title "The Story of Pretty Boy Floyd" genre "Crime" votes 70 rating 6.6 release_year 1974 plot "A humanistic account of 'the Robin Hood of the Cookson Hills',in which Charles Arthur Floyd is portrayed as a decent man who has a strong sense of family and duty." poster "N/A" ibmdb_id "tt0072212" +HSET "movie:478" title "A Boy and His Dog" genre "Comedy" votes 15894 rating 6.5 release_year 1975 plot "A young man and his telepathic dog wander a post-apocalyptic wasteland." poster "https://m.media-amazon.com/images/M/MV5BOGJhNjZjMTUtZjgyMi00YWZlLTgwMjEtYWMyMDE0ZjQ3N2U4XkEyXkFqcGdeQXVyNDUwMTUxMDU@._V1_SX300.jpg" ibmdb_id "tt0072730" +HSET "movie:479" title "The Boy in the Plastic Bubble" genre "Biography" votes 4118 rating 5.7 release_year 1976 plot "The girl next door makes a teen born with immune deficiencies want to leave his germ-free bubble." poster "https://m.media-amazon.com/images/M/MV5BMjA5MTYyMjc5M15BMl5BanBnXkFtZTcwMjI1OTQyMQ@@._V1_SX300.jpg" ibmdb_id "tt0074236" +HSET "movie:480" title "Mattie the Goose-Boy" genre "Animation" votes 1725 rating 8.3 release_year 1977 plot "A young peasant boy stands up to tyranny,aided by his trusting friend- a goose." poster "https://m.media-amazon.com/images/M/MV5BYTNmZTBjYTMtMWQ0ZS00NmNhLTk4ZGQtOGM5YmJhNTQzNTIxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjIzMDAwOTc@._V1_SX300.jpg" ibmdb_id "tt0142632" +HSET "movie:481" title "Future Boy Conan" genre "Animation" votes 3314 rating 8.7 release_year 1978 plot "After the world is nearly destroyed by a war,a young boy and his friends must fight to save the world from those who seek to conquer what is left of civilization." poster "https://m.media-amazon.com/images/M/MV5BNjRhZDJkNjEtYzcwZS00NDJjLTljMTAtNTY1ZmYyYzQ2Njk0XkEyXkFqcGdeQXVyNDE2NjE1Njc@._V1_SX300.jpg" ibmdb_id "tt0077013" +HSET "movie:482" title "Taro the Dragon Boy" genre "Adventure" votes 729 rating 7.5 release_year 1979 plot "A young boy has to make a voyage to a distant lake to save his mother,who has been turned into a dragon." poster "https://m.media-amazon.com/images/M/MV5BMTYyNTcyMTIzNl5BMl5BanBnXkFtZTcwMzI4MzkzMQ@@._V1_SX300.jpg" ibmdb_id "tt0061069" +HSET "movie:483" title "Rude Boy" genre "Drama" votes 981 rating 6.6 release_year 1980 plot "A young British punk and roadie for The Clash navigates life in socially torn 1970s England." poster "https://m.media-amazon.com/images/M/MV5BMTY0MTMzNjYzMl5BMl5BanBnXkFtZTcwNDc2MTYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0081441" +HSET "movie:484" title "The Promising Boy" genre "Comedy" votes 1201 rating 8.0 release_year 1981 plot "A normal boy receives a blow to the head which sets him off to do rebellious acts." poster "https://m.media-amazon.com/images/M/MV5BN2RkNDM0MWItNWUwNy00OTliLWE2ZTItOGUxMTk2NTg1ZGY1XkEyXkFqcGdeQXVyMzIwMTIwODc@._V1_SX300.jpg" ibmdb_id "tt0180633" +HSET "movie:485" title "Boy Meets Girl (doc)" genre "Biography" votes 46 rating 6.5 release_year 1982 plot "Two doctors from Tel Aviv join 'Doctors Without Borders' and travel to Thailand to help out refugees. They leave their daughter,Aya (aged 10) at a kibbutz where the children are housed by ..." poster "https://m.media-amazon.com/images/M/MV5BMDlhYzliZDgtMzZjZi00NjBhLWIzZGUtNGRhZjI1ZjcyNmJlXkEyXkFqcGdeQXVyMjMyMzI4MzY@._V1_SX300.jpg" ibmdb_id "tt0083637" +HSET "movie:486" title "Conrad: The Factory-Made Boy" genre "Family" votes 45 rating 7.6 release_year 1983 plot "In a tin box,7-year-old instant kid Konrad is brought into the house of the painter Bartolotti,due to a computer error. Not only that she didn't want a child,such a good and polite one ..." poster "https://m.media-amazon.com/images/M/MV5BMjQ1MWNiZjMtYWY5OC00NDdmLWJmNTktYWFmYjNhOTI2MzdlXkEyXkFqcGdeQXVyNjU2Mjk4ODE@._V1_SX300.jpg" ibmdb_id "tt0084220" +HSET "movie:487" title "Boy Meets Girl" genre "Drama" votes 2639 rating 7.0 release_year 1984 plot "Paris by night. Alex,22,wants to become a filmmaker. He is fascinated by first times and his girlfriend,Florence,has just left him for his best friend,Thomas. First break-up,first ..." poster "https://m.media-amazon.com/images/M/MV5BMTIyNjM4MjIwM15BMl5BanBnXkFtZTcwMTg1MjMyMQ@@._V1_SX300.jpg" ibmdb_id "tt0086994" +HSET "movie:488" title "Jac Mac & Rad Boy Go!" genre "Animation" votes 99 rating 7.8 release_year 1985 plot "Two party bound teens inadvertently destroy a city on their way to hell." poster "https://m.media-amazon.com/images/M/MV5BMTQ0MzcyMTQ4Ml5BMl5BanBnXkFtZTcwNDg3OTQ5OA@@._V1_SX300.jpg" ibmdb_id "tt0875593" +HSET "movie:489" title "The Boy Who Could Fly" genre "Drama" votes 5172 rating 6.5 release_year 1986 plot "An autistic boy who dreams of flying touches everyone he meets,including a new family who has moved in after their father dies." poster "https://m.media-amazon.com/images/M/MV5BMmIwYTU0ZTItNzEzYy00Yzk1LWFlYTMtODY2NzkyYTViMDNjXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0090768" +HSET "movie:490" title "A Boy from Calabria" genre "Drama" votes 300 rating 7.0 release_year 1987 plot "Dad wants his 13-year-old son to work harder and smarter than he himself did; thus justifying the beatings and scoldings given the boy. The boy was also forced to work with some rope manufacturers who worked him like a dog." poster "https://m.media-amazon.com/images/M/MV5BZDdmZTBmOWItOTFkMy00OTRkLWIyZDEtM2FmYTUwZjJhMjQ3XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0092694" +HSET "movie:491" title "The Boy from Hell" genre "Horror" votes 119 rating 4.2 release_year 1988 plot "A teenage boy is hidden at an orphanage by his mother to protect him against his father,who wants to use the boys body to be reborn." poster "https://m.media-amazon.com/images/M/MV5BZmNjZDRiOWQtYjY1Ny00NGI2LWJlOTQtNjJlMTc2N2MzM2VjXkEyXkFqcGdeQXVyNzg5OTk2OA@@._V1_SX300.jpg" ibmdb_id "tt0122008" +HSET "movie:492" title "Fat Man and Little Boy" genre "Biography" votes 6629 rating 6.5 release_year 1989 plot "This film reenacts the Manhattan Project,the secret wartime project in New Mexico where the first atomic bombs were designed and built." poster "https://m.media-amazon.com/images/M/MV5BMmUzNjY5NTAtODExZi00MDM5LWE0OGQtOWI0NGI3OTYzNmI3XkEyXkFqcGdeQXVyNjQzNDI3NzY@._V1_SX300.jpg" ibmdb_id "tt0097336" +HSET "movie:493" title "Halfaouine: Boy of the Terraces" genre "Drama" votes 1064 rating 6.8 release_year 1990 plot "A coming-of-age comedy/drama set in Tunisia. Twelve-year-old Noura is an impressionable boy who must learn to reconcile two conflicting worlds - the loving world of Muslim women and the ..." poster "https://m.media-amazon.com/images/M/MV5BNzk3NjEyODcyNV5BMl5BanBnXkFtZTcwMjIyMDUyMQ@@._V1_SX300.jpg" ibmdb_id "tt0090665" +HSET "movie:494" title "The Last Boy Scout" genre "Action" votes 89429 rating 7.0 release_year 1991 plot "A private detective's protected female witness is murdered,prompting him and the victim's boyfriend to investigate the crime that leads to a corrupt politician and a crooked football team owner." poster "https://m.media-amazon.com/images/M/MV5BN2QxYjAwNDUtYWIzMC00ZTg3LTg5YjMtOGM4YzAyZmUxMzI2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" ibmdb_id "tt0102266" +HSET "movie:495" title "Lakki... The Boy Who Could Fly" genre "Drama" votes 229 rating 5.2 release_year 1992 plot "Surreal tale of a friendless,lonely boy who dreams of escape from a broken home with an neglectful,promiscuous. alcoholic mother and self-centered,clueless,absent father." poster "https://m.media-amazon.com/images/M/MV5BMjA5MjYwNjUxN15BMl5BanBnXkFtZTcwMTI0NTUxMg@@._V1_SX300.jpg" ibmdb_id "tt0104673" +HSET "movie:496" title "Boy Meets World" genre "Comedy" votes 37279 rating 8.1 release_year 1993 plot "An adolescent with two siblings tests his various theories about life as he endures the trials of growing alongside a good friend." poster "https://m.media-amazon.com/images/M/MV5BMTkyMjAyNzAxNl5BMl5BanBnXkFtZTcwNjk1MDk5NA@@._V1_SX300.jpg" ibmdb_id "tt0105958" +HSET "movie:497" title "Cabin Boy" genre "Adventure" votes 7933 rating 5.4 release_year 1994 plot "A foul-mouthed finishing school graduate mistakenly winds up on an ill-fated fishing boat and faces the wrath of a crew that considers him bad luck." poster "https://m.media-amazon.com/images/M/MV5BZWI5ZmY5MDMtOWJkYy00YjJlLWI1MDctMjMwZDI3NTY4YmJlXkEyXkFqcGdeQXVyMTEwODg2MDY@._V1_SX300.jpg" ibmdb_id "tt0109361" +HSET "movie:498" title "Tommy Boy" genre "Adventure" votes 73023 rating 7.1 release_year 1995 plot "After his auto-parts tycoon father dies,the overweight,underachieving son teams up with a snide accountant to try and save the family business." poster "https://m.media-amazon.com/images/M/MV5BNTMwZGU3MGUtZWE0Ni00YzExLWIyY2MtMmNmMDlmYTdmNzFkXkEyXkFqcGdeQXVyNjExODE1MDc@._V1_SX300.jpg" ibmdb_id "tt0114694" +HSET "movie:499" title "The Boy from Mercury" genre "N/A" votes 89 rating 7.2 release_year 1996 plot "Harry is an eight-year-old boy growing up in Ireland with his dis-spirited widowed mother and older brother. He is bullied in school,and his only real friend is his dog Max. His great joy ..." poster "https://m.media-amazon.com/images/M/MV5BNDMzNDBmZWYtMjIyYS00ZDU0LTkxYTktYjU4ZGM5NjliNWE3XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0115740" +HSET "movie:501" title "The Adventures of Jimmy Neutron: Boy Genius" genre "Animation" votes 15625 rating 6.7 release_year 1998 plot "A young boy,who happens to be a genius,lives in a small town with his family and friends and often gets into crazy adventures with them involving the things he invents." poster "https://m.media-amazon.com/images/M/MV5BMWRlNTRkM2ItNDkwMC00ZjNmLWI2ZDQtNWI0MTllMGU5OTVjXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_SX300.jpg" ibmdb_id "tt0320808" +HSET "movie:502" title "The Winslow Boy" genre "Drama" votes 7037 rating 7.3 release_year 1999 plot "Following the theft of a postal-order,a fourteen-year old cadet is expelled from Naval College. To save the honour of the boy and his family,the pre-eminent barrister of the day is engaged to take on the might the Admiralty." poster "https://m.media-amazon.com/images/M/MV5BMDhmNzEyOGMtZGIwYi00NjY4LWFhNGYtMGFmZGViYzFiYzQ0XkEyXkFqcGdeQXVyNDkzNTM2ODg@._V1_SX300.jpg" ibmdb_id "tt0155388" +HSET "movie:503" title "Borstal Boy" genre "Drama" votes 2230 rating 6.8 release_year 2000 plot "Irish writer and political activist Brendan Behan,is befriended as a teenager in a British labor camp by a liberal warden." poster "https://m.media-amazon.com/images/M/MV5BMTQ3ODEzMTk0Ml5BMl5BanBnXkFtZTcwMTk2ODgyMQ@@._V1_SX300.jpg" ibmdb_id "tt0221838" +HSET "movie:504" title "Jimmy Neutron: Boy Genius" genre "Animation" votes 29332 rating 6.0 release_year 2001 plot "An eight year-old boy genius and his friends must rescue their parents after the adults are abducted by aliens." poster "https://m.media-amazon.com/images/M/MV5BMzczYzM4MmMtMTEyYi00ZGRmLWE2OTMtZmNhYTdiYjQ4NDUxXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_SX300.jpg" ibmdb_id "tt0268397" +HSET "movie:505" title "About a Boy" genre "Comedy" votes 166585 rating 7.0 release_year 2002 plot "A cynical,immature young man is taught how to act like a grown-up by a little boy." poster "https://m.media-amazon.com/images/M/MV5BMTQ2Mzg4MDAzNV5BMl5BanBnXkFtZTgwMjcxNTYxMTE@._V1_SX300.jpg" ibmdb_id "tt0276751" +HSET "movie:506" title "The Mudge Boy" genre "Crime" votes 4083 rating 7.1 release_year 2003 plot "Sensitive,somewhat effeminate farm-boy Duncan Mudge can barely cope with grim,since Ma's death even gloomier father Edgar's manly expectations,and seeks comfort in petting a chicken he ..." poster "https://m.media-amazon.com/images/M/MV5BYjljMDE0ZWMtMjA2NC00NWUyLWEzZjktOTIwM2E2MDE3ZjFmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0339419" +HSET "movie:507" title "Boy 1" genre "Short" votes 215 rating 5.1 release_year 2004 plot "Boy is the story of a young male prostitute in a small town who discovers the truth behind a fatal hit and run accident. Threatened with violence,he battles to expose the truth." poster "https://m.media-amazon.com/images/M/MV5BOTA2ZmQ5ZWYtM2Q4My00NDA1LTk5OTMtMGNlNzI3ZWE1MDM4XkEyXkFqcGdeQXVyNjg5MDkzMDA@._V1_SX300.jpg" ibmdb_id "tt0434818" +HSET "movie:508" title "Boy Eats Girl" genre "Comedy" votes 3667 rating 5.0 release_year 2005 plot "A boy declares his love for his girlfriend,only to die the same night. He is brought back to life by his mother as a flesh-craving zombie,who sires more teen undead while trying to control his,er,appetite for his beloved." poster "https://m.media-amazon.com/images/M/MV5BMTgwNzU3Nzk1N15BMl5BanBnXkFtZTcwNTM1MjA0MQ@@._V1_SX300.jpg" ibmdb_id "tt0415679" +HSET "movie:510" title "Run,Fat Boy,Run" genre "Comedy" votes 64351 rating 6.6 release_year 2007 plot "Five years after jilting his pregnant fiancée on their wedding day,out-of-shape Dennis decides to run a marathon to win her back." poster "https://m.media-amazon.com/images/M/MV5BMTgzOTg0NTk5NF5BMl5BanBnXkFtZTcwMjMxNDI2MQ@@._V1_SX300.jpg" ibmdb_id "tt0425413" +HSET "movie:512" title "Boy 2" genre "Drama" votes 173 rating 5.9 release_year 2009 plot "A poet sells his collection of comic books and action figures in order to afford to hire a male stripper on New Years Eve." poster "https://m.media-amazon.com/images/M/MV5BMTQ1NjgwMjc5OV5BMl5BanBnXkFtZTcwODUyNTA2Mw@@._V1_SX300.jpg" ibmdb_id "tt1436336" +HSET "movie:513" title "Boy 3" genre "Comedy" votes 19247 rating 7.5 release_year 2010 plot "Set on the east coast of New Zealand in 1984,Boy,an 11-year-old child and devout Michael Jackson fan,gets a chance to know his absentee criminal father,who has returned to find a bag of money he buried years ago." poster "https://m.media-amazon.com/images/M/MV5BMjc4MjQ2ODQyNF5BMl5BanBnXkFtZTcwOTE0NzIzNw@@._V1_SX300.jpg" ibmdb_id "tt1560139" +HSET "movie:514" title "Boy 4" genre "Drama" votes 512 rating 6.0 release_year 2011 plot "18-year old Christian has just graduated from high school. At his summer job he is seduced by the 36-year old single mother Sanne. Soon he is drawn into a world of sensuality and his ..." poster "https://m.media-amazon.com/images/M/MV5BMjExOTE5NzczOF5BMl5BanBnXkFtZTcwODQ5OTIyNA@@._V1_SX300.jpg" ibmdb_id "tt1616096" +HSET "movie:515" title "Boy 5" genre "Drama" votes 32 rating 6.4 release_year 2012 plot "'Boy' tells the story of an invisible member of our society,an undocumented Filipino cleaner. He has no name. Moving continuously from one location to the other,he is living between being..." poster "https://m.media-amazon.com/images/M/MV5BODExMjA1ZGYtNTBjZC00YzNhLTg2MGEtNTkzYmU2OTg0ZTRiXkEyXkFqcGdeQXVyMzk3MjE4OTY@._V1_SX300.jpg" ibmdb_id "tt2445032" +HSET "movie:516" title "Boy 6" genre "Short" votes 8 rating 5.4 release_year 2013 plot "The statue BOY becomes living in the nights and has to become its original form before the day begins. The boy is caught between life's fragility at night and art immortality per day." poster "https://m.media-amazon.com/images/M/MV5BMDU5MjE3MjMtNzk4Zi00Yjc1LTk0MjYtZDI4OGMwYmQ2N2FhXkEyXkFqcGdeQXVyNTE4NDEwMzg@._V1_SX300.jpg" ibmdb_id "tt2768416" +HSET "movie:517" title "Boy 7" genre "Short" votes 161 rating 7.0 release_year 2014 plot "16-year old Emilie has always been a boy inside." poster "https://m.media-amazon.com/images/M/MV5BZDdlNjY3OGItNTFkMC00YTk0LWFmODAtOGMyZTI5Zjc4YTI1XkEyXkFqcGdeQXVyNjc2NjkzNTg@._V1_SX300.jpg" ibmdb_id "tt3826188" +HSET "movie:518" title "Boy 8" genre "Short" votes 33 rating 7.4 release_year 2015 plot "The ghost of a young boy explores the world on the day of his death." poster "https://m.media-amazon.com/images/M/MV5BNTAzNzExMTcwNF5BMl5BanBnXkFtZTgwNTEzMjM3NjE@._V1_SX300.jpg" ibmdb_id "tt4848102" +HSET "movie:519" title "The Boy" genre "Horror" votes 73912 rating 6.0 release_year 2016 plot "An American nanny is shocked that her new English family's boy is actually a life-sized doll. After she violates a list of strict rules,disturbing events make her believe that the doll is really alive." poster "https://m.media-amazon.com/images/M/MV5BMTc1MjcxNzcwMV5BMl5BanBnXkFtZTgwMTE0NTE2NzE@._V1_SX300.jpg" ibmdb_id "tt3882082" +HSET "movie:520" title "The Only Living Boy in New York" genre "Drama" votes 10000 rating 6.3 release_year 2017 plot "Adrift in New York City,a recent college graduate's life is upended by his father's mistress." poster "https://m.media-amazon.com/images/M/MV5BODEzODA5NjU2NF5BMl5BanBnXkFtZTgwODkwNzA5MjI@._V1_SX300.jpg" ibmdb_id "tt0460890" +HSET "movie:521" title "Boy 9" genre "Short" votes 8 rating 9.4 release_year 2018 plot "A young boy finds himself in a dilemma of choosing between social peer pressures or making a moralistic decision." poster "https://m.media-amazon.com/images/M/MV5BNmMxMDk4YzgtNzlhNy00ZTcyLTgyNTAtY2U4OWU1NTk5MGRiXkEyXkFqcGdeQXVyNDc3MjkwNDc@._V1_SX300.jpg" ibmdb_id "tt8064372" +HSET "movie:522" title "Boy (9)" genre "Comedy" votes 182 rating 6.8 release_year 2019 plot "A boy's story during the final days of his high school." poster "https://m.media-amazon.com/images/M/MV5BNTc2ZDNjYTYtMmE5NC00YTZkLWI4ZWQtYmYwZDc1NGIzZTNhXkEyXkFqcGdeQXVyMTA0NzIyMDc1._V1_SX300.jpg" ibmdb_id "tt10768678" +HSET "movie:525" title "No Reason to Stay" genre "Short" votes 5 rating 8.6 release_year 1966 plot "N/A" poster "N/A" ibmdb_id "tt0235628" +HSET "movie:526" title "Reason Over Passion" genre "N/A" votes 22 rating 6.0 release_year 1969 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNWViNzMyYmYtNDAwOS00NGQ5LThjN2MtY2JiODM0NjA2MWI3XkEyXkFqcGdeQXVyNTA1NDY3NzY@._V1_SX300.jpg" ibmdb_id "tt0129333" +HSET "movie:527" title "Beyond Reason" genre "Action" votes 7 rating 4.7 release_year 1970 plot "When a nuclear war starts,the employees and inmates at a mental institution seek shelter in an underground bunker. They find themselves locked in and soon find that the inmates want to take over." poster "N/A" ibmdb_id "tt0130502" +HSET "movie:528" title "A Reason to Live,a Reason to Die" genre "Western" votes 1569 rating 6.2 release_year 1972 plot "Branded a coward for surrendering his New Mexico fort to the Confederates without firing a shot,a Union colonel attempts to redeem himself by leading a band of condemned prisoners on a suicide mission to recapture it." poster "https://m.media-amazon.com/images/M/MV5BMTkxOTMzNDQ1NF5BMl5BanBnXkFtZTcwNDcxMTM4NA@@._V1_SX300.jpg" ibmdb_id "tt0069159" +HSET "movie:533" title "Reason,Debate and a Story" genre "Drama" votes 260 rating 7.2 release_year 1977 plot "In this quest narrative that makes the Odyssey look like a trip to the mall,four men,each peculiar in his own way,embark on a quest to reason with the estranged wife of the protagonist." poster "https://m.media-amazon.com/images/M/MV5BMzYwYWE5NjktNzQxZC00NDU3LWEwMGQtOTgxYTc3ZTk2ODk3XkEyXkFqcGdeQXVyNjA3OTI5MjA@._V1_SX300.jpg" ibmdb_id "tt0071707" +HSET "movie:537" title "Murder: By Reason of Insanity" genre "Crime" votes 105 rating 6.3 release_year 1985 plot "A married couple from Poland emigrates to the U.S.,. but things don't turn out as well as they had imaged. The husband's business fails,while his wife's career really takes off. The ..." poster "https://m.media-amazon.com/images/M/MV5BNDUyYTc5ZmUtNzUwOC00MzUxLWIzMDktNTVjZGQ0YjMzNTI5XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0089642" +HSET "movie:540" title "The Cry of Reason: Beyers Naude - An Afrikaner Speaks Out" genre "Documentary" votes 14 rating 6.6 release_year 1988 plot "Anti-apartheid activist Dr. Beyers Naude talks about the human issues confronting the people of South Africa." poster "https://m.media-amazon.com/images/M/MV5BZDk0NzVlNTAtZTRkNi00MTYzLWEzYTYtMGZiNDVmMDNmZjFjXkEyXkFqcGdeQXVyNTgwMzA2OTY@._V1_SX300.jpg" ibmdb_id "tt0094925" +HSET "movie:542" title "Reason to Die" genre "Action" votes 40 rating 4.9 release_year 1990 plot "A cop sets up his girlfriend as a target in order to trap a serial killer." poster "https://m.media-amazon.com/images/M/MV5BNDcyMzI5NTA4M15BMl5BanBnXkFtZTcwNTU1NDcyMQ@@._V1_SX300.jpg" ibmdb_id "tt0098172" +HSET "movie:543" title "Reason for Living: The Jill Ireland Story" genre "Biography" votes 79 rating 6.3 release_year 1991 plot "A Made-for-TV movie,this film follows the struggle the late famous actress Jill Ireland had not only with her cancer but with her very troubled and drug-addicted adoptive son,Jason McCallum." poster "https://m.media-amazon.com/images/M/MV5BZjljZjk1ZWMtYzJmNC00YmZkLThmNDAtMWVmN2YyNzFhMWMzXkEyXkFqcGdeQXVyMTI4NTcwNTA@._V1_SX300.jpg" ibmdb_id "tt0102764" +HSET "movie:546" title "A Reason to Believe" genre "Drama" votes 281 rating 5.8 release_year 1995 plot "A popular girl on campus,Charlotte,attends a wild party while her boyfriend Wesley is out of town. When she realizes she has become too drunk,she leaves the party. But Jim,who she ..." poster "https://m.media-amazon.com/images/M/MV5BMTgyMDE1Mjg4NV5BMl5BanBnXkFtZTcwNDQwMjgyMQ@@._V1_SX300.jpg" ibmdb_id "tt0114240" +HSET "movie:547" title "Tracy Chapman: Give Me One Reason" genre "Short" votes 5 rating 6.2 release_year 1996 plot "Tracy Chapman performs in the music video 'Give Me One Reason' from the album 'New Beginning' recorded for Elektra Records. Tracy Chapman sings and plays guitar in front of a blue curtain ..." poster "https://m.media-amazon.com/images/M/MV5BMDc0YjNkN2QtNWNlZi00NGYwLThjYzYtODZkNjhmMTM5NmNmXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_SX300.jpg" ibmdb_id "tt7168710" +HSET "movie:548" title "Rhyme & Reason" genre "Documentary" votes 690 rating 7.5 release_year 1997 plot "A study in the world of hip-hop,done mostly with interviews,in order to see why it is as popular as it is today and what the future holds." poster "https://m.media-amazon.com/images/M/MV5BMTI5MTgxODI0Nl5BMl5BanBnXkFtZTYwNzg3MDU5._V1_SX300.jpg" ibmdb_id "tt0120014" +HSET "movie:549" title "The Real Reason (Men Commit Crimes)" genre "Comedy" votes 61 rating 7.6 release_year 1998 plot "Six bachelors attempt to use their charms and talents to win the hand of a beautiful,sophisticated young woman. Along the way,they each commit a perpetration of the law,in their attempts..." poster "https://m.media-amazon.com/images/M/MV5BNzU3MjkwOTc3NV5BMl5BanBnXkFtZTcwOTAxNjg3Nw@@._V1_SX300.jpg" ibmdb_id "tt0160744" +HSET "movie:550" title "The Reason" genre "Sport" votes 14 rating 8.5 release_year 1999 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BOTI0NWMxMTktNzRjOC00YzUzLWExZTEtYTA0ZTEyZTFhZDUwXkEyXkFqcGdeQXVyMTc3NjQ3ODI@._V1_SX300.jpg" ibmdb_id "tt1199519" +HSET "movie:551" title "Everything for a Reason" genre "Comedy" votes 68 rating 7.4 release_year 2000 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMTMyMDk1NjYwMl5BMl5BanBnXkFtZTYwODc4Nzc5._V1_SX300.jpg" ibmdb_id "tt0266519" +HSET "movie:552" title "Kira's Reason: A Love Story" genre "Drama" votes 888 rating 6.9 release_year 2001 plot "Kira and Mads try to work out their marriage,after Kira has been two years in a mental institution,but is she really ready for the real world?" poster "https://m.media-amazon.com/images/M/MV5BMTY4MTkyMDQxOF5BMl5BanBnXkFtZTcwNDYxOTUxMQ@@._V1_SX300.jpg" ibmdb_id "tt0285280" +HSET "movie:553" title "Book of Love: The Definitive Reason Why Men Are Dogs" genre "Romance" votes 82 rating 6.6 release_year 2002 plot "N/A" poster "https://ia.media-imdb.com/images/M/MV5BOGYzYzhkNzQtNTJhYy00ZjNiLThlNTItNjhkY2U4NGZkODZkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTc2NjQyMTg@._V1_SX300.jpg" ibmdb_id "tt0156376" +HSET "movie:554" title "The Sleep of Reason" genre "Thriller" votes 34 rating 6.7 release_year 2003 plot "A modern horror story about the thin line between reality and imagination. When four musicians move into an old,abandoned house in order to find solitude to rehearse,strange events begin ..." poster "https://m.media-amazon.com/images/M/MV5BMTcyMDYyNjgwNF5BMl5BanBnXkFtZTcwNTI4NjkzMQ@@._V1_SX300.jpg" ibmdb_id "tt0362158" +HSET "movie:555" title "Bridget Jones: The Edge of Reason" genre "Comedy" votes 100942 rating 6.0 release_year 2004 plot "After finding love,Bridget Jones (Renée Zellweger) questions if she really has everything she's dreamed of having." poster "https://m.media-amazon.com/images/M/MV5BOTJlNWQxZjctYmE3ZS00OTc0LWE2M2ItNzQwNmYyMjU4NDNmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0317198" +HSET "movie:556" title "Reason 2 Kill" genre "Drama" votes 16 rating 7.2 release_year 2005 plot "Larissa,driving home from a party,hits a man on the road,she is then faced with either leaving him there,or turning him in and facing the consequences of drunk driving on the eve of her wedding" poster "https://m.media-amazon.com/images/M/MV5BMTY4NzYxMjUyNl5BMl5BanBnXkFtZTcwNjU2OTAzMQ@@._V1_SX300.jpg" ibmdb_id "tt0473385" +HSET "movie:557" title "Reason" genre "Short" votes 14 rating 4.9 release_year 2006 plot "David is caught in a cycle of confusion. Is it love or guilt that visits him in the night? Is he following clues or being baited by his past? David is determined to find out." poster "N/A" ibmdb_id "tt0865935" +HSET "movie:558" title "The Enemies of Reason" genre "Documentary" votes 1695 rating 8.3 release_year 2007 plot "Scientist Richard Dawkins turns a hostile eye on the world of alternative medicine." poster "https://m.media-amazon.com/images/M/MV5BMjAzNzQ5OTg5OV5BMl5BanBnXkFtZTcwMjQ2MDg5MQ@@._V1_SX300.jpg" ibmdb_id "tt1092058" +HSET "movie:559" title "The Reason Why" genre "Drama" votes 55 rating 5.8 release_year 2008 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMjNmMmY2ZGQtNmUxZC00MGNkLWJlY2QtNjgwNTRkNmQyODc4L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTYyMTcxMw@@._V1_SX300.jpg" ibmdb_id "tt1069245" +HSET "movie:560" title "No Reason to Exist" genre "Drama" votes 11 rating 6.9 release_year 2009 plot "A talk show hosts realizes there's no reason to exist,but he won't bother with suicide." poster "N/A" ibmdb_id "tt1580307" +HSET "movie:561" title "With Love... from the Age of Reason" genre "Comedy" votes 1693 rating 5.8 release_year 2010 plot "A career-driven businesswoman rethinks her life after getting letters that force her to reminisce a traumatic,yet romantic,upbringing." poster "https://m.media-amazon.com/images/M/MV5BZmVjN2IwNGEtNGEzOS00MjFlLWJjM2EtNzIzZmI4MDEyMDVjXkEyXkFqcGdeQXVyNzI1NzMxNzM@._V1_SX300.jpg" ibmdb_id "tt1594503" +HSET "movie:562" title "A Reason to Live" genre "Drama" votes 124 rating 6.4 release_year 2011 plot "A female producer loses her fiancée in a hit and run accident and stands in the line of conflict." poster "https://m.media-amazon.com/images/M/MV5BNTFiYWUwM2UtZmZlYi00MTIwLTg0ZGItYTYyNGU5ZTU3OGE3XkEyXkFqcGdeQXVyMjE4MTIyNDI@._V1_SX300.jpg" ibmdb_id "tt2085883" +HSET "movie:568" title "Adolf Hitler's Last Appeal to Reason" genre "History" votes 15 rating 8.6 release_year 2017 plot "Here lie the accounts of Adolf Hitler's pleas to the world during the largest bloodshed in mankind's history,World War 2. Adolf Hitler's most poignant orations which had been buried for ..." poster "https://m.media-amazon.com/images/M/MV5BZTAwMzIxMGEtMjIwMy00NWNkLWJjMmUtZTUyMjQzM2QwZWNjXkEyXkFqcGdeQXVyNDY5Mjk0Nzg@._V1_SX300.jpg" ibmdb_id "tt7375460" +HSET "movie:569" title "Village of the Damned" genre "Horror" votes 14148 rating 7.3 release_year 1960 plot "In the English village of Midwich,the blonde-haired,glowing-eyed children of uncertain paternity prove to have frightening powers." poster "https://m.media-amazon.com/images/M/MV5BMGE5MzM4NDItZTgwNy00MDBjLWI2ODQtNzVjMzBhMjVhMjkyXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0054443" +HSET "movie:570" title "Only Fun in Bullerby Village" genre "Adventure" votes 131 rating 5.6 release_year 1961 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMzFkN2EyZDEtMDljYi00YzRlLTg0MTctYTg2MjZlMGY1OTkxXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0054663" +HSET "movie:571" title "Village of Daughters" genre "Comedy" votes 100 rating 5.2 release_year 1962 plot "Herbert Harris is a traveling salesman who makes his way into a remote Italian village to sell his wares. There,he finds many single and attractive women who all pursue him madly. He ..." poster "https://m.media-amazon.com/images/M/MV5BZWQ1MzUzZWYtZDRmYS00N2JlLWExYWItYzIyMmQ0NjI0MDdkXkEyXkFqcGdeQXVyMDY4MzkyNw@@._V1_SX300.jpg" ibmdb_id "tt0056659" +HSET "movie:572" title "Changes in the Village" genre "Drama" votes 104 rating 6.8 release_year 1963 plot "A girl is forced into a loveless marriage by her family." poster "https://m.media-amazon.com/images/M/MV5BMjFlNDA3MDAtOWQ0ZS00NzI0LTg5MWYtY2JkNmE2NTFjNTc2XkEyXkFqcGdeQXVyNDI0MTM0MjA@._V1_SX300.jpg" ibmdb_id "tt0059211" +HSET "movie:573" title "Santa's Enchanted Village" genre "Family" votes 43 rating 3.0 release_year 1964 plot "Shot at the Santa's Village parks in California and in Dundee,Illinois in the 60s. It shows many of the park's features including the snowball ride,an icy North Pole,and the Puppet Place theater." poster "https://m.media-amazon.com/images/M/MV5BMjllYTBiMjMtODk0NC00NjE0LTk4M2QtNmVjMjBjOTZlNDcwXkEyXkFqcGdeQXVyNTM3MDMyMDQ@._V1_SX300.jpg" ibmdb_id "tt0313557" +HSET "movie:574" title "Village of the Giants" genre "Comedy" votes 1975 rating 3.6 release_year 1965 plot "Delinquent teen-agers ingest a substance and grow thirty feet tall,then proceed to take over a small town." poster "https://m.media-amazon.com/images/M/MV5BYzJmNmEwNzAtZTQzNi00MmYzLWFjMTQtYmZmOWE0Y2JlNWI2XkEyXkFqcGdeQXVyMTQ2MjQyNDc@._V1_SX300.jpg" ibmdb_id "tt0059878" +HSET "movie:576" title "It Rains in My Village" genre "Drama" votes 474 rating 7.1 release_year 1968 plot "A bizarre and tragic love story involving swineherd,village fool,teacher and an agricultural pilot. The story unfolds in a remote village in the communist ruled Yugoslavia at the down of Soviet occupation of Czechoslovakia in 1968." poster "https://m.media-amazon.com/images/M/MV5BMDI2YTJiOGItNTI4ZS00NmZhLTg3MGQtZjM3NjVhZjgzYmRmXkEyXkFqcGdeQXVyMTk0MjQ3Nzk@._V1_SX300.jpg" ibmdb_id "tt0124294" +HSET "movie:577" title "R.F.D. Greenwich Village" genre "Documentary" votes 12 rating 5.3 release_year 1969 plot "With a small town feel,Greenwich Village is an oasis of calm in the middle of New York City. It has a quaint feel,its architecture and other built aspects adding to its character. ..." poster "N/A" ibmdb_id "tt4422700" +HSET "movie:579" title "A Little Village Performance" genre "Documentary" votes 39 rating 8.6 release_year 1971 plot "N/A" poster "N/A" ibmdb_id "tt0174001" +HSET "movie:581" title "Village on Fire" genre "Action" votes 77 rating 6.5 release_year 1973 plot "Chung is a reformed professional fighter who has to hide his identity and take revenge on Black and White Fan,after they murder his family." poster "https://m.media-amazon.com/images/M/MV5BMTI2ODg0Nzg4MF5BMl5BanBnXkFtZTcwMDMzNTcxMQ@@._V1_SX300.jpg" ibmdb_id "tt0164521" +HSET "movie:582" title "From the Village to the City" genre "Adventure" votes 6384 rating 8.4 release_year 1974 plot "The sequel of The Stupid Millionaire (1974 the fun continues this time in Ankara,after the 4 brothers find the heritage from their father which is a box-ful of gold." poster "https://m.media-amazon.com/images/M/MV5BMTkzNTg3ODctNGJjNi00ZDgyLThkODItZmJmYmIxNGEwN2M4XkEyXkFqcGdeQXVyMjExNjgyMTc@._V1_SX300.jpg" ibmdb_id "tt0252619" +HSET "movie:584" title "Next Stop,Greenwich Village" genre "Comedy" votes 1797 rating 6.9 release_year 1976 plot "The ups and downs of life as experienced by a group of aspiring young artists in the early Fifties New York." poster "https://m.media-amazon.com/images/M/MV5BNzlmNjFhNDctMzUxNi00ZDNiLWEyYjgtYzQ3YzBmYWZjNDkzL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0074963" +HSET "movie:585" title "Village of Eight Gravestones" genre "Horror" votes 230 rating 6.6 release_year 1977 plot "The heir to a family fortune discovers that a curse has been placed on it,put there centuries before by a band of samurai warriors." poster "https://m.media-amazon.com/images/M/MV5BNGU5YTUwMjYtZWVjNS00MzUxLWFmNTYtY2E5MDYxZDRlMGZjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0204745" +HSET "movie:586" title "Duel at the Tiger Village" genre "Action" votes 110 rating 5.4 release_year 1978 plot "A kung-fu fighting detective investigating the murder of the emperor's wife uncovers a high-ranking conspiracy." poster "https://m.media-amazon.com/images/M/MV5BMmZjMWU0YzgtZDkyNS00YTZlLTg2NmQtZmZlMjQ2YjQ4YzNjXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0165729" +HSET "movie:587" title "Un si joli village..." genre "Crime" votes 66 rating 6.6 release_year 1979 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZTNhNDRhM2EtZDU3Zi00NDk4LWI4MzAtZjU4ZTYwNDIzMjczXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0078441" +HSET "movie:588" title "Village in the Jungle" genre "Drama" votes 65 rating 7.3 release_year 1980 plot "The lives of a poor family in a small village called Beddagama as they struggle to survive the challenges presented by poverty,disease,superstition,the unsympathetic colonial system,and the jungle itself." poster "https://m.media-amazon.com/images/M/MV5BYzVmYzFiMTEtOWY4Zi00YjU5LWIyMTYtZjc4NjRlN2JiYzJiXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0080409" +HSET "movie:590" title "Once Upon a Time in Vu Dai Village" genre "Action" votes 29 rating 8.6 release_year 1982 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BYTY1MmNmYjUtNGNjOC00YTcwLTg5MzYtZWMwZGJmYzkzOTYyXkEyXkFqcGdeQXVyNDc0Njc1NTY@._V1_SX300.jpg" ibmdb_id "tt2958510" +HSET "movie:591" title "Village in the Mist" genre "Drama" votes 38 rating 7.3 release_year 1983 plot "A vagabond called Kaechoi is troubled by all the inhabitants of a remote South Korean village. His secret is unearthed by an innocent lady teacher who has moved to that village from the city." poster "https://m.media-amazon.com/images/M/MV5BNjM0MDlkNDQtN2EzMC00M2EwLThiOTEtZDRmZmJjMzA4YjEyXkEyXkFqcGdeQXVyNDY5NjU5MDE@._V1_SX300.jpg" ibmdb_id "tt0083558" +HSET "movie:592" title "The Pope of Greenwich Village" genre "Action" votes 7421 rating 6.7 release_year 1984 plot "Two cousins unknowingly rob the mob and face the dangerous consequences." poster "https://m.media-amazon.com/images/M/MV5BYWIzNDE1MjYtM2JlZi00ZDQ0LWIzYTUtNWNiYzI0OTZkZjFjXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0087932" +HSET "movie:593" title "My Sweet Little Village" genre "Comedy" votes 3290 rating 8.2 release_year 1985 plot "Comedy about the people who inhabit a small town. For years the overbearing Pavek has endured Otik,the 'town idiot,' sharing his meals and the front seat of their dump truck. But Otik is ..." poster "https://m.media-amazon.com/images/M/MV5BNjQzNDg5MzU1NF5BMl5BanBnXkFtZTcwOTk0MDYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0090257" +HSET "movie:594" title "The Children of Noisy Village" genre "Family" votes 1807 rating 6.7 release_year 1986 plot "The story of the children who live in Bullerbyn,Sweden,through the spring and summer months." poster "https://m.media-amazon.com/images/M/MV5BMTc1NjE2MTcxMl5BMl5BanBnXkFtZTcwODEzNTIyMQ@@._V1_SX300.jpg" ibmdb_id "tt0090610" +HSET "movie:595" title "More About the Children of Noisy Village" genre "Family" votes 1081 rating 6.7 release_year 1987 plot "There are only a handful of children living in Bullerbyn. This film follows their story through the fall and winter,picking up at the moment 'The Children of Noisy Village' finishes." poster "https://m.media-amazon.com/images/M/MV5BMTY0MjYyNzgxNV5BMl5BanBnXkFtZTcwOTI0MzkxMQ@@._V1_SX300.jpg" ibmdb_id "tt0093524" +HSET "movie:597" title "Quigley's Village" genre "Family" votes 12 rating 6.5 release_year 1989 plot "'Quigley's Village' is a kids' show which employs both live actors and puppets. Mr. Quigley is the leader of the town,with Trundle,a toucan,living in a cage on Quigley's front porch. ..." poster "N/A" ibmdb_id "tt1277647" +HSET "movie:600" title "A Village Romeo and Juliet" genre "Musical" votes 14 rating 6.6 release_year 1992 plot "N/A" poster "N/A" ibmdb_id "tt0884222" +HSET "movie:601" title "The Village (animation)" genre "Animation" votes 124 rating 7.3 release_year 1993 plot "A village is ruled by the church,but it filled with hypocritical sinners who constantly spy on each other." poster "https://m.media-amazon.com/images/M/MV5BYjE1NTE1YjgtZTIwMC00MzRkLWI4NDEtNDE0ODY4Y2NlZDg2XkEyXkFqcGdeQXVyNjc2NjkzNTg@._V1_SX300.jpg" ibmdb_id "tt0108494" +HSET "movie:602" title "The Rise and Fall of an Olympic Village" genre "Comedy" votes 160 rating 7.6 release_year 1994 plot "N/A" poster "N/A" ibmdb_id "tt0185639" +HSET "movie:603" title "Village of the Damned (new)" genre "Horror" votes 27584 rating 5.6 release_year 1995 plot "A small town's women give birth to unfriendly alien children posing as humans." poster "https://m.media-amazon.com/images/M/MV5BNTY5MzEwMjctMmQ1MS00YThmLWJhMjQtYzMxOWZlNTEyNGM5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0114852" +HSET "movie:604" title "Pretty Village,Pretty Flame" genre "Comedy" votes 13617 rating 8.7 release_year 1996 plot "During the war in Bosnia,two childhood friends eventually become enemies,as the tragic and devastating circumstances of the war put them on the opposite sides and expose the most gruesome and cruel aspects of the human nature." poster "https://m.media-amazon.com/images/M/MV5BYTg2ZTNmYmMtNGRkNi00MzM1LTljMWQtZjY4MzAxNGFhMDI2XkEyXkFqcGdeQXVyMjM5MTg4MjQ@._V1_SX300.jpg" ibmdb_id "tt0116860" +HSET "movie:605" title "The Quiet Village" genre "Crime" votes 141 rating 5.9 release_year 1997 plot "After his predecessor on a long-festering wilderness village murder case resigns for 'reasons of health',a young police detective decides it's time for more forceful methods. But there's ..." poster "https://m.media-amazon.com/images/M/MV5BNzc5MDI5YmEtZTUzMi00YTRkLWFmNDUtODRmY2MzZDgwOTg4XkEyXkFqcGdeQXVyMTIxMzMzMzE@._V1_SX300.jpg" ibmdb_id "tt0120427" +HSET "movie:606" title "Nadya's Village" genre "Documentary" votes 13 rating 6.5 release_year 1998 plot "N/A" poster "N/A" ibmdb_id "tt0198801" +HSET "movie:607" title "Village of Idiots" genre "Animation" votes 108 rating 7.1 release_year 1999 plot "Weary of daily life in his native village of Chelm,Shmendrik sets out on a quest for knowledge that brings him to a new Chelm,a place remarkably like the old Chelm,down to the chicken's ..." poster "N/A" ibmdb_id "tt0211106" +HSET "movie:609" title "Village" genre "Documentary" votes 16 rating 5.7 release_year 2001 plot "N/A" poster "N/A" ibmdb_id "tt0345146" +HSET "movie:610" title "A Village Tale" genre "N/A" votes 5 rating 4.4 release_year 2002 plot "N/A" poster "N/A" ibmdb_id "tt0304901" +HSET "movie:611" title "Naruto: The Lost Story - Mission: Protect the Waterfall Village!" genre "Animation" votes 227 rating 6.6 release_year 2003 plot "Naruto and his friends must get back a jug of stolen holy water from a band of higher class ninjas." poster "https://m.media-amazon.com/images/M/MV5BNjAxYzFhMWEtZGViNS00YTI5LThiMmEtYjZmODFhZjZmYWQ5XkEyXkFqcGdeQXVyMjc2Nzg5OTQ@._V1_SX300.jpg" ibmdb_id "tt3634858" +HSET "movie:612" title "The Village" genre "Drama" votes 234433 rating 6.5 release_year 2004 plot "A series of events tests the beliefs of a small isolated countryside village." poster "https://m.media-amazon.com/images/M/MV5BMWExMWYxN2MtYmU1YS00Mjk5LWI3OTEtYTg3NDIwZTA2MTE2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0368447" +HSET "movie:613" title "Kaashi from Village" genre "Drama" votes 24 rating 7.3 release_year 2005 plot "N/A" poster "N/A" ibmdb_id "tt2959872" +HSET "movie:614" title "Full Metal Village" genre "Documentary" votes 1004 rating 7.2 release_year 2006 plot "Full Metal Village" poster "https://m.media-amazon.com/images/M/MV5BMjA1ODE2NjAyNV5BMl5BanBnXkFtZTcwMTUzNjU4MQ@@._V1_SX300.jpg" ibmdb_id "tt0954937" +HSET "movie:615" title "A Gentle Breeze in the Village" genre "Drama" votes 815 rating 7.4 release_year 2007 plot "In 'A Gentle Breeze in the Village,' Soyo Migata (Kaho) is a quirky 8th grade student who resides in a tiny rural village somewhere in Japan. The village is small enough where there's only ..." poster "https://m.media-amazon.com/images/M/MV5BYTJmNGQ2ZmQtOGQzZC00OTVlLWJjZDktMTFjZWViMmU0NDdjXkEyXkFqcGdeQXVyMjI3NTc5MDE@._V1_SX300.jpg" ibmdb_id "tt0997184" +HSET "movie:616" title "The Village Barbershop" genre "Comedy" votes 521 rating 6.9 release_year 2008 plot "A fading smalltime barber is forced to hire the last person on earth he'd want working in his shop - a woman." poster "https://m.media-amazon.com/images/M/MV5BMTI5OTUxNjc4NF5BMl5BanBnXkFtZTcwODQ2MTU1MQ@@._V1_SX300.jpg" ibmdb_id "tt0859644" +HSET "movie:617" title "Un village français" genre "Drama" votes 565 rating 8.4 release_year 2009 plot "A French village and its inhabitants go through the ups and (mainly) downs of the occupation by the German army from 1940 to 1945. The village doctor is assigned as mayor,and confronted ..." poster "https://m.media-amazon.com/images/M/MV5BMTk2OTAwMjgyMF5BMl5BanBnXkFtZTcwMDc4NTAzMw@@._V1_SX300.jpg" ibmdb_id "tt1288631" +HSET "movie:618" title "The Village of Shadows" genre "Horror" votes 406 rating 4.3 release_year 2010 plot "A group of young people are trapped in an evil village." poster "https://m.media-amazon.com/images/M/MV5BOGI2NWZmZTYtNTk1NC00MDNmLWIzODMtNTgzMGM0MDIwMjUyXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt1183307" +HSET "movie:619" title "The Cardboard Village" genre "Drama" votes 259 rating 6.3 release_year 2011 plot "When a group of African immigrants builds a cardboard village between the pews of a church soon to be closed,an elderly priest must choose between his calling and his orders." poster "https://m.media-amazon.com/images/M/MV5BYmE1OWNmYmUtNjQ3NS00NmI2LWIyYzctMTc2ZjFlMzljN2U0XkEyXkFqcGdeQXVyNTA0OTU0OTQ@._V1_SX300.jpg" ibmdb_id "tt1774415" +HSET "movie:620" title "Greenwich Village: Music That Defined a Generation" genre "Documentary" votes 264 rating 7.1 release_year 2012 plot "Explores the music scene in Greenwich Village,New York in the 60's and early 70's. The film highlights some of the finest singer/songwriters of the day." poster "https://m.media-amazon.com/images/M/MV5BMTY2NjQ2NTU2N15BMl5BanBnXkFtZTcwNDY0MzUwNg@@._V1_SX300.jpg" ibmdb_id "tt1941541" +HSET "movie:621" title "The Village 1" genre "Drama" votes 1632 rating 7.7 release_year 2013 plot "Follows the residents of one English village across the 20th century and their turbulent lives." poster "https://m.media-amazon.com/images/M/MV5BMzcyY2JiMmItMTNhNS00MTM5LWE0ZDYtYzJlNDVlY2VlNTJhXkEyXkFqcGdeQXVyMjExMjk0ODk@._V1_SX300.jpg" ibmdb_id "tt2394340" +HSET "movie:622" title "Un village presque parfait" genre "Comedy" votes 653 rating 5.9 release_year 2014 plot "'Saint-Far-la-Mauderne',a small village hit hard by the crisis and desertification. His last hope: revive the salmon smoking factory. Only problem,insurance require the presence of a ..." poster "https://m.media-amazon.com/images/M/MV5BZDY2MDZhNDktMmNlNy00NDEzLTg0Y2YtMWRhOWQ5MmJjODk3XkEyXkFqcGdeQXVyMjU0MzYxOTY@._V1_SX300.jpg" ibmdb_id "tt3324286" +HSET "movie:623" title "The Village: Achiara's Secret" genre "Mystery" votes 133 rating 7.3 release_year 2015 plot "Achiara is a quiet,peaceful village with hardly any crime. But on her first day of school there,English language instructor Kim So-yoon discovers a buried corpse. As the towns people ..." poster "https://m.media-amazon.com/images/M/MV5BZWI1MDM1YTktMzkyNi00YjM0LTkyMGMtM2FkOGEyY2Q4MTBhXkEyXkFqcGdeQXVyMTExNDQ2MTI@._V1_SX300.jpg" ibmdb_id "tt5084004" +HSET "movie:624" title "The Lost Village" genre "Animation" votes 347 rating 5.3 release_year 2016 plot "A group of 30 individuals go on a bus tour to Nanaki Village in order to leave behind their normal lives but arrive to find that the village is hiding many secrets." poster "https://m.media-amazon.com/images/M/MV5BYzAxY2RlNGQtNjc5MC00YzI3LWE3ZmQtODhkNWE5ODUxYWY0XkEyXkFqcGdeQXVyMzgxODM4NjM@._V1_SX300.jpg" ibmdb_id "tt5614348" +HSET "movie:625" title "Smurfs: The Lost Village" genre "Animation" votes 16920 rating 6.0 release_year 2017 plot "In this fully animated,all-new take on the Smurfs,a mysterious map sets Smurfette and her friends Brainy,Clumsy,and Hefty on an exciting race through the Forbidden Forest,leading to the discovery of the biggest secret in Smurf history." poster "https://m.media-amazon.com/images/M/MV5BMTg1NjgyMTYzM15BMl5BanBnXkFtZTgwMzIxNDc4MDI@._V1_SX300.jpg" ibmdb_id "tt2398241" +HSET "movie:626" title "A Christmas Village" genre "Comedy" votes 123 rating 4.4 release_year 2018 plot "Piper Jansen is a slick public relations genius and owner of her own company 'Piper's Picks.' After creating countless successful campaigns,she decides to use her grandmother's holiday ..." poster "https://m.media-amazon.com/images/M/MV5BZmYxMTUwYTItMjVkMi00MTdhLWIwOTMtNjg5MDVmZWRjMTI0XkEyXkFqcGdeQXVyODA3NTIyMjM@._V1_SX300.jpg" ibmdb_id "tt9047392" +HSET "movie:627" title "The Village 2" genre "Drama" votes 1790 rating 7.4 release_year 2019 plot "Residents of a unique apartment building in Greenwich Village build a bonded family of friends and neighbors." poster "https://m.media-amazon.com/images/M/MV5BMjgxMmFiNWMtYWQ2MC00ZjI5LTkwMWUtM2NjMTNiYTZiYmRkXkEyXkFqcGdeQXVyODUxOTU0OTg@._V1_SX300.jpg" ibmdb_id "tt7866098" +HSET "movie:628" title "Homage to Jean Tinguely's 'Homage to New York'" genre "Short" votes 65 rating 4.7 release_year 1960 plot "N/A" poster "N/A" ibmdb_id "tt0482994" +HSET "movie:629" title "New York Lightboard Record" genre "Short" votes 72 rating 6.0 release_year 1961 plot "New Yorkers watch as Norman McLaren's animated promotional film for Canadian tourism plays on the giant pixelboard overlooking Times Square. The caption below the board reads: 'Canada... ..." poster "N/A" ibmdb_id "tt0055227" +HSET "movie:631" title "Sunday in New York" genre "Comedy" votes 2159 rating 6.8 release_year 1963 plot "On a Sunday,Eileen Tyler,still a virgin,leaves Albany to visit her airline pilot brother in New York but a chance encounter with a man on a city bus threatens to derail her upcoming marriage to boyfriend Russ." poster "https://m.media-amazon.com/images/M/MV5BZjZiNGE1MTMtNGYzZS00YmE4LWJjMzEtNzliZDY1YzA1MmM5XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_SX300.jpg" ibmdb_id "tt0057543" +HSET "movie:632" title "New York Eye and Ear Control" genre "Short" votes 26 rating 6.2 release_year 1964 plot "N/A" poster "N/A" ibmdb_id "tt0131497" +HSET "movie:633" title "The Troops in New York" genre "Adventure" votes 6365 rating 6.5 release_year 1965 plot "After being chosen to represent France in an international congress,Cruchot and his troops must go to New York,and adapt to its social and cultural aspects." poster "https://m.media-amazon.com/images/M/MV5BNWUyYzVmYWUtYTRlYi00YjFiLTk2M2ItMGVmZjFiN2ZlNDdhXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg" ibmdb_id "tt0060450" +HSET "movie:634" title "New York City... Melting Point" genre "Documentary" votes 40 rating 7.2 release_year 1966 plot "A documentary about New York City produced in collaboration with the United States Information Agency (USIA) for educational and information purposes." poster "https://m.media-amazon.com/images/M/MV5BOTE2OTc0NmUtYWYyMS00NWZiLWJlYWUtZDc0NzExOWRjYmI4XkEyXkFqcGdeQXVyNzI4MDMyMTU@._V1_SX300.jpg" ibmdb_id "tt3413658" +HSET "movie:637" title "Hercules in New York" genre "Adventure" votes 16414 rating 3.3 release_year 1970 plot "Hercules is sent to Earth where he finds true love and starts a promising career in the bodybuilder business." poster "https://m.media-amazon.com/images/M/MV5BMDE2MDRmMjQtNGM0NC00N2U4LWI2ZGYtM2I2MzIyNzY5NjlmXkEyXkFqcGdeQXVyNDIwODAwNzg@._V1_SX300.jpg" ibmdb_id "tt0065832" +HSET "movie:638" title "Klute in New York: A Background for Suspense" genre "Short" votes 53 rating 5.8 release_year 1971 plot "A promotional short film back in the 1970's that in current days can be viewed as a closer look at the making of Klute (1971). The project follows the complex shooting on multiple locations..." poster "https://m.media-amazon.com/images/M/MV5BNTVhNDQwOGMtMWY0OS00ZDI5LWE2OTEtNzg2OTQ4NjJmMDdlXkEyXkFqcGdeQXVyMjA3NDg2Mzg@._V1_SX300.jpg" ibmdb_id "tt0317841" +HSET "movie:642" title "Sheila Levine Is Dead and Living in New York" genre "Comedy" votes 193 rating 6.5 release_year 1975 plot "Sheila Levine is a Jewish-American princess and a native of Harrisburg,Pennsylvania. An innovative,bright,but painfully introverted individual,she comes to New York City with her mother..." poster "https://m.media-amazon.com/images/M/MV5BMTQxMzg1MGQtMWFjMS00ZWVjLWExNzItMzBlYzU1YmJlOGQxXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0073698" +HSET "movie:643" title "Harry and Walter Go to New York" genre "Crime" votes 848 rating 5.5 release_year 1976 plot "Two hopelessly-out-of-their-class conmen attempt to pull off the largest bank heist of the nineteenth century. They gain the enmity of the most famous bank robber in the world,and the ..." poster "https://m.media-amazon.com/images/M/MV5BYzVhMGJjNTUtYzg2Ny00OTU5LTgwYWQtZjlkNTcwMTJiZDJkL2ltYWdlXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0074608" +HSET "movie:644" title "New York,New York" genre "Drama" votes 17320 rating 6.7 release_year 1977 plot "An egotistical saxophonist and a young singer meet on V-J Day and embark upon a strained and rocky romance,even as their careers begin a long,up-hill climb." poster "https://m.media-amazon.com/images/M/MV5BYzZjM2RlZWMtZjVhNC00ODAyLTg0MDEtZDNmNjU4ODg2YjY3XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0076451" +HSET "movie:646" title "New York Portrait: Chapter I" genre "Documentary" votes 64 rating 7.4 release_year 1979 plot "N/A" poster "N/A" ibmdb_id "tt1829721" +HSET "movie:648" title "Escape from New York" genre "Action" votes 117888 rating 7.2 release_year 1981 plot "In 1997,when the U.S. president crashes into Manhattan,now a giant maximum security prison,a convicted bank robber is sent in to rescue him." poster "https://m.media-amazon.com/images/M/MV5BMTUzMTY0Nzg0MV5BMl5BanBnXkFtZTgwMDU3MzQxMDE@._V1_SX300.jpg" ibmdb_id "tt0082340" +HSET "movie:649" title "The New York Ripper" genre "Horror" votes 8687 rating 6.4 release_year 1982 plot "A burned-out New York police detective teams up with a college psychoanalyst to track down a vicious serial killer randomly stalking and killing various young women around the city." poster "https://m.media-amazon.com/images/M/MV5BNDZjN2JlZGItMjc1MS00MzFkLTk2NWQtZTBhYWYyODhjMDMyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0084719" +HSET "movie:650" title "2019: After the Fall of New York" genre "Action" votes 2651 rating 5.6 release_year 1983 plot "After a nuclear war,society breaks down into two groups,the evil Euraks and the rebel Federation. A mercenary named Parsifal is hired by the Federation to infiltrate New York City,which ..." poster "https://m.media-amazon.com/images/M/MV5BNTk3YzI4ZGUtM2VjMS00YmRhLWFhMTgtOTA0Y2U5ZDE2OGE5XkEyXkFqcGdeQXVyNDgxODg1MzU@._V1_SX300.jpg" ibmdb_id "tt0085125" +HSET "movie:651" title "Neapolitan Boy in New York" genre "Musical" votes 27 rating 4.4 release_year 1984 plot "N/A" poster "N/A" ibmdb_id "tt0088068" +HSET "movie:652" title "Goodbye,New York" genre "Comedy" votes 99 rating 5.1 release_year 1985 plot "A young New York woman,devastated to find out that her husband has been cheating on her,decides to hop a plane to Paris to get away. However,she falls asleep on the plane,misses her ..." poster "https://m.media-amazon.com/images/M/MV5BMTI5ODY2NDE0NF5BMl5BanBnXkFtZTcwMTc0OTcxMQ@@._V1_SX300.jpg" ibmdb_id "tt0089217" +HSET "movie:653" title "John Lennon Live in New York City" genre "Documentary" votes 76 rating 7.0 release_year 1986 plot "In 1972,John Lennon,Yoko Ono,and the Plastic Ono Elephants Memory Band put together a benefit concert for mentally and physically handicapped children in New York. Their performance in ..." poster "https://m.media-amazon.com/images/M/MV5BMzc0MDhiMTItYWFmZi00ZWY0LTg4MTItMTE3NDMzMzkzZGQwXkEyXkFqcGdeQXVyNDY0NjEwNTE@._V1_SX300.jpg" ibmdb_id "tt0467594" +HSET "movie:654" title "Un tassinaro a New York" genre "Comedy" votes 150 rating 5.1 release_year 1987 plot "The Roman taxi driver Pietro Marchetti finds himself to witness a mafia crime. Having to testify at the trial,he is checked by the police,especially when he has to go to the United States to attend the graduation of his son Francesco." poster "https://m.media-amazon.com/images/M/MV5BMTQ1YTQyMTctYTBkYy00MGU1LTg1MDgtMDI1NTk1ZmFhZDdiXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0094108" +HSET "movie:655" title "Mondo New York" genre "Documentary" votes 143 rating 6.0 release_year 1988 plot "A young woman wanders around New York City and stumbles across a number of strange characters and settings that represent the 'underground' areas of the city. She sees stand up comedy in ..." poster "https://m.media-amazon.com/images/M/MV5BMTM0MjIxNTQyMF5BMl5BanBnXkFtZTcwNTQ3OTgwMw@@._V1_SX300.jpg" ibmdb_id "tt0093558" +HSET "movie:656" title "New York Stories" genre "Comedy" votes 16265 rating 6.4 release_year 1989 plot "A middle-aged artist obsessed with his pretty young assistant,a precocious 12 year old living in a hotel,and a neurotic lawyer with a possessive mother make up three Gotham tales." poster "https://m.media-amazon.com/images/M/MV5BMDk1Mzk0YTctZWU5OS00ODNiLTkwNWQtZjUzZmZmY2VhZmViXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0097965" +HSET "movie:657" title "King of New York" genre "Crime" votes 29432 rating 7.0 release_year 1990 plot "A drug kingpin is released from prison and seeks to take total control of the criminal underworld in order to give back to the community." poster "https://m.media-amazon.com/images/M/MV5BOTE2NDcxNzE4N15BMl5BanBnXkFtZTgwMDc1NTk4NjE@._V1_SX300.jpg" ibmdb_id "tt0099939" +HSET "movie:658" title "Lou Reed: The New York Album" genre "Music" votes 12 rating 7.9 release_year 1991 plot "A 1989 Lou Reed concert in Montreal. The track-list is the same of the album 'New York' (1989 one of Reed's most famous and apprecciated works." poster "N/A" ibmdb_id "tt0427472" +HSET "movie:659" title "Home Alone 2: Lost in New York" genre "Adventure" votes 285157 rating 6.7 release_year 1992 plot "One year after Kevin McCallister was left home alone and had to defeat a pair of bumbling burglars,he accidentally finds himself stranded in New York City - and the same criminals are not far behind." poster "https://m.media-amazon.com/images/M/MV5BNDI1MzM0Y2YtYmIyMS00ODE3LTlhZjEtZTUyNmEzMTNhZWU5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0104431" +HSET "movie:660" title "Naked in New York" genre "Comedy" votes 1424 rating 5.7 release_year 1993 plot "Naked in New York begins in the car of grown up Jake,he is talking to us about his girlfriend,Joanne,(watch for the facial expressions) and to whom you can turn to for help while facing ..." poster "https://m.media-amazon.com/images/M/MV5BZjgwZjMyN2YtOGU3ZS00Mjg3LWEzNzItNmU0Mjg1YjBlYzU3XkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt0110623" +HSET "movie:661" title "New York Undercover" genre "Crime" votes 1859 rating 7.8 release_year 1994 plot "Drugs,robbery,corruption,rape,murder. Cops versus criminals. The undercover war has started. Welcome to New York City." poster "https://m.media-amazon.com/images/M/MV5BMzMyMDYxYWItZGFmZS00MmU2LTlhNDctODUyOTAwN2Y1ZTg5XkEyXkFqcGdeQXVyNjExODE1MDc@._V1_SX300.jpg" ibmdb_id "tt0108876" +HSET "movie:662" title "New York Daze" genre "Comedy" votes 39 rating 7.5 release_year 1995 plot "Eric,a writer that hardly ever writes,and Donny,a photographer that refuses to show his work in public,struggle with things like steady jobs and promotions that will ultimately ..." poster "N/A" ibmdb_id "tt0112198" +HSET "movie:663" title "A Couch in New York" genre "Comedy" votes 1618 rating 6.0 release_year 1996 plot "Dr. Henry Harriston is a successful psychoanalyst in New York City. When he is near a nervous breakdown,he arranges to change his flat with Beatrice Saulnier from France for a while. Both ..." poster "https://m.media-amazon.com/images/M/MV5BZjA0NTBlYmYtM2ViMS00ZmYwLWFhODktMmI1YzBiYjYwOGYzXkEyXkFqcGdeQXVyMjQzMzQzODY@._V1_SX300.jpg" ibmdb_id "tt0118018" +HSET "movie:664" title "PNYC: Portishead - Roseland New York" genre "Documentary" votes 533 rating 9.0 release_year 1997 plot "Portishead concert in the Roseland Ballroom,New York City,on the 24th July 1997 with tracks from the albums 'Dummy' and 'Portishead' played by the band and a 30 piece orchestra." poster "https://m.media-amazon.com/images/M/MV5BMTIyOTkyOTc3M15BMl5BanBnXkFtZTcwMDQzNDcyMQ@@._V1_SX300.jpg" ibmdb_id "tt0133157" +HSET "movie:665" title "An Argentinian in New York" genre "Comedy" votes 604 rating 4.5 release_year 1998 plot "A single father wants to rebuild his relationship with his daughter,who flies to New York to become a professional singer." poster "https://m.media-amazon.com/images/M/MV5BMzk0YTA5M2YtZGNjOS00ZWVkLTg1OTUtYjAzZDlkYTc1NTk0XkEyXkFqcGdeQXVyMzU1ODUxOTk@._V1_SX300.jpg" ibmdb_id "tt0158470" +HSET "movie:666" title "Aftershock: Earthquake in New York" genre "Action" votes 1661 rating 5.4 release_year 1999 plot "A devastating earthquake hits New York City,with survivors left fighting for their lives amongst the ruins." poster "https://m.media-amazon.com/images/M/MV5BMTg1NTk5MTM1N15BMl5BanBnXkFtZTcwODgzMTcyMQ@@._V1_SX300.jpg" ibmdb_id "tt0186804" +HSET "movie:667" title "Autumn in New York" genre "Drama" votes 24066 rating 5.7 release_year 2000 plot "Romantic drama about an aging playboy who falls for a sweet,but terminally ill,young woman." poster "https://m.media-amazon.com/images/M/MV5BMWFlM2VmYTUtZmFmMC00N2Y1LWE3NmUtYWI5MWZiMTY3NDRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0174480" +HSET "movie:668" title "Sidewalks of New York" genre "Comedy" votes 6226 rating 6.4 release_year 2001 plot "The interlocking lives and loves of six New Yorkers." poster "https://m.media-amazon.com/images/M/MV5BNDA5ZjllMDMtZGZlMS00MGM4LTlhYjQtZGJkZTBmOWRhN2ZhXkEyXkFqcGdeQXVyNTM0NTU5Mg@@._V1_SX300.jpg" ibmdb_id "tt0239986" +HSET "movie:669" title "Gangs of New York" genre "Crime" votes 386480 rating 7.5 release_year 2002 plot "In 1862,Amsterdam Vallon returns to the Five Points area of New York City seeking revenge against Bill the Butcher,his father's killer." poster "https://m.media-amazon.com/images/M/MV5BNDg3MmI1ZDYtMDZjYi00ZWRlLTk4NzEtZjY4Y2U0NjE5YmRiXkEyXkFqcGdeQXVyNzAxMjE1NDg@._V1_SX300.jpg" ibmdb_id "tt0217505" +HSET "movie:670" title "Return to 'Escape from New York'" genre "Documentary" votes 76 rating 6.4 release_year 2003 plot "Retrospective documentary on the making of John Carpenter's science fiction cult classic 'Escape from New York.'" poster "N/A" ibmdb_id "tt0395729" +HSET "movie:671" title "New York Minute" genre "Comedy" votes 20879 rating 4.9 release_year 2004 plot "Two dissimilar twin sisters haven't spent a day together in years until the day they journey to New York City and everything goes wrong. They're chased by a truant officer and a killer who wants a chip back. But they do meet two nice guys." poster "https://m.media-amazon.com/images/M/MV5BMTI2Mjc0OTc0MV5BMl5BanBnXkFtZTcwMjM4MzUyMQ@@._V1_SX300.jpg" ibmdb_id "tt0363282" +HSET "movie:672" title "New York Doll" genre "Documentary" votes 1599 rating 7.7 release_year 2005 plot "A recovering alcoholic and recently converted Mormon,Arthur 'Killer' Kane,of the rock band The New York Dolls,is given a chance at reuniting with his band after 30 years." poster "https://m.media-amazon.com/images/M/MV5BMTk4NjUxMjE4N15BMl5BanBnXkFtZTcwOTk2NTYzMQ@@._V1_SX300.jpg" ibmdb_id "tt0436629" +HSET "movie:673" title "Once in a Lifetime: The Extraordinary Story of the New York Cosmos" genre "Documentary" votes 1395 rating 7.2 release_year 2006 plot "The rise and fall of the N.Y. Cosmos. The soccer team that brought Pele to America; against the backdrop of N.Y. City in the 70's." poster "https://m.media-amazon.com/images/M/MV5BNzAwMjYyNjEyN15BMl5BanBnXkFtZTcwNTIxNjMzMQ@@._V1_SX300.jpg" ibmdb_id "tt0489247" +HSET "movie:674" title "I Love New York" genre "Reality-TV" votes 1509 rating 4.8 release_year 2007 plot "The show is a contest between twenty men to compete for New York's heart. In the end she will find her true love." poster "https://m.media-amazon.com/images/M/MV5BMjA3MTY0NTEyMF5BMl5BanBnXkFtZTcwODUyNjM1MQ@@._V1_SX300.jpg" ibmdb_id "tt0885435" +HSET "movie:675" title "Synecdoche,New York" genre "Comedy" votes 76085 rating 7.6 release_year 2008 plot "A theatre director struggles with his work,and the women in his life,as he creates a life-size replica of New York City inside a warehouse as part of his new play." poster "https://m.media-amazon.com/images/M/MV5BMjA0MjIyOTI3MF5BMl5BanBnXkFtZTcwODM5NTY5MQ@@._V1_SX300.jpg" ibmdb_id "tt0383028" +HSET "movie:676" title "New York" genre "Crime" votes 9802 rating 6.8 release_year 2009 plot "A contemporary story of 3 friends discovering a new world set against the larger than life New York City. But one day the world around them changed." poster "https://m.media-amazon.com/images/M/MV5BYTljMjMyYjEtZjRlNi00MGE5LTk5MDQtYzAyYTc3ODJiN2M2XkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_SX300.jpg" ibmdb_id "tt1328634" +HSET "movie:677" title "Five Minarets in New York" genre "Action" votes 14009 rating 5.8 release_year 2010 plot "Two Turkish anti-terrorist agents are sent to New York City on a mission to find and bring back the dangerous Islamic leader codenamed 'Dajjal',believed to be hiding in there. Working with..." poster "https://m.media-amazon.com/images/M/MV5BMjE5OTczMjg4Ml5BMl5BanBnXkFtZTcwNDk3MjQ5Mw@@._V1_SX300.jpg" ibmdb_id "tt1686039" +HSET "movie:678" title "Page One: Inside the New York Times" genre "Documentary" votes 3165 rating 6.9 release_year 2011 plot "Unprecedented access to the New York Times newsroom yields a complex view of the transformation of a media landscape fraught with both peril and opportunity." poster "https://m.media-amazon.com/images/M/MV5BNDUzMjk0MjA3MF5BMl5BanBnXkFtZTcwOTczMjEyNQ@@._V1_SX300.jpg" ibmdb_id "tt1787777" +HSET "movie:680" title "Skating to New York" genre "Drama" votes 422 rating 5.6 release_year 2013 plot "The coming-of-age journey of 5 teenage boys who leave their small,Canadian town behind and risk skating across Lake Ontario to New York on the coldest day of the year." poster "https://m.media-amazon.com/images/M/MV5BMTk1Njk1NTI3MV5BMl5BanBnXkFtZTgwNjI0MzU1MTE@._V1_SX300.jpg" ibmdb_id "tt2784036" +HSET "movie:681" title "Welcome to New York -" genre "Drama" votes 3323 rating 5.4 release_year 2014 plot "Mr. Devereaux is a powerful man. A man who handles billions of dollars every day. A man who controls the economic fate of nations. A man driven by a frenzied and unbridled sexual hunger. A ..." poster "https://m.media-amazon.com/images/M/MV5BMjA3Mzc0NjcxOF5BMl5BanBnXkFtZTgwMzIzMDQ5MTE@._V1_SX300.jpg" ibmdb_id "tt2758890" +HSET "movie:682" title "Monster High: Boo York,Boo York" genre "Animation" votes 513 rating 6.5 release_year 2015 plot "The ghouls are taking a bite out of Boo York! The De Niles are hoping to meet their dynastic destiny and carve out a new empire,while Catty Noir is trying to find her music. Together the ghouls are taking Boo York by storm." poster "https://m.media-amazon.com/images/M/MV5BMTg5MDU3MTczOF5BMl5BanBnXkFtZTgwNTYxNDA5NjE@._V1_SX300.jpg" ibmdb_id "tt4779496" +HSET "movie:683" title "Colin Quinn: The New York Story" genre "Comedy" votes 847 rating 6.7 release_year 2016 plot "Colin Quinn discusses the origins of New York and how it got its unique personality." poster "https://m.media-amazon.com/images/M/MV5BNDljMDQ1YzQtN2YwNS00NzA0LTgwNjYtMjhiMzgyMTUyYWRkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjMyMTk2NzE@._V1_SX300.jpg" ibmdb_id "tt6257714" +HSET "movie:685" title "Welcome to New York" genre "Comedy" votes 394 rating 1.9 release_year 2018 plot "Welcome to New York is a comedy film,in which Hero (Diljit Dosanjh a sloppy recovery agent,and Jeenal Patel (Sonakshi Sinha a fashion designer,become part of a big Bollywood event in New York - and chaos ensues." poster "https://m.media-amazon.com/images/M/MV5BZGY4MzczYTItOGQ2OS00NDBiLWI1YzMtNmZlYTI3NzZkYmU5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_SX300.jpg" ibmdb_id "tt7275232" +HSET "movie:686" title "A Rainy Day in New York" genre "Comedy" votes 16309 rating 6.6 release_year 2019 plot "A young couple arrives in New York for a weekend where they are met with bad weather and a series of adventures." poster "https://m.media-amazon.com/images/M/MV5BODAwZDlhZjUtYzM2MS00MGVmLWFjNWMtODc5NjM2OTNkNjExXkEyXkFqcGdeQXVyMzIzNDU1NTY@._V1_SX300.jpg" ibmdb_id "tt7139936" +HSET "movie:688" title "The Man from Chicago" genre "Crime" votes 28 rating 4.3 release_year 1963 plot "N/A" poster "N/A" ibmdb_id "tt0056807" +HSET "movie:689" title "Nightmare in Chicago" genre "Crime" votes 74 rating 7.1 release_year 1964 plot "A complicated dash of the police,headed by Ted Knight,in a really good performance. Knight is chasing down a killer of blondes and the chase runs through the mystifying puzzle of the toll..." poster "https://m.media-amazon.com/images/M/MV5BZmFhZjgzZDItODIyYS00YjRkLWFhYmMtYTAwNzMyZjJhMDA3L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_SX300.jpg" ibmdb_id "tt0058406" +HSET "movie:691" title "El terrible de Chicago" genre "Comedy" votes 8 rating 4.4 release_year 1967 plot "N/A" poster "N/A" ibmdb_id "tt0062354" +HSET "movie:693" title "The Fabulous Bastard from Chicago" genre "Drama" votes 28 rating 4.1 release_year 1969 plot "During the Prohibition era,Steve Desmond runs the biggest bootleg liquor distribution operation of Chicago's east side,while dealing with rival Fats Percelli and Temperance Union ..." poster "https://m.media-amazon.com/images/M/MV5BNzJjNDI3NjctMGM4ZS00YmFhLWE3ZTYtNTBkMGUzMTdiYzhhL2ltYWdlXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_SX300.jpg" ibmdb_id "tt0136856" +HSET "movie:694" title "Chicago 70" genre "Drama" votes 30 rating 8.0 release_year 1970 plot "This bizarre amalgam of 'Alice in Wonderland' and the transcripts of the Chicago 7 Trial makes for an interesting commentary on the American judicial system." poster "N/A" ibmdb_id "tt0121143" +HSET "movie:695" title "The Chicago Teddy Bears" genre "Comedy" votes 26 rating 7.5 release_year 1971 plot "Comedic battle between an honest man and his mobster cousin over a Chicago speakeasy." poster "https://m.media-amazon.com/images/M/MV5BZjUyZjZkNGMtZjU5Mi00MDVjLWI4ZTEtY2ViMjU3YjFmZWFiXkEyXkFqcGdeQXVyMjcyMDU4NA@@._V1_SX300.jpg" ibmdb_id "tt0066640" +HSET "movie:697" title "The Man from Chicago (1975)" genre "Action" votes 73 rating 7.3 release_year 1975 plot "In Turkey,the son of a rich manager is kidnapped. This boy finds a friend in one of the kidnapper when the adventures evolve." poster "https://m.media-amazon.com/images/M/MV5BZmYxOTljNjUtYzliYi00Y2MyLWI5NTEtMzViOWZhMmU3ZDAxXkEyXkFqcGdeQXVyNjMzMDgxMzk@._V1_SX300.jpg" ibmdb_id "tt0076624" +HSET "movie:698" title "Louis Armstrong - Chicago Style" genre "Biography" votes 38 rating 6.3 release_year 1976 plot "The story of how jazz great Louis Armstrong got his start playing in Chicago clubs,how he was framed on a drug charge,and his travels throughout Europe,where he first gained worldwide fame." poster "https://m.media-amazon.com/images/M/MV5BNDA3NzAwMDU0Nl5BMl5BanBnXkFtZTcwNTYzOTEyMQ@@._V1_SX300.jpg" ibmdb_id "tt0074819" +HSET "movie:700" title "Parole Chicago" genre "N/A" votes 37 rating 8.1 release_year 1979 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMjQ2NDI4MzI3N15BMl5BanBnXkFtZTgwNjQ2NDUxOTE@._V1_SX300.jpg" ibmdb_id "tt0165590" +HSET "movie:701" title "Chicago Story" genre "Drama" votes 31 rating 7.3 release_year 1981 plot "This is the story of a pair of cops,a pair of doctors,and a pair of lawyers. And how the shooting of a little girl affects their lives." poster "N/A" ibmdb_id "tt0082165" +HSET "movie:704" title "Chicago: You're the Inspiration" genre "Short" votes 7 rating 6.4 release_year 1984 plot "Chicago performs in the music video 'You're the Inspiration' from the album 'Chicago 17' recorded for Full Moon Records and Warner Brothers Records. Peter Cetera sings while standing in ..." poster "https://m.media-amazon.com/images/M/MV5BMGZmMWFjYTctZGI0ZC00MjA2LTgzODItMGJkODFkNGJhNmZmXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_SX300.jpg" ibmdb_id "tt7147484" +HSET "movie:706" title "Conspiracy: The Trial of the Chicago 8" genre "Drama" votes 145 rating 7.2 release_year 1987 plot "A made-for-cable-TV docudrama about the trial of the men accused of conspiring to cause protesters to riot at the 1968 Democratic National Convention in Chicago. Combines in an innovative ..." poster "https://m.media-amazon.com/images/M/MV5BMTIwODk0MDcyN15BMl5BanBnXkFtZTcwMjY1ODYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0092780" +HSET "movie:707" title "Wild Chicago" genre "Comedy" votes 13 rating 7.5 release_year 1988 plot "'Wild Chicago' took viewers on a fast paced video trip through the city's 'urban jungle',highlighting hundreds of offbeat and unusual people,places,and events in the metropolitan area. ..." poster "N/A" ibmdb_id "tt0420469" +HSET "movie:709" title "Chicago Joe and the Showgirl" genre "Crime" votes 613 rating 5.0 release_year 1990 plot "During World War II,an American serviceman in London decides to impress his English girlfriend by acting as an American gangster,which soon turns deadly." poster "https://m.media-amazon.com/images/M/MV5BNDViMTRjMWItOWJkOS00ZjY0LTkwM2YtMzQ1MmQwYjdmYjI4XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_SX300.jpg" ibmdb_id "tt0099250" +HSET "movie:710" title "Goin' to Chicago" genre "Drama" votes 14 rating 7.4 release_year 1991 plot "N/A" poster "N/A" ibmdb_id "tt0187067" +HSET "movie:712" title "Chicago in Concert at the Greek Theatre" genre "Music" votes 7 rating 7.6 release_year 1993 plot "N/A" poster "N/A" ibmdb_id "tt0953341" +HSET "movie:713" title "Chicago Hope" genre "Drama" votes 3500 rating 6.8 release_year 1994 plot "The lives and trials of the staff of a major hospital in Chicago." poster "https://m.media-amazon.com/images/M/MV5BOTRmZmFkMDQtM2JjMS00NmU2LTkyZmItNjQ4Zjc2NTQ4NDY5XkEyXkFqcGdeQXVyMTEwODg2MDY@._V1_SX300.jpg" ibmdb_id "tt0108724" +HSET "movie:716" title "Chicago Cab" genre "Comedy" votes 1800 rating 6.4 release_year 1997 plot "There is more to this story than this review lets on. It reflects all different facets of society over one drivers shift. He starts out it seems as a cold,ignorant man. But his character ..." poster "https://m.media-amazon.com/images/M/MV5BMTgzNjY5MDc3MV5BMl5BanBnXkFtZTcwOTQ1MzEyMQ@@._V1_SX300.jpg" ibmdb_id "tt0119278" +HSET "movie:718" title "Love and Action in Chicago" genre "Comedy" votes 365 rating 5.0 release_year 1999 plot "Eddie Jones is an agent with the U.S. State Department's elite Eliminator Corps. He eliminates people the government doesn't want around. Eddie also needs to change his life." poster "https://m.media-amazon.com/images/M/MV5BNTYyNjM1NjU2NV5BMl5BanBnXkFtZTgwODU1MzgwMzE@._V1_SX300.jpg" ibmdb_id "tt0176948" +HSET "movie:719" title "Jeff Buckley: Live in Chicago" genre "Documentary" votes 354 rating 8.9 release_year 2000 plot "Jeff Buckley - Live in Chicago includes songs from Grace,classic cover tunes (from sources ranging from Nina Simone to the MC5! a previously unavailable Buckley composition ('What Will ..." poster "https://m.media-amazon.com/images/M/MV5BMTU5NTEwMjEyNV5BMl5BanBnXkFtZTcwNTUyNDgyMQ@@._V1_SX300.jpg" ibmdb_id "tt0288581" +HSET "movie:720" title "Preps: Chicago Hoops" genre "N/A" votes 17 rating 8.4 release_year 2001 plot "Series documenting 5 Chicago high school basketball players,as they attempt to make the next big step in their careers...go to college or jump straight to the NBA" poster "N/A" ibmdb_id "tt0309202" +HSET "movie:721" title "Chicago" genre "Comedy" votes 208153 rating 7.1 release_year 2002 plot "Two death-row murderesses develop a fierce rivalry while competing for publicity,celebrity,and a sleazy lawyer's attention." poster "https://m.media-amazon.com/images/M/MV5BN2E3NDU1ZTktNzZjNy00MWU3LWI4YmMtMjdjNTIzMDU0MDdiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt0299658" +HSET "movie:722" title "Shania Up! Live in Chicago" genre "Music" votes 152 rating 8.6 release_year 2003 plot "Shania Twain performs songs from her latest CD Up! in a concert taped earlier this summer in Chicago." poster "https://m.media-amazon.com/images/M/MV5BYTExNTE5NWMtNDA4Yy00N2JhLTlkZjgtODFhNjk4MTExMDM4XkEyXkFqcGdeQXVyMTQ0MjgzODU@._V1_SX300.jpg" ibmdb_id "tt0378749" +HSET "movie:723" title "Ween Live in Chicago" genre "Documentary" votes 95 rating 9.2 release_year 2004 plot "Live in Chicago documents two nights of a show the group did in Chicago in support of their album Quebec. The DVD features a wide variety of Ween songs,covering nearly every Ween album and..." poster "https://m.media-amazon.com/images/M/MV5BMTU2NzYzMzcyMV5BMl5BanBnXkFtZTcwNTM1OTIxMw@@._V1_SX300.jpg" ibmdb_id "tt0428040" +HSET "movie:724" title "Vertigo 2005: U2 Live from Chicago" genre "Music" votes 835 rating 8.4 release_year 2005 plot "Vertigo 2005: Live from Chicago is a concert film by Irish rock band U2,showcasing two concerts recorded at United Center in Chicago,Illinois during band's 2005 Vertigo Tour." poster "https://m.media-amazon.com/images/M/MV5BOWYxOWQ2ZDAtZGUzYi00NDdjLThiYWQtNzcxMGY3ZWM0NjU3XkEyXkFqcGdeQXVyNTk1NTMyNzM@._V1_SX300.jpg" ibmdb_id "tt0488664" +HSET "movie:725" title "Wait 'Til Next Year: The Saga of the Chicago Cubs" genre "Documentary" votes 50 rating 8.3 release_year 2006 plot "Using the frame of opening day,2006,this documentary examines the Cubs' 100 years without a World Series title. Between conversations with a half-dozen selected Cubs fans in 2006,the ..." poster "N/A" ibmdb_id "tt1073521" +HSET "movie:726" title "Chicago 10" genre "Documentary" votes 1159 rating 7.4 release_year 2007 plot "Archival footage,animation,and music are used to look back at the eight anti-war protesters who were put on trial following the 1968 Democratic National Convention." poster "https://m.media-amazon.com/images/M/MV5BMTgzNjY5NDkxMF5BMl5BanBnXkFtZTcwNTE1OTc1MQ@@._V1_SX300.jpg" ibmdb_id "tt0905979" +HSET "movie:727" title "Cubs Forever: Celebrating 60 Years of WGN-TV and the Chicago Cubs" genre "Documentary" votes 36 rating 7.0 release_year 2008 plot "N/A" poster "N/A" ibmdb_id "tt1224367" +HSET "movie:728" title "Chicago Overcoat" genre "Action" votes 823 rating 6.0 release_year 2009 plot "The fates of an aging hitman and a washed up detective become entwined when one last job leads to one last chance to settle an old score." poster "https://m.media-amazon.com/images/M/MV5BYzQyYTgxODMtNzAyNy00NTFhLWI0YTktM2NjZDVlYjRmZTEzXkEyXkFqcGdeQXVyMzMzMDQ3MzY@._V1_SX300.jpg" ibmdb_id "tt1085382" +HSET "movie:729" title "Stone Temple Pilots: Live in Chicago 2010" genre "Documentary" votes 13 rating 6.5 release_year 2010 plot "N/A" poster "N/A" ibmdb_id "tt1891922" +HSET "movie:731" title "Chicago Fire" genre "Action" votes 30003 rating 7.9 release_year 2012 plot "The story of firefighters in Chicago,both on a personal and professional level." poster "https://m.media-amazon.com/images/M/MV5BYmU2MTUyM2QtYmI2YS00OTY3LTk0YmQtMTk4ZGE1NGE1ZTNkXkEyXkFqcGdeQXVyODUxOTU0OTg@._V1_SX300.jpg" ibmdb_id "tt2261391" +HSET "movie:732" title "Hardcore Pawn: Chicago" genre "Reality-TV" votes 228 rating 4.0 release_year 2013 plot "One of the city's largest and oldest establishments in the pawn and gold-buying business,Royal Pawn Shop is owned by Randy and Wayne Cohen,two brothers who don't always see eye to eye,..." poster "https://m.media-amazon.com/images/M/MV5BMTkzMTQ2MzYyNF5BMl5BanBnXkFtZTgwOTI1NDAxMzE@._V1_SX300.jpg" ibmdb_id "tt2343250" +HSET "movie:733" title "Chicago P.D." genre "Action" votes 21873 rating 8.1 release_year 2014 plot "Follows District 21 of the Chicago Police Department,which is made up of two distinctly different groups: the uniformed cops and the Intelligence Unit." poster "https://m.media-amazon.com/images/M/MV5BYjI4NjY0NTktZmMwMy00Yzk1LTk5NTgtYTU5MjAzYmY4NmY4XkEyXkFqcGdeQXVyODUxOTU0OTg@._V1_SX300.jpg" ibmdb_id "tt2805096" +HSET "movie:734" title "Chicago Med" genre "Drama" votes 11742 rating 7.5 release_year 2015 plot "The city's most highly skilled medical team saves lives,while navigating their unique interpersonal relationships." poster "https://m.media-amazon.com/images/M/MV5BOWZmMjMyY2QtNDQ5Ni00MTMzLTgyM2UtZDQwM2I5OWVhYjIyXkEyXkFqcGdeQXVyODUxOTU0OTg@._V1_SX300.jpg" ibmdb_id "tt4655480" +HSET "movie:735" title "Now More Than Ever: The History of Chicago" genre "Documentary" votes 510 rating 7.0 release_year 2016 plot "The history of legendary rock band Chicago is chronicled from their inception in 1967 all the way to the present." poster "https://m.media-amazon.com/images/M/MV5BMTg1MjQyMDk5OV5BMl5BanBnXkFtZTgwNDk3MzQ5NzE@._V1_SX300.jpg" ibmdb_id "tt3807496" +HSET "movie:736" title "Chicago Justice" genre "Crime" votes 3302 rating 6.8 release_year 2017 plot "The State's Attorney's dedicated team of prosecutors and investigators navigates heated city politics and controversy head-on,while fearlessly pursuing justice." poster "https://m.media-amazon.com/images/M/MV5BZjYxMTkyMDYtMDkyMC00ZGU1LThkNjgtZjc2NjFkNmMzNTJiXkEyXkFqcGdeQXVyNjMxNzcwOTI@._V1_SX300.jpg" ibmdb_id "tt5640060" +HSET "movie:737" title "NXT TakeOver: Chicago II" genre "Action" votes 196 rating 8.4 release_year 2018 plot "The superstars of NXT returns to the Windy City,to once again,to fight each other for the right to be call the best." poster "https://m.media-amazon.com/images/M/MV5BOWNlYjk2ZTktM2UyNy00NjFiLThjMzUtZTZiM2NkY2M5ODExXkEyXkFqcGdeQXVyMzQwNDk2ODM@._V1_SX300.jpg" ibmdb_id "tt8517306" +HSET "movie:739" title "Viva Las Vegas" genre "Comedy" votes 6259 rating 6.4 release_year 1964 plot "Race car driver Lucky Jackson goes to Las Vegas to earn money to pay for a new engine for his motor car. Working as a waiter,he still finds the time to court young Rusty Martin." poster "https://m.media-amazon.com/images/M/MV5BMDM3NTlhZmYtYjIxNy00NGY4LThkZTItMzBjYzMyNGUwOWNhXkEyXkFqcGdeQXVyMjE5MzM3MjA@._V1_SX300.jpg" ibmdb_id "tt0058725" +HSET "movie:741" title "The Las Vegas Hillbillys" genre "Comedy" votes 147 rating 4.8 release_year 1966 plot "A Hillbilly hits the big time in Las Vegas." poster "https://m.media-amazon.com/images/M/MV5BMTI4ODI4MjI3NF5BMl5BanBnXkFtZTcwNjU3MTgxMQ@@._V1_SX300.jpg" ibmdb_id "tt0060618" +HSET "movie:743" title "They Came to Rob Las Vegas" genre "Crime" votes 485 rating 6.1 release_year 1968 plot "A casino blackjack dealer plots with his girlfriend and a group of criminals to hijack and rob an armored car carrying a $7 million in cash while it's in route between Las Vegas and Los Angeles." poster "https://m.media-amazon.com/images/M/MV5BNGQzZmNhOTQtMzAxOC00ZWQ4LThjNzEtY2FhNTgyNzVhZjlmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0063684" +HSET "movie:746" title "Las Vegas Gambit" genre "Family" votes 11 rating 5.5 release_year 1972 plot "Game show based on blackjack using giant playing cards." poster "N/A" ibmdb_id "tt0192898" +HSET "movie:749" title "Las Vegas Lady" genre "Crime" votes 120 rating 4.6 release_year 1975 plot "In Las Vegas,Lucky and two of her girlfriends,Carol and Lisa,plan to steal half a million dollars from the sadistic manager of the Circus Circus Casino. A shadowy man is their contact ..." poster "https://m.media-amazon.com/images/M/MV5BMTc4OTM4MDEzOV5BMl5BanBnXkFtZTcwMDU0NDYyMQ@@._V1_SX300.jpg" ibmdb_id "tt0074775" +HSET "movie:751" title "Benny and Barney: Las Vegas Undercover" genre "Comedy" votes 11 rating 7.4 release_year 1977 plot "Two Las Vegas cops go undercover as a singing and dancing act to investigate the kidnapping of an entertainer." poster "N/A" ibmdb_id "tt0075741" +HSET "movie:752" title "Bernard Manning in Las Vegas" genre "Documentary" votes 6 rating 6.2 release_year 1978 plot "N/A" poster "N/A" ibmdb_id "tt0181200" +HSET "movie:758" title "The Vegas Strip War" genre "Drama" votes 123 rating 5.4 release_year 1984 plot "Neil Chaine,a charming Las Vegas hotel/casino owner,tries to turn his decaying building into the Strip's top attraction to avenge his outing by his former partners who run a more fancy ..." poster "https://m.media-amazon.com/images/M/MV5BYjA5YjI5OTctZTA1OS00YjEzLWFkMDQtZjJmZDM4NDEzNzNhXkEyXkFqcGdeQXVyMTM2Mzg4MA@@._V1_SX300.jpg" ibmdb_id "tt0088342" +HSET "movie:760" title "Las Vegas Serial Killer" genre "Horror" votes 116 rating 2.6 release_year 1986 plot "August 31,1986: Dangerously unhinged serial killer Johnathan Glick gets released from the Nevada State Penitentiary on a technicality. Three days after his release Johnathan arrives in Las..." poster "https://m.media-amazon.com/images/M/MV5BMTc1MTk5NjMwNl5BMl5BanBnXkFtZTcwMjg5NzkyMQ@@._V1_SX300.jpg" ibmdb_id "tt0091380" +HSET "movie:761" title "Cinco nacos asaltan Las Vegas" genre "Action" votes 23 rating 6.5 release_year 1987 plot "N/A" poster "N/A" ibmdb_id "tt0284807" +HSET "movie:762" title "Las Vegas Bloodbath" genre "Horror" votes 194 rating 2.5 release_year 1989 plot "After Sam's wife has betrayed him,he goes on a bloody killing spree in Las Vegas." poster "https://m.media-amazon.com/images/M/MV5BZjRlMGUyNDItZjU3Mi00M2FiLWFmMDQtMjJkNWUxZGQwYzlmXkEyXkFqcGdeQXVyMTIxMDUyOTI@._V1_SX300.jpg" ibmdb_id "tt0240670" +HSET "movie:763" title "Little Vegas" genre "Comedy" votes 62 rating 5.5 release_year 1990 plot "A cast of misfits,refugees from checkered pasts,alcoholic binges and unrequited loves,each seek something different from this scorched wasteland and each other." poster "https://m.media-amazon.com/images/M/MV5BMTg5NDU1NjM4Nl5BMl5BanBnXkFtZTcwMTM5OTEyMQ@@._V1_SX300.jpg" ibmdb_id "tt0100036" +HSET "movie:764" title "Vegas in Space" genre "Comedy" votes 309 rating 4.4 release_year 1991 plot "Three soldiers are ordered to change their gender (via a pill) and are sent on a secret mission (undercover as show girls) to the women only planet of Clitoris' capital city 'Vegas in Space..." poster "https://m.media-amazon.com/images/M/MV5BMTU4OTUyNDYzNV5BMl5BanBnXkFtZTcwNDQ2MjgxMQ@@._V1_SX300.jpg" ibmdb_id "tt0103192" +HSET "movie:765" title "Honeymoon in Vegas" genre "Comedy" votes 16305 rating 5.8 release_year 1992 plot "Jack loses $65000 in poker in Las Vegas,where he's marrying Betsy. The wedding'll have to wait as the poker winner wants the weekend with Betsy to cancel the debt. She accepts. Whom will she marry?" poster "https://m.media-amazon.com/images/M/MV5BYzA3ODllYTgtMWM4NC00MmNiLThhYTctNzdkNTQzZTA4YmM1XkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_SX300.jpg" ibmdb_id "tt0104438" +HSET "movie:767" title "Saved by the Bell: Wedding in Las Vegas" genre "Comedy" votes 2775 rating 6.4 release_year 1994 plot "In this conclusion of the long running series it finally happens: Kelly and Zack will marry. Zack's parents are against the early commitment and Kelly's parents can't afford it,so only the..." poster "https://m.media-amazon.com/images/M/MV5BZDE4ZjhhZmQtYTU4Ny00ZmU5LTkwYjQtNTVkZGRhNmE3ZWRmXkEyXkFqcGdeQXVyMjczOTU2NTI@._V1_SX300.jpg" ibmdb_id "tt0111081" +HSET "movie:768" title "Leaving Las Vegas" genre "Drama" votes 110187 rating 7.5 release_year 1995 plot "Ben Sanderson,a Hollywood screenwriter who lost everything because of his alcoholism,arrives in Las Vegas to drink himself to death. There,he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.." poster "https://m.media-amazon.com/images/M/MV5BNDg3MDM5NTI0MF5BMl5BanBnXkFtZTcwNDY0NDk0NA@@._V1_SX300.jpg" ibmdb_id "tt0113627" +HSET "movie:769" title "The Real Las Vegas" genre "Documentary" votes 22 rating 7.9 release_year 1996 plot "It's a city that's larger than life. A city without limits. A glittering mecca of excess and forbidden desires. THE REAL LAS VEGAS tells the fascinating story of this fabled place and the ..." poster "https://m.media-amazon.com/images/M/MV5BMTExNjM4NTgxOTNeQTJeQWpwZ15BbWU3MDE2OTU1MTE@._V1_SX300.jpg" ibmdb_id "tt0319727" +HSET "movie:770" title "Vegas Vacation" genre "Comedy" votes 42513 rating 6.0 release_year 1997 plot "In the fourth outing for the vacation franchise,the Griswolds have to survive Vegas fever when they go to Las Vegas for a fun family vacation." poster "https://m.media-amazon.com/images/M/MV5BZTIwMWEwZmQtMjI1ZS00NDdmLTgwMGItNmFiOTk1ZWQ5NGZiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0120434" +HSET "movie:771" title "Fear and Loathing in Las Vegas" genre "Adventure" votes 249523 rating 7.6 release_year 1998 plot "An oddball journalist and his psychopathic lawyer travel to Las Vegas for a series of psychedelic escapades." poster "https://m.media-amazon.com/images/M/MV5BNjA2ZDY3ZjYtZmNiMC00MDU5LTgxMWEtNzk1YmI3NzdkMTU0XkEyXkFqcGdeQXVyNjQyMjcwNDM@._V1_SX300.jpg" ibmdb_id "tt0120669" +HSET "movie:772" title "The Conmen in Vegas" genre "Comedy" votes 376 rating 5.5 release_year 1999 plot "The story directly follows The Conman,where Dragon's sister,Ching,have gone to study in Canada. After King and Dragon defeat Macau Mon,they become swindling partners." poster "https://m.media-amazon.com/images/M/MV5BZDBjZTMwNDYtZjc1Ny00YzVmLTk5ZjItYTRmZTI4YjQzYzdiXkEyXkFqcGdeQXVyMjQwMjk0NjI@._V1_SX300.jpg" ibmdb_id "tt0208871" +HSET "movie:773" title "The Flintstones in Viva Rock Vegas" genre "Comedy" votes 20546 rating 3.6 release_year 2000 plot "In this live-action prequel to The Flintstones (1994 the Flintstones and the Rubbles go on a trip to Rock Vegas,where Wilma Slaghoople (Kristen Johnston) is pursued by playboy Chip Rockefeller (Thomas Gibson)." poster "https://m.media-amazon.com/images/M/MV5BNTUzYzQzMGQtNTYyNS00NmUzLThmZmUtMmIyNjQzNDU4YWYwXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_SX300.jpg" ibmdb_id "tt0158622" +HSET "movie:775" title "VH1 Divas Las Vegas" genre "Music" votes 80 rating 6.6 release_year 2002 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BOTY3OTUzNTE2OV5BMl5BanBnXkFtZTcwOTgyNDcxMQ@@._V1_SX300.jpg" ibmdb_id "tt0324402" +HSET "movie:776" title "Las Vegas" genre "Crime" votes 25120 rating 7.4 release_year 2003 plot "Welcome to the Montecito Resort and Casino in Las Vegas,where you can do anything you want,but Ed Deline and his crack surveillance team will be watching. Just remember: what happens in Vegas stays in Vegas." poster "https://m.media-amazon.com/images/M/MV5BMTk2Mjc0NTM2N15BMl5BanBnXkFtZTcwNTI5OTU3MQ@@._V1_SX300.jpg" ibmdb_id "tt0364828" +HSET "movie:777" title "Breaking Vegas" genre "Documentary" votes 201 rating 7.2 release_year 2004 plot "Documentary tracing the attempts of a team of Massachusetts Institute of Technology Institue students to become rich playing blackjack at casinos throughout the United States and the attempts of the casinos' management to thwart them." poster "https://m.media-amazon.com/images/M/MV5BMjAzMzMzOTg1NV5BMl5BanBnXkFtZTcwNjMzODUyMQ@@._V1_SX300.jpg" ibmdb_id "tt0402075" +HSET "movie:778" title "Sex Games Vegas" genre "Drama" votes 116 rating 6.5 release_year 2005 plot "Cal and Mona Barrish are known for their big,over the top parties. The guest lists are large,the people are interesting,and the entertainment is second to none. The party is just the ..." poster "https://m.media-amazon.com/images/M/MV5BNTQxYjc4MDQtMGJjNC00NTQ4LWFlMTktMWEwYjA0MzVkYWY3XkEyXkFqcGdeQXVyNDkyODgyMjE@._V1_SX300.jpg" ibmdb_id "tt0463834" +HSET "movie:779" title "Vegas,Baby" genre "Adventure" votes 4450 rating 4.7 release_year 2006 plot "Five friends road trip to Las Vegas for a bachelor party." poster "https://m.media-amazon.com/images/M/MV5BMTUxMTc1ODE1NF5BMl5BanBnXkFtZTcwNTM1NzIzMQ@@._V1_SX300.jpg" ibmdb_id "tt0432373" +HSET "movie:780" title "Louis Theroux: Gambling in Las Vegas" genre "Documentary" votes 1162 rating 7.4 release_year 2007 plot "Louis Theroux goes to the heart of gambling culture in Las Vegas." poster "https://m.media-amazon.com/images/M/MV5BMjEwOTg1ODg0N15BMl5BanBnXkFtZTgwNzMzMjcwMzE@._V1_SX300.jpg" ibmdb_id "tt1235535" +HSET "movie:781" title "What Happens in Vegas" genre "Comedy" votes 160866 rating 6.1 release_year 2008 plot "A man and a woman are compelled,for legal reasons,to live life as a couple for a limited period of time. At stake is a large amount of money." poster "https://m.media-amazon.com/images/M/MV5BMTIxNzMwOTU3OF5BMl5BanBnXkFtZTcwMzk0NTM2MQ@@._V1_SX300.jpg" ibmdb_id "tt1033643" +HSET "movie:782" title "Vegas" genre "Drama" votes 588 rating 6.5 release_year 2009 plot "You don't choose your family. You choose your friends. Vegas is the story of Thomas,Marianne and Terje - three teenagers with nowhere to go. After witnessing his mother being beaten up,..." poster "https://m.media-amazon.com/images/M/MV5BMjA1MTkzNDcyNl5BMl5BanBnXkFtZTcwNjUwMzAwMw@@._V1_SX300.jpg" ibmdb_id "tt1255956" +HSET "movie:783" title "Venus & Vegas" genre "Action" votes 482 rating 4.0 release_year 2010 plot "When three Vegas buddies attempt the score of a lifetime,they have to walk a fine line between their girlfriends who want their heads,and the mobsters who want them dead." poster "https://m.media-amazon.com/images/M/MV5BODgzNDA4MzczNl5BMl5BanBnXkFtZTcwOTY5Mjk0OA@@._V1_SX300.jpg" ibmdb_id "tt0423474" +HSET "movie:784" title "Flipping Vegas" genre "Reality-TV" votes 485 rating 4.5 release_year 2011 plot "Scott Yancey goes around the town of Las Vegas,Navada buying and flipping homes. Scott,along with help from his team of realtors,find houses for steals of a deal. After what always seems..." poster "https://m.media-amazon.com/images/M/MV5BMDk5ZTE4MjAtMWUyZi00YWNlLWJhMzItMDUyNTc4NTFjMGQxXkEyXkFqcGdeQXVyMTYxNjUyNjI@._V1_SX300.jpg" ibmdb_id "tt1714050" +HSET "movie:785" title "Vegas 2012" genre "Action" votes 7047 rating 7.3 release_year 2012 plot "Ralph Lamb,a former MP for the US Army,becomes sheriff. His brother,Jack,and his son,Dixon,are deputized. Meanwhile,Vincent Savino comes from Chicago to Vegas to run The Savoy hotel and casino." poster "https://m.media-amazon.com/images/M/MV5BMjA5ODgyNzgzOV5BMl5BanBnXkFtZTcwNDAxOTgxOA@@._V1_SX300.jpg" ibmdb_id "tt2262383" +HSET "movie:786" title "Last Vegas" genre "Comedy" votes 124330 rating 6.6 release_year 2013 plot "Four friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal." poster "https://m.media-amazon.com/images/M/MV5BMTQ2ODg2MTIyNF5BMl5BanBnXkFtZTgwMzU2NjgwMDE@._V1_SX300.jpg" ibmdb_id "tt1204975" +HSET "movie:787" title "Vegas (doc)" genre "Documentary" votes 5 rating 9.4 release_year 2014 plot "A look behind the lights in this portrait of the unseen corners of Las Vegas." poster "https://m.media-amazon.com/images/M/MV5BNTY0ODQ0ODEzOF5BMl5BanBnXkFtZTgwMDExMzU3OTE@._V1_SX300.jpg" ibmdb_id "tt2760492" +HSET "movie:789" title "From Vegas to Macau III" genre "Comedy" votes 3041 rating 2.2 release_year 2016 plot "Ken is holding a wedding ceremony in Macau for her daughter,Rainbow,who is marrying his protege,Vincent. Ken's best buddies,Vic and Mark,are invited to the wedding. On the wedding day ..." poster "https://m.media-amazon.com/images/M/MV5BYmRlYTI2NDUtMDA1OC00YmRjLTg1YjctNzRiMmEyNTk3NmQzXkEyXkFqcGdeQXVyNjUzMDM5OTM@._V1_SX300.jpg" ibmdb_id "tt5237980" +HSET "movie:790" title "Flip or Flop Vegas" genre "Reality-TV" votes 284 rating 5.4 release_year 2017 plot "MMA fighter Bristol Marunde and his wife scoop up neglected homes in Las Vegas,Nevada. Using his demo strength and her design sense,they'll create stunning showplaces with the hopes of winning big in Sin City." poster "https://m.media-amazon.com/images/M/MV5BMjY1YzIyOTItMWZlMS00OGNjLWEyOTEtZmQ4ZjA3ZTFmNzZhXkEyXkFqcGdeQXVyMDAwMDAwMw@@._V1_SX300.jpg" ibmdb_id "tt6597210" +HSET "movie:791" title "LA to Vegas" genre "Comedy" votes 4175 rating 7.1 release_year 2018 plot "An ensemble workplace comedy about a group of underdogs trying to find their place in the world,set on the Friday night flight from LAX to Vegas and the returning flight on Sunday,who all..." poster "https://m.media-amazon.com/images/M/MV5BMTc3NDYyNzYxM15BMl5BanBnXkFtZTgwMzgxMjEzNDM@._V1_SX300.jpg" ibmdb_id "tt6484002" +HSET "movie:792" title "7 Days to Vegas" genre "Comedy" votes 460 rating 5.2 release_year 2019 plot "Inspired by a true story about Hollywood big shots who will bet on anything." poster "https://m.media-amazon.com/images/M/MV5BM2VhMmVmZmUtNWZmZC00ZmVkLTllNTYtMjQ5NzNmMjY4Y2M5XkEyXkFqcGdeQXVyNzcwOTIwMA@@._V1_SX300.jpg" ibmdb_id "tt6840554" +HSET "movie:793" title "California" genre "Western" votes 43 rating 4.9 release_year 1963 plot "Revolutionaries rise up against the Mexican government in California in 1841." poster "https://m.media-amazon.com/images/M/MV5BMDQ0YjYxOWMtZDE1OC00NGVjLWE5YzUtZmVjZDYxOTVmOGNjXkEyXkFqcGdeQXVyMzI5NDcxNzI@._V1_SX300.jpg" ibmdb_id "tt0056896" +HSET "movie:797" title "The California Connection" genre "Action" votes 12 rating 4.9 release_year 1973 plot "N/A" poster "N/A" ibmdb_id "tt0131246" +HSET "movie:798" title "California Split" genre "Comedy" votes 4776 rating 7.2 release_year 1974 plot "When a casual gambler befriends a professional one,he begins to mirror his life,sending both deeper into the sleazy gambling world where the stakes keep getting bigger." poster "https://m.media-amazon.com/images/M/MV5BNjk5MzNjMDctYTdhNS00OWI0LWI2MzUtMDI3ODYwMDc5M2E3XkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_SX300.jpg" ibmdb_id "tt0071269" +HSET "movie:799" title "The California Reich" genre "Documentary" votes 78 rating 7.6 release_year 1975 plot "A documentary about the Nazi party in America." poster "https://m.media-amazon.com/images/M/MV5BYWE5MDYwNjUtZGE5NC00YzRjLWExNWUtNWE2YzU2MjZkMzIzXkEyXkFqcGdeQXVyNjUzNTQ3NDA@._V1_SX300.jpg" ibmdb_id "tt0072757" +HSET "movie:800" title "California (1977)" genre "Drama" votes 372 rating 6.8 release_year 1977 plot "After the Civil War,Michael 'California' Random,is released from prison and goes to Missouri with his partner William. He is killed by bandits. California decides to return the belongings to his family and help them against outlaws." poster "https://m.media-amazon.com/images/M/MV5BOTI4NjYxZGYtN2QzNC00YTUxLWFiMmEtMTQ5YTcyMjU4M2M1XkEyXkFqcGdeQXVyMjExNjgyMTc@._V1_SX300.jpg" ibmdb_id "tt0075796" +HSET "movie:801" title "California Suite" genre "Comedy" votes 6203 rating 6.2 release_year 1978 plot "Misadventures of four groups of guests at the Beverly Hills Hotel." poster "https://m.media-amazon.com/images/M/MV5BYmNkMzA1NzgtMjhhMS00MGNiLThiNzktZDA0MTE5ZjZmMWUwXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_SX300.jpg" ibmdb_id "tt0077289" +HSET "movie:802" title "California Dreaming" genre "Comedy" votes 509 rating 6.0 release_year 1979 plot "Young T.T. comes from Chicago to spend the summer in California. He slowly becomes 'California-ized,' while learning about love and life in the Golden State." poster "https://m.media-amazon.com/images/M/MV5BNzc5MDc2Njc3OV5BMl5BanBnXkFtZTYwNjMyMjk5._V1_SX300.jpg" ibmdb_id "tt0078928" +HSET "movie:804" title "Rock Flashback: California Jam" genre "N/A" votes 27 rating 8.7 release_year 1981 plot "Recorded and aired live by ABC-TV on 6th April 1974 at the Ontario Speedway near Los Angeles CA. Video produced by Tony Edwards. One of the most controversial rock festivals of the ..." poster "N/A" ibmdb_id "tt0259544" +HSET "movie:806" title "California Girls" genre "Comedy" votes 31 rating 5.9 release_year 1983 plot "Disk jockey Mad Man Jack (AL MUSIC) needs to pump up his dwindling audiences at a local radio,and hits upon the idea of holding a competition to find California's most exciting girl. ..." poster "https://m.media-amazon.com/images/M/MV5BZGU5Y2JjN2MtMjdkMi00ZjNiLWJjNmEtN2JiMzFkNjdiMTllXkEyXkFqcGdeQXVyNjgzNTU3OTE@._V1_SX300.jpg" ibmdb_id "tt0230063" +HSET "movie:807" title "California Cowboys" genre "Action" votes 34 rating 4.9 release_year 1984 plot "A young American is framed and thrown into a Mexican prison. His friends journey to Mexico to break him out." poster "https://www.imdb.com/title/tt0085508/mediaviewer/rm3821477632?ref_=tt_ov_i" ibmdb_id "tt0085508" +HSET "movie:808" title "A Death in California" genre "Drama" votes 131 rating 6.6 release_year 1985 plot "A Beverly Hills socialite embarks on a love/hate relationship with a psychotic businessman who murdered her fiance and then raped and terrorized her which leads to a bizarre trial." poster "https://m.media-amazon.com/images/M/MV5BMTM1NTA2NTUzN15BMl5BanBnXkFtZTcwNTM4NjYxNA@@._V1_SX300.jpg" ibmdb_id "tt0089004" +HSET "movie:812" title "The California Raisin Show" genre "Animation" votes 76 rating 7.1 release_year 1989 plot "N/A" poster "N/A" ibmdb_id "tt0284709" +HSET "movie:813" title "Raisins Sold Out: The California Raisins II" genre "Animation" votes 38 rating 7.4 release_year 1990 plot "N/A" poster "N/A" ibmdb_id "tt0261220" +HSET "movie:814" title "California Casanova" genre "Comedy" votes 97 rating 6.0 release_year 1991 plot "Stagehand at a nightclub falls for one of the performers. He wins her heart after taking lessons on suavity from a gigolo 'count'." poster "https://m.media-amazon.com/images/M/MV5BMjA0MTM4NzM1Nl5BMl5BanBnXkFtZTgwNzg2ODk1MDE@._V1_SX300.jpg" ibmdb_id "tt0101536" +HSET "movie:815" title "California Dreams" genre "Comedy" votes 1357 rating 7.1 release_year 1992 plot "Living in California,a bunch of cool teenagers decide to form a rock band,the Dreams. Between gigs,they have to deal with real-life issues." poster "https://m.media-amazon.com/images/M/MV5BMjE3ODY3NTI3NV5BMl5BanBnXkFtZTcwNDgzNjIzMg@@._V1_SX300.jpg" ibmdb_id "tt0103380" +HSET "movie:818" title "California Heat" genre "Comedy" votes 32 rating 5.4 release_year 1995 plot "A lifeguard bets he can be true to just one woman." poster "N/A" ibmdb_id "tt0112617" +HSET "movie:821" title "Bajo California: El límite del tiempo" genre "Drama" votes 383 rating 7.9 release_year 1998 plot "Damian is a married artist living in Los Angeles with his wife. After he accidentally hits a woman with his car and flees the scene,he seeks atonement and travels alone to Mexico,both to ..." poster "https://m.media-amazon.com/images/M/MV5BMzdjZDMxYWEtOTYyZi00ZjlhLTg3YmMtNmUyNTk0OTAwMTcyXkEyXkFqcGdeQXVyMzY2MDk0MTk@._V1_SX300.jpg" ibmdb_id "tt0168047" +HSET "movie:822" title "Hot Club California" genre "Comedy" votes 134 rating 4.0 release_year 1999 plot "Three sisters find $100,000 and use it to get out of Detroit and go to California,so they go to their Uncle's club but find it a dead end. But a Detroit mob boss big shot has found out who..." poster "https://m.media-amazon.com/images/M/MV5BZWVlYzdiODktOGU2OC00YThhLWJmYzgtYTJkODVmYmYxYzUyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjg5Nzc3NTU@._V1_SX300.jpg" ibmdb_id "tt0339174" +HSET "movie:823" title "Adventures in Wild California" genre "Documentary" votes 149 rating 7.0 release_year 2000 plot "A visit to many of the places and people that give California its reputation as a place of extremes. Among the major segments: Sky surfing in the San Diego area; the movies,including a ..." poster "https://m.media-amazon.com/images/M/MV5BMTczODYzMjU5Ml5BMl5BanBnXkFtZTcwOTY1OTMyMQ@@._V1_SX300.jpg" ibmdb_id "tt0244303" +HSET "movie:824" title "Going to California" genre "Drama" votes 135 rating 8.0 release_year 2001 plot "Kevin,nicknamed Space,and buddy Hank decide to abandon the routine life to drive across the country. Whatever situation they encounter they adapt and their plans are defined by no rules,no map,just go." poster "https://m.media-amazon.com/images/M/MV5BMjA0NGQzZDAtMDVkZS00NmE2LWJlMTYtOTI2NzczYjhkMjgxXkEyXkFqcGdeQXVyMzkwOTAzNg@@._V1_SX300.jpg" ibmdb_id "tt0258620" +HSET "movie:825" title "Rancho California" genre "N/A" votes 11 rating 7.0 release_year 2002 plot "Documentary examining the racial 'off-worlds' and migrant camps of California's Mexican farm workers." poster "https://m.media-amazon.com/images/M/MV5BNjcxNTk3MzIxMl5BMl5BanBnXkFtZTcwMjEyNjMwMw@@._V1_SX300.jpg" ibmdb_id "tt0303385" +HSET "movie:827" title "A Century in Stone: The Eston and California Story" genre "Documentary" votes 20 rating 8.8 release_year 2004 plot "N/A" poster "N/A" ibmdb_id "tt0414890" +HSET "movie:829" title "Red Hot Chili Peppers: Dani California" genre "Short" votes 79 rating 7.3 release_year 2006 plot "A promotional video of the Red Hot Chili Peppers' 2006 single 'Dani California.'" poster "https://m.media-amazon.com/images/M/MV5BMTA4M2RjMTAtZTcwYS00OTlkLWEwOTUtNzY5OTZhZTdkOTFhXkEyXkFqcGdeQXVyNDE4OTY5NzI@._V1_SX300.jpg" ibmdb_id "tt6715622" +HSET "movie:830" title "King of California" genre "Comedy" votes 21680 rating 6.6 release_year 2007 plot "An unstable dad who after getting out of a mental institution tries to convince his daughter that there's Spanish gold buried somewhere under suburbia." poster "https://m.media-amazon.com/images/M/MV5BMzQxMzIzMjY3N15BMl5BanBnXkFtZTcwMDMzMjM1MQ@@._V1_SX300.jpg" ibmdb_id "tt0388182" +HSET "movie:831" title "Hotel California" genre "Action" votes 275 rating 5.7 release_year 2008 plot "When TROY turned on crime boss DMITRI DEBARTOLLA he was forced to leave Los Angeles and lay low in Miami. After two years,and the loss of his leg in a shootout with a Cuban crime syndicate..." poster "https://m.media-amazon.com/images/M/MV5BMTg2MzQ1ODA2OF5BMl5BanBnXkFtZTcwMjc5OTQ0MQ@@._V1_SX300.jpg" ibmdb_id "tt0866435" +HSET "movie:832" title "California On" genre "Comedy" votes 33 rating 8.3 release_year 2009 plot "Street interviews by Comedian Kassem G on the Venice,California boardwalk." poster "N/A" ibmdb_id "tt2039501" +HSET "movie:833" title "Katy Perry: California Gurls" genre "Short" votes 45 rating 6.6 release_year 2010 plot "In the music video for 'California Gurls',Katy Perry lies naked in a cotton candy cloud and shoots gummy bears using whip cream guns attached to her breasts." poster "N/A" ibmdb_id "tt4451258" +HSET "movie:834" title "Rihanna: California King Bed" genre "Short" votes 53 rating 6.8 release_year 2011 plot "Filming of the music video began in March 2011 in Los Angeles. The premiere of the video was held on Monday,May 9,2011. The action in the clip takes place in the seaside of California,..." poster "https://m.media-amazon.com/images/M/MV5BNzM0YWRjNGEtOGExNC00NGI3LWE3MTgtZGNmZGU5MjM1ZTE1XkEyXkFqcGdeQXVyNTk1NTMyNzM@._V1_SX300.jpg" ibmdb_id "tt6738602" +HSET "movie:835" title "California Solo" genre "Drama" votes 980 rating 6.2 release_year 2012 plot "A former Britpop rocker who now works on a farm gets caught driving drunk and faces deportation after living in Los Angeles for many years. His efforts to stay in the U.S. force him to confront the past and current demons in his life." poster "https://m.media-amazon.com/images/M/MV5BMTk3MzQxMjExNl5BMl5BanBnXkFtZTcwNTY0NTE2OA@@._V1_SX300.jpg" ibmdb_id "tt1918727" +HSET "movie:836" title "Hotel California (2013)" genre "Action" votes 142 rating 4.6 release_year 2013 plot "A mix of incidents such as a kidnapping,identity theft,counterfeit DVD exchange ,pimping out a TV actress etc happens at the time of the release of a much awaited movie." poster "https://m.media-amazon.com/images/M/MV5BZDg3Njc3YmQtM2M0Ny00M2Q1LWEyN2ItMWU4YmQ0NGU4ZmJhXkEyXkFqcGdeQXVyMjkxNzQ1NDI@._V1_SX300.jpg" ibmdb_id "tt2899136" +HSET "movie:838" title "California High" genre "Documentary" votes 28 rating 7.5 release_year 2015 plot "California has been arguing over whether or not marijuana should be legal for over 100 years. Now there's a new judge in this trial - you." poster "https://m.media-amazon.com/images/M/MV5BMTA5NjY4Mjg1MjleQTJeQWpwZ15BbWU4MDM1ODk3Njgx._V1_SX300.jpg" ibmdb_id "tt2991472" +HSET "movie:841" title "California (2018)" genre "Short" votes 5 rating 6.0 release_year 2018 plot "A young Chinese girl and her mother struggle to find a better life in Portugal,the 'West Coast of Europe'." poster "https://m.media-amazon.com/images/M/MV5BY2RhNjMxNzItZDg2Ny00MjYyLTg5NTYtNDQ5MWZhY2I4OTgzXkEyXkFqcGdeQXVyMzczODQ2Mzc@._V1_SX300.jpg" ibmdb_id "tt8389922" +HSET "movie:844" title "El puerto de Barcelona" genre "Documentary" votes 66 rating 4.3 release_year 1966 plot "N/A" poster "N/A" ibmdb_id "tt0145416" +HSET "movie:847" title "Barcelona Kill" genre "Crime" votes 28 rating 4.5 release_year 1973 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNzAyY2IxYWEtYzdhYi00OGNhLTg3ZGUtYmU2ZThmODE5Y2NmXkEyXkFqcGdeQXVyMTQ5ODY1ODc@._V1_SX300.jpg" ibmdb_id "tt0067661" +HSET "movie:849" title "Barça (Historia del F.C. Barcelona)" genre "N/A" votes 7 rating 7.4 release_year 1975 plot "N/A" poster "N/A" ibmdb_id "tt0254986" +HSET "movie:853" title "Barcelona sur" genre "N/A" votes 24 rating 5.8 release_year 1981 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BM2YwZTIxZjktYTc4Ny00ZDA3LWE3ZjktNTM2MWEwMzI2NWZjXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt0082047" +HSET "movie:856" title "Freddie Mercury & Montserrat Caballé: Barcelona" genre "Short" votes 8 rating 7.1 release_year 1987 plot "N/A" poster "N/A" ibmdb_id "tt6730550" +HSET "movie:857" title "Barcelona Connection" genre "Drama" votes 53 rating 6.8 release_year 1988 plot "N/A" poster "N/A" ibmdb_id "tt0092617" +HSET "movie:858" title "Roma-Paris-Barcelona" genre "N/A" votes 5 rating 4.8 release_year 1989 plot "N/A" poster "N/A" ibmdb_id "tt0178002" +HSET "movie:859" title "Madonna: Live! Blond Ambition World Tour 90 from Barcelona Olympic Stadium" genre "Music" votes 91 rating 8.4 release_year 1990 plot "Madonna and her crew perform in Barcelona,Spain for the legendary Blond Ambition Tour in 1990." poster "https://m.media-amazon.com/images/M/MV5BMzYzNmUwZDktMzg3OC00MjU4LTk5YjctMjc3YTgzMjA4NWZkXkEyXkFqcGdeQXVyNTk1NTMyNzM@._V1_SX300.jpg" ibmdb_id "tt1891858" +HSET "movie:860" title "Sepultura: Under Siege (Live in Barcelona)" genre "Documentary" votes 102 rating 8.8 release_year 1991 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNDE5ZjVhNGUtNjBkOC00N2FiLWJlMTUtNjBjZTVmNzFhNTM1L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjg5NTA5Mjg@._V1_SX300.jpg" ibmdb_id "tt0221543" +HSET "movie:861" title "Elton John: Live in Barcelona" genre "Documentary" votes 36 rating 7.7 release_year 1992 plot "This concert includes Elton John's performances of 'I'm Still Standing,' 'Philadelphia Freedom,' 'The One,' 'Daniel','Sad Songs Say So Much,' 'Saturday Night's Alright For Fighting,' 'Sacrifice,' and 'Song For Guy/Your Song.'" ibmdb_id "tt0273192" +HSET "movie:862" title "Barcelona '92: 16 Days of Glory" genre "Documentary" votes 13 rating 7.6 release_year 1993 plot "N/A" poster "N/A" ibmdb_id "tt0106358" +HSET "movie:863" title "Barcelona (1994)" genre "Comedy" votes 5417 rating 7.0 release_year 1994 plot "Ted,a stuffy white guy from Illinois working in sales for the Barcelona office of a US corporation,is paid an unexpected visit by his somewhat less stuffy cousin Fred,who is an officer ..." poster "https://m.media-amazon.com/images/M/MV5BNWU2YzE2YzctNDg1OS00ZDdhLWI3M2ItYWY1MzExZjlmOGM5XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0109219" +HSET "movie:870" title "Bruce Springsteen & the E Street Band: Live in Barcelona" genre "Documentary" votes 285 rating 8.9 release_year 2003 plot "N/A" poster "N/A" ibmdb_id "tt0389820" +HSET "movie:873" title "Barcelona" genre "Drama" votes 10 rating 4.6 release_year 2006 plot "N/A" poster "N/A" ibmdb_id "tt0843468" +HSET "movie:874" title "Barcelona (un mapa)" genre "Drama" votes 160 rating 6.3 release_year 2007 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNWIxZjIzNzgtNzBlMi00NDlmLTgzOTktNTU2MmYwYTBlMzIxXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt0996918" +HSET "movie:875" title "Vicky Cristina Barcelona" genre "Comedy" votes 234181 rating 7.1 release_year 2008 plot "Two friends on a summer holiday in Spain become enamored with the same painter,unaware that his ex-wife,with whom he has a tempestuous relationship,is about to re-enter the picture." poster "https://m.media-amazon.com/images/M/MV5BNjVkZGE1OWItYjMzNC00ZTcwLThiODAtYmYwNzJkMjk5OTVhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt0497465" +HSET "movie:876" title "An Evening with 'Il Divo': Live in Barcelona" genre "Music" votes 21 rating 8.0 release_year 2009 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZWY3MWE1MjUtNzkzMy00YTg1LWFlNjMtNWMxMDY4ZDI5NjYyXkEyXkFqcGdeQXVyMTQ0MjgzODU@._V1_SX300.jpg" ibmdb_id "tt1547651" +HSET "movie:877" title "Depeche Mode: Tour of the Universe - Barcelona 20/21.11.09" genre "Documentary" votes 234 rating 8.2 release_year 2010 plot "Depeche Mode live footage filmed at Palau Sant Jordi in Barcelona,Spain on 20 and 21 November 2009 during the band's 2009-10 worldwide Tour of the Universe." poster "https://m.media-amazon.com/images/M/MV5BYjAwMzE2OGEtZjBmYS00ZjI3LWIzOWUtNGY0YzYzMGQ0ZjhlXkEyXkFqcGdeQXVyMzUyODQ0MzQ@._V1_SX300.jpg" ibmdb_id "tt1765782" +HSET "movie:878" title "Barcelona,Neutral City" genre "History" votes 32 rating 6.7 release_year 2011 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMmViZWNiMjctMTcxMC00MTQ4LWJhY2UtMjYyYjY4MTM1NDVhXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt1755047" +HSET "movie:880" title "Barcelona Summer Night" genre "Comedy" votes 986 rating 6.3 release_year 2013 plot "Multiple stories unfold in Barcelona during Midsummer's Eve." poster "https://m.media-amazon.com/images/M/MV5BMTUyNjcxNDk4M15BMl5BanBnXkFtZTgwMDU2MDI0MTE@._V1_SX300.jpg" ibmdb_id "tt2363564" +HSET "movie:881" title "Barcelona (2014)" genre "Short" votes 11 rating 5.9 release_year 2014 plot "A girl finds herself amusedly immersed in a fantasy world until someone starts stalking her with the intention of revealing her a dark secret." poster "https://m.media-amazon.com/images/M/MV5BMjI2OTQ0MDE5MV5BMl5BanBnXkFtZTgwMTY2NzA0MzE@._V1_SX300.jpg" ibmdb_id "tt4175172" +HSET "movie:882" title "Barcelona Christmas Night" genre "Romance" votes 664 rating 6.7 release_year 2015 plot "Multiple love stories unfold in Barcelona during Christmas's Eve." poster "https://m.media-amazon.com/images/M/MV5BMjI3NTg1MDUxNl5BMl5BanBnXkFtZTgwMzM3NzI4NjE@._V1_SX300.jpg" ibmdb_id "tt3917316" +HSET "movie:883" title "Barcelona: A Love Untold" genre "Drama" votes 541 rating 6.9 release_year 2016 plot "A young man Elly,still trying to get over his past relationship,meets a young woman Mia in Barcelona trying to run away from her past." poster "https://m.media-amazon.com/images/M/MV5BYjNhZWZkNjktNmMwMy00MmQzLTkwZTUtZmZmMjU2MmExZDQ4XkEyXkFqcGdeQXVyNTI5NjIyMw@@._V1_SX300.jpg" ibmdb_id "tt5755912" +HSET "movie:885" title "Belok Kanan Barcelona" genre "Drama" votes 60 rating 7.0 release_year 2018 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BYzc5OGI5NzEtYjM3Zi00Y2EzLThhZTMtMzVhMmIwNjk1Y2U2XkEyXkFqcGdeQXVyNzY4NDQzNTg@._V1_SX300.jpg" ibmdb_id "tt8856944" +HSET "movie:886" title "Matchday: Inside FC Barcelona" genre "Documentary" votes 182 rating 8.5 release_year 2019 plot "Inside FC Barcelona,which follows the famed soccer club through its 2018-2019 season." poster "https://m.media-amazon.com/images/M/MV5BNWUyNzUxYmEtYTZiMC00MmQ3LTk1MmUtOTUzZjEyODlmM2M3XkEyXkFqcGdeQXVyMTA5Njg1Mzky._V1_SX300.jpg" ibmdb_id "tt11122508" +HSET "movie:887" title "I 10 del Texas" genre "N/A" votes 13 rating 4.6 release_year 1961 plot "N/A" poster "N/A" ibmdb_id "tt0205714" +HSET "movie:888" title "Young Guns of Texas" genre "Western" votes 171 rating 4.9 release_year 1962 plot "A cowboy and 5 others pursue outlaws to recover stolen Union Army gold,while a revengeful rancher is it out to murder one of the pursuers." poster "https://m.media-amazon.com/images/M/MV5BZjY3ZjE1YjItNWYxYy00NzA1LTgwYTgtYzI0ZDZjZjA0ZWQzXkEyXkFqcGdeQXVyNTI2Njg2OTI@._V1_SX300.jpg" ibmdb_id "tt0056710" +HSET "movie:889" title "4 for Texas" genre "Comedy" votes 2835 rating 5.6 release_year 1963 plot "Zack Thomas is a tough guy who hooks up with Joe Jarrett to open a casino." poster "https://m.media-amazon.com/images/M/MV5BMmY1YmIwMGMtMDY3NS00Yjc5LWE4YmUtMWUzZThmNjE4ODg3L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0057071" +HSET "movie:890" title "Texas Ranger" genre "Western" votes 25 rating 4.4 release_year 1964 plot "N/A" poster "N/A" ibmdb_id "tt0058538" +HSET "movie:892" title "Texas,Adios" genre "Action" votes 1293 rating 6.2 release_year 1966 plot "A Texan sheriff and his younger brother travel across the border into Mexico to confront the man who killed their father." poster "https://m.media-amazon.com/images/M/MV5BODFhMzE2YjItMzVkZS00YjQ0LTk4MWEtOTRkZWJjNGRkOGQwXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0060143" +HSET "movie:893" title "Africa: Texas Style" genre "Adventure" votes 173 rating 5.7 release_year 1967 plot "An American cowboy is hired to work on a ranch in Africa,and winds up having to fight predators,both the four- and two-legged kinds." poster "https://m.media-amazon.com/images/M/MV5BYzU4MTQ0YjUtNGVlZC00ODViLWIwZTgtNWJkYzY4Y2FiMjkwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" ibmdb_id "tt0061334" +HSET "movie:894" title "Three Guns for Texas" genre "Western" votes 70 rating 7.0 release_year 1968 plot "Several episodes of the TV series 'Laredo' edited together and released as a feature." poster "https://m.media-amazon.com/images/M/MV5BZTdhMWRlMmMtNjY0OC00OGUyLWJkNDYtZWZkYzI4YzU1MjVkXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0063691" +HSET "movie:896" title "Texas Country Reporter" genre "Talk-Show" votes 5 rating 7.0 release_year 1972 plot "Bob and Kelli Phillips travel the back roads of Texas discovering uplifting stories,interesting places and fascinating people in the Lone Star State." poster "https://m.media-amazon.com/images/M/MV5BYjBjYzhmOGEtMmQxMy00Y2UwLWIwYjEtZTk0NmFjYzM3MWVmXkEyXkFqcGdeQXVyMjY0MTQ0NjY@._V1_SX300.jpg" ibmdb_id "tt8739522" +HSET "movie:897" title "The Texas Chain Saw Massacre" genre "Horror" votes 128393 rating 7.5 release_year 1974 plot "Two siblings and three of their friends en route to visit their grandfather's grave in Texas end up falling victim to a family of cannibalistic psychopaths and must survive the terrors of Leatherface and his family." poster "https://m.media-amazon.com/images/M/MV5BZDI3OWE0ZWMtNGJjOS00N2E4LWFiOTAtZjQ4OTNiNzIwN2NkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0072271" +HSET "movie:898" title "The Great Texas Dynamite Chase" genre "Action" votes 369 rating 5.9 release_year 1976 plot "Explosive drama and action when two sexy girls go on a bank robbing binge." poster "https://m.media-amazon.com/images/M/MV5BYjlhZGU2ZWYtZjU2MC00MDc0LTk2YzItMmYyZDU2YzZjYjgzXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0076109" +HSET "movie:900" title "Texas Detour" genre "Action" votes 47 rating 5.6 release_year 1978 plot "A trip across the United States takes a wrong turn when three California teenagers have their van stolen. Stranded in a backwoods town with the sheriff refusing to help,the trio decide to settle scores while getting justice." poster "https://m.media-amazon.com/images/M/MV5BMDRjNGJiZDMtYTZiZS00ZmM0LWExZDAtMjAyNjIxNWI1MmE1L2ltYWdlXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_SX300.jpg" ibmdb_id "tt0078379" +HSET "movie:902" title "Texas" genre "Drama" votes 52 rating 8.0 release_year 1982 plot "Daytime Drama,spun off from 'Another World,' which followed Iris Carrington from Bay City as she rediscovered Alex Wheeler,a former love,and moved to the Houston area. The stories ..." poster "N/A" ibmdb_id "tt0080290" +HSET "movie:903" title "Murder in Texas" genre "Drama" votes 290 rating 7.3 release_year 1981 plot "Story of Texas heiress Joan Robinson,who married plastic surgeon John Hill. Her father,Ash,is suspicious of Hill,thinking that he married Joan for money,which he used to buy a house ..." poster "https://m.media-amazon.com/images/M/MV5BZjQzZDlhNWMtZDBlMS00YTgxLThiZDctNDA2N2EyZjNlMjE3XkEyXkFqcGdeQXVyNDEzNTUxMTk@._V1_SX300.jpg" ibmdb_id "tt0082780" +HSET "movie:904" title "The Best Little Whorehouse in Texas" genre "Comedy" votes 9420 rating 5.9 release_year 1982 plot "A town's Sheriff and regular patron of a historical whorehouse fights to keep it running when a television reporter targets it as the Devil's playhouse." poster "https://m.media-amazon.com/images/M/MV5BM2Y3M2Y1MzUtNWViYi00YzZjLWE0YzUtMWVjYzc2YjI3Y2I2L2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0083642" +HSET "movie:905" title "2020 Texas Gladiators" genre "Action" votes 501 rating 4.6 release_year 1983 plot "In a post-apocalyptic Texas,a band of warriors fight against a fascist regime that is trying to take control of all surviving population." poster "https://m.media-amazon.com/images/M/MV5BYTJkZjY5ODYtOGE4NC00MWVmLThiOGQtZDNjNzhiZjEzMzlmXkEyXkFqcGdeQXVyMTQ2MjQyNDc@._V1_SX300.jpg" ibmdb_id "tt0083565" +HSET "movie:906" title "Paris,Texas" genre "Drama" votes 81389 rating 8.1 release_year 1984 plot "Travis Henderson,an aimless drifter who has been missing for four years,wanders out of the desert and must reconnect with society,himself,his life,and his family." poster "https://m.media-amazon.com/images/M/MV5BM2RjMmU3ZWItYzBlMy00ZmJkLWE5YzgtNTVkODdhOWM3NGZhXkEyXkFqcGdeQXVyNDA5Mjg5MjA@._V1_SX300.jpg" ibmdb_id "tt0087884" +HSET "movie:907" title "Tyler Texas Black Film Collection" genre "Documentary" votes 5 rating 5.2 release_year 1985 plot "N/A" poster "N/A" ibmdb_id "tt6312066" +HSET "movie:908" title "The Texas Chainsaw Massacre 2" genre "Comedy" votes 26093 rating 5.6 release_year 1986 plot "A radio host is victimized by the cannibal family as a former Texas Marshall hunts them." poster "https://m.media-amazon.com/images/M/MV5BMDNjNTg3MWUtNjUxNi00MzYxLWJmODctNTg0ZmI1Zjc2Y2Q0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0092076" +HSET "movie:909" title "The Texas Comedy Massacre" genre "Comedy" votes 15 rating 5.4 release_year 1987 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNzkyMDlkZDItNzRhOC00MzMyLTk1MDQtMDA2YmE2N2IzMWE5XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0123296" +HSET "movie:910" title "The Texas Chainsaw Massacre: A Family Portrait" genre "Documentary" votes 666 rating 6.0 release_year 1988 plot "A documentary about the classic 'Texas Chainsaw Massacre' film,including interviews with Gunnar Hansen (LEATHERFACE Edwin Neal (THE HITCHHIKER John Dugan (GRANDPA) and Jim Seidow (OLD MAN)." poster "https://m.media-amazon.com/images/M/MV5BMTI0NTA5MTM1M15BMl5BanBnXkFtZTcwMjEyNTAzMQ@@._V1_SX300.jpg" ibmdb_id "tt0248537" +HSET "movie:911" title "Minas-Texas" genre "Adventure" votes 11 rating 6.0 release_year 1989 plot "In a country town in the state of Minas Gerais,Brazil,Januária is going to marry the shy and naive Amorim. But in her heart she wants to escape with her dream hero,the cowboy Roy ..." poster "https://m.media-amazon.com/images/M/MV5BNWM4MDkyYWEtMWRjZi00NTM2LWEzNjctNmEzMWY5MmNlNmI1L2ltYWdlXkEyXkFqcGdeQXVyMjU4MzEwNTU@._V1_SX300.jpg" ibmdb_id "tt0257919" +HSET "movie:912" title "Leatherface: Texas Chainsaw Massacre III" genre "Horror" votes 13244 rating 5.1 release_year 1990 plot "A California couple and a survivalist encounter Leatherface and his family." poster "https://m.media-amazon.com/images/M/MV5BYmFhMjlkOTctNWU2MC00YmQzLWJmYWMtZTUyNzM4YTU4ODRhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0099994" +HSET "movie:913" title "Wild Texas Wind" genre "Drama" votes 136 rating 6.1 release_year 1991 plot "A country singer becomes romantically entangled with a volatile manager." poster "https://m.media-amazon.com/images/M/MV5BYTg2ODlmNzMtMTMxZC00YzE0LWEwODctYjI2MmQ5NTkxN2ZhXkEyXkFqcGdeQXVyNzMzMjU5NDY@._V1_SX300.jpg" ibmdb_id "tt0103263" +HSET "movie:914" title "Willing to Kill: The Texas Cheerleader Story" genre "Drama" votes 167 rating 5.9 release_year 1992 plot "Fact-based story of a homemaker driven by jealousy to conspire against the mother of her daughter's rival." poster "N/A" ibmdb_id "tt0105822" +HSET "movie:915" title "Walker,Texas Ranger" genre "Action" votes 14247 rating 5.5 release_year 1993 plot "Walker and his partner Trivette are Texas Rangers. They make it their business to battle crime in Dallas and all around the Great State of Texas." poster "https://m.media-amazon.com/images/M/MV5BMTc4MzAzMDA2Ml5BMl5BanBnXkFtZTcwNjk3NzIzMQ@@._V1_SX300.jpg" ibmdb_id "tt0106168" +HSET "movie:916" title "Texas (1994)" genre "Adventure" votes 392 rating 6.3 release_year 1994 plot "In the beginning of the 19th Century,many white Americans are settling in the Mexican province of Texas. As the years go by,political conflicts between the settlers and the Mexican ..." poster "https://m.media-amazon.com/images/M/MV5BMTkzNTc0Mzg3Ml5BMl5BanBnXkFtZTcwOTQ5MDYxMQ@@._V1_SX300.jpg" ibmdb_id "tt0108316" +HSET "movie:917" title "Texas Chainsaw Massacre: The Next Generation" genre "Comedy" votes 18849 rating 3.3 release_year 1995 plot "A group of teenagers get into a car crash in the Texas woods on prom night,and then wander into an old farmhouse that is home to Leatherface and his insane family of cannibalistic psychopaths." poster "https://m.media-amazon.com/images/M/MV5BYTE3MzM4NzQtZWZjMi00MmI5LWE0NGItNDZlNmJhMjQyMTQ1L2ltYWdlXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_SX300.jpg" ibmdb_id "tt0110978" +HSET "movie:918" title "The Return of the Texas Chainsaw Massacre: The Documentary" genre "Documentary" votes 19 rating 7.3 release_year 1996 plot "This 55 minute documentary includes on-set footage and interviews with the cast and crew. It is a fascinating behind-the-scenes look at the film that went on to become the black sheep of the Texas Chainsaw franchise." poster "https://m.media-amazon.com/images/M/MV5BMTRhYTQzNDItOGY1Ny00ZWE4LTlhMjctNmE2ODY5NzFjZDMwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt3575374" +HSET "movie:919" title "Love's Deadly Triangle: The Texas Cadet Murder" genre "Drama" votes 599 rating 6.5 release_year 1997 plot "Diane and David love each other,but when they go to separate army academies,David has an affair. Diane snaps and ultimately something very sinister happens that the couple get involved in." poster "https://m.media-amazon.com/images/M/MV5BNDdlODVjNGUtODZjYy00MGUyLTk3OGItMDU1OGMwZTRkMzRlXkEyXkFqcGdeQXVyMTk5MjAyMjM@._V1_SX300.jpg" ibmdb_id "tt0119579" +HSET "movie:920" title "Dancer,Texas Pop. 81" genre "Comedy" votes 2277 rating 6.6 release_year 1998 plot "Four friends from the small Texas town of Dancer are graduating from high school and are planning to move to L.A. after graduation,taking the population of Dancer down to 77 from 81. All ..." poster "https://m.media-amazon.com/images/M/MV5BMjE0NjE2ODM4MV5BMl5BanBnXkFtZTYwNTk2NDg5._V1_SX300.jpg" ibmdb_id "tt0118925" +HSET "movie:921" title "Dusk Till Dawn 2: Texas Blood Money" genre "Crime" votes 14591 rating 4.1 release_year 1999 plot "Five career criminals gather in Mexico to pull off a bank heist. They soon realize that they are up against far more frightening creatures than the police pursuing them." poster "https://m.media-amazon.com/images/M/MV5BOTZkNTA2ODItYzY1MC00NWJhLWIwNTYtNmI2NWIxNzA0Yzc5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0120860" +HSET "movie:922" title "Texas Chain Saw Massacre: The Shocking Truth" genre "Documentary" votes 476 rating 7.1 release_year 2000 plot "A documentary primarily focusing on the filming and release of the original Texas Chainsaw Massacre." poster "https://m.media-amazon.com/images/M/MV5BOTUyZmU1NGMtZmQyMS00MTBiLTk1NDctMTk4OGE5NDYxYzY4XkEyXkFqcGdeQXVyMDgyNjA5MA@@._V1_SX300.jpg" ibmdb_id "tt0286214" +HSET "movie:923" title "Texas Rangers" genre "Action" votes 5317 rating 5.2 release_year 2001 plot "A ragtag group of youngsters band together after the American Civil War to form the Texas Rangers,a group charged with the dangerous,ruthless duty of cleaning up the West." poster "https://m.media-amazon.com/images/M/MV5BMTIwOTM3ODk4NV5BMl5BanBnXkFtZTcwNjI3NjYxMQ@@._V1_SX300.jpg" ibmdb_id "tt0193560" +HSET "movie:924" title "Texas (2002)" genre "Documentary" votes 183 rating 7.2 release_year 2002 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMTIzNzYyMjY2M15BMl5BanBnXkFtZTYwMTY0NDg5._V1_SX300.jpg" ibmdb_id "tt0303290" +HSET "movie:925" title "The Texas Chainsaw Massacre" genre "Horror" votes 126419 rating 6.2 release_year 2003 plot "After picking up a traumatized young hitchhiker,five friends find themselves stalked and hunted by a deformed chainsaw-wielding loon and his family of equally psychopathic killers." poster "https://m.media-amazon.com/images/M/MV5BZDg2NDJkOGYtMjM3My00Mzc2LWJiYjktODFlMzBjNmQwMTEyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0324216" +HSET "movie:926" title "Death and Texas" genre "Comedy" votes 84 rating 6.0 release_year 2004 plot "Football superstar 'Barefoot' Bobby Briggs of the Austin Steers has been convicted of murder. Will he be allowed to play with his team on Megabowl Sunday before he is executed? That is what this mockumentary explores." poster "https://m.media-amazon.com/images/M/MV5BMTU0NjM5ODk5OF5BMl5BanBnXkFtZTcwMTE0MjkzMQ@@._V1_SX300.jpg" ibmdb_id "tt0356515" +HSET "movie:927" title "Texas (200%)" genre "Drama" votes 262 rating 5.9 release_year 2005 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNWMyZTNiNjMtNWNlZS00ODcyLTg1YzktZTBkMmNhYzYwMTQ5XkEyXkFqcGdeQXVyMDk2Mzc2MA@@._V1_SX300.jpg" ibmdb_id "tt0446602" +HSET "movie:928" title "The Texas Chainsaw Massacre: The Beginning" genre "Horror" votes 65892 rating 5.8 release_year 2006 plot "Before being sent to serve in Vietnam,two brothers and their girlfriends take one last road trip,but when they get into an accident,a terrifying experience will take them to a secluded house of horrors,with a chainsaw-wielding killer." poster "https://m.media-amazon.com/images/M/MV5BMTIwMzAxNDcyMl5BMl5BanBnXkFtZTYwMjMwMDc2._V1_SX300.jpg" ibmdb_id "tt0420294" +HSET "movie:929" title "A West Texas Children's Story" genre "Drama" votes 1522 rating 7.5 release_year 2007 plot "Set in the 1960s,a magical tale of two 12-year-olds embarking on an adventure to find new,cool parents and escape their neglected,overly adult existence." poster "https://m.media-amazon.com/images/M/MV5BN2IwOTk3YjUtYmZlZS00ZDU4LTllM2QtZTU5MWY0ZTE3YjhiXkEyXkFqcGdeQXVyNTg2NzY1OTc@._V1_SX300.jpg" ibmdb_id "tt0446802" +HSET "movie:930" title "Fab Five: The Texas Cheerleader Scandal" genre "Biography" votes 2283 rating 5.9 release_year 2008 plot "A teacher is harassed by a group of snotty,popular cheerleaders who think they can get away with anything. However,the teacher has no intention of taking their rude behavior." poster "https://m.media-amazon.com/images/M/MV5BMzIzMmYzY2ItNTFhYy00NTZmLThiYzItNTk4MTRhMDQ3M2EzXkEyXkFqcGdeQXVyNTI0ODIxNjU@._V1_SX300.jpg" ibmdb_id "tt1191113" +HSET "movie:931" title "Luke and Lucy: The Texas Rangers" genre "Animation" votes 450 rating 5.7 release_year 2009 plot "Luke and Lucy,two inseparable friends,have to help out the Texas Rangers to prevent Jim Parasite from taking over the world." poster "https://m.media-amazon.com/images/M/MV5BNmJhM2YwNzUtMmQ2Mi00MmI4LTg3MDgtYzgxNzk0YzkyYmFjXkEyXkFqcGdeQXVyMzc4Njk1ODQ@._V1_SX300.jpg" ibmdb_id "tt1433915" +HSET "movie:932" title "Texas Frightmare Massacre" genre "Action" votes 39 rating 5.9 release_year 2010 plot "Laughs,bloody murder,gratuitous nudity,and a horse head killer...what more could you want?" poster "https://m.media-amazon.com/images/M/MV5BMTUxNjE4NTEwNF5BMl5BanBnXkFtZTgwNzI1MzA2MDE@._V1_SX300.jpg" ibmdb_id "tt1416343" +HSET "movie:934" title "Texas Car Wars" genre "Reality-TV" votes 109 rating 6.2 release_year 2012 plot "Texas restoration garages compete at car wreck auctions in winning the bid on cars they restore to sell in for the biggest profits." poster "https://m.media-amazon.com/images/M/MV5BMTQzMTE1MjI2NF5BMl5BanBnXkFtZTgwMTg4NDAxMzE@._V1_SX300.jpg" ibmdb_id "tt2395232" +HSET "movie:935" title "Texas (2013)" genre "Short" votes 27 rating 7.0 release_year 2013 plot "A cowboy meets his estranged wife on the Texas/Oklahoma border and tries to win her back. One problem - neither will cross state lines." poster "https://m.media-amazon.com/images/M/MV5BMTk3NzY3NzkwN15BMl5BanBnXkFtZTcwNzEwMjU0OQ@@._V1_SX300.jpg" ibmdb_id "tt2866492" +HSET "movie:936" title "Rise of a Texas Bluesman: Stevie Ray Vaughan 1954-1983" genre "Documentary" votes 38 rating 8.2 release_year 2014 plot "This film reveals and dissects the formative years of Stevie Ray Vaughan's career - his influences and recordings - and traces the history of Texas blues itself,identifying Vaughan's place..." poster "https://m.media-amazon.com/images/M/MV5BN2Y4NzI1NTctOGM3ZS00YzdmLTg3ZjItZThmZDAwZTAzYjllXkEyXkFqcGdeQXVyNTM3MDMyMDQ@._V1_SX300.jpg" ibmdb_id "tt5525782" +HSET "movie:937" title "Texas Rising" genre "Drama" votes 3539 rating 6.7 release_year 2015 plot "The story of how the Texas Rangers were created." poster "https://m.media-amazon.com/images/M/MV5BMTUyNjEwMzMzOF5BMl5BanBnXkFtZTgwMDE2OTQ1NTE@._V1_SX300.jpg" ibmdb_id "tt3598496" +HSET "movie:938" title "Stagecoach: The Texas Jack Story" genre "Western" votes 712 rating 4.3 release_year 2016 plot "A former stagecoach robber is hunted by a vengeful US Marshal." poster "https://m.media-amazon.com/images/M/MV5BNzQyNmE2MTktNTEzMi00ZGMyLWI4MzEtYWFhMDIzODMxMWE3XkEyXkFqcGdeQXVyMDU1MzkzMA@@._V1_SX300.jpg" ibmdb_id "tt5679402" +HSET "movie:939" title "Midnight,Texas" genre "Drama" votes 11755 rating 7.4 release_year 2017 plot "Midnight is a safe haven for those who are different,but with the presence of outsiders,the residents band together and form a strong and unlikely family." poster "https://m.media-amazon.com/images/M/MV5BN2QzYWZmZjAtNzFkOS00NzgwLWIzZDgtNmRkMTM5N2RkMmEwXkEyXkFqcGdeQXVyODUxOTU0OTg@._V1_SX300.jpg" ibmdb_id "tt5464086" +HSET "movie:940" title "Texas (2018)" genre "Action" votes 27 rating 5.1 release_year 2018 plot "The story of two friends Sasan and Bahram. Sasan is living in Brazil and Bahram wants to join him too but they face many different challenges and adventures in between." poster "https://m.media-amazon.com/images/M/MV5BYmU4ZTIxZjMtOWQxMS00YmI3LWJkN2MtYzFkNDdjMDk2YTYyXkEyXkFqcGdeQXVyNjkxOTM4ODY@._V1_SX300.jpg" ibmdb_id "tt8377736" +HSET "movie:941" title "ZZ Top: That Little Ol' Band from Texas" genre "Documentary" votes 605 rating 7.4 release_year 2019 plot "The story of how three oddball teenage bluesmen became one of the biggest,most beloved bands on the planet." poster "https://m.media-amazon.com/images/M/MV5BMTE3NTJlMDItNDMwNC00NzRiLTgzOWMtNzA5ZWI3MjE5NWVhXkEyXkFqcGdeQXVyMTA1ODkxNjQ1._V1_SX300.jpg" ibmdb_id "tt9015306" +HSET "movie:942" title "Intrigue in Los Angeles" genre "Drama" votes 6 rating 4.2 release_year 1964 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BY2JiMzdkYTktZTE5Ni00ZWRiLWE5MTgtMjhiMDc1MWI2MzQxXkEyXkFqcGdeQXVyNjUzNzQ4NDQ@._V1_SX300.jpg" ibmdb_id "tt0179881" +HSET "movie:946" title "Long Drawn-Out Trip: Sketches from Los Angeles" genre "Animation" votes 16 rating 7.2 release_year 1971 plot "N/A" poster "N/A" ibmdb_id "tt0461984" +HSET "movie:947" title "Hay ángeles sin alas" genre "Comedy" votes 9 rating 6.6 release_year 1972 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZjcyNDA2YTgtZTNkNy00YjhhLWEzYzktMzFlNmE3ZWRhNjYzXkEyXkFqcGdeQXVyMTk4MDgwNA@@._V1_SX300.jpg" ibmdb_id "tt0242511" +HSET "movie:951" title "Giulini's Beethoven's 9th Live: A Gift from Los Angeles" genre "Music" votes 5 rating 6.8 release_year 1978 plot "Carlo Maria Giulini makes his debut as music director of the Los Angeles Philharmonic in this live performance of Beethoven's 9th Symphony ('Choral') at the Los Angeles Music Center,..." poster "N/A" ibmdb_id "tt0330330" +HSET "movie:952" title "El rebaño de los ángeles" genre "N/A" votes 9 rating 7.7 release_year 1979 plot "N/A" poster "N/A" ibmdb_id "tt0079782" +HSET "movie:955" title "Los Angeles 1984: Games of the XXIII Olympiad" genre "Sport" votes 25 rating 7.6 release_year 1984 plot "N/A" poster "N/A" ibmdb_id "tt0396992" +HSET "movie:959" title "1988 World Series Video: Los Angeles Dodgers vs Oakland A's" genre "Sport" votes 18 rating 7.5 release_year 1988 plot "N/A" poster "N/A" ibmdb_id "tt0483465" +HSET "movie:961" title "The Great Los Angeles Earthquake" genre "Action" votes 540 rating 6.1 release_year 1990 plot "After a series of small tremors in Los Angeles,Dr. Clare Winslow,a local seismologist,pinpoints the exact location and time of when the long awaited earthquake--'The Big One'--will ..." poster "https://m.media-amazon.com/images/M/MV5BNzI3MjY3MTk0MF5BMl5BanBnXkFtZTcwMzEzMDMyMQ@@._V1_SX300.jpg" ibmdb_id "tt0099137" +HSET "movie:963" title "Ángeles sin paraíso" genre "Drama" votes 8 rating 7.4 release_year 1992 plot "Claudia and Andres are two youngsters who live in a grand mansion. Their evil aunt Aurora Sombria,a bitter and cruel woman,derives pleasure from abusing them and keeping them separated ..." poster "N/A" ibmdb_id "tt0215455" +HSET "movie:965" title "Cityscrapes: Los Angeles" genre "Drama" votes 39 rating 6.4 release_year 1994 plot "'CITYSCRAPES' takes you on a 24-hour voyeuristic journey through the bedrooms,bathrooms,bars,cars,clubs,restaurants and back alleys of the lives of the young and hip in post modern Los..." poster "https://m.media-amazon.com/images/M/MV5BZWNhMThkMTktZWNlNS00YjU3LTkxYTQtZWZhODQzZDlhMDBhXkEyXkFqcGdeQXVyMTQ3Njg3MQ@@._V1_SX300.jpg" ibmdb_id "tt0136756" +HSET "movie:969" title "Lisboa Los Angeles - Sem Destino" genre "N/A" votes 8 rating 7.1 release_year 1998 plot "N/A" poster "N/A" ibmdb_id "tt0119542" +HSET "movie:970" title "The Lords of Los Angeles" genre "N/A" votes 7 rating 6.9 release_year 1999 plot "N/A" poster "N/A" ibmdb_id "tt0204585" +HSET "movie:971" title "Twilight: Los Angeles" genre "Drama" votes 70 rating 7.6 release_year 2000 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMjE5MjQ2MDk2MV5BMl5BanBnXkFtZTcwNjc4MTYxMQ@@._V1_SX300.jpg" ibmdb_id "tt0237865" +HSET "movie:972" title "Crocodile Dundee in Los Angeles" genre "Action" votes 22794 rating 4.8 release_year 2001 plot "Australian Outback adventurer Mick 'Crocodile' Dundee travels to Los Angeles with his young son while his longtime companion suspects foul play at a movie studio." poster "https://m.media-amazon.com/images/M/MV5BMGVhYjA3NjAtOGIyZS00MmY0LThlZTEtMzAzZWQ2NzkwMjlhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0231402" +HSET "movie:974" title "Los Angeles Plays Itself" genre "Documentary" votes 1954 rating 8.0 release_year 2003 plot "A documentary on how Los Angeles has been used and depicted in the movies." poster "https://m.media-amazon.com/images/M/MV5BMjAyMzMzMjEyN15BMl5BanBnXkFtZTgwNDAxMDcyNjE@._V1_SX300.jpg" ibmdb_id "tt0379357" +HSET "movie:975" title "Blue Neon Night: Michael Connelly's Los Angeles" genre "Documentary" votes 19 rating 8.8 release_year 2004 plot "A documentary featuring bestselling author Michael Connelly and how the city of Los Angeles brings his stories to life" poster "N/A" ibmdb_id "tt0414874" +HSET "movie:976" title "Gods of Los Angeles" genre "Drama" votes 48 rating 5.8 release_year 2005 plot "Bruce thought he had everything. A stable life,a beautiful girlfriend. But he still felt dead inside. And he found himself at a crossroads,with no idea what to do with the rest of his ..." poster "https://ia.media-imdb.com/images/M/MV5BMTc2Nzc2NjkwMF5BMl5BanBnXkFtZTcwOTYxNzAzMQ@@._V1_SX300.jpg" ibmdb_id "tt0443520" +HSET "movie:977" title "Million Dollar Listing Los Angeles" genre "Reality-TV" votes 1047 rating 5.8 release_year 2006 plot "Follows the lives of property brokers in Los Angeles." poster "https://m.media-amazon.com/images/M/MV5BNDZhYzM0MjktYjYxMi00OWFlLTg0ZWUtMjk2NmI2ZWZkMTQ2XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0815063" +HSET "movie:978" title "Loveless in Los Angeles" genre "Comedy" votes 430 rating 4.9 release_year 2007 plot "When a womanizing,reality dating,television producer runs into his college crush,he realizes his bar-hopping,bed-hopping ways are leaving him unfulfilled,so he has the only woman,for ..." poster "https://m.media-amazon.com/images/M/MV5BMTc2ODMyNTIxN15BMl5BanBnXkFtZTcwNzU2MDU0MQ@@._V1_SX300.jpg" ibmdb_id "tt0451106" +HSET "movie:979" title "Scenes from the Sex Struggles at North Beverly Drive,Los Angeles,CA (Remix)" genre "Drama" votes 51 rating 7.5 release_year 2008 plot "A variety of Berlin Underground Stars live life in the fast lane in the bedrooms of superstardom." poster "https://m.media-amazon.com/images/M/MV5BMTY4NTA2MjY2MV5BMl5BanBnXkFtZTcwMTAwNTI2MQ@@._V1_SX300.jpg" ibmdb_id "tt1181931" +HSET "movie:980" title "NCIS: Los Angeles" genre "Action" votes 46559 rating 6.7 release_year 2009 plot "The Naval Criminal Investigation Service's Office of Special Projects takes on the undercover work and the hard to crack cases in LA. Key agents are G. Callen and Sam Hanna,streets kids risen through the ranks." poster "https://m.media-amazon.com/images/M/MV5BMGQzNGIzNmEtNWE3ZS00OTUyLTg3YTEtMDY3NDViZWE0YWY1XkEyXkFqcGdeQXVyNjg4NzAyOTA@._V1_SX300.jpg" ibmdb_id "tt1378167" +HSET "movie:981" title "Private Security Officer: Los Angeles" genre "Action" votes 15 rating 7.0 release_year 2010 plot "As Los Angeles grew to a population of over 5 million,crime was getting out of control. Budget cuts,low recruitment,and a rash of abuse lawsuits,left the LAPD unable to cope with the ..." poster "N/A" ibmdb_id "tt0960827" +HSET "movie:982" title "Battle Los Angeles" genre "Action" votes 169988 rating 5.7 release_year 2011 plot "A squad of U.S. Marines becomes the last line of defense against a global invasion." poster "https://m.media-amazon.com/images/M/MV5BMDg2NzQwOGMtMGRkNC00YjAwLTg4NjgtZWQwYzljZmM1YzA4XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_SX300.jpg" ibmdb_id "tt1217613" +HSET "movie:983" title "Occupy Los Angeles" genre "Documentary" votes 223 rating 3.3 release_year 2012 plot "From the Arab Spring to the American Autumn,director Joseph Quinn seeks to find out the origins of the Occupy Movement and shine a light on its long-term goals." poster "https://m.media-amazon.com/images/M/MV5BMjUzNTAzOTUyOV5BMl5BanBnXkFtZTcwOTQ0MjkzNw@@._V1_SX300.jpg" ibmdb_id "tt2096560" +HSET "movie:984" title "R&B Divas: Los Angeles" genre "Reality-TV" votes 45 rating 6.5 release_year 2013 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMDhjYmViYmItMmIzZi00NjcwLWE1YmQtOWU1YjNhZDFmNTUyXkEyXkFqcGdeQXVyNjUzMjI0MzA@._V1_SX300.jpg" ibmdb_id "tt3042520" +HSET "movie:986" title "Los Angeles Film Noir" genre "Documentary" votes 48 rating 7.0 release_year 2015 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMWIzNTFlNDctOGIyOC00ZTVhLTg4YzItMjgyNWE1ZWEzYmQyXkEyXkFqcGdeQXVyNjk0OTg4Mg@@._V1_SX300.jpg" ibmdb_id "tt5365436" +HSET "movie:988" title "Destruction Los Angeles" genre "Action" votes 923 rating 4.5 release_year 2017 plot "A fatal explosion and sudden earthquake rock Los Angeles,and reporter John Benson seizes his chance to cover the breaking news of increasing seismic activity." poster "https://m.media-amazon.com/images/M/MV5BYjFkNGU1ZDQtMjMwOC00YzJjLTkzZTAtMjdmMTcyMGRlMWE5XkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_SX300.jpg" ibmdb_id "tt6422938" +HSET "movie:989" title "Los Angeles Overnight" genre "Thriller" votes 334 rating 6.1 release_year 2018 plot "A struggling actress inherits a bevy of colorful villains after desperation (with a touch of femme fatale) drives her and her gullible boyfriend to steal big from the Los Angeles underworld." poster "https://m.media-amazon.com/images/M/MV5BZTg2OTU4NWEtODViMy00MzQ0LTg2ZTYtMzg4Yjc1ZTQ2YWQzXkEyXkFqcGdeQXVyMDUwOTg1OQ@@._V1_SX300.jpg" ibmdb_id "tt4374864" +HSET "movie:990" title "Married to Medicine: Los Angeles" genre "Reality-TV" votes 34 rating 4.1 release_year 2019 plot "This new series expands the fan-favorite Married to Medicine to the West Coast. In the city of glitz and glam,these doctors save lives by day and walk red carpets at night. The docuseries ..." poster "https://m.media-amazon.com/images/M/MV5BNjU2NDllZjEtZjFkZC00ZDlhLWE3MjktY2RiYTU0NjY3NGYzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt8845170" +HSET "movie:996" title "Helicopter Canada" genre "Documentary" votes 75 rating 7.3 release_year 1966 plot "A view from a helicopter of the ten Canadian provinces in 1966. The result is a big,beautiful and engrossing bird's-eye portrait of the country. Nothing here is quite the same as seen ..." poster "https://m.media-amazon.com/images/M/MV5BZWYxYTAwNzgtMWQzMi00MTg4LThhMGUtZGNlMTczNTMzMDZhXkEyXkFqcGdeQXVyMzI5NjUyMDM@._V1_SX300.jpg" ibmdb_id "tt0060498" +HSET "movie:997" title "Canada '67" genre "Family" votes 5 rating 6.4 release_year 1967 plot "This Disney Circle-Vision 360-degree film,sponsored by Canada's telephone companies and shown at the Telephone Association of Canada Pavilion,took visitors at Expo '67 in Montreal on a ..." poster "N/A" ibmdb_id "tt0061442" +HSET "movie:1000" title "Canada A.M." genre "News" votes 39 rating 6.1 release_year 1972 plot "N/A" poster "N/A" ibmdb_id "tt0341708" +HSET "movie:1002" title "The Funnier Side of Eastern Canada" genre "Comedy" votes 18 rating 6.2 release_year 1974 plot "Steve Martin's first TV special." poster "N/A" ibmdb_id "tt0390033" +HSET "movie:1005" title "Canada Vignettes: Fashion Designer" genre "Short" votes 9 rating 5.0 release_year 1977 plot "A fashion designer's life is profiled and she is seen at work." poster "N/A" ibmdb_id "tt0225263" +HSET "movie:1006" title "Canada Vignettes: Men of the Deeps,Cape Breton" genre "Short" votes 45 rating 5.8 release_year 1978 plot "A chorus group of miners sing about the history of coal mining on Cape Breton Island." poster "N/A" ibmdb_id "tt0235256" +HSET "movie:1007" title "Canada Vignettes: Log Driver's Waltz" genre "Animation" votes 290 rating 7.5 release_year 1979 plot "A short illustrating a traditional Canadian folk song about a woman's admiration for the agility for her boyfriend,the log driver." poster "https://m.media-amazon.com/images/M/MV5BMTM1NDc4OTc3M15BMl5BanBnXkFtZTYwMDkwODY5._V1_SX300.jpg" ibmdb_id "tt0133932" +HSET "movie:1008" title "Canada Vignettes: Canada's Snowbirds" genre "Short" votes 17 rating 6.2 release_year 1980 plot "N/A" poster "N/A" ibmdb_id "tt0225253" +HSET "movie:1010" title "O Canada!" genre "Family" votes 99 rating 7.2 release_year 1982 plot "This Disney Circle-Vision 360-degree film shown at Walt Disney World's EPCOT Center showcases the breathtaking scenery and other visual delights of Canada. Highlights along the ..." poster "N/A" ibmdb_id "tt0084429" +HSET "movie:1011" title "Canada Vignettes: Emergency Numbers" genre "Animation" votes 14 rating 5.3 release_year 1984 plot "N/A" poster "N/A" ibmdb_id "tt0236058" +HSET "movie:1012" title "Canada Vignettes: Catapult Canada" genre "Short" votes 8 rating 6.6 release_year 1985 plot "N/A" poster "N/A" ibmdb_id "tt0224708" +HSET "movie:1015" title "Canada for Canadians" genre "Short" votes 10 rating 7.9 release_year 1988 plot "Prominent Canadians explain their opposition to the proposed Free Trade Agreement with the U.S.A. Viewers are warned that Canadians will be paying heavily for what they have already. 'We ..." poster "N/A" ibmdb_id "tt0193037" +HSET "movie:1016" title "Welcome to Canada" genre "N/A" votes 19 rating 5.6 release_year 1989 plot "Newfoundlanders share their food,culture,and homes with a group of Tamil refugees found off the coast." poster "https://m.media-amazon.com/images/M/MV5BNjAxZjJiNTYtMGY0Mi00ZDgzLTlkMzgtZDAyYTljZGZhOWViXkEyXkFqcGdeQXVyODAyNDE3Mw@@._V1_SX300.jpg" ibmdb_id "tt0098632" +HSET "movie:1020" title "Out: Stories of Lesbian and Gay Youth in Canada" genre "Documentary" votes 28 rating 7.1 release_year 1993 plot "N/A" poster "N/A" ibmdb_id "tt0110756" +HSET "movie:1021" title "Animation Favorites from the National Film Board of Canada" genre "Animation" votes 27 rating 7.5 release_year 1994 plot "Leonard Maltin hosts a selection of his favorite animated shorts from the National Film Board of Canada." poster "https://m.media-amazon.com/images/M/MV5BMTc3OTUwMTczNl5BMl5BanBnXkFtZTcwOTMwNjcxMQ@@._V1_SX300.jpg" ibmdb_id "tt0307962" +HSET "movie:1023" title "O Canada" genre "Animation" votes 37 rating 7.9 release_year 1997 plot "Created in 1939,the National Film Board of Canada has produced and distributed literally thousands of films by and about Canadians,including hundreds of animated shorts. But despite the ..." poster "N/A" ibmdb_id "tt0290116" +HSET "movie:1024" title "Cab to Canada" genre "Drama" votes 303 rating 7.3 release_year 1998 plot "Fact-based story about a Pasadena cab driver who picks up what he believes is a routine fare,an elderly woman on her way to a funeral. However,the wealthy woman is soon is insisting that ..." poster "https://m.media-amazon.com/images/M/MV5BYWZmZDVlY2QtMzU4OC00YTNjLWI5MzMtYTY4MDFjMjFjODA1XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0161356" +HSET "movie:1025" title "Over Canada: An Aerial Adventure" genre "Documentary" votes 46 rating 9.1 release_year 1999 plot "From a bird's eye view,OVER CANADA is a beautifully produced,award winning,high definition 'aerial adventure' television documentary that unveils the dramatic splendour of the awe-inspiringly vast Canadian landscape." poster "https://m.media-amazon.com/images/M/MV5BMTY4NjcyMjE1N15BMl5BanBnXkFtZTcwNjQzMzkxMQ@@._V1_SX300.jpg" ibmdb_id "tt0472480" +HSET "movie:1026" title "Canada: A People's History" genre "Documentary" votes 286 rating 8.7 release_year 2000 plot "A dramatized comprehensive survey of the history of Canada." poster "https://m.media-amazon.com/images/M/MV5BMTgzNTUzMjIwMl5BMl5BanBnXkFtZTcwMzQ1NzQyMQ@@._V1_SX300.jpg" ibmdb_id "tt0264228" +HSET "movie:1028" title "An American in Canada" genre "Comedy" votes 168 rating 3.1 release_year 2002 plot "N/A" poster "N/A" ibmdb_id "tt0306275" +HSET "movie:1030" title "Canada (2004)" genre "Short" votes 16 rating 7.1 release_year 2004 plot "Set in the early 50's in the south of Holland,young Teun does not understand his mother's death. In this time of major immigration to the promised land of Canada,he thinks they are all going to take this journey." poster "https://m.media-amazon.com/images/M/MV5BMTc1NTc2NTAxMV5BMl5BanBnXkFtZTgwNjA3MDA2MDE@._V1_SX300.jpg" ibmdb_id "tt0478852" +HSET "movie:1031" title "Canada på tvers med Lars Monsen" genre "Documentary" votes 244 rating 8.9 release_year 2005 plot "Lars Monsen travels across Canada,encountering wildlife around every corner." poster "https://m.media-amazon.com/images/M/MV5BODE4MDhiOGEtZDgwOC00NzE4LThkMTktOGYyNDZlMjlmYjU4XkEyXkFqcGdeQXVyNTg5Njk5Njk@._V1_SX300.jpg" ibmdb_id "tt0802961" +HSET "movie:1032" title "Canada Russia '72" genre "Drama" votes 310 rating 7.6 release_year 2006 plot "CANADA RUSSIA '72 is shot in a fluid documentary style that effectively captures all the immediacy of the '72 hockey summit's intrigues." poster "https://m.media-amazon.com/images/M/MV5BMTI0OTUzNDkxM15BMl5BanBnXkFtZTcwMzMwNzkzMQ@@._V1_SX300.jpg" ibmdb_id "tt0484098" +HSET "movie:1033" title "Canada (2007)" genre "Short" votes 6 rating 6.7 release_year 2007 plot "Part memoir,part fiction, Canada is the story of a young,half-Indian girl who struggles with her New Age mom and her younger siblings as the family attempts to move from Northern ..." poster "N/A" ibmdb_id "tt1214952" +HSET "movie:1034" title "So You Think You Can Dance Canada" genre "Music" votes 268 rating 6.0 release_year 2008 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZWJmZmJjZjEtODk0My00NmZjLTk2NjktNTk4ZWQ5ZDQxZTdmXkEyXkFqcGdeQXVyMjMwODU0MjI@._V1_SX300.jpg" ibmdb_id "tt1267314" +HSET "movie:1036" title "Come Dine with Me Canada" genre "Reality-TV" votes 61 rating 7.4 release_year 2010 plot "Come Dine with Me Canada (2010) is based on the British television show of the same name,Come Dine with Me (2005). Five strangers,each an amateur chef,compete to host the best dinner ..." poster "https://ia.media-imdb.com/images/M/MV5BNWUxNzNkMjktZTZiMi00ODQyLTlmMTItMjEzNTcwZmFiNTVlL2ltYWdlXkEyXkFqcGdeQXVyMTE0OTg5NTU@._V1_SX300.jpg" ibmdb_id "tt1763422" +HSET "movie:1037" title "Wipeout Canada" genre "Game-Show" votes 157 rating 2.4 release_year 2011 plot "Daring Canadian contestants are in pursuit of cash prizes on an extreme obstacle course designed to provide the most spectacular spills,face plants,and splashdowns." poster "N/A" ibmdb_id "tt1753229" +HSET "movie:1038" title "Undercover Boss Canada" genre "Reality-TV" votes 64 rating 6.0 release_year 2012 plot "CEOs from the largest Canadian corporations go undercover to learn about their everyday employees and what struggles they face." poster "https://m.media-amazon.com/images/M/MV5BNjE0OTU5NDktNTI0NS00MDE4LWI4MzQtZTdjNTU2MTA2YzA0XkEyXkFqcGdeQXVyMzc2MDA5NzY@._V1_SX300.jpg" ibmdb_id "tt2177313" +HSET "movie:1040" title "MasterChef Canada" genre "Reality-TV" votes 375 rating 6.3 release_year 2014 plot "Amateur chefs compete in this Canadian version of the reality-cooking series." poster "https://m.media-amazon.com/images/M/MV5BODA1MjEyMzY2MV5BMl5BanBnXkFtZTgwOTQ5NTA5NTE@._V1_SX300.jpg" ibmdb_id "tt3219166" +HSET "movie:1041" title "My Internship in Canada" genre "Comedy" votes 741 rating 6.9 release_year 2015 plot "An idealistic young Haitian travels to rural Quebec to intern for an independent Member of Parliament when a national debate erupts that finds the MP holding the tie-breaking vote." poster "https://m.media-amazon.com/images/M/MV5BNzcwZTIyMWMtYmJjNy00ZmViLThlNGMtMTVjOTQyOWU4ZDA1XkEyXkFqcGdeQXVyMjQ3NzUxOTM@._V1_SX300.jpg" ibmdb_id "tt4116116" +HSET "movie:1042" title "The Bachelorette Canada" genre "Reality-TV" votes 32 rating 7.1 release_year 2016 plot "Bachelorette Canada is a great and wonderful series. Thank you for generating the full episode." poster "https://m.media-amazon.com/images/M/MV5BNTRhYTgxZTMtYTczZC00YjkxLWEwYjQtODg0ZmM0MTE2NzE3XkEyXkFqcGdeQXVyNzI1MjQ0NjA@._V1_SX300.jpg" ibmdb_id "tt5809666" +HSET "movie:1043" title "Canada: The Story of Us" genre "Drama" votes 73 rating 5.5 release_year 2017 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZTAzNDI5OWQtOWU1MC00MTZkLTk2YzUtZTY3NDk2MGExNjJkXkEyXkFqcGdeQXVyNTE0NTM0Ng@@._V1_SX300.jpg" ibmdb_id "tt6076476" +HSET "movie:1044" title "Design Canada" genre "Documentary" votes 40 rating 8.4 release_year 2018 plot "Design Canada is the first documentary chronicling the history of Canadian graphic design and how it shaped a nation and its people." poster "https://m.media-amazon.com/images/M/MV5BNzMxNTExNTkyOV5BMl5BanBnXkFtZTgwMzAyOTY3NTM@._V1_SX300.jpg" ibmdb_id "tt7125748" +HSET "movie:1045" title "Family Feud Canada" genre "Game-Show" votes 6 rating 6.2 release_year 2019 plot "Canadian families compete to guess the most popular answers to survey questions." poster "https://m.media-amazon.com/images/M/MV5BMzA3YTRhNjgtNjVkZi00YTZlLTk1M2ItYThhZjU3MThlMWNmXkEyXkFqcGdeQXVyNTM0NTU5Mg@@._V1_SX300.jpg" ibmdb_id "tt11478344" +HSET "movie:1047" title "Sleepless in Seattle" genre "Comedy" votes 151233 rating 6.8 release_year 1993 plot "A recently widowed man's son calls a radio talk-show in an attempt to find his father a partner." poster "https://m.media-amazon.com/images/M/MV5BNWY1MDJkZGUtZTE2OS00ODZiLTlmNzQtMDZjNzM2ZjkwM2QxXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt0108160" +HSET "movie:1049" title "The Real World You Never Saw: Boston + Seattle" genre "Documentary" votes 19 rating 3.7 release_year 1998 plot "More bloopers and outtakes from past seasons of 'The Real World',mostly from Boston and Seattle" poster "N/A" ibmdb_id "tt0202547" +HSET "movie:1051" title "30 Frames a Second: The WTO in Seattle" genre "Documentary" votes 34 rating 6.8 release_year 2000 plot "30 Frames A Second: The WTO in Seattle,is a compelling first-person account of the events that unfolded during the week the World Trade Organization came to Seattle in November of 1999." poster "https://m.media-amazon.com/images/M/MV5BMTc4MDc3NDE0Ml5BMl5BanBnXkFtZTcwMzcxMDI3Mw@@._V1_SX300.jpg" ibmdb_id "tt0315734" +HSET "movie:1052" title "Sweet 116: The 2001 Seattle Mariners History Making Season" genre "Family" votes 10 rating 8.6 release_year 2001 plot "A look at the 2001 Seattle Mariners who tied Major League Baseballs modern day record for most wins in a season with 116." poster "https://m.media-amazon.com/images/M/MV5BOGFlY2U5YzItNzNmZC00YzY5LWIwMjItMDdkYjdhN2NmMjRmXkEyXkFqcGdeQXVyODU5MTIwODI@._V1_SX300.jpg" ibmdb_id "tt0960091" +HSET "movie:1054" title "Heart: Alive in Seattle" genre "Music" votes 76 rating 8.6 release_year 2003 plot "Live concert footage from the Paramount in Seattle." poster "https://m.media-amazon.com/images/M/MV5BMTg3NDAxMjY1Ml5BMl5BanBnXkFtZTcwMjk4MzE2MQ@@._V1_SX300.jpg" ibmdb_id "tt0387279" +HSET "movie:1057" title "Battle in Seattle" genre "Action" votes 13930 rating 6.7 release_year 2007 plot "Activists arrive in Seattle,Washington en masse to protest a meeting of the World Trade Organization. Riots and chaos ensue as demonstrators successfully stop the WTO meetings." poster "https://m.media-amazon.com/images/M/MV5BMjIxMzE1NzcxM15BMl5BanBnXkFtZTgwMDcyNDM2MTI@._V1_SX300.jpg" ibmdb_id "tt0850253" +HSET "movie:1059" title "Paddle to Seattle: Journey Through the Inside Passage" genre "Documentary" votes 53 rating 8.2 release_year 2009 plot "Two best friends build their own kayaks and paddle alone for 97 days in the wilderness over 1,300 miles from Alaska to Seattle and survive to talk about most things." poster "https://m.media-amazon.com/images/M/MV5BMTMwODI0NzA2OV5BMl5BanBnXkFtZTcwMjIyNjMwMw@@._V1_SX300.jpg" ibmdb_id "tt1553143" +HSET "movie:1060" title "Janeane Garofalo: If You Will - Live in Seattle" genre "Comedy" votes 116 rating 6.6 release_year 2010 plot "She's funny. She's edgy. She's the one-and-only Janeane Garofalo. And now,in her first solo special in over a decade,this Emmy nominated stand-up superstar digs into the many myths we all live by." poster "https://m.media-amazon.com/images/M/MV5BMTQyNzU2MTgwOV5BMl5BanBnXkFtZTgwMTIxNTA2MDE@._V1_SX300.jpg" ibmdb_id "tt1735196" +HSET "movie:1062" title "Seattle Superstorm" genre "Action" votes 861 rating 3.1 release_year 2012 plot "NASA scientist Tom Reynolds thought everything would be fine when he moved to Seattle to be with his fiancé,Navy Lieutenant Emma Peterson. But when his gearhead son Wyatt can't stop ..." poster "https://m.media-amazon.com/images/M/MV5BMTYxNjk2NDUxNF5BMl5BanBnXkFtZTcwNTAyNTU0Nw@@._V1_SX300.jpg" ibmdb_id "tt1910615" +HSET "movie:1066" title "Seattle Road" genre "Drama" votes 53 rating 4.8 release_year 2016 plot "Two young artists use love as a safety net against the fear and pain in their lives in order to propel them deeper into their art." poster "https://m.media-amazon.com/images/M/MV5BYzNjNjVlODItZTEyYS00ODg4LWEwOTUtMTIxNTQyZDJmOTk2XkEyXkFqcGdeQXVyMTk1Mzg2NjA@._V1_SX300.jpg" ibmdb_id "tt3584390" +HSET "movie:1068" title "Seattle" genre "N/A" votes 12 rating 5.9 release_year 2018 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNDQ3NjkwY2YtZjMyMi00OWVlLWFjOTQtMzEyYTAzYzY2Mzk5XkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_SX300.jpg" ibmdb_id "tt8238064" +HSET "movie:1069" title "Miami Undercover" genre "Drama" votes 10 rating 5.2 release_year 1961 plot "Jeff Thompson is a detective who works undercover for a Motel Association in Miami Beach." poster "N/A" ibmdb_id "tt0054556" +HSET "movie:1070" title "Voir Miami" genre "Documentary" votes 13 rating 7.1 release_year 1962 plot "N/A" poster "N/A" ibmdb_id "tt0950719" +HSET "movie:1071" title "Destination Miami: Objective Murder" genre "Drama" votes 6 rating 3.8 release_year 1964 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNzFjZmFiODItNzNmYS00ODhiLTk1NzAtN2Y5YWE4MjEyMjc4XkEyXkFqcGdeQXVyMTYxNjkxOQ@@._V1_SX300.jpg" ibmdb_id "tt0204142" +HSET "movie:1074" title "A mí qué me importa que explote Miami" genre "Comedy" votes 5 rating 4.2 release_year 1976 plot "N/A" poster "N/A" ibmdb_id "tt0074082" +HSET "movie:1075" title "Miami Vice (tv)" genre "Action" votes 21901 rating 7.4 release_year 1984 plot "Resplendent with authentic 1980's music,fashion and vibe,'Miami Vice' follows two undercover detectives and their extended team through the mean streets of Miami." poster "https://m.media-amazon.com/images/M/MV5BMTlmMjJhNDctODg1NS00MzU1LTg3YzEtZGY2ZjYzOGE5OWZmXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_SX300.jpg" ibmdb_id "tt0086759" +HSET "movie:1076" title "Miami Supercops" genre "Action" votes 6309 rating 6.3 release_year 1985 plot "Garret goes to Miami and gets murdered after 7 years in prison for a $20,000,000 bank robbery. The money and the 2 others were never found. The Trinity bros. go to Miami as cops to solve the case this time. Fun fights." poster "https://m.media-amazon.com/images/M/MV5BMTk4NTM3MTQxMl5BMl5BanBnXkFtZTgwODQ0NTAzMTE@._V1_SX300.jpg" ibmdb_id "tt0089591" +HSET "movie:1078" title "Miami Connection" genre "Action" votes 4393 rating 5.8 release_year 1987 plot "A martial arts rock band goes up against a band of motorcycle ninjas who have tightened their grip on Florida's narcotics trade." poster "https://m.media-amazon.com/images/M/MV5BMjA4MjcxMjYzNl5BMl5BanBnXkFtZTcwMTcyNDc1OA@@._V1_SX300.jpg" ibmdb_id "tt0092549" +HSET "movie:1079" title "Police Academy 5: Assignment: Miami Beach" genre "Comedy" votes 31433 rating 4.6 release_year 1988 plot "The Police Academy's commandant will be honored at a police convention in Miami Beach. At the airport he picks a wrong bag with stolen diamonds. The 'owners' want them back." poster "https://m.media-amazon.com/images/M/MV5BNmJjN2Y2NDgtMDE5Mi00ZWUwLTkyMmQtZTgzZTdiMTM4OGUwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg" ibmdb_id "tt0095882" +HSET "movie:1080" title "Miami Cops" genre "Action" votes 68 rating 4.4 release_year 1989 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BOWE3NmNiMGItMDg4OS00M2JhLWJmZTctOGM5MTdjZGUwZWE0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0266929" +HSET "movie:1081" title "Miami Blues" genre "Comedy" votes 7383 rating 6.4 release_year 1990 plot "An ex-con's first act of freedom is moving to Miami where he restarts his old criminal ways with even more potency." poster "https://m.media-amazon.com/images/M/MV5BMzcwZmJkYWYtZTFhMi00NDQ0LTk4NDgtYmJlY2ZmYjg0NjI0XkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0100143" +HSET "movie:1082" title "Extralarge: Miami Killer" genre "Action" votes 196 rating 5.8 release_year 1991 plot "Agent Blake finds the corpse of a child. It is one of a long chain. The murderer is called The Miami Killer by the newspapers. Extralarge assists the police in their investigation. All the ..." poster "https://m.media-amazon.com/images/M/MV5BZDgzNzM3NDEtOGE5Ny00Y2I3LTlmZTgtY2FkMzVlMDY2OTJhXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0101840" +HSET "movie:1083" title "Miami Beach Cops" genre "Action" votes 26 rating 3.5 release_year 1992 plot "A pair of rookie members of a Florida sheriff's department trail two guys involved in a convenience store shooting,to the aquatic acquisition of counterfeit currency,to delivery of the bogus bucks to 'Mr. Big'." poster "N/A" ibmdb_id "tt0180831" +HSET "movie:1084" title "Moon Over Miami" genre "Drama" votes 147 rating 7.6 release_year 1993 plot "In this detective series,Walter Tatum,a qualified,independent,self-made private investigator in Miami with a small staff,gets stuck with Gwen Cross,a spoiled but intelligent rich girl..." poster "https://m.media-amazon.com/images/M/MV5BNDA3ZGYwOTAtNDk2Ny00NGE4LWI3MDgtNjYwMThjYzU0MmYxXkEyXkFqcGdeQXVyMjcyMDU4NA@@._V1_SX300.jpg" ibmdb_id "tt0106069" +HSET "movie:1085" title "Miami Models" genre "Comedy" votes 32 rating 4.0 release_year 1994 plot "Barry's millionaire boss leaves him in charge of his South Miami Beach mansion,and together with his son,Barry Jr.,they use the house as a base of operations for a new modeling agency. ..." poster "https://m.media-amazon.com/images/M/MV5BMTUyMjY5MjM4OV5BMl5BanBnXkFtZTcwNzY1NjAwMQ@@._V1_SX300.jpg" ibmdb_id "tt0110504" +HSET "movie:1086" title "Miami Rhapsody" genre "Comedy" votes 3001 rating 5.3 release_year 1995 plot "Gwyn Marcus has always wanted a marriage like her parents. She has just accepted the proposal of her boyfriend Matt,but she has misgivings about their future together. Her fear of ..." poster "https://m.media-amazon.com/images/M/MV5BZDI0NmU5ZTgtZTMxZi00OGExLTk5NTEtNWQzODU4NDYyZTJlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_SX300.jpg" ibmdb_id "tt0113808" +HSET "movie:1087" title "Miami Hustle" genre "Crime" votes 170 rating 3.3 release_year 1996 plot "Marsha,a con artist with a conscience,has agreed to take on an unusual scheme in order to pay off a debt to a lawyer who helped out her brother. An elderly millionaire is about to die,..." poster "https://m.media-amazon.com/images/M/MV5BMjAzNTIwOTA1N15BMl5BanBnXkFtZTcwOTEyODQyMQ@@._V1_SX300.jpg" ibmdb_id "tt0117037" +HSET "movie:1088" title "Miami" genre "Crime" votes 13 rating 4.1 release_year 1997 plot "A German crime syndicate which imports weapons into the United States have had a special assassin's gun stolen in transit. Mucho mayhem follows." poster "N/A" ibmdb_id "tt0212343" +HSET "movie:1089" title "Miami Sands" genre "Drama" votes 41 rating 7.6 release_year 1998 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BZTljZDQwYzUtMzFhNC00YzczLTkzZDEtODM4MGRhN2E0ZjQ4XkEyXkFqcGdeQXVyODgzMDY4MDc@._V1_SX300.jpg" ibmdb_id "tt0181931" +HSET "movie:1090" title "S Club 7 in Miami" genre "Comedy" votes 455 rating 5.9 release_year 1999 plot "The S Club 7 are high-energy and easy on the eyes with big personality. These British youths are packaged for stardom through albums,television series,and the occasional BBC special." poster "https://m.media-amazon.com/images/M/MV5BMjAyODI0OTg5NF5BMl5BanBnXkFtZTcwMDk0MzAyMQ@@._V1_SX300.jpg" ibmdb_id "tt0210432" +HSET "movie:1091" title "Miami Guns" genre "Animation" votes 29 rating 7.2 release_year 2000 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BYmZlY2Y5MzEtYWUyZS00ZDYxLTk0N2UtYjVkZWNiMmNhMGZhXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_SX300.jpg" ibmdb_id "tt0468607" +HSET "movie:1092" title "Me and My Baby in Miami" genre "Short" votes 9 rating 7.0 release_year 2001 plot "A gay reporter comes out of the closet. His pimp nephew's prostitute girlfriend is pregnant,and his lover leaves him." poster "N/A" ibmdb_id "tt0472627" +HSET "movie:1093" title "Miami (2002)" genre "Documentary" votes 6 rating 5.8 release_year 2002 plot "'Miami' is the fourth film by artist Sarah Morris. Operating between a documentary,the biography of a city and a form of non-narrative fiction,'Miami' shifts between sites of production,..." poster "N/A" ibmdb_id "tt0406995" +HSET "movie:1094" title "A Miami Tail" genre "Comedy" votes 172 rating 3.3 release_year 2003 plot "In this urban-hip re-telling of the classic Greek comedy 'Lysistrata,' a daring young woman convinces her girlfriends to help rid their neighborhood of crime,by refusing to have sex with their gangster boyfriends until the violence stops." poster "https://m.media-amazon.com/images/M/MV5BMjExNzIyNTU4OV5BMl5BanBnXkFtZTcwNDE4MzAwMQ@@._V1_SX300.jpg" ibmdb_id "tt0368026" +HSET "movie:1096" title "Miami Ink" genre "Documentary" votes 2479 rating 6.5 release_year 2005 plot "5 tattoo artists move to South Beach to open up a tattoo shop." poster "https://m.media-amazon.com/images/M/MV5BMjA2ODM4NTMwM15BMl5BanBnXkFtZTcwNDE5ODIxMw@@._V1_SX300.jpg" ibmdb_id "tt0472014" +HSET "movie:1097" title "Miami Vice" genre "Action" votes 106293 rating 6.0 release_year 2006 plot "Based on the 1980s TV action/drama,this update focuses on vice detectives Crockett and Tubbs as their respective personal and professional lives become dangerously intertwined." poster "https://m.media-amazon.com/images/M/MV5BMTM4MDQ5MTkxMV5BMl5BanBnXkFtZTcwMTU4MzUzMQ@@._V1_SX300.jpg" ibmdb_id "tt0430357" +HSET "movie:1099" title "Muhammad Ali: Made in Miami" genre "Biography" votes 740 rating 7.2 release_year 2008 plot "Explores the critical role that Miami played in the evolution of one of the most significant cultural figures of our time: Muhammad Ali (né Cassius Clay)." poster "https://m.media-amazon.com/images/M/MV5BNzc5NTgxMDExMF5BMl5BanBnXkFtZTgwNzkyMzA2MDE@._V1_SX300.jpg" ibmdb_id "tt1372281" +HSET "movie:1100" title "Kourtney & Kim Take Miami" genre "Reality-TV" votes 3164 rating 3.4 release_year 2009 plot "Two of the Kardashian sisters go to Miami Beach for the summer to open a branch of their clothing boutique and to socialize and party." poster "https://m.media-amazon.com/images/M/MV5BZWE3Yjk3MmMtYjVjMi00NTRhLTkwZjYtOWE4MjQ5YmQ5YTZmXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_SX300.jpg" ibmdb_id "tt1491299" +HSET "movie:1101" title "Miami Medical" genre "Action" votes 1181 rating 7.2 release_year 2010 plot "A medical drama about a team of expert trauma surgeons,who shine brightest when working under pressure against the clock to save critically injured patients." poster "https://m.media-amazon.com/images/M/MV5BMTQ2ODUzNjU1Nl5BMl5BanBnXkFtZTcwNjA4MTEzMw@@._V1_SX300.jpg" ibmdb_id "tt1406662" +HSET "movie:1102" title "Louis Theroux: Miami Megajail" genre "Documentary" votes 1094 rating 7.6 release_year 2011 plot "Louis spends time in one of Miami County Jail's most notorious sections" poster "https://m.media-amazon.com/images/M/MV5BZWUxZDU5MmUtN2RmZC00MGEwLWI0YmItNThmMGIzNjliNTFkXkEyXkFqcGdeQXVyMTA3NTEwMzgy._V1_SX300.jpg" ibmdb_id "tt1954630" +HSET "movie:1103" title "Dance Moms: Miami" genre "Reality-TV" votes 176 rating 4.0 release_year 2012 plot "Stars Dance Studio,where the school's owners and renowned contemporary dance instructors Victor Smalley and Angel Armas train a group of aspiring dancers. Inevitably,the drama will come ..." poster "https://m.media-amazon.com/images/M/MV5BMjE0MzgzODUzN15BMl5BanBnXkFtZTgwOTUzNzAxMzE@._V1_SX300.jpg" ibmdb_id "tt2190731" +HSET "movie:1104" title "Miami Monkey" genre "N/A" votes 44 rating 5.3 release_year 2013 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMTQ2ODY3NjYwNl5BMl5BanBnXkFtZTgwNzA5MjAxMzE@._V1_SX300.jpg" ibmdb_id "tt3159822" +HSET "movie:1108" title "Miami (2017)" genre "Crime" votes 493 rating 5.6 release_year 2017 plot "Two sisters reunite after years of separation. Their lives intertwine as they share a dream of a bright future,only to find out that the past can't be easily undone." poster "https://m.media-amazon.com/images/M/MV5BYTE2MzY5NTMtMTlmZC00Yjc5LWFlNmQtY2RlZGYzMTQ1ZDUwXkEyXkFqcGdeQXVyNjQ5ODA5NQ@@._V1_SX300.jpg" ibmdb_id "tt5822148" +HSET "movie:1109" title "Love & Hip Hop: Miami" genre "Reality-TV" votes 126 rating 4.0 release_year 2018 plot "'Love and Hip Hop Miami' turns up the heat and doesn't hold back in making the 305 the place to be. Multi-platinum selling hip-hop legend Trick Daddy is back in the studio collaborating ..." poster "https://m.media-amazon.com/images/M/MV5BYzdiMTRjMzYtOTNmYS00YjNmLThmMWMtZGZhOWYxZjhiZmYwXkEyXkFqcGdeQXVyODg3NDc1OTE@._V1_SX300.jpg" ibmdb_id "tt7370908" +HSET "movie:1110" title "ReMastered: The Miami Showband Massacre" genre "N/A" votes 472 rating 7.0 release_year 2019 plot "In 1974,while on the way home from a gig,the apolitical rock group,The Miami Showband,fell into the crosshairs of a Protestant unionist paramilitary group that planted explosives on their bus when it was stopped at a fake checkpoint." poster "https://m.media-amazon.com/images/M/MV5BYTlkODRmZmYtNTQwOC00NmY0LTliM2QtODA0NzVlYTQ4OWY4XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_SX300.jpg" ibmdb_id "tt9046568" +HSET "movie:1111" title "Love in Rome" genre "Drama" votes 194 rating 6.7 release_year 1960 plot "A young impoverished aristocrat and struggling writer falls for the charms of an aspiring starlet,whose amoral nature and hungry curiosity drives her from one adventure to another." poster "https://m.media-amazon.com/images/M/MV5BZTIwYzYxM2EtZjYxNS00ZmE0LWI4YTktYjA3ZDk2YzFmN2JhXkEyXkFqcGdeQXVyMjU5OTg5NDc@._V1_SX300.jpg" ibmdb_id "tt0053597" +HSET "movie:1112" title "Amazons of Rome" genre "Adventure" votes 115 rating 5.1 release_year 1961 plot "A warrior chieftain dashes between his barbaric allies and a beleaguered city that's being defended by embattled women warriors." poster "https://m.media-amazon.com/images/M/MV5BMzQyMTQyNDYzMl5BMl5BanBnXkFtZTgwNTE5Nzk1MDE@._V1_SX300.jpg" ibmdb_id "tt0055590" +HSET "movie:1113" title "Rome Adventure" genre "Drama" votes 981 rating 6.5 release_year 1962 plot "Prudence resigns from her teaching position after being criticized for giving a student her copy of a romance novel. She sails for Italy,takes a job at a small bookstore in Rome,and meets..." poster "https://m.media-amazon.com/images/M/MV5BZGQzMGIzMmEtMDU0NC00YTk5LWFiYjYtMTYyZTUyOTU5MzhjXkEyXkFqcGdeQXVyNTU3MTY2Mg@@._V1_SX300.jpg" ibmdb_id "tt0056424" +HSET "movie:1114" title "Gidget Goes to Rome" genre "Comedy" votes 573 rating 5.1 release_year 1963 plot "Frances,now 17,is still in love with Moondoggy. She can persuade her parents to allow them a journey to Rome,together with two of her and two of his friends. However they have to take an..." poster "https://m.media-amazon.com/images/M/MV5BMTkzNjIwNTc4M15BMl5BanBnXkFtZTcwNDE3NjEyMQ@@._V1_SX300.jpg" ibmdb_id "tt0057100" +HSET "movie:1115" title "Giants of Rome" genre "Adventure" votes 180 rating 4.9 release_year 1964 plot "An elite group of soldiers led by the courageous Claudius Marcellus are handpicked by Julius Caesar to embark on a desperate and dangerous suicide mission to destroy the Druids' secret weapon." poster "https://ia.media-imdb.com/images/M/MV5BMTU4OTUxMjM5M15BMl5BanBnXkFtZTcwNzI5ODY3Mw@@._V1_SX300.jpg" ibmdb_id "tt0058140" +HSET "movie:1116" title "Assassination in Rome" genre "Thriller" votes 73 rating 5.6 release_year 1965 plot "In this crime-thriller,Rome proves to be an unhappy destination for an American couple when the husband is kidnapped and his wife begins a desperate search for him." poster "https://m.media-amazon.com/images/M/MV5BNDQwMTg1NzE4NF5BMl5BanBnXkFtZTcwNjA2NzkzMQ@@._V1_SX300.jpg" ibmdb_id "tt0057485" +HSET "movie:1118" title "Tony Rome" genre "Crime" votes 2022 rating 6.6 release_year 1967 plot "Tony Rome,a tough Miami PI living on a boat,is hired by a local millionaire to find jewelry stolen from his daughter,and in the process has several encounters with local hoods as well as the Miami Beach PD." poster "https://m.media-amazon.com/images/M/MV5BNjBhOTQ2ZjAtNTY5Ny00YWUxLTgwZTItMzA4ODg2YWZkNmJkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_SX300.jpg" ibmdb_id "tt0062380" +HSET "movie:1119" title "Bandits in Rome" genre "Crime" votes 61 rating 6.5 release_year 1968 plot "A professional holdup man with scruples has a young ambitious partner who covets his wife and his life. When the holdup man goes to prison,the partner cuts loose,leaving a trail of deaths behind him." poster "https://m.media-amazon.com/images/M/MV5BNzg0NjgwMjA3Nl5BMl5BanBnXkFtZTgwNjIxODk1MDE@._V1_SX300.jpg" ibmdb_id "tt0063516" +HSET "movie:1120" title "To Rome with Love" genre "Comedy" votes 33 rating 7.5 release_year 1969 plot "After his wife dies,Michael Endicott leaves Iowa with his three daughters to accept a teaching position at the American Overseas School in Rome,Italy. His sister,Harriet Endicott also ..." poster "https://m.media-amazon.com/images/M/MV5BNmQyODA5OTItY2Q3YS00ODA3LWI5YTgtMmYyYmYzMzczNGFkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjcyMDU4NA@@._V1_SX300.jpg" ibmdb_id "tt0063958" +HSET "movie:1121" title "Eyes Do Not Want to Close at All Times,or,Perhaps One Day Rome Will Allow Herself to Choose in Her Turn" genre "Drama" votes 241 rating 6.5 release_year 1970 plot "Pierre Corneille's Othon adapted faithfully to cinema,set in the ruins of the Rome of now-a-days." poster "https://m.media-amazon.com/images/M/MV5BYzAzNGM4NGUtNTVkYS00Yzc5LWE4MzYtMjk1MDc5ZWU0ODI4XkEyXkFqcGdeQXVyMDk1ODM3MA@@._V1_SX300.jpg" ibmdb_id "tt0064774" +HSET "movie:1122" title "Girolimoni,the Monster of Rome" genre "Crime" votes 189 rating 7.3 release_year 1972 plot "In Mussolini's Rome a murderer is targeting young girls. The movie explores how the fascist mind works,how it plays its values off the sentiment of the masses and explores the role of the press in creating a unified narrative." poster "https://m.media-amazon.com/images/M/MV5BYmYwMzU3YmYtNTA4MC00MzA3LWEwNTItNmYxN2NhOTA5MGFjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQ3Njg3MQ@@._V1_SX300.jpg" ibmdb_id "tt0068641" +HSET "movie:1123" title "Massacre in Rome" genre "Drama" votes 1014 rating 6.5 release_year 1973 plot "Rome,March 23,1944: 33 German soldiers are killed by a bomb. Lt. Col. Herbert Kappler is ordered to execute ten times that Italians." poster "https://m.media-amazon.com/images/M/MV5BZTQ5MmY3MTItNDJlZS00Yjg0LTgwMDYtYTI4Y2Q2YzhkMTQ4XkEyXkFqcGdeQXVyNzQzNDEyOQ@@._V1_SX300.jpg" ibmdb_id "tt0070592" +HSET "movie:1124" title "Rome Wants Another Caesar" genre "Drama" votes 17 rating 7.0 release_year 1974 plot "N/A" poster "N/A" ibmdb_id "tt0072094" +HSET "movie:1125" title "From Rome to Rollerball: The Full Circle" genre "Short" votes 24 rating 5.3 release_year 1975 plot "N/A" poster "N/A" ibmdb_id "tt0322340" +HSET "movie:1126" title "Rome: The Other Side of Violence" genre "Action" votes 109 rating 6.8 release_year 1976 plot "Four bandits kidnap a villa: the maid calls the police and Commissioner Ferreri immediately warns Commissioner Carli,who orders the patrols to chase the four." poster "https://m.media-amazon.com/images/M/MV5BYTkwOTUyOTgtM2E4OS00Y2M0LWJiOGQtMThhMTliYThhY2Q1XkEyXkFqcGdeQXVyNzgzODI1OTE@._V1_SX300.jpg" ibmdb_id "tt0200052" +HSET "movie:1127" title "Messalina,Empress of Rome" genre "Adventure" votes 156 rating 4.0 release_year 1977 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BNjk1NjM4NTg5M15BMl5BanBnXkFtZTcwMjk2NTIyMQ@@._V1_SY264_CR30178264_.jpg" ibmdb_id "tt0081155" +HSET "movie:1128" title "Rome '78" genre "Drama" votes 10 rating 6.9 release_year 1978 plot "N/A" poster "N/A" ibmdb_id "tt1002643" +HSET "movie:1132" title "The Emperor of Rome" genre "Drama" votes 106 rating 7.1 release_year 1988 plot "N/A" poster "https://m.media-amazon.com/images/M/MV5BMGM2M2YzYTgtN2E5MC00ZGVkLWJiOWYtNzYzMDEyY2EzNTc1XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_SX300.jpg" ibmdb_id "tt0210750" +HSET "movie:1133" title "Bastards" genre "Drama" votes 78 rating 6.4 release_year 1999 plot "Two teenaged American-Asian brothers leave Vietnam and head for the USA to find their father and pursue the American dream." poster "https://m.media-amazon.com/images/M/MV5BMTYxMzI4MzE3NF5BMl5BanBnXkFtZTcwMTY0MDIyMQ@@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0139882" +HSET "movie:1134" title "The Insider" genre "Biography" votes 154624 rating 7.8 release_year 1999 plot "A research chemist comes under personal and professional attack when he decides to appear in a 60 Minutes exposé on Big Tobacco." poster "https://m.media-amazon.com/images/M/MV5BODg0YjAzNDQtOGFkMi00Yzk2LTg1NzYtYTNjY2UwZTM2ZDdkL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR2,0,182,268_AL_.jpg" ibmdb_id "tt0140352" +HSET "movie:1135" title "Pulp Finction" genre "Crime" votes 1743680 rating 8.9 release_year 1994 plot "The lives of two mob hitmen,a boxer,a gangster and his wife,and a pair of diner bandits intertwine in four tales of violence and redemption." poster "https://m.media-amazon.com/images/M/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY268_CR1,0,182,268_AL_.jpg" ibmdb_id "tt0110912" +HSET "movie:1136" title "Forrest Gump" genre "Drama" votes 1714680 rating 8.8 release_year 1994 plot "The presidencies of Kennedy and Johnson,the events of Vietnam,Watergate and other historical events unfold through the perspective of an Alabama man with an IQ of 75,whose only desire is to be reunited with his childhood sweetheart." poster "https://m.media-amazon.com/images/M/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY268_CR1,0,182,268_AL_.jpg" ibmdb_id "tt0109830" +HSET "movie:1137" title "Léon: The Professional" genre "Action" votes 984763 rating 8.5 release_year 1994 plot "Mathilda,a 12-year-old girl,is reluctantly taken in by Léon,a professional assassin,after her family is murdered. An unusual relationship forms as she becomes his protégée and learns the assassin's trade." poster "https://m.media-amazon.com/images/M/MV5BZDAwYTlhMDEtNTg0OS00NDY2LWJjOWItNWY3YTZkM2UxYzUzXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY268_CR4,0,182,268_AL_.jpg" ibmdb_id "tt0110413" +HSET "movie:1138" title "The Mask" genre "Comedy" votes 330359 rating 6.9 release_year 1994 plot "Bank clerk Stanley Ipkiss is transformed into a manic superhero when he wears a mysterious mask." poster "https://m.media-amazon.com/images/M/MV5BOWExYjI5MzktNTRhNi00Nzg2LThkZmQtYWVkYjRlYWI2MDQ4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0110475" +HSET "movie:1139" title "The Lord of the Rings: The Fellowship of the Ring" genre "Fantasy" votes 1500090 rating 8.8 release_year 2001 plot "A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron." poster "https://m.media-amazon.com/images/M/MV5BN2EyZjM3NzUtNWUzMi00MTgxLWI0NTctMzY4M2VlOTdjZWRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt0120737" +HSET "movie:1140" title "1917" genre "Drama" votes 290813 rating 8.3 release_year 2019 plot "April 6th,1917. As a regiment assembles to wage war deep in enemy territory,two soldiers are assigned to race against time and deliver a message that will stop 1,600 men from walking straight into a deadly trap." poster "https://m.media-amazon.com/images/M/MV5BOTdmNTFjNDEtNzg0My00ZjkxLTg1ZDAtZTdkMDc2ZmFiNWQ1XkEyXkFqcGdeQXVyNTAzNzgwNTg@._V1_UX182_CR0,0,182,268_AL_.jpg" ibmdb_id "tt8579674" +HSET "movie:1141" title "Heat" genre "Drama" votes 560687 rating 8.2 release_year 1995 plot "A group of professional bank robbers start to feel the heat from police when they unknowingly leave a clue at their latest heist." poster "https://m.media-amazon.com/images/M/MV5BMDJjNWE5MTEtMDk2Mi00ZjczLWIwYjAtNzM2ZTdhNzcwOGZjXkEyXkFqcGdeQXVyNDIzMzcwNjc@._V1_UY268_CR12,0,182,268_AL_.jpg" ibmdb_id "tt0113277" \ No newline at end of file diff --git a/e2e-tests/data/redis/users.redis b/e2e-tests/data/redis/users.redis new file mode 100644 index 000000000..d04425685 --- /dev/null +++ b/e2e-tests/data/redis/users.redis @@ -0,0 +1,5997 @@ +HSET "user:1" "first_name" "Mohammed" "last_name" "Ahern" "email" "mahern0@amazon.com" "gender" "male" "ip_address" "180.132.241.207" "country" "China" "country_code" "CN" "city" "Yuanjue" "longitude" "105.324979" "latitude" "29.55451" "last_login" "1581151007" +HSET "user:2" "first_name" "Deane" "last_name" "Dewhurst" "email" "ddewhurst1@sciencedaily.com" "gender" "female" "ip_address" "189.88.77.190" "country" "Serbia" "country_code" "RS" "city" "Senta" "longitude" "20.0780937" "latitude" "45.9260128" "last_login" "1586483341" +HSET "user:3" "first_name" "Brandice" "last_name" "Tunna" "email" "btunna2@buzzfeed.com" "gender" "female" "ip_address" "7.250.89.103" "country" "Greece" "country_code" "GR" "city" "Drosáto" "longitude" "22.8015705" "latitude" "41.1670464" "last_login" "1587533287" +HSET "user:4" "first_name" "Bartholomew" "last_name" "Pardi" "email" "bpardi3@g.co" "gender" "male" "ip_address" "150.99.179.97" "country" "China" "country_code" "CN" "city" "Yanwo" "longitude" "106.5767662" "latitude" "29.5582227" "last_login" "1588933560" +HSET "user:5" "first_name" "Joseph" "last_name" "Sumbler" "email" "jsumbler4@tumblr.com" "gender" "male" "ip_address" "192.192.214.78" "country" "Poland" "country_code" "PL" "city" "Cekcyn" "longitude" "18.0101779" "latitude" "53.5733796" "last_login" "1593179431" +HSET "user:6" "first_name" "Zebadiah" "last_name" "Andren" "email" "zandren5@xinhuanet.com" "gender" "male" "ip_address" "175.84.166.33" "country" "Poland" "country_code" "PL" "city" "Góra" "longitude" "16.5376529" "latitude" "51.669945" "last_login" "1584819009" +HSET "user:7" "first_name" "Torry" "last_name" "Crothers" "email" "tcrothers6@pinterest.com" "gender" "male" "ip_address" "203.23.15.98" "country" "Russia" "country_code" "RU" "city" "Lyalichi" "longitude" "132.3885311" "latitude" "44.0766295" "last_login" "1590404738" +HSET "user:8" "first_name" "Ingmar" "last_name" "Magee" "email" "imagee7@cnbc.com" "gender" "male" "ip_address" "7.135.75.188" "country" "Brazil" "country_code" "BR" "city" "Pacaembu" "longitude" "-51.2658432" "latitude" "-21.563131" "last_login" "1594701748" +HSET "user:9" "first_name" "Jo-ann" "last_name" "Hubberstey" "email" "jhubberstey8@pcworld.com" "gender" "female" "ip_address" "53.66.107.132" "country" "Indonesia" "country_code" "ID" "city" "Kotauneng" "longitude" "122.2058206" "latitude" "-8.6192014" "last_login" "1598630589" +HSET "user:10" "first_name" "Fern" "last_name" "Jurisic" "email" "fjurisic9@ucoz.com" "gender" "female" "ip_address" "81.44.31.19" "country" "Croatia" "country_code" "HR" "city" "Kuče" "longitude" "16.1813069" "latitude" "45.6539183" "last_login" "1588111581" +HSET "user:11" "first_name" "Helaine" "last_name" "Willett" "email" "hwilletta@artisteer.com" "gender" "female" "ip_address" "174.225.119.130" "country" "United States" "country_code" "US" "city" "Peoria" "longitude" "-112.28609" "latitude" "33.7868136" "last_login" "1572088486" +HSET "user:12" "first_name" "Flossi" "last_name" "Castagne" "email" "fcastagneb@usatoday.com" "gender" "female" "ip_address" "102.7.232.28" "country" "China" "country_code" "CN" "city" "Zhoutou" "longitude" "116.328879" "latitude" "29.86548" "last_login" "1579428181" +HSET "user:13" "first_name" "Christi" "last_name" "Garvagh" "email" "cgarvaghc@nhs.uk" "gender" "female" "ip_address" "171.28.252.92" "country" "Greece" "country_code" "GR" "city" "Makrochóri" "longitude" "22.249713" "latitude" "40.5511823" "last_login" "1568859954" +HSET "user:14" "first_name" "Vanessa" "last_name" "Topp" "email" "vtoppd@goo.gl" "gender" "female" "ip_address" "154.115.88.43" "country" "China" "country_code" "CN" "city" "Dayou" "longitude" "116.188408" "latitude" "26.141854" "last_login" "1585445952" +HSET "user:15" "first_name" "Stevy" "last_name" "Scala" "email" "sscalae@cbslocal.com" "gender" "male" "ip_address" "144.88.9.38" "country" "China" "country_code" "CN" "city" "Xiaotang" "longitude" "107.2143287" "latitude" "30.738569" "last_login" "1586153173" +HSET "user:16" "first_name" "Deeann" "last_name" "McGrotty" "email" "dmcgrottyf@cyberchimps.com" "gender" "female" "ip_address" "16.183.19.46" "country" "Portugal" "country_code" "PT" "city" "Sobreira" "longitude" "-7.9159974" "latitude" "41.1544623" "last_login" "1584443913" +HSET "user:17" "first_name" "Micheil" "last_name" "Gorling" "email" "mgorlingg@a8.net" "gender" "male" "ip_address" "21.207.110.167" "country" "China" "country_code" "CN" "city" "Nanfeng" "longitude" "116.525725" "latitude" "27.218444" "last_login" "1585816121" +HSET "user:18" "first_name" "Lydie" "last_name" "Karslake" "email" "lkarslakeh@sciencedirect.com" "gender" "female" "ip_address" "76.35.162.48" "country" "Portugal" "country_code" "PT" "city" "São João" "longitude" "-8.4489073" "latitude" "41.2257829" "last_login" "1570211992" +HSET "user:19" "first_name" "Granger" "last_name" "Errett" "email" "gerretti@businessweek.com" "gender" "male" "ip_address" "71.162.71.188" "country" "Canada" "country_code" "CA" "city" "Pilot Butte" "longitude" "-104.41778" "latitude" "50.46678" "last_login" "1579111720" +HSET "user:20" "first_name" "Annmarie" "last_name" "Scullin" "email" "ascullinj@slashdot.org" "gender" "female" "ip_address" "65.193.53.245" "country" "Indonesia" "country_code" "ID" "city" "Wonokromo" "longitude" "112.7330892" "latitude" "-7.302664" "last_login" "1575561721" +HSET "user:21" "first_name" "Delinda" "last_name" "Summerly" "email" "dsummerlyk@oaic.gov.au" "gender" "female" "ip_address" "179.193.60.52" "country" "China" "country_code" "CN" "city" "Duishan" "longitude" "109.667164" "latitude" "28.90499" "last_login" "1589283662" +HSET "user:22" "first_name" "Ode" "last_name" "Larkworthy" "email" "olarkworthyl@globo.com" "gender" "male" "ip_address" "200.76.156.23" "country" "Uzbekistan" "country_code" "UZ" "city" "Charxin" "longitude" "66.7724653" "latitude" "39.6725789" "last_login" "1599865811" +HSET "user:23" "first_name" "Phillipe" "last_name" "Yesenev" "email" "pyesenevm@yellowpages.com" "gender" "male" "ip_address" "5.10.1.74" "country" "Ukraine" "country_code" "UA" "city" "Volodymyrets’" "longitude" "26.1385322" "latitude" "51.4238758" "last_login" "1597967083" +HSET "user:24" "first_name" "Eustace" "last_name" "Truce" "email" "etrucen@sun.com" "gender" "male" "ip_address" "2.142.62.98" "country" "Portugal" "country_code" "PT" "city" "Vilela" "longitude" "-8.3826794" "latitude" "41.2365246" "last_login" "1589099323" +HSET "user:25" "first_name" "Abbie" "last_name" "Emanuele" "email" "aemanueleo@hubpages.com" "gender" "female" "ip_address" "83.75.181.173" "country" "Russia" "country_code" "RU" "city" "Sergeyevka" "longitude" "43.5438088" "latitude" "56.4808469" "last_login" "1589837834" +HSET "user:26" "first_name" "Israel" "last_name" "Basilio" "email" "ibasiliop@arizona.edu" "gender" "male" "ip_address" "133.37.117.217" "country" "Peru" "country_code" "PE" "city" "Lincha" "longitude" "-75.666667" "latitude" "-12.8" "last_login" "1578900073" +HSET "user:27" "first_name" "Cortney" "last_name" "Cuttell" "email" "ccuttellq@sbwire.com" "gender" "female" "ip_address" "44.30.40.188" "country" "Nicaragua" "country_code" "NI" "city" "Larreynaga" "longitude" "-86.571617" "latitude" "12.6757233" "last_login" "1598101430" +HSET "user:28" "first_name" "Geordie" "last_name" "Mathe" "email" "gmather@altervista.org" "gender" "male" "ip_address" "63.25.238.241" "country" "China" "country_code" "CN" "city" "Longbu" "longitude" "117.017536" "latitude" "25.075123" "last_login" "1579889689" +HSET "user:29" "first_name" "Ive" "last_name" "Navan" "email" "inavans@forbes.com" "gender" "male" "ip_address" "92.240.218.23" "country" "China" "country_code" "CN" "city" "Majiang" "longitude" "107.589359" "latitude" "26.491105" "last_login" "1572279174" +HSET "user:30" "first_name" "Benoit" "last_name" "Abramow" "email" "babramowt@google.com.au" "gender" "male" "ip_address" "252.34.108.253" "country" "China" "country_code" "CN" "city" "Changxi" "longitude" "119.910952" "latitude" "31.026665" "last_login" "1593259159" +HSET "user:31" "first_name" "Sharline" "last_name" "Maccari" "email" "smaccariu@google.co.uk" "gender" "female" "ip_address" "248.25.127.119" "country" "China" "country_code" "CN" "city" "Dupi" "longitude" "117.1112743" "latitude" "40.1465349" "last_login" "1570731956" +HSET "user:32" "first_name" "Coletta" "last_name" "Thickens" "email" "cthickensv@dailymotion.com" "gender" "female" "ip_address" "103.17.213.26" "country" "Indonesia" "country_code" "ID" "city" "Ciseda" "longitude" "107.9276672" "latitude" "-6.7796462" "last_login" "1597193760" +HSET "user:33" "first_name" "Florance" "last_name" "Le Gallo" "email" "flegallow@examiner.com" "gender" "female" "ip_address" "229.211.186.66" "country" "China" "country_code" "CN" "city" "Guandu" "longitude" "102.743811" "latitude" "25.015105" "last_login" "1581179018" +HSET "user:34" "first_name" "Hamnet" "last_name" "Obert" "email" "hobertx@bravesites.com" "gender" "male" "ip_address" "196.152.42.50" "country" "Portugal" "country_code" "PT" "city" "Santa Maria do Souto" "longitude" "-8.2971003" "latitude" "41.5146956" "last_login" "1583623826" +HSET "user:35" "first_name" "Fitzgerald" "last_name" "Sievewright" "email" "fsievewrighty@bloomberg.com" "gender" "male" "ip_address" "27.43.235.160" "country" "Cyprus" "country_code" "CY" "city" "Dhali" "longitude" "33.4047109" "latitude" "35.0612128" "last_login" "1588594826" +HSET "user:36" "first_name" "Wright" "last_name" "Carl" "email" "wcarlz@sohu.com" "gender" "male" "ip_address" "236.196.231.186" "country" "Poland" "country_code" "PL" "city" "Wręczyca Wielka" "longitude" "18.880399" "latitude" "50.817118" "last_login" "1588783259" +HSET "user:37" "first_name" "Charlie" "last_name" "Shwalbe" "email" "cshwalbe10@a8.net" "gender" "male" "ip_address" "198.47.69.111" "country" "Serbia" "country_code" "RS" "city" "Subotica" "longitude" "19.6650593" "latitude" "46.1005467" "last_login" "1585673597" +HSET "user:38" "first_name" "Kermy" "last_name" "Colbourne" "email" "kcolbourne11@devhub.com" "gender" "male" "ip_address" "196.233.200.75" "country" "Indonesia" "country_code" "ID" "city" "Simpang Ulim" "longitude" "97.5788975" "latitude" "5.1088508" "last_login" "1594006403" +HSET "user:39" "first_name" "Maxy" "last_name" "Abdee" "email" "mabdee12@over-blog.com" "gender" "male" "ip_address" "43.199.80.28" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Kovači" "longitude" "18.7940562" "latitude" "43.690835" "last_login" "1581764595" +HSET "user:40" "first_name" "Virginie" "last_name" "Gotts" "email" "vgotts13@51.la" "gender" "female" "ip_address" "166.77.129.167" "country" "Brazil" "country_code" "BR" "city" "Presidente Médici" "longitude" "-61.8991382" "latitude" "-11.1693755" "last_login" "1593579751" +HSET "user:41" "first_name" "Leonard" "last_name" "Mate" "email" "lmate14@deviantart.com" "gender" "male" "ip_address" "109.120.126.194" "country" "Mongolia" "country_code" "MN" "city" "Bayangol" "longitude" "106.8227864" "latitude" "47.9039934" "last_login" "1588405368" +HSET "user:42" "first_name" "Reinold" "last_name" "Hanssmann" "email" "rhanssmann15@mit.edu" "gender" "male" "ip_address" "185.239.26.53" "country" "China" "country_code" "CN" "city" "Dayong" "longitude" "110.451191" "latitude" "29.103856" "last_login" "1589591285" +HSET "user:43" "first_name" "Shirleen" "last_name" "Powelee" "email" "spowelee16@goodreads.com" "gender" "female" "ip_address" "158.72.115.167" "country" "Jamaica" "country_code" "JM" "city" "Montego Bay" "longitude" "-77.8938895" "latitude" "18.4762228" "last_login" "1597963261" +HSET "user:44" "first_name" "Tatiana" "last_name" "De Giorgi" "email" "tdegiorgi17@ted.com" "gender" "female" "ip_address" "221.154.176.151" "country" "Kenya" "country_code" "KE" "city" "Kabarnet" "longitude" "35.743418" "latitude" "0.490107" "last_login" "1573733882" +HSET "user:45" "first_name" "Tadio" "last_name" "McCoy" "email" "tmccoy18@google.fr" "gender" "male" "ip_address" "129.180.192.176" "country" "Kenya" "country_code" "KE" "city" "Kihancha" "longitude" "34.6165033" "latitude" "-1.1939843" "last_login" "1577899897" +HSET "user:46" "first_name" "Ailyn" "last_name" "Stare" "email" "astare19@reddit.com" "gender" "female" "ip_address" "150.122.150.190" "country" "Indonesia" "country_code" "ID" "city" "Mempawah" "longitude" "108.954903" "latitude" "0.3642599" "last_login" "1572502241" +HSET "user:47" "first_name" "Hayes" "last_name" "Iacomo" "email" "hiacomo1a@unc.edu" "gender" "male" "ip_address" "18.200.84.185" "country" "Iran" "country_code" "IR" "city" "Nīshābūr" "longitude" "58.7960915" "latitude" "36.2140865" "last_login" "1576455242" +HSET "user:48" "first_name" "Tabby" "last_name" "Johnston" "email" "tjohnston1b@xing.com" "gender" "male" "ip_address" "64.217.179.126" "country" "China" "country_code" "CN" "city" "Wenquan" "longitude" "108.520914" "latitude" "31.364042" "last_login" "1583531685" +HSET "user:49" "first_name" "Bay" "last_name" "Schimon" "email" "bschimon1c@dot.gov" "gender" "male" "ip_address" "22.57.66.225" "country" "Russia" "country_code" "RU" "city" "Cherëmushki" "longitude" "37.5470072" "latitude" "55.6686" "last_login" "1596784850" +HSET "user:50" "first_name" "Morganne" "last_name" "Lube" "email" "mlube1d@stumbleupon.com" "gender" "female" "ip_address" "69.68.76.125" "country" "Colombia" "country_code" "CO" "city" "Honda" "longitude" "-74.737081" "latitude" "5.205118" "last_login" "1589198018" +HSET "user:51" "first_name" "Selig" "last_name" "Bartoleyn" "email" "sbartoleyn1e@gov.uk" "gender" "male" "ip_address" "104.125.48.211" "country" "Philippines" "country_code" "PH" "city" "Liboran" "longitude" "124.6503061" "latitude" "8.3520574" "last_login" "1585647855" +HSET "user:52" "first_name" "Vinson" "last_name" "Baudacci" "email" "vbaudacci1f@vistaprint.com" "gender" "male" "ip_address" "129.46.64.239" "country" "Thailand" "country_code" "TH" "city" "Changhan" "longitude" "103.604946" "latitude" "16.1393157" "last_login" "1569751486" +HSET "user:53" "first_name" "Maurizio" "last_name" "Donovan" "email" "mdonovan1g@hatena.ne.jp" "gender" "male" "ip_address" "86.232.244.219" "country" "Sweden" "country_code" "SE" "city" "Vällingby" "longitude" "17.8567134" "latitude" "59.3729008" "last_login" "1575125326" +HSET "user:54" "first_name" "Sigmund" "last_name" "Huelin" "email" "shuelin1h@mac.com" "gender" "male" "ip_address" "24.204.82.193" "country" "Estonia" "country_code" "EE" "city" "Kohila" "longitude" "24.7475218" "latitude" "59.1651981" "last_login" "1588071180" +HSET "user:55" "first_name" "Sal" "last_name" "Gibbieson" "email" "sgibbieson1i@simplemachines.org" "gender" "male" "ip_address" "151.146.230.221" "country" "China" "country_code" "CN" "city" "Songmuping" "longitude" "111.484536" "latitude" "30.118912" "last_login" "1584204800" +HSET "user:56" "first_name" "Lilli" "last_name" "Raspison" "email" "lraspison1j@bbb.org" "gender" "female" "ip_address" "209.107.105.49" "country" "United States" "country_code" "US" "city" "Yonkers" "longitude" "-73.8977693" "latitude" "40.9180569" "last_login" "1568687526" +HSET "user:57" "first_name" "Marlowe" "last_name" "Sapsforde" "email" "msapsforde1k@devhub.com" "gender" "male" "ip_address" "227.87.182.35" "country" "China" "country_code" "CN" "city" "Xiaheqing" "longitude" "98.981746" "latitude" "39.553172" "last_login" "1591485480" +HSET "user:58" "first_name" "Nelly" "last_name" "Uc" "email" "nuc1l@sitemeter.com" "gender" "female" "ip_address" "40.38.199.82" "country" "Azerbaijan" "country_code" "AZ" "city" "Goranboy" "longitude" "46.7807131" "latitude" "40.6073164" "last_login" "1580857121" +HSET "user:59" "first_name" "Denni" "last_name" "Lankford" "email" "dlankford1m@admin.ch" "gender" "female" "ip_address" "148.97.57.180" "country" "Russia" "country_code" "RU" "city" "Semibratovo" "longitude" "39.53688" "latitude" "57.30461" "last_login" "1575892803" +HSET "user:60" "first_name" "Cosimo" "last_name" "Davidde" "email" "cdavidde1n@fda.gov" "gender" "male" "ip_address" "9.133.218.79" "country" "Yemen" "country_code" "YE" "city" "Aş Şafaqayn" "longitude" "43.433333" "latitude" "15.366667" "last_login" "1588449960" +HSET "user:61" "first_name" "Ellswerth" "last_name" "Phare" "email" "ephare1o@si.edu" "gender" "male" "ip_address" "73.216.60.44" "country" "Russia" "country_code" "RU" "city" "Mayskiy" "longitude" "40.5449803" "latitude" "44.7790716" "last_login" "1595983782" +HSET "user:62" "first_name" "Kassie" "last_name" "Donaghy" "email" "kdonaghy1p@illinois.edu" "gender" "female" "ip_address" "52.245.118.112" "country" "Curacao" "country_code" "CW" "city" "Willemstad" "longitude" "-68.8824233" "latitude" "12.1224221" "last_login" "1588345030" +HSET "user:63" "first_name" "Karna" "last_name" "Bride" "email" "kbride1q@ucoz.com" "gender" "female" "ip_address" "134.176.67.177" "country" "Mexico" "country_code" "MX" "city" "Hidalgo" "longitude" "-98.7623874" "latitude" "20.0910963" "last_login" "1576992374" +HSET "user:64" "first_name" "Melinda" "last_name" "Riddler" "email" "mriddler1r@bizjournals.com" "gender" "female" "ip_address" "215.25.25.156" "country" "Brazil" "country_code" "BR" "city" "Jaguaruana" "longitude" "-37.7662816" "latitude" "-4.8371532" "last_login" "1574972194" +HSET "user:65" "first_name" "Jeffrey" "last_name" "Cressy" "email" "jcressy1s@bing.com" "gender" "male" "ip_address" "197.128.44.250" "country" "China" "country_code" "CN" "city" "Gaotang" "longitude" "116.231416" "latitude" "36.865827" "last_login" "1580910680" +HSET "user:66" "first_name" "Alvis" "last_name" "Farady" "email" "afarady1t@nhs.uk" "gender" "male" "ip_address" "36.22.202.94" "country" "China" "country_code" "CN" "city" "Pulian" "longitude" "120.643023" "latitude" "30.229314" "last_login" "1592068115" +HSET "user:67" "first_name" "Joshua" "last_name" "Rioch" "email" "jrioch1u@360.cn" "gender" "male" "ip_address" "135.34.236.19" "country" "Mexico" "country_code" "MX" "city" "Emiliano Zapata" "longitude" "-99.1843676" "latitude" "18.8478608" "last_login" "1582610495" +HSET "user:68" "first_name" "Garfield" "last_name" "Bofield" "email" "gbofield1v@typepad.com" "gender" "male" "ip_address" "50.151.201.207" "country" "Philippines" "country_code" "PH" "city" "Maguilling" "longitude" "121.4761124" "latitude" "17.791111" "last_login" "1596887821" +HSET "user:69" "first_name" "Marnie" "last_name" "MacTerrelly" "email" "mmacterrelly1w@shareasale.com" "gender" "female" "ip_address" "89.103.41.151" "country" "Greece" "country_code" "GR" "city" "Spétses" "longitude" "23.1322437" "latitude" "37.2625973" "last_login" "1570198972" +HSET "user:70" "first_name" "Teodor" "last_name" "Kelbie" "email" "tkelbie1x@state.gov" "gender" "male" "ip_address" "10.2.47.223" "country" "Colombia" "country_code" "CO" "city" "Mompós" "longitude" "-74.4028287" "latitude" "9.2209606" "last_login" "1598967641" +HSET "user:71" "first_name" "Cecil" "last_name" "De Souza" "email" "cdesouza1y@jimdo.com" "gender" "female" "ip_address" "58.48.79.27" "country" "France" "country_code" "FR" "city" "Épinal" "longitude" "6.4788333" "latitude" "48.1967872" "last_login" "1595244074" +HSET "user:72" "first_name" "West" "last_name" "Coils" "email" "wcoils1z@live.com" "gender" "male" "ip_address" "86.168.18.41" "country" "China" "country_code" "CN" "city" "Qiaotou" "longitude" "120.482198" "latitude" "28.168408" "last_login" "1594007074" +HSET "user:73" "first_name" "Lazarus" "last_name" "Cristofolini" "email" "lcristofolini20@soup.io" "gender" "male" "ip_address" "178.110.43.160" "country" "Peru" "country_code" "PE" "city" "Sandia" "longitude" "-69.4678265" "latitude" "-14.3175114" "last_login" "1578952336" +HSET "user:74" "first_name" "Jennine" "last_name" "Sprules" "email" "jsprules21@usda.gov" "gender" "female" "ip_address" "135.24.6.202" "country" "Kazakhstan" "country_code" "KZ" "city" "Shemonaīkha" "longitude" "81.911898" "latitude" "50.6276718" "last_login" "1569442958" +HSET "user:75" "first_name" "Rubina" "last_name" "Guerin" "email" "rguerin22@hp.com" "gender" "female" "ip_address" "241.162.87.152" "country" "Finland" "country_code" "FI" "city" "Kiuruvesi" "longitude" "26.9828477" "latitude" "63.6106858" "last_login" "1578617583" +HSET "user:76" "first_name" "Lucais" "last_name" "Kellick" "email" "lkellick23@wikispaces.com" "gender" "male" "ip_address" "178.118.125.111" "country" "China" "country_code" "CN" "city" "Changsha" "longitude" "112.938814" "latitude" "28.228209" "last_login" "1581433948" +HSET "user:77" "first_name" "Torin" "last_name" "Bradbury" "email" "tbradbury24@friendfeed.com" "gender" "male" "ip_address" "114.162.174.132" "country" "Bolivia" "country_code" "BO" "city" "Warnes" "longitude" "-63.1678668" "latitude" "-17.5227749" "last_login" "1584382891" +HSET "user:78" "first_name" "Daphene" "last_name" "Sherville" "email" "dsherville25@amazon.co.uk" "gender" "female" "ip_address" "116.129.190.154" "country" "Angola" "country_code" "AO" "city" "Namibe" "longitude" "12.1575544" "latitude" "-15.1978317" "last_login" "1573132111" +HSET "user:79" "first_name" "Hollyanne" "last_name" "Wilstead" "email" "hwilstead26@ehow.com" "gender" "female" "ip_address" "253.134.71.118" "country" "Japan" "country_code" "JP" "city" "Ikata-chō" "longitude" "132.3056769" "latitude" "33.4749653" "last_login" "1594662710" +HSET "user:80" "first_name" "Lila" "last_name" "Mattei" "email" "lmattei27@behance.net" "gender" "female" "ip_address" "11.60.115.205" "country" "China" "country_code" "CN" "city" "Jincheng" "longitude" "112.851831" "latitude" "35.490701" "last_login" "1595459392" +HSET "user:81" "first_name" "Herby" "last_name" "Stedson" "email" "hstedson28@google.co.uk" "gender" "male" "ip_address" "124.145.24.30" "country" "Argentina" "country_code" "AR" "city" "Maipú" "longitude" "-57.5709382" "latitude" "-37.9779092" "last_login" "1593898361" +HSET "user:82" "first_name" "Justin" "last_name" "Peacop" "email" "jpeacop29@desdev.cn" "gender" "male" "ip_address" "238.251.64.74" "country" "Colombia" "country_code" "CO" "city" "Belén de los Andaquíes" "longitude" "-75.9230976" "latitude" "1.4188947" "last_login" "1589737322" +HSET "user:83" "first_name" "Thacher" "last_name" "Eddins" "email" "teddins2a@va.gov" "gender" "male" "ip_address" "159.130.228.245" "country" "Portugal" "country_code" "PT" "city" "Cova da Iria" "longitude" "-8.6888467" "latitude" "39.6352297" "last_login" "1594427338" +HSET "user:84" "first_name" "Sophia" "last_name" "Stockey" "email" "sstockey2b@mayoclinic.com" "gender" "female" "ip_address" "177.53.140.44" "country" "Mongolia" "country_code" "MN" "city" "Sharga" "longitude" "95.2732977" "latitude" "46.2686934" "last_login" "1600090005" +HSET "user:85" "first_name" "Brandy" "last_name" "Cesco" "email" "bcesco2c@craigslist.org" "gender" "male" "ip_address" "100.87.66.197" "country" "Luxembourg" "country_code" "LU" "city" "Garnich" "longitude" "5.9480686" "latitude" "49.6154055" "last_login" "1583262178" +HSET "user:86" "first_name" "Stevana" "last_name" "Bees" "email" "sbees2d@howstuffworks.com" "gender" "female" "ip_address" "145.177.4.39" "country" "Russia" "country_code" "RU" "city" "Oyskhara" "longitude" "46.2407529" "latitude" "43.2608797" "last_login" "1574066535" +HSET "user:87" "first_name" "Claire" "last_name" "Fowles" "email" "cfowles2e@biglobe.ne.jp" "gender" "female" "ip_address" "193.112.64.31" "country" "Canada" "country_code" "CA" "city" "Sherbrooke" "longitude" "-71.936914" "latitude" "45.3859182" "last_login" "1578679838" +HSET "user:88" "first_name" "Nannie" "last_name" "Spatig" "email" "nspatig2f@tamu.edu" "gender" "female" "ip_address" "89.215.160.16" "country" "Kyrgyzstan" "country_code" "KG" "city" "Tash-Kumyr" "longitude" "72.2186128" "latitude" "41.3373738" "last_login" "1592127607" +HSET "user:89" "first_name" "Heida" "last_name" "Varcoe" "email" "hvarcoe2g@cmu.edu" "gender" "female" "ip_address" "207.71.17.248" "country" "Kosovo" "country_code" "XK" "city" "Lipljan" "longitude" "21.1225078" "latitude" "42.5257603" "last_login" "1568647198" +HSET "user:90" "first_name" "Lynn" "last_name" "Gration" "email" "lgration2h@meetup.com" "gender" "male" "ip_address" "238.146.73.36" "country" "Brazil" "country_code" "BR" "city" "Estância Velha" "longitude" "-51.1848488" "latitude" "-29.6540396" "last_login" "1581267712" +HSET "user:91" "first_name" "Baird" "last_name" "Skoate" "email" "bskoate2i@nhs.uk" "gender" "male" "ip_address" "10.96.226.254" "country" "Greece" "country_code" "GR" "city" "Graikochóri" "longitude" "20.2749783" "latitude" "39.4977854" "last_login" "1588495337" +HSET "user:92" "first_name" "Jeannette" "last_name" "Bream" "email" "jbream2j@pinterest.com" "gender" "female" "ip_address" "243.28.209.198" "country" "China" "country_code" "CN" "city" "Shihuiqiao" "longitude" "112.279606" "latitude" "30.548268" "last_login" "1582181534" +HSET "user:93" "first_name" "Brittaney" "last_name" "Alexandrescu" "email" "balexandrescu2k@g.co" "gender" "female" "ip_address" "31.85.209.115" "country" "Russia" "country_code" "RU" "city" "Kremenki" "longitude" "37.1152943" "latitude" "54.886529" "last_login" "1590964557" +HSET "user:94" "first_name" "Rivalee" "last_name" "Deighton" "email" "rdeighton2l@a8.net" "gender" "female" "ip_address" "168.217.235.126" "country" "Venezuela" "country_code" "VE" "city" "El Cobre" "longitude" "-72.0616304" "latitude" "8.017253" "last_login" "1593583483" +HSET "user:95" "first_name" "Matti" "last_name" "Barmadier" "email" "mbarmadier2m@sciencedaily.com" "gender" "female" "ip_address" "18.133.17.210" "country" "South Africa" "country_code" "ZA" "city" "Mondlo" "longitude" "30.69633" "latitude" "-27.97499" "last_login" "1594995601" +HSET "user:96" "first_name" "Tybie" "last_name" "Soall" "email" "tsoall2n@goo.gl" "gender" "female" "ip_address" "201.3.0.103" "country" "Czech Republic" "country_code" "CZ" "city" "Dolní Rychnov" "longitude" "12.6506735" "latitude" "50.1597603" "last_login" "1594071502" +HSET "user:97" "first_name" "Aindrea" "last_name" "Kitchin" "email" "akitchin2o@nhs.uk" "gender" "female" "ip_address" "194.99.160.129" "country" "Indonesia" "country_code" "ID" "city" "Tejakalapa" "longitude" "108.1252" "latitude" "-7.2324" "last_login" "1599722294" +HSET "user:98" "first_name" "Rozelle" "last_name" "Andreou" "email" "randreou2p@ihg.com" "gender" "female" "ip_address" "201.239.55.211" "country" "Malaysia" "country_code" "MY" "city" "Klang" "longitude" "101.4687196" "latitude" "3.0721692" "last_login" "1590236487" +HSET "user:99" "first_name" "Wynn" "last_name" "Littrik" "email" "wlittrik2q@si.edu" "gender" "male" "ip_address" "98.213.236.91" "country" "Poland" "country_code" "PL" "city" "Janikowo" "longitude" "18.11328" "latitude" "52.75378" "last_login" "1594544352" +HSET "user:100" "first_name" "Anderson" "last_name" "Bithany" "email" "abithany2r@sbwire.com" "gender" "male" "ip_address" "222.164.174.233" "country" "Poland" "country_code" "PL" "city" "Łapczyca" "longitude" "20.3412605" "latitude" "49.9513027" "last_login" "1581119052" +HSET "user:101" "first_name" "Winny" "last_name" "Duckers" "email" "wduckers2s@deviantart.com" "gender" "male" "ip_address" "78.80.16.85" "country" "Russia" "country_code" "RU" "city" "Tommot" "longitude" "126.2725057" "latitude" "58.9637041" "last_login" "1576001730" +HSET "user:102" "first_name" "Darin" "last_name" "Verrall" "email" "dverrall2t@meetup.com" "gender" "male" "ip_address" "236.227.35.63" "country" "Indonesia" "country_code" "ID" "city" "Sindanghayu" "longitude" "108.6324073" "latitude" "-7.4720926" "last_login" "1592900751" +HSET "user:103" "first_name" "Shara" "last_name" "Scaife" "email" "sscaife2u@eepurl.com" "gender" "female" "ip_address" "203.98.128.216" "country" "China" "country_code" "CN" "city" "Xiakouyi" "longitude" "106.425174" "latitude" "33.2064" "last_login" "1583482860" +HSET "user:104" "first_name" "Wye" "last_name" "Mc Cahey" "email" "wmccahey2v@ameblo.jp" "gender" "male" "ip_address" "174.199.209.242" "country" "Peru" "country_code" "PE" "city" "Chillia" "longitude" "-77.494621" "latitude" "-8.098672" "last_login" "1587234391" +HSET "user:105" "first_name" "Hollie" "last_name" "Wethered" "email" "hwethered2w@cbsnews.com" "gender" "female" "ip_address" "63.223.109.32" "country" "Poland" "country_code" "PL" "city" "Mnich" "longitude" "20.3707749" "latitude" "50.701693" "last_login" "1584655492" +HSET "user:106" "first_name" "Sol" "last_name" "Huntley" "email" "shuntley2x@goo.gl" "gender" "male" "ip_address" "215.204.30.197" "country" "France" "country_code" "FR" "city" "Orange" "longitude" "4.810107" "latitude" "44.1372925" "last_login" "1594575978" +HSET "user:107" "first_name" "Flss" "last_name" "Snoding" "email" "fsnoding2y@creativecommons.org" "gender" "female" "ip_address" "35.77.186.194" "country" "South Africa" "country_code" "ZA" "city" "Nongoma" "longitude" "31.6454222" "latitude" "-27.8942891" "last_login" "1579924092" +HSET "user:108" "first_name" "Christy" "last_name" "Aspall" "email" "caspall2z@ucla.edu" "gender" "male" "ip_address" "181.56.178.207" "country" "Indonesia" "country_code" "ID" "city" "Ares Tengah" "longitude" "114.0064" "latitude" "-6.9508" "last_login" "1571916291" +HSET "user:109" "first_name" "Pasquale" "last_name" "Benes" "email" "pbenes30@weather.com" "gender" "male" "ip_address" "165.195.141.207" "country" "Indonesia" "country_code" "ID" "city" "Gumuk Tengah" "longitude" "109.011884" "latitude" "-7.1072394" "last_login" "1600017271" +HSET "user:110" "first_name" "Joli" "last_name" "O'Carran" "email" "jocarran31@imdb.com" "gender" "female" "ip_address" "199.61.71.240" "country" "Argentina" "country_code" "AR" "city" "Garupá" "longitude" "-55.0182151" "latitude" "-26.8191146" "last_login" "1590442372" +HSET "user:111" "first_name" "Paige" "last_name" "Lyddiard" "email" "plyddiard32@yandex.ru" "gender" "female" "ip_address" "251.122.12.192" "country" "China" "country_code" "CN" "city" "Xieji" "longitude" "105.729085" "latitude" "35.963912" "last_login" "1580124770" +HSET "user:112" "first_name" "Syman" "last_name" "De Launde" "email" "sdelaunde33@bbc.co.uk" "gender" "male" "ip_address" "116.129.83.238" "country" "Czech Republic" "country_code" "CZ" "city" "Litvínov" "longitude" "13.5929744" "latitude" "50.5965585" "last_login" "1572859364" +HSET "user:113" "first_name" "Rosabella" "last_name" "Dreng" "email" "rdreng34@sitemeter.com" "gender" "female" "ip_address" "106.120.125.82" "country" "Syria" "country_code" "SY" "city" "Douma" "longitude" "36.4093761" "latitude" "33.5727724" "last_login" "1595388816" +HSET "user:114" "first_name" "Olga" "last_name" "Walles" "email" "owalles35@ovh.net" "gender" "female" "ip_address" "1.48.207.206" "country" "Slovenia" "country_code" "SI" "city" "Rogoza" "longitude" "15.6702113" "latitude" "46.4979131" "last_login" "1576416272" +HSET "user:115" "first_name" "Shea" "last_name" "Rayne" "email" "srayne36@census.gov" "gender" "female" "ip_address" "190.122.2.137" "country" "Greece" "country_code" "GR" "city" "Galatás" "longitude" "23.447887" "latitude" "37.4968471" "last_login" "1586906619" +HSET "user:116" "first_name" "Sadella" "last_name" "Dugall" "email" "sdugall37@auda.org.au" "gender" "female" "ip_address" "14.60.120.189" "country" "Russia" "country_code" "RU" "city" "Gudermes" "longitude" "46.0788428" "latitude" "43.4321902" "last_login" "1587824433" +HSET "user:117" "first_name" "Giustina" "last_name" "Bedrosian" "email" "gbedrosian38@wsj.com" "gender" "female" "ip_address" "104.117.149.150" "country" "Brazil" "country_code" "BR" "city" "Jutaí" "longitude" "-68.5247149" "latitude" "-4.4008685" "last_login" "1592545411" +HSET "user:118" "first_name" "Granthem" "last_name" "Redferne" "email" "gredferne39@ebay.com" "gender" "male" "ip_address" "58.110.181.40" "country" "Croatia" "country_code" "HR" "city" "Rijeka" "longitude" "14.442176" "latitude" "45.3270631" "last_login" "1570596366" +HSET "user:119" "first_name" "Sheff" "last_name" "Bowbrick" "email" "sbowbrick3a@hp.com" "gender" "male" "ip_address" "138.97.101.143" "country" "China" "country_code" "CN" "city" "Beiqi" "longitude" "106.5765328" "latitude" "29.5580077" "last_login" "1583360950" +HSET "user:120" "first_name" "Wat" "last_name" "Mc Gaughey" "email" "wmcgaughey3b@miitbeian.gov.cn" "gender" "male" "ip_address" "87.225.39.119" "country" "Czech Republic" "country_code" "CZ" "city" "Náklo" "longitude" "17.1296944" "latitude" "49.6546211" "last_login" "1592718275" +HSET "user:121" "first_name" "Caspar" "last_name" "Gianettini" "email" "cgianettini3c@devhub.com" "gender" "male" "ip_address" "59.197.127.124" "country" "Sweden" "country_code" "SE" "city" "Oxelösund" "longitude" "17.0829438" "latitude" "58.6840661" "last_login" "1578144138" +HSET "user:122" "first_name" "Chryste" "last_name" "Crisall" "email" "ccrisall3d@squarespace.com" "gender" "female" "ip_address" "82.123.148.133" "country" "Serbia" "country_code" "RS" "city" "Joševa" "longitude" "19.8379835" "latitude" "44.3660736" "last_login" "1584393793" +HSET "user:123" "first_name" "Maryrose" "last_name" "Staden" "email" "mstaden3e@ask.com" "gender" "female" "ip_address" "4.31.215.122" "country" "China" "country_code" "CN" "city" "Kanbula" "longitude" "101.81962" "latitude" "36.114691" "last_login" "1571570875" +HSET "user:124" "first_name" "Reynard" "last_name" "Eakin" "email" "reakin3f@e-recht24.de" "gender" "male" "ip_address" "116.180.131.224" "country" "China" "country_code" "CN" "city" "Shaliangzi" "longitude" "93.341907" "latitude" "37.910325" "last_login" "1577307478" +HSET "user:125" "first_name" "Ellwood" "last_name" "Satteford" "email" "esatteford3g@histats.com" "gender" "male" "ip_address" "26.123.56.35" "country" "Ireland" "country_code" "IE" "city" "Piltown" "longitude" "-6.3025448" "latitude" "53.6920618" "last_login" "1579326495" +HSET "user:126" "first_name" "Donovan" "last_name" "Sherrott" "email" "dsherrott3h@jugem.jp" "gender" "male" "ip_address" "106.213.23.204" "country" "Canada" "country_code" "CA" "city" "Nanton" "longitude" "-113.76866" "latitude" "50.35008" "last_login" "1596678429" +HSET "user:127" "first_name" "Andee" "last_name" "Sleeford" "email" "asleeford3i@sogou.com" "gender" "female" "ip_address" "13.149.207.56" "country" "Canada" "country_code" "CA" "city" "Nakusp" "longitude" "-117.80226" "latitude" "50.24987" "last_login" "1575153650" +HSET "user:128" "first_name" "Ronnie" "last_name" "Demougeot" "email" "rdemougeot3j@list-manage.com" "gender" "female" "ip_address" "162.152.7.70" "country" "Tanzania" "country_code" "TZ" "city" "Tabora" "longitude" "32.8197329" "latitude" "-5.0424945" "last_login" "1569476663" +HSET "user:129" "first_name" "Deanne" "last_name" "Sutehall" "email" "dsutehall3k@epa.gov" "gender" "female" "ip_address" "39.184.237.7" "country" "Czech Republic" "country_code" "CZ" "city" "Lukavice" "longitude" "16.9204034" "latitude" "49.8229025" "last_login" "1571529762" +HSET "user:130" "first_name" "Hobard" "last_name" "Tommasuzzi" "email" "htommasuzzi3l@geocities.com" "gender" "male" "ip_address" "135.114.229.76" "country" "Spain" "country_code" "ES" "city" "Lugo" "longitude" "-7.5626411" "latitude" "42.9782326" "last_login" "1580266950" +HSET "user:131" "first_name" "Myrna" "last_name" "Alyokhin" "email" "malyokhin3m@jugem.jp" "gender" "female" "ip_address" "7.233.137.1" "country" "Belarus" "country_code" "BY" "city" "Byahoml’" "longitude" "28.0605963" "latitude" "54.7318321" "last_login" "1569621350" +HSET "user:132" "first_name" "Bat" "last_name" "Lubman" "email" "blubman3n@pen.io" "gender" "male" "ip_address" "104.57.209.246" "country" "Serbia" "country_code" "RS" "city" "Bočar" "longitude" "20.2863213" "latitude" "45.7653181" "last_login" "1584760369" +HSET "user:133" "first_name" "Heinrick" "last_name" "Leiden" "email" "hleiden3o@java.com" "gender" "male" "ip_address" "203.74.178.249" "country" "Indonesia" "country_code" "ID" "city" "Cimara" "longitude" "108.7066398" "latitude" "-7.1057357" "last_login" "1598435085" +HSET "user:134" "first_name" "Cindie" "last_name" "Loughran" "email" "cloughran3p@ed.gov" "gender" "female" "ip_address" "219.114.169.117" "country" "China" "country_code" "CN" "city" "Jiuxian" "longitude" "109.768451" "latitude" "25.130594" "last_login" "1573732137" +HSET "user:135" "first_name" "Oby" "last_name" "Searchfield" "email" "osearchfield3q@zdnet.com" "gender" "male" "ip_address" "63.57.166.15" "country" "Brazil" "country_code" "BR" "city" "Planaltina" "longitude" "-47.6093177" "latitude" "-15.4524821" "last_login" "1572907746" +HSET "user:136" "first_name" "Thor" "last_name" "Gansbuhler" "email" "tgansbuhler3r@g.co" "gender" "male" "ip_address" "47.247.250.109" "country" "Philippines" "country_code" "PH" "city" "Monching" "longitude" "122.8349537" "latitude" "7.7381338" "last_login" "1579381064" +HSET "user:137" "first_name" "Cullin" "last_name" "Pitkeathley" "email" "cpitkeathley3s@loc.gov" "gender" "male" "ip_address" "66.53.18.141" "country" "United States" "country_code" "US" "city" "San Francisco" "longitude" "-122.4863492" "latitude" "37.7181398" "last_login" "1570457786" +HSET "user:138" "first_name" "Allys" "last_name" "Stovold" "email" "astovold3t@bizjournals.com" "gender" "female" "ip_address" "154.16.205.61" "country" "Poland" "country_code" "PL" "city" "Głuchów" "longitude" "20.065421" "latitude" "51.8123584" "last_login" "1590322272" +HSET "user:139" "first_name" "Sonya" "last_name" "Harbinson" "email" "sharbinson3u@cam.ac.uk" "gender" "female" "ip_address" "181.17.2.170" "country" "China" "country_code" "CN" "city" "Xianqiao" "longitude" "120.6706833" "latitude" "27.7845955" "last_login" "1587377290" +HSET "user:140" "first_name" "Silas" "last_name" "Yeandel" "email" "syeandel3v@biblegateway.com" "gender" "male" "ip_address" "235.179.62.169" "country" "Indonesia" "country_code" "ID" "city" "Rupe" "longitude" "118.865506" "latitude" "-8.6965738" "last_login" "1591861885" +HSET "user:141" "first_name" "Rosanna" "last_name" "Kay" "email" "rkay3w@vistaprint.com" "gender" "female" "ip_address" "81.237.111.170" "country" "Philippines" "country_code" "PH" "city" "Kaputian" "longitude" "125.7222954" "latitude" "7.0583573" "last_login" "1596525572" +HSET "user:142" "first_name" "Philip" "last_name" "Frude" "email" "pfrude3x@addthis.com" "gender" "male" "ip_address" "8.28.105.62" "country" "China" "country_code" "CN" "city" "Jindong" "longitude" "119.692696" "latitude" "29.099294" "last_login" "1598323510" +HSET "user:143" "first_name" "Heda" "last_name" "Del Checolo" "email" "hdelchecolo3y@sogou.com" "gender" "female" "ip_address" "170.241.72.159" "country" "Albania" "country_code" "AL" "city" "Kushovë" "longitude" "20.1886551" "latitude" "40.7879444" "last_login" "1570023512" +HSET "user:144" "first_name" "Anabal" "last_name" "Asman" "email" "aasman3z@google.fr" "gender" "female" "ip_address" "159.7.200.215" "country" "China" "country_code" "CN" "city" "Bianzhuang" "longitude" "117.100087" "latitude" "39.138304" "last_login" "1590339278" +HSET "user:145" "first_name" "Marcela" "last_name" "Beatey" "email" "mbeatey40@telegraph.co.uk" "gender" "female" "ip_address" "225.243.100.165" "country" "Brazil" "country_code" "BR" "city" "Cajazeiras" "longitude" "-38.5612185" "latitude" "-6.8897071" "last_login" "1594347897" +HSET "user:146" "first_name" "Hubert" "last_name" "Sawney" "email" "hsawney41@xinhuanet.com" "gender" "male" "ip_address" "154.25.226.95" "country" "Albania" "country_code" "AL" "city" "Vukatanë" "longitude" "19.547883" "latitude" "42.0256691" "last_login" "1580886098" +HSET "user:147" "first_name" "Marietta" "last_name" "Castella" "email" "mcastella42@gnu.org" "gender" "female" "ip_address" "128.136.56.40" "country" "Madagascar" "country_code" "MG" "city" "Ifanadiana" "longitude" "47.6381357" "latitude" "-21.3032134" "last_login" "1579022741" +HSET "user:148" "first_name" "Dick" "last_name" "Simpkins" "email" "dsimpkins43@cdc.gov" "gender" "male" "ip_address" "121.131.197.12" "country" "China" "country_code" "CN" "city" "Jinji" "longitude" "120.6947551" "latitude" "31.3115396" "last_login" "1579400338" +HSET "user:149" "first_name" "Horacio" "last_name" "Humbee" "email" "hhumbee44@cmu.edu" "gender" "male" "ip_address" "224.161.48.187" "country" "Ukraine" "country_code" "UA" "city" "Balaklava" "longitude" "33.6766146" "latitude" "44.5738307" "last_login" "1578512945" +HSET "user:150" "first_name" "Wayne" "last_name" "Matejka" "email" "wmatejka45@latimes.com" "gender" "male" "ip_address" "200.27.203.13" "country" "Sweden" "country_code" "SE" "city" "Sala" "longitude" "16.5457017" "latitude" "59.8292954" "last_login" "1581824118" +HSET "user:151" "first_name" "Lawry" "last_name" "Ganny" "email" "lganny46@wunderground.com" "gender" "male" "ip_address" "201.37.31.162" "country" "Brazil" "country_code" "BR" "city" "Tambaú" "longitude" "-47.27079" "latitude" "-21.7034017" "last_login" "1586630359" +HSET "user:152" "first_name" "Raymund" "last_name" "Bloan" "email" "rbloan47@jimdo.com" "gender" "male" "ip_address" "42.205.121.101" "country" "Argentina" "country_code" "AR" "city" "Villa Dolores" "longitude" "-65.180261" "latitude" "-31.946337" "last_login" "1593174963" +HSET "user:153" "first_name" "Lusa" "last_name" "Fyers" "email" "lfyers48@biblegateway.com" "gender" "female" "ip_address" "144.94.173.196" "country" "Poland" "country_code" "PL" "city" "Uniejów" "longitude" "18.7966596" "latitude" "51.9696042" "last_login" "1596385129" +HSET "user:154" "first_name" "Madelin" "last_name" "Fache" "email" "mfache49@nasa.gov" "gender" "female" "ip_address" "227.92.36.251" "country" "Finland" "country_code" "FI" "city" "Särkisalo" "longitude" "22.9535316" "latitude" "60.1128845" "last_login" "1569585653" +HSET "user:155" "first_name" "Silvia" "last_name" "Greader" "email" "sgreader4a@msn.com" "gender" "female" "ip_address" "9.24.201.129" "country" "Indonesia" "country_code" "ID" "city" "Kadaka" "longitude" "107.905287" "latitude" "-7.2042488" "last_login" "1592227679" +HSET "user:156" "first_name" "Marlo" "last_name" "Edison" "email" "medison4b@ihg.com" "gender" "male" "ip_address" "168.76.98.210" "country" "South Africa" "country_code" "ZA" "city" "Mahikeng" "longitude" "25.6065929" "latitude" "-25.8520478" "last_login" "1592180881" +HSET "user:157" "first_name" "Anetta" "last_name" "Gifkins" "email" "agifkins4c@discovery.com" "gender" "female" "ip_address" "225.82.222.159" "country" "Cape Verde" "country_code" "CV" "city" "Vila do Maio" "longitude" "-23.2066909" "latitude" "15.1385669" "last_login" "1588971628" +HSET "user:158" "first_name" "Stern" "last_name" "Finnan" "email" "sfinnan4d@cdc.gov" "gender" "male" "ip_address" "207.101.174.198" "country" "Malaysia" "country_code" "MY" "city" "Kangar" "longitude" "100.1947477" "latitude" "6.4387946" "last_login" "1580145169" +HSET "user:159" "first_name" "Georgena" "last_name" "Authers" "email" "gauthers4e@vkontakte.ru" "gender" "female" "ip_address" "118.76.83.74" "country" "Philippines" "country_code" "PH" "city" "Lañgub" "longitude" "125.5626726" "latitude" "7.1018539" "last_login" "1585074993" +HSET "user:160" "first_name" "Jillayne" "last_name" "Felten" "email" "jfelten4f@hp.com" "gender" "female" "ip_address" "235.225.109.76" "country" "China" "country_code" "CN" "city" "Shatou" "longitude" "116.681972" "latitude" "23.354091" "last_login" "1599104044" +HSET "user:161" "first_name" "Kat" "last_name" "Heathfield" "email" "kheathfield4g@typepad.com" "gender" "female" "ip_address" "198.26.12.113" "country" "Sweden" "country_code" "SE" "city" "Karlstad" "longitude" "13.5451563" "latitude" "59.4051316" "last_login" "1598434872" +HSET "user:162" "first_name" "Bartholomeus" "last_name" "Fosten" "email" "bfosten4h@nature.com" "gender" "male" "ip_address" "112.127.37.55" "country" "Sweden" "country_code" "SE" "city" "Ingarö" "longitude" "18.3689021" "latitude" "59.2889777" "last_login" "1570385592" +HSET "user:163" "first_name" "Alison" "last_name" "Heugh" "email" "aheugh4i@linkedin.com" "gender" "female" "ip_address" "113.110.141.127" "country" "Dominican Republic" "country_code" "DO" "city" "San José de Ocoa" "longitude" "-70.5072599" "latitude" "18.5459909" "last_login" "1595927350" +HSET "user:164" "first_name" "Grethel" "last_name" "Scarsbrook" "email" "gscarsbrook4j@nasa.gov" "gender" "female" "ip_address" "39.118.138.159" "country" "El Salvador" "country_code" "SV" "city" "Chalchuapa" "longitude" "-89.6769193" "latitude" "13.9896097" "last_login" "1598802757" +HSET "user:165" "first_name" "Norrie" "last_name" "Westrey" "email" "nwestrey4k@uiuc.edu" "gender" "male" "ip_address" "118.254.81.129" "country" "Egypt" "country_code" "EG" "city" "Akhmīm" "longitude" "31.7447913" "latitude" "26.5608911" "last_login" "1568933072" +HSET "user:166" "first_name" "Edgardo" "last_name" "Skipperbottom" "email" "eskipperbottom4l@lulu.com" "gender" "male" "ip_address" "132.62.55.156" "country" "China" "country_code" "CN" "city" "Souziqiu" "longitude" "110.364953" "latitude" "29.541793" "last_login" "1584088970" +HSET "user:167" "first_name" "Malchy" "last_name" "Powell" "email" "mpowell4m@census.gov" "gender" "male" "ip_address" "11.153.28.237" "country" "Palestinian Territory" "country_code" "PS" "city" "Dayr Dibwān" "longitude" "35.268988" "latitude" "31.911205" "last_login" "1569848363" +HSET "user:168" "first_name" "Cristian" "last_name" "Teresa" "email" "cteresa4n@businessweek.com" "gender" "male" "ip_address" "131.219.100.140" "country" "South Korea" "country_code" "KR" "city" "Samsan" "longitude" "129.3318295" "latitude" "35.544405" "last_login" "1578323971" +HSET "user:169" "first_name" "Kelsi" "last_name" "Rocks" "email" "krocks4o@unicef.org" "gender" "female" "ip_address" "193.28.93.36" "country" "China" "country_code" "CN" "city" "Qizhen" "longitude" "116.658183" "latitude" "40.359722" "last_login" "1571133185" +HSET "user:170" "first_name" "Malcolm" "last_name" "Beebis" "email" "mbeebis4p@privacy.gov.au" "gender" "male" "ip_address" "67.147.201.58" "country" "Indonesia" "country_code" "ID" "city" "Cibeunying" "longitude" "107.6422488" "latitude" "-6.8780895" "last_login" "1590100686" +HSET "user:171" "first_name" "Eben" "last_name" "Hamson" "email" "ehamson4q@nbcnews.com" "gender" "male" "ip_address" "59.158.103.106" "country" "Egypt" "country_code" "EG" "city" "Abnūb" "longitude" "31.151928" "latitude" "27.2674027" "last_login" "1571874568" +HSET "user:172" "first_name" "Dominica" "last_name" "Jurries" "email" "djurries4r@homestead.com" "gender" "female" "ip_address" "6.111.46.212" "country" "Philippines" "country_code" "PH" "city" "Saravia" "longitude" "122.981075" "latitude" "10.8780876" "last_login" "1589633343" +HSET "user:173" "first_name" "Linnea" "last_name" "Kopje" "email" "lkopje4s@loc.gov" "gender" "female" "ip_address" "212.20.127.254" "country" "Marshall Islands" "country_code" "MH" "city" "Wotho" "longitude" "166.01022" "latitude" "10.16575" "last_login" "1597521026" +HSET "user:174" "first_name" "Auria" "last_name" "Binfield" "email" "abinfield4t@hud.gov" "gender" "female" "ip_address" "219.205.144.98" "country" "France" "country_code" "FR" "city" "Montpellier" "longitude" "-0.8453268" "latitude" "47.3752386" "last_login" "1578091716" +HSET "user:175" "first_name" "Nancee" "last_name" "Scibsey" "email" "nscibsey4u@tmall.com" "gender" "female" "ip_address" "24.106.190.70" "country" "Philippines" "country_code" "PH" "city" "Sinilian First" "longitude" "120.45936" "latitude" "15.69327" "last_login" "1580320028" +HSET "user:176" "first_name" "Kermit" "last_name" "Lipscombe" "email" "klipscombe4v@e-recht24.de" "gender" "male" "ip_address" "30.202.17.65" "country" "China" "country_code" "CN" "city" "Sanshui" "longitude" "112.896606" "latitude" "23.156045" "last_login" "1574477548" +HSET "user:177" "first_name" "Lem" "last_name" "Behnen" "email" "lbehnen4w@dion.ne.jp" "gender" "male" "ip_address" "109.21.192.195" "country" "Tanzania" "country_code" "TZ" "city" "Kibiti" "longitude" "38.9381031" "latitude" "-7.7256069" "last_login" "1582325005" +HSET "user:178" "first_name" "Lazarus" "last_name" "Daley" "email" "ldaley4x@cam.ac.uk" "gender" "male" "ip_address" "86.251.234.168" "country" "China" "country_code" "CN" "city" "Huaqiao" "longitude" "118.6422409" "latitude" "24.9372186" "last_login" "1598384751" +HSET "user:179" "first_name" "Hashim" "last_name" "Fontenot" "email" "hfontenot4y@mapquest.com" "gender" "male" "ip_address" "214.53.161.16" "country" "Ukraine" "country_code" "UA" "city" "Uhniv" "longitude" "23.7519532" "latitude" "50.3649126" "last_login" "1571271245" +HSET "user:180" "first_name" "Chevalier" "last_name" "Wicklen" "email" "cwicklen4z@linkedin.com" "gender" "male" "ip_address" "117.141.77.159" "country" "Indonesia" "country_code" "ID" "city" "Pliwetan" "longitude" "112.1717105" "latitude" "-6.9039936" "last_login" "1574958682" +HSET "user:181" "first_name" "Domenico" "last_name" "Godar" "email" "dgodar50@delicious.com" "gender" "male" "ip_address" "128.145.36.118" "country" "Russia" "country_code" "RU" "city" "Urus-Martan" "longitude" "45.5357156" "latitude" "43.1298714" "last_login" "1596862317" +HSET "user:182" "first_name" "Ignatius" "last_name" "Newburn" "email" "inewburn51@salon.com" "gender" "male" "ip_address" "98.6.173.130" "country" "Ukraine" "country_code" "UA" "city" "Izyum" "longitude" "37.2665006" "latitude" "49.2121445" "last_login" "1596335641" +HSET "user:183" "first_name" "Tersina" "last_name" "Gobell" "email" "tgobell52@ebay.com" "gender" "female" "ip_address" "121.63.211.3" "country" "Peru" "country_code" "PE" "city" "Maranura" "longitude" "-72.667999" "latitude" "-12.94844" "last_login" "1582092418" +HSET "user:184" "first_name" "Rickey" "last_name" "Propper" "email" "rpropper53@shutterfly.com" "gender" "male" "ip_address" "187.132.87.114" "country" "France" "country_code" "FR" "city" "Paris 14" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1598664498" +HSET "user:185" "first_name" "Adriena" "last_name" "Pollard" "email" "apollard54@patch.com" "gender" "female" "ip_address" "113.234.204.54" "country" "Russia" "country_code" "RU" "city" "Zheleznogorsk-Ilimskiy" "longitude" "104.1948978" "latitude" "56.6175886" "last_login" "1583156310" +HSET "user:186" "first_name" "Daisie" "last_name" "Kaser" "email" "dkaser55@hao123.com" "gender" "female" "ip_address" "71.95.99.12" "country" "Indonesia" "country_code" "ID" "city" "Gunungmalang Satu" "longitude" "106.7336319" "latitude" "-6.6579598" "last_login" "1574902955" +HSET "user:187" "first_name" "Rosalinda" "last_name" "Helsdon" "email" "rhelsdon56@ted.com" "gender" "female" "ip_address" "121.52.113.189" "country" "Russia" "country_code" "RU" "city" "Sterlitamak" "longitude" "55.910876" "latitude" "53.621506" "last_login" "1582564610" +HSET "user:188" "first_name" "Cathlene" "last_name" "Helder" "email" "chelder57@trellian.com" "gender" "female" "ip_address" "213.152.122.47" "country" "Portugal" "country_code" "PT" "city" "Vila Alva" "longitude" "-7.9000381" "latitude" "38.2498796" "last_login" "1583414693" +HSET "user:189" "first_name" "Ladonna" "last_name" "Prise" "email" "lprise58@economist.com" "gender" "female" "ip_address" "101.85.245.14" "country" "China" "country_code" "CN" "city" "Dadong" "longitude" "123.4699481" "latitude" "41.805137" "last_login" "1586359405" +HSET "user:190" "first_name" "Baily" "last_name" "Mattock" "email" "bmattock59@imgur.com" "gender" "male" "ip_address" "8.130.149.105" "country" "Philippines" "country_code" "PH" "city" "Santo Domingo" "longitude" "123.7702587" "latitude" "13.2317498" "last_login" "1589627806" +HSET "user:191" "first_name" "Deloris" "last_name" "Yven" "email" "dyven5a@boston.com" "gender" "female" "ip_address" "227.215.178.207" "country" "Brazil" "country_code" "BR" "city" "Panambi" "longitude" "-53.5009992" "latitude" "-28.2588438" "last_login" "1586107426" +HSET "user:192" "first_name" "Gordon" "last_name" "Bernhardi" "email" "gbernhardi5b@exblog.jp" "gender" "male" "ip_address" "134.212.134.232" "country" "Russia" "country_code" "RU" "city" "Vakhtan" "longitude" "46.6878846" "latitude" "57.9609962" "last_login" "1589007075" +HSET "user:193" "first_name" "Domenic" "last_name" "Earwicker" "email" "dearwicker5c@cisco.com" "gender" "male" "ip_address" "107.188.113.15" "country" "China" "country_code" "CN" "city" "Jiefang" "longitude" "118.2536287" "latitude" "35.0702051" "last_login" "1576429015" +HSET "user:194" "first_name" "Daune" "last_name" "Phizackarley" "email" "dphizackarley5d@dot.gov" "gender" "female" "ip_address" "44.198.247.246" "country" "France" "country_code" "FR" "city" "Blois" "longitude" "1.3155028" "latitude" "47.594843" "last_login" "1583419494" +HSET "user:195" "first_name" "Dunn" "last_name" "Eighteen" "email" "deighteen5e@cpanel.net" "gender" "male" "ip_address" "179.187.139.60" "country" "China" "country_code" "CN" "city" "Shangsha" "longitude" "112.938814" "latitude" "28.228209" "last_login" "1586938789" +HSET "user:196" "first_name" "Thaddeus" "last_name" "Polye" "email" "tpolye5f@gnu.org" "gender" "male" "ip_address" "4.96.220.11" "country" "China" "country_code" "CN" "city" "Zhenqian" "longitude" "119.286606" "latitude" "25.24748" "last_login" "1579661828" +HSET "user:197" "first_name" "Rupert" "last_name" "Cornthwaite" "email" "rcornthwaite5g@hibu.com" "gender" "male" "ip_address" "8.186.122.78" "country" "Indonesia" "country_code" "ID" "city" "Riit" "longitude" "122.1235054" "latitude" "-8.6436289" "last_login" "1581225320" +HSET "user:198" "first_name" "Maggi" "last_name" "Jeffcock" "email" "mjeffcock5h@jugem.jp" "gender" "female" "ip_address" "109.241.9.140" "country" "Philippines" "country_code" "PH" "city" "Panique" "longitude" "124.1480568" "latitude" "13.9113539" "last_login" "1578180586" +HSET "user:199" "first_name" "Alexandr" "last_name" "Fodden" "email" "afodden5i@wisc.edu" "gender" "male" "ip_address" "188.0.119.227" "country" "United States" "country_code" "US" "city" "Cincinnati" "longitude" "-84.3680059" "latitude" "39.100057" "last_login" "1576713350" +HSET "user:200" "first_name" "Yanaton" "last_name" "Capron" "email" "ycapron5j@miibeian.gov.cn" "gender" "male" "ip_address" "212.106.218.160" "country" "Jordan" "country_code" "JO" "city" "Mafraq" "longitude" "36.2020028" "latitude" "32.341673" "last_login" "1579831367" +HSET "user:201" "first_name" "Tillie" "last_name" "Comins" "email" "tcomins5k@163.com" "gender" "female" "ip_address" "105.251.251.147" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.7674764" "latitude" "59.9036118" "last_login" "1589389152" +HSET "user:202" "first_name" "Haydon" "last_name" "Botley" "email" "hbotley5l@goo.ne.jp" "gender" "male" "ip_address" "117.185.79.78" "country" "China" "country_code" "CN" "city" "Liulin" "longitude" "110.88907" "latitude" "37.429832" "last_login" "1588297685" +HSET "user:203" "first_name" "Sarine" "last_name" "Rossant" "email" "srossant5m@narod.ru" "gender" "female" "ip_address" "14.191.45.65" "country" "Bangladesh" "country_code" "BD" "city" "Khulna" "longitude" "89.5403279" "latitude" "22.845641" "last_login" "1576559457" +HSET "user:204" "first_name" "Bar" "last_name" "Laingmaid" "email" "blaingmaid5n@amazon.co.uk" "gender" "male" "ip_address" "63.127.242.226" "country" "China" "country_code" "CN" "city" "Xianghu" "longitude" "120.234391" "latitude" "30.167585" "last_login" "1573830246" +HSET "user:205" "first_name" "Easter" "last_name" "Gounel" "email" "egounel5o@twitpic.com" "gender" "female" "ip_address" "216.75.105.87" "country" "Chad" "country_code" "TD" "city" "Abéché" "longitude" "20.8433709" "latitude" "13.8359124" "last_login" "1574711133" +HSET "user:206" "first_name" "Ann-marie" "last_name" "Haggeth" "email" "ahaggeth5p@mediafire.com" "gender" "female" "ip_address" "192.133.200.11" "country" "Ukraine" "country_code" "UA" "city" "Vinnytsya" "longitude" "28.4682169" "latitude" "49.233083" "last_login" "1575361049" +HSET "user:207" "first_name" "Myrtia" "last_name" "Balsillie" "email" "mbalsillie5q@yale.edu" "gender" "female" "ip_address" "123.72.72.57" "country" "Morocco" "country_code" "MA" "city" "Arazane" "longitude" "-8.615482" "latitude" "30.507299" "last_login" "1596092552" +HSET "user:208" "first_name" "Britt" "last_name" "Tanser" "email" "btanser5r@unblog.fr" "gender" "male" "ip_address" "76.46.247.229" "country" "Brazil" "country_code" "BR" "city" "Ouro Branco" "longitude" "-36.9326095" "latitude" "-6.6760711" "last_login" "1584483783" +HSET "user:209" "first_name" "Barney" "last_name" "Langtree" "email" "blangtree5s@ocn.ne.jp" "gender" "male" "ip_address" "156.102.200.58" "country" "Canada" "country_code" "CA" "city" "Baie-Comeau" "longitude" "-68.1518275" "latitude" "49.2211865" "last_login" "1588469560" +HSET "user:210" "first_name" "Rocky" "last_name" "Wahncke" "email" "rwahncke5t@usatoday.com" "gender" "male" "ip_address" "235.231.210.108" "country" "Poland" "country_code" "PL" "city" "Luzino" "longitude" "18.0936055" "latitude" "54.5412717" "last_login" "1574224968" +HSET "user:211" "first_name" "Tailor" "last_name" "Winkell" "email" "twinkell5u@time.com" "gender" "male" "ip_address" "136.53.248.140" "country" "China" "country_code" "CN" "city" "Hehu" "longitude" "121.461114" "latitude" "31.199997" "last_login" "1587801707" +HSET "user:212" "first_name" "Whitney" "last_name" "Corrao" "email" "wcorrao5v@plala.or.jp" "gender" "female" "ip_address" "151.39.4.216" "country" "China" "country_code" "CN" "city" "Donggaohuang" "longitude" "114.003577" "latitude" "22.915288" "last_login" "1569382913" +HSET "user:213" "first_name" "Edlin" "last_name" "Shelly" "email" "eshelly5w@histats.com" "gender" "male" "ip_address" "28.163.190.220" "country" "France" "country_code" "FR" "city" "Reims" "longitude" "-1.8090692" "latitude" "48.2414942" "last_login" "1583782497" +HSET "user:214" "first_name" "Jenn" "last_name" "Zanetello" "email" "jzanetello5x@sogou.com" "gender" "female" "ip_address" "188.21.189.207" "country" "Azerbaijan" "country_code" "AZ" "city" "Pirallahı" "longitude" "50.3334447" "latitude" "40.4746848" "last_login" "1589148218" +HSET "user:215" "first_name" "Carrie" "last_name" "Manshaw" "email" "cmanshaw5y@1und1.de" "gender" "female" "ip_address" "176.39.87.176" "country" "Bangladesh" "country_code" "BD" "city" "Maulavi Bāzār" "longitude" "91.7314903" "latitude" "24.3095344" "last_login" "1588199224" +HSET "user:216" "first_name" "Julian" "last_name" "Eveling" "email" "jeveling5z@howstuffworks.com" "gender" "male" "ip_address" "109.143.207.18" "country" "Poland" "country_code" "PL" "city" "Szelków" "longitude" "21.2097479" "latitude" "52.8208769" "last_login" "1597980175" +HSET "user:217" "first_name" "Calida" "last_name" "Heddan" "email" "cheddan60@mediafire.com" "gender" "female" "ip_address" "28.150.160.86" "country" "Malaysia" "country_code" "MY" "city" "Kota Bharu" "longitude" "102.2462087" "latitude" "6.1097207" "last_login" "1590121273" +HSET "user:218" "first_name" "Cristi" "last_name" "Christescu" "email" "cchristescu61@xrea.com" "gender" "female" "ip_address" "178.200.223.200" "country" "China" "country_code" "CN" "city" "Huai’an" "longitude" "119.113185" "latitude" "33.551052" "last_login" "1596342420" +HSET "user:219" "first_name" "Beatrice" "last_name" "Ashwell" "email" "bashwell62@zimbio.com" "gender" "female" "ip_address" "213.129.35.199" "country" "Thailand" "country_code" "TH" "city" "Bang Nam Priao" "longitude" "101.052868" "latitude" "13.871805" "last_login" "1597802350" +HSET "user:220" "first_name" "Eleanora" "last_name" "Wanklin" "email" "ewanklin63@parallels.com" "gender" "female" "ip_address" "191.132.77.225" "country" "Argentina" "country_code" "AR" "city" "San Vicente" "longitude" "-58.5529923" "latitude" "-34.5860444" "last_login" "1575064429" +HSET "user:221" "first_name" "Valencia" "last_name" "Counsell" "email" "vcounsell64@last.fm" "gender" "female" "ip_address" "111.196.34.211" "country" "Philippines" "country_code" "PH" "city" "Mansilingan" "longitude" "122.977964" "latitude" "10.630446" "last_login" "1569019435" +HSET "user:222" "first_name" "Crissie" "last_name" "MacNockater" "email" "cmacnockater65@mozilla.org" "gender" "female" "ip_address" "101.173.151.190" "country" "Brazil" "country_code" "BR" "city" "Tanguá" "longitude" "-42.7205994" "latitude" "-22.7428038" "last_login" "1588478363" +HSET "user:223" "first_name" "Lovell" "last_name" "Allcoat" "email" "lallcoat66@yandex.ru" "gender" "male" "ip_address" "2.252.120.141" "country" "China" "country_code" "CN" "city" "Longsheng" "longitude" "110.011238" "latitude" "25.797931" "last_login" "1589745238" +HSET "user:224" "first_name" "Faber" "last_name" "Ingree" "email" "fingree67@jigsy.com" "gender" "male" "ip_address" "204.66.212.102" "country" "Egypt" "country_code" "EG" "city" "Minyat an Naşr" "longitude" "31.6967438" "latitude" "31.1713871" "last_login" "1578195470" +HSET "user:225" "first_name" "Emmery" "last_name" "Bartosek" "email" "ebartosek68@wordpress.com" "gender" "male" "ip_address" "246.95.36.8" "country" "China" "country_code" "CN" "city" "Weishui" "longitude" "114.152183" "latitude" "38.02365" "last_login" "1594091397" +HSET "user:226" "first_name" "Chryste" "last_name" "Grealy" "email" "cgrealy69@geocities.com" "gender" "female" "ip_address" "91.20.31.90" "country" "Portugal" "country_code" "PT" "city" "Loureiro" "longitude" "-8.3338509" "latitude" "41.7936783" "last_login" "1599159623" +HSET "user:227" "first_name" "Fran" "last_name" "Krienke" "email" "fkrienke6a@icio.us" "gender" "male" "ip_address" "159.216.246.64" "country" "Croatia" "country_code" "HR" "city" "Senj" "longitude" "14.9036052" "latitude" "44.9893604" "last_login" "1597783305" +HSET "user:228" "first_name" "Roseanna" "last_name" "Poyle" "email" "rpoyle6b@google.com.br" "gender" "female" "ip_address" "26.207.179.106" "country" "China" "country_code" "CN" "city" "Yiqian" "longitude" "116.474285" "latitude" "39.949597" "last_login" "1598829003" +HSET "user:229" "first_name" "Abey" "last_name" "Kemball" "email" "akemball6c@webnode.com" "gender" "male" "ip_address" "251.174.163.20" "country" "Serbia" "country_code" "RS" "city" "Platičevo" "longitude" "19.771335" "latitude" "44.8245862" "last_login" "1575460469" +HSET "user:230" "first_name" "Halimeda" "last_name" "Younghusband" "email" "hyounghusband6d@desdev.cn" "gender" "female" "ip_address" "207.173.252.175" "country" "Bulgaria" "country_code" "BG" "city" "Sozopol" "longitude" "27.7009454" "latitude" "42.4099129" "last_login" "1596034191" +HSET "user:231" "first_name" "Tess" "last_name" "Flescher" "email" "tflescher6e@ed.gov" "gender" "female" "ip_address" "172.26.2.254" "country" "Philippines" "country_code" "PH" "city" "Pasian" "longitude" "121.0112199" "latitude" "14.6347254" "last_login" "1571326054" +HSET "user:232" "first_name" "Auria" "last_name" "Jirusek" "email" "ajirusek6f@apple.com" "gender" "female" "ip_address" "194.128.205.203" "country" "Montenegro" "country_code" "ME" "city" "Rožaje" "longitude" "20.1670628" "latitude" "42.8408389" "last_login" "1594815292" +HSET "user:233" "first_name" "Sheilakathryn" "last_name" "Deboo" "email" "sdeboo6g@angelfire.com" "gender" "female" "ip_address" "49.34.26.138" "country" "Ireland" "country_code" "IE" "city" "Fermoy" "longitude" "-9.5003786" "latitude" "52.4458588" "last_login" "1580520572" +HSET "user:234" "first_name" "Nicolis" "last_name" "Maudlin" "email" "nmaudlin6h@opensource.org" "gender" "male" "ip_address" "85.100.217.169" "country" "France" "country_code" "FR" "city" "Paris 07" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1596310491" +HSET "user:235" "first_name" "Celestine" "last_name" "Pfeffer" "email" "cpfeffer6i@springer.com" "gender" "female" "ip_address" "124.242.18.129" "country" "Indonesia" "country_code" "ID" "city" "Petani" "longitude" "101.0259275" "latitude" "1.3031434" "last_login" "1590261320" +HSET "user:236" "first_name" "Quinta" "last_name" "Sillis" "email" "qsillis6j@berkeley.edu" "gender" "female" "ip_address" "9.74.166.252" "country" "Honduras" "country_code" "HN" "city" "San José de Río Tinto" "longitude" "-85.692279" "latitude" "14.9247834" "last_login" "1585857078" +HSET "user:237" "first_name" "Roman" "last_name" "Chappell" "email" "rchappell6k@blogspot.com" "gender" "male" "ip_address" "67.203.0.194" "country" "Azerbaijan" "country_code" "AZ" "city" "Qusar" "longitude" "48.4345577" "latitude" "41.4266886" "last_login" "1577898770" +HSET "user:238" "first_name" "Gertrude" "last_name" "Catherine" "email" "gcatherine6l@themeforest.net" "gender" "female" "ip_address" "88.142.180.45" "country" "China" "country_code" "CN" "city" "Huotong" "longitude" "109.735661" "latitude" "26.887238" "last_login" "1573210645" +HSET "user:239" "first_name" "Alfie" "last_name" "Haken" "email" "ahaken6m@cargocollective.com" "gender" "female" "ip_address" "1.242.123.31" "country" "France" "country_code" "FR" "city" "Cholet" "longitude" "-0.8494862" "latitude" "47.0682122" "last_login" "1592303285" +HSET "user:240" "first_name" "Kathrine" "last_name" "Getcliffe" "email" "kgetcliffe6n@jimdo.com" "gender" "female" "ip_address" "160.1.249.57" "country" "China" "country_code" "CN" "city" "Sankui" "longitude" "119.914874" "latitude" "27.424294" "last_login" "1596585938" +HSET "user:241" "first_name" "Emily" "last_name" "Geldard" "email" "egeldard6o@umn.edu" "gender" "female" "ip_address" "128.189.153.122" "country" "Sweden" "country_code" "SE" "city" "Älvdalen" "longitude" "14.040054" "latitude" "61.228665" "last_login" "1577533371" +HSET "user:242" "first_name" "Elsworth" "last_name" "Adnams" "email" "eadnams6p@seesaa.net" "gender" "male" "ip_address" "87.109.78.129" "country" "Philippines" "country_code" "PH" "city" "Gambalidio" "longitude" "122.8913" "latitude" "13.6205" "last_login" "1573863341" +HSET "user:243" "first_name" "Dimitri" "last_name" "Dennidge" "email" "ddennidge6q@opera.com" "gender" "male" "ip_address" "85.118.223.234" "country" "Poland" "country_code" "PL" "city" "Szczerców" "longitude" "19.1136024" "latitude" "51.3307349" "last_login" "1579979576" +HSET "user:244" "first_name" "Madelyn" "last_name" "Hardaway" "email" "mhardaway6r@hatena.ne.jp" "gender" "female" "ip_address" "73.24.53.41" "country" "China" "country_code" "CN" "city" "Qiqing" "longitude" "121.9104961" "latitude" "30.9127987" "last_login" "1586691231" +HSET "user:245" "first_name" "Ian" "last_name" "Kosiada" "email" "ikosiada6s@hatena.ne.jp" "gender" "male" "ip_address" "40.192.181.26" "country" "Indonesia" "country_code" "ID" "city" "Siumate" "longitude" "123.6933" "latitude" "-9.8415" "last_login" "1571589491" +HSET "user:246" "first_name" "Gaston" "last_name" "Stolworthy" "email" "gstolworthy6t@blog.com" "gender" "male" "ip_address" "107.97.92.64" "country" "Brazil" "country_code" "BR" "city" "Guaiúba" "longitude" "-38.6949149" "latitude" "-4.1164768" "last_login" "1596274472" +HSET "user:247" "first_name" "Franciska" "last_name" "Ovenden" "email" "fovenden6u@behance.net" "gender" "female" "ip_address" "176.248.23.160" "country" "Indonesia" "country_code" "ID" "city" "Kuangsan" "longitude" "111.3008976" "latitude" "-6.7422682" "last_login" "1584470974" +HSET "user:248" "first_name" "Sydney" "last_name" "Lyster" "email" "slyster6v@usgs.gov" "gender" "male" "ip_address" "65.221.114.26" "country" "Ireland" "country_code" "IE" "city" "Muff" "longitude" "-7.269174" "latitude" "55.0650892" "last_login" "1577778639" +HSET "user:249" "first_name" "Feliks" "last_name" "Sellen" "email" "fsellen6w@time.com" "gender" "male" "ip_address" "121.228.38.220" "country" "Ghana" "country_code" "GH" "city" "Akim Swedru" "longitude" "-1.0155385" "latitude" "5.8925146" "last_login" "1594761584" +HSET "user:250" "first_name" "Albertina" "last_name" "Danaher" "email" "adanaher6x@ihg.com" "gender" "female" "ip_address" "92.196.131.57" "country" "France" "country_code" "FR" "city" "Rive-de-Gier" "longitude" "4.6192695" "latitude" "45.5294991" "last_login" "1584733085" +HSET "user:251" "first_name" "Ariel" "last_name" "Clarke" "email" "aclarke6y@blogger.com" "gender" "male" "ip_address" "51.7.214.122" "country" "Belarus" "country_code" "BY" "city" "Slawharad" "longitude" "30.9995629" "latitude" "53.4431223" "last_login" "1596352501" +HSET "user:252" "first_name" "Danice" "last_name" "Plues" "email" "dplues6z@cargocollective.com" "gender" "female" "ip_address" "6.156.182.167" "country" "United States" "country_code" "US" "city" "El Paso" "longitude" "-106.49" "latitude" "31.76" "last_login" "1597496708" +HSET "user:253" "first_name" "Renata" "last_name" "Plom" "email" "rplom70@google.com" "gender" "female" "ip_address" "230.159.23.8" "country" "China" "country_code" "CN" "city" "Shijiazhuang" "longitude" "114.514893" "latitude" "38.042805" "last_login" "1577396133" +HSET "user:254" "first_name" "Chariot" "last_name" "Phlippi" "email" "cphlippi71@amazon.co.jp" "gender" "male" "ip_address" "146.45.109.161" "country" "Indonesia" "country_code" "ID" "city" "Ciguna" "longitude" "106.8234505" "latitude" "-7.2635525" "last_login" "1570068770" +HSET "user:255" "first_name" "Sigismondo" "last_name" "Petts" "email" "spetts72@mlb.com" "gender" "male" "ip_address" "135.23.218.156" "country" "Russia" "country_code" "RU" "city" "Krutinka" "longitude" "71.5005566" "latitude" "56.0058358" "last_login" "1587835993" +HSET "user:256" "first_name" "Berri" "last_name" "Filippucci" "email" "bfilippucci73@kickstarter.com" "gender" "female" "ip_address" "151.33.95.29" "country" "Afghanistan" "country_code" "AF" "city" "Dehī" "longitude" "69.079674" "latitude" "34.496651" "last_login" "1589873753" +HSET "user:257" "first_name" "Linoel" "last_name" "Davidowsky" "email" "ldavidowsky74@privacy.gov.au" "gender" "male" "ip_address" "255.4.48.104" "country" "Vietnam" "country_code" "VN" "city" "Trần Văn Thời" "longitude" "104.8921668" "latitude" "9.1009716" "last_login" "1593726370" +HSET "user:258" "first_name" "Anetta" "last_name" "Musla" "email" "amusla75@tamu.edu" "gender" "female" "ip_address" "109.99.37.236" "country" "Thailand" "country_code" "TH" "city" "Nong Bun Nak" "longitude" "102.368115" "latitude" "14.740841" "last_login" "1573946075" +HSET "user:259" "first_name" "Theresina" "last_name" "Naismith" "email" "tnaismith76@gnu.org" "gender" "female" "ip_address" "177.120.30.26" "country" "Belarus" "country_code" "BY" "city" "Lyeskawka" "longitude" "27.7280809" "latitude" "53.9961392" "last_login" "1571700498" +HSET "user:260" "first_name" "Lucio" "last_name" "Pellitt" "email" "lpellitt77@stanford.edu" "gender" "male" "ip_address" "224.221.205.170" "country" "Argentina" "country_code" "AR" "city" "Rosario" "longitude" "-58.6661711" "latitude" "-34.5023286" "last_login" "1585345315" +HSET "user:261" "first_name" "Gaye" "last_name" "Neilan" "email" "gneilan78@gizmodo.com" "gender" "female" "ip_address" "114.41.245.154" "country" "Russia" "country_code" "RU" "city" "Sargatskoye" "longitude" "73.4882009" "latitude" "55.6084924" "last_login" "1587134165" +HSET "user:262" "first_name" "Lawton" "last_name" "Colleymore" "email" "lcolleymore79@about.me" "gender" "male" "ip_address" "53.2.184.72" "country" "Lithuania" "country_code" "LT" "city" "Daugai" "longitude" "24.33333" "latitude" "54.36667" "last_login" "1598353978" +HSET "user:263" "first_name" "Chrissie" "last_name" "Macia" "email" "cmacia7a@amazon.co.jp" "gender" "male" "ip_address" "148.221.57.165" "country" "China" "country_code" "CN" "city" "Baimaqiao" "longitude" "119.2989496" "latitude" "26.0536124" "last_login" "1569088551" +HSET "user:264" "first_name" "Dominica" "last_name" "Sinncock" "email" "dsinncock7b@home.pl" "gender" "female" "ip_address" "69.161.108.201" "country" "Czech Republic" "country_code" "CZ" "city" "Bílina Kyselka" "longitude" "13.7594816" "latitude" "50.5416315" "last_login" "1589460471" +HSET "user:265" "first_name" "Darice" "last_name" "Lathwood" "email" "dlathwood7c@yellowbook.com" "gender" "female" "ip_address" "164.60.96.162" "country" "Brazil" "country_code" "BR" "city" "São José de Ribamar" "longitude" "-44.070196" "latitude" "-2.5503853" "last_login" "1599948776" +HSET "user:266" "first_name" "Carlin" "last_name" "Erni" "email" "cerni7d@issuu.com" "gender" "female" "ip_address" "94.97.204.93" "country" "United States" "country_code" "US" "city" "Clearwater" "longitude" "-85.9262162" "latitude" "41.7396715" "last_login" "1576805886" +HSET "user:267" "first_name" "Rutledge" "last_name" "Radmer" "email" "rradmer7e@cnet.com" "gender" "male" "ip_address" "82.73.228.100" "country" "Serbia" "country_code" "RS" "city" "Aleksinac" "longitude" "21.7183695" "latitude" "43.5409901" "last_login" "1592296284" +HSET "user:268" "first_name" "Dulciana" "last_name" "Bargery" "email" "dbargery7f@blogtalkradio.com" "gender" "female" "ip_address" "33.20.250.169" "country" "Cuba" "country_code" "CU" "city" "Camagüey" "longitude" "-77.9053182" "latitude" "21.3926035" "last_login" "1598685026" +HSET "user:269" "first_name" "Leticia" "last_name" "Adamec" "email" "ladamec7g@bandcamp.com" "gender" "female" "ip_address" "184.76.156.206" "country" "Mexico" "country_code" "MX" "city" "Alvaro Obregon" "longitude" "-99.1186381" "latitude" "19.4127929" "last_login" "1574625540" +HSET "user:270" "first_name" "Ruby" "last_name" "Scallon" "email" "rscallon7h@prlog.org" "gender" "female" "ip_address" "3.54.193.138" "country" "China" "country_code" "CN" "city" "Shihuang" "longitude" "114.632886" "latitude" "39.781583" "last_login" "1597537169" +HSET "user:271" "first_name" "Lazare" "last_name" "Cuthbert" "email" "lcuthbert7i@epa.gov" "gender" "male" "ip_address" "68.235.105.233" "country" "China" "country_code" "CN" "city" "Nanyulinxi" "longitude" "112.68142" "latitude" "39.20892" "last_login" "1585573585" +HSET "user:272" "first_name" "Quintus" "last_name" "Code" "email" "qcode7j@feedburner.com" "gender" "male" "ip_address" "142.176.195.90" "country" "China" "country_code" "CN" "city" "Yangjia" "longitude" "116.4442945" "latitude" "39.9368237" "last_login" "1586543269" +HSET "user:273" "first_name" "Boony" "last_name" "Cudihy" "email" "bcudihy7k@intel.com" "gender" "male" "ip_address" "52.254.125.81" "country" "Canada" "country_code" "CA" "city" "Viking" "longitude" "-111.76844" "latitude" "53.10014" "last_login" "1582324221" +HSET "user:274" "first_name" "Phylys" "last_name" "Calf" "email" "pcalf7l@tinyurl.com" "gender" "female" "ip_address" "145.97.161.223" "country" "Greece" "country_code" "GR" "city" "Efkarpía" "longitude" "22.9541166" "latitude" "40.6897403" "last_login" "1590720257" +HSET "user:275" "first_name" "Hubey" "last_name" "Dun" "email" "hdun7m@cnet.com" "gender" "male" "ip_address" "163.112.37.84" "country" "Poland" "country_code" "PL" "city" "Częstochowa" "longitude" "18.828601" "latitude" "50.8667699" "last_login" "1570857517" +HSET "user:276" "first_name" "Mitch" "last_name" "Shacklady" "email" "mshacklady7n@hud.gov" "gender" "male" "ip_address" "33.225.226.35" "country" "Portugal" "country_code" "PT" "city" "Peso da Régua" "longitude" "-7.7937927" "latitude" "41.1645867" "last_login" "1596622374" +HSET "user:277" "first_name" "Minda" "last_name" "Clayden" "email" "mclayden7o@hp.com" "gender" "female" "ip_address" "142.35.195.58" "country" "Indonesia" "country_code" "ID" "city" "Ponjen" "longitude" "109.399141" "latitude" "-7.2634241" "last_login" "1569103361" +HSET "user:278" "first_name" "Aggie" "last_name" "Sweetnam" "email" "asweetnam7p@guardian.co.uk" "gender" "female" "ip_address" "88.253.12.243" "country" "France" "country_code" "FR" "city" "Limoges" "longitude" "3.5276642" "latitude" "45.521519" "last_login" "1594604251" +HSET "user:279" "first_name" "Edvard" "last_name" "Graine" "email" "egraine7q@ft.com" "gender" "male" "ip_address" "117.134.13.18" "country" "Russia" "country_code" "RU" "city" "Nizhniy Kislyay" "longitude" "40.1719" "latitude" "50.8497" "last_login" "1578784212" +HSET "user:280" "first_name" "Mic" "last_name" "Reschke" "email" "mreschke7r@desdev.cn" "gender" "male" "ip_address" "255.43.133.76" "country" "Cameroon" "country_code" "CM" "city" "Diang" "longitude" "13.3500652" "latitude" "4.5778968" "last_login" "1581769101" +HSET "user:281" "first_name" "Jayme" "last_name" "Leyninye" "email" "jleyninye7s@istockphoto.com" "gender" "female" "ip_address" "170.193.124.135" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Quán Lào" "longitude" "105.6515167" "latitude" "19.9699898" "last_login" "1570500871" +HSET "user:282" "first_name" "Libbi" "last_name" "Guidetti" "email" "lguidetti7t@4shared.com" "gender" "female" "ip_address" "81.96.145.223" "country" "Brazil" "country_code" "BR" "city" "Palmares" "longitude" "-35.5821519" "latitude" "-8.6764828" "last_login" "1583993370" +HSET "user:283" "first_name" "Bendicty" "last_name" "Divina" "email" "bdivina7u@amazon.de" "gender" "male" "ip_address" "166.26.37.36" "country" "South Africa" "country_code" "ZA" "city" "Izingolweni" "longitude" "30.2046941" "latitude" "-31.0510939" "last_login" "1574325282" +HSET "user:284" "first_name" "Hazlett" "last_name" "Osbourn" "email" "hosbourn7v@uiuc.edu" "gender" "male" "ip_address" "25.187.242.136" "country" "Nicaragua" "country_code" "NI" "city" "Nueva Guinea" "longitude" "-84.4540213" "latitude" "11.6932207" "last_login" "1574180588" +HSET "user:285" "first_name" "Maureen" "last_name" "Tibalt" "email" "mtibalt7w@noaa.gov" "gender" "female" "ip_address" "71.161.66.100" "country" "Micronesia" "country_code" "FM" "city" "Tamatam" "longitude" "149.4122222" "latitude" "7.5433333" "last_login" "1599650838" +HSET "user:286" "first_name" "Nettie" "last_name" "Bagehot" "email" "nbagehot7x@example.com" "gender" "female" "ip_address" "176.98.34.182" "country" "Czech Republic" "country_code" "CZ" "city" "Lukavec" "longitude" "17.919916" "latitude" "49.7517708" "last_login" "1577083956" +HSET "user:287" "first_name" "Tammara" "last_name" "Rewbottom" "email" "trewbottom7y@cpanel.net" "gender" "female" "ip_address" "120.84.240.3" "country" "Sweden" "country_code" "SE" "city" "Ludvika" "longitude" "15.1735854" "latitude" "60.1512028" "last_login" "1598060220" +HSET "user:288" "first_name" "Harp" "last_name" "Bulcroft" "email" "hbulcroft7z@eventbrite.com" "gender" "male" "ip_address" "80.87.241.73" "country" "Russia" "country_code" "RU" "city" "Tankhoy" "longitude" "105.1262" "latitude" "51.55683" "last_login" "1592705067" +HSET "user:289" "first_name" "Edee" "last_name" "Tottle" "email" "etottle80@acquirethisname.com" "gender" "female" "ip_address" "197.14.86.160" "country" "Indonesia" "country_code" "ID" "city" "Cikarang" "longitude" "107.172085" "latitude" "-6.3079232" "last_login" "1586774120" +HSET "user:290" "first_name" "Margette" "last_name" "Cutridge" "email" "mcutridge81@amazonaws.com" "gender" "female" "ip_address" "215.115.36.198" "country" "Chad" "country_code" "TD" "city" "Goz Béïda" "longitude" "21.4126837" "latitude" "12.225759" "last_login" "1584743538" +HSET "user:291" "first_name" "Greta" "last_name" "McCaw" "email" "gmccaw82@princeton.edu" "gender" "female" "ip_address" "130.45.7.236" "country" "China" "country_code" "CN" "city" "Songying" "longitude" "118.674614" "latitude" "37.433963" "last_login" "1571084348" +HSET "user:292" "first_name" "Alica" "last_name" "Ayliffe" "email" "aayliffe83@patch.com" "gender" "female" "ip_address" "239.126.252.69" "country" "Mexico" "country_code" "MX" "city" "Niños Heroes" "longitude" "-97.4513197" "latitude" "20.5479443" "last_login" "1574730497" +HSET "user:293" "first_name" "Nita" "last_name" "Spurriar" "email" "nspurriar84@symantec.com" "gender" "female" "ip_address" "184.186.97.134" "country" "Mali" "country_code" "ML" "city" "Diré" "longitude" "-3.4044187" "latitude" "16.2661738" "last_login" "1587573190" +HSET "user:294" "first_name" "Kahlil" "last_name" "Dubois" "email" "kdubois85@google.com.hk" "gender" "male" "ip_address" "21.21.53.241" "country" "Sudan" "country_code" "SD" "city" "Kassala" "longitude" "36.4039629" "latitude" "15.4581332" "last_login" "1585803245" +HSET "user:295" "first_name" "Farrand" "last_name" "Youdell" "email" "fyoudell86@mayoclinic.com" "gender" "female" "ip_address" "78.221.254.208" "country" "Japan" "country_code" "JP" "city" "Shiki" "longitude" "130.0510793" "latitude" "32.5126481" "last_login" "1585069473" +HSET "user:296" "first_name" "Lyndy" "last_name" "Vaughn" "email" "lvaughn87@globo.com" "gender" "female" "ip_address" "25.183.5.174" "country" "Panama" "country_code" "PA" "city" "Santa Marta" "longitude" "-82.6969408" "latitude" "8.5199389" "last_login" "1570487267" +HSET "user:297" "first_name" "Lawry" "last_name" "Diess" "email" "ldiess88@nbcnews.com" "gender" "male" "ip_address" "16.140.212.11" "country" "Portugal" "country_code" "PT" "city" "Pisão" "longitude" "-8.3092933" "latitude" "40.1394691" "last_login" "1596932480" +HSET "user:298" "first_name" "Issy" "last_name" "Reiling" "email" "ireiling89@chron.com" "gender" "female" "ip_address" "151.103.155.206" "country" "Tunisia" "country_code" "TN" "city" "Banbalah" "longitude" "10.8" "latitude" "35.7" "last_login" "1589274531" +HSET "user:299" "first_name" "Susie" "last_name" "Jendrys" "email" "sjendrys8a@webmd.com" "gender" "female" "ip_address" "30.157.248.216" "country" "China" "country_code" "CN" "city" "Xuetian" "longitude" "120.568856" "latitude" "29.00091" "last_login" "1571176806" +HSET "user:300" "first_name" "Elyssa" "last_name" "Bubear" "email" "ebubear8b@typepad.com" "gender" "female" "ip_address" "94.106.243.133" "country" "Brazil" "country_code" "BR" "city" "Itapevi" "longitude" "-46.9354774" "latitude" "-23.5535152" "last_login" "1570427792" +HSET "user:301" "first_name" "Bogart" "last_name" "Jarrad" "email" "bjarrad8c@ucla.edu" "gender" "male" "ip_address" "250.44.103.101" "country" "Uganda" "country_code" "UG" "city" "Kapchorwa" "longitude" "34.3976356" "latitude" "1.3350205" "last_login" "1581522194" +HSET "user:302" "first_name" "Skye" "last_name" "Jerwood" "email" "sjerwood8d@ibm.com" "gender" "male" "ip_address" "244.36.213.77" "country" "Indonesia" "country_code" "ID" "city" "Haridimun" "longitude" "103.4049445" "latitude" "0.7697665" "last_login" "1591554617" +HSET "user:303" "first_name" "Esme" "last_name" "Gogarty" "email" "egogarty8e@cbslocal.com" "gender" "male" "ip_address" "159.64.244.156" "country" "Ireland" "country_code" "IE" "city" "Sandyford" "longitude" "-6.3422325" "latitude" "53.719155" "last_login" "1597315613" +HSET "user:304" "first_name" "Bordie" "last_name" "Menure" "email" "bmenure8f@yellowpages.com" "gender" "male" "ip_address" "88.18.15.60" "country" "Colombia" "country_code" "CO" "city" "Aguachica" "longitude" "-73.611665" "latitude" "8.305925" "last_login" "1582835000" +HSET "user:305" "first_name" "Fletcher" "last_name" "Kira" "email" "fkira8g@narod.ru" "gender" "male" "ip_address" "228.160.53.135" "country" "Poland" "country_code" "PL" "city" "Rzeszów" "longitude" "22.0152079" "latitude" "50.0360024" "last_login" "1593292059" +HSET "user:306" "first_name" "Claiborn" "last_name" "Brastead" "email" "cbrastead8h@msu.edu" "gender" "male" "ip_address" "35.60.150.155" "country" "Philippines" "country_code" "PH" "city" "Danao" "longitude" "124.1789637" "latitude" "9.9578348" "last_login" "1572137887" +HSET "user:307" "first_name" "Guido" "last_name" "Sheddan" "email" "gsheddan8i@1688.com" "gender" "male" "ip_address" "40.87.50.222" "country" "Russia" "country_code" "RU" "city" "Nauchnyy Gorodok" "longitude" "83.5264334" "latitude" "53.4167481" "last_login" "1579049251" +HSET "user:308" "first_name" "Albie" "last_name" "Hazle" "email" "ahazle8j@theatlantic.com" "gender" "male" "ip_address" "219.4.42.15" "country" "Russia" "country_code" "RU" "city" "Staroutkinsk" "longitude" "59.3184961" "latitude" "57.2287633" "last_login" "1599147837" +HSET "user:309" "first_name" "Frank" "last_name" "Bake" "email" "fbake8k@ca.gov" "gender" "male" "ip_address" "212.126.231.174" "country" "France" "country_code" "FR" "city" "Mont-Saint-Aignan" "longitude" "1.0736574" "latitude" "49.4660029" "last_login" "1571834317" +HSET "user:310" "first_name" "Freeman" "last_name" "McIlriach" "email" "fmcilriach8l@usgs.gov" "gender" "male" "ip_address" "236.15.210.44" "country" "Indonesia" "country_code" "ID" "city" "Campaka" "longitude" "107.5150139" "latitude" "-6.4698493" "last_login" "1576441891" +HSET "user:311" "first_name" "Mikol" "last_name" "Cirlos" "email" "mcirlos8m@reddit.com" "gender" "male" "ip_address" "199.97.194.133" "country" "Yemen" "country_code" "YE" "city" "Matwaḩ" "longitude" "43.64213" "latitude" "15.0676" "last_login" "1595015724" +HSET "user:312" "first_name" "Kleon" "last_name" "Jannex" "email" "kjannex8n@washingtonpost.com" "gender" "male" "ip_address" "154.159.245.68" "country" "Germany" "country_code" "DE" "city" "Köln" "longitude" "7.0902515" "latitude" "50.9173381" "last_login" "1578539254" +HSET "user:313" "first_name" "Merissa" "last_name" "Terrey" "email" "mterrey8o@shareasale.com" "gender" "female" "ip_address" "252.240.106.141" "country" "Philippines" "country_code" "PH" "city" "Irosin" "longitude" "124.036411" "latitude" "12.712478" "last_login" "1592493521" +HSET "user:314" "first_name" "Bertrand" "last_name" "Helks" "email" "bhelks8p@unc.edu" "gender" "male" "ip_address" "146.102.160.25" "country" "Nicaragua" "country_code" "NI" "city" "Tola" "longitude" "-85.9368423" "latitude" "11.4385093" "last_login" "1574674686" +HSET "user:315" "first_name" "Whitby" "last_name" "Halsey" "email" "whalsey8q@4shared.com" "gender" "male" "ip_address" "102.136.155.8" "country" "Sweden" "country_code" "SE" "city" "Torsby" "longitude" "11.91635" "latitude" "57.857193" "last_login" "1585065466" +HSET "user:316" "first_name" "Alexina" "last_name" "Juarez" "email" "ajuarez8r@com.com" "gender" "female" "ip_address" "197.210.108.78" "country" "China" "country_code" "CN" "city" "Daguo" "longitude" "114.411459" "latitude" "38.070311" "last_login" "1574286896" +HSET "user:317" "first_name" "Christa" "last_name" "Martinelli" "email" "cmartinelli8s@artisteer.com" "gender" "female" "ip_address" "16.101.200.32" "country" "China" "country_code" "CN" "city" "Huangtan" "longitude" "121.261886" "latitude" "28.650072" "last_login" "1579668615" +HSET "user:318" "first_name" "Laurens" "last_name" "McVitty" "email" "lmcvitty8t@typepad.com" "gender" "male" "ip_address" "179.244.146.86" "country" "China" "country_code" "CN" "city" "Fanzhen" "longitude" "117.377715" "latitude" "36.215157" "last_login" "1570314692" +HSET "user:319" "first_name" "Domenic" "last_name" "Surcombe" "email" "dsurcombe8u@tiny.cc" "gender" "male" "ip_address" "10.223.68.111" "country" "Peru" "country_code" "PE" "city" "Tambo Grande" "longitude" "-80.3408061" "latitude" "-4.9295129" "last_login" "1576860692" +HSET "user:320" "first_name" "Shaina" "last_name" "Stendall" "email" "sstendall8v@acquirethisname.com" "gender" "female" "ip_address" "153.146.10.82" "country" "Ukraine" "country_code" "UA" "city" "Stizhkivs’ke" "longitude" "38.4585264" "latitude" "48.1181855" "last_login" "1572794505" +HSET "user:321" "first_name" "Jordan" "last_name" "Roubeix" "email" "jroubeix8w@shutterfly.com" "gender" "female" "ip_address" "110.119.9.91" "country" "Guatemala" "country_code" "GT" "city" "Agua Blanca" "longitude" "-89.6526107" "latitude" "14.4990116" "last_login" "1568654480" +HSET "user:322" "first_name" "Shea" "last_name" "Kealey" "email" "skealey8x@1688.com" "gender" "male" "ip_address" "170.44.84.86" "country" "China" "country_code" "CN" "city" "Maliang" "longitude" "106.586543" "latitude" "26.27436" "last_login" "1576619911" +HSET "user:323" "first_name" "Arlan" "last_name" "Douthwaite" "email" "adouthwaite8y@samsung.com" "gender" "male" "ip_address" "56.181.74.206" "country" "China" "country_code" "CN" "city" "Dunhou" "longitude" "128.2323169" "latitude" "43.372464" "last_login" "1597816962" +HSET "user:324" "first_name" "Willie" "last_name" "Chaldecott" "email" "wchaldecott8z@oaic.gov.au" "gender" "male" "ip_address" "136.188.119.90" "country" "Indonesia" "country_code" "ID" "city" "Raci Kulon" "longitude" "112.545369" "latitude" "-7.0031703" "last_login" "1587165431" +HSET "user:325" "first_name" "Heriberto" "last_name" "Rochell" "email" "hrochell90@gov.uk" "gender" "male" "ip_address" "77.61.207.216" "country" "Myanmar" "country_code" "MM" "city" "Syriam" "longitude" "96.2482149" "latitude" "16.7587537" "last_login" "1574079893" +HSET "user:326" "first_name" "Danyette" "last_name" "Hotton" "email" "dhotton91@vk.com" "gender" "female" "ip_address" "202.137.77.189" "country" "Monaco" "country_code" "MC" "city" "Fontvieille" "longitude" "7.417857" "latitude" "43.7281385" "last_login" "1569322961" +HSET "user:327" "first_name" "Vincent" "last_name" "Knewstub" "email" "vknewstub92@mapy.cz" "gender" "male" "ip_address" "57.27.70.38" "country" "Brazil" "country_code" "BR" "city" "Porto Real" "longitude" "-44.3482701" "latitude" "-22.4183841" "last_login" "1569042909" +HSET "user:328" "first_name" "Ced" "last_name" "Late" "email" "clate93@xinhuanet.com" "gender" "male" "ip_address" "181.245.52.27" "country" "Peru" "country_code" "PE" "city" "Shamboyacu" "longitude" "-76.1327924" "latitude" "-7.0240255" "last_login" "1588716050" +HSET "user:329" "first_name" "Dallas" "last_name" "Dautry" "email" "ddautry94@naver.com" "gender" "male" "ip_address" "160.213.125.70" "country" "China" "country_code" "CN" "city" "Hongyi" "longitude" "121.4305273" "latitude" "30.1444208" "last_login" "1589976805" +HSET "user:330" "first_name" "Eleanor" "last_name" "Atterley" "email" "eatterley95@amazon.com" "gender" "female" "ip_address" "1.160.254.26" "country" "Sweden" "country_code" "SE" "city" "Umeå" "longitude" "20.2599325" "latitude" "63.827461" "last_login" "1590431965" +HSET "user:331" "first_name" "Rosalia" "last_name" "Baxter" "email" "rbaxter96@bloomberg.com" "gender" "female" "ip_address" "217.155.220.118" "country" "Jordan" "country_code" "JO" "city" "Aqaba" "longitude" "35.0063209" "latitude" "29.5320522" "last_login" "1573896784" +HSET "user:332" "first_name" "Cad" "last_name" "Gaffney" "email" "cgaffney97@yellowbook.com" "gender" "male" "ip_address" "171.20.186.117" "country" "Ukraine" "country_code" "UA" "city" "Velyki Sorochyntsi" "longitude" "33.9416726" "latitude" "50.0198084" "last_login" "1599642966" +HSET "user:333" "first_name" "Nelson" "last_name" "Tregien" "email" "ntregien98@creativecommons.org" "gender" "male" "ip_address" "109.98.65.197" "country" "Russia" "country_code" "RU" "city" "Nizhnepavlovka" "longitude" "35.7847305" "latitude" "52.1080018" "last_login" "1581312339" +HSET "user:334" "first_name" "Leah" "last_name" "Perkinson" "email" "lperkinson99@dailymotion.com" "gender" "female" "ip_address" "187.189.214.41" "country" "Brazil" "country_code" "BR" "city" "Lago da Pedra" "longitude" "-45.133574" "latitude" "-4.5699815" "last_login" "1575234474" +HSET "user:335" "first_name" "Mead" "last_name" "Bedin" "email" "mbedin9a@acquirethisname.com" "gender" "male" "ip_address" "250.110.103.186" "country" "Russia" "country_code" "RU" "city" "Ufimskiy" "longitude" "58.05368" "latitude" "56.711556" "last_login" "1589437735" +HSET "user:336" "first_name" "Carlene" "last_name" "Pond-Jones" "email" "cpondjones9b@blog.com" "gender" "female" "ip_address" "77.8.165.127" "country" "Indonesia" "country_code" "ID" "city" "Padangbai" "longitude" "115.5074108" "latitude" "-8.5298984" "last_login" "1586596103" +HSET "user:337" "first_name" "Eleonora" "last_name" "Bettridge" "email" "ebettridge9c@eepurl.com" "gender" "female" "ip_address" "202.26.235.33" "country" "China" "country_code" "CN" "city" "Mashizhai" "longitude" "122.089283" "latitude" "40.088917" "last_login" "1576715387" +HSET "user:338" "first_name" "Ardys" "last_name" "Wison" "email" "awison9d@wufoo.com" "gender" "female" "ip_address" "32.238.184.188" "country" "Brazil" "country_code" "BR" "city" "Moreno" "longitude" "-35.0838562" "latitude" "-8.1091223" "last_login" "1579815466" +HSET "user:339" "first_name" "Chane" "last_name" "Wasiela" "email" "cwasiela9e@infoseek.co.jp" "gender" "male" "ip_address" "42.163.8.171" "country" "Albania" "country_code" "AL" "city" "Lushnjë" "longitude" "19.6996428" "latitude" "40.941983" "last_login" "1594965308" +HSET "user:340" "first_name" "Diena" "last_name" "Danat" "email" "ddanat9f@people.com.cn" "gender" "female" "ip_address" "168.157.48.110" "country" "Panama" "country_code" "PA" "city" "Jaqué" "longitude" "-78.1607186" "latitude" "7.5164282" "last_login" "1597965487" +HSET "user:341" "first_name" "Humberto" "last_name" "Warbys" "email" "hwarbys9g@archive.org" "gender" "male" "ip_address" "94.112.232.63" "country" "Morocco" "country_code" "MA" "city" "Telouet" "longitude" "-7.2396659" "latitude" "31.2888328" "last_login" "1581750998" +HSET "user:342" "first_name" "Edmund" "last_name" "Dickon" "email" "edickon9h@delicious.com" "gender" "male" "ip_address" "62.241.250.60" "country" "Poland" "country_code" "PL" "city" "Ojrzeń" "longitude" "20.5308214" "latitude" "52.7602576" "last_login" "1586081063" +HSET "user:343" "first_name" "Umeko" "last_name" "Castagno" "email" "ucastagno9i@comsenz.com" "gender" "female" "ip_address" "243.175.63.103" "country" "Zimbabwe" "country_code" "ZW" "city" "Shangani" "longitude" "29.3627814" "latitude" "-19.7775397" "last_login" "1574769122" +HSET "user:344" "first_name" "Letitia" "last_name" "Brumen" "email" "lbrumen9j@163.com" "gender" "female" "ip_address" "216.218.41.152" "country" "Nicaragua" "country_code" "NI" "city" "Siuna" "longitude" "-84.7811621" "latitude" "13.7405282" "last_login" "1578205557" +HSET "user:345" "first_name" "Denny" "last_name" "Greenroyd" "email" "dgreenroyd9k@sfgate.com" "gender" "male" "ip_address" "241.167.109.38" "country" "Indonesia" "country_code" "ID" "city" "Bokor" "longitude" "112.7420274" "latitude" "-8.0034823" "last_login" "1569459085" +HSET "user:346" "first_name" "Wendell" "last_name" "Neath" "email" "wneath9l@cocolog-nifty.com" "gender" "male" "ip_address" "210.106.173.3" "country" "Philippines" "country_code" "PH" "city" "Parang" "longitude" "124.297205" "latitude" "7.32688" "last_login" "1576106065" +HSET "user:347" "first_name" "Piper" "last_name" "Leverentz" "email" "pleverentz9m@odnoklassniki.ru" "gender" "female" "ip_address" "213.60.100.115" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1585339601" +HSET "user:348" "first_name" "Rae" "last_name" "Frostdick" "email" "rfrostdick9n@pcworld.com" "gender" "female" "ip_address" "149.65.45.183" "country" "Croatia" "country_code" "HR" "city" "Omiš" "longitude" "16.6929175" "latitude" "43.4433559" "last_login" "1571054232" +HSET "user:349" "first_name" "Kiri" "last_name" "McNickle" "email" "kmcnickle9o@nhs.uk" "gender" "female" "ip_address" "73.109.162.90" "country" "Maldives" "country_code" "MV" "city" "Vilufushi" "longitude" "73.3082308" "latitude" "2.5045603" "last_login" "1594370726" +HSET "user:350" "first_name" "Irv" "last_name" "Saffen" "email" "isaffen9p@msn.com" "gender" "male" "ip_address" "107.61.167.253" "country" "Russia" "country_code" "RU" "city" "Zelenokumsk" "longitude" "43.8736157" "latitude" "44.4140877" "last_login" "1579491452" +HSET "user:351" "first_name" "Benn" "last_name" "Imloch" "email" "bimloch9q@4shared.com" "gender" "male" "ip_address" "137.70.209.86" "country" "Japan" "country_code" "JP" "city" "Uji" "longitude" "132.9039749" "latitude" "35.3434929" "last_login" "1573941056" +HSET "user:352" "first_name" "Rayshell" "last_name" "Guppie" "email" "rguppie9r@walmart.com" "gender" "female" "ip_address" "123.39.169.115" "country" "Zimbabwe" "country_code" "ZW" "city" "Nyanga" "longitude" "32.7463686" "latitude" "-18.2200791" "last_login" "1573469562" +HSET "user:353" "first_name" "Billy" "last_name" "Gravey" "email" "bgravey9s@nps.gov" "gender" "female" "ip_address" "227.69.53.187" "country" "Iran" "country_code" "IR" "city" "Saqqez" "longitude" "46.2779705" "latitude" "36.2389448" "last_login" "1573618604" +HSET "user:354" "first_name" "Raimondo" "last_name" "Toyne" "email" "rtoyne9t@people.com.cn" "gender" "male" "ip_address" "185.209.69.120" "country" "Indonesia" "country_code" "ID" "city" "Pasar" "longitude" "110.8312777" "latitude" "-7.5690727" "last_login" "1586725614" +HSET "user:355" "first_name" "Guy" "last_name" "Copper" "email" "gcopper9u@si.edu" "gender" "male" "ip_address" "99.132.165.45" "country" "China" "country_code" "CN" "city" "Xi’an" "longitude" "108.93977" "latitude" "34.341574" "last_login" "1599639109" +HSET "user:356" "first_name" "Loria" "last_name" "Livett" "email" "llivett9v@apple.com" "gender" "female" "ip_address" "231.204.14.152" "country" "South Africa" "country_code" "ZA" "city" "Hennenman" "longitude" "27.0319884" "latitude" "-27.9715033" "last_login" "1573787804" +HSET "user:357" "first_name" "Elka" "last_name" "Essberger" "email" "eessberger9w@blogger.com" "gender" "female" "ip_address" "45.229.95.170" "country" "Azerbaijan" "country_code" "AZ" "city" "Sumqayıt" "longitude" "49.6317411" "latitude" "40.5854765" "last_login" "1580374224" +HSET "user:358" "first_name" "Dilly" "last_name" "Rakes" "email" "drakes9x@linkedin.com" "gender" "male" "ip_address" "144.54.19.185" "country" "Indonesia" "country_code" "ID" "city" "Sumberkenanga" "longitude" "108.4602464" "latitude" "-6.7543488" "last_login" "1579189477" +HSET "user:359" "first_name" "Ginger" "last_name" "Dundridge" "email" "gdundridge9y@dell.com" "gender" "male" "ip_address" "47.253.55.165" "country" "Indonesia" "country_code" "ID" "city" "Singajaya" "longitude" "107.8880075" "latitude" "-7.4908572" "last_login" "1580903342" +HSET "user:360" "first_name" "Lane" "last_name" "Aymes" "email" "laymes9z@kickstarter.com" "gender" "female" "ip_address" "195.186.231.168" "country" "Russia" "country_code" "RU" "city" "Blagoveshchenka" "longitude" "79.869589" "latitude" "52.8340622" "last_login" "1592041534" +HSET "user:361" "first_name" "Lilllie" "last_name" "Blaw" "email" "lblawa0@miibeian.gov.cn" "gender" "female" "ip_address" "205.162.166.55" "country" "Portugal" "country_code" "PT" "city" "São Pedro" "longitude" "-8.8576516" "latitude" "40.1271927" "last_login" "1572584594" +HSET "user:362" "first_name" "Lorenza" "last_name" "Olufsen" "email" "lolufsena1@spiegel.de" "gender" "female" "ip_address" "142.16.23.108" "country" "Indonesia" "country_code" "ID" "city" "Paseyan" "longitude" "111.639243" "latitude" "-6.8713485" "last_login" "1587709402" +HSET "user:363" "first_name" "Alphard" "last_name" "Atcherley" "email" "aatcherleya2@amazon.co.uk" "gender" "male" "ip_address" "32.183.18.82" "country" "Morocco" "country_code" "MA" "city" "Tifni" "longitude" "-10.1759285" "latitude" "29.3701124" "last_login" "1598296518" +HSET "user:364" "first_name" "Arman" "last_name" "Parbrook" "email" "aparbrooka3@mit.edu" "gender" "male" "ip_address" "131.60.252.221" "country" "China" "country_code" "CN" "city" "Meilong" "longitude" "121.407386" "latitude" "31.09913" "last_login" "1585176229" +HSET "user:365" "first_name" "Elwyn" "last_name" "Caldwall" "email" "ecaldwalla4@amazonaws.com" "gender" "male" "ip_address" "250.19.149.196" "country" "China" "country_code" "CN" "city" "Xinghuo" "longitude" "116.2398367" "latitude" "40.2023282" "last_login" "1591336957" +HSET "user:366" "first_name" "Audrie" "last_name" "Londing" "email" "alondinga5@nytimes.com" "gender" "female" "ip_address" "26.34.125.102" "country" "Indonesia" "country_code" "ID" "city" "Ketanggi" "longitude" "111.3396498" "latitude" "-6.7279241" "last_login" "1569217981" +HSET "user:367" "first_name" "Melli" "last_name" "Wloch" "email" "mwlocha6@myspace.com" "gender" "female" "ip_address" "62.105.158.165" "country" "China" "country_code" "CN" "city" "Jincheng" "longitude" "112.851831" "latitude" "35.490701" "last_login" "1596774281" +HSET "user:368" "first_name" "Mayor" "last_name" "Gillanders" "email" "mgillandersa7@feedburner.com" "gender" "male" "ip_address" "91.153.146.48" "country" "Portugal" "country_code" "PT" "city" "Lomba do Loução" "longitude" "-25.2384711" "latitude" "37.7574326" "last_login" "1570924484" +HSET "user:369" "first_name" "Park" "last_name" "Reilingen" "email" "preilingena8@ameblo.jp" "gender" "male" "ip_address" "30.153.246.131" "country" "Japan" "country_code" "JP" "city" "Ureshino" "longitude" "139.5223619" "latitude" "35.8559579" "last_login" "1569671917" +HSET "user:370" "first_name" "Spenser" "last_name" "Iacovini" "email" "siacovinia9@qq.com" "gender" "male" "ip_address" "6.178.216.214" "country" "Afghanistan" "country_code" "AF" "city" "Nayak" "longitude" "66.9511459" "latitude" "34.7345529" "last_login" "1593770077" +HSET "user:371" "first_name" "Carilyn" "last_name" "Van der Brugge" "email" "cvanderbruggeaa@dion.ne.jp" "gender" "female" "ip_address" "154.3.104.121" "country" "Pakistan" "country_code" "PK" "city" "Chakwāl" "longitude" "72.4228661" "latitude" "32.454801" "last_login" "1592516996" +HSET "user:372" "first_name" "Barnett" "last_name" "Castelletto" "email" "bcastellettoab@telegraph.co.uk" "gender" "male" "ip_address" "91.8.42.111" "country" "Dominican Republic" "country_code" "DO" "city" "Esperalvillo" "longitude" "-70.0347754" "latitude" "18.8121479" "last_login" "1589486535" +HSET "user:373" "first_name" "Carolus" "last_name" "Deny" "email" "cdenyac@dagondesign.com" "gender" "male" "ip_address" "196.172.1.248" "country" "Philippines" "country_code" "PH" "city" "Bagong Pagasa" "longitude" "120.9983837" "latitude" "14.5316764" "last_login" "1590318999" +HSET "user:374" "first_name" "Sauncho" "last_name" "Yorath" "email" "syorathad@vistaprint.com" "gender" "male" "ip_address" "97.32.24.117" "country" "China" "country_code" "CN" "city" "Wanxian" "longitude" "108.408661" "latitude" "30.807667" "last_login" "1596467753" +HSET "user:375" "first_name" "Dolley" "last_name" "McClymont" "email" "dmcclymontae@mashable.com" "gender" "female" "ip_address" "166.18.124.71" "country" "Somalia" "country_code" "SO" "city" "Oodweyne" "longitude" "45.0629902" "latitude" "9.4101982" "last_login" "1591420783" +HSET "user:376" "first_name" "Ase" "last_name" "Dorwood" "email" "adorwoodaf@bluehost.com" "gender" "male" "ip_address" "222.40.199.120" "country" "United States" "country_code" "US" "city" "Gainesville" "longitude" "-82.3723105" "latitude" "29.6793128" "last_login" "1574761860" +HSET "user:377" "first_name" "Lucie" "last_name" "Stoyles" "email" "lstoylesag@tamu.edu" "gender" "female" "ip_address" "124.201.122.93" "country" "Samoa" "country_code" "WS" "city" "Solosolo" "longitude" "-171.6425505" "latitude" "-13.876472" "last_login" "1569687135" +HSET "user:378" "first_name" "Johanna" "last_name" "Matityahu" "email" "jmatityahuah@behance.net" "gender" "female" "ip_address" "76.85.100.89" "country" "Japan" "country_code" "JP" "city" "Kajiki" "longitude" "130.670516" "latitude" "31.739255" "last_login" "1571177473" +HSET "user:379" "first_name" "Denni" "last_name" "Childerhouse" "email" "dchilderhouseai@ucla.edu" "gender" "female" "ip_address" "197.190.96.247" "country" "Mexico" "country_code" "MX" "city" "Fovissste" "longitude" "-99.1532952" "latitude" "19.4344475" "last_login" "1600288445" +HSET "user:380" "first_name" "Alejandro" "last_name" "Palliser" "email" "apalliseraj@canalblog.com" "gender" "male" "ip_address" "232.126.208.203" "country" "South Africa" "country_code" "ZA" "city" "Welkom" "longitude" "26.77027" "latitude" "-27.9699645" "last_login" "1571945332" +HSET "user:381" "first_name" "Jaquith" "last_name" "Gummer" "email" "jgummerak@slideshare.net" "gender" "female" "ip_address" "215.58.19.171" "country" "Philippines" "country_code" "PH" "city" "Marbel" "longitude" "124.9231052" "latitude" "7.1756111" "last_login" "1582854553" +HSET "user:382" "first_name" "Gianni" "last_name" "Reisenstein" "email" "greisensteinal@cyberchimps.com" "gender" "male" "ip_address" "210.119.143.215" "country" "China" "country_code" "CN" "city" "Hangkou" "longitude" "118.181531" "latitude" "30.070933" "last_login" "1569076305" +HSET "user:383" "first_name" "Veronique" "last_name" "Rhyme" "email" "vrhymeam@mapquest.com" "gender" "female" "ip_address" "166.104.247.99" "country" "Cyprus" "country_code" "CY" "city" "Meniko" "longitude" "33.1435877" "latitude" "35.1148773" "last_login" "1582049053" +HSET "user:384" "first_name" "Sibbie" "last_name" "Brymham" "email" "sbrymhaman@unicef.org" "gender" "female" "ip_address" "8.208.167.214" "country" "Greece" "country_code" "GR" "city" "Prínos" "longitude" "24.5772111" "latitude" "40.7408774" "last_login" "1581007916" +HSET "user:385" "first_name" "Tristan" "last_name" "Buxton" "email" "tbuxtonao@skyrock.com" "gender" "male" "ip_address" "115.244.59.230" "country" "China" "country_code" "CN" "city" "Henghe" "longitude" "121.507191" "latitude" "29.756501" "last_login" "1573269991" +HSET "user:386" "first_name" "Julio" "last_name" "Brownfield" "email" "jbrownfieldap@washington.edu" "gender" "male" "ip_address" "69.127.116.143" "country" "Ukraine" "country_code" "UA" "city" "Bolhrad" "longitude" "28.6143107" "latitude" "45.6838431" "last_login" "1587895922" +HSET "user:387" "first_name" "Falkner" "last_name" "Serjent" "email" "fserjentaq@paginegialle.it" "gender" "male" "ip_address" "253.129.167.29" "country" "Serbia" "country_code" "RS" "city" "Novi Sad" "longitude" "19.8335496" "latitude" "45.2671352" "last_login" "1574508102" +HSET "user:388" "first_name" "Cristin" "last_name" "Lapidus" "email" "clapidusar@plala.or.jp" "gender" "female" "ip_address" "103.125.84.9" "country" "China" "country_code" "CN" "city" "Bor Tungge" "longitude" "85.38086" "latitude" "44.055922" "last_login" "1591169976" +HSET "user:389" "first_name" "Emmet" "last_name" "O' Liddy" "email" "eoliddyas@mysql.com" "gender" "male" "ip_address" "96.99.97.78" "country" "Indonesia" "country_code" "ID" "city" "Gogosuket" "longitude" "112.2944" "latitude" "-8.0896" "last_login" "1575738024" +HSET "user:390" "first_name" "Gerardo" "last_name" "Shatford" "email" "gshatfordat@furl.net" "gender" "male" "ip_address" "241.137.232.129" "country" "South Africa" "country_code" "ZA" "city" "Bizana" "longitude" "29.85391" "latitude" "-30.85775" "last_login" "1579218736" +HSET "user:391" "first_name" "Angela" "last_name" "Leversuch" "email" "aleversuchau@infoseek.co.jp" "gender" "female" "ip_address" "136.155.200.40" "country" "Guatemala" "country_code" "GT" "city" "Yepocapa" "longitude" "-90.9550367" "latitude" "14.5019116" "last_login" "1598443174" +HSET "user:392" "first_name" "Weidar" "last_name" "Jerromes" "email" "wjerromesav@samsung.com" "gender" "male" "ip_address" "164.220.99.185" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Tasovčići" "longitude" "17.7192104" "latitude" "43.1097139" "last_login" "1587330867" +HSET "user:393" "first_name" "Bertie" "last_name" "Bruster" "email" "bbrusteraw@webeden.co.uk" "gender" "male" "ip_address" "215.106.11.250" "country" "China" "country_code" "CN" "city" "Pingdi" "longitude" "104.5991578" "latitude" "26.1050311" "last_login" "1597940752" +HSET "user:394" "first_name" "Magda" "last_name" "Perton" "email" "mpertonax@ft.com" "gender" "female" "ip_address" "94.189.255.108" "country" "China" "country_code" "CN" "city" "Jeminay" "longitude" "85.874096" "latitude" "47.443101" "last_login" "1591887936" +HSET "user:395" "first_name" "Sonnie" "last_name" "Pinnere" "email" "spinnereay@oracle.com" "gender" "female" "ip_address" "95.3.80.112" "country" "Palestinian Territory" "country_code" "PS" "city" "Rantīs" "longitude" "35.018973" "latitude" "32.029973" "last_login" "1594951132" +HSET "user:396" "first_name" "Jordan" "last_name" "Lohan" "email" "jlohanaz@constantcontact.com" "gender" "male" "ip_address" "136.214.143.150" "country" "Indonesia" "country_code" "ID" "city" "Asembagus" "longitude" "114.2152731" "latitude" "-7.8880228" "last_login" "1590683620" +HSET "user:397" "first_name" "Sergeant" "last_name" "Gocher" "email" "sgocherb0@businessinsider.com" "gender" "male" "ip_address" "2.21.109.13" "country" "China" "country_code" "CN" "city" "Xiadu" "longitude" "118.784812" "latitude" "30.921373" "last_login" "1572914667" +HSET "user:398" "first_name" "Huntington" "last_name" "Romeo" "email" "hromeob1@yahoo.co.jp" "gender" "male" "ip_address" "15.95.111.157" "country" "Sweden" "country_code" "SE" "city" "Ystad" "longitude" "13.8557599" "latitude" "55.4312324" "last_login" "1591670153" +HSET "user:399" "first_name" "Rayner" "last_name" "Stayt" "email" "rstaytb2@cbslocal.com" "gender" "male" "ip_address" "55.141.212.222" "country" "Argentina" "country_code" "AR" "city" "Aminga" "longitude" "-66.9476782" "latitude" "-28.8394041" "last_login" "1589062004" +HSET "user:400" "first_name" "Walton" "last_name" "Tucsell" "email" "wtucsellb3@economist.com" "gender" "male" "ip_address" "60.82.123.168" "country" "Sweden" "country_code" "SE" "city" "Örebro" "longitude" "15.2613386" "latitude" "59.2278562" "last_login" "1599652532" +HSET "user:401" "first_name" "Margret" "last_name" "Gelletly" "email" "mgelletlyb4@multiply.com" "gender" "female" "ip_address" "138.80.194.74" "country" "Philippines" "country_code" "PH" "city" "Kabalen" "longitude" "120.671684" "latitude" "15.04538" "last_login" "1590276551" +HSET "user:402" "first_name" "Bjorn" "last_name" "Jachimczak" "email" "bjachimczakb5@istockphoto.com" "gender" "male" "ip_address" "138.157.146.28" "country" "China" "country_code" "CN" "city" "Qing’an" "longitude" "127.507824" "latitude" "46.880102" "last_login" "1590326928" +HSET "user:403" "first_name" "Javier" "last_name" "Ody" "email" "jodyb6@list-manage.com" "gender" "male" "ip_address" "99.12.57.93" "country" "Indonesia" "country_code" "ID" "city" "Sedati" "longitude" "112.7986343" "latitude" "-7.3949134" "last_login" "1573477050" +HSET "user:404" "first_name" "Jody" "last_name" "Stanway" "email" "jstanwayb7@instagram.com" "gender" "male" "ip_address" "198.17.116.69" "country" "Sweden" "country_code" "SE" "city" "Vadstena" "longitude" "14.8914165" "latitude" "58.4405927" "last_login" "1597509837" +HSET "user:405" "first_name" "Dacia" "last_name" "Heber" "email" "dheberb8@live.com" "gender" "female" "ip_address" "164.145.148.131" "country" "Sweden" "country_code" "SE" "city" "Skänninge" "longitude" "15.1532963" "latitude" "58.4194701" "last_login" "1599340331" +HSET "user:406" "first_name" "Roselin" "last_name" "Thonason" "email" "rthonasonb9@desdev.cn" "gender" "female" "ip_address" "107.94.193.181" "country" "China" "country_code" "CN" "city" "Minle" "longitude" "100.812859" "latitude" "38.430793" "last_login" "1597449341" +HSET "user:407" "first_name" "Margalo" "last_name" "Boomes" "email" "mboomesba@dailymotion.com" "gender" "female" "ip_address" "245.62.60.80" "country" "Malaysia" "country_code" "MY" "city" "Kota Kinabalu" "longitude" "116.0761121" "latitude" "5.9840985" "last_login" "1581748419" +HSET "user:408" "first_name" "Moll" "last_name" "Mackin" "email" "mmackinbb@cnet.com" "gender" "female" "ip_address" "8.205.79.115" "country" "Vietnam" "country_code" "VN" "city" "Pho Duc" "longitude" "108.9739954" "latitude" "14.762796" "last_login" "1599586926" +HSET "user:409" "first_name" "Timmy" "last_name" "Norris" "email" "tnorrisbc@scribd.com" "gender" "male" "ip_address" "27.171.219.149" "country" "Uzbekistan" "country_code" "UZ" "city" "Shahrisabz Shahri" "longitude" "69.2817267" "latitude" "41.3047616" "last_login" "1580431470" +HSET "user:410" "first_name" "Simon" "last_name" "Queen" "email" "squeenbd@jugem.jp" "gender" "male" "ip_address" "177.33.240.180" "country" "Philippines" "country_code" "PH" "city" "Sagay" "longitude" "124.7445365" "latitude" "9.1249562" "last_login" "1569066140" +HSET "user:411" "first_name" "Tabatha" "last_name" "Gaddes" "email" "tgaddesbe@guardian.co.uk" "gender" "female" "ip_address" "5.176.242.120" "country" "Brazil" "country_code" "BR" "city" "Sabinópolis" "longitude" "-43.058341" "latitude" "-18.6248754" "last_login" "1581723839" +HSET "user:412" "first_name" "Bernete" "last_name" "Tranter" "email" "btranterbf@mysql.com" "gender" "female" "ip_address" "23.49.1.19" "country" "Italy" "country_code" "IT" "city" "Reggio Calabria" "longitude" "15.6383202" "latitude" "38.0823988" "last_login" "1588761839" +HSET "user:413" "first_name" "Suellen" "last_name" "Gueste" "email" "sguestebg@desdev.cn" "gender" "female" "ip_address" "139.151.32.108" "country" "Thailand" "country_code" "TH" "city" "Pathum Ratchawongsa" "longitude" "104.9361753" "latitude" "15.9005049" "last_login" "1590373120" +HSET "user:414" "first_name" "Tremayne" "last_name" "Di Giacomettino" "email" "tdigiacomettinobh@elegantthemes.com" "gender" "male" "ip_address" "5.157.234.70" "country" "Iran" "country_code" "IR" "city" "Bābol" "longitude" "52.6764543" "latitude" "36.5386629" "last_login" "1580611765" +HSET "user:415" "first_name" "Gorden" "last_name" "Perllman" "email" "gperllmanbi@issuu.com" "gender" "male" "ip_address" "255.0.245.239" "country" "Afghanistan" "country_code" "AF" "city" "Khūgyāṉī" "longitude" "70.1932084" "latitude" "34.2292129" "last_login" "1575739482" +HSET "user:416" "first_name" "Isahella" "last_name" "Locks" "email" "ilocksbj@ocn.ne.jp" "gender" "female" "ip_address" "1.100.133.64" "country" "Afghanistan" "country_code" "AF" "city" "Khānaqāh" "longitude" "69.53695" "latitude" "36.62587" "last_login" "1590595678" +HSET "user:417" "first_name" "Napoleon" "last_name" "Totman" "email" "ntotmanbk@parallels.com" "gender" "male" "ip_address" "15.30.77.218" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Kampene" "longitude" "26.6700737" "latitude" "-3.5943944" "last_login" "1592976153" +HSET "user:418" "first_name" "Emile" "last_name" "Fibbit" "email" "efibbitbl@yellowpages.com" "gender" "male" "ip_address" "209.170.29.178" "country" "China" "country_code" "CN" "city" "Qingshuihe" "longitude" "111.647609" "latitude" "39.921095" "last_login" "1575713378" +HSET "user:419" "first_name" "Tammara" "last_name" "Tomasi" "email" "ttomasibm@unblog.fr" "gender" "female" "ip_address" "170.105.232.93" "country" "Macedonia" "country_code" "MK" "city" "Čelopek" "longitude" "21.01333" "latitude" "41.93167" "last_login" "1570797318" +HSET "user:420" "first_name" "Halley" "last_name" "Mullett" "email" "hmullettbn@cdbaby.com" "gender" "female" "ip_address" "173.117.85.239" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Triệu Sơn" "longitude" "105.5708865" "latitude" "19.8512387" "last_login" "1584089643" +HSET "user:421" "first_name" "Verge" "last_name" "Ridsdell" "email" "vridsdellbo@illinois.edu" "gender" "male" "ip_address" "147.43.106.147" "country" "Poland" "country_code" "PL" "city" "Drohiczyn" "longitude" "22.6585778" "latitude" "52.4003253" "last_login" "1581135069" +HSET "user:422" "first_name" "Jonah" "last_name" "Dumbrall" "email" "jdumbrallbp@a8.net" "gender" "male" "ip_address" "20.245.253.170" "country" "Indonesia" "country_code" "ID" "city" "Kalijeruk" "longitude" "108.932395" "latitude" "-7.5699505" "last_login" "1596938697" +HSET "user:423" "first_name" "Jade" "last_name" "Giraldon" "email" "jgiraldonbq@sbwire.com" "gender" "female" "ip_address" "21.20.41.212" "country" "Philippines" "country_code" "PH" "city" "Camaligan" "longitude" "123.1689818" "latitude" "13.6193661" "last_login" "1580584013" +HSET "user:424" "first_name" "Marget" "last_name" "Tremeer" "email" "mtremeerbr@1688.com" "gender" "female" "ip_address" "45.130.178.100" "country" "United States" "country_code" "US" "city" "Orlando" "longitude" "-81.4828198" "latitude" "28.5107872" "last_login" "1578921748" +HSET "user:425" "first_name" "Myrah" "last_name" "Beverstock" "email" "mbeverstockbs@apache.org" "gender" "female" "ip_address" "124.16.157.217" "country" "China" "country_code" "CN" "city" "Doushan" "longitude" "112.837815" "latitude" "22.060541" "last_login" "1593854210" +HSET "user:426" "first_name" "Christyna" "last_name" "McCathie" "email" "cmccathiebt@biglobe.ne.jp" "gender" "female" "ip_address" "108.167.235.62" "country" "United States" "country_code" "US" "city" "El Paso" "longitude" "-106.43" "latitude" "31.77" "last_login" "1586405272" +HSET "user:427" "first_name" "Robin" "last_name" "Bremmell" "email" "rbremmellbu@ox.ac.uk" "gender" "female" "ip_address" "163.96.103.244" "country" "Philippines" "country_code" "PH" "city" "Calatrava" "longitude" "123.4845632" "latitude" "10.5922194" "last_login" "1574980922" +HSET "user:428" "first_name" "Lynn" "last_name" "Burd" "email" "lburdbv@miitbeian.gov.cn" "gender" "male" "ip_address" "242.231.197.139" "country" "Colombia" "country_code" "CO" "city" "Carmen de Viboral" "longitude" "-75.2803017" "latitude" "6.1205312" "last_login" "1579855083" +HSET "user:429" "first_name" "Alwyn" "last_name" "Geggus" "email" "ageggusbw@alibaba.com" "gender" "male" "ip_address" "34.123.215.233" "country" "China" "country_code" "CN" "city" "Pengchang" "longitude" "113.506437" "latitude" "30.263346" "last_login" "1597609950" +HSET "user:430" "first_name" "Constantia" "last_name" "Pile" "email" "cpilebx@amazon.co.uk" "gender" "female" "ip_address" "52.110.254.126" "country" "Ukraine" "country_code" "UA" "city" "Neresnytsya" "longitude" "23.7691119" "latitude" "48.1172816" "last_login" "1595079576" +HSET "user:431" "first_name" "Freddi" "last_name" "Winchcum" "email" "fwinchcumby@java.com" "gender" "female" "ip_address" "188.11.178.80" "country" "Poland" "country_code" "PL" "city" "Kęsowo" "longitude" "17.7161093" "latitude" "53.5585675" "last_login" "1595480883" +HSET "user:432" "first_name" "Blaine" "last_name" "Sommerville" "email" "bsommervillebz@altervista.org" "gender" "male" "ip_address" "141.37.108.246" "country" "China" "country_code" "CN" "city" "Huanggang" "longitude" "114.872199" "latitude" "30.453667" "last_login" "1588101196" +HSET "user:433" "first_name" "Sabina" "last_name" "Mackley" "email" "smackleyc0@facebook.com" "gender" "female" "ip_address" "29.2.206.163" "country" "Indonesia" "country_code" "ID" "city" "Talok" "longitude" "118.8" "latitude" "1.05" "last_login" "1589821295" +HSET "user:434" "first_name" "Sylas" "last_name" "Loidl" "email" "sloidlc1@adobe.com" "gender" "male" "ip_address" "112.181.252.97" "country" "Tanzania" "country_code" "TZ" "city" "Kasamwa" "longitude" "32.4212424" "latitude" "-2.8385304" "last_login" "1591851609" +HSET "user:435" "first_name" "Kareem" "last_name" "Boothman" "email" "kboothmanc2@elegantthemes.com" "gender" "male" "ip_address" "172.153.159.128" "country" "Bulgaria" "country_code" "BG" "city" "Karlovo" "longitude" "24.8348261" "latitude" "42.5459635" "last_login" "1592005276" +HSET "user:436" "first_name" "Coralie" "last_name" "Duffie" "email" "cduffiec3@cargocollective.com" "gender" "female" "ip_address" "234.33.181.168" "country" "China" "country_code" "CN" "city" "Haozigang" "longitude" "112.073961" "latitude" "29.265944" "last_login" "1584030477" +HSET "user:437" "first_name" "Henrik" "last_name" "Cullnean" "email" "hcullneanc4@jimdo.com" "gender" "male" "ip_address" "119.175.212.250" "country" "Portugal" "country_code" "PT" "city" "São Domingos de Rana" "longitude" "-9.3381698" "latitude" "38.7025085" "last_login" "1594576562" +HSET "user:438" "first_name" "Bronson" "last_name" "Avraham" "email" "bavrahamc5@360.cn" "gender" "male" "ip_address" "199.85.223.196" "country" "Argentina" "country_code" "AR" "city" "Saladas" "longitude" "-58.7832105" "latitude" "-27.4413635" "last_login" "1576982920" +HSET "user:439" "first_name" "Artie" "last_name" "Toynbee" "email" "atoynbeec6@spiegel.de" "gender" "male" "ip_address" "195.93.6.253" "country" "China" "country_code" "CN" "city" "Xinghua" "longitude" "119.85254" "latitude" "32.910459" "last_login" "1580816581" +HSET "user:440" "first_name" "Bruce" "last_name" "Trenfield" "email" "btrenfieldc7@rambler.ru" "gender" "male" "ip_address" "14.119.137.94" "country" "Thailand" "country_code" "TH" "city" "Yarang" "longitude" "101.3090737" "latitude" "6.6930902" "last_login" "1591203142" +HSET "user:441" "first_name" "Paulina" "last_name" "Stidston" "email" "pstidstonc8@google.es" "gender" "female" "ip_address" "215.99.173.122" "country" "Poland" "country_code" "PL" "city" "Regimin" "longitude" "20.5544716" "latitude" "52.9434371" "last_login" "1584612491" +HSET "user:442" "first_name" "Paxton" "last_name" "Westlake" "email" "pwestlakec9@dagondesign.com" "gender" "male" "ip_address" "55.194.131.130" "country" "Philippines" "country_code" "PH" "city" "Pantubig" "longitude" "120.9518182" "latitude" "14.967193" "last_login" "1569613338" +HSET "user:443" "first_name" "Yoshi" "last_name" "O'Cullen" "email" "yocullenca@nifty.com" "gender" "female" "ip_address" "106.120.156.211" "country" "Armenia" "country_code" "AM" "city" "Yeghegnut" "longitude" "45.3575191" "latitude" "39.8726158" "last_login" "1586973231" +HSET "user:444" "first_name" "Mag" "last_name" "Lassetter" "email" "mlassettercb@telegraph.co.uk" "gender" "female" "ip_address" "150.151.121.112" "country" "South Korea" "country_code" "KR" "city" "Sintansin" "longitude" "127.43111" "latitude" "36.45361" "last_login" "1574654532" +HSET "user:445" "first_name" "Mellisa" "last_name" "Stag" "email" "mstagcc@people.com.cn" "gender" "female" "ip_address" "127.43.62.154" "country" "China" "country_code" "CN" "city" "Ji’an" "longitude" "114.964696" "latitude" "27.087637" "last_login" "1595570341" +HSET "user:446" "first_name" "Jayme" "last_name" "Yakunikov" "email" "jyakunikovcd@cdbaby.com" "gender" "male" "ip_address" "105.190.40.156" "country" "China" "country_code" "CN" "city" "Niu" "longitude" "108.3451423" "latitude" "22.8157128" "last_login" "1598338683" +HSET "user:447" "first_name" "Quent" "last_name" "Calbert" "email" "qcalbertce@prweb.com" "gender" "male" "ip_address" "208.165.241.63" "country" "China" "country_code" "CN" "city" "Zhuangke" "longitude" "122.967328" "latitude" "39.680811" "last_login" "1581587204" +HSET "user:448" "first_name" "Fidole" "last_name" "Rackley" "email" "frackleycf@prlog.org" "gender" "male" "ip_address" "128.193.1.208" "country" "Philippines" "country_code" "PH" "city" "Salvacion" "longitude" "123.61667" "latitude" "13.06667" "last_login" "1569004768" +HSET "user:449" "first_name" "Vale" "last_name" "Hayer" "email" "vhayercg@is.gd" "gender" "male" "ip_address" "103.97.50.181" "country" "Tunisia" "country_code" "TN" "city" "Zouila" "longitude" "10.9882593" "latitude" "35.4885986" "last_login" "1594463201" +HSET "user:450" "first_name" "Maddie" "last_name" "Curbishley" "email" "mcurbishleych@toplist.cz" "gender" "female" "ip_address" "208.163.163.46" "country" "China" "country_code" "CN" "city" "Shengshan" "longitude" "121.329456" "latitude" "30.233195" "last_login" "1580539054" +HSET "user:451" "first_name" "Bel" "last_name" "Aucott" "email" "baucottci@cnbc.com" "gender" "female" "ip_address" "105.107.199.168" "country" "Czech Republic" "country_code" "CZ" "city" "Ptení" "longitude" "16.9405351" "latitude" "49.5172959" "last_login" "1595493906" +HSET "user:452" "first_name" "Glen" "last_name" "Lipyeat" "email" "glipyeatcj@cisco.com" "gender" "male" "ip_address" "169.222.15.241" "country" "Turkey" "country_code" "TR" "city" "Merkezköy" "longitude" "40.0092505" "latitude" "40.8321934" "last_login" "1576956161" +HSET "user:453" "first_name" "Hillard" "last_name" "Harnetty" "email" "hharnettyck@google.cn" "gender" "male" "ip_address" "208.187.17.69" "country" "Tajikistan" "country_code" "TJ" "city" "Chubek" "longitude" "69.636351" "latitude" "37.6254329" "last_login" "1592251514" +HSET "user:454" "first_name" "Erasmus" "last_name" "Orviss" "email" "eorvisscl@hhs.gov" "gender" "male" "ip_address" "232.236.187.227" "country" "China" "country_code" "CN" "city" "Bailu" "longitude" "120.1672735" "latitude" "30.2733296" "last_login" "1589788655" +HSET "user:455" "first_name" "Jodi" "last_name" "Scoterbosh" "email" "jscoterboshcm@netlog.com" "gender" "female" "ip_address" "170.179.23.237" "country" "Angola" "country_code" "AO" "city" "Uíge" "longitude" "15.0552391" "latitude" "-7.6092767" "last_login" "1592694880" +HSET "user:456" "first_name" "Shirl" "last_name" "Pitman" "email" "spitmancn@163.com" "gender" "female" "ip_address" "79.82.236.25" "country" "Honduras" "country_code" "HN" "city" "Puerto Castilla" "longitude" "-85.9585544" "latitude" "16.0173268" "last_login" "1569835499" +HSET "user:457" "first_name" "Darrel" "last_name" "Bestiman" "email" "dbestimanco@photobucket.com" "gender" "male" "ip_address" "130.245.1.154" "country" "Indonesia" "country_code" "ID" "city" "Ciparay" "longitude" "107.7132895" "latitude" "-7.0401751" "last_login" "1586113113" +HSET "user:458" "first_name" "Jacky" "last_name" "Keddle" "email" "jkeddlecp@unesco.org" "gender" "female" "ip_address" "217.185.201.231" "country" "Peru" "country_code" "PE" "city" "Quinuabamba" "longitude" "-72.6919814" "latitude" "-12.868355" "last_login" "1576323940" +HSET "user:459" "first_name" "Calvin" "last_name" "Foucar" "email" "cfoucarcq@google.pl" "gender" "male" "ip_address" "61.40.59.7" "country" "Philippines" "country_code" "PH" "city" "Manacsac" "longitude" "120.7914484" "latitude" "15.5946516" "last_login" "1575376610" +HSET "user:460" "first_name" "Gordie" "last_name" "Ilett" "email" "gilettcr@twitpic.com" "gender" "male" "ip_address" "221.53.77.128" "country" "Cuba" "country_code" "CU" "city" "Sagua la Grande" "longitude" "-80.0702555" "latitude" "22.8037709" "last_login" "1577381918" +HSET "user:461" "first_name" "Gretel" "last_name" "Atthow" "email" "gatthowcs@oakley.com" "gender" "female" "ip_address" "121.132.125.154" "country" "Vietnam" "country_code" "VN" "city" "Hữu Lũng" "longitude" "106.2992912" "latitude" "21.5659824" "last_login" "1575330266" +HSET "user:462" "first_name" "Drona" "last_name" "Gilroy" "email" "dgilroyct@hud.gov" "gender" "female" "ip_address" "115.243.126.46" "country" "Ecuador" "country_code" "EC" "city" "Playas" "longitude" "-80.3895886" "latitude" "-2.6284683" "last_login" "1600209102" +HSET "user:463" "first_name" "Jillian" "last_name" "Cheves" "email" "jchevescu@shareasale.com" "gender" "female" "ip_address" "132.162.186.87" "country" "Cambodia" "country_code" "KH" "city" "Ban Lŭng" "longitude" "107.0303221" "latitude" "13.7060822" "last_login" "1588980610" +HSET "user:464" "first_name" "Ardys" "last_name" "Abramowitch" "email" "aabramowitchcv@bbc.co.uk" "gender" "female" "ip_address" "85.153.145.132" "country" "Nigeria" "country_code" "NG" "city" "Idi Iroko" "longitude" "2.7530936" "latitude" "6.6401727" "last_login" "1575082687" +HSET "user:465" "first_name" "Guss" "last_name" "Wolfendale" "email" "gwolfendalecw@samsung.com" "gender" "male" "ip_address" "66.220.148.6" "country" "Brazil" "country_code" "BR" "city" "Fonte Boa" "longitude" "-66.1415263" "latitude" "-2.4681009" "last_login" "1593704789" +HSET "user:466" "first_name" "Sarah" "last_name" "Shilladay" "email" "sshilladaycx@paginegialle.it" "gender" "female" "ip_address" "200.14.121.135" "country" "Brazil" "country_code" "BR" "city" "Monte Carmelo" "longitude" "-47.4916674" "latitude" "-18.7307117" "last_login" "1580454882" +HSET "user:467" "first_name" "Hollie" "last_name" "Croke" "email" "hcrokecy@guardian.co.uk" "gender" "female" "ip_address" "113.133.30.122" "country" "Indonesia" "country_code" "ID" "city" "Krajan" "longitude" "111.6556388" "latitude" "-7.5450262" "last_login" "1586641422" +HSET "user:468" "first_name" "Caspar" "last_name" "Eudall" "email" "ceudallcz@infoseek.co.jp" "gender" "male" "ip_address" "144.193.139.171" "country" "Indonesia" "country_code" "ID" "city" "Tenjolaya" "longitude" "106.7057733" "latitude" "-6.6572023" "last_login" "1590284181" +HSET "user:469" "first_name" "Finn" "last_name" "Rames" "email" "framesd0@yahoo.co.jp" "gender" "male" "ip_address" "158.159.81.35" "country" "Czech Republic" "country_code" "CZ" "city" "Přibyslav" "longitude" "16.1685899" "latitude" "50.3736428" "last_login" "1578265767" +HSET "user:470" "first_name" "Ringo" "last_name" "Poate" "email" "rpoated1@dropbox.com" "gender" "male" "ip_address" "11.179.143.149" "country" "China" "country_code" "CN" "city" "Maying" "longitude" "115.726317" "latitude" "38.235041" "last_login" "1591599481" +HSET "user:471" "first_name" "Ruggiero" "last_name" "Aaron" "email" "raarond2@youtu.be" "gender" "male" "ip_address" "59.173.24.193" "country" "Ecuador" "country_code" "EC" "city" "Chone" "longitude" "-80.109357" "latitude" "-0.7140022" "last_login" "1582615005" +HSET "user:472" "first_name" "Kile" "last_name" "Creber" "email" "kcreberd3@bandcamp.com" "gender" "male" "ip_address" "57.13.163.136" "country" "Macedonia" "country_code" "MK" "city" "Delcevo" "longitude" "22.7708273" "latitude" "41.96571" "last_login" "1583454581" +HSET "user:473" "first_name" "Sander" "last_name" "O'Noland" "email" "sonolandd4@thetimes.co.uk" "gender" "male" "ip_address" "249.141.255.41" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Teslić" "longitude" "17.8595342" "latitude" "44.6063199" "last_login" "1599586679" +HSET "user:474" "first_name" "Con" "last_name" "McNysche" "email" "cmcnysched5@reference.com" "gender" "male" "ip_address" "50.151.149.100" "country" "Canada" "country_code" "CA" "city" "Orangeville" "longitude" "-80.09967" "latitude" "43.9168" "last_login" "1583630614" +HSET "user:475" "first_name" "Benton" "last_name" "FitzGibbon" "email" "bfitzgibbond6@sakura.ne.jp" "gender" "male" "ip_address" "116.252.122.227" "country" "Bolivia" "country_code" "BO" "city" "Potolo" "longitude" "-65.5366243" "latitude" "-19.0153937" "last_login" "1575337717" +HSET "user:476" "first_name" "Layton" "last_name" "Crone" "email" "lcroned7@wiley.com" "gender" "male" "ip_address" "212.35.75.41" "country" "China" "country_code" "CN" "city" "Qiaotou" "longitude" "120.482198" "latitude" "28.168408" "last_login" "1580386368" +HSET "user:477" "first_name" "Norri" "last_name" "Noot" "email" "nnootd8@mediafire.com" "gender" "female" "ip_address" "150.164.65.166" "country" "Sweden" "country_code" "SE" "city" "Solna" "longitude" "17.9863038" "latitude" "59.3593609" "last_login" "1572469093" +HSET "user:478" "first_name" "Nealson" "last_name" "Deerr" "email" "ndeerrd9@dot.gov" "gender" "male" "ip_address" "165.233.79.58" "country" "China" "country_code" "CN" "city" "Shaxi" "longitude" "99.850365" "latitude" "26.312444" "last_login" "1590534326" +HSET "user:479" "first_name" "Andrus" "last_name" "MacFarland" "email" "amacfarlandda@miibeian.gov.cn" "gender" "male" "ip_address" "102.79.70.209" "country" "China" "country_code" "CN" "city" "Caomiao" "longitude" "115.680442" "latitude" "34.059263" "last_login" "1579308746" +HSET "user:480" "first_name" "Clarice" "last_name" "Burland" "email" "cburlanddb@imgur.com" "gender" "female" "ip_address" "166.209.208.226" "country" "Brazil" "country_code" "BR" "city" "Caçapava" "longitude" "-45.6964547" "latitude" "-23.0939881" "last_login" "1579229342" +HSET "user:481" "first_name" "Davey" "last_name" "Linskey" "email" "dlinskeydc@wp.com" "gender" "male" "ip_address" "231.157.231.6" "country" "Indonesia" "country_code" "ID" "city" "Kaduengang" "longitude" "106.0669571" "latitude" "-6.2696101" "last_login" "1593531065" +HSET "user:482" "first_name" "Chrissie" "last_name" "Blown" "email" "cblowndd@mayoclinic.com" "gender" "female" "ip_address" "223.229.55.66" "country" "Russia" "country_code" "RU" "city" "Rzhev" "longitude" "34.3028279" "latitude" "56.2621893" "last_login" "1584988259" +HSET "user:483" "first_name" "Luther" "last_name" "Dohr" "email" "ldohrde@blogger.com" "gender" "male" "ip_address" "68.125.111.154" "country" "Indonesia" "country_code" "ID" "city" "Randusari" "longitude" "110.4098237" "latitude" "-6.9899077" "last_login" "1584449127" +HSET "user:484" "first_name" "Curran" "last_name" "Monteaux" "email" "cmonteauxdf@dot.gov" "gender" "male" "ip_address" "192.102.31.223" "country" "Indonesia" "country_code" "ID" "city" "Kandang Timur" "longitude" "112.907402" "latitude" "-2.389643" "last_login" "1597912093" +HSET "user:485" "first_name" "Raynard" "last_name" "Spavins" "email" "rspavinsdg@shareasale.com" "gender" "male" "ip_address" "12.154.198.175" "country" "United States" "country_code" "US" "city" "Philadelphia" "longitude" "-75.145782" "latitude" "40.0397682" "last_login" "1570076060" +HSET "user:486" "first_name" "Michelle" "last_name" "Taffurelli" "email" "mtaffurellidh@goodreads.com" "gender" "female" "ip_address" "247.116.147.80" "country" "Finland" "country_code" "FI" "city" "Outokumpu" "longitude" "23.0832748" "latitude" "63.8532929" "last_login" "1588000396" +HSET "user:487" "first_name" "Samara" "last_name" "Paulton" "email" "spaultondi@usnews.com" "gender" "female" "ip_address" "121.159.37.205" "country" "Syria" "country_code" "SY" "city" "Subaykhān" "longitude" "40.6016766" "latitude" "34.859175" "last_login" "1576170943" +HSET "user:488" "first_name" "Allys" "last_name" "Klimkin" "email" "aklimkindj@yellowbook.com" "gender" "female" "ip_address" "47.29.3.64" "country" "Kenya" "country_code" "KE" "city" "Kipini" "longitude" "40.529246" "latitude" "-2.5265605" "last_login" "1595864205" +HSET "user:489" "first_name" "Cassie" "last_name" "Culross" "email" "cculrossdk@berkeley.edu" "gender" "female" "ip_address" "252.68.71.248" "country" "China" "country_code" "CN" "city" "Xiagong" "longitude" "100.222137" "latitude" "29.623319" "last_login" "1598807132" +HSET "user:490" "first_name" "Gannon" "last_name" "Hobson" "email" "ghobsondl@youtube.com" "gender" "male" "ip_address" "79.42.166.78" "country" "Indonesia" "country_code" "ID" "city" "Maguwon" "longitude" "111.3769" "latitude" "-6.9661" "last_login" "1591312363" +HSET "user:491" "first_name" "Kerrin" "last_name" "Shrimpling" "email" "kshrimplingdm@youtube.com" "gender" "female" "ip_address" "145.30.159.59" "country" "Sweden" "country_code" "SE" "city" "Höganäs" "longitude" "12.5789091" "latitude" "56.1947971" "last_login" "1597507053" +HSET "user:492" "first_name" "Agace" "last_name" "Sieghard" "email" "asiegharddn@histats.com" "gender" "female" "ip_address" "111.19.207.213" "country" "Russia" "country_code" "RU" "city" "Tolstoy-Yurt" "longitude" "45.7756846" "latitude" "43.446712" "last_login" "1578745259" +HSET "user:493" "first_name" "Bertram" "last_name" "Vertigan" "email" "bvertigando@bigcartel.com" "gender" "male" "ip_address" "32.71.190.125" "country" "Tanzania" "country_code" "TZ" "city" "Mvomero" "longitude" "38.693748" "latitude" "-6.235617" "last_login" "1576406233" +HSET "user:494" "first_name" "Robbyn" "last_name" "Cremin" "email" "rcremindp@go.com" "gender" "female" "ip_address" "71.199.92.55" "country" "China" "country_code" "CN" "city" "Laoshawan" "longitude" "85.784329" "latitude" "44.639079" "last_login" "1590432919" +HSET "user:495" "first_name" "Red" "last_name" "Bowyer" "email" "rbowyerdq@admin.ch" "gender" "male" "ip_address" "14.138.33.248" "country" "China" "country_code" "CN" "city" "Zhaike" "longitude" "106.433445" "latitude" "36.292333" "last_login" "1584278673" +HSET "user:496" "first_name" "Howey" "last_name" "Congdon" "email" "hcongdondr@psu.edu" "gender" "male" "ip_address" "181.254.240.82" "country" "France" "country_code" "FR" "city" "Colomiers" "longitude" "1.3342086" "latitude" "43.6036545" "last_login" "1570830117" +HSET "user:497" "first_name" "Anastasie" "last_name" "Fernier" "email" "afernierds@hibu.com" "gender" "female" "ip_address" "197.69.248.144" "country" "France" "country_code" "FR" "city" "Bondoufle" "longitude" "2.406265" "latitude" "48.6169664" "last_login" "1595716220" +HSET "user:498" "first_name" "Ab" "last_name" "Claibourn" "email" "aclaibourndt@addtoany.com" "gender" "male" "ip_address" "138.3.198.62" "country" "China" "country_code" "CN" "city" "Shipu" "longitude" "121.931606" "latitude" "29.202542" "last_login" "1585641215" +HSET "user:499" "first_name" "Brose" "last_name" "Glasner" "email" "bglasnerdu@ox.ac.uk" "gender" "male" "ip_address" "251.224.245.204" "country" "Yemen" "country_code" "YE" "city" "Al ‘Aqabah" "longitude" "49.35" "latitude" "15.016667" "last_login" "1596686158" +HSET "user:500" "first_name" "Rycca" "last_name" "Von Welldun" "email" "rvonwelldundv@meetup.com" "gender" "female" "ip_address" "247.140.214.145" "country" "Canada" "country_code" "CA" "city" "Vulcan" "longitude" "-113.25189" "latitude" "50.40008" "last_login" "1578504680" +HSET "user:501" "first_name" "Marcel" "last_name" "Rehm" "email" "mrehmdw@bravesites.com" "gender" "male" "ip_address" "231.192.20.219" "country" "Czech Republic" "country_code" "CZ" "city" "Čerčany" "longitude" "14.7029932" "latitude" "49.8529322" "last_login" "1595613661" +HSET "user:502" "first_name" "Carolee" "last_name" "Darco" "email" "cdarcodx@omniture.com" "gender" "female" "ip_address" "8.26.19.34" "country" "Cuba" "country_code" "CU" "city" "Guantánamo" "longitude" "-75.2128996" "latitude" "20.1400094" "last_login" "1584943472" +HSET "user:503" "first_name" "Yasmeen" "last_name" "Baldrey" "email" "ybaldreydy@vkontakte.ru" "gender" "female" "ip_address" "100.4.129.249" "country" "Ireland" "country_code" "IE" "city" "Crumlin" "longitude" "-6.3048641" "latitude" "53.3284298" "last_login" "1578023014" +HSET "user:504" "first_name" "Juli" "last_name" "Furnival" "email" "jfurnivaldz@bing.com" "gender" "female" "ip_address" "188.169.61.131" "country" "Panama" "country_code" "PA" "city" "El Caño" "longitude" "-80.5327324" "latitude" "8.4462028" "last_login" "1573734340" +HSET "user:505" "first_name" "Yorker" "last_name" "Ficken" "email" "yfickene0@last.fm" "gender" "male" "ip_address" "233.208.249.0" "country" "Poland" "country_code" "PL" "city" "Szynwałd" "longitude" "21.124684" "latitude" "49.966003" "last_login" "1569608779" +HSET "user:506" "first_name" "Gasper" "last_name" "Denial" "email" "gdeniale1@va.gov" "gender" "male" "ip_address" "76.234.87.16" "country" "China" "country_code" "CN" "city" "Qindu" "longitude" "108.706272" "latitude" "34.329567" "last_login" "1571468784" +HSET "user:507" "first_name" "Ebony" "last_name" "Hawken" "email" "ehawkene2@jalbum.net" "gender" "female" "ip_address" "189.76.99.244" "country" "Russia" "country_code" "RU" "city" "Rozhdestveno" "longitude" "37.5438564" "latitude" "54.7288441" "last_login" "1593338721" +HSET "user:508" "first_name" "Gabey" "last_name" "Pellman" "email" "gpellmane3@arstechnica.com" "gender" "female" "ip_address" "250.66.102.64" "country" "Russia" "country_code" "RU" "city" "Kaltan" "longitude" "37.6003808" "latitude" "55.7813005" "last_login" "1592301714" +HSET "user:509" "first_name" "Wilma" "last_name" "Chettle" "email" "wchettlee4@taobao.com" "gender" "female" "ip_address" "148.190.147.151" "country" "Russia" "country_code" "RU" "city" "Spassk" "longitude" "133.2798776" "latitude" "44.574779" "last_login" "1586942596" +HSET "user:510" "first_name" "Fin" "last_name" "Cubbini" "email" "fcubbinie5@fotki.com" "gender" "male" "ip_address" "152.67.62.3" "country" "Afghanistan" "country_code" "AF" "city" "Qarchī Gak" "longitude" "66.7784206" "latitude" "37.0259658" "last_login" "1595342155" +HSET "user:511" "first_name" "Bordie" "last_name" "Napthine" "email" "bnapthinee6@wikia.com" "gender" "male" "ip_address" "11.97.125.99" "country" "Poland" "country_code" "PL" "city" "Wyszków" "longitude" "21.458395" "latitude" "52.5928523" "last_login" "1577220858" +HSET "user:512" "first_name" "Hillier" "last_name" "Rief" "email" "hriefe7@google.ru" "gender" "male" "ip_address" "209.233.218.92" "country" "Indonesia" "country_code" "ID" "city" "Jembayan Hitam" "longitude" "106.8679827" "latitude" "-6.2176613" "last_login" "1571919688" +HSET "user:513" "first_name" "Angel" "last_name" "Land" "email" "alande8@mapquest.com" "gender" "male" "ip_address" "95.217.227.162" "country" "China" "country_code" "CN" "city" "Ganpu" "longitude" "120.855089" "latitude" "30.397162" "last_login" "1595224505" +HSET "user:514" "first_name" "Aurea" "last_name" "McCullagh" "email" "amccullaghe9@businesswire.com" "gender" "female" "ip_address" "76.103.33.84" "country" "Albania" "country_code" "AL" "city" "Luftinjë" "longitude" "19.9682943" "latitude" "40.4189904" "last_login" "1589861043" +HSET "user:515" "first_name" "Justinn" "last_name" "Wadhams" "email" "jwadhamsea@kickstarter.com" "gender" "female" "ip_address" "137.207.25.99" "country" "Vietnam" "country_code" "VN" "city" "Tân Châu" "longitude" "105.1960795" "latitude" "10.8026827" "last_login" "1583006402" +HSET "user:516" "first_name" "Glenda" "last_name" "Jemmison" "email" "gjemmisoneb@angelfire.com" "gender" "female" "ip_address" "92.97.209.99" "country" "China" "country_code" "CN" "city" "Yedun" "longitude" "118.146114" "latitude" "26.905819" "last_login" "1586268571" +HSET "user:517" "first_name" "Giacopo" "last_name" "Cardenas" "email" "gcardenasec@dyndns.org" "gender" "male" "ip_address" "233.242.67.90" "country" "United States" "country_code" "US" "city" "Staten Island" "longitude" "-74.0711359" "latitude" "40.5944059" "last_login" "1598591620" +HSET "user:518" "first_name" "Roxanne" "last_name" "Skipworth" "email" "rskipworthed@jalbum.net" "gender" "female" "ip_address" "199.37.180.89" "country" "Portugal" "country_code" "PT" "city" "Safara" "longitude" "-7.2176902" "latitude" "38.111851" "last_login" "1590157449" +HSET "user:519" "first_name" "Monty" "last_name" "Begent" "email" "mbegentee@opensource.org" "gender" "male" "ip_address" "102.76.103.94" "country" "Djibouti" "country_code" "DJ" "city" "'Ali Sabieh" "longitude" "42.7124984" "latitude" "11.1491947" "last_login" "1572976483" +HSET "user:520" "first_name" "Noe" "last_name" "Iannuzzelli" "email" "niannuzzellief@sfgate.com" "gender" "male" "ip_address" "165.76.52.7" "country" "Albania" "country_code" "AL" "city" "Vukatanë" "longitude" "19.547883" "latitude" "42.0256691" "last_login" "1587876574" +HSET "user:521" "first_name" "Bidget" "last_name" "Goncaves" "email" "bgoncaveseg@noaa.gov" "gender" "female" "ip_address" "219.204.41.56" "country" "Portugal" "country_code" "PT" "city" "Vale de Touros" "longitude" "-8.923424" "latitude" "38.5866475" "last_login" "1587946805" +HSET "user:522" "first_name" "Edwina" "last_name" "Campo" "email" "ecampoeh@prlog.org" "gender" "female" "ip_address" "45.158.231.112" "country" "China" "country_code" "CN" "city" "Longbo" "longitude" "118.8310811" "latitude" "24.9848125" "last_login" "1585026789" +HSET "user:523" "first_name" "Araldo" "last_name" "Divall" "email" "adivallei@posterous.com" "gender" "male" "ip_address" "132.210.197.135" "country" "Germany" "country_code" "DE" "city" "Remscheid" "longitude" "7.2822788" "latitude" "51.1730117" "last_login" "1586020364" +HSET "user:524" "first_name" "Alonzo" "last_name" "Shepheard" "email" "ashepheardej@dmoz.org" "gender" "male" "ip_address" "163.77.168.30" "country" "Ukraine" "country_code" "UA" "city" "Velyka Bahachka" "longitude" "33.730793" "latitude" "49.7888028" "last_login" "1571913493" +HSET "user:525" "first_name" "Koral" "last_name" "Nutter" "email" "knutterek@github.io" "gender" "female" "ip_address" "195.101.17.50" "country" "Czech Republic" "country_code" "CZ" "city" "Křížová" "longitude" "17.5359489" "latitude" "50.1341084" "last_login" "1598455534" +HSET "user:526" "first_name" "Salome" "last_name" "Inglesant" "email" "singlesantel@smugmug.com" "gender" "female" "ip_address" "37.92.135.42" "country" "Indonesia" "country_code" "ID" "city" "Buka" "longitude" "115.1957203" "latitude" "-8.681402" "last_login" "1579660792" +HSET "user:527" "first_name" "Peadar" "last_name" "Gladwin" "email" "pgladwinem@soundcloud.com" "gender" "male" "ip_address" "219.244.244.174" "country" "Brazil" "country_code" "BR" "city" "Sousa" "longitude" "-38.2314566" "latitude" "-6.7519382" "last_login" "1575021460" +HSET "user:528" "first_name" "Sherrie" "last_name" "Paternoster" "email" "spaternosteren@sakura.ne.jp" "gender" "female" "ip_address" "26.159.93.210" "country" "Sweden" "country_code" "SE" "city" "Skellefteå" "longitude" "20.9709123" "latitude" "64.7605411" "last_login" "1584795164" +HSET "user:529" "first_name" "Stacy" "last_name" "O'Dwyer" "email" "sodwyereo@mit.edu" "gender" "male" "ip_address" "224.223.241.166" "country" "Argentina" "country_code" "AR" "city" "Jesús María" "longitude" "-64.1467066" "latitude" "-31.4149049" "last_login" "1588998489" +HSET "user:530" "first_name" "Adrian" "last_name" "Gidman" "email" "agidmanep@vkontakte.ru" "gender" "female" "ip_address" "157.4.154.98" "country" "Philippines" "country_code" "PH" "city" "Matalam" "longitude" "124.9011398" "latitude" "7.0849817" "last_login" "1592618436" +HSET "user:531" "first_name" "Flory" "last_name" "Dainty" "email" "fdaintyeq@arstechnica.com" "gender" "male" "ip_address" "202.87.170.64" "country" "Russia" "country_code" "RU" "city" "Naurskaya" "longitude" "45.3106104" "latitude" "43.6522553" "last_login" "1570278646" +HSET "user:532" "first_name" "Kaja" "last_name" "Etches" "email" "ketcheser@nationalgeographic.com" "gender" "female" "ip_address" "156.169.231.39" "country" "Yemen" "country_code" "YE" "city" "Ḩadādah" "longitude" "44.27461" "latitude" "13.17535" "last_login" "1583821942" +HSET "user:533" "first_name" "Mella" "last_name" "Halpin" "email" "mhalpines@guardian.co.uk" "gender" "female" "ip_address" "118.214.39.226" "country" "Greece" "country_code" "GR" "city" "Marína" "longitude" "22.1007382" "latitude" "40.6919067" "last_login" "1594484999" +HSET "user:534" "first_name" "Tarah" "last_name" "Cobby" "email" "tcobbyet@wikia.com" "gender" "female" "ip_address" "36.155.231.140" "country" "Russia" "country_code" "RU" "city" "Zemlyansk" "longitude" "38.7334" "latitude" "51.9041" "last_login" "1568593473" +HSET "user:535" "first_name" "Cherye" "last_name" "Brooks" "email" "cbrookseu@fc2.com" "gender" "female" "ip_address" "210.115.20.248" "country" "China" "country_code" "CN" "city" "Zhanghuban" "longitude" "118.502373" "latitude" "26.393274" "last_login" "1600130016" +HSET "user:536" "first_name" "Marris" "last_name" "Niland" "email" "mnilandev@wix.com" "gender" "female" "ip_address" "204.35.41.239" "country" "Uganda" "country_code" "UG" "city" "Fort Portal" "longitude" "30.2801166" "latitude" "0.6546257" "last_login" "1578990667" +HSET "user:537" "first_name" "Elvyn" "last_name" "Bilfoot" "email" "ebilfootew@ovh.net" "gender" "male" "ip_address" "244.78.82.30" "country" "Serbia" "country_code" "RS" "city" "Priboj" "longitude" "19.5266606" "latitude" "43.5827565" "last_login" "1571114857" +HSET "user:538" "first_name" "Myriam" "last_name" "Tringham" "email" "mtringhamex@wikia.com" "gender" "female" "ip_address" "178.121.159.19" "country" "Belarus" "country_code" "BY" "city" "Dzyarzhynsk" "longitude" "27.1325559" "latitude" "53.6849853" "last_login" "1575976551" +HSET "user:539" "first_name" "Lockwood" "last_name" "Hampshaw" "email" "lhampshawey@xrea.com" "gender" "male" "ip_address" "173.115.129.105" "country" "Kosovo" "country_code" "XK" "city" "Lumbardhi" "longitude" "20.7400297" "latitude" "42.2098979" "last_login" "1573096422" +HSET "user:540" "first_name" "Gaye" "last_name" "Lakenton" "email" "glakentonez@usnews.com" "gender" "female" "ip_address" "47.1.131.101" "country" "Russia" "country_code" "RU" "city" "Staraya Russa" "longitude" "31.3547855" "latitude" "57.9895226" "last_login" "1577192726" +HSET "user:541" "first_name" "Pail" "last_name" "Bein" "email" "pbeinf0@infoseek.co.jp" "gender" "male" "ip_address" "169.254.240.68" "country" "Portugal" "country_code" "PT" "city" "Canto" "longitude" "-8.6357798" "latitude" "40.466606" "last_login" "1596537528" +HSET "user:542" "first_name" "Brigitte" "last_name" "Tiddy" "email" "btiddyf1@e-recht24.de" "gender" "female" "ip_address" "70.219.62.103" "country" "Russia" "country_code" "RU" "city" "Orlovskiy" "longitude" "42.1175494" "latitude" "46.8619132" "last_login" "1574743215" +HSET "user:543" "first_name" "Kristi" "last_name" "Plevin" "email" "kplevinf2@flavors.me" "gender" "female" "ip_address" "119.201.204.66" "country" "Indonesia" "country_code" "ID" "city" "Maradabangga" "longitude" "120.3595" "latitude" "-10.1774" "last_login" "1597170062" +HSET "user:544" "first_name" "Abey" "last_name" "Hawgood" "email" "ahawgoodf3@studiopress.com" "gender" "male" "ip_address" "196.22.192.161" "country" "Indonesia" "country_code" "ID" "city" "Tamansari" "longitude" "110.3592495" "latitude" "-7.8100327" "last_login" "1587819507" +HSET "user:545" "first_name" "Montgomery" "last_name" "Gamet" "email" "mgametf4@timesonline.co.uk" "gender" "male" "ip_address" "143.1.86.186" "country" "Malaysia" "country_code" "MY" "city" "Alor Star" "longitude" "100.310501" "latitude" "6.1324209" "last_login" "1600290145" +HSET "user:546" "first_name" "Tarrah" "last_name" "Findlow" "email" "tfindlowf5@redcross.org" "gender" "female" "ip_address" "244.120.182.133" "country" "Philippines" "country_code" "PH" "city" "San Juan" "longitude" "121.0317737" "latitude" "14.565668" "last_login" "1581799691" +HSET "user:547" "first_name" "Gregoire" "last_name" "Bahike" "email" "gbahikef6@live.com" "gender" "male" "ip_address" "121.57.200.223" "country" "Indonesia" "country_code" "ID" "city" "Mangseng" "longitude" "107.0096844" "latitude" "-6.2057339" "last_login" "1571983822" +HSET "user:548" "first_name" "Mohandas" "last_name" "Gavrielly" "email" "mgavriellyf7@51.la" "gender" "male" "ip_address" "231.74.33.186" "country" "Bulgaria" "country_code" "BG" "city" "Dimitrovgrad" "longitude" "25.5719576" "latitude" "42.1400691" "last_login" "1587121803" +HSET "user:549" "first_name" "Cazzie" "last_name" "Diggar" "email" "cdiggarf8@nba.com" "gender" "male" "ip_address" "169.74.126.86" "country" "Peru" "country_code" "PE" "city" "Marcabal" "longitude" "-78.0327377" "latitude" "-7.7061422" "last_login" "1572709598" +HSET "user:550" "first_name" "Ernie" "last_name" "Glendza" "email" "eglendzaf9@w3.org" "gender" "male" "ip_address" "219.79.194.216" "country" "Russia" "country_code" "RU" "city" "Bol’shaya Setun’" "longitude" "37.41667" "latitude" "55.71667" "last_login" "1587856121" +HSET "user:551" "first_name" "Gabey" "last_name" "Fernie" "email" "gferniefa@kickstarter.com" "gender" "female" "ip_address" "189.125.172.93" "country" "Portugal" "country_code" "PT" "city" "Igreja" "longitude" "-8.4313535" "latitude" "41.0043316" "last_login" "1598305537" +HSET "user:552" "first_name" "Ilise" "last_name" "Bilbrooke" "email" "ibilbrookefb@blogs.com" "gender" "female" "ip_address" "247.92.123.208" "country" "Mexico" "country_code" "MX" "city" "San Rafael" "longitude" "-99.1636051" "latitude" "19.4392516" "last_login" "1584283365" +HSET "user:553" "first_name" "Ernestus" "last_name" "Pillman" "email" "epillmanfc@washington.edu" "gender" "male" "ip_address" "99.69.209.24" "country" "Ethiopia" "country_code" "ET" "city" "Dīla" "longitude" "38.3007613" "latitude" "6.4126332" "last_login" "1592890710" +HSET "user:554" "first_name" "Antoni" "last_name" "Lockner" "email" "alocknerfd@illinois.edu" "gender" "male" "ip_address" "47.146.131.91" "country" "Myanmar" "country_code" "MM" "city" "Thanatpin" "longitude" "96.5756695" "latitude" "17.292049" "last_login" "1576461005" +HSET "user:555" "first_name" "Avigdor" "last_name" "Bebis" "email" "abebisfe@dedecms.com" "gender" "male" "ip_address" "53.4.151.182" "country" "Mongolia" "country_code" "MN" "city" "Sharga" "longitude" "95.2732977" "latitude" "46.2686934" "last_login" "1576531801" +HSET "user:556" "first_name" "Hallsy" "last_name" "de Guise" "email" "hdeguiseff@youtu.be" "gender" "male" "ip_address" "91.115.108.114" "country" "Indonesia" "country_code" "ID" "city" "Curahnongko" "longitude" "113.6799766" "latitude" "-8.4175693" "last_login" "1590105153" +HSET "user:557" "first_name" "Jordon" "last_name" "Radloff" "email" "jradlofffg@weibo.com" "gender" "male" "ip_address" "208.99.233.4" "country" "Philippines" "country_code" "PH" "city" "San Isidro" "longitude" "126.065213" "latitude" "9.939624" "last_login" "1593469766" +HSET "user:558" "first_name" "Glori" "last_name" "Duthy" "email" "gduthyfh@unicef.org" "gender" "female" "ip_address" "210.12.223.131" "country" "Egypt" "country_code" "EG" "city" "Sumusţā as Sulţānī" "longitude" "30.85" "latitude" "28.91667" "last_login" "1577474046" +HSET "user:559" "first_name" "Miller" "last_name" "Hairon" "email" "mhaironfi@behance.net" "gender" "male" "ip_address" "152.10.149.107" "country" "China" "country_code" "CN" "city" "Shanxi" "longitude" "111.8568586" "latitude" "37.2425649" "last_login" "1574649756" +HSET "user:560" "first_name" "Filide" "last_name" "McQuaid" "email" "fmcquaidfj@marriott.com" "gender" "female" "ip_address" "89.160.23.248" "country" "Argentina" "country_code" "AR" "city" "San Luis" "longitude" "-60.6949244" "latitude" "-32.9395437" "last_login" "1574137285" +HSET "user:561" "first_name" "Amalia" "last_name" "Gaw" "email" "agawfk@jimdo.com" "gender" "female" "ip_address" "178.207.200.133" "country" "China" "country_code" "CN" "city" "Shifang" "longitude" "104.167501" "latitude" "31.12678" "last_login" "1586963128" +HSET "user:562" "first_name" "Rhianna" "last_name" "Ferne" "email" "rfernefl@myspace.com" "gender" "female" "ip_address" "95.188.22.71" "country" "Thailand" "country_code" "TH" "city" "At Samat" "longitude" "103.8911999" "latitude" "15.823909" "last_login" "1572523769" +HSET "user:563" "first_name" "Doy" "last_name" "Polon" "email" "dpolonfm@cornell.edu" "gender" "male" "ip_address" "194.225.190.20" "country" "Indonesia" "country_code" "ID" "city" "Banjar Parekan" "longitude" "115.2164037" "latitude" "-8.5764876" "last_login" "1599465319" +HSET "user:564" "first_name" "Kelsy" "last_name" "Newbigging" "email" "knewbiggingfn@google.fr" "gender" "female" "ip_address" "218.233.110.78" "country" "China" "country_code" "CN" "city" "Youhao" "longitude" "128.84075" "latitude" "47.853778" "last_login" "1580455141" +HSET "user:565" "first_name" "Alphonso" "last_name" "Broderick" "email" "abroderickfo@cnbc.com" "gender" "male" "ip_address" "167.90.15.47" "country" "Brazil" "country_code" "BR" "city" "Arapiraca" "longitude" "-36.6639577" "latitude" "-9.755588" "last_login" "1600145689" +HSET "user:566" "first_name" "Dacey" "last_name" "Cornelis" "email" "dcornelisfp@yellowpages.com" "gender" "female" "ip_address" "216.116.173.13" "country" "China" "country_code" "CN" "city" "Sanli" "longitude" "116.746096" "latitude" "24.84662" "last_login" "1589672224" +HSET "user:567" "first_name" "Andy" "last_name" "McDowell" "email" "amcdowellfq@shop-pro.jp" "gender" "male" "ip_address" "40.157.206.65" "country" "Egypt" "country_code" "EG" "city" "Dayrūţ" "longitude" "30.8077635" "latitude" "27.5502358" "last_login" "1568799074" +HSET "user:568" "first_name" "Jerrilyn" "last_name" "Stocken" "email" "jstockenfr@adobe.com" "gender" "female" "ip_address" "35.159.49.109" "country" "China" "country_code" "CN" "city" "Yetang" "longitude" "115.665617" "latitude" "24.192468" "last_login" "1579740530" +HSET "user:569" "first_name" "Sayers" "last_name" "Bewsy" "email" "sbewsyfs@rakuten.co.jp" "gender" "male" "ip_address" "95.214.211.41" "country" "Tunisia" "country_code" "TN" "city" "Sousse" "longitude" "10.608395" "latitude" "35.825603" "last_login" "1583770797" +HSET "user:570" "first_name" "Gabriel" "last_name" "Divis" "email" "gdivisft@timesonline.co.uk" "gender" "male" "ip_address" "77.31.111.103" "country" "Sudan" "country_code" "SD" "city" "Al Qiţena" "longitude" "32.3668" "latitude" "14.8648" "last_login" "1592992739" +HSET "user:571" "first_name" "Bibi" "last_name" "Ormshaw" "email" "bormshawfu@fastcompany.com" "gender" "female" "ip_address" "53.220.63.23" "country" "Greece" "country_code" "GR" "city" "Pýli" "longitude" "21.6225718" "latitude" "39.45978" "last_login" "1573968773" +HSET "user:572" "first_name" "Maren" "last_name" "Lalonde" "email" "mlalondefv@ow.ly" "gender" "female" "ip_address" "127.154.220.153" "country" "Brazil" "country_code" "BR" "city" "Extrema" "longitude" "-46.3160679" "latitude" "-22.8521905" "last_login" "1600016532" +HSET "user:573" "first_name" "Darda" "last_name" "McTurlough" "email" "dmcturloughfw@flavors.me" "gender" "female" "ip_address" "16.142.189.127" "country" "Peru" "country_code" "PE" "city" "Putina" "longitude" "-69.874893" "latitude" "-14.91256" "last_login" "1575301258" +HSET "user:574" "first_name" "Julius" "last_name" "Gabbat" "email" "jgabbatfx@economist.com" "gender" "male" "ip_address" "170.171.3.234" "country" "Greece" "country_code" "GR" "city" "Kolchikón" "longitude" "23.1342184" "latitude" "40.7576842" "last_login" "1589361746" +HSET "user:575" "first_name" "Adrian" "last_name" "Goadsby" "email" "agoadsbyfy@nature.com" "gender" "male" "ip_address" "74.24.47.139" "country" "Sweden" "country_code" "SE" "city" "Norrköping" "longitude" "15.4323507" "latitude" "58.8965066" "last_login" "1583592325" +HSET "user:576" "first_name" "Heddi" "last_name" "Hodgin" "email" "hhodginfz@dailymotion.com" "gender" "female" "ip_address" "64.204.192.57" "country" "United States" "country_code" "US" "city" "Anchorage" "longitude" "-149.8010811" "latitude" "61.148769" "last_login" "1577821254" +HSET "user:577" "first_name" "Avivah" "last_name" "Petto" "email" "apettog0@networksolutions.com" "gender" "female" "ip_address" "60.207.90.204" "country" "Indonesia" "country_code" "ID" "city" "Salamnunggal" "longitude" "107.8961537" "latitude" "-7.1045439" "last_login" "1584452386" +HSET "user:578" "first_name" "Antin" "last_name" "Farmloe" "email" "afarmloeg1@soundcloud.com" "gender" "male" "ip_address" "195.7.236.64" "country" "Portugal" "country_code" "PT" "city" "Marisol" "longitude" "-9.1734583" "latitude" "38.6027178" "last_login" "1591128837" +HSET "user:579" "first_name" "Farris" "last_name" "Scrogges" "email" "fscroggesg2@furl.net" "gender" "male" "ip_address" "65.39.108.44" "country" "Indonesia" "country_code" "ID" "city" "Alak" "longitude" "123.5616058" "latitude" "-10.1917127" "last_login" "1577389402" +HSET "user:580" "first_name" "Lanita" "last_name" "Hlavecek" "email" "lhlavecekg3@mysql.com" "gender" "female" "ip_address" "182.106.118.36" "country" "Indonesia" "country_code" "ID" "city" "Pasar Kulon" "longitude" "106.8643671" "latitude" "-6.2163932" "last_login" "1577161273" +HSET "user:581" "first_name" "Pooh" "last_name" "Norcott" "email" "pnorcottg4@quantcast.com" "gender" "male" "ip_address" "153.159.175.61" "country" "Guyana" "country_code" "GY" "city" "Anna Regina" "longitude" "-58.4829834" "latitude" "7.2636011" "last_login" "1598949693" +HSET "user:582" "first_name" "Karleen" "last_name" "Bolden" "email" "kboldeng5@adobe.com" "gender" "female" "ip_address" "46.196.85.139" "country" "South Africa" "country_code" "ZA" "city" "Ndwedwe" "longitude" "31.1366715" "latitude" "-29.5903512" "last_login" "1590595877" +HSET "user:583" "first_name" "Boyd" "last_name" "Yu" "email" "byug6@wired.com" "gender" "male" "ip_address" "66.70.110.178" "country" "Portugal" "country_code" "PT" "city" "Eirado" "longitude" "-8.4907289" "latitude" "41.6548062" "last_login" "1600205304" +HSET "user:584" "first_name" "Hendrik" "last_name" "Galer" "email" "hgalerg7@ezinearticles.com" "gender" "male" "ip_address" "28.174.94.171" "country" "China" "country_code" "CN" "city" "Sigou" "longitude" "119.0790302" "latitude" "34.7671945" "last_login" "1575068746" +HSET "user:585" "first_name" "Sena" "last_name" "Keelinge" "email" "skeelingeg8@exblog.jp" "gender" "female" "ip_address" "237.73.119.13" "country" "United States" "country_code" "US" "city" "Wilkes Barre" "longitude" "-75.8520879" "latitude" "41.2505888" "last_login" "1576279330" +HSET "user:586" "first_name" "Englebert" "last_name" "Trenholme" "email" "etrenholmeg9@skyrock.com" "gender" "male" "ip_address" "109.153.207.79" "country" "China" "country_code" "CN" "city" "Hongguang" "longitude" "121.4174914" "latitude" "31.207378" "last_login" "1593177014" +HSET "user:587" "first_name" "Jeralee" "last_name" "Spatoni" "email" "jspatoniga@ebay.co.uk" "gender" "female" "ip_address" "193.67.220.27" "country" "China" "country_code" "CN" "city" "Pingtan" "longitude" "119.790168" "latitude" "25.49872" "last_login" "1589456977" +HSET "user:588" "first_name" "Kip" "last_name" "Daspar" "email" "kdaspargb@slate.com" "gender" "male" "ip_address" "186.229.49.81" "country" "Russia" "country_code" "RU" "city" "Pesochnoye" "longitude" "30.2124344" "latitude" "60.1161159" "last_login" "1577970418" +HSET "user:589" "first_name" "Nomi" "last_name" "Ringer" "email" "nringergc@php.net" "gender" "female" "ip_address" "242.242.203.125" "country" "Guinea" "country_code" "GN" "city" "Kissidougou" "longitude" "-10.1143176" "latitude" "9.1914538" "last_login" "1594897606" +HSET "user:590" "first_name" "Gabe" "last_name" "Wissby" "email" "gwissbygd@webmd.com" "gender" "male" "ip_address" "68.136.111.109" "country" "Brazil" "country_code" "BR" "city" "Mata de São João" "longitude" "-38.3001614" "latitude" "-12.5327517" "last_login" "1593703351" +HSET "user:591" "first_name" "Brook" "last_name" "Habben" "email" "bhabbenge@chronoengine.com" "gender" "male" "ip_address" "60.75.23.151" "country" "South Africa" "country_code" "ZA" "city" "Utrecht" "longitude" "30.3089541" "latitude" "-27.6711693" "last_login" "1570786419" +HSET "user:592" "first_name" "Marianne" "last_name" "Morgans" "email" "mmorgansgf@bandcamp.com" "gender" "female" "ip_address" "80.200.24.233" "country" "Poland" "country_code" "PL" "city" "Nowy Dwór Mazowiecki" "longitude" "20.6717224" "latitude" "52.4402961" "last_login" "1575679239" +HSET "user:593" "first_name" "Erl" "last_name" "Hessel" "email" "ehesselgg@plala.or.jp" "gender" "male" "ip_address" "193.28.37.165" "country" "Indonesia" "country_code" "ID" "city" "Kadipaten" "longitude" "108.1676607" "latitude" "-6.7676998" "last_login" "1568850438" +HSET "user:594" "first_name" "Saw" "last_name" "Comettoi" "email" "scomettoigh@odnoklassniki.ru" "gender" "male" "ip_address" "97.44.116.168" "country" "United States" "country_code" "US" "city" "Champaign" "longitude" "-88.2434596" "latitude" "40.1211828" "last_login" "1587278377" +HSET "user:595" "first_name" "Kennedy" "last_name" "Siveter" "email" "ksivetergi@mac.com" "gender" "male" "ip_address" "197.138.79.233" "country" "Indonesia" "country_code" "ID" "city" "Dukuhpicung" "longitude" "108.6264694" "latitude" "-7.05513" "last_login" "1576398262" +HSET "user:596" "first_name" "Dunstan" "last_name" "Cescot" "email" "dcescotgj@ocn.ne.jp" "gender" "male" "ip_address" "156.6.139.198" "country" "Greece" "country_code" "GR" "city" "Oinófyta" "longitude" "23.6391172" "latitude" "38.3080648" "last_login" "1592129338" +HSET "user:597" "first_name" "Shanie" "last_name" "Symington" "email" "ssymingtongk@ning.com" "gender" "female" "ip_address" "15.111.187.121" "country" "Indonesia" "country_code" "ID" "city" "Biyan" "longitude" "106.7987" "latitude" "-6.2258" "last_login" "1578148974" +HSET "user:598" "first_name" "Marsiella" "last_name" "Aylward" "email" "maylwardgl@unesco.org" "gender" "female" "ip_address" "8.137.251.206" "country" "Paraguay" "country_code" "PY" "city" "Concepción" "longitude" "-57.4344451" "latitude" "-23.4214264" "last_login" "1580605640" +HSET "user:599" "first_name" "Marlon" "last_name" "O'Doherty" "email" "modohertygm@meetup.com" "gender" "male" "ip_address" "25.52.145.45" "country" "Paraguay" "country_code" "PY" "city" "Asunción" "longitude" "-57.575926" "latitude" "-25.2637399" "last_login" "1570643696" +HSET "user:600" "first_name" "Francis" "last_name" "Gypps" "email" "fgyppsgn@ebay.com" "gender" "male" "ip_address" "193.246.71.54" "country" "Indonesia" "country_code" "ID" "city" "Kediri" "longitude" "112.0178286" "latitude" "-7.8480156" "last_login" "1585480698" +HSET "user:601" "first_name" "Wynn" "last_name" "Wardhough" "email" "wwardhoughgo@hibu.com" "gender" "male" "ip_address" "23.188.255.99" "country" "Japan" "country_code" "JP" "city" "Oyama" "longitude" "140.8267396" "latitude" "37.9616862" "last_login" "1581959842" +HSET "user:602" "first_name" "Gillie" "last_name" "Kibel" "email" "gkibelgp@surveymonkey.com" "gender" "female" "ip_address" "44.89.214.173" "country" "Philippines" "country_code" "PH" "city" "Malaruhatan" "longitude" "120.659505" "latitude" "14.0397463" "last_login" "1590928460" +HSET "user:603" "first_name" "Cazzie" "last_name" "Mycock" "email" "cmycockgq@cam.ac.uk" "gender" "male" "ip_address" "69.179.58.28" "country" "United States" "country_code" "US" "city" "Minneapolis" "longitude" "-93.26" "latitude" "44.9799999" "last_login" "1577598298" +HSET "user:604" "first_name" "Griswold" "last_name" "Hastilow" "email" "ghastilowgr@google.fr" "gender" "male" "ip_address" "143.138.144.40" "country" "Philippines" "country_code" "PH" "city" "Malabugas" "longitude" "122.7631154" "latitude" "9.3730352" "last_login" "1592776107" +HSET "user:605" "first_name" "Zacharia" "last_name" "Churchin" "email" "zchurchings@w3.org" "gender" "male" "ip_address" "131.212.229.113" "country" "New Zealand" "country_code" "NZ" "city" "Riverton" "longitude" "168.0177331" "latitude" "-46.3478987" "last_login" "1591774507" +HSET "user:606" "first_name" "Bayard" "last_name" "Phaup" "email" "bphaupgt@hc360.com" "gender" "male" "ip_address" "15.202.35.183" "country" "Indonesia" "country_code" "ID" "city" "Labansari" "longitude" "107.2518631" "latitude" "-6.2822524" "last_login" "1595651906" +HSET "user:607" "first_name" "Phil" "last_name" "Jeffers" "email" "pjeffersgu@phpbb.com" "gender" "female" "ip_address" "246.3.191.229" "country" "Philippines" "country_code" "PH" "city" "San Fernando" "longitude" "125.3297787" "latitude" "7.9187344" "last_login" "1586985956" +HSET "user:608" "first_name" "Eloise" "last_name" "Sibbons" "email" "esibbonsgv@is.gd" "gender" "female" "ip_address" "114.157.234.82" "country" "Russia" "country_code" "RU" "city" "Imeni Babushkina" "longitude" "43.1333329" "latitude" "59.75" "last_login" "1593424978" +HSET "user:609" "first_name" "Ursa" "last_name" "Stagge" "email" "ustaggegw@storify.com" "gender" "female" "ip_address" "124.69.243.205" "country" "Nigeria" "country_code" "NG" "city" "Wushishi" "longitude" "6.1112878" "latitude" "9.7220855" "last_login" "1589674322" +HSET "user:610" "first_name" "Sascha" "last_name" "Conti" "email" "scontigx@berkeley.edu" "gender" "female" "ip_address" "45.127.4.210" "country" "Colombia" "country_code" "CO" "city" "Chinú" "longitude" "-75.3645369" "latitude" "9.0039801" "last_login" "1595143902" +HSET "user:611" "first_name" "Hortensia" "last_name" "Ferminger" "email" "hfermingergy@ning.com" "gender" "female" "ip_address" "23.121.79.45" "country" "Saudi Arabia" "country_code" "SA" "city" "Farasān" "longitude" "42.120984" "latitude" "16.701895" "last_login" "1573707798" +HSET "user:612" "first_name" "Jena" "last_name" "Deeny" "email" "jdeenygz@ifeng.com" "gender" "female" "ip_address" "133.87.183.130" "country" "Netherlands" "country_code" "NL" "city" "Leiden" "longitude" "4.4982869" "latitude" "52.1513886" "last_login" "1576164254" +HSET "user:613" "first_name" "Corrie" "last_name" "New" "email" "cnewh0@reverbnation.com" "gender" "female" "ip_address" "252.65.128.116" "country" "Vietnam" "country_code" "VN" "city" "Vân Đình" "longitude" "105.7704551" "latitude" "20.7337728" "last_login" "1586210612" +HSET "user:614" "first_name" "Robinia" "last_name" "Cobelli" "email" "rcobellih1@shop-pro.jp" "gender" "female" "ip_address" "66.92.216.79" "country" "Indonesia" "country_code" "ID" "city" "Sukamaju" "longitude" "106.8502879" "latitude" "-6.4185424" "last_login" "1588736487" +HSET "user:615" "first_name" "Gallagher" "last_name" "Mateiko" "email" "gmateikoh2@tripod.com" "gender" "male" "ip_address" "139.6.189.26" "country" "China" "country_code" "CN" "city" "Nierumai" "longitude" "89.944038" "latitude" "28.708282" "last_login" "1581087261" +HSET "user:616" "first_name" "Bryna" "last_name" "McSkin" "email" "bmcskinh3@myspace.com" "gender" "female" "ip_address" "25.23.120.239" "country" "Argentina" "country_code" "AR" "city" "Hualfín" "longitude" "-58.6341359" "latitude" "-34.7318914" "last_login" "1597079195" +HSET "user:617" "first_name" "Alanson" "last_name" "Houdmont" "email" "ahoudmonth4@alexa.com" "gender" "male" "ip_address" "99.138.83.189" "country" "Indonesia" "country_code" "ID" "city" "Wonodadi" "longitude" "112.0118669" "latitude" "-8.0475926" "last_login" "1594796109" +HSET "user:618" "first_name" "Jeannie" "last_name" "Mapham" "email" "jmaphamh5@imageshack.us" "gender" "female" "ip_address" "8.73.185.129" "country" "Indonesia" "country_code" "ID" "city" "Putukrejo" "longitude" "111.9298922" "latitude" "-7.6375159" "last_login" "1594997236" +HSET "user:619" "first_name" "Kirstin" "last_name" "Manilo" "email" "kmaniloh6@paypal.com" "gender" "female" "ip_address" "136.79.191.145" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Tešanj" "longitude" "17.9914718" "latitude" "44.6166027" "last_login" "1597445344" +HSET "user:620" "first_name" "Hazel" "last_name" "McConnachie" "email" "hmcconnachieh7@cyberchimps.com" "gender" "male" "ip_address" "242.252.115.106" "country" "Indonesia" "country_code" "ID" "city" "Leuweheq" "longitude" "123.7414" "latitude" "-8.2284" "last_login" "1582540758" +HSET "user:621" "first_name" "Tallia" "last_name" "Sergean" "email" "tsergeanh8@google.ca" "gender" "female" "ip_address" "100.188.204.96" "country" "Argentina" "country_code" "AR" "city" "Unquillo" "longitude" "-64.182416" "latitude" "-31.372506" "last_login" "1570942490" +HSET "user:622" "first_name" "Doll" "last_name" "Dmytryk" "email" "ddmytrykh9@moonfruit.com" "gender" "female" "ip_address" "46.33.200.97" "country" "Albania" "country_code" "AL" "city" "Krahës" "longitude" "19.8451169" "latitude" "40.4407041" "last_login" "1578616474" +HSET "user:623" "first_name" "Kimmi" "last_name" "O'Nions" "email" "konionsha@cnbc.com" "gender" "female" "ip_address" "156.154.201.38" "country" "Honduras" "country_code" "HN" "city" "Támara" "longitude" "-87.3314264" "latitude" "14.1899344" "last_login" "1569770821" +HSET "user:624" "first_name" "Brander" "last_name" "Bamb" "email" "bbambhb@slate.com" "gender" "male" "ip_address" "19.135.164.58" "country" "Indonesia" "country_code" "ID" "city" "Pelem" "longitude" "112.1698476" "latitude" "-7.7607338" "last_login" "1570942714" +HSET "user:625" "first_name" "Norah" "last_name" "Robert" "email" "nroberthc@bbc.co.uk" "gender" "female" "ip_address" "114.238.138.99" "country" "Canada" "country_code" "CA" "city" "Oliver" "longitude" "-119.5524" "latitude" "49.18306" "last_login" "1586165839" +HSET "user:626" "first_name" "Kalindi" "last_name" "Glasspool" "email" "kglasspoolhd@wordpress.org" "gender" "female" "ip_address" "156.109.185.230" "country" "Indonesia" "country_code" "ID" "city" "Riangwale" "longitude" "123.2415" "latitude" "-8.3841" "last_login" "1578232377" +HSET "user:627" "first_name" "Bentley" "last_name" "Blenkin" "email" "bblenkinhe@illinois.edu" "gender" "male" "ip_address" "70.194.118.177" "country" "China" "country_code" "CN" "city" "Fengchan" "longitude" "107.04219" "latitude" "24.546876" "last_login" "1585735688" +HSET "user:628" "first_name" "Anders" "last_name" "Meakes" "email" "ameakeshf@vimeo.com" "gender" "male" "ip_address" "142.19.171.205" "country" "Norway" "country_code" "NO" "city" "Steinkjer" "longitude" "11.4774849" "latitude" "63.9994475" "last_login" "1591380098" +HSET "user:629" "first_name" "Salomi" "last_name" "Saill" "email" "ssaillhg@narod.ru" "gender" "female" "ip_address" "144.80.195.127" "country" "China" "country_code" "CN" "city" "Zaindainxoi" "longitude" "76.798772" "latitude" "30.6902716" "last_login" "1587085631" +HSET "user:630" "first_name" "Emmalynne" "last_name" "Dobble" "email" "edobblehh@prweb.com" "gender" "female" "ip_address" "105.1.115.167" "country" "China" "country_code" "CN" "city" "Yanhu" "longitude" "110.998272" "latitude" "35.015101" "last_login" "1578471846" +HSET "user:631" "first_name" "Idell" "last_name" "Caplen" "email" "icaplenhi@uol.com.br" "gender" "female" "ip_address" "185.57.137.6" "country" "China" "country_code" "CN" "city" "Jiefang" "longitude" "118.2536287" "latitude" "35.0702051" "last_login" "1572806818" +HSET "user:632" "first_name" "Andrej" "last_name" "Harmond" "email" "aharmondhj@ed.gov" "gender" "male" "ip_address" "251.184.114.104" "country" "Peru" "country_code" "PE" "city" "Ayna" "longitude" "-73.8654295" "latitude" "-12.7389848" "last_login" "1574711968" +HSET "user:633" "first_name" "Finley" "last_name" "Fulkes" "email" "ffulkeshk@google.com.au" "gender" "male" "ip_address" "68.123.92.124" "country" "Philippines" "country_code" "PH" "city" "San Rafael" "longitude" "121.0190818" "latitude" "14.5697429" "last_login" "1593888492" +HSET "user:634" "first_name" "Bayard" "last_name" "Brevitt" "email" "bbrevitthl@google.fr" "gender" "male" "ip_address" "59.108.79.202" "country" "China" "country_code" "CN" "city" "Zhentou" "longitude" "113.3287943" "latitude" "27.9983088" "last_login" "1590986608" +HSET "user:635" "first_name" "Chance" "last_name" "Wickens" "email" "cwickenshm@usda.gov" "gender" "male" "ip_address" "23.142.46.163" "country" "China" "country_code" "CN" "city" "Guifeng" "longitude" "117.343545" "latitude" "28.314706" "last_login" "1595220215" +HSET "user:636" "first_name" "Radcliffe" "last_name" "Hoogendorp" "email" "rhoogendorphn@fastcompany.com" "gender" "male" "ip_address" "4.61.221.116" "country" "Costa Rica" "country_code" "CR" "city" "Naranjo" "longitude" "-84.405668" "latitude" "10.098232" "last_login" "1586862274" +HSET "user:637" "first_name" "Lenci" "last_name" "Fall" "email" "lfallho@webs.com" "gender" "male" "ip_address" "5.165.203.62" "country" "China" "country_code" "CN" "city" "Lubu" "longitude" "112.294107" "latitude" "23.177772" "last_login" "1586221621" +HSET "user:638" "first_name" "Vinita" "last_name" "Eastwood" "email" "veastwoodhp@yahoo.co.jp" "gender" "female" "ip_address" "65.77.113.95" "country" "Portugal" "country_code" "PT" "city" "Mina de São Domingos" "longitude" "-7.4966456" "latitude" "37.6729124" "last_login" "1579987738" +HSET "user:639" "first_name" "Marlow" "last_name" "Destouche" "email" "mdestouchehq@elegantthemes.com" "gender" "male" "ip_address" "195.178.147.241" "country" "France" "country_code" "FR" "city" "Tulle" "longitude" "4.5805038" "latitude" "44.7016194" "last_login" "1584734799" +HSET "user:640" "first_name" "Marsha" "last_name" "Boatwright" "email" "mboatwrighthr@reddit.com" "gender" "female" "ip_address" "94.192.41.11" "country" "Indonesia" "country_code" "ID" "city" "Barajalan" "longitude" "113.53472" "latitude" "-7.1332" "last_login" "1587649260" +HSET "user:641" "first_name" "Dorelia" "last_name" "Symon" "email" "dsymonhs@sfgate.com" "gender" "female" "ip_address" "5.234.184.101" "country" "Philippines" "country_code" "PH" "city" "Labog" "longitude" "123.2439154" "latitude" "13.709978" "last_login" "1589566217" +HSET "user:642" "first_name" "Katrinka" "last_name" "Bulfield" "email" "kbulfieldht@mlb.com" "gender" "female" "ip_address" "77.245.12.252" "country" "Palestinian Territory" "country_code" "PS" "city" "Mislīyah" "longitude" "35.2878" "latitude" "32.38613" "last_login" "1576299956" +HSET "user:643" "first_name" "Sherlocke" "last_name" "Vicarey" "email" "svicareyhu@sakura.ne.jp" "gender" "male" "ip_address" "90.144.157.201" "country" "Libya" "country_code" "LY" "city" "Az Zintān" "longitude" "12.3005803" "latitude" "31.8024122" "last_login" "1576227636" +HSET "user:644" "first_name" "Tildie" "last_name" "Brunsen" "email" "tbrunsenhv@yahoo.com" "gender" "female" "ip_address" "79.36.37.150" "country" "Maldives" "country_code" "MV" "city" "Naifaru" "longitude" "73.3657118" "latitude" "5.4443719" "last_login" "1599996132" +HSET "user:645" "first_name" "Selle" "last_name" "Joplin" "email" "sjoplinhw@wikispaces.com" "gender" "female" "ip_address" "92.21.219.181" "country" "Philippines" "country_code" "PH" "city" "Limulan" "longitude" "124.1086807" "latitude" "6.4946003" "last_login" "1584892452" +HSET "user:646" "first_name" "Cornelle" "last_name" "Vedenichev" "email" "cvedenichevhx@trellian.com" "gender" "female" "ip_address" "112.125.83.71" "country" "China" "country_code" "CN" "city" "Woshui" "longitude" "112.235945" "latitude" "24.561134" "last_login" "1596625096" +HSET "user:647" "first_name" "Silva" "last_name" "Daice" "email" "sdaicehy@google.fr" "gender" "female" "ip_address" "80.13.109.109" "country" "Uzbekistan" "country_code" "UZ" "city" "Beruniy" "longitude" "60.7598173" "latitude" "41.6751633" "last_login" "1571725505" +HSET "user:648" "first_name" "Lyle" "last_name" "Sparwell" "email" "lsparwellhz@bloglovin.com" "gender" "male" "ip_address" "125.75.131.160" "country" "Nicaragua" "country_code" "NI" "city" "Yalagüina" "longitude" "-86.4920736" "latitude" "13.4817182" "last_login" "1595712298" +HSET "user:649" "first_name" "Ashly" "last_name" "Dumphrey" "email" "adumphreyi0@msn.com" "gender" "female" "ip_address" "54.197.223.215" "country" "Macedonia" "country_code" "MK" "city" "Orizari" "longitude" "21.3607894" "latitude" "41.0423985" "last_login" "1570030743" +HSET "user:650" "first_name" "Elyssa" "last_name" "Walthew" "email" "ewalthewi1@wordpress.com" "gender" "female" "ip_address" "36.232.19.177" "country" "Finland" "country_code" "FI" "city" "Loimaan Kunta" "longitude" "22.6282967" "latitude" "60.955867" "last_login" "1583471124" +HSET "user:651" "first_name" "Vincenty" "last_name" "Montrose" "email" "vmontrosei2@wikia.com" "gender" "male" "ip_address" "123.203.236.191" "country" "Portugal" "country_code" "PT" "city" "Ladário" "longitude" "-8.1699995" "latitude" "41.2115446" "last_login" "1577763114" +HSET "user:652" "first_name" "Tam" "last_name" "Treneer" "email" "ttreneeri3@wsj.com" "gender" "male" "ip_address" "113.251.199.206" "country" "Russia" "country_code" "RU" "city" "Rossosh’" "longitude" "39.5632497" "latitude" "50.1987725" "last_login" "1585797758" +HSET "user:653" "first_name" "Elnora" "last_name" "Overshott" "email" "eovershotti4@mlb.com" "gender" "female" "ip_address" "105.20.169.51" "country" "Brazil" "country_code" "BR" "city" "Ouro Preto do Oeste" "longitude" "-62.2542716" "latitude" "-10.7194641" "last_login" "1598664270" +HSET "user:654" "first_name" "Shamus" "last_name" "Macconachy" "email" "smacconachyi5@ihg.com" "gender" "male" "ip_address" "85.248.42.93" "country" "Russia" "country_code" "RU" "city" "Shamanka" "longitude" "103.8262447" "latitude" "52.0715558" "last_login" "1598043531" +HSET "user:655" "first_name" "Laurent" "last_name" "Rowles" "email" "lrowlesi6@blinklist.com" "gender" "male" "ip_address" "142.73.248.172" "country" "China" "country_code" "CN" "city" "Pinghu" "longitude" "121.015142" "latitude" "30.677233" "last_login" "1584620779" +HSET "user:656" "first_name" "Daveen" "last_name" "Klishin" "email" "dklishini7@amazon.co.jp" "gender" "female" "ip_address" "200.251.200.14" "country" "China" "country_code" "CN" "city" "Oroin Xibe" "longitude" "124.25218" "latitude" "46.364025" "last_login" "1571240426" +HSET "user:657" "first_name" "Tore" "last_name" "Harker" "email" "tharkeri8@blogger.com" "gender" "male" "ip_address" "129.121.34.202" "country" "Czech Republic" "country_code" "CZ" "city" "Žďár nad Sázavou Druhy" "longitude" "15.8596037" "latitude" "49.5620496" "last_login" "1573743547" +HSET "user:658" "first_name" "Ingeberg" "last_name" "Allanby" "email" "iallanbyi9@squidoo.com" "gender" "female" "ip_address" "35.21.32.41" "country" "China" "country_code" "CN" "city" "Yilongyong" "longitude" "120.639361" "latitude" "42.629452" "last_login" "1596454094" +HSET "user:659" "first_name" "Osgood" "last_name" "Yorke" "email" "oyorkeia@adobe.com" "gender" "male" "ip_address" "198.144.77.15" "country" "China" "country_code" "CN" "city" "Har Nur" "longitude" "75.854942" "latitude" "30.912962" "last_login" "1586395393" +HSET "user:660" "first_name" "Jeanne" "last_name" "O'Cleary" "email" "joclearyib@pinterest.com" "gender" "female" "ip_address" "143.15.98.254" "country" "United States" "country_code" "US" "city" "Punta Gorda" "longitude" "-81.734942" "latitude" "26.8844636" "last_login" "1572595585" +HSET "user:661" "first_name" "Nichols" "last_name" "Caisley" "email" "ncaisleyic@time.com" "gender" "male" "ip_address" "214.132.13.144" "country" "Poland" "country_code" "PL" "city" "Iwkowa" "longitude" "20.5901226" "latitude" "49.8167342" "last_login" "1596031618" +HSET "user:662" "first_name" "Glynnis" "last_name" "Bahl" "email" "gbahlid@omniture.com" "gender" "female" "ip_address" "118.153.58.211" "country" "Venezuela" "country_code" "VE" "city" "Aroa" "longitude" "-68.8928558" "latitude" "10.4312095" "last_login" "1594964533" +HSET "user:663" "first_name" "Dix" "last_name" "Colnet" "email" "dcolnetie@chronoengine.com" "gender" "female" "ip_address" "208.109.140.155" "country" "United Arab Emirates" "country_code" "AE" "city" "Dubai" "longitude" "55.2707828" "latitude" "25.2048493" "last_login" "1570151688" +HSET "user:664" "first_name" "Jozef" "last_name" "Hele" "email" "jheleif@deviantart.com" "gender" "male" "ip_address" "106.118.54.35" "country" "China" "country_code" "CN" "city" "Rentian" "longitude" "116.604574" "latitude" "24.848984" "last_login" "1573677030" +HSET "user:665" "first_name" "Courtnay" "last_name" "Asp" "email" "caspig@hatena.ne.jp" "gender" "male" "ip_address" "244.79.141.124" "country" "Indonesia" "country_code" "ID" "city" "Girang" "longitude" "106.183333" "latitude" "-6.8" "last_login" "1574056291" +HSET "user:666" "first_name" "Jorrie" "last_name" "Fouracre" "email" "jfouracreih@army.mil" "gender" "female" "ip_address" "207.38.3.180" "country" "Australia" "country_code" "AU" "city" "Sydney" "longitude" "153.3970962" "latitude" "-27.9424308" "last_login" "1574712252" +HSET "user:667" "first_name" "Gilberta" "last_name" "Danniel" "email" "gdannielii@myspace.com" "gender" "female" "ip_address" "164.111.213.240" "country" "Indonesia" "country_code" "ID" "city" "Pulopaya" "longitude" "97.6385368" "latitude" "2.9363162" "last_login" "1586937273" +HSET "user:668" "first_name" "Bevin" "last_name" "Betun" "email" "bbetunij@youtu.be" "gender" "male" "ip_address" "98.33.5.197" "country" "China" "country_code" "CN" "city" "Jianqiao" "longitude" "120.218758" "latitude" "30.315892" "last_login" "1596613437" +HSET "user:669" "first_name" "Stanfield" "last_name" "Klimp" "email" "sklimpik@digg.com" "gender" "male" "ip_address" "99.118.44.53" "country" "Poland" "country_code" "PL" "city" "Czarnożyły" "longitude" "18.5618708" "latitude" "51.2717148" "last_login" "1598368414" +HSET "user:670" "first_name" "Emyle" "last_name" "Benito" "email" "ebenitoil@comsenz.com" "gender" "female" "ip_address" "83.221.8.91" "country" "Poland" "country_code" "PL" "city" "Błażowa" "longitude" "22.1027541" "latitude" "49.8856487" "last_login" "1581294048" +HSET "user:671" "first_name" "Trula" "last_name" "Tune" "email" "ttuneim@ocn.ne.jp" "gender" "female" "ip_address" "158.3.37.26" "country" "China" "country_code" "CN" "city" "Xiangquan" "longitude" "104.794074" "latitude" "36.756621" "last_login" "1570275086" +HSET "user:672" "first_name" "Fredrika" "last_name" "Whitehorne" "email" "fwhitehornein@statcounter.com" "gender" "female" "ip_address" "143.5.188.92" "country" "Brazil" "country_code" "BR" "city" "Laranjeiras do Sul" "longitude" "-52.4134746" "latitude" "-25.4079504" "last_login" "1597645065" +HSET "user:673" "first_name" "Sula" "last_name" "Robic" "email" "srobicio@businesswire.com" "gender" "female" "ip_address" "160.209.26.19" "country" "China" "country_code" "CN" "city" "Shuangta" "longitude" "120.453743" "latitude" "41.565627" "last_login" "1597295071" +HSET "user:674" "first_name" "Manon" "last_name" "Sidon" "email" "msidonip@stumbleupon.com" "gender" "female" "ip_address" "163.93.57.173" "country" "China" "country_code" "CN" "city" "Shijing" "longitude" "118.431541" "latitude" "24.625561" "last_login" "1588306018" +HSET "user:675" "first_name" "Weber" "last_name" "Jancic" "email" "wjanciciq@cargocollective.com" "gender" "male" "ip_address" "88.158.65.132" "country" "Ghana" "country_code" "GH" "city" "Swedru" "longitude" "-0.705779" "latitude" "5.5298168" "last_login" "1590014116" +HSET "user:676" "first_name" "Donnamarie" "last_name" "Aberdalgy" "email" "daberdalgyir@w3.org" "gender" "female" "ip_address" "189.64.48.172" "country" "Vietnam" "country_code" "VN" "city" "Cần Giờ" "longitude" "106.8635004" "latitude" "10.5083266" "last_login" "1578731401" +HSET "user:677" "first_name" "Bonny" "last_name" "Battill" "email" "bbattillis@fastcompany.com" "gender" "female" "ip_address" "126.124.200.17" "country" "Greece" "country_code" "GR" "city" "Zipárion" "longitude" "27.2053498" "latitude" "36.8771299" "last_login" "1580901840" +HSET "user:678" "first_name" "Jere" "last_name" "Noah" "email" "jnoahit@sciencedirect.com" "gender" "female" "ip_address" "163.72.41.18" "country" "Brazil" "country_code" "BR" "city" "Cataguases" "longitude" "-42.6945496" "latitude" "-21.3892337" "last_login" "1592555580" +HSET "user:679" "first_name" "Breena" "last_name" "Bovaird" "email" "bbovairdiu@taobao.com" "gender" "female" "ip_address" "35.174.253.215" "country" "Kyrgyzstan" "country_code" "KG" "city" "Gul’cha" "longitude" "73.4445392" "latitude" "40.3132524" "last_login" "1574805049" +HSET "user:680" "first_name" "Reinaldo" "last_name" "Flori" "email" "rfloriiv@engadget.com" "gender" "male" "ip_address" "12.197.152.66" "country" "Sweden" "country_code" "SE" "city" "Lidköping" "longitude" "13.1402383" "latitude" "58.3721026" "last_login" "1576094840" +HSET "user:681" "first_name" "Roddie" "last_name" "Gallemore" "email" "rgallemoreiw@behance.net" "gender" "male" "ip_address" "222.81.42.181" "country" "China" "country_code" "CN" "city" "Zouma" "longitude" "114.040353" "latitude" "30.63166" "last_login" "1596460882" +HSET "user:682" "first_name" "Hephzibah" "last_name" "Ithell" "email" "hithellix@booking.com" "gender" "female" "ip_address" "229.145.166.190" "country" "Albania" "country_code" "AL" "city" "Vithkuq" "longitude" "20.5826261" "latitude" "40.5250374" "last_login" "1578418379" +HSET "user:683" "first_name" "Ardisj" "last_name" "Cridlan" "email" "acridlaniy@blogs.com" "gender" "female" "ip_address" "197.115.17.26" "country" "Philippines" "country_code" "PH" "city" "Bacnar" "longitude" "120.341507" "latitude" "15.884783" "last_login" "1600210721" +HSET "user:684" "first_name" "Garry" "last_name" "Burgon" "email" "gburgoniz@trellian.com" "gender" "male" "ip_address" "42.50.132.117" "country" "Sweden" "country_code" "SE" "city" "Kallinge" "longitude" "15.3137401" "latitude" "56.2270517" "last_login" "1579905038" +HSET "user:685" "first_name" "Sayers" "last_name" "Perch" "email" "sperchj0@yandex.ru" "gender" "male" "ip_address" "195.227.75.205" "country" "Brazil" "country_code" "BR" "city" "Alegrete" "longitude" "-55.7980283" "latitude" "-29.7844393" "last_login" "1598931873" +HSET "user:686" "first_name" "Merola" "last_name" "Peyes" "email" "mpeyesj1@mtv.com" "gender" "female" "ip_address" "21.156.170.246" "country" "Chile" "country_code" "CL" "city" "El Tabo" "longitude" "-71.6669341" "latitude" "-33.4557162" "last_login" "1580027495" +HSET "user:687" "first_name" "Eve" "last_name" "Tregunnah" "email" "etregunnahj2@devhub.com" "gender" "female" "ip_address" "173.203.22.227" "country" "China" "country_code" "CN" "city" "Yangcun" "longitude" "111.791539" "latitude" "22.170437" "last_login" "1597994427" +HSET "user:688" "first_name" "Leif" "last_name" "Willers" "email" "lwillersj3@nyu.edu" "gender" "male" "ip_address" "91.129.155.209" "country" "Russia" "country_code" "RU" "city" "Rutul" "longitude" "47.4238117" "latitude" "41.5335463" "last_login" "1575024416" +HSET "user:689" "first_name" "Matilde" "last_name" "Mecchi" "email" "mmecchij4@meetup.com" "gender" "female" "ip_address" "132.82.105.11" "country" "Poland" "country_code" "PL" "city" "Potok Złoty" "longitude" "17.5223977" "latitude" "50.3095461" "last_login" "1600162937" +HSET "user:690" "first_name" "Lurette" "last_name" "Wandrack" "email" "lwandrackj5@jigsy.com" "gender" "female" "ip_address" "122.156.66.231" "country" "Argentina" "country_code" "AR" "city" "Cosquín" "longitude" "-58.4714156" "latitude" "-34.6891726" "last_login" "1592019428" +HSET "user:691" "first_name" "Lucine" "last_name" "Gorelli" "email" "lgorellij6@cam.ac.uk" "gender" "female" "ip_address" "109.86.118.197" "country" "China" "country_code" "CN" "city" "Shatian" "longitude" "113.618216" "latitude" "22.919769" "last_login" "1597190371" +HSET "user:692" "first_name" "Jackquelin" "last_name" "Benzie" "email" "jbenziej7@nba.com" "gender" "female" "ip_address" "57.181.186.172" "country" "Micronesia" "country_code" "FM" "city" "Houk" "longitude" "149.3023702" "latitude" "6.6885285" "last_login" "1569401753" +HSET "user:693" "first_name" "Alvin" "last_name" "Griffen" "email" "agriffenj8@loc.gov" "gender" "male" "ip_address" "74.255.240.233" "country" "Russia" "country_code" "RU" "city" "Vishnyakovskiye Dachi" "longitude" "38.132545" "latitude" "55.7677139" "last_login" "1569774007" +HSET "user:694" "first_name" "Lilllie" "last_name" "Lammers" "email" "llammersj9@networksolutions.com" "gender" "female" "ip_address" "209.44.75.243" "country" "Ukraine" "country_code" "UA" "city" "Fastiv" "longitude" "29.9049684" "latitude" "50.0637682" "last_login" "1586381647" +HSET "user:695" "first_name" "Nelly" "last_name" "Berthomier" "email" "nberthomierja@disqus.com" "gender" "female" "ip_address" "207.74.31.192" "country" "Indonesia" "country_code" "ID" "city" "Bator" "longitude" "112.9029014" "latitude" "-6.9000441" "last_login" "1574931018" +HSET "user:696" "first_name" "Bessie" "last_name" "Ethersey" "email" "betherseyjb@eepurl.com" "gender" "female" "ip_address" "87.147.156.125" "country" "Netherlands" "country_code" "NL" "city" "Dordrecht" "longitude" "4.693265" "latitude" "51.7783026" "last_login" "1586865753" +HSET "user:697" "first_name" "Bertie" "last_name" "Boardman" "email" "bboardmanjc@xrea.com" "gender" "female" "ip_address" "235.103.77.47" "country" "China" "country_code" "CN" "city" "Liaoyang" "longitude" "123.236944" "latitude" "41.267244" "last_login" "1591524048" +HSET "user:698" "first_name" "Giffie" "last_name" "Tackell" "email" "gtackelljd@free.fr" "gender" "male" "ip_address" "136.252.145.224" "country" "China" "country_code" "CN" "city" "Dazuo" "longitude" "107.631177" "latitude" "25.700731" "last_login" "1568990016" +HSET "user:699" "first_name" "Sanders" "last_name" "Dady" "email" "sdadyje@guardian.co.uk" "gender" "male" "ip_address" "185.4.212.151" "country" "Pitcairn" "country_code" "PN" "city" "Adamstown" "longitude" "-130.1004636" "latitude" "-25.0662897" "last_login" "1581825693" +HSET "user:700" "first_name" "Talbot" "last_name" "Botger" "email" "tbotgerjf@drupal.org" "gender" "male" "ip_address" "131.53.181.0" "country" "China" "country_code" "CN" "city" "Shuihu" "longitude" "117.16587" "latitude" "32.477849" "last_login" "1577081234" +HSET "user:701" "first_name" "Stephi" "last_name" "Haggerty" "email" "shaggertyjg@yolasite.com" "gender" "female" "ip_address" "108.188.89.149" "country" "Thailand" "country_code" "TH" "city" "Si Satchanalai" "longitude" "99.7790227" "latitude" "17.4161103" "last_login" "1576085235" +HSET "user:702" "first_name" "Baxie" "last_name" "Lamperd" "email" "blamperdjh@fastcompany.com" "gender" "male" "ip_address" "162.156.141.123" "country" "Philippines" "country_code" "PH" "city" "Buan" "longitude" "121.6397151" "latitude" "13.939297" "last_login" "1597863835" +HSET "user:703" "first_name" "Teena" "last_name" "Folling" "email" "tfollingji@ovh.net" "gender" "female" "ip_address" "58.33.47.235" "country" "Canada" "country_code" "CA" "city" "Chester" "longitude" "-64.24874" "latitude" "44.55015" "last_login" "1594218986" +HSET "user:704" "first_name" "Chev" "last_name" "Curphey" "email" "ccurpheyjj@paypal.com" "gender" "male" "ip_address" "108.194.60.122" "country" "China" "country_code" "CN" "city" "Xianshuigu" "longitude" "117.395313" "latitude" "38.979636" "last_login" "1570938165" +HSET "user:705" "first_name" "Euphemia" "last_name" "Spridgen" "email" "espridgenjk@answers.com" "gender" "female" "ip_address" "243.2.33.15" "country" "Egypt" "country_code" "EG" "city" "Mallawī" "longitude" "30.8396598" "latitude" "27.7327603" "last_login" "1572267992" +HSET "user:706" "first_name" "Arabel" "last_name" "Hutsby" "email" "ahutsbyjl@studiopress.com" "gender" "female" "ip_address" "238.122.155.186" "country" "Italy" "country_code" "IT" "city" "Padova" "longitude" "11.8577064" "latitude" "45.402837" "last_login" "1568662374" +HSET "user:707" "first_name" "Cori" "last_name" "Haggus" "email" "chaggusjm@w3.org" "gender" "female" "ip_address" "112.174.89.187" "country" "United States" "country_code" "US" "city" "Rochester" "longitude" "-77.6120835" "latitude" "43.153975" "last_login" "1598887372" +HSET "user:708" "first_name" "Olia" "last_name" "Perrottet" "email" "operrottetjn@google.fr" "gender" "female" "ip_address" "228.4.74.113" "country" "Indonesia" "country_code" "ID" "city" "Jugantang" "longitude" "108.3301" "latitude" "-7.1004" "last_login" "1589830431" +HSET "user:709" "first_name" "Massimo" "last_name" "Tear" "email" "mtearjo@google.co.jp" "gender" "male" "ip_address" "69.190.65.234" "country" "France" "country_code" "FR" "city" "Fréjus" "longitude" "6.7329389" "latitude" "43.4320181" "last_login" "1575961579" +HSET "user:710" "first_name" "Wilie" "last_name" "Luesley" "email" "wluesleyjp@w3.org" "gender" "female" "ip_address" "142.135.98.149" "country" "Sweden" "country_code" "SE" "city" "Storvik" "longitude" "16.5293196" "latitude" "60.5842246" "last_login" "1588630780" +HSET "user:711" "first_name" "Nerita" "last_name" "Shimuk" "email" "nshimukjq@soup.io" "gender" "female" "ip_address" "61.89.197.132" "country" "Colombia" "country_code" "CO" "city" "Lérida" "longitude" "-74.912667" "latitude" "4.860823" "last_login" "1574954049" +HSET "user:712" "first_name" "Briant" "last_name" "Breinlein" "email" "bbreinleinjr@hc360.com" "gender" "male" "ip_address" "151.83.207.61" "country" "Russia" "country_code" "RU" "city" "Strogino" "longitude" "37.4219388" "latitude" "55.8024235" "last_login" "1587302187" +HSET "user:713" "first_name" "Elyn" "last_name" "Durrance" "email" "edurrancejs@apache.org" "gender" "female" "ip_address" "6.97.83.4" "country" "South Korea" "country_code" "KR" "city" "Wanju" "longitude" "127.253895" "latitude" "35.891275" "last_login" "1588349857" +HSET "user:714" "first_name" "Shellysheldon" "last_name" "Crutchley" "email" "scrutchleyjt@wikipedia.org" "gender" "male" "ip_address" "195.80.130.245" "country" "Brazil" "country_code" "BR" "city" "Correntina" "longitude" "-45.4498065" "latitude" "-13.4996213" "last_login" "1592625928" +HSET "user:715" "first_name" "Esther" "last_name" "Paley" "email" "epaleyju@mtv.com" "gender" "female" "ip_address" "126.17.10.94" "country" "Philippines" "country_code" "PH" "city" "Burirao" "longitude" "118.1437875" "latitude" "9.159579" "last_login" "1595610377" +HSET "user:716" "first_name" "Rae" "last_name" "Maddox" "email" "rmaddoxjv@google.com.au" "gender" "female" "ip_address" "132.143.20.44" "country" "Canada" "country_code" "CA" "city" "Beauharnois" "longitude" "-73.8746233" "latitude" "45.3044566" "last_login" "1574685296" +HSET "user:717" "first_name" "Ozzie" "last_name" "Hickford" "email" "ohickfordjw@accuweather.com" "gender" "male" "ip_address" "150.92.82.117" "country" "Russia" "country_code" "RU" "city" "Omsk" "longitude" "73.2498639" "latitude" "55.0614182" "last_login" "1570649467" +HSET "user:718" "first_name" "Wakefield" "last_name" "Dyster" "email" "wdysterjx@youtube.com" "gender" "male" "ip_address" "216.205.139.202" "country" "Colombia" "country_code" "CO" "city" "El Espino" "longitude" "-72.43286" "latitude" "6.4864" "last_login" "1585032682" +HSET "user:719" "first_name" "Ken" "last_name" "Cranny" "email" "kcrannyjy@360.cn" "gender" "male" "ip_address" "148.238.50.167" "country" "Reunion" "country_code" "RE" "city" "Saint-Denis" "longitude" "55.5243352" "latitude" "-20.9304923" "last_login" "1598184244" +HSET "user:720" "first_name" "Kylie" "last_name" "Bernardino" "email" "kbernardinojz@smh.com.au" "gender" "male" "ip_address" "5.197.11.84" "country" "Canada" "country_code" "CA" "city" "Atikokan" "longitude" "-91.62409" "latitude" "48.75667" "last_login" "1584835096" +HSET "user:721" "first_name" "Veda" "last_name" "Valett" "email" "vvalettk0@fc2.com" "gender" "female" "ip_address" "209.151.193.3" "country" "Thailand" "country_code" "TH" "city" "Rattanaburi" "longitude" "100.5053999" "latitude" "13.8263157" "last_login" "1588986712" +HSET "user:722" "first_name" "Moss" "last_name" "Tathacott" "email" "mtathacottk1@posterous.com" "gender" "male" "ip_address" "25.83.110.62" "country" "Japan" "country_code" "JP" "city" "Ichihara" "longitude" "136.6477771" "latitude" "36.3213507" "last_login" "1583670824" +HSET "user:723" "first_name" "Ashlan" "last_name" "Vernay" "email" "avernayk2@loc.gov" "gender" "female" "ip_address" "144.100.1.34" "country" "Czech Republic" "country_code" "CZ" "city" "Velké Svatoňovice" "longitude" "16.0198605" "latitude" "50.5374971" "last_login" "1584771257" +HSET "user:724" "first_name" "Matthew" "last_name" "Torbett" "email" "mtorbettk3@uiuc.edu" "gender" "male" "ip_address" "136.68.170.44" "country" "Oman" "country_code" "OM" "city" "Şūr" "longitude" "59.5066376" "latitude" "22.5652759" "last_login" "1580629296" +HSET "user:725" "first_name" "Raf" "last_name" "Van der Kruys" "email" "rvanderkruysk4@seesaa.net" "gender" "female" "ip_address" "210.151.184.54" "country" "France" "country_code" "FR" "city" "Parthenay" "longitude" "-0.5664231" "latitude" "46.6322044" "last_login" "1582847519" +HSET "user:726" "first_name" "Erda" "last_name" "Grieg" "email" "egriegk5@dmoz.org" "gender" "female" "ip_address" "85.234.21.47" "country" "Serbia" "country_code" "RS" "city" "Koceljeva" "longitude" "19.8223207" "latitude" "44.4693308" "last_login" "1569452698" +HSET "user:727" "first_name" "Beatrice" "last_name" "Gildea" "email" "bgildeak6@ovh.net" "gender" "female" "ip_address" "18.106.43.209" "country" "Colombia" "country_code" "CO" "city" "Ubaté" "longitude" "-73.818222" "latitude" "5.312024" "last_login" "1573990419" +HSET "user:728" "first_name" "Kane" "last_name" "Cowdery" "email" "kcowderyk7@apple.com" "gender" "male" "ip_address" "55.53.3.142" "country" "China" "country_code" "CN" "city" "Fucheng" "longitude" "116.144417" "latitude" "37.868872" "last_login" "1597161874" +HSET "user:729" "first_name" "Brandyn" "last_name" "Galloway" "email" "bgallowayk8@dell.com" "gender" "male" "ip_address" "211.63.253.212" "country" "Indonesia" "country_code" "ID" "city" "Paobokol" "longitude" "123.3682521" "latitude" "-8.4334199" "last_login" "1596559934" +HSET "user:730" "first_name" "Zerk" "last_name" "Chinnock" "email" "zchinnockk9@time.com" "gender" "male" "ip_address" "160.116.115.226" "country" "China" "country_code" "CN" "city" "Wangxian" "longitude" "108.408661" "latitude" "30.807667" "last_login" "1572510771" +HSET "user:731" "first_name" "Josefina" "last_name" "Stopper" "email" "jstopperka@mapy.cz" "gender" "female" "ip_address" "32.155.171.72" "country" "Colombia" "country_code" "CO" "city" "Flandes" "longitude" "-74.812294" "latitude" "4.2867309" "last_login" "1570603659" +HSET "user:732" "first_name" "Babita" "last_name" "Franssen" "email" "bfranssenkb@oakley.com" "gender" "female" "ip_address" "29.89.140.77" "country" "China" "country_code" "CN" "city" "Shanshu" "longitude" "102.555028" "latitude" "27.254639" "last_login" "1579081088" +HSET "user:733" "first_name" "Melisande" "last_name" "Everton" "email" "mevertonkc@reuters.com" "gender" "female" "ip_address" "72.212.156.5" "country" "France" "country_code" "FR" "city" "Dijon" "longitude" "2.5135985" "latitude" "45.2977605" "last_login" "1571985878" +HSET "user:734" "first_name" "Wendye" "last_name" "Ovitz" "email" "wovitzkd@typepad.com" "gender" "female" "ip_address" "212.211.203.163" "country" "Indonesia" "country_code" "ID" "city" "Cabak Satu" "longitude" "106.6914555" "latitude" "-6.2287891" "last_login" "1584844423" +HSET "user:735" "first_name" "Karlens" "last_name" "Points" "email" "kpointske@ustream.tv" "gender" "male" "ip_address" "158.249.246.26" "country" "Macedonia" "country_code" "MK" "city" "Матејче" "longitude" "21.553379" "latitude" "42.1088311" "last_login" "1594913443" +HSET "user:736" "first_name" "Quintana" "last_name" "Fragino" "email" "qfraginokf@admin.ch" "gender" "female" "ip_address" "72.221.181.175" "country" "Portugal" "country_code" "PT" "city" "Louredo" "longitude" "-8.4554561" "latitude" "40.9743604" "last_login" "1597315578" +HSET "user:737" "first_name" "Lesli" "last_name" "Karpenya" "email" "lkarpenyakg@diigo.com" "gender" "female" "ip_address" "148.57.199.131" "country" "Cuba" "country_code" "CU" "city" "La Habana Vieja" "longitude" "-82.3533266" "latitude" "23.1343601" "last_login" "1572266495" +HSET "user:738" "first_name" "Ingar" "last_name" "Nazareth" "email" "inazarethkh@stanford.edu" "gender" "male" "ip_address" "195.213.193.155" "country" "China" "country_code" "CN" "city" "Pinghu" "longitude" "121.015142" "latitude" "30.677233" "last_login" "1599522545" +HSET "user:739" "first_name" "Joycelin" "last_name" "Eccott" "email" "jeccottki@ca.gov" "gender" "female" "ip_address" "33.160.222.85" "country" "China" "country_code" "CN" "city" "Xiaheqing" "longitude" "98.981746" "latitude" "39.553172" "last_login" "1589957062" +HSET "user:740" "first_name" "Enrica" "last_name" "Totton" "email" "etottonkj@nbcnews.com" "gender" "female" "ip_address" "253.69.227.157" "country" "China" "country_code" "CN" "city" "Huatanshan" "longitude" "117.821005" "latitude" "28.706919" "last_login" "1581133871" +HSET "user:741" "first_name" "Shanie" "last_name" "Dederick" "email" "sdederickkk@sakura.ne.jp" "gender" "female" "ip_address" "112.162.27.145" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Tân Yên" "longitude" "106.0875326" "latitude" "21.3785203" "last_login" "1589700195" +HSET "user:742" "first_name" "Hildy" "last_name" "Tzuker" "email" "htzukerkl@loc.gov" "gender" "female" "ip_address" "148.13.247.26" "country" "Portugal" "country_code" "PT" "city" "Azenha" "longitude" "-8.4956553" "latitude" "40.9303255" "last_login" "1568619694" +HSET "user:743" "first_name" "Harwell" "last_name" "Crathorne" "email" "hcrathornekm@ehow.com" "gender" "male" "ip_address" "56.60.29.62" "country" "China" "country_code" "CN" "city" "Yanjiang" "longitude" "104.677091" "latitude" "30.108216" "last_login" "1595612325" +HSET "user:744" "first_name" "Sandy" "last_name" "Fane" "email" "sfanekn@japanpost.jp" "gender" "female" "ip_address" "158.103.130.46" "country" "China" "country_code" "CN" "city" "Yanyang" "longitude" "102.835223" "latitude" "23.219932" "last_login" "1569480583" +HSET "user:745" "first_name" "Hillier" "last_name" "Gerin" "email" "hgerinko@example.com" "gender" "male" "ip_address" "100.85.132.133" "country" "Croatia" "country_code" "HR" "city" "Selnica" "longitude" "16.0446553" "latitude" "46.0261155" "last_login" "1589034153" +HSET "user:746" "first_name" "Hedwig" "last_name" "Baldetti" "email" "hbaldettikp@goodreads.com" "gender" "female" "ip_address" "140.200.91.40" "country" "Greece" "country_code" "GR" "city" "Mirsíni" "longitude" "21.2374124" "latitude" "37.9209684" "last_login" "1599948858" +HSET "user:747" "first_name" "Colby" "last_name" "Wolfendale" "email" "cwolfendalekq@sina.com.cn" "gender" "male" "ip_address" "126.125.245.245" "country" "Japan" "country_code" "JP" "city" "Sakata" "longitude" "140.9723283" "latitude" "37.5092473" "last_login" "1579926043" +HSET "user:748" "first_name" "Jermaine" "last_name" "Alenichicov" "email" "jalenichicovkr@yolasite.com" "gender" "male" "ip_address" "138.212.137.196" "country" "Haiti" "country_code" "HT" "city" "Petite Anse" "longitude" "-73.1554281" "latitude" "19.6300952" "last_login" "1582678843" +HSET "user:749" "first_name" "Stanfield" "last_name" "Charpin" "email" "scharpinks@yale.edu" "gender" "male" "ip_address" "48.197.248.134" "country" "Russia" "country_code" "RU" "city" "Gus’-Zheleznyy" "longitude" "41.1651836" "latitude" "55.0488923" "last_login" "1599343772" +HSET "user:750" "first_name" "Adi" "last_name" "Goundrill" "email" "agoundrillkt@tinypic.com" "gender" "female" "ip_address" "24.39.208.41" "country" "Russia" "country_code" "RU" "city" "Artybash" "longitude" "87.2508267" "latitude" "51.791159" "last_login" "1578390514" +HSET "user:751" "first_name" "Georas" "last_name" "Matei" "email" "gmateiku@fotki.com" "gender" "male" "ip_address" "95.161.179.105" "country" "Indonesia" "country_code" "ID" "city" "Kenyau" "longitude" "114.4108587" "latitude" "-1.4580748" "last_login" "1575483465" +HSET "user:752" "first_name" "Nanice" "last_name" "Karpenko" "email" "nkarpenkokv@livejournal.com" "gender" "female" "ip_address" "87.72.231.163" "country" "Brazil" "country_code" "BR" "city" "Vargem Grande do Sul" "longitude" "-46.8925845" "latitude" "-21.8324773" "last_login" "1572934013" +HSET "user:753" "first_name" "Renae" "last_name" "Michele" "email" "rmichelekw@webs.com" "gender" "female" "ip_address" "181.20.234.30" "country" "Canada" "country_code" "CA" "city" "Revelstoke" "longitude" "-118.2023" "latitude" "50.98317" "last_login" "1589070272" +HSET "user:754" "first_name" "Lizzy" "last_name" "Stayt" "email" "lstaytkx@sina.com.cn" "gender" "female" "ip_address" "0.123.15.160" "country" "Myanmar" "country_code" "MM" "city" "Thongwa" "longitude" "96.5329775" "latitude" "16.7646219" "last_login" "1594794774" +HSET "user:755" "first_name" "Giavani" "last_name" "O' Dornan" "email" "godornanky@wp.com" "gender" "male" "ip_address" "81.105.205.7" "country" "Japan" "country_code" "JP" "city" "Mobara" "longitude" "140.628425" "latitude" "37.5330237" "last_login" "1595329344" +HSET "user:756" "first_name" "Perl" "last_name" "Bisiker" "email" "pbisikerkz@buzzfeed.com" "gender" "female" "ip_address" "193.36.31.225" "country" "Cameroon" "country_code" "CM" "city" "Fundong" "longitude" "10.2852532" "latitude" "6.2820276" "last_login" "1574068418" +HSET "user:757" "first_name" "Cullie" "last_name" "Baise" "email" "cbaisel0@gov.uk" "gender" "male" "ip_address" "150.135.173.63" "country" "Thailand" "country_code" "TH" "city" "Wang Yang" "longitude" "104.4490398" "latitude" "17.0740883" "last_login" "1597917675" +HSET "user:758" "first_name" "Dolly" "last_name" "Molfino" "email" "dmolfinol1@businesswire.com" "gender" "female" "ip_address" "95.19.74.6" "country" "Thailand" "country_code" "TH" "city" "Kabin Buri" "longitude" "101.7196704" "latitude" "13.9534752" "last_login" "1569566380" +HSET "user:759" "first_name" "Dame" "last_name" "Rouby" "email" "droubyl2@youku.com" "gender" "male" "ip_address" "124.146.69.208" "country" "Russia" "country_code" "RU" "city" "Belozërskoye" "longitude" "65.5756726" "latitude" "55.8240814" "last_login" "1589993266" +HSET "user:760" "first_name" "Roselin" "last_name" "Kobieriecki" "email" "rkobierieckil3@twitpic.com" "gender" "female" "ip_address" "74.84.20.19" "country" "South Africa" "country_code" "ZA" "city" "Jansenville" "longitude" "24.6549185" "latitude" "-32.943528" "last_login" "1575250608" +HSET "user:761" "first_name" "Dareen" "last_name" "Fencott" "email" "dfencottl4@flavors.me" "gender" "female" "ip_address" "107.36.115.53" "country" "Indonesia" "country_code" "ID" "city" "Redakodi" "longitude" "119.2271" "latitude" "-9.4542" "last_login" "1569625394" +HSET "user:762" "first_name" "Raymond" "last_name" "Champagne" "email" "rchampagnel5@goo.gl" "gender" "male" "ip_address" "170.216.104.29" "country" "Indonesia" "country_code" "ID" "city" "Cimanggu" "longitude" "106.7714" "latitude" "-6.956164" "last_login" "1594767156" +HSET "user:763" "first_name" "Valdemar" "last_name" "Ibbetson" "email" "vibbetsonl6@netvibes.com" "gender" "male" "ip_address" "14.242.148.70" "country" "Indonesia" "country_code" "ID" "city" "Bandaran" "longitude" "117.1544163" "latitude" "-0.4836064" "last_login" "1577341343" +HSET "user:764" "first_name" "Irv" "last_name" "Lammiman" "email" "ilammimanl7@digg.com" "gender" "male" "ip_address" "141.241.14.151" "country" "Namibia" "country_code" "NA" "city" "Otavi" "longitude" "17.3316667" "latitude" "-19.6339763" "last_login" "1594041090" +HSET "user:765" "first_name" "Renaldo" "last_name" "Kenn" "email" "rkennl8@mapy.cz" "gender" "male" "ip_address" "180.252.156.250" "country" "Peru" "country_code" "PE" "city" "Hongos" "longitude" "-77.7267877" "latitude" "-9.1472165" "last_login" "1571942656" +HSET "user:766" "first_name" "Mirabella" "last_name" "Stubbings" "email" "mstubbingsl9@weather.com" "gender" "female" "ip_address" "181.86.144.60" "country" "Portugal" "country_code" "PT" "city" "Penedono" "longitude" "-7.3943499" "latitude" "40.9903208" "last_login" "1599721729" +HSET "user:767" "first_name" "Kathrine" "last_name" "Shawyers" "email" "kshawyersla@irs.gov" "gender" "female" "ip_address" "246.254.180.91" "country" "Portugal" "country_code" "PT" "city" "Além do Rio" "longitude" "-7.9783991" "latitude" "40.6043141" "last_login" "1584564751" +HSET "user:768" "first_name" "Jan" "last_name" "Rosencrantz" "email" "jrosencrantzlb@chronoengine.com" "gender" "male" "ip_address" "201.170.147.22" "country" "United Arab Emirates" "country_code" "AE" "city" "Dibba Al-Fujairah" "longitude" "56.2594033" "latitude" "25.5911171" "last_login" "1592740052" +HSET "user:769" "first_name" "Erl" "last_name" "Woodhouse" "email" "ewoodhouselc@51.la" "gender" "male" "ip_address" "141.200.91.195" "country" "China" "country_code" "CN" "city" "Cishangang" "longitude" "119.549715" "latitude" "31.072149" "last_login" "1574965258" +HSET "user:770" "first_name" "Shandee" "last_name" "Makin" "email" "smakinld@youtu.be" "gender" "female" "ip_address" "121.102.15.220" "country" "New Zealand" "country_code" "NZ" "city" "Gore" "longitude" "168.9313628" "latitude" "-46.117645" "last_login" "1586679827" +HSET "user:771" "first_name" "Jillene" "last_name" "Penritt" "email" "jpenrittle@stumbleupon.com" "gender" "female" "ip_address" "36.216.50.72" "country" "China" "country_code" "CN" "city" "Qingshan" "longitude" "114.385538" "latitude" "30.63963" "last_login" "1595742408" +HSET "user:772" "first_name" "Rosanna" "last_name" "Manhare" "email" "rmanharelf@hibu.com" "gender" "female" "ip_address" "26.145.214.253" "country" "Canada" "country_code" "CA" "city" "Lac du Bonnet" "longitude" "-96.06116" "latitude" "50.2536" "last_login" "1582441456" +HSET "user:773" "first_name" "Pennie" "last_name" "Flemming" "email" "pflemminglg@angelfire.com" "gender" "male" "ip_address" "78.157.233.191" "country" "Serbia" "country_code" "RS" "city" "Banatski Dvor" "longitude" "20.5135485" "latitude" "45.5260852" "last_login" "1598888819" +HSET "user:774" "first_name" "Bunni" "last_name" "Clyma" "email" "bclymalh@howstuffworks.com" "gender" "female" "ip_address" "180.186.187.11" "country" "France" "country_code" "FR" "city" "Besançon" "longitude" "5.970378" "latitude" "47.304702" "last_login" "1591984013" +HSET "user:775" "first_name" "Ingram" "last_name" "Washbrook" "email" "iwashbrookli@google.co.uk" "gender" "male" "ip_address" "197.112.1.190" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Živinice" "longitude" "18.6510559" "latitude" "44.4466286" "last_login" "1589925469" +HSET "user:776" "first_name" "Sam" "last_name" "Sedgman" "email" "ssedgmanlj@deviantart.com" "gender" "male" "ip_address" "58.5.18.151" "country" "Belarus" "country_code" "BY" "city" "Turets-Bayary" "longitude" "26.6581" "latitude" "54.3785" "last_login" "1579560957" +HSET "user:777" "first_name" "Ianthe" "last_name" "Yarham" "email" "iyarhamlk@macromedia.com" "gender" "female" "ip_address" "224.150.9.184" "country" "China" "country_code" "CN" "city" "Yisuhe" "longitude" "112.955638" "latitude" "27.77268" "last_login" "1588005610" +HSET "user:778" "first_name" "Candra" "last_name" "Dalley" "email" "cdalleyll@slate.com" "gender" "female" "ip_address" "62.58.112.213" "country" "China" "country_code" "CN" "city" "Xiaoling" "longitude" "109.156279" "latitude" "18.298838" "last_login" "1568685484" +HSET "user:779" "first_name" "Henri" "last_name" "Gonnelly" "email" "hgonnellylm@simplemachines.org" "gender" "male" "ip_address" "25.149.163.225" "country" "Poland" "country_code" "PL" "city" "Bełżyce" "longitude" "22.28024" "latitude" "51.17404" "last_login" "1597049143" +HSET "user:780" "first_name" "Hamid" "last_name" "Pirrey" "email" "hpirreyln@icq.com" "gender" "male" "ip_address" "10.186.176.222" "country" "Philippines" "country_code" "PH" "city" "Agbannawag" "longitude" "121.1004925" "latitude" "15.6941944" "last_login" "1587858057" +HSET "user:781" "first_name" "Letta" "last_name" "Deveril" "email" "ldeverillo@webeden.co.uk" "gender" "female" "ip_address" "119.118.61.167" "country" "Indonesia" "country_code" "ID" "city" "Sumberbatas" "longitude" "110.7815994" "latitude" "-7.5568648" "last_login" "1570460049" +HSET "user:782" "first_name" "Orazio" "last_name" "Kerton" "email" "okertonlp@linkedin.com" "gender" "male" "ip_address" "188.221.30.30" "country" "Niger" "country_code" "NE" "city" "Téra" "longitude" "0.7556575" "latitude" "14.0031627" "last_login" "1572705335" +HSET "user:783" "first_name" "Roscoe" "last_name" "Gander" "email" "rganderlq@mac.com" "gender" "male" "ip_address" "51.83.200.184" "country" "Portugal" "country_code" "PT" "city" "Barrosa" "longitude" "-8.755077" "latitude" "38.9587954" "last_login" "1595668316" +HSET "user:784" "first_name" "Idalina" "last_name" "Howson" "email" "ihowsonlr@cdc.gov" "gender" "female" "ip_address" "221.160.157.80" "country" "Cameroon" "country_code" "CM" "city" "Belo" "longitude" "10.2572084" "latitude" "6.1360612" "last_login" "1575123022" +HSET "user:785" "first_name" "Lyman" "last_name" "Neames" "email" "lneamesls@istockphoto.com" "gender" "male" "ip_address" "32.31.155.59" "country" "Philippines" "country_code" "PH" "city" "Bagacay" "longitude" "123.7526021" "latitude" "13.0748766" "last_login" "1573019792" +HSET "user:786" "first_name" "Rooney" "last_name" "Gossington" "email" "rgossingtonlt@mail.ru" "gender" "male" "ip_address" "97.192.150.116" "country" "Russia" "country_code" "RU" "city" "Vyritsa" "longitude" "30.3268427" "latitude" "59.4051627" "last_login" "1582020943" +HSET "user:787" "first_name" "Chris" "last_name" "Sheasby" "email" "csheasbylu@nytimes.com" "gender" "female" "ip_address" "155.24.250.12" "country" "Portugal" "country_code" "PT" "city" "Malveira" "longitude" "-9.252733" "latitude" "38.9374004" "last_login" "1568819130" +HSET "user:788" "first_name" "Tedman" "last_name" "Marmion" "email" "tmarmionlv@aboutads.info" "gender" "male" "ip_address" "37.3.183.71" "country" "Philippines" "country_code" "PH" "city" "Damawato" "longitude" "124.8730516" "latitude" "6.7885037" "last_login" "1588541690" +HSET "user:789" "first_name" "Isac" "last_name" "Woller" "email" "iwollerlw@uiuc.edu" "gender" "male" "ip_address" "250.2.81.32" "country" "France" "country_code" "FR" "city" "Bry-sur-Marne" "longitude" "2.5198901" "latitude" "48.835233" "last_login" "1598575752" +HSET "user:790" "first_name" "Martynne" "last_name" "Yakushkev" "email" "myakushkevlx@chron.com" "gender" "female" "ip_address" "185.235.120.174" "country" "Philippines" "country_code" "PH" "city" "Jarigue" "longitude" "121.44041" "latitude" "11.86538" "last_login" "1578111528" +HSET "user:791" "first_name" "Friedrick" "last_name" "Cragg" "email" "fcraggly@t.co" "gender" "male" "ip_address" "59.94.164.161" "country" "Albania" "country_code" "AL" "city" "Shkodër" "longitude" "19.5032559" "latitude" "42.0692985" "last_login" "1592142287" +HSET "user:792" "first_name" "Fianna" "last_name" "Tallet" "email" "ftalletlz@toplist.cz" "gender" "female" "ip_address" "129.227.66.120" "country" "South Africa" "country_code" "ZA" "city" "Creighton" "longitude" "29.8439109" "latitude" "-30.031249" "last_login" "1570772370" +HSET "user:793" "first_name" "Lezlie" "last_name" "Essery" "email" "lesserym0@surveymonkey.com" "gender" "female" "ip_address" "202.229.107.202" "country" "South Africa" "country_code" "ZA" "city" "Allanridge" "longitude" "26.6494394" "latitude" "-27.7863104" "last_login" "1588956763" +HSET "user:794" "first_name" "Melba" "last_name" "Fossitt" "email" "mfossittm1@bbc.co.uk" "gender" "female" "ip_address" "220.223.96.107" "country" "Peru" "country_code" "PE" "city" "Huallanca" "longitude" "-76.9398195" "latitude" "-9.8975064" "last_login" "1594983332" +HSET "user:795" "first_name" "Adan" "last_name" "Machen" "email" "amachenm2@webs.com" "gender" "female" "ip_address" "255.254.54.218" "country" "Armenia" "country_code" "AM" "city" "Artsvaberd" "longitude" "45.4714491" "latitude" "40.8440444" "last_login" "1574861999" +HSET "user:796" "first_name" "Xenia" "last_name" "Shaplin" "email" "xshaplinm3@parallels.com" "gender" "female" "ip_address" "47.100.222.170" "country" "Philippines" "country_code" "PH" "city" "Koronadal" "longitude" "124.8060125" "latitude" "6.4675486" "last_login" "1570066631" +HSET "user:797" "first_name" "Janifer" "last_name" "Drakes" "email" "jdrakesm4@cbslocal.com" "gender" "female" "ip_address" "3.50.104.145" "country" "Russia" "country_code" "RU" "city" "Novotroitsk" "longitude" "44.8151638" "latitude" "54.3843215" "last_login" "1574599962" +HSET "user:798" "first_name" "Lyle" "last_name" "Allingham" "email" "lallinghamm5@webnode.com" "gender" "male" "ip_address" "135.186.124.230" "country" "Poland" "country_code" "PL" "city" "Zamość" "longitude" "19.708599" "latitude" "51.610281" "last_login" "1584364060" +HSET "user:799" "first_name" "Luisa" "last_name" "Fawthorpe" "email" "lfawthorpem6@gnu.org" "gender" "female" "ip_address" "192.249.147.172" "country" "Portugal" "country_code" "PT" "city" "Pedrulheira" "longitude" "-8.9107106" "latitude" "39.7383486" "last_login" "1596248478" +HSET "user:800" "first_name" "Dennison" "last_name" "Lissenden" "email" "dlissendenm7@gov.uk" "gender" "male" "ip_address" "174.203.9.103" "country" "United States" "country_code" "US" "city" "Stamford" "longitude" "-73.541744" "latitude" "41.0901834" "last_login" "1569417486" +HSET "user:801" "first_name" "Cristy" "last_name" "Newstead" "email" "cnewsteadm8@tumblr.com" "gender" "female" "ip_address" "34.69.138.139" "country" "China" "country_code" "CN" "city" "Xingguo" "longitude" "115.36319" "latitude" "26.337937" "last_login" "1585490977" +HSET "user:802" "first_name" "Idell" "last_name" "Newell" "email" "inewellm9@prnewswire.com" "gender" "female" "ip_address" "37.226.158.202" "country" "South Africa" "country_code" "ZA" "city" "Port Nolloth" "longitude" "17.256296" "latitude" "-28.8241753" "last_login" "1598431255" +HSET "user:803" "first_name" "Jasun" "last_name" "Gillanders" "email" "jgillandersma@exblog.jp" "gender" "male" "ip_address" "36.183.140.249" "country" "China" "country_code" "CN" "city" "Lujiao" "longitude" "109.742421" "latitude" "24.874839" "last_login" "1593594518" +HSET "user:804" "first_name" "Padget" "last_name" "Rickford" "email" "prickfordmb@blog.com" "gender" "male" "ip_address" "172.16.163.87" "country" "Finland" "country_code" "FI" "city" "Renko" "longitude" "24.2869324" "latitude" "60.8936893" "last_login" "1591225480" +HSET "user:805" "first_name" "Megen" "last_name" "Kennett" "email" "mkennettmc@csmonitor.com" "gender" "female" "ip_address" "175.106.201.123" "country" "Portugal" "country_code" "PT" "city" "Cochadas" "longitude" "-8.7330787" "latitude" "40.370514" "last_login" "1597684521" +HSET "user:806" "first_name" "Blondy" "last_name" "Bernardotte" "email" "bbernardottemd@jiathis.com" "gender" "female" "ip_address" "193.248.196.157" "country" "Philippines" "country_code" "PH" "city" "Concepcion" "longitude" "121.1138058" "latitude" "14.6688068" "last_login" "1574831789" +HSET "user:807" "first_name" "Bryon" "last_name" "McLugish" "email" "bmclugishme@addtoany.com" "gender" "male" "ip_address" "84.3.54.197" "country" "Norway" "country_code" "NO" "city" "Tønsberg" "longitude" "10.4562219" "latitude" "59.3120256" "last_login" "1588610643" +HSET "user:808" "first_name" "Blancha" "last_name" "Geibel" "email" "bgeibelmf@gnu.org" "gender" "female" "ip_address" "116.192.172.117" "country" "Indonesia" "country_code" "ID" "city" "Cimanglid" "longitude" "107.7073688" "latitude" "-6.6958883" "last_login" "1576593385" +HSET "user:809" "first_name" "Meier" "last_name" "Gurling" "email" "mgurlingmg@omniture.com" "gender" "male" "ip_address" "97.3.182.95" "country" "Nigeria" "country_code" "NG" "city" "Onueke" "longitude" "8.0219738" "latitude" "6.1323473" "last_login" "1596378059" +HSET "user:810" "first_name" "Thekla" "last_name" "Kilbey" "email" "tkilbeymh@edublogs.org" "gender" "female" "ip_address" "87.232.226.215" "country" "Indonesia" "country_code" "ID" "city" "Langgapayung" "longitude" "99.9688636" "latitude" "1.6699249" "last_login" "1571698008" +HSET "user:811" "first_name" "Remus" "last_name" "Marcu" "email" "rmarcumi@google.com" "gender" "male" "ip_address" "159.17.181.189" "country" "Philippines" "country_code" "PH" "city" "Macarse" "longitude" "120.77476" "latitude" "15.42495" "last_login" "1585724653" +HSET "user:812" "first_name" "Elene" "last_name" "Garrioch" "email" "egarriochmj@hud.gov" "gender" "female" "ip_address" "109.131.5.156" "country" "Haiti" "country_code" "HT" "city" "Petite Anse" "longitude" "-73.1554281" "latitude" "19.6300952" "last_login" "1584484546" +HSET "user:813" "first_name" "Caitlin" "last_name" "Middleweek" "email" "cmiddleweekmk@bloglines.com" "gender" "female" "ip_address" "72.37.43.189" "country" "Spain" "country_code" "ES" "city" "Murcia" "longitude" "-1.1371011" "latitude" "37.9868856" "last_login" "1580688495" +HSET "user:814" "first_name" "Llewellyn" "last_name" "Norval" "email" "lnorvalml@thetimes.co.uk" "gender" "male" "ip_address" "69.151.139.8" "country" "China" "country_code" "CN" "city" "Banqiao" "longitude" "110.3838909" "latitude" "35.4937018" "last_login" "1576809191" +HSET "user:815" "first_name" "Keelia" "last_name" "Winfred" "email" "kwinfredmm@yolasite.com" "gender" "female" "ip_address" "112.55.171.77" "country" "Costa Rica" "country_code" "CR" "city" "San Juan de Dios" "longitude" "-84.081486" "latitude" "9.879065" "last_login" "1592325764" +HSET "user:816" "first_name" "Sandy" "last_name" "McMahon" "email" "smcmahonmn@theguardian.com" "gender" "male" "ip_address" "87.54.217.111" "country" "Ukraine" "country_code" "UA" "city" "Velyka Lepetykha" "longitude" "33.9366442" "latitude" "47.1634031" "last_login" "1570517370" +HSET "user:817" "first_name" "Chen" "last_name" "Hallock" "email" "challockmo@princeton.edu" "gender" "male" "ip_address" "211.217.57.166" "country" "Libya" "country_code" "LY" "city" "Marādah" "longitude" "19.2058436" "latitude" "29.2187967" "last_login" "1599147048" +HSET "user:818" "first_name" "Frazer" "last_name" "Newvill" "email" "fnewvillmp@adobe.com" "gender" "male" "ip_address" "101.241.177.156" "country" "Indonesia" "country_code" "ID" "city" "Bangunharja" "longitude" "108.5522531" "latitude" "-7.3077709" "last_login" "1583445902" +HSET "user:819" "first_name" "Kenyon" "last_name" "Starmont" "email" "kstarmontmq@ask.com" "gender" "male" "ip_address" "159.116.147.45" "country" "China" "country_code" "CN" "city" "Yangchengzhuang" "longitude" "117.059325" "latitude" "38.942367" "last_login" "1592911772" +HSET "user:820" "first_name" "Roger" "last_name" "Durrington" "email" "rdurringtonmr@scientificamerican.com" "gender" "male" "ip_address" "195.210.65.71" "country" "China" "country_code" "CN" "city" "Huantuo" "longitude" "117.324531" "latitude" "39.22909" "last_login" "1580573359" +HSET "user:821" "first_name" "Sharleen" "last_name" "Sexton" "email" "ssextonms@shareasale.com" "gender" "female" "ip_address" "114.243.130.96" "country" "Russia" "country_code" "RU" "city" "Tygda" "longitude" "126.33057" "latitude" "53.110584" "last_login" "1587578096" +HSET "user:822" "first_name" "Chicky" "last_name" "Davidson" "email" "cdavidsonmt@freewebs.com" "gender" "male" "ip_address" "167.198.163.150" "country" "Japan" "country_code" "JP" "city" "Iwanuma" "longitude" "140.3449585" "latitude" "35.4035493" "last_login" "1582588184" +HSET "user:823" "first_name" "Weider" "last_name" "Gaynes" "email" "wgaynesmu@fda.gov" "gender" "male" "ip_address" "198.87.48.196" "country" "China" "country_code" "CN" "city" "Aiximan" "longitude" "76.499773" "latitude" "39.244385" "last_login" "1570589920" +HSET "user:824" "first_name" "Marleen" "last_name" "Schapero" "email" "mschaperomv@bbb.org" "gender" "female" "ip_address" "78.36.199.131" "country" "China" "country_code" "CN" "city" "Xiwanzi" "longitude" "115.279249" "latitude" "40.974829" "last_login" "1587765841" +HSET "user:825" "first_name" "Rabi" "last_name" "Langford" "email" "rlangfordmw@ocn.ne.jp" "gender" "male" "ip_address" "82.248.248.0" "country" "Jordan" "country_code" "JO" "city" "Al Jubayhah" "longitude" "35.881947" "latitude" "32.0188765" "last_login" "1570058323" +HSET "user:826" "first_name" "Marje" "last_name" "Franzel" "email" "mfranzelmx@google.it" "gender" "female" "ip_address" "225.185.234.228" "country" "Ukraine" "country_code" "UA" "city" "Shostka" "longitude" "33.4966152" "latitude" "51.8757044" "last_login" "1584982200" +HSET "user:827" "first_name" "De" "last_name" "Duthie" "email" "dduthiemy@yelp.com" "gender" "female" "ip_address" "200.85.160.164" "country" "Russia" "country_code" "RU" "city" "Kostino" "longitude" "37.520581" "latitude" "56.7478077" "last_login" "1571438731" +HSET "user:828" "first_name" "Lexy" "last_name" "Jost" "email" "ljostmz@yandex.ru" "gender" "female" "ip_address" "177.9.174.227" "country" "United States" "country_code" "US" "city" "Huntsville" "longitude" "-86.566246" "latitude" "34.6540922" "last_login" "1574134567" +HSET "user:829" "first_name" "Madge" "last_name" "Stoate" "email" "mstoaten0@topsy.com" "gender" "female" "ip_address" "102.85.76.156" "country" "Indonesia" "country_code" "ID" "city" "Jatirejo" "longitude" "112.4172256" "latitude" "-7.617735" "last_login" "1587410238" +HSET "user:830" "first_name" "Issy" "last_name" "Jancar" "email" "ijancarn1@foxnews.com" "gender" "female" "ip_address" "205.39.71.186" "country" "Philippines" "country_code" "PH" "city" "Natonin" "longitude" "121.287152" "latitude" "17.125337" "last_login" "1579164216" +HSET "user:831" "first_name" "Lanie" "last_name" "Ivermee" "email" "livermeen2@twitpic.com" "gender" "male" "ip_address" "82.119.116.86" "country" "China" "country_code" "CN" "city" "Xingyi" "longitude" "104.895467" "latitude" "25.09204" "last_login" "1585020977" +HSET "user:832" "first_name" "Arron" "last_name" "Carrier" "email" "acarriern3@wsj.com" "gender" "male" "ip_address" "12.106.33.230" "country" "Brazil" "country_code" "BR" "city" "Mutum" "longitude" "-41.4812771" "latitude" "-19.9125279" "last_login" "1599901626" +HSET "user:833" "first_name" "Querida" "last_name" "Davey" "email" "qdaveyn4@elegantthemes.com" "gender" "female" "ip_address" "150.109.210.129" "country" "China" "country_code" "CN" "city" "Yujiao" "longitude" "117.79664" "latitude" "26.397624" "last_login" "1598741493" +HSET "user:834" "first_name" "Christopher" "last_name" "Areles" "email" "carelesn5@youtube.com" "gender" "male" "ip_address" "219.109.75.2" "country" "Tanzania" "country_code" "TZ" "city" "Magomeni" "longitude" "39.2596277" "latitude" "-6.8107874" "last_login" "1595547603" +HSET "user:835" "first_name" "Russ" "last_name" "Henric" "email" "rhenricn6@list-manage.com" "gender" "male" "ip_address" "125.187.99.95" "country" "Brazil" "country_code" "BR" "city" "Caeté" "longitude" "-43.6644238" "latitude" "-19.8852788" "last_login" "1582004073" +HSET "user:836" "first_name" "Chane" "last_name" "Napolitano" "email" "cnapolitanon7@shinystat.com" "gender" "male" "ip_address" "155.153.219.87" "country" "Venezuela" "country_code" "VE" "city" "San Juan Bautista" "longitude" "-63.9379244" "latitude" "11.0124684" "last_login" "1572609752" +HSET "user:837" "first_name" "Robby" "last_name" "Hambers" "email" "rhambersn8@simplemachines.org" "gender" "male" "ip_address" "69.228.181.179" "country" "Cameroon" "country_code" "CM" "city" "Mutengene" "longitude" "9.3146014" "latitude" "4.0892492" "last_login" "1581705503" +HSET "user:838" "first_name" "Salem" "last_name" "Sleet" "email" "ssleetn9@hexun.com" "gender" "male" "ip_address" "124.48.212.110" "country" "Poland" "country_code" "PL" "city" "Kępno" "longitude" "17.9890591" "latitude" "51.2781356" "last_login" "1575464428" +HSET "user:839" "first_name" "Eugenie" "last_name" "Tenman" "email" "etenmanna@tuttocitta.it" "gender" "female" "ip_address" "145.38.4.199" "country" "Indonesia" "country_code" "ID" "city" "Kadubadak" "longitude" "105.8466437" "latitude" "-6.6551319" "last_login" "1598265721" +HSET "user:840" "first_name" "Caldwell" "last_name" "Boniface" "email" "cbonifacenb@php.net" "gender" "male" "ip_address" "83.151.112.51" "country" "Philippines" "country_code" "PH" "city" "Lumbatan" "longitude" "124.2474479" "latitude" "7.7553228" "last_login" "1595496341" +HSET "user:841" "first_name" "Caye" "last_name" "MacAlister" "email" "cmacalisternc@go.com" "gender" "female" "ip_address" "131.7.125.183" "country" "Brazil" "country_code" "BR" "city" "Nova Viçosa" "longitude" "-39.6930912" "latitude" "-17.8938032" "last_login" "1591297463" +HSET "user:842" "first_name" "Moll" "last_name" "Duggan" "email" "mduggannd@scribd.com" "gender" "female" "ip_address" "11.145.100.194" "country" "Poland" "country_code" "PL" "city" "Lisewo Malborskie" "longitude" "18.82934" "latitude" "54.0962372" "last_login" "1574023059" +HSET "user:843" "first_name" "Shaun" "last_name" "Brammar" "email" "sbrammarne@aboutads.info" "gender" "male" "ip_address" "8.146.50.162" "country" "Philippines" "country_code" "PH" "city" "Balud" "longitude" "121.0601862" "latitude" "14.6733187" "last_login" "1575106146" +HSET "user:844" "first_name" "Nelly" "last_name" "Tonna" "email" "ntonnanf@nasa.gov" "gender" "female" "ip_address" "78.145.45.159" "country" "Portugal" "country_code" "PT" "city" "Mata" "longitude" "-8.270224" "latitude" "41.2914665" "last_login" "1594661310" +HSET "user:845" "first_name" "Billye" "last_name" "Senton" "email" "bsentonng@ocn.ne.jp" "gender" "female" "ip_address" "174.67.181.78" "country" "China" "country_code" "CN" "city" "Wangcao" "longitude" "107.269482" "latitude" "28.109577" "last_login" "1586699577" +HSET "user:846" "first_name" "Sid" "last_name" "Crich" "email" "scrichnh@slate.com" "gender" "male" "ip_address" "244.108.169.198" "country" "Palestinian Territory" "country_code" "PS" "city" "Sīrīs" "longitude" "35.292369" "latitude" "32.328224" "last_login" "1591520961" +HSET "user:847" "first_name" "Salem" "last_name" "Hartup" "email" "shartupni@scribd.com" "gender" "male" "ip_address" "238.105.106.87" "country" "Philippines" "country_code" "PH" "city" "Babo-Pangulo" "longitude" "120.5150706" "latitude" "15.0737251" "last_login" "1592637823" +HSET "user:848" "first_name" "Brandon" "last_name" "Oldnall" "email" "boldnallnj@techcrunch.com" "gender" "male" "ip_address" "81.243.129.95" "country" "China" "country_code" "CN" "city" "Baishi" "longitude" "100.222545" "latitude" "26.641315" "last_login" "1581324182" +HSET "user:849" "first_name" "Starla" "last_name" "Kitney" "email" "skitneynk@nba.com" "gender" "female" "ip_address" "1.94.45.157" "country" "Sweden" "country_code" "SE" "city" "Åkersberga" "longitude" "18.3007988" "latitude" "59.4744985" "last_login" "1580766088" +HSET "user:850" "first_name" "Tanitansy" "last_name" "Roloff" "email" "troloffnl@youtube.com" "gender" "female" "ip_address" "115.151.187.44" "country" "Portugal" "country_code" "PT" "city" "Gradil" "longitude" "-9.2801649" "latitude" "38.9809754" "last_login" "1589436411" +HSET "user:851" "first_name" "Kristopher" "last_name" "Brownfield" "email" "kbrownfieldnm@rambler.ru" "gender" "male" "ip_address" "37.1.156.214" "country" "Brazil" "country_code" "BR" "city" "Mateus Leme" "longitude" "-44.4370606" "latitude" "-20.017643" "last_login" "1577806369" +HSET "user:852" "first_name" "Tomas" "last_name" "Danielut" "email" "tdanielutnn@mozilla.com" "gender" "male" "ip_address" "121.100.67.64" "country" "Russia" "country_code" "RU" "city" "Brusyanka" "longitude" "38.03593" "latitude" "53.98492" "last_login" "1593161319" +HSET "user:853" "first_name" "Angus" "last_name" "Connikie" "email" "aconnikieno@addtoany.com" "gender" "male" "ip_address" "242.32.85.235" "country" "Guatemala" "country_code" "GT" "city" "Patulul" "longitude" "-91.16667" "latitude" "14.41667" "last_login" "1597721647" +HSET "user:854" "first_name" "Aldus" "last_name" "Housiaux" "email" "ahousiauxnp@google.com.au" "gender" "male" "ip_address" "242.218.186.33" "country" "Brazil" "country_code" "BR" "city" "Lagoa da Prata" "longitude" "-45.5313666" "latitude" "-20.0292302" "last_login" "1589624274" +HSET "user:855" "first_name" "Julianne" "last_name" "Millwater" "email" "jmillwaternq@wikipedia.org" "gender" "female" "ip_address" "182.136.121.39" "country" "Ukraine" "country_code" "UA" "city" "Markova" "longitude" "24.4272889" "latitude" "48.6841029" "last_login" "1579910768" +HSET "user:856" "first_name" "Brandyn" "last_name" "Lynde" "email" "blyndenr@ycombinator.com" "gender" "male" "ip_address" "129.3.243.182" "country" "Indonesia" "country_code" "ID" "city" "Cungking" "longitude" "114.3521951" "latitude" "-8.2138062" "last_login" "1576226445" +HSET "user:857" "first_name" "Idell" "last_name" "Kelwick" "email" "ikelwickns@github.io" "gender" "female" "ip_address" "97.52.108.1" "country" "Peru" "country_code" "PE" "city" "Mariposa" "longitude" "-74.752726" "latitude" "-11.403372" "last_login" "1583643717" +HSET "user:858" "first_name" "Lauralee" "last_name" "Epgrave" "email" "lepgravent@addthis.com" "gender" "female" "ip_address" "129.143.51.197" "country" "Ukraine" "country_code" "UA" "city" "Novi Bilokorovychi" "longitude" "28.0490173" "latitude" "51.1134675" "last_login" "1570308555" +HSET "user:859" "first_name" "Trumaine" "last_name" "Erington" "email" "teringtonnu@behance.net" "gender" "male" "ip_address" "75.112.174.48" "country" "Saudi Arabia" "country_code" "SA" "city" "Ad Dilam" "longitude" "47.1557087" "latitude" "23.976619" "last_login" "1571646717" +HSET "user:860" "first_name" "Gina" "last_name" "Ireson" "email" "giresonnv@ebay.com" "gender" "female" "ip_address" "151.183.82.170" "country" "Jamaica" "country_code" "JM" "city" "Albert Town" "longitude" "-77.5418791" "latitude" "18.2929119" "last_login" "1590468173" +HSET "user:861" "first_name" "Tabby" "last_name" "Runham" "email" "trunhamnw@reddit.com" "gender" "male" "ip_address" "234.144.136.64" "country" "Netherlands" "country_code" "NL" "city" "Leiden" "longitude" "4.4982869" "latitude" "52.1513886" "last_login" "1594861340" +HSET "user:862" "first_name" "Bernete" "last_name" "Pallesen" "email" "bpallesennx@phoca.cz" "gender" "female" "ip_address" "48.186.245.206" "country" "Latvia" "country_code" "LV" "city" "Bolderaja" "longitude" "24.0385876" "latitude" "57.0237445" "last_login" "1575710722" +HSET "user:863" "first_name" "Florinda" "last_name" "Stranieri" "email" "fstranieriny@creativecommons.org" "gender" "female" "ip_address" "99.138.89.252" "country" "China" "country_code" "CN" "city" "Miaotang" "longitude" "110.090436" "latitude" "28.579409" "last_login" "1590535626" +HSET "user:864" "first_name" "Joseito" "last_name" "Bennison" "email" "jbennisonnz@apple.com" "gender" "male" "ip_address" "113.12.4.62" "country" "France" "country_code" "FR" "city" "Rochefort" "longitude" "-0.9636732" "latitude" "45.9472601" "last_login" "1583217088" +HSET "user:865" "first_name" "Clint" "last_name" "Swanton" "email" "cswantono0@uol.com.br" "gender" "male" "ip_address" "245.178.203.176" "country" "Philippines" "country_code" "PH" "city" "Kauswagan" "longitude" "124.086692" "latitude" "8.189424" "last_login" "1575133990" +HSET "user:866" "first_name" "Vanya" "last_name" "de Aguirre" "email" "vdeaguirreo1@amazonaws.com" "gender" "female" "ip_address" "60.43.139.184" "country" "United States" "country_code" "US" "city" "Beaumont" "longitude" "-94.1265562" "latitude" "30.080174" "last_login" "1574513192" +HSET "user:867" "first_name" "Esma" "last_name" "O'Connel" "email" "eoconnelo2@topsy.com" "gender" "female" "ip_address" "233.84.67.7" "country" "Finland" "country_code" "FI" "city" "Loppi" "longitude" "24.4417258" "latitude" "60.7207077" "last_login" "1574200145" +HSET "user:868" "first_name" "Dolf" "last_name" "Canada" "email" "dcanadao3@wsj.com" "gender" "male" "ip_address" "96.136.89.158" "country" "China" "country_code" "CN" "city" "Dawan" "longitude" "116.341609" "latitude" "39.728885" "last_login" "1594600222" +HSET "user:869" "first_name" "Noak" "last_name" "Avrahamy" "email" "navrahamyo4@sogou.com" "gender" "male" "ip_address" "143.141.57.79" "country" "Canada" "country_code" "CA" "city" "Amherst" "longitude" "-64.2092372" "latitude" "45.8299686" "last_login" "1589002771" +HSET "user:870" "first_name" "Carolan" "last_name" "L'oiseau" "email" "cloiseauo5@flickr.com" "gender" "female" "ip_address" "60.23.172.241" "country" "Indonesia" "country_code" "ID" "city" "Tembongraja" "longitude" "108.7660364" "latitude" "-7.1546275" "last_login" "1575411111" +HSET "user:871" "first_name" "Dag" "last_name" "Kettlesing" "email" "dkettlesingo6@angelfire.com" "gender" "male" "ip_address" "176.31.208.76" "country" "China" "country_code" "CN" "city" "Baiquesi" "longitude" "120.7071967" "latitude" "31.7447636" "last_login" "1588044648" +HSET "user:872" "first_name" "Niels" "last_name" "Silverman" "email" "nsilvermano7@pbs.org" "gender" "male" "ip_address" "12.71.28.34" "country" "China" "country_code" "CN" "city" "Dasheng" "longitude" "118.613379" "latitude" "31.961364" "last_login" "1589468573" +HSET "user:873" "first_name" "Prue" "last_name" "Ickov" "email" "pickovo8@telegraph.co.uk" "gender" "female" "ip_address" "172.21.65.103" "country" "Nigeria" "country_code" "NG" "city" "Dikwa" "longitude" "13.9172992" "latitude" "12.0419812" "last_login" "1593186442" +HSET "user:874" "first_name" "Devlen" "last_name" "Ordidge" "email" "dordidgeo9@dell.com" "gender" "male" "ip_address" "206.144.34.90" "country" "China" "country_code" "CN" "city" "Chenjiaba" "longitude" "108.326536" "latitude" "30.664436" "last_login" "1596727839" +HSET "user:875" "first_name" "Dewey" "last_name" "Prestidge" "email" "dprestidgeoa@nyu.edu" "gender" "male" "ip_address" "49.168.34.41" "country" "Argentina" "country_code" "AR" "city" "Comandante Fontana" "longitude" "-58.8821875" "latitude" "-25.8631114" "last_login" "1596927406" +HSET "user:876" "first_name" "Clive" "last_name" "Domenichelli" "email" "cdomenichelliob@ed.gov" "gender" "male" "ip_address" "41.183.232.115" "country" "China" "country_code" "CN" "city" "Qulai" "longitude" "-117.7226392" "latitude" "34.0035419" "last_login" "1596271062" +HSET "user:877" "first_name" "Redd" "last_name" "Dancy" "email" "rdancyoc@wikispaces.com" "gender" "male" "ip_address" "207.252.155.113" "country" "Pakistan" "country_code" "PK" "city" "Bahāwalnagar" "longitude" "73.2192788" "latitude" "30.015509" "last_login" "1583862647" +HSET "user:878" "first_name" "Wilmar" "last_name" "Duell" "email" "wduellod@newyorker.com" "gender" "male" "ip_address" "146.104.221.24" "country" "Canada" "country_code" "CA" "city" "Calmar" "longitude" "-113.81874" "latitude" "53.26683" "last_login" "1579970187" +HSET "user:879" "first_name" "Erek" "last_name" "Peyzer" "email" "epeyzeroe@tinypic.com" "gender" "male" "ip_address" "72.198.88.150" "country" "Finland" "country_code" "FI" "city" "Kiikala" "longitude" "23.5496765" "latitude" "60.4624232" "last_login" "1587149814" +HSET "user:880" "first_name" "Maggy" "last_name" "Grasha" "email" "mgrashaof@intel.com" "gender" "female" "ip_address" "54.205.165.102" "country" "Slovenia" "country_code" "SI" "city" "Turnišče" "longitude" "16.3144961" "latitude" "46.625456" "last_login" "1571464445" +HSET "user:881" "first_name" "Dacia" "last_name" "Crichley" "email" "dcrichleyog@elegantthemes.com" "gender" "female" "ip_address" "223.156.20.38" "country" "Indonesia" "country_code" "ID" "city" "Lenakapa" "longitude" "121.7557" "latitude" "-10.6012" "last_login" "1581614841" +HSET "user:882" "first_name" "Roobbie" "last_name" "Esslemont" "email" "resslemontoh@imdb.com" "gender" "female" "ip_address" "90.47.9.122" "country" "Ukraine" "country_code" "UA" "city" "Luhansk" "longitude" "39.307815" "latitude" "48.574041" "last_login" "1587824025" +HSET "user:883" "first_name" "Dagmar" "last_name" "Norville" "email" "dnorvilleoi@mysql.com" "gender" "female" "ip_address" "127.101.43.92" "country" "Russia" "country_code" "RU" "city" "Proletarskiy" "longitude" "42.3369006" "latitude" "56.1029081" "last_login" "1596324169" +HSET "user:884" "first_name" "Graeme" "last_name" "Stallibrass" "email" "gstallibrassoj@goo.ne.jp" "gender" "male" "ip_address" "213.113.188.185" "country" "Poland" "country_code" "PL" "city" "Bolesławiec" "longitude" "18.191303" "latitude" "51.1981241" "last_login" "1569841412" +HSET "user:885" "first_name" "Lawry" "last_name" "Gaynesford" "email" "lgaynesfordok@vkontakte.ru" "gender" "male" "ip_address" "131.219.41.91" "country" "China" "country_code" "CN" "city" "Nanjie" "longitude" "100.7492159" "latitude" "26.6849798" "last_login" "1586717975" +HSET "user:886" "first_name" "Hart" "last_name" "Allcorn" "email" "hallcornol@cnet.com" "gender" "male" "ip_address" "27.51.192.93" "country" "Pakistan" "country_code" "PK" "city" "Dadu" "longitude" "67.786348" "latitude" "26.732065" "last_login" "1577973285" +HSET "user:887" "first_name" "Felice" "last_name" "Egger" "email" "feggerom@woothemes.com" "gender" "female" "ip_address" "118.204.222.92" "country" "Portugal" "country_code" "PT" "city" "São Bartolomeu" "longitude" "-9.2806096" "latitude" "39.2762158" "last_login" "1583794064" +HSET "user:888" "first_name" "Sena" "last_name" "Ogbourne" "email" "sogbourneon@google.pl" "gender" "female" "ip_address" "84.200.217.172" "country" "Portugal" "country_code" "PT" "city" "Cortinhas" "longitude" "-8.1650422" "latitude" "41.2080707" "last_login" "1592038987" +HSET "user:889" "first_name" "Davey" "last_name" "Phython" "email" "dphythonoo@vkontakte.ru" "gender" "male" "ip_address" "58.60.70.162" "country" "China" "country_code" "CN" "city" "Meikeng" "longitude" "114.113382" "latitude" "24.006293" "last_login" "1586426335" +HSET "user:890" "first_name" "Bertha" "last_name" "Rozalski" "email" "brozalskiop@prweb.com" "gender" "female" "ip_address" "171.216.120.191" "country" "China" "country_code" "CN" "city" "Jiaokou" "longitude" "111.18115" "latitude" "36.982186" "last_login" "1598004459" +HSET "user:891" "first_name" "Kore" "last_name" "Whyke" "email" "kwhykeoq@fc2.com" "gender" "female" "ip_address" "230.7.44.84" "country" "Russia" "country_code" "RU" "city" "Turinsk" "longitude" "63.6850141" "latitude" "58.041296" "last_login" "1569167129" +HSET "user:892" "first_name" "Eldredge" "last_name" "Brockett" "email" "ebrockettor@free.fr" "gender" "male" "ip_address" "142.227.12.146" "country" "China" "country_code" "CN" "city" "Sigu" "longitude" "119.8453914" "latitude" "28.9693852" "last_login" "1591807501" +HSET "user:893" "first_name" "Lyndel" "last_name" "Ralton" "email" "lraltonos@telegraph.co.uk" "gender" "female" "ip_address" "176.205.169.131" "country" "Ireland" "country_code" "IE" "city" "Old Kilcullen" "longitude" "-6.7449927" "latitude" "53.1310185" "last_login" "1576649747" +HSET "user:894" "first_name" "Rolando" "last_name" "Bartens" "email" "rbartensot@eepurl.com" "gender" "male" "ip_address" "183.141.152.61" "country" "Philippines" "country_code" "PH" "city" "Santo Domingo" "longitude" "123.7702587" "latitude" "13.2317498" "last_login" "1580003296" +HSET "user:895" "first_name" "Maud" "last_name" "Happel" "email" "mhappelou@shinystat.com" "gender" "female" "ip_address" "224.43.255.54" "country" "Greece" "country_code" "GR" "city" "Néa Magnisía" "longitude" "22.8426988" "latitude" "40.6875315" "last_login" "1592386777" +HSET "user:896" "first_name" "Cherish" "last_name" "Liddard" "email" "cliddardov@oaic.gov.au" "gender" "female" "ip_address" "150.166.138.199" "country" "Ivory Coast" "country_code" "CI" "city" "Bouaflé" "longitude" "-5.7405139" "latitude" "6.9827437" "last_login" "1569151865" +HSET "user:897" "first_name" "Calypso" "last_name" "Loisi" "email" "cloisiow@nature.com" "gender" "female" "ip_address" "158.243.96.161" "country" "China" "country_code" "CN" "city" "Hongtu" "longitude" "129.171996" "latitude" "44.181054" "last_login" "1574483416" +HSET "user:898" "first_name" "Sabina" "last_name" "Lewin" "email" "slewinox@etsy.com" "gender" "female" "ip_address" "220.74.234.222" "country" "China" "country_code" "CN" "city" "Wangren" "longitude" "115.134207" "latitude" "30.150684" "last_login" "1593657751" +HSET "user:899" "first_name" "Alleen" "last_name" "Phillis" "email" "aphillisoy@drupal.org" "gender" "female" "ip_address" "186.96.214.17" "country" "China" "country_code" "CN" "city" "Wencheng" "longitude" "120.091498" "latitude" "27.786996" "last_login" "1585921917" +HSET "user:900" "first_name" "Breena" "last_name" "Blakeman" "email" "bblakemanoz@spiegel.de" "gender" "female" "ip_address" "173.147.87.4" "country" "Pakistan" "country_code" "PK" "city" "Tānk" "longitude" "70.3898483" "latitude" "32.2187771" "last_login" "1575257333" +HSET "user:901" "first_name" "Murdock" "last_name" "Magner" "email" "mmagnerp0@wix.com" "gender" "male" "ip_address" "173.243.31.11" "country" "Armenia" "country_code" "AM" "city" "Drakhtik" "longitude" "45.2368557" "latitude" "40.5630764" "last_login" "1584273570" +HSET "user:902" "first_name" "Gilbertine" "last_name" "Spare" "email" "gsparep1@macromedia.com" "gender" "female" "ip_address" "84.51.11.80" "country" "Spain" "country_code" "ES" "city" "Girona" "longitude" "2.0763253" "latitude" "42.2470995" "last_login" "1590898967" +HSET "user:903" "first_name" "Abdel" "last_name" "Dillinton" "email" "adillintonp2@joomla.org" "gender" "male" "ip_address" "15.235.168.168" "country" "China" "country_code" "CN" "city" "Dongshandi" "longitude" "117.430061" "latitude" "23.701262" "last_login" "1581450330" +HSET "user:904" "first_name" "Osgood" "last_name" "Bellfield" "email" "obellfieldp3@businesswire.com" "gender" "male" "ip_address" "74.168.120.190" "country" "Sri Lanka" "country_code" "LK" "city" "Kotikawatta" "longitude" "79.9059766" "latitude" "6.9345136" "last_login" "1580482071" +HSET "user:905" "first_name" "Tabby" "last_name" "Roches" "email" "trochesp4@cbc.ca" "gender" "male" "ip_address" "196.124.162.69" "country" "Poland" "country_code" "PL" "city" "Bledzew" "longitude" "15.4078292" "latitude" "52.5234718" "last_login" "1593399622" +HSET "user:906" "first_name" "Kasey" "last_name" "Howat" "email" "khowatp5@wiley.com" "gender" "female" "ip_address" "213.197.155.61" "country" "China" "country_code" "CN" "city" "Zhajin" "longitude" "114.246016" "latitude" "29.00707" "last_login" "1577851120" +HSET "user:907" "first_name" "Jeramey" "last_name" "Andriesse" "email" "jandriessep6@cocolog-nifty.com" "gender" "male" "ip_address" "191.108.163.9" "country" "Philippines" "country_code" "PH" "city" "Cauayan" "longitude" "122.5691915" "latitude" "9.9411601" "last_login" "1579101179" +HSET "user:908" "first_name" "Odetta" "last_name" "Gillean" "email" "ogilleanp7@bbb.org" "gender" "female" "ip_address" "140.238.117.222" "country" "Kazakhstan" "country_code" "KZ" "city" "Altay" "longitude" "84.606767" "latitude" "48.8315157" "last_login" "1573178101" +HSET "user:909" "first_name" "Wilton" "last_name" "Speek" "email" "wspeekp8@delicious.com" "gender" "male" "ip_address" "67.98.210.150" "country" "France" "country_code" "FR" "city" "Le Havre" "longitude" "0.108211" "latitude" "49.48153" "last_login" "1571461406" +HSET "user:910" "first_name" "Vale" "last_name" "Edgeller" "email" "vedgellerp9@purevolume.com" "gender" "female" "ip_address" "193.112.148.177" "country" "Poland" "country_code" "PL" "city" "Radocza" "longitude" "19.468167" "latitude" "49.917089" "last_login" "1574048092" +HSET "user:911" "first_name" "Julia" "last_name" "Trengrouse" "email" "jtrengrousepa@youtube.com" "gender" "female" "ip_address" "156.150.157.103" "country" "Indonesia" "country_code" "ID" "city" "Ganjur" "longitude" "110.6909294" "latitude" "-7.0954176" "last_login" "1581590893" +HSET "user:912" "first_name" "Wilmer" "last_name" "Knoles" "email" "wknolespb@amazon.de" "gender" "male" "ip_address" "4.164.18.158" "country" "Pakistan" "country_code" "PK" "city" "Khāngāh Dogrān" "longitude" "73.5953173" "latitude" "31.7746473" "last_login" "1584342140" +HSET "user:913" "first_name" "Glen" "last_name" "Pablos" "email" "gpablospc@wiley.com" "gender" "male" "ip_address" "74.112.75.192" "country" "Northern Mariana Islands" "country_code" "MP" "city" "San Jose Village" "longitude" "145.6412079" "latitude" "14.9699796" "last_login" "1585523119" +HSET "user:914" "first_name" "Denis" "last_name" "Hellis" "email" "dhellispd@imageshack.us" "gender" "male" "ip_address" "60.4.244.160" "country" "China" "country_code" "CN" "city" "Xingdian" "longitude" "118.449305" "latitude" "32.032275" "last_login" "1590727137" +HSET "user:915" "first_name" "Faith" "last_name" "Bettridge" "email" "fbettridgepe@fema.gov" "gender" "female" "ip_address" "13.252.197.191" "country" "Russia" "country_code" "RU" "city" "Konëvo" "longitude" "36.1294093" "latitude" "52.0531815" "last_login" "1582100504" +HSET "user:916" "first_name" "Mair" "last_name" "Tatlock" "email" "mtatlockpf@comcast.net" "gender" "female" "ip_address" "216.210.189.237" "country" "China" "country_code" "CN" "city" "Daxing" "longitude" "116.341395" "latitude" "39.726929" "last_login" "1568756003" +HSET "user:917" "first_name" "Berton" "last_name" "Twinberrow" "email" "btwinberrowpg@aboutads.info" "gender" "male" "ip_address" "107.84.97.171" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Watsa" "longitude" "29.5397706" "latitude" "3.033069" "last_login" "1593043144" +HSET "user:918" "first_name" "Tan" "last_name" "Caves" "email" "tcavesph@intel.com" "gender" "male" "ip_address" "14.159.121.14" "country" "Japan" "country_code" "JP" "city" "Itako" "longitude" "140.5782788" "latitude" "35.9268502" "last_login" "1594736556" +HSET "user:919" "first_name" "Lidia" "last_name" "Lucus" "email" "llucuspi@goo.gl" "gender" "female" "ip_address" "74.36.27.103" "country" "Indonesia" "country_code" "ID" "city" "Palaihari" "longitude" "114.7380385" "latitude" "-3.7901775" "last_login" "1599215401" +HSET "user:920" "first_name" "Leon" "last_name" "Dreier" "email" "ldreierpj@e-recht24.de" "gender" "male" "ip_address" "247.63.10.170" "country" "Kiribati" "country_code" "KI" "city" "Betio Village" "longitude" "172.9299068" "latitude" "1.3566345" "last_login" "1594455745" +HSET "user:921" "first_name" "Beilul" "last_name" "Riddoch" "email" "briddochpk@wikispaces.com" "gender" "female" "ip_address" "180.154.60.211" "country" "Brazil" "country_code" "BR" "city" "Palmital" "longitude" "-50.2199938" "latitude" "-22.787936" "last_login" "1578666183" +HSET "user:922" "first_name" "Vladamir" "last_name" "Bartkowiak" "email" "vbartkowiakpl@addthis.com" "gender" "male" "ip_address" "165.178.152.132" "country" "China" "country_code" "CN" "city" "Jinshan" "longitude" "121.341969" "latitude" "30.741991" "last_login" "1569085414" +HSET "user:923" "first_name" "Derward" "last_name" "McLice" "email" "dmclicepm@mozilla.com" "gender" "male" "ip_address" "128.132.11.1" "country" "Russia" "country_code" "RU" "city" "Verkhniye Achaluki" "longitude" "44.697147" "latitude" "43.3487908" "last_login" "1574996516" +HSET "user:924" "first_name" "Emmaline" "last_name" "Hobbing" "email" "ehobbingpn@ucsd.edu" "gender" "female" "ip_address" "199.178.69.166" "country" "Indonesia" "country_code" "ID" "city" "Kowang Utara" "longitude" "112.0863874" "latitude" "-6.9404876" "last_login" "1588389471" +HSET "user:925" "first_name" "Clerkclaude" "last_name" "Littlecote" "email" "clittlecotepo@shop-pro.jp" "gender" "male" "ip_address" "165.244.202.23" "country" "Philippines" "country_code" "PH" "city" "Battung" "longitude" "121.7483586" "latitude" "16.7551121" "last_login" "1593279627" +HSET "user:926" "first_name" "Early" "last_name" "Vernalls" "email" "evernallspp@umich.edu" "gender" "male" "ip_address" "201.127.147.45" "country" "Indonesia" "country_code" "ID" "city" "Citambal" "longitude" "108.36198" "latitude" "-7.43712" "last_login" "1583026060" +HSET "user:927" "first_name" "Saunderson" "last_name" "Trevorrow" "email" "strevorrowpq@netscape.com" "gender" "male" "ip_address" "201.204.76.191" "country" "Russia" "country_code" "RU" "city" "Torbeyevo" "longitude" "43.1704696" "latitude" "54.1407588" "last_login" "1588795750" +HSET "user:928" "first_name" "Adamo" "last_name" "Dentith" "email" "adentithpr@dmoz.org" "gender" "male" "ip_address" "15.182.19.188" "country" "Brazil" "country_code" "BR" "city" "Goianésia" "longitude" "-49.1166441" "latitude" "-15.3122723" "last_login" "1584255511" +HSET "user:929" "first_name" "Lavinie" "last_name" "Crosetti" "email" "lcrosettips@artisteer.com" "gender" "female" "ip_address" "184.112.192.89" "country" "China" "country_code" "CN" "city" "Yutan" "longitude" "-96.3966046" "latitude" "41.244729" "last_login" "1583005211" +HSET "user:930" "first_name" "Kiri" "last_name" "Cayle" "email" "kcaylept@umich.edu" "gender" "female" "ip_address" "184.12.102.131" "country" "Pakistan" "country_code" "PK" "city" "Quetta" "longitude" "68.2132128" "latitude" "28.5553263" "last_login" "1575093556" +HSET "user:931" "first_name" "Sashenka" "last_name" "Caughan" "email" "scaughanpu@hhs.gov" "gender" "female" "ip_address" "184.24.214.158" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Bužim" "longitude" "16.0518078" "latitude" "45.0510883" "last_login" "1582608131" +HSET "user:932" "first_name" "Melosa" "last_name" "Dragoe" "email" "mdragoepv@bigcartel.com" "gender" "female" "ip_address" "3.113.145.85" "country" "Mauritius" "country_code" "MU" "city" "Saint Hubert" "longitude" "57.6424881" "latitude" "-20.3656796" "last_login" "1580260874" +HSET "user:933" "first_name" "Theodosia" "last_name" "Howler" "email" "thowlerpw@sohu.com" "gender" "female" "ip_address" "219.94.214.143" "country" "China" "country_code" "CN" "city" "Geshan" "longitude" "119.359142" "latitude" "27.885191" "last_login" "1584424197" +HSET "user:934" "first_name" "Arlena" "last_name" "Campbell" "email" "acampbellpx@delicious.com" "gender" "female" "ip_address" "143.132.102.208" "country" "Kazakhstan" "country_code" "KZ" "city" "Oral" "longitude" "51.3865431" "latitude" "51.227821" "last_login" "1573745502" +HSET "user:935" "first_name" "Michel" "last_name" "Aires" "email" "mairespy@t.co" "gender" "male" "ip_address" "30.241.29.175" "country" "Poland" "country_code" "PL" "city" "Wola Sernicka" "longitude" "22.6839074" "latitude" "51.4492786" "last_login" "1596472699" +HSET "user:936" "first_name" "Hervey" "last_name" "Vinton" "email" "hvintonpz@deliciousdays.com" "gender" "male" "ip_address" "109.253.249.137" "country" "Brazil" "country_code" "BR" "city" "Jacareí" "longitude" "-45.9662542" "latitude" "-23.2987827" "last_login" "1591566824" +HSET "user:937" "first_name" "Trish" "last_name" "Largan" "email" "tlarganq0@about.me" "gender" "female" "ip_address" "116.197.82.119" "country" "Finland" "country_code" "FI" "city" "Luhanka" "longitude" "25.7035513" "latitude" "61.7968844" "last_login" "1594435687" +HSET "user:938" "first_name" "Justinian" "last_name" "Yeudall" "email" "jyeudallq1@chron.com" "gender" "male" "ip_address" "93.83.101.70" "country" "Syria" "country_code" "SY" "city" "Yabrūd" "longitude" "36.6579649" "latitude" "33.9717649" "last_login" "1595262644" +HSET "user:939" "first_name" "Jordan" "last_name" "Garms" "email" "jgarmsq2@hao123.com" "gender" "female" "ip_address" "234.246.62.104" "country" "Dominican Republic" "country_code" "DO" "city" "Ensanche Luperón" "longitude" "-70.0957159" "latitude" "18.4176704" "last_login" "1586833789" +HSET "user:940" "first_name" "Sofia" "last_name" "Mossdale" "email" "smossdaleq3@bandcamp.com" "gender" "female" "ip_address" "32.36.254.232" "country" "Indonesia" "country_code" "ID" "city" "Karangtawar" "longitude" "112.3367573" "latitude" "-6.9633727" "last_login" "1594706956" +HSET "user:941" "first_name" "Leslie" "last_name" "Boreland" "email" "lborelandq4@msu.edu" "gender" "female" "ip_address" "10.109.206.175" "country" "Indonesia" "country_code" "ID" "city" "Padangan" "longitude" "111.6064513" "latitude" "-7.1935036" "last_login" "1576104533" +HSET "user:942" "first_name" "Olag" "last_name" "Simkiss" "email" "osimkissq5@state.gov" "gender" "male" "ip_address" "124.124.30.71" "country" "Russia" "country_code" "RU" "city" "Zheleznogorsk-Ilimskiy" "longitude" "104.1948978" "latitude" "56.6175886" "last_login" "1585271364" +HSET "user:943" "first_name" "Gasper" "last_name" "Toohey" "email" "gtooheyq6@homestead.com" "gender" "male" "ip_address" "22.37.236.184" "country" "Russia" "country_code" "RU" "city" "Belozërskoye" "longitude" "65.5756726" "latitude" "55.8240814" "last_login" "1582907692" +HSET "user:944" "first_name" "Milt" "last_name" "Habercham" "email" "mhaberchamq7@apache.org" "gender" "male" "ip_address" "4.232.130.152" "country" "New Zealand" "country_code" "NZ" "city" "Pleasant Point" "longitude" "171.0279044" "latitude" "-44.284437" "last_login" "1593849298" +HSET "user:945" "first_name" "Lucias" "last_name" "Scneider" "email" "lscneiderq8@blogtalkradio.com" "gender" "male" "ip_address" "214.249.163.54" "country" "Tanzania" "country_code" "TZ" "city" "Bunda" "longitude" "33.8746152" "latitude" "-2.0185322" "last_login" "1585859088" +HSET "user:946" "first_name" "Rebeca" "last_name" "Gimenez" "email" "rgimenezq9@mayoclinic.com" "gender" "female" "ip_address" "12.16.62.116" "country" "Indonesia" "country_code" "ID" "city" "Piru" "longitude" "128.1903079" "latitude" "-3.059218" "last_login" "1572259804" +HSET "user:947" "first_name" "Lenard" "last_name" "Gooddie" "email" "lgooddieqa@cpanel.net" "gender" "male" "ip_address" "114.146.213.166" "country" "Brazil" "country_code" "BR" "city" "Castanhal" "longitude" "-47.9340343" "latitude" "-1.3050431" "last_login" "1600148184" +HSET "user:948" "first_name" "Cordelie" "last_name" "Antognozzii" "email" "cantognozziiqb@bravesites.com" "gender" "female" "ip_address" "122.171.198.188" "country" "China" "country_code" "CN" "city" "Tongqiao" "longitude" "114.300299" "latitude" "23.035191" "last_login" "1574356749" +HSET "user:949" "first_name" "Giuseppe" "last_name" "McKnockiter" "email" "gmcknockiterqc@ning.com" "gender" "male" "ip_address" "97.99.132.180" "country" "Serbia" "country_code" "RS" "city" "Jermenovci" "longitude" "21.0119834" "latitude" "45.2011955" "last_login" "1598936023" +HSET "user:950" "first_name" "Marius" "last_name" "Hirjak" "email" "mhirjakqd@auda.org.au" "gender" "male" "ip_address" "184.88.38.28" "country" "Czech Republic" "country_code" "CZ" "city" "Ráječko" "longitude" "16.6413357" "latitude" "49.3933184" "last_login" "1584661929" +HSET "user:951" "first_name" "Salvatore" "last_name" "Sandiland" "email" "ssandilandqe@yale.edu" "gender" "male" "ip_address" "81.243.138.223" "country" "Philippines" "country_code" "PH" "city" "Joroan" "longitude" "121.0226751" "latitude" "14.7258963" "last_login" "1574501959" +HSET "user:952" "first_name" "Giraud" "last_name" "Gutowski" "email" "ggutowskiqf@ted.com" "gender" "male" "ip_address" "112.142.205.59" "country" "Czech Republic" "country_code" "CZ" "city" "Hovězí" "longitude" "18.0616373" "latitude" "49.3055868" "last_login" "1575541095" +HSET "user:953" "first_name" "Gusti" "last_name" "Van De Cappelle" "email" "gvandecappelleqg@yolasite.com" "gender" "female" "ip_address" "226.134.41.172" "country" "China" "country_code" "CN" "city" "Nanjie" "longitude" "100.7492159" "latitude" "26.6849798" "last_login" "1575849120" +HSET "user:954" "first_name" "Dela" "last_name" "Anten" "email" "dantenqh@latimes.com" "gender" "female" "ip_address" "161.30.197.11" "country" "Armenia" "country_code" "AM" "city" "Ddmashen" "longitude" "44.8157566" "latitude" "40.5684068" "last_login" "1594859395" +HSET "user:955" "first_name" "Kari" "last_name" "McCaffery" "email" "kmccafferyqi@archive.org" "gender" "female" "ip_address" "189.150.146.104" "country" "China" "country_code" "CN" "city" "Guidong Chengguanzhen" "longitude" "113.950153" "latitude" "26.079079" "last_login" "1570287256" +HSET "user:956" "first_name" "Bailey" "last_name" "Pert" "email" "bpertqj@technorati.com" "gender" "male" "ip_address" "242.226.4.147" "country" "Russia" "country_code" "RU" "city" "Shimanovsk" "longitude" "127.6785226" "latitude" "51.9980805" "last_login" "1587069499" +HSET "user:957" "first_name" "Pauly" "last_name" "Jinkinson" "email" "pjinkinsonqk@toplist.cz" "gender" "female" "ip_address" "158.182.4.111" "country" "Russia" "country_code" "RU" "city" "Golovinskiy" "longitude" "37.500595" "latitude" "55.807167" "last_login" "1586123621" +HSET "user:958" "first_name" "Doria" "last_name" "Works" "email" "dworksql@bloglines.com" "gender" "female" "ip_address" "102.132.156.96" "country" "Philippines" "country_code" "PH" "city" "Ponong" "longitude" "124.8136246" "latitude" "10.3080476" "last_login" "1578589627" +HSET "user:959" "first_name" "Gilbertine" "last_name" "MacGowan" "email" "gmacgowanqm@wiley.com" "gender" "female" "ip_address" "150.188.148.174" "country" "China" "country_code" "CN" "city" "Huangmei" "longitude" "115.944218" "latitude" "30.070453" "last_login" "1593269774" +HSET "user:960" "first_name" "Bridget" "last_name" "Meynell" "email" "bmeynellqn@huffingtonpost.com" "gender" "female" "ip_address" "171.166.67.252" "country" "Ireland" "country_code" "IE" "city" "Boyle" "longitude" "-8.2969737" "latitude" "53.9735591" "last_login" "1576070642" +HSET "user:961" "first_name" "Jori" "last_name" "Enrique" "email" "jenriqueqo@cam.ac.uk" "gender" "female" "ip_address" "165.101.214.91" "country" "Mexico" "country_code" "MX" "city" "Las Americas" "longitude" "-99.2047894" "latitude" "19.3999682" "last_login" "1573649446" +HSET "user:962" "first_name" "Laure" "last_name" "Mosson" "email" "lmossonqp@comcast.net" "gender" "female" "ip_address" "134.43.203.36" "country" "Philippines" "country_code" "PH" "city" "Bundoc" "longitude" "120.530743" "latitude" "15.3614928" "last_login" "1589844146" +HSET "user:963" "first_name" "Pattin" "last_name" "Ginman" "email" "pginmanqq@dedecms.com" "gender" "male" "ip_address" "137.103.158.133" "country" "Honduras" "country_code" "HN" "city" "El Perico" "longitude" "-87.0361917" "latitude" "13.1267875" "last_login" "1572019610" +HSET "user:964" "first_name" "Othello" "last_name" "Batistelli" "email" "obatistelliqr@bravesites.com" "gender" "male" "ip_address" "11.126.78.226" "country" "China" "country_code" "CN" "city" "Yongheshi" "longitude" "110.632006" "latitude" "36.759507" "last_login" "1580958698" +HSET "user:965" "first_name" "Davidde" "last_name" "Ashe" "email" "dasheqs@nba.com" "gender" "male" "ip_address" "140.226.217.77" "country" "Indonesia" "country_code" "ID" "city" "Jatisari" "longitude" "106.9447146" "latitude" "-6.3385652" "last_login" "1580490230" +HSET "user:966" "first_name" "Carmelita" "last_name" "Scotchmer" "email" "cscotchmerqt@phpbb.com" "gender" "female" "ip_address" "63.228.173.129" "country" "Venezuela" "country_code" "VE" "city" "Bailadores" "longitude" "-71.8260021" "latitude" "8.2563795" "last_login" "1594939300" +HSET "user:967" "first_name" "Belle" "last_name" "Flahive" "email" "bflahivequ@newyorker.com" "gender" "female" "ip_address" "240.64.104.197" "country" "Jordan" "country_code" "JO" "city" "Al Mazār" "longitude" "35.6955945" "latitude" "31.067952" "last_login" "1575630432" +HSET "user:968" "first_name" "Candi" "last_name" "Huckell" "email" "chuckellqv@ow.ly" "gender" "female" "ip_address" "42.182.16.171" "country" "Sweden" "country_code" "SE" "city" "Norrtälje" "longitude" "18.6851872" "latitude" "59.7458284" "last_login" "1597077570" +HSET "user:969" "first_name" "Lexy" "last_name" "Jessep" "email" "ljessepqw@devhub.com" "gender" "female" "ip_address" "84.66.120.114" "country" "Australia" "country_code" "AU" "city" "Sydney" "longitude" "151.2149792" "latitude" "-33.8989712" "last_login" "1577297879" +HSET "user:970" "first_name" "Carrol" "last_name" "Heindrick" "email" "cheindrickqx@nps.gov" "gender" "male" "ip_address" "76.243.88.72" "country" "Indonesia" "country_code" "ID" "city" "Cikiray" "longitude" "106.5849256" "latitude" "-6.8651955" "last_login" "1588252320" +HSET "user:971" "first_name" "Raffarty" "last_name" "Symmers" "email" "rsymmersqy@wikipedia.org" "gender" "male" "ip_address" "27.196.158.106" "country" "Guam" "country_code" "GU" "city" "Sinajana Village" "longitude" "144.7546333" "latitude" "13.4623836" "last_login" "1596522608" +HSET "user:972" "first_name" "Gaylene" "last_name" "Wiggin" "email" "gwigginqz@jalbum.net" "gender" "female" "ip_address" "169.87.184.212" "country" "France" "country_code" "FR" "city" "Compiègne" "longitude" "2.8134703" "latitude" "49.403331" "last_login" "1572626118" +HSET "user:973" "first_name" "Sashenka" "last_name" "L' Anglois" "email" "slangloisr0@eepurl.com" "gender" "female" "ip_address" "101.78.98.250" "country" "Indonesia" "country_code" "ID" "city" "Sidomulyo" "longitude" "105.4771084" "latitude" "-5.5844754" "last_login" "1588680362" +HSET "user:974" "first_name" "Gelya" "last_name" "Oneil" "email" "goneilr1@nyu.edu" "gender" "female" "ip_address" "247.147.185.171" "country" "Portugal" "country_code" "PT" "city" "Vila do Bispo" "longitude" "-8.9092899" "latitude" "37.0827754" "last_login" "1569789748" +HSET "user:975" "first_name" "Aldric" "last_name" "Edgson" "email" "aedgsonr2@huffingtonpost.com" "gender" "male" "ip_address" "221.21.65.143" "country" "Brazil" "country_code" "BR" "city" "Bom Jesus da Lapa" "longitude" "-43.4112394" "latitude" "-13.2513786" "last_login" "1596666336" +HSET "user:976" "first_name" "Farrell" "last_name" "Keaves" "email" "fkeavesr3@psu.edu" "gender" "male" "ip_address" "164.81.110.121" "country" "China" "country_code" "CN" "city" "Songfeng" "longitude" "118.400294" "latitude" "28.362805" "last_login" "1570508474" +HSET "user:977" "first_name" "Miles" "last_name" "Jollands" "email" "mjollandsr4@oakley.com" "gender" "male" "ip_address" "128.227.237.110" "country" "China" "country_code" "CN" "city" "Taihe" "longitude" "114.908872" "latitude" "26.789958" "last_login" "1573718414" +HSET "user:978" "first_name" "Emerson" "last_name" "Goodreid" "email" "egoodreidr5@sina.com.cn" "gender" "male" "ip_address" "87.80.122.108" "country" "Israel" "country_code" "IL" "city" "Lapid" "longitude" "35.032191" "latitude" "31.917522" "last_login" "1571723580" +HSET "user:979" "first_name" "Caria" "last_name" "Joyce" "email" "cjoycer6@indiatimes.com" "gender" "female" "ip_address" "9.91.223.123" "country" "China" "country_code" "CN" "city" "Luwan" "longitude" "121.472429" "latitude" "31.191952" "last_login" "1598448856" +HSET "user:980" "first_name" "Louise" "last_name" "Trevaskis" "email" "ltrevaskisr7@reference.com" "gender" "female" "ip_address" "123.190.220.201" "country" "France" "country_code" "FR" "city" "Amboise" "longitude" "4.8310921" "latitude" "45.7595382" "last_login" "1595513173" +HSET "user:981" "first_name" "Griffith" "last_name" "Fish" "email" "gfishr8@imdb.com" "gender" "male" "ip_address" "158.34.129.244" "country" "Poland" "country_code" "PL" "city" "Kąty Wrocławskie" "longitude" "16.7675963" "latitude" "51.0309199" "last_login" "1585198949" +HSET "user:982" "first_name" "Briggs" "last_name" "McPake" "email" "bmcpaker9@dailymotion.com" "gender" "male" "ip_address" "147.249.131.43" "country" "Guinea-Bissau" "country_code" "GW" "city" "Bissau" "longitude" "-15.6177942" "latitude" "11.8816553" "last_login" "1569970331" +HSET "user:983" "first_name" "Neala" "last_name" "Caller" "email" "ncallerra@about.me" "gender" "female" "ip_address" "161.55.27.255" "country" "Philippines" "country_code" "PH" "city" "Dolo" "longitude" "125.1934512" "latitude" "6.8080933" "last_login" "1598604278" +HSET "user:984" "first_name" "Zacharia" "last_name" "Luxton" "email" "zluxtonrb@naver.com" "gender" "male" "ip_address" "31.57.38.84" "country" "Nigeria" "country_code" "NG" "city" "Lau" "longitude" "11.2922884" "latitude" "9.2029332" "last_login" "1577035192" +HSET "user:985" "first_name" "Gerick" "last_name" "Dorrity" "email" "gdorrityrc@whitehouse.gov" "gender" "male" "ip_address" "174.179.233.86" "country" "Georgia" "country_code" "GE" "city" "Tsalka" "longitude" "44.0946881" "latitude" "41.5979563" "last_login" "1574192730" +HSET "user:986" "first_name" "Quentin" "last_name" "Titta" "email" "qtittard@github.com" "gender" "male" "ip_address" "143.63.69.181" "country" "Colombia" "country_code" "CO" "city" "Chiscas" "longitude" "-72.5003179" "latitude" "6.552741" "last_login" "1598698039" +HSET "user:987" "first_name" "Briney" "last_name" "Atte-Stone" "email" "battestonere@yale.edu" "gender" "female" "ip_address" "192.17.252.254" "country" "Honduras" "country_code" "HN" "city" "Corpus" "longitude" "-87.0336925" "latitude" "13.2881184" "last_login" "1570976277" +HSET "user:988" "first_name" "Cosme" "last_name" "Ripping" "email" "crippingrf@privacy.gov.au" "gender" "male" "ip_address" "240.122.12.252" "country" "China" "country_code" "CN" "city" "Fangqiang" "longitude" "120.431234" "latitude" "33.378118" "last_login" "1579479241" +HSET "user:989" "first_name" "Curtis" "last_name" "McKoy" "email" "cmckoyrg@dedecms.com" "gender" "male" "ip_address" "11.117.26.28" "country" "China" "country_code" "CN" "city" "Baoxia" "longitude" "110.341615" "latitude" "32.707997" "last_login" "1597264839" +HSET "user:990" "first_name" "Dallon" "last_name" "Life" "email" "dliferh@mayoclinic.com" "gender" "male" "ip_address" "7.43.249.21" "country" "Kazakhstan" "country_code" "KZ" "city" "Karatau" "longitude" "70.455208" "latitude" "43.1780169" "last_login" "1578916477" +HSET "user:991" "first_name" "Jarrod" "last_name" "Heistermann" "email" "jheistermannri@flavors.me" "gender" "male" "ip_address" "206.165.63.187" "country" "Canada" "country_code" "CA" "city" "Strathmore" "longitude" "-113.3992725" "latitude" "51.0376583" "last_login" "1587161560" +HSET "user:992" "first_name" "Vince" "last_name" "Shailer" "email" "vshailerrj@dailymail.co.uk" "gender" "male" "ip_address" "177.194.131.79" "country" "Colombia" "country_code" "CO" "city" "Socorro" "longitude" "-73.28833" "latitude" "6.4360112" "last_login" "1591349622" +HSET "user:993" "first_name" "Merilyn" "last_name" "Mougenel" "email" "mmougenelrk@shutterfly.com" "gender" "female" "ip_address" "24.77.163.109" "country" "Indonesia" "country_code" "ID" "city" "Baru" "longitude" "108.2941031" "latitude" "-2.8534379" "last_login" "1598812249" +HSET "user:994" "first_name" "Koral" "last_name" "Gagin" "email" "kgaginrl@mapy.cz" "gender" "female" "ip_address" "71.13.54.117" "country" "Portugal" "country_code" "PT" "city" "Novo" "longitude" "-99.4882005" "latitude" "27.4323703" "last_login" "1597426510" +HSET "user:995" "first_name" "Lida" "last_name" "Southernwood" "email" "lsouthernwoodrm@phpbb.com" "gender" "female" "ip_address" "236.96.1.99" "country" "Egypt" "country_code" "EG" "city" "Port Said" "longitude" "32.3018661" "latitude" "31.2652893" "last_login" "1585452371" +HSET "user:996" "first_name" "Artus" "last_name" "Sleath" "email" "asleathrn@patch.com" "gender" "male" "ip_address" "118.173.133.234" "country" "Philippines" "country_code" "PH" "city" "Aga" "longitude" "122.9580541" "latitude" "13.8266134" "last_login" "1592261439" +HSET "user:997" "first_name" "Alphonso" "last_name" "Marzellano" "email" "amarzellanoro@ameblo.jp" "gender" "male" "ip_address" "66.44.125.237" "country" "Poland" "country_code" "PL" "city" "Widuchowa" "longitude" "14.4504726" "latitude" "53.1395216" "last_login" "1581450904" +HSET "user:998" "first_name" "Nichols" "last_name" "MacIlhagga" "email" "nmacilhaggarp@foxnews.com" "gender" "male" "ip_address" "126.228.115.24" "country" "Philippines" "country_code" "PH" "city" "Gumaus" "longitude" "122.788353" "latitude" "14.2622203" "last_login" "1591371385" +HSET "user:999" "first_name" "Ninette" "last_name" "Goard" "email" "ngoardrq@delicious.com" "gender" "female" "ip_address" "214.193.119.253" "country" "Poland" "country_code" "PL" "city" "Kolbudy" "longitude" "18.4710402" "latitude" "54.2714024" "last_login" "1586403114" +HSET "user:1000" "first_name" "Keri" "last_name" "Lutas" "email" "klutasrr@hao123.com" "gender" "female" "ip_address" "200.73.48.162" "country" "China" "country_code" "CN" "city" "Xianxi" "longitude" "109.1880047" "latitude" "35.3939908" "last_login" "1593351111" +HSET "user:1001" "first_name" "Freddie" "last_name" "Wolledge" "email" "fwolledge0@bloglovin.com" "gender" "male" "ip_address" "153.174.95.13" "country" "Colombia" "country_code" "CO" "city" "Jenesano" "longitude" "-73.364139" "latitude" "5.385032" "last_login" "1574788414" +HSET "user:1002" "first_name" "Danell" "last_name" "Lankham" "email" "dlankham1@sfgate.com" "gender" "female" "ip_address" "177.187.248.240" "country" "Ukraine" "country_code" "UA" "city" "Druzhba" "longitude" "33.9293828" "latitude" "52.0402452" "last_login" "1582288031" +HSET "user:1003" "first_name" "Idalia" "last_name" "McColm" "email" "imccolm2@baidu.com" "gender" "female" "ip_address" "207.205.103.183" "country" "China" "country_code" "CN" "city" "Yaojiagou" "longitude" "111.982232" "latitude" "21.857958" "last_login" "1594633118" +HSET "user:1004" "first_name" "Brunhilda" "last_name" "Mumford" "email" "bmumford3@blog.com" "gender" "female" "ip_address" "144.104.193.235" "country" "Japan" "country_code" "JP" "city" "Shingū" "longitude" "135.9914552" "latitude" "33.7282738" "last_login" "1595156260" +HSET "user:1005" "first_name" "Nicoli" "last_name" "Motherwell" "email" "nmotherwell4@go.com" "gender" "female" "ip_address" "143.154.106.228" "country" "Portugal" "country_code" "PT" "city" "São Domingos de Rana" "longitude" "-9.3381698" "latitude" "38.7025085" "last_login" "1579335322" +HSET "user:1006" "first_name" "Pascale" "last_name" "Fores" "email" "pfores5@hostgator.com" "gender" "male" "ip_address" "35.102.70.79" "country" "Norway" "country_code" "NO" "city" "Horten" "longitude" "10.4897546" "latitude" "59.4269733" "last_login" "1593318955" +HSET "user:1007" "first_name" "Jaquenetta" "last_name" "Offin" "email" "joffin6@harvard.edu" "gender" "female" "ip_address" "59.243.165.57" "country" "Portugal" "country_code" "PT" "city" "Linhó" "longitude" "-9.3779954" "latitude" "38.769738" "last_login" "1596675859" +HSET "user:1008" "first_name" "Garrek" "last_name" "Moncreiffe" "email" "gmoncreiffe7@nba.com" "gender" "male" "ip_address" "32.159.115.9" "country" "Philippines" "country_code" "PH" "city" "Camias" "longitude" "121.023576" "latitude" "14.5353294" "last_login" "1583442292" +HSET "user:1009" "first_name" "Shaughn" "last_name" "Scarrisbrick" "email" "sscarrisbrick8@google.ru" "gender" "male" "ip_address" "80.112.6.178" "country" "United States" "country_code" "US" "city" "Orlando" "longitude" "-81.460856" "latitude" "28.4630493" "last_login" "1600171033" +HSET "user:1010" "first_name" "Carlos" "last_name" "Prendeguest" "email" "cprendeguest9@sourceforge.net" "gender" "male" "ip_address" "156.233.225.196" "country" "Portugal" "country_code" "PT" "city" "Rates" "longitude" "-8.6722459" "latitude" "41.4242264" "last_login" "1583633248" +HSET "user:1011" "first_name" "Sheppard" "last_name" "Carlson" "email" "scarlsona@buzzfeed.com" "gender" "male" "ip_address" "76.98.78.67" "country" "Colombia" "country_code" "CO" "city" "Floridablanca" "longitude" "-73.1054544" "latitude" "7.0427956" "last_login" "1590657488" +HSET "user:1012" "first_name" "Vania" "last_name" "Bouch" "email" "vbouchb@sina.com.cn" "gender" "female" "ip_address" "217.79.234.103" "country" "China" "country_code" "CN" "city" "Xindian" "longitude" "116.694361" "latitude" "37.105382" "last_login" "1580395194" +HSET "user:1013" "first_name" "Falkner" "last_name" "Yedall" "email" "fyedallc@cdc.gov" "gender" "male" "ip_address" "203.201.64.133" "country" "Luxembourg" "country_code" "LU" "city" "Boevange-sur-Attert" "longitude" "6.0198003" "latitude" "49.7713426" "last_login" "1569106539" +HSET "user:1014" "first_name" "Emmy" "last_name" "Patria" "email" "epatriad@yolasite.com" "gender" "female" "ip_address" "179.157.227.63" "country" "China" "country_code" "CN" "city" "Qiligang" "longitude" "118.734651" "latitude" "30.916426" "last_login" "1584849589" +HSET "user:1015" "first_name" "Fitz" "last_name" "Lillecrop" "email" "flillecrope@upenn.edu" "gender" "male" "ip_address" "254.164.181.49" "country" "China" "country_code" "CN" "city" "Taibai" "longitude" "107.319116" "latitude" "34.058401" "last_login" "1587965570" +HSET "user:1016" "first_name" "Case" "last_name" "Cato" "email" "ccatof@admin.ch" "gender" "male" "ip_address" "77.18.76.157" "country" "Indonesia" "country_code" "ID" "city" "Cipatujah" "longitude" "108.024301" "latitude" "-7.7188383" "last_login" "1574816927" +HSET "user:1017" "first_name" "Angelique" "last_name" "Ingman" "email" "aingmang@blog.com" "gender" "female" "ip_address" "197.213.206.35" "country" "Portugal" "country_code" "PT" "city" "Portela" "longitude" "-8.9421044" "latitude" "39.7500822" "last_login" "1579138604" +HSET "user:1018" "first_name" "Dalton" "last_name" "Springett" "email" "dspringetth@dyndns.org" "gender" "male" "ip_address" "90.34.226.62" "country" "China" "country_code" "CN" "city" "Tianhe" "longitude" "113.3612" "latitude" "23.12468" "last_login" "1579504051" +HSET "user:1019" "first_name" "Cherise" "last_name" "Melloi" "email" "cmelloii@yandex.ru" "gender" "female" "ip_address" "186.86.36.149" "country" "China" "country_code" "CN" "city" "Daping" "longitude" "116.00509" "latitude" "24.094765" "last_login" "1578382084" +HSET "user:1020" "first_name" "Greg" "last_name" "Lobell" "email" "globellj@indiatimes.com" "gender" "male" "ip_address" "48.49.249.231" "country" "China" "country_code" "CN" "city" "Mafeng" "longitude" "111.902604" "latitude" "21.912701" "last_login" "1587527884" +HSET "user:1021" "first_name" "Dasha" "last_name" "Gillooly" "email" "dgilloolyk@tripod.com" "gender" "female" "ip_address" "226.55.133.81" "country" "China" "country_code" "CN" "city" "Hedao" "longitude" "112.9889132" "latitude" "28.1459758" "last_login" "1583397533" +HSET "user:1022" "first_name" "Isaiah" "last_name" "Stuehmeier" "email" "istuehmeierl@quantcast.com" "gender" "male" "ip_address" "155.231.187.190" "country" "China" "country_code" "CN" "city" "Ping’an" "longitude" "121.457658" "latitude" "31.2221" "last_login" "1576303196" +HSET "user:1023" "first_name" "Kevyn" "last_name" "Glide" "email" "kglidem@aboutads.info" "gender" "female" "ip_address" "92.255.207.14" "country" "Indonesia" "country_code" "ID" "city" "Pugeran" "longitude" "110.7465164" "latitude" "-7.7037789" "last_login" "1569280056" +HSET "user:1024" "first_name" "Mattias" "last_name" "Rosoni" "email" "mrosonin@intel.com" "gender" "male" "ip_address" "122.162.254.84" "country" "China" "country_code" "CN" "city" "Taling" "longitude" "115.9990815" "latitude" "29.7286909" "last_login" "1576370696" +HSET "user:1025" "first_name" "Lynnett" "last_name" "Brickstock" "email" "lbrickstocko@tinyurl.com" "gender" "female" "ip_address" "161.209.124.236" "country" "Russia" "country_code" "RU" "city" "Slobodka" "longitude" "38.1830715" "latitude" "56.4987582" "last_login" "1585291986" +HSET "user:1026" "first_name" "Dynah" "last_name" "Irons" "email" "dironsp@archive.org" "gender" "female" "ip_address" "112.2.64.84" "country" "Yemen" "country_code" "YE" "city" "Sāh" "longitude" "44.2166214" "latitude" "15.479529" "last_login" "1580206131" +HSET "user:1027" "first_name" "Marsiella" "last_name" "Mcwhinney" "email" "mmcwhinneyq@joomla.org" "gender" "female" "ip_address" "72.38.21.39" "country" "Argentina" "country_code" "AR" "city" "Pampa de los Guanacos" "longitude" "-64.3084285" "latitude" "-31.3320807" "last_login" "1580880185" +HSET "user:1028" "first_name" "Gaven" "last_name" "Scadden" "email" "gscaddenr@umn.edu" "gender" "male" "ip_address" "230.218.119.86" "country" "Indonesia" "country_code" "ID" "city" "Banjar Asahduren" "longitude" "114.9671388" "latitude" "-8.2104974" "last_login" "1595659791" +HSET "user:1029" "first_name" "Penn" "last_name" "Head" "email" "pheads@sourceforge.net" "gender" "male" "ip_address" "95.155.90.51" "country" "Poland" "country_code" "PL" "city" "Golina" "longitude" "18.0927297" "latitude" "52.2428641" "last_login" "1588975197" +HSET "user:1030" "first_name" "Lexi" "last_name" "Bayston" "email" "lbaystont@nationalgeographic.com" "gender" "female" "ip_address" "116.223.127.82" "country" "Greece" "country_code" "GR" "city" "Patrída" "longitude" "22.1857013" "latitude" "40.561598" "last_login" "1581679408" +HSET "user:1031" "first_name" "Lonnard" "last_name" "Bigglestone" "email" "lbigglestoneu@delicious.com" "gender" "male" "ip_address" "12.190.48.2" "country" "Indonesia" "country_code" "ID" "city" "Talun" "longitude" "112.274168" "latitude" "-8.0941273" "last_login" "1577982493" +HSET "user:1032" "first_name" "Asher" "last_name" "Brocket" "email" "abrocketv@dmoz.org" "gender" "male" "ip_address" "29.117.174.135" "country" "Pakistan" "country_code" "PK" "city" "Murree" "longitude" "73.3907315" "latitude" "33.9042954" "last_login" "1570875688" +HSET "user:1033" "first_name" "Alexandre" "last_name" "Hattoe" "email" "ahattoew@sakura.ne.jp" "gender" "male" "ip_address" "160.106.39.177" "country" "Bolivia" "country_code" "BO" "city" "Guanay" "longitude" "-67.8823146" "latitude" "-15.4979257" "last_login" "1599462554" +HSET "user:1034" "first_name" "Skipp" "last_name" "Swainson" "email" "sswainsonx@storify.com" "gender" "male" "ip_address" "68.32.87.133" "country" "Thailand" "country_code" "TH" "city" "Det Udom" "longitude" "105.0791228" "latitude" "14.8548457" "last_login" "1587413251" +HSET "user:1035" "first_name" "Warner" "last_name" "Armstead" "email" "warmsteady@webmd.com" "gender" "male" "ip_address" "133.39.87.201" "country" "Thailand" "country_code" "TH" "city" "Satuek" "longitude" "103.2940689" "latitude" "15.2958539" "last_login" "1585717907" +HSET "user:1036" "first_name" "Erma" "last_name" "Adnet" "email" "eadnetz@icq.com" "gender" "female" "ip_address" "108.139.58.106" "country" "China" "country_code" "CN" "city" "Jieguanting" "longitude" "106.738324" "latitude" "29.813041" "last_login" "1580986567" +HSET "user:1037" "first_name" "Andres" "last_name" "Bleackley" "email" "ableackley10@tmall.com" "gender" "male" "ip_address" "22.122.82.18" "country" "China" "country_code" "CN" "city" "Ha’erlong" "longitude" "76.075532" "latitude" "38.553725" "last_login" "1572052374" +HSET "user:1038" "first_name" "Milty" "last_name" "Disley" "email" "mdisley11@squidoo.com" "gender" "male" "ip_address" "227.34.129.191" "country" "Poland" "country_code" "PL" "city" "Wyszki" "longitude" "23.0334561" "latitude" "52.8522051" "last_login" "1597219554" +HSET "user:1039" "first_name" "Bradly" "last_name" "Borgesio" "email" "bborgesio12@webmd.com" "gender" "male" "ip_address" "27.74.137.87" "country" "Indonesia" "country_code" "ID" "city" "Pili" "longitude" "124.5140637" "latitude" "-9.7702219" "last_login" "1594545552" +HSET "user:1040" "first_name" "Cheslie" "last_name" "Collinge" "email" "ccollinge13@mit.edu" "gender" "female" "ip_address" "119.84.19.176" "country" "Ukraine" "country_code" "UA" "city" "Zahvizdya" "longitude" "24.6653537" "latitude" "48.9240653" "last_login" "1588132278" +HSET "user:1041" "first_name" "Stephine" "last_name" "Jubert" "email" "sjubert14@wired.com" "gender" "female" "ip_address" "242.186.9.119" "country" "Ukraine" "country_code" "UA" "city" "Borova" "longitude" "30.1017634" "latitude" "50.1758214" "last_login" "1593464440" +HSET "user:1042" "first_name" "Devi" "last_name" "Southan" "email" "dsouthan15@ted.com" "gender" "female" "ip_address" "42.188.66.191" "country" "Brazil" "country_code" "BR" "city" "Divinópolis" "longitude" "-44.8645811" "latitude" "-20.1287177" "last_login" "1589044788" +HSET "user:1043" "first_name" "Morey" "last_name" "Rudeyeard" "email" "mrudeyeard16@dailymotion.com" "gender" "male" "ip_address" "127.236.188.19" "country" "China" "country_code" "CN" "city" "Jinrui" "longitude" "108.9652643" "latitude" "34.2412845" "last_login" "1591449870" +HSET "user:1044" "first_name" "Orella" "last_name" "Dulwitch" "email" "odulwitch17@sciencedirect.com" "gender" "female" "ip_address" "98.31.176.129" "country" "China" "country_code" "CN" "city" "Wulan Hada" "longitude" "113.873272" "latitude" "43.915618" "last_login" "1573527943" +HSET "user:1045" "first_name" "Harmonie" "last_name" "Swains" "email" "hswains18@cbc.ca" "gender" "female" "ip_address" "209.210.160.221" "country" "Philippines" "country_code" "PH" "city" "Lupon" "longitude" "121.122805" "latitude" "14.576059" "last_login" "1593946829" +HSET "user:1046" "first_name" "Vickie" "last_name" "Barron" "email" "vbarron19@topsy.com" "gender" "female" "ip_address" "54.209.183.220" "country" "China" "country_code" "CN" "city" "Gongjiang" "longitude" "121.227747" "latitude" "31.032243" "last_login" "1599016833" +HSET "user:1047" "first_name" "Gabriello" "last_name" "Cuckson" "email" "gcuckson1a@fastcompany.com" "gender" "male" "ip_address" "117.85.62.11" "country" "Philippines" "country_code" "PH" "city" "Atabayan" "longitude" "122.4163734" "latitude" "10.6797099" "last_login" "1584171174" +HSET "user:1048" "first_name" "Mick" "last_name" "Goff" "email" "mgoff1b@weibo.com" "gender" "male" "ip_address" "56.99.217.16" "country" "Canada" "country_code" "CA" "city" "Killarney" "longitude" "-99.66364" "latitude" "49.18332" "last_login" "1590399355" +HSET "user:1049" "first_name" "Lesley" "last_name" "Tomaszek" "email" "ltomaszek1c@mozilla.org" "gender" "male" "ip_address" "188.130.34.157" "country" "Indonesia" "country_code" "ID" "city" "Panenggoede" "longitude" "119.0511" "latitude" "-9.6701" "last_login" "1581691531" +HSET "user:1050" "first_name" "Tanner" "last_name" "Emeny" "email" "temeny1d@facebook.com" "gender" "male" "ip_address" "238.31.213.56" "country" "Czech Republic" "country_code" "CZ" "city" "Lipník nad Bečvou" "longitude" "17.5857567" "latitude" "49.5271178" "last_login" "1570708367" +HSET "user:1051" "first_name" "Jessa" "last_name" "Mottley" "email" "jmottley1e@cargocollective.com" "gender" "female" "ip_address" "132.162.127.188" "country" "China" "country_code" "CN" "city" "Xiwanzi" "longitude" "115.279249" "latitude" "40.974829" "last_login" "1574424821" +HSET "user:1052" "first_name" "Katina" "last_name" "Sigsworth" "email" "ksigsworth1f@ask.com" "gender" "female" "ip_address" "14.208.183.122" "country" "China" "country_code" "CN" "city" "Chengxi" "longitude" "101.765843" "latitude" "36.628305" "last_login" "1596323800" +HSET "user:1053" "first_name" "Rodrick" "last_name" "Vreiberg" "email" "rvreiberg1g@house.gov" "gender" "male" "ip_address" "34.213.254.83" "country" "Portugal" "country_code" "PT" "city" "Ladoeiro" "longitude" "-7.2713126" "latitude" "39.8325643" "last_login" "1572168512" +HSET "user:1054" "first_name" "Yul" "last_name" "Branscomb" "email" "ybranscomb1h@senate.gov" "gender" "male" "ip_address" "80.124.142.251" "country" "Poland" "country_code" "PL" "city" "Książ Wielkopolski" "longitude" "17.239347" "latitude" "52.0609041" "last_login" "1573680642" +HSET "user:1055" "first_name" "Neel" "last_name" "Culbert" "email" "nculbert1i@newyorker.com" "gender" "male" "ip_address" "238.30.236.246" "country" "Ecuador" "country_code" "EC" "city" "Eloy Alfaro" "longitude" "-79.8184684" "latitude" "-2.1596406" "last_login" "1576022655" +HSET "user:1056" "first_name" "Dan" "last_name" "Nesbeth" "email" "dnesbeth1j@amazon.co.uk" "gender" "male" "ip_address" "168.242.125.16" "country" "Honduras" "country_code" "HN" "city" "Cerro Blanco" "longitude" "-87.7787929" "latitude" "14.6628087" "last_login" "1588622943" +HSET "user:1057" "first_name" "Elwyn" "last_name" "Clarridge" "email" "eclarridge1k@qq.com" "gender" "male" "ip_address" "138.222.51.235" "country" "Germany" "country_code" "DE" "city" "Berlin" "longitude" "13.3488258" "latitude" "52.4856992" "last_login" "1594814531" +HSET "user:1058" "first_name" "Etienne" "last_name" "Jezzard" "email" "ejezzard1l@telegraph.co.uk" "gender" "male" "ip_address" "199.221.92.146" "country" "Ethiopia" "country_code" "ET" "city" "Giyon" "longitude" "37.973162" "latitude" "8.538323" "last_login" "1570443855" +HSET "user:1059" "first_name" "Standford" "last_name" "Girkins" "email" "sgirkins1m@google.ru" "gender" "male" "ip_address" "113.155.199.129" "country" "France" "country_code" "FR" "city" "Paris 15" "longitude" "2.2754517" "latitude" "48.8357169" "last_login" "1594722913" +HSET "user:1060" "first_name" "Matthaeus" "last_name" "Angood" "email" "mangood1n@cargocollective.com" "gender" "male" "ip_address" "57.59.235.36" "country" "Ukraine" "country_code" "UA" "city" "Chapayeve" "longitude" "34.9100068" "latitude" "50.3250139" "last_login" "1597918139" +HSET "user:1061" "first_name" "Kellia" "last_name" "Gwioneth" "email" "kgwioneth1o@omniture.com" "gender" "female" "ip_address" "108.99.5.172" "country" "Poland" "country_code" "PL" "city" "Śródmieście" "longitude" "22.9882406" "latitude" "53.8386511" "last_login" "1584690581" +HSET "user:1062" "first_name" "Leontine" "last_name" "Dellenbach" "email" "ldellenbach1p@state.tx.us" "gender" "female" "ip_address" "164.133.249.158" "country" "Russia" "country_code" "RU" "city" "Kanashevo" "longitude" "62.0636608" "latitude" "55.2087523" "last_login" "1590146018" +HSET "user:1063" "first_name" "Carmella" "last_name" "Northleigh" "email" "cnorthleigh1q@constantcontact.com" "gender" "female" "ip_address" "148.166.210.89" "country" "Kazakhstan" "country_code" "KZ" "city" "Ayagoz" "longitude" "80.432736" "latitude" "47.9755808" "last_login" "1575811763" +HSET "user:1064" "first_name" "Win" "last_name" "Pocklington" "email" "wpocklington1r@dion.ne.jp" "gender" "male" "ip_address" "41.68.108.182" "country" "Philippines" "country_code" "PH" "city" "Alaminos" "longitude" "121.2462166" "latitude" "14.0651123" "last_login" "1579909236" +HSET "user:1065" "first_name" "Lindi" "last_name" "Vaneschi" "email" "lvaneschi1s@plala.or.jp" "gender" "female" "ip_address" "118.107.76.244" "country" "Indonesia" "country_code" "ID" "city" "Padas" "longitude" "112.542" "latitude" "-2.576499" "last_login" "1572160857" +HSET "user:1066" "first_name" "Carly" "last_name" "Reiling" "email" "creiling1t@creativecommons.org" "gender" "female" "ip_address" "189.249.73.232" "country" "Greece" "country_code" "GR" "city" "Triandría" "longitude" "22.9734623" "latitude" "40.6241099" "last_login" "1583785401" +HSET "user:1067" "first_name" "Leigh" "last_name" "Mewes" "email" "lmewes1u@tiny.cc" "gender" "male" "ip_address" "173.19.73.169" "country" "Pakistan" "country_code" "PK" "city" "Chak Two Hundred Forty-Nine TDA" "longitude" "71.20946" "latitude" "31.17959" "last_login" "1574432167" +HSET "user:1068" "first_name" "Dugald" "last_name" "Broseman" "email" "dbroseman1v@aol.com" "gender" "male" "ip_address" "205.191.217.202" "country" "Portugal" "country_code" "PT" "city" "São Mateus" "longitude" "-28.4586574" "latitude" "38.4331962" "last_login" "1582922062" +HSET "user:1069" "first_name" "Wolfgang" "last_name" "Blest" "email" "wblest1w@narod.ru" "gender" "male" "ip_address" "143.239.61.189" "country" "France" "country_code" "FR" "city" "Nîmes" "longitude" "4.3520438" "latitude" "43.8447278" "last_login" "1582538420" +HSET "user:1070" "first_name" "Rycca" "last_name" "Brownsea" "email" "rbrownsea1x@cbsnews.com" "gender" "female" "ip_address" "116.77.160.40" "country" "Russia" "country_code" "RU" "city" "Chernogorsk" "longitude" "91.3543318" "latitude" "53.7835379" "last_login" "1578003959" +HSET "user:1071" "first_name" "Kane" "last_name" "Aronowicz" "email" "karonowicz1y@lycos.com" "gender" "male" "ip_address" "9.161.46.222" "country" "China" "country_code" "CN" "city" "Gegu" "longitude" "117.508856" "latitude" "38.988722" "last_login" "1590654835" +HSET "user:1072" "first_name" "Marya" "last_name" "Burdge" "email" "mburdge1z@ted.com" "gender" "female" "ip_address" "187.239.252.226" "country" "Bulgaria" "country_code" "BG" "city" "Klisura" "longitude" "24.4496426" "latitude" "42.6930655" "last_login" "1580860137" +HSET "user:1073" "first_name" "Sabina" "last_name" "Giovannilli" "email" "sgiovannilli20@xing.com" "gender" "female" "ip_address" "94.207.239.86" "country" "Russia" "country_code" "RU" "city" "Donskoy" "longitude" "40.5510554" "latitude" "46.8467747" "last_login" "1573938559" +HSET "user:1074" "first_name" "Freddie" "last_name" "Trosdall" "email" "ftrosdall21@wsj.com" "gender" "male" "ip_address" "111.123.38.91" "country" "Myanmar" "country_code" "MM" "city" "Paungde" "longitude" "95.5066242" "latitude" "18.4931618" "last_login" "1591618128" +HSET "user:1075" "first_name" "Fernando" "last_name" "Cowin" "email" "fcowin22@mail.ru" "gender" "male" "ip_address" "1.233.210.142" "country" "Greece" "country_code" "GR" "city" "Skýros" "longitude" "24.5955356" "latitude" "38.8162965" "last_login" "1587759023" +HSET "user:1076" "first_name" "Lucine" "last_name" "Jesty" "email" "ljesty23@chronoengine.com" "gender" "female" "ip_address" "96.180.197.135" "country" "Peru" "country_code" "PE" "city" "Iberia" "longitude" "-69.4887886" "latitude" "-11.4077673" "last_login" "1594036151" +HSET "user:1077" "first_name" "Davon" "last_name" "Hughlin" "email" "dhughlin24@google.fr" "gender" "male" "ip_address" "115.156.141.23" "country" "China" "country_code" "CN" "city" "Sanqiao" "longitude" "107.77215" "latitude" "34.943098" "last_login" "1580190540" +HSET "user:1078" "first_name" "Cristin" "last_name" "Heeps" "email" "cheeps25@dailymotion.com" "gender" "female" "ip_address" "42.87.235.42" "country" "Philippines" "country_code" "PH" "city" "Santa Cruz" "longitude" "120.7213113" "latitude" "13.0748879" "last_login" "1582247397" +HSET "user:1079" "first_name" "Tate" "last_name" "Tapner" "email" "ttapner26@studiopress.com" "gender" "male" "ip_address" "176.135.136.187" "country" "Czech Republic" "country_code" "CZ" "city" "Šumperk" "longitude" "16.9717754" "latitude" "49.9778407" "last_login" "1596965439" +HSET "user:1080" "first_name" "Titus" "last_name" "Moncur" "email" "tmoncur27@facebook.com" "gender" "male" "ip_address" "242.202.137.94" "country" "Argentina" "country_code" "AR" "city" "Quitilipi" "longitude" "-60.216667" "latitude" "-26.883247" "last_login" "1569774430" +HSET "user:1081" "first_name" "Britt" "last_name" "Itzcak" "email" "bitzcak28@businessinsider.com" "gender" "female" "ip_address" "75.135.231.70" "country" "Indonesia" "country_code" "ID" "city" "Sigli" "longitude" "95.9602371" "latitude" "5.3847763" "last_login" "1589452059" +HSET "user:1082" "first_name" "Jud" "last_name" "Grimsdyke" "email" "jgrimsdyke29@hatena.ne.jp" "gender" "male" "ip_address" "220.180.48.57" "country" "China" "country_code" "CN" "city" "Shicheng" "longitude" "118.9353968" "latitude" "29.5530941" "last_login" "1586062868" +HSET "user:1083" "first_name" "Trixie" "last_name" "Giannotti" "email" "tgiannotti2a@usgs.gov" "gender" "female" "ip_address" "113.234.111.162" "country" "Peru" "country_code" "PE" "city" "Huertas" "longitude" "-75.4723411" "latitude" "-11.7659957" "last_login" "1594479739" +HSET "user:1084" "first_name" "Alina" "last_name" "Francklyn" "email" "afrancklyn2b@blinklist.com" "gender" "female" "ip_address" "195.95.39.232" "country" "Ethiopia" "country_code" "ET" "city" "Debre Sīna" "longitude" "39.7626791" "latitude" "9.8499058" "last_login" "1592604874" +HSET "user:1085" "first_name" "Kerrie" "last_name" "Bloy" "email" "kbloy2c@shutterfly.com" "gender" "female" "ip_address" "121.135.246.158" "country" "Czech Republic" "country_code" "CZ" "city" "Čejkovice" "longitude" "14.3800489" "latitude" "49.0122384" "last_login" "1572164227" +HSET "user:1086" "first_name" "Codee" "last_name" "Fritche" "email" "cfritche2d@so-net.ne.jp" "gender" "female" "ip_address" "92.79.120.126" "country" "Poland" "country_code" "PL" "city" "Końskowola" "longitude" "22.051777" "latitude" "51.4090959" "last_login" "1592127656" +HSET "user:1087" "first_name" "Hewie" "last_name" "Beven" "email" "hbeven2e@ask.com" "gender" "male" "ip_address" "17.121.137.18" "country" "Indonesia" "country_code" "ID" "city" "Putat Lor" "longitude" "112.5572887" "latitude" "-7.2640313" "last_login" "1585425234" +HSET "user:1088" "first_name" "Veradis" "last_name" "Bridgewood" "email" "vbridgewood2f@networksolutions.com" "gender" "female" "ip_address" "131.210.158.227" "country" "Germany" "country_code" "DE" "city" "Karlsruhe" "longitude" "8.4060268" "latitude" "48.9728482" "last_login" "1571930440" +HSET "user:1089" "first_name" "Katharyn" "last_name" "Beggini" "email" "kbeggini2g@examiner.com" "gender" "female" "ip_address" "55.140.121.186" "country" "Peru" "country_code" "PE" "city" "Sayapullo" "longitude" "-78.466042" "latitude" "-7.594182" "last_login" "1583728031" +HSET "user:1090" "first_name" "Olav" "last_name" "Thalmann" "email" "othalmann2h@wiley.com" "gender" "male" "ip_address" "57.3.162.219" "country" "China" "country_code" "CN" "city" "Kambaxoi" "longitude" "88.53333" "latitude" "28.3" "last_login" "1583036586" +HSET "user:1091" "first_name" "Boy" "last_name" "Capper" "email" "bcapper2i@dagondesign.com" "gender" "male" "ip_address" "145.247.77.47" "country" "United States" "country_code" "US" "city" "Hicksville" "longitude" "-73.53" "latitude" "40.77" "last_login" "1573175264" +HSET "user:1092" "first_name" "Malchy" "last_name" "Vaar" "email" "mvaar2j@omniture.com" "gender" "male" "ip_address" "238.235.114.56" "country" "United States" "country_code" "US" "city" "Columbus" "longitude" "-83" "latitude" "39.96" "last_login" "1572967643" +HSET "user:1093" "first_name" "Adelheid" "last_name" "Massingham" "email" "amassingham2k@vistaprint.com" "gender" "female" "ip_address" "97.31.112.240" "country" "Poland" "country_code" "PL" "city" "Janowice" "longitude" "20.8725617" "latitude" "49.911732" "last_login" "1591949164" +HSET "user:1094" "first_name" "Justinn" "last_name" "Abisetti" "email" "jabisetti2l@yelp.com" "gender" "female" "ip_address" "141.112.225.229" "country" "China" "country_code" "CN" "city" "Zhen’an" "longitude" "109.152893" "latitude" "33.423357" "last_login" "1588154767" +HSET "user:1095" "first_name" "Dina" "last_name" "Izhakov" "email" "dizhakov2m@acquirethisname.com" "gender" "female" "ip_address" "81.46.61.130" "country" "Brazil" "country_code" "BR" "city" "Florianópolis" "longitude" "-48.5482195" "latitude" "-27.5948698" "last_login" "1593173441" +HSET "user:1096" "first_name" "Aggy" "last_name" "Ateggart" "email" "aateggart2n@rakuten.co.jp" "gender" "female" "ip_address" "153.122.178.61" "country" "Peru" "country_code" "PE" "city" "Soritor" "longitude" "-77.0967357" "latitude" "-6.1382732" "last_login" "1597099313" +HSET "user:1097" "first_name" "Aurelie" "last_name" "Sandyford" "email" "asandyford2o@google.nl" "gender" "female" "ip_address" "103.47.225.169" "country" "Ukraine" "country_code" "UA" "city" "Ustynivka" "longitude" "32.5560249" "latitude" "47.9392632" "last_login" "1599168255" +HSET "user:1098" "first_name" "Lorrin" "last_name" "Gentle" "email" "lgentle2p@addtoany.com" "gender" "female" "ip_address" "163.255.58.42" "country" "China" "country_code" "CN" "city" "Youfang" "longitude" "109.07515" "latitude" "32.291013" "last_login" "1594318562" +HSET "user:1099" "first_name" "Midge" "last_name" "Gleadhall" "email" "mgleadhall2q@oracle.com" "gender" "female" "ip_address" "76.165.28.27" "country" "Mauritius" "country_code" "MU" "city" "Grand Bois" "longitude" "57.5490299" "latitude" "-20.4200737" "last_login" "1575512560" +HSET "user:1100" "first_name" "Marline" "last_name" "Kassidy" "email" "mkassidy2r@timesonline.co.uk" "gender" "female" "ip_address" "145.142.191.181" "country" "Russia" "country_code" "RU" "city" "Sosnovyy Bor" "longitude" "39.6602235" "latitude" "56.4459712" "last_login" "1570705205" +HSET "user:1101" "first_name" "Elinore" "last_name" "Warrick" "email" "ewarrick2s@dmoz.org" "gender" "female" "ip_address" "255.49.172.14" "country" "Philippines" "country_code" "PH" "city" "Minuyan" "longitude" "121.0912149" "latitude" "14.8454589" "last_login" "1588309592" +HSET "user:1102" "first_name" "Doralyn" "last_name" "Humpage" "email" "dhumpage2t@unc.edu" "gender" "female" "ip_address" "183.210.58.158" "country" "China" "country_code" "CN" "city" "Zhaocun" "longitude" "119.310773" "latitude" "30.97213" "last_login" "1592318773" +HSET "user:1103" "first_name" "Cinderella" "last_name" "Janacek" "email" "cjanacek2u@gmpg.org" "gender" "female" "ip_address" "233.161.77.250" "country" "Guatemala" "country_code" "GT" "city" "Quesada" "longitude" "-90.0375295" "latitude" "14.2712301" "last_login" "1578216473" +HSET "user:1104" "first_name" "Karilynn" "last_name" "Chipps" "email" "kchipps2v@vkontakte.ru" "gender" "female" "ip_address" "209.215.53.56" "country" "Sweden" "country_code" "SE" "city" "Tranås" "longitude" "15.0052213" "latitude" "58.0275087" "last_login" "1589523941" +HSET "user:1105" "first_name" "Casey" "last_name" "Tourot" "email" "ctourot2w@multiply.com" "gender" "female" "ip_address" "31.159.180.236" "country" "China" "country_code" "CN" "city" "Libu" "longitude" "107.88645" "latitude" "25.410654" "last_login" "1593443939" +HSET "user:1106" "first_name" "Mile" "last_name" "Cafferky" "email" "mcafferky2x@scribd.com" "gender" "male" "ip_address" "211.126.5.37" "country" "China" "country_code" "CN" "city" "Tatrang" "longitude" "103.8788769" "latitude" "22.5142785" "last_login" "1578494924" +HSET "user:1107" "first_name" "Karole" "last_name" "Tiddy" "email" "ktiddy2y@hugedomains.com" "gender" "female" "ip_address" "234.54.135.45" "country" "Indonesia" "country_code" "ID" "city" "Jambubol" "longitude" "105.3241245" "latitude" "-5.0898252" "last_login" "1591126226" +HSET "user:1108" "first_name" "Elvira" "last_name" "Brookton" "email" "ebrookton2z@flavors.me" "gender" "female" "ip_address" "57.104.140.185" "country" "Brazil" "country_code" "BR" "city" "Capelinha" "longitude" "-42.5172107" "latitude" "-17.6929945" "last_login" "1574806129" +HSET "user:1109" "first_name" "Kendal" "last_name" "Jailler" "email" "kjailler30@mapy.cz" "gender" "male" "ip_address" "62.79.114.138" "country" "China" "country_code" "CN" "city" "Xinji" "longitude" "115.217658" "latitude" "37.943121" "last_login" "1589369208" +HSET "user:1110" "first_name" "Halsey" "last_name" "Crabb" "email" "hcrabb31@howstuffworks.com" "gender" "male" "ip_address" "153.136.201.140" "country" "China" "country_code" "CN" "city" "Dubu" "longitude" "-90.7164246" "latitude" "42.4947806" "last_login" "1579770110" +HSET "user:1111" "first_name" "Hyatt" "last_name" "Mackiewicz" "email" "hmackiewicz32@reuters.com" "gender" "male" "ip_address" "32.72.124.200" "country" "Indonesia" "country_code" "ID" "city" "Tembeling" "longitude" "104.470164" "latitude" "1.008763" "last_login" "1589815216" +HSET "user:1112" "first_name" "Herb" "last_name" "Oman" "email" "homan33@vkontakte.ru" "gender" "male" "ip_address" "215.11.192.102" "country" "Philippines" "country_code" "PH" "city" "Kawit" "longitude" "121.0168115" "latitude" "14.5694528" "last_login" "1578879305" +HSET "user:1113" "first_name" "Jeannie" "last_name" "Hymus" "email" "jhymus34@cbsnews.com" "gender" "female" "ip_address" "195.155.93.255" "country" "Yemen" "country_code" "YE" "city" "As Suwaydā" "longitude" "45.2304" "latitude" "13.78694" "last_login" "1568652501" +HSET "user:1114" "first_name" "Ortensia" "last_name" "Adamowitz" "email" "oadamowitz35@xrea.com" "gender" "female" "ip_address" "178.22.12.68" "country" "Indonesia" "country_code" "ID" "city" "Cigalontang" "longitude" "107.9768875" "latitude" "-7.3059077" "last_login" "1569301148" +HSET "user:1115" "first_name" "Silvana" "last_name" "Sisland" "email" "ssisland36@example.com" "gender" "female" "ip_address" "140.238.61.114" "country" "Philippines" "country_code" "PH" "city" "Mianay" "longitude" "122.6946707" "latitude" "11.4967991" "last_login" "1569906371" +HSET "user:1116" "first_name" "Kittie" "last_name" "Comport" "email" "kcomport37@google.co.uk" "gender" "female" "ip_address" "6.95.6.135" "country" "Macedonia" "country_code" "MK" "city" "Bedinje" "longitude" "21.6949963" "latitude" "42.1414947" "last_login" "1589943992" +HSET "user:1117" "first_name" "Lonny" "last_name" "Paintain" "email" "lpaintain38@behance.net" "gender" "male" "ip_address" "224.88.111.158" "country" "Kazakhstan" "country_code" "KZ" "city" "Bestöbe" "longitude" "73.0947195" "latitude" "52.5017027" "last_login" "1575232210" +HSET "user:1118" "first_name" "Odelinda" "last_name" "Sherlock" "email" "osherlock39@odnoklassniki.ru" "gender" "female" "ip_address" "236.186.224.162" "country" "Paraguay" "country_code" "PY" "city" "Bella Vista" "longitude" "-55.5746294" "latitude" "-27.0501654" "last_login" "1583680166" +HSET "user:1119" "first_name" "Barrie" "last_name" "Harroll" "email" "bharroll3a@mashable.com" "gender" "male" "ip_address" "134.97.189.31" "country" "Colombia" "country_code" "CO" "city" "Mercaderes" "longitude" "-77.163397" "latitude" "1.795801" "last_login" "1596557033" +HSET "user:1120" "first_name" "Lay" "last_name" "MacIlhargy" "email" "lmacilhargy3b@elegantthemes.com" "gender" "male" "ip_address" "195.165.60.229" "country" "Indonesia" "country_code" "ID" "city" "Pasar" "longitude" "110.8312777" "latitude" "-7.5690727" "last_login" "1570747492" +HSET "user:1121" "first_name" "Philippine" "last_name" "Trusse" "email" "ptrusse3c@nytimes.com" "gender" "female" "ip_address" "36.108.97.102" "country" "Ukraine" "country_code" "UA" "city" "Tymoshivka" "longitude" "35.1072745" "latitude" "47.1844184" "last_login" "1586916745" +HSET "user:1122" "first_name" "Hogan" "last_name" "O' Mulderrig" "email" "homulderrig3d@surveymonkey.com" "gender" "male" "ip_address" "149.244.232.12" "country" "Indonesia" "country_code" "ID" "city" "Ketawang" "longitude" "110.3279026" "latitude" "-7.4104934" "last_login" "1577242556" +HSET "user:1123" "first_name" "Jeromy" "last_name" "Kesper" "email" "jkesper3e@4shared.com" "gender" "male" "ip_address" "185.197.138.2" "country" "Netherlands" "country_code" "NL" "city" "Enschede" "longitude" "6.8954592" "latitude" "52.211713" "last_login" "1591396315" +HSET "user:1124" "first_name" "Martelle" "last_name" "Shellcross" "email" "mshellcross3f@1und1.de" "gender" "female" "ip_address" "0.192.104.105" "country" "Yemen" "country_code" "YE" "city" "Al Maḩwīt" "longitude" "43.5462744" "latitude" "15.4687838" "last_login" "1572773495" +HSET "user:1125" "first_name" "Melva" "last_name" "Lyfield" "email" "mlyfield3g@npr.org" "gender" "female" "ip_address" "82.130.8.180" "country" "Philippines" "country_code" "PH" "city" "Mabalacat" "longitude" "120.5879653" "latitude" "15.1757062" "last_login" "1573240501" +HSET "user:1126" "first_name" "Norina" "last_name" "Jerrand" "email" "njerrand3h@sbwire.com" "gender" "female" "ip_address" "31.183.223.189" "country" "China" "country_code" "CN" "city" "Xicheng" "longitude" "116.365867" "latitude" "39.912288" "last_login" "1572174208" +HSET "user:1127" "first_name" "Sherm" "last_name" "Summergill" "email" "ssummergill3i@oakley.com" "gender" "male" "ip_address" "134.166.223.23" "country" "Philippines" "country_code" "PH" "city" "Maño" "longitude" "123.9418261" "latitude" "11.042265" "last_login" "1570214239" +HSET "user:1128" "first_name" "Murial" "last_name" "Saw" "email" "msaw3j@imdb.com" "gender" "female" "ip_address" "86.28.4.63" "country" "Japan" "country_code" "JP" "city" "Minami-rinkan" "longitude" "139.4480166" "latitude" "35.4957441" "last_login" "1574298352" +HSET "user:1129" "first_name" "Crawford" "last_name" "Ravel" "email" "cravel3k@harvard.edu" "gender" "male" "ip_address" "7.168.82.65" "country" "Portugal" "country_code" "PT" "city" "Barreiro" "longitude" "-7.8102718" "latitude" "41.2525891" "last_login" "1592569263" +HSET "user:1130" "first_name" "Antoinette" "last_name" "Fourmy" "email" "afourmy3l@noaa.gov" "gender" "female" "ip_address" "86.31.6.222" "country" "Poland" "country_code" "PL" "city" "Złotniki" "longitude" "20.2540479" "latitude" "50.7480989" "last_login" "1588556786" +HSET "user:1131" "first_name" "Trescha" "last_name" "Barczewski" "email" "tbarczewski3m@booking.com" "gender" "female" "ip_address" "172.55.125.252" "country" "China" "country_code" "CN" "city" "Fuzhou" "longitude" "119.296482" "latitude" "26.074478" "last_login" "1582603438" +HSET "user:1132" "first_name" "Niko" "last_name" "Heisman" "email" "nheisman3n@globo.com" "gender" "male" "ip_address" "21.60.207.211" "country" "China" "country_code" "CN" "city" "Fengxizhai" "longitude" "98.5069862" "latitude" "39.7467369" "last_login" "1575377069" +HSET "user:1133" "first_name" "Nollie" "last_name" "Lambertazzi" "email" "nlambertazzi3o@qq.com" "gender" "female" "ip_address" "198.94.190.80" "country" "Sweden" "country_code" "SE" "city" "Johanneshov" "longitude" "18.0695647" "latitude" "59.294651" "last_login" "1596999032" +HSET "user:1134" "first_name" "Sunshine" "last_name" "Drover" "email" "sdrover3p@nyu.edu" "gender" "female" "ip_address" "243.215.191.179" "country" "China" "country_code" "CN" "city" "Jiusi" "longitude" "107.454787" "latitude" "26.096382" "last_login" "1578449133" +HSET "user:1135" "first_name" "Ginnifer" "last_name" "Vinter" "email" "gvinter3q@lulu.com" "gender" "female" "ip_address" "82.79.244.115" "country" "Ecuador" "country_code" "EC" "city" "Baños" "longitude" "-78.4268758" "latitude" "-1.3928344" "last_login" "1598477482" +HSET "user:1136" "first_name" "Marshall" "last_name" "Charge" "email" "mcharge3r@yale.edu" "gender" "male" "ip_address" "147.183.161.49" "country" "Colombia" "country_code" "CO" "city" "Arboleda" "longitude" "-75.427262" "latitude" "6.0351528" "last_login" "1585500570" +HSET "user:1137" "first_name" "Anthiathia" "last_name" "Gentle" "email" "agentle3s@xinhuanet.com" "gender" "female" "ip_address" "25.230.121.109" "country" "China" "country_code" "CN" "city" "Bashan" "longitude" "105.944081" "latitude" "29.04797" "last_login" "1577385923" +HSET "user:1138" "first_name" "Katya" "last_name" "Petruskevich" "email" "kpetruskevich3t@webeden.co.uk" "gender" "female" "ip_address" "46.182.10.184" "country" "Argentina" "country_code" "AR" "city" "Libertador General San Martín" "longitude" "-58.5801516" "latitude" "-34.6893836" "last_login" "1594747495" +HSET "user:1139" "first_name" "Julieta" "last_name" "Mungham" "email" "jmungham3u@java.com" "gender" "female" "ip_address" "35.254.150.27" "country" "Azerbaijan" "country_code" "AZ" "city" "Bilajer" "longitude" "50.0415363" "latitude" "40.5811666" "last_login" "1577431713" +HSET "user:1140" "first_name" "Eleonora" "last_name" "Beagley" "email" "ebeagley3v@tinyurl.com" "gender" "female" "ip_address" "129.170.58.134" "country" "Cuba" "country_code" "CU" "city" "Jesús Menéndez" "longitude" "-76.4736602" "latitude" "21.1596123" "last_login" "1591975309" +HSET "user:1141" "first_name" "Bren" "last_name" "Langthorne" "email" "blangthorne3w@economist.com" "gender" "male" "ip_address" "93.49.245.247" "country" "Greece" "country_code" "GR" "city" "Panórama" "longitude" "23.0279289" "latitude" "40.5885408" "last_login" "1595822115" +HSET "user:1142" "first_name" "Blanca" "last_name" "Moine" "email" "bmoine3x@sourceforge.net" "gender" "female" "ip_address" "82.59.152.0" "country" "Argentina" "country_code" "AR" "city" "Tintina" "longitude" "-62.7087197" "latitude" "-27.0307058" "last_login" "1597803809" +HSET "user:1143" "first_name" "Robena" "last_name" "Ryde" "email" "rryde3y@theguardian.com" "gender" "female" "ip_address" "168.152.205.169" "country" "China" "country_code" "CN" "city" "Zhangcun" "longitude" "125.323544" "latitude" "43.817071" "last_login" "1583235003" +HSET "user:1144" "first_name" "Petrina" "last_name" "Yukhtin" "email" "pyukhtin3z@list-manage.com" "gender" "female" "ip_address" "226.0.226.168" "country" "Gambia" "country_code" "GM" "city" "Karantaba" "longitude" "-14.5611573" "latitude" "13.5699981" "last_login" "1577805103" +HSET "user:1145" "first_name" "Trumann" "last_name" "Stanlike" "email" "tstanlike40@theatlantic.com" "gender" "male" "ip_address" "199.27.31.31" "country" "Russia" "country_code" "RU" "city" "Nevel’" "longitude" "29.9291962" "latitude" "56.0181995" "last_login" "1586815637" +HSET "user:1146" "first_name" "Skyler" "last_name" "Bootman" "email" "sbootman41@imageshack.us" "gender" "male" "ip_address" "138.66.42.220" "country" "Indonesia" "country_code" "ID" "city" "Cukangpanjang" "longitude" "105.9098" "latitude" "-6.334" "last_login" "1587554333" +HSET "user:1147" "first_name" "Bran" "last_name" "Brantzen" "email" "bbrantzen42@wix.com" "gender" "male" "ip_address" "93.81.89.177" "country" "Iran" "country_code" "IR" "city" "Naqadeh" "longitude" "45.3878348" "latitude" "36.956333" "last_login" "1583181332" +HSET "user:1148" "first_name" "Marcile" "last_name" "Hoodspeth" "email" "mhoodspeth43@skyrock.com" "gender" "female" "ip_address" "4.95.52.162" "country" "Indonesia" "country_code" "ID" "city" "Bendo" "longitude" "111.4395128" "latitude" "-7.6492089" "last_login" "1594458457" +HSET "user:1149" "first_name" "Adolphe" "last_name" "Burren" "email" "aburren44@constantcontact.com" "gender" "male" "ip_address" "8.137.57.106" "country" "Indonesia" "country_code" "ID" "city" "Momanalu" "longitude" "123.1415" "latitude" "-10.6631" "last_login" "1570209654" +HSET "user:1150" "first_name" "Sophie" "last_name" "Wayland" "email" "swayland45@ehow.com" "gender" "female" "ip_address" "189.20.236.37" "country" "Ukraine" "country_code" "UA" "city" "Krasnodon" "longitude" "39.7430006" "latitude" "48.3000957" "last_login" "1583303237" +HSET "user:1151" "first_name" "Obed" "last_name" "Feckey" "email" "ofeckey46@shareasale.com" "gender" "male" "ip_address" "252.46.171.16" "country" "Vietnam" "country_code" "VN" "city" "Tam Kỳ" "longitude" "108.4786313" "latitude" "15.5638825" "last_login" "1590261298" +HSET "user:1152" "first_name" "Jean" "last_name" "Foyle" "email" "jfoyle47@webmd.com" "gender" "female" "ip_address" "218.144.156.18" "country" "Portugal" "country_code" "PT" "city" "Fajões" "longitude" "-8.4250467" "latitude" "40.9178949" "last_login" "1574099705" +HSET "user:1153" "first_name" "Nanon" "last_name" "Hirsch" "email" "nhirsch48@tuttocitta.it" "gender" "female" "ip_address" "152.153.179.179" "country" "Australia" "country_code" "AU" "city" "Adelaide Mail Centre" "longitude" "138.574391" "latitude" "-34.990888" "last_login" "1591343883" +HSET "user:1154" "first_name" "Nanete" "last_name" "Le Friec" "email" "nlefriec49@sina.com.cn" "gender" "female" "ip_address" "112.6.53.217" "country" "Cambodia" "country_code" "KH" "city" "Kampong Cham" "longitude" "105.4645408" "latitude" "11.9924294" "last_login" "1578240303" +HSET "user:1155" "first_name" "Minor" "last_name" "Asche" "email" "masche4a@cafepress.com" "gender" "male" "ip_address" "183.154.24.145" "country" "Peru" "country_code" "PE" "city" "Jangas" "longitude" "-77.5777031" "latitude" "-9.4004209" "last_login" "1590820832" +HSET "user:1156" "first_name" "Tripp" "last_name" "Deluce" "email" "tdeluce4b@so-net.ne.jp" "gender" "male" "ip_address" "76.203.116.196" "country" "Indonesia" "country_code" "ID" "city" "Sungairaya" "longitude" "109.6163185" "latitude" "-0.2467982" "last_login" "1588087643" +HSET "user:1157" "first_name" "Melva" "last_name" "Jovasevic" "email" "mjovasevic4c@independent.co.uk" "gender" "female" "ip_address" "27.128.167.49" "country" "United States" "country_code" "US" "city" "Kansas City" "longitude" "-94.61" "latitude" "39.06" "last_login" "1593989232" +HSET "user:1158" "first_name" "Faustina" "last_name" "Burrow" "email" "fburrow4d@theglobeandmail.com" "gender" "female" "ip_address" "42.158.167.32" "country" "Philippines" "country_code" "PH" "city" "Butubut Norte" "longitude" "120.401159" "latitude" "16.802718" "last_login" "1598895336" +HSET "user:1159" "first_name" "Anastassia" "last_name" "Finnigan" "email" "afinnigan4e@timesonline.co.uk" "gender" "female" "ip_address" "41.134.65.43" "country" "Mongolia" "country_code" "MN" "city" "Ulaan-Uul" "longitude" "99.2267999" "latitude" "50.6770215" "last_login" "1574222706" +HSET "user:1160" "first_name" "Salvidor" "last_name" "Dust" "email" "sdust4f@mapy.cz" "gender" "male" "ip_address" "78.137.3.115" "country" "Argentina" "country_code" "AR" "city" "Rosario" "longitude" "-58.6661711" "latitude" "-34.5023286" "last_login" "1569556095" +HSET "user:1161" "first_name" "Pepillo" "last_name" "Ambrosch" "email" "pambrosch4g@shutterfly.com" "gender" "male" "ip_address" "17.142.55.202" "country" "China" "country_code" "CN" "city" "Yantianhe" "longitude" "115.161532" "latitude" "30.967145" "last_login" "1590814687" +HSET "user:1162" "first_name" "Hube" "last_name" "Culligan" "email" "hculligan4h@icio.us" "gender" "male" "ip_address" "187.109.8.185" "country" "China" "country_code" "CN" "city" "Xinghai" "longitude" "121.5830108" "latitude" "38.8812423" "last_login" "1598120674" +HSET "user:1163" "first_name" "Merrili" "last_name" "Elsom" "email" "melsom4i@bravesites.com" "gender" "female" "ip_address" "183.198.33.214" "country" "Russia" "country_code" "RU" "city" "Zhankhoteko" "longitude" "43.20792" "latitude" "43.5621247" "last_login" "1592500103" +HSET "user:1164" "first_name" "Lura" "last_name" "Veronique" "email" "lveronique4j@fotki.com" "gender" "female" "ip_address" "50.199.50.32" "country" "Vietnam" "country_code" "VN" "city" "Cẩm Phả" "longitude" "107.3139304" "latitude" "21.0694762" "last_login" "1571755187" +HSET "user:1165" "first_name" "Stanfield" "last_name" "Bromwich" "email" "sbromwich4k@goodreads.com" "gender" "male" "ip_address" "81.228.242.100" "country" "Brazil" "country_code" "BR" "city" "Pomerode" "longitude" "-49.1743626" "latitude" "-26.7376205" "last_login" "1590700964" +HSET "user:1166" "first_name" "Karoly" "last_name" "Landman" "email" "klandman4l@123-reg.co.uk" "gender" "female" "ip_address" "57.63.6.62" "country" "Indonesia" "country_code" "ID" "city" "Cijoho" "longitude" "108.4943751" "latitude" "-6.971971" "last_login" "1592749598" +HSET "user:1167" "first_name" "Ernestine" "last_name" "Philbin" "email" "ephilbin4m@wikia.com" "gender" "female" "ip_address" "48.73.221.112" "country" "Czech Republic" "country_code" "CZ" "city" "Poříčí nad Sázavou" "longitude" "14.6843228" "latitude" "49.83258" "last_login" "1578509391" +HSET "user:1168" "first_name" "Alisander" "last_name" "Weeds" "email" "aweeds4n@gov.uk" "gender" "male" "ip_address" "239.22.122.34" "country" "Mexico" "country_code" "MX" "city" "San Jose" "longitude" "-100.4277766" "latitude" "25.8007724" "last_login" "1570208899" +HSET "user:1169" "first_name" "Reg" "last_name" "Earp" "email" "rearp4o@about.com" "gender" "male" "ip_address" "214.121.238.9" "country" "United States" "country_code" "US" "city" "Reno" "longitude" "-119.8185447" "latitude" "39.5251914" "last_login" "1577493274" +HSET "user:1170" "first_name" "Kermit" "last_name" "Grealish" "email" "kgrealish4p@tinyurl.com" "gender" "male" "ip_address" "128.200.244.173" "country" "Indonesia" "country_code" "ID" "city" "Kotabaru Hilir" "longitude" "116.234153" "latitude" "-3.2342185" "last_login" "1580565225" +HSET "user:1171" "first_name" "Ezmeralda" "last_name" "Orrom" "email" "eorrom4q@google.nl" "gender" "female" "ip_address" "252.169.14.250" "country" "Moldova" "country_code" "MD" "city" "Orhei" "longitude" "27.9413338" "latitude" "47.752551" "last_login" "1595179945" +HSET "user:1172" "first_name" "Melisse" "last_name" "Zaczek" "email" "mzaczek4r@cam.ac.uk" "gender" "female" "ip_address" "223.181.197.178" "country" "Indonesia" "country_code" "ID" "city" "Tulungrejo" "longitude" "112.1877315" "latitude" "-7.7546695" "last_login" "1598885138" +HSET "user:1173" "first_name" "Genevra" "last_name" "Creyke" "email" "gcreyke4s@usnews.com" "gender" "female" "ip_address" "141.179.152.146" "country" "Finland" "country_code" "FI" "city" "Simo" "longitude" "25.0673009" "latitude" "65.6661479" "last_login" "1576903129" +HSET "user:1174" "first_name" "Margit" "last_name" "Dutchburn" "email" "mdutchburn4t@woothemes.com" "gender" "female" "ip_address" "108.182.93.34" "country" "Croatia" "country_code" "HR" "city" "Baška Voda" "longitude" "16.9520477" "latitude" "43.3572645" "last_login" "1588630096" +HSET "user:1175" "first_name" "Micah" "last_name" "Dwyer" "email" "mdwyer4u@netscape.com" "gender" "male" "ip_address" "39.80.73.139" "country" "China" "country_code" "CN" "city" "Yukou" "longitude" "110.525111" "latitude" "37.942488" "last_login" "1591455556" +HSET "user:1176" "first_name" "Birdie" "last_name" "Maccari" "email" "bmaccari4v@t-online.de" "gender" "female" "ip_address" "168.198.79.211" "country" "United States" "country_code" "US" "city" "Houston" "longitude" "-95.5587992" "latitude" "29.9601879" "last_login" "1580950823" +HSET "user:1177" "first_name" "Ofella" "last_name" "Pawson" "email" "opawson4w@rakuten.co.jp" "gender" "female" "ip_address" "136.65.54.43" "country" "Indonesia" "country_code" "ID" "city" "Huelkail" "longitude" "124.0019" "latitude" "-9.6239" "last_login" "1593239629" +HSET "user:1178" "first_name" "Cynthy" "last_name" "Eyers" "email" "ceyers4x@howstuffworks.com" "gender" "female" "ip_address" "180.191.198.56" "country" "China" "country_code" "CN" "city" "Dayangzhou" "longitude" "115.455558" "latitude" "27.895558" "last_login" "1574860431" +HSET "user:1179" "first_name" "Janaye" "last_name" "Mityashin" "email" "jmityashin4y@illinois.edu" "gender" "female" "ip_address" "102.115.138.190" "country" "Japan" "country_code" "JP" "city" "Daigo" "longitude" "140.557325" "latitude" "37.8336508" "last_login" "1592232251" +HSET "user:1180" "first_name" "Kiley" "last_name" "Pettisall" "email" "kpettisall4z@thetimes.co.uk" "gender" "male" "ip_address" "23.179.162.10" "country" "Philippines" "country_code" "PH" "city" "Padang" "longitude" "121.0499837" "latitude" "14.2512158" "last_login" "1592632731" +HSET "user:1181" "first_name" "Brunhilde" "last_name" "Fibben" "email" "bfibben50@a8.net" "gender" "female" "ip_address" "85.16.182.1" "country" "China" "country_code" "CN" "city" "Haozhai" "longitude" "118.512944" "latitude" "30.181472" "last_login" "1592900176" +HSET "user:1182" "first_name" "Nickie" "last_name" "Womersley" "email" "nwomersley51@networkadvertising.org" "gender" "male" "ip_address" "143.183.31.78" "country" "China" "country_code" "CN" "city" "Xiangzhu" "longitude" "120.083358" "latitude" "28.97602" "last_login" "1575353935" +HSET "user:1183" "first_name" "Astra" "last_name" "Flecknoe" "email" "aflecknoe52@dedecms.com" "gender" "female" "ip_address" "132.184.179.225" "country" "Philippines" "country_code" "PH" "city" "Sexmoan" "longitude" "120.6166667" "latitude" "14.9333333" "last_login" "1581005040" +HSET "user:1184" "first_name" "Jacinthe" "last_name" "Moreside" "email" "jmoreside53@cnn.com" "gender" "female" "ip_address" "36.17.231.64" "country" "Sweden" "country_code" "SE" "city" "Tanumshede" "longitude" "11.2533509" "latitude" "58.695946" "last_login" "1568619941" +HSET "user:1185" "first_name" "Judon" "last_name" "Inkles" "email" "jinkles54@cdbaby.com" "gender" "male" "ip_address" "222.137.45.105" "country" "Japan" "country_code" "JP" "city" "Gobō" "longitude" "135.1560405" "latitude" "33.8881512" "last_login" "1571052208" +HSET "user:1186" "first_name" "Terrence" "last_name" "Gaule" "email" "tgaule55@woothemes.com" "gender" "male" "ip_address" "9.175.246.222" "country" "China" "country_code" "CN" "city" "Yangkou" "longitude" "122.235084" "latitude" "40.667433" "last_login" "1595898257" +HSET "user:1187" "first_name" "Chad" "last_name" "Compfort" "email" "ccompfort56@washingtonpost.com" "gender" "female" "ip_address" "39.3.98.232" "country" "Portugal" "country_code" "PT" "city" "Tavira" "longitude" "-7.650062" "latitude" "37.1306168" "last_login" "1577263882" +HSET "user:1188" "first_name" "Judi" "last_name" "Blinerman" "email" "jblinerman57@army.mil" "gender" "female" "ip_address" "118.123.39.97" "country" "China" "country_code" "CN" "city" "Yonglong" "longitude" "115.935862" "latitude" "25.416658" "last_login" "1578859981" +HSET "user:1189" "first_name" "Stanislaus" "last_name" "Morgen" "email" "smorgen58@cdbaby.com" "gender" "male" "ip_address" "141.201.22.188" "country" "Portugal" "country_code" "PT" "city" "Póvoa" "longitude" "-8.1222717" "latitude" "41.3281534" "last_login" "1573096204" +HSET "user:1190" "first_name" "Bobbe" "last_name" "Bream" "email" "bbream59@multiply.com" "gender" "female" "ip_address" "75.85.55.144" "country" "China" "country_code" "CN" "city" "Shiyu" "longitude" "119.3062749" "latitude" "26.0952694" "last_login" "1598989280" +HSET "user:1191" "first_name" "Matias" "last_name" "Skipperbottom" "email" "mskipperbottom5a@slideshare.net" "gender" "male" "ip_address" "190.132.95.99" "country" "Indonesia" "country_code" "ID" "city" "Jandir" "longitude" "113.9883465" "latitude" "-6.9561846" "last_login" "1583671478" +HSET "user:1192" "first_name" "Cordula" "last_name" "Gianneschi" "email" "cgianneschi5b@reuters.com" "gender" "female" "ip_address" "8.7.22.63" "country" "Eritrea" "country_code" "ER" "city" "Teseney" "longitude" "36.6525696" "latitude" "15.1634121" "last_login" "1574983579" +HSET "user:1193" "first_name" "Olly" "last_name" "Lyman" "email" "olyman5c@sfgate.com" "gender" "female" "ip_address" "58.15.103.175" "country" "Argentina" "country_code" "AR" "city" "Rosario" "longitude" "-58.6661711" "latitude" "-34.5023286" "last_login" "1584389224" +HSET "user:1194" "first_name" "Timofei" "last_name" "Flett" "email" "tflett5d@purevolume.com" "gender" "male" "ip_address" "129.58.18.24" "country" "Poland" "country_code" "PL" "city" "Sośnicowice" "longitude" "18.5286275" "latitude" "50.2718641" "last_login" "1583639055" +HSET "user:1195" "first_name" "Bordy" "last_name" "Frantzen" "email" "bfrantzen5e@sourceforge.net" "gender" "male" "ip_address" "176.194.207.120" "country" "Ethiopia" "country_code" "ET" "city" "Mēga" "longitude" "38.3192073" "latitude" "4.0578303" "last_login" "1579858561" +HSET "user:1196" "first_name" "Axe" "last_name" "Kennford" "email" "akennford5f@oaic.gov.au" "gender" "male" "ip_address" "219.78.214.198" "country" "Peru" "country_code" "PE" "city" "Paruro" "longitude" "-71.84898" "latitude" "-13.7615069" "last_login" "1569785633" +HSET "user:1197" "first_name" "Nonie" "last_name" "Thornton-Dewhirst" "email" "nthorntondewhirst5g@umn.edu" "gender" "female" "ip_address" "240.165.148.89" "country" "Poland" "country_code" "PL" "city" "Kobiernice" "longitude" "19.2057487" "latitude" "49.8474143" "last_login" "1569992933" +HSET "user:1198" "first_name" "Cassandre" "last_name" "Grundey" "email" "cgrundey5h@ehow.com" "gender" "female" "ip_address" "137.92.13.107" "country" "Indonesia" "country_code" "ID" "city" "Sukolilo" "longitude" "112.8165095" "latitude" "-7.2881839" "last_login" "1590851115" +HSET "user:1199" "first_name" "Winston" "last_name" "Leil" "email" "wleil5i@elpais.com" "gender" "male" "ip_address" "162.183.203.42" "country" "Azerbaijan" "country_code" "AZ" "city" "Qızılhacılı" "longitude" "46.8429953" "latitude" "40.5851643" "last_login" "1595027958" +HSET "user:1200" "first_name" "Parker" "last_name" "Bootes" "email" "pbootes5j@apple.com" "gender" "male" "ip_address" "26.19.92.193" "country" "China" "country_code" "CN" "city" "Wuxiang" "longitude" "112.864561" "latitude" "36.837625" "last_login" "1589758943" +HSET "user:1201" "first_name" "Beauregard" "last_name" "Pinkstone" "email" "bpinkstone5k@cisco.com" "gender" "male" "ip_address" "50.68.173.78" "country" "China" "country_code" "CN" "city" "Dingqiao" "longitude" "120.222909" "latitude" "30.350192" "last_login" "1568792507" +HSET "user:1202" "first_name" "Powell" "last_name" "Stoeck" "email" "pstoeck5l@goodreads.com" "gender" "male" "ip_address" "55.251.19.158" "country" "Japan" "country_code" "JP" "city" "Ōi" "longitude" "139.730028" "latitude" "35.6046794" "last_login" "1590016849" +HSET "user:1203" "first_name" "Rosalinda" "last_name" "Sommerville" "email" "rsommerville5m@addtoany.com" "gender" "female" "ip_address" "221.216.90.70" "country" "Azerbaijan" "country_code" "AZ" "city" "Dondar Quşçu" "longitude" "45.61942" "latitude" "40.9539" "last_login" "1584312730" +HSET "user:1204" "first_name" "Gerald" "last_name" "Berford" "email" "gberford5n@hao123.com" "gender" "male" "ip_address" "175.0.194.188" "country" "Greece" "country_code" "GR" "city" "Náousa" "longitude" "22.0688549" "latitude" "40.6294406" "last_login" "1597776661" +HSET "user:1205" "first_name" "Willette" "last_name" "Gloster" "email" "wgloster5o@google.com.br" "gender" "female" "ip_address" "196.149.160.189" "country" "France" "country_code" "FR" "city" "Carpentras" "longitude" "5.0852479" "latitude" "44.0264621" "last_login" "1577467602" +HSET "user:1206" "first_name" "Mauricio" "last_name" "Crackel" "email" "mcrackel5p@toplist.cz" "gender" "male" "ip_address" "124.132.184.86" "country" "Indonesia" "country_code" "ID" "city" "Karanganyar" "longitude" "111.0460407" "latitude" "-7.6387228" "last_login" "1593585816" +HSET "user:1207" "first_name" "Maurine" "last_name" "Mieville" "email" "mmieville5q@state.tx.us" "gender" "female" "ip_address" "237.165.119.40" "country" "Hungary" "country_code" "HU" "city" "Pécs" "longitude" "18.3028286" "latitude" "46.0852466" "last_login" "1599546002" +HSET "user:1208" "first_name" "Thain" "last_name" "Silbersak" "email" "tsilbersak5r@biblegateway.com" "gender" "male" "ip_address" "153.253.194.143" "country" "Albania" "country_code" "AL" "city" "Poroçan" "longitude" "20.2899237" "latitude" "40.9357866" "last_login" "1588215776" +HSET "user:1209" "first_name" "Tedda" "last_name" "Jaan" "email" "tjaan5s@deliciousdays.com" "gender" "female" "ip_address" "13.181.55.94" "country" "Russia" "country_code" "RU" "city" "Vorob’yovo" "longitude" "36.384275" "latitude" "54.87559" "last_login" "1593176283" +HSET "user:1210" "first_name" "Kelly" "last_name" "Missen" "email" "kmissen5t@bbc.co.uk" "gender" "male" "ip_address" "236.66.28.97" "country" "China" "country_code" "CN" "city" "Chengbei" "longitude" "101.766228" "latitude" "36.650038" "last_login" "1597401056" +HSET "user:1211" "first_name" "Thibaut" "last_name" "Maro" "email" "tmaro5u@ucoz.ru" "gender" "male" "ip_address" "166.173.26.71" "country" "China" "country_code" "CN" "city" "Longcheng" "longitude" "120.413376" "latitude" "41.576749" "last_login" "1577877237" +HSET "user:1212" "first_name" "Heloise" "last_name" "Gotthard.sf" "email" "hgotthardsf5v@nasa.gov" "gender" "female" "ip_address" "49.192.96.129" "country" "China" "country_code" "CN" "city" "Tiantai Chengguanzhen" "longitude" "121.007244" "latitude" "29.163159" "last_login" "1598233945" +HSET "user:1213" "first_name" "Mendel" "last_name" "Gifford" "email" "mgifford5w@slideshare.net" "gender" "male" "ip_address" "92.176.247.158" "country" "China" "country_code" "CN" "city" "Mori" "longitude" "90.286028" "latitude" "43.834689" "last_login" "1576826231" +HSET "user:1214" "first_name" "Emylee" "last_name" "Skates" "email" "eskates5x@privacy.gov.au" "gender" "female" "ip_address" "184.245.141.80" "country" "Russia" "country_code" "RU" "city" "Star’" "longitude" "34.152126" "latitude" "53.6182497" "last_login" "1578118020" +HSET "user:1215" "first_name" "Chadd" "last_name" "Warlowe" "email" "cwarlowe5y@phoca.cz" "gender" "male" "ip_address" "136.190.200.95" "country" "China" "country_code" "CN" "city" "Huolu" "longitude" "114.322047" "latitude" "38.088041" "last_login" "1590946178" +HSET "user:1216" "first_name" "Derron" "last_name" "Hymans" "email" "dhymans5z@hibu.com" "gender" "male" "ip_address" "200.246.142.229" "country" "Armenia" "country_code" "AM" "city" "Amberd" "longitude" "44.2287108" "latitude" "40.3874319" "last_login" "1578564248" +HSET "user:1217" "first_name" "Staford" "last_name" "Lofty" "email" "slofty60@narod.ru" "gender" "male" "ip_address" "173.235.137.206" "country" "Malaysia" "country_code" "MY" "city" "Seremban" "longitude" "101.9476452" "latitude" "2.7239834" "last_login" "1587981611" +HSET "user:1218" "first_name" "Thaddeus" "last_name" "Carnier" "email" "tcarnier61@hc360.com" "gender" "male" "ip_address" "193.108.54.26" "country" "Botswana" "country_code" "BW" "city" "Mopipi" "longitude" "24.8656498" "latitude" "-21.2001343" "last_login" "1599435250" +HSET "user:1219" "first_name" "Amos" "last_name" "Luisetti" "email" "aluisetti62@bravesites.com" "gender" "male" "ip_address" "103.137.181.239" "country" "Brazil" "country_code" "BR" "city" "Patos" "longitude" "-37.2776539" "latitude" "-7.026967" "last_login" "1589073169" +HSET "user:1220" "first_name" "Alexandr" "last_name" "Zima" "email" "azima63@prweb.com" "gender" "male" "ip_address" "164.174.31.176" "country" "Zambia" "country_code" "ZM" "city" "Monze" "longitude" "27.4732571" "latitude" "-16.2803207" "last_login" "1599567946" +HSET "user:1221" "first_name" "Josephina" "last_name" "Cogle" "email" "jcogle64@list-manage.com" "gender" "female" "ip_address" "144.54.10.109" "country" "United States" "country_code" "US" "city" "Tallahassee" "longitude" "-84.0801613" "latitude" "30.5547139" "last_login" "1592512019" +HSET "user:1222" "first_name" "Kinny" "last_name" "MacCauley" "email" "kmaccauley65@eventbrite.com" "gender" "male" "ip_address" "210.176.2.112" "country" "China" "country_code" "CN" "city" "Jagdaqi" "longitude" "124.118816" "latitude" "50.425413" "last_login" "1581385432" +HSET "user:1223" "first_name" "Jasmina" "last_name" "Scrivenor" "email" "jscrivenor66@nba.com" "gender" "female" "ip_address" "215.128.100.157" "country" "China" "country_code" "CN" "city" "Xianxiang" "longitude" "113.926763" "latitude" "35.303704" "last_login" "1588793834" +HSET "user:1224" "first_name" "Jasun" "last_name" "Redgate" "email" "jredgate67@networkadvertising.org" "gender" "male" "ip_address" "238.88.150.164" "country" "China" "country_code" "CN" "city" "Guankou" "longitude" "113.641688" "latitude" "28.168791" "last_login" "1572751516" +HSET "user:1225" "first_name" "Kermie" "last_name" "Howse" "email" "khowse68@bizjournals.com" "gender" "male" "ip_address" "99.4.241.40" "country" "Greece" "country_code" "GR" "city" "Péplos" "longitude" "26.2680259" "latitude" "40.9562697" "last_login" "1576564718" +HSET "user:1226" "first_name" "Lark" "last_name" "Gosker" "email" "lgosker69@bloglines.com" "gender" "female" "ip_address" "122.79.249.24" "country" "Uzbekistan" "country_code" "UZ" "city" "Kitob" "longitude" "66.8856247" "latitude" "39.1217895" "last_login" "1581445497" +HSET "user:1227" "first_name" "Thedric" "last_name" "Weston" "email" "tweston6a@amazon.co.jp" "gender" "male" "ip_address" "92.160.157.49" "country" "Russia" "country_code" "RU" "city" "Volkhov" "longitude" "32.296821" "latitude" "59.927607" "last_login" "1592793295" +HSET "user:1228" "first_name" "Patrice" "last_name" "Bosward" "email" "pbosward6b@apple.com" "gender" "male" "ip_address" "166.252.52.227" "country" "Costa Rica" "country_code" "CR" "city" "San José" "longitude" "-84.1014639" "latitude" "9.9165452" "last_login" "1589266953" +HSET "user:1229" "first_name" "Damien" "last_name" "Lieb" "email" "dlieb6c@live.com" "gender" "male" "ip_address" "54.183.77.10" "country" "Philippines" "country_code" "PH" "city" "San Francisco" "longitude" "125.969667" "latitude" "8.508983" "last_login" "1585908254" +HSET "user:1230" "first_name" "Colly" "last_name" "Ringsell" "email" "cringsell6d@ibm.com" "gender" "female" "ip_address" "134.2.29.212" "country" "China" "country_code" "CN" "city" "Beicang" "longitude" "116.4073963" "latitude" "39.9041999" "last_login" "1591545145" +HSET "user:1231" "first_name" "Pavia" "last_name" "Kroll" "email" "pkroll6e@shop-pro.jp" "gender" "female" "ip_address" "32.234.30.245" "country" "Portugal" "country_code" "PT" "city" "Silvares" "longitude" "-7.6602365" "latitude" "40.1422779" "last_login" "1578697278" +HSET "user:1232" "first_name" "Agosto" "last_name" "Gartrell" "email" "agartrell6f@tinyurl.com" "gender" "male" "ip_address" "109.216.95.204" "country" "China" "country_code" "CN" "city" "Chejiazhuang" "longitude" "114.514893" "latitude" "38.042805" "last_login" "1596380530" +HSET "user:1233" "first_name" "Nolana" "last_name" "Leppard" "email" "nleppard6g@indiatimes.com" "gender" "female" "ip_address" "122.128.127.14" "country" "Indonesia" "country_code" "ID" "city" "Singasari" "longitude" "112.6722635" "latitude" "-7.8848787" "last_login" "1598352337" +HSET "user:1234" "first_name" "Trumaine" "last_name" "Giacopetti" "email" "tgiacopetti6h@odnoklassniki.ru" "gender" "male" "ip_address" "24.49.98.55" "country" "Albania" "country_code" "AL" "city" "Gosë e Madhe" "longitude" "19.6133429" "latitude" "41.0955895" "last_login" "1590025497" +HSET "user:1235" "first_name" "Dorthy" "last_name" "Kernocke" "email" "dkernocke6i@macromedia.com" "gender" "female" "ip_address" "184.44.121.199" "country" "China" "country_code" "CN" "city" "Tongqiao" "longitude" "114.300299" "latitude" "23.035191" "last_login" "1591850990" +HSET "user:1236" "first_name" "Mirella" "last_name" "Ivery" "email" "mivery6j@artisteer.com" "gender" "female" "ip_address" "119.217.175.253" "country" "Philippines" "country_code" "PH" "city" "Camaligan" "longitude" "123.1689818" "latitude" "13.6193661" "last_login" "1583112544" +HSET "user:1237" "first_name" "Alford" "last_name" "Baily" "email" "abaily6k@thetimes.co.uk" "gender" "male" "ip_address" "157.216.206.15" "country" "China" "country_code" "CN" "city" "Wufeng" "longitude" "110.674706" "latitude" "30.199688" "last_login" "1571237411" +HSET "user:1238" "first_name" "Devi" "last_name" "Bromell" "email" "dbromell6l@xrea.com" "gender" "female" "ip_address" "3.112.223.185" "country" "Bolivia" "country_code" "BO" "city" "Eucaliptus" "longitude" "-67.5082709" "latitude" "-17.5982518" "last_login" "1590929328" +HSET "user:1239" "first_name" "Ysabel" "last_name" "Kynforth" "email" "ykynforth6m@epa.gov" "gender" "female" "ip_address" "97.160.84.174" "country" "Dominican Republic" "country_code" "DO" "city" "Mao" "longitude" "-71.0790048" "latitude" "19.5403533" "last_login" "1592596355" +HSET "user:1240" "first_name" "Davina" "last_name" "Craufurd" "email" "dcraufurd6n@illinois.edu" "gender" "female" "ip_address" "184.111.44.159" "country" "New Zealand" "country_code" "NZ" "city" "Papakura" "longitude" "174.9427335" "latitude" "-37.0852788" "last_login" "1584525808" +HSET "user:1241" "first_name" "Lesley" "last_name" "Grinnell" "email" "lgrinnell6o@opera.com" "gender" "female" "ip_address" "202.48.164.65" "country" "Indonesia" "country_code" "ID" "city" "Panjerrejo" "longitude" "112.0148478" "latitude" "-8.1370235" "last_login" "1581505420" +HSET "user:1242" "first_name" "Olav" "last_name" "Ottee" "email" "oottee6p@privacy.gov.au" "gender" "male" "ip_address" "59.96.241.32" "country" "Serbia" "country_code" "RS" "city" "Banovo Polje" "longitude" "19.4516353" "latitude" "44.9153318" "last_login" "1589025996" +HSET "user:1243" "first_name" "Fonzie" "last_name" "Lansdowne" "email" "flansdowne6q@yellowbook.com" "gender" "male" "ip_address" "176.8.236.250" "country" "Indonesia" "country_code" "ID" "city" "Bangus Kulon" "longitude" "106.7974566" "latitude" "-6.1624112" "last_login" "1598638085" +HSET "user:1244" "first_name" "Ingeborg" "last_name" "Le Page" "email" "ilepage6r@earthlink.net" "gender" "female" "ip_address" "89.246.175.86" "country" "China" "country_code" "CN" "city" "Songdong" "longitude" "117.9249002" "latitude" "35.8939566" "last_login" "1586019654" +HSET "user:1245" "first_name" "Hymie" "last_name" "MacTague" "email" "hmactague6s@dagondesign.com" "gender" "male" "ip_address" "86.33.178.125" "country" "Somalia" "country_code" "SO" "city" "Jilib" "longitude" "42.778437" "latitude" "0.4919195" "last_login" "1587456446" +HSET "user:1246" "first_name" "Hollyanne" "last_name" "Cristofalo" "email" "hcristofalo6t@businesswire.com" "gender" "female" "ip_address" "239.100.162.68" "country" "Colombia" "country_code" "CO" "city" "Túquerres" "longitude" "-77.6611917" "latitude" "1.2255938" "last_login" "1596433711" +HSET "user:1247" "first_name" "Benyamin" "last_name" "Ribbon" "email" "bribbon6u@devhub.com" "gender" "male" "ip_address" "58.228.51.217" "country" "Russia" "country_code" "RU" "city" "Svobody" "longitude" "31.6968796" "latitude" "59.1284714" "last_login" "1593853323" +HSET "user:1248" "first_name" "Darlleen" "last_name" "Borrows" "email" "dborrows6v@163.com" "gender" "female" "ip_address" "180.178.45.70" "country" "Sweden" "country_code" "SE" "city" "Alfta" "longitude" "16.0604207" "latitude" "61.3444468" "last_login" "1573584304" +HSET "user:1249" "first_name" "Erhard" "last_name" "Marris" "email" "emarris6w@fema.gov" "gender" "male" "ip_address" "176.86.91.131" "country" "Poland" "country_code" "PL" "city" "Krzyżowice" "longitude" "18.6926323" "latitude" "49.9899828" "last_login" "1583372240" +HSET "user:1250" "first_name" "Brooke" "last_name" "Stuchberry" "email" "bstuchberry6x@multiply.com" "gender" "female" "ip_address" "81.208.162.61" "country" "Indonesia" "country_code" "ID" "city" "Karangbenda" "longitude" "108.5017948" "latitude" "-7.6849238" "last_login" "1575014938" +HSET "user:1251" "first_name" "Ardyce" "last_name" "Hinge" "email" "ahinge6y@arstechnica.com" "gender" "female" "ip_address" "56.73.186.38" "country" "Nigeria" "country_code" "NG" "city" "Bukuru" "longitude" "8.8597095" "latitude" "9.7652591" "last_login" "1578979641" +HSET "user:1252" "first_name" "Lura" "last_name" "Proppers" "email" "lproppers6z@biglobe.ne.jp" "gender" "female" "ip_address" "25.132.54.144" "country" "Colombia" "country_code" "CO" "city" "Puerto Colombia" "longitude" "-68.0477509" "latitude" "2.9479721" "last_login" "1582478140" +HSET "user:1253" "first_name" "Zandra" "last_name" "Kilbane" "email" "zkilbane70@istockphoto.com" "gender" "female" "ip_address" "238.177.147.146" "country" "Russia" "country_code" "RU" "city" "Pivovarikha" "longitude" "104.4410484" "latitude" "52.3211465" "last_login" "1582291741" +HSET "user:1254" "first_name" "Granger" "last_name" "Harbison" "email" "gharbison71@ameblo.jp" "gender" "male" "ip_address" "135.45.15.58" "country" "China" "country_code" "CN" "city" "Hougaoshizhuang" "longitude" "112.073298" "latitude" "39.803681" "last_login" "1570419213" +HSET "user:1255" "first_name" "Bale" "last_name" "Rozec" "email" "brozec72@cisco.com" "gender" "male" "ip_address" "35.47.147.55" "country" "Colombia" "country_code" "CO" "city" "Ciénaga de Oro" "longitude" "-75.632447" "latitude" "8.8105088" "last_login" "1580081404" +HSET "user:1256" "first_name" "Murvyn" "last_name" "Eykelbosch" "email" "meykelbosch73@ucla.edu" "gender" "male" "ip_address" "164.181.241.209" "country" "Indonesia" "country_code" "ID" "city" "Padangbai" "longitude" "115.5074108" "latitude" "-8.5298984" "last_login" "1588443386" +HSET "user:1257" "first_name" "Garret" "last_name" "Crammy" "email" "gcrammy74@mozilla.com" "gender" "male" "ip_address" "228.189.132.250" "country" "China" "country_code" "CN" "city" "Yunfu" "longitude" "112.044491" "latitude" "22.915094" "last_login" "1569814288" +HSET "user:1258" "first_name" "Gustave" "last_name" "Donaldson" "email" "gdonaldson75@wunderground.com" "gender" "male" "ip_address" "1.38.194.126" "country" "Russia" "country_code" "RU" "city" "Kortkeros" "longitude" "51.5568693" "latitude" "61.8171356" "last_login" "1582572870" +HSET "user:1259" "first_name" "Kiley" "last_name" "Britland" "email" "kbritland76@dailymail.co.uk" "gender" "male" "ip_address" "106.215.10.33" "country" "China" "country_code" "CN" "city" "Tingqian" "longitude" "113.6293358" "latitude" "28.1562239" "last_login" "1593836497" +HSET "user:1260" "first_name" "Olivero" "last_name" "Handrock" "email" "ohandrock77@artisteer.com" "gender" "male" "ip_address" "86.116.65.63" "country" "Brazil" "country_code" "BR" "city" "Monte Aprazível" "longitude" "-49.7107263" "latitude" "-20.7736517" "last_login" "1593001670" +HSET "user:1261" "first_name" "Sheilah" "last_name" "Hurn" "email" "shurn78@fastcompany.com" "gender" "female" "ip_address" "13.41.137.56" "country" "Peru" "country_code" "PE" "city" "Acarí" "longitude" "-74.6180833" "latitude" "-15.4384565" "last_login" "1589661354" +HSET "user:1262" "first_name" "Bobbie" "last_name" "Meecher" "email" "bmeecher79@a8.net" "gender" "male" "ip_address" "149.115.182.125" "country" "Brazil" "country_code" "BR" "city" "Padre Paraíso" "longitude" "-41.5612423" "latitude" "-17.0490108" "last_login" "1583738240" +HSET "user:1263" "first_name" "Laryssa" "last_name" "Grishaev" "email" "lgrishaev7a@marketwatch.com" "gender" "female" "ip_address" "72.36.56.180" "country" "Morocco" "country_code" "MA" "city" "Tizgane" "longitude" "-5.06836" "latitude" "35.41211" "last_login" "1572487316" +HSET "user:1264" "first_name" "Smitty" "last_name" "Fluin" "email" "sfluin7b@eventbrite.com" "gender" "male" "ip_address" "87.54.15.148" "country" "China" "country_code" "CN" "city" "Nanxinxiang" "longitude" "116.070639" "latitude" "28.797983" "last_login" "1588043682" +HSET "user:1265" "first_name" "Asa" "last_name" "Simoni" "email" "asimoni7c@nytimes.com" "gender" "male" "ip_address" "12.61.160.127" "country" "France" "country_code" "FR" "city" "Beauvais" "longitude" "2.0887457" "latitude" "49.4263976" "last_login" "1586138822" +HSET "user:1266" "first_name" "Alvina" "last_name" "Glanville" "email" "aglanville7d@ftc.gov" "gender" "female" "ip_address" "141.180.86.121" "country" "Madagascar" "country_code" "MG" "city" "Ambatolaona" "longitude" "46.6666669" "latitude" "-23.216667" "last_login" "1576627841" +HSET "user:1267" "first_name" "Homer" "last_name" "Aitcheson" "email" "haitcheson7e@accuweather.com" "gender" "male" "ip_address" "124.230.179.19" "country" "China" "country_code" "CN" "city" "Zhongxing" "longitude" "103.620536" "latitude" "30.920219" "last_login" "1571036743" +HSET "user:1268" "first_name" "Leela" "last_name" "Mashro" "email" "lmashro7f@smh.com.au" "gender" "female" "ip_address" "215.236.56.86" "country" "Honduras" "country_code" "HN" "city" "San Diego" "longitude" "-86.4478279" "latitude" "14.0523794" "last_login" "1585954406" +HSET "user:1269" "first_name" "Hana" "last_name" "Cutts" "email" "hcutts7g@flickr.com" "gender" "female" "ip_address" "66.5.248.99" "country" "Tanzania" "country_code" "TZ" "city" "Mtambile" "longitude" "39.6969592" "latitude" "-5.3825125" "last_login" "1582739341" +HSET "user:1270" "first_name" "Hendrick" "last_name" "Dewing" "email" "hdewing7h@jugem.jp" "gender" "male" "ip_address" "87.109.174.126" "country" "Kyrgyzstan" "country_code" "KG" "city" "Isfana" "longitude" "69.5320824" "latitude" "39.8286146" "last_login" "1592579751" +HSET "user:1271" "first_name" "Zach" "last_name" "Ellesworth" "email" "zellesworth7i@pcworld.com" "gender" "male" "ip_address" "59.114.221.144" "country" "Myanmar" "country_code" "MM" "city" "Martaban" "longitude" "97.6032892" "latitude" "16.5347882" "last_login" "1580238842" +HSET "user:1272" "first_name" "Remington" "last_name" "Ceccoli" "email" "rceccoli7j@cocolog-nifty.com" "gender" "male" "ip_address" "68.82.148.148" "country" "South Africa" "country_code" "ZA" "city" "Nelspruit" "longitude" "30.9136062" "latitude" "-25.50065" "last_login" "1582073303" +HSET "user:1273" "first_name" "Isidor" "last_name" "Cornelleau" "email" "icornelleau7k@vistaprint.com" "gender" "male" "ip_address" "37.51.249.178" "country" "Philippines" "country_code" "PH" "city" "Kolambugan" "longitude" "123.8961588" "latitude" "8.1113884" "last_login" "1576785906" +HSET "user:1274" "first_name" "Hamid" "last_name" "Sempill" "email" "hsempill7l@naver.com" "gender" "male" "ip_address" "128.80.215.61" "country" "Indonesia" "country_code" "ID" "city" "Barengkok Hilir" "longitude" "105.9234" "latitude" "-6.7663" "last_login" "1592060854" +HSET "user:1275" "first_name" "Dominik" "last_name" "Bools" "email" "dbools7m@dell.com" "gender" "male" "ip_address" "46.122.117.243" "country" "China" "country_code" "CN" "city" "Mawu" "longitude" "104.888718" "latitude" "23.642114" "last_login" "1569878247" +HSET "user:1276" "first_name" "Melanie" "last_name" "Styles" "email" "mstyles7n@indiatimes.com" "gender" "female" "ip_address" "204.44.148.233" "country" "Russia" "country_code" "RU" "city" "Tonkino" "longitude" "46.4583999" "latitude" "57.3725" "last_login" "1595984049" +HSET "user:1277" "first_name" "Karleen" "last_name" "Loughlan" "email" "kloughlan7o@gov.uk" "gender" "female" "ip_address" "30.165.132.255" "country" "China" "country_code" "CN" "city" "Taochuan" "longitude" "112.389438" "latitude" "35.858731" "last_login" "1573750471" +HSET "user:1278" "first_name" "Melany" "last_name" "Rosewarne" "email" "mrosewarne7p@unc.edu" "gender" "female" "ip_address" "44.73.145.111" "country" "China" "country_code" "CN" "city" "Gubu" "longitude" "98.993616" "latitude" "27.874615" "last_login" "1572222184" +HSET "user:1279" "first_name" "Amory" "last_name" "Cordery" "email" "acordery7q@facebook.com" "gender" "male" "ip_address" "86.87.167.2" "country" "Denmark" "country_code" "DK" "city" "København" "longitude" "-87.8445954" "latitude" "44.351935" "last_login" "1579081098" +HSET "user:1280" "first_name" "Drucie" "last_name" "Rollinshaw" "email" "drollinshaw7r@e-recht24.de" "gender" "female" "ip_address" "87.184.233.255" "country" "Philippines" "country_code" "PH" "city" "Harrison" "longitude" "-95.549054" "latitude" "29.8867778" "last_login" "1588772000" +HSET "user:1281" "first_name" "Arvie" "last_name" "Iannini" "email" "aiannini7s@fema.gov" "gender" "male" "ip_address" "70.220.31.221" "country" "Indonesia" "country_code" "ID" "city" "Secang Barat" "longitude" "110.1576731" "latitude" "-7.823074" "last_login" "1597903960" +HSET "user:1282" "first_name" "Padraic" "last_name" "Loadwick" "email" "ploadwick7t@google.co.jp" "gender" "male" "ip_address" "117.220.152.11" "country" "China" "country_code" "CN" "city" "Shuiting" "longitude" "106.7152864" "latitude" "26.5807374" "last_login" "1582145845" +HSET "user:1283" "first_name" "Dukie" "last_name" "Gauvin" "email" "dgauvin7u@pinterest.com" "gender" "male" "ip_address" "5.45.232.123" "country" "Russia" "country_code" "RU" "city" "Marks" "longitude" "46.7484815" "latitude" "51.7106121" "last_login" "1591335200" +HSET "user:1284" "first_name" "Esme" "last_name" "Kennerknecht" "email" "ekennerknecht7v@gmpg.org" "gender" "female" "ip_address" "233.21.222.218" "country" "China" "country_code" "CN" "city" "Pingxiang" "longitude" "113.854556" "latitude" "27.622768" "last_login" "1587076792" +HSET "user:1285" "first_name" "Benoite" "last_name" "Glass" "email" "bglass7w@arizona.edu" "gender" "female" "ip_address" "125.113.228.152" "country" "Peru" "country_code" "PE" "city" "Concordia" "longitude" "-74.750168" "latitude" "-4.579855" "last_login" "1579305055" +HSET "user:1286" "first_name" "Robinetta" "last_name" "Blench" "email" "rblench7x@ed.gov" "gender" "female" "ip_address" "53.51.39.17" "country" "Italy" "country_code" "IT" "city" "Messina" "longitude" "15.4976181" "latitude" "38.1788095" "last_login" "1597772859" +HSET "user:1287" "first_name" "Maighdiln" "last_name" "Josipovic" "email" "mjosipovic7y@ezinearticles.com" "gender" "female" "ip_address" "219.162.15.36" "country" "Russia" "country_code" "RU" "city" "Orekhovo-Borisovo Severnoye" "longitude" "37.7673912" "latitude" "55.5807611" "last_login" "1579638083" +HSET "user:1288" "first_name" "Courtnay" "last_name" "Churms" "email" "cchurms7z@mlb.com" "gender" "male" "ip_address" "120.211.194.70" "country" "Norway" "country_code" "NO" "city" "Grimstad" "longitude" "13.7026399" "latitude" "66.9443405" "last_login" "1592461655" +HSET "user:1289" "first_name" "Allison" "last_name" "Sykora" "email" "asykora80@nationalgeographic.com" "gender" "female" "ip_address" "74.183.116.199" "country" "Iran" "country_code" "IR" "city" "Ābyek" "longitude" "50.5446161" "latitude" "36.040428" "last_login" "1570310134" +HSET "user:1290" "first_name" "Deana" "last_name" "Berryman" "email" "dberryman81@npr.org" "gender" "female" "ip_address" "142.145.51.167" "country" "Poland" "country_code" "PL" "city" "Udanin" "longitude" "16.450466" "latitude" "51.0377167" "last_login" "1591892505" +HSET "user:1291" "first_name" "Lonny" "last_name" "Igounet" "email" "ligounet82@ucoz.ru" "gender" "male" "ip_address" "215.16.141.207" "country" "Gambia" "country_code" "GM" "city" "No Kunda" "longitude" "-15.8304975" "latitude" "13.5616918" "last_login" "1599345432" +HSET "user:1292" "first_name" "Weston" "last_name" "Veld" "email" "wveld83@myspace.com" "gender" "male" "ip_address" "10.168.231.33" "country" "Indonesia" "country_code" "ID" "city" "Lajarik" "longitude" "120.4083" "latitude" "-9.9755" "last_login" "1596695799" +HSET "user:1293" "first_name" "Neysa" "last_name" "McGillicuddy" "email" "nmcgillicuddy84@shutterfly.com" "gender" "female" "ip_address" "237.53.143.230" "country" "Poland" "country_code" "PL" "city" "Kwidzyn" "longitude" "18.9597308" "latitude" "53.7074084" "last_login" "1589648015" +HSET "user:1294" "first_name" "Kath" "last_name" "Brassington" "email" "kbrassington85@altervista.org" "gender" "female" "ip_address" "252.247.153.88" "country" "Ukraine" "country_code" "UA" "city" "Krasnodon" "longitude" "39.7430006" "latitude" "48.3000957" "last_login" "1584019133" +HSET "user:1295" "first_name" "Kristian" "last_name" "Le Quesne" "email" "klequesne86@cdbaby.com" "gender" "male" "ip_address" "131.113.46.201" "country" "Philippines" "country_code" "PH" "city" "Canaman" "longitude" "123.1806689" "latitude" "13.6535843" "last_login" "1571451954" +HSET "user:1296" "first_name" "Helene" "last_name" "Geockle" "email" "hgeockle87@shop-pro.jp" "gender" "female" "ip_address" "191.129.191.87" "country" "Canada" "country_code" "CA" "city" "Devon" "longitude" "-113.7233907" "latitude" "53.3547991" "last_login" "1595987914" +HSET "user:1297" "first_name" "Cchaddie" "last_name" "Matuszyk" "email" "cmatuszyk88@eepurl.com" "gender" "male" "ip_address" "253.107.142.98" "country" "Botswana" "country_code" "BW" "city" "Gaphatshwe" "longitude" "25.9124229" "latitude" "-24.5969718" "last_login" "1597537223" +HSET "user:1298" "first_name" "Aldous" "last_name" "Etty" "email" "aetty89@discovery.com" "gender" "male" "ip_address" "205.96.230.251" "country" "Poland" "country_code" "PL" "city" "Siedliska" "longitude" "20.9961868" "latitude" "49.7266869" "last_login" "1571799388" +HSET "user:1299" "first_name" "Fleur" "last_name" "Bromley" "email" "fbromley8a@last.fm" "gender" "female" "ip_address" "120.167.202.35" "country" "Malaysia" "country_code" "MY" "city" "Sandakan" "longitude" "118.116958" "latitude" "5.83864" "last_login" "1596212616" +HSET "user:1300" "first_name" "Alvie" "last_name" "Darte" "email" "adarte8b@narod.ru" "gender" "male" "ip_address" "162.237.189.225" "country" "Italy" "country_code" "IT" "city" "Reggio Calabria" "longitude" "15.6383202" "latitude" "38.0823988" "last_login" "1586307569" +HSET "user:1301" "first_name" "Broddie" "last_name" "Pegrum" "email" "bpegrum8c@state.tx.us" "gender" "male" "ip_address" "199.244.90.187" "country" "Sweden" "country_code" "SE" "city" "Alingsås" "longitude" "12.5362113" "latitude" "57.9300205" "last_login" "1577994507" +HSET "user:1302" "first_name" "Thadeus" "last_name" "Blum" "email" "tblum8d@cargocollective.com" "gender" "male" "ip_address" "92.106.98.127" "country" "Portugal" "country_code" "PT" "city" "Ponte da Pedra" "longitude" "-8.8245607" "latitude" "39.7869548" "last_login" "1589445102" +HSET "user:1303" "first_name" "Bessy" "last_name" "Bome" "email" "bbome8e@ezinearticles.com" "gender" "female" "ip_address" "167.100.159.248" "country" "Ethiopia" "country_code" "ET" "city" "Metahāra" "longitude" "39.9170354" "latitude" "8.8994875" "last_login" "1596243254" +HSET "user:1304" "first_name" "Garnette" "last_name" "Prendergrast" "email" "gprendergrast8f@businesswire.com" "gender" "female" "ip_address" "174.247.198.47" "country" "Brazil" "country_code" "BR" "city" "Olinda" "longitude" "-34.841629" "latitude" "-7.9908056" "last_login" "1578613244" +HSET "user:1305" "first_name" "Ines" "last_name" "Buddle" "email" "ibuddle8g@cornell.edu" "gender" "female" "ip_address" "137.234.200.146" "country" "Philippines" "country_code" "PH" "city" "Matingain" "longitude" "120.88006" "latitude" "13.9129" "last_login" "1578018368" +HSET "user:1306" "first_name" "Kelwin" "last_name" "Keling" "email" "kkeling8h@webnode.com" "gender" "male" "ip_address" "248.18.116.25" "country" "Czech Republic" "country_code" "CZ" "city" "Brněnec" "longitude" "16.522025" "latitude" "49.6273493" "last_login" "1578029688" +HSET "user:1307" "first_name" "Birk" "last_name" "Esch" "email" "besch8i@ucoz.ru" "gender" "male" "ip_address" "65.227.139.120" "country" "China" "country_code" "CN" "city" "Meixian" "longitude" "116.081656" "latitude" "24.265926" "last_login" "1580324916" +HSET "user:1308" "first_name" "Jonell" "last_name" "Consadine" "email" "jconsadine8j@fastcompany.com" "gender" "female" "ip_address" "229.117.189.93" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Gornje Živinice" "longitude" "18.6066275" "latitude" "44.4280906" "last_login" "1597218455" +HSET "user:1309" "first_name" "Wald" "last_name" "Denisard" "email" "wdenisard8k@blogger.com" "gender" "male" "ip_address" "165.220.74.41" "country" "China" "country_code" "CN" "city" "Lijie" "longitude" "121.409352" "latitude" "31.221597" "last_login" "1592437729" +HSET "user:1310" "first_name" "Gilli" "last_name" "Few" "email" "gfew8l@economist.com" "gender" "female" "ip_address" "211.209.149.254" "country" "Sweden" "country_code" "SE" "city" "Karlstad" "longitude" "13.7250925" "latitude" "59.454973" "last_login" "1586735442" +HSET "user:1311" "first_name" "Holmes" "last_name" "Welbelove" "email" "hwelbelove8m@economist.com" "gender" "male" "ip_address" "39.175.39.142" "country" "Colombia" "country_code" "CO" "city" "Moñitos" "longitude" "-76.1435915" "latitude" "9.1749262" "last_login" "1579827421" +HSET "user:1312" "first_name" "Casey" "last_name" "Colleck" "email" "ccolleck8n@wiley.com" "gender" "male" "ip_address" "132.227.117.126" "country" "Netherlands" "country_code" "NL" "city" "Terneuzen" "longitude" "5.1999127" "latitude" "52.359151" "last_login" "1592568387" +HSET "user:1313" "first_name" "Claudetta" "last_name" "Haggar" "email" "chaggar8o@bing.com" "gender" "female" "ip_address" "163.175.251.206" "country" "Russia" "country_code" "RU" "city" "Belyy Gorodok" "longitude" "37.9617087" "latitude" "55.5700317" "last_login" "1582246734" +HSET "user:1314" "first_name" "Lucretia" "last_name" "Halm" "email" "lhalm8p@mit.edu" "gender" "female" "ip_address" "219.82.83.113" "country" "Micronesia" "country_code" "FM" "city" "Pisaras" "longitude" "150.4189148" "latitude" "8.5703071" "last_login" "1577634962" +HSET "user:1315" "first_name" "Petronille" "last_name" "Stemp" "email" "pstemp8q@smh.com.au" "gender" "female" "ip_address" "150.36.244.36" "country" "Russia" "country_code" "RU" "city" "Tayzhina" "longitude" "87.4315706" "latitude" "53.6897587" "last_login" "1568659726" +HSET "user:1316" "first_name" "Krissie" "last_name" "Earwaker" "email" "kearwaker8r@hubpages.com" "gender" "female" "ip_address" "153.138.163.165" "country" "China" "country_code" "CN" "city" "Xiaoshun" "longitude" "120.264253" "latitude" "30.183806" "last_login" "1598465058" +HSET "user:1317" "first_name" "Alfonso" "last_name" "Allbon" "email" "aallbon8s@goodreads.com" "gender" "male" "ip_address" "97.67.171.236" "country" "China" "country_code" "CN" "city" "Shengao" "longitude" "120.133523" "latitude" "32.584368" "last_login" "1582280341" +HSET "user:1318" "first_name" "Demetris" "last_name" "Tallant" "email" "dtallant8t@free.fr" "gender" "male" "ip_address" "71.42.17.168" "country" "China" "country_code" "CN" "city" "Shiquanhe" "longitude" "80.101607" "latitude" "32.493989" "last_login" "1569991680" +HSET "user:1319" "first_name" "June" "last_name" "Garrish" "email" "jgarrish8u@ow.ly" "gender" "female" "ip_address" "201.184.43.153" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Podhum" "longitude" "16.9849984" "latitude" "43.7367435" "last_login" "1595610367" +HSET "user:1320" "first_name" "Che" "last_name" "Girod" "email" "cgirod8v@apache.org" "gender" "male" "ip_address" "145.182.188.82" "country" "Albania" "country_code" "AL" "city" "Saraqinishtë" "longitude" "20.2318416" "latitude" "40.1063792" "last_login" "1575030448" +HSET "user:1321" "first_name" "Ezri" "last_name" "Graeme" "email" "egraeme8w@typepad.com" "gender" "male" "ip_address" "163.252.116.201" "country" "Canada" "country_code" "CA" "city" "Amherst" "longitude" "-64.2092372" "latitude" "45.8299686" "last_login" "1591774789" +HSET "user:1322" "first_name" "Georgie" "last_name" "Broek" "email" "gbroek8x@gmpg.org" "gender" "male" "ip_address" "216.84.150.231" "country" "Mexico" "country_code" "MX" "city" "Infonavit" "longitude" "-99.1675842" "latitude" "19.307033" "last_login" "1570368456" +HSET "user:1323" "first_name" "Lyndsay" "last_name" "Lewing" "email" "llewing8y@fda.gov" "gender" "female" "ip_address" "112.73.85.235" "country" "China" "country_code" "CN" "city" "Dongxiang" "longitude" "103.389346" "latitude" "35.663752" "last_login" "1594407739" +HSET "user:1324" "first_name" "Melva" "last_name" "Silbert" "email" "msilbert8z@opensource.org" "gender" "female" "ip_address" "80.251.128.147" "country" "Albania" "country_code" "AL" "city" "Rrasa e Sipërme" "longitude" "19.82111" "latitude" "40.96778" "last_login" "1578416316" +HSET "user:1325" "first_name" "Cobby" "last_name" "Pirozzi" "email" "cpirozzi90@cmu.edu" "gender" "male" "ip_address" "15.70.227.161" "country" "Canada" "country_code" "CA" "city" "Deep River" "longitude" "-77.494026" "latitude" "46.0972432" "last_login" "1593125367" +HSET "user:1326" "first_name" "Terencio" "last_name" "Bulteel" "email" "tbulteel91@earthlink.net" "gender" "male" "ip_address" "122.155.111.231" "country" "China" "country_code" "CN" "city" "Yuanqiao" "longitude" "120.396768" "latitude" "32.5639" "last_login" "1589545214" +HSET "user:1327" "first_name" "Bondy" "last_name" "Ticic" "email" "bticic92@creativecommons.org" "gender" "male" "ip_address" "117.50.192.210" "country" "Egypt" "country_code" "EG" "city" "Banhā" "longitude" "31.1848307" "latitude" "30.4659929" "last_login" "1581883968" +HSET "user:1328" "first_name" "Farleigh" "last_name" "MacCleod" "email" "fmaccleod93@patch.com" "gender" "male" "ip_address" "196.69.92.235" "country" "Brazil" "country_code" "BR" "city" "Ouricuri" "longitude" "-40.0810267" "latitude" "-7.8808775" "last_login" "1580633370" +HSET "user:1329" "first_name" "Raimondo" "last_name" "Boylund" "email" "rboylund94@cdc.gov" "gender" "male" "ip_address" "209.126.116.183" "country" "Indonesia" "country_code" "ID" "city" "Oenam" "longitude" "106.9235943" "latitude" "-6.2236967" "last_login" "1569635637" +HSET "user:1330" "first_name" "Connie" "last_name" "Handrik" "email" "chandrik95@sciencedaily.com" "gender" "female" "ip_address" "104.86.251.212" "country" "Canada" "country_code" "CA" "city" "Duncan" "longitude" "-123.7079417" "latitude" "48.7786908" "last_login" "1586523136" +HSET "user:1331" "first_name" "Damita" "last_name" "Franciottoi" "email" "dfranciottoi96@elegantthemes.com" "gender" "female" "ip_address" "55.177.48.19" "country" "Greece" "country_code" "GR" "city" "Kyllíni" "longitude" "21.1449975" "latitude" "37.9346907" "last_login" "1580368198" +HSET "user:1332" "first_name" "Bret" "last_name" "Strugnell" "email" "bstrugnell97@vinaora.com" "gender" "male" "ip_address" "122.65.12.242" "country" "Honduras" "country_code" "HN" "city" "Gracias" "longitude" "-88.5831026" "latitude" "14.5874782" "last_login" "1577267908" +HSET "user:1333" "first_name" "Tallie" "last_name" "Lainge" "email" "tlainge98@cpanel.net" "gender" "female" "ip_address" "27.47.18.145" "country" "Russia" "country_code" "RU" "city" "Ozërsk" "longitude" "22.0193739" "latitude" "54.4026022" "last_login" "1589842543" +HSET "user:1334" "first_name" "Reagen" "last_name" "Rehn" "email" "rrehn99@tmall.com" "gender" "male" "ip_address" "132.24.93.219" "country" "Peru" "country_code" "PE" "city" "Urcos" "longitude" "-71.6228355" "latitude" "-13.6824359" "last_login" "1579981093" +HSET "user:1335" "first_name" "Berny" "last_name" "Devonshire" "email" "bdevonshire9a@ucoz.com" "gender" "female" "ip_address" "62.160.219.216" "country" "Nigeria" "country_code" "NG" "city" "Dambarta" "longitude" "8.5144352" "latitude" "12.432918" "last_login" "1581368948" +HSET "user:1336" "first_name" "Mason" "last_name" "Laguerre" "email" "mlaguerre9b@nyu.edu" "gender" "male" "ip_address" "106.186.201.196" "country" "Indonesia" "country_code" "ID" "city" "Cipeucang" "longitude" "106.022874" "latitude" "-6.371137" "last_login" "1568815898" +HSET "user:1337" "first_name" "Gaylor" "last_name" "Joul" "email" "gjoul9c@cdbaby.com" "gender" "male" "ip_address" "67.128.86.183" "country" "Indonesia" "country_code" "ID" "city" "Pakisaji" "longitude" "112.6079459" "latitude" "-8.074933" "last_login" "1599364829" +HSET "user:1338" "first_name" "Rory" "last_name" "Haward" "email" "rhaward9d@apache.org" "gender" "male" "ip_address" "79.55.43.238" "country" "Indonesia" "country_code" "ID" "city" "Sukonolo Krajan" "longitude" "112.6167" "latitude" "-8.1031" "last_login" "1591094600" +HSET "user:1339" "first_name" "Rickey" "last_name" "Pennazzi" "email" "rpennazzi9e@admin.ch" "gender" "male" "ip_address" "131.30.39.82" "country" "Kyrgyzstan" "country_code" "KG" "city" "Iradan" "longitude" "72.1" "latitude" "40.266667" "last_login" "1595929088" +HSET "user:1340" "first_name" "Leonid" "last_name" "Pellew" "email" "lpellew9f@jimdo.com" "gender" "male" "ip_address" "247.89.223.135" "country" "China" "country_code" "CN" "city" "Jiaotang" "longitude" "113.8688645" "latitude" "29.7162314" "last_login" "1569092109" +HSET "user:1341" "first_name" "Minette" "last_name" "Dobbinson" "email" "mdobbinson9g@toplist.cz" "gender" "female" "ip_address" "50.184.3.29" "country" "Indonesia" "country_code" "ID" "city" "Gardutanjak" "longitude" "106.1049278" "latitude" "-6.312525" "last_login" "1594990308" +HSET "user:1342" "first_name" "Selma" "last_name" "Wildblood" "email" "swildblood9h@princeton.edu" "gender" "female" "ip_address" "29.152.118.112" "country" "Indonesia" "country_code" "ID" "city" "Gersikputih Tengah" "longitude" "113.9564" "latitude" "-7.0353" "last_login" "1584465025" +HSET "user:1343" "first_name" "Kaila" "last_name" "Eckert" "email" "keckert9i@reference.com" "gender" "female" "ip_address" "33.54.102.193" "country" "Vietnam" "country_code" "VN" "city" "Qui Nhon" "longitude" "109.2196634" "latitude" "13.7829673" "last_login" "1599344068" +HSET "user:1344" "first_name" "Rae" "last_name" "Chasmor" "email" "rchasmor9j@ucsd.edu" "gender" "female" "ip_address" "79.161.135.35" "country" "Brazil" "country_code" "BR" "city" "Linhares" "longitude" "-40.0658731" "latitude" "-19.39656" "last_login" "1586959702" +HSET "user:1345" "first_name" "Roley" "last_name" "Pinckney" "email" "rpinckney9k@redcross.org" "gender" "male" "ip_address" "72.141.211.170" "country" "China" "country_code" "CN" "city" "Jishigang" "longitude" "121.448134" "latitude" "29.861346" "last_login" "1571157154" +HSET "user:1346" "first_name" "Carissa" "last_name" "Boyall" "email" "cboyall9l@pinterest.com" "gender" "female" "ip_address" "181.137.121.107" "country" "Tunisia" "country_code" "TN" "city" "Ben Arous" "longitude" "10.2319757" "latitude" "36.7435003" "last_login" "1589798865" +HSET "user:1347" "first_name" "Erv" "last_name" "Domino" "email" "edomino9m@de.vu" "gender" "male" "ip_address" "41.132.168.71" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Kabalo" "longitude" "26.9263671" "latitude" "-6.0329665" "last_login" "1580315909" +HSET "user:1348" "first_name" "Gerda" "last_name" "Hothersall" "email" "ghothersall9n@epa.gov" "gender" "female" "ip_address" "171.78.119.34" "country" "Indonesia" "country_code" "ID" "city" "Banjar Budakeling" "longitude" "114.9671388" "latitude" "-8.2104974" "last_login" "1577855500" +HSET "user:1349" "first_name" "Dorelia" "last_name" "Gouinlock" "email" "dgouinlock9o@cloudflare.com" "gender" "female" "ip_address" "183.239.129.202" "country" "China" "country_code" "CN" "city" "Hetai" "longitude" "112.284638" "latitude" "23.350767" "last_login" "1590582650" +HSET "user:1350" "first_name" "Gardener" "last_name" "Pariss" "email" "gpariss9p@addthis.com" "gender" "male" "ip_address" "183.241.45.42" "country" "Indonesia" "country_code" "ID" "city" "Mekarsari" "longitude" "115.1918802" "latitude" "-8.3765619" "last_login" "1587193697" +HSET "user:1351" "first_name" "Rubie" "last_name" "MacGraith" "email" "rmacgraith9q@linkedin.com" "gender" "female" "ip_address" "100.31.228.213" "country" "France" "country_code" "FR" "city" "Baume-les-Dames" "longitude" "6.309262" "latitude" "47.343506" "last_login" "1572997751" +HSET "user:1352" "first_name" "Yvon" "last_name" "Rickasse" "email" "yrickasse9r@phpbb.com" "gender" "male" "ip_address" "236.26.186.101" "country" "Portugal" "country_code" "PT" "city" "Carreira" "longitude" "-8.857121" "latitude" "39.8651684" "last_login" "1576455055" +HSET "user:1353" "first_name" "Bekki" "last_name" "Hesey" "email" "bhesey9s@webeden.co.uk" "gender" "female" "ip_address" "185.21.166.235" "country" "Thailand" "country_code" "TH" "city" "Bang Saphan" "longitude" "99.4450439" "latitude" "11.1148457" "last_login" "1600136539" +HSET "user:1354" "first_name" "Shanda" "last_name" "Ivers" "email" "sivers9t@rediff.com" "gender" "female" "ip_address" "196.162.186.220" "country" "Portugal" "country_code" "PT" "city" "Fraga" "longitude" "-8.2053479" "latitude" "41.136319" "last_login" "1569676811" +HSET "user:1355" "first_name" "Ward" "last_name" "Lavarack" "email" "wlavarack9u@nationalgeographic.com" "gender" "male" "ip_address" "89.192.16.150" "country" "Malaysia" "country_code" "MY" "city" "Shah Alam" "longitude" "101.5395705" "latitude" "2.9864896" "last_login" "1585021074" +HSET "user:1356" "first_name" "Jasmine" "last_name" "Rickman" "email" "jrickman9v@arstechnica.com" "gender" "female" "ip_address" "56.234.61.64" "country" "Philippines" "country_code" "PH" "city" "Mabiton" "longitude" "123.2470016" "latitude" "12.9029999" "last_login" "1579645949" +HSET "user:1357" "first_name" "Tanya" "last_name" "Size" "email" "tsize9w@hao123.com" "gender" "female" "ip_address" "108.208.92.243" "country" "Bulgaria" "country_code" "BG" "city" "Pleven" "longitude" "24.5714432" "latitude" "43.3715256" "last_login" "1590521846" +HSET "user:1358" "first_name" "Cassi" "last_name" "O'Carroll" "email" "cocarroll9x@ihg.com" "gender" "female" "ip_address" "26.21.224.94" "country" "Argentina" "country_code" "AR" "city" "Añatuya" "longitude" "-64.2837225" "latitude" "-27.7828418" "last_login" "1571953342" +HSET "user:1359" "first_name" "Ammamaria" "last_name" "Esel" "email" "aesel9y@booking.com" "gender" "female" "ip_address" "232.74.17.157" "country" "Uzbekistan" "country_code" "UZ" "city" "Uychi" "longitude" "71.845274" "latitude" "41.0289533" "last_login" "1599882620" +HSET "user:1360" "first_name" "Gloriane" "last_name" "Moxted" "email" "gmoxted9z@marketwatch.com" "gender" "female" "ip_address" "4.92.98.219" "country" "United Kingdom" "country_code" "GB" "city" "Charlton" "longitude" "-1.407848" "latitude" "51.59119" "last_login" "1575797139" +HSET "user:1361" "first_name" "Wren" "last_name" "Hickinbottom" "email" "whickinbottoma0@webnode.com" "gender" "female" "ip_address" "128.223.228.215" "country" "Portugal" "country_code" "PT" "city" "Lapas" "longitude" "-8.555621" "latitude" "39.5068579" "last_login" "1571785602" +HSET "user:1362" "first_name" "Emeline" "last_name" "Renehan" "email" "erenehana1@mtv.com" "gender" "female" "ip_address" "98.42.191.138" "country" "Indonesia" "country_code" "ID" "city" "Hokor" "longitude" "122.2483726" "latitude" "-8.727652" "last_login" "1599381613" +HSET "user:1363" "first_name" "Jens" "last_name" "Phettis" "email" "jphettisa2@lulu.com" "gender" "male" "ip_address" "187.126.255.159" "country" "China" "country_code" "CN" "city" "Pantang" "longitude" "117.3247325" "latitude" "34.16171" "last_login" "1596683115" +HSET "user:1364" "first_name" "Colan" "last_name" "Alcott" "email" "calcotta3@timesonline.co.uk" "gender" "male" "ip_address" "48.75.122.247" "country" "China" "country_code" "CN" "city" "Dongfanghong" "longitude" "80.3038321" "latitude" "41.1846097" "last_login" "1577660541" +HSET "user:1365" "first_name" "Davon" "last_name" "Exeter" "email" "dexetera4@msn.com" "gender" "male" "ip_address" "250.243.84.182" "country" "Peru" "country_code" "PE" "city" "Huertas" "longitude" "-75.4723411" "latitude" "-11.7659957" "last_login" "1569049968" +HSET "user:1366" "first_name" "Dasie" "last_name" "Hardeman" "email" "dhardemana5@craigslist.org" "gender" "female" "ip_address" "106.167.141.27" "country" "Czech Republic" "country_code" "CZ" "city" "Vidče" "longitude" "18.0947362" "latitude" "49.441512" "last_login" "1582472280" +HSET "user:1367" "first_name" "Dilan" "last_name" "Tuddenham" "email" "dtuddenhama6@answers.com" "gender" "male" "ip_address" "217.85.230.1" "country" "China" "country_code" "CN" "city" "Keyi" "longitude" "121.4618377" "latitude" "31.2266233" "last_login" "1570568377" +HSET "user:1368" "first_name" "Venus" "last_name" "Salle" "email" "vsallea7@histats.com" "gender" "female" "ip_address" "237.79.96.228" "country" "Portugal" "country_code" "PT" "city" "Água de Pau" "longitude" "-25.510372" "latitude" "37.7213799" "last_login" "1586596823" +HSET "user:1369" "first_name" "Lee" "last_name" "Boch" "email" "lbocha8@163.com" "gender" "male" "ip_address" "75.30.228.196" "country" "Indonesia" "country_code" "ID" "city" "Sumberagung" "longitude" "114.0369075" "latitude" "-8.557437" "last_login" "1572480642" +HSET "user:1370" "first_name" "Seth" "last_name" "Bauduin" "email" "sbauduina9@soundcloud.com" "gender" "male" "ip_address" "107.210.225.91" "country" "Cameroon" "country_code" "CM" "city" "Fontem" "longitude" "9.8627243" "latitude" "5.4852096" "last_login" "1592967587" +HSET "user:1371" "first_name" "Glenda" "last_name" "Overthrow" "email" "goverthrowaa@mediafire.com" "gender" "female" "ip_address" "135.199.51.42" "country" "Colombia" "country_code" "CO" "city" "Algeciras" "longitude" "-75.3156939" "latitude" "2.523477" "last_login" "1574062609" +HSET "user:1372" "first_name" "Tymothy" "last_name" "Pigden" "email" "tpigdenab@nyu.edu" "gender" "male" "ip_address" "73.78.224.153" "country" "Argentina" "country_code" "AR" "city" "Colonia Elisa" "longitude" "-49.9812625" "latitude" "-20.4170226" "last_login" "1571853524" +HSET "user:1373" "first_name" "Martino" "last_name" "Bartoshevich" "email" "mbartoshevichac@blogs.com" "gender" "male" "ip_address" "241.144.50.62" "country" "China" "country_code" "CN" "city" "Mengcheng Chengguanzhen" "longitude" "116.557663" "latitude" "33.267964" "last_login" "1571324633" +HSET "user:1374" "first_name" "Louie" "last_name" "Shepheard" "email" "lshepheardad@amazonaws.com" "gender" "male" "ip_address" "237.147.0.214" "country" "Ukraine" "country_code" "UA" "city" "Kruty" "longitude" "32.1023674" "latitude" "51.0566412" "last_login" "1575719174" +HSET "user:1375" "first_name" "Min" "last_name" "Kareman" "email" "mkaremanae@hao123.com" "gender" "female" "ip_address" "11.81.42.98" "country" "Russia" "country_code" "RU" "city" "Rutul" "longitude" "47.4238117" "latitude" "41.5335463" "last_login" "1590959448" +HSET "user:1376" "first_name" "Stirling" "last_name" "Broadbere" "email" "sbroadbereaf@rakuten.co.jp" "gender" "male" "ip_address" "202.41.239.173" "country" "Czech Republic" "country_code" "CZ" "city" "Sezimovo Ústí" "longitude" "14.7029806" "latitude" "49.3788944" "last_login" "1587836204" +HSET "user:1377" "first_name" "Ricki" "last_name" "Deabill" "email" "rdeabillag@mozilla.com" "gender" "male" "ip_address" "216.79.125.121" "country" "Syria" "country_code" "SY" "city" "Al Manşūrah" "longitude" "36.2264681" "latitude" "33.3585811" "last_login" "1573060198" +HSET "user:1378" "first_name" "Katerine" "last_name" "Iacapucci" "email" "kiacapucciah@adobe.com" "gender" "female" "ip_address" "67.13.193.34" "country" "Belarus" "country_code" "BY" "city" "Dashkawka" "longitude" "30.2625" "latitude" "53.7352" "last_login" "1593914991" +HSET "user:1379" "first_name" "Regan" "last_name" "Saintpierre" "email" "rsaintpierreai@nba.com" "gender" "female" "ip_address" "54.203.153.155" "country" "Portugal" "country_code" "PT" "city" "Corroios" "longitude" "-9.1624406" "latitude" "38.6332265" "last_login" "1573266708" +HSET "user:1380" "first_name" "Pippy" "last_name" "Rosier" "email" "prosieraj@digg.com" "gender" "female" "ip_address" "189.74.238.46" "country" "Indonesia" "country_code" "ID" "city" "Cisitu" "longitude" "108.059866" "latitude" "-6.8390238" "last_login" "1580431103" +HSET "user:1381" "first_name" "Marven" "last_name" "Connechie" "email" "mconnechieak@skyrock.com" "gender" "male" "ip_address" "37.56.214.197" "country" "China" "country_code" "CN" "city" "Pendiqing" "longitude" "112.00383" "latitude" "39.94191" "last_login" "1583580140" +HSET "user:1382" "first_name" "Wernher" "last_name" "Gaydon" "email" "wgaydonal@toplist.cz" "gender" "male" "ip_address" "215.91.149.48" "country" "China" "country_code" "CN" "city" "Gongyi" "longitude" "113.022496" "latitude" "34.747834" "last_login" "1598108758" +HSET "user:1383" "first_name" "Laurie" "last_name" "Andric" "email" "landricam@fda.gov" "gender" "male" "ip_address" "45.30.115.249" "country" "Trinidad and Tobago" "country_code" "TT" "city" "Siparia" "longitude" "-61.5252827" "latitude" "10.0910494" "last_login" "1589474116" +HSET "user:1384" "first_name" "Paul" "last_name" "Shervil" "email" "pshervilan@earthlink.net" "gender" "male" "ip_address" "91.113.82.46" "country" "Norway" "country_code" "NO" "city" "Lillehammer" "longitude" "10.4755594" "latitude" "61.1006924" "last_login" "1576162185" +HSET "user:1385" "first_name" "Cathryn" "last_name" "Lever" "email" "cleverao@moonfruit.com" "gender" "female" "ip_address" "237.157.72.172" "country" "Indonesia" "country_code" "ID" "city" "Rajapeni" "longitude" "108.2148" "latitude" "-7.2841" "last_login" "1576135593" +HSET "user:1386" "first_name" "Egan" "last_name" "Corbally" "email" "ecorballyap@symantec.com" "gender" "male" "ip_address" "251.151.177.70" "country" "Portugal" "country_code" "PT" "city" "Paço" "longitude" "-8.8458421" "latitude" "41.80088" "last_login" "1571756673" +HSET "user:1387" "first_name" "Candice" "last_name" "Rickertsen" "email" "crickertsenaq@zimbio.com" "gender" "female" "ip_address" "41.98.139.108" "country" "China" "country_code" "CN" "city" "Jiancha" "longitude" "104.053225" "latitude" "30.375526" "last_login" "1598724482" +HSET "user:1388" "first_name" "Virgilio" "last_name" "Roon" "email" "vroonar@biglobe.ne.jp" "gender" "male" "ip_address" "41.160.235.129" "country" "China" "country_code" "CN" "city" "Yunchi" "longitude" "111.459076" "latitude" "30.47863" "last_login" "1587076098" +HSET "user:1389" "first_name" "Winnah" "last_name" "Kolyagin" "email" "wkolyaginas@skype.com" "gender" "female" "ip_address" "10.43.55.190" "country" "France" "country_code" "FR" "city" "Perpignan" "longitude" "2.0376775" "latitude" "43.6943099" "last_login" "1578097858" +HSET "user:1390" "first_name" "Des" "last_name" "Middiff" "email" "dmiddiffat@economist.com" "gender" "male" "ip_address" "45.132.144.133" "country" "Czech Republic" "country_code" "CZ" "city" "Česká Skalice" "longitude" "16.0427679" "latitude" "50.3946667" "last_login" "1580228792" +HSET "user:1391" "first_name" "Brenna" "last_name" "Darington" "email" "bdaringtonau@slate.com" "gender" "female" "ip_address" "47.238.93.37" "country" "Japan" "country_code" "JP" "city" "Dazaifu" "longitude" "130.4936331" "latitude" "33.5147935" "last_login" "1578512673" +HSET "user:1392" "first_name" "Jewel" "last_name" "Spileman" "email" "jspilemanav@fema.gov" "gender" "female" "ip_address" "9.149.27.127" "country" "Poland" "country_code" "PL" "city" "Zabierzów" "longitude" "19.8106779" "latitude" "50.1242949" "last_login" "1584718544" +HSET "user:1393" "first_name" "Willi" "last_name" "Bratt" "email" "wbrattaw@quantcast.com" "gender" "female" "ip_address" "17.40.151.140" "country" "Germany" "country_code" "DE" "city" "München" "longitude" "11.5131806" "latitude" "48.2115037" "last_login" "1589558554" +HSET "user:1394" "first_name" "Waiter" "last_name" "Mattussevich" "email" "wmattussevichax@cmu.edu" "gender" "male" "ip_address" "90.255.185.65" "country" "China" "country_code" "CN" "city" "Gaojiazhuang" "longitude" "113.110378" "latitude" "36.309203" "last_login" "1588470600" +HSET "user:1395" "first_name" "Melli" "last_name" "Cottill" "email" "mcottillay@e-recht24.de" "gender" "female" "ip_address" "170.233.204.83" "country" "Uzbekistan" "country_code" "UZ" "city" "Zafar" "longitude" "69.2490136" "latitude" "40.3777496" "last_login" "1587255309" +HSET "user:1396" "first_name" "Gray" "last_name" "Clague" "email" "gclagueaz@behance.net" "gender" "male" "ip_address" "167.103.106.75" "country" "Panama" "country_code" "PA" "city" "Veracruz" "longitude" "-79.6421415" "latitude" "8.8876607" "last_login" "1580606064" +HSET "user:1397" "first_name" "Elvyn" "last_name" "Shirley" "email" "eshirleyb0@deliciousdays.com" "gender" "male" "ip_address" "113.164.120.74" "country" "France" "country_code" "FR" "city" "Rive-de-Gier" "longitude" "4.6192695" "latitude" "45.5294991" "last_login" "1586216744" +HSET "user:1398" "first_name" "Abraham" "last_name" "Landall" "email" "alandallb1@usda.gov" "gender" "male" "ip_address" "140.12.203.118" "country" "Ukraine" "country_code" "UA" "city" "Kuteynykove" "longitude" "38.28822" "latitude" "47.81227" "last_login" "1595461010" +HSET "user:1399" "first_name" "Renell" "last_name" "MacGettigen" "email" "rmacgettigenb2@livejournal.com" "gender" "female" "ip_address" "163.61.34.184" "country" "Mauritius" "country_code" "MU" "city" "Port Louis" "longitude" "57.5012222" "latitude" "-20.1608912" "last_login" "1588444012" +HSET "user:1400" "first_name" "Lyndy" "last_name" "Ivannikov" "email" "livannikovb3@pinterest.com" "gender" "female" "ip_address" "80.148.194.242" "country" "Sweden" "country_code" "SE" "city" "Skoghall" "longitude" "13.4662133" "latitude" "59.3269612" "last_login" "1579684481" +HSET "user:1401" "first_name" "Scarlet" "last_name" "Blois" "email" "sbloisb4@imageshack.us" "gender" "female" "ip_address" "206.229.41.185" "country" "Colombia" "country_code" "CO" "city" "Planeta Rica" "longitude" "-75.6906241" "latitude" "8.2459842" "last_login" "1576765801" +HSET "user:1402" "first_name" "Faulkner" "last_name" "Ditter" "email" "fditterb5@geocities.com" "gender" "male" "ip_address" "220.65.201.49" "country" "Belarus" "country_code" "BY" "city" "Lyasny" "longitude" "27.6885079" "latitude" "54.0045473" "last_login" "1580943452" +HSET "user:1403" "first_name" "Celestia" "last_name" "Downing" "email" "cdowningb6@alibaba.com" "gender" "female" "ip_address" "56.14.128.12" "country" "Russia" "country_code" "RU" "city" "Plast" "longitude" "60.7871278" "latitude" "54.4915943" "last_login" "1574919737" +HSET "user:1404" "first_name" "Vivyanne" "last_name" "Wavell" "email" "vwavellb7@webmd.com" "gender" "female" "ip_address" "138.221.13.99" "country" "Peru" "country_code" "PE" "city" "Matahuasi" "longitude" "-75.3477767" "latitude" "-11.8920309" "last_login" "1574320634" +HSET "user:1405" "first_name" "Sandy" "last_name" "Granham" "email" "sgranhamb8@themeforest.net" "gender" "male" "ip_address" "104.86.78.179" "country" "Poland" "country_code" "PL" "city" "Skawica" "longitude" "19.6231329" "latitude" "49.6766897" "last_login" "1596267553" +HSET "user:1406" "first_name" "Web" "last_name" "Ebanks" "email" "webanksb9@illinois.edu" "gender" "male" "ip_address" "57.80.254.58" "country" "Malaysia" "country_code" "MY" "city" "Alor Setar" "longitude" "100.3694375" "latitude" "6.1205833" "last_login" "1599007019" +HSET "user:1407" "first_name" "Archy" "last_name" "Tibald" "email" "atibaldba@wordpress.com" "gender" "male" "ip_address" "204.255.89.231" "country" "Russia" "country_code" "RU" "city" "Kurba" "longitude" "30.3651444" "latitude" "59.9294476" "last_login" "1571925325" +HSET "user:1408" "first_name" "Phineas" "last_name" "Finders" "email" "pfindersbb@ihg.com" "gender" "male" "ip_address" "187.209.240.20" "country" "China" "country_code" "CN" "city" "Zhongxi" "longitude" "114.1237079" "latitude" "22.5346419" "last_login" "1588578080" +HSET "user:1409" "first_name" "Lonny" "last_name" "Donnelly" "email" "ldonnellybc@blinklist.com" "gender" "male" "ip_address" "61.80.25.172" "country" "Norway" "country_code" "NO" "city" "Notodden" "longitude" "9.2442028" "latitude" "59.5785947" "last_login" "1594527018" +HSET "user:1410" "first_name" "Hayes" "last_name" "May" "email" "hmaybd@4shared.com" "gender" "male" "ip_address" "21.208.11.88" "country" "China" "country_code" "CN" "city" "Guozhen" "longitude" "107.387303" "latitude" "34.351432" "last_login" "1573635631" +HSET "user:1411" "first_name" "Kristoforo" "last_name" "Antoni" "email" "kantonibe@cbslocal.com" "gender" "male" "ip_address" "207.37.42.36" "country" "Morocco" "country_code" "MA" "city" "Fifi" "longitude" "-5.24798" "latitude" "34.94873" "last_login" "1575606487" +HSET "user:1412" "first_name" "Alric" "last_name" "Dener" "email" "adenerbf@unicef.org" "gender" "male" "ip_address" "178.21.48.105" "country" "Czech Republic" "country_code" "CZ" "city" "Ostrožská Lhota" "longitude" "17.4746428" "latitude" "48.9763601" "last_login" "1570278764" +HSET "user:1413" "first_name" "Philomena" "last_name" "Armitt" "email" "parmittbg@dropbox.com" "gender" "female" "ip_address" "199.77.81.249" "country" "Indonesia" "country_code" "ID" "city" "Padasuka" "longitude" "107.6474283" "latitude" "-6.9042641" "last_login" "1586432099" +HSET "user:1414" "first_name" "Birgit" "last_name" "Merrywether" "email" "bmerrywetherbh@angelfire.com" "gender" "female" "ip_address" "249.142.76.98" "country" "Serbia" "country_code" "RS" "city" "Banovo Polje" "longitude" "19.4516353" "latitude" "44.9153318" "last_login" "1595730886" +HSET "user:1415" "first_name" "Aile" "last_name" "Pickett" "email" "apickettbi@studiopress.com" "gender" "female" "ip_address" "207.250.75.182" "country" "Finland" "country_code" "FI" "city" "Jurva" "longitude" "21.7352793" "latitude" "62.8511538" "last_login" "1579341852" +HSET "user:1416" "first_name" "Leigha" "last_name" "Darkott" "email" "ldarkottbj@51.la" "gender" "female" "ip_address" "245.99.221.61" "country" "Oman" "country_code" "OM" "city" "Al Qābil" "longitude" "58.6858709" "latitude" "22.5674949" "last_login" "1572619332" +HSET "user:1417" "first_name" "Winthrop" "last_name" "Slemmonds" "email" "wslemmondsbk@oracle.com" "gender" "male" "ip_address" "137.155.25.121" "country" "Portugal" "country_code" "PT" "city" "Faro" "longitude" "-7.9261469" "latitude" "37.0177329" "last_login" "1574443443" +HSET "user:1418" "first_name" "Garwin" "last_name" "Fearby" "email" "gfearbybl@nydailynews.com" "gender" "male" "ip_address" "140.198.56.78" "country" "China" "country_code" "CN" "city" "Zhujiachang" "longitude" "121.4849128" "latitude" "38.9421248" "last_login" "1576601145" +HSET "user:1419" "first_name" "Beilul" "last_name" "Casaroli" "email" "bcasarolibm@elegantthemes.com" "gender" "female" "ip_address" "227.115.241.189" "country" "Afghanistan" "country_code" "AF" "city" "Injīl" "longitude" "62.215754" "latitude" "34.4274119" "last_login" "1581098084" +HSET "user:1420" "first_name" "Annabel" "last_name" "Tunn" "email" "atunnbn@nytimes.com" "gender" "female" "ip_address" "165.149.97.0" "country" "China" "country_code" "CN" "city" "Shimiaozi" "longitude" "104.618817" "latitude" "31.438589" "last_login" "1570443936" +HSET "user:1421" "first_name" "Garvin" "last_name" "Bacher" "email" "gbacherbo@uol.com.br" "gender" "male" "ip_address" "142.100.205.83" "country" "Colombia" "country_code" "CO" "city" "Sevilla" "longitude" "-75.931004" "latitude" "4.2743779" "last_login" "1581615016" +HSET "user:1422" "first_name" "Pierce" "last_name" "Havock" "email" "phavockbp@istockphoto.com" "gender" "male" "ip_address" "26.119.10.86" "country" "Indonesia" "country_code" "ID" "city" "Jambangan" "longitude" "112.718192" "latitude" "-7.3210819" "last_login" "1592159584" +HSET "user:1423" "first_name" "Morty" "last_name" "Allso" "email" "mallsobq@oracle.com" "gender" "male" "ip_address" "237.196.82.47" "country" "France" "country_code" "FR" "city" "Toulouse" "longitude" "1.4525313" "latitude" "43.6085373" "last_login" "1580705197" +HSET "user:1424" "first_name" "Ellerey" "last_name" "Daffern" "email" "edaffernbr@newyorker.com" "gender" "male" "ip_address" "182.211.240.116" "country" "China" "country_code" "CN" "city" "Heba" "longitude" "112.646263" "latitude" "29.186335" "last_login" "1591333320" +HSET "user:1425" "first_name" "Berkie" "last_name" "Guyers" "email" "bguyersbs@de.vu" "gender" "male" "ip_address" "188.112.98.130" "country" "France" "country_code" "FR" "city" "Aix-en-Provence" "longitude" "5.3707209" "latitude" "43.4914335" "last_login" "1589515135" +HSET "user:1426" "first_name" "Aurthur" "last_name" "Ramme" "email" "arammebt@list-manage.com" "gender" "male" "ip_address" "40.15.151.111" "country" "China" "country_code" "CN" "city" "Shetan" "longitude" "107.621139" "latitude" "29.98784" "last_login" "1575459634" +HSET "user:1427" "first_name" "Gerianne" "last_name" "Peek" "email" "gpeekbu@ning.com" "gender" "female" "ip_address" "142.216.191.121" "country" "Indonesia" "country_code" "ID" "city" "Jungutbatu Kaja Dua" "longitude" "115.2096864" "latitude" "-8.6738819" "last_login" "1578494811" +HSET "user:1428" "first_name" "Perry" "last_name" "Bleyman" "email" "pbleymanbv@samsung.com" "gender" "male" "ip_address" "109.247.206.26" "country" "China" "country_code" "CN" "city" "Dongchengyuan" "longitude" "116.475691" "latitude" "33.92692" "last_login" "1593663733" +HSET "user:1429" "first_name" "Raf" "last_name" "Feyer" "email" "rfeyerbw@amazon.co.uk" "gender" "female" "ip_address" "4.124.223.192" "country" "Portugal" "country_code" "PT" "city" "Guilhabreu" "longitude" "-8.6325611" "latitude" "41.2922523" "last_login" "1572309130" +HSET "user:1430" "first_name" "Bev" "last_name" "Beller" "email" "bbellerbx@posterous.com" "gender" "female" "ip_address" "18.17.222.35" "country" "Vietnam" "country_code" "VN" "city" "Thanh Nê" "longitude" "106.4376425" "latitude" "20.3812787" "last_login" "1581067434" +HSET "user:1431" "first_name" "Lidia" "last_name" "Franckton" "email" "lfrancktonby@squidoo.com" "gender" "female" "ip_address" "173.103.255.48" "country" "China" "country_code" "CN" "city" "Xindian" "longitude" "116.694361" "latitude" "37.105382" "last_login" "1592869562" +HSET "user:1432" "first_name" "Constantia" "last_name" "Gerling" "email" "cgerlingbz@qq.com" "gender" "female" "ip_address" "121.80.42.75" "country" "Philippines" "country_code" "PH" "city" "Balading" "longitude" "123.7090708" "latitude" "13.3881323" "last_login" "1588085249" +HSET "user:1433" "first_name" "Randell" "last_name" "Shanks" "email" "rshanksc0@alibaba.com" "gender" "male" "ip_address" "141.235.87.167" "country" "Palestinian Territory" "country_code" "PS" "city" "Iktābah" "longitude" "35.05262" "latitude" "32.3266" "last_login" "1593331853" +HSET "user:1434" "first_name" "Sherwood" "last_name" "Sidden" "email" "ssiddenc1@dyndns.org" "gender" "male" "ip_address" "241.73.11.61" "country" "Russia" "country_code" "RU" "city" "Uren’" "longitude" "45.7930516" "latitude" "57.4746374" "last_login" "1593071191" +HSET "user:1435" "first_name" "Odette" "last_name" "Bromige" "email" "obromigec2@storify.com" "gender" "female" "ip_address" "48.233.169.185" "country" "Thailand" "country_code" "TH" "city" "Santi Suk" "longitude" "100.7832784" "latitude" "18.7915629" "last_login" "1588660101" +HSET "user:1436" "first_name" "Clive" "last_name" "Probets" "email" "cprobetsc3@yolasite.com" "gender" "male" "ip_address" "103.41.64.171" "country" "Indonesia" "country_code" "ID" "city" "Kabar Utara" "longitude" "117.6485192" "latitude" "4.141254" "last_login" "1575632416" +HSET "user:1437" "first_name" "Angel" "last_name" "Macro" "email" "amacroc4@skype.com" "gender" "male" "ip_address" "48.150.14.164" "country" "Hungary" "country_code" "HU" "city" "Budapest" "longitude" "19.1068043" "latitude" "47.5735211" "last_login" "1589451659" +HSET "user:1438" "first_name" "Cheslie" "last_name" "Alliott" "email" "calliottc5@pcworld.com" "gender" "female" "ip_address" "17.138.13.249" "country" "Russia" "country_code" "RU" "city" "Yermolino" "longitude" "36.6083916" "latitude" "55.2259313" "last_login" "1595120294" +HSET "user:1439" "first_name" "Anstice" "last_name" "Boutell" "email" "aboutellc6@vimeo.com" "gender" "female" "ip_address" "203.84.165.221" "country" "Central African Republic" "country_code" "CF" "city" "Berbérati" "longitude" "15.7879371" "latitude" "4.2571092" "last_login" "1586644206" +HSET "user:1440" "first_name" "Thayne" "last_name" "Toohey" "email" "ttooheyc7@e-recht24.de" "gender" "male" "ip_address" "205.93.58.227" "country" "Slovenia" "country_code" "SI" "city" "Izlake" "longitude" "14.9301007" "latitude" "46.1544155" "last_login" "1586886158" +HSET "user:1441" "first_name" "Glynda" "last_name" "Rudall" "email" "grudallc8@aboutads.info" "gender" "female" "ip_address" "144.155.20.16" "country" "China" "country_code" "CN" "city" "Hanlin" "longitude" "-6.1832154" "latitude" "53.6094616" "last_login" "1573356328" +HSET "user:1442" "first_name" "Davie" "last_name" "O'Clery" "email" "docleryc9@amazon.co.uk" "gender" "male" "ip_address" "229.37.70.91" "country" "Senegal" "country_code" "SN" "city" "Waoundé" "longitude" "-12.8658649" "latitude" "15.2699767" "last_login" "1591213796" +HSET "user:1443" "first_name" "Theodoric" "last_name" "Tuff" "email" "ttuffca@imgur.com" "gender" "male" "ip_address" "10.143.55.204" "country" "Micronesia" "country_code" "FM" "city" "Mokil" "longitude" "159.7540106" "latitude" "6.6650328" "last_login" "1590704551" +HSET "user:1444" "first_name" "Abramo" "last_name" "Hayles" "email" "ahaylescb@tmall.com" "gender" "male" "ip_address" "65.103.47.105" "country" "Russia" "country_code" "RU" "city" "Udachny" "longitude" "112.2977807" "latitude" "66.407021" "last_login" "1591467516" +HSET "user:1445" "first_name" "Marysa" "last_name" "Abotson" "email" "mabotsoncc@purevolume.com" "gender" "female" "ip_address" "54.184.71.220" "country" "United States" "country_code" "US" "city" "Sacramento" "longitude" "-121.5198716" "latitude" "38.6198298" "last_login" "1572829586" +HSET "user:1446" "first_name" "Farand" "last_name" "Rustich" "email" "frustichcd@w3.org" "gender" "female" "ip_address" "186.167.118.69" "country" "Armenia" "country_code" "AM" "city" "Nerk’in Getashen" "longitude" "45.2711048" "latitude" "40.1442308" "last_login" "1574434217" +HSET "user:1447" "first_name" "Zachary" "last_name" "MacGinley" "email" "zmacginleyce@over-blog.com" "gender" "male" "ip_address" "30.115.53.70" "country" "Afghanistan" "country_code" "AF" "city" "Dāngām" "longitude" "71.4061876" "latitude" "35.0021932" "last_login" "1584883686" +HSET "user:1448" "first_name" "Dorelia" "last_name" "Yakubov" "email" "dyakubovcf@google.co.uk" "gender" "female" "ip_address" "216.179.211.92" "country" "Germany" "country_code" "DE" "city" "Braunschweig" "longitude" "10.5665003" "latitude" "52.2346447" "last_login" "1585239597" +HSET "user:1449" "first_name" "Montgomery" "last_name" "Caldairou" "email" "mcaldairoucg@google.it" "gender" "male" "ip_address" "227.53.122.62" "country" "Argentina" "country_code" "AR" "city" "Quitilipi" "longitude" "-60.216667" "latitude" "-26.883247" "last_login" "1585081536" +HSET "user:1450" "first_name" "Hamil" "last_name" "Castellucci" "email" "hcastelluccich@unicef.org" "gender" "male" "ip_address" "6.100.163.219" "country" "France" "country_code" "FR" "city" "Cognac" "longitude" "-1.811786" "latitude" "46.6328109" "last_login" "1589364143" +HSET "user:1451" "first_name" "Colene" "last_name" "Wickersham" "email" "cwickershamci@arizona.edu" "gender" "female" "ip_address" "76.168.148.8" "country" "Mexico" "country_code" "MX" "city" "San Francisco" "longitude" "-105.4093552" "latitude" "20.8965838" "last_login" "1592582647" +HSET "user:1452" "first_name" "Peyter" "last_name" "Joscelyne" "email" "pjoscelynecj@nydailynews.com" "gender" "male" "ip_address" "216.80.1.179" "country" "Swaziland" "country_code" "SZ" "city" "Manzini" "longitude" "31.3713164" "latitude" "-26.5081999" "last_login" "1577144759" +HSET "user:1453" "first_name" "Pavla" "last_name" "Momery" "email" "pmomeryck@craigslist.org" "gender" "female" "ip_address" "115.135.99.198" "country" "China" "country_code" "CN" "city" "Gaoqiao" "longitude" "108.249509" "latitude" "31.364902" "last_login" "1590213907" +HSET "user:1454" "first_name" "Reginauld" "last_name" "Richens" "email" "rrichenscl@opera.com" "gender" "male" "ip_address" "124.45.54.157" "country" "United States" "country_code" "US" "city" "Young America" "longitude" "-93.91" "latitude" "44.78" "last_login" "1577221031" +HSET "user:1455" "first_name" "Micheline" "last_name" "Hurring" "email" "mhurringcm@clickbank.net" "gender" "female" "ip_address" "115.74.113.237" "country" "Philippines" "country_code" "PH" "city" "Langtad" "longitude" "123.7325652" "latitude" "10.1834676" "last_login" "1589143082" +HSET "user:1456" "first_name" "Dolly" "last_name" "Houlston" "email" "dhoulstoncn@hc360.com" "gender" "female" "ip_address" "204.188.161.248" "country" "China" "country_code" "CN" "city" "Xueshan" "longitude" "100.1" "latitude" "27.3183333" "last_login" "1597912784" +HSET "user:1457" "first_name" "Lesly" "last_name" "Fairhall" "email" "lfairhallco@zimbio.com" "gender" "female" "ip_address" "244.164.200.25" "country" "Poland" "country_code" "PL" "city" "Rudna" "longitude" "16.263731" "latitude" "51.5111902" "last_login" "1574160051" +HSET "user:1458" "first_name" "Marwin" "last_name" "Langdridge" "email" "mlangdridgecp@t-online.de" "gender" "male" "ip_address" "112.102.154.220" "country" "China" "country_code" "CN" "city" "Jinhe" "longitude" "101.841707" "latitude" "26.695419" "last_login" "1572893297" +HSET "user:1459" "first_name" "Obie" "last_name" "Bruins" "email" "obruinscq@psu.edu" "gender" "male" "ip_address" "195.52.210.63" "country" "Sweden" "country_code" "SE" "city" "Sandviken" "longitude" "16.76232" "latitude" "60.6304039" "last_login" "1592092801" +HSET "user:1460" "first_name" "Andris" "last_name" "Frean" "email" "afreancr@auda.org.au" "gender" "male" "ip_address" "16.151.96.97" "country" "Malaysia" "country_code" "MY" "city" "Seremban" "longitude" "101.9476452" "latitude" "2.7239834" "last_login" "1582164954" +HSET "user:1461" "first_name" "Lurline" "last_name" "Strand" "email" "lstrandcs@columbia.edu" "gender" "female" "ip_address" "135.253.90.168" "country" "Macedonia" "country_code" "MK" "city" "Kisela Voda" "longitude" "21.4362855" "latitude" "41.9870319" "last_login" "1584208324" +HSET "user:1462" "first_name" "Sauncho" "last_name" "Browell" "email" "sbrowellct@dailymail.co.uk" "gender" "male" "ip_address" "57.23.185.160" "country" "Indonesia" "country_code" "ID" "city" "Matangpayang" "longitude" "97.3705639" "latitude" "5.191484" "last_login" "1571255373" +HSET "user:1463" "first_name" "Jerrome" "last_name" "Bitten" "email" "jbittencu@etsy.com" "gender" "male" "ip_address" "120.32.4.171" "country" "Honduras" "country_code" "HN" "city" "Jamalteca" "longitude" "-87.578697" "latitude" "14.6965" "last_login" "1592021103" +HSET "user:1464" "first_name" "Allen" "last_name" "Cato" "email" "acatocv@blogger.com" "gender" "male" "ip_address" "35.207.138.127" "country" "Philippines" "country_code" "PH" "city" "Cabaritan East" "longitude" "121.5166702" "latitude" "18.3999996" "last_login" "1577000657" +HSET "user:1465" "first_name" "Helga" "last_name" "Goode" "email" "hgoodecw@clickbank.net" "gender" "female" "ip_address" "59.154.73.227" "country" "Russia" "country_code" "RU" "city" "Kokoshkino" "longitude" "37.1554477" "latitude" "55.5934626" "last_login" "1570696923" +HSET "user:1466" "first_name" "Stormy" "last_name" "Elsmore" "email" "selsmorecx@last.fm" "gender" "female" "ip_address" "149.250.142.95" "country" "China" "country_code" "CN" "city" "Sheshan" "longitude" "121.197458" "latitude" "31.091814" "last_login" "1569647215" +HSET "user:1467" "first_name" "Flore" "last_name" "Lathleiffure" "email" "flathleiffurecy@telegraph.co.uk" "gender" "female" "ip_address" "226.69.84.35" "country" "Brazil" "country_code" "BR" "city" "Mariana" "longitude" "-43.4150073" "latitude" "-20.3652719" "last_login" "1594352823" +HSET "user:1468" "first_name" "Dreddy" "last_name" "MacAlpin" "email" "dmacalpincz@nhs.uk" "gender" "female" "ip_address" "191.9.224.4" "country" "China" "country_code" "CN" "city" "Taihe" "longitude" "114.908872" "latitude" "26.789958" "last_login" "1579248165" +HSET "user:1469" "first_name" "Elwood" "last_name" "Carff" "email" "ecarffd0@zimbio.com" "gender" "male" "ip_address" "141.81.30.75" "country" "Argentina" "country_code" "AR" "city" "Villa Lugano" "longitude" "-58.532397" "latitude" "-34.6884971" "last_login" "1594569820" +HSET "user:1470" "first_name" "Twyla" "last_name" "Matousek" "email" "tmatousekd1@hc360.com" "gender" "female" "ip_address" "7.144.79.219" "country" "Indonesia" "country_code" "ID" "city" "Pondokwungu" "longitude" "106.9833084" "latitude" "-6.2102916" "last_login" "1587443401" +HSET "user:1471" "first_name" "Merrilee" "last_name" "Isakovic" "email" "misakovicd2@prlog.org" "gender" "female" "ip_address" "230.174.228.181" "country" "France" "country_code" "FR" "city" "Roubaix" "longitude" "3.1685214" "latitude" "50.7022235" "last_login" "1590195195" +HSET "user:1472" "first_name" "Dur" "last_name" "Broderick" "email" "dbroderickd3@usgs.gov" "gender" "male" "ip_address" "156.164.153.89" "country" "Peru" "country_code" "PE" "city" "Ollachea" "longitude" "-70.4719705" "latitude" "-13.7947125" "last_login" "1590925965" +HSET "user:1473" "first_name" "Hagen" "last_name" "Sidaway" "email" "hsidawayd4@fda.gov" "gender" "male" "ip_address" "48.110.193.190" "country" "Indonesia" "country_code" "ID" "city" "Gayam" "longitude" "105.6984455" "latitude" "-5.7577862" "last_login" "1588038190" +HSET "user:1474" "first_name" "Tildi" "last_name" "Duran" "email" "tdurand5@printfriendly.com" "gender" "female" "ip_address" "250.176.226.124" "country" "France" "country_code" "FR" "city" "Bezons" "longitude" "2.2159905" "latitude" "44.7535743" "last_login" "1572868395" +HSET "user:1475" "first_name" "Dalton" "last_name" "McKelvey" "email" "dmckelveyd6@dailymotion.com" "gender" "male" "ip_address" "19.27.145.46" "country" "Nigeria" "country_code" "NG" "city" "Misau" "longitude" "10.465234" "latitude" "11.313985" "last_login" "1597041101" +HSET "user:1476" "first_name" "Twila" "last_name" "Frede" "email" "tfreded7@networksolutions.com" "gender" "female" "ip_address" "223.4.12.193" "country" "China" "country_code" "CN" "city" "Tielou" "longitude" "104.466646" "latitude" "32.904916" "last_login" "1593283833" +HSET "user:1477" "first_name" "Arlen" "last_name" "Figge" "email" "afigged8@deliciousdays.com" "gender" "female" "ip_address" "130.78.99.197" "country" "Jordan" "country_code" "JO" "city" "Ḩakamā" "longitude" "35.8695307" "latitude" "32.5816265" "last_login" "1598590417" +HSET "user:1478" "first_name" "Stella" "last_name" "Steely" "email" "ssteelyd9@webs.com" "gender" "female" "ip_address" "28.60.102.43" "country" "Finland" "country_code" "FI" "city" "Broby" "longitude" "24.9883305" "latitude" "60.2705509" "last_login" "1572636018" +HSET "user:1479" "first_name" "Horatius" "last_name" "Galley" "email" "hgalleyda@npr.org" "gender" "male" "ip_address" "57.16.150.47" "country" "Costa Rica" "country_code" "CR" "city" "Bejuco" "longitude" "-85.325961" "latitude" "9.829638" "last_login" "1572350226" +HSET "user:1480" "first_name" "Orland" "last_name" "Sandcraft" "email" "osandcraftdb@deviantart.com" "gender" "male" "ip_address" "129.124.10.199" "country" "Indonesia" "country_code" "ID" "city" "Asamboka" "longitude" "123.0326" "latitude" "-10.7731" "last_login" "1587668742" +HSET "user:1481" "first_name" "Flin" "last_name" "Duplock" "email" "fduplockdc@cam.ac.uk" "gender" "male" "ip_address" "122.20.206.205" "country" "China" "country_code" "CN" "city" "Ganhe" "longitude" "113.4276436" "latitude" "30.3645144" "last_login" "1587698469" +HSET "user:1482" "first_name" "Holly-anne" "last_name" "Muckian" "email" "hmuckiandd@ucla.edu" "gender" "female" "ip_address" "21.11.108.31" "country" "Russia" "country_code" "RU" "city" "Kachkanar" "longitude" "59.4504627" "latitude" "58.7239855" "last_login" "1586672707" +HSET "user:1483" "first_name" "Rafaela" "last_name" "Sahnow" "email" "rsahnowde@miitbeian.gov.cn" "gender" "female" "ip_address" "196.107.211.174" "country" "Philippines" "country_code" "PH" "city" "Katipunan" "longitude" "123.2843256" "latitude" "8.5123871" "last_login" "1587972273" +HSET "user:1484" "first_name" "Christos" "last_name" "Mantz" "email" "cmantzdf@shutterfly.com" "gender" "male" "ip_address" "88.209.193.112" "country" "Poland" "country_code" "PL" "city" "Rogóźno" "longitude" "18.9455238" "latitude" "53.5484541" "last_login" "1572101829" +HSET "user:1485" "first_name" "Garry" "last_name" "Wissbey" "email" "gwissbeydg@discovery.com" "gender" "male" "ip_address" "252.100.241.49" "country" "Brazil" "country_code" "BR" "city" "Cururupu" "longitude" "-44.813111" "latitude" "-1.8867371" "last_login" "1587377851" +HSET "user:1486" "first_name" "Madelin" "last_name" "Lorie" "email" "mloriedh@blogtalkradio.com" "gender" "female" "ip_address" "49.77.149.169" "country" "Brazil" "country_code" "BR" "city" "Pindamonhangaba" "longitude" "-45.4874873" "latitude" "-22.8450713" "last_login" "1594453569" +HSET "user:1487" "first_name" "Clarinda" "last_name" "Josebury" "email" "cjoseburydi@ning.com" "gender" "female" "ip_address" "237.105.212.98" "country" "Indonesia" "country_code" "ID" "city" "Kalembutillu" "longitude" "119.2472527" "latitude" "-9.563558" "last_login" "1576740181" +HSET "user:1488" "first_name" "Jenny" "last_name" "Tiltman" "email" "jtiltmandj@java.com" "gender" "female" "ip_address" "137.60.219.51" "country" "China" "country_code" "CN" "city" "Jinrui" "longitude" "108.9652643" "latitude" "34.2412845" "last_login" "1571436548" +HSET "user:1489" "first_name" "Rubi" "last_name" "Brisley" "email" "rbrisleydk@oaic.gov.au" "gender" "female" "ip_address" "123.96.206.155" "country" "Indonesia" "country_code" "ID" "city" "Babakan Baru" "longitude" "102.4552546" "latitude" "-3.3343297" "last_login" "1581046142" +HSET "user:1490" "first_name" "Clementina" "last_name" "Graveston" "email" "cgravestondl@unesco.org" "gender" "female" "ip_address" "88.226.79.174" "country" "Ukraine" "country_code" "UA" "city" "Mizoch" "longitude" "26.141892" "latitude" "50.4034992" "last_login" "1573309735" +HSET "user:1491" "first_name" "Gusty" "last_name" "Killock" "email" "gkillockdm@fotki.com" "gender" "female" "ip_address" "2.102.144.229" "country" "Russia" "country_code" "RU" "city" "Strunino" "longitude" "38.5829669" "latitude" "56.3690033" "last_login" "1577185653" +HSET "user:1492" "first_name" "Silas" "last_name" "MacAskill" "email" "smacaskilldn@sphinn.com" "gender" "male" "ip_address" "45.59.144.226" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.4764129" "latitude" "59.3754793" "last_login" "1599211927" +HSET "user:1493" "first_name" "Nev" "last_name" "Nend" "email" "nnenddo@nydailynews.com" "gender" "male" "ip_address" "33.226.112.176" "country" "China" "country_code" "CN" "city" "Taoyuan" "longitude" "121.3009798" "latitude" "24.9936281" "last_login" "1600268546" +HSET "user:1494" "first_name" "Katusha" "last_name" "Brilon" "email" "kbrilondp@taobao.com" "gender" "female" "ip_address" "254.33.214.108" "country" "Albania" "country_code" "AL" "city" "Lezhë" "longitude" "19.6460758" "latitude" "41.786073" "last_login" "1592666055" +HSET "user:1495" "first_name" "Mignonne" "last_name" "Pidler" "email" "mpidlerdq@drupal.org" "gender" "female" "ip_address" "237.255.96.177" "country" "Belarus" "country_code" "BY" "city" "Klimavichy" "longitude" "31.9594674" "latitude" "53.6091856" "last_login" "1575475473" +HSET "user:1496" "first_name" "Ulberto" "last_name" "Dodsley" "email" "udodsleydr@acquirethisname.com" "gender" "male" "ip_address" "11.216.10.229" "country" "Czech Republic" "country_code" "CZ" "city" "Jaroměř" "longitude" "15.9014886" "latitude" "50.3473476" "last_login" "1574335143" +HSET "user:1497" "first_name" "Kiri" "last_name" "Chape" "email" "kchapeds@bing.com" "gender" "female" "ip_address" "71.242.235.7" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.6108186" "latitude" "59.6833779" "last_login" "1584738170" +HSET "user:1498" "first_name" "Barty" "last_name" "Dell Casa" "email" "bdellcasadt@theatlantic.com" "gender" "male" "ip_address" "162.111.193.24" "country" "China" "country_code" "CN" "city" "Huyuan" "longitude" "109.482078" "latitude" "28.572029" "last_login" "1589980359" +HSET "user:1499" "first_name" "Ranique" "last_name" "Strawbridge" "email" "rstrawbridgedu@instagram.com" "gender" "female" "ip_address" "89.152.22.8" "country" "Colombia" "country_code" "CO" "city" "San Francisco" "longitude" "-74.291386" "latitude" "4.974252" "last_login" "1596694117" +HSET "user:1500" "first_name" "Fletch" "last_name" "Farquharson" "email" "ffarquharsondv@marriott.com" "gender" "male" "ip_address" "90.194.230.5" "country" "France" "country_code" "FR" "city" "Saint-Nazaire" "longitude" "-2.204647" "latitude" "47.273289" "last_login" "1582877858" +HSET "user:1501" "first_name" "Mavis" "last_name" "Rimmington" "email" "mrimmingtondw@tripod.com" "gender" "female" "ip_address" "60.14.190.241" "country" "China" "country_code" "CN" "city" "Hengli" "longitude" "121.022581" "latitude" "31.627447" "last_login" "1572063271" +HSET "user:1502" "first_name" "Rochette" "last_name" "Innot" "email" "rinnotdx@mapy.cz" "gender" "female" "ip_address" "191.165.59.88" "country" "Kenya" "country_code" "KE" "city" "Voi" "longitude" "38.5559336" "latitude" "-3.3973104" "last_login" "1571243260" +HSET "user:1503" "first_name" "Thatch" "last_name" "Gilloran" "email" "tgillorandy@thetimes.co.uk" "gender" "male" "ip_address" "114.221.78.176" "country" "Suriname" "country_code" "SR" "city" "Paramaribo" "longitude" "-55.2038278" "latitude" "5.8520355" "last_login" "1578281620" +HSET "user:1504" "first_name" "Arlene" "last_name" "Cordeau]" "email" "acordeaudz@naver.com" "gender" "female" "ip_address" "122.49.224.133" "country" "Portugal" "country_code" "PT" "city" "Lameira" "longitude" "-8.0224709" "latitude" "40.356194" "last_login" "1576844016" +HSET "user:1505" "first_name" "Baudoin" "last_name" "Ailward" "email" "bailwarde0@addthis.com" "gender" "male" "ip_address" "109.157.4.143" "country" "Netherlands" "country_code" "NL" "city" "'s-Hertogenbosch" "longitude" "5.2583334" "latitude" "51.6991519" "last_login" "1594563119" +HSET "user:1506" "first_name" "Carly" "last_name" "Fitzsymon" "email" "cfitzsymone1@t-online.de" "gender" "male" "ip_address" "5.93.111.17" "country" "Russia" "country_code" "RU" "city" "Dukhovshchina" "longitude" "32.4000893" "latitude" "55.1952113" "last_login" "1584721699" +HSET "user:1507" "first_name" "Mame" "last_name" "Shacklady" "email" "mshackladye2@netvibes.com" "gender" "female" "ip_address" "6.28.205.209" "country" "Pakistan" "country_code" "PK" "city" "Doāba" "longitude" "70.6960868" "latitude" "33.5068235" "last_login" "1589903175" +HSET "user:1508" "first_name" "Peggi" "last_name" "Childerhouse" "email" "pchilderhousee3@t-online.de" "gender" "female" "ip_address" "251.61.188.20" "country" "Indonesia" "country_code" "ID" "city" "Idalolong" "longitude" "123.3227" "latitude" "-8.5298" "last_login" "1593396699" +HSET "user:1509" "first_name" "Findley" "last_name" "Maciaszczyk" "email" "fmaciaszczyke4@economist.com" "gender" "male" "ip_address" "80.161.8.215" "country" "Peru" "country_code" "PE" "city" "Huancapallac" "longitude" "-75.783333" "latitude" "-9.916667" "last_login" "1575977038" +HSET "user:1510" "first_name" "Lyell" "last_name" "Blagdon" "email" "lblagdone5@deviantart.com" "gender" "male" "ip_address" "163.215.192.198" "country" "Poland" "country_code" "PL" "city" "Czerniewice" "longitude" "20.1795118" "latitude" "51.6711341" "last_login" "1579130784" +HSET "user:1511" "first_name" "Lamond" "last_name" "Chadbourn" "email" "lchadbourne6@joomla.org" "gender" "male" "ip_address" "157.81.128.153" "country" "Philippines" "country_code" "PH" "city" "Bayuin" "longitude" "121.411664" "latitude" "13.059287" "last_login" "1598761409" +HSET "user:1512" "first_name" "Amii" "last_name" "Marklow" "email" "amarklowe7@marketwatch.com" "gender" "female" "ip_address" "141.219.33.112" "country" "Philippines" "country_code" "PH" "city" "Pulupandan" "longitude" "122.813931" "latitude" "10.527138" "last_login" "1571379422" +HSET "user:1513" "first_name" "Jamie" "last_name" "Markovich" "email" "jmarkoviche8@usnews.com" "gender" "female" "ip_address" "226.189.201.160" "country" "Greece" "country_code" "GR" "city" "Mýki" "longitude" "24.9516869" "latitude" "41.2614535" "last_login" "1593213510" +HSET "user:1514" "first_name" "Feliza" "last_name" "Pauly" "email" "fpaulye9@hud.gov" "gender" "female" "ip_address" "142.192.32.146" "country" "Indonesia" "country_code" "ID" "city" "Canggetelo" "longitude" "113.8825" "latitude" "-6.9072" "last_login" "1576186000" +HSET "user:1515" "first_name" "Pail" "last_name" "Gunter" "email" "pgunterea@house.gov" "gender" "male" "ip_address" "222.211.149.230" "country" "Greece" "country_code" "GR" "city" "Zevgolateió" "longitude" "22.8008984" "latitude" "37.9375856" "last_login" "1571916351" +HSET "user:1516" "first_name" "Aubrey" "last_name" "Bembrigg" "email" "abembriggeb@umn.edu" "gender" "male" "ip_address" "242.97.114.134" "country" "Italy" "country_code" "IT" "city" "Genova" "longitude" "8.9266041" "latitude" "44.4248175" "last_login" "1588090784" +HSET "user:1517" "first_name" "Pryce" "last_name" "Abthorpe" "email" "pabthorpeec@telegraph.co.uk" "gender" "male" "ip_address" "95.223.175.193" "country" "Indonesia" "country_code" "ID" "city" "Oja" "longitude" "106.8806295" "latitude" "-6.1126806" "last_login" "1596383643" +HSET "user:1518" "first_name" "Doralynne" "last_name" "Warland" "email" "dwarlanded@hubpages.com" "gender" "female" "ip_address" "215.179.214.118" "country" "French Polynesia" "country_code" "PF" "city" "Vaitape" "longitude" "-151.7495305" "latitude" "-16.5062723" "last_login" "1597369754" +HSET "user:1519" "first_name" "Uri" "last_name" "Welland" "email" "uwellandee@youku.com" "gender" "male" "ip_address" "23.50.40.112" "country" "Bermuda" "country_code" "BM" "city" "Hamilton" "longitude" "-64.7858887" "latitude" "32.2945837" "last_login" "1587352481" +HSET "user:1520" "first_name" "Nickie" "last_name" "Booth" "email" "nboothef@cnet.com" "gender" "male" "ip_address" "33.188.222.104" "country" "France" "country_code" "FR" "city" "Avignon" "longitude" "4.3686291" "latitude" "43.8317876" "last_login" "1594498272" +HSET "user:1521" "first_name" "Grant" "last_name" "Zmitrichenko" "email" "gzmitrichenkoeg@netvibes.com" "gender" "male" "ip_address" "21.197.232.133" "country" "Norway" "country_code" "NO" "city" "Kongsvinger" "longitude" "11.9986691" "latitude" "60.192443" "last_login" "1597422216" +HSET "user:1522" "first_name" "Port" "last_name" "Pes" "email" "ppeseh@fc2.com" "gender" "male" "ip_address" "231.33.174.68" "country" "Ivory Coast" "country_code" "CI" "city" "Dimbokro" "longitude" "-4.7122337" "latitude" "6.6574752" "last_login" "1593796656" +HSET "user:1523" "first_name" "Artie" "last_name" "Aburrow" "email" "aaburrowei@google.pl" "gender" "male" "ip_address" "202.160.26.203" "country" "Indonesia" "country_code" "ID" "city" "Semamung" "longitude" "117.4145232" "latitude" "-8.6438821" "last_login" "1586892902" +HSET "user:1524" "first_name" "Anet" "last_name" "Lackner" "email" "alacknerej@histats.com" "gender" "female" "ip_address" "171.212.75.7" "country" "Indonesia" "country_code" "ID" "city" "Glugur Krajan" "longitude" "114.0461" "latitude" "-7.6476" "last_login" "1581822087" +HSET "user:1525" "first_name" "Spike" "last_name" "Jankovsky" "email" "sjankovskyek@example.com" "gender" "male" "ip_address" "34.87.141.41" "country" "Indonesia" "country_code" "ID" "city" "Kalebun" "longitude" "113.9250575" "latitude" "-7.0408631" "last_login" "1573096287" +HSET "user:1526" "first_name" "Ruby" "last_name" "Truscott" "email" "rtruscottel@yahoo.com" "gender" "male" "ip_address" "108.170.153.217" "country" "Philippines" "country_code" "PH" "city" "Masarayao" "longitude" "124.6005108" "latitude" "11.1300808" "last_login" "1568737953" +HSET "user:1527" "first_name" "Orelle" "last_name" "Nutton" "email" "onuttonem@rediff.com" "gender" "female" "ip_address" "242.126.90.98" "country" "Honduras" "country_code" "HN" "city" "El Tablón" "longitude" "-87.6953979" "latitude" "13.7178702" "last_login" "1569051527" +HSET "user:1528" "first_name" "Marshal" "last_name" "Lelliott" "email" "mlelliotten@about.com" "gender" "male" "ip_address" "141.125.53.142" "country" "Russia" "country_code" "RU" "city" "Muslyumovo" "longitude" "61.6171856" "latitude" "55.5939065" "last_login" "1587343475" +HSET "user:1529" "first_name" "Carmel" "last_name" "Loosely" "email" "clooselyeo@google.pl" "gender" "female" "ip_address" "124.34.7.210" "country" "Costa Rica" "country_code" "CR" "city" "Chacarita" "longitude" "-84.762933" "latitude" "9.97788" "last_login" "1577349580" +HSET "user:1530" "first_name" "Bertie" "last_name" "Izon" "email" "bizonep@digg.com" "gender" "female" "ip_address" "159.39.225.198" "country" "Russia" "country_code" "RU" "city" "Orlovo" "longitude" "39.559439" "latitude" "51.789985" "last_login" "1577671092" +HSET "user:1531" "first_name" "Joelie" "last_name" "Hudleston" "email" "jhudlestoneq@stanford.edu" "gender" "female" "ip_address" "0.218.210.176" "country" "China" "country_code" "CN" "city" "Lisui" "longitude" "119.922796" "latitude" "28.46763" "last_login" "1589688878" +HSET "user:1532" "first_name" "Georgeta" "last_name" "Jimeno" "email" "gjimenoer@parallels.com" "gender" "female" "ip_address" "55.3.204.126" "country" "Indonesia" "country_code" "ID" "city" "Ngrambitan" "longitude" "111.305369" "latitude" "-6.9627021" "last_login" "1591766283" +HSET "user:1533" "first_name" "Barbey" "last_name" "Tonkin" "email" "btonkines@reverbnation.com" "gender" "female" "ip_address" "228.51.146.47" "country" "Egypt" "country_code" "EG" "city" "Al Fashn" "longitude" "30.8991338" "latitude" "28.8228403" "last_login" "1596248157" +HSET "user:1534" "first_name" "Isa" "last_name" "Anslow" "email" "ianslowet@blinklist.com" "gender" "male" "ip_address" "228.109.186.100" "country" "Russia" "country_code" "RU" "city" "Talitsa" "longitude" "60.0156754" "latitude" "56.8810476" "last_login" "1592465792" +HSET "user:1535" "first_name" "Faun" "last_name" "Gautrey" "email" "fgautreyeu@europa.eu" "gender" "female" "ip_address" "49.117.244.217" "country" "China" "country_code" "CN" "city" "Zangbawa" "longitude" "103.8617" "latitude" "34.87725" "last_login" "1576570111" +HSET "user:1536" "first_name" "Antonia" "last_name" "Vowells" "email" "avowellsev@baidu.com" "gender" "female" "ip_address" "10.199.240.95" "country" "Indonesia" "country_code" "ID" "city" "Waitenepang" "longitude" "123.1119371" "latitude" "-8.2717886" "last_login" "1579413082" +HSET "user:1537" "first_name" "Devina" "last_name" "Zorzi" "email" "dzorziew@soup.io" "gender" "female" "ip_address" "89.157.190.63" "country" "Hungary" "country_code" "HU" "city" "Szeged" "longitude" "21.66245" "latitude" "47.4936583" "last_login" "1583722621" +HSET "user:1538" "first_name" "Annabal" "last_name" "Whitehouse" "email" "awhitehouseex@ning.com" "gender" "female" "ip_address" "72.76.74.158" "country" "Thailand" "country_code" "TH" "city" "Fak Tha" "longitude" "100.9128995" "latitude" "18.0461423" "last_login" "1588751876" +HSET "user:1539" "first_name" "Lise" "last_name" "Paike" "email" "lpaikeey@histats.com" "gender" "female" "ip_address" "78.121.40.119" "country" "Brazil" "country_code" "BR" "city" "Brasília de Minas" "longitude" "-44.4370606" "latitude" "-16.2382608" "last_login" "1599674750" +HSET "user:1540" "first_name" "Kellie" "last_name" "Lismer" "email" "klismerez@cnet.com" "gender" "female" "ip_address" "82.108.167.175" "country" "Ukraine" "country_code" "UA" "city" "Berezanka" "longitude" "31.3849652" "latitude" "46.8584087" "last_login" "1589088333" +HSET "user:1541" "first_name" "Ora" "last_name" "Belle" "email" "obellef0@sohu.com" "gender" "female" "ip_address" "209.151.40.209" "country" "Indonesia" "country_code" "ID" "city" "Tamanan" "longitude" "110.3859913" "latitude" "-7.8426533" "last_login" "1573974776" +HSET "user:1542" "first_name" "Bendicty" "last_name" "Claworth" "email" "bclaworthf1@cornell.edu" "gender" "male" "ip_address" "68.193.109.93" "country" "Indonesia" "country_code" "ID" "city" "Ketitang Wetan" "longitude" "111.1920959" "latitude" "-6.7157242" "last_login" "1599224263" +HSET "user:1543" "first_name" "Johnna" "last_name" "Arter" "email" "jarterf2@bloglovin.com" "gender" "female" "ip_address" "57.181.43.59" "country" "China" "country_code" "CN" "city" "Tuodian" "longitude" "102.61616" "latitude" "24.210761" "last_login" "1597008648" +HSET "user:1544" "first_name" "Gillian" "last_name" "Rabidge" "email" "grabidgef3@canalblog.com" "gender" "female" "ip_address" "38.6.116.205" "country" "Dominican Republic" "country_code" "DO" "city" "Las Matas de Farfán" "longitude" "-71.5036905" "latitude" "18.8782625" "last_login" "1585309804" +HSET "user:1545" "first_name" "Cathee" "last_name" "Fenemore" "email" "cfenemoref4@alibaba.com" "gender" "female" "ip_address" "95.123.230.84" "country" "Greece" "country_code" "GR" "city" "Vlycháda" "longitude" "25.4333251" "latitude" "36.3384589" "last_login" "1573817320" +HSET "user:1546" "first_name" "Ransell" "last_name" "Rolling" "email" "rrollingf5@comsenz.com" "gender" "male" "ip_address" "143.11.149.92" "country" "United Kingdom" "country_code" "GB" "city" "Newport" "longitude" "1.6993747" "latitude" "52.6915552" "last_login" "1593819730" +HSET "user:1547" "first_name" "Neel" "last_name" "Toffoletto" "email" "ntoffolettof6@vistaprint.com" "gender" "male" "ip_address" "160.208.231.111" "country" "Brazil" "country_code" "BR" "city" "Corumbá" "longitude" "-57.6515503" "latitude" "-19.0081688" "last_login" "1580029660" +HSET "user:1548" "first_name" "Jorgan" "last_name" "Blunsum" "email" "jblunsumf7@imgur.com" "gender" "male" "ip_address" "63.246.182.219" "country" "China" "country_code" "CN" "city" "Jiucaigou" "longitude" "101.196484" "latitude" "36.730406" "last_login" "1597669460" +HSET "user:1549" "first_name" "Cyrill" "last_name" "Subhan" "email" "csubhanf8@vimeo.com" "gender" "male" "ip_address" "76.214.26.224" "country" "China" "country_code" "CN" "city" "Lijiapu" "longitude" "111.926694" "latitude" "29.49574" "last_login" "1593870333" +HSET "user:1550" "first_name" "Janetta" "last_name" "Tremmil" "email" "jtremmilf9@umich.edu" "gender" "female" "ip_address" "129.119.216.144" "country" "Russia" "country_code" "RU" "city" "Povenets" "longitude" "34.82621" "latitude" "62.8487" "last_login" "1591668438" +HSET "user:1551" "first_name" "Derrik" "last_name" "Yeude" "email" "dyeudefa@ucla.edu" "gender" "male" "ip_address" "237.143.5.14" "country" "Canada" "country_code" "CA" "city" "Dauphin" "longitude" "-100.0497004" "latitude" "51.1500374" "last_login" "1581274944" +HSET "user:1552" "first_name" "Gerick" "last_name" "McShee" "email" "gmcsheefb@1688.com" "gender" "male" "ip_address" "222.116.2.57" "country" "China" "country_code" "CN" "city" "Erfangping" "longitude" "111.189296" "latitude" "29.289085" "last_login" "1568952201" +HSET "user:1553" "first_name" "Kermie" "last_name" "Beaconsall" "email" "kbeaconsallfc@nbcnews.com" "gender" "male" "ip_address" "186.149.254.156" "country" "Egypt" "country_code" "EG" "city" "Al Maţarīyah" "longitude" "31.3181252" "latitude" "30.1253988" "last_login" "1575318752" +HSET "user:1554" "first_name" "Olin" "last_name" "Gonthard" "email" "ogonthardfd@irs.gov" "gender" "male" "ip_address" "9.183.245.15" "country" "Indonesia" "country_code" "ID" "city" "Candi" "longitude" "112.7330892" "latitude" "-7.4842287" "last_login" "1571333801" +HSET "user:1555" "first_name" "Gauthier" "last_name" "Banville" "email" "gbanvillefe@wikispaces.com" "gender" "male" "ip_address" "30.218.187.166" "country" "Niger" "country_code" "NE" "city" "Nguigmi" "longitude" "13.1134915" "latitude" "14.2553505" "last_login" "1582073738" +HSET "user:1556" "first_name" "Waring" "last_name" "Labern" "email" "wlabernff@networkadvertising.org" "gender" "male" "ip_address" "113.223.176.198" "country" "Russia" "country_code" "RU" "city" "Kaz" "longitude" "87.546299" "latitude" "53.109084" "last_login" "1597403240" +HSET "user:1557" "first_name" "Sophey" "last_name" "MacShirie" "email" "smacshiriefg@dell.com" "gender" "female" "ip_address" "121.243.198.110" "country" "China" "country_code" "CN" "city" "Guanban" "longitude" "119.677154" "latitude" "26.308284" "last_login" "1593150160" +HSET "user:1558" "first_name" "Erroll" "last_name" "Ingerith" "email" "eingerithfh@php.net" "gender" "male" "ip_address" "38.197.248.25" "country" "Tunisia" "country_code" "TN" "city" "Douane" "longitude" "10.184999" "latitude" "36.795091" "last_login" "1599699065" +HSET "user:1559" "first_name" "Kaylyn" "last_name" "Polland" "email" "kpollandfi@ehow.com" "gender" "female" "ip_address" "96.38.79.140" "country" "China" "country_code" "CN" "city" "Gyangkar" "longitude" "87.771182" "latitude" "28.363741" "last_login" "1597896363" +HSET "user:1560" "first_name" "Hallsy" "last_name" "Gradwell" "email" "hgradwellfj@123-reg.co.uk" "gender" "male" "ip_address" "47.1.230.210" "country" "Poland" "country_code" "PL" "city" "Baćkowice" "longitude" "21.2322042" "latitude" "50.7917257" "last_login" "1576472432" +HSET "user:1561" "first_name" "Kerry" "last_name" "Abramof" "email" "kabramoffk@taobao.com" "gender" "female" "ip_address" "161.189.188.135" "country" "China" "country_code" "CN" "city" "Qufu" "longitude" "116.986503" "latitude" "35.580996" "last_login" "1575098038" +HSET "user:1562" "first_name" "Theresina" "last_name" "Walne" "email" "twalnefl@cafepress.com" "gender" "female" "ip_address" "235.23.84.80" "country" "Madagascar" "country_code" "MG" "city" "Maevatanana" "longitude" "46.8325494" "latitude" "-16.9483408" "last_login" "1595380767" +HSET "user:1563" "first_name" "Herbie" "last_name" "D'Almeida" "email" "hdalmeidafm@csmonitor.com" "gender" "male" "ip_address" "207.116.61.251" "country" "China" "country_code" "CN" "city" "Chuzhou" "longitude" "118.328321" "latitude" "32.253425" "last_login" "1580876087" +HSET "user:1564" "first_name" "Gris" "last_name" "Wynes" "email" "gwynesfn@reference.com" "gender" "male" "ip_address" "13.31.243.127" "country" "Canada" "country_code" "CA" "city" "Windsor" "longitude" "-72.001055" "latitude" "45.5787215" "last_login" "1573294586" +HSET "user:1565" "first_name" "Meredith" "last_name" "Fulloway" "email" "mfullowayfo@delicious.com" "gender" "male" "ip_address" "105.190.212.112" "country" "Mexico" "country_code" "MX" "city" "Las Flores" "longitude" "-106.3830904" "latitude" "23.2675871" "last_login" "1599707028" +HSET "user:1566" "first_name" "Ossie" "last_name" "Reimer" "email" "oreimerfp@tumblr.com" "gender" "male" "ip_address" "41.177.40.100" "country" "France" "country_code" "FR" "city" "Toulouse" "longitude" "-3.2602564" "latitude" "47.785421" "last_login" "1586493213" +HSET "user:1567" "first_name" "Gerry" "last_name" "Lisciandri" "email" "glisciandrifq@indiatimes.com" "gender" "female" "ip_address" "103.61.69.178" "country" "Ukraine" "country_code" "UA" "city" "Spas’ke" "longitude" "32.6130851" "latitude" "51.5542766" "last_login" "1584219325" +HSET "user:1568" "first_name" "Andreas" "last_name" "Spratt" "email" "asprattfr@epa.gov" "gender" "male" "ip_address" "206.210.233.101" "country" "Philippines" "country_code" "PH" "city" "Lianga" "longitude" "126.0932341" "latitude" "8.6317541" "last_login" "1574870521" +HSET "user:1569" "first_name" "Kris" "last_name" "Manicom" "email" "kmanicomfs@infoseek.co.jp" "gender" "female" "ip_address" "234.153.248.16" "country" "Egypt" "country_code" "EG" "city" "Abū Sunbul" "longitude" "31.602771" "latitude" "22.3744371" "last_login" "1576355905" +HSET "user:1570" "first_name" "Kania" "last_name" "Lux" "email" "kluxft@china.com.cn" "gender" "female" "ip_address" "38.205.111.9" "country" "Afghanistan" "country_code" "AF" "city" "Āqchah" "longitude" "66.1831701" "latitude" "36.9014978" "last_login" "1586823286" +HSET "user:1571" "first_name" "Roxie" "last_name" "Gray" "email" "rgrayfu@networkadvertising.org" "gender" "female" "ip_address" "19.114.205.53" "country" "China" "country_code" "CN" "city" "Potou" "longitude" "110.455332" "latitude" "21.244721" "last_login" "1585859672" +HSET "user:1572" "first_name" "Rodolphe" "last_name" "Petican" "email" "rpeticanfv@japanpost.jp" "gender" "male" "ip_address" "28.221.134.155" "country" "Russia" "country_code" "RU" "city" "Tashanta" "longitude" "89.1933899" "latitude" "49.7171317" "last_login" "1593157952" +HSET "user:1573" "first_name" "Bette-ann" "last_name" "Geater" "email" "bgeaterfw@google.com.br" "gender" "female" "ip_address" "148.100.208.52" "country" "Thailand" "country_code" "TH" "city" "Ratchathewi" "longitude" "100.5340482" "latitude" "13.7544241" "last_login" "1590410169" +HSET "user:1574" "first_name" "Barrie" "last_name" "Stiegers" "email" "bstiegersfx@europa.eu" "gender" "male" "ip_address" "26.62.218.185" "country" "Portugal" "country_code" "PT" "city" "Alvega" "longitude" "-8.0455725" "latitude" "39.4680636" "last_login" "1598935664" +HSET "user:1575" "first_name" "Katie" "last_name" "Fouldes" "email" "kfouldesfy@ed.gov" "gender" "female" "ip_address" "81.153.247.102" "country" "Russia" "country_code" "RU" "city" "Starominskaya" "longitude" "39.0405159" "latitude" "46.5333073" "last_login" "1583895581" +HSET "user:1576" "first_name" "Auguste" "last_name" "Relfe" "email" "arelfefz@tamu.edu" "gender" "female" "ip_address" "116.141.9.64" "country" "Russia" "country_code" "RU" "city" "Divnoye" "longitude" "43.3478599" "latitude" "45.8697083" "last_login" "1583966461" +HSET "user:1577" "first_name" "Roddy" "last_name" "Winch" "email" "rwinchg0@msn.com" "gender" "male" "ip_address" "170.126.78.210" "country" "Japan" "country_code" "JP" "city" "Ibaraki" "longitude" "135.1445719" "latitude" "33.9242163" "last_login" "1599531312" +HSET "user:1578" "first_name" "Gaye" "last_name" "Fashion" "email" "gfashiong1@virginia.edu" "gender" "female" "ip_address" "219.213.53.99" "country" "Netherlands" "country_code" "NL" "city" "Rotterdam postbusnummers" "longitude" "4.5059" "latitude" "51.8796" "last_login" "1586240439" +HSET "user:1579" "first_name" "Alexandra" "last_name" "Buttriss" "email" "abuttrissg2@diigo.com" "gender" "female" "ip_address" "243.35.79.175" "country" "Ukraine" "country_code" "UA" "city" "Nizhyn" "longitude" "31.8880994" "latitude" "51.0377956" "last_login" "1572903459" +HSET "user:1580" "first_name" "Kellen" "last_name" "Kopelman" "email" "kkopelmang3@cnbc.com" "gender" "male" "ip_address" "192.83.23.239" "country" "Indonesia" "country_code" "ID" "city" "Pondokwungu" "longitude" "106.9833084" "latitude" "-6.2102916" "last_login" "1587538405" +HSET "user:1581" "first_name" "Almeda" "last_name" "Darthe" "email" "adartheg4@census.gov" "gender" "female" "ip_address" "4.183.140.77" "country" "China" "country_code" "CN" "city" "Changxuanling" "longitude" "114.3515079" "latitude" "31.1032736" "last_login" "1579960315" +HSET "user:1582" "first_name" "Melina" "last_name" "Copnar" "email" "mcopnarg5@mit.edu" "gender" "female" "ip_address" "151.100.180.27" "country" "Russia" "country_code" "RU" "city" "Malysheva" "longitude" "61.3976419" "latitude" "57.1101387" "last_login" "1570579868" +HSET "user:1583" "first_name" "Babara" "last_name" "Sweetsur" "email" "bsweetsurg6@cafepress.com" "gender" "female" "ip_address" "44.124.84.63" "country" "Czech Republic" "country_code" "CZ" "city" "Opatovice nad Labem" "longitude" "15.7904531" "latitude" "50.1454119" "last_login" "1573259830" +HSET "user:1584" "first_name" "Hanan" "last_name" "Gellett" "email" "hgellettg7@wikia.com" "gender" "male" "ip_address" "183.73.167.145" "country" "Bangladesh" "country_code" "BD" "city" "Habiganj" "longitude" "91.4506565" "latitude" "24.4771236" "last_login" "1576589233" +HSET "user:1585" "first_name" "Junie" "last_name" "Rainy" "email" "jrainyg8@icq.com" "gender" "female" "ip_address" "133.127.20.201" "country" "Indonesia" "country_code" "ID" "city" "Karuk" "longitude" "107.4006862" "latitude" "-6.2845079" "last_login" "1598685408" +HSET "user:1586" "first_name" "Edgardo" "last_name" "Jahncke" "email" "ejahnckeg9@nyu.edu" "gender" "male" "ip_address" "61.93.26.198" "country" "Portugal" "country_code" "PT" "city" "Fontinha" "longitude" "-8.6326289" "latitude" "40.3809227" "last_login" "1589663800" +HSET "user:1587" "first_name" "Brittan" "last_name" "Roxburch" "email" "broxburchga@imageshack.us" "gender" "female" "ip_address" "122.105.149.112" "country" "Brazil" "country_code" "BR" "city" "Joinville" "longitude" "-48.8463832" "latitude" "-26.3044084" "last_login" "1587588985" +HSET "user:1588" "first_name" "Zacherie" "last_name" "Hiddersley" "email" "zhiddersleygb@stumbleupon.com" "gender" "male" "ip_address" "255.23.115.122" "country" "Philippines" "country_code" "PH" "city" "Santo Tomas" "longitude" "125.6239227" "latitude" "7.5273576" "last_login" "1571478291" +HSET "user:1589" "first_name" "Silvano" "last_name" "Patterson" "email" "spattersongc@gravatar.com" "gender" "male" "ip_address" "141.73.99.88" "country" "Japan" "country_code" "JP" "city" "Kurume" "longitude" "140.3460747" "latitude" "37.3785618" "last_login" "1595712869" +HSET "user:1590" "first_name" "Beilul" "last_name" "Hanbidge" "email" "bhanbidgegd@gravatar.com" "gender" "female" "ip_address" "35.127.221.53" "country" "Indonesia" "country_code" "ID" "city" "Sukamulya" "longitude" "106.4288088" "latitude" "-6.1583904" "last_login" "1591964823" +HSET "user:1591" "first_name" "Scot" "last_name" "Furzer" "email" "sfurzerge@deviantart.com" "gender" "male" "ip_address" "198.75.242.121" "country" "Indonesia" "country_code" "ID" "city" "Krajan Nglinggis" "longitude" "111.6023" "latitude" "-8.0402" "last_login" "1596725422" +HSET "user:1592" "first_name" "Roger" "last_name" "Abrahart" "email" "rabrahartgf@youku.com" "gender" "male" "ip_address" "225.113.197.196" "country" "Chile" "country_code" "CL" "city" "Cañete" "longitude" "-73.3919739" "latitude" "-37.8058201" "last_login" "1598920131" +HSET "user:1593" "first_name" "Fidelity" "last_name" "Jaques" "email" "fjaquesgg@elegantthemes.com" "gender" "female" "ip_address" "216.144.10.33" "country" "France" "country_code" "FR" "city" "Niort" "longitude" "-0.4546217" "latitude" "46.3194856" "last_login" "1587348170" +HSET "user:1594" "first_name" "Stanleigh" "last_name" "Mayze" "email" "smayzegh@businessinsider.com" "gender" "male" "ip_address" "68.132.28.226" "country" "China" "country_code" "CN" "city" "Jintan" "longitude" "119.597896" "latitude" "31.723247" "last_login" "1570332055" +HSET "user:1595" "first_name" "Lodovico" "last_name" "Bebis" "email" "lbebisgi@paypal.com" "gender" "male" "ip_address" "137.177.198.197" "country" "Poland" "country_code" "PL" "city" "Godziszów Pierwszy" "longitude" "22.474721" "latitude" "50.764362" "last_login" "1599376094" +HSET "user:1596" "first_name" "Cynthia" "last_name" "Sherrock" "email" "csherrockgj@smugmug.com" "gender" "female" "ip_address" "182.195.103.48" "country" "Russia" "country_code" "RU" "city" "Nikol’sk" "longitude" "44.9318159" "latitude" "60.0209443" "last_login" "1570543006" +HSET "user:1597" "first_name" "Gene" "last_name" "Artharg" "email" "gartharggk@drupal.org" "gender" "female" "ip_address" "253.206.57.134" "country" "China" "country_code" "CN" "city" "Hebian" "longitude" "115.102495" "latitude" "26.87365" "last_login" "1575555692" +HSET "user:1598" "first_name" "Carma" "last_name" "Tumioto" "email" "ctumiotogl@jimdo.com" "gender" "female" "ip_address" "110.162.174.143" "country" "France" "country_code" "FR" "city" "Villejuif" "longitude" "2.368326" "latitude" "48.7823921" "last_login" "1587049236" +HSET "user:1599" "first_name" "Anderson" "last_name" "Dincey" "email" "adinceygm@hhs.gov" "gender" "male" "ip_address" "251.72.61.35" "country" "Philippines" "country_code" "PH" "city" "Songculan" "longitude" "123.8536209" "latitude" "9.6365101" "last_login" "1579669142" +HSET "user:1600" "first_name" "Corenda" "last_name" "Misselbrook" "email" "cmisselbrookgn@photobucket.com" "gender" "female" "ip_address" "101.110.209.230" "country" "Indonesia" "country_code" "ID" "city" "Mautapaga Bawah" "longitude" "121.6718" "latitude" "-8.845" "last_login" "1583304995" +HSET "user:1601" "first_name" "Daryn" "last_name" "Illwell" "email" "dillwellgo@homestead.com" "gender" "female" "ip_address" "141.185.85.233" "country" "Egypt" "country_code" "EG" "city" "Al Ibrāhīmīyah" "longitude" "31.56241" "latitude" "30.71509" "last_login" "1599431978" +HSET "user:1602" "first_name" "Farlay" "last_name" "Dagwell" "email" "fdagwellgp@bloglovin.com" "gender" "male" "ip_address" "21.143.185.176" "country" "Portugal" "country_code" "PT" "city" "Várzeas" "longitude" "-8.8416426" "latitude" "39.8494257" "last_login" "1585696156" +HSET "user:1603" "first_name" "Joyce" "last_name" "Hinckesman" "email" "jhinckesmangq@upenn.edu" "gender" "female" "ip_address" "194.159.156.2" "country" "Portugal" "country_code" "PT" "city" "Devesa" "longitude" "-8.3482785" "latitude" "41.3575049" "last_login" "1591795904" +HSET "user:1604" "first_name" "Perla" "last_name" "Wellbank" "email" "pwellbankgr@prweb.com" "gender" "female" "ip_address" "54.81.204.48" "country" "China" "country_code" "CN" "city" "Liulin" "longitude" "110.88907" "latitude" "37.429832" "last_login" "1592830049" +HSET "user:1605" "first_name" "Cob" "last_name" "Cockling" "email" "ccocklinggs@artisteer.com" "gender" "male" "ip_address" "38.66.111.104" "country" "Iran" "country_code" "IR" "city" "Shalamzār" "longitude" "50.8157258" "latitude" "32.04541" "last_login" "1570920510" +HSET "user:1606" "first_name" "Meryl" "last_name" "Mollene" "email" "mmollenegt@yandex.ru" "gender" "male" "ip_address" "204.116.188.52" "country" "East Timor" "country_code" "TL" "city" "Dili" "longitude" "125.5603143" "latitude" "-8.5568557" "last_login" "1579471619" +HSET "user:1607" "first_name" "Sophie" "last_name" "Crasswell" "email" "scrasswellgu@auda.org.au" "gender" "female" "ip_address" "43.150.253.80" "country" "Ivory Coast" "country_code" "CI" "city" "Soubré" "longitude" "-6.5890166" "latitude" "5.7866228" "last_login" "1578388660" +HSET "user:1608" "first_name" "Trevor" "last_name" "Kidder" "email" "tkiddergv@ucla.edu" "gender" "male" "ip_address" "43.254.41.79" "country" "Japan" "country_code" "JP" "city" "Susaki" "longitude" "141.2405508" "latitude" "38.6002411" "last_login" "1586639153" +HSET "user:1609" "first_name" "Renae" "last_name" "Leuchars" "email" "rleucharsgw@miibeian.gov.cn" "gender" "female" "ip_address" "144.7.183.178" "country" "Russia" "country_code" "RU" "city" "Kulunda" "longitude" "78.9472223" "latitude" "52.5666667" "last_login" "1579150097" +HSET "user:1610" "first_name" "Vin" "last_name" "Hurlin" "email" "vhurlingx@yahoo.com" "gender" "female" "ip_address" "137.214.55.73" "country" "Philippines" "country_code" "PH" "city" "Cantilan" "longitude" "125.9638162" "latitude" "9.2610401" "last_login" "1579156455" +HSET "user:1611" "first_name" "Arline" "last_name" "Silverstone" "email" "asilverstonegy@meetup.com" "gender" "female" "ip_address" "126.189.33.130" "country" "Japan" "country_code" "JP" "city" "Shōbu" "longitude" "139.1671308" "latitude" "35.375873" "last_login" "1599774533" +HSET "user:1612" "first_name" "Louella" "last_name" "Behneke" "email" "lbehnekegz@hao123.com" "gender" "female" "ip_address" "154.26.127.50" "country" "Senegal" "country_code" "SN" "city" "Khombole" "longitude" "-16.685136" "latitude" "14.7673872" "last_login" "1578129407" +HSET "user:1613" "first_name" "Orin" "last_name" "Pettit" "email" "opettith0@squidoo.com" "gender" "male" "ip_address" "172.231.253.207" "country" "China" "country_code" "CN" "city" "Sanhe" "longitude" "117.078294" "latitude" "39.982718" "last_login" "1583153055" +HSET "user:1614" "first_name" "Cole" "last_name" "Daleman" "email" "cdalemanh1@eventbrite.com" "gender" "male" "ip_address" "213.69.162.10" "country" "Israel" "country_code" "IL" "city" "Gedera" "longitude" "34.7770192" "latitude" "31.8123014" "last_login" "1591015613" +HSET "user:1615" "first_name" "Karyn" "last_name" "Barz" "email" "kbarzh2@amazon.de" "gender" "female" "ip_address" "98.72.204.130" "country" "China" "country_code" "CN" "city" "Xiong’erzhai" "longitude" "117.134151" "latitude" "40.284979" "last_login" "1575428294" +HSET "user:1616" "first_name" "Tawsha" "last_name" "Broseman" "email" "tbrosemanh3@google.fr" "gender" "female" "ip_address" "32.68.202.217" "country" "Indonesia" "country_code" "ID" "city" "Cihurip Satu" "longitude" "107.8613334" "latitude" "-7.5029075" "last_login" "1595089195" +HSET "user:1617" "first_name" "Cosme" "last_name" "Learmonth" "email" "clearmonthh4@live.com" "gender" "male" "ip_address" "230.21.129.12" "country" "Indonesia" "country_code" "ID" "city" "Gunungmalang Satu" "longitude" "106.7336319" "latitude" "-6.6579598" "last_login" "1599499764" +HSET "user:1618" "first_name" "Rhiamon" "last_name" "Kirk" "email" "rkirkh5@cam.ac.uk" "gender" "female" "ip_address" "81.61.53.94" "country" "Bahrain" "country_code" "BH" "city" "Sitrah" "longitude" "50.6275108" "latitude" "26.1628197" "last_login" "1571172759" +HSET "user:1619" "first_name" "Harcourt" "last_name" "Moncarr" "email" "hmoncarrh6@booking.com" "gender" "male" "ip_address" "135.81.55.121" "country" "United States" "country_code" "US" "city" "Jackson" "longitude" "-90.1565209" "latitude" "32.3361632" "last_login" "1594088767" +HSET "user:1620" "first_name" "Peyton" "last_name" "Threader" "email" "pthreaderh7@hp.com" "gender" "male" "ip_address" "136.134.80.11" "country" "Bolivia" "country_code" "BO" "city" "San Juan del Surutú" "longitude" "-63.7" "latitude" "-17.48333" "last_login" "1578135237" +HSET "user:1621" "first_name" "Didi" "last_name" "Wolledge" "email" "dwolledgeh8@surveymonkey.com" "gender" "female" "ip_address" "94.162.16.175" "country" "Japan" "country_code" "JP" "city" "Fujioka" "longitude" "139.9177739" "latitude" "38.7683879" "last_login" "1572818816" +HSET "user:1622" "first_name" "Mallory" "last_name" "Camerati" "email" "mcameratih9@ycombinator.com" "gender" "male" "ip_address" "45.225.50.245" "country" "United States" "country_code" "US" "city" "Amarillo" "longitude" "-102.8518139" "latitude" "32.9578909" "last_login" "1583848103" +HSET "user:1623" "first_name" "Sinclair" "last_name" "Ragg" "email" "sraggha@istockphoto.com" "gender" "male" "ip_address" "169.155.208.223" "country" "Indonesia" "country_code" "ID" "city" "Sekolan" "longitude" "103.925603" "latitude" "1.3105389" "last_login" "1598205984" +HSET "user:1624" "first_name" "Wenona" "last_name" "Renne" "email" "wrennehb@domainmarket.com" "gender" "female" "ip_address" "19.136.178.134" "country" "China" "country_code" "CN" "city" "Taipingxi" "longitude" "111.01537" "latitude" "30.841493" "last_login" "1586721313" +HSET "user:1625" "first_name" "Warner" "last_name" "Rove" "email" "wrovehc@blogtalkradio.com" "gender" "male" "ip_address" "153.13.78.185" "country" "China" "country_code" "CN" "city" "Shuidong" "longitude" "111.075519" "latitude" "22.492431" "last_login" "1584583756" +HSET "user:1626" "first_name" "Valentin" "last_name" "Lichfield" "email" "vlichfieldhd@spotify.com" "gender" "male" "ip_address" "88.195.138.32" "country" "China" "country_code" "CN" "city" "Caoping" "longitude" "110.450325" "latitude" "25.05732" "last_login" "1587462670" +HSET "user:1627" "first_name" "Fielding" "last_name" "Izaks" "email" "fizakshe@blinklist.com" "gender" "male" "ip_address" "214.236.77.183" "country" "South Korea" "country_code" "KR" "city" "Jangheung" "longitude" "126.9069278" "latitude" "34.6816856" "last_login" "1582925360" +HSET "user:1628" "first_name" "Jan" "last_name" "Umpleby" "email" "jumplebyhf@independent.co.uk" "gender" "male" "ip_address" "44.65.175.7" "country" "China" "country_code" "CN" "city" "Wuquan" "longitude" "110.778411" "latitude" "21.441808" "last_login" "1599121431" +HSET "user:1629" "first_name" "Cindy" "last_name" "Dufour" "email" "cdufourhg@harvard.edu" "gender" "female" "ip_address" "45.132.216.217" "country" "Portugal" "country_code" "PT" "city" "São Miguel" "longitude" "-8.5265537" "latitude" "41.0489611" "last_login" "1585435065" +HSET "user:1630" "first_name" "Artemis" "last_name" "Sirr" "email" "asirrhh@imageshack.us" "gender" "male" "ip_address" "118.95.100.154" "country" "Indonesia" "country_code" "ID" "city" "Andongrejo" "longitude" "113.7870822" "latitude" "-8.4412858" "last_login" "1591908228" +HSET "user:1631" "first_name" "Vanda" "last_name" "Marrison" "email" "vmarrisonhi@drupal.org" "gender" "female" "ip_address" "248.44.68.16" "country" "Russia" "country_code" "RU" "city" "Sudislavl’" "longitude" "41.7123719" "latitude" "57.8773671" "last_login" "1580352219" +HSET "user:1632" "first_name" "Borden" "last_name" "Heims" "email" "bheimshj@tumblr.com" "gender" "male" "ip_address" "108.31.37.184" "country" "Estonia" "country_code" "EE" "city" "Uuemõisa" "longitude" "23.5826177" "latitude" "58.9412578" "last_login" "1596327039" +HSET "user:1633" "first_name" "Liana" "last_name" "Ranyell" "email" "lranyellhk@wsj.com" "gender" "female" "ip_address" "28.13.116.231" "country" "Kenya" "country_code" "KE" "city" "Siaya" "longitude" "34.2747004" "latitude" "-0.0998238" "last_login" "1588899553" +HSET "user:1634" "first_name" "Mellisa" "last_name" "Paradise" "email" "mparadisehl@shareasale.com" "gender" "female" "ip_address" "71.107.187.61" "country" "Portugal" "country_code" "PT" "city" "Trajouce" "longitude" "-9.3390593" "latitude" "38.7374207" "last_login" "1589072481" +HSET "user:1635" "first_name" "Leta" "last_name" "Yablsley" "email" "lyablsleyhm@paypal.com" "gender" "female" "ip_address" "214.54.166.216" "country" "Germany" "country_code" "DE" "city" "Kassel" "longitude" "9.4266475" "latitude" "51.2804955" "last_login" "1598600824" +HSET "user:1636" "first_name" "Farrah" "last_name" "Congrave" "email" "fcongravehn@google.nl" "gender" "female" "ip_address" "239.20.91.64" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0975334" "latitude" "59.3473789" "last_login" "1571296279" +HSET "user:1637" "first_name" "Anabal" "last_name" "Pinnington" "email" "apinningtonho@theglobeandmail.com" "gender" "female" "ip_address" "109.23.100.254" "country" "Czech Republic" "country_code" "CZ" "city" "Šardice" "longitude" "17.0279282" "latitude" "48.967159" "last_login" "1574429898" +HSET "user:1638" "first_name" "Cash" "last_name" "South" "email" "csouthhp@amazon.co.uk" "gender" "male" "ip_address" "157.176.164.5" "country" "Philippines" "country_code" "PH" "city" "Butuan" "longitude" "121.0737995" "latitude" "14.3213796" "last_login" "1583531637" +HSET "user:1639" "first_name" "Jacobo" "last_name" "Stoade" "email" "jstoadehq@constantcontact.com" "gender" "male" "ip_address" "23.224.157.215" "country" "Mexico" "country_code" "MX" "city" "Chapultepec" "longitude" "-99.1894558" "latitude" "19.4194815" "last_login" "1570557285" +HSET "user:1640" "first_name" "Daffy" "last_name" "Peckham" "email" "dpeckhamhr@google.ru" "gender" "female" "ip_address" "248.148.176.63" "country" "China" "country_code" "CN" "city" "Yaozhuang" "longitude" "117.323725" "latitude" "34.810487" "last_login" "1579818939" +HSET "user:1641" "first_name" "Rickert" "last_name" "Kirwan" "email" "rkirwanhs@shinystat.com" "gender" "male" "ip_address" "245.123.244.230" "country" "China" "country_code" "CN" "city" "Jincheng" "longitude" "112.851831" "latitude" "35.490701" "last_login" "1572877143" +HSET "user:1642" "first_name" "Mignonne" "last_name" "Whittlesea" "email" "mwhittleseaht@who.int" "gender" "female" "ip_address" "140.157.37.120" "country" "China" "country_code" "CN" "city" "Kaishantun" "longitude" "129.7741869" "latitude" "42.697778" "last_login" "1575570572" +HSET "user:1643" "first_name" "Malorie" "last_name" "Gater" "email" "mgaterhu@istockphoto.com" "gender" "female" "ip_address" "204.29.72.143" "country" "Greece" "country_code" "GR" "city" "Irákleia" "longitude" "23.2810087" "latitude" "41.1837502" "last_login" "1578563606" +HSET "user:1644" "first_name" "Sunny" "last_name" "Dillamore" "email" "sdillamorehv@cdbaby.com" "gender" "female" "ip_address" "226.114.20.181" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.7673005" "latitude" "59.9050895" "last_login" "1577344588" +HSET "user:1645" "first_name" "Charmaine" "last_name" "Commings" "email" "ccommingshw@ibm.com" "gender" "female" "ip_address" "152.215.216.13" "country" "Peru" "country_code" "PE" "city" "Sinchao" "longitude" "-80.66667" "latitude" "-5.41667" "last_login" "1569671749" +HSET "user:1646" "first_name" "Minor" "last_name" "Guinane" "email" "mguinanehx@wiley.com" "gender" "male" "ip_address" "169.219.11.28" "country" "China" "country_code" "CN" "city" "Rudong" "longitude" "121.185201" "latitude" "32.331765" "last_login" "1596064859" +HSET "user:1647" "first_name" "Suzette" "last_name" "Teale" "email" "stealehy@wikia.com" "gender" "female" "ip_address" "161.143.41.42" "country" "China" "country_code" "CN" "city" "Duishan" "longitude" "109.667164" "latitude" "28.90499" "last_login" "1572826524" +HSET "user:1648" "first_name" "Paxton" "last_name" "Shortell" "email" "pshortellhz@ameblo.jp" "gender" "male" "ip_address" "33.134.137.10" "country" "Brazil" "country_code" "BR" "city" "Frederico Westphalen" "longitude" "-53.3963199" "latitude" "-27.3607338" "last_login" "1591871644" +HSET "user:1649" "first_name" "Goldie" "last_name" "Matevushev" "email" "gmatevushevi0@dell.com" "gender" "female" "ip_address" "219.233.63.11" "country" "Netherlands" "country_code" "NL" "city" "Zwolle" "longitude" "6.1433403" "latitude" "52.5168356" "last_login" "1589011390" +HSET "user:1650" "first_name" "Karleen" "last_name" "Quarterman" "email" "kquartermani1@infoseek.co.jp" "gender" "female" "ip_address" "234.118.212.78" "country" "Poland" "country_code" "PL" "city" "Gorzyce" "longitude" "17.5860395" "latitude" "52.8818616" "last_login" "1595108265" +HSET "user:1651" "first_name" "Arabel" "last_name" "Blakiston" "email" "ablakistoni2@nps.gov" "gender" "female" "ip_address" "112.234.237.20" "country" "Belarus" "country_code" "BY" "city" "Horad Pinsk" "longitude" "27.5615244" "latitude" "53.9045398" "last_login" "1596758274" +HSET "user:1652" "first_name" "Malinde" "last_name" "Normand" "email" "mnormandi3@cocolog-nifty.com" "gender" "female" "ip_address" "155.72.102.63" "country" "China" "country_code" "CN" "city" "Shixiang" "longitude" "120.1534039" "latitude" "30.3312397" "last_login" "1600169659" +HSET "user:1653" "first_name" "Uriel" "last_name" "McOmish" "email" "umcomishi4@geocities.jp" "gender" "male" "ip_address" "34.13.233.82" "country" "Ireland" "country_code" "IE" "city" "Crumlin" "longitude" "-6.3048641" "latitude" "53.3284298" "last_login" "1578334697" +HSET "user:1654" "first_name" "Grazia" "last_name" "Angel" "email" "gangeli5@trellian.com" "gender" "female" "ip_address" "112.43.195.218" "country" "Ireland" "country_code" "IE" "city" "Fairview" "longitude" "-6.4202878" "latitude" "54.0026343" "last_login" "1572438467" +HSET "user:1655" "first_name" "Gay" "last_name" "Kamien" "email" "gkamieni6@cdbaby.com" "gender" "female" "ip_address" "78.57.99.254" "country" "Poland" "country_code" "PL" "city" "Kalej" "longitude" "-80.6150117" "latitude" "41.0213628" "last_login" "1574145639" +HSET "user:1656" "first_name" "Vincent" "last_name" "Kingzett" "email" "vkingzetti7@hp.com" "gender" "male" "ip_address" "89.53.4.167" "country" "Hungary" "country_code" "HU" "city" "Zselickislak" "longitude" "17.825072" "latitude" "46.283972" "last_login" "1599530397" +HSET "user:1657" "first_name" "Frasier" "last_name" "Zanetti" "email" "fzanettii8@ifeng.com" "gender" "male" "ip_address" "181.106.110.189" "country" "China" "country_code" "CN" "city" "Datian" "longitude" "117.847115" "latitude" "25.692699" "last_login" "1584221929" +HSET "user:1658" "first_name" "Lambert" "last_name" "McElroy" "email" "lmcelroyi9@wp.com" "gender" "male" "ip_address" "69.195.148.66" "country" "Russia" "country_code" "RU" "city" "Kolodeznyy" "longitude" "39.3015305" "latitude" "51.3531567" "last_login" "1596978950" +HSET "user:1659" "first_name" "Rafaelita" "last_name" "Wringe" "email" "rwringeia@tinyurl.com" "gender" "female" "ip_address" "179.29.205.58" "country" "Philippines" "country_code" "PH" "city" "Pang" "longitude" "120.9396932" "latitude" "14.3870657" "last_login" "1590442646" +HSET "user:1660" "first_name" "Blondie" "last_name" "Gallaway" "email" "bgallawayib@sitemeter.com" "gender" "female" "ip_address" "200.224.130.153" "country" "Ecuador" "country_code" "EC" "city" "Azogues" "longitude" "-78.8458135" "latitude" "-2.7389977" "last_login" "1589598691" +HSET "user:1661" "first_name" "Barris" "last_name" "Pinckstone" "email" "bpinckstoneic@amazon.de" "gender" "male" "ip_address" "224.134.222.144" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0651149" "latitude" "59.3289759" "last_login" "1582186406" +HSET "user:1662" "first_name" "Alison" "last_name" "Penhearow" "email" "apenhearowid@sohu.com" "gender" "female" "ip_address" "6.78.55.249" "country" "Russia" "country_code" "RU" "city" "Yuzhno-Sukhokumsk" "longitude" "45.6473241" "latitude" "44.6611202" "last_login" "1579812946" +HSET "user:1663" "first_name" "Collete" "last_name" "Fiddymont" "email" "cfiddymontie@geocities.jp" "gender" "female" "ip_address" "31.203.80.77" "country" "Indonesia" "country_code" "ID" "city" "Sukakerta" "longitude" "107.5534739" "latitude" "-6.1955905" "last_login" "1594429904" +HSET "user:1664" "first_name" "Philly" "last_name" "Fairbard" "email" "pfairbardif@wikia.com" "gender" "female" "ip_address" "218.92.154.155" "country" "China" "country_code" "CN" "city" "Mingyuedian" "longitude" "114.897169" "latitude" "38.452173" "last_login" "1587024438" +HSET "user:1665" "first_name" "Netty" "last_name" "Markham" "email" "nmarkhamig@ehow.com" "gender" "female" "ip_address" "201.192.58.242" "country" "Myanmar" "country_code" "MM" "city" "Wakema" "longitude" "95.177098" "latitude" "16.6032044" "last_login" "1591759506" +HSET "user:1666" "first_name" "Wilek" "last_name" "Arrol" "email" "warrolih@state.gov" "gender" "male" "ip_address" "58.212.221.221" "country" "Philippines" "country_code" "PH" "city" "Hagonoy" "longitude" "121.0764017" "latitude" "14.7464846" "last_login" "1600011425" +HSET "user:1667" "first_name" "Hillard" "last_name" "Baert" "email" "hbaertii@pbs.org" "gender" "male" "ip_address" "74.218.175.204" "country" "Chile" "country_code" "CL" "city" "Chillán" "longitude" "-72.1023351" "latitude" "-36.6062618" "last_login" "1599104640" +HSET "user:1668" "first_name" "Garrett" "last_name" "Ruggiero" "email" "gruggieroij@bravesites.com" "gender" "male" "ip_address" "6.62.122.60" "country" "Kazakhstan" "country_code" "KZ" "city" "Aktau" "longitude" "51.1985113" "latitude" "43.6410973" "last_login" "1581214744" +HSET "user:1669" "first_name" "Reynard" "last_name" "Lago" "email" "rlagoik@studiopress.com" "gender" "male" "ip_address" "220.65.175.96" "country" "China" "country_code" "CN" "city" "Xinzha" "longitude" "112.734174" "latitude" "38.416663" "last_login" "1593318365" +HSET "user:1670" "first_name" "Geno" "last_name" "Busfield" "email" "gbusfieldil@is.gd" "gender" "male" "ip_address" "26.157.173.51" "country" "China" "country_code" "CN" "city" "Heping" "longitude" "114.938684" "latitude" "24.44218" "last_login" "1579691455" +HSET "user:1671" "first_name" "Thurstan" "last_name" "MacAvaddy" "email" "tmacavaddyim@is.gd" "gender" "male" "ip_address" "76.35.9.67" "country" "Russia" "country_code" "RU" "city" "Perelyub" "longitude" "50.3456762" "latitude" "51.8614971" "last_login" "1594128503" +HSET "user:1672" "first_name" "Arlinda" "last_name" "Saiens" "email" "asaiensin@apache.org" "gender" "female" "ip_address" "134.82.136.205" "country" "Russia" "country_code" "RU" "city" "Dubna" "longitude" "37.1660882" "latitude" "56.7375175" "last_login" "1572842880" +HSET "user:1673" "first_name" "Alfons" "last_name" "McIlherran" "email" "amcilherranio@un.org" "gender" "male" "ip_address" "120.35.244.224" "country" "Indonesia" "country_code" "ID" "city" "Kojagete" "longitude" "122.373094" "latitude" "-8.4485948" "last_login" "1587217677" +HSET "user:1674" "first_name" "Arley" "last_name" "Deshorts" "email" "adeshortsip@wunderground.com" "gender" "male" "ip_address" "202.154.198.182" "country" "Brazil" "country_code" "BR" "city" "Araçoiaba da Serra" "longitude" "-47.5632863" "latitude" "-23.510329" "last_login" "1581954251" +HSET "user:1675" "first_name" "Salomo" "last_name" "Pruckner" "email" "spruckneriq@odnoklassniki.ru" "gender" "male" "ip_address" "154.90.49.185" "country" "Venezuela" "country_code" "VE" "city" "Tacarigua" "longitude" "-67.9195741" "latitude" "10.0850213" "last_login" "1584209729" +HSET "user:1676" "first_name" "Zeb" "last_name" "Pappi" "email" "zpappiir@reddit.com" "gender" "male" "ip_address" "247.235.246.254" "country" "Croatia" "country_code" "HR" "city" "Suhopolje" "longitude" "17.497172" "latitude" "45.8022541" "last_login" "1586420630" +HSET "user:1677" "first_name" "Diane" "last_name" "Thumim" "email" "dthumimis@cpanel.net" "gender" "female" "ip_address" "249.109.161.157" "country" "China" "country_code" "CN" "city" "Tangtu" "longitude" "124.345531" "latitude" "41.834144" "last_login" "1595500905" +HSET "user:1678" "first_name" "Royall" "last_name" "Dowears" "email" "rdowearsit@csmonitor.com" "gender" "male" "ip_address" "174.15.125.142" "country" "Azerbaijan" "country_code" "AZ" "city" "Ramana" "longitude" "49.9843941" "latitude" "40.4581279" "last_login" "1582411371" +HSET "user:1679" "first_name" "Meredithe" "last_name" "Rewbottom" "email" "mrewbottomiu@springer.com" "gender" "female" "ip_address" "141.138.109.254" "country" "Brazil" "country_code" "BR" "city" "Rio Branco do Sul" "longitude" "-49.3164138" "latitude" "-25.1860913" "last_login" "1570132446" +HSET "user:1680" "first_name" "Diane-marie" "last_name" "Frankom" "email" "dfrankomiv@reuters.com" "gender" "female" "ip_address" "8.237.78.89" "country" "Japan" "country_code" "JP" "city" "Ōsaka-shi" "longitude" "135.5119682" "latitude" "34.6533451" "last_login" "1599070719" +HSET "user:1681" "first_name" "Salmon" "last_name" "Plaid" "email" "splaidiw@4shared.com" "gender" "male" "ip_address" "76.129.134.129" "country" "Poland" "country_code" "PL" "city" "Twardawa" "longitude" "17.99097" "latitude" "50.34349" "last_login" "1572422405" +HSET "user:1682" "first_name" "Anatola" "last_name" "Labden" "email" "alabdenix@ucla.edu" "gender" "female" "ip_address" "166.204.16.212" "country" "China" "country_code" "CN" "city" "Tongshan" "longitude" "114.482606" "latitude" "29.605376" "last_login" "1573758968" +HSET "user:1683" "first_name" "Frazier" "last_name" "Gozzett" "email" "fgozzettiy@pen.io" "gender" "male" "ip_address" "15.204.123.209" "country" "China" "country_code" "CN" "city" "Shilong" "longitude" "113.874335" "latitude" "23.105394" "last_login" "1585686892" +HSET "user:1684" "first_name" "Zachery" "last_name" "Gerrets" "email" "zgerretsiz@last.fm" "gender" "male" "ip_address" "14.73.162.147" "country" "Sweden" "country_code" "SE" "city" "Eskilstuna" "longitude" "16.4823589" "latitude" "59.3573204" "last_login" "1600021184" +HSET "user:1685" "first_name" "Fannie" "last_name" "McDoual" "email" "fmcdoualj0@purevolume.com" "gender" "female" "ip_address" "76.8.12.207" "country" "Netherlands" "country_code" "NL" "city" "Haarlem" "longitude" "4.615857" "latitude" "52.3739053" "last_login" "1587537359" +HSET "user:1686" "first_name" "Ede" "last_name" "Bernth" "email" "ebernthj1@digg.com" "gender" "female" "ip_address" "34.181.35.206" "country" "Czech Republic" "country_code" "CZ" "city" "Loučná nad Desnou" "longitude" "17.1303468" "latitude" "50.1046609" "last_login" "1578622828" +HSET "user:1687" "first_name" "Bourke" "last_name" "Betchley" "email" "bbetchleyj2@google.com.br" "gender" "male" "ip_address" "113.236.229.37" "country" "Russia" "country_code" "RU" "city" "Krasnaya Gorka" "longitude" "60.665967" "latitude" "56.7653841" "last_login" "1578513830" +HSET "user:1688" "first_name" "Steffi" "last_name" "Hamsher" "email" "shamsherj3@youtu.be" "gender" "female" "ip_address" "92.174.178.172" "country" "Turks and Caicos Islands" "country_code" "TC" "city" "Cockburn Town" "longitude" "-71.1389101" "latitude" "21.4674584" "last_login" "1597517292" +HSET "user:1689" "first_name" "Yolanthe" "last_name" "Camilli" "email" "ycamillij4@unblog.fr" "gender" "female" "ip_address" "251.234.242.74" "country" "Brazil" "country_code" "BR" "city" "Schroeder" "longitude" "-49.0615086" "latitude" "-26.3749827" "last_login" "1574003061" +HSET "user:1690" "first_name" "Brigitte" "last_name" "Burmingham" "email" "bburminghamj5@studiopress.com" "gender" "female" "ip_address" "209.55.236.244" "country" "Colombia" "country_code" "CO" "city" "Quibdó" "longitude" "-76.649812" "latitude" "5.695633" "last_login" "1570603724" +HSET "user:1691" "first_name" "Lillis" "last_name" "Fells" "email" "lfellsj6@narod.ru" "gender" "female" "ip_address" "124.52.241.127" "country" "China" "country_code" "CN" "city" "Hezuo" "longitude" "102.910493" "latitude" "35.000262" "last_login" "1576501434" +HSET "user:1692" "first_name" "Pen" "last_name" "Harcus" "email" "pharcusj7@netscape.com" "gender" "female" "ip_address" "38.205.59.75" "country" "Germany" "country_code" "DE" "city" "Mainz" "longitude" "8.1937267" "latitude" "50.0022253" "last_login" "1587400870" +HSET "user:1693" "first_name" "Gisela" "last_name" "Hanburry" "email" "ghanburryj8@netlog.com" "gender" "female" "ip_address" "211.234.233.191" "country" "Vietnam" "country_code" "VN" "city" "Duy Xuyên" "longitude" "108.1665855" "latitude" "15.77511" "last_login" "1569060552" +HSET "user:1694" "first_name" "Madlin" "last_name" "Liffe" "email" "mliffej9@reuters.com" "gender" "female" "ip_address" "82.114.202.155" "country" "Brazil" "country_code" "BR" "city" "Manaus" "longitude" "-60.0217314" "latitude" "-3.1190275" "last_login" "1595327775" +HSET "user:1695" "first_name" "Emanuele" "last_name" "Deakes" "email" "edeakesja@fc2.com" "gender" "male" "ip_address" "251.119.78.89" "country" "Indonesia" "country_code" "ID" "city" "Jawatiwa" "longitude" "121.2769483" "latitude" "-8.6969761" "last_login" "1590032602" +HSET "user:1696" "first_name" "Glen" "last_name" "Higgen" "email" "ghiggenjb@deviantart.com" "gender" "female" "ip_address" "166.126.115.63" "country" "Portugal" "country_code" "PT" "city" "Manhete" "longitude" "-8.5825398" "latitude" "41.5485587" "last_login" "1579097305" +HSET "user:1697" "first_name" "Baxy" "last_name" "Fanshaw" "email" "bfanshawjc@uol.com.br" "gender" "male" "ip_address" "250.96.175.2" "country" "Japan" "country_code" "JP" "city" "Hamanoichi" "longitude" "131.5825056" "latitude" "33.2464649" "last_login" "1570573965" +HSET "user:1698" "first_name" "Allix" "last_name" "Angier" "email" "aangierjd@cbc.ca" "gender" "female" "ip_address" "208.35.28.88" "country" "Russia" "country_code" "RU" "city" "Krasnaya Polyana" "longitude" "41.1051314" "latitude" "45.05426" "last_login" "1590203283" +HSET "user:1699" "first_name" "Web" "last_name" "Seymour" "email" "wseymourje@google.co.uk" "gender" "male" "ip_address" "22.136.12.152" "country" "Uganda" "country_code" "UG" "city" "Kiryandongo" "longitude" "32.1391217" "latitude" "1.9530448" "last_login" "1586521397" +HSET "user:1700" "first_name" "Clarice" "last_name" "Jaine" "email" "cjainejf@oakley.com" "gender" "female" "ip_address" "35.207.196.245" "country" "Japan" "country_code" "JP" "city" "Iwata" "longitude" "136.7851365" "latitude" "36.9692865" "last_login" "1577991034" +HSET "user:1701" "first_name" "Suzette" "last_name" "Soles" "email" "ssolesjg@tuttocitta.it" "gender" "female" "ip_address" "18.242.196.24" "country" "Portugal" "country_code" "PT" "city" "Novais" "longitude" "-8.4334674" "latitude" "41.3888512" "last_login" "1589400567" +HSET "user:1702" "first_name" "Ashlan" "last_name" "Olliff" "email" "aolliffjh@flavors.me" "gender" "female" "ip_address" "146.130.51.41" "country" "Vietnam" "country_code" "VN" "city" "Đắk Mil" "longitude" "107.6925674" "latitude" "12.5049537" "last_login" "1585973470" +HSET "user:1703" "first_name" "Jarrid" "last_name" "Bau" "email" "jbauji@macromedia.com" "gender" "male" "ip_address" "99.5.79.183" "country" "Afghanistan" "country_code" "AF" "city" "Mutā Khān" "longitude" "68.8663" "latitude" "33.24001" "last_login" "1572343937" +HSET "user:1704" "first_name" "Wyndham" "last_name" "Gulliford" "email" "wgullifordjj@photobucket.com" "gender" "male" "ip_address" "223.140.126.61" "country" "Peru" "country_code" "PE" "city" "Tinta" "longitude" "-71.4091563" "latitude" "-14.1387292" "last_login" "1569555962" +HSET "user:1705" "first_name" "Izabel" "last_name" "Dodell" "email" "idodelljk@vinaora.com" "gender" "female" "ip_address" "125.85.37.51" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "-68.1435046" "latitude" "47.0203207" "last_login" "1586981081" +HSET "user:1706" "first_name" "Lek" "last_name" "Karczinski" "email" "lkarczinskijl@seattletimes.com" "gender" "male" "ip_address" "13.15.217.16" "country" "Peru" "country_code" "PE" "city" "Muquiyauyo" "longitude" "-75.4534081" "latitude" "-11.8163553" "last_login" "1599080190" +HSET "user:1707" "first_name" "Tabbie" "last_name" "Iacovacci" "email" "tiacovaccijm@webmd.com" "gender" "male" "ip_address" "136.190.129.160" "country" "China" "country_code" "CN" "city" "Huicheng" "longitude" "114.382541" "latitude" "23.084122" "last_login" "1599072095" +HSET "user:1708" "first_name" "Korrie" "last_name" "Riggey" "email" "kriggeyjn@scribd.com" "gender" "female" "ip_address" "185.162.212.86" "country" "Russia" "country_code" "RU" "city" "Dinskaya" "longitude" "39.3719039" "latitude" "45.1242818" "last_login" "1596064545" +HSET "user:1709" "first_name" "Elvyn" "last_name" "Seelbach" "email" "eseelbachjo@wikipedia.org" "gender" "male" "ip_address" "21.21.131.159" "country" "Argentina" "country_code" "AR" "city" "El Cuy" "longitude" "-64.3060567" "latitude" "-31.3366412" "last_login" "1576112173" +HSET "user:1710" "first_name" "Beatriz" "last_name" "Provest" "email" "bprovestjp@mediafire.com" "gender" "female" "ip_address" "52.145.219.139" "country" "Egypt" "country_code" "EG" "city" "Al Jamālīyah" "longitude" "31.86" "latitude" "31.18" "last_login" "1585202544" +HSET "user:1711" "first_name" "Lorry" "last_name" "Santhouse" "email" "lsanthousejq@rambler.ru" "gender" "male" "ip_address" "49.74.14.63" "country" "Canada" "country_code" "CA" "city" "Melita" "longitude" "-100.99669" "latitude" "49.26811" "last_login" "1584525476" +HSET "user:1712" "first_name" "Farly" "last_name" "Whale" "email" "fwhalejr@opensource.org" "gender" "male" "ip_address" "240.39.196.94" "country" "China" "country_code" "CN" "city" "Luoqiao" "longitude" "113.744367" "latitude" "31.13856" "last_login" "1571032289" +HSET "user:1713" "first_name" "Niki" "last_name" "Newart" "email" "nnewartjs@youku.com" "gender" "female" "ip_address" "150.254.38.32" "country" "Ukraine" "country_code" "UA" "city" "Askaniya Nova" "longitude" "33.8723511" "latitude" "46.4566661" "last_login" "1588893820" +HSET "user:1714" "first_name" "Markos" "last_name" "Powderham" "email" "mpowderhamjt@vkontakte.ru" "gender" "male" "ip_address" "110.50.101.165" "country" "Philippines" "country_code" "PH" "city" "Esperanza" "longitude" "121.0702642" "latitude" "14.7342524" "last_login" "1573517159" +HSET "user:1715" "first_name" "Pooh" "last_name" "Evered" "email" "peveredju@google.it" "gender" "male" "ip_address" "201.68.26.109" "country" "Thailand" "country_code" "TH" "city" "Mueang Nonthaburi" "longitude" "100.5219418" "latitude" "13.9210992" "last_login" "1568625681" +HSET "user:1716" "first_name" "Cayla" "last_name" "Walliker" "email" "cwallikerjv@jiathis.com" "gender" "female" "ip_address" "163.250.182.68" "country" "Sweden" "country_code" "SE" "city" "Bagarmossen" "longitude" "18.1465992" "latitude" "59.2780101" "last_login" "1579204525" +HSET "user:1717" "first_name" "Barry" "last_name" "Gobel" "email" "bgobeljw@netvibes.com" "gender" "male" "ip_address" "198.196.65.210" "country" "Armenia" "country_code" "AM" "city" "Goght’" "longitude" "44.7810683" "latitude" "40.1366726" "last_login" "1574068533" +HSET "user:1718" "first_name" "Glen" "last_name" "Leavey" "email" "gleaveyjx@cargocollective.com" "gender" "male" "ip_address" "44.61.207.225" "country" "Azerbaijan" "country_code" "AZ" "city" "Barda" "longitude" "47.1378909" "latitude" "40.3706555" "last_login" "1584760635" +HSET "user:1719" "first_name" "Merrill" "last_name" "Duffield" "email" "mduffieldjy@ow.ly" "gender" "male" "ip_address" "168.247.110.135" "country" "South Africa" "country_code" "ZA" "city" "Kakamas" "longitude" "20.4284431" "latitude" "-28.672732" "last_login" "1591217629" +HSET "user:1720" "first_name" "Mufinella" "last_name" "Dorling" "email" "mdorlingjz@dagondesign.com" "gender" "female" "ip_address" "139.90.194.168" "country" "Netherlands" "country_code" "NL" "city" "Dordrecht" "longitude" "4.693265" "latitude" "51.7783026" "last_login" "1594319449" +HSET "user:1721" "first_name" "Wiatt" "last_name" "Cookson" "email" "wcooksonk0@photobucket.com" "gender" "male" "ip_address" "28.198.15.22" "country" "Indonesia" "country_code" "ID" "city" "Anyar" "longitude" "105.9112424" "latitude" "-6.0924606" "last_login" "1586604893" +HSET "user:1722" "first_name" "Kit" "last_name" "Kovalski" "email" "kkovalskik1@newyorker.com" "gender" "female" "ip_address" "149.81.233.251" "country" "Uzbekistan" "country_code" "UZ" "city" "To’rtko’l Shahri" "longitude" "61.0018" "latitude" "41.56055" "last_login" "1585130114" +HSET "user:1723" "first_name" "Ebonee" "last_name" "Elsmore" "email" "eelsmorek2@eventbrite.com" "gender" "female" "ip_address" "187.211.179.76" "country" "United States" "country_code" "US" "city" "Battle Creek" "longitude" "-85.1872878" "latitude" "42.319384" "last_login" "1598315462" +HSET "user:1724" "first_name" "Carmine" "last_name" "Collough" "email" "ccolloughk3@github.com" "gender" "female" "ip_address" "4.81.43.239" "country" "Ukraine" "country_code" "UA" "city" "Kamyshevka Vtoraya" "longitude" "29.83333" "latitude" "46.23333" "last_login" "1598397973" +HSET "user:1725" "first_name" "Floria" "last_name" "Maneylaws" "email" "fmaneylawsk4@bloglovin.com" "gender" "female" "ip_address" "135.112.97.193" "country" "Finland" "country_code" "FI" "city" "Ranua" "longitude" "25.755466" "latitude" "66.4924399" "last_login" "1579693998" +HSET "user:1726" "first_name" "Callida" "last_name" "Limbourne" "email" "climbournek5@independent.co.uk" "gender" "female" "ip_address" "23.114.27.225" "country" "Ukraine" "country_code" "UA" "city" "Rozhniv" "longitude" "25.2298685" "latitude" "48.3667546" "last_login" "1587617340" +HSET "user:1727" "first_name" "Rayshell" "last_name" "Surmeir" "email" "rsurmeirk6@squidoo.com" "gender" "female" "ip_address" "79.98.152.138" "country" "Russia" "country_code" "RU" "city" "Znamenka" "longitude" "41.4278531" "latitude" "52.4159683" "last_login" "1577116509" +HSET "user:1728" "first_name" "Alla" "last_name" "Dobbinson" "email" "adobbinsonk7@cnn.com" "gender" "female" "ip_address" "33.93.156.167" "country" "France" "country_code" "FR" "city" "Paris 19" "longitude" "2.3839746" "latitude" "48.8858655" "last_login" "1578874070" +HSET "user:1729" "first_name" "Norton" "last_name" "Saice" "email" "nsaicek8@liveinternet.ru" "gender" "male" "ip_address" "92.30.94.237" "country" "France" "country_code" "FR" "city" "Barr" "longitude" "7.456782" "latitude" "48.403405" "last_login" "1572102409" +HSET "user:1730" "first_name" "Thorvald" "last_name" "Bines" "email" "tbinesk9@dedecms.com" "gender" "male" "ip_address" "47.143.4.193" "country" "China" "country_code" "CN" "city" "Huayang" "longitude" "115.49047" "latitude" "23.614734" "last_login" "1596808054" +HSET "user:1731" "first_name" "Hershel" "last_name" "Gipson" "email" "hgipsonka@businessinsider.com" "gender" "male" "ip_address" "127.108.201.161" "country" "Russia" "country_code" "RU" "city" "Chumikan" "longitude" "135.322998" "latitude" "54.708952" "last_login" "1583333250" +HSET "user:1732" "first_name" "Correy" "last_name" "Haighton" "email" "chaightonkb@zdnet.com" "gender" "male" "ip_address" "203.221.224.58" "country" "Indonesia" "country_code" "ID" "city" "Praya" "longitude" "116.2895173" "latitude" "-8.6837074" "last_login" "1572472590" +HSET "user:1733" "first_name" "Row" "last_name" "Isacsson" "email" "risacssonkc@deliciousdays.com" "gender" "female" "ip_address" "167.226.37.29" "country" "Portugal" "country_code" "PT" "city" "Real" "longitude" "-8.2760021" "latitude" "40.9937134" "last_login" "1581097016" +HSET "user:1734" "first_name" "Wyndham" "last_name" "Ellesmere" "email" "wellesmerekd@list-manage.com" "gender" "male" "ip_address" "124.74.83.82" "country" "Poland" "country_code" "PL" "city" "Łaziska Górne" "longitude" "18.8697867" "latitude" "50.1558976" "last_login" "1593900136" +HSET "user:1735" "first_name" "Sloane" "last_name" "Gillman" "email" "sgillmanke@mit.edu" "gender" "male" "ip_address" "161.86.35.244" "country" "Indonesia" "country_code" "ID" "city" "Baturaden" "longitude" "109.2289681" "latitude" "-7.3133025" "last_login" "1574567443" +HSET "user:1736" "first_name" "Rori" "last_name" "Stallon" "email" "rstallonkf@blogger.com" "gender" "female" "ip_address" "240.19.9.150" "country" "Poland" "country_code" "PL" "city" "Łodygowice" "longitude" "19.1538281" "latitude" "49.7289952" "last_login" "1581150880" +HSET "user:1737" "first_name" "Boyd" "last_name" "Itzhak" "email" "bitzhakkg@yandex.ru" "gender" "male" "ip_address" "33.35.100.81" "country" "Philippines" "country_code" "PH" "city" "Padre Burgos" "longitude" "125.0259763" "latitude" "10.049147" "last_login" "1579801575" +HSET "user:1738" "first_name" "Jada" "last_name" "Febry" "email" "jfebrykh@i2i.jp" "gender" "female" "ip_address" "44.113.8.107" "country" "South Africa" "country_code" "ZA" "city" "Modderfontein" "longitude" "28.1444516" "latitude" "-26.0880026" "last_login" "1590470640" +HSET "user:1739" "first_name" "Arlin" "last_name" "Vernall" "email" "avernallki@reference.com" "gender" "male" "ip_address" "184.50.181.150" "country" "Russia" "country_code" "RU" "city" "Ust’-Ilimsk" "longitude" "102.7445248" "latitude" "57.9536921" "last_login" "1581122149" +HSET "user:1740" "first_name" "Rheba" "last_name" "Bromhead" "email" "rbromheadkj@virginia.edu" "gender" "female" "ip_address" "178.127.163.17" "country" "Yemen" "country_code" "YE" "city" "Aḑ Ḑil‘" "longitude" "43.81828" "latitude" "14.67199" "last_login" "1594938933" +HSET "user:1741" "first_name" "Robinet" "last_name" "Harriagn" "email" "rharriagnkk@addthis.com" "gender" "male" "ip_address" "14.108.118.153" "country" "Mexico" "country_code" "MX" "city" "Santa Maria" "longitude" "-100.9383192" "latitude" "25.5562935" "last_login" "1583372245" +HSET "user:1742" "first_name" "Angel" "last_name" "Panter" "email" "apanterkl@squidoo.com" "gender" "male" "ip_address" "15.154.129.143" "country" "Pakistan" "country_code" "PK" "city" "Kamālia" "longitude" "72.6661867" "latitude" "30.7361622" "last_login" "1598787887" +HSET "user:1743" "first_name" "Frants" "last_name" "Sancho" "email" "fsanchokm@google.ca" "gender" "male" "ip_address" "236.48.62.154" "country" "Indonesia" "country_code" "ID" "city" "Pagersari" "longitude" "110.2727965" "latitude" "-7.5475962" "last_login" "1582192333" +HSET "user:1744" "first_name" "Clement" "last_name" "Klemensiewicz" "email" "cklemensiewiczkn@mail.ru" "gender" "male" "ip_address" "93.59.3.152" "country" "Indonesia" "country_code" "ID" "city" "Kranggan" "longitude" "109.066667" "latitude" "-7.3" "last_login" "1598839247" +HSET "user:1745" "first_name" "Malinde" "last_name" "Dorkens" "email" "mdorkensko@whitehouse.gov" "gender" "female" "ip_address" "84.185.117.152" "country" "Czech Republic" "country_code" "CZ" "city" "Příšovice" "longitude" "15.0839052" "latitude" "50.578132" "last_login" "1570321192" +HSET "user:1746" "first_name" "Flori" "last_name" "Arrault" "email" "farraultkp@jugem.jp" "gender" "female" "ip_address" "97.96.56.148" "country" "China" "country_code" "CN" "city" "Xinxikou" "longitude" "118.703307" "latitude" "29.772645" "last_login" "1581811202" +HSET "user:1747" "first_name" "Beulah" "last_name" "Cooney" "email" "bcooneykq@php.net" "gender" "female" "ip_address" "94.53.174.151" "country" "Indonesia" "country_code" "ID" "city" "Pecatu" "longitude" "115.1264522" "latitude" "-8.8315362" "last_login" "1586996481" +HSET "user:1748" "first_name" "Jaynell" "last_name" "Speere" "email" "jspeerekr@stanford.edu" "gender" "female" "ip_address" "77.255.144.162" "country" "Czech Republic" "country_code" "CZ" "city" "Moravský Krumlov" "longitude" "16.2983865" "latitude" "49.0337963" "last_login" "1593502165" +HSET "user:1749" "first_name" "Katusha" "last_name" "Reynish" "email" "kreynishks@goo.ne.jp" "gender" "female" "ip_address" "232.127.180.103" "country" "Indonesia" "country_code" "ID" "city" "Persen" "longitude" "110.3998007" "latitude" "-7.0416627" "last_login" "1581231829" +HSET "user:1750" "first_name" "Josephine" "last_name" "Kynastone" "email" "jkynastonekt@istockphoto.com" "gender" "female" "ip_address" "112.55.160.43" "country" "Malaysia" "country_code" "MY" "city" "Kota Bharu" "longitude" "102.2400127" "latitude" "6.12151" "last_login" "1569445902" +HSET "user:1751" "first_name" "Bernadene" "last_name" "Smee" "email" "bsmeeku@samsung.com" "gender" "female" "ip_address" "64.149.62.158" "country" "Poland" "country_code" "PL" "city" "Mieszkowice" "longitude" "14.49337" "latitude" "52.78747" "last_login" "1578874573" +HSET "user:1752" "first_name" "Merna" "last_name" "Rubberts" "email" "mrubbertskv@jigsy.com" "gender" "female" "ip_address" "0.233.209.235" "country" "New Zealand" "country_code" "NZ" "city" "Waitara" "longitude" "174.2418241" "latitude" "-39.0482569" "last_login" "1593260888" +HSET "user:1753" "first_name" "Agnola" "last_name" "Daily" "email" "adailykw@eepurl.com" "gender" "female" "ip_address" "33.225.39.229" "country" "Greece" "country_code" "GR" "city" "Vlycháda" "longitude" "25.4333251" "latitude" "36.3384589" "last_login" "1573796451" +HSET "user:1754" "first_name" "Corey" "last_name" "Predohl" "email" "cpredohlkx@issuu.com" "gender" "female" "ip_address" "117.180.62.150" "country" "China" "country_code" "CN" "city" "Hantang" "longitude" "108.093259" "latitude" "35.032891" "last_login" "1598965529" +HSET "user:1755" "first_name" "Toddy" "last_name" "Blind" "email" "tblindky@un.org" "gender" "male" "ip_address" "117.192.98.43" "country" "Philippines" "country_code" "PH" "city" "San Emilio" "longitude" "120.6124166" "latitude" "17.228242" "last_login" "1596396994" +HSET "user:1756" "first_name" "Micki" "last_name" "Duchesne" "email" "mduchesnekz@washingtonpost.com" "gender" "female" "ip_address" "73.161.60.202" "country" "Honduras" "country_code" "HN" "city" "Nombre de Jesús" "longitude" "-86.6850292" "latitude" "15.3749395" "last_login" "1590006837" +HSET "user:1757" "first_name" "Laural" "last_name" "Opy" "email" "lopyl0@businesswire.com" "gender" "female" "ip_address" "234.153.233.68" "country" "United States" "country_code" "US" "city" "Merrifield" "longitude" "-77.23" "latitude" "38.87" "last_login" "1590700197" +HSET "user:1758" "first_name" "Genvieve" "last_name" "Draisey" "email" "gdraiseyl1@digg.com" "gender" "female" "ip_address" "12.217.254.85" "country" "Mexico" "country_code" "MX" "city" "San Pedro" "longitude" "-102.9838564" "latitude" "25.7572143" "last_login" "1600246473" +HSET "user:1759" "first_name" "Hansiain" "last_name" "Laydon" "email" "hlaydonl2@php.net" "gender" "male" "ip_address" "109.30.56.76" "country" "Serbia" "country_code" "RS" "city" "Doroslovo" "longitude" "19.1802788" "latitude" "45.5998896" "last_login" "1598972546" +HSET "user:1760" "first_name" "Dorie" "last_name" "Astley" "email" "dastleyl3@wordpress.com" "gender" "male" "ip_address" "104.112.92.13" "country" "Japan" "country_code" "JP" "city" "Tokushima-shi" "longitude" "134.5525475" "latitude" "34.1446313" "last_login" "1576342820" +HSET "user:1761" "first_name" "Kiah" "last_name" "Lissenden" "email" "klissendenl4@yahoo.co.jp" "gender" "female" "ip_address" "14.235.124.155" "country" "China" "country_code" "CN" "city" "Jialu" "longitude" "8.2894205" "latitude" "47.1666507" "last_login" "1593254230" +HSET "user:1762" "first_name" "Barty" "last_name" "Gedling" "email" "bgedlingl5@nasa.gov" "gender" "male" "ip_address" "174.246.183.180" "country" "Nicaragua" "country_code" "NI" "city" "Ciudad Darío" "longitude" "-86.1217424" "latitude" "12.734087" "last_login" "1589466095" +HSET "user:1763" "first_name" "Kandy" "last_name" "Bispham" "email" "kbisphaml6@multiply.com" "gender" "female" "ip_address" "40.5.89.201" "country" "Botswana" "country_code" "BW" "city" "Selebi-Phikwe" "longitude" "27.8428651" "latitude" "-22.0028763" "last_login" "1588201525" +HSET "user:1764" "first_name" "Nana" "last_name" "Broadbridge" "email" "nbroadbridgel7@csmonitor.com" "gender" "female" "ip_address" "21.53.68.23" "country" "Czech Republic" "country_code" "CZ" "city" "Havířov" "longitude" "18.3442739" "latitude" "49.7917105" "last_login" "1590453322" +HSET "user:1765" "first_name" "Sascha" "last_name" "Farndon" "email" "sfarndonl8@wix.com" "gender" "female" "ip_address" "132.73.34.230" "country" "Cameroon" "country_code" "CM" "city" "Bali" "longitude" "10.0191857" "latitude" "5.8874488" "last_login" "1600035195" +HSET "user:1766" "first_name" "Gerry" "last_name" "Shilleto" "email" "gshilletol9@chicagotribune.com" "gender" "male" "ip_address" "212.192.84.104" "country" "Czech Republic" "country_code" "CZ" "city" "Milovice" "longitude" "17.3562648" "latitude" "49.2216972" "last_login" "1578556899" +HSET "user:1767" "first_name" "Mikaela" "last_name" "MacCaffery" "email" "mmaccafferyla@youku.com" "gender" "female" "ip_address" "156.234.152.241" "country" "Portugal" "country_code" "PT" "city" "Calde" "longitude" "-7.9131603" "latitude" "40.781499" "last_login" "1582438930" +HSET "user:1768" "first_name" "Correy" "last_name" "Yellop" "email" "cyelloplb@msu.edu" "gender" "male" "ip_address" "155.240.216.127" "country" "Bolivia" "country_code" "BO" "city" "Atocha" "longitude" "-66.220355" "latitude" "-20.9343608" "last_login" "1590500841" +HSET "user:1769" "first_name" "Boris" "last_name" "Heaton" "email" "bheatonlc@pbs.org" "gender" "male" "ip_address" "137.66.14.166" "country" "China" "country_code" "CN" "city" "Huangliang" "longitude" "110.839164" "latitude" "31.264698" "last_login" "1587878875" +HSET "user:1770" "first_name" "Armand" "last_name" "Connar" "email" "aconnarld@bbb.org" "gender" "male" "ip_address" "132.73.132.107" "country" "Palestinian Territory" "country_code" "PS" "city" "Al Hāshimīyah" "longitude" "35.21938" "latitude" "32.46392" "last_login" "1572458337" +HSET "user:1771" "first_name" "Daven" "last_name" "Klewi" "email" "dklewile@sbwire.com" "gender" "male" "ip_address" "107.218.178.32" "country" "Brazil" "country_code" "BR" "city" "Camocim" "longitude" "-40.8388865" "latitude" "-2.9014475" "last_login" "1569119508" +HSET "user:1772" "first_name" "Leigh" "last_name" "Mathonnet" "email" "lmathonnetlf@spiegel.de" "gender" "male" "ip_address" "23.11.40.119" "country" "Peru" "country_code" "PE" "city" "Chambara" "longitude" "-75.3743736" "latitude" "-12.0271668" "last_login" "1591868214" +HSET "user:1773" "first_name" "Vita" "last_name" "Servante" "email" "vservantelg@skype.com" "gender" "female" "ip_address" "45.128.252.160" "country" "Honduras" "country_code" "HN" "city" "La Guacamaya" "longitude" "-87.8" "latitude" "15.25" "last_login" "1569255706" +HSET "user:1774" "first_name" "Meg" "last_name" "Leal" "email" "mleallh@usa.gov" "gender" "female" "ip_address" "76.211.184.42" "country" "China" "country_code" "CN" "city" "Jianghua" "longitude" "111.579535" "latitude" "25.185809" "last_login" "1599936240" +HSET "user:1775" "first_name" "Loraine" "last_name" "Haill" "email" "lhaillli@goo.gl" "gender" "female" "ip_address" "250.213.248.101" "country" "Portugal" "country_code" "PT" "city" "Entradas" "longitude" "-8.0102678" "latitude" "37.7779611" "last_login" "1597164552" +HSET "user:1776" "first_name" "Kat" "last_name" "Millott" "email" "kmillottlj@theglobeandmail.com" "gender" "female" "ip_address" "7.193.51.40" "country" "Poland" "country_code" "PL" "city" "Ostrowite" "longitude" "19.2876039" "latitude" "53.0662784" "last_login" "1573577851" +HSET "user:1777" "first_name" "Kinny" "last_name" "Francey" "email" "kfranceylk@adobe.com" "gender" "male" "ip_address" "183.91.150.100" "country" "Latvia" "country_code" "LV" "city" "Nereta" "longitude" "25.3251951" "latitude" "56.198791" "last_login" "1577496395" +HSET "user:1778" "first_name" "Nelle" "last_name" "Glaves" "email" "nglavesll@pen.io" "gender" "female" "ip_address" "246.174.131.166" "country" "Paraguay" "country_code" "PY" "city" "Piribebuy" "longitude" "-57.0421483" "latitude" "-25.4648258" "last_login" "1573983956" +HSET "user:1779" "first_name" "Tommy" "last_name" "Titmus" "email" "ttitmuslm@freewebs.com" "gender" "female" "ip_address" "1.118.112.20" "country" "Japan" "country_code" "JP" "city" "Sakaidechō" "longitude" "133.8255351" "latitude" "34.3103535" "last_login" "1579936551" +HSET "user:1780" "first_name" "Constancia" "last_name" "Messager" "email" "cmessagerln@fema.gov" "gender" "female" "ip_address" "249.7.202.51" "country" "China" "country_code" "CN" "city" "Haikou" "longitude" "110.198286" "latitude" "20.044412" "last_login" "1596753343" +HSET "user:1781" "first_name" "Gillian" "last_name" "Meyer" "email" "gmeyerlo@craigslist.org" "gender" "female" "ip_address" "133.136.183.171" "country" "China" "country_code" "CN" "city" "Danxia" "longitude" "100.103698" "latitude" "38.9039998" "last_login" "1593448766" +HSET "user:1782" "first_name" "Glyn" "last_name" "Bardnam" "email" "gbardnamlp@tmall.com" "gender" "female" "ip_address" "142.5.129.52" "country" "Georgia" "country_code" "GE" "city" "Akhaldaba" "longitude" "43.4907611" "latitude" "41.9253854" "last_login" "1577571199" +HSET "user:1783" "first_name" "Geri" "last_name" "Illesley" "email" "gillesleylq@alexa.com" "gender" "female" "ip_address" "1.35.206.89" "country" "South Korea" "country_code" "KR" "city" "Kinzan" "longitude" "127.48889" "latitude" "36.10306" "last_login" "1598854715" +HSET "user:1784" "first_name" "Cyndia" "last_name" "Artois" "email" "cartoislr@bizjournals.com" "gender" "female" "ip_address" "130.6.171.219" "country" "Russia" "country_code" "RU" "city" "Torbeyevo" "longitude" "43.1704696" "latitude" "54.1407588" "last_login" "1582836141" +HSET "user:1785" "first_name" "Ira" "last_name" "Cases" "email" "icasesls@miitbeian.gov.cn" "gender" "male" "ip_address" "168.47.76.50" "country" "Libya" "country_code" "LY" "city" "Tripoli" "longitude" "13.1913383" "latitude" "32.8872094" "last_login" "1592004987" +HSET "user:1786" "first_name" "Lennard" "last_name" "Hurren" "email" "lhurrenlt@furl.net" "gender" "male" "ip_address" "176.33.18.209" "country" "Russia" "country_code" "RU" "city" "Shirokovskiy" "longitude" "57.787098" "latitude" "58.85886" "last_login" "1581835211" +HSET "user:1787" "first_name" "Enrico" "last_name" "LLelweln" "email" "ellelwelnlu@bloglovin.com" "gender" "male" "ip_address" "75.57.160.82" "country" "China" "country_code" "CN" "city" "Jinshi" "longitude" "111.877499" "latitude" "29.60548" "last_login" "1592267725" +HSET "user:1788" "first_name" "Celeste" "last_name" "McQuilty" "email" "cmcquiltylv@goo.gl" "gender" "female" "ip_address" "23.249.235.21" "country" "Indonesia" "country_code" "ID" "city" "Jagong" "longitude" "111.2517127" "latitude" "-7.0511949" "last_login" "1598136178" +HSET "user:1789" "first_name" "Boigie" "last_name" "Maberley" "email" "bmaberleylw@topsy.com" "gender" "male" "ip_address" "98.110.235.21" "country" "Portugal" "country_code" "PT" "city" "Vila Alva" "longitude" "-7.9000381" "latitude" "38.2498796" "last_login" "1579709703" +HSET "user:1790" "first_name" "Harald" "last_name" "Strand" "email" "hstrandlx@opera.com" "gender" "male" "ip_address" "38.9.108.216" "country" "Belarus" "country_code" "BY" "city" "Masty" "longitude" "24.5338655" "latitude" "53.4102363" "last_login" "1568729303" +HSET "user:1791" "first_name" "Kayley" "last_name" "Orr" "email" "korrly@godaddy.com" "gender" "female" "ip_address" "62.32.189.208" "country" "Russia" "country_code" "RU" "city" "Severnyy" "longitude" "41.4475479" "latitude" "52.6545685" "last_login" "1573877589" +HSET "user:1792" "first_name" "Tillie" "last_name" "Swynley" "email" "tswynleylz@npr.org" "gender" "female" "ip_address" "149.184.141.32" "country" "China" "country_code" "CN" "city" "Chengyang" "longitude" "120.39631" "latitude" "36.307064" "last_login" "1593631437" +HSET "user:1793" "first_name" "Leonardo" "last_name" "Zanettini" "email" "lzanettinim0@artisteer.com" "gender" "male" "ip_address" "120.225.133.245" "country" "Benin" "country_code" "BJ" "city" "Bohicon" "longitude" "2.0714223" "latitude" "7.1797684" "last_login" "1598578826" +HSET "user:1794" "first_name" "Laryssa" "last_name" "Ambrogi" "email" "lambrogim1@vk.com" "gender" "female" "ip_address" "20.220.190.57" "country" "China" "country_code" "CN" "city" "Jianghua" "longitude" "111.579535" "latitude" "25.185809" "last_login" "1597335498" +HSET "user:1795" "first_name" "Petra" "last_name" "Dudny" "email" "pdudnym2@blogger.com" "gender" "female" "ip_address" "24.100.96.216" "country" "Bulgaria" "country_code" "BG" "city" "Kresna" "longitude" "25.9522679" "latitude" "43.8533322" "last_login" "1595904371" +HSET "user:1796" "first_name" "Staffard" "last_name" "Brookes" "email" "sbrookesm3@usa.gov" "gender" "male" "ip_address" "194.103.29.139" "country" "Ukraine" "country_code" "UA" "city" "Sambir" "longitude" "23.2065501" "latitude" "49.5207147" "last_login" "1585244524" +HSET "user:1797" "first_name" "Barny" "last_name" "De La Hay" "email" "bdelahaym4@cdc.gov" "gender" "male" "ip_address" "188.89.114.21" "country" "Sierra Leone" "country_code" "SL" "city" "Mobai" "longitude" "-11.983333" "latitude" "8.3" "last_login" "1598857406" +HSET "user:1798" "first_name" "Sara" "last_name" "Anyene" "email" "sanyenem5@altervista.org" "gender" "female" "ip_address" "71.214.74.226" "country" "Vietnam" "country_code" "VN" "city" "Vũ Quang" "longitude" "105.4771084" "latitude" "18.2865589" "last_login" "1590558865" +HSET "user:1799" "first_name" "Park" "last_name" "Mazonowicz" "email" "pmazonowiczm6@purevolume.com" "gender" "male" "ip_address" "131.196.62.240" "country" "Indonesia" "country_code" "ID" "city" "Wates" "longitude" "110.1434668" "latitude" "-7.893728" "last_login" "1576392712" +HSET "user:1800" "first_name" "Lynn" "last_name" "Olcot" "email" "lolcotm7@dedecms.com" "gender" "male" "ip_address" "21.170.135.179" "country" "Jordan" "country_code" "JO" "city" "Ḩakamā" "longitude" "35.8695307" "latitude" "32.5816265" "last_login" "1581487993" +HSET "user:1801" "first_name" "Berty" "last_name" "Trimmill" "email" "btrimmillm8@cdc.gov" "gender" "female" "ip_address" "136.27.253.115" "country" "Indonesia" "country_code" "ID" "city" "Buniaga" "longitude" "106.8093807" "latitude" "-6.5961314" "last_login" "1573704945" +HSET "user:1802" "first_name" "Benedict" "last_name" "Farherty" "email" "bfarhertym9@google.fr" "gender" "male" "ip_address" "247.57.21.58" "country" "Indonesia" "country_code" "ID" "city" "Jabranti" "longitude" "108.6828838" "latitude" "-7.1272731" "last_login" "1586981142" +HSET "user:1803" "first_name" "Kennett" "last_name" "Neeves" "email" "kneevesma@wsj.com" "gender" "male" "ip_address" "152.239.70.115" "country" "Czech Republic" "country_code" "CZ" "city" "Štěchovice" "longitude" "13.7655233" "latitude" "49.2554075" "last_login" "1572387471" +HSET "user:1804" "first_name" "Trula" "last_name" "Catford" "email" "tcatfordmb@ustream.tv" "gender" "female" "ip_address" "243.221.192.61" "country" "China" "country_code" "CN" "city" "Yinglong" "longitude" "10.2247836" "latitude" "50.3331127" "last_login" "1595275233" +HSET "user:1805" "first_name" "Bobbie" "last_name" "Ashdown" "email" "bashdownmc@msu.edu" "gender" "female" "ip_address" "98.201.238.137" "country" "China" "country_code" "CN" "city" "Yanshi" "longitude" "112.789534" "latitude" "34.72722" "last_login" "1589025545" +HSET "user:1806" "first_name" "Curr" "last_name" "Munks" "email" "cmunksmd@eventbrite.com" "gender" "male" "ip_address" "78.241.109.139" "country" "Poland" "country_code" "PL" "city" "Zbrosławice" "longitude" "18.7082571" "latitude" "50.4072694" "last_login" "1594368907" +HSET "user:1807" "first_name" "Denise" "last_name" "Risbridge" "email" "drisbridgeme@multiply.com" "gender" "female" "ip_address" "224.208.86.245" "country" "Nigeria" "country_code" "NG" "city" "Gora" "longitude" "7.255737" "latitude" "12.3508099" "last_login" "1586761224" +HSET "user:1808" "first_name" "Valentine" "last_name" "Edgecombe" "email" "vedgecombemf@yellowbook.com" "gender" "female" "ip_address" "1.33.137.137" "country" "Indonesia" "country_code" "ID" "city" "Laban" "longitude" "116.447998" "latitude" "3.07548" "last_login" "1597252890" +HSET "user:1809" "first_name" "Jeana" "last_name" "Cobley" "email" "jcobleymg@storify.com" "gender" "female" "ip_address" "82.14.133.54" "country" "Uruguay" "country_code" "UY" "city" "Maldonado" "longitude" "-54.9501708" "latitude" "-34.905408" "last_login" "1591183017" +HSET "user:1810" "first_name" "Joachim" "last_name" "Houdhury" "email" "jhoudhurymh@ameblo.jp" "gender" "male" "ip_address" "250.47.84.20" "country" "Philippines" "country_code" "PH" "city" "Corcuera" "longitude" "122.0553349" "latitude" "12.8074809" "last_login" "1590447775" +HSET "user:1811" "first_name" "Merrie" "last_name" "Braxton" "email" "mbraxtonmi@apache.org" "gender" "female" "ip_address" "153.51.169.204" "country" "China" "country_code" "CN" "city" "Muzidian" "longitude" "115.36761" "latitude" "31.188658" "last_login" "1574998950" +HSET "user:1812" "first_name" "Torin" "last_name" "Pepys" "email" "tpepysmj@tinyurl.com" "gender" "male" "ip_address" "248.230.158.210" "country" "Philippines" "country_code" "PH" "city" "Esperanza" "longitude" "121.0702642" "latitude" "14.7342524" "last_login" "1581627494" +HSET "user:1813" "first_name" "Tandy" "last_name" "Woolmington" "email" "twoolmingtonmk@hostgator.com" "gender" "female" "ip_address" "16.136.82.217" "country" "Philippines" "country_code" "PH" "city" "Ani-e" "longitude" "123.448209" "latitude" "10.61225" "last_login" "1578069092" +HSET "user:1814" "first_name" "Alexandre" "last_name" "Scamadin" "email" "ascamadinml@nytimes.com" "gender" "male" "ip_address" "7.186.127.108" "country" "Poland" "country_code" "PL" "city" "Wijewo" "longitude" "16.2061552" "latitude" "51.9075123" "last_login" "1595349398" +HSET "user:1815" "first_name" "Kristopher" "last_name" "Row" "email" "krowmm@webeden.co.uk" "gender" "male" "ip_address" "218.93.76.181" "country" "Portugal" "country_code" "PT" "city" "Azaruja" "longitude" "-7.7801629" "latitude" "38.7035566" "last_login" "1571562492" +HSET "user:1816" "first_name" "Kermit" "last_name" "Staddart" "email" "kstaddartmn@elegantthemes.com" "gender" "male" "ip_address" "203.199.34.35" "country" "Spain" "country_code" "ES" "city" "Valencia" "longitude" "-0.3979657" "latitude" "39.4798873" "last_login" "1590376093" +HSET "user:1817" "first_name" "Jerrylee" "last_name" "Spyer" "email" "jspyermo@vinaora.com" "gender" "female" "ip_address" "214.235.252.221" "country" "Greece" "country_code" "GR" "city" "Aiánteio" "longitude" "23.454723" "latitude" "37.9220464" "last_login" "1595299060" +HSET "user:1818" "first_name" "Trueman" "last_name" "Hurich" "email" "thurichmp@craigslist.org" "gender" "male" "ip_address" "243.99.245.234" "country" "China" "country_code" "CN" "city" "Luotang" "longitude" "112.453926" "latitude" "34.620202" "last_login" "1582990783" +HSET "user:1819" "first_name" "Marcello" "last_name" "Jopke" "email" "mjopkemq@hc360.com" "gender" "male" "ip_address" "92.251.245.116" "country" "Russia" "country_code" "RU" "city" "Nikulino" "longitude" "38.3673637" "latitude" "55.4203835" "last_login" "1587128644" +HSET "user:1820" "first_name" "Catlaina" "last_name" "Duncklee" "email" "cdunckleemr@unc.edu" "gender" "female" "ip_address" "195.147.115.39" "country" "Indonesia" "country_code" "ID" "city" "Canga’an" "longitude" "112.5036493" "latitude" "-6.9250071" "last_login" "1595716040" +HSET "user:1821" "first_name" "Kirstin" "last_name" "Roche" "email" "krochems@rakuten.co.jp" "gender" "female" "ip_address" "144.151.166.246" "country" "Ukraine" "country_code" "UA" "city" "Luhyny" "longitude" "28.4004787" "latitude" "51.0836752" "last_login" "1576975419" +HSET "user:1822" "first_name" "Tressa" "last_name" "Wharton" "email" "twhartonmt@dailymail.co.uk" "gender" "female" "ip_address" "157.118.14.25" "country" "Indonesia" "country_code" "ID" "city" "Bagiktinggang" "longitude" "116.3038" "latitude" "-8.7482" "last_login" "1568782255" +HSET "user:1823" "first_name" "Montgomery" "last_name" "Paddeley" "email" "mpaddeleymu@mozilla.com" "gender" "male" "ip_address" "136.114.58.35" "country" "Indonesia" "country_code" "ID" "city" "Pitai" "longitude" "123.630501" "latitude" "-10.01236" "last_login" "1570936351" +HSET "user:1824" "first_name" "Franky" "last_name" "Coyish" "email" "fcoyishmv@archive.org" "gender" "male" "ip_address" "94.25.70.34" "country" "Philippines" "country_code" "PH" "city" "Sagana" "longitude" "121.1472247" "latitude" "15.5700166" "last_login" "1573311112" +HSET "user:1825" "first_name" "Tanner" "last_name" "Shane" "email" "tshanemw@plala.or.jp" "gender" "male" "ip_address" "251.119.163.216" "country" "Brazil" "country_code" "BR" "city" "Rio Preto da Eva" "longitude" "-59.7002779" "latitude" "-2.6986297" "last_login" "1582580124" +HSET "user:1826" "first_name" "Nanci" "last_name" "Bushe" "email" "nbushemx@imgur.com" "gender" "female" "ip_address" "206.218.186.25" "country" "Portugal" "country_code" "PT" "city" "Giesteira" "longitude" "-8.6717798" "latitude" "39.5835818" "last_login" "1588255082" +HSET "user:1827" "first_name" "Red" "last_name" "Gaymar" "email" "rgaymarmy@twitter.com" "gender" "male" "ip_address" "91.52.18.113" "country" "Syria" "country_code" "SY" "city" "Darkūsh" "longitude" "36.3938121" "latitude" "35.991705" "last_login" "1570416332" +HSET "user:1828" "first_name" "Maggy" "last_name" "Pyer" "email" "mpyermz@mac.com" "gender" "female" "ip_address" "42.219.195.71" "country" "Indonesia" "country_code" "ID" "city" "Wonopringgo" "longitude" "109.6341727" "latitude" "-6.9947862" "last_login" "1590686883" +HSET "user:1829" "first_name" "Fianna" "last_name" "Lowers" "email" "flowersn0@senate.gov" "gender" "female" "ip_address" "111.76.203.63" "country" "Sudan" "country_code" "SD" "city" "Kosti" "longitude" "32.650351" "latitude" "13.1234679" "last_login" "1595489004" +HSET "user:1830" "first_name" "Opalina" "last_name" "Stroband" "email" "ostrobandn1@ucoz.com" "gender" "female" "ip_address" "89.188.86.214" "country" "China" "country_code" "CN" "city" "Tongqiao" "longitude" "114.300299" "latitude" "23.035191" "last_login" "1569808460" +HSET "user:1831" "first_name" "Lyda" "last_name" "Cranidge" "email" "lcranidgen2@ucoz.ru" "gender" "female" "ip_address" "231.114.77.140" "country" "Norway" "country_code" "NO" "city" "Skien" "longitude" "9.5943509" "latitude" "59.2264806" "last_login" "1570414519" +HSET "user:1832" "first_name" "Kiley" "last_name" "Ferrara" "email" "kferraran3@hud.gov" "gender" "male" "ip_address" "215.108.91.220" "country" "Poland" "country_code" "PL" "city" "Stara Kornica" "longitude" "22.9436435" "latitude" "52.1741837" "last_login" "1580491795" +HSET "user:1833" "first_name" "Mel" "last_name" "Oen" "email" "moenn4@weebly.com" "gender" "female" "ip_address" "116.240.158.150" "country" "Portugal" "country_code" "PT" "city" "Almodôvar" "longitude" "-8.0644068" "latitude" "37.5096505" "last_login" "1571652256" +HSET "user:1834" "first_name" "Mindy" "last_name" "Bidnall" "email" "mbidnalln5@t.co" "gender" "female" "ip_address" "229.69.24.62" "country" "Yemen" "country_code" "YE" "city" "‘Amrān" "longitude" "43.9436788" "latitude" "16.2569214" "last_login" "1597847370" +HSET "user:1835" "first_name" "Pancho" "last_name" "Malloch" "email" "pmallochn6@japanpost.jp" "gender" "male" "ip_address" "179.21.162.76" "country" "Indonesia" "country_code" "ID" "city" "Segong" "longitude" "108.6472527" "latitude" "-7.0773806" "last_login" "1586463782" +HSET "user:1836" "first_name" "Artair" "last_name" "Kordovani" "email" "akordovanin7@theglobeandmail.com" "gender" "male" "ip_address" "75.16.53.191" "country" "Vietnam" "country_code" "VN" "city" "Cam Ranh" "longitude" "109.1701666" "latitude" "11.893334" "last_login" "1596318684" +HSET "user:1837" "first_name" "Gardie" "last_name" "Dowe" "email" "gdowen8@ning.com" "gender" "male" "ip_address" "23.48.115.66" "country" "China" "country_code" "CN" "city" "Baohe" "longitude" "117.309522" "latitude" "31.793861" "last_login" "1580949433" +HSET "user:1838" "first_name" "Ravid" "last_name" "Boggis" "email" "rboggisn9@usnews.com" "gender" "male" "ip_address" "224.116.151.107" "country" "Mexico" "country_code" "MX" "city" "Tierra y Libertad" "longitude" "-98.2151462" "latitude" "19.0561748" "last_login" "1587259506" +HSET "user:1839" "first_name" "Mariana" "last_name" "Mc Caughen" "email" "mmccaughenna@google.co.jp" "gender" "female" "ip_address" "100.5.6.151" "country" "China" "country_code" "CN" "city" "Weiguo" "longitude" "132.759724" "latitude" "47.880287" "last_login" "1576588804" +HSET "user:1840" "first_name" "Charlotta" "last_name" "Keyse" "email" "ckeysenb@cnet.com" "gender" "female" "ip_address" "170.79.213.23" "country" "France" "country_code" "FR" "city" "Montpellier" "longitude" "-0.8453268" "latitude" "47.3752386" "last_login" "1596581957" +HSET "user:1841" "first_name" "Angus" "last_name" "Grinyakin" "email" "agrinyakinnc@ed.gov" "gender" "male" "ip_address" "23.39.110.96" "country" "Poland" "country_code" "PL" "city" "Ostrów Wielkopolski" "longitude" "17.8047355" "latitude" "51.6205979" "last_login" "1590438564" +HSET "user:1842" "first_name" "Paxton" "last_name" "Cowden" "email" "pcowdennd@thetimes.co.uk" "gender" "male" "ip_address" "190.193.29.69" "country" "Sweden" "country_code" "SE" "city" "Piteå" "longitude" "21.5024355" "latitude" "65.3436554" "last_login" "1585612023" +HSET "user:1843" "first_name" "Delmor" "last_name" "Casol" "email" "dcasolne@myspace.com" "gender" "male" "ip_address" "91.111.171.241" "country" "Armenia" "country_code" "AM" "city" "Tsaghkunk’" "longitude" "44.8736389" "latitude" "40.5763147" "last_login" "1591204078" +HSET "user:1844" "first_name" "Dimitry" "last_name" "Emblen" "email" "demblennf@abc.net.au" "gender" "male" "ip_address" "61.189.168.22" "country" "Brazil" "country_code" "BR" "city" "São Roque" "longitude" "-47.1322342" "latitude" "-23.5257248" "last_login" "1575376245" +HSET "user:1845" "first_name" "Westbrooke" "last_name" "Morgue" "email" "wmorgueng@comcast.net" "gender" "male" "ip_address" "36.8.187.235" "country" "Bulgaria" "country_code" "BG" "city" "Bolyarovo" "longitude" "26.7817371" "latitude" "42.1988667" "last_login" "1575276892" +HSET "user:1846" "first_name" "Mateo" "last_name" "Littleton" "email" "mlittletonnh@drupal.org" "gender" "male" "ip_address" "97.6.41.10" "country" "Greece" "country_code" "GR" "city" "Lamía" "longitude" "22.4349003" "latitude" "38.8959734" "last_login" "1584225714" +HSET "user:1847" "first_name" "Constantine" "last_name" "Vany" "email" "cvanyni@bluehost.com" "gender" "male" "ip_address" "42.14.55.181" "country" "Albania" "country_code" "AL" "city" "Frashër" "longitude" "20.4284431" "latitude" "40.3672602" "last_login" "1592642385" +HSET "user:1848" "first_name" "Louisa" "last_name" "Janku" "email" "ljankunj@bbb.org" "gender" "female" "ip_address" "1.223.31.8" "country" "United States" "country_code" "US" "city" "New Hyde Park" "longitude" "-73.6833119" "latitude" "40.7419285" "last_login" "1594615990" +HSET "user:1849" "first_name" "Gustavus" "last_name" "Montford" "email" "gmontfordnk@drupal.org" "gender" "male" "ip_address" "91.232.124.28" "country" "Portugal" "country_code" "PT" "city" "Sampaio" "longitude" "-9.0952451" "latitude" "38.4664687" "last_login" "1572556596" +HSET "user:1850" "first_name" "Lilli" "last_name" "Haymes" "email" "lhaymesnl@nifty.com" "gender" "female" "ip_address" "0.106.44.14" "country" "Brazil" "country_code" "BR" "city" "Freguesia do Ribeirao da Ilha" "longitude" "-48.563999" "latitude" "-27.7203552" "last_login" "1597434523" +HSET "user:1851" "first_name" "Caril" "last_name" "Ladbury" "email" "cladburynm@topsy.com" "gender" "female" "ip_address" "28.46.108.99" "country" "United States" "country_code" "US" "city" "San Jose" "longitude" "-121.89" "latitude" "37.39" "last_login" "1582538042" +HSET "user:1852" "first_name" "Giustina" "last_name" "Comley" "email" "gcomleynn@jimdo.com" "gender" "female" "ip_address" "84.1.88.33" "country" "Indonesia" "country_code" "ID" "city" "Pangawaren" "longitude" "108.8640607" "latitude" "-7.3897541" "last_login" "1575996818" +HSET "user:1853" "first_name" "Faydra" "last_name" "Milmith" "email" "fmilmithno@berkeley.edu" "gender" "female" "ip_address" "226.195.169.141" "country" "Ecuador" "country_code" "EC" "city" "Chone" "longitude" "-80.109357" "latitude" "-0.7140022" "last_login" "1593357111" +HSET "user:1854" "first_name" "Matteo" "last_name" "Balloch" "email" "mballochnp@example.com" "gender" "male" "ip_address" "234.191.237.80" "country" "China" "country_code" "CN" "city" "Linquan" "longitude" "115.263115" "latitude" "33.039715" "last_login" "1596066372" +HSET "user:1855" "first_name" "Wendi" "last_name" "Schruyers" "email" "wschruyersnq@ameblo.jp" "gender" "female" "ip_address" "20.130.137.140" "country" "Philippines" "country_code" "PH" "city" "Bagay" "longitude" "121.7170078" "latitude" "17.6282027" "last_login" "1593574316" +HSET "user:1856" "first_name" "Sibeal" "last_name" "Tidcombe" "email" "stidcombenr@wordpress.org" "gender" "female" "ip_address" "255.93.167.50" "country" "France" "country_code" "FR" "city" "Auch" "longitude" "0.5815411" "latitude" "43.6297603" "last_login" "1570406748" +HSET "user:1857" "first_name" "Nicko" "last_name" "McPherson" "email" "nmcphersonns@ucsd.edu" "gender" "male" "ip_address" "143.4.74.215" "country" "United States" "country_code" "US" "city" "Philadelphia" "longitude" "-75.2537397" "latitude" "39.9759847" "last_login" "1568891159" +HSET "user:1858" "first_name" "Felic" "last_name" "Guiduzzi" "email" "fguiduzzint@purevolume.com" "gender" "male" "ip_address" "21.81.204.93" "country" "Uganda" "country_code" "UG" "city" "Kabale" "longitude" "29.9856157" "latitude" "-1.241956" "last_login" "1577944121" +HSET "user:1859" "first_name" "Ilysa" "last_name" "Siggers" "email" "isiggersnu@sciencedaily.com" "gender" "female" "ip_address" "109.145.231.89" "country" "Argentina" "country_code" "AR" "city" "General Ramírez" "longitude" "-68.8225775" "latitude" "-32.8676273" "last_login" "1569389127" +HSET "user:1860" "first_name" "Lisabeth" "last_name" "Campaigne" "email" "lcampaignenv@illinois.edu" "gender" "female" "ip_address" "147.114.17.72" "country" "Indonesia" "country_code" "ID" "city" "Ringin Kembar" "longitude" "112.7211714" "latitude" "-8.3083083" "last_login" "1594842643" +HSET "user:1861" "first_name" "Rosemarie" "last_name" "Hodcroft" "email" "rhodcroftnw@hp.com" "gender" "female" "ip_address" "181.122.59.11" "country" "China" "country_code" "CN" "city" "Huangbei" "longitude" "115.744112" "latitude" "24.412155" "last_login" "1580028364" +HSET "user:1862" "first_name" "Henderson" "last_name" "Schurcke" "email" "hschurckenx@google.it" "gender" "male" "ip_address" "125.168.51.29" "country" "Tunisia" "country_code" "TN" "city" "Jendouba" "longitude" "8.7756556" "latitude" "36.5072263" "last_login" "1590155430" +HSET "user:1863" "first_name" "Laurens" "last_name" "Kubasiewicz" "email" "lkubasiewiczny@youku.com" "gender" "male" "ip_address" "38.13.125.66" "country" "China" "country_code" "CN" "city" "Baiquan" "longitude" "126.100213" "latitude" "47.59585" "last_login" "1593126746" +HSET "user:1864" "first_name" "Callie" "last_name" "Aime" "email" "caimenz@ezinearticles.com" "gender" "female" "ip_address" "5.129.25.177" "country" "Russia" "country_code" "RU" "city" "Priozërsk" "longitude" "30.1341099" "latitude" "61.0390194" "last_login" "1598374996" +HSET "user:1865" "first_name" "Suzi" "last_name" "Wort" "email" "sworto0@delicious.com" "gender" "female" "ip_address" "250.218.222.36" "country" "Ukraine" "country_code" "UA" "city" "Novi Bilokorovychi" "longitude" "28.0490173" "latitude" "51.1134675" "last_login" "1582730309" +HSET "user:1866" "first_name" "Caz" "last_name" "Tunnacliffe" "email" "ctunnacliffeo1@exblog.jp" "gender" "male" "ip_address" "230.49.223.101" "country" "France" "country_code" "FR" "city" "Montauban" "longitude" "1.378056" "latitude" "44.025555" "last_login" "1591124429" +HSET "user:1867" "first_name" "Tadeas" "last_name" "Surridge" "email" "tsurridgeo2@mac.com" "gender" "male" "ip_address" "248.75.7.129" "country" "Malaysia" "country_code" "MY" "city" "Ipoh" "longitude" "101.1064003" "latitude" "4.6096768" "last_login" "1570442993" +HSET "user:1868" "first_name" "Raynard" "last_name" "Dandie" "email" "rdandieo3@last.fm" "gender" "male" "ip_address" "121.40.60.236" "country" "France" "country_code" "FR" "city" "Paris 11" "longitude" "2.3237084" "latitude" "48.8610504" "last_login" "1586846860" +HSET "user:1869" "first_name" "Hayley" "last_name" "Hallybone" "email" "hhallyboneo4@home.pl" "gender" "female" "ip_address" "124.25.48.210" "country" "Portugal" "country_code" "PT" "city" "Carvalho" "longitude" "-8.324549" "latitude" "42.038041" "last_login" "1575803259" +HSET "user:1870" "first_name" "Ulysses" "last_name" "Southers" "email" "usoutherso5@woothemes.com" "gender" "male" "ip_address" "61.199.249.196" "country" "France" "country_code" "FR" "city" "Saint-Germain-en-Laye" "longitude" "2.0743633" "latitude" "48.8951749" "last_login" "1582873200" +HSET "user:1871" "first_name" "Tan" "last_name" "Lagneaux" "email" "tlagneauxo6@yale.edu" "gender" "male" "ip_address" "120.76.162.98" "country" "Cuba" "country_code" "CU" "city" "Habana del Este" "longitude" "-82.1604849" "latitude" "23.1041815" "last_login" "1572221732" +HSET "user:1872" "first_name" "Lynnette" "last_name" "Crosoer" "email" "lcrosoero7@mit.edu" "gender" "female" "ip_address" "27.95.134.9" "country" "China" "country_code" "CN" "city" "Hengshui" "longitude" "115.670177" "latitude" "37.73892" "last_login" "1568979342" +HSET "user:1873" "first_name" "Tabatha" "last_name" "Balnave" "email" "tbalnaveo8@networkadvertising.org" "gender" "female" "ip_address" "109.56.231.167" "country" "China" "country_code" "CN" "city" "Guantou" "longitude" "119.569323" "latitude" "26.131056" "last_login" "1598014591" +HSET "user:1874" "first_name" "Gabriella" "last_name" "Trymme" "email" "gtrymmeo9@bandcamp.com" "gender" "female" "ip_address" "95.174.136.5" "country" "France" "country_code" "FR" "city" "Firminy" "longitude" "4.287114" "latitude" "45.3875142" "last_login" "1575968219" +HSET "user:1875" "first_name" "Carrol" "last_name" "Astbery" "email" "castberyoa@businesswire.com" "gender" "male" "ip_address" "195.75.249.2" "country" "China" "country_code" "CN" "city" "Ya’ngan" "longitude" "94.43722" "latitude" "31.83889" "last_login" "1575250341" +HSET "user:1876" "first_name" "Teresita" "last_name" "Lazonby" "email" "tlazonbyob@sogou.com" "gender" "female" "ip_address" "35.41.181.13" "country" "Austria" "country_code" "AT" "city" "Niederwaldkirchen" "longitude" "14.0838042" "latitude" "48.4508261" "last_login" "1576490489" +HSET "user:1877" "first_name" "Marge" "last_name" "Rymmer" "email" "mrymmeroc@diigo.com" "gender" "female" "ip_address" "65.67.98.4" "country" "Philippines" "country_code" "PH" "city" "Ramain" "longitude" "124.3465661" "latitude" "8.0030266" "last_login" "1580948380" +HSET "user:1878" "first_name" "Kathie" "last_name" "Upwood" "email" "kupwoodod@e-recht24.de" "gender" "female" "ip_address" "173.74.26.57" "country" "Indonesia" "country_code" "ID" "city" "Banggel" "longitude" "111.4207572" "latitude" "-8.0060188" "last_login" "1595058480" +HSET "user:1879" "first_name" "Fania" "last_name" "Tiron" "email" "ftironoe@free.fr" "gender" "female" "ip_address" "127.210.19.197" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Srebrenik" "longitude" "18.4918915" "latitude" "44.7074706" "last_login" "1595571658" +HSET "user:1880" "first_name" "Agnese" "last_name" "Threadgill" "email" "athreadgillof@springer.com" "gender" "female" "ip_address" "154.114.133.86" "country" "Morocco" "country_code" "MA" "city" "Taounate" "longitude" "-4.6398693" "latitude" "34.536917" "last_login" "1592476638" +HSET "user:1881" "first_name" "Brooke" "last_name" "Parfrey" "email" "bparfreyog@last.fm" "gender" "male" "ip_address" "53.193.75.46" "country" "Russia" "country_code" "RU" "city" "Tukan" "longitude" "61.2971487" "latitude" "55.1613358" "last_login" "1572910103" +HSET "user:1882" "first_name" "Richardo" "last_name" "Maddigan" "email" "rmaddiganoh@163.com" "gender" "male" "ip_address" "233.89.235.152" "country" "China" "country_code" "CN" "city" "Zhongxing" "longitude" "103.620536" "latitude" "30.920219" "last_login" "1595964811" +HSET "user:1883" "first_name" "Welbie" "last_name" "Cowitz" "email" "wcowitzoi@soundcloud.com" "gender" "male" "ip_address" "75.56.117.246" "country" "Peru" "country_code" "PE" "city" "Miraflores" "longitude" "-77.0315913" "latitude" "-12.111062" "last_login" "1587562618" +HSET "user:1884" "first_name" "Hayward" "last_name" "Cescotti" "email" "hcescottioj@etsy.com" "gender" "male" "ip_address" "231.121.140.227" "country" "China" "country_code" "CN" "city" "Yidu" "longitude" "111.450006" "latitude" "30.378326" "last_login" "1570088285" +HSET "user:1885" "first_name" "Lita" "last_name" "Huccaby" "email" "lhuccabyok@ning.com" "gender" "female" "ip_address" "53.5.214.56" "country" "Indonesia" "country_code" "ID" "city" "Bangunsari" "longitude" "111.0847891" "latitude" "-8.1938024" "last_login" "1588217527" +HSET "user:1886" "first_name" "Torrence" "last_name" "Chimenti" "email" "tchimentiol@mapy.cz" "gender" "male" "ip_address" "37.50.30.177" "country" "Syria" "country_code" "SY" "city" "Jindayris" "longitude" "36.6889" "latitude" "36.39535" "last_login" "1583182574" +HSET "user:1887" "first_name" "Monika" "last_name" "Walisiak" "email" "mwalisiakom@cnet.com" "gender" "female" "ip_address" "1.138.219.23" "country" "China" "country_code" "CN" "city" "Hekou" "longitude" "103.93935" "latitude" "22.529403" "last_login" "1587558559" +HSET "user:1888" "first_name" "Jessamyn" "last_name" "Thaine" "email" "jthaineon@cam.ac.uk" "gender" "female" "ip_address" "158.9.3.207" "country" "Poland" "country_code" "PL" "city" "Chodów" "longitude" "19.034146" "latitude" "52.2542902" "last_login" "1592290459" +HSET "user:1889" "first_name" "Teressa" "last_name" "Stobo" "email" "tstobooo@google.it" "gender" "female" "ip_address" "209.208.87.43" "country" "Bulgaria" "country_code" "BG" "city" "Dolna Banya" "longitude" "23.7647948" "latitude" "42.3106792" "last_login" "1569440296" +HSET "user:1890" "first_name" "Livia" "last_name" "Doucette" "email" "ldoucetteop@nps.gov" "gender" "female" "ip_address" "38.100.109.112" "country" "Sweden" "country_code" "SE" "city" "Trelleborg" "longitude" "13.1416765" "latitude" "55.3929058" "last_login" "1591575712" +HSET "user:1891" "first_name" "Aloysius" "last_name" "Tesh" "email" "ateshoq@goo.ne.jp" "gender" "male" "ip_address" "18.233.88.176" "country" "Guatemala" "country_code" "GT" "city" "Salamá" "longitude" "-90.318729" "latitude" "15.098618" "last_login" "1594510827" +HSET "user:1892" "first_name" "Linus" "last_name" "Yoxall" "email" "lyoxallor@tuttocitta.it" "gender" "male" "ip_address" "117.8.152.73" "country" "China" "country_code" "CN" "city" "Wuci" "longitude" "120.31191" "latitude" "31.491169" "last_login" "1572545319" +HSET "user:1893" "first_name" "Kattie" "last_name" "Tackle" "email" "ktackleos@eepurl.com" "gender" "female" "ip_address" "167.9.184.191" "country" "Russia" "country_code" "RU" "city" "Beringovskiy" "longitude" "179.35046" "latitude" "63.06101" "last_login" "1595432482" +HSET "user:1894" "first_name" "Natale" "last_name" "Berget" "email" "nbergetot@mozilla.com" "gender" "male" "ip_address" "70.55.42.158" "country" "Azerbaijan" "country_code" "AZ" "city" "Bakıxanov" "longitude" "49.950331" "latitude" "40.4249808" "last_login" "1587505424" +HSET "user:1895" "first_name" "Leonhard" "last_name" "Betonia" "email" "lbetoniaou@bigcartel.com" "gender" "male" "ip_address" "226.103.214.106" "country" "Kenya" "country_code" "KE" "city" "Keruguya" "longitude" "37.2784835" "latitude" "-0.4993281" "last_login" "1596285389" +HSET "user:1896" "first_name" "Jaquelin" "last_name" "Pouton" "email" "jpoutonov@businesswire.com" "gender" "female" "ip_address" "201.88.22.43" "country" "China" "country_code" "CN" "city" "Jiqu" "longitude" "112.542428" "latitude" "23.875208" "last_login" "1570644711" +HSET "user:1897" "first_name" "Gualterio" "last_name" "Grimsey" "email" "ggrimseyow@themeforest.net" "gender" "male" "ip_address" "34.186.27.53" "country" "Iran" "country_code" "IR" "city" "Gālīkesh" "longitude" "55.4305486" "latitude" "37.2697222" "last_login" "1575650534" +HSET "user:1898" "first_name" "Vivi" "last_name" "Meco" "email" "vmecoox@smh.com.au" "gender" "female" "ip_address" "79.214.32.153" "country" "United States" "country_code" "US" "city" "Chicago" "longitude" "-87.7517295" "latitude" "41.9720786" "last_login" "1578918828" +HSET "user:1899" "first_name" "Milt" "last_name" "Dhenin" "email" "mdheninoy@ezinearticles.com" "gender" "male" "ip_address" "102.112.5.2" "country" "Guatemala" "country_code" "GT" "city" "Pueblo Nuevo Viñas" "longitude" "-90.4751359" "latitude" "14.2233899" "last_login" "1589493044" +HSET "user:1900" "first_name" "Nanette" "last_name" "Brownsett" "email" "nbrownsettoz@walmart.com" "gender" "female" "ip_address" "206.50.141.185" "country" "Australia" "country_code" "AU" "city" "Sydney" "longitude" "151.2502275" "latitude" "-33.7974423" "last_login" "1576093341" +HSET "user:1901" "first_name" "Shirline" "last_name" "Dedham" "email" "sdedhamp0@cocolog-nifty.com" "gender" "female" "ip_address" "171.215.244.9" "country" "Bangladesh" "country_code" "BD" "city" "Khulna" "longitude" "89.5403279" "latitude" "22.845641" "last_login" "1593436690" +HSET "user:1902" "first_name" "Clayborne" "last_name" "Krinks" "email" "ckrinksp1@hatena.ne.jp" "gender" "male" "ip_address" "165.4.247.85" "country" "China" "country_code" "CN" "city" "Hejiaping" "longitude" "110.836537" "latitude" "30.60215" "last_login" "1590432387" +HSET "user:1903" "first_name" "Ebenezer" "last_name" "Draycott" "email" "edraycottp2@tamu.edu" "gender" "male" "ip_address" "216.57.151.69" "country" "Peru" "country_code" "PE" "city" "Lloque" "longitude" "-78.1546617" "latitude" "-8.2641378" "last_login" "1589406015" +HSET "user:1904" "first_name" "Anton" "last_name" "McDowall" "email" "amcdowallp3@cocolog-nifty.com" "gender" "male" "ip_address" "206.107.90.147" "country" "Philippines" "country_code" "PH" "city" "Capalayan" "longitude" "125.535149" "latitude" "9.7441" "last_login" "1574378026" +HSET "user:1905" "first_name" "Annissa" "last_name" "Hazley" "email" "ahazleyp4@taobao.com" "gender" "female" "ip_address" "142.8.14.87" "country" "China" "country_code" "CN" "city" "Sandaogou" "longitude" "115.437602" "latitude" "41.468342" "last_login" "1570694124" +HSET "user:1906" "first_name" "Elle" "last_name" "Blazynski" "email" "eblazynskip5@ucla.edu" "gender" "female" "ip_address" "19.37.41.128" "country" "France" "country_code" "FR" "city" "Aulnay-sous-Bois" "longitude" "2.4943891" "latitude" "48.9318625" "last_login" "1590500049" +HSET "user:1907" "first_name" "Aldric" "last_name" "Towhey" "email" "atowheyp6@instagram.com" "gender" "male" "ip_address" "100.97.135.234" "country" "Indonesia" "country_code" "ID" "city" "Modis" "longitude" "106.8240327" "latitude" "-6.1920539" "last_login" "1569806259" +HSET "user:1908" "first_name" "Wynny" "last_name" "Axup" "email" "waxupp7@cornell.edu" "gender" "female" "ip_address" "98.124.148.52" "country" "China" "country_code" "CN" "city" "Leigu" "longitude" "104.432024" "latitude" "31.774247" "last_login" "1591056824" +HSET "user:1909" "first_name" "Hamlin" "last_name" "Filip" "email" "hfilipp8@wikimedia.org" "gender" "male" "ip_address" "58.13.149.238" "country" "Canada" "country_code" "CA" "city" "Sylvan Lake" "longitude" "-114.0979947" "latitude" "52.3076201" "last_login" "1574035348" +HSET "user:1910" "first_name" "Tybie" "last_name" "Bartrap" "email" "tbartrapp9@ovh.net" "gender" "female" "ip_address" "50.218.160.108" "country" "Argentina" "country_code" "AR" "city" "Caleta Olivia" "longitude" "-68.8462541" "latitude" "-32.9701344" "last_login" "1599289125" +HSET "user:1911" "first_name" "Torey" "last_name" "Bothen" "email" "tbothenpa@wsj.com" "gender" "male" "ip_address" "162.52.2.120" "country" "China" "country_code" "CN" "city" "Zhijiang" "longitude" "111.76053" "latitude" "30.42594" "last_login" "1581799221" +HSET "user:1912" "first_name" "Jackson" "last_name" "Heatherington" "email" "jheatheringtonpb@artisteer.com" "gender" "male" "ip_address" "21.25.33.208" "country" "China" "country_code" "CN" "city" "Shiqiao" "longitude" "113.366904" "latitude" "22.948016" "last_login" "1569942023" +HSET "user:1913" "first_name" "Jillana" "last_name" "Jerratsch" "email" "jjerratschpc@dmoz.org" "gender" "female" "ip_address" "135.47.82.98" "country" "Ukraine" "country_code" "UA" "city" "Velyki Mezhyrichi" "longitude" "26.8652271" "latitude" "50.6548909" "last_login" "1570071311" +HSET "user:1914" "first_name" "Gan" "last_name" "Lyness" "email" "glynesspd@trellian.com" "gender" "male" "ip_address" "174.249.85.158" "country" "China" "country_code" "CN" "city" "Dengfeng" "longitude" "113.050581" "latitude" "34.454443" "last_login" "1596507132" +HSET "user:1915" "first_name" "Winslow" "last_name" "Bannon" "email" "wbannonpe@bloglines.com" "gender" "male" "ip_address" "168.124.96.19" "country" "Brazil" "country_code" "BR" "city" "Águas de Lindóia" "longitude" "-46.633882" "latitude" "-22.4803601" "last_login" "1594115998" +HSET "user:1916" "first_name" "Doria" "last_name" "Wallman" "email" "dwallmanpf@who.int" "gender" "female" "ip_address" "240.58.186.247" "country" "Indonesia" "country_code" "ID" "city" "Leramatang" "longitude" "123.5718" "latitude" "-8.3647" "last_login" "1591364549" +HSET "user:1917" "first_name" "Gretchen" "last_name" "Karus" "email" "gkaruspg@alexa.com" "gender" "female" "ip_address" "43.71.124.131" "country" "Brazil" "country_code" "BR" "city" "Itaberaí" "longitude" "-49.8004866" "latitude" "-16.0222492" "last_login" "1581519858" +HSET "user:1918" "first_name" "Robb" "last_name" "Cook" "email" "rcookph@pagesperso-orange.fr" "gender" "male" "ip_address" "201.83.27.66" "country" "Russia" "country_code" "RU" "city" "Khilok" "longitude" "110.4498687" "latitude" "51.3592968" "last_login" "1584199316" +HSET "user:1919" "first_name" "Brendon" "last_name" "Eccott" "email" "beccottpi@yellowpages.com" "gender" "male" "ip_address" "233.96.124.138" "country" "Indonesia" "country_code" "ID" "city" "Kaduheuleut" "longitude" "108.0012723" "latitude" "-6.8742097" "last_login" "1597376462" +HSET "user:1920" "first_name" "Wren" "last_name" "Swancock" "email" "wswancockpj@squidoo.com" "gender" "female" "ip_address" "103.66.73.80" "country" "China" "country_code" "CN" "city" "Erlangkou" "longitude" "107.415889" "latitude" "29.1203" "last_login" "1595828210" +HSET "user:1921" "first_name" "Mahalia" "last_name" "Gethyn" "email" "mgethynpk@blogspot.com" "gender" "female" "ip_address" "128.3.155.126" "country" "Portugal" "country_code" "PT" "city" "Valinhos" "longitude" "-8.3815652" "latitude" "41.226934" "last_login" "1580587037" +HSET "user:1922" "first_name" "Rinaldo" "last_name" "Wheeler" "email" "rwheelerpl@liveinternet.ru" "gender" "male" "ip_address" "37.123.73.212" "country" "Senegal" "country_code" "SN" "city" "Sémé" "longitude" "-12.9449928" "latitude" "15.2008428" "last_login" "1587658212" +HSET "user:1923" "first_name" "Merwin" "last_name" "Erangey" "email" "merangeypm@wisc.edu" "gender" "male" "ip_address" "170.185.225.50" "country" "Russia" "country_code" "RU" "city" "Yaroslavskiy" "longitude" "37.720392" "latitude" "55.8817076" "last_login" "1572427235" +HSET "user:1924" "first_name" "Damon" "last_name" "Lawlings" "email" "dlawlingspn@nba.com" "gender" "male" "ip_address" "157.134.207.110" "country" "Mexico" "country_code" "MX" "city" "Miguel Hidalgo" "longitude" "-99.0474345" "latitude" "19.2859752" "last_login" "1571135019" +HSET "user:1925" "first_name" "Burty" "last_name" "Coventry" "email" "bcoventrypo@geocities.com" "gender" "male" "ip_address" "247.201.94.60" "country" "China" "country_code" "CN" "city" "Yutan" "longitude" "-96.3966046" "latitude" "41.244729" "last_login" "1597169198" +HSET "user:1926" "first_name" "Hillary" "last_name" "Martinot" "email" "hmartinotpp@intel.com" "gender" "male" "ip_address" "97.199.100.255" "country" "Panama" "country_code" "PA" "city" "Gómez" "longitude" "-82.7387601" "latitude" "8.5657243" "last_login" "1593335490" +HSET "user:1927" "first_name" "Kellen" "last_name" "de Voiels" "email" "kdevoielspq@multiply.com" "gender" "female" "ip_address" "189.30.248.243" "country" "Paraguay" "country_code" "PY" "city" "Puerto Mayor Otaño" "longitude" "-54.7192376" "latitude" "-26.3018088" "last_login" "1582313011" +HSET "user:1928" "first_name" "Hannis" "last_name" "Collister" "email" "hcollisterpr@samsung.com" "gender" "female" "ip_address" "164.125.5.184" "country" "Czech Republic" "country_code" "CZ" "city" "Moravská Třebová" "longitude" "16.6635314" "latitude" "49.7575973" "last_login" "1577537504" +HSET "user:1929" "first_name" "Beitris" "last_name" "Hartshorn" "email" "bhartshornps@eepurl.com" "gender" "female" "ip_address" "246.85.85.86" "country" "Mexico" "country_code" "MX" "city" "Santa Cruz" "longitude" "-99.6000391" "latitude" "19.2540302" "last_login" "1584245985" +HSET "user:1930" "first_name" "Myra" "last_name" "Garroway" "email" "mgarrowaypt@addthis.com" "gender" "female" "ip_address" "136.110.79.220" "country" "China" "country_code" "CN" "city" "Chunjing" "longitude" "109.590771" "latitude" "22.191899" "last_login" "1571971742" +HSET "user:1931" "first_name" "Nancy" "last_name" "Dreng" "email" "ndrengpu@cnet.com" "gender" "female" "ip_address" "61.235.225.101" "country" "Nigeria" "country_code" "NG" "city" "Geidam" "longitude" "11.9804613" "latitude" "12.6256834" "last_login" "1593784557" +HSET "user:1932" "first_name" "Hagen" "last_name" "Rubens" "email" "hrubenspv@people.com.cn" "gender" "male" "ip_address" "40.215.203.225" "country" "United States" "country_code" "US" "city" "Santa Fe" "longitude" "-105.99" "latitude" "35.79" "last_login" "1593159566" +HSET "user:1933" "first_name" "Carin" "last_name" "Thacke" "email" "cthackepw@bandcamp.com" "gender" "female" "ip_address" "239.222.183.158" "country" "China" "country_code" "CN" "city" "Haozigang" "longitude" "112.073961" "latitude" "29.265944" "last_login" "1574260344" +HSET "user:1934" "first_name" "Remy" "last_name" "Withrington" "email" "rwithringtonpx@ameblo.jp" "gender" "female" "ip_address" "246.58.112.110" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "-68.1430168" "latitude" "47.0168309" "last_login" "1587402533" +HSET "user:1935" "first_name" "Terrence" "last_name" "Elphinstone" "email" "telphinstonepy@webs.com" "gender" "male" "ip_address" "161.255.170.208" "country" "France" "country_code" "FR" "city" "Guyancourt" "longitude" "2.054647" "latitude" "48.7865463" "last_login" "1576010009" +HSET "user:1936" "first_name" "Lari" "last_name" "Phillippo" "email" "lphillippopz@berkeley.edu" "gender" "female" "ip_address" "107.26.127.203" "country" "Myanmar" "country_code" "MM" "city" "Myanaung" "longitude" "95.3207069" "latitude" "18.2707494" "last_login" "1572493804" +HSET "user:1937" "first_name" "Edward" "last_name" "Clemmensen" "email" "eclemmensenq0@theatlantic.com" "gender" "male" "ip_address" "80.251.53.251" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1572985907" +HSET "user:1938" "first_name" "Cob" "last_name" "Baldery" "email" "cbalderyq1@bloglovin.com" "gender" "male" "ip_address" "59.98.174.241" "country" "Zambia" "country_code" "ZM" "city" "Mansa" "longitude" "28.8888064" "latitude" "-11.1892053" "last_login" "1586343333" +HSET "user:1939" "first_name" "Peder" "last_name" "Gannicott" "email" "pgannicottq2@geocities.jp" "gender" "male" "ip_address" "96.4.58.235" "country" "Indonesia" "country_code" "ID" "city" "Garahan" "longitude" "113.9001141" "latitude" "-8.2156978" "last_login" "1577830516" +HSET "user:1940" "first_name" "Lucien" "last_name" "Gascoyen" "email" "lgascoyenq3@chron.com" "gender" "male" "ip_address" "81.101.1.128" "country" "Russia" "country_code" "RU" "city" "Svetlyy Yar" "longitude" "44.7808312" "latitude" "48.4790559" "last_login" "1582831906" +HSET "user:1941" "first_name" "Phaidra" "last_name" "Pawley" "email" "ppawleyq4@hatena.ne.jp" "gender" "female" "ip_address" "196.237.147.7" "country" "Philippines" "country_code" "PH" "city" "Sampao" "longitude" "125.627616" "latitude" "7.619032" "last_login" "1588694378" +HSET "user:1942" "first_name" "Trudi" "last_name" "Wardhaw" "email" "twardhawq5@so-net.ne.jp" "gender" "female" "ip_address" "231.42.58.46" "country" "Poland" "country_code" "PL" "city" "Góra Kalwaria" "longitude" "21.215337" "latitude" "51.976466" "last_login" "1574556424" +HSET "user:1943" "first_name" "Ernestine" "last_name" "Kightly" "email" "ekightlyq6@google.cn" "gender" "female" "ip_address" "122.224.81.133" "country" "Indonesia" "country_code" "ID" "city" "Woja" "longitude" "118.4163103" "latitude" "-8.5111152" "last_login" "1584488507" +HSET "user:1944" "first_name" "Hadley" "last_name" "Donan" "email" "hdonanq7@spiegel.de" "gender" "male" "ip_address" "85.222.8.91" "country" "Mexico" "country_code" "MX" "city" "Benito Juarez" "longitude" "-106.8458626" "latitude" "28.42456" "last_login" "1588048809" +HSET "user:1945" "first_name" "Linus" "last_name" "Sheere" "email" "lsheereq8@google.es" "gender" "male" "ip_address" "97.197.94.158" "country" "Madagascar" "country_code" "MG" "city" "Ambato Boeny" "longitude" "46.7164256" "latitude" "-16.4708895" "last_login" "1571319641" +HSET "user:1946" "first_name" "Bud" "last_name" "Gibard" "email" "bgibardq9@hc360.com" "gender" "male" "ip_address" "141.103.81.147" "country" "Sweden" "country_code" "SE" "city" "Lidköping" "longitude" "13.1611762" "latitude" "58.5033171" "last_login" "1579554929" +HSET "user:1947" "first_name" "Livvyy" "last_name" "Schieferstein" "email" "lschiefersteinqa@xing.com" "gender" "female" "ip_address" "225.14.4.212" "country" "Philippines" "country_code" "PH" "city" "Libato" "longitude" "121.401" "latitude" "13.8303" "last_login" "1572224862" +HSET "user:1948" "first_name" "Angele" "last_name" "Doniso" "email" "adonisoqb@nbcnews.com" "gender" "female" "ip_address" "131.12.108.120" "country" "Philippines" "country_code" "PH" "city" "Hingatungan" "longitude" "125.1861057" "latitude" "10.5839407" "last_login" "1599131102" +HSET "user:1949" "first_name" "Deni" "last_name" "Marfell" "email" "dmarfellqc@noaa.gov" "gender" "female" "ip_address" "136.54.9.140" "country" "South Africa" "country_code" "ZA" "city" "Caledon" "longitude" "19.9199137" "latitude" "-34.1407972" "last_login" "1577703863" +HSET "user:1950" "first_name" "Gabriele" "last_name" "Baily" "email" "gbailyqd@google.es" "gender" "male" "ip_address" "109.1.245.203" "country" "Russia" "country_code" "RU" "city" "Seversk" "longitude" "84.9077645" "latitude" "56.5948706" "last_login" "1593885380" +HSET "user:1951" "first_name" "Noam" "last_name" "MacGee" "email" "nmacgeeqe@arstechnica.com" "gender" "male" "ip_address" "27.143.106.112" "country" "Russia" "country_code" "RU" "city" "Izobil’nyy" "longitude" "40.5611144" "latitude" "46.6620498" "last_login" "1588688859" +HSET "user:1952" "first_name" "Aline" "last_name" "Jedras" "email" "ajedrasqf@reverbnation.com" "gender" "female" "ip_address" "246.189.60.56" "country" "Russia" "country_code" "RU" "city" "Novoaleksandrovsk" "longitude" "41.1600688" "latitude" "45.4885295" "last_login" "1576576265" +HSET "user:1953" "first_name" "Ebba" "last_name" "Linsay" "email" "elinsayqg@bloglovin.com" "gender" "female" "ip_address" "237.157.186.152" "country" "Russia" "country_code" "RU" "city" "Kropachëvo" "longitude" "57.9832945" "latitude" "55.0123473" "last_login" "1570969352" +HSET "user:1954" "first_name" "Abrahan" "last_name" "Fortie" "email" "afortieqh@sourceforge.net" "gender" "male" "ip_address" "168.17.122.145" "country" "China" "country_code" "CN" "city" "Tujing" "longitude" "103.796167" "latitude" "25.489999" "last_login" "1573193297" +HSET "user:1955" "first_name" "Dollie" "last_name" "Olenov" "email" "dolenovqi@timesonline.co.uk" "gender" "female" "ip_address" "129.32.249.122" "country" "Peru" "country_code" "PE" "city" "Maca" "longitude" "-71.7674379" "latitude" "-15.6418418" "last_login" "1589385980" +HSET "user:1956" "first_name" "Lilia" "last_name" "Moine" "email" "lmoineqj@google.com.hk" "gender" "female" "ip_address" "86.192.88.181" "country" "Portugal" "country_code" "PT" "city" "Tavira" "longitude" "-7.650062" "latitude" "37.1306168" "last_login" "1581643783" +HSET "user:1957" "first_name" "Marline" "last_name" "Evenett" "email" "mevenettqk@dion.ne.jp" "gender" "female" "ip_address" "216.241.27.29" "country" "Indonesia" "country_code" "ID" "city" "Kaom" "longitude" "97.1344608" "latitude" "5.1886762" "last_login" "1588095346" +HSET "user:1958" "first_name" "Gherardo" "last_name" "Shaddock" "email" "gshaddockql@businessweek.com" "gender" "male" "ip_address" "87.122.49.226" "country" "China" "country_code" "CN" "city" "Hengshui" "longitude" "115.670177" "latitude" "37.73892" "last_login" "1570266488" +HSET "user:1959" "first_name" "Orly" "last_name" "Ivie" "email" "oivieqm@washingtonpost.com" "gender" "female" "ip_address" "195.72.34.46" "country" "Philippines" "country_code" "PH" "city" "Latung" "longitude" "121.2195627" "latitude" "13.3010762" "last_login" "1592573049" +HSET "user:1960" "first_name" "Rafaela" "last_name" "Blaske" "email" "rblaskeqn@dion.ne.jp" "gender" "female" "ip_address" "4.207.236.203" "country" "Sweden" "country_code" "SE" "city" "Bandhagen" "longitude" "18.027354" "latitude" "59.2542117" "last_login" "1586892736" +HSET "user:1961" "first_name" "Adelheid" "last_name" "Stewart" "email" "astewartqo@mit.edu" "gender" "female" "ip_address" "223.230.129.253" "country" "Indonesia" "country_code" "ID" "city" "Banjarbaru" "longitude" "114.7490673" "latitude" "-3.4667033" "last_login" "1592973458" +HSET "user:1962" "first_name" "Otho" "last_name" "Saben" "email" "osabenqp@sciencedaily.com" "gender" "male" "ip_address" "42.106.160.90" "country" "Indonesia" "country_code" "ID" "city" "Purabaya" "longitude" "106.888644" "latitude" "-7.099977" "last_login" "1598684089" +HSET "user:1963" "first_name" "Yorker" "last_name" "Hearty" "email" "yheartyqq@stanford.edu" "gender" "male" "ip_address" "188.203.174.248" "country" "China" "country_code" "CN" "city" "Liuqiao" "longitude" "107.649938" "latitude" "22.259725" "last_login" "1578580725" +HSET "user:1964" "first_name" "Ossie" "last_name" "Kennaway" "email" "okennawayqr@flickr.com" "gender" "male" "ip_address" "85.137.174.252" "country" "Philippines" "country_code" "PH" "city" "Pindangan Centro" "longitude" "120.55139" "latitude" "15.86056" "last_login" "1571388121" +HSET "user:1965" "first_name" "Carena" "last_name" "Harmar" "email" "charmarqs@psu.edu" "gender" "female" "ip_address" "133.206.184.229" "country" "Indonesia" "country_code" "ID" "city" "Leramatang" "longitude" "123.5718" "latitude" "-8.3647" "last_login" "1572684375" +HSET "user:1966" "first_name" "Moss" "last_name" "Brose" "email" "mbroseqt@sakura.ne.jp" "gender" "male" "ip_address" "122.190.214.184" "country" "Sweden" "country_code" "SE" "city" "Linköping" "longitude" "15.5385144" "latitude" "58.3986162" "last_login" "1588790815" +HSET "user:1967" "first_name" "Kittie" "last_name" "Deverale" "email" "kdeveralequ@instagram.com" "gender" "female" "ip_address" "252.79.36.225" "country" "Philippines" "country_code" "PH" "city" "Salcedo" "longitude" "121.0155081" "latitude" "14.5560877" "last_login" "1571018943" +HSET "user:1968" "first_name" "Yancy" "last_name" "Landal" "email" "ylandalqv@slate.com" "gender" "male" "ip_address" "169.94.55.130" "country" "Indonesia" "country_code" "ID" "city" "Kadukandel" "longitude" "105.9098" "latitude" "-6.4334" "last_login" "1576204883" +HSET "user:1969" "first_name" "Darsey" "last_name" "Eade" "email" "deadeqw@lulu.com" "gender" "female" "ip_address" "143.102.157.46" "country" "Israel" "country_code" "IL" "city" "Kafir Yasif" "longitude" "35.1599957" "latitude" "32.9520318" "last_login" "1580343455" +HSET "user:1970" "first_name" "Ingra" "last_name" "Brownsey" "email" "ibrownseyqx@unicef.org" "gender" "male" "ip_address" "251.89.36.172" "country" "China" "country_code" "CN" "city" "Fangtang" "longitude" "116.4238458" "latitude" "39.9916667" "last_login" "1588001093" +HSET "user:1971" "first_name" "Vicky" "last_name" "Lilburn" "email" "vlilburnqy@360.cn" "gender" "female" "ip_address" "30.161.38.146" "country" "Gabon" "country_code" "GA" "city" "Ntoum" "longitude" "9.7734455" "latitude" "0.3740355" "last_login" "1588040698" +HSET "user:1972" "first_name" "Arlette" "last_name" "Coad" "email" "acoadqz@alexa.com" "gender" "female" "ip_address" "121.142.210.32" "country" "Spain" "country_code" "ES" "city" "Santander" "longitude" "-3.8254599" "latitude" "43.4590202" "last_login" "1586317417" +HSET "user:1973" "first_name" "Esdras" "last_name" "Simonian" "email" "esimonianr0@opensource.org" "gender" "male" "ip_address" "13.161.202.64" "country" "China" "country_code" "CN" "city" "Gaowu" "longitude" "124.7973212" "latitude" "46.1382935" "last_login" "1581562339" +HSET "user:1974" "first_name" "Zaccaria" "last_name" "Colrein" "email" "zcolreinr1@linkedin.com" "gender" "male" "ip_address" "22.114.207.62" "country" "Nigeria" "country_code" "NG" "city" "Igarra" "longitude" "6.107645" "latitude" "7.2754704" "last_login" "1596055191" +HSET "user:1975" "first_name" "Finley" "last_name" "Huckerby" "email" "fhuckerbyr2@etsy.com" "gender" "male" "ip_address" "22.242.212.143" "country" "Armenia" "country_code" "AM" "city" "Areni" "longitude" "45.1858986" "latitude" "39.7230741" "last_login" "1591503115" +HSET "user:1976" "first_name" "Martyn" "last_name" "Denton" "email" "mdentonr3@exblog.jp" "gender" "male" "ip_address" "107.49.202.88" "country" "United States" "country_code" "US" "city" "Durham" "longitude" "-78.9387241" "latitude" "36.0038131" "last_login" "1578094626" +HSET "user:1977" "first_name" "Daryl" "last_name" "Antic" "email" "danticr4@hao123.com" "gender" "male" "ip_address" "240.226.82.99" "country" "France" "country_code" "FR" "city" "Roissy Charles-de-Gaulle" "longitude" "2.5479245" "latitude" "49.0096906" "last_login" "1579933604" +HSET "user:1978" "first_name" "Bria" "last_name" "Bolesworth" "email" "bbolesworthr5@hugedomains.com" "gender" "female" "ip_address" "61.100.222.129" "country" "Sweden" "country_code" "SE" "city" "Hammarö" "longitude" "13.5389591" "latitude" "59.3192962" "last_login" "1587883553" +HSET "user:1979" "first_name" "Barry" "last_name" "Jager" "email" "bjagerr6@toplist.cz" "gender" "female" "ip_address" "205.51.245.206" "country" "Czech Republic" "country_code" "CZ" "city" "Klášterec nad Ohří" "longitude" "13.1712929" "latitude" "50.3844613" "last_login" "1573451404" +HSET "user:1980" "first_name" "Charleen" "last_name" "Verdie" "email" "cverdier7@google.es" "gender" "female" "ip_address" "148.100.15.179" "country" "China" "country_code" "CN" "city" "Jomda" "longitude" "98.21843" "latitude" "31.499202" "last_login" "1582319337" +HSET "user:1981" "first_name" "Edna" "last_name" "Brannigan" "email" "ebranniganr8@yolasite.com" "gender" "female" "ip_address" "131.239.148.165" "country" "Portugal" "country_code" "PT" "city" "Ribeirão" "longitude" "-8.5704778" "latitude" "41.3495192" "last_login" "1599553475" +HSET "user:1982" "first_name" "Cherish" "last_name" "Spence" "email" "cspencer9@buzzfeed.com" "gender" "female" "ip_address" "53.89.137.113" "country" "Nicaragua" "country_code" "NI" "city" "Nueva Guinea" "longitude" "-84.4540213" "latitude" "11.6932207" "last_login" "1595900137" +HSET "user:1983" "first_name" "Yettie" "last_name" "Loughton" "email" "yloughtonra@dropbox.com" "gender" "female" "ip_address" "187.208.220.184" "country" "Czech Republic" "country_code" "CZ" "city" "Brniště" "longitude" "14.7099785" "latitude" "50.7140155" "last_login" "1576080095" +HSET "user:1984" "first_name" "Joshua" "last_name" "Slimings" "email" "jslimingsrb@nature.com" "gender" "male" "ip_address" "84.223.201.90" "country" "Russia" "country_code" "RU" "city" "Ozerki" "longitude" "30.317148" "latitude" "59.9251489" "last_login" "1581936226" +HSET "user:1985" "first_name" "Marni" "last_name" "Prior" "email" "mpriorrc@blinklist.com" "gender" "female" "ip_address" "34.202.7.104" "country" "Hungary" "country_code" "HU" "city" "Debrecen" "longitude" "21.6379372" "latitude" "47.5341107" "last_login" "1570632329" +HSET "user:1986" "first_name" "Westbrook" "last_name" "Ranner" "email" "wrannerrd@mtv.com" "gender" "male" "ip_address" "172.61.14.184" "country" "China" "country_code" "CN" "city" "Qiaosi" "longitude" "104.1142719" "latitude" "30.6803557" "last_login" "1593703460" +HSET "user:1987" "first_name" "Nickey" "last_name" "Charte" "email" "nchartere@nymag.com" "gender" "male" "ip_address" "23.91.33.121" "country" "Saint Lucia" "country_code" "LC" "city" "Laborie" "longitude" "-61.006385" "latitude" "13.7761367" "last_login" "1594003213" +HSET "user:1988" "first_name" "Godart" "last_name" "Szymanowicz" "email" "gszymanowiczrf@sina.com.cn" "gender" "male" "ip_address" "73.138.86.168" "country" "Czech Republic" "country_code" "CZ" "city" "Staré Hradiště" "longitude" "15.7788513" "latitude" "50.0653975" "last_login" "1579493432" +HSET "user:1989" "first_name" "Kurt" "last_name" "Whapple" "email" "kwhapplerg@feedburner.com" "gender" "male" "ip_address" "86.14.147.175" "country" "Indonesia" "country_code" "ID" "city" "Angkahgede" "longitude" "115.0159" "latitude" "-8.4635" "last_login" "1599945665" +HSET "user:1990" "first_name" "Davon" "last_name" "Strippling" "email" "dstripplingrh@reuters.com" "gender" "male" "ip_address" "123.244.190.74" "country" "Tunisia" "country_code" "TN" "city" "Al Ḩammāmāt" "longitude" "10.6224706" "latitude" "36.4072574" "last_login" "1580056500" +HSET "user:1991" "first_name" "Gregor" "last_name" "Kolakowski" "email" "gkolakowskiri@angelfire.com" "gender" "male" "ip_address" "164.167.100.140" "country" "Portugal" "country_code" "PT" "city" "Estoi" "longitude" "-7.8946433" "latitude" "37.0938859" "last_login" "1592823617" +HSET "user:1992" "first_name" "Faun" "last_name" "Skures" "email" "fskuresrj@icq.com" "gender" "female" "ip_address" "163.121.247.61" "country" "South Korea" "country_code" "KR" "city" "Hwaseong-si" "longitude" "126.8311887" "latitude" "37.1994932" "last_login" "1574097621" +HSET "user:1993" "first_name" "Matti" "last_name" "Alessandrucci" "email" "malessandruccirk@creativecommons.org" "gender" "female" "ip_address" "131.110.112.218" "country" "Philippines" "country_code" "PH" "city" "Balayan" "longitude" "120.7285858" "latitude" "13.9686682" "last_login" "1596732584" +HSET "user:1994" "first_name" "Riccardo" "last_name" "Kamena" "email" "rkamenarl@mashable.com" "gender" "male" "ip_address" "165.224.124.207" "country" "Brazil" "country_code" "BR" "city" "Uarini" "longitude" "-65.3807101" "latitude" "-3.1828365" "last_login" "1588822976" +HSET "user:1995" "first_name" "Alisander" "last_name" "Rothert" "email" "arothertrm@amazon.de" "gender" "male" "ip_address" "189.101.102.46" "country" "United States" "country_code" "US" "city" "Harrisburg" "longitude" "-76.8798693" "latitude" "40.2617721" "last_login" "1568764538" +HSET "user:1996" "first_name" "Orville" "last_name" "Pock" "email" "opockrn@miitbeian.gov.cn" "gender" "male" "ip_address" "203.77.82.90" "country" "Honduras" "country_code" "HN" "city" "Zopilotepe" "longitude" "-86.2901225" "latitude" "14.5544751" "last_login" "1590809637" +HSET "user:1997" "first_name" "Amalle" "last_name" "Scothern" "email" "ascothernro@exblog.jp" "gender" "female" "ip_address" "70.190.250.234" "country" "Azerbaijan" "country_code" "AZ" "city" "Pushkino" "longitude" "48.5509813" "latitude" "39.4598833" "last_login" "1597505134" +HSET "user:1998" "first_name" "Sandra" "last_name" "Flint" "email" "sflintrp@google.ca" "gender" "female" "ip_address" "34.238.117.183" "country" "Indonesia" "country_code" "ID" "city" "Polo" "longitude" "106.7791791" "latitude" "-6.1078857" "last_login" "1586603357" +HSET "user:1999" "first_name" "Shandeigh" "last_name" "Rolley" "email" "srolleyrq@wordpress.com" "gender" "female" "ip_address" "11.111.146.71" "country" "Japan" "country_code" "JP" "city" "Mutsu" "longitude" "138.3175811" "latitude" "36.3681952" "last_login" "1585610126" +HSET "user:2000" "first_name" "Helenelizabeth" "last_name" "Brodbin" "email" "hbrodbinrr@alibaba.com" "gender" "female" "ip_address" "192.170.193.194" "country" "Philippines" "country_code" "PH" "city" "Duran" "longitude" "122.619095" "latitude" "11.321347" "last_login" "1576896584" +HSET "user:2001" "first_name" "Muire" "last_name" "Moreinu" "email" "mmoreinu0@reuters.com" "gender" "female" "ip_address" "158.123.47.39" "country" "Vietnam" "country_code" "VN" "city" "Cẩm Phả Mines" "longitude" "107.2776992" "latitude" "21.0453008" "last_login" "1574400564" +HSET "user:2002" "first_name" "Carling" "last_name" "Conwell" "email" "cconwell1@time.com" "gender" "male" "ip_address" "73.252.149.149" "country" "Colombia" "country_code" "CO" "city" "Cicuco" "longitude" "-74.64532" "latitude" "9.27682" "last_login" "1576002831" +HSET "user:2003" "first_name" "Agneta" "last_name" "Brakewell" "email" "abrakewell2@51.la" "gender" "female" "ip_address" "77.130.53.172" "country" "Russia" "country_code" "RU" "city" "Roza" "longitude" "39.5788904" "latitude" "52.6053795" "last_login" "1596253765" +HSET "user:2004" "first_name" "Bernetta" "last_name" "Siddens" "email" "bsiddens3@cnet.com" "gender" "female" "ip_address" "208.89.203.109" "country" "United States" "country_code" "US" "city" "Jacksonville" "longitude" "-81.5870604" "latitude" "30.3776024" "last_login" "1570866501" +HSET "user:2005" "first_name" "Roseline" "last_name" "Drillingcourt" "email" "rdrillingcourt4@goodreads.com" "gender" "female" "ip_address" "148.187.200.108" "country" "China" "country_code" "CN" "city" "Yanghong" "longitude" "108.317445" "latitude" "34.513586" "last_login" "1572299518" +HSET "user:2006" "first_name" "Yoshiko" "last_name" "Bresner" "email" "ybresner5@ow.ly" "gender" "female" "ip_address" "87.131.40.159" "country" "Serbia" "country_code" "RS" "city" "Svrljig" "longitude" "22.1271404" "latitude" "43.4146453" "last_login" "1578466146" +HSET "user:2007" "first_name" "Allina" "last_name" "Signoret" "email" "asignoret6@google.it" "gender" "female" "ip_address" "219.176.59.18" "country" "Indonesia" "country_code" "ID" "city" "Tual" "longitude" "132.3446399" "latitude" "-5.5680317" "last_login" "1574198274" +HSET "user:2008" "first_name" "Stevie" "last_name" "Fauning" "email" "sfauning7@over-blog.com" "gender" "male" "ip_address" "245.23.38.96" "country" "France" "country_code" "FR" "city" "Chartres" "longitude" "-0.6297654" "latitude" "45.106849" "last_login" "1587384324" +HSET "user:2009" "first_name" "Linn" "last_name" "Belham" "email" "lbelham8@intel.com" "gender" "male" "ip_address" "140.58.52.198" "country" "Saudi Arabia" "country_code" "SA" "city" "Julayjilah" "longitude" "49.5999539" "latitude" "25.5025179" "last_login" "1579697207" +HSET "user:2010" "first_name" "Thor" "last_name" "Grzelczak" "email" "tgrzelczak9@umn.edu" "gender" "male" "ip_address" "232.44.62.84" "country" "Indonesia" "country_code" "ID" "city" "Kuala Bintang" "longitude" "97.0202754" "latitude" "4.6077979" "last_login" "1579102445" +HSET "user:2011" "first_name" "Pet" "last_name" "Harewood" "email" "pharewooda@wufoo.com" "gender" "female" "ip_address" "4.62.170.183" "country" "Czech Republic" "country_code" "CZ" "city" "Vladislav" "longitude" "15.9883033" "latitude" "49.2101697" "last_login" "1571317484" +HSET "user:2012" "first_name" "Alena" "last_name" "Walsom" "email" "awalsomb@state.tx.us" "gender" "female" "ip_address" "70.83.46.200" "country" "Uganda" "country_code" "UG" "city" "Lyantonde" "longitude" "31.1567203" "latitude" "-0.4075041" "last_login" "1576606660" +HSET "user:2013" "first_name" "Philipa" "last_name" "Bramstom" "email" "pbramstomc@mac.com" "gender" "female" "ip_address" "247.87.243.64" "country" "United Kingdom" "country_code" "GB" "city" "Manchester" "longitude" "-2.2294364" "latitude" "53.4508777" "last_login" "1593117152" +HSET "user:2014" "first_name" "Tobias" "last_name" "Pady" "email" "tpadyd@usgs.gov" "gender" "male" "ip_address" "138.133.201.195" "country" "France" "country_code" "FR" "city" "Perpignan" "longitude" "2.0376775" "latitude" "43.6943099" "last_login" "1597178739" +HSET "user:2015" "first_name" "Ramonda" "last_name" "Allison" "email" "rallisone@ocn.ne.jp" "gender" "female" "ip_address" "6.68.157.248" "country" "Tunisia" "country_code" "TN" "city" "La Mohammedia" "longitude" "10.1535196" "latitude" "36.6755608" "last_login" "1588889352" +HSET "user:2016" "first_name" "Gib" "last_name" "Cope" "email" "gcopef@nhs.uk" "gender" "male" "ip_address" "131.130.23.112" "country" "Brazil" "country_code" "BR" "city" "Goiânia" "longitude" "-49.1565948" "latitude" "-16.6488964" "last_login" "1590664297" +HSET "user:2017" "first_name" "Myron" "last_name" "Adamo" "email" "madamog@csmonitor.com" "gender" "male" "ip_address" "11.103.136.120" "country" "Venezuela" "country_code" "VE" "city" "Mucumpiz" "longitude" "-71.13333" "latitude" "8.41667" "last_login" "1582905228" +HSET "user:2018" "first_name" "Isaiah" "last_name" "Elger" "email" "ielgerh@blogspot.com" "gender" "male" "ip_address" "103.62.158.152" "country" "Thailand" "country_code" "TH" "city" "Ban Phaeo" "longitude" "100.1031202" "latitude" "13.5924758" "last_login" "1578570000" +HSET "user:2019" "first_name" "Lucas" "last_name" "Simmell" "email" "lsimmelli@china.com.cn" "gender" "male" "ip_address" "168.43.249.142" "country" "China" "country_code" "CN" "city" "Guanli" "longitude" "120.701061" "latitude" "37.186035" "last_login" "1590759939" +HSET "user:2020" "first_name" "Agna" "last_name" "Waldera" "email" "awalderaj@skype.com" "gender" "female" "ip_address" "44.42.92.161" "country" "Brazil" "country_code" "BR" "city" "Pimenta Bueno" "longitude" "-61.1984811" "latitude" "-11.6723638" "last_login" "1585905205" +HSET "user:2021" "first_name" "Filippa" "last_name" "Stove" "email" "fstovek@china.com.cn" "gender" "female" "ip_address" "211.230.1.242" "country" "Indonesia" "country_code" "ID" "city" "Gajah" "longitude" "110.7480064" "latitude" "-6.8897321" "last_login" "1580905581" +HSET "user:2022" "first_name" "Raimundo" "last_name" "Gerant" "email" "rgerantl@istockphoto.com" "gender" "male" "ip_address" "157.187.152.181" "country" "France" "country_code" "FR" "city" "Bobigny" "longitude" "2.4201634" "latitude" "48.9126632" "last_login" "1594101187" +HSET "user:2023" "first_name" "Stephine" "last_name" "Gotts" "email" "sgottsm@bizjournals.com" "gender" "female" "ip_address" "14.23.35.87" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "12.0098218" "latitude" "57.6735995" "last_login" "1593471714" +HSET "user:2024" "first_name" "Stacee" "last_name" "Chapiro" "email" "schapiron@cbsnews.com" "gender" "female" "ip_address" "217.81.56.206" "country" "Indonesia" "country_code" "ID" "city" "Sidaraja" "longitude" "108.5730321" "latitude" "-6.9854642" "last_login" "1597279990" +HSET "user:2025" "first_name" "Tamar" "last_name" "Haccleton" "email" "thaccletono@com.com" "gender" "female" "ip_address" "178.232.165.68" "country" "Nicaragua" "country_code" "NI" "city" "La Libertad" "longitude" "-85.1660825" "latitude" "12.2153659" "last_login" "1578110473" +HSET "user:2026" "first_name" "Shandie" "last_name" "Belderson" "email" "sbeldersonp@bizjournals.com" "gender" "female" "ip_address" "134.86.79.236" "country" "China" "country_code" "CN" "city" "Jiuli" "longitude" "120.09953" "latitude" "30.864034" "last_login" "1570815287" +HSET "user:2027" "first_name" "Holly" "last_name" "Selman" "email" "hselmanq@is.gd" "gender" "female" "ip_address" "185.120.12.184" "country" "Indonesia" "country_code" "ID" "city" "Longka" "longitude" "106.8449298" "latitude" "-6.2000052" "last_login" "1593739643" +HSET "user:2028" "first_name" "Woodie" "last_name" "Tarrier" "email" "wtarrierr@eepurl.com" "gender" "male" "ip_address" "10.40.97.4" "country" "Northern Mariana Islands" "country_code" "MP" "city" "Saipan" "longitude" "145.7467259" "latitude" "15.1850483" "last_login" "1581856917" +HSET "user:2029" "first_name" "Garfield" "last_name" "Betterton" "email" "gbettertons@berkeley.edu" "gender" "male" "ip_address" "98.171.247.175" "country" "Indonesia" "country_code" "ID" "city" "Babakanbungur" "longitude" "106.7246239" "latitude" "-6.5554802" "last_login" "1598794554" +HSET "user:2030" "first_name" "Lolita" "last_name" "Coughlan" "email" "lcoughlant@is.gd" "gender" "female" "ip_address" "19.142.249.175" "country" "Poland" "country_code" "PL" "city" "Piątnica" "longitude" "22.166847" "latitude" "53.2067339" "last_login" "1575159724" +HSET "user:2031" "first_name" "Millard" "last_name" "Brumham" "email" "mbrumhamu@bloglovin.com" "gender" "male" "ip_address" "73.100.122.102" "country" "Colombia" "country_code" "CO" "city" "La Paz" "longitude" "-73.57585" "latitude" "6.1898099" "last_login" "1573125680" +HSET "user:2032" "first_name" "Cecily" "last_name" "Oats" "email" "coatsv@vimeo.com" "gender" "female" "ip_address" "63.26.6.199" "country" "Greece" "country_code" "GR" "city" "Kos" "longitude" "27.2877228" "latitude" "36.8915064" "last_login" "1572291647" +HSET "user:2033" "first_name" "Nester" "last_name" "MacGinley" "email" "nmacginleyw@tmall.com" "gender" "male" "ip_address" "161.141.120.121" "country" "Russia" "country_code" "RU" "city" "Donskoye" "longitude" "38.9743917" "latitude" "52.6130327" "last_login" "1571112330" +HSET "user:2034" "first_name" "Carri" "last_name" "Ledamun" "email" "cledamunx@spiegel.de" "gender" "female" "ip_address" "234.7.218.154" "country" "Indonesia" "country_code" "ID" "city" "Tanjung Palas" "longitude" "117.2911248" "latitude" "2.8426922" "last_login" "1577011191" +HSET "user:2035" "first_name" "Artemas" "last_name" "Sweedy" "email" "asweedyy@bbc.co.uk" "gender" "male" "ip_address" "6.179.116.147" "country" "China" "country_code" "CN" "city" "Keda" "longitude" "117.393358" "latitude" "31.211077" "last_login" "1582804244" +HSET "user:2036" "first_name" "Tessie" "last_name" "Fishbie" "email" "tfishbiez@woothemes.com" "gender" "female" "ip_address" "169.212.37.164" "country" "Honduras" "country_code" "HN" "city" "La Sabana" "longitude" "-87.9383822" "latitude" "15.3680416" "last_login" "1583590631" +HSET "user:2037" "first_name" "Gherardo" "last_name" "Loakes" "email" "gloakes10@123-reg.co.uk" "gender" "male" "ip_address" "138.116.22.22" "country" "China" "country_code" "CN" "city" "Yangzi" "longitude" "112.8915932" "latitude" "30.5211502" "last_login" "1593833606" +HSET "user:2038" "first_name" "Stern" "last_name" "Tunstall" "email" "stunstall11@biglobe.ne.jp" "gender" "male" "ip_address" "67.198.81.149" "country" "Portugal" "country_code" "PT" "city" "Belas" "longitude" "-9.2661131" "latitude" "38.7759506" "last_login" "1589114660" +HSET "user:2039" "first_name" "Derrek" "last_name" "Tuberfield" "email" "dtuberfield12@blog.com" "gender" "male" "ip_address" "102.136.40.54" "country" "United States" "country_code" "US" "city" "Jamaica" "longitude" "-73.8076421" "latitude" "40.6998888" "last_login" "1593383508" +HSET "user:2040" "first_name" "Colman" "last_name" "Bassom" "email" "cbassom13@seattletimes.com" "gender" "male" "ip_address" "213.165.184.26" "country" "Indonesia" "country_code" "ID" "city" "Sulahan" "longitude" "115.3459831" "latitude" "-8.4164207" "last_login" "1584861071" +HSET "user:2041" "first_name" "Luci" "last_name" "Attride" "email" "lattride14@hugedomains.com" "gender" "female" "ip_address" "111.105.222.154" "country" "Argentina" "country_code" "AR" "city" "Villa Ángela" "longitude" "-60.713149" "latitude" "-27.582369" "last_login" "1595173095" +HSET "user:2042" "first_name" "Nikoletta" "last_name" "Reuble" "email" "nreuble15@furl.net" "gender" "female" "ip_address" "161.98.8.223" "country" "Venezuela" "country_code" "VE" "city" "San Francisco" "longitude" "-71.691066" "latitude" "10.5451205" "last_login" "1590083748" +HSET "user:2043" "first_name" "Darci" "last_name" "Vaan" "email" "dvaan16@indiegogo.com" "gender" "female" "ip_address" "97.44.96.51" "country" "Philippines" "country_code" "PH" "city" "Sandayong Sur" "longitude" "124.0211737" "latitude" "10.4818973" "last_login" "1596632385" +HSET "user:2044" "first_name" "Lorianna" "last_name" "Idiens" "email" "lidiens17@mlb.com" "gender" "female" "ip_address" "245.4.97.124" "country" "France" "country_code" "FR" "city" "Strasbourg" "longitude" "7.7342943" "latitude" "48.5851876" "last_login" "1584229254" +HSET "user:2045" "first_name" "Mick" "last_name" "Lehon" "email" "mlehon18@mapy.cz" "gender" "male" "ip_address" "100.72.64.186" "country" "Colombia" "country_code" "CO" "city" "Fonseca" "longitude" "-72.8207035" "latitude" "10.8312641" "last_login" "1584073262" +HSET "user:2046" "first_name" "Farley" "last_name" "Redwing" "email" "fredwing19@simplemachines.org" "gender" "male" "ip_address" "117.130.176.243" "country" "Ukraine" "country_code" "UA" "city" "Murovanoye" "longitude" "22.937308" "latitude" "49.5216159" "last_login" "1590131329" +HSET "user:2047" "first_name" "Cherie" "last_name" "Kerin" "email" "ckerin1a@spotify.com" "gender" "female" "ip_address" "20.139.44.133" "country" "China" "country_code" "CN" "city" "Huangbizhuang" "longitude" "114.32282" "latitude" "38.240246" "last_login" "1570181119" +HSET "user:2048" "first_name" "Homere" "last_name" "Szymanek" "email" "hszymanek1b@wiley.com" "gender" "male" "ip_address" "20.147.63.15" "country" "Canada" "country_code" "CA" "city" "Olds" "longitude" "-114.105279" "latitude" "51.7920135" "last_login" "1587107473" +HSET "user:2049" "first_name" "Maynard" "last_name" "Berrisford" "email" "mberrisford1c@webeden.co.uk" "gender" "male" "ip_address" "131.105.193.113" "country" "France" "country_code" "FR" "city" "Saint-Ouen" "longitude" "-1.1457859" "latitude" "46.5993244" "last_login" "1584442201" +HSET "user:2050" "first_name" "Gilligan" "last_name" "Copsey" "email" "gcopsey1d@cam.ac.uk" "gender" "female" "ip_address" "106.186.100.186" "country" "Indonesia" "country_code" "ID" "city" "Bakunase" "longitude" "123.586797" "latitude" "-10.1863866" "last_login" "1586209720" +HSET "user:2051" "first_name" "Emmit" "last_name" "Wynch" "email" "ewynch1e@livejournal.com" "gender" "male" "ip_address" "124.100.119.41" "country" "China" "country_code" "CN" "city" "Jingcheng" "longitude" "117.22473" "latitude" "29.2813" "last_login" "1592229983" +HSET "user:2052" "first_name" "Nelle" "last_name" "Pea" "email" "npea1f@guardian.co.uk" "gender" "female" "ip_address" "173.38.33.136" "country" "Philippines" "country_code" "PH" "city" "Calaoagan" "longitude" "121.1741531" "latitude" "16.5653818" "last_login" "1575361809" +HSET "user:2053" "first_name" "Lianna" "last_name" "Barrott" "email" "lbarrott1g@chronoengine.com" "gender" "female" "ip_address" "132.40.20.160" "country" "China" "country_code" "CN" "city" "Nansha" "longitude" "113.525165" "latitude" "22.801624" "last_login" "1587305396" +HSET "user:2054" "first_name" "Micky" "last_name" "Varnes" "email" "mvarnes1h@princeton.edu" "gender" "male" "ip_address" "118.168.67.37" "country" "Portugal" "country_code" "PT" "city" "Azaruja" "longitude" "-7.7801629" "latitude" "38.7035566" "last_login" "1596568908" +HSET "user:2055" "first_name" "Clarance" "last_name" "Diwell" "email" "cdiwell1i@twitpic.com" "gender" "male" "ip_address" "60.61.43.214" "country" "Canada" "country_code" "CA" "city" "Kirkland Lake" "longitude" "-80.0330343" "latitude" "48.1510123" "last_login" "1578569661" +HSET "user:2056" "first_name" "Jess" "last_name" "Ivatts" "email" "jivatts1j@a8.net" "gender" "female" "ip_address" "163.22.119.105" "country" "China" "country_code" "CN" "city" "Xin’an" "longitude" "112.132488" "latitude" "34.728584" "last_login" "1591797318" +HSET "user:2057" "first_name" "Weider" "last_name" "Fabb" "email" "wfabb1k@4shared.com" "gender" "male" "ip_address" "223.148.162.148" "country" "China" "country_code" "CN" "city" "Qiaotou" "longitude" "120.482198" "latitude" "28.168408" "last_login" "1594580657" +HSET "user:2058" "first_name" "Melina" "last_name" "Ritchie" "email" "mritchie1l@chicagotribune.com" "gender" "female" "ip_address" "241.139.127.206" "country" "Mali" "country_code" "ML" "city" "Bla" "longitude" "-5.7563151" "latitude" "12.9549865" "last_login" "1597073956" +HSET "user:2059" "first_name" "Merissa" "last_name" "Simmonite" "email" "msimmonite1m@illinois.edu" "gender" "female" "ip_address" "45.203.245.202" "country" "China" "country_code" "CN" "city" "Yongfa" "longitude" "116.700277" "latitude" "23.364295" "last_login" "1576438657" +HSET "user:2060" "first_name" "Kris" "last_name" "Ianni" "email" "kianni1n@nhs.uk" "gender" "female" "ip_address" "37.252.204.106" "country" "Liberia" "country_code" "LR" "city" "Greenville" "longitude" "-9.0377612" "latitude" "5.0153677" "last_login" "1581248876" +HSET "user:2061" "first_name" "Ilaire" "last_name" "Ridge" "email" "iridge1o@tiny.cc" "gender" "male" "ip_address" "237.195.235.80" "country" "China" "country_code" "CN" "city" "Yinyang" "longitude" "-105.943638" "latitude" "35.683952" "last_login" "1583489235" +HSET "user:2062" "first_name" "Tommi" "last_name" "Demeza" "email" "tdemeza1p@latimes.com" "gender" "female" "ip_address" "109.39.102.38" "country" "El Salvador" "country_code" "SV" "city" "Berlín" "longitude" "-88.5299428" "latitude" "13.4960361" "last_login" "1584803075" +HSET "user:2063" "first_name" "Ricardo" "last_name" "Gierck" "email" "rgierck1q@stumbleupon.com" "gender" "male" "ip_address" "219.171.5.243" "country" "Morocco" "country_code" "MA" "city" "Kariat Arkmane" "longitude" "-2.7307058" "latitude" "35.1099953" "last_login" "1599456685" +HSET "user:2064" "first_name" "Orv" "last_name" "Kleimt" "email" "okleimt1r@chron.com" "gender" "male" "ip_address" "196.96.133.60" "country" "Dominican Republic" "country_code" "DO" "city" "Esperalvillo" "longitude" "-70.0347754" "latitude" "18.8121479" "last_login" "1599901427" +HSET "user:2065" "first_name" "Mollie" "last_name" "Shuttlewood" "email" "mshuttlewood1s@cornell.edu" "gender" "female" "ip_address" "108.125.238.30" "country" "Venezuela" "country_code" "VE" "city" "Cúa" "longitude" "-66.8915809" "latitude" "10.1709167" "last_login" "1570435024" +HSET "user:2066" "first_name" "Norman" "last_name" "Willgrass" "email" "nwillgrass1t@odnoklassniki.ru" "gender" "male" "ip_address" "140.21.83.196" "country" "El Salvador" "country_code" "SV" "city" "Antiguo Cuscatlán" "longitude" "-89.2514718" "latitude" "13.6756725" "last_login" "1579587657" +HSET "user:2067" "first_name" "Phyllis" "last_name" "Radloff" "email" "pradloff1u@umich.edu" "gender" "female" "ip_address" "118.187.12.39" "country" "Dominican Republic" "country_code" "DO" "city" "Las Matas de Farfán" "longitude" "-71.5036905" "latitude" "18.8782625" "last_login" "1577728864" +HSET "user:2068" "first_name" "Dania" "last_name" "Look" "email" "dlook1v@wiley.com" "gender" "female" "ip_address" "110.252.66.143" "country" "China" "country_code" "CN" "city" "Dahedian" "longitude" "106.04972" "latitude" "33.65333" "last_login" "1586797854" +HSET "user:2069" "first_name" "Vern" "last_name" "Olivelli" "email" "volivelli1w@simplemachines.org" "gender" "male" "ip_address" "252.93.184.116" "country" "Brazil" "country_code" "BR" "city" "Sobral" "longitude" "-40.3496894" "latitude" "-3.701499" "last_login" "1592254522" +HSET "user:2070" "first_name" "Donny" "last_name" "Cordaroy" "email" "dcordaroy1x@cyberchimps.com" "gender" "female" "ip_address" "8.79.179.226" "country" "El Salvador" "country_code" "SV" "city" "Nueva Guadalupe" "longitude" "-88.3506468" "latitude" "13.5353957" "last_login" "1575171506" +HSET "user:2071" "first_name" "Pooh" "last_name" "Gammidge" "email" "pgammidge1y@ameblo.jp" "gender" "male" "ip_address" "248.102.54.176" "country" "China" "country_code" "CN" "city" "Chongxian" "longitude" "120.174895" "latitude" "30.387552" "last_login" "1598647415" +HSET "user:2072" "first_name" "Ede" "last_name" "Rhubottom" "email" "erhubottom1z@usatoday.com" "gender" "female" "ip_address" "106.81.97.190" "country" "Czech Republic" "country_code" "CZ" "city" "Nedakonice" "longitude" "17.3756941" "latitude" "49.0333308" "last_login" "1571000026" +HSET "user:2073" "first_name" "Augusto" "last_name" "Stading" "email" "astading20@microsoft.com" "gender" "male" "ip_address" "56.94.39.191" "country" "Sweden" "country_code" "SE" "city" "Sundbyberg" "longitude" "17.9701456" "latitude" "59.3606836" "last_login" "1585690665" +HSET "user:2074" "first_name" "Langsdon" "last_name" "Elward" "email" "lelward21@issuu.com" "gender" "male" "ip_address" "72.165.24.116" "country" "Russia" "country_code" "RU" "city" "Orsha" "longitude" "36.234674" "latitude" "56.9084942" "last_login" "1583481016" +HSET "user:2075" "first_name" "Skip" "last_name" "Redborn" "email" "sredborn22@parallels.com" "gender" "male" "ip_address" "206.11.198.114" "country" "Slovenia" "country_code" "SI" "city" "Kobilje" "longitude" "16.3936719" "latitude" "46.68518" "last_login" "1596299071" +HSET "user:2076" "first_name" "Charlton" "last_name" "Schubart" "email" "cschubart23@multiply.com" "gender" "male" "ip_address" "163.232.196.221" "country" "Russia" "country_code" "RU" "city" "Krylovskaya" "longitude" "39.3008199" "latitude" "46.1168407" "last_login" "1595234180" +HSET "user:2077" "first_name" "Elaina" "last_name" "Krinks" "email" "ekrinks24@prnewswire.com" "gender" "female" "ip_address" "172.163.255.79" "country" "Indonesia" "country_code" "ID" "city" "Sendang" "longitude" "111.8210866" "latitude" "-7.935395" "last_login" "1582852286" +HSET "user:2078" "first_name" "Arlana" "last_name" "Sawter" "email" "asawter25@ebay.co.uk" "gender" "female" "ip_address" "213.194.236.0" "country" "Georgia" "country_code" "GE" "city" "Tsaghveri" "longitude" "43.4814896" "latitude" "41.8012304" "last_login" "1596434449" +HSET "user:2079" "first_name" "Johnnie" "last_name" "Wanjek" "email" "jwanjek26@flavors.me" "gender" "male" "ip_address" "242.135.79.214" "country" "Ireland" "country_code" "IE" "city" "Kill" "longitude" "-6.5924609" "latitude" "53.2482376" "last_login" "1574085614" +HSET "user:2080" "first_name" "Ephrem" "last_name" "Mycock" "email" "emycock27@uol.com.br" "gender" "male" "ip_address" "37.205.184.122" "country" "Saudi Arabia" "country_code" "SA" "city" "Ash Shafā" "longitude" "40.3241759" "latitude" "21.0744245" "last_login" "1598644520" +HSET "user:2081" "first_name" "Salem" "last_name" "Dainton" "email" "sdainton28@answers.com" "gender" "male" "ip_address" "56.126.79.197" "country" "Pakistan" "country_code" "PK" "city" "Sinjhoro" "longitude" "68.9203839" "latitude" "26.0411298" "last_login" "1596060067" +HSET "user:2082" "first_name" "Brennan" "last_name" "Bowhay" "email" "bbowhay29@economist.com" "gender" "male" "ip_address" "209.226.196.230" "country" "Czech Republic" "country_code" "CZ" "city" "Holice" "longitude" "17.289051" "latitude" "49.579879" "last_login" "1580578789" +HSET "user:2083" "first_name" "Dillon" "last_name" "Clotworthy" "email" "dclotworthy2a@paypal.com" "gender" "male" "ip_address" "189.165.36.169" "country" "Mayotte" "country_code" "YT" "city" "Ouangani" "longitude" "45.1394745" "latitude" "-12.8490559" "last_login" "1573717261" +HSET "user:2084" "first_name" "Blair" "last_name" "Hovey" "email" "bhovey2b@usda.gov" "gender" "female" "ip_address" "216.132.107.89" "country" "Russia" "country_code" "RU" "city" "Khudoyelanskoye" "longitude" "99.63042" "latitude" "54.70375" "last_login" "1582927070" +HSET "user:2085" "first_name" "Rivalee" "last_name" "Batchelar" "email" "rbatchelar2c@narod.ru" "gender" "female" "ip_address" "208.26.125.165" "country" "United States" "country_code" "US" "city" "Round Rock" "longitude" "-97.6722668" "latitude" "30.4864144" "last_login" "1571507772" +HSET "user:2086" "first_name" "Gigi" "last_name" "Dulanty" "email" "gdulanty2d@dailymail.co.uk" "gender" "female" "ip_address" "204.11.221.232" "country" "China" "country_code" "CN" "city" "Angao" "longitude" "112.39179" "latitude" "33.111117" "last_login" "1599703773" +HSET "user:2087" "first_name" "Jeralee" "last_name" "Ginnaly" "email" "jginnaly2e@cdc.gov" "gender" "female" "ip_address" "43.62.113.214" "country" "Indonesia" "country_code" "ID" "city" "Keroak" "longitude" "116.498" "latitude" "-8.5705" "last_login" "1582460003" +HSET "user:2088" "first_name" "Erl" "last_name" "Pinches" "email" "epinches2f@kickstarter.com" "gender" "male" "ip_address" "243.65.208.7" "country" "Indonesia" "country_code" "ID" "city" "Pulaupinang" "longitude" "115.0406679" "latitude" "-3.112524" "last_login" "1585970020" +HSET "user:2089" "first_name" "Quintus" "last_name" "Janko" "email" "qjanko2g@histats.com" "gender" "male" "ip_address" "152.182.212.117" "country" "Sweden" "country_code" "SE" "city" "Örnsköldsvik" "longitude" "18.6699799" "latitude" "63.2945202" "last_login" "1573514513" +HSET "user:2090" "first_name" "Lindsy" "last_name" "Ellsbury" "email" "lellsbury2h@livejournal.com" "gender" "female" "ip_address" "224.146.218.42" "country" "China" "country_code" "CN" "city" "Shuinan" "longitude" "111.439528" "latitude" "36.457599" "last_login" "1571563080" +HSET "user:2091" "first_name" "Lawton" "last_name" "Curnok" "email" "lcurnok2i@phoca.cz" "gender" "male" "ip_address" "127.229.110.48" "country" "Indonesia" "country_code" "ID" "city" "Elat" "longitude" "132.991547" "latitude" "-5.657692" "last_login" "1578910742" +HSET "user:2092" "first_name" "Ganny" "last_name" "Sidaway" "email" "gsidaway2j@oaic.gov.au" "gender" "male" "ip_address" "34.163.162.43" "country" "Poland" "country_code" "PL" "city" "Skrwilno" "longitude" "19.6212916" "latitude" "53.0172422" "last_login" "1584205509" +HSET "user:2093" "first_name" "Theadora" "last_name" "Huxster" "email" "thuxster2k@themeforest.net" "gender" "female" "ip_address" "146.234.141.158" "country" "China" "country_code" "CN" "city" "Zhoutou" "longitude" "116.328879" "latitude" "29.86548" "last_login" "1592630788" +HSET "user:2094" "first_name" "Flossy" "last_name" "Ginnally" "email" "fginnally2l@disqus.com" "gender" "female" "ip_address" "161.68.1.67" "country" "Mauritania" "country_code" "MR" "city" "Aleg" "longitude" "-13.9114989" "latitude" "17.0516148" "last_login" "1575988011" +HSET "user:2095" "first_name" "Fionnula" "last_name" "Satch" "email" "fsatch2m@buzzfeed.com" "gender" "female" "ip_address" "129.186.214.111" "country" "Indonesia" "country_code" "ID" "city" "Brak" "longitude" "109.540241" "latitude" "-7.3582578" "last_login" "1579248692" +HSET "user:2096" "first_name" "Alis" "last_name" "Spitell" "email" "aspitell2n@blogs.com" "gender" "female" "ip_address" "224.104.127.119" "country" "Russia" "country_code" "RU" "city" "Verkhniy Landekh" "longitude" "42.5992867" "latitude" "56.8408003" "last_login" "1597485181" +HSET "user:2097" "first_name" "Ed" "last_name" "Ogger" "email" "eogger2o@blogs.com" "gender" "male" "ip_address" "248.42.177.160" "country" "Indonesia" "country_code" "ID" "city" "Banjar Dauhpura" "longitude" "115.213781" "latitude" "-8.669071" "last_login" "1577893256" +HSET "user:2098" "first_name" "Erny" "last_name" "Wethey" "email" "ewethey2p@barnesandnoble.com" "gender" "male" "ip_address" "240.69.15.161" "country" "Japan" "country_code" "JP" "city" "Yanagawa" "longitude" "140.0575901" "latitude" "38.3692314" "last_login" "1594819955" +HSET "user:2099" "first_name" "Gav" "last_name" "Corkhill" "email" "gcorkhill2q@microsoft.com" "gender" "male" "ip_address" "60.152.237.166" "country" "China" "country_code" "CN" "city" "Huangchuan" "longitude" "115.051908" "latitude" "32.131522" "last_login" "1591981272" +HSET "user:2100" "first_name" "Alvera" "last_name" "Wickett" "email" "awickett2r@aboutads.info" "gender" "female" "ip_address" "103.223.206.182" "country" "Portugal" "country_code" "PT" "city" "Horta" "longitude" "-28.626058" "latitude" "38.5328" "last_login" "1581790970" +HSET "user:2101" "first_name" "Dian" "last_name" "Durden" "email" "ddurden2s@hp.com" "gender" "female" "ip_address" "145.33.124.210" "country" "Russia" "country_code" "RU" "city" "Gribanovskiy" "longitude" "41.9604082" "latitude" "51.4438248" "last_login" "1581180218" +HSET "user:2102" "first_name" "Horst" "last_name" "Truggian" "email" "htruggian2t@telegraph.co.uk" "gender" "male" "ip_address" "117.154.174.85" "country" "Kosovo" "country_code" "XK" "city" "Lëbushë" "longitude" "20.29083" "latitude" "42.56306" "last_login" "1590742557" +HSET "user:2103" "first_name" "Mackenzie" "last_name" "Longfellow" "email" "mlongfellow2u@usatoday.com" "gender" "male" "ip_address" "175.140.241.248" "country" "Brazil" "country_code" "BR" "city" "Icó" "longitude" "-38.8591633" "latitude" "-6.4026236" "last_login" "1599887002" +HSET "user:2104" "first_name" "Jodi" "last_name" "Note" "email" "jnote2v@forbes.com" "gender" "male" "ip_address" "135.194.242.29" "country" "Finland" "country_code" "FI" "city" "Nurmijärvi" "longitude" "30.0475103" "latitude" "63.4741556" "last_login" "1579754109" +HSET "user:2105" "first_name" "Gannie" "last_name" "Harriskine" "email" "gharriskine2w@berkeley.edu" "gender" "male" "ip_address" "12.10.56.61" "country" "Philippines" "country_code" "PH" "city" "Parabcan" "longitude" "123.7435653" "latitude" "13.7091486" "last_login" "1575949691" +HSET "user:2106" "first_name" "Allene" "last_name" "Dominico" "email" "adominico2x@de.vu" "gender" "female" "ip_address" "89.21.159.143" "country" "China" "country_code" "CN" "city" "Lishu" "longitude" "124.33539" "latitude" "43.30706" "last_login" "1587995933" +HSET "user:2107" "first_name" "Andris" "last_name" "Heinlein" "email" "aheinlein2y@wikipedia.org" "gender" "male" "ip_address" "223.84.249.199" "country" "Colombia" "country_code" "CO" "city" "Chigorodó" "longitude" "-76.67749" "latitude" "7.665099" "last_login" "1590142562" +HSET "user:2108" "first_name" "Glory" "last_name" "Pepineaux" "email" "gpepineaux2z@epa.gov" "gender" "female" "ip_address" "218.122.215.244" "country" "China" "country_code" "CN" "city" "Pengxing" "longitude" "113.922251" "latitude" "30.961094" "last_login" "1573276895" +HSET "user:2109" "first_name" "Rahal" "last_name" "Gornall" "email" "rgornall30@time.com" "gender" "female" "ip_address" "55.248.61.108" "country" "China" "country_code" "CN" "city" "Chengxiang" "longitude" "118.993885" "latitude" "25.419319" "last_login" "1579662505" +HSET "user:2110" "first_name" "Guillaume" "last_name" "Goodreid" "email" "ggoodreid31@hatena.ne.jp" "gender" "male" "ip_address" "25.244.158.161" "country" "Ukraine" "country_code" "UA" "city" "Velyka Mykhaylivka" "longitude" "29.8505301" "latitude" "47.081512" "last_login" "1584874433" +HSET "user:2111" "first_name" "Simone" "last_name" "Schorah" "email" "sschorah32@skyrock.com" "gender" "female" "ip_address" "113.133.26.64" "country" "Sweden" "country_code" "SE" "city" "Fagersta" "longitude" "15.8125817" "latitude" "59.9871162" "last_login" "1574749163" +HSET "user:2112" "first_name" "Herold" "last_name" "Whysall" "email" "hwhysall33@freewebs.com" "gender" "male" "ip_address" "114.69.251.180" "country" "Vietnam" "country_code" "VN" "city" "Hưng Yên" "longitude" "106.0169971" "latitude" "20.8525711" "last_login" "1576473701" +HSET "user:2113" "first_name" "Shelley" "last_name" "Ewebank" "email" "sewebank34@ustream.tv" "gender" "female" "ip_address" "104.178.184.148" "country" "China" "country_code" "CN" "city" "Huangpo" "longitude" "113.459749" "latitude" "23.106401" "last_login" "1584169643" +HSET "user:2114" "first_name" "Camille" "last_name" "Lyford" "email" "clyford35@tinypic.com" "gender" "female" "ip_address" "130.186.146.212" "country" "Sri Lanka" "country_code" "LK" "city" "Gampaha" "longitude" "79.999928" "latitude" "7.088691" "last_login" "1571721438" +HSET "user:2115" "first_name" "Kathlin" "last_name" "Welham" "email" "kwelham36@hugedomains.com" "gender" "female" "ip_address" "243.123.119.86" "country" "Honduras" "country_code" "HN" "city" "San Diego" "longitude" "-86.4478279" "latitude" "14.0523794" "last_login" "1572372475" +HSET "user:2116" "first_name" "Hank" "last_name" "Henrych" "email" "hhenrych37@icq.com" "gender" "male" "ip_address" "198.59.46.11" "country" "China" "country_code" "CN" "city" "Pingsha" "longitude" "113.188183" "latitude" "22.105035" "last_login" "1582922408" +HSET "user:2117" "first_name" "Natty" "last_name" "Mabbot" "email" "nmabbot38@ucoz.com" "gender" "female" "ip_address" "195.93.147.74" "country" "Philippines" "country_code" "PH" "city" "Bugcaon" "longitude" "125.1086998" "latitude" "8.0419777" "last_login" "1598879278" +HSET "user:2118" "first_name" "Waylan" "last_name" "Van T'Hoog" "email" "wvanthoog39@tripadvisor.com" "gender" "male" "ip_address" "173.177.42.1" "country" "Poland" "country_code" "PL" "city" "Maszkienice" "longitude" "20.7001411" "latitude" "49.988725" "last_login" "1589321636" +HSET "user:2119" "first_name" "Gwyn" "last_name" "Ianson" "email" "gianson3a@wordpress.org" "gender" "female" "ip_address" "0.192.50.24" "country" "Niger" "country_code" "NE" "city" "Téra" "longitude" "0.7556575" "latitude" "14.0031627" "last_login" "1597122587" +HSET "user:2120" "first_name" "Alexio" "last_name" "Tellenbrook" "email" "atellenbrook3b@wikia.com" "gender" "male" "ip_address" "149.205.166.184" "country" "Russia" "country_code" "RU" "city" "Voskresenskoye" "longitude" "45.4671248" "latitude" "56.7962374" "last_login" "1591278309" +HSET "user:2121" "first_name" "Vivyan" "last_name" "Hansford" "email" "vhansford3c@dedecms.com" "gender" "female" "ip_address" "121.47.9.38" "country" "Indonesia" "country_code" "ID" "city" "Malo" "longitude" "111.716667" "latitude" "-7.116667" "last_login" "1570777684" +HSET "user:2122" "first_name" "Annie" "last_name" "Delacote" "email" "adelacote3d@hao123.com" "gender" "female" "ip_address" "151.255.50.171" "country" "Russia" "country_code" "RU" "city" "Krasnoyarka" "longitude" "60.514706" "latitude" "59.418208" "last_login" "1588435711" +HSET "user:2123" "first_name" "Odelle" "last_name" "Gillogley" "email" "ogillogley3e@craigslist.org" "gender" "female" "ip_address" "132.102.8.179" "country" "China" "country_code" "CN" "city" "Baizhong" "longitude" "116.4624467" "latitude" "39.9051618" "last_login" "1597017055" +HSET "user:2124" "first_name" "Efrem" "last_name" "Curryer" "email" "ecurryer3f@feedburner.com" "gender" "male" "ip_address" "158.124.105.62" "country" "China" "country_code" "CN" "city" "Kunshan" "longitude" "120.980736" "latitude" "31.385597" "last_login" "1587440748" +HSET "user:2125" "first_name" "Timi" "last_name" "Thibodeaux" "email" "tthibodeaux3g@pinterest.com" "gender" "female" "ip_address" "213.178.90.173" "country" "Sweden" "country_code" "SE" "city" "Borås" "longitude" "12.9533224" "latitude" "57.7106249" "last_login" "1583935583" +HSET "user:2126" "first_name" "Abran" "last_name" "Warin" "email" "awarin3h@vkontakte.ru" "gender" "male" "ip_address" "211.83.80.85" "country" "El Salvador" "country_code" "SV" "city" "Zacatecoluca" "longitude" "-88.8694951" "latitude" "13.5122393" "last_login" "1585272190" +HSET "user:2127" "first_name" "Clywd" "last_name" "McGaugey" "email" "cmcgaugey3i@noaa.gov" "gender" "male" "ip_address" "70.71.77.188" "country" "Greece" "country_code" "GR" "city" "Míthymna" "longitude" "26.1751462" "latitude" "39.367146" "last_login" "1574884205" +HSET "user:2128" "first_name" "Damian" "last_name" "Meadley" "email" "dmeadley3j@list-manage.com" "gender" "male" "ip_address" "145.209.155.23" "country" "Thailand" "country_code" "TH" "city" "Pa Phayom" "longitude" "99.9423246" "latitude" "7.8401615" "last_login" "1569102369" +HSET "user:2129" "first_name" "Haley" "last_name" "Nizet" "email" "hnizet3k@goo.ne.jp" "gender" "female" "ip_address" "100.71.69.95" "country" "Philippines" "country_code" "PH" "city" "Lepanto" "longitude" "123.3036704" "latitude" "9.3136403" "last_login" "1576880689" +HSET "user:2130" "first_name" "Tucker" "last_name" "Clausen-Thue" "email" "tclausenthue3l@soundcloud.com" "gender" "male" "ip_address" "98.110.213.58" "country" "Vietnam" "country_code" "VN" "city" "Chơn Thành" "longitude" "106.6527099" "latitude" "11.4696902" "last_login" "1589390023" +HSET "user:2131" "first_name" "Hasty" "last_name" "Fetteplace" "email" "hfetteplace3m@yellowbook.com" "gender" "male" "ip_address" "195.75.155.70" "country" "Azerbaijan" "country_code" "AZ" "city" "Neftçala" "longitude" "49.2413743" "latitude" "39.3881052" "last_login" "1574685705" +HSET "user:2132" "first_name" "Emelyne" "last_name" "Quincey" "email" "equincey3n@51.la" "gender" "female" "ip_address" "79.4.236.148" "country" "Portugal" "country_code" "PT" "city" "Corujeira" "longitude" "-8.4171648" "latitude" "41.2357155" "last_login" "1579553202" +HSET "user:2133" "first_name" "Tammy" "last_name" "Le Estut" "email" "tleestut3o@yandex.ru" "gender" "male" "ip_address" "6.148.21.158" "country" "France" "country_code" "FR" "city" "Amiens" "longitude" "2.3081396" "latitude" "49.8905368" "last_login" "1590783418" +HSET "user:2134" "first_name" "Euell" "last_name" "Titchard" "email" "etitchard3p@forbes.com" "gender" "male" "ip_address" "199.93.209.23" "country" "Philippines" "country_code" "PH" "city" "Lanuza" "longitude" "120.9959319" "latitude" "14.5769063" "last_login" "1588727375" +HSET "user:2135" "first_name" "Gabriell" "last_name" "Muddle" "email" "gmuddle3q@google.nl" "gender" "female" "ip_address" "77.191.249.31" "country" "Laos" "country_code" "LA" "city" "Xaysetha" "longitude" "106.9329091" "latitude" "14.8165996" "last_login" "1568860844" +HSET "user:2136" "first_name" "Hedi" "last_name" "Madrell" "email" "hmadrell3r@networkadvertising.org" "gender" "female" "ip_address" "53.15.193.186" "country" "China" "country_code" "CN" "city" "Hali" "longitude" "-63.6010175" "latitude" "44.6441724" "last_login" "1597388013" +HSET "user:2137" "first_name" "Jethro" "last_name" "Pautot" "email" "jpautot3s@ocn.ne.jp" "gender" "male" "ip_address" "135.76.204.224" "country" "Indonesia" "country_code" "ID" "city" "Likwatang Timur" "longitude" "124.668" "latitude" "-8.1649" "last_login" "1577424118" +HSET "user:2138" "first_name" "Cobbie" "last_name" "Battyll" "email" "cbattyll3t@ibm.com" "gender" "male" "ip_address" "31.23.135.32" "country" "Indonesia" "country_code" "ID" "city" "Wurigelebur" "longitude" "138.8095665" "latitude" "-3.7099248" "last_login" "1575012850" +HSET "user:2139" "first_name" "Benjy" "last_name" "Abate" "email" "babate3u@360.cn" "gender" "male" "ip_address" "97.31.23.42" "country" "China" "country_code" "CN" "city" "Huoshaoping" "longitude" "110.738098" "latitude" "30.501816" "last_login" "1585320679" +HSET "user:2140" "first_name" "Abdel" "last_name" "Heart" "email" "aheart3v@biglobe.ne.jp" "gender" "male" "ip_address" "179.244.114.30" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1597507347" +HSET "user:2141" "first_name" "Ailina" "last_name" "Lidgertwood" "email" "alidgertwood3w@multiply.com" "gender" "female" "ip_address" "34.3.27.71" "country" "Morocco" "country_code" "MA" "city" "Bhalil" "longitude" "-4.8676221" "latitude" "33.8512937" "last_login" "1598008138" +HSET "user:2142" "first_name" "Travis" "last_name" "Halifax" "email" "thalifax3x@ft.com" "gender" "male" "ip_address" "123.96.195.248" "country" "Indonesia" "country_code" "ID" "city" "Dairiti" "longitude" "121.8525" "latitude" "-10.539" "last_login" "1583937942" +HSET "user:2143" "first_name" "Melodie" "last_name" "Smidmor" "email" "msmidmor3y@latimes.com" "gender" "female" "ip_address" "162.210.213.186" "country" "France" "country_code" "FR" "city" "Cergy-Pontoise" "longitude" "2.074954" "latitude" "49.039076" "last_login" "1569662837" +HSET "user:2144" "first_name" "Karalynn" "last_name" "Monkeman" "email" "kmonkeman3z@issuu.com" "gender" "female" "ip_address" "0.88.135.155" "country" "Philippines" "country_code" "PH" "city" "Gabi" "longitude" "123.958258" "latitude" "10.2600338" "last_login" "1582396980" +HSET "user:2145" "first_name" "Linell" "last_name" "Deely" "email" "ldeely40@xrea.com" "gender" "female" "ip_address" "230.42.114.220" "country" "Palestinian Territory" "country_code" "PS" "city" "Tayāsīr" "longitude" "35.396266" "latitude" "32.339402" "last_login" "1598893945" +HSET "user:2146" "first_name" "Chrissy" "last_name" "Markova" "email" "cmarkova41@livejournal.com" "gender" "female" "ip_address" "58.79.60.216" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Mù Cang Chải" "longitude" "104.0836104" "latitude" "21.8528313" "last_login" "1577191554" +HSET "user:2147" "first_name" "Phylys" "last_name" "Kelbie" "email" "pkelbie42@vimeo.com" "gender" "female" "ip_address" "44.65.53.40" "country" "Philippines" "country_code" "PH" "city" "Mabini" "longitude" "120.9921722" "latitude" "14.5024732" "last_login" "1587558592" +HSET "user:2148" "first_name" "Mara" "last_name" "Cosgrave" "email" "mcosgrave43@census.gov" "gender" "female" "ip_address" "46.78.165.81" "country" "Serbia" "country_code" "RS" "city" "Lukićevo" "longitude" "20.5145956" "latitude" "45.3444075" "last_login" "1578504652" +HSET "user:2149" "first_name" "Mercy" "last_name" "Pearn" "email" "mpearn44@uiuc.edu" "gender" "female" "ip_address" "41.132.191.65" "country" "Vietnam" "country_code" "VN" "city" "Dĩ An" "longitude" "106.7692013" "latitude" "10.9155965" "last_login" "1586393338" +HSET "user:2150" "first_name" "Hammad" "last_name" "Pidler" "email" "hpidler45@ask.com" "gender" "male" "ip_address" "99.173.111.190" "country" "China" "country_code" "CN" "city" "Yanling" "longitude" "113.772655" "latitude" "26.489902" "last_login" "1591043425" +HSET "user:2151" "first_name" "Marcos" "last_name" "Darkott" "email" "mdarkott46@is.gd" "gender" "male" "ip_address" "206.125.127.141" "country" "France" "country_code" "FR" "city" "Clermont-Ferrand" "longitude" "3.0857432" "latitude" "45.7787293" "last_login" "1585865480" +HSET "user:2152" "first_name" "Talya" "last_name" "Vurley" "email" "tvurley47@mysql.com" "gender" "female" "ip_address" "94.6.234.57" "country" "Sweden" "country_code" "SE" "city" "Piteå" "longitude" "21.5024355" "latitude" "65.3436554" "last_login" "1580350458" +HSET "user:2153" "first_name" "Padget" "last_name" "Freschini" "email" "pfreschini48@bing.com" "gender" "male" "ip_address" "144.61.168.124" "country" "Colombia" "country_code" "CO" "city" "Chipaque" "longitude" "-74.0887576" "latitude" "4.3982671" "last_login" "1587245794" +HSET "user:2154" "first_name" "Chickie" "last_name" "Spacey" "email" "cspacey49@printfriendly.com" "gender" "male" "ip_address" "113.125.94.71" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-77.0125445" "latitude" "38.9273849" "last_login" "1586681502" +HSET "user:2155" "first_name" "Shannon" "last_name" "Rollo" "email" "srollo4a@skyrock.com" "gender" "male" "ip_address" "169.180.143.208" "country" "Peru" "country_code" "PE" "city" "Magdalena" "longitude" "-77.069999" "latitude" "-12.0904353" "last_login" "1589650521" +HSET "user:2156" "first_name" "Kattie" "last_name" "Cooling" "email" "kcooling4b@yellowbook.com" "gender" "female" "ip_address" "39.1.185.77" "country" "Poland" "country_code" "PL" "city" "Mrzeżyno" "longitude" "15.3283906" "latitude" "54.1415093" "last_login" "1587815586" +HSET "user:2157" "first_name" "Karon" "last_name" "Monteaux" "email" "kmonteaux4c@businessweek.com" "gender" "female" "ip_address" "251.10.225.92" "country" "Philippines" "country_code" "PH" "city" "Libertad" "longitude" "120.997522" "latitude" "14.5473421" "last_login" "1594936059" +HSET "user:2158" "first_name" "Kym" "last_name" "Hagan" "email" "khagan4d@weather.com" "gender" "female" "ip_address" "33.248.134.0" "country" "Indonesia" "country_code" "ID" "city" "Langensari" "longitude" "107.1781769" "latitude" "-6.8008183" "last_login" "1575289258" +HSET "user:2159" "first_name" "Aloysius" "last_name" "Nornable" "email" "anornable4e@kickstarter.com" "gender" "male" "ip_address" "105.14.86.6" "country" "China" "country_code" "CN" "city" "Shilong" "longitude" "113.874335" "latitude" "23.105394" "last_login" "1592823276" +HSET "user:2160" "first_name" "Ariana" "last_name" "Dovey" "email" "adovey4f@prlog.org" "gender" "female" "ip_address" "211.246.58.100" "country" "Russia" "country_code" "RU" "city" "Kamenka" "longitude" "133.9326833" "latitude" "44.348809" "last_login" "1576783640" +HSET "user:2161" "first_name" "Rica" "last_name" "Keizman" "email" "rkeizman4g@ning.com" "gender" "female" "ip_address" "54.211.33.202" "country" "Brazil" "country_code" "BR" "city" "Iaçu" "longitude" "-40.2271243" "latitude" "-12.8454679" "last_login" "1573628584" +HSET "user:2162" "first_name" "Mauricio" "last_name" "Humbert" "email" "mhumbert4h@oakley.com" "gender" "male" "ip_address" "66.149.198.168" "country" "Portugal" "country_code" "PT" "city" "Seixo da Beira" "longitude" "-7.845845" "latitude" "40.4579077" "last_login" "1599382326" +HSET "user:2163" "first_name" "Orbadiah" "last_name" "Simkovitz" "email" "osimkovitz4i@taobao.com" "gender" "male" "ip_address" "204.238.249.174" "country" "China" "country_code" "CN" "city" "Liren" "longitude" "108.9877602" "latitude" "34.2456501" "last_login" "1595120326" +HSET "user:2164" "first_name" "Neil" "last_name" "Lambart" "email" "nlambart4j@state.tx.us" "gender" "male" "ip_address" "57.46.243.21" "country" "United Kingdom" "country_code" "GB" "city" "Norton" "longitude" "-1.4631269" "latitude" "53.3326454" "last_login" "1574551491" +HSET "user:2165" "first_name" "Drusie" "last_name" "Guillem" "email" "dguillem4k@cpanel.net" "gender" "female" "ip_address" "204.70.175.19" "country" "Russia" "country_code" "RU" "city" "Dubrovka" "longitude" "41.1342102" "latitude" "51.6269724" "last_login" "1599487970" +HSET "user:2166" "first_name" "June" "last_name" "Jesteco" "email" "jjesteco4l@yellowbook.com" "gender" "female" "ip_address" "10.229.178.38" "country" "Indonesia" "country_code" "ID" "city" "Kota Ternate" "longitude" "127.3695176" "latitude" "0.7710308" "last_login" "1581650367" +HSET "user:2167" "first_name" "Merridie" "last_name" "Iacapucci" "email" "miacapucci4m@wikipedia.org" "gender" "female" "ip_address" "212.164.27.243" "country" "France" "country_code" "FR" "city" "Villefranche-sur-Mer" "longitude" "7.310776" "latitude" "43.701416" "last_login" "1574855270" +HSET "user:2168" "first_name" "Anthony" "last_name" "Bannester" "email" "abannester4n@moonfruit.com" "gender" "male" "ip_address" "223.105.223.104" "country" "Russia" "country_code" "RU" "city" "Kil’mez’" "longitude" "51.0642669" "latitude" "56.9438063" "last_login" "1586165541" +HSET "user:2169" "first_name" "Ric" "last_name" "Girt" "email" "rgirt4o@msn.com" "gender" "male" "ip_address" "38.238.128.236" "country" "Indonesia" "country_code" "ID" "city" "Depapre" "longitude" "140.4101474" "latitude" "-2.4655425" "last_login" "1594531477" +HSET "user:2170" "first_name" "Magnum" "last_name" "Mazzilli" "email" "mmazzilli4p@google.it" "gender" "male" "ip_address" "93.245.42.240" "country" "Bolivia" "country_code" "BO" "city" "Charagua" "longitude" "-63.1973233" "latitude" "-19.7809492" "last_login" "1600203168" +HSET "user:2171" "first_name" "Benedikta" "last_name" "Pfleger" "email" "bpfleger4q@yahoo.co.jp" "gender" "female" "ip_address" "237.8.168.83" "country" "Costa Rica" "country_code" "CR" "city" "Aserrí" "longitude" "-84.0943743" "latitude" "9.8586845" "last_login" "1578182437" +HSET "user:2172" "first_name" "Joellyn" "last_name" "O'Bradden" "email" "jobradden4r@time.com" "gender" "female" "ip_address" "46.57.221.120" "country" "Finland" "country_code" "FI" "city" "Valkeakoski" "longitude" "23.9771623" "latitude" "61.3034539" "last_login" "1594154860" +HSET "user:2173" "first_name" "Teddy" "last_name" "Tevlin" "email" "ttevlin4s@springer.com" "gender" "male" "ip_address" "205.155.158.59" "country" "China" "country_code" "CN" "city" "Dongjiahe" "longitude" "119.761775" "latitude" "35.585575" "last_login" "1594588659" +HSET "user:2174" "first_name" "Lian" "last_name" "Fluger" "email" "lfluger4t@friendfeed.com" "gender" "female" "ip_address" "73.7.91.173" "country" "Philippines" "country_code" "PH" "city" "Saguday" "longitude" "121.563879" "latitude" "16.5409974" "last_login" "1569056656" +HSET "user:2175" "first_name" "Shir" "last_name" "Costa" "email" "scosta4u@yolasite.com" "gender" "female" "ip_address" "160.86.99.119" "country" "China" "country_code" "CN" "city" "Xinhe" "longitude" "115.251124" "latitude" "37.520481" "last_login" "1597133539" +HSET "user:2176" "first_name" "Kaja" "last_name" "Faragan" "email" "kfaragan4v@mlb.com" "gender" "female" "ip_address" "178.137.153.11" "country" "Finland" "country_code" "FI" "city" "Töysä" "longitude" "23.8122978" "latitude" "62.6274285" "last_login" "1589327496" +HSET "user:2177" "first_name" "Crysta" "last_name" "Gambell" "email" "cgambell4w@psu.edu" "gender" "female" "ip_address" "118.64.223.74" "country" "Argentina" "country_code" "AR" "city" "Londres" "longitude" "-68.1247915" "latitude" "-38.9568843" "last_login" "1598790869" +HSET "user:2178" "first_name" "Rudyard" "last_name" "Franke" "email" "rfranke4x@hc360.com" "gender" "male" "ip_address" "240.63.188.107" "country" "Yemen" "country_code" "YE" "city" "Kitāf" "longitude" "44.1221682" "latitude" "17.037629" "last_login" "1591481474" +HSET "user:2179" "first_name" "Zorine" "last_name" "Kender" "email" "zkender4y@mac.com" "gender" "female" "ip_address" "73.19.48.124" "country" "Sweden" "country_code" "SE" "city" "Haninge" "longitude" "18.1593939" "latitude" "59.1779971" "last_login" "1588952713" +HSET "user:2180" "first_name" "Elnora" "last_name" "Jouning" "email" "ejouning4z@istockphoto.com" "gender" "female" "ip_address" "2.161.117.98" "country" "Mexico" "country_code" "MX" "city" "Venustiano Carranza" "longitude" "-116.9353591" "latitude" "32.5362744" "last_login" "1587582753" +HSET "user:2181" "first_name" "Marjie" "last_name" "Effaunt" "email" "meffaunt50@flavors.me" "gender" "female" "ip_address" "223.169.202.46" "country" "Albania" "country_code" "AL" "city" "Iballë" "longitude" "20.0003019" "latitude" "42.1874125" "last_login" "1597450964" +HSET "user:2182" "first_name" "Maximilian" "last_name" "Kaine" "email" "mkaine51@earthlink.net" "gender" "male" "ip_address" "31.252.238.211" "country" "China" "country_code" "CN" "city" "Longjie" "longitude" "114.370768" "latitude" "24.189754" "last_login" "1572887625" +HSET "user:2183" "first_name" "Basilius" "last_name" "Cowtherd" "email" "bcowtherd52@marketwatch.com" "gender" "male" "ip_address" "111.226.180.139" "country" "China" "country_code" "CN" "city" "Beipai" "longitude" "110.6740009" "latitude" "25.6067597" "last_login" "1598339724" +HSET "user:2184" "first_name" "Rosana" "last_name" "Gilliland" "email" "rgilliland53@cmu.edu" "gender" "female" "ip_address" "237.73.64.79" "country" "China" "country_code" "CN" "city" "Yuanlin" "longitude" "120.5854674" "latitude" "23.959574" "last_login" "1569372593" +HSET "user:2185" "first_name" "Letisha" "last_name" "Delf" "email" "ldelf54@yahoo.co.jp" "gender" "female" "ip_address" "122.144.194.122" "country" "Brazil" "country_code" "BR" "city" "Paty do Alferes" "longitude" "-43.4289497" "latitude" "-22.4313914" "last_login" "1573125637" +HSET "user:2186" "first_name" "Olivette" "last_name" "Bruhn" "email" "obruhn55@vk.com" "gender" "female" "ip_address" "165.136.110.125" "country" "Greece" "country_code" "GR" "city" "Néa Tríglia" "longitude" "23.2071052" "latitude" "40.3062929" "last_login" "1575541828" +HSET "user:2187" "first_name" "Aurilia" "last_name" "Patel" "email" "apatel56@wiley.com" "gender" "female" "ip_address" "148.32.245.196" "country" "Indonesia" "country_code" "ID" "city" "Parawan" "longitude" "107.5703914" "latitude" "-7.0444877" "last_login" "1580105111" +HSET "user:2188" "first_name" "Ariel" "last_name" "Easey" "email" "aeasey57@hibu.com" "gender" "male" "ip_address" "122.39.143.126" "country" "Portugal" "country_code" "PT" "city" "Sande Vila Nova" "longitude" "-8.3564179" "latitude" "41.4716583" "last_login" "1585900923" +HSET "user:2189" "first_name" "Jeffie" "last_name" "Blacksland" "email" "jblacksland58@goo.gl" "gender" "male" "ip_address" "14.90.164.33" "country" "France" "country_code" "FR" "city" "Saint-Ouen" "longitude" "-1.1457859" "latitude" "46.5993244" "last_login" "1583182931" +HSET "user:2190" "first_name" "Greta" "last_name" "Whitehorn" "email" "gwhitehorn59@opera.com" "gender" "female" "ip_address" "46.6.15.104" "country" "Portugal" "country_code" "PT" "city" "Vila" "longitude" "-8.2574904" "latitude" "42.1132871" "last_login" "1593026034" +HSET "user:2191" "first_name" "Birgitta" "last_name" "Griniov" "email" "bgriniov5a@chronoengine.com" "gender" "female" "ip_address" "87.161.129.177" "country" "Slovenia" "country_code" "SI" "city" "Černelavci" "longitude" "16.1355432" "latitude" "46.6488132" "last_login" "1589820417" +HSET "user:2192" "first_name" "Domini" "last_name" "McLoney" "email" "dmcloney5b@pagesperso-orange.fr" "gender" "female" "ip_address" "127.144.211.46" "country" "China" "country_code" "CN" "city" "Dazhigu" "longitude" "117.246625" "latitude" "39.10972" "last_login" "1598830628" +HSET "user:2193" "first_name" "Margaretha" "last_name" "Steer" "email" "msteer5c@tiny.cc" "gender" "female" "ip_address" "51.67.185.182" "country" "South Africa" "country_code" "ZA" "city" "Eshowe" "longitude" "31.751934" "latitude" "-28.959987" "last_login" "1571062366" +HSET "user:2194" "first_name" "Sherilyn" "last_name" "Messer" "email" "smesser5d@bloglovin.com" "gender" "female" "ip_address" "44.251.169.192" "country" "Sweden" "country_code" "SE" "city" "Skanör" "longitude" "12.8627096" "latitude" "55.4018986" "last_login" "1586274081" +HSET "user:2195" "first_name" "Vlad" "last_name" "Wingeatt" "email" "vwingeatt5e@nps.gov" "gender" "male" "ip_address" "158.93.158.195" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "11.9101293" "latitude" "57.6999197" "last_login" "1581558159" +HSET "user:2196" "first_name" "Vincenty" "last_name" "Rentz" "email" "vrentz5f@desdev.cn" "gender" "male" "ip_address" "98.112.22.153" "country" "Zimbabwe" "country_code" "ZW" "city" "Mazowe" "longitude" "30.9747258" "latitude" "-17.5069121" "last_login" "1569993752" +HSET "user:2197" "first_name" "Madel" "last_name" "Carbett" "email" "mcarbett5g@skype.com" "gender" "female" "ip_address" "124.86.13.247" "country" "Poland" "country_code" "PL" "city" "Biała" "longitude" "19.4450042" "latitude" "51.9301973" "last_login" "1590140302" +HSET "user:2198" "first_name" "Matthaeus" "last_name" "Serotsky" "email" "mserotsky5h@slate.com" "gender" "male" "ip_address" "34.140.123.107" "country" "Kazakhstan" "country_code" "KZ" "city" "Shu" "longitude" "73.7631135" "latitude" "43.6051078" "last_login" "1588463197" +HSET "user:2199" "first_name" "Ethelind" "last_name" "Stanway" "email" "estanway5i@ovh.net" "gender" "female" "ip_address" "143.247.87.37" "country" "Slovenia" "country_code" "SI" "city" "Lukovica pri Domžalah" "longitude" "14.6907259" "latitude" "46.1696293" "last_login" "1575973893" +HSET "user:2200" "first_name" "Terra" "last_name" "Carnson" "email" "tcarnson5j@whitehouse.gov" "gender" "female" "ip_address" "177.171.25.50" "country" "Nigeria" "country_code" "NG" "city" "Kumo" "longitude" "11.21814" "latitude" "10.04208" "last_login" "1586771585" +HSET "user:2201" "first_name" "Pattin" "last_name" "Kuhlen" "email" "pkuhlen5k@mac.com" "gender" "male" "ip_address" "125.46.219.57" "country" "China" "country_code" "CN" "city" "Chengxi" "longitude" "101.765843" "latitude" "36.628305" "last_login" "1576809242" +HSET "user:2202" "first_name" "Rutger" "last_name" "Kik" "email" "rkik5l@usnews.com" "gender" "male" "ip_address" "163.83.17.142" "country" "China" "country_code" "CN" "city" "Shangyuan" "longitude" "116.336069" "latitude" "27.522069" "last_login" "1587190832" +HSET "user:2203" "first_name" "Corrianne" "last_name" "Cureton" "email" "ccureton5m@furl.net" "gender" "female" "ip_address" "217.246.171.253" "country" "Vietnam" "country_code" "VN" "city" "Hưng Yên" "longitude" "106.0169971" "latitude" "20.8525711" "last_login" "1599625356" +HSET "user:2204" "first_name" "Talyah" "last_name" "Boc" "email" "tboc5n@apple.com" "gender" "female" "ip_address" "110.202.171.251" "country" "Canada" "country_code" "CA" "city" "Strathmore" "longitude" "-113.3992725" "latitude" "51.0376583" "last_login" "1578993209" +HSET "user:2205" "first_name" "Petr" "last_name" "Jekel" "email" "pjekel5o@sciencedirect.com" "gender" "male" "ip_address" "20.43.250.86" "country" "China" "country_code" "CN" "city" "Luzhai" "longitude" "109.733126" "latitude" "24.487326" "last_login" "1571679248" +HSET "user:2206" "first_name" "Horatio" "last_name" "Klimschak" "email" "hklimschak5p@youtu.be" "gender" "male" "ip_address" "114.0.130.73" "country" "Malaysia" "country_code" "MY" "city" "Tawau" "longitude" "117.893335" "latitude" "4.243113" "last_login" "1585801865" +HSET "user:2207" "first_name" "Raddy" "last_name" "Stronach" "email" "rstronach5q@fc2.com" "gender" "male" "ip_address" "89.64.9.133" "country" "China" "country_code" "CN" "city" "Dagur" "longitude" "95.73333" "latitude" "36.41667" "last_login" "1589077905" +HSET "user:2208" "first_name" "Sal" "last_name" "Ambrodi" "email" "sambrodi5r@jalbum.net" "gender" "female" "ip_address" "247.51.194.225" "country" "China" "country_code" "CN" "city" "Qianpai" "longitude" "113.734466" "latitude" "23.030446" "last_login" "1588823133" +HSET "user:2209" "first_name" "Sebastien" "last_name" "Brown" "email" "sbrown5s@ft.com" "gender" "male" "ip_address" "14.76.125.224" "country" "Poland" "country_code" "PL" "city" "Gostyń" "longitude" "16.955476" "latitude" "51.9034509" "last_login" "1573688925" +HSET "user:2210" "first_name" "Pammy" "last_name" "Offner" "email" "poffner5t@liveinternet.ru" "gender" "female" "ip_address" "253.132.158.15" "country" "Belarus" "country_code" "BY" "city" "Hrodna" "longitude" "23.8131306" "latitude" "53.6693538" "last_login" "1568932003" +HSET "user:2211" "first_name" "Wiatt" "last_name" "Este" "email" "weste5u@guardian.co.uk" "gender" "male" "ip_address" "153.146.221.1" "country" "Myanmar" "country_code" "MM" "city" "Thayetmyo" "longitude" "95.1797058" "latitude" "19.3228423" "last_login" "1592843508" +HSET "user:2212" "first_name" "Tobey" "last_name" "Sumpner" "email" "tsumpner5v@surveymonkey.com" "gender" "female" "ip_address" "91.8.106.84" "country" "China" "country_code" "CN" "city" "Lingcheng" "longitude" "116.576092" "latitude" "37.335794" "last_login" "1592060556" +HSET "user:2213" "first_name" "Clair" "last_name" "Filippucci" "email" "cfilippucci5w@dell.com" "gender" "female" "ip_address" "201.225.111.214" "country" "Czech Republic" "country_code" "CZ" "city" "Rumburk" "longitude" "14.5696066" "latitude" "50.98709" "last_login" "1574482951" +HSET "user:2214" "first_name" "Shaina" "last_name" "Walkley" "email" "swalkley5x@163.com" "gender" "female" "ip_address" "82.180.30.22" "country" "Indonesia" "country_code" "ID" "city" "Kaca" "longitude" "119.9191194" "latitude" "-4.1471884" "last_login" "1572618600" +HSET "user:2215" "first_name" "Ailene" "last_name" "Crayden" "email" "acrayden5y@bandcamp.com" "gender" "female" "ip_address" "216.226.250.54" "country" "Myanmar" "country_code" "MM" "city" "Mawlaik" "longitude" "94.4027782" "latitude" "23.6474523" "last_login" "1581195041" +HSET "user:2216" "first_name" "Emylee" "last_name" "Quinney" "email" "equinney5z@wikimedia.org" "gender" "female" "ip_address" "138.192.101.67" "country" "China" "country_code" "CN" "city" "Huangtan" "longitude" "121.261886" "latitude" "28.650072" "last_login" "1574320742" +HSET "user:2217" "first_name" "Gardener" "last_name" "Blaise" "email" "gblaise60@reddit.com" "gender" "male" "ip_address" "47.145.209.155" "country" "Bulgaria" "country_code" "BG" "city" "Sadovo" "longitude" "24.9390156" "latitude" "42.1309737" "last_login" "1571514586" +HSET "user:2218" "first_name" "Pia" "last_name" "Kuschek" "email" "pkuschek61@illinois.edu" "gender" "female" "ip_address" "100.235.94.153" "country" "Indonesia" "country_code" "ID" "city" "Robatal" "longitude" "113.2989944" "latitude" "-7.0071448" "last_login" "1570899533" +HSET "user:2219" "first_name" "Mickey" "last_name" "Coultass" "email" "mcoultass62@samsung.com" "gender" "male" "ip_address" "215.9.229.209" "country" "China" "country_code" "CN" "city" "Hetou" "longitude" "116.6930225" "latitude" "24.3520171" "last_login" "1593579187" +HSET "user:2220" "first_name" "Noel" "last_name" "Russilll" "email" "nrussilll63@1688.com" "gender" "female" "ip_address" "131.125.54.47" "country" "Philippines" "country_code" "PH" "city" "Valencia" "longitude" "121.0348405" "latitude" "14.6099284" "last_login" "1588709833" +HSET "user:2221" "first_name" "Opalina" "last_name" "Firmage" "email" "ofirmage64@sitemeter.com" "gender" "female" "ip_address" "1.70.138.187" "country" "Chad" "country_code" "TD" "city" "Goz Beïda" "longitude" "21.4126837" "latitude" "12.225759" "last_login" "1574804843" +HSET "user:2222" "first_name" "Vinnie" "last_name" "Coite" "email" "vcoite65@weibo.com" "gender" "female" "ip_address" "164.152.71.164" "country" "China" "country_code" "CN" "city" "Yanmen" "longitude" "112.865891" "latitude" "39.193073" "last_login" "1572867964" +HSET "user:2223" "first_name" "Hakim" "last_name" "Buxsy" "email" "hbuxsy66@cyberchimps.com" "gender" "male" "ip_address" "21.106.113.213" "country" "Ukraine" "country_code" "UA" "city" "Novhorod-Sivers’kyy" "longitude" "33.2615" "latitude" "52.00577" "last_login" "1581476732" +HSET "user:2224" "first_name" "Ophelia" "last_name" "Sprigings" "email" "osprigings67@go.com" "gender" "female" "ip_address" "148.63.172.212" "country" "China" "country_code" "CN" "city" "Lhakangtang" "longitude" "101.19904" "latitude" "36.11609" "last_login" "1572241842" +HSET "user:2225" "first_name" "Worthington" "last_name" "Margerrison" "email" "wmargerrison68@alibaba.com" "gender" "male" "ip_address" "24.210.75.20" "country" "Russia" "country_code" "RU" "city" "Mendeleyevo" "longitude" "37.2339179" "latitude" "56.0388248" "last_login" "1597153693" +HSET "user:2226" "first_name" "Adler" "last_name" "Wellen" "email" "awellen69@slideshare.net" "gender" "male" "ip_address" "116.51.103.11" "country" "Indonesia" "country_code" "ID" "city" "Riangkroko" "longitude" "122.789" "latitude" "-8.1544" "last_login" "1590069644" +HSET "user:2227" "first_name" "Walliw" "last_name" "Oake" "email" "woake6a@npr.org" "gender" "female" "ip_address" "170.228.14.95" "country" "China" "country_code" "CN" "city" "Gaozhai" "longitude" "101.978369" "latitude" "36.548365" "last_login" "1583582201" +HSET "user:2228" "first_name" "Welby" "last_name" "Sudell" "email" "wsudell6b@amazon.co.uk" "gender" "male" "ip_address" "178.155.184.51" "country" "Chile" "country_code" "CL" "city" "Cochrane" "longitude" "-72.5729823" "latitude" "-47.2535728" "last_login" "1595799723" +HSET "user:2229" "first_name" "Rubi" "last_name" "Pretswell" "email" "rpretswell6c@fda.gov" "gender" "female" "ip_address" "91.131.177.55" "country" "South Africa" "country_code" "ZA" "city" "Graksop" "longitude" "30.7565467" "latitude" "-24.6258027" "last_login" "1587304016" +HSET "user:2230" "first_name" "Elinor" "last_name" "Cromb" "email" "ecromb6d@cbslocal.com" "gender" "female" "ip_address" "34.94.5.225" "country" "Indonesia" "country_code" "ID" "city" "Khairiahmandah" "longitude" "103.5089907" "latitude" "0.0090686" "last_login" "1598785671" +HSET "user:2231" "first_name" "Suzann" "last_name" "Khomich" "email" "skhomich6e@arstechnica.com" "gender" "female" "ip_address" "168.247.250.3" "country" "Poland" "country_code" "PL" "city" "Przasnysz" "longitude" "20.8891438" "latitude" "53.0172544" "last_login" "1582324832" +HSET "user:2232" "first_name" "Didi" "last_name" "Buzek" "email" "dbuzek6f@shareasale.com" "gender" "female" "ip_address" "121.219.174.234" "country" "Czech Republic" "country_code" "CZ" "city" "Pyšely" "longitude" "14.6777303" "latitude" "49.8752681" "last_login" "1592988282" +HSET "user:2233" "first_name" "Peggy" "last_name" "Dankersley" "email" "pdankersley6g@t-online.de" "gender" "female" "ip_address" "71.223.154.250" "country" "China" "country_code" "CN" "city" "Qinghua" "longitude" "116.3264439" "latitude" "39.9996674" "last_login" "1574119402" +HSET "user:2234" "first_name" "Roy" "last_name" "Ingerfield" "email" "ringerfield6h@sfgate.com" "gender" "male" "ip_address" "29.58.254.26" "country" "France" "country_code" "FR" "city" "Sainte-Geneviève-des-Bois" "longitude" "2.3269318" "latitude" "48.6405537" "last_login" "1598188056" +HSET "user:2235" "first_name" "Ber" "last_name" "Strauss" "email" "bstrauss6i@unblog.fr" "gender" "male" "ip_address" "28.43.209.30" "country" "China" "country_code" "CN" "city" "Wanxian" "longitude" "108.408661" "latitude" "30.807667" "last_login" "1570512913" +HSET "user:2236" "first_name" "Rafaellle" "last_name" "Brocklesby" "email" "rbrocklesby6j@webnode.com" "gender" "male" "ip_address" "142.88.50.3" "country" "China" "country_code" "CN" "city" "Qiaotou" "longitude" "120.482198" "latitude" "28.168408" "last_login" "1577916565" +HSET "user:2237" "first_name" "Barbi" "last_name" "Balsdon" "email" "bbalsdon6k@omniture.com" "gender" "female" "ip_address" "33.216.148.9" "country" "Belarus" "country_code" "BY" "city" "Orsha" "longitude" "30.4119546" "latitude" "54.5071478" "last_login" "1577753982" +HSET "user:2238" "first_name" "Lawry" "last_name" "Hubbock" "email" "lhubbock6l@networkadvertising.org" "gender" "male" "ip_address" "64.196.3.118" "country" "France" "country_code" "FR" "city" "Chelles" "longitude" "3.828292" "latitude" "45.3954435" "last_login" "1573751378" +HSET "user:2239" "first_name" "Aurthur" "last_name" "Kops" "email" "akops6m@sbwire.com" "gender" "male" "ip_address" "247.54.218.237" "country" "China" "country_code" "CN" "city" "Huwan" "longitude" "114.576901" "latitude" "31.680023" "last_login" "1574706721" +HSET "user:2240" "first_name" "Reinald" "last_name" "Kennedy" "email" "rkennedy6n@sfgate.com" "gender" "male" "ip_address" "155.155.142.85" "country" "China" "country_code" "CN" "city" "Wudan" "longitude" "106.750625" "latitude" "26.630845" "last_login" "1579049580" +HSET "user:2241" "first_name" "Hasheem" "last_name" "Garnsworthy" "email" "hgarnsworthy6o@wordpress.com" "gender" "male" "ip_address" "101.15.138.186" "country" "Argentina" "country_code" "AR" "city" "Azul" "longitude" "-58.6040349" "latitude" "-34.7796334" "last_login" "1587935713" +HSET "user:2242" "first_name" "Turner" "last_name" "Ekkel" "email" "tekkel6p@pagesperso-orange.fr" "gender" "male" "ip_address" "36.63.224.220" "country" "Sudan" "country_code" "SD" "city" "Kināna" "longitude" "33.1712" "latitude" "14.0361" "last_login" "1596600821" +HSET "user:2243" "first_name" "Gretel" "last_name" "Smieton" "email" "gsmieton6q@china.com.cn" "gender" "female" "ip_address" "157.51.184.51" "country" "Canada" "country_code" "CA" "city" "Selkirk" "longitude" "-96.8791564" "latitude" "50.1369112" "last_login" "1577661786" +HSET "user:2244" "first_name" "Burty" "last_name" "Andrews" "email" "bandrews6r@techcrunch.com" "gender" "male" "ip_address" "74.202.222.219" "country" "China" "country_code" "CN" "city" "Zhangjiahe" "longitude" "110.479191" "latitude" "29.117096" "last_login" "1595865799" +HSET "user:2245" "first_name" "Ninnetta" "last_name" "Sinkings" "email" "nsinkings6s@wired.com" "gender" "female" "ip_address" "167.32.101.126" "country" "Russia" "country_code" "RU" "city" "Myshkin" "longitude" "38.4503218" "latitude" "57.7868036" "last_login" "1599810078" +HSET "user:2246" "first_name" "Vinnie" "last_name" "Carville" "email" "vcarville6t@amazon.de" "gender" "male" "ip_address" "36.205.174.58" "country" "France" "country_code" "FR" "city" "Roissy Charles-de-Gaulle" "longitude" "2.5479245" "latitude" "49.0096906" "last_login" "1599413776" +HSET "user:2247" "first_name" "Ninnetta" "last_name" "Kee" "email" "nkee6u@123-reg.co.uk" "gender" "female" "ip_address" "252.206.116.245" "country" "Chile" "country_code" "CL" "city" "Valparaíso" "longitude" "-71.6126885" "latitude" "-33.047238" "last_login" "1576537279" +HSET "user:2248" "first_name" "Wileen" "last_name" "Oliva" "email" "woliva6v@wikispaces.com" "gender" "female" "ip_address" "78.148.40.157" "country" "China" "country_code" "CN" "city" "Songbo" "longitude" "98.007143" "latitude" "29.859258" "last_login" "1573403475" +HSET "user:2249" "first_name" "Vito" "last_name" "Witton" "email" "vwitton6w@dedecms.com" "gender" "male" "ip_address" "118.217.58.16" "country" "Indonesia" "country_code" "ID" "city" "Penebel" "longitude" "115.1177654" "latitude" "-8.3941828" "last_login" "1586280192" +HSET "user:2250" "first_name" "Sula" "last_name" "Bartrop" "email" "sbartrop6x@house.gov" "gender" "female" "ip_address" "45.41.144.211" "country" "North Korea" "country_code" "KP" "city" "Pyongyang" "longitude" "125.7625241" "latitude" "39.0392193" "last_login" "1591756333" +HSET "user:2251" "first_name" "Batsheva" "last_name" "Byford" "email" "bbyford6y@ning.com" "gender" "female" "ip_address" "68.241.72.155" "country" "China" "country_code" "CN" "city" "Zhangzhu" "longitude" "113.625328" "latitude" "34.746611" "last_login" "1597386026" +HSET "user:2252" "first_name" "Torrie" "last_name" "Donnersberg" "email" "tdonnersberg6z@microsoft.com" "gender" "female" "ip_address" "186.175.12.76" "country" "Greece" "country_code" "GR" "city" "Katoúna" "longitude" "20.7067845" "latitude" "38.7811142" "last_login" "1599962032" +HSET "user:2253" "first_name" "Rora" "last_name" "Sibery" "email" "rsibery70@4shared.com" "gender" "female" "ip_address" "38.183.151.48" "country" "Czech Republic" "country_code" "CZ" "city" "Ostrov" "longitude" "16.2794136" "latitude" "49.373136" "last_login" "1585010571" +HSET "user:2254" "first_name" "Annissa" "last_name" "McCloid" "email" "amccloid71@cafepress.com" "gender" "female" "ip_address" "20.35.183.159" "country" "China" "country_code" "CN" "city" "Renhe" "longitude" "101.738528" "latitude" "26.497765" "last_login" "1588363876" +HSET "user:2255" "first_name" "Alyssa" "last_name" "Stuffins" "email" "astuffins72@qq.com" "gender" "female" "ip_address" "111.138.170.28" "country" "Czech Republic" "country_code" "CZ" "city" "Vlkoš" "longitude" "17.4190192" "latitude" "49.395784" "last_login" "1586728457" +HSET "user:2256" "first_name" "Corbett" "last_name" "Blakeston" "email" "cblakeston73@epa.gov" "gender" "male" "ip_address" "59.100.118.230" "country" "China" "country_code" "CN" "city" "Zhangfang" "longitude" "114.108985" "latitude" "28.324632" "last_login" "1582883038" +HSET "user:2257" "first_name" "Maribeth" "last_name" "Punch" "email" "mpunch74@acquirethisname.com" "gender" "female" "ip_address" "2.242.90.73" "country" "Japan" "country_code" "JP" "city" "Morioka-shi" "longitude" "137.8244182" "latitude" "34.7294592" "last_login" "1579994492" +HSET "user:2258" "first_name" "Brinna" "last_name" "Dwane" "email" "bdwane75@uiuc.edu" "gender" "female" "ip_address" "80.100.226.192" "country" "Poland" "country_code" "PL" "city" "Nowe" "longitude" "19.191129" "latitude" "52.296876" "last_login" "1570205224" +HSET "user:2259" "first_name" "Ailsun" "last_name" "Wimbush" "email" "awimbush76@multiply.com" "gender" "female" "ip_address" "60.37.221.179" "country" "Ukraine" "country_code" "UA" "city" "Staryy Krym" "longitude" "35.0863723" "latitude" "45.0274234" "last_login" "1573347188" +HSET "user:2260" "first_name" "Haily" "last_name" "Cowsby" "email" "hcowsby77@merriam-webster.com" "gender" "female" "ip_address" "176.81.143.202" "country" "China" "country_code" "CN" "city" "Zhucun" "longitude" "113.69324" "latitude" "23.274583" "last_login" "1596809977" +HSET "user:2261" "first_name" "Itch" "last_name" "Kull" "email" "ikull78@behance.net" "gender" "male" "ip_address" "26.131.248.56" "country" "Iran" "country_code" "IR" "city" "Alvand" "longitude" "50.064982" "latitude" "36.1860016" "last_login" "1596788298" +HSET "user:2262" "first_name" "Tabbatha" "last_name" "Dominichelli" "email" "tdominichelli79@archive.org" "gender" "female" "ip_address" "60.150.164.252" "country" "France" "country_code" "FR" "city" "Remiremont" "longitude" "6.535628" "latitude" "48.0515029" "last_login" "1592384021" +HSET "user:2263" "first_name" "Sibelle" "last_name" "Churchouse" "email" "schurchouse7a@nasa.gov" "gender" "female" "ip_address" "217.13.3.30" "country" "Tunisia" "country_code" "TN" "city" "Banī Khaddāsh" "longitude" "10.2" "latitude" "33.25" "last_login" "1569811208" +HSET "user:2264" "first_name" "Anne" "last_name" "Yglesia" "email" "ayglesia7b@macromedia.com" "gender" "female" "ip_address" "46.187.56.252" "country" "China" "country_code" "CN" "city" "Liaobu" "longitude" "113.87497" "latitude" "22.99732" "last_login" "1587882324" +HSET "user:2265" "first_name" "Ferrel" "last_name" "Drache" "email" "fdrache7c@google.co.jp" "gender" "male" "ip_address" "68.235.155.144" "country" "Indonesia" "country_code" "ID" "city" "Nagrog" "longitude" "107.8731968" "latitude" "-6.9927364" "last_login" "1591243604" +HSET "user:2266" "first_name" "Christean" "last_name" "Dickson" "email" "cdickson7d@addtoany.com" "gender" "female" "ip_address" "62.214.9.186" "country" "China" "country_code" "CN" "city" "Zhizhong" "longitude" "116.31098" "latitude" "40.087301" "last_login" "1590165331" +HSET "user:2267" "first_name" "Tab" "last_name" "Gokes" "email" "tgokes7e@yahoo.co.jp" "gender" "male" "ip_address" "76.249.214.16" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-76.99" "latitude" "38.92" "last_login" "1584543907" +HSET "user:2268" "first_name" "Gustavo" "last_name" "Hollingshead" "email" "ghollingshead7f@zimbio.com" "gender" "male" "ip_address" "195.222.207.122" "country" "Estonia" "country_code" "EE" "city" "Kuressaare" "longitude" "22.4850409" "latitude" "58.2529231" "last_login" "1589917634" +HSET "user:2269" "first_name" "Nevsa" "last_name" "McConnachie" "email" "nmcconnachie7g@google.com" "gender" "female" "ip_address" "69.194.127.247" "country" "Sweden" "country_code" "SE" "city" "Sundbyberg" "longitude" "17.9613181" "latitude" "59.3777955" "last_login" "1597861080" +HSET "user:2270" "first_name" "Rollie" "last_name" "Marvel" "email" "rmarvel7h@youtu.be" "gender" "male" "ip_address" "38.73.77.245" "country" "Indonesia" "country_code" "ID" "city" "Sorodot" "longitude" "105.9128" "latitude" "-6.3623" "last_login" "1572091345" +HSET "user:2271" "first_name" "Griff" "last_name" "Groomebridge" "email" "ggroomebridge7i@pen.io" "gender" "male" "ip_address" "134.2.83.8" "country" "Uruguay" "country_code" "UY" "city" "San Bautista" "longitude" "-55.9600098" "latitude" "-34.4402062" "last_login" "1586923477" +HSET "user:2272" "first_name" "Torrin" "last_name" "Hrus" "email" "thrus7j@vk.com" "gender" "male" "ip_address" "42.166.195.253" "country" "Colombia" "country_code" "CO" "city" "Ocaña" "longitude" "-73.3532199" "latitude" "8.25205" "last_login" "1596762200" +HSET "user:2273" "first_name" "Timmy" "last_name" "Blees" "email" "tblees7k@wufoo.com" "gender" "male" "ip_address" "51.144.244.142" "country" "Mexico" "country_code" "MX" "city" "El Carmen" "longitude" "-100.3638252" "latitude" "25.9375976" "last_login" "1592548816" +HSET "user:2274" "first_name" "Peter" "last_name" "Sorby" "email" "psorby7l@cnn.com" "gender" "male" "ip_address" "250.29.214.224" "country" "China" "country_code" "CN" "city" "Geyuan" "longitude" "119.443303" "latitude" "32.399108" "last_login" "1594647855" +HSET "user:2275" "first_name" "Petrina" "last_name" "Langthorne" "email" "plangthorne7m@amazon.co.uk" "gender" "female" "ip_address" "187.100.71.141" "country" "Philippines" "country_code" "PH" "city" "Calubcub Dos" "longitude" "121.41492" "latitude" "13.7501" "last_login" "1588449097" +HSET "user:2276" "first_name" "Marc" "last_name" "Schlagman" "email" "mschlagman7n@webeden.co.uk" "gender" "male" "ip_address" "141.254.46.120" "country" "Ireland" "country_code" "IE" "city" "Cavan" "longitude" "-7.297914" "latitude" "54.026345" "last_login" "1573882103" +HSET "user:2277" "first_name" "Quincey" "last_name" "Gillow" "email" "qgillow7o@senate.gov" "gender" "male" "ip_address" "86.224.170.244" "country" "Egypt" "country_code" "EG" "city" "Al Qūşīyah" "longitude" "30.8162909" "latitude" "27.4378935" "last_login" "1579060508" +HSET "user:2278" "first_name" "Emory" "last_name" "De Bell" "email" "edebell7p@istockphoto.com" "gender" "male" "ip_address" "1.214.229.226" "country" "France" "country_code" "FR" "city" "Amiens" "longitude" "2.3000664" "latitude" "49.8921732" "last_login" "1581982345" +HSET "user:2279" "first_name" "Barry" "last_name" "Hatch" "email" "bhatch7q@smh.com.au" "gender" "female" "ip_address" "8.118.184.231" "country" "China" "country_code" "CN" "city" "Sankeng" "longitude" "112.804754" "latitude" "23.597098" "last_login" "1597154056" +HSET "user:2280" "first_name" "Katharyn" "last_name" "Disley" "email" "kdisley7r@un.org" "gender" "female" "ip_address" "170.211.84.35" "country" "Indonesia" "country_code" "ID" "city" "Ciladaeun" "longitude" "106.4111425" "latitude" "-6.615755" "last_login" "1595768691" +HSET "user:2281" "first_name" "Tedmund" "last_name" "Darbyshire" "email" "tdarbyshire7s@bing.com" "gender" "male" "ip_address" "13.144.127.25" "country" "China" "country_code" "CN" "city" "Guolemude" "longitude" "94.928484" "latitude" "36.406404" "last_login" "1593294877" +HSET "user:2282" "first_name" "Hayden" "last_name" "Paulig" "email" "hpaulig7t@yahoo.com" "gender" "male" "ip_address" "131.227.151.234" "country" "China" "country_code" "CN" "city" "Duntou" "longitude" "120.353259" "latitude" "32.644902" "last_login" "1571446665" +HSET "user:2283" "first_name" "Corey" "last_name" "Cabrera" "email" "ccabrera7u@infoseek.co.jp" "gender" "male" "ip_address" "47.219.219.70" "country" "South Korea" "country_code" "KR" "city" "Chinju" "longitude" "128.1076213" "latitude" "35.1799817" "last_login" "1595541503" +HSET "user:2284" "first_name" "Sergent" "last_name" "Redrup" "email" "sredrup7v@google.ru" "gender" "male" "ip_address" "183.168.61.167" "country" "Poland" "country_code" "PL" "city" "Międzyzdroje" "longitude" "14.4504845" "latitude" "53.9283144" "last_login" "1570560793" +HSET "user:2285" "first_name" "Symon" "last_name" "Dunlop" "email" "sdunlop7w@desdev.cn" "gender" "male" "ip_address" "186.211.148.207" "country" "Brazil" "country_code" "BR" "city" "Sousa" "longitude" "-38.2314566" "latitude" "-6.7519382" "last_login" "1578071417" +HSET "user:2286" "first_name" "Aloysius" "last_name" "Stidworthy" "email" "astidworthy7x@wsj.com" "gender" "male" "ip_address" "199.233.29.107" "country" "Philippines" "country_code" "PH" "city" "Bolaoit" "longitude" "120.4355906" "latitude" "15.9275907" "last_login" "1583703122" +HSET "user:2287" "first_name" "Analise" "last_name" "Batchellor" "email" "abatchellor7y@cisco.com" "gender" "female" "ip_address" "178.166.81.132" "country" "Bulgaria" "country_code" "BG" "city" "Kazanlŭk" "longitude" "25.4" "latitude" "42.61667" "last_login" "1574504522" +HSET "user:2288" "first_name" "Maury" "last_name" "Pope" "email" "mpope7z@desdev.cn" "gender" "male" "ip_address" "172.241.76.36" "country" "China" "country_code" "CN" "city" "Jiangwei" "longitude" "114.1114725" "latitude" "22.5397224" "last_login" "1582084834" +HSET "user:2289" "first_name" "Raphaela" "last_name" "Tydeman" "email" "rtydeman80@is.gd" "gender" "female" "ip_address" "40.98.39.30" "country" "Russia" "country_code" "RU" "city" "Vrangel’" "longitude" "133.0298493" "latitude" "42.7989149" "last_login" "1593741089" +HSET "user:2290" "first_name" "Josi" "last_name" "Heinsen" "email" "jheinsen81@microsoft.com" "gender" "female" "ip_address" "94.90.27.146" "country" "Poland" "country_code" "PL" "city" "Pęczniew" "longitude" "18.7885677" "latitude" "51.811764" "last_login" "1572899749" +HSET "user:2291" "first_name" "Megan" "last_name" "Ragg" "email" "mragg82@zimbio.com" "gender" "female" "ip_address" "75.171.237.145" "country" "Brazil" "country_code" "BR" "city" "Iturama" "longitude" "-50.265662" "latitude" "-19.7270406" "last_login" "1569017336" +HSET "user:2292" "first_name" "Alana" "last_name" "Jablonski" "email" "ajablonski83@netlog.com" "gender" "female" "ip_address" "93.239.71.248" "country" "Montenegro" "country_code" "ME" "city" "Pljevlja" "longitude" "19.3512591" "latitude" "43.3582371" "last_login" "1590387226" +HSET "user:2293" "first_name" "Patrick" "last_name" "Brice" "email" "pbrice84@macromedia.com" "gender" "male" "ip_address" "250.115.212.238" "country" "Honduras" "country_code" "HN" "city" "Marcala" "longitude" "-88.0363086" "latitude" "14.1560521" "last_login" "1569153370" +HSET "user:2294" "first_name" "Parrnell" "last_name" "Bittany" "email" "pbittany85@soundcloud.com" "gender" "male" "ip_address" "185.229.203.14" "country" "China" "country_code" "CN" "city" "Urho" "longitude" "85.693742" "latitude" "46.089148" "last_login" "1578249034" +HSET "user:2295" "first_name" "Anjela" "last_name" "Crunkhurn" "email" "acrunkhurn86@zimbio.com" "gender" "female" "ip_address" "162.124.55.147" "country" "Burkina Faso" "country_code" "BF" "city" "Gaoua" "longitude" "-3.1679257" "latitude" "10.3231036" "last_login" "1594910678" +HSET "user:2296" "first_name" "Cilka" "last_name" "Newby" "email" "cnewby87@joomla.org" "gender" "female" "ip_address" "175.165.149.69" "country" "China" "country_code" "CN" "city" "Saga" "longitude" "85.232941" "latitude" "29.328818" "last_login" "1594121828" +HSET "user:2297" "first_name" "Thaddeus" "last_name" "Cicccitti" "email" "tcicccitti88@oracle.com" "gender" "male" "ip_address" "30.90.246.192" "country" "Yemen" "country_code" "YE" "city" "Al ‘Aqabah" "longitude" "49.35" "latitude" "15.016667" "last_login" "1598914338" +HSET "user:2298" "first_name" "Lenna" "last_name" "Sheerin" "email" "lsheerin89@answers.com" "gender" "female" "ip_address" "133.12.147.86" "country" "China" "country_code" "CN" "city" "Xubao" "longitude" "106.837052" "latitude" "35.5407" "last_login" "1590692996" +HSET "user:2299" "first_name" "Tabby" "last_name" "Taillard" "email" "ttaillard8a@odnoklassniki.ru" "gender" "female" "ip_address" "108.124.219.248" "country" "Philippines" "country_code" "PH" "city" "Lalig" "longitude" "121.324372" "latitude" "13.974293" "last_login" "1588449657" +HSET "user:2300" "first_name" "Ase" "last_name" "Moraleda" "email" "amoraleda8b@nationalgeographic.com" "gender" "male" "ip_address" "17.168.50.71" "country" "Lebanon" "country_code" "LB" "city" "Baabda" "longitude" "35.544145" "latitude" "33.833797" "last_login" "1584617760" +HSET "user:2301" "first_name" "Jacintha" "last_name" "Gregor" "email" "jgregor8c@nydailynews.com" "gender" "female" "ip_address" "103.192.251.224" "country" "Dominican Republic" "country_code" "DO" "city" "Las Matas de Santa Cruz" "longitude" "-71.5065631" "latitude" "19.6594511" "last_login" "1572870014" +HSET "user:2302" "first_name" "Evy" "last_name" "Purviss" "email" "epurviss8d@berkeley.edu" "gender" "female" "ip_address" "195.31.244.28" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Lâm" "longitude" "106.0140586" "latitude" "20.3231704" "last_login" "1577310983" +HSET "user:2303" "first_name" "Kingsly" "last_name" "Thornham" "email" "kthornham8e@cam.ac.uk" "gender" "male" "ip_address" "237.122.157.68" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0551861" "latitude" "59.330173" "last_login" "1581729940" +HSET "user:2304" "first_name" "Ash" "last_name" "Runnicles" "email" "arunnicles8f@bluehost.com" "gender" "male" "ip_address" "126.177.200.66" "country" "Argentina" "country_code" "AR" "city" "Cipolletti" "longitude" "-67.993234" "latitude" "-38.951448" "last_login" "1593377628" +HSET "user:2305" "first_name" "Danyette" "last_name" "Todhunter" "email" "dtodhunter8g@shop-pro.jp" "gender" "female" "ip_address" "73.255.188.246" "country" "Indonesia" "country_code" "ID" "city" "Garunggang" "longitude" "115.1859517" "latitude" "-2.7968956" "last_login" "1583571590" +HSET "user:2306" "first_name" "Sabina" "last_name" "Verrall" "email" "sverrall8h@vinaora.com" "gender" "female" "ip_address" "1.23.108.116" "country" "China" "country_code" "CN" "city" "Dongshan" "longitude" "117.430061" "latitude" "23.701262" "last_login" "1583346519" +HSET "user:2307" "first_name" "Corette" "last_name" "Botterill" "email" "cbotterill8i@engadget.com" "gender" "female" "ip_address" "27.5.144.14" "country" "Malawi" "country_code" "MW" "city" "Mangochi" "longitude" "35.253304" "latitude" "-14.4861733" "last_login" "1587042061" +HSET "user:2308" "first_name" "Barbabra" "last_name" "Kamiyama" "email" "bkamiyama8j@google.com.hk" "gender" "female" "ip_address" "62.232.142.137" "country" "South Korea" "country_code" "KR" "city" "Changnyeong" "longitude" "128.4922143" "latitude" "35.5445563" "last_login" "1578754194" +HSET "user:2309" "first_name" "Quincey" "last_name" "Gynni" "email" "qgynni8k@mit.edu" "gender" "male" "ip_address" "175.177.22.224" "country" "Finland" "country_code" "FI" "city" "Vuokatti" "longitude" "28.268999" "latitude" "64.1457767" "last_login" "1595280415" +HSET "user:2310" "first_name" "Fred" "last_name" "Whife" "email" "fwhife8l@printfriendly.com" "gender" "female" "ip_address" "153.18.208.92" "country" "Indonesia" "country_code" "ID" "city" "Krajan Menggare" "longitude" "111.4166" "latitude" "-8.0138" "last_login" "1585575274" +HSET "user:2311" "first_name" "Chris" "last_name" "Setchell" "email" "csetchell8m@yelp.com" "gender" "female" "ip_address" "61.147.177.35" "country" "China" "country_code" "CN" "city" "Xixiang" "longitude" "107.766613" "latitude" "32.983101" "last_login" "1583441161" +HSET "user:2312" "first_name" "Wilie" "last_name" "Pagram" "email" "wpagram8n@home.pl" "gender" "female" "ip_address" "43.200.133.226" "country" "Iran" "country_code" "IR" "city" "Oshnavīyeh" "longitude" "45.0971372" "latitude" "37.0364358" "last_login" "1580236194" +HSET "user:2313" "first_name" "Stearne" "last_name" "Jurgenson" "email" "sjurgenson8o@twitter.com" "gender" "male" "ip_address" "50.67.228.51" "country" "Israel" "country_code" "IL" "city" "Buqei‘a" "longitude" "35.33345" "latitude" "32.97746" "last_login" "1577580186" +HSET "user:2314" "first_name" "Karena" "last_name" "Nancekivell" "email" "knancekivell8p@webnode.com" "gender" "female" "ip_address" "99.246.43.16" "country" "Mexico" "country_code" "MX" "city" "Francisco Sarabia" "longitude" "-99.2820233" "latitude" "19.5959923" "last_login" "1578218281" +HSET "user:2315" "first_name" "Ted" "last_name" "Pickring" "email" "tpickring8q@bloomberg.com" "gender" "male" "ip_address" "61.223.56.95" "country" "Nicaragua" "country_code" "NI" "city" "La Jicaral" "longitude" "-86.3820191" "latitude" "12.7277133" "last_login" "1579713494" +HSET "user:2316" "first_name" "Osgood" "last_name" "Lackey" "email" "olackey8r@infoseek.co.jp" "gender" "male" "ip_address" "117.21.225.105" "country" "Saint Lucia" "country_code" "LC" "city" "Bisée" "longitude" "-60.9758292" "latitude" "14.0242809" "last_login" "1578513195" +HSET "user:2317" "first_name" "Ody" "last_name" "Konrad" "email" "okonrad8s@yandex.ru" "gender" "male" "ip_address" "220.170.22.62" "country" "Indonesia" "country_code" "ID" "city" "Tarub" "longitude" "109.1746261" "latitude" "-6.9210752" "last_login" "1568759680" +HSET "user:2318" "first_name" "Catharine" "last_name" "Stephens" "email" "cstephens8t@hexun.com" "gender" "female" "ip_address" "227.203.212.237" "country" "Philippines" "country_code" "PH" "city" "Linoan" "longitude" "125.9931065" "latitude" "7.7014054" "last_login" "1589273696" +HSET "user:2319" "first_name" "Lorne" "last_name" "Van der Baaren" "email" "lvanderbaaren8u@bluehost.com" "gender" "male" "ip_address" "208.190.34.102" "country" "Cuba" "country_code" "CU" "city" "Artemisa" "longitude" "-82.7589859" "latitude" "22.8159074" "last_login" "1581926364" +HSET "user:2320" "first_name" "Rodney" "last_name" "McSkeagan" "email" "rmcskeagan8v@livejournal.com" "gender" "male" "ip_address" "113.198.131.184" "country" "Russia" "country_code" "RU" "city" "Kovdor" "longitude" "30.4421656" "latitude" "67.6043051" "last_login" "1574375827" +HSET "user:2321" "first_name" "Zebadiah" "last_name" "Luttger" "email" "zluttger8w@utexas.edu" "gender" "male" "ip_address" "76.110.133.116" "country" "Bangladesh" "country_code" "BD" "city" "Dinājpur" "longitude" "88.6331758" "latitude" "25.6279123" "last_login" "1588987997" +HSET "user:2322" "first_name" "Regan" "last_name" "Orrobin" "email" "rorrobin8x@devhub.com" "gender" "male" "ip_address" "197.242.202.142" "country" "Russia" "country_code" "RU" "city" "Oranzherei" "longitude" "47.56635" "latitude" "45.84756" "last_login" "1589527651" +HSET "user:2323" "first_name" "Dorree" "last_name" "Bodle" "email" "dbodle8y@e-recht24.de" "gender" "female" "ip_address" "89.82.225.69" "country" "Russia" "country_code" "RU" "city" "Yeysk" "longitude" "38.2755861" "latitude" "46.711547" "last_login" "1577430713" +HSET "user:2324" "first_name" "Edwina" "last_name" "Doring" "email" "edoring8z@mozilla.com" "gender" "female" "ip_address" "35.50.254.24" "country" "Panama" "country_code" "PA" "city" "Mulatupo" "longitude" "-77.86667" "latitude" "9" "last_login" "1594644801" +HSET "user:2325" "first_name" "Harriet" "last_name" "Staunton" "email" "hstaunton90@utexas.edu" "gender" "female" "ip_address" "121.73.229.149" "country" "Sweden" "country_code" "SE" "city" "Arvika" "longitude" "12.4859801" "latitude" "59.6806933" "last_login" "1596582725" +HSET "user:2326" "first_name" "Nola" "last_name" "Simmings" "email" "nsimmings91@dyndns.org" "gender" "female" "ip_address" "214.1.203.114" "country" "Brazil" "country_code" "BR" "city" "Timbó" "longitude" "-49.26952" "latitude" "-26.8251371" "last_login" "1600042682" +HSET "user:2327" "first_name" "Nealson" "last_name" "Battyll" "email" "nbattyll92@hubpages.com" "gender" "male" "ip_address" "117.165.200.234" "country" "Philippines" "country_code" "PH" "city" "Albuera" "longitude" "124.7452068" "latitude" "10.9120328" "last_login" "1587528664" +HSET "user:2328" "first_name" "Sutherland" "last_name" "McLae" "email" "smclae93@earthlink.net" "gender" "male" "ip_address" "67.116.152.198" "country" "Portugal" "country_code" "PT" "city" "Ponta Delgada" "longitude" "-25.670123" "latitude" "37.751046" "last_login" "1583075429" +HSET "user:2329" "first_name" "Domenic" "last_name" "Sicily" "email" "dsicily94@google.es" "gender" "male" "ip_address" "185.53.27.194" "country" "Philippines" "country_code" "PH" "city" "Reina Mercedes" "longitude" "121.7837044" "latitude" "16.982797" "last_login" "1582325098" +HSET "user:2330" "first_name" "Valerye" "last_name" "Venneur" "email" "vvenneur95@booking.com" "gender" "female" "ip_address" "76.19.98.188" "country" "China" "country_code" "CN" "city" "Heishan" "longitude" "122.1234429" "latitude" "41.666028" "last_login" "1571145807" +HSET "user:2331" "first_name" "Jobye" "last_name" "Betchley" "email" "jbetchley96@purevolume.com" "gender" "female" "ip_address" "28.174.79.36" "country" "Morocco" "country_code" "MA" "city" "Tarsouat" "longitude" "-9.0267076" "latitude" "29.5769271" "last_login" "1572746700" +HSET "user:2332" "first_name" "Ola" "last_name" "Crudge" "email" "ocrudge97@nasa.gov" "gender" "female" "ip_address" "8.210.255.85" "country" "Russia" "country_code" "RU" "city" "Borovoy" "longitude" "91.9206341" "latitude" "53.5325424" "last_login" "1576191232" +HSET "user:2333" "first_name" "Brit" "last_name" "Langmuir" "email" "blangmuir98@google.com.hk" "gender" "male" "ip_address" "175.189.149.240" "country" "Poland" "country_code" "PL" "city" "Sędziszów" "longitude" "20.0561066" "latitude" "50.5504728" "last_login" "1596002986" +HSET "user:2334" "first_name" "Imelda" "last_name" "Gallety" "email" "igallety99@smugmug.com" "gender" "female" "ip_address" "91.242.121.54" "country" "Peru" "country_code" "PE" "city" "Longar" "longitude" "-77.5461785" "latitude" "-6.3870559" "last_login" "1572212570" +HSET "user:2335" "first_name" "Imojean" "last_name" "Philippou" "email" "iphilippou9a@walmart.com" "gender" "female" "ip_address" "216.36.15.148" "country" "Vietnam" "country_code" "VN" "city" "Plei Kần" "longitude" "107.6984879" "latitude" "14.7043324" "last_login" "1579852597" +HSET "user:2336" "first_name" "Foster" "last_name" "Grabban" "email" "fgrabban9b@japanpost.jp" "gender" "male" "ip_address" "78.188.192.47" "country" "Indonesia" "country_code" "ID" "city" "Rancapanjang" "longitude" "107.7632453" "latitude" "-7.0180991" "last_login" "1588542766" +HSET "user:2337" "first_name" "Jarib" "last_name" "Rylance" "email" "jrylance9c@youtu.be" "gender" "male" "ip_address" "74.197.23.27" "country" "China" "country_code" "CN" "city" "Shanjiao" "longitude" "103.8059685" "latitude" "25.5022397" "last_login" "1597068973" +HSET "user:2338" "first_name" "Stacia" "last_name" "Mordaunt" "email" "smordaunt9d@histats.com" "gender" "female" "ip_address" "96.97.168.20" "country" "Honduras" "country_code" "HN" "city" "El Puente" "longitude" "-87.1285725" "latitude" "13.2805504" "last_login" "1574655543" +HSET "user:2339" "first_name" "Fey" "last_name" "Hartlebury" "email" "fhartlebury9e@walmart.com" "gender" "female" "ip_address" "144.153.105.11" "country" "Bolivia" "country_code" "BO" "city" "Potosí" "longitude" "-65.7550063" "latitude" "-19.5722805" "last_login" "1588228727" +HSET "user:2340" "first_name" "Dino" "last_name" "Clausius" "email" "dclausius9f@washingtonpost.com" "gender" "male" "ip_address" "225.159.203.8" "country" "United States" "country_code" "US" "city" "Waco" "longitude" "-97.8047404" "latitude" "31.1393795" "last_login" "1583879891" +HSET "user:2341" "first_name" "Nickolai" "last_name" "Cuttings" "email" "ncuttings9g@kickstarter.com" "gender" "male" "ip_address" "108.63.125.160" "country" "U.S. Virgin Islands" "country_code" "VI" "city" "Charlotte Amalie" "longitude" "-64.9307007" "latitude" "18.3419004" "last_login" "1583672146" +HSET "user:2342" "first_name" "Selina" "last_name" "Carrabott" "email" "scarrabott9h@free.fr" "gender" "female" "ip_address" "24.131.113.152" "country" "China" "country_code" "CN" "city" "Chengbei" "longitude" "101.766228" "latitude" "36.650038" "last_login" "1591038768" +HSET "user:2343" "first_name" "Welsh" "last_name" "Kryszka" "email" "wkryszka9i@last.fm" "gender" "male" "ip_address" "93.132.200.243" "country" "Russia" "country_code" "RU" "city" "Borodinskiy" "longitude" "34.3739957" "latitude" "61.7921776" "last_login" "1591683762" +HSET "user:2344" "first_name" "Franni" "last_name" "Graham" "email" "fgraham9j@goo.ne.jp" "gender" "female" "ip_address" "123.236.202.166" "country" "Brazil" "country_code" "BR" "city" "Rubiataba" "longitude" "-49.8052085" "latitude" "-15.1662376" "last_login" "1591843491" +HSET "user:2345" "first_name" "Yolande" "last_name" "McPhaden" "email" "ymcphaden9k@zimbio.com" "gender" "female" "ip_address" "114.115.238.253" "country" "Kyrgyzstan" "country_code" "KG" "city" "Jalal-Abad" "longitude" "72.9814877" "latitude" "40.9331541" "last_login" "1594735618" +HSET "user:2346" "first_name" "Merv" "last_name" "Matejka" "email" "mmatejka9l@163.com" "gender" "male" "ip_address" "176.199.40.197" "country" "Bolivia" "country_code" "BO" "city" "Charagua" "longitude" "-63.1973233" "latitude" "-19.7809492" "last_login" "1592792128" +HSET "user:2347" "first_name" "Bellina" "last_name" "Delamaine" "email" "bdelamaine9m@harvard.edu" "gender" "female" "ip_address" "252.136.8.63" "country" "Mexico" "country_code" "MX" "city" "Francisco I Madero" "longitude" "-97.5294628" "latitude" "25.8263535" "last_login" "1572380168" +HSET "user:2348" "first_name" "Louie" "last_name" "Friday" "email" "lfriday9n@unblog.fr" "gender" "male" "ip_address" "255.36.52.12" "country" "Liechtenstein" "country_code" "LI" "city" "Schaan" "longitude" "9.5112002" "latitude" "47.1667317" "last_login" "1597271214" +HSET "user:2349" "first_name" "Marjory" "last_name" "Hamilton" "email" "mhamilton9o@webeden.co.uk" "gender" "female" "ip_address" "83.135.87.196" "country" "Philippines" "country_code" "PH" "city" "Upi" "longitude" "121.8542334" "latitude" "17.0932938" "last_login" "1598407415" +HSET "user:2350" "first_name" "Merilee" "last_name" "Swyre" "email" "mswyre9p@blinklist.com" "gender" "female" "ip_address" "136.95.181.194" "country" "France" "country_code" "FR" "city" "Nantes" "longitude" "-1.5401497" "latitude" "47.2550409" "last_login" "1583657312" +HSET "user:2351" "first_name" "Kassey" "last_name" "Forth" "email" "kforth9q@whitehouse.gov" "gender" "female" "ip_address" "192.83.14.173" "country" "China" "country_code" "CN" "city" "Ganjun" "longitude" "100.177294" "latitude" "38.963066" "last_login" "1572122924" +HSET "user:2352" "first_name" "Nancey" "last_name" "Acum" "email" "nacum9r@ebay.com" "gender" "female" "ip_address" "125.134.22.99" "country" "China" "country_code" "CN" "city" "Gaoxing" "longitude" "124.1226608" "latitude" "50.4273892" "last_login" "1580603953" +HSET "user:2353" "first_name" "Lawton" "last_name" "Deeth" "email" "ldeeth9s@chronoengine.com" "gender" "male" "ip_address" "248.4.85.158" "country" "Indonesia" "country_code" "ID" "city" "Uluale" "longitude" "119.7397084" "latitude" "-3.9164982" "last_login" "1585729682" +HSET "user:2354" "first_name" "Vinnie" "last_name" "Syplus" "email" "vsyplus9t@illinois.edu" "gender" "female" "ip_address" "160.100.226.85" "country" "Czech Republic" "country_code" "CZ" "city" "Bakov nad Jizerou" "longitude" "14.9414959" "latitude" "50.4823057" "last_login" "1590728314" +HSET "user:2355" "first_name" "Edan" "last_name" "Datte" "email" "edatte9u@irs.gov" "gender" "male" "ip_address" "152.16.70.248" "country" "China" "country_code" "CN" "city" "Bin’an" "longitude" "127.75061" "latitude" "45.843424" "last_login" "1579443324" +HSET "user:2356" "first_name" "Lauraine" "last_name" "De Hailes" "email" "ldehailes9v@ifeng.com" "gender" "female" "ip_address" "186.183.81.98" "country" "Colombia" "country_code" "CO" "city" "Viterbo" "longitude" "-75.872356" "latitude" "5.0605779" "last_login" "1586882832" +HSET "user:2357" "first_name" "Elvis" "last_name" "Kubasek" "email" "ekubasek9w@a8.net" "gender" "male" "ip_address" "218.16.125.127" "country" "China" "country_code" "CN" "city" "Tian’an" "longitude" "108.916255" "latitude" "19.015744" "last_login" "1582418983" +HSET "user:2358" "first_name" "Ree" "last_name" "Vokins" "email" "rvokins9x@odnoklassniki.ru" "gender" "female" "ip_address" "254.167.112.166" "country" "Kosovo" "country_code" "XK" "city" "Dranoc" "longitude" "14.7389618" "latitude" "50.6573133" "last_login" "1584908136" +HSET "user:2359" "first_name" "Mufi" "last_name" "Caldero" "email" "mcaldero9y@hibu.com" "gender" "female" "ip_address" "41.22.121.89" "country" "Belarus" "country_code" "BY" "city" "Ruzhany" "longitude" "24.8920219" "latitude" "52.8669497" "last_login" "1598492459" +HSET "user:2360" "first_name" "Billye" "last_name" "Milliere" "email" "bmilliere9z@slideshare.net" "gender" "female" "ip_address" "230.163.183.30" "country" "Russia" "country_code" "RU" "city" "Shalinskoye" "longitude" "93.768409" "latitude" "55.7279446" "last_login" "1572576505" +HSET "user:2361" "first_name" "Demetrius" "last_name" "Benn" "email" "dbenna0@ehow.com" "gender" "male" "ip_address" "130.57.216.23" "country" "Poland" "country_code" "PL" "city" "Bełżec" "longitude" "23.438111" "latitude" "50.384945" "last_login" "1598519082" +HSET "user:2362" "first_name" "Delmor" "last_name" "Linturn" "email" "dlinturna1@geocities.jp" "gender" "male" "ip_address" "93.163.165.168" "country" "China" "country_code" "CN" "city" "Donggaocun" "longitude" "117.116756" "latitude" "40.104785" "last_login" "1572660571" +HSET "user:2363" "first_name" "Martie" "last_name" "De Stoop" "email" "mdestoopa2@multiply.com" "gender" "male" "ip_address" "106.228.220.165" "country" "Poland" "country_code" "PL" "city" "Narew" "longitude" "23.4961724" "latitude" "52.9152117" "last_login" "1588660789" +HSET "user:2364" "first_name" "Saunderson" "last_name" "Bonicelli" "email" "sbonicellia3@ow.ly" "gender" "male" "ip_address" "53.105.96.221" "country" "France" "country_code" "FR" "city" "Le Havre" "longitude" "0.1639479" "latitude" "49.476996" "last_login" "1580935182" +HSET "user:2365" "first_name" "Ahmed" "last_name" "McLewd" "email" "amclewda4@businesswire.com" "gender" "male" "ip_address" "228.247.153.13" "country" "China" "country_code" "CN" "city" "Ziyang" "longitude" "104.627636" "latitude" "30.128901" "last_login" "1583648586" +HSET "user:2366" "first_name" "Philip" "last_name" "Whyberd" "email" "pwhyberda5@parallels.com" "gender" "male" "ip_address" "181.127.171.1" "country" "Peru" "country_code" "PE" "city" "El Ingenio" "longitude" "-75.0634" "latitude" "-14.65067" "last_login" "1581775745" +HSET "user:2367" "first_name" "Sallyanne" "last_name" "Campagne" "email" "scampagnea6@phoca.cz" "gender" "female" "ip_address" "55.229.216.161" "country" "Philippines" "country_code" "PH" "city" "Bone South" "longitude" "120.9986275" "latitude" "16.2463509" "last_login" "1587298931" +HSET "user:2368" "first_name" "Salem" "last_name" "McGibbon" "email" "smcgibbona7@vkontakte.ru" "gender" "male" "ip_address" "143.195.30.28" "country" "China" "country_code" "CN" "city" "Tianmuhu" "longitude" "119.445437" "latitude" "31.323217" "last_login" "1576417238" +HSET "user:2369" "first_name" "Wilmar" "last_name" "Melton" "email" "wmeltona8@yahoo.com" "gender" "male" "ip_address" "92.201.171.175" "country" "Indonesia" "country_code" "ID" "city" "Seseng" "longitude" "119.7020606" "latitude" "-2.9755226" "last_login" "1569662608" +HSET "user:2370" "first_name" "Torr" "last_name" "Ruse" "email" "trusea9@newsvine.com" "gender" "male" "ip_address" "16.48.213.252" "country" "Indonesia" "country_code" "ID" "city" "Melikkrajan" "longitude" "114.2281" "latitude" "-8.3482" "last_login" "1596131550" +HSET "user:2371" "first_name" "Katharina" "last_name" "Yakunin" "email" "kyakuninaa@kickstarter.com" "gender" "female" "ip_address" "19.102.46.204" "country" "China" "country_code" "CN" "city" "Fangtai" "longitude" "115.393687" "latitude" "26.508568" "last_login" "1586983358" +HSET "user:2372" "first_name" "Palm" "last_name" "MacAlroy" "email" "pmacalroyab@twitpic.com" "gender" "male" "ip_address" "209.115.207.3" "country" "China" "country_code" "CN" "city" "Shangtuhai" "longitude" "111.308664" "latitude" "41.186564" "last_login" "1595590654" +HSET "user:2373" "first_name" "Conrade" "last_name" "Esom" "email" "cesomac@nba.com" "gender" "male" "ip_address" "199.95.95.17" "country" "El Salvador" "country_code" "SV" "city" "Cojutepeque" "longitude" "-88.9365976" "latitude" "13.7208503" "last_login" "1570650911" +HSET "user:2374" "first_name" "Alaric" "last_name" "Ciccarelli" "email" "aciccarelliad@ca.gov" "gender" "male" "ip_address" "180.29.125.231" "country" "New Caledonia" "country_code" "NC" "city" "Touho" "longitude" "165.2386673" "latitude" "-20.7795586" "last_login" "1581316992" +HSET "user:2375" "first_name" "Erv" "last_name" "Pantin" "email" "epantinae@sfgate.com" "gender" "male" "ip_address" "194.51.202.227" "country" "Poland" "country_code" "PL" "city" "Bydgoszcz" "longitude" "17.9794988" "latitude" "53.1210091" "last_login" "1572681167" +HSET "user:2376" "first_name" "Ardis" "last_name" "Gabbott" "email" "agabbottaf@microsoft.com" "gender" "female" "ip_address" "174.228.248.59" "country" "China" "country_code" "CN" "city" "Hengdian" "longitude" "120.3168231" "latitude" "29.1520649" "last_login" "1599799147" +HSET "user:2377" "first_name" "Lori" "last_name" "Craighall" "email" "lcraighallag@youku.com" "gender" "female" "ip_address" "252.100.96.6" "country" "Ukraine" "country_code" "UA" "city" "Hołoby" "longitude" "25.0109305" "latitude" "51.0853063" "last_login" "1593123779" +HSET "user:2378" "first_name" "Thekla" "last_name" "Chamley" "email" "tchamleyah@blog.com" "gender" "female" "ip_address" "48.57.13.33" "country" "Brazil" "country_code" "BR" "city" "Amparo" "longitude" "-46.7694191" "latitude" "-22.7064041" "last_login" "1589341434" +HSET "user:2379" "first_name" "Antonella" "last_name" "Gettins" "email" "agettinsai@apache.org" "gender" "female" "ip_address" "240.159.125.8" "country" "Argentina" "country_code" "AR" "city" "General San Martín" "longitude" "-58.5351929" "latitude" "-34.5802207" "last_login" "1570358838" +HSET "user:2380" "first_name" "Rainer" "last_name" "Durtnell" "email" "rdurtnellaj@china.com.cn" "gender" "male" "ip_address" "15.59.108.172" "country" "France" "country_code" "FR" "city" "Villeneuve-la-Garenne" "longitude" "2.3306851" "latitude" "48.9268168" "last_login" "1589254986" +HSET "user:2381" "first_name" "Lorant" "last_name" "Lamswood" "email" "llamswoodak@eepurl.com" "gender" "male" "ip_address" "150.82.181.170" "country" "China" "country_code" "CN" "city" "Hongqiao" "longitude" "121.038129" "latitude" "28.220406" "last_login" "1583122007" +HSET "user:2382" "first_name" "Marin" "last_name" "Chadwin" "email" "mchadwinal@washington.edu" "gender" "female" "ip_address" "214.91.186.207" "country" "Egypt" "country_code" "EG" "city" "Quţūr" "longitude" "30.9531791" "latitude" "30.9765009" "last_login" "1592456046" +HSET "user:2383" "first_name" "Timmie" "last_name" "Robertz" "email" "trobertzam@nbcnews.com" "gender" "female" "ip_address" "187.31.222.128" "country" "Indonesia" "country_code" "ID" "city" "Tebingtinggi" "longitude" "99.1566855" "latitude" "3.3262879" "last_login" "1589323277" +HSET "user:2384" "first_name" "Octavius" "last_name" "Bugden" "email" "obugdenan@npr.org" "gender" "male" "ip_address" "212.90.94.13" "country" "Croatia" "country_code" "HR" "city" "Laslovo" "longitude" "18.6959162" "latitude" "45.4146244" "last_login" "1594026124" +HSET "user:2385" "first_name" "Milzie" "last_name" "Sperwell" "email" "msperwellao@wordpress.org" "gender" "female" "ip_address" "69.76.183.188" "country" "China" "country_code" "CN" "city" "Hanyuan" "longitude" "102.652483" "latitude" "29.344616" "last_login" "1569020021" +HSET "user:2386" "first_name" "Christoph" "last_name" "Macek" "email" "cmacekap@twitpic.com" "gender" "male" "ip_address" "47.89.11.84" "country" "Indonesia" "country_code" "ID" "city" "Pitai" "longitude" "123.630501" "latitude" "-10.01236" "last_login" "1596445893" +HSET "user:2387" "first_name" "Rustin" "last_name" "Yemm" "email" "ryemmaq@feedburner.com" "gender" "male" "ip_address" "189.42.23.235" "country" "Greece" "country_code" "GR" "city" "Monastirákion" "longitude" "22.7494193" "latitude" "37.705473" "last_login" "1585491921" +HSET "user:2388" "first_name" "Nisse" "last_name" "Wood" "email" "nwoodar@bing.com" "gender" "female" "ip_address" "127.62.177.17" "country" "Greece" "country_code" "GR" "city" "Thívai" "longitude" "23.3204309" "latitude" "38.322579" "last_login" "1582029878" +HSET "user:2389" "first_name" "Bink" "last_name" "Daughtry" "email" "bdaughtryas@merriam-webster.com" "gender" "male" "ip_address" "147.158.101.140" "country" "China" "country_code" "CN" "city" "Mijiang" "longitude" "100.22775" "latitude" "26.855047" "last_login" "1568731942" +HSET "user:2390" "first_name" "Naomi" "last_name" "Trattles" "email" "ntrattlesat@princeton.edu" "gender" "female" "ip_address" "52.88.70.99" "country" "Ukraine" "country_code" "UA" "city" "Kamionka Strumitowa" "longitude" "24.3454482" "latitude" "50.0994726" "last_login" "1594395150" +HSET "user:2391" "first_name" "Freemon" "last_name" "Rabjohns" "email" "frabjohnsau@eepurl.com" "gender" "male" "ip_address" "243.97.213.103" "country" "China" "country_code" "CN" "city" "Niuzhuang" "longitude" "121.409039" "latitude" "31.04565" "last_login" "1594618432" +HSET "user:2392" "first_name" "Bernice" "last_name" "Trouncer" "email" "btrouncerav@reverbnation.com" "gender" "female" "ip_address" "106.253.38.150" "country" "Russia" "country_code" "RU" "city" "Novopavlovsk" "longitude" "43.6312634" "latitude" "43.9576632" "last_login" "1577365977" +HSET "user:2393" "first_name" "Rosemary" "last_name" "Bunnell" "email" "rbunnellaw@icq.com" "gender" "female" "ip_address" "93.237.36.47" "country" "Portugal" "country_code" "PT" "city" "Torre" "longitude" "-7.0160004" "latitude" "40.347979" "last_login" "1592690062" +HSET "user:2394" "first_name" "Randy" "last_name" "Sollom" "email" "rsollomax@amazonaws.com" "gender" "female" "ip_address" "152.150.188.52" "country" "Zambia" "country_code" "ZM" "city" "Mpika" "longitude" "31.4513314" "latitude" "-11.8280231" "last_login" "1595175553" +HSET "user:2395" "first_name" "Orville" "last_name" "Tuttle" "email" "otuttleay@amazon.co.uk" "gender" "male" "ip_address" "31.15.181.176" "country" "China" "country_code" "CN" "city" "Jiulong" "longitude" "101.507294" "latitude" "29.000347" "last_login" "1577168210" +HSET "user:2396" "first_name" "Konrad" "last_name" "Dorian" "email" "kdorianaz@bravesites.com" "gender" "male" "ip_address" "71.105.255.140" "country" "Indonesia" "country_code" "ID" "city" "Lemahputih" "longitude" "110.894036" "latitude" "-7.042646" "last_login" "1577127947" +HSET "user:2397" "first_name" "Nikita" "last_name" "Basilotta" "email" "nbasilottab0@mail.ru" "gender" "male" "ip_address" "18.190.99.92" "country" "Indonesia" "country_code" "ID" "city" "Takokak" "longitude" "106.9830865" "latitude" "-7.0964505" "last_login" "1581443205" +HSET "user:2398" "first_name" "Jorry" "last_name" "Kingsley" "email" "jkingsleyb1@shinystat.com" "gender" "female" "ip_address" "167.75.102.203" "country" "Indonesia" "country_code" "ID" "city" "Juwana" "longitude" "111.1533456" "latitude" "-6.7099134" "last_login" "1588976210" +HSET "user:2399" "first_name" "Sigvard" "last_name" "O'Sullivan" "email" "sosullivanb2@google.pl" "gender" "male" "ip_address" "181.205.247.206" "country" "France" "country_code" "FR" "city" "Carrières-sur-Seine" "longitude" "2.16555" "latitude" "48.911035" "last_login" "1582916084" +HSET "user:2400" "first_name" "West" "last_name" "Heartfield" "email" "wheartfieldb3@netvibes.com" "gender" "male" "ip_address" "22.11.235.148" "country" "Ukraine" "country_code" "UA" "city" "Bolekhiv" "longitude" "23.8543141" "latitude" "49.0702518" "last_login" "1570055168" +HSET "user:2401" "first_name" "Adan" "last_name" "Winspurr" "email" "awinspurrb4@time.com" "gender" "male" "ip_address" "75.83.141.169" "country" "Syria" "country_code" "SY" "city" "Shahbā" "longitude" "36.6255869" "latitude" "32.8568937" "last_login" "1569938172" +HSET "user:2402" "first_name" "Whitney" "last_name" "Nerney" "email" "wnerneyb5@nyu.edu" "gender" "female" "ip_address" "163.67.76.148" "country" "United States" "country_code" "US" "city" "Seattle" "longitude" "-122.3323351" "latitude" "47.6015566" "last_login" "1583693157" +HSET "user:2403" "first_name" "Lilah" "last_name" "Stracey" "email" "lstraceyb6@blogspot.com" "gender" "female" "ip_address" "148.225.35.143" "country" "Indonesia" "country_code" "ID" "city" "Kadugadung" "longitude" "106.0155278" "latitude" "-6.3855073" "last_login" "1592360684" +HSET "user:2404" "first_name" "Marni" "last_name" "Megahey" "email" "mmegaheyb7@netvibes.com" "gender" "female" "ip_address" "5.150.108.62" "country" "France" "country_code" "FR" "city" "Voiron" "longitude" "5.5949365" "latitude" "45.3639886" "last_login" "1587064872" +HSET "user:2405" "first_name" "Uri" "last_name" "Wyld" "email" "uwyldb8@yale.edu" "gender" "male" "ip_address" "103.210.53.33" "country" "China" "country_code" "CN" "city" "Taiyigong" "longitude" "116.481068" "latitude" "39.979686" "last_login" "1587874759" +HSET "user:2406" "first_name" "Adel" "last_name" "McFeat" "email" "amcfeatb9@t.co" "gender" "female" "ip_address" "51.63.107.130" "country" "Canada" "country_code" "CA" "city" "Longueuil" "longitude" "-73.4848038" "latitude" "45.4693392" "last_login" "1578615889" +HSET "user:2407" "first_name" "Lexi" "last_name" "Alpin" "email" "lalpinba@state.tx.us" "gender" "female" "ip_address" "190.190.132.59" "country" "Czech Republic" "country_code" "CZ" "city" "Vacov" "longitude" "13.740288" "latitude" "49.1333104" "last_login" "1574983726" +HSET "user:2408" "first_name" "Lazaro" "last_name" "MacMaykin" "email" "lmacmaykinbb@ifeng.com" "gender" "male" "ip_address" "24.225.230.140" "country" "Russia" "country_code" "RU" "city" "Kolobovo" "longitude" "41.3503153" "latitude" "56.7034937" "last_login" "1599414327" +HSET "user:2409" "first_name" "Letizia" "last_name" "Tosspell" "email" "ltosspellbc@devhub.com" "gender" "female" "ip_address" "208.181.72.173" "country" "South Korea" "country_code" "KR" "city" "Kosong" "longitude" "128.3176776" "latitude" "38.6675581" "last_login" "1581174168" +HSET "user:2410" "first_name" "Kendrick" "last_name" "Spriggs" "email" "kspriggsbd@a8.net" "gender" "male" "ip_address" "178.100.117.131" "country" "Thailand" "country_code" "TH" "city" "Suan Luang" "longitude" "99.4819782" "latitude" "18.2868231" "last_login" "1578990568" +HSET "user:2411" "first_name" "Willard" "last_name" "Pelcheur" "email" "wpelcheurbe@google.es" "gender" "male" "ip_address" "241.169.252.192" "country" "Russia" "country_code" "RU" "city" "Novopavlovsk" "longitude" "43.6312634" "latitude" "43.9576632" "last_login" "1591581811" +HSET "user:2412" "first_name" "Claiborn" "last_name" "McKerron" "email" "cmckerronbf@taobao.com" "gender" "male" "ip_address" "18.225.157.44" "country" "Kyrgyzstan" "country_code" "KG" "city" "Sulyukta" "longitude" "69.5678329" "latitude" "39.9338165" "last_login" "1594803510" +HSET "user:2413" "first_name" "Wheeler" "last_name" "Holworth" "email" "wholworthbg@yelp.com" "gender" "male" "ip_address" "247.192.162.30" "country" "Portugal" "country_code" "PT" "city" "Sabugal" "longitude" "-7.0895241" "latitude" "40.3516608" "last_login" "1575191855" +HSET "user:2414" "first_name" "Elvis" "last_name" "Dunguy" "email" "edunguybh@wunderground.com" "gender" "male" "ip_address" "191.71.124.169" "country" "Guatemala" "country_code" "GT" "city" "Santa Apolonia" "longitude" "-90.9740093" "latitude" "14.7902447" "last_login" "1579966870" +HSET "user:2415" "first_name" "Wylie" "last_name" "Gritland" "email" "wgritlandbi@wired.com" "gender" "male" "ip_address" "5.23.45.231" "country" "Philippines" "country_code" "PH" "city" "Arcangel" "longitude" "120.5648766" "latitude" "15.976779" "last_login" "1590859644" +HSET "user:2416" "first_name" "Starlin" "last_name" "Guilloux" "email" "sguillouxbj@noaa.gov" "gender" "female" "ip_address" "173.239.59.88" "country" "Angola" "country_code" "AO" "city" "Caála" "longitude" "15.5620927" "latitude" "-12.8549255" "last_login" "1587631499" +HSET "user:2417" "first_name" "Olvan" "last_name" "Veldman" "email" "oveldmanbk@amazon.de" "gender" "male" "ip_address" "149.187.66.47" "country" "United Arab Emirates" "country_code" "AE" "city" "Dubai" "longitude" "55.2707828" "latitude" "25.2048493" "last_login" "1588951443" +HSET "user:2418" "first_name" "Meridith" "last_name" "Gallamore" "email" "mgallamorebl@sun.com" "gender" "female" "ip_address" "214.38.213.120" "country" "China" "country_code" "CN" "city" "Huangtan" "longitude" "121.261886" "latitude" "28.650072" "last_login" "1595971079" +HSET "user:2419" "first_name" "Curr" "last_name" "Piggens" "email" "cpiggensbm@disqus.com" "gender" "male" "ip_address" "164.230.27.57" "country" "China" "country_code" "CN" "city" "Cunliji" "longitude" "120.787999" "latitude" "37.540419" "last_login" "1600227264" +HSET "user:2420" "first_name" "Ivett" "last_name" "Canfer" "email" "icanferbn@twitter.com" "gender" "female" "ip_address" "96.102.254.147" "country" "Indonesia" "country_code" "ID" "city" "Tembang" "longitude" "112.5662284" "latitude" "0.8231171" "last_login" "1575583928" +HSET "user:2421" "first_name" "Arron" "last_name" "Joye" "email" "ajoyebo@vinaora.com" "gender" "male" "ip_address" "175.243.6.93" "country" "Indonesia" "country_code" "ID" "city" "Potlot" "longitude" "106.842169" "latitude" "-6.254778" "last_login" "1570264597" +HSET "user:2422" "first_name" "Gabriel" "last_name" "Ponde" "email" "gpondebp@example.com" "gender" "female" "ip_address" "109.158.215.124" "country" "Indonesia" "country_code" "ID" "city" "Sumurgung" "longitude" "112.0103765" "latitude" "-6.8926501" "last_login" "1581861149" +HSET "user:2423" "first_name" "Silas" "last_name" "Gurner" "email" "sgurnerbq@slideshare.net" "gender" "male" "ip_address" "25.47.165.54" "country" "Indonesia" "country_code" "ID" "city" "Belajen" "longitude" "119.8245506" "latitude" "-3.3226005" "last_login" "1596524114" +HSET "user:2424" "first_name" "Diana" "last_name" "Choppin" "email" "dchoppinbr@psu.edu" "gender" "female" "ip_address" "31.239.62.168" "country" "Sweden" "country_code" "SE" "city" "Ed" "longitude" "11.9327196" "latitude" "58.9122731" "last_login" "1577671677" +HSET "user:2425" "first_name" "Gaby" "last_name" "Gatecliffe" "email" "ggatecliffebs@zimbio.com" "gender" "male" "ip_address" "73.151.1.193" "country" "Ukraine" "country_code" "UA" "city" "Shevchenkove" "longitude" "37.1778581" "latitude" "49.6877737" "last_login" "1570851431" +HSET "user:2426" "first_name" "Merralee" "last_name" "Clowes" "email" "mclowesbt@skype.com" "gender" "female" "ip_address" "93.7.201.114" "country" "Mongolia" "country_code" "MN" "city" "Tögrög" "longitude" "94.9302073" "latitude" "45.7716857" "last_login" "1577362929" +HSET "user:2427" "first_name" "Tandi" "last_name" "Yushankin" "email" "tyushankinbu@sohu.com" "gender" "female" "ip_address" "178.23.213.82" "country" "Portugal" "country_code" "PT" "city" "Mosteiro" "longitude" "-7.9582137" "latitude" "41.0874823" "last_login" "1588240666" +HSET "user:2428" "first_name" "Kelby" "last_name" "Arkill" "email" "karkillbv@slate.com" "gender" "male" "ip_address" "222.85.106.119" "country" "Russia" "country_code" "RU" "city" "Bershet’" "longitude" "56.3724781" "latitude" "57.7297471" "last_login" "1593545764" +HSET "user:2429" "first_name" "Hildagarde" "last_name" "Byram" "email" "hbyrambw@reverbnation.com" "gender" "female" "ip_address" "177.179.87.217" "country" "Brazil" "country_code" "BR" "city" "Soledade" "longitude" "-52.5745556" "latitude" "-28.832995" "last_login" "1588148299" +HSET "user:2430" "first_name" "Cary" "last_name" "Willcott" "email" "cwillcottbx@gnu.org" "gender" "male" "ip_address" "235.202.183.86" "country" "China" "country_code" "CN" "city" "Shixiang" "longitude" "120.1534039" "latitude" "30.3312397" "last_login" "1582524830" +HSET "user:2431" "first_name" "Cindelyn" "last_name" "Tinklin" "email" "ctinklinby@unblog.fr" "gender" "female" "ip_address" "120.101.46.61" "country" "China" "country_code" "CN" "city" "Xuri" "longitude" "100.682238" "latitude" "31.988669" "last_login" "1573469525" +HSET "user:2432" "first_name" "Babbette" "last_name" "Widd" "email" "bwiddbz@mozilla.org" "gender" "female" "ip_address" "241.212.76.41" "country" "China" "country_code" "CN" "city" "Tawen Aobao" "longitude" "117.185967" "latitude" "39.084828" "last_login" "1598194833" +HSET "user:2433" "first_name" "Kiersten" "last_name" "Strainge" "email" "kstraingec0@kickstarter.com" "gender" "female" "ip_address" "19.84.138.97" "country" "Finland" "country_code" "FI" "city" "Jämsänkoski" "longitude" "25.2322629" "latitude" "61.8178084" "last_login" "1575342400" +HSET "user:2434" "first_name" "Fields" "last_name" "Harmer" "email" "fharmerc1@hc360.com" "gender" "male" "ip_address" "131.4.99.83" "country" "Sweden" "country_code" "SE" "city" "Kristinehamn" "longitude" "14.0706348" "latitude" "59.3030191" "last_login" "1591379094" +HSET "user:2435" "first_name" "Tully" "last_name" "Rahill" "email" "trahillc2@tmall.com" "gender" "male" "ip_address" "103.49.84.18" "country" "China" "country_code" "CN" "city" "Huaiya" "longitude" "107.872159" "latitude" "34.207908" "last_login" "1581390727" +HSET "user:2436" "first_name" "Far" "last_name" "McVeighty" "email" "fmcveightyc3@last.fm" "gender" "male" "ip_address" "130.220.22.125" "country" "Poland" "country_code" "PL" "city" "Brodnica" "longitude" "16.8924785" "latitude" "52.138523" "last_login" "1592594380" +HSET "user:2437" "first_name" "Matilde" "last_name" "Whittam" "email" "mwhittamc4@arstechnica.com" "gender" "female" "ip_address" "44.234.103.98" "country" "Japan" "country_code" "JP" "city" "Bibai" "longitude" "141.85861" "latitude" "43.32472" "last_login" "1570219210" +HSET "user:2438" "first_name" "Rance" "last_name" "Auletta" "email" "raulettac5@webmd.com" "gender" "male" "ip_address" "85.82.114.112" "country" "Argentina" "country_code" "AR" "city" "Bernardo de Irigoyen" "longitude" "-58.5854528" "latitude" "-34.493672" "last_login" "1570731347" +HSET "user:2439" "first_name" "Olivero" "last_name" "Upstell" "email" "oupstellc6@zimbio.com" "gender" "male" "ip_address" "99.184.124.136" "country" "Samoa" "country_code" "WS" "city" "Falefa" "longitude" "-171.5877457" "latitude" "-13.8875282" "last_login" "1595359505" +HSET "user:2440" "first_name" "Krishna" "last_name" "Durand" "email" "kdurandc7@globo.com" "gender" "male" "ip_address" "226.232.150.95" "country" "Ukraine" "country_code" "UA" "city" "Luhansk" "longitude" "39.307815" "latitude" "48.574041" "last_login" "1598373540" +HSET "user:2441" "first_name" "Lyn" "last_name" "Weddup" "email" "lweddupc8@yandex.ru" "gender" "female" "ip_address" "218.95.43.200" "country" "Sweden" "country_code" "SE" "city" "Hultsfred" "longitude" "15.9897014" "latitude" "57.5334964" "last_login" "1585598975" +HSET "user:2442" "first_name" "Ros" "last_name" "Shimman" "email" "rshimmanc9@mapquest.com" "gender" "female" "ip_address" "125.109.150.200" "country" "Philippines" "country_code" "PH" "city" "Panan" "longitude" "120.0278872" "latitude" "15.2113128" "last_login" "1573833748" +HSET "user:2443" "first_name" "Maryanne" "last_name" "Luter" "email" "mluterca@toplist.cz" "gender" "female" "ip_address" "135.142.146.121" "country" "Ukraine" "country_code" "UA" "city" "Lyubeshiv" "longitude" "25.498235" "latitude" "51.7550673" "last_login" "1591389638" +HSET "user:2444" "first_name" "Tori" "last_name" "Ortsmann" "email" "tortsmanncb@sciencedirect.com" "gender" "female" "ip_address" "154.241.97.96" "country" "Argentina" "country_code" "AR" "city" "Bell Ville" "longitude" "-58.4349355" "latitude" "-34.6342051" "last_login" "1594438882" +HSET "user:2445" "first_name" "Jammal" "last_name" "Dybell" "email" "jdybellcc@hibu.com" "gender" "male" "ip_address" "114.239.200.236" "country" "Afghanistan" "country_code" "AF" "city" "Āsmār" "longitude" "71.3542319" "latitude" "35.0298547" "last_login" "1588715516" +HSET "user:2446" "first_name" "Napoleon" "last_name" "Krystek" "email" "nkrystekcd@purevolume.com" "gender" "male" "ip_address" "0.20.90.28" "country" "China" "country_code" "CN" "city" "Sandu" "longitude" "107.869749" "latitude" "25.983202" "last_login" "1571733600" +HSET "user:2447" "first_name" "Whitaker" "last_name" "D'Alesco" "email" "wdalescoce@blogger.com" "gender" "male" "ip_address" "190.234.121.102" "country" "Japan" "country_code" "JP" "city" "Omigawa" "longitude" "140.6058841" "latitude" "35.8550956" "last_login" "1586419441" +HSET "user:2448" "first_name" "Agnese" "last_name" "Thams" "email" "athamscf@nsw.gov.au" "gender" "female" "ip_address" "148.59.25.160" "country" "China" "country_code" "CN" "city" "Rinbung" "longitude" "89.841983" "latitude" "29.230933" "last_login" "1595800302" +HSET "user:2449" "first_name" "Almeria" "last_name" "Petworth" "email" "apetworthcg@tuttocitta.it" "gender" "female" "ip_address" "63.219.23.208" "country" "Togo" "country_code" "TG" "city" "Notsé" "longitude" "1.1688978" "latitude" "6.9463216" "last_login" "1586374487" +HSET "user:2450" "first_name" "Mei" "last_name" "Westman" "email" "mwestmanch@google.com" "gender" "female" "ip_address" "207.163.240.166" "country" "Sri Lanka" "country_code" "LK" "city" "Shanjeev Home" "longitude" "79.9310946" "latitude" "6.9787414" "last_login" "1570875383" +HSET "user:2451" "first_name" "Myrtle" "last_name" "Somersett" "email" "msomersettci@moonfruit.com" "gender" "female" "ip_address" "130.119.132.199" "country" "Jordan" "country_code" "JO" "city" "Aydūn" "longitude" "35.853757" "latitude" "32.5236404" "last_login" "1578305891" +HSET "user:2452" "first_name" "Bethany" "last_name" "Cannop" "email" "bcannopcj@sina.com.cn" "gender" "female" "ip_address" "228.114.184.10" "country" "Portugal" "country_code" "PT" "city" "Gondomar" "longitude" "-8.264878" "latitude" "41.5289432" "last_login" "1599044001" +HSET "user:2453" "first_name" "Enrico" "last_name" "Ebbage" "email" "eebbageck@lycos.com" "gender" "male" "ip_address" "151.28.148.164" "country" "United States" "country_code" "US" "city" "Miami" "longitude" "-80.2454223" "latitude" "25.728011" "last_login" "1574902115" +HSET "user:2454" "first_name" "Fionnula" "last_name" "McKissack" "email" "fmckissackcl@desdev.cn" "gender" "female" "ip_address" "217.25.46.237" "country" "Spain" "country_code" "ES" "city" "Valladolid" "longitude" "-4.7497457" "latitude" "41.6465777" "last_login" "1596288383" +HSET "user:2455" "first_name" "Arden" "last_name" "Bywaters" "email" "abywaterscm@goo.ne.jp" "gender" "female" "ip_address" "50.54.222.85" "country" "Peru" "country_code" "PE" "city" "Mosoc Llacta" "longitude" "-71.47278" "latitude" "-14.12" "last_login" "1595759800" +HSET "user:2456" "first_name" "Vlad" "last_name" "Heinonen" "email" "vheinonencn@cargocollective.com" "gender" "male" "ip_address" "200.73.18.178" "country" "Canada" "country_code" "CA" "city" "Marystown" "longitude" "-55.14829" "latitude" "47.16663" "last_login" "1577959009" +HSET "user:2457" "first_name" "Eliot" "last_name" "Glaisner" "email" "eglaisnerco@google.es" "gender" "male" "ip_address" "109.188.126.53" "country" "United States" "country_code" "US" "city" "Littleton" "longitude" "-104.9505671" "latitude" "39.5511448" "last_login" "1598012437" +HSET "user:2458" "first_name" "Jacynth" "last_name" "Buye" "email" "jbuyecp@samsung.com" "gender" "female" "ip_address" "140.19.225.68" "country" "Philippines" "country_code" "PH" "city" "Pajo" "longitude" "121.0628238" "latitude" "14.631218" "last_login" "1594822269" +HSET "user:2459" "first_name" "Jenifer" "last_name" "Pischoff" "email" "jpischoffcq@netscape.com" "gender" "female" "ip_address" "132.162.15.14" "country" "Indonesia" "country_code" "ID" "city" "Bangko" "longitude" "102.3234816" "latitude" "-2.0764561" "last_login" "1587886553" +HSET "user:2460" "first_name" "Wilma" "last_name" "Pettus" "email" "wpettuscr@mit.edu" "gender" "female" "ip_address" "66.221.80.160" "country" "Indonesia" "country_code" "ID" "city" "Cibeureum" "longitude" "106.9506175" "latitude" "-6.939897" "last_login" "1572492458" +HSET "user:2461" "first_name" "Quintana" "last_name" "Kemmish" "email" "qkemmishcs@goo.ne.jp" "gender" "female" "ip_address" "235.187.48.90" "country" "Indonesia" "country_code" "ID" "city" "Keleleng" "longitude" "106.896143" "latitude" "-6.197602" "last_login" "1590600153" +HSET "user:2462" "first_name" "Dixie" "last_name" "Athey" "email" "datheyct@ebay.co.uk" "gender" "female" "ip_address" "209.194.114.154" "country" "China" "country_code" "CN" "city" "Xinshidu" "longitude" "121.585315" "latitude" "31.264592" "last_login" "1590000385" +HSET "user:2463" "first_name" "Robyn" "last_name" "Gumly" "email" "rgumlycu@flickr.com" "gender" "female" "ip_address" "172.98.231.183" "country" "Philippines" "country_code" "PH" "city" "Tococ East" "longitude" "120.4157561" "latitude" "15.8279992" "last_login" "1584336511" +HSET "user:2464" "first_name" "Andrew" "last_name" "Davidov" "email" "adavidovcv@360.cn" "gender" "male" "ip_address" "58.229.149.19" "country" "France" "country_code" "FR" "city" "Besançon" "longitude" "5.993932" "latitude" "47.287125" "last_login" "1570973297" +HSET "user:2465" "first_name" "Ludwig" "last_name" "Higgoe" "email" "lhiggoecw@google.com.hk" "gender" "male" "ip_address" "211.83.186.233" "country" "Czech Republic" "country_code" "CZ" "city" "Líně" "longitude" "13.2772423" "latitude" "49.7030481" "last_login" "1582245916" +HSET "user:2466" "first_name" "Norean" "last_name" "Wolvey" "email" "nwolveycx@studiopress.com" "gender" "female" "ip_address" "125.1.219.11" "country" "China" "country_code" "CN" "city" "Haokou" "longitude" "112.649998" "latitude" "30.378737" "last_login" "1586550244" +HSET "user:2467" "first_name" "Margi" "last_name" "Gronav" "email" "mgronavcy@privacy.gov.au" "gender" "female" "ip_address" "72.22.71.128" "country" "Nepal" "country_code" "NP" "city" "Surkhet" "longitude" "81.7787021" "latitude" "28.517456" "last_login" "1572553676" +HSET "user:2468" "first_name" "Darda" "last_name" "Priddle" "email" "dpriddlecz@wp.com" "gender" "female" "ip_address" "100.117.116.171" "country" "China" "country_code" "CN" "city" "Leshan" "longitude" "103.765678" "latitude" "29.552115" "last_login" "1580558442" +HSET "user:2469" "first_name" "Chaunce" "last_name" "Pervoe" "email" "cpervoed0@macromedia.com" "gender" "male" "ip_address" "110.27.204.182" "country" "Indonesia" "country_code" "ID" "city" "Barengkok" "longitude" "106.635025" "latitude" "-6.5978669" "last_login" "1577082777" +HSET "user:2470" "first_name" "Darnell" "last_name" "Pock" "email" "dpockd1@sfgate.com" "gender" "male" "ip_address" "107.70.232.182" "country" "Haiti" "country_code" "HT" "city" "Limonade" "longitude" "-72.1268032" "latitude" "19.6686032" "last_login" "1574805026" +HSET "user:2471" "first_name" "Everett" "last_name" "Colgrave" "email" "ecolgraved2@scientificamerican.com" "gender" "male" "ip_address" "144.209.31.230" "country" "France" "country_code" "FR" "city" "Cherbourg-Octeville" "longitude" "-1.6272462" "latitude" "49.6355347" "last_login" "1588620856" +HSET "user:2472" "first_name" "Benn" "last_name" "Leatherbarrow" "email" "bleatherbarrowd3@epa.gov" "gender" "male" "ip_address" "255.142.214.214" "country" "China" "country_code" "CN" "city" "Liqizhuang" "longitude" "117.166453" "latitude" "39.073815" "last_login" "1594490604" +HSET "user:2473" "first_name" "Allyson" "last_name" "Bowmen" "email" "abowmend4@globo.com" "gender" "female" "ip_address" "226.2.122.86" "country" "Indonesia" "country_code" "ID" "city" "Sobeok" "longitude" "117.18602" "latitude" "-8.75815" "last_login" "1589761465" +HSET "user:2474" "first_name" "Cherida" "last_name" "Gurry" "email" "cgurryd5@alexa.com" "gender" "female" "ip_address" "175.139.120.14" "country" "China" "country_code" "CN" "city" "Gaojingzhuang" "longitude" "117.644144" "latitude" "39.419036" "last_login" "1581437285" +HSET "user:2475" "first_name" "Ag" "last_name" "Joiner" "email" "ajoinerd6@china.com.cn" "gender" "female" "ip_address" "90.15.153.221" "country" "Russia" "country_code" "RU" "city" "Gubskaya" "longitude" "40.6203439" "latitude" "44.3204868" "last_login" "1591141993" +HSET "user:2476" "first_name" "Nathanael" "last_name" "MacDonough" "email" "nmacdonoughd7@istockphoto.com" "gender" "male" "ip_address" "222.163.169.100" "country" "Paraguay" "country_code" "PY" "city" "Itapé" "longitude" "-56.6135167" "latitude" "-25.8511498" "last_login" "1570250377" +HSET "user:2477" "first_name" "Minor" "last_name" "Ambrogioni" "email" "mambrogionid8@multiply.com" "gender" "male" "ip_address" "141.156.121.82" "country" "Chile" "country_code" "CL" "city" "Lampa" "longitude" "-70.879328" "latitude" "-33.2827093" "last_login" "1598648692" +HSET "user:2478" "first_name" "Georgy" "last_name" "Alessandretti" "email" "galessandrettid9@jigsy.com" "gender" "male" "ip_address" "24.47.136.13" "country" "Indonesia" "country_code" "ID" "city" "Bei" "longitude" "119.438834" "latitude" "-5.14445" "last_login" "1571410199" +HSET "user:2479" "first_name" "Doro" "last_name" "Marchant" "email" "dmarchantda@prnewswire.com" "gender" "female" "ip_address" "156.176.151.136" "country" "Thailand" "country_code" "TH" "city" "Ang Thong" "longitude" "100.4508956" "latitude" "14.5752935" "last_login" "1593965931" +HSET "user:2480" "first_name" "Hal" "last_name" "Shorey" "email" "hshoreydb@tiny.cc" "gender" "male" "ip_address" "132.228.250.187" "country" "China" "country_code" "CN" "city" "Yanguan" "longitude" "120.120494" "latitude" "27.851032" "last_login" "1594903550" +HSET "user:2481" "first_name" "Marshal" "last_name" "Mowbray" "email" "mmowbraydc@blog.com" "gender" "male" "ip_address" "109.127.165.8" "country" "France" "country_code" "FR" "city" "Romilly-sur-Seine" "longitude" "3.6973504" "latitude" "48.5202109" "last_login" "1595169070" +HSET "user:2482" "first_name" "Webster" "last_name" "Cartmell" "email" "wcartmelldd@cocolog-nifty.com" "gender" "male" "ip_address" "248.15.173.129" "country" "Iran" "country_code" "IR" "city" "Behbahān" "longitude" "50.234745" "latitude" "30.5911589" "last_login" "1571939411" +HSET "user:2483" "first_name" "Lorilyn" "last_name" "Creyke" "email" "lcreykede@abc.net.au" "gender" "female" "ip_address" "140.92.5.119" "country" "Indonesia" "country_code" "ID" "city" "Wahai" "longitude" "129.484497" "latitude" "-2.804472" "last_login" "1577484262" +HSET "user:2484" "first_name" "Neely" "last_name" "Diviney" "email" "ndivineydf@ca.gov" "gender" "female" "ip_address" "23.244.123.242" "country" "China" "country_code" "CN" "city" "Wangyi Zhendian" "longitude" "113.393516" "latitude" "31.325748" "last_login" "1569806152" +HSET "user:2485" "first_name" "Jean" "last_name" "Kimblin" "email" "jkimblindg@yellowpages.com" "gender" "male" "ip_address" "179.251.19.241" "country" "Guatemala" "country_code" "GT" "city" "Zunilito" "longitude" "-91.5105745" "latitude" "14.6116655" "last_login" "1591317026" +HSET "user:2486" "first_name" "Briana" "last_name" "Christophersen" "email" "bchristophersendh@buzzfeed.com" "gender" "female" "ip_address" "239.24.58.60" "country" "Nigeria" "country_code" "NG" "city" "Umuahia" "longitude" "7.4922407" "latitude" "5.5249526" "last_login" "1584219580" +HSET "user:2487" "first_name" "Ibbie" "last_name" "Roderighi" "email" "iroderighidi@google.de" "gender" "female" "ip_address" "141.171.57.112" "country" "Ukraine" "country_code" "UA" "city" "Zboriv" "longitude" "25.1434666" "latitude" "49.660696" "last_login" "1595146566" +HSET "user:2488" "first_name" "Gilly" "last_name" "Pavelka" "email" "gpavelkadj@tripod.com" "gender" "female" "ip_address" "197.49.15.49" "country" "Czech Republic" "country_code" "CZ" "city" "Těšetice" "longitude" "17.1260751" "latitude" "49.5931724" "last_login" "1580984400" +HSET "user:2489" "first_name" "Elise" "last_name" "Harrod" "email" "eharroddk@techcrunch.com" "gender" "female" "ip_address" "10.130.191.145" "country" "Russia" "country_code" "RU" "city" "Goragorskiy" "longitude" "45.081605" "latitude" "43.5007512" "last_login" "1580852036" +HSET "user:2490" "first_name" "Anna-maria" "last_name" "Tesdale" "email" "atesdaledl@phpbb.com" "gender" "female" "ip_address" "2.166.79.204" "country" "China" "country_code" "CN" "city" "Zhangxiong" "longitude" "114.1574404" "latitude" "29.0554502" "last_login" "1599289743" +HSET "user:2491" "first_name" "Penny" "last_name" "Slorance" "email" "pslorancedm@ask.com" "gender" "male" "ip_address" "168.215.141.197" "country" "France" "country_code" "FR" "city" "La Roche-sur-Yon" "longitude" "-1.4244076" "latitude" "46.6704712" "last_login" "1577153728" +HSET "user:2492" "first_name" "Benji" "last_name" "Mendez" "email" "bmendezdn@pagesperso-orange.fr" "gender" "male" "ip_address" "231.16.65.178" "country" "China" "country_code" "CN" "city" "Yantianhe" "longitude" "115.161532" "latitude" "30.967145" "last_login" "1569364072" +HSET "user:2493" "first_name" "Shirley" "last_name" "Low" "email" "slowdo@slate.com" "gender" "female" "ip_address" "251.130.30.225" "country" "Latvia" "country_code" "LV" "city" "Valdemārpils" "longitude" "22.591118" "latitude" "57.3690549" "last_login" "1581745017" +HSET "user:2494" "first_name" "Melamie" "last_name" "Ewer" "email" "mewerdp@wikispaces.com" "gender" "female" "ip_address" "87.115.190.152" "country" "Canada" "country_code" "CA" "city" "Bromont" "longitude" "-72.661835" "latitude" "45.3151096" "last_login" "1582680087" +HSET "user:2495" "first_name" "Marjie" "last_name" "Amor" "email" "mamordq@illinois.edu" "gender" "female" "ip_address" "17.142.90.59" "country" "Malaysia" "country_code" "MY" "city" "Raub" "longitude" "101.866362" "latitude" "3.9628564" "last_login" "1597999334" +HSET "user:2496" "first_name" "Reena" "last_name" "Kindall" "email" "rkindalldr@xrea.com" "gender" "female" "ip_address" "109.229.19.220" "country" "Brazil" "country_code" "BR" "city" "Brodósqui" "longitude" "-43.9875878" "latitude" "-19.8078961" "last_login" "1594959801" +HSET "user:2497" "first_name" "Nert" "last_name" "Gonthier" "email" "ngonthierds@mlb.com" "gender" "female" "ip_address" "66.148.111.204" "country" "Sweden" "country_code" "SE" "city" "Skelleftehamn" "longitude" "21.242165" "latitude" "64.6789618" "last_login" "1589991000" +HSET "user:2498" "first_name" "Drusie" "last_name" "Dalman" "email" "ddalmandt@free.fr" "gender" "female" "ip_address" "68.135.129.118" "country" "China" "country_code" "CN" "city" "Hecheng" "longitude" "110.040315" "latitude" "27.578926" "last_login" "1585327725" +HSET "user:2499" "first_name" "Tamera" "last_name" "Zambonini" "email" "tzamboninidu@liveinternet.ru" "gender" "female" "ip_address" "153.8.253.73" "country" "Indonesia" "country_code" "ID" "city" "Krajan Tegalombo" "longitude" "111.4253892" "latitude" "-7.9110809" "last_login" "1596164019" +HSET "user:2500" "first_name" "Shurlock" "last_name" "Goodby" "email" "sgoodbydv@hubpages.com" "gender" "male" "ip_address" "252.184.122.142" "country" "Poland" "country_code" "PL" "city" "Kołaczyce" "longitude" "21.4331923" "latitude" "49.8073734" "last_login" "1590833634" +HSET "user:2501" "first_name" "Allegra" "last_name" "Blackstock" "email" "ablackstockdw@ebay.com" "gender" "female" "ip_address" "59.168.250.251" "country" "China" "country_code" "CN" "city" "Yingwusitang" "longitude" "77.6012162" "latitude" "39.2166313" "last_login" "1580159297" +HSET "user:2502" "first_name" "Annadiana" "last_name" "Beningfield" "email" "abeningfielddx@arstechnica.com" "gender" "female" "ip_address" "107.51.144.253" "country" "Georgia" "country_code" "GE" "city" "Surami" "longitude" "43.5525727" "latitude" "42.0264858" "last_login" "1579380941" +HSET "user:2503" "first_name" "Natala" "last_name" "Tease" "email" "nteasedy@shareasale.com" "gender" "female" "ip_address" "26.251.104.90" "country" "China" "country_code" "CN" "city" "Duogongma" "longitude" "100.596781" "latitude" "33.094679" "last_login" "1594282990" +HSET "user:2504" "first_name" "Gale" "last_name" "Turville" "email" "gturvilledz@geocities.jp" "gender" "female" "ip_address" "27.78.38.21" "country" "Brazil" "country_code" "BR" "city" "Pantanal" "longitude" "-48.5162223" "latitude" "-27.6146187" "last_login" "1583294107" +HSET "user:2505" "first_name" "Vicky" "last_name" "Ortler" "email" "vortlere0@sfgate.com" "gender" "female" "ip_address" "234.114.68.181" "country" "Tajikistan" "country_code" "TJ" "city" "Khŭjand" "longitude" "69.6452877" "latitude" "40.2675155" "last_login" "1598530092" +HSET "user:2506" "first_name" "Nicolis" "last_name" "Corradini" "email" "ncorradinie1@reuters.com" "gender" "male" "ip_address" "102.50.238.189" "country" "China" "country_code" "CN" "city" "Longguang" "longitude" "114.246899" "latitude" "22.720974" "last_login" "1586489477" +HSET "user:2507" "first_name" "Jemimah" "last_name" "Klimus" "email" "jklimuse2@netvibes.com" "gender" "female" "ip_address" "99.151.22.82" "country" "Portugal" "country_code" "PT" "city" "Pinhal de Frades" "longitude" "-9.0880453" "latitude" "38.5961493" "last_login" "1591546976" +HSET "user:2508" "first_name" "Floria" "last_name" "Stansfield" "email" "fstansfielde3@usa.gov" "gender" "female" "ip_address" "192.61.8.183" "country" "China" "country_code" "CN" "city" "Songkan" "longitude" "106.864861" "latitude" "28.534704" "last_login" "1577800337" +HSET "user:2509" "first_name" "Jeffry" "last_name" "Strettle" "email" "jstrettlee4@epa.gov" "gender" "male" "ip_address" "203.72.211.16" "country" "China" "country_code" "CN" "city" "Ping’an" "longitude" "121.457658" "latitude" "31.2221" "last_login" "1595504687" +HSET "user:2510" "first_name" "Claire" "last_name" "Edgecombe" "email" "cedgecombee5@de.vu" "gender" "female" "ip_address" "77.244.188.74" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Šipovo" "longitude" "17.0877754" "latitude" "44.2837305" "last_login" "1597352267" +HSET "user:2511" "first_name" "Stevana" "last_name" "Cockran" "email" "scockrane6@typepad.com" "gender" "female" "ip_address" "151.212.135.238" "country" "Vietnam" "country_code" "VN" "city" "Trảng Bom" "longitude" "107.0303221" "latitude" "10.9667039" "last_login" "1599914460" +HSET "user:2512" "first_name" "Brittne" "last_name" "Fitzpayn" "email" "bfitzpayne7@over-blog.com" "gender" "female" "ip_address" "36.161.218.156" "country" "Indonesia" "country_code" "ID" "city" "Margamukti" "longitude" "107.6156133" "latitude" "-7.1911536" "last_login" "1589997074" +HSET "user:2513" "first_name" "Farrah" "last_name" "Janoch" "email" "fjanoche8@forbes.com" "gender" "female" "ip_address" "6.183.187.136" "country" "Sweden" "country_code" "SE" "city" "Kalmar" "longitude" "16.3327786" "latitude" "56.6845023" "last_login" "1578201071" +HSET "user:2514" "first_name" "Camella" "last_name" "Shea" "email" "csheae9@bizjournals.com" "gender" "female" "ip_address" "115.53.57.155" "country" "Czech Republic" "country_code" "CZ" "city" "Letovice" "longitude" "16.5735785" "latitude" "49.5470892" "last_login" "1577880818" +HSET "user:2515" "first_name" "Randolf" "last_name" "Lukash" "email" "rlukashea@indiegogo.com" "gender" "male" "ip_address" "96.65.131.10" "country" "Guatemala" "country_code" "GT" "city" "Santa María Ixhuatán" "longitude" "-90.2625604" "latitude" "14.1762086" "last_login" "1586961066" +HSET "user:2516" "first_name" "Reider" "last_name" "Seer" "email" "rseereb@baidu.com" "gender" "male" "ip_address" "238.47.204.30" "country" "Russia" "country_code" "RU" "city" "Novyy Nekouz" "longitude" "38.0598668" "latitude" "57.9054081" "last_login" "1575651661" +HSET "user:2517" "first_name" "Moishe" "last_name" "Hobden" "email" "mhobdenec@netlog.com" "gender" "male" "ip_address" "140.175.65.76" "country" "Russia" "country_code" "RU" "city" "Nikol’skoye" "longitude" "39.06949" "latitude" "45.0058742" "last_login" "1593356893" +HSET "user:2518" "first_name" "Kerk" "last_name" "Mewett" "email" "kmewetted@desdev.cn" "gender" "male" "ip_address" "47.122.21.106" "country" "Indonesia" "country_code" "ID" "city" "Kembangkerang Satu" "longitude" "116.5377213" "latitude" "-8.5575745" "last_login" "1575398032" +HSET "user:2519" "first_name" "Freddy" "last_name" "Possel" "email" "fposselee@tripadvisor.com" "gender" "male" "ip_address" "189.201.190.4" "country" "Sweden" "country_code" "SE" "city" "Halmstad" "longitude" "12.8778526" "latitude" "56.6649059" "last_login" "1586864019" +HSET "user:2520" "first_name" "Ashlen" "last_name" "McLaggan" "email" "amclagganef@google.ru" "gender" "female" "ip_address" "231.175.46.158" "country" "Argentina" "country_code" "AR" "city" "Córdoba" "longitude" "-64.2679738" "latitude" "-31.3221103" "last_login" "1591666021" +HSET "user:2521" "first_name" "Monte" "last_name" "Bischop" "email" "mbischopeg@miibeian.gov.cn" "gender" "male" "ip_address" "195.246.249.167" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Nguyên Bình" "longitude" "105.9641124" "latitude" "22.6594661" "last_login" "1588274435" +HSET "user:2522" "first_name" "Guthry" "last_name" "Joll" "email" "gjolleh@craigslist.org" "gender" "male" "ip_address" "95.0.229.20" "country" "Venezuela" "country_code" "VE" "city" "Ciudad Ojeda" "longitude" "-71.3111773" "latitude" "10.2214803" "last_login" "1585699603" +HSET "user:2523" "first_name" "Sydel" "last_name" "Vasse" "email" "svasseei@narod.ru" "gender" "female" "ip_address" "170.81.173.244" "country" "Poland" "country_code" "PL" "city" "Regulice" "longitude" "17.334602" "latitude" "50.5131329" "last_login" "1570712644" +HSET "user:2524" "first_name" "Eddy" "last_name" "Rudolf" "email" "erudolfej@washingtonpost.com" "gender" "male" "ip_address" "222.160.215.30" "country" "Portugal" "country_code" "PT" "city" "Monte da Pedra" "longitude" "-7.7461418" "latitude" "39.3641607" "last_login" "1595142954" +HSET "user:2525" "first_name" "Emilee" "last_name" "Gwyer" "email" "egwyerek@ftc.gov" "gender" "female" "ip_address" "17.251.78.175" "country" "Libya" "country_code" "LY" "city" "Tobruk" "longitude" "23.941751" "latitude" "32.0681759" "last_login" "1585175658" +HSET "user:2526" "first_name" "Annabel" "last_name" "Pauley" "email" "apauleyel@elegantthemes.com" "gender" "female" "ip_address" "104.21.186.75" "country" "Peru" "country_code" "PE" "city" "Saño" "longitude" "-75.258844" "latitude" "-11.9595235" "last_login" "1582575149" +HSET "user:2527" "first_name" "Jo" "last_name" "Kenealy" "email" "jkenealyem@4shared.com" "gender" "male" "ip_address" "154.148.241.214" "country" "Germany" "country_code" "DE" "city" "Würzburg" "longitude" "9.9637931" "latitude" "49.8180135" "last_login" "1595188975" +HSET "user:2528" "first_name" "Callean" "last_name" "Runnicles" "email" "crunniclesen@reverbnation.com" "gender" "male" "ip_address" "7.26.134.10" "country" "China" "country_code" "CN" "city" "Caidian" "longitude" "114.029327" "latitude" "30.582271" "last_login" "1569787079" +HSET "user:2529" "first_name" "Cyrille" "last_name" "Chessill" "email" "cchessilleo@furl.net" "gender" "male" "ip_address" "134.138.135.226" "country" "China" "country_code" "CN" "city" "Shanxiahu" "longitude" "120.353629" "latitude" "29.837883" "last_login" "1585837861" +HSET "user:2530" "first_name" "Natal" "last_name" "Imesson" "email" "nimessonep@discuz.net" "gender" "male" "ip_address" "15.40.48.192" "country" "Sweden" "country_code" "SE" "city" "Ystad" "longitude" "13.8557599" "latitude" "55.4312324" "last_login" "1590905296" +HSET "user:2531" "first_name" "Ozzie" "last_name" "Saiz" "email" "osaizeq@abc.net.au" "gender" "male" "ip_address" "232.100.7.224" "country" "China" "country_code" "CN" "city" "Weixin" "longitude" "105.049027" "latitude" "27.8469" "last_login" "1579965954" +HSET "user:2532" "first_name" "Curtis" "last_name" "Cushion" "email" "ccushioner@skype.com" "gender" "male" "ip_address" "37.73.203.235" "country" "Brazil" "country_code" "BR" "city" "Itatuba" "longitude" "-35.5876697" "latitude" "-7.4043939" "last_login" "1588720477" +HSET "user:2533" "first_name" "Jacquelin" "last_name" "Adney" "email" "jadneyes@usgs.gov" "gender" "female" "ip_address" "46.196.68.239" "country" "Serbia" "country_code" "RS" "city" "Sakule" "longitude" "20.4917347" "latitude" "45.1459732" "last_login" "1593261445" +HSET "user:2534" "first_name" "Verile" "last_name" "Clubley" "email" "vclubleyet@timesonline.co.uk" "gender" "female" "ip_address" "27.143.107.240" "country" "Brazil" "country_code" "BR" "city" "Caeté" "longitude" "-43.6644238" "latitude" "-19.8852788" "last_login" "1585998595" +HSET "user:2535" "first_name" "Shay" "last_name" "Pavlata" "email" "spavlataeu@seesaa.net" "gender" "female" "ip_address" "167.17.101.18" "country" "France" "country_code" "FR" "city" "Annecy" "longitude" "6.1250598" "latitude" "45.925854" "last_login" "1599916069" +HSET "user:2536" "first_name" "Evangeline" "last_name" "Hastwell" "email" "ehastwellev@mtv.com" "gender" "female" "ip_address" "177.47.246.19" "country" "France" "country_code" "FR" "city" "Paris 17" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1594807153" +HSET "user:2537" "first_name" "Daffi" "last_name" "Spohrmann" "email" "dspohrmannew@guardian.co.uk" "gender" "female" "ip_address" "35.91.24.87" "country" "France" "country_code" "FR" "city" "Bourg-en-Bresse" "longitude" "5.1133935" "latitude" "46.2506074" "last_login" "1587278824" +HSET "user:2538" "first_name" "Bendite" "last_name" "Gill" "email" "bgillex@whitehouse.gov" "gender" "female" "ip_address" "98.42.191.47" "country" "Ukraine" "country_code" "UA" "city" "Zakupne" "longitude" "26.3361413" "latitude" "49.1184617" "last_login" "1581971794" +HSET "user:2539" "first_name" "Cynthea" "last_name" "La Torre" "email" "clatorreey@blogspot.com" "gender" "female" "ip_address" "123.211.40.239" "country" "China" "country_code" "CN" "city" "Fanzhuang" "longitude" "116.3323366" "latitude" "39.9335533" "last_login" "1580661235" +HSET "user:2540" "first_name" "Lenci" "last_name" "Strathman" "email" "lstrathmanez@arizona.edu" "gender" "male" "ip_address" "64.6.187.169" "country" "Palestinian Territory" "country_code" "PS" "city" "Al Judayrah" "longitude" "35.19706" "latitude" "31.85587" "last_login" "1569211017" +HSET "user:2541" "first_name" "Bride" "last_name" "Prop" "email" "bpropf0@miibeian.gov.cn" "gender" "female" "ip_address" "40.21.2.238" "country" "Zimbabwe" "country_code" "ZW" "city" "Mutoko" "longitude" "32.2256803" "latitude" "-17.4086322" "last_login" "1571411400" +HSET "user:2542" "first_name" "Emile" "last_name" "Raffles" "email" "erafflesf1@simplemachines.org" "gender" "male" "ip_address" "113.12.85.124" "country" "Uzbekistan" "country_code" "UZ" "city" "Zafar" "longitude" "69.2490136" "latitude" "40.3777496" "last_login" "1595767150" +HSET "user:2543" "first_name" "Archie" "last_name" "Siemandl" "email" "asiemandlf2@xrea.com" "gender" "male" "ip_address" "126.102.94.70" "country" "Indonesia" "country_code" "ID" "city" "Pogag" "longitude" "113.5187" "latitude" "-7.0638" "last_login" "1586912477" +HSET "user:2544" "first_name" "Ardath" "last_name" "Pinchen" "email" "apinchenf3@aol.com" "gender" "female" "ip_address" "250.22.116.138" "country" "Italy" "country_code" "IT" "city" "Milano" "longitude" "9.203123" "latitude" "45.4972764" "last_login" "1591636694" +HSET "user:2545" "first_name" "Kayley" "last_name" "Buchan" "email" "kbuchanf4@ucsd.edu" "gender" "female" "ip_address" "30.46.99.174" "country" "China" "country_code" "CN" "city" "Runjin" "longitude" "126.276226" "latitude" "47.949239" "last_login" "1596705602" +HSET "user:2546" "first_name" "Dave" "last_name" "Oakes" "email" "doakesf5@yolasite.com" "gender" "male" "ip_address" "123.130.102.212" "country" "Nepal" "country_code" "NP" "city" "Ilām" "longitude" "87.9236747" "latitude" "26.9111769" "last_login" "1594611918" +HSET "user:2547" "first_name" "Xavier" "last_name" "Prester" "email" "xpresterf6@yellowbook.com" "gender" "male" "ip_address" "10.174.138.206" "country" "Philippines" "country_code" "PH" "city" "Alegria" "longitude" "121.0309165" "latitude" "14.5020933" "last_login" "1595734566" +HSET "user:2548" "first_name" "Prue" "last_name" "Moffett" "email" "pmoffettf7@google.it" "gender" "female" "ip_address" "96.205.183.40" "country" "Germany" "country_code" "DE" "city" "Stuttgart Stuttgart-Mitte" "longitude" "9.1752629" "latitude" "48.7643143" "last_login" "1584142871" +HSET "user:2549" "first_name" "Nollie" "last_name" "Lister" "email" "nlisterf8@blogspot.com" "gender" "female" "ip_address" "27.178.227.112" "country" "Russia" "country_code" "RU" "city" "Chernyakhovsk" "longitude" "21.780179" "latitude" "54.6437754" "last_login" "1594786764" +HSET "user:2550" "first_name" "Twila" "last_name" "Lanyon" "email" "tlanyonf9@theglobeandmail.com" "gender" "female" "ip_address" "128.144.79.54" "country" "China" "country_code" "CN" "city" "Yixing" "longitude" "119.823308" "latitude" "31.340637" "last_login" "1580456409" +HSET "user:2551" "first_name" "Gery" "last_name" "Colclough" "email" "gcolcloughfa@howstuffworks.com" "gender" "male" "ip_address" "25.192.76.78" "country" "Czech Republic" "country_code" "CZ" "city" "Hostouň" "longitude" "12.7714782" "latitude" "49.5597209" "last_login" "1589452170" +HSET "user:2552" "first_name" "Lyndel" "last_name" "Imloch" "email" "limlochfb@economist.com" "gender" "female" "ip_address" "76.182.247.75" "country" "China" "country_code" "CN" "city" "Zeguo" "longitude" "121.362315" "latitude" "28.498966" "last_login" "1590894788" +HSET "user:2553" "first_name" "Tess" "last_name" "Attree" "email" "tattreefc@illinois.edu" "gender" "female" "ip_address" "90.133.213.68" "country" "Portugal" "country_code" "PT" "city" "Corvite" "longitude" "-8.3134809" "latitude" "41.4741215" "last_login" "1578433170" +HSET "user:2554" "first_name" "Morgan" "last_name" "Kyd" "email" "mkydfd@webeden.co.uk" "gender" "female" "ip_address" "69.52.94.226" "country" "Russia" "country_code" "RU" "city" "Alpatovo" "longitude" "45.2427175" "latitude" "43.708681" "last_login" "1573314792" +HSET "user:2555" "first_name" "Iosep" "last_name" "Runacres" "email" "irunacresfe@hostgator.com" "gender" "male" "ip_address" "113.81.34.228" "country" "Russia" "country_code" "RU" "city" "Vinsady" "longitude" "43.1007634" "latitude" "44.0854864" "last_login" "1585302164" +HSET "user:2556" "first_name" "Sanford" "last_name" "Dickin" "email" "sdickinff@biblegateway.com" "gender" "male" "ip_address" "112.39.146.79" "country" "Indonesia" "country_code" "ID" "city" "Cilongkrangpusaka" "longitude" "106.0253" "latitude" "-6.22625" "last_login" "1569195559" +HSET "user:2557" "first_name" "Merrile" "last_name" "Kenney" "email" "mkenneyfg@github.io" "gender" "female" "ip_address" "111.12.215.231" "country" "Philippines" "country_code" "PH" "city" "San Vicente" "longitude" "121.0589081" "latitude" "14.7596318" "last_login" "1572134185" +HSET "user:2558" "first_name" "Aubine" "last_name" "Applegate" "email" "aapplegatefh@umich.edu" "gender" "female" "ip_address" "214.66.195.231" "country" "Colombia" "country_code" "CO" "city" "Firavitoba" "longitude" "-72.994095" "latitude" "5.668899" "last_login" "1582229483" +HSET "user:2559" "first_name" "Gil" "last_name" "Bartels-Ellis" "email" "gbartelsellisfi@toplist.cz" "gender" "male" "ip_address" "4.246.235.104" "country" "France" "country_code" "FR" "city" "Chartres" "longitude" "-0.6297654" "latitude" "45.106849" "last_login" "1580217244" +HSET "user:2560" "first_name" "Elmore" "last_name" "Watford" "email" "ewatfordfj@opensource.org" "gender" "male" "ip_address" "4.12.112.186" "country" "Greece" "country_code" "GR" "city" "Kalampáka" "longitude" "21.6288728" "latitude" "39.706618" "last_login" "1591722603" +HSET "user:2561" "first_name" "Berte" "last_name" "Trowsdale" "email" "btrowsdalefk@linkedin.com" "gender" "female" "ip_address" "18.179.3.136" "country" "Argentina" "country_code" "AR" "city" "Santa Fe de la Vera Cruz" "longitude" "-60.7152064" "latitude" "-31.6146073" "last_login" "1582449206" +HSET "user:2562" "first_name" "Kale" "last_name" "Binney" "email" "kbinneyfl@squidoo.com" "gender" "male" "ip_address" "131.114.35.127" "country" "Russia" "country_code" "RU" "city" "Kostino" "longitude" "37.520581" "latitude" "56.7478077" "last_login" "1571236793" +HSET "user:2563" "first_name" "Odella" "last_name" "Scrine" "email" "oscrinefm@jimdo.com" "gender" "female" "ip_address" "101.194.95.210" "country" "Philippines" "country_code" "PH" "city" "Bungsuan" "longitude" "122.7339098" "latitude" "11.2533569" "last_login" "1584833789" +HSET "user:2564" "first_name" "Allard" "last_name" "Goddman" "email" "agoddmanfn@1und1.de" "gender" "male" "ip_address" "217.85.98.76" "country" "Indonesia" "country_code" "ID" "city" "Cangkringan" "longitude" "110.4560006" "latitude" "-7.6323091" "last_login" "1598370538" +HSET "user:2565" "first_name" "Philbert" "last_name" "Betham" "email" "pbethamfo@gnu.org" "gender" "male" "ip_address" "87.79.246.218" "country" "China" "country_code" "CN" "city" "Daohe" "longitude" "113.896129" "latitude" "22.581293" "last_login" "1599134736" +HSET "user:2566" "first_name" "Douglas" "last_name" "Rameau" "email" "drameaufp@army.mil" "gender" "male" "ip_address" "229.146.244.42" "country" "Czech Republic" "country_code" "CZ" "city" "Bořetice" "longitude" "16.8550346" "latitude" "48.9154732" "last_login" "1589247749" +HSET "user:2567" "first_name" "Tommie" "last_name" "Barbrook" "email" "tbarbrookfq@smh.com.au" "gender" "female" "ip_address" "60.83.104.77" "country" "Croatia" "country_code" "HR" "city" "Posedarje" "longitude" "15.4790862" "latitude" "44.2120433" "last_login" "1593297068" +HSET "user:2568" "first_name" "Godiva" "last_name" "Landre" "email" "glandrefr@harvard.edu" "gender" "female" "ip_address" "205.124.146.128" "country" "China" "country_code" "CN" "city" "Chaihe" "longitude" "129.688614" "latitude" "44.766541" "last_login" "1575721034" +HSET "user:2569" "first_name" "Jacqueline" "last_name" "Pickerill" "email" "jpickerillfs@cbsnews.com" "gender" "female" "ip_address" "126.119.240.44" "country" "Brazil" "country_code" "BR" "city" "Santa Luzia" "longitude" "-36.9111057" "latitude" "-6.9078713" "last_login" "1579312253" +HSET "user:2570" "first_name" "Diann" "last_name" "Crasswell" "email" "dcrasswellft@studiopress.com" "gender" "female" "ip_address" "1.131.232.134" "country" "Germany" "country_code" "DE" "city" "Dresden" "longitude" "13.6458926" "latitude" "51.0845418" "last_login" "1570161990" +HSET "user:2571" "first_name" "Waring" "last_name" "Ubee" "email" "wubeefu@loc.gov" "gender" "male" "ip_address" "88.59.151.23" "country" "China" "country_code" "CN" "city" "Xingpinglu" "longitude" "108.490475" "latitude" "34.29922" "last_login" "1589369330" +HSET "user:2572" "first_name" "Dew" "last_name" "Gallop" "email" "dgallopfv@yelp.com" "gender" "male" "ip_address" "41.121.156.99" "country" "South Korea" "country_code" "KR" "city" "Hwacheon" "longitude" "127.7080492" "latitude" "38.1056484" "last_login" "1588788451" +HSET "user:2573" "first_name" "Claybourne" "last_name" "Kingscott" "email" "ckingscottfw@yahoo.com" "gender" "male" "ip_address" "39.167.194.66" "country" "China" "country_code" "CN" "city" "Geshan" "longitude" "127.4199187" "latitude" "47.3525565" "last_login" "1573889421" +HSET "user:2574" "first_name" "Hermann" "last_name" "Lemmers" "email" "hlemmersfx@multiply.com" "gender" "male" "ip_address" "137.177.140.250" "country" "Russia" "country_code" "RU" "city" "Sredniy" "longitude" "29.6753924" "latitude" "60.1982825" "last_login" "1586114275" +HSET "user:2575" "first_name" "Leslie" "last_name" "Woodlands" "email" "lwoodlandsfy@ucla.edu" "gender" "female" "ip_address" "134.44.141.113" "country" "Greece" "country_code" "GR" "city" "Áyios Yeóryios" "longitude" "25.48139" "latitude" "35.1674" "last_login" "1599597856" +HSET "user:2576" "first_name" "Townie" "last_name" "Copplestone" "email" "tcopplestonefz@who.int" "gender" "male" "ip_address" "166.104.206.206" "country" "France" "country_code" "FR" "city" "Amiens" "longitude" "2.3081396" "latitude" "49.8905368" "last_login" "1596450011" +HSET "user:2577" "first_name" "Myrilla" "last_name" "Kitchinghan" "email" "mkitchinghang0@opera.com" "gender" "female" "ip_address" "56.19.230.246" "country" "Mexico" "country_code" "MX" "city" "San Isidro" "longitude" "-100.3671389" "latitude" "25.7232439" "last_login" "1572783579" +HSET "user:2578" "first_name" "Neysa" "last_name" "Dumphreys" "email" "ndumphreysg1@webeden.co.uk" "gender" "female" "ip_address" "92.2.15.211" "country" "Ukraine" "country_code" "UA" "city" "Stari Kuty" "longitude" "25.1584914" "latitude" "48.2824698" "last_login" "1585294115" +HSET "user:2579" "first_name" "Smitty" "last_name" "Malam" "email" "smalamg2@constantcontact.com" "gender" "male" "ip_address" "153.30.133.66" "country" "China" "country_code" "CN" "city" "Xingquan" "longitude" "117.0714935" "latitude" "36.6850384" "last_login" "1592181383" +HSET "user:2580" "first_name" "Amye" "last_name" "Riccardo" "email" "ariccardog3@people.com.cn" "gender" "female" "ip_address" "165.68.172.197" "country" "Czech Republic" "country_code" "CZ" "city" "Újezd" "longitude" "16.9050077" "latitude" "49.7647258" "last_login" "1593390918" +HSET "user:2581" "first_name" "Kacey" "last_name" "Spino" "email" "kspinog4@mac.com" "gender" "female" "ip_address" "40.177.188.178" "country" "Colombia" "country_code" "CO" "city" "La Montañita" "longitude" "-75.4111644" "latitude" "1.6408734" "last_login" "1570365267" +HSET "user:2582" "first_name" "Ulrika" "last_name" "Iacomettii" "email" "uiacomettiig5@jugem.jp" "gender" "female" "ip_address" "53.103.125.20" "country" "Russia" "country_code" "RU" "city" "Kuznechnoye" "longitude" "29.8708001" "latitude" "61.1251" "last_login" "1599452396" +HSET "user:2583" "first_name" "Lisa" "last_name" "Tumioto" "email" "ltumiotog6@apple.com" "gender" "female" "ip_address" "85.203.98.149" "country" "Russia" "country_code" "RU" "city" "Yekimovichi" "longitude" "33.29648" "latitude" "54.11285" "last_login" "1586830757" +HSET "user:2584" "first_name" "Perl" "last_name" "Leat" "email" "pleatg7@163.com" "gender" "female" "ip_address" "47.84.211.32" "country" "Indonesia" "country_code" "ID" "city" "Majennang" "longitude" "110.2176941" "latitude" "-7.4797342" "last_login" "1576519674" +HSET "user:2585" "first_name" "Arlinda" "last_name" "Wilkins" "email" "awilkinsg8@dailymotion.com" "gender" "female" "ip_address" "152.72.246.180" "country" "Indonesia" "country_code" "ID" "city" "Banjar Pedawa" "longitude" "115.0406679" "latitude" "-8.2331212" "last_login" "1582226452" +HSET "user:2586" "first_name" "Fredrick" "last_name" "Gippes" "email" "fgippesg9@shinystat.com" "gender" "male" "ip_address" "90.69.77.193" "country" "Ivory Coast" "country_code" "CI" "city" "Anyama" "longitude" "-4.0516619" "latitude" "5.4877137" "last_login" "1578612836" +HSET "user:2587" "first_name" "Orella" "last_name" "Walmsley" "email" "owalmsleyga@chronoengine.com" "gender" "female" "ip_address" "38.157.31.171" "country" "China" "country_code" "CN" "city" "Marelesu" "longitude" "83.6616699" "latitude" "46.5067026" "last_login" "1587337117" +HSET "user:2588" "first_name" "Rad" "last_name" "Wederell" "email" "rwederellgb@geocities.com" "gender" "male" "ip_address" "224.87.6.136" "country" "Philippines" "country_code" "PH" "city" "Bigaa" "longitude" "121.0758172" "latitude" "14.7512576" "last_login" "1599805442" +HSET "user:2589" "first_name" "Paxon" "last_name" "D'Cruze" "email" "pdcruzegc@yellowpages.com" "gender" "male" "ip_address" "248.101.228.230" "country" "Brazil" "country_code" "BR" "city" "Cacequi" "longitude" "-54.8265622" "latitude" "-29.8801552" "last_login" "1592629839" +HSET "user:2590" "first_name" "Pearla" "last_name" "Hartgill" "email" "phartgillgd@cyberchimps.com" "gender" "female" "ip_address" "166.114.113.76" "country" "Croatia" "country_code" "HR" "city" "Lipovljani" "longitude" "16.8946158" "latitude" "45.3982443" "last_login" "1589429509" +HSET "user:2591" "first_name" "Hunfredo" "last_name" "Draycott" "email" "hdraycottge@cam.ac.uk" "gender" "male" "ip_address" "145.42.88.136" "country" "Russia" "country_code" "RU" "city" "Lorino" "longitude" "-171.70396" "latitude" "65.50331" "last_login" "1598017857" +HSET "user:2592" "first_name" "Ynes" "last_name" "Noddles" "email" "ynoddlesgf@angelfire.com" "gender" "female" "ip_address" "247.19.42.63" "country" "Brazil" "country_code" "BR" "city" "Alenquer" "longitude" "-54.9611836" "latitude" "-0.8667864" "last_login" "1573026678" +HSET "user:2593" "first_name" "Drake" "last_name" "Sillars" "email" "dsillarsgg@webs.com" "gender" "male" "ip_address" "124.193.69.226" "country" "China" "country_code" "CN" "city" "Qingban" "longitude" "117.57372" "latitude" "28.504386" "last_login" "1591376769" +HSET "user:2594" "first_name" "Hilarius" "last_name" "Olding" "email" "holdinggh@mlb.com" "gender" "male" "ip_address" "196.82.197.193" "country" "China" "country_code" "CN" "city" "Pinghu" "longitude" "121.015142" "latitude" "30.677233" "last_login" "1579846650" +HSET "user:2595" "first_name" "Margarita" "last_name" "Wynrahame" "email" "mwynrahamegi@discuz.net" "gender" "female" "ip_address" "50.183.25.233" "country" "China" "country_code" "CN" "city" "Jindu" "longitude" "112.515033" "latitude" "23.036996" "last_login" "1580426325" +HSET "user:2596" "first_name" "Orly" "last_name" "Andraud" "email" "oandraudgj@ibm.com" "gender" "female" "ip_address" "163.243.170.152" "country" "China" "country_code" "CN" "city" "Jiangnan" "longitude" "108.273158" "latitude" "22.781631" "last_login" "1571064169" +HSET "user:2597" "first_name" "Harris" "last_name" "Klimsch" "email" "hklimschgk@zimbio.com" "gender" "male" "ip_address" "227.121.182.235" "country" "New Zealand" "country_code" "NZ" "city" "Pukekohe East" "longitude" "174.9497836" "latitude" "-37.1954967" "last_login" "1570423586" +HSET "user:2598" "first_name" "Balduin" "last_name" "Gofton" "email" "bgoftongl@epa.gov" "gender" "male" "ip_address" "69.141.149.169" "country" "Brazil" "country_code" "BR" "city" "Arroio Grande" "longitude" "-53.0866941" "latitude" "-32.2331548" "last_login" "1596352053" +HSET "user:2599" "first_name" "Kalie" "last_name" "Zahor" "email" "kzahorgm@tripod.com" "gender" "female" "ip_address" "169.220.97.118" "country" "Togo" "country_code" "TG" "city" "Tsévié" "longitude" "1.2073261" "latitude" "6.4329457" "last_login" "1574126582" +HSET "user:2600" "first_name" "Aveline" "last_name" "Rubinowicz" "email" "arubinowiczgn@usgs.gov" "gender" "female" "ip_address" "201.93.236.106" "country" "Philippines" "country_code" "PH" "city" "Dapawan" "longitude" "121.990643" "latitude" "12.405227" "last_login" "1584657855" +HSET "user:2601" "first_name" "Alene" "last_name" "Tomasutti" "email" "atomasuttigo@list-manage.com" "gender" "female" "ip_address" "91.81.206.238" "country" "Argentina" "country_code" "AR" "city" "Resistencia" "longitude" "-59.029959" "latitude" "-27.451456" "last_login" "1579444302" +HSET "user:2602" "first_name" "Othello" "last_name" "Dawtrey" "email" "odawtreygp@theatlantic.com" "gender" "male" "ip_address" "252.174.215.151" "country" "Portugal" "country_code" "PT" "city" "Roriz" "longitude" "-8.3773116" "latitude" "41.3435561" "last_login" "1569296672" +HSET "user:2603" "first_name" "Dyan" "last_name" "Clayton" "email" "dclaytongq@ycombinator.com" "gender" "female" "ip_address" "170.137.126.239" "country" "Iran" "country_code" "IR" "city" "Eqlīd" "longitude" "52.6921001" "latitude" "30.9049366" "last_login" "1592540509" +HSET "user:2604" "first_name" "Alan" "last_name" "Baynes" "email" "abaynesgr@sogou.com" "gender" "male" "ip_address" "110.1.55.184" "country" "China" "country_code" "CN" "city" "Guangyi" "longitude" "108.8076195" "latitude" "23.7247599" "last_login" "1598007009" +HSET "user:2605" "first_name" "Mauricio" "last_name" "Cure" "email" "mcuregs@slashdot.org" "gender" "male" "ip_address" "17.114.194.46" "country" "Belarus" "country_code" "BY" "city" "Buda-Kashalyova" "longitude" "30.569225" "latitude" "52.7201592" "last_login" "1584796863" +HSET "user:2606" "first_name" "Brewster" "last_name" "Coniff" "email" "bconiffgt@fda.gov" "gender" "male" "ip_address" "163.6.130.127" "country" "Portugal" "country_code" "PT" "city" "Brejoeira" "longitude" "-8.9690651" "latitude" "38.6395893" "last_login" "1599714093" +HSET "user:2607" "first_name" "Gracia" "last_name" "Top" "email" "gtopgu@google.pl" "gender" "female" "ip_address" "215.54.140.134" "country" "China" "country_code" "CN" "city" "Huikou" "longitude" "110.198286" "latitude" "20.044412" "last_login" "1576556346" +HSET "user:2608" "first_name" "Darlene" "last_name" "Earwaker" "email" "dearwakergv@mit.edu" "gender" "female" "ip_address" "118.12.33.109" "country" "South Africa" "country_code" "ZA" "city" "Utrecht" "longitude" "30.3089541" "latitude" "-27.6711693" "last_login" "1568989295" +HSET "user:2609" "first_name" "Marlena" "last_name" "Volkes" "email" "mvolkesgw@state.gov" "gender" "female" "ip_address" "60.29.223.87" "country" "Haiti" "country_code" "HT" "city" "Port-de-Paix" "longitude" "-72.8308692" "latitude" "19.9348887" "last_login" "1594134427" +HSET "user:2610" "first_name" "Pippo" "last_name" "McConnell" "email" "pmcconnellgx@cpanel.net" "gender" "male" "ip_address" "204.176.103.136" "country" "Portugal" "country_code" "PT" "city" "Longra" "longitude" "-8.0878236" "latitude" "40.7255697" "last_login" "1579658080" +HSET "user:2611" "first_name" "Ilka" "last_name" "Aubrun" "email" "iaubrungy@imdb.com" "gender" "female" "ip_address" "218.34.192.123" "country" "Indonesia" "country_code" "ID" "city" "Sindangsari" "longitude" "108.438797" "latitude" "-7.811056" "last_login" "1587990212" +HSET "user:2612" "first_name" "Anallese" "last_name" "Alger" "email" "aalgergz@github.com" "gender" "female" "ip_address" "247.133.165.132" "country" "Poland" "country_code" "PL" "city" "Kleszczewo" "longitude" "17.1790537" "latitude" "52.32659" "last_login" "1588000505" +HSET "user:2613" "first_name" "Mitzi" "last_name" "Kaes" "email" "mkaesh0@mapquest.com" "gender" "female" "ip_address" "28.6.132.49" "country" "Indonesia" "country_code" "ID" "city" "Nuamuzi" "longitude" "121.012" "latitude" "-8.8567" "last_login" "1572651918" +HSET "user:2614" "first_name" "Rodolphe" "last_name" "McCarl" "email" "rmccarlh1@tuttocitta.it" "gender" "male" "ip_address" "172.18.240.248" "country" "Japan" "country_code" "JP" "city" "Kamo" "longitude" "139.7347818" "latitude" "38.7607275" "last_login" "1589780119" +HSET "user:2615" "first_name" "Gardiner" "last_name" "Kermeen" "email" "gkermeenh2@admin.ch" "gender" "male" "ip_address" "107.89.29.127" "country" "Philippines" "country_code" "PH" "city" "Bulualto" "longitude" "123.9881642" "latitude" "12.6679167" "last_login" "1570015814" +HSET "user:2616" "first_name" "Albert" "last_name" "Tonsley" "email" "atonsleyh3@webnode.com" "gender" "male" "ip_address" "253.108.112.125" "country" "Portugal" "country_code" "PT" "city" "Ortiga" "longitude" "-8.0215061" "latitude" "39.4865544" "last_login" "1571898877" +HSET "user:2617" "first_name" "Catarina" "last_name" "Schlagh" "email" "cschlaghh4@pen.io" "gender" "female" "ip_address" "26.159.171.117" "country" "Japan" "country_code" "JP" "city" "Sunagawa" "longitude" "139.8280167" "latitude" "38.5733981" "last_login" "1570344186" +HSET "user:2618" "first_name" "Katya" "last_name" "Andreotti" "email" "kandreottih5@wikia.com" "gender" "female" "ip_address" "115.171.35.229" "country" "Morocco" "country_code" "MA" "city" "Mellila" "longitude" "-2.9380973" "latitude" "35.2922775" "last_login" "1571886828" +HSET "user:2619" "first_name" "Steve" "last_name" "Rickesies" "email" "srickesiesh6@hostgator.com" "gender" "male" "ip_address" "47.38.82.129" "country" "Uganda" "country_code" "UG" "city" "Mpigi" "longitude" "32.0837445" "latitude" "-0.0632715" "last_login" "1587155076" +HSET "user:2620" "first_name" "Amye" "last_name" "Zupo" "email" "azupoh7@multiply.com" "gender" "female" "ip_address" "33.94.220.247" "country" "Ukraine" "country_code" "UA" "city" "Vylkove" "longitude" "29.5961736" "latitude" "45.4002994" "last_login" "1578310094" +HSET "user:2621" "first_name" "Merrielle" "last_name" "Dunn" "email" "mdunnh8@elpais.com" "gender" "female" "ip_address" "107.14.225.113" "country" "China" "country_code" "CN" "city" "Zhongluotan" "longitude" "113.404729" "latitude" "23.385158" "last_login" "1583582922" +HSET "user:2622" "first_name" "Quinn" "last_name" "Ruggs" "email" "qruggsh9@vk.com" "gender" "male" "ip_address" "131.148.192.97" "country" "Ireland" "country_code" "IE" "city" "Kildare" "longitude" "-6.9140788" "latitude" "53.169971" "last_login" "1591022447" +HSET "user:2623" "first_name" "Zack" "last_name" "Feldstern" "email" "zfeldsternha@uol.com.br" "gender" "male" "ip_address" "123.184.104.107" "country" "Mexico" "country_code" "MX" "city" "Lindavista" "longitude" "-99.1324282" "latitude" "19.5037694" "last_login" "1594688044" +HSET "user:2624" "first_name" "Jojo" "last_name" "Pencost" "email" "jpencosthb@chicagotribune.com" "gender" "female" "ip_address" "161.3.135.178" "country" "China" "country_code" "CN" "city" "Changsha" "longitude" "112.938814" "latitude" "28.228209" "last_login" "1579901007" +HSET "user:2625" "first_name" "Lexis" "last_name" "Vern" "email" "lvernhc@sbwire.com" "gender" "female" "ip_address" "133.70.206.66" "country" "Thailand" "country_code" "TH" "city" "Si Mahosot" "longitude" "101.4230264" "latitude" "13.8524315" "last_login" "1585219209" +HSET "user:2626" "first_name" "Jefferson" "last_name" "Stedall" "email" "jstedallhd@paginegialle.it" "gender" "male" "ip_address" "88.184.196.227" "country" "Philippines" "country_code" "PH" "city" "Rosario" "longitude" "121.1293312" "latitude" "14.5643857" "last_login" "1572082853" +HSET "user:2627" "first_name" "Doria" "last_name" "Durrell" "email" "ddurrellhe@forbes.com" "gender" "female" "ip_address" "155.244.199.215" "country" "China" "country_code" "CN" "city" "Pailiao" "longitude" "125.0428455" "latitude" "42.9177058" "last_login" "1585158116" +HSET "user:2628" "first_name" "Sashenka" "last_name" "Halfacre" "email" "shalfacrehf@dropbox.com" "gender" "female" "ip_address" "148.102.23.215" "country" "Uganda" "country_code" "UG" "city" "Kiboga" "longitude" "31.7195459" "latitude" "0.965759" "last_login" "1594041158" +HSET "user:2629" "first_name" "Emelita" "last_name" "Runcie" "email" "erunciehg@addthis.com" "gender" "female" "ip_address" "35.226.225.93" "country" "Indonesia" "country_code" "ID" "city" "Wanurian" "longitude" "131.7108641" "latitude" "-1.3458481" "last_login" "1581235693" +HSET "user:2630" "first_name" "Sophey" "last_name" "Brogini" "email" "sbroginihh@hostgator.com" "gender" "female" "ip_address" "167.151.78.215" "country" "China" "country_code" "CN" "city" "Duru" "longitude" "95.63196" "latitude" "31.269454" "last_login" "1598379846" +HSET "user:2631" "first_name" "Priscilla" "last_name" "Pote" "email" "ppotehi@hexun.com" "gender" "female" "ip_address" "91.143.101.58" "country" "China" "country_code" "CN" "city" "Qiulu" "longitude" "120.181069" "latitude" "30.713107" "last_login" "1585800029" +HSET "user:2632" "first_name" "Ulick" "last_name" "Larchiere" "email" "ularchierehj@goo.ne.jp" "gender" "male" "ip_address" "159.57.228.66" "country" "Poland" "country_code" "PL" "city" "Radomin" "longitude" "19.1694848" "latitude" "53.0860174" "last_login" "1582717662" +HSET "user:2633" "first_name" "Renee" "last_name" "Bock" "email" "rbockhk@shop-pro.jp" "gender" "female" "ip_address" "63.93.220.97" "country" "Indonesia" "country_code" "ID" "city" "Lohong" "longitude" "100.1192169" "latitude" "-0.6311749" "last_login" "1595611212" +HSET "user:2634" "first_name" "Raynor" "last_name" "Wilstead" "email" "rwilsteadhl@discuz.net" "gender" "male" "ip_address" "94.42.34.170" "country" "Vietnam" "country_code" "VN" "city" "Cao Thượng" "longitude" "106.1270717" "latitude" "21.3873563" "last_login" "1575675020" +HSET "user:2635" "first_name" "Callean" "last_name" "Pycock" "email" "cpycockhm@themeforest.net" "gender" "male" "ip_address" "231.69.35.183" "country" "Egypt" "country_code" "EG" "city" "Fuwah" "longitude" "30.5502219" "latitude" "31.2035483" "last_login" "1594839318" +HSET "user:2636" "first_name" "Sadye" "last_name" "Kowal" "email" "skowalhn@nba.com" "gender" "female" "ip_address" "208.118.13.122" "country" "Indonesia" "country_code" "ID" "city" "Noebana" "longitude" "124.6524669" "latitude" "-9.7780409" "last_login" "1576084281" +HSET "user:2637" "first_name" "Aymer" "last_name" "Craighead" "email" "acraigheadho@ted.com" "gender" "male" "ip_address" "177.43.135.1" "country" "Indonesia" "country_code" "ID" "city" "Lodoyo" "longitude" "112.2264794" "latitude" "-8.178717" "last_login" "1576091984" +HSET "user:2638" "first_name" "Halley" "last_name" "Vautin" "email" "hvautinhp@nih.gov" "gender" "female" "ip_address" "152.175.220.219" "country" "Poland" "country_code" "PL" "city" "Wojnicz" "longitude" "20.8378422" "latitude" "49.9579835" "last_login" "1577223559" +HSET "user:2639" "first_name" "Filberte" "last_name" "Labrom" "email" "flabromhq@163.com" "gender" "male" "ip_address" "220.187.67.116" "country" "Chile" "country_code" "CL" "city" "Salamanca" "longitude" "-70.9607105" "latitude" "-31.782493" "last_login" "1574147185" +HSET "user:2640" "first_name" "Eduardo" "last_name" "Rany" "email" "eranyhr@a8.net" "gender" "male" "ip_address" "106.244.111.218" "country" "United States" "country_code" "US" "city" "Frankfort" "longitude" "-84.87" "latitude" "38.2" "last_login" "1572939431" +HSET "user:2641" "first_name" "Kin" "last_name" "Realff" "email" "krealffhs@msu.edu" "gender" "male" "ip_address" "219.0.13.53" "country" "North Korea" "country_code" "KP" "city" "Kangdong-ŭp" "longitude" "126.09611" "latitude" "39.1425" "last_login" "1595277302" +HSET "user:2642" "first_name" "Olia" "last_name" "Astill" "email" "oastillht@nationalgeographic.com" "gender" "female" "ip_address" "176.33.121.240" "country" "Philippines" "country_code" "PH" "city" "Magallanes" "longitude" "121.0482871" "latitude" "14.5624842" "last_login" "1593358127" +HSET "user:2643" "first_name" "Bald" "last_name" "Doumerque" "email" "bdoumerquehu@theguardian.com" "gender" "male" "ip_address" "59.50.70.98" "country" "Philippines" "country_code" "PH" "city" "Pulupandan" "longitude" "122.813931" "latitude" "10.527138" "last_login" "1570288076" +HSET "user:2644" "first_name" "Theressa" "last_name" "Thomasset" "email" "tthomassethv@scientificamerican.com" "gender" "female" "ip_address" "233.86.174.42" "country" "Philippines" "country_code" "PH" "city" "Tambak" "longitude" "121.6910432" "latitude" "13.9743478" "last_login" "1592659260" +HSET "user:2645" "first_name" "Filberte" "last_name" "Bachmann" "email" "fbachmannhw@toplist.cz" "gender" "male" "ip_address" "247.123.140.229" "country" "United States" "country_code" "US" "city" "Philadelphia" "longitude" "-75.145782" "latitude" "40.0397682" "last_login" "1593126206" +HSET "user:2646" "first_name" "Urbanus" "last_name" "Brunet" "email" "ubrunethx@ox.ac.uk" "gender" "male" "ip_address" "2.251.157.166" "country" "Philippines" "country_code" "PH" "city" "Ubay" "longitude" "121.0020785" "latitude" "14.6353584" "last_login" "1583706846" +HSET "user:2647" "first_name" "Min" "last_name" "Sandyford" "email" "msandyfordhy@sohu.com" "gender" "female" "ip_address" "44.223.142.16" "country" "Indonesia" "country_code" "ID" "city" "Wailolung" "longitude" "119.5752764" "latitude" "-9.5961614" "last_login" "1572941328" +HSET "user:2648" "first_name" "Tab" "last_name" "Giabucci" "email" "tgiabuccihz@forbes.com" "gender" "male" "ip_address" "148.155.151.239" "country" "Poland" "country_code" "PL" "city" "Szczytno" "longitude" "17.2264899" "latitude" "53.768384" "last_login" "1582867546" +HSET "user:2649" "first_name" "Rafi" "last_name" "Haslock" "email" "rhaslocki0@oakley.com" "gender" "male" "ip_address" "183.239.133.34" "country" "Japan" "country_code" "JP" "city" "Hamamatsu" "longitude" "137.7446478" "latitude" "34.7326539" "last_login" "1578163639" +HSET "user:2650" "first_name" "Brigida" "last_name" "Dunnet" "email" "bdunneti1@dion.ne.jp" "gender" "female" "ip_address" "16.44.244.51" "country" "France" "country_code" "FR" "city" "Paris 15" "longitude" "2.2582125" "latitude" "48.8466523" "last_login" "1575966835" +HSET "user:2651" "first_name" "Korey" "last_name" "Cherry" "email" "kcherryi2@g.co" "gender" "male" "ip_address" "165.68.64.211" "country" "France" "country_code" "FR" "city" "Sens" "longitude" "3.2995005" "latitude" "48.1903349" "last_login" "1577464677" +HSET "user:2652" "first_name" "Royce" "last_name" "McWard" "email" "rmcwardi3@nature.com" "gender" "male" "ip_address" "233.16.9.165" "country" "China" "country_code" "CN" "city" "Longhua" "longitude" "114.019351" "latitude" "22.656408" "last_login" "1592868045" +HSET "user:2653" "first_name" "Janel" "last_name" "Ramiro" "email" "jramiroi4@state.gov" "gender" "female" "ip_address" "214.50.246.180" "country" "Macedonia" "country_code" "MK" "city" "Радовиш" "longitude" "22.4665446" "latitude" "41.634449" "last_login" "1598181256" +HSET "user:2654" "first_name" "Monika" "last_name" "Skydall" "email" "mskydalli5@yolasite.com" "gender" "female" "ip_address" "25.41.156.76" "country" "Greece" "country_code" "GR" "city" "Neochóri" "longitude" "23.2207655" "latitude" "39.3046388" "last_login" "1575999992" +HSET "user:2655" "first_name" "Obidiah" "last_name" "Caherny" "email" "ocahernyi6@house.gov" "gender" "male" "ip_address" "2.51.9.210" "country" "Thailand" "country_code" "TH" "city" "Phibun Mangsahan" "longitude" "105.2316427" "latitude" "15.2510231" "last_login" "1573330623" +HSET "user:2656" "first_name" "Ardelle" "last_name" "McGeagh" "email" "amcgeaghi7@prlog.org" "gender" "female" "ip_address" "244.113.116.33" "country" "Thailand" "country_code" "TH" "city" "Huai Mek" "longitude" "103.2432632" "latitude" "16.5564748" "last_login" "1595713704" +HSET "user:2657" "first_name" "Francisca" "last_name" "Tansley" "email" "ftansleyi8@simplemachines.org" "gender" "female" "ip_address" "40.158.248.255" "country" "South Africa" "country_code" "ZA" "city" "Grahamstown" "longitude" "26.5145058" "latitude" "-33.3117281" "last_login" "1572660803" +HSET "user:2658" "first_name" "Randal" "last_name" "Hamor" "email" "rhamori9@businessweek.com" "gender" "male" "ip_address" "43.196.144.0" "country" "Argentina" "country_code" "AR" "city" "Ancasti" "longitude" "-64.1251893" "latitude" "-31.4397154" "last_login" "1581185624" +HSET "user:2659" "first_name" "Roch" "last_name" "Andreev" "email" "randreevia@wired.com" "gender" "female" "ip_address" "56.87.38.133" "country" "Norway" "country_code" "NO" "city" "Trondheim" "longitude" "10.4024274" "latitude" "63.4400274" "last_login" "1591091435" +HSET "user:2660" "first_name" "Fergus" "last_name" "Salasar" "email" "fsalasarib@myspace.com" "gender" "male" "ip_address" "246.10.85.96" "country" "Indonesia" "country_code" "ID" "city" "Puspajaya" "longitude" "108.0687579" "latitude" "-7.4133512" "last_login" "1579335902" +HSET "user:2661" "first_name" "Drucill" "last_name" "Stidson" "email" "dstidsonic@ftc.gov" "gender" "female" "ip_address" "129.9.225.250" "country" "Philippines" "country_code" "PH" "city" "Ibaan" "longitude" "121.131952" "latitude" "13.816877" "last_login" "1575313358" +HSET "user:2662" "first_name" "Hubey" "last_name" "Kearton" "email" "hkeartonid@hud.gov" "gender" "male" "ip_address" "241.166.170.79" "country" "New Zealand" "country_code" "NZ" "city" "Timaru" "longitude" "171.256569" "latitude" "-44.394663" "last_login" "1599609246" +HSET "user:2663" "first_name" "Guglielmo" "last_name" "Andreia" "email" "gandreiaie@wikispaces.com" "gender" "male" "ip_address" "229.74.210.102" "country" "Yemen" "country_code" "YE" "city" "Ad Dann" "longitude" "45.0186548" "latitude" "12.7854969" "last_login" "1581069132" +HSET "user:2664" "first_name" "Justis" "last_name" "Jerrim" "email" "jjerrimif@alibaba.com" "gender" "male" "ip_address" "33.99.151.200" "country" "China" "country_code" "CN" "city" "Shanhou" "longitude" "116.681972" "latitude" "23.354091" "last_login" "1584195700" +HSET "user:2665" "first_name" "Della" "last_name" "Kimbrough" "email" "dkimbroughig@noaa.gov" "gender" "female" "ip_address" "156.46.59.203" "country" "Honduras" "country_code" "HN" "city" "El Agua Dulcita" "longitude" "-87.7480377" "latitude" "14.6901945" "last_login" "1583717879" +HSET "user:2666" "first_name" "Townsend" "last_name" "Lomis" "email" "tlomisih@bigcartel.com" "gender" "male" "ip_address" "61.38.39.195" "country" "China" "country_code" "CN" "city" "Fu’an" "longitude" "119.647769" "latitude" "27.088049" "last_login" "1572324273" +HSET "user:2667" "first_name" "Natale" "last_name" "Casbon" "email" "ncasbonii@nature.com" "gender" "male" "ip_address" "129.55.76.57" "country" "Brazil" "country_code" "BR" "city" "Pereira Barreto" "longitude" "-51.1110523" "latitude" "-20.6436652" "last_login" "1572471979" +HSET "user:2668" "first_name" "Lorry" "last_name" "Troop" "email" "ltroopij@reddit.com" "gender" "male" "ip_address" "242.106.5.118" "country" "Japan" "country_code" "JP" "city" "Kōnan" "longitude" "139.7425844" "latitude" "35.6290935" "last_login" "1586365654" +HSET "user:2669" "first_name" "Jermayne" "last_name" "McCambrois" "email" "jmccambroisik@chronoengine.com" "gender" "male" "ip_address" "58.241.19.47" "country" "Greece" "country_code" "GR" "city" "Lávara" "longitude" "26.38509" "latitude" "41.2699615" "last_login" "1588283017" +HSET "user:2670" "first_name" "Rosalyn" "last_name" "Boddington" "email" "rboddingtonil@miitbeian.gov.cn" "gender" "female" "ip_address" "149.156.171.196" "country" "China" "country_code" "CN" "city" "Nanjie" "longitude" "100.7492159" "latitude" "26.6849798" "last_login" "1569309103" +HSET "user:2671" "first_name" "Hildy" "last_name" "Cone" "email" "hconeim@arizona.edu" "gender" "female" "ip_address" "195.175.110.106" "country" "Japan" "country_code" "JP" "city" "Gosen" "longitude" "139.1650556" "latitude" "37.7525244" "last_login" "1588869114" +HSET "user:2672" "first_name" "Neale" "last_name" "McGenn" "email" "nmcgennin@wufoo.com" "gender" "male" "ip_address" "129.62.127.48" "country" "Russia" "country_code" "RU" "city" "Zyukayka" "longitude" "54.707343" "latitude" "58.2084997" "last_login" "1583950726" +HSET "user:2673" "first_name" "Maxine" "last_name" "Durno" "email" "mdurnoio@altervista.org" "gender" "female" "ip_address" "94.56.14.226" "country" "Poland" "country_code" "PL" "city" "Gwoźnica Górna" "longitude" "21.9974055" "latitude" "49.8259726" "last_login" "1569999975" +HSET "user:2674" "first_name" "Arlen" "last_name" "Watkiss" "email" "awatkissip@gizmodo.com" "gender" "male" "ip_address" "114.205.135.90" "country" "China" "country_code" "CN" "city" "Kax" "longitude" "-117.7228641" "latitude" "34.003135" "last_login" "1590368258" +HSET "user:2675" "first_name" "Bob" "last_name" "Buxy" "email" "bbuxyiq@mapy.cz" "gender" "male" "ip_address" "160.130.113.115" "country" "Indonesia" "country_code" "ID" "city" "Gandong" "longitude" "111.5498112" "latitude" "-7.3966297" "last_login" "1573846234" +HSET "user:2676" "first_name" "Cody" "last_name" "Sandes" "email" "csandesir@freewebs.com" "gender" "male" "ip_address" "4.126.82.122" "country" "China" "country_code" "CN" "city" "Ganshui" "longitude" "106.720976" "latitude" "28.739865" "last_login" "1599392525" +HSET "user:2677" "first_name" "Lory" "last_name" "Grogona" "email" "lgrogonais@dailymotion.com" "gender" "female" "ip_address" "89.106.38.121" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Uvira" "longitude" "29.1448793" "latitude" "-3.3728836" "last_login" "1582111078" +HSET "user:2678" "first_name" "Clair" "last_name" "Barnwille" "email" "cbarnwilleit@infoseek.co.jp" "gender" "male" "ip_address" "123.255.9.241" "country" "China" "country_code" "CN" "city" "Yanmen" "longitude" "112.865891" "latitude" "39.193073" "last_login" "1584612393" +HSET "user:2679" "first_name" "Ellie" "last_name" "Raynor" "email" "eraynoriu@so-net.ne.jp" "gender" "female" "ip_address" "239.40.160.66" "country" "Greece" "country_code" "GR" "city" "Géfyra" "longitude" "22.6920826" "latitude" "40.7325414" "last_login" "1584658229" +HSET "user:2680" "first_name" "Gwenny" "last_name" "Gaukrodge" "email" "ggaukrodgeiv@pcworld.com" "gender" "female" "ip_address" "234.246.134.212" "country" "Sweden" "country_code" "SE" "city" "Nora" "longitude" "14.5678141" "latitude" "59.3453304" "last_login" "1594816039" +HSET "user:2681" "first_name" "Bendix" "last_name" "Lytton" "email" "blyttoniw@freewebs.com" "gender" "male" "ip_address" "37.155.44.208" "country" "Philippines" "country_code" "PH" "city" "Ramos" "longitude" "120.6208167" "latitude" "15.6883639" "last_login" "1591056051" +HSET "user:2682" "first_name" "Olivia" "last_name" "Reace" "email" "oreaceix@meetup.com" "gender" "female" "ip_address" "2.214.145.89" "country" "Finland" "country_code" "FI" "city" "Kannus" "longitude" "23.9240625" "latitude" "63.8898032" "last_login" "1569522996" +HSET "user:2683" "first_name" "Manny" "last_name" "Henriet" "email" "mhenrietiy@yahoo.com" "gender" "male" "ip_address" "132.114.245.73" "country" "Japan" "country_code" "JP" "city" "Okunoya" "longitude" "140.6828565" "latitude" "35.881348" "last_login" "1594479631" +HSET "user:2684" "first_name" "Nicolai" "last_name" "Poser" "email" "nposeriz@smh.com.au" "gender" "male" "ip_address" "167.22.129.222" "country" "Sao Tome and Principe" "country_code" "ST" "city" "São Tomé" "longitude" "6.733343" "latitude" "0.3301924" "last_login" "1586549582" +HSET "user:2685" "first_name" "Tudor" "last_name" "Giraudeau" "email" "tgiraudeauj0@so-net.ne.jp" "gender" "male" "ip_address" "227.32.49.209" "country" "Serbia" "country_code" "RS" "city" "Bor" "longitude" "22.0985086" "latitude" "44.0698918" "last_login" "1597321538" +HSET "user:2686" "first_name" "Jordan" "last_name" "Edel" "email" "jedelj1@home.pl" "gender" "male" "ip_address" "222.214.189.121" "country" "Portugal" "country_code" "PT" "city" "Valença do Douro" "longitude" "-7.5547135" "latitude" "41.1578541" "last_login" "1590958509" +HSET "user:2687" "first_name" "Bernardo" "last_name" "Vickress" "email" "bvickressj2@dmoz.org" "gender" "male" "ip_address" "96.231.114.13" "country" "Indonesia" "country_code" "ID" "city" "Karanggeneng" "longitude" "110.5933862" "latitude" "-7.5173045" "last_login" "1572776686" +HSET "user:2688" "first_name" "Rene" "last_name" "Di Giacomettino" "email" "rdigiacomettinoj3@smh.com.au" "gender" "male" "ip_address" "195.154.178.110" "country" "China" "country_code" "CN" "city" "Zheshan" "longitude" "122.207215" "latitude" "29.985295" "last_login" "1594403863" +HSET "user:2689" "first_name" "Vick" "last_name" "Gandrich" "email" "vgandrichj4@youtube.com" "gender" "male" "ip_address" "255.15.41.106" "country" "Indonesia" "country_code" "ID" "city" "Peukanbada" "longitude" "95.24233" "latitude" "5.5333804" "last_login" "1578963209" +HSET "user:2690" "first_name" "Eli" "last_name" "Spilsbury" "email" "espilsburyj5@cbsnews.com" "gender" "male" "ip_address" "191.180.69.25" "country" "Norway" "country_code" "NO" "city" "Sandefjord" "longitude" "10.2266452" "latitude" "59.130725" "last_login" "1573827258" +HSET "user:2691" "first_name" "Darrell" "last_name" "Ricardet" "email" "dricardetj6@sun.com" "gender" "male" "ip_address" "50.184.73.31" "country" "Tajikistan" "country_code" "TJ" "city" "Khorugh" "longitude" "71.5901986" "latitude" "37.4882943" "last_login" "1579511274" +HSET "user:2692" "first_name" "Krisha" "last_name" "Dunkley" "email" "kdunkleyj7@ca.gov" "gender" "male" "ip_address" "9.115.82.194" "country" "Philippines" "country_code" "PH" "city" "Bagacay" "longitude" "123.9196804" "latitude" "12.9796798" "last_login" "1582234969" +HSET "user:2693" "first_name" "Kleon" "last_name" "Tomei" "email" "ktomeij8@ebay.com" "gender" "male" "ip_address" "139.152.237.99" "country" "Indonesia" "country_code" "ID" "city" "Alanga" "longitude" "104.6937674" "latitude" "-2.9481126" "last_login" "1594497695" +HSET "user:2694" "first_name" "Fergus" "last_name" "Rodrigues" "email" "frodriguesj9@comcast.net" "gender" "male" "ip_address" "191.79.10.44" "country" "Thailand" "country_code" "TH" "city" "Don Mueang" "longitude" "100.5635071" "latitude" "13.8513777" "last_login" "1580718570" +HSET "user:2695" "first_name" "Christiane" "last_name" "Thoresby" "email" "cthoresbyja@google.pl" "gender" "female" "ip_address" "247.168.138.196" "country" "Japan" "country_code" "JP" "city" "Iwai" "longitude" "133.8964708" "latitude" "34.6718873" "last_login" "1585359772" +HSET "user:2696" "first_name" "Giralda" "last_name" "Bahde" "email" "gbahdejb@about.me" "gender" "female" "ip_address" "181.59.8.213" "country" "Brazil" "country_code" "BR" "city" "Castelo" "longitude" "-41.203524" "latitude" "-20.6037462" "last_login" "1568868679" +HSET "user:2697" "first_name" "Elsie" "last_name" "Stoffler" "email" "estofflerjc@ning.com" "gender" "female" "ip_address" "133.252.62.213" "country" "Japan" "country_code" "JP" "city" "Muroto-misakicho" "longitude" "134.1641616" "latitude" "33.2680092" "last_login" "1586140595" +HSET "user:2698" "first_name" "Dasie" "last_name" "Greeding" "email" "dgreedingjd@blinklist.com" "gender" "female" "ip_address" "90.237.160.18" "country" "Honduras" "country_code" "HN" "city" "San Nicolás" "longitude" "-88.3263603" "latitude" "14.9415552" "last_login" "1590601740" +HSET "user:2699" "first_name" "Marya" "last_name" "Keyes" "email" "mkeyesje@hao123.com" "gender" "female" "ip_address" "29.28.97.44" "country" "Canada" "country_code" "CA" "city" "Kugluktuk" "longitude" "-115.09649" "latitude" "67.82743" "last_login" "1572898549" +HSET "user:2700" "first_name" "Colette" "last_name" "Caig" "email" "ccaigjf@liveinternet.ru" "gender" "female" "ip_address" "186.66.18.110" "country" "China" "country_code" "CN" "city" "Shengci" "longitude" "105.700019" "latitude" "28.574298" "last_login" "1598504898" +HSET "user:2701" "first_name" "Yoshiko" "last_name" "Gaiford" "email" "ygaifordjg@google.co.jp" "gender" "female" "ip_address" "2.30.125.243" "country" "Argentina" "country_code" "AR" "city" "Salta" "longitude" "-65.4128686" "latitude" "-24.7869452" "last_login" "1580158137" +HSET "user:2702" "first_name" "Ferrel" "last_name" "Bulfit" "email" "fbulfitjh@meetup.com" "gender" "male" "ip_address" "196.1.185.61" "country" "China" "country_code" "CN" "city" "Zhongyuanlu" "longitude" "110.9938854" "latitude" "37.9400581" "last_login" "1577798162" +HSET "user:2703" "first_name" "Walker" "last_name" "Samwaye" "email" "wsamwayeji@freewebs.com" "gender" "male" "ip_address" "92.155.126.119" "country" "Estonia" "country_code" "EE" "city" "Kilingi-Nõmme" "longitude" "24.9513595" "latitude" "58.1483629" "last_login" "1586964697" +HSET "user:2704" "first_name" "Hans" "last_name" "Sillick" "email" "hsillickjj@facebook.com" "gender" "male" "ip_address" "24.130.58.103" "country" "Azerbaijan" "country_code" "AZ" "city" "Quba" "longitude" "48.5260928" "latitude" "41.3643024" "last_login" "1577911551" +HSET "user:2705" "first_name" "Russ" "last_name" "Hynard" "email" "rhynardjk@163.com" "gender" "male" "ip_address" "217.240.155.178" "country" "China" "country_code" "CN" "city" "Ekou" "longitude" "113.200971" "latitude" "39.134282" "last_login" "1577455509" +HSET "user:2706" "first_name" "Rivkah" "last_name" "Manifield" "email" "rmanifieldjl@barnesandnoble.com" "gender" "female" "ip_address" "120.249.230.137" "country" "Indonesia" "country_code" "ID" "city" "Pretana" "longitude" "119.6441" "latitude" "-9.6161" "last_login" "1571199022" +HSET "user:2707" "first_name" "Hunt" "last_name" "Brewse" "email" "hbrewsejm@parallels.com" "gender" "male" "ip_address" "108.161.73.248" "country" "Belarus" "country_code" "BY" "city" "Byahoml’" "longitude" "28.0605963" "latitude" "54.7318321" "last_login" "1588854039" +HSET "user:2708" "first_name" "Eugen" "last_name" "Roughan" "email" "eroughanjn@ehow.com" "gender" "male" "ip_address" "99.126.219.198" "country" "Mexico" "country_code" "MX" "city" "Solidaridad" "longitude" "-87.0696273" "latitude" "20.6523028" "last_login" "1593572617" +HSET "user:2709" "first_name" "Judie" "last_name" "Mantrip" "email" "jmantripjo@w3.org" "gender" "female" "ip_address" "193.111.10.218" "country" "Philippines" "country_code" "PH" "city" "Del Pilar" "longitude" "120.9926908" "latitude" "14.5005732" "last_login" "1583003920" +HSET "user:2710" "first_name" "Corbin" "last_name" "Jarrell" "email" "cjarrelljp@redcross.org" "gender" "male" "ip_address" "227.124.138.97" "country" "Russia" "country_code" "RU" "city" "Mar’ina Roshcha" "longitude" "44.0036677" "latitude" "56.2835999" "last_login" "1587330702" +HSET "user:2711" "first_name" "Berthe" "last_name" "Marquess" "email" "bmarquessjq@mozilla.org" "gender" "female" "ip_address" "158.197.196.210" "country" "Brazil" "country_code" "BR" "city" "Ponte Nova" "longitude" "-42.8982244" "latitude" "-20.4115862" "last_login" "1581405775" +HSET "user:2712" "first_name" "Vincenz" "last_name" "Delaney" "email" "vdelaneyjr@si.edu" "gender" "male" "ip_address" "187.222.46.34" "country" "Nicaragua" "country_code" "NI" "city" "Quezalguaque" "longitude" "-86.9035511" "latitude" "12.5077895" "last_login" "1593567806" +HSET "user:2713" "first_name" "Ora" "last_name" "Penrice" "email" "openricejs@t.co" "gender" "female" "ip_address" "152.54.225.124" "country" "Saudi Arabia" "country_code" "SA" "city" "Mizhirah" "longitude" "42.7344873" "latitude" "16.8263127" "last_login" "1593313037" +HSET "user:2714" "first_name" "Mariquilla" "last_name" "Clevely" "email" "mclevelyjt@arstechnica.com" "gender" "female" "ip_address" "29.53.33.243" "country" "Indonesia" "country_code" "ID" "city" "Grugul" "longitude" "106.7883416" "latitude" "-6.162275" "last_login" "1578860538" +HSET "user:2715" "first_name" "Alena" "last_name" "Lindop" "email" "alindopju@de.vu" "gender" "female" "ip_address" "46.214.251.218" "country" "China" "country_code" "CN" "city" "Longshe" "longitude" "110.011238" "latitude" "25.797931" "last_login" "1593120581" +HSET "user:2716" "first_name" "Julie" "last_name" "O'Donegan" "email" "jodoneganjv@yolasite.com" "gender" "female" "ip_address" "27.203.210.13" "country" "Croatia" "country_code" "HR" "city" "Semeljci" "longitude" "18.5422141" "latitude" "45.3613644" "last_login" "1590259058" +HSET "user:2717" "first_name" "Kalil" "last_name" "Thornewill" "email" "kthornewilljw@wisc.edu" "gender" "male" "ip_address" "83.238.235.207" "country" "Finland" "country_code" "FI" "city" "Ylöjärvi" "longitude" "23.5960975" "latitude" "61.549558" "last_login" "1586342858" +HSET "user:2718" "first_name" "Rock" "last_name" "McAlindon" "email" "rmcalindonjx@hhs.gov" "gender" "male" "ip_address" "54.84.87.116" "country" "Peru" "country_code" "PE" "city" "Santa" "longitude" "-78.6141851" "latitude" "-8.9877356" "last_login" "1573074870" +HSET "user:2719" "first_name" "Daisey" "last_name" "Buckingham" "email" "dbuckinghamjy@hibu.com" "gender" "female" "ip_address" "49.89.101.36" "country" "Brazil" "country_code" "BR" "city" "Quixeramobim" "longitude" "-39.4035876" "latitude" "-5.2915408" "last_login" "1570764978" +HSET "user:2720" "first_name" "Vera" "last_name" "Vanyashkin" "email" "vvanyashkinjz@ezinearticles.com" "gender" "female" "ip_address" "128.78.243.43" "country" "Ecuador" "country_code" "EC" "city" "Bahía de Caráquez" "longitude" "-80.4273644" "latitude" "-0.6186619" "last_login" "1588436555" +HSET "user:2721" "first_name" "Edin" "last_name" "Downes" "email" "edownesk0@uiuc.edu" "gender" "female" "ip_address" "146.124.205.95" "country" "Indonesia" "country_code" "ID" "city" "Sopla" "longitude" "108.6747" "latitude" "-7.5208" "last_login" "1571758957" +HSET "user:2722" "first_name" "Sal" "last_name" "Horlock" "email" "shorlockk1@mapy.cz" "gender" "female" "ip_address" "122.111.198.58" "country" "Colombia" "country_code" "CO" "city" "Samacá" "longitude" "-73.486159" "latitude" "5.492342" "last_login" "1576220028" +HSET "user:2723" "first_name" "Gabriellia" "last_name" "Baudain" "email" "gbaudaink2@eventbrite.com" "gender" "female" "ip_address" "199.141.88.89" "country" "Indonesia" "country_code" "ID" "city" "Jatirejo" "longitude" "112.4172256" "latitude" "-7.617735" "last_login" "1587225294" +HSET "user:2724" "first_name" "Rina" "last_name" "Ghiron" "email" "rghironk3@weebly.com" "gender" "female" "ip_address" "26.21.80.149" "country" "Czech Republic" "country_code" "CZ" "city" "Bechlín" "longitude" "14.3468802" "latitude" "50.4216642" "last_login" "1587525470" +HSET "user:2725" "first_name" "Bridie" "last_name" "Giacobbo" "email" "bgiacobbok4@bloomberg.com" "gender" "female" "ip_address" "185.206.210.131" "country" "Brazil" "country_code" "BR" "city" "Pantanal" "longitude" "-48.5162223" "latitude" "-27.6146187" "last_login" "1597444229" +HSET "user:2726" "first_name" "Mira" "last_name" "Furneaux" "email" "mfurneauxk5@delicious.com" "gender" "female" "ip_address" "31.98.214.163" "country" "China" "country_code" "CN" "city" "Hongtang" "longitude" "114.157935" "latitude" "22.280436" "last_login" "1581151854" +HSET "user:2727" "first_name" "Paulette" "last_name" "Larkby" "email" "plarkbyk6@businessweek.com" "gender" "female" "ip_address" "61.87.168.32" "country" "Nigeria" "country_code" "NG" "city" "Pankshin" "longitude" "9.4311572" "latitude" "9.3278585" "last_login" "1594827220" +HSET "user:2728" "first_name" "Candis" "last_name" "Vinick" "email" "cvinickk7@posterous.com" "gender" "female" "ip_address" "181.207.166.209" "country" "Malaysia" "country_code" "MY" "city" "Labuan" "longitude" "115.2384663" "latitude" "5.2805802" "last_login" "1579934628" +HSET "user:2729" "first_name" "Jeffie" "last_name" "Wint" "email" "jwintk8@discovery.com" "gender" "male" "ip_address" "104.111.42.8" "country" "Czech Republic" "country_code" "CZ" "city" "Dalovice" "longitude" "12.905216" "latitude" "50.2464907" "last_login" "1597912017" +HSET "user:2730" "first_name" "Pamelina" "last_name" "Slane" "email" "pslanek9@etsy.com" "gender" "female" "ip_address" "175.88.51.43" "country" "Brazil" "country_code" "BR" "city" "Queimados" "longitude" "-43.5522256" "latitude" "-22.7106685" "last_login" "1595853580" +HSET "user:2731" "first_name" "Yelena" "last_name" "Mucklo" "email" "ymuckloka@123-reg.co.uk" "gender" "female" "ip_address" "232.104.122.21" "country" "Argentina" "country_code" "AR" "city" "Loreto" "longitude" "-60.6550859" "latitude" "-32.9761161" "last_login" "1584729839" +HSET "user:2732" "first_name" "Katee" "last_name" "Aberkirdo" "email" "kaberkirdokb@washington.edu" "gender" "female" "ip_address" "85.80.218.202" "country" "France" "country_code" "FR" "city" "Montauban" "longitude" "1.3585474" "latitude" "44.0179842" "last_login" "1582832674" +HSET "user:2733" "first_name" "Avram" "last_name" "Simonelli" "email" "asimonellikc@eventbrite.com" "gender" "male" "ip_address" "182.44.77.185" "country" "Portugal" "country_code" "PT" "city" "Tijão" "longitude" "-7.942457" "latitude" "41.346515" "last_login" "1598475628" +HSET "user:2734" "first_name" "Ulric" "last_name" "Housden" "email" "uhousdenkd@github.com" "gender" "male" "ip_address" "10.242.140.61" "country" "Argentina" "country_code" "AR" "city" "Arroyo Seco" "longitude" "-59.0746886" "latitude" "-37.3130297" "last_login" "1578465221" +HSET "user:2735" "first_name" "Thalia" "last_name" "Girardey" "email" "tgirardeyke@fotki.com" "gender" "female" "ip_address" "149.48.116.51" "country" "El Salvador" "country_code" "SV" "city" "Guaymango" "longitude" "-89.8452348" "latitude" "13.748419" "last_login" "1572514698" +HSET "user:2736" "first_name" "Abigale" "last_name" "Sickert" "email" "asickertkf@nih.gov" "gender" "female" "ip_address" "214.43.24.6" "country" "Indonesia" "country_code" "ID" "city" "Pasirhuni" "longitude" "107.5771444" "latitude" "-7.0970638" "last_login" "1578111165" +HSET "user:2737" "first_name" "Konstanze" "last_name" "Grodden" "email" "kgroddenkg@blogger.com" "gender" "female" "ip_address" "96.223.73.40" "country" "South Africa" "country_code" "ZA" "city" "Bultfontein" "longitude" "26.1477598" "latitude" "-28.2750463" "last_login" "1570281711" +HSET "user:2738" "first_name" "Clayton" "last_name" "Gosney" "email" "cgosneykh@wp.com" "gender" "male" "ip_address" "22.69.127.243" "country" "Denmark" "country_code" "DK" "city" "København" "longitude" "12.58084" "latitude" "55.6819664" "last_login" "1594269084" +HSET "user:2739" "first_name" "Glynis" "last_name" "Cleverly" "email" "gcleverlyki@printfriendly.com" "gender" "female" "ip_address" "112.94.49.99" "country" "France" "country_code" "FR" "city" "Paris 12" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1598281385" +HSET "user:2740" "first_name" "Ciro" "last_name" "Capponer" "email" "ccapponerkj@vkontakte.ru" "gender" "male" "ip_address" "144.72.231.177" "country" "Armenia" "country_code" "AM" "city" "Kamo" "longitude" "43.9516138" "latitude" "40.8258113" "last_login" "1583273619" +HSET "user:2741" "first_name" "Shadow" "last_name" "Farquar" "email" "sfarquarkk@networkadvertising.org" "gender" "male" "ip_address" "95.208.68.101" "country" "United States" "country_code" "US" "city" "Louisville" "longitude" "-85.6794434" "latitude" "38.2214782" "last_login" "1568897147" +HSET "user:2742" "first_name" "Sholom" "last_name" "Beadel" "email" "sbeadelkl@cocolog-nifty.com" "gender" "male" "ip_address" "93.206.151.69" "country" "Philippines" "country_code" "PH" "city" "Tambac" "longitude" "120.3542849" "latitude" "16.0464514" "last_login" "1572732343" +HSET "user:2743" "first_name" "Roslyn" "last_name" "Mannagh" "email" "rmannaghkm@feedburner.com" "gender" "female" "ip_address" "162.165.251.244" "country" "Philippines" "country_code" "PH" "city" "Maño" "longitude" "123.9418261" "latitude" "11.042265" "last_login" "1595525065" +HSET "user:2744" "first_name" "Clarey" "last_name" "Turland" "email" "cturlandkn@goo.gl" "gender" "female" "ip_address" "94.175.173.163" "country" "Indonesia" "country_code" "ID" "city" "Fatuulan" "longitude" "124.6248039" "latitude" "-9.9097428" "last_login" "1582250277" +HSET "user:2745" "first_name" "Crissy" "last_name" "Jordanson" "email" "cjordansonko@artisteer.com" "gender" "female" "ip_address" "42.76.240.42" "country" "China" "country_code" "CN" "city" "Zhouyuan" "longitude" "120.434071" "latitude" "37.355469" "last_login" "1595638028" +HSET "user:2746" "first_name" "Cord" "last_name" "Killoran" "email" "ckillorankp@usnews.com" "gender" "male" "ip_address" "222.23.65.164" "country" "Dominican Republic" "country_code" "DO" "city" "Monte Plata" "longitude" "-69.7403955" "latitude" "18.8239558" "last_login" "1581007317" +HSET "user:2747" "first_name" "Gibby" "last_name" "Gommowe" "email" "ggommowekq@hc360.com" "gender" "male" "ip_address" "97.69.220.63" "country" "China" "country_code" "CN" "city" "Qulai" "longitude" "-117.7226392" "latitude" "34.0035419" "last_login" "1592007594" +HSET "user:2748" "first_name" "Roma" "last_name" "Hatton" "email" "rhattonkr@businessinsider.com" "gender" "male" "ip_address" "92.227.137.219" "country" "Macedonia" "country_code" "MK" "city" "Gorno Orizari" "longitude" "21.3607894" "latitude" "41.0423985" "last_login" "1579150042" +HSET "user:2749" "first_name" "Thorn" "last_name" "Rollin" "email" "trollinks@amazon.co.uk" "gender" "male" "ip_address" "92.145.77.243" "country" "Russia" "country_code" "RU" "city" "Novopokrovka" "longitude" "134.49807" "latitude" "45.8512879" "last_login" "1585380667" +HSET "user:2750" "first_name" "Murvyn" "last_name" "Jorio" "email" "mjoriokt@odnoklassniki.ru" "gender" "male" "ip_address" "58.95.166.2" "country" "Czech Republic" "country_code" "CZ" "city" "Strání" "longitude" "17.6961852" "latitude" "48.9000154" "last_login" "1578025891" +HSET "user:2751" "first_name" "Joan" "last_name" "Barnwille" "email" "jbarnwilleku@huffingtonpost.com" "gender" "female" "ip_address" "179.99.175.15" "country" "Indonesia" "country_code" "ID" "city" "Pojok" "longitude" "111.9790773" "latitude" "-7.8169756" "last_login" "1581393347" +HSET "user:2752" "first_name" "Dorey" "last_name" "Jentgens" "email" "djentgenskv@scribd.com" "gender" "female" "ip_address" "124.23.243.184" "country" "Sweden" "country_code" "SE" "city" "Valbo" "longitude" "17.0082511" "latitude" "60.6430311" "last_login" "1597009659" +HSET "user:2753" "first_name" "Elinor" "last_name" "Glading" "email" "egladingkw@sakura.ne.jp" "gender" "female" "ip_address" "186.107.93.206" "country" "China" "country_code" "CN" "city" "Chang’an" "longitude" "108.906994" "latitude" "34.158997" "last_login" "1589012380" +HSET "user:2754" "first_name" "Burtie" "last_name" "Ten Broek" "email" "btenbroekkx@go.com" "gender" "male" "ip_address" "96.22.37.124" "country" "South Africa" "country_code" "ZA" "city" "Kuruman" "longitude" "18.666796" "latitude" "-33.9905526" "last_login" "1575206028" +HSET "user:2755" "first_name" "Murray" "last_name" "Turpin" "email" "mturpinky@g.co" "gender" "male" "ip_address" "224.203.205.146" "country" "China" "country_code" "CN" "city" "Anyuan" "longitude" "113.870729" "latitude" "27.615202" "last_login" "1589949217" +HSET "user:2756" "first_name" "Joycelin" "last_name" "Petrus" "email" "jpetruskz@ocn.ne.jp" "gender" "female" "ip_address" "66.123.66.7" "country" "Brazil" "country_code" "BR" "city" "Laranjeiras do Sul" "longitude" "-52.4134746" "latitude" "-25.4079504" "last_login" "1598389457" +HSET "user:2757" "first_name" "Abran" "last_name" "Dyott" "email" "adyottl0@domainmarket.com" "gender" "male" "ip_address" "202.155.241.234" "country" "Argentina" "country_code" "AR" "city" "Pico Truncado" "longitude" "-67.9440112" "latitude" "-46.805871" "last_login" "1587669035" +HSET "user:2758" "first_name" "Meagan" "last_name" "Holtham" "email" "mholthaml1@discuz.net" "gender" "female" "ip_address" "1.236.107.129" "country" "Iran" "country_code" "IR" "city" "Borūjerd" "longitude" "48.767033" "latitude" "33.8941993" "last_login" "1572128608" +HSET "user:2759" "first_name" "Ewell" "last_name" "Oblein" "email" "eobleinl2@oakley.com" "gender" "male" "ip_address" "76.151.62.143" "country" "Cameroon" "country_code" "CM" "city" "Wum" "longitude" "10.0751331" "latitude" "6.3884374" "last_login" "1591439801" +HSET "user:2760" "first_name" "Gasper" "last_name" "Heinish" "email" "gheinishl3@dedecms.com" "gender" "male" "ip_address" "164.18.68.103" "country" "Portugal" "country_code" "PT" "city" "Calvário" "longitude" "-8.0907412" "latitude" "41.5129877" "last_login" "1595484552" +HSET "user:2761" "first_name" "Minnaminnie" "last_name" "Vella" "email" "mvellal4@bbb.org" "gender" "female" "ip_address" "246.13.56.90" "country" "China" "country_code" "CN" "city" "Xiaoshi" "longitude" "124.120286" "latitude" "41.305838" "last_login" "1588683549" +HSET "user:2762" "first_name" "Dorene" "last_name" "L' Anglois" "email" "dlangloisl5@list-manage.com" "gender" "female" "ip_address" "120.172.165.151" "country" "Portugal" "country_code" "PT" "city" "Lapas" "longitude" "-8.555621" "latitude" "39.5068579" "last_login" "1590257206" +HSET "user:2763" "first_name" "Regan" "last_name" "McVanamy" "email" "rmcvanamyl6@arstechnica.com" "gender" "male" "ip_address" "115.136.183.159" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Kambove" "longitude" "26.5963713" "latitude" "-10.8778699" "last_login" "1591880870" +HSET "user:2764" "first_name" "Tessy" "last_name" "Kegg" "email" "tkeggl7@lulu.com" "gender" "female" "ip_address" "225.104.224.132" "country" "China" "country_code" "CN" "city" "Qishui" "longitude" "109.763659" "latitude" "20.762634" "last_login" "1587342052" +HSET "user:2765" "first_name" "Skip" "last_name" "Fosse" "email" "sfossel8@indiegogo.com" "gender" "male" "ip_address" "212.247.191.176" "country" "Argentina" "country_code" "AR" "city" "Salto" "longitude" "-58.4984714" "latitude" "-34.5500929" "last_login" "1586954550" +HSET "user:2766" "first_name" "Nana" "last_name" "Wragg" "email" "nwraggl9@geocities.com" "gender" "female" "ip_address" "12.231.20.229" "country" "Czech Republic" "country_code" "CZ" "city" "Radnice" "longitude" "16.8754183" "latitude" "49.7245218" "last_login" "1584241573" +HSET "user:2767" "first_name" "Harwell" "last_name" "Gomersal" "email" "hgomersalla@youtube.com" "gender" "male" "ip_address" "248.236.145.130" "country" "China" "country_code" "CN" "city" "Bailingnao" "longitude" "110.2374621" "latitude" "41.2867601" "last_login" "1574281406" +HSET "user:2768" "first_name" "Efrem" "last_name" "Coxhell" "email" "ecoxhelllb@noaa.gov" "gender" "male" "ip_address" "57.0.127.202" "country" "China" "country_code" "CN" "city" "Xincheng" "longitude" "108.960747" "latitude" "34.26645" "last_login" "1600150652" +HSET "user:2769" "first_name" "Merwin" "last_name" "Entissle" "email" "mentisslelc@si.edu" "gender" "male" "ip_address" "236.178.234.226" "country" "China" "country_code" "CN" "city" "Fenkeng" "longitude" "111.430057" "latitude" "22.410005" "last_login" "1577063843" +HSET "user:2770" "first_name" "Addi" "last_name" "Jaffra" "email" "ajaffrald@cnn.com" "gender" "female" "ip_address" "3.57.228.75" "country" "Russia" "country_code" "RU" "city" "Grazhdanskoye" "longitude" "135.0631263" "latitude" "48.4935627" "last_login" "1580591496" +HSET "user:2771" "first_name" "Arlyne" "last_name" "Pigott" "email" "apigottle@jugem.jp" "gender" "female" "ip_address" "4.237.80.174" "country" "China" "country_code" "CN" "city" "Xingcheng" "longitude" "120.756479" "latitude" "40.609731" "last_login" "1575729489" +HSET "user:2772" "first_name" "Minne" "last_name" "Tobias" "email" "mtobiaslf@unicef.org" "gender" "female" "ip_address" "103.130.180.212" "country" "China" "country_code" "CN" "city" "Luci" "longitude" "109.386371" "latitude" "26.853097" "last_login" "1583633240" +HSET "user:2773" "first_name" "Erasmus" "last_name" "Rapa" "email" "erapalg@tiny.cc" "gender" "male" "ip_address" "1.115.23.157" "country" "Indonesia" "country_code" "ID" "city" "Koroyo" "longitude" "106.510583" "latitude" "-6.212159" "last_login" "1598967816" +HSET "user:2774" "first_name" "Allix" "last_name" "Faulconbridge" "email" "afaulconbridgelh@ihg.com" "gender" "female" "ip_address" "55.241.245.248" "country" "Greece" "country_code" "GR" "city" "Kolchikón" "longitude" "23.1342184" "latitude" "40.7576842" "last_login" "1581121984" +HSET "user:2775" "first_name" "Ernst" "last_name" "Adamek" "email" "eadamekli@theatlantic.com" "gender" "male" "ip_address" "146.212.237.107" "country" "Indonesia" "country_code" "ID" "city" "Apuri" "longitude" "124.3654402" "latitude" "-8.3162857" "last_login" "1591319479" +HSET "user:2776" "first_name" "Farica" "last_name" "Bewshaw" "email" "fbewshawlj@meetup.com" "gender" "female" "ip_address" "120.28.81.21" "country" "Portugal" "country_code" "PT" "city" "Sobral da Adiça" "longitude" "-7.2626804" "latitude" "38.0206378" "last_login" "1588316332" +HSET "user:2777" "first_name" "Wilton" "last_name" "Mc Cahey" "email" "wmccaheylk@guardian.co.uk" "gender" "male" "ip_address" "59.13.158.46" "country" "Indonesia" "country_code" "ID" "city" "Mursaba" "longitude" "112.8592" "latitude" "-6.9717" "last_login" "1599339517" +HSET "user:2778" "first_name" "Evelin" "last_name" "Lathleiffure" "email" "elathleiffurell@linkedin.com" "gender" "male" "ip_address" "174.221.154.162" "country" "Ivory Coast" "country_code" "CI" "city" "Agboville" "longitude" "-4.2230836" "latitude" "5.9354963" "last_login" "1592597233" +HSET "user:2779" "first_name" "Arlana" "last_name" "Gillian" "email" "agillianlm@ca.gov" "gender" "female" "ip_address" "62.25.95.239" "country" "Montenegro" "country_code" "ME" "city" "Rožaje" "longitude" "20.1670628" "latitude" "42.8408389" "last_login" "1585069535" +HSET "user:2780" "first_name" "Ced" "last_name" "Rhoades" "email" "crhoadesln@gravatar.com" "gender" "male" "ip_address" "64.73.85.103" "country" "Malaysia" "country_code" "MY" "city" "Alor Setar" "longitude" "100.3919033" "latitude" "6.1282298" "last_login" "1583676428" +HSET "user:2781" "first_name" "Betsey" "last_name" "Wickins" "email" "bwickinslo@weather.com" "gender" "female" "ip_address" "220.150.11.145" "country" "Taiwan" "country_code" "TW" "city" "Miaoli" "longitude" "120.8214265" "latitude" "24.560159" "last_login" "1575073717" +HSET "user:2782" "first_name" "Salomo" "last_name" "Bowmer" "email" "sbowmerlp@php.net" "gender" "male" "ip_address" "117.85.180.128" "country" "Republic of the Congo" "country_code" "CG" "city" "Ouésso" "longitude" "16.0463837" "latitude" "1.6154718" "last_login" "1587683807" +HSET "user:2783" "first_name" "Lemmy" "last_name" "Faughey" "email" "lfaugheylq@bbb.org" "gender" "male" "ip_address" "28.110.13.88" "country" "Indonesia" "country_code" "ID" "city" "Cimuncang" "longitude" "106.1610343" "latitude" "-6.1130137" "last_login" "1578019813" +HSET "user:2784" "first_name" "Fulton" "last_name" "Hargey" "email" "fhargeylr@yellowpages.com" "gender" "male" "ip_address" "141.223.116.10" "country" "Finland" "country_code" "FI" "city" "Sievi" "longitude" "24.5144506" "latitude" "63.9060413" "last_login" "1597970120" +HSET "user:2785" "first_name" "Janna" "last_name" "Adrianello" "email" "jadrianellols@mac.com" "gender" "female" "ip_address" "71.204.118.241" "country" "Indonesia" "country_code" "ID" "city" "Dukoh" "longitude" "96.9309771" "latitude" "3.6085862" "last_login" "1588745377" +HSET "user:2786" "first_name" "Kendell" "last_name" "Mynard" "email" "kmynardlt@cyberchimps.com" "gender" "male" "ip_address" "8.132.16.52" "country" "Palestinian Territory" "country_code" "PS" "city" "Dayr Sāmit" "longitude" "34.97442" "latitude" "31.52057" "last_login" "1588109004" +HSET "user:2787" "first_name" "Howey" "last_name" "Kopisch" "email" "hkopischlu@utexas.edu" "gender" "male" "ip_address" "12.203.45.195" "country" "Marshall Islands" "country_code" "MH" "city" "Lae" "longitude" "-76.033479" "latitude" "44.256487" "last_login" "1585716935" +HSET "user:2788" "first_name" "Amby" "last_name" "Wadlow" "email" "awadlowlv@umich.edu" "gender" "male" "ip_address" "192.43.40.175" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1596392045" +HSET "user:2789" "first_name" "Matti" "last_name" "Richardin" "email" "mrichardinlw@phpbb.com" "gender" "female" "ip_address" "71.169.43.52" "country" "Ukraine" "country_code" "UA" "city" "Karlivka" "longitude" "35.1200067" "latitude" "49.4576263" "last_login" "1588438442" +HSET "user:2790" "first_name" "Germain" "last_name" "Klassman" "email" "gklassmanlx@elegantthemes.com" "gender" "male" "ip_address" "109.75.6.208" "country" "China" "country_code" "CN" "city" "Bei’an" "longitude" "126.481867" "latitude" "48.239135" "last_login" "1588899506" +HSET "user:2791" "first_name" "Duff" "last_name" "Osgardby" "email" "dosgardbyly@vistaprint.com" "gender" "male" "ip_address" "98.198.42.218" "country" "Sweden" "country_code" "SE" "city" "Lerum" "longitude" "12.2632093" "latitude" "57.7824551" "last_login" "1573493236" +HSET "user:2792" "first_name" "Keelby" "last_name" "Sturm" "email" "ksturmlz@businessweek.com" "gender" "male" "ip_address" "253.225.51.236" "country" "Dominican Republic" "country_code" "DO" "city" "Salvaleón de Higüey" "longitude" "-68.6978423" "latitude" "18.6205659" "last_login" "1583702953" +HSET "user:2793" "first_name" "Ervin" "last_name" "Newbury" "email" "enewburym0@engadget.com" "gender" "male" "ip_address" "234.32.216.225" "country" "China" "country_code" "CN" "city" "Fengshan" "longitude" "107.04219" "latitude" "24.546876" "last_login" "1599901814" +HSET "user:2794" "first_name" "Elmo" "last_name" "Streeting" "email" "estreetingm1@wikispaces.com" "gender" "male" "ip_address" "89.97.57.105" "country" "France" "country_code" "FR" "city" "Grenoble" "longitude" "5.7218985" "latitude" "45.1934857" "last_login" "1593413734" +HSET "user:2795" "first_name" "Gertrudis" "last_name" "Husher" "email" "ghusherm2@homestead.com" "gender" "female" "ip_address" "128.21.164.57" "country" "Malta" "country_code" "MT" "city" "Paola" "longitude" "14.510096" "latitude" "35.880105" "last_login" "1571489006" +HSET "user:2796" "first_name" "Mallory" "last_name" "Fairest" "email" "mfairestm3@nymag.com" "gender" "female" "ip_address" "67.176.138.51" "country" "Latvia" "country_code" "LV" "city" "Salaspils" "longitude" "24.3522717" "latitude" "56.8564288" "last_login" "1570098551" +HSET "user:2797" "first_name" "Denver" "last_name" "Parminter" "email" "dparminterm4@mtv.com" "gender" "male" "ip_address" "194.124.90.22" "country" "China" "country_code" "CN" "city" "Wuyang" "longitude" "113.609286" "latitude" "33.437877" "last_login" "1599733411" +HSET "user:2798" "first_name" "Kevin" "last_name" "Fay" "email" "kfaym5@etsy.com" "gender" "male" "ip_address" "65.213.24.204" "country" "Comoros" "country_code" "KM" "city" "Hajoho" "longitude" "44.4883576" "latitude" "-12.1227634" "last_login" "1582780670" +HSET "user:2799" "first_name" "Mel" "last_name" "Grzeszczyk" "email" "mgrzeszczykm6@ucla.edu" "gender" "female" "ip_address" "5.225.119.29" "country" "Russia" "country_code" "RU" "city" "Rayevskiy" "longitude" "54.8763087" "latitude" "54.0718079" "last_login" "1581349803" +HSET "user:2800" "first_name" "Constantine" "last_name" "Blencoe" "email" "cblencoem7@fc2.com" "gender" "male" "ip_address" "149.116.31.88" "country" "Pakistan" "country_code" "PK" "city" "Naudero" "longitude" "68.4470397" "latitude" "27.7537155" "last_login" "1577892166" +HSET "user:2801" "first_name" "Fabe" "last_name" "Doyland" "email" "fdoylandm8@illinois.edu" "gender" "male" "ip_address" "105.5.235.42" "country" "France" "country_code" "FR" "city" "Paris 12" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1596021872" +HSET "user:2802" "first_name" "Davita" "last_name" "Gonning" "email" "dgonningm9@spiegel.de" "gender" "female" "ip_address" "189.243.228.97" "country" "Colombia" "country_code" "CO" "city" "Neiva" "longitude" "-75.2809001" "latitude" "2.9344837" "last_login" "1577110577" +HSET "user:2803" "first_name" "Kalil" "last_name" "Effaunt" "email" "keffauntma@hatena.ne.jp" "gender" "male" "ip_address" "31.5.248.70" "country" "Canada" "country_code" "CA" "city" "La Broquerie" "longitude" "-96.50029" "latitude" "49.51688" "last_login" "1590535278" +HSET "user:2804" "first_name" "Kari" "last_name" "Bourton" "email" "kbourtonmb@who.int" "gender" "female" "ip_address" "226.45.205.253" "country" "Brazil" "country_code" "BR" "city" "Jaru" "longitude" "-62.4792921" "latitude" "-10.4322235" "last_login" "1583184035" +HSET "user:2805" "first_name" "Grace" "last_name" "Sitlington" "email" "gsitlingtonmc@google.nl" "gender" "male" "ip_address" "65.125.131.207" "country" "Indonesia" "country_code" "ID" "city" "Cibebek" "longitude" "106.191761" "latitude" "-6.148922" "last_login" "1590276869" +HSET "user:2806" "first_name" "Reinhard" "last_name" "Howison" "email" "rhowisonmd@cornell.edu" "gender" "male" "ip_address" "180.115.7.141" "country" "Mexico" "country_code" "MX" "city" "Independencia" "longitude" "-98.9341937" "latitude" "19.3004022" "last_login" "1577824550" +HSET "user:2807" "first_name" "Gill" "last_name" "Hubbert" "email" "ghubbertme@msn.com" "gender" "female" "ip_address" "114.7.240.238" "country" "Estonia" "country_code" "EE" "city" "Sauga" "longitude" "24.498407" "latitude" "58.4286125" "last_login" "1573643602" +HSET "user:2808" "first_name" "Alisha" "last_name" "Faraker" "email" "afarakermf@alexa.com" "gender" "female" "ip_address" "103.170.36.79" "country" "Ukraine" "country_code" "UA" "city" "Boyarka" "longitude" "30.298167" "latitude" "50.317117" "last_login" "1597786751" +HSET "user:2809" "first_name" "Titus" "last_name" "Jakubiak" "email" "tjakubiakmg@lycos.com" "gender" "male" "ip_address" "72.76.151.112" "country" "Indonesia" "country_code" "ID" "city" "Biting" "longitude" "111.2994071" "latitude" "-7.8533911" "last_login" "1569681398" +HSET "user:2810" "first_name" "Ophelia" "last_name" "Skamell" "email" "oskamellmh@surveymonkey.com" "gender" "female" "ip_address" "118.78.166.247" "country" "Indonesia" "country_code" "ID" "city" "Sukabatu" "longitude" "108.0663" "latitude" "-7.0807" "last_login" "1571577989" +HSET "user:2811" "first_name" "Zaria" "last_name" "Brundle" "email" "zbrundlemi@bloglines.com" "gender" "female" "ip_address" "214.11.139.85" "country" "Indonesia" "country_code" "ID" "city" "Randu" "longitude" "109.8633501" "latitude" "-7.0179759" "last_login" "1593403033" +HSET "user:2812" "first_name" "Harwilll" "last_name" "Grunwald" "email" "hgrunwaldmj@scientificamerican.com" "gender" "male" "ip_address" "131.240.238.183" "country" "Philippines" "country_code" "PH" "city" "Maria Aurora" "longitude" "121.4816411" "latitude" "15.7967076" "last_login" "1578922982" +HSET "user:2813" "first_name" "Pete" "last_name" "Paula" "email" "ppaulamk@thetimes.co.uk" "gender" "male" "ip_address" "154.129.72.223" "country" "China" "country_code" "CN" "city" "Qingqu" "longitude" "121.124178" "latitude" "31.150681" "last_login" "1594288376" +HSET "user:2814" "first_name" "Brannon" "last_name" "Milstead" "email" "bmilsteadml@mail.ru" "gender" "male" "ip_address" "113.240.173.53" "country" "Philippines" "country_code" "PH" "city" "Santisimo Rosario" "longitude" "121.3216161" "latitude" "14.0042175" "last_login" "1585523878" +HSET "user:2815" "first_name" "Conroy" "last_name" "Amar" "email" "camarmm@ezinearticles.com" "gender" "male" "ip_address" "20.252.49.148" "country" "Poland" "country_code" "PL" "city" "Przybiernów" "longitude" "14.7790457" "latitude" "53.7721333" "last_login" "1581082271" +HSET "user:2816" "first_name" "Gelya" "last_name" "Thibodeaux" "email" "gthibodeauxmn@smugmug.com" "gender" "female" "ip_address" "54.223.8.100" "country" "Yemen" "country_code" "YE" "city" "Mūdīyah" "longitude" "46.0801697" "latitude" "13.932401" "last_login" "1575388052" +HSET "user:2817" "first_name" "Ardelia" "last_name" "Davison" "email" "adavisonmo@stumbleupon.com" "gender" "female" "ip_address" "246.70.15.180" "country" "Palestinian Territory" "country_code" "PS" "city" "Dayr Dibwān" "longitude" "35.268988" "latitude" "31.911205" "last_login" "1589013084" +HSET "user:2818" "first_name" "Gilbertina" "last_name" "Risman" "email" "grismanmp@reuters.com" "gender" "female" "ip_address" "43.104.83.34" "country" "Armenia" "country_code" "AM" "city" "Kamo" "longitude" "43.9516138" "latitude" "40.8258113" "last_login" "1582890666" +HSET "user:2819" "first_name" "Lee" "last_name" "Sinkin" "email" "lsinkinmq@mapy.cz" "gender" "male" "ip_address" "82.227.34.179" "country" "Brazil" "country_code" "BR" "city" "Guaratinguetá" "longitude" "-45.1904004" "latitude" "-22.8140057" "last_login" "1576701268" +HSET "user:2820" "first_name" "Kinny" "last_name" "Chowne" "email" "kchownemr@blog.com" "gender" "male" "ip_address" "111.242.187.38" "country" "Indonesia" "country_code" "ID" "city" "Sumberdangdang" "longitude" "112.2014675" "latitude" "-8.0591896" "last_login" "1590141983" +HSET "user:2821" "first_name" "Norrie" "last_name" "Houchen" "email" "nhouchenms@ustream.tv" "gender" "male" "ip_address" "20.33.69.40" "country" "United States" "country_code" "US" "city" "Bradenton" "longitude" "-82.5828377" "latitude" "27.4404047" "last_login" "1574745925" +HSET "user:2822" "first_name" "Vilma" "last_name" "Sondon" "email" "vsondonmt@sina.com.cn" "gender" "female" "ip_address" "185.149.188.239" "country" "France" "country_code" "FR" "city" "Grenoble" "longitude" "5.7218985" "latitude" "45.1934857" "last_login" "1579699773" +HSET "user:2823" "first_name" "Vincents" "last_name" "Hellewell" "email" "vhellewellmu@stumbleupon.com" "gender" "male" "ip_address" "159.120.223.60" "country" "Portugal" "country_code" "PT" "city" "Cruzeiro" "longitude" "-8.4280201" "latitude" "40.9175193" "last_login" "1588500530" +HSET "user:2824" "first_name" "Ricardo" "last_name" "Leahair" "email" "rleahairmv@123-reg.co.uk" "gender" "male" "ip_address" "171.101.35.205" "country" "Portugal" "country_code" "PT" "city" "Eido" "longitude" "-7.9522855" "latitude" "41.2499754" "last_login" "1585030705" +HSET "user:2825" "first_name" "Pen" "last_name" "O'Corhane" "email" "pocorhanemw@sciencedaily.com" "gender" "male" "ip_address" "16.81.138.168" "country" "Russia" "country_code" "RU" "city" "Krasnogorskoye" "longitude" "52.4917523" "latitude" "57.7046513" "last_login" "1597668936" +HSET "user:2826" "first_name" "Shermie" "last_name" "Tootal" "email" "stootalmx@kickstarter.com" "gender" "male" "ip_address" "188.48.216.72" "country" "United States" "country_code" "US" "city" "Dallas" "longitude" "-96.8" "latitude" "32.78" "last_login" "1587083697" +HSET "user:2827" "first_name" "Margery" "last_name" "Duncklee" "email" "mdunckleemy@mysql.com" "gender" "female" "ip_address" "183.206.28.119" "country" "China" "country_code" "CN" "city" "Huai’an" "longitude" "119.113185" "latitude" "33.551052" "last_login" "1583114777" +HSET "user:2828" "first_name" "Efren" "last_name" "Popplewell" "email" "epopplewellmz@ask.com" "gender" "male" "ip_address" "252.123.95.32" "country" "Comoros" "country_code" "KM" "city" "Harembo" "longitude" "44.4977855" "latitude" "-12.1504727" "last_login" "1573847891" +HSET "user:2829" "first_name" "Cecilius" "last_name" "Beveridge" "email" "cbeveridgen0@cnbc.com" "gender" "male" "ip_address" "88.236.86.138" "country" "Bolivia" "country_code" "BO" "city" "Viloco" "longitude" "-67.4985857" "latitude" "-16.8740315" "last_login" "1594359234" +HSET "user:2830" "first_name" "Dana" "last_name" "Baggarley" "email" "dbaggarleyn1@pcworld.com" "gender" "male" "ip_address" "0.201.230.52" "country" "Indonesia" "country_code" "ID" "city" "Hamberang Sabrang" "longitude" "106.4032" "latitude" "-6.538" "last_login" "1597399986" +HSET "user:2831" "first_name" "Rodolphe" "last_name" "McLane" "email" "rmclanen2@cdbaby.com" "gender" "male" "ip_address" "99.231.170.242" "country" "Nigeria" "country_code" "NG" "city" "Anka" "longitude" "5.9832577" "latitude" "11.9170674" "last_login" "1577506919" +HSET "user:2832" "first_name" "Mordy" "last_name" "Kelleher" "email" "mkellehern3@indiegogo.com" "gender" "male" "ip_address" "45.161.182.110" "country" "Belarus" "country_code" "BY" "city" "Ramanavichy" "longitude" "30.5597" "latitude" "53.8653" "last_login" "1578247375" +HSET "user:2833" "first_name" "Daryl" "last_name" "Middler" "email" "dmiddlern4@trellian.com" "gender" "female" "ip_address" "206.135.42.130" "country" "Cyprus" "country_code" "CY" "city" "Lefkoniko" "longitude" "33.7405967" "latitude" "35.2687373" "last_login" "1598933336" +HSET "user:2834" "first_name" "Royal" "last_name" "Peaddie" "email" "rpeaddien5@newsvine.com" "gender" "male" "ip_address" "109.189.179.38" "country" "China" "country_code" "CN" "city" "Yangchun" "longitude" "111.791539" "latitude" "22.170437" "last_login" "1577986514" +HSET "user:2835" "first_name" "Jabez" "last_name" "Attawell" "email" "jattawelln6@usgs.gov" "gender" "male" "ip_address" "248.136.209.205" "country" "Philippines" "country_code" "PH" "city" "Infanta" "longitude" "121.0210496" "latitude" "14.5679735" "last_login" "1569479124" +HSET "user:2836" "first_name" "Flori" "last_name" "Snailham" "email" "fsnailhamn7@smugmug.com" "gender" "female" "ip_address" "225.82.196.109" "country" "France" "country_code" "FR" "city" "Saint-Jean-de-Braye" "longitude" "1.9638715" "latitude" "47.9035673" "last_login" "1568857221" +HSET "user:2837" "first_name" "Auberon" "last_name" "Layfield" "email" "alayfieldn8@oaic.gov.au" "gender" "male" "ip_address" "227.197.68.118" "country" "China" "country_code" "CN" "city" "Sanjing" "longitude" "118.796877" "latitude" "32.060255" "last_login" "1598070172" +HSET "user:2838" "first_name" "Massimo" "last_name" "Foad" "email" "mfoadn9@example.com" "gender" "male" "ip_address" "248.155.115.240" "country" "Russia" "country_code" "RU" "city" "Khiv" "longitude" "50.119277" "latitude" "53.1892176" "last_login" "1584010292" +HSET "user:2839" "first_name" "Dermot" "last_name" "Athelstan" "email" "dathelstanna@engadget.com" "gender" "male" "ip_address" "209.238.179.244" "country" "Russia" "country_code" "RU" "city" "Nevinnomyssk" "longitude" "41.9381568" "latitude" "44.6381341" "last_login" "1590880086" +HSET "user:2840" "first_name" "Kore" "last_name" "Debling" "email" "kdeblingnb@cbslocal.com" "gender" "female" "ip_address" "31.240.31.84" "country" "Russia" "country_code" "RU" "city" "Atamanovka" "longitude" "113.643677" "latitude" "51.9309558" "last_login" "1581880964" +HSET "user:2841" "first_name" "Genna" "last_name" "Raftery" "email" "grafterync@ft.com" "gender" "female" "ip_address" "36.114.237.199" "country" "Colombia" "country_code" "CO" "city" "Guayabetal" "longitude" "-73.81476" "latitude" "4.2157" "last_login" "1573762407" +HSET "user:2842" "first_name" "Schuyler" "last_name" "Ganter" "email" "sganternd@answers.com" "gender" "male" "ip_address" "190.50.229.201" "country" "Indonesia" "country_code" "ID" "city" "Batibati" "longitude" "114.7855271" "latitude" "-3.565921" "last_login" "1569467820" +HSET "user:2843" "first_name" "Horatius" "last_name" "Grayshan" "email" "hgrayshanne@cnn.com" "gender" "male" "ip_address" "100.73.63.196" "country" "Russia" "country_code" "RU" "city" "Troitskoye" "longitude" "44.677303" "latitude" "43.7595362" "last_login" "1574318980" +HSET "user:2844" "first_name" "Marmaduke" "last_name" "Paynter" "email" "mpaynternf@sun.com" "gender" "male" "ip_address" "13.214.210.124" "country" "China" "country_code" "CN" "city" "Qianzhou" "longitude" "118.675675" "latitude" "24.874132" "last_login" "1569903225" +HSET "user:2845" "first_name" "Fair" "last_name" "Youtead" "email" "fyouteadng@tmall.com" "gender" "male" "ip_address" "9.42.113.121" "country" "Czech Republic" "country_code" "CZ" "city" "Zbůch" "longitude" "13.2227563" "latitude" "49.6782112" "last_login" "1593858655" +HSET "user:2846" "first_name" "Korella" "last_name" "Springthorp" "email" "kspringthorpnh@icq.com" "gender" "female" "ip_address" "123.2.150.142" "country" "Brazil" "country_code" "BR" "city" "Janaúba" "longitude" "-43.3043938" "latitude" "-15.813904" "last_login" "1597219591" +HSET "user:2847" "first_name" "Winne" "last_name" "Metcalfe" "email" "wmetcalfeni@prweb.com" "gender" "female" "ip_address" "122.131.208.140" "country" "Bhutan" "country_code" "BT" "city" "Punākha" "longitude" "89.8797459" "latitude" "27.5920869" "last_login" "1582577722" +HSET "user:2848" "first_name" "Oates" "last_name" "Sommerscales" "email" "osommerscalesnj@spiegel.de" "gender" "male" "ip_address" "10.127.175.188" "country" "Suriname" "country_code" "SR" "city" "Albina" "longitude" "-54.0793451" "latitude" "5.5050681" "last_login" "1570238983" +HSET "user:2849" "first_name" "Carlen" "last_name" "Caistor" "email" "ccaistornk@ebay.co.uk" "gender" "female" "ip_address" "123.57.220.109" "country" "Indonesia" "country_code" "ID" "city" "Nagrog Wetan" "longitude" "107.8487279" "latitude" "-6.9871199" "last_login" "1577210175" +HSET "user:2850" "first_name" "Anni" "last_name" "Yaakov" "email" "ayaakovnl@timesonline.co.uk" "gender" "female" "ip_address" "143.77.86.154" "country" "Poland" "country_code" "PL" "city" "Sulbiny Górne" "longitude" "21.6132509" "latitude" "51.898029" "last_login" "1597643325" +HSET "user:2851" "first_name" "Mellicent" "last_name" "Windybank" "email" "mwindybanknm@oaic.gov.au" "gender" "female" "ip_address" "135.29.167.193" "country" "Russia" "country_code" "RU" "city" "Sochi" "longitude" "39.7451425" "latitude" "43.5648626" "last_login" "1587156956" +HSET "user:2852" "first_name" "Vonni" "last_name" "Jozsef" "email" "vjozsefnn@histats.com" "gender" "female" "ip_address" "138.231.146.75" "country" "New Zealand" "country_code" "NZ" "city" "Tauranga" "longitude" "176.1595188" "latitude" "-37.6981612" "last_login" "1573661373" +HSET "user:2853" "first_name" "Katie" "last_name" "Tilsley" "email" "ktilsleyno@tripadvisor.com" "gender" "female" "ip_address" "114.32.111.116" "country" "Venezuela" "country_code" "VE" "city" "San Fernando Apure" "longitude" "-67.4695307" "latitude" "7.8806888" "last_login" "1586742383" +HSET "user:2854" "first_name" "Cicily" "last_name" "todor" "email" "ctodornp@ucoz.ru" "gender" "female" "ip_address" "16.156.26.133" "country" "Estonia" "country_code" "EE" "city" "Maardu" "longitude" "24.9801867" "latitude" "59.4687696" "last_login" "1594720481" +HSET "user:2855" "first_name" "Ruben" "last_name" "Rikel" "email" "rrikelnq@ow.ly" "gender" "male" "ip_address" "46.231.104.22" "country" "China" "country_code" "CN" "city" "Chishan" "longitude" "104.2532768" "latitude" "30.8861589" "last_login" "1591964637" +HSET "user:2856" "first_name" "Adrianne" "last_name" "Napthine" "email" "anapthinenr@nyu.edu" "gender" "female" "ip_address" "133.45.185.218" "country" "China" "country_code" "CN" "city" "Pukou" "longitude" "118.627894" "latitude" "32.059093" "last_login" "1594141578" +HSET "user:2857" "first_name" "Wilfrid" "last_name" "Goulstone" "email" "wgoulstonens@symantec.com" "gender" "male" "ip_address" "195.118.225.37" "country" "Indonesia" "country_code" "ID" "city" "Nangahale" "longitude" "122.565498" "latitude" "-8.594056" "last_login" "1577437196" +HSET "user:2858" "first_name" "Marinna" "last_name" "Duinbleton" "email" "mduinbletonnt@hc360.com" "gender" "female" "ip_address" "183.69.138.184" "country" "China" "country_code" "CN" "city" "Huangling" "longitude" "109.262961" "latitude" "35.579427" "last_login" "1574018091" +HSET "user:2859" "first_name" "Tobiah" "last_name" "Caudelier" "email" "tcaudeliernu@diigo.com" "gender" "male" "ip_address" "243.235.150.170" "country" "Panama" "country_code" "PA" "city" "Dolega District" "longitude" "-82.4969331" "latitude" "8.6962086" "last_login" "1582849776" +HSET "user:2860" "first_name" "Hadleigh" "last_name" "Belloch" "email" "hbellochnv@marketwatch.com" "gender" "male" "ip_address" "37.35.143.119" "country" "China" "country_code" "CN" "city" "Wa’erma" "longitude" "101.730195" "latitude" "32.903037" "last_login" "1583487952" +HSET "user:2861" "first_name" "Alfy" "last_name" "Crassweller" "email" "acrasswellernw@blogspot.com" "gender" "male" "ip_address" "138.78.241.196" "country" "Albania" "country_code" "AL" "city" "Allkaj" "longitude" "19.7487502" "latitude" "40.8591123" "last_login" "1588377793" +HSET "user:2862" "first_name" "Tanitansy" "last_name" "Earle" "email" "tearlenx@fda.gov" "gender" "female" "ip_address" "116.206.55.4" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Na Hang" "longitude" "105.3950939" "latitude" "22.3622017" "last_login" "1574455909" +HSET "user:2863" "first_name" "Jordanna" "last_name" "Samson" "email" "jsamsonny@si.edu" "gender" "female" "ip_address" "253.217.210.236" "country" "Brazil" "country_code" "BR" "city" "Maracaju" "longitude" "-55.168269" "latitude" "-21.6110027" "last_login" "1592174635" +HSET "user:2864" "first_name" "Shoshana" "last_name" "Cockram" "email" "scockramnz@imgur.com" "gender" "female" "ip_address" "122.99.96.163" "country" "Poland" "country_code" "PL" "city" "Zamarski" "longitude" "18.6675302" "latitude" "49.7873125" "last_login" "1597240436" +HSET "user:2865" "first_name" "Blondelle" "last_name" "Gellett" "email" "bgelletto0@de.vu" "gender" "female" "ip_address" "165.77.185.91" "country" "China" "country_code" "CN" "city" "Huaidao" "longitude" "112.253935" "latitude" "38.677426" "last_login" "1591776489" +HSET "user:2866" "first_name" "Paddy" "last_name" "Dradey" "email" "pdradeyo1@infoseek.co.jp" "gender" "male" "ip_address" "40.196.37.211" "country" "Philippines" "country_code" "PH" "city" "San Eugenio" "longitude" "120.356297" "latitude" "16.394652" "last_login" "1572229215" +HSET "user:2867" "first_name" "Vivianna" "last_name" "Applebee" "email" "vapplebeeo2@cnn.com" "gender" "female" "ip_address" "86.226.6.246" "country" "Indonesia" "country_code" "ID" "city" "Wangi" "longitude" "123.5839983" "latitude" "-5.282644" "last_login" "1591734845" +HSET "user:2868" "first_name" "Estrellita" "last_name" "McKerton" "email" "emckertono3@time.com" "gender" "female" "ip_address" "100.2.10.224" "country" "Brazil" "country_code" "BR" "city" "Armação" "longitude" "-41.1547688" "latitude" "-21.0209448" "last_login" "1585258323" +HSET "user:2869" "first_name" "Monty" "last_name" "Gonnard" "email" "mgonnardo4@foxnews.com" "gender" "male" "ip_address" "52.214.167.30" "country" "China" "country_code" "CN" "city" "Siguqiao" "longitude" "118.272674" "latitude" "28.743812" "last_login" "1576827732" +HSET "user:2870" "first_name" "Zia" "last_name" "Wrathmall" "email" "zwrathmallo5@sphinn.com" "gender" "female" "ip_address" "198.211.101.135" "country" "Slovenia" "country_code" "SI" "city" "Koper" "longitude" "13.7439605" "latitude" "45.5535581" "last_login" "1592614762" +HSET "user:2871" "first_name" "Natalie" "last_name" "Windrass" "email" "nwindrasso6@imdb.com" "gender" "female" "ip_address" "124.25.45.80" "country" "Vietnam" "country_code" "VN" "city" "Mê Linh" "longitude" "105.7308045" "latitude" "21.1753431" "last_login" "1581325765" +HSET "user:2872" "first_name" "Hillard" "last_name" "Pearse" "email" "hpearseo7@unicef.org" "gender" "male" "ip_address" "36.156.5.7" "country" "Indonesia" "country_code" "ID" "city" "Kerep Wetan" "longitude" "107.5442802" "latitude" "-6.2688922" "last_login" "1591086136" +HSET "user:2873" "first_name" "Salem" "last_name" "Linscott" "email" "slinscotto8@illinois.edu" "gender" "male" "ip_address" "210.141.125.210" "country" "China" "country_code" "CN" "city" "Tongmuluo" "longitude" "111.984823" "latitude" "25.994869" "last_login" "1593597362" +HSET "user:2874" "first_name" "Whitney" "last_name" "Drayson" "email" "wdraysono9@theguardian.com" "gender" "female" "ip_address" "181.42.220.165" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-77.0224418" "latitude" "38.8965627" "last_login" "1576105446" +HSET "user:2875" "first_name" "Thomas" "last_name" "Brydone" "email" "tbrydoneoa@tinypic.com" "gender" "male" "ip_address" "66.158.140.47" "country" "Azerbaijan" "country_code" "AZ" "city" "Çalxanqala" "longitude" "45.2771033" "latitude" "39.4472756" "last_login" "1594034705" +HSET "user:2876" "first_name" "Woodman" "last_name" "Hovell" "email" "whovellob@squarespace.com" "gender" "male" "ip_address" "40.107.10.32" "country" "Colombia" "country_code" "CO" "city" "Obando" "longitude" "-75.972669" "latitude" "4.575601" "last_login" "1594809512" +HSET "user:2877" "first_name" "Mikaela" "last_name" "Garment" "email" "mgarmentoc@ted.com" "gender" "female" "ip_address" "154.33.140.238" "country" "Brazil" "country_code" "BR" "city" "Porto Ferreira" "longitude" "-47.4710798" "latitude" "-21.8421051" "last_login" "1584224248" +HSET "user:2878" "first_name" "Henrieta" "last_name" "Caudray" "email" "hcaudrayod@irs.gov" "gender" "female" "ip_address" "190.52.192.99" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Rumboci" "longitude" "17.503469" "latitude" "43.8313297" "last_login" "1570652785" +HSET "user:2879" "first_name" "Toby" "last_name" "Longbone" "email" "tlongboneoe@columbia.edu" "gender" "male" "ip_address" "251.132.159.201" "country" "Malaysia" "country_code" "MY" "city" "Kota Kinabalu" "longitude" "116.0761121" "latitude" "5.9840985" "last_login" "1577672452" +HSET "user:2880" "first_name" "Esra" "last_name" "Cacacie" "email" "ecacacieof@theglobeandmail.com" "gender" "male" "ip_address" "120.128.227.17" "country" "Indonesia" "country_code" "ID" "city" "Mergayu" "longitude" "111.7763713" "latitude" "-8.1658601" "last_login" "1586392681" +HSET "user:2881" "first_name" "Faythe" "last_name" "Doohan" "email" "fdoohanog@deviantart.com" "gender" "female" "ip_address" "35.92.98.246" "country" "China" "country_code" "CN" "city" "Longju" "longitude" "112.090859" "latitude" "34.976557" "last_login" "1573848527" +HSET "user:2882" "first_name" "Guido" "last_name" "Jiru" "email" "gjiruoh@freewebs.com" "gender" "male" "ip_address" "65.175.15.189" "country" "Guatemala" "country_code" "GT" "city" "Cabricán" "longitude" "-91.6341489" "latitude" "15.0690612" "last_login" "1588929465" +HSET "user:2883" "first_name" "Eartha" "last_name" "Cromwell" "email" "ecromwelloi@com.com" "gender" "female" "ip_address" "33.148.146.13" "country" "Ireland" "country_code" "IE" "city" "Watergrasshill" "longitude" "-8.337871" "latitude" "52.0097259" "last_login" "1569102620" +HSET "user:2884" "first_name" "Laurel" "last_name" "Bechley" "email" "lbechleyoj@flavors.me" "gender" "female" "ip_address" "2.110.58.40" "country" "Russia" "country_code" "RU" "city" "Bizhbulyak" "longitude" "54.276083" "latitude" "53.695696" "last_login" "1588775284" +HSET "user:2885" "first_name" "Sumner" "last_name" "Harrap" "email" "sharrapok@illinois.edu" "gender" "male" "ip_address" "5.169.168.12" "country" "Portugal" "country_code" "PT" "city" "São Mamede" "longitude" "-8.4329966" "latitude" "40.9283231" "last_login" "1570270358" +HSET "user:2886" "first_name" "Cecil" "last_name" "Creasy" "email" "ccreasyol@domainmarket.com" "gender" "male" "ip_address" "96.88.49.64" "country" "Uruguay" "country_code" "UY" "city" "San Bautista" "longitude" "-55.9600098" "latitude" "-34.4402062" "last_login" "1569485422" +HSET "user:2887" "first_name" "Grannie" "last_name" "Penlington" "email" "gpenlingtonom@salon.com" "gender" "male" "ip_address" "169.165.111.175" "country" "China" "country_code" "CN" "city" "Yuanba" "longitude" "105.96282" "latitude" "32.323256" "last_login" "1574784939" +HSET "user:2888" "first_name" "Elyse" "last_name" "Cartledge" "email" "ecartledgeon@symantec.com" "gender" "female" "ip_address" "12.36.212.219" "country" "Russia" "country_code" "RU" "city" "Nizhniy Ufaley" "longitude" "59.9854105" "latitude" "55.9186612" "last_login" "1587828048" +HSET "user:2889" "first_name" "Monika" "last_name" "Paulsen" "email" "mpaulsenoo@weibo.com" "gender" "female" "ip_address" "71.63.131.157" "country" "Ireland" "country_code" "IE" "city" "Mallow" "longitude" "-8.642661" "latitude" "52.1361219" "last_login" "1572912492" +HSET "user:2890" "first_name" "Maryanne" "last_name" "Ennever" "email" "menneverop@people.com.cn" "gender" "female" "ip_address" "231.235.254.36" "country" "Japan" "country_code" "JP" "city" "Tateyama" "longitude" "140.0082705" "latitude" "38.871032" "last_login" "1594821805" +HSET "user:2891" "first_name" "Beatrice" "last_name" "Varfolomeev" "email" "bvarfolomeevoq@friendfeed.com" "gender" "female" "ip_address" "192.231.70.32" "country" "France" "country_code" "FR" "city" "Reims" "longitude" "-1.8090692" "latitude" "48.2414942" "last_login" "1593873349" +HSET "user:2892" "first_name" "Hildagarde" "last_name" "Jaulme" "email" "hjaulmeor@goo.gl" "gender" "female" "ip_address" "85.199.79.57" "country" "France" "country_code" "FR" "city" "Quimper" "longitude" "-4.1020654" "latitude" "47.9962116" "last_login" "1569704168" +HSET "user:2893" "first_name" "Corty" "last_name" "Harms" "email" "charmsos@naver.com" "gender" "male" "ip_address" "97.43.215.63" "country" "Bolivia" "country_code" "BO" "city" "Tarata" "longitude" "-66.0255368" "latitude" "-17.6091383" "last_login" "1572108790" +HSET "user:2894" "first_name" "Roderich" "last_name" "Kehir" "email" "rkehirot@google.fr" "gender" "male" "ip_address" "44.68.62.159" "country" "Central African Republic" "country_code" "CF" "city" "Bimbo" "longitude" "18.5166348" "latitude" "4.3320676" "last_login" "1597856606" +HSET "user:2895" "first_name" "Davin" "last_name" "Spafford" "email" "dspaffordou@pagesperso-orange.fr" "gender" "male" "ip_address" "41.242.179.44" "country" "Macedonia" "country_code" "MK" "city" "Старо Нагоричане" "longitude" "21.8297133" "latitude" "42.199015" "last_login" "1597640783" +HSET "user:2896" "first_name" "Kristo" "last_name" "Orrobin" "email" "korrobinov@dion.ne.jp" "gender" "male" "ip_address" "229.110.172.226" "country" "Thailand" "country_code" "TH" "city" "Khlong Yai" "longitude" "102.8773712" "latitude" "11.7907511" "last_login" "1591320678" +HSET "user:2897" "first_name" "Eldin" "last_name" "Shippey" "email" "eshippeyow@feedburner.com" "gender" "male" "ip_address" "142.177.46.237" "country" "Indonesia" "country_code" "ID" "city" "Wadi Kidul" "longitude" "106.6717451" "latitude" "-6.2736138" "last_login" "1569470570" +HSET "user:2898" "first_name" "Derrik" "last_name" "Way" "email" "dwayox@google.pl" "gender" "male" "ip_address" "192.216.246.114" "country" "Czech Republic" "country_code" "CZ" "city" "Zbraslav" "longitude" "16.2941515" "latitude" "49.2215531" "last_login" "1583851461" +HSET "user:2899" "first_name" "James" "last_name" "Osichev" "email" "josichevoy@mozilla.com" "gender" "male" "ip_address" "251.59.128.86" "country" "Venezuela" "country_code" "VE" "city" "Santa Ana" "longitude" "-63.9201942" "latitude" "11.0678757" "last_login" "1581310845" +HSET "user:2900" "first_name" "Skyler" "last_name" "Vice" "email" "sviceoz@ftc.gov" "gender" "male" "ip_address" "54.222.11.43" "country" "Czech Republic" "country_code" "CZ" "city" "Velké Opatovice" "longitude" "16.6797892" "latitude" "49.6085752" "last_login" "1596113764" +HSET "user:2901" "first_name" "Harriett" "last_name" "Batcock" "email" "hbatcockp0@tamu.edu" "gender" "female" "ip_address" "199.63.208.32" "country" "Poland" "country_code" "PL" "city" "Kaniów" "longitude" "20.6630795" "latitude" "50.9872632" "last_login" "1579850157" +HSET "user:2902" "first_name" "Farlay" "last_name" "Klimkowski" "email" "fklimkowskip1@tinyurl.com" "gender" "male" "ip_address" "109.158.245.45" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0885223" "latitude" "59.3019771" "last_login" "1569721695" +HSET "user:2903" "first_name" "Slade" "last_name" "Kingsly" "email" "skingslyp2@exblog.jp" "gender" "male" "ip_address" "117.113.14.221" "country" "Mexico" "country_code" "MX" "city" "Juan N Alvarez" "longitude" "-99.5360598" "latitude" "18.3549366" "last_login" "1588691372" +HSET "user:2904" "first_name" "Felizio" "last_name" "Genn" "email" "fgennp3@ebay.com" "gender" "male" "ip_address" "162.212.184.78" "country" "China" "country_code" "CN" "city" "Runjin" "longitude" "126.276226" "latitude" "47.949239" "last_login" "1579803352" +HSET "user:2905" "first_name" "Samaria" "last_name" "Reignard" "email" "sreignardp4@marketwatch.com" "gender" "female" "ip_address" "5.85.119.184" "country" "Philippines" "country_code" "PH" "city" "Malamig" "longitude" "121.0543553" "latitude" "14.6458474" "last_login" "1593576767" +HSET "user:2906" "first_name" "Georgianne" "last_name" "O'Cahsedy" "email" "gocahsedyp5@merriam-webster.com" "gender" "female" "ip_address" "108.6.6.23" "country" "Poland" "country_code" "PL" "city" "Płońsk" "longitude" "20.3835279" "latitude" "52.6244001" "last_login" "1597358994" +HSET "user:2907" "first_name" "Randall" "last_name" "Foden" "email" "rfodenp6@google.de" "gender" "male" "ip_address" "144.198.140.221" "country" "China" "country_code" "CN" "city" "Meijiahe" "longitude" "110.494385" "latitude" "30.918919" "last_login" "1571776637" +HSET "user:2908" "first_name" "Sapphira" "last_name" "Stansby" "email" "sstansbyp7@cbslocal.com" "gender" "female" "ip_address" "246.121.215.130" "country" "France" "country_code" "FR" "city" "Chantilly" "longitude" "2.6981496" "latitude" "47.3036891" "last_login" "1582788485" +HSET "user:2909" "first_name" "Vikky" "last_name" "Pershouse" "email" "vpershousep8@infoseek.co.jp" "gender" "female" "ip_address" "177.228.251.126" "country" "Portugal" "country_code" "PT" "city" "Lisboa" "longitude" "-9.1394917" "latitude" "38.7341216" "last_login" "1580408398" +HSET "user:2910" "first_name" "Rafe" "last_name" "O'Monahan" "email" "romonahanp9@google.co.jp" "gender" "male" "ip_address" "100.86.107.146" "country" "Sweden" "country_code" "SE" "city" "Svalöv" "longitude" "13.0879461" "latitude" "55.9128355" "last_login" "1594663583" +HSET "user:2911" "first_name" "Currey" "last_name" "Burbage" "email" "cburbagepa@mail.ru" "gender" "male" "ip_address" "0.133.164.126" "country" "China" "country_code" "CN" "city" "Hekou" "longitude" "103.93935" "latitude" "22.529403" "last_login" "1599489148" +HSET "user:2912" "first_name" "Hugues" "last_name" "Fynan" "email" "hfynanpb@yolasite.com" "gender" "male" "ip_address" "95.146.63.134" "country" "Ireland" "country_code" "IE" "city" "Dunmanway" "longitude" "-9.1115941" "latitude" "51.7203863" "last_login" "1586915023" +HSET "user:2913" "first_name" "Guthrey" "last_name" "Bruneau" "email" "gbruneaupc@techcrunch.com" "gender" "male" "ip_address" "222.34.136.103" "country" "Colombia" "country_code" "CO" "city" "Cali" "longitude" "-76.5112471" "latitude" "3.4851908" "last_login" "1591539779" +HSET "user:2914" "first_name" "Lilli" "last_name" "Skuce" "email" "lskucepd@studiopress.com" "gender" "female" "ip_address" "147.24.131.190" "country" "Chile" "country_code" "CL" "city" "Chile Chico" "longitude" "-71.7222795" "latitude" "-46.5409005" "last_login" "1584645132" +HSET "user:2915" "first_name" "Bat" "last_name" "Thackeray" "email" "bthackeraype@time.com" "gender" "male" "ip_address" "181.49.44.55" "country" "Indonesia" "country_code" "ID" "city" "Lanci Satu" "longitude" "118.7519286" "latitude" "-8.4624319" "last_login" "1597891278" +HSET "user:2916" "first_name" "Carolynn" "last_name" "Dalgarnocht" "email" "cdalgarnochtpf@cisco.com" "gender" "female" "ip_address" "152.141.95.243" "country" "Curacao" "country_code" "CW" "city" "Willemstad" "longitude" "-68.8824233" "latitude" "12.1224221" "last_login" "1577670333" +HSET "user:2917" "first_name" "Liuka" "last_name" "Garoghan" "email" "lgaroghanpg@berkeley.edu" "gender" "female" "ip_address" "234.71.171.207" "country" "Russia" "country_code" "RU" "city" "Lakhdenpokh’ya" "longitude" "30.1907149" "latitude" "61.5188713" "last_login" "1589731956" +HSET "user:2918" "first_name" "Vinnie" "last_name" "Taynton" "email" "vtayntonph@nps.gov" "gender" "male" "ip_address" "42.163.144.8" "country" "China" "country_code" "CN" "city" "Guangshun" "longitude" "113.290997" "latitude" "23.081924" "last_login" "1599637215" +HSET "user:2919" "first_name" "Nicoline" "last_name" "Riepel" "email" "nriepelpi@mediafire.com" "gender" "female" "ip_address" "96.229.108.62" "country" "Japan" "country_code" "JP" "city" "Shirone" "longitude" "139.0140781" "latitude" "37.7609405" "last_login" "1579286972" +HSET "user:2920" "first_name" "Loni" "last_name" "Petrus" "email" "lpetruspj@reverbnation.com" "gender" "female" "ip_address" "186.46.46.45" "country" "Indonesia" "country_code" "ID" "city" "Walenrang" "longitude" "120.1242853" "latitude" "-2.8800399" "last_login" "1588342499" +HSET "user:2921" "first_name" "Gilberto" "last_name" "Barajas" "email" "gbarajaspk@xrea.com" "gender" "male" "ip_address" "46.7.58.7" "country" "Brazil" "country_code" "BR" "city" "Boa Esperança" "longitude" "-52.7241914" "latitude" "-24.2670414" "last_login" "1576482065" +HSET "user:2922" "first_name" "Timmie" "last_name" "Broschke" "email" "tbroschkepl@trellian.com" "gender" "female" "ip_address" "255.240.84.226" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Thanh Lưu" "longitude" "109.1068822" "latitude" "13.3807374" "last_login" "1595504433" +HSET "user:2923" "first_name" "Bev" "last_name" "Hayes" "email" "bhayespm@networkadvertising.org" "gender" "female" "ip_address" "64.160.119.49" "country" "Brazil" "country_code" "BR" "city" "Jutaí" "longitude" "-68.5247149" "latitude" "-4.4008685" "last_login" "1583236857" +HSET "user:2924" "first_name" "Paula" "last_name" "Ley" "email" "pleypn@independent.co.uk" "gender" "female" "ip_address" "29.61.27.118" "country" "Japan" "country_code" "JP" "city" "Gosen" "longitude" "139.1650556" "latitude" "37.7525244" "last_login" "1579802980" +HSET "user:2925" "first_name" "Vivyanne" "last_name" "Couves" "email" "vcouvespo@webeden.co.uk" "gender" "female" "ip_address" "47.131.204.1" "country" "Sweden" "country_code" "SE" "city" "Edsbyn" "longitude" "16.0344869" "latitude" "61.3377349" "last_login" "1576954453" +HSET "user:2926" "first_name" "Val" "last_name" "Milington" "email" "vmilingtonpp@chron.com" "gender" "male" "ip_address" "181.154.114.254" "country" "Russia" "country_code" "RU" "city" "Pallasovka" "longitude" "46.8886722" "latitude" "50.0429768" "last_login" "1595149079" +HSET "user:2927" "first_name" "Elyssa" "last_name" "Gavan" "email" "egavanpq@blogtalkradio.com" "gender" "female" "ip_address" "29.230.233.230" "country" "Israel" "country_code" "IL" "city" "Bene 'Ayish" "longitude" "34.759291" "latitude" "31.790235" "last_login" "1584406327" +HSET "user:2928" "first_name" "Stephanus" "last_name" "Roscoe" "email" "sroscoepr@ed.gov" "gender" "male" "ip_address" "107.133.179.167" "country" "Czech Republic" "country_code" "CZ" "city" "Jakartovice" "longitude" "17.6628187" "latitude" "49.9114346" "last_login" "1600192379" +HSET "user:2929" "first_name" "Waldon" "last_name" "Jenney" "email" "wjenneyps@nasa.gov" "gender" "male" "ip_address" "212.17.143.14" "country" "China" "country_code" "CN" "city" "Yongshan" "longitude" "103.638067" "latitude" "28.229112" "last_login" "1594198023" +HSET "user:2930" "first_name" "Debbi" "last_name" "Bertomeu" "email" "dbertomeupt@google.cn" "gender" "female" "ip_address" "185.63.43.147" "country" "Indonesia" "country_code" "ID" "city" "Bagok" "longitude" "115.2778317" "latitude" "-2.2027147" "last_login" "1571901177" +HSET "user:2931" "first_name" "Rheta" "last_name" "Terlinden" "email" "rterlindenpu@networksolutions.com" "gender" "female" "ip_address" "250.166.70.163" "country" "Portugal" "country_code" "PT" "city" "Santiago dos Velhos" "longitude" "-9.1068816" "latitude" "38.9492606" "last_login" "1588957002" +HSET "user:2932" "first_name" "Thadeus" "last_name" "Gillfillan" "email" "tgillfillanpv@virginia.edu" "gender" "male" "ip_address" "189.132.97.121" "country" "Indonesia" "country_code" "ID" "city" "Sobontoro" "longitude" "111.86133" "latitude" "-6.8017905" "last_login" "1582129720" +HSET "user:2933" "first_name" "Bebe" "last_name" "Chene" "email" "bchenepw@woothemes.com" "gender" "female" "ip_address" "183.215.111.5" "country" "Afghanistan" "country_code" "AF" "city" "Asadābād" "longitude" "71.1537637" "latitude" "34.8742638" "last_login" "1592550841" +HSET "user:2934" "first_name" "Jasun" "last_name" "Elland" "email" "jellandpx@xrea.com" "gender" "male" "ip_address" "135.187.179.24" "country" "Luxembourg" "country_code" "LU" "city" "Junglinster" "longitude" "6.1992834" "latitude" "49.726378" "last_login" "1585103870" +HSET "user:2935" "first_name" "Lester" "last_name" "Kabsch" "email" "lkabschpy@google.ru" "gender" "male" "ip_address" "70.96.26.8" "country" "Macedonia" "country_code" "MK" "city" "Beranci" "longitude" "21.3571429" "latitude" "41.1575986" "last_login" "1568781177" +HSET "user:2936" "first_name" "Charley" "last_name" "Maha" "email" "cmahapz@youtu.be" "gender" "male" "ip_address" "132.53.5.140" "country" "China" "country_code" "CN" "city" "Yahe" "longitude" "120.5610519" "latitude" "27.6616992" "last_login" "1568694200" +HSET "user:2937" "first_name" "Lolita" "last_name" "Van der Beek" "email" "lvanderbeekq0@google.ru" "gender" "female" "ip_address" "100.197.241.241" "country" "Brazil" "country_code" "BR" "city" "São Lourenço" "longitude" "-45.0584384" "latitude" "-22.1147688" "last_login" "1573730455" +HSET "user:2938" "first_name" "Sallyanne" "last_name" "Ovill" "email" "sovillq1@diigo.com" "gender" "female" "ip_address" "148.102.177.182" "country" "Czech Republic" "country_code" "CZ" "city" "Město" "longitude" "12.8846277" "latitude" "49.9718258" "last_login" "1575795340" +HSET "user:2939" "first_name" "Trula" "last_name" "Itzkowicz" "email" "titzkowiczq2@google.fr" "gender" "female" "ip_address" "191.179.139.174" "country" "Indonesia" "country_code" "ID" "city" "Leuwayang" "longitude" "123.7433907" "latitude" "-8.2285121" "last_login" "1580670093" +HSET "user:2940" "first_name" "Benton" "last_name" "Grube" "email" "bgrubeq3@amazon.de" "gender" "male" "ip_address" "250.148.7.20" "country" "Philippines" "country_code" "PH" "city" "Maquiapo" "longitude" "120.5779616" "latitude" "14.9806953" "last_login" "1587746132" +HSET "user:2941" "first_name" "Kennett" "last_name" "Ruck" "email" "kruckq4@youtube.com" "gender" "male" "ip_address" "30.20.148.238" "country" "Latvia" "country_code" "LV" "city" "Līvāni" "longitude" "26.1725258" "latitude" "56.355176" "last_login" "1577633368" +HSET "user:2942" "first_name" "Fidelia" "last_name" "Dobie" "email" "fdobieq5@goo.ne.jp" "gender" "female" "ip_address" "158.52.156.57" "country" "Kazakhstan" "country_code" "KZ" "city" "Sastöbe" "longitude" "70.0024837" "latitude" "42.5530523" "last_login" "1572826915" +HSET "user:2943" "first_name" "Allegra" "last_name" "Cowthard" "email" "acowthardq6@cbsnews.com" "gender" "female" "ip_address" "146.41.191.57" "country" "China" "country_code" "CN" "city" "Nanjin" "longitude" "118.796877" "latitude" "32.060255" "last_login" "1581722807" +HSET "user:2944" "first_name" "Melisa" "last_name" "Pinhorn" "email" "mpinhornq7@cloudflare.com" "gender" "female" "ip_address" "146.95.230.30" "country" "Greece" "country_code" "GR" "city" "Próchoma" "longitude" "22.6698436" "latitude" "40.7996662" "last_login" "1568806055" +HSET "user:2945" "first_name" "Latrina" "last_name" "Pietroni" "email" "lpietroniq8@ucla.edu" "gender" "female" "ip_address" "247.243.48.241" "country" "China" "country_code" "CN" "city" "Xiting" "longitude" "121.009708" "latitude" "32.117935" "last_login" "1577628187" +HSET "user:2946" "first_name" "Andria" "last_name" "Petri" "email" "apetriq9@taobao.com" "gender" "female" "ip_address" "106.184.218.179" "country" "Portugal" "country_code" "PT" "city" "Pomar" "longitude" "-8.4825685" "latitude" "42.046011" "last_login" "1596193199" +HSET "user:2947" "first_name" "Jasper" "last_name" "Shanklin" "email" "jshanklinqa@mashable.com" "gender" "male" "ip_address" "101.169.202.124" "country" "Indonesia" "country_code" "ID" "city" "Sumberkenanga" "longitude" "108.4602464" "latitude" "-6.7543488" "last_login" "1575123254" +HSET "user:2948" "first_name" "Dwight" "last_name" "Jendrys" "email" "djendrysqb@quantcast.com" "gender" "male" "ip_address" "1.237.169.28" "country" "Russia" "country_code" "RU" "city" "Alzamay" "longitude" "99.1467618" "latitude" "55.6776356" "last_login" "1597062029" +HSET "user:2949" "first_name" "Gabrielle" "last_name" "Barhams" "email" "gbarhamsqc@icq.com" "gender" "female" "ip_address" "192.155.211.5" "country" "Peru" "country_code" "PE" "city" "Tuti" "longitude" "-71.5490271" "latitude" "-15.5319205" "last_login" "1588882479" +HSET "user:2950" "first_name" "Dov" "last_name" "Calendar" "email" "dcalendarqd@ox.ac.uk" "gender" "male" "ip_address" "242.16.203.67" "country" "Iran" "country_code" "IR" "city" "Aghajari" "longitude" "49.8240194" "latitude" "30.6907753" "last_login" "1595651289" +HSET "user:2951" "first_name" "Kristi" "last_name" "Calven" "email" "kcalvenqe@answers.com" "gender" "female" "ip_address" "138.106.39.136" "country" "Iran" "country_code" "IR" "city" "Kahnūj" "longitude" "57.745955" "latitude" "28.0250371" "last_login" "1578025404" +HSET "user:2952" "first_name" "Graig" "last_name" "Grocott" "email" "ggrocottqf@icio.us" "gender" "male" "ip_address" "196.237.14.235" "country" "China" "country_code" "CN" "city" "Xiangyang" "longitude" "112.122426" "latitude" "32.009016" "last_login" "1578933909" +HSET "user:2953" "first_name" "Bradford" "last_name" "Campanelle" "email" "bcampanelleqg@shop-pro.jp" "gender" "male" "ip_address" "220.40.147.157" "country" "Philippines" "country_code" "PH" "city" "Lapuz" "longitude" "121.0259556" "latitude" "14.7075271" "last_login" "1599970885" +HSET "user:2954" "first_name" "Jayne" "last_name" "Demangeon" "email" "jdemangeonqh@independent.co.uk" "gender" "female" "ip_address" "188.58.126.49" "country" "Philippines" "country_code" "PH" "city" "Concepcion" "longitude" "121.1138058" "latitude" "14.6688068" "last_login" "1588094283" +HSET "user:2955" "first_name" "Natalee" "last_name" "Woolbrook" "email" "nwoolbrookqi@huffingtonpost.com" "gender" "female" "ip_address" "206.42.77.130" "country" "Portugal" "country_code" "PT" "city" "Cercal" "longitude" "-8.6689187" "latitude" "39.711179" "last_login" "1583102910" +HSET "user:2956" "first_name" "Lem" "last_name" "Bearham" "email" "lbearhamqj@prweb.com" "gender" "male" "ip_address" "96.134.119.94" "country" "Brazil" "country_code" "BR" "city" "Coronel Vivida" "longitude" "-52.5678016" "latitude" "-25.979821" "last_login" "1595135765" +HSET "user:2957" "first_name" "Catlin" "last_name" "Knox" "email" "cknoxqk@ycombinator.com" "gender" "female" "ip_address" "130.186.98.45" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0669843" "latitude" "59.3409629" "last_login" "1575967870" +HSET "user:2958" "first_name" "Willis" "last_name" "Szepe" "email" "wszepeql@feedburner.com" "gender" "male" "ip_address" "124.2.68.35" "country" "China" "country_code" "CN" "city" "Bijia" "longitude" "105.291643" "latitude" "27.283955" "last_login" "1586909086" +HSET "user:2959" "first_name" "Baryram" "last_name" "Leblanc" "email" "bleblancqm@hibu.com" "gender" "male" "ip_address" "118.247.214.203" "country" "Canada" "country_code" "CA" "city" "Ingersoll" "longitude" "-80.8810794" "latitude" "43.0370523" "last_login" "1578918480" +HSET "user:2960" "first_name" "Wells" "last_name" "Duetschens" "email" "wduetschensqn@boston.com" "gender" "male" "ip_address" "173.141.228.91" "country" "Indonesia" "country_code" "ID" "city" "Klakeh" "longitude" "111.6720346" "latitude" "-6.9932513" "last_login" "1582701003" +HSET "user:2961" "first_name" "Mamie" "last_name" "Bushe" "email" "mbusheqo@imgur.com" "gender" "female" "ip_address" "138.251.65.198" "country" "Argentina" "country_code" "AR" "city" "La Cesira" "longitude" "-62.97238" "latitude" "-33.95115" "last_login" "1585841086" +HSET "user:2962" "first_name" "Bertrand" "last_name" "Prazor" "email" "bprazorqp@google.ca" "gender" "male" "ip_address" "103.109.240.106" "country" "Indonesia" "country_code" "ID" "city" "Gandrungmangu" "longitude" "108.8432656" "latitude" "-7.5067598" "last_login" "1582725213" +HSET "user:2963" "first_name" "Farrell" "last_name" "Bastian" "email" "fbastianqq@mozilla.org" "gender" "male" "ip_address" "255.162.133.162" "country" "China" "country_code" "CN" "city" "Gantang" "longitude" "107.8655766" "latitude" "30.9578398" "last_login" "1568676658" +HSET "user:2964" "first_name" "Deck" "last_name" "MacEvilly" "email" "dmacevillyqr@mail.ru" "gender" "male" "ip_address" "38.42.247.168" "country" "China" "country_code" "CN" "city" "Jieting" "longitude" "120.273991" "latitude" "29.641685" "last_login" "1577474805" +HSET "user:2965" "first_name" "Jolyn" "last_name" "Endean" "email" "jendeanqs@ask.com" "gender" "female" "ip_address" "103.16.126.124" "country" "Jamaica" "country_code" "JM" "city" "Annotto Bay" "longitude" "-76.7704413" "latitude" "18.2703512" "last_login" "1585396114" +HSET "user:2966" "first_name" "Katleen" "last_name" "Howsan" "email" "khowsanqt@istockphoto.com" "gender" "female" "ip_address" "156.58.13.144" "country" "Poland" "country_code" "PL" "city" "Krosno" "longitude" "20.506072" "latitude" "49.7722369" "last_login" "1572272019" +HSET "user:2967" "first_name" "Demott" "last_name" "Rosiello" "email" "drosielloqu@globo.com" "gender" "male" "ip_address" "133.36.135.216" "country" "Moldova" "country_code" "MD" "city" "Biruinţa" "longitude" "27.471753" "latitude" "48.413703" "last_login" "1586007617" +HSET "user:2968" "first_name" "Marlena" "last_name" "Gamil" "email" "mgamilqv@netvibes.com" "gender" "female" "ip_address" "65.140.237.122" "country" "Indonesia" "country_code" "ID" "city" "Padangcermin" "longitude" "105.1142011" "latitude" "-5.6042815" "last_login" "1579213818" +HSET "user:2969" "first_name" "Doria" "last_name" "Doodney" "email" "ddoodneyqw@google.ca" "gender" "female" "ip_address" "251.138.208.247" "country" "Argentina" "country_code" "AR" "city" "Laguna Paiva" "longitude" "-65.3580411" "latitude" "-43.2596246" "last_login" "1599841830" +HSET "user:2970" "first_name" "Germain" "last_name" "Wride" "email" "gwrideqx@elpais.com" "gender" "male" "ip_address" "205.250.1.41" "country" "Greece" "country_code" "GR" "city" "Ymittos" "longitude" "23.7464528" "latitude" "37.9525906" "last_login" "1572508734" +HSET "user:2971" "first_name" "Caesar" "last_name" "Youngs" "email" "cyoungsqy@acquirethisname.com" "gender" "male" "ip_address" "109.117.91.156" "country" "Kazakhstan" "country_code" "KZ" "city" "Zhangatas" "longitude" "69.75" "latitude" "43.56667" "last_login" "1581407448" +HSET "user:2972" "first_name" "Melly" "last_name" "Saul" "email" "msaulqz@cargocollective.com" "gender" "female" "ip_address" "77.135.218.183" "country" "Japan" "country_code" "JP" "city" "Chino" "longitude" "135.8827528" "latitude" "35.089251" "last_login" "1600247520" +HSET "user:2973" "first_name" "Helli" "last_name" "Rantoull" "email" "hrantoullr0@sun.com" "gender" "female" "ip_address" "148.77.239.196" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Yên Phú" "longitude" "105.348246" "latitude" "22.7615314" "last_login" "1581396127" +HSET "user:2974" "first_name" "Cosette" "last_name" "McClunaghan" "email" "cmcclunaghanr1@paginegialle.it" "gender" "female" "ip_address" "147.227.74.201" "country" "Portugal" "country_code" "PT" "city" "Trafaria" "longitude" "-9.2330331" "latitude" "38.6732759" "last_login" "1599624714" +HSET "user:2975" "first_name" "Niki" "last_name" "Piburn" "email" "npiburnr2@ask.com" "gender" "female" "ip_address" "126.174.68.36" "country" "France" "country_code" "FR" "city" "Strasbourg" "longitude" "7.7342943" "latitude" "48.5851876" "last_login" "1576568661" +HSET "user:2976" "first_name" "Thibaut" "last_name" "Hancill" "email" "thancillr3@scribd.com" "gender" "male" "ip_address" "27.135.142.9" "country" "United States" "country_code" "US" "city" "Pasadena" "longitude" "-118.12" "latitude" "34.17" "last_login" "1588964672" +HSET "user:2977" "first_name" "Adel" "last_name" "Lelievre" "email" "alelievrer4@cdbaby.com" "gender" "female" "ip_address" "3.131.207.204" "country" "Japan" "country_code" "JP" "city" "Amagasaki" "longitude" "136.7959808" "latitude" "35.1844489" "last_login" "1578030255" +HSET "user:2978" "first_name" "Lisle" "last_name" "Oliffe" "email" "loliffer5@devhub.com" "gender" "male" "ip_address" "0.197.132.149" "country" "Argentina" "country_code" "AR" "city" "Isla Verde" "longitude" "-64.2316792" "latitude" "-31.4787554" "last_login" "1579068241" +HSET "user:2979" "first_name" "Mercedes" "last_name" "Kelberman" "email" "mkelbermanr6@unblog.fr" "gender" "female" "ip_address" "220.202.212.91" "country" "Portugal" "country_code" "PT" "city" "Capela" "longitude" "-8.2727494" "latitude" "42.103919" "last_login" "1593883547" +HSET "user:2980" "first_name" "Aloysius" "last_name" "Chaves" "email" "achavesr7@scientificamerican.com" "gender" "male" "ip_address" "189.111.221.217" "country" "China" "country_code" "CN" "city" "Xiache" "longitude" "102.521807" "latitude" "35.202503" "last_login" "1586188401" +HSET "user:2981" "first_name" "Albertine" "last_name" "Bichard" "email" "abichardr8@alibaba.com" "gender" "female" "ip_address" "175.234.231.183" "country" "China" "country_code" "CN" "city" "Shuangjie" "longitude" "111.809478" "latitude" "21.951497" "last_login" "1599181495" +HSET "user:2982" "first_name" "Vin" "last_name" "Alenin" "email" "valeninr9@goodreads.com" "gender" "female" "ip_address" "251.77.155.239" "country" "China" "country_code" "CN" "city" "Haolibao" "longitude" "122.749282" "latitude" "42.654146" "last_login" "1581555150" +HSET "user:2983" "first_name" "Jackson" "last_name" "Emblin" "email" "jemblinra@gmpg.org" "gender" "male" "ip_address" "170.202.169.28" "country" "Brazil" "country_code" "BR" "city" "Caçador" "longitude" "-51.0124989" "latitude" "-26.7761609" "last_login" "1575149908" +HSET "user:2984" "first_name" "Rossy" "last_name" "Phillpot" "email" "rphillpotrb@theglobeandmail.com" "gender" "male" "ip_address" "115.191.31.112" "country" "United States" "country_code" "US" "city" "Tulsa" "longitude" "-95.9964783" "latitude" "36.1592882" "last_login" "1571074712" +HSET "user:2985" "first_name" "Clementia" "last_name" "Blackaby" "email" "cblackabyrc@statcounter.com" "gender" "female" "ip_address" "227.229.134.88" "country" "Indonesia" "country_code" "ID" "city" "Sapat" "longitude" "103.3702811" "latitude" "-0.3372032" "last_login" "1594825290" +HSET "user:2986" "first_name" "Llywellyn" "last_name" "Maestro" "email" "lmaestrord@nba.com" "gender" "male" "ip_address" "101.128.146.13" "country" "Philippines" "country_code" "PH" "city" "Pando" "longitude" "120.596202" "latitude" "16.416095" "last_login" "1592162188" +HSET "user:2987" "first_name" "Arluene" "last_name" "Raincin" "email" "araincinre@nydailynews.com" "gender" "female" "ip_address" "246.113.172.117" "country" "Poland" "country_code" "PL" "city" "Zator" "longitude" "19.4374699" "latitude" "49.99621" "last_login" "1574741932" +HSET "user:2988" "first_name" "Ginni" "last_name" "Robbey" "email" "grobbeyrf@storify.com" "gender" "female" "ip_address" "172.198.216.6" "country" "France" "country_code" "FR" "city" "Puget-sur-Argens" "longitude" "6.685055" "latitude" "43.455312" "last_login" "1583126169" +HSET "user:2989" "first_name" "Oren" "last_name" "Hendrix" "email" "ohendrixrg@theguardian.com" "gender" "male" "ip_address" "255.140.226.145" "country" "Indonesia" "country_code" "ID" "city" "Pringgabaya" "longitude" "116.6435436" "latitude" "-8.5373782" "last_login" "1595280268" +HSET "user:2990" "first_name" "Denver" "last_name" "Tyers" "email" "dtyersrh@live.com" "gender" "male" "ip_address" "90.26.103.45" "country" "Indonesia" "country_code" "ID" "city" "Nihaona" "longitude" "106.8198946" "latitude" "-6.2035969" "last_login" "1572617722" +HSET "user:2991" "first_name" "Homerus" "last_name" "Pettegre" "email" "hpettegreri@yelp.com" "gender" "male" "ip_address" "225.161.58.85" "country" "China" "country_code" "CN" "city" "Ankou" "longitude" "118.015602" "latitude" "27.353091" "last_login" "1568802755" +HSET "user:2992" "first_name" "Kathye" "last_name" "Chandler" "email" "kchandlerrj@aboutads.info" "gender" "female" "ip_address" "45.243.39.35" "country" "Indonesia" "country_code" "ID" "city" "Talu" "longitude" "100.0024084" "latitude" "0.2118181" "last_login" "1591711539" +HSET "user:2993" "first_name" "Jermaine" "last_name" "Mossman" "email" "jmossmanrk@unesco.org" "gender" "female" "ip_address" "106.11.95.112" "country" "Vietnam" "country_code" "VN" "city" "Mỹ Thọ" "longitude" "106.3438891" "latitude" "10.3765284" "last_login" "1589165738" +HSET "user:2994" "first_name" "Flint" "last_name" "Tortice" "email" "ftorticerl@aol.com" "gender" "male" "ip_address" "98.63.108.189" "country" "China" "country_code" "CN" "city" "Wufeng" "longitude" "110.674706" "latitude" "30.199688" "last_login" "1574065268" +HSET "user:2995" "first_name" "Junette" "last_name" "Preuvost" "email" "jpreuvostrm@springer.com" "gender" "female" "ip_address" "156.90.223.137" "country" "Kazakhstan" "country_code" "KZ" "city" "Semey" "longitude" "80.250811" "latitude" "50.4233463" "last_login" "1579183799" +HSET "user:2996" "first_name" "Jennica" "last_name" "MacRedmond" "email" "jmacredmondrn@hatena.ne.jp" "gender" "female" "ip_address" "78.122.64.138" "country" "China" "country_code" "CN" "city" "Dajie" "longitude" "113.973592" "latitude" "39.344338" "last_login" "1580193752" +HSET "user:2997" "first_name" "Ianthe" "last_name" "Munro" "email" "imunroro@jiathis.com" "gender" "female" "ip_address" "139.109.85.89" "country" "Slovenia" "country_code" "SI" "city" "Šoštanj" "longitude" "15.0461378" "latitude" "46.3782836" "last_login" "1576085629" +HSET "user:2998" "first_name" "Sherri" "last_name" "Navan" "email" "snavanrp@si.edu" "gender" "female" "ip_address" "23.6.207.95" "country" "Russia" "country_code" "RU" "city" "Prokhorovka" "longitude" "36.7302535" "latitude" "51.03701" "last_login" "1592534778" +HSET "user:2999" "first_name" "Imelda" "last_name" "Neath" "email" "ineathrq@nymag.com" "gender" "female" "ip_address" "3.228.158.3" "country" "Indonesia" "country_code" "ID" "city" "Maunuri" "longitude" "121.2806" "latitude" "-8.8899" "last_login" "1581452643" +HSET "user:3000" "first_name" "Wallace" "last_name" "Lydiard" "email" "wlydiardrr@bravesites.com" "gender" "male" "ip_address" "193.202.99.244" "country" "France" "country_code" "FR" "city" "Douarnenez" "longitude" "-4.33096" "latitude" "48.0930765" "last_login" "1569246689" +HSET "user:3001" "first_name" "Lauralee" "last_name" "Jeremiah" "email" "ljeremiah0@admin.ch" "gender" "female" "ip_address" "201.121.222.0" "country" "Poland" "country_code" "PL" "city" "Szelków" "longitude" "21.2097479" "latitude" "52.8208769" "last_login" "1578400799" +HSET "user:3002" "first_name" "Quinta" "last_name" "Troake" "email" "qtroake1@independent.co.uk" "gender" "female" "ip_address" "122.184.247.149" "country" "China" "country_code" "CN" "city" "Huayuan" "longitude" "109.482078" "latitude" "28.572029" "last_login" "1585072307" +HSET "user:3003" "first_name" "Jany" "last_name" "Raoult" "email" "jraoult2@sina.com.cn" "gender" "female" "ip_address" "157.86.229.232" "country" "Peru" "country_code" "PE" "city" "Santo Tomas" "longitude" "-72.0794063" "latitude" "-14.4485861" "last_login" "1579461236" +HSET "user:3004" "first_name" "Liane" "last_name" "Tuckwell" "email" "ltuckwell3@shareasale.com" "gender" "female" "ip_address" "223.38.9.75" "country" "China" "country_code" "CN" "city" "Qingquan" "longitude" "112.0069982" "latitude" "27.7303815" "last_login" "1581870099" +HSET "user:3005" "first_name" "Ava" "last_name" "Antrobus" "email" "aantrobus4@amazonaws.com" "gender" "female" "ip_address" "217.153.177.100" "country" "France" "country_code" "FR" "city" "Paris La Défense" "longitude" "2.2372792" "latitude" "48.890054" "last_login" "1575812203" +HSET "user:3006" "first_name" "Binnie" "last_name" "Dearman" "email" "bdearman5@cloudflare.com" "gender" "female" "ip_address" "137.210.118.21" "country" "Japan" "country_code" "JP" "city" "Gojō" "longitude" "135.6964987" "latitude" "34.3507417" "last_login" "1581173186" +HSET "user:3007" "first_name" "Catha" "last_name" "Geldert" "email" "cgeldert6@usgs.gov" "gender" "female" "ip_address" "186.40.100.189" "country" "China" "country_code" "CN" "city" "Baita" "longitude" "123.174325" "latitude" "41.270347" "last_login" "1584471807" +HSET "user:3008" "first_name" "Armstrong" "last_name" "Fillary" "email" "afillary7@ca.gov" "gender" "male" "ip_address" "72.121.181.105" "country" "Canada" "country_code" "CA" "city" "Collingwood" "longitude" "-80.2169047" "latitude" "44.5007687" "last_login" "1595687341" +HSET "user:3009" "first_name" "Regan" "last_name" "Shooter" "email" "rshooter8@newsvine.com" "gender" "male" "ip_address" "214.190.188.99" "country" "Czech Republic" "country_code" "CZ" "city" "Milevsko" "longitude" "14.3600091" "latitude" "49.4508975" "last_login" "1586273053" +HSET "user:3010" "first_name" "Aileen" "last_name" "Raynes" "email" "araynes9@sina.com.cn" "gender" "female" "ip_address" "130.107.210.227" "country" "North Korea" "country_code" "KP" "city" "Sil-li" "longitude" "126.5151395" "latitude" "39.8286394" "last_login" "1599649734" +HSET "user:3011" "first_name" "Charmane" "last_name" "Spaunton" "email" "cspauntona@de.vu" "gender" "female" "ip_address" "90.51.2.106" "country" "Japan" "country_code" "JP" "city" "Tsuruga" "longitude" "139.3739616" "latitude" "37.9440927" "last_login" "1592037843" +HSET "user:3012" "first_name" "Clarence" "last_name" "Channon" "email" "cchannonb@cloudflare.com" "gender" "male" "ip_address" "150.247.18.162" "country" "Thailand" "country_code" "TH" "city" "Chaloem Phra Kiat" "longitude" "98.6111657" "latitude" "9.9533828" "last_login" "1590212690" +HSET "user:3013" "first_name" "Giavani" "last_name" "McLeoid" "email" "gmcleoidc@cyberchimps.com" "gender" "male" "ip_address" "162.24.103.185" "country" "Brazil" "country_code" "BR" "city" "Marechal Deodoro" "longitude" "-35.897056" "latitude" "-9.710143" "last_login" "1582554440" +HSET "user:3014" "first_name" "Aleen" "last_name" "Kelling" "email" "akellingd@php.net" "gender" "female" "ip_address" "95.43.24.207" "country" "South Africa" "country_code" "ZA" "city" "Graksop" "longitude" "30.7565467" "latitude" "-24.6258027" "last_login" "1595478167" +HSET "user:3015" "first_name" "Enrica" "last_name" "Sketcher" "email" "esketchere@tiny.cc" "gender" "female" "ip_address" "100.86.9.115" "country" "Russia" "country_code" "RU" "city" "Nyandoma" "longitude" "40.2019954" "latitude" "61.6614104" "last_login" "1572669386" +HSET "user:3016" "first_name" "Catherin" "last_name" "Brawson" "email" "cbrawsonf@jalbum.net" "gender" "female" "ip_address" "18.145.126.107" "country" "United States" "country_code" "US" "city" "Columbus" "longitude" "-83" "latitude" "39.96" "last_login" "1572977328" +HSET "user:3017" "first_name" "Trina" "last_name" "Ithell" "email" "tithellg@nba.com" "gender" "female" "ip_address" "44.125.44.14" "country" "Portugal" "country_code" "PT" "city" "Trafaria" "longitude" "-9.2330331" "latitude" "38.6732759" "last_login" "1575250391" +HSET "user:3018" "first_name" "Odelia" "last_name" "Houseago" "email" "ohouseagoh@yolasite.com" "gender" "female" "ip_address" "203.182.161.166" "country" "Portugal" "country_code" "PT" "city" "Flor da Mata" "longitude" "-9.1057581" "latitude" "38.6032329" "last_login" "1584190846" +HSET "user:3019" "first_name" "Truda" "last_name" "Brissard" "email" "tbrissardi@google.it" "gender" "female" "ip_address" "177.119.230.21" "country" "Sweden" "country_code" "SE" "city" "Karlskrona" "longitude" "15.6058647" "latitude" "56.2614625" "last_login" "1591755465" +HSET "user:3020" "first_name" "Hirsch" "last_name" "Mc Giffin" "email" "hmcgiffinj@liveinternet.ru" "gender" "male" "ip_address" "194.45.152.123" "country" "Mexico" "country_code" "MX" "city" "Emiliano Zapata" "longitude" "-99.1843676" "latitude" "18.8478608" "last_login" "1575822375" +HSET "user:3021" "first_name" "Rufus" "last_name" "Lyes" "email" "rlyesk@home.pl" "gender" "male" "ip_address" "247.76.157.181" "country" "Yemen" "country_code" "YE" "city" "Ḩawf" "longitude" "53.0311171" "latitude" "16.6337461" "last_login" "1585781458" +HSET "user:3022" "first_name" "Patton" "last_name" "Cuel" "email" "pcuell@howstuffworks.com" "gender" "male" "ip_address" "117.74.98.164" "country" "China" "country_code" "CN" "city" "Hailin" "longitude" "129.380481" "latitude" "44.594213" "last_login" "1586001797" +HSET "user:3023" "first_name" "Yard" "last_name" "Peake" "email" "ypeakem@slideshare.net" "gender" "male" "ip_address" "49.9.130.143" "country" "Czech Republic" "country_code" "CZ" "city" "Jesenice" "longitude" "12.4747444" "latitude" "50.0843138" "last_login" "1572327787" +HSET "user:3024" "first_name" "Amata" "last_name" "Wallhead" "email" "awallheadn@nyu.edu" "gender" "female" "ip_address" "108.78.143.118" "country" "China" "country_code" "CN" "city" "Kongtian" "longitude" "115.310042" "latitude" "24.923028" "last_login" "1589441101" +HSET "user:3025" "first_name" "Urbanus" "last_name" "Dufour" "email" "udufouro@pinterest.com" "gender" "male" "ip_address" "27.196.212.19" "country" "Indonesia" "country_code" "ID" "city" "Fatukanutu" "longitude" "123.9136675" "latitude" "-10.1749074" "last_login" "1574467679" +HSET "user:3026" "first_name" "Camile" "last_name" "Jolliff" "email" "cjolliffp@g.co" "gender" "female" "ip_address" "49.56.58.253" "country" "Haiti" "country_code" "HT" "city" "Torbeck" "longitude" "-73.8110279" "latitude" "18.1646497" "last_login" "1572764598" +HSET "user:3027" "first_name" "Eadith" "last_name" "Greggersen" "email" "egreggersenq@diigo.com" "gender" "female" "ip_address" "69.189.220.33" "country" "China" "country_code" "CN" "city" "Nanying" "longitude" "114.816881" "latitude" "37.953529" "last_login" "1571444483" +HSET "user:3028" "first_name" "Joscelin" "last_name" "Beagen" "email" "jbeagenr@marriott.com" "gender" "female" "ip_address" "71.117.146.52" "country" "Croatia" "country_code" "HR" "city" "Kamen" "longitude" "16.5201503" "latitude" "43.5111646" "last_login" "1595498020" +HSET "user:3029" "first_name" "Isobel" "last_name" "Saynor" "email" "isaynors@miibeian.gov.cn" "gender" "female" "ip_address" "157.231.143.36" "country" "China" "country_code" "CN" "city" "Shaxi" "longitude" "99.850365" "latitude" "26.312444" "last_login" "1576553695" +HSET "user:3030" "first_name" "Iain" "last_name" "Coast" "email" "icoastt@bing.com" "gender" "male" "ip_address" "200.5.78.190" "country" "Iran" "country_code" "IR" "city" "Namīn" "longitude" "48.4782419" "latitude" "38.4244545" "last_login" "1575314541" +HSET "user:3031" "first_name" "Joli" "last_name" "Beaze" "email" "jbeazeu@amazonaws.com" "gender" "female" "ip_address" "17.76.255.180" "country" "China" "country_code" "CN" "city" "Zhoukou" "longitude" "114.69695" "latitude" "33.626149" "last_login" "1578096647" +HSET "user:3032" "first_name" "Rodd" "last_name" "Borwick" "email" "rborwickv@issuu.com" "gender" "male" "ip_address" "50.230.254.45" "country" "Lithuania" "country_code" "LT" "city" "Panevėžys" "longitude" "24.3713362" "latitude" "55.7452926" "last_login" "1589465986" +HSET "user:3033" "first_name" "Haze" "last_name" "Gellion" "email" "hgellionw@usnews.com" "gender" "male" "ip_address" "201.14.254.119" "country" "Suriname" "country_code" "SR" "city" "Moengo" "longitude" "-54.398656" "latitude" "5.6080848" "last_login" "1598804402" +HSET "user:3034" "first_name" "Denys" "last_name" "Jirieck" "email" "djirieckx@java.com" "gender" "female" "ip_address" "226.159.182.84" "country" "Russia" "country_code" "RU" "city" "Krasnyy Kholm" "longitude" "37.1162575" "latitude" "58.0580802" "last_login" "1580691881" +HSET "user:3035" "first_name" "Malinda" "last_name" "McNiff" "email" "mmcniffy@google.com.br" "gender" "female" "ip_address" "200.244.141.68" "country" "Sweden" "country_code" "SE" "city" "Åhus" "longitude" "14.2805021" "latitude" "55.9651943" "last_login" "1598347132" +HSET "user:3036" "first_name" "Mozelle" "last_name" "Weber" "email" "mweberz@webs.com" "gender" "female" "ip_address" "10.172.42.62" "country" "United States" "country_code" "US" "city" "Saint Petersburg" "longitude" "-82.723924" "latitude" "27.791959" "last_login" "1591989574" +HSET "user:3037" "first_name" "Pepe" "last_name" "Benson" "email" "pbenson10@reverbnation.com" "gender" "male" "ip_address" "156.180.224.253" "country" "Indonesia" "country_code" "ID" "city" "Grati Satu" "longitude" "112.9827091" "latitude" "-7.7016409" "last_login" "1580006131" +HSET "user:3038" "first_name" "Petronia" "last_name" "Helks" "email" "phelks11@fema.gov" "gender" "female" "ip_address" "79.92.175.240" "country" "Indonesia" "country_code" "ID" "city" "Soe" "longitude" "124.2754988" "latitude" "-9.8596373" "last_login" "1579417260" +HSET "user:3039" "first_name" "Ema" "last_name" "Beresfore" "email" "eberesfore12@stanford.edu" "gender" "female" "ip_address" "34.204.64.146" "country" "China" "country_code" "CN" "city" "Taiping" "longitude" "-6.2634596" "latitude" "53.3004898" "last_login" "1592568891" +HSET "user:3040" "first_name" "Karilynn" "last_name" "Landis" "email" "klandis13@feedburner.com" "gender" "female" "ip_address" "238.233.30.175" "country" "China" "country_code" "CN" "city" "Yangying" "longitude" "118.674614" "latitude" "37.433963" "last_login" "1570862925" +HSET "user:3041" "first_name" "Christiana" "last_name" "Havik" "email" "chavik14@feedburner.com" "gender" "female" "ip_address" "161.236.174.108" "country" "Thailand" "country_code" "TH" "city" "Tha Ruea" "longitude" "100.6985155" "latitude" "14.5410506" "last_login" "1591752130" +HSET "user:3042" "first_name" "Ninnetta" "last_name" "Klimushev" "email" "nklimushev15@issuu.com" "gender" "female" "ip_address" "101.119.197.211" "country" "Indonesia" "country_code" "ID" "city" "Ngurensiti" "longitude" "111.0967118" "latitude" "-6.6998601" "last_login" "1571095477" +HSET "user:3043" "first_name" "Theresa" "last_name" "Fleckness" "email" "tfleckness16@bravesites.com" "gender" "female" "ip_address" "98.83.242.23" "country" "Madagascar" "country_code" "MG" "city" "Tsiombe" "longitude" "45.4863093" "latitude" "-25.3168473" "last_login" "1590391354" +HSET "user:3044" "first_name" "Kellina" "last_name" "Mattityahou" "email" "kmattityahou17@webnode.com" "gender" "female" "ip_address" "43.99.48.202" "country" "Niger" "country_code" "NE" "city" "Alaghsas" "longitude" "8.0168" "latitude" "17.0187" "last_login" "1588287449" +HSET "user:3045" "first_name" "Dorene" "last_name" "Geffe" "email" "dgeffe18@paypal.com" "gender" "female" "ip_address" "214.39.159.195" "country" "Russia" "country_code" "RU" "city" "Kizel" "longitude" "57.6558829" "latitude" "58.9607635" "last_login" "1579505075" +HSET "user:3046" "first_name" "Hugo" "last_name" "Mablestone" "email" "hmablestone19@nba.com" "gender" "male" "ip_address" "95.131.168.165" "country" "Mexico" "country_code" "MX" "city" "Cuauhtemoc" "longitude" "-99.2037508" "latitude" "18.8086564" "last_login" "1592972157" +HSET "user:3047" "first_name" "Vernice" "last_name" "Denkel" "email" "vdenkel1a@technorati.com" "gender" "female" "ip_address" "100.28.174.142" "country" "Ukraine" "country_code" "UA" "city" "Shpola" "longitude" "31.4022422" "latitude" "48.9969392" "last_login" "1589222662" +HSET "user:3048" "first_name" "Maximilian" "last_name" "Persse" "email" "mpersse1b@addthis.com" "gender" "male" "ip_address" "238.172.219.213" "country" "Russia" "country_code" "RU" "city" "Rybnoye" "longitude" "39.507098" "latitude" "54.732298" "last_login" "1593274470" +HSET "user:3049" "first_name" "Babs" "last_name" "Lanfer" "email" "blanfer1c@shinystat.com" "gender" "female" "ip_address" "153.75.192.175" "country" "Argentina" "country_code" "AR" "city" "Malvinas Argentinas" "longitude" "-58.586937" "latitude" "-34.4753246" "last_login" "1584483184" +HSET "user:3050" "first_name" "Ninnette" "last_name" "Cremin" "email" "ncremin1d@cafepress.com" "gender" "female" "ip_address" "123.69.214.238" "country" "Nepal" "country_code" "NP" "city" "Dārchulā" "longitude" "80.7657804" "latitude" "29.8812097" "last_login" "1575897223" +HSET "user:3051" "first_name" "Jelene" "last_name" "Labern" "email" "jlabern1e@mysql.com" "gender" "female" "ip_address" "176.242.41.169" "country" "El Salvador" "country_code" "SV" "city" "Usulután" "longitude" "-88.556531" "latitude" "13.4470634" "last_login" "1579563798" +HSET "user:3052" "first_name" "Irving" "last_name" "Celloni" "email" "icelloni1f@quantcast.com" "gender" "male" "ip_address" "163.12.159.26" "country" "Sweden" "country_code" "SE" "city" "Vellinge" "longitude" "13.0125224" "latitude" "55.4738346" "last_login" "1577143014" +HSET "user:3053" "first_name" "Siward" "last_name" "Murrow" "email" "smurrow1g@blogtalkradio.com" "gender" "male" "ip_address" "46.226.222.79" "country" "China" "country_code" "CN" "city" "Shuitianzhuang" "longitude" "110.814125" "latitude" "28.041005" "last_login" "1589174582" +HSET "user:3054" "first_name" "Willi" "last_name" "Joynes" "email" "wjoynes1h@theatlantic.com" "gender" "male" "ip_address" "29.197.190.217" "country" "Portugal" "country_code" "PT" "city" "Sobral da Adiça" "longitude" "-7.2626804" "latitude" "38.0206378" "last_login" "1594721778" +HSET "user:3055" "first_name" "Berti" "last_name" "Jimmison" "email" "bjimmison1i@wix.com" "gender" "female" "ip_address" "234.106.184.149" "country" "Paraguay" "country_code" "PY" "city" "Isla Pucú" "longitude" "-56.9014072" "latitude" "-25.3088443" "last_login" "1580640674" +HSET "user:3056" "first_name" "Cindy" "last_name" "Navarre" "email" "cnavarre1j@xrea.com" "gender" "female" "ip_address" "94.106.241.46" "country" "Peru" "country_code" "PE" "city" "Copa" "longitude" "-77.492203" "latitude" "-10.37092" "last_login" "1599746899" +HSET "user:3057" "first_name" "Sileas" "last_name" "Gutteridge" "email" "sgutteridge1k@prnewswire.com" "gender" "female" "ip_address" "44.221.218.228" "country" "Philippines" "country_code" "PH" "city" "Panikian" "longitude" "125.9334539" "latitude" "9.3296921" "last_login" "1596302828" +HSET "user:3058" "first_name" "Teddie" "last_name" "Pratten" "email" "tpratten1l@jalbum.net" "gender" "female" "ip_address" "207.164.201.100" "country" "Philippines" "country_code" "PH" "city" "Cordon" "longitude" "121.451539" "latitude" "16.663904" "last_login" "1598891268" +HSET "user:3059" "first_name" "Fleurette" "last_name" "Carnihan" "email" "fcarnihan1m@eventbrite.com" "gender" "female" "ip_address" "140.186.198.61" "country" "Russia" "country_code" "RU" "city" "Perm" "longitude" "56.1415665" "latitude" "57.9887927" "last_login" "1590107473" +HSET "user:3060" "first_name" "Kristen" "last_name" "Toffetto" "email" "ktoffetto1n@huffingtonpost.com" "gender" "female" "ip_address" "184.124.160.46" "country" "Philippines" "country_code" "PH" "city" "Santa Monica" "longitude" "126.0415372" "latitude" "10.0342937" "last_login" "1571363720" +HSET "user:3061" "first_name" "Lise" "last_name" "Heikkinen" "email" "lheikkinen1o@moonfruit.com" "gender" "female" "ip_address" "160.91.248.7" "country" "Portugal" "country_code" "PT" "city" "Além" "longitude" "-8.3593779" "latitude" "41.1690927" "last_login" "1575663394" +HSET "user:3062" "first_name" "Lishe" "last_name" "Pic" "email" "lpic1p@sphinn.com" "gender" "female" "ip_address" "171.144.5.250" "country" "Saudi Arabia" "country_code" "SA" "city" "Mizhirah" "longitude" "42.7344873" "latitude" "16.8263127" "last_login" "1576377197" +HSET "user:3063" "first_name" "Neville" "last_name" "Iglesia" "email" "niglesia1q@com.com" "gender" "male" "ip_address" "4.244.48.29" "country" "China" "country_code" "CN" "city" "Obo" "longitude" "123.3695459" "latitude" "41.7941883" "last_login" "1582531578" +HSET "user:3064" "first_name" "Pavla" "last_name" "Doxey" "email" "pdoxey1r@ca.gov" "gender" "female" "ip_address" "168.137.170.174" "country" "France" "country_code" "FR" "city" "Le Mans" "longitude" "0.1924459" "latitude" "47.9956173" "last_login" "1595210086" +HSET "user:3065" "first_name" "Stanleigh" "last_name" "Franchyonok" "email" "sfranchyonok1s@princeton.edu" "gender" "male" "ip_address" "80.22.62.222" "country" "Spain" "country_code" "ES" "city" "Elx/Elche" "longitude" "-0.6322615" "latitude" "38.2911575" "last_login" "1590919923" +HSET "user:3066" "first_name" "Ida" "last_name" "Woodwing" "email" "iwoodwing1t@umich.edu" "gender" "female" "ip_address" "141.203.63.165" "country" "Indonesia" "country_code" "ID" "city" "Wairiang" "longitude" "104.0115689" "latitude" "1.1322476" "last_login" "1586705210" +HSET "user:3067" "first_name" "Brand" "last_name" "Boggs" "email" "bboggs1u@vkontakte.ru" "gender" "male" "ip_address" "93.46.229.60" "country" "France" "country_code" "FR" "city" "Rennes" "longitude" "-1.7274799" "latitude" "48.1752793" "last_login" "1573123608" +HSET "user:3068" "first_name" "Washington" "last_name" "Finlayson" "email" "wfinlayson1v@who.int" "gender" "male" "ip_address" "8.50.34.1" "country" "China" "country_code" "CN" "city" "Boji" "longitude" "107.237743" "latitude" "34.363184" "last_login" "1589087277" +HSET "user:3069" "first_name" "Orlan" "last_name" "Yurchenko" "email" "oyurchenko1w@forbes.com" "gender" "male" "ip_address" "130.55.253.100" "country" "Thailand" "country_code" "TH" "city" "Ratchaburi" "longitude" "99.8276962" "latitude" "13.5368344" "last_login" "1569136110" +HSET "user:3070" "first_name" "Dolf" "last_name" "Pedrielli" "email" "dpedrielli1x@sitemeter.com" "gender" "male" "ip_address" "145.252.175.26" "country" "Japan" "country_code" "JP" "city" "Yashiro" "longitude" "135.8074728" "latitude" "35.5267333" "last_login" "1587067560" +HSET "user:3071" "first_name" "Arnuad" "last_name" "Jewis" "email" "ajewis1y@livejournal.com" "gender" "male" "ip_address" "243.68.88.162" "country" "Japan" "country_code" "JP" "city" "Kariya" "longitude" "140.5203882" "latitude" "37.841046" "last_login" "1592189543" +HSET "user:3072" "first_name" "Remus" "last_name" "Rampage" "email" "rrampage1z@accuweather.com" "gender" "male" "ip_address" "80.21.146.47" "country" "Honduras" "country_code" "HN" "city" "Omoa" "longitude" "-88.0265257" "latitude" "15.7790394" "last_login" "1592436505" +HSET "user:3073" "first_name" "Tailor" "last_name" "Kittless" "email" "tkittless20@amazonaws.com" "gender" "male" "ip_address" "23.223.229.134" "country" "Mongolia" "country_code" "MN" "city" "Rashaant" "longitude" "101.449837" "latitude" "49.1169513" "last_login" "1588876762" +HSET "user:3074" "first_name" "Laurent" "last_name" "Betterton" "email" "lbetterton21@msu.edu" "gender" "male" "ip_address" "231.12.142.19" "country" "Czech Republic" "country_code" "CZ" "city" "Hanušovice" "longitude" "16.9364145" "latitude" "50.0804826" "last_login" "1586204713" +HSET "user:3075" "first_name" "Ferguson" "last_name" "Dowry" "email" "fdowry22@china.com.cn" "gender" "male" "ip_address" "0.53.189.190" "country" "Ukraine" "country_code" "UA" "city" "Novomoskovs’k" "longitude" "35.2241571" "latitude" "48.6329614" "last_login" "1599871102" +HSET "user:3076" "first_name" "Janina" "last_name" "McMorland" "email" "jmcmorland23@forbes.com" "gender" "female" "ip_address" "38.99.166.63" "country" "Azerbaijan" "country_code" "AZ" "city" "Pushkino" "longitude" "48.5509813" "latitude" "39.4598833" "last_login" "1592079054" +HSET "user:3077" "first_name" "Meris" "last_name" "McConnulty" "email" "mmcconnulty24@spotify.com" "gender" "female" "ip_address" "87.226.182.2" "country" "Sweden" "country_code" "SE" "city" "Uppsala" "longitude" "17.6188276" "latitude" "59.811981" "last_login" "1589140770" +HSET "user:3078" "first_name" "Alfi" "last_name" "King" "email" "aking25@jiathis.com" "gender" "female" "ip_address" "234.55.60.128" "country" "China" "country_code" "CN" "city" "Shekou" "longitude" "113.916509" "latitude" "22.483182" "last_login" "1571064326" +HSET "user:3079" "first_name" "Mirabel" "last_name" "Mercik" "email" "mmercik26@shutterfly.com" "gender" "female" "ip_address" "20.246.1.208" "country" "Ukraine" "country_code" "UA" "city" "Kalanchak" "longitude" "33.2989663" "latitude" "46.2559467" "last_login" "1596773595" +HSET "user:3080" "first_name" "Nilson" "last_name" "Spruce" "email" "nspruce27@un.org" "gender" "male" "ip_address" "47.234.2.141" "country" "Croatia" "country_code" "HR" "city" "Velika" "longitude" "17.6623801" "latitude" "45.4555091" "last_login" "1576807819" +HSET "user:3081" "first_name" "Ingemar" "last_name" "Dubbin" "email" "idubbin28@csmonitor.com" "gender" "male" "ip_address" "208.58.147.19" "country" "Croatia" "country_code" "HR" "city" "Punat" "longitude" "14.6315962" "latitude" "45.020739" "last_login" "1583272169" +HSET "user:3082" "first_name" "Hinda" "last_name" "Wilshin" "email" "hwilshin29@google.co.jp" "gender" "female" "ip_address" "67.94.34.165" "country" "Argentina" "country_code" "AR" "city" "Esquel" "longitude" "-71.301904" "latitude" "-42.906336" "last_login" "1571041303" +HSET "user:3083" "first_name" "Gil" "last_name" "Westcarr" "email" "gwestcarr2a@shop-pro.jp" "gender" "male" "ip_address" "27.171.107.165" "country" "China" "country_code" "CN" "city" "Dongjie" "longitude" "119.3028774" "latitude" "26.08603" "last_login" "1590348623" +HSET "user:3084" "first_name" "Town" "last_name" "Deveral" "email" "tdeveral2b@prlog.org" "gender" "male" "ip_address" "80.49.250.99" "country" "France" "country_code" "FR" "city" "Castres" "longitude" "2.1365748" "latitude" "43.7058177" "last_login" "1583975649" +HSET "user:3085" "first_name" "Kori" "last_name" "Kilbey" "email" "kkilbey2c@ucsd.edu" "gender" "female" "ip_address" "83.203.63.13" "country" "Indonesia" "country_code" "ID" "city" "Gobang" "longitude" "106.6497623" "latitude" "-6.517669" "last_login" "1568950414" +HSET "user:3086" "first_name" "Burt" "last_name" "Cotter" "email" "bcotter2d@soundcloud.com" "gender" "male" "ip_address" "230.212.145.176" "country" "El Salvador" "country_code" "SV" "city" "Texistepeque" "longitude" "-89.4954794" "latitude" "14.1257455" "last_login" "1581392003" +HSET "user:3087" "first_name" "Griffith" "last_name" "Sporton" "email" "gsporton2e@amazon.co.uk" "gender" "male" "ip_address" "92.224.41.180" "country" "China" "country_code" "CN" "city" "Fuwen" "longitude" "-74.1386906" "latitude" "4.6690872" "last_login" "1580385405" +HSET "user:3088" "first_name" "Eliza" "last_name" "Hammell" "email" "ehammell2f@si.edu" "gender" "female" "ip_address" "187.37.78.71" "country" "Brazil" "country_code" "BR" "city" "Sarandi" "longitude" "-52.9164069" "latitude" "-27.946449" "last_login" "1591851278" +HSET "user:3089" "first_name" "Oralee" "last_name" "Culvey" "email" "oculvey2g@theatlantic.com" "gender" "female" "ip_address" "133.237.209.162" "country" "China" "country_code" "CN" "city" "Silao" "longitude" "108.40254" "latitude" "23.892873" "last_login" "1583414991" +HSET "user:3090" "first_name" "Izzy" "last_name" "McIlvenna" "email" "imcilvenna2h@theguardian.com" "gender" "male" "ip_address" "45.76.6.143" "country" "Indonesia" "country_code" "ID" "city" "Cogreg Wetan" "longitude" "106.6989632" "latitude" "-6.4610391" "last_login" "1599550122" +HSET "user:3091" "first_name" "Shalna" "last_name" "Labern" "email" "slabern2i@economist.com" "gender" "female" "ip_address" "117.136.196.80" "country" "China" "country_code" "CN" "city" "Xiangshan" "longitude" "121.869339" "latitude" "29.476705" "last_login" "1590533973" +HSET "user:3092" "first_name" "Mario" "last_name" "Gartenfeld" "email" "mgartenfeld2j@csmonitor.com" "gender" "male" "ip_address" "109.203.156.77" "country" "Kazakhstan" "country_code" "KZ" "city" "Ayteke Bi" "longitude" "62.1557992" "latitude" "45.8520381" "last_login" "1591990998" +HSET "user:3093" "first_name" "Glendon" "last_name" "Gregson" "email" "ggregson2k@dailymail.co.uk" "gender" "male" "ip_address" "11.161.88.29" "country" "Japan" "country_code" "JP" "city" "Namioka" "longitude" "138.9151434" "latitude" "37.7343371" "last_login" "1591120377" +HSET "user:3094" "first_name" "Valene" "last_name" "Digby" "email" "vdigby2l@trellian.com" "gender" "female" "ip_address" "136.255.209.231" "country" "Syria" "country_code" "SY" "city" "Al Mālikīyah" "longitude" "42.1355904" "latitude" "37.1766607" "last_login" "1571219658" +HSET "user:3095" "first_name" "Annabella" "last_name" "Terry" "email" "aterry2m@mapy.cz" "gender" "female" "ip_address" "66.7.74.83" "country" "Indonesia" "country_code" "ID" "city" "Selajambe Satu" "longitude" "108.45883" "latitude" "-7.11833" "last_login" "1590916383" +HSET "user:3096" "first_name" "Holmes" "last_name" "Walsh" "email" "hwalsh2n@wikimedia.org" "gender" "male" "ip_address" "38.165.211.237" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Bắc Hà" "longitude" "104.2890194" "latitude" "22.5383534" "last_login" "1569833538" +HSET "user:3097" "first_name" "Penny" "last_name" "Myring" "email" "pmyring2o@tinypic.com" "gender" "female" "ip_address" "114.55.240.33" "country" "Indonesia" "country_code" "ID" "city" "Godong" "longitude" "110.7480064" "latitude" "-7.0519444" "last_login" "1596588325" +HSET "user:3098" "first_name" "Roxane" "last_name" "Tawton" "email" "rtawton2p@domainmarket.com" "gender" "female" "ip_address" "249.29.199.210" "country" "Poland" "country_code" "PL" "city" "Daleszyce" "longitude" "20.80789" "latitude" "50.8022561" "last_login" "1574895314" +HSET "user:3099" "first_name" "Eydie" "last_name" "Jiggle" "email" "ejiggle2q@mit.edu" "gender" "female" "ip_address" "146.225.165.20" "country" "Russia" "country_code" "RU" "city" "Niny" "longitude" "43.9408057" "latitude" "44.4868448" "last_login" "1580758117" +HSET "user:3100" "first_name" "Sukey" "last_name" "Muldoon" "email" "smuldoon2r@list-manage.com" "gender" "female" "ip_address" "2.212.84.203" "country" "Russia" "country_code" "RU" "city" "Kiritsy" "longitude" "40.3591276" "latitude" "54.2874959" "last_login" "1590246959" +HSET "user:3101" "first_name" "Hamlen" "last_name" "Brosh" "email" "hbrosh2s@instagram.com" "gender" "male" "ip_address" "84.216.163.77" "country" "Sweden" "country_code" "SE" "city" "Norrköping" "longitude" "15.4323507" "latitude" "58.8965066" "last_login" "1582694251" +HSET "user:3102" "first_name" "Candra" "last_name" "Matchitt" "email" "cmatchitt2t@vistaprint.com" "gender" "female" "ip_address" "197.48.240.27" "country" "Serbia" "country_code" "RS" "city" "Sremski Karlovci" "longitude" "19.9442694" "latitude" "45.1810363" "last_login" "1579573518" +HSET "user:3103" "first_name" "Alla" "last_name" "Gatley" "email" "agatley2u@google.com.br" "gender" "female" "ip_address" "67.7.233.218" "country" "Canada" "country_code" "CA" "city" "Sainte-Thérèse" "longitude" "-73.8394482" "latitude" "45.6181396" "last_login" "1583694434" +HSET "user:3104" "first_name" "Ophelia" "last_name" "Gentiry" "email" "ogentiry2v@whitehouse.gov" "gender" "female" "ip_address" "110.226.26.108" "country" "China" "country_code" "CN" "city" "Fengkou" "longitude" "120.477813" "latitude" "37.646108" "last_login" "1586238959" +HSET "user:3105" "first_name" "Uriah" "last_name" "Yeldham" "email" "uyeldham2w@who.int" "gender" "male" "ip_address" "222.157.205.23" "country" "Netherlands" "country_code" "NL" "city" "Den Haag" "longitude" "4.3610449" "latitude" "52.0563021" "last_login" "1586108754" +HSET "user:3106" "first_name" "Burk" "last_name" "Harrald" "email" "bharrald2x@home.pl" "gender" "male" "ip_address" "227.122.6.212" "country" "Thailand" "country_code" "TH" "city" "Bang Lamung" "longitude" "100.9345401" "latitude" "13.0427506" "last_login" "1593411103" +HSET "user:3107" "first_name" "Immanuel" "last_name" "Tew" "email" "itew2y@europa.eu" "gender" "male" "ip_address" "70.35.146.212" "country" "Colombia" "country_code" "CO" "city" "Villeta" "longitude" "-74.470362" "latitude" "5.011706" "last_login" "1583093428" +HSET "user:3108" "first_name" "Marigold" "last_name" "Nicolson" "email" "mnicolson2z@google.com.au" "gender" "female" "ip_address" "88.135.149.220" "country" "Brazil" "country_code" "BR" "city" "Itapetinga" "longitude" "-40.2509918" "latitude" "-15.2475119" "last_login" "1579423015" +HSET "user:3109" "first_name" "Nananne" "last_name" "Michiel" "email" "nmichiel30@ca.gov" "gender" "female" "ip_address" "135.178.1.180" "country" "Canada" "country_code" "CA" "city" "London" "longitude" "-81.2353612" "latitude" "42.9598744" "last_login" "1584062394" +HSET "user:3110" "first_name" "Hakeem" "last_name" "Balcock" "email" "hbalcock31@vkontakte.ru" "gender" "male" "ip_address" "37.188.18.152" "country" "Russia" "country_code" "RU" "city" "Bogovarovo" "longitude" "47.0220321" "latitude" "58.9764624" "last_login" "1598006114" +HSET "user:3111" "first_name" "Ora" "last_name" "Standeven" "email" "ostandeven32@sitemeter.com" "gender" "female" "ip_address" "209.205.141.120" "country" "Ukraine" "country_code" "UA" "city" "Verkhniy Yasenov" "longitude" "24.9459851" "latitude" "48.1662009" "last_login" "1576675968" +HSET "user:3112" "first_name" "Nomi" "last_name" "Cage" "email" "ncage33@msu.edu" "gender" "female" "ip_address" "107.203.85.222" "country" "Croatia" "country_code" "HR" "city" "Laslovo" "longitude" "18.6959162" "latitude" "45.4146244" "last_login" "1577152505" +HSET "user:3113" "first_name" "Cheston" "last_name" "Dudbridge" "email" "cdudbridge34@usatoday.com" "gender" "male" "ip_address" "183.145.180.69" "country" "Syria" "country_code" "SY" "city" "Ar Ruḩaybah" "longitude" "36.7011138" "latitude" "33.7443314" "last_login" "1592300596" +HSET "user:3114" "first_name" "Niki" "last_name" "Showler" "email" "nshowler35@dyndns.org" "gender" "female" "ip_address" "51.35.129.60" "country" "Indonesia" "country_code" "ID" "city" "Boro" "longitude" "118.2702036" "latitude" "-8.3698126" "last_login" "1574677946" +HSET "user:3115" "first_name" "Corena" "last_name" "Maypother" "email" "cmaypother36@jimdo.com" "gender" "female" "ip_address" "16.52.165.151" "country" "Philippines" "country_code" "PH" "city" "Matayumtayum" "longitude" "120.7090355" "latitude" "15.5160946" "last_login" "1594257040" +HSET "user:3116" "first_name" "Jodee" "last_name" "Motton" "email" "jmotton37@chicagotribune.com" "gender" "female" "ip_address" "53.195.68.109" "country" "Portugal" "country_code" "PT" "city" "Algarvia" "longitude" "-25.231895" "latitude" "37.8450241" "last_login" "1573484696" +HSET "user:3117" "first_name" "Kippy" "last_name" "Bealton" "email" "kbealton38@google.com" "gender" "female" "ip_address" "31.90.17.218" "country" "Ukraine" "country_code" "UA" "city" "Chornoliztsi" "longitude" "24.8993085" "latitude" "48.8277019" "last_login" "1599184863" +HSET "user:3118" "first_name" "Isac" "last_name" "Brunner" "email" "ibrunner39@addtoany.com" "gender" "male" "ip_address" "82.120.189.9" "country" "Poland" "country_code" "PL" "city" "Oborniki Śląskie" "longitude" "16.9148091" "latitude" "51.3009866" "last_login" "1574312215" +HSET "user:3119" "first_name" "Flory" "last_name" "Paten" "email" "fpaten3a@altervista.org" "gender" "female" "ip_address" "102.205.232.48" "country" "Czech Republic" "country_code" "CZ" "city" "Petrov" "longitude" "17.2802878" "latitude" "48.8818933" "last_login" "1592014141" +HSET "user:3120" "first_name" "Sidonia" "last_name" "Spehr" "email" "sspehr3b@unicef.org" "gender" "female" "ip_address" "43.69.37.36" "country" "Mexico" "country_code" "MX" "city" "Las Flores" "longitude" "-106.4530275" "latitude" "23.2423405" "last_login" "1587992059" +HSET "user:3121" "first_name" "Kelby" "last_name" "Wyard" "email" "kwyard3c@hhs.gov" "gender" "male" "ip_address" "43.34.91.126" "country" "Indonesia" "country_code" "ID" "city" "Nularan" "longitude" "125.0265256" "latitude" "-9.4954726" "last_login" "1595036116" +HSET "user:3122" "first_name" "Dawna" "last_name" "Barnard" "email" "dbarnard3d@meetup.com" "gender" "female" "ip_address" "1.125.121.214" "country" "France" "country_code" "FR" "city" "Saint-Brieuc" "longitude" "-2.7393345" "latitude" "48.5116663" "last_login" "1571627215" +HSET "user:3123" "first_name" "Constancia" "last_name" "Waker" "email" "cwaker3e@dailymotion.com" "gender" "female" "ip_address" "206.237.12.115" "country" "China" "country_code" "CN" "city" "Longkou" "longitude" "120.477813" "latitude" "37.646108" "last_login" "1591931594" +HSET "user:3124" "first_name" "Veda" "last_name" "Richmont" "email" "vrichmont3f@cbslocal.com" "gender" "female" "ip_address" "162.238.47.237" "country" "Sri Lanka" "country_code" "LK" "city" "Welisara" "longitude" "79.9020405" "latitude" "7.0241972" "last_login" "1568914491" +HSET "user:3125" "first_name" "Mikol" "last_name" "Cornhill" "email" "mcornhill3g@marketwatch.com" "gender" "male" "ip_address" "134.2.122.148" "country" "Portugal" "country_code" "PT" "city" "Canha" "longitude" "-8.6267126" "latitude" "38.7652981" "last_login" "1577618259" +HSET "user:3126" "first_name" "Anastasia" "last_name" "Murkitt" "email" "amurkitt3h@meetup.com" "gender" "female" "ip_address" "147.4.120.79" "country" "Canada" "country_code" "CA" "city" "Oxford" "longitude" "-63.86542" "latitude" "45.73345" "last_login" "1592510636" +HSET "user:3127" "first_name" "Corly" "last_name" "Oleksiak" "email" "coleksiak3i@va.gov" "gender" "female" "ip_address" "180.174.103.121" "country" "China" "country_code" "CN" "city" "Yongfeng" "longitude" "115.444319" "latitude" "27.318852" "last_login" "1580451060" +HSET "user:3128" "first_name" "Cathee" "last_name" "Van der Linde" "email" "cvanderlinde3j@blogger.com" "gender" "female" "ip_address" "77.139.62.124" "country" "Sweden" "country_code" "SE" "city" "Leksand" "longitude" "15.0446489" "latitude" "60.6858505" "last_login" "1591609954" +HSET "user:3129" "first_name" "Dorelle" "last_name" "Cogswell" "email" "dcogswell3k@ycombinator.com" "gender" "female" "ip_address" "48.52.109.221" "country" "Greece" "country_code" "GR" "city" "Alíartos" "longitude" "23.1060007" "latitude" "38.3741418" "last_login" "1589150144" +HSET "user:3130" "first_name" "Baron" "last_name" "Thrustle" "email" "bthrustle3l@unc.edu" "gender" "male" "ip_address" "45.94.31.33" "country" "China" "country_code" "CN" "city" "Ping’an" "longitude" "127.1219196" "latitude" "47.247125" "last_login" "1584821539" +HSET "user:3131" "first_name" "Ysabel" "last_name" "Durdle" "email" "ydurdle3m@vimeo.com" "gender" "female" "ip_address" "86.196.88.124" "country" "Malaysia" "country_code" "MY" "city" "Kuala Lumpur" "longitude" "101.7178316" "latitude" "3.1523104" "last_login" "1579320236" +HSET "user:3132" "first_name" "Stacy" "last_name" "Hawksley" "email" "shawksley3n@cargocollective.com" "gender" "male" "ip_address" "126.58.13.21" "country" "United States" "country_code" "US" "city" "Newark" "longitude" "-74.1650991" "latitude" "40.7758541" "last_login" "1573938553" +HSET "user:3133" "first_name" "Dareen" "last_name" "Itzig" "email" "ditzig3o@mediafire.com" "gender" "female" "ip_address" "204.112.156.12" "country" "Spain" "country_code" "ES" "city" "Vigo" "longitude" "-8.6848147" "latitude" "42.2390986" "last_login" "1589912806" +HSET "user:3134" "first_name" "Webb" "last_name" "Olivet" "email" "wolivet3p@oakley.com" "gender" "male" "ip_address" "87.216.189.202" "country" "Thailand" "country_code" "TH" "city" "Mueang Phuket" "longitude" "98.3227892" "latitude" "7.9247693" "last_login" "1592287045" +HSET "user:3135" "first_name" "Tiphany" "last_name" "Fannin" "email" "tfannin3q@spiegel.de" "gender" "female" "ip_address" "143.112.212.199" "country" "Poland" "country_code" "PL" "city" "Kaczory" "longitude" "16.9015317" "latitude" "53.0905078" "last_login" "1596521959" +HSET "user:3136" "first_name" "Ronalda" "last_name" "Anstiss" "email" "ranstiss3r@google.pl" "gender" "female" "ip_address" "85.249.114.179" "country" "Vietnam" "country_code" "VN" "city" "Yên Bái" "longitude" "104.4551361" "latitude" "21.6837923" "last_login" "1572269145" +HSET "user:3137" "first_name" "Magda" "last_name" "Lowres" "email" "mlowres3s@tinyurl.com" "gender" "female" "ip_address" "65.133.36.85" "country" "Russia" "country_code" "RU" "city" "Shabel’skoye" "longitude" "38.4738904" "latitude" "46.8538849" "last_login" "1574754925" +HSET "user:3138" "first_name" "Gilberta" "last_name" "Derycot" "email" "gderycot3t@xrea.com" "gender" "female" "ip_address" "28.208.99.184" "country" "Greece" "country_code" "GR" "city" "Perístasi" "longitude" "22.5416683" "latitude" "40.2740679" "last_login" "1569501291" +HSET "user:3139" "first_name" "Rivy" "last_name" "Feilden" "email" "rfeilden3u@webeden.co.uk" "gender" "female" "ip_address" "200.204.134.15" "country" "Indonesia" "country_code" "ID" "city" "Salem" "longitude" "132.311005" "latitude" "-0.754923" "last_login" "1573317706" +HSET "user:3140" "first_name" "Pattie" "last_name" "Caple" "email" "pcaple3v@wunderground.com" "gender" "female" "ip_address" "106.177.129.100" "country" "China" "country_code" "CN" "city" "Yeniugou" "longitude" "99.542709" "latitude" "38.456354" "last_login" "1599933356" +HSET "user:3141" "first_name" "King" "last_name" "FitzAlan" "email" "kfitzalan3w@ehow.com" "gender" "male" "ip_address" "250.193.116.122" "country" "Slovenia" "country_code" "SI" "city" "Zasip" "longitude" "14.1071599" "latitude" "46.388909" "last_login" "1583775111" +HSET "user:3142" "first_name" "Bunny" "last_name" "Vance" "email" "bvance3x@mozilla.org" "gender" "female" "ip_address" "68.66.227.169" "country" "Sweden" "country_code" "SE" "city" "Växjö" "longitude" "14.8077914" "latitude" "56.8965251" "last_login" "1570857907" +HSET "user:3143" "first_name" "Kilian" "last_name" "Klammt" "email" "kklammt3y@blog.com" "gender" "male" "ip_address" "182.165.77.17" "country" "Cuba" "country_code" "CU" "city" "Venezuela" "longitude" "-78.7872876" "latitude" "21.7425323" "last_login" "1581197731" +HSET "user:3144" "first_name" "Hedy" "last_name" "Footitt" "email" "hfootitt3z@list-manage.com" "gender" "female" "ip_address" "76.155.64.135" "country" "Croatia" "country_code" "HR" "city" "Rude" "longitude" "15.6745822" "latitude" "45.7676321" "last_login" "1571693058" +HSET "user:3145" "first_name" "Dicky" "last_name" "Clayill" "email" "dclayill40@hc360.com" "gender" "male" "ip_address" "84.56.255.23" "country" "China" "country_code" "CN" "city" "Pingle" "longitude" "110.643305" "latitude" "24.633362" "last_login" "1571881904" +HSET "user:3146" "first_name" "Craggy" "last_name" "Blackwell" "email" "cblackwell41@si.edu" "gender" "male" "ip_address" "246.123.46.236" "country" "United States" "country_code" "US" "city" "New Haven" "longitude" "-72.9310714" "latitude" "41.3065186" "last_login" "1569140190" +HSET "user:3147" "first_name" "Giuditta" "last_name" "Cumber" "email" "gcumber42@tripod.com" "gender" "female" "ip_address" "110.171.232.250" "country" "Sweden" "country_code" "SE" "city" "Sundbyberg" "longitude" "17.9325356" "latitude" "59.3763019" "last_login" "1600240768" +HSET "user:3148" "first_name" "Edita" "last_name" "McInnerny" "email" "emcinnerny43@com.com" "gender" "female" "ip_address" "16.102.202.195" "country" "Thailand" "country_code" "TH" "city" "Bang Pakong" "longitude" "100.9637456" "latitude" "13.4932664" "last_login" "1589709417" +HSET "user:3149" "first_name" "Shelby" "last_name" "Snelson" "email" "ssnelson44@redcross.org" "gender" "male" "ip_address" "241.221.59.222" "country" "France" "country_code" "FR" "city" "Paris 16" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1568713473" +HSET "user:3150" "first_name" "Solomon" "last_name" "Andrusyak" "email" "sandrusyak45@woothemes.com" "gender" "male" "ip_address" "141.123.182.208" "country" "Finland" "country_code" "FI" "city" "Muonio" "longitude" "23.6829386" "latitude" "67.9547288" "last_login" "1570612786" +HSET "user:3151" "first_name" "Angel" "last_name" "Halversen" "email" "ahalversen46@amazon.co.jp" "gender" "male" "ip_address" "166.69.21.129" "country" "China" "country_code" "CN" "city" "Woken" "longitude" "-117.636429" "latitude" "33.9498503" "last_login" "1599085806" +HSET "user:3152" "first_name" "Bobby" "last_name" "Canada" "email" "bcanada47@miibeian.gov.cn" "gender" "male" "ip_address" "165.240.59.146" "country" "Indonesia" "country_code" "ID" "city" "Besuk Selatan" "longitude" "113.479098" "latitude" "-7.7920677" "last_login" "1592160396" +HSET "user:3153" "first_name" "Duke" "last_name" "Caveau" "email" "dcaveau48@joomla.org" "gender" "male" "ip_address" "236.68.254.62" "country" "Uruguay" "country_code" "UY" "city" "San Bautista" "longitude" "-55.9600098" "latitude" "-34.4402062" "last_login" "1589082784" +HSET "user:3154" "first_name" "Clyde" "last_name" "Brellin" "email" "cbrellin49@unc.edu" "gender" "male" "ip_address" "206.227.183.149" "country" "Japan" "country_code" "JP" "city" "Sakado" "longitude" "136.7941217" "latitude" "36.6714007" "last_login" "1593291365" +HSET "user:3155" "first_name" "Wren" "last_name" "Teaser" "email" "wteaser4a@fc2.com" "gender" "female" "ip_address" "221.191.6.88" "country" "Philippines" "country_code" "PH" "city" "Pangpang" "longitude" "123.8363399" "latitude" "10.2583233" "last_login" "1569492517" +HSET "user:3156" "first_name" "Theodore" "last_name" "Mandell" "email" "tmandell4b@washingtonpost.com" "gender" "male" "ip_address" "61.9.186.169" "country" "Portugal" "country_code" "PT" "city" "Pedroso" "longitude" "-8.5507322" "latitude" "41.0647873" "last_login" "1576469027" +HSET "user:3157" "first_name" "Cam" "last_name" "Foran" "email" "cforan4c@chron.com" "gender" "male" "ip_address" "99.185.45.238" "country" "Indonesia" "country_code" "ID" "city" "Hegarmulya" "longitude" "106.8768415" "latitude" "-7.3391892" "last_login" "1576420122" +HSET "user:3158" "first_name" "Archaimbaud" "last_name" "Batrop" "email" "abatrop4d@constantcontact.com" "gender" "male" "ip_address" "66.86.26.195" "country" "Indonesia" "country_code" "ID" "city" "Panggulan" "longitude" "106.7563363" "latitude" "-6.4331238" "last_login" "1570835022" +HSET "user:3159" "first_name" "Chalmers" "last_name" "Arundell" "email" "carundell4e@slate.com" "gender" "male" "ip_address" "253.0.5.58" "country" "China" "country_code" "CN" "city" "Tushi" "longitude" "112.309325" "latitude" "25.521039" "last_login" "1597842591" +HSET "user:3160" "first_name" "Boonie" "last_name" "Bridgett" "email" "bbridgett4f@wp.com" "gender" "male" "ip_address" "218.51.39.222" "country" "Poland" "country_code" "PL" "city" "Pruszków" "longitude" "20.8188133" "latitude" "52.1501483" "last_login" "1570404650" +HSET "user:3161" "first_name" "Gavra" "last_name" "Braben" "email" "gbraben4g@slideshare.net" "gender" "female" "ip_address" "100.178.227.243" "country" "Poland" "country_code" "PL" "city" "Zielonki" "longitude" "19.9262381" "latitude" "50.133176" "last_login" "1578126491" +HSET "user:3162" "first_name" "Currey" "last_name" "Kubanek" "email" "ckubanek4h@wordpress.org" "gender" "male" "ip_address" "61.16.159.45" "country" "Sweden" "country_code" "SE" "city" "Gimo" "longitude" "18.1771765" "latitude" "60.1734181" "last_login" "1570089453" +HSET "user:3163" "first_name" "Fayre" "last_name" "Eudall" "email" "feudall4i@sciencedirect.com" "gender" "female" "ip_address" "90.20.213.208" "country" "Indonesia" "country_code" "ID" "city" "Gardutanjak" "longitude" "106.1049278" "latitude" "-6.312525" "last_login" "1583263637" +HSET "user:3164" "first_name" "Sawyer" "last_name" "Leyband" "email" "sleyband4j@sakura.ne.jp" "gender" "male" "ip_address" "246.138.198.90" "country" "Bangladesh" "country_code" "BD" "city" "Kālia" "longitude" "89.6439924" "latitude" "23.0246287" "last_login" "1600188671" +HSET "user:3165" "first_name" "Zachery" "last_name" "Kares" "email" "zkares4k@wordpress.com" "gender" "male" "ip_address" "75.46.196.229" "country" "France" "country_code" "FR" "city" "Lacroix-Saint-Ouen" "longitude" "2.7877074" "latitude" "49.3559892" "last_login" "1579194479" +HSET "user:3166" "first_name" "Leesa" "last_name" "Dowdell" "email" "ldowdell4l@joomla.org" "gender" "female" "ip_address" "64.101.219.86" "country" "Poland" "country_code" "PL" "city" "Dąbie" "longitude" "18.8224372" "latitude" "52.0872281" "last_login" "1584659317" +HSET "user:3167" "first_name" "Maribel" "last_name" "Valentelli" "email" "mvalentelli4m@themeforest.net" "gender" "female" "ip_address" "212.241.206.67" "country" "China" "country_code" "CN" "city" "Feikeng" "longitude" "116.768358" "latitude" "36.182571" "last_login" "1593158313" +HSET "user:3168" "first_name" "Mayne" "last_name" "McDonagh" "email" "mmcdonagh4n@usnews.com" "gender" "male" "ip_address" "90.121.192.111" "country" "Georgia" "country_code" "GE" "city" "Gori" "longitude" "44.108411" "latitude" "41.9854144" "last_login" "1591027017" +HSET "user:3169" "first_name" "Sasha" "last_name" "Nisbith" "email" "snisbith4o@cnbc.com" "gender" "female" "ip_address" "226.87.200.29" "country" "Indonesia" "country_code" "ID" "city" "Kemang" "longitude" "106.8207875" "latitude" "-6.2608384" "last_login" "1579370374" +HSET "user:3170" "first_name" "Timmi" "last_name" "Kendred" "email" "tkendred4p@google.fr" "gender" "female" "ip_address" "119.254.189.104" "country" "Japan" "country_code" "JP" "city" "Shibukawa" "longitude" "140.9917351" "latitude" "37.4687736" "last_login" "1585066599" +HSET "user:3171" "first_name" "Myrle" "last_name" "Paolino" "email" "mpaolino4q@tinyurl.com" "gender" "female" "ip_address" "167.227.195.216" "country" "China" "country_code" "CN" "city" "Guanyinge" "longitude" "114.59862" "latitude" "23.401553" "last_login" "1569962879" +HSET "user:3172" "first_name" "Davidson" "last_name" "Ben" "email" "dben4r@delicious.com" "gender" "male" "ip_address" "170.97.174.240" "country" "Germany" "country_code" "DE" "city" "Hannover" "longitude" "9.7156831" "latitude" "52.3863062" "last_login" "1587033517" +HSET "user:3173" "first_name" "Celestyna" "last_name" "Dukes" "email" "cdukes4s@state.gov" "gender" "female" "ip_address" "55.183.200.28" "country" "China" "country_code" "CN" "city" "Qi’an" "longitude" "108.93977" "latitude" "34.341574" "last_login" "1573625584" +HSET "user:3174" "first_name" "Fianna" "last_name" "Quartermain" "email" "fquartermain4t@stumbleupon.com" "gender" "female" "ip_address" "120.205.45.253" "country" "China" "country_code" "CN" "city" "Yangmaogong" "longitude" "87.592379" "latitude" "44.142359" "last_login" "1570185322" +HSET "user:3175" "first_name" "Fredek" "last_name" "Diggens" "email" "fdiggens4u@1und1.de" "gender" "male" "ip_address" "111.49.93.221" "country" "Russia" "country_code" "RU" "city" "Ternovka" "longitude" "42.9238906" "latitude" "51.3312362" "last_login" "1583575128" +HSET "user:3176" "first_name" "Mary" "last_name" "Will" "email" "mwill4v@timesonline.co.uk" "gender" "female" "ip_address" "188.168.137.226" "country" "Morocco" "country_code" "MA" "city" "Tiouli" "longitude" "-1.8354908" "latitude" "34.3686746" "last_login" "1585800037" +HSET "user:3177" "first_name" "Siward" "last_name" "Grayer" "email" "sgrayer4w@wp.com" "gender" "male" "ip_address" "70.63.63.163" "country" "Russia" "country_code" "RU" "city" "Nelidovo" "longitude" "32.771328" "latitude" "56.2249698" "last_login" "1579080785" +HSET "user:3178" "first_name" "Miof mela" "last_name" "Sutch" "email" "msutch4x@un.org" "gender" "female" "ip_address" "240.250.41.137" "country" "Indonesia" "country_code" "ID" "city" "Pakapasan Ilir" "longitude" "108.4780523" "latitude" "-7.056066" "last_login" "1569870197" +HSET "user:3179" "first_name" "Kathe" "last_name" "Harrad" "email" "kharrad4y@wikispaces.com" "gender" "female" "ip_address" "86.101.114.90" "country" "Brazil" "country_code" "BR" "city" "Brasília de Minas" "longitude" "-44.4370606" "latitude" "-16.2382608" "last_login" "1597444411" +HSET "user:3180" "first_name" "Dasha" "last_name" "Fessier" "email" "dfessier4z@odnoklassniki.ru" "gender" "female" "ip_address" "18.166.204.93" "country" "Mongolia" "country_code" "MN" "city" "Bayasgalant" "longitude" "106.8254167" "latitude" "47.9644609" "last_login" "1594364356" +HSET "user:3181" "first_name" "Leodora" "last_name" "Moncaster" "email" "lmoncaster50@hostgator.com" "gender" "female" "ip_address" "11.148.100.36" "country" "United States" "country_code" "US" "city" "Conroe" "longitude" "-95.4647953" "latitude" "30.319558" "last_login" "1597473085" +HSET "user:3182" "first_name" "Jeremy" "last_name" "Pratley" "email" "jpratley51@usgs.gov" "gender" "male" "ip_address" "1.210.208.230" "country" "Portugal" "country_code" "PT" "city" "Vale" "longitude" "-8.4404236" "latitude" "40.9803118" "last_login" "1590304930" +HSET "user:3183" "first_name" "Hinze" "last_name" "Couche" "email" "hcouche52@indiegogo.com" "gender" "male" "ip_address" "99.164.67.141" "country" "China" "country_code" "CN" "city" "Tong’an" "longitude" "118.152148" "latitude" "24.722747" "last_login" "1585381763" +HSET "user:3184" "first_name" "Brodie" "last_name" "Pfeiffer" "email" "bpfeiffer53@virginia.edu" "gender" "male" "ip_address" "51.127.165.97" "country" "Latvia" "country_code" "LV" "city" "Salacgrīva" "longitude" "24.3543455" "latitude" "57.7581391" "last_login" "1588650861" +HSET "user:3185" "first_name" "Friederike" "last_name" "Ashman" "email" "fashman54@wikispaces.com" "gender" "female" "ip_address" "3.95.230.210" "country" "Lithuania" "country_code" "LT" "city" "Gelgaudiškis" "longitude" "22.97583" "latitude" "55.07917" "last_login" "1598693646" +HSET "user:3186" "first_name" "Coriss" "last_name" "Lansdowne" "email" "clansdowne55@apache.org" "gender" "female" "ip_address" "10.191.201.143" "country" "Norway" "country_code" "NO" "city" "Porsgrunn" "longitude" "9.6693512" "latitude" "59.1280914" "last_login" "1584591652" +HSET "user:3187" "first_name" "Maxie" "last_name" "Palke" "email" "mpalke56@latimes.com" "gender" "female" "ip_address" "4.213.177.206" "country" "China" "country_code" "CN" "city" "Longtang" "longitude" "110.4153075" "latitude" "19.8838774" "last_login" "1588869446" +HSET "user:3188" "first_name" "Crysta" "last_name" "Christene" "email" "cchristene57@unblog.fr" "gender" "female" "ip_address" "87.120.139.198" "country" "China" "country_code" "CN" "city" "Ningshan Chengguanzhen" "longitude" "108.307889" "latitude" "33.30992" "last_login" "1581916506" +HSET "user:3189" "first_name" "Weidar" "last_name" "Mosdell" "email" "wmosdell58@taobao.com" "gender" "male" "ip_address" "207.155.216.239" "country" "Comoros" "country_code" "KM" "city" "Mohoro" "longitude" "43.4536443" "latitude" "-11.8256582" "last_login" "1595039609" +HSET "user:3190" "first_name" "Tracey" "last_name" "Starsmeare" "email" "tstarsmeare59@domainmarket.com" "gender" "male" "ip_address" "20.198.168.86" "country" "China" "country_code" "CN" "city" "Dadong" "longitude" "123.4699481" "latitude" "41.805137" "last_login" "1581068772" +HSET "user:3191" "first_name" "Holmes" "last_name" "Gwinnett" "email" "hgwinnett5a@moonfruit.com" "gender" "male" "ip_address" "200.46.150.78" "country" "Syria" "country_code" "SY" "city" "Aţ Ţawāḩīn" "longitude" "36.21444" "latitude" "35.12751" "last_login" "1588729923" +HSET "user:3192" "first_name" "Natassia" "last_name" "Bowie" "email" "nbowie5b@networksolutions.com" "gender" "female" "ip_address" "96.55.225.18" "country" "Cyprus" "country_code" "CY" "city" "Dhali" "longitude" "33.4047109" "latitude" "35.0612128" "last_login" "1575902135" +HSET "user:3193" "first_name" "Dalis" "last_name" "Doige" "email" "ddoige5c@google.nl" "gender" "male" "ip_address" "109.228.118.92" "country" "Philippines" "country_code" "PH" "city" "Tigbaw" "longitude" "123.0099723" "latitude" "11.1179302" "last_login" "1580141421" +HSET "user:3194" "first_name" "Barn" "last_name" "Tegeller" "email" "btegeller5d@so-net.ne.jp" "gender" "male" "ip_address" "165.9.172.141" "country" "Azerbaijan" "country_code" "AZ" "city" "Imishli" "longitude" "48.0665218" "latitude" "39.8694686" "last_login" "1575282746" +HSET "user:3195" "first_name" "Pavlov" "last_name" "Jaffa" "email" "pjaffa5e@harvard.edu" "gender" "male" "ip_address" "223.219.225.247" "country" "Tanzania" "country_code" "TZ" "city" "Lindi" "longitude" "39.6982485" "latitude" "-9.9876076" "last_login" "1586133311" +HSET "user:3196" "first_name" "Moses" "last_name" "Budgeon" "email" "mbudgeon5f@ask.com" "gender" "male" "ip_address" "228.138.204.255" "country" "Ukraine" "country_code" "UA" "city" "Volodymyrets’" "longitude" "26.1385322" "latitude" "51.4238758" "last_login" "1583491162" +HSET "user:3197" "first_name" "Christin" "last_name" "Luxen" "email" "cluxen5g@hhs.gov" "gender" "female" "ip_address" "16.206.222.116" "country" "Tanzania" "country_code" "TZ" "city" "Puma" "longitude" "39.2827032" "latitude" "-6.8316639" "last_login" "1580005724" +HSET "user:3198" "first_name" "Rooney" "last_name" "Werlock" "email" "rwerlock5h@moonfruit.com" "gender" "male" "ip_address" "156.56.88.234" "country" "Indonesia" "country_code" "ID" "city" "Gadingrejo" "longitude" "112.8880068" "latitude" "-7.6374665" "last_login" "1575038951" +HSET "user:3199" "first_name" "Solly" "last_name" "Devenport" "email" "sdevenport5i@businessinsider.com" "gender" "male" "ip_address" "21.172.214.175" "country" "Russia" "country_code" "RU" "city" "Miass" "longitude" "60.0722304" "latitude" "55.1211323" "last_login" "1582568104" +HSET "user:3200" "first_name" "Sharity" "last_name" "Queyos" "email" "squeyos5j@paginegialle.it" "gender" "female" "ip_address" "17.148.95.25" "country" "Central African Republic" "country_code" "CF" "city" "Zemio" "longitude" "25.1325897" "latitude" "5.0308931" "last_login" "1574479253" +HSET "user:3201" "first_name" "Max" "last_name" "Kynaston" "email" "mkynaston5k@shop-pro.jp" "gender" "male" "ip_address" "220.250.142.94" "country" "Ukraine" "country_code" "UA" "city" "Nova Praha" "longitude" "32.9001451" "latitude" "48.5582238" "last_login" "1586628907" +HSET "user:3202" "first_name" "Alia" "last_name" "Goldhill" "email" "agoldhill5l@bbb.org" "gender" "female" "ip_address" "162.160.251.253" "country" "Ukraine" "country_code" "UA" "city" "Dnipryany" "longitude" "33.2473218" "latitude" "46.7523145" "last_login" "1596613726" +HSET "user:3203" "first_name" "Sheff" "last_name" "Gutman" "email" "sgutman5m@nydailynews.com" "gender" "male" "ip_address" "40.136.166.129" "country" "Slovenia" "country_code" "SI" "city" "Vnanje Gorice" "longitude" "14.3737786" "latitude" "45.9701086" "last_login" "1590272681" +HSET "user:3204" "first_name" "Marge" "last_name" "Blofield" "email" "mblofield5n@samsung.com" "gender" "female" "ip_address" "188.240.191.213" "country" "Portugal" "country_code" "PT" "city" "Briteiros Santa Leocádia" "longitude" "-8.346058" "latitude" "41.5256088" "last_login" "1571535636" +HSET "user:3205" "first_name" "Barn" "last_name" "Janic" "email" "bjanic5o@adobe.com" "gender" "male" "ip_address" "250.255.76.36" "country" "Poland" "country_code" "PL" "city" "Tolkmicko" "longitude" "19.5273042" "latitude" "54.3202047" "last_login" "1586754532" +HSET "user:3206" "first_name" "Malachi" "last_name" "Heitz" "email" "mheitz5p@pagesperso-orange.fr" "gender" "male" "ip_address" "51.100.223.113" "country" "Ghana" "country_code" "GH" "city" "Mampong" "longitude" "-1.3999969" "latitude" "7.053137" "last_login" "1572425297" +HSET "user:3207" "first_name" "Xenos" "last_name" "Reichartz" "email" "xreichartz5q@shinystat.com" "gender" "male" "ip_address" "101.192.221.41" "country" "Thailand" "country_code" "TH" "city" "Bang Na" "longitude" "100.608395" "latitude" "13.6741713" "last_login" "1575397708" +HSET "user:3208" "first_name" "Robin" "last_name" "Strotton" "email" "rstrotton5r@skyrock.com" "gender" "male" "ip_address" "0.37.195.205" "country" "Nigeria" "country_code" "NG" "city" "Kamba" "longitude" "3.6547195" "latitude" "11.8514489" "last_login" "1576424009" +HSET "user:3209" "first_name" "Violet" "last_name" "Cruickshank" "email" "vcruickshank5s@discuz.net" "gender" "female" "ip_address" "81.110.173.95" "country" "Sweden" "country_code" "SE" "city" "Sandviken" "longitude" "16.76232" "latitude" "60.6304039" "last_login" "1572699470" +HSET "user:3210" "first_name" "Ross" "last_name" "Duncklee" "email" "rduncklee5t@facebook.com" "gender" "male" "ip_address" "102.44.0.220" "country" "Norway" "country_code" "NO" "city" "Mo I Rana" "longitude" "14.1351449" "latitude" "66.3110843" "last_login" "1577865847" +HSET "user:3211" "first_name" "Beverlie" "last_name" "Holgan" "email" "bholgan5u@istockphoto.com" "gender" "female" "ip_address" "23.67.15.45" "country" "Indonesia" "country_code" "ID" "city" "Imulolong" "longitude" "123.385081" "latitude" "-8.5167606" "last_login" "1591829134" +HSET "user:3212" "first_name" "Thomasa" "last_name" "Winckles" "email" "twinckles5v@hud.gov" "gender" "female" "ip_address" "238.92.45.250" "country" "Tunisia" "country_code" "TN" "city" "Ben Arous" "longitude" "10.2319757" "latitude" "36.7435003" "last_login" "1573594070" +HSET "user:3213" "first_name" "Nancie" "last_name" "Cockshutt" "email" "ncockshutt5w@soundcloud.com" "gender" "female" "ip_address" "145.72.103.210" "country" "China" "country_code" "CN" "city" "Xiaoying" "longitude" "-3.6721577" "latitude" "40.425649" "last_login" "1577143097" +HSET "user:3214" "first_name" "Cyrillus" "last_name" "Dive" "email" "cdive5x@blog.com" "gender" "male" "ip_address" "210.158.101.251" "country" "Japan" "country_code" "JP" "city" "Ginowan" "longitude" "127.7583123" "latitude" "26.2664534" "last_login" "1569996766" +HSET "user:3215" "first_name" "Chanda" "last_name" "Hagard" "email" "chagard5y@cornell.edu" "gender" "female" "ip_address" "133.26.218.210" "country" "Indonesia" "country_code" "ID" "city" "Sentani" "longitude" "140.50321" "latitude" "-2.569886" "last_login" "1596521623" +HSET "user:3216" "first_name" "Kelsey" "last_name" "Pacey" "email" "kpacey5z@oaic.gov.au" "gender" "female" "ip_address" "37.183.126.197" "country" "Honduras" "country_code" "HN" "city" "Orocuina" "longitude" "-87.1036224" "latitude" "13.4793694" "last_login" "1585289009" +HSET "user:3217" "first_name" "Jeno" "last_name" "Nelhams" "email" "jnelhams60@dell.com" "gender" "male" "ip_address" "25.190.97.99" "country" "Indonesia" "country_code" "ID" "city" "Padaimut" "longitude" "108.0258" "latitude" "-7.0727" "last_login" "1583037738" +HSET "user:3218" "first_name" "Terri-jo" "last_name" "Stickings" "email" "tstickings61@geocities.com" "gender" "female" "ip_address" "73.58.123.73" "country" "Russia" "country_code" "RU" "city" "Karabanovo" "longitude" "38.701054" "latitude" "56.3072493" "last_login" "1596655708" +HSET "user:3219" "first_name" "Shanon" "last_name" "Waldrum" "email" "swaldrum62@nsw.gov.au" "gender" "female" "ip_address" "176.202.195.60" "country" "Burkina Faso" "country_code" "BF" "city" "Diébougou" "longitude" "-3.2432781" "latitude" "10.9578957" "last_login" "1580895287" +HSET "user:3220" "first_name" "Spike" "last_name" "Boydell" "email" "sboydell63@hostgator.com" "gender" "male" "ip_address" "177.165.48.180" "country" "Russia" "country_code" "RU" "city" "Severo-Zadonsk" "longitude" "38.404411" "latitude" "54.0474092" "last_login" "1575860178" +HSET "user:3221" "first_name" "Sarajane" "last_name" "Fleisch" "email" "sfleisch64@hhs.gov" "gender" "female" "ip_address" "67.82.100.110" "country" "China" "country_code" "CN" "city" "Dengteke" "longitude" "124.5597559" "latitude" "48.6429165" "last_login" "1597423632" +HSET "user:3222" "first_name" "Gabriela" "last_name" "Smorthit" "email" "gsmorthit65@nydailynews.com" "gender" "female" "ip_address" "61.155.162.229" "country" "Thailand" "country_code" "TH" "city" "Mueang Nonthaburi" "longitude" "100.5219418" "latitude" "13.9210992" "last_login" "1575831668" +HSET "user:3223" "first_name" "Kylynn" "last_name" "Mc Coughan" "email" "kmccoughan66@biglobe.ne.jp" "gender" "female" "ip_address" "65.63.21.148" "country" "Japan" "country_code" "JP" "city" "Hondo" "longitude" "136.6447089" "latitude" "35.3078775" "last_login" "1581655386" +HSET "user:3224" "first_name" "Natassia" "last_name" "Pogosian" "email" "npogosian67@sourceforge.net" "gender" "female" "ip_address" "48.50.177.20" "country" "Syria" "country_code" "SY" "city" "Al Mazra‘ah" "longitude" "36.47696" "latitude" "32.78398" "last_login" "1587558045" +HSET "user:3225" "first_name" "Salvatore" "last_name" "Pharoah" "email" "spharoah68@arizona.edu" "gender" "male" "ip_address" "47.188.243.97" "country" "Azerbaijan" "country_code" "AZ" "city" "Quba" "longitude" "48.5260928" "latitude" "41.3643024" "last_login" "1592356749" +HSET "user:3226" "first_name" "Nedda" "last_name" "Welford" "email" "nwelford69@cnbc.com" "gender" "female" "ip_address" "0.40.22.181" "country" "Ireland" "country_code" "IE" "city" "Ballybofey" "longitude" "-7.74208" "latitude" "54.70972" "last_login" "1572961714" +HSET "user:3227" "first_name" "Pen" "last_name" "Asson" "email" "passon6a@usgs.gov" "gender" "female" "ip_address" "227.114.199.60" "country" "Poland" "country_code" "PL" "city" "Smętowo Graniczne" "longitude" "18.6894607" "latitude" "53.7431909" "last_login" "1583033074" +HSET "user:3228" "first_name" "Binni" "last_name" "Battlestone" "email" "bbattlestone6b@bizjournals.com" "gender" "female" "ip_address" "67.62.86.209" "country" "French Polynesia" "country_code" "PF" "city" "Hitiaa" "longitude" "-149.3023702" "latitude" "-17.6059721" "last_login" "1580059867" +HSET "user:3229" "first_name" "Goldie" "last_name" "Castillo" "email" "gcastillo6c@so-net.ne.jp" "gender" "female" "ip_address" "190.56.193.43" "country" "China" "country_code" "CN" "city" "Luntai" "longitude" "84.252156" "latitude" "41.777702" "last_login" "1582841319" +HSET "user:3230" "first_name" "Royal" "last_name" "Thews" "email" "rthews6d@gizmodo.com" "gender" "male" "ip_address" "246.139.89.4" "country" "Indonesia" "country_code" "ID" "city" "Pakuncen" "longitude" "110.350244" "latitude" "-7.7981151" "last_login" "1581513835" +HSET "user:3231" "first_name" "Ivonne" "last_name" "Escoffrey" "email" "iescoffrey6e@ucoz.com" "gender" "female" "ip_address" "130.95.245.111" "country" "Czech Republic" "country_code" "CZ" "city" "Zbraslavice" "longitude" "15.1855959" "latitude" "49.808516" "last_login" "1591480510" +HSET "user:3232" "first_name" "Court" "last_name" "Jopling" "email" "cjopling6f@mac.com" "gender" "male" "ip_address" "5.242.121.82" "country" "Portugal" "country_code" "PT" "city" "Tapado" "longitude" "-7.9737002" "latitude" "41.1509639" "last_login" "1581109172" +HSET "user:3233" "first_name" "Rosetta" "last_name" "Olyff" "email" "rolyff6g@163.com" "gender" "female" "ip_address" "218.47.90.79" "country" "China" "country_code" "CN" "city" "Huangdao" "longitude" "120.04619" "latitude" "35.872664" "last_login" "1570386621" +HSET "user:3234" "first_name" "Lorant" "last_name" "Claricoates" "email" "lclaricoates6h@craigslist.org" "gender" "male" "ip_address" "228.78.197.111" "country" "Colombia" "country_code" "CO" "city" "Tolú" "longitude" "-75.5509602" "latitude" "9.442952" "last_login" "1594432162" +HSET "user:3235" "first_name" "Emelia" "last_name" "Biasio" "email" "ebiasio6i@yandex.ru" "gender" "female" "ip_address" "252.140.107.119" "country" "Estonia" "country_code" "EE" "city" "Haapsalu" "longitude" "23.5370533" "latitude" "58.9482486" "last_login" "1579073780" +HSET "user:3236" "first_name" "Eadith" "last_name" "Wiley" "email" "ewiley6j@digg.com" "gender" "female" "ip_address" "29.33.102.238" "country" "Indonesia" "country_code" "ID" "city" "Ciparasi" "longitude" "106.3493224" "latitude" "-6.6513426" "last_login" "1586398331" +HSET "user:3237" "first_name" "Tymothy" "last_name" "Buttle" "email" "tbuttle6k@cdc.gov" "gender" "male" "ip_address" "172.21.56.204" "country" "Russia" "country_code" "RU" "city" "Masalovka" "longitude" "40.2586934" "latitude" "48.4083877" "last_login" "1593973947" +HSET "user:3238" "first_name" "Eudora" "last_name" "Oliphard" "email" "eoliphard6l@nba.com" "gender" "female" "ip_address" "115.11.221.198" "country" "Poland" "country_code" "PL" "city" "Lublin" "longitude" "22.5807371" "latitude" "51.2760107" "last_login" "1590635258" +HSET "user:3239" "first_name" "Adele" "last_name" "Franz-Schoninger" "email" "afranzschoninger6m@sitemeter.com" "gender" "female" "ip_address" "190.75.114.50" "country" "China" "country_code" "CN" "city" "Fuli" "longitude" "7.6793978" "latitude" "51.5420631" "last_login" "1586699878" +HSET "user:3240" "first_name" "Donall" "last_name" "Raynham" "email" "draynham6n@ted.com" "gender" "male" "ip_address" "202.227.40.72" "country" "Guyana" "country_code" "GY" "city" "Mahdia" "longitude" "-79.3744257" "latitude" "43.6422125" "last_login" "1591248889" +HSET "user:3241" "first_name" "Davie" "last_name" "Cottrell" "email" "dcottrell6o@clickbank.net" "gender" "male" "ip_address" "210.157.217.16" "country" "Philippines" "country_code" "PH" "city" "Santa Rita Aplaya" "longitude" "121.030464" "latitude" "13.7696054" "last_login" "1585867944" +HSET "user:3242" "first_name" "Alvin" "last_name" "Adamovitz" "email" "aadamovitz6p@psu.edu" "gender" "male" "ip_address" "20.38.230.6" "country" "Mongolia" "country_code" "MN" "city" "Arvayheer" "longitude" "102.7790303" "latitude" "46.272878" "last_login" "1584197213" +HSET "user:3243" "first_name" "Bob" "last_name" "Onslow" "email" "bonslow6q@redcross.org" "gender" "male" "ip_address" "159.104.178.116" "country" "Portugal" "country_code" "PT" "city" "Eira da Pedra" "longitude" "-8.6664683" "latitude" "39.6080157" "last_login" "1573016698" +HSET "user:3244" "first_name" "Riccardo" "last_name" "Henner" "email" "rhenner6r@vk.com" "gender" "male" "ip_address" "22.174.138.17" "country" "China" "country_code" "CN" "city" "Ershilipu" "longitude" "109.5533333" "latitude" "36.6366667" "last_login" "1596219853" +HSET "user:3245" "first_name" "Saul" "last_name" "Schultze" "email" "sschultze6s@columbia.edu" "gender" "male" "ip_address" "206.235.194.0" "country" "Malaysia" "country_code" "MY" "city" "Bandar Pusat Jengka" "longitude" "102.5456981" "latitude" "3.7430671" "last_login" "1595969069" +HSET "user:3246" "first_name" "Arlette" "last_name" "Pittford" "email" "apittford6t@pcworld.com" "gender" "female" "ip_address" "192.140.30.80" "country" "China" "country_code" "CN" "city" "Raofeng" "longitude" "116.822083" "latitude" "28.953503" "last_login" "1598283526" +HSET "user:3247" "first_name" "Regan" "last_name" "Mews" "email" "rmews6u@newyorker.com" "gender" "male" "ip_address" "14.128.24.45" "country" "Russia" "country_code" "RU" "city" "Primorskiy" "longitude" "38.1368927" "latitude" "44.4990862" "last_login" "1590400923" +HSET "user:3248" "first_name" "Carmon" "last_name" "Wolstencroft" "email" "cwolstencroft6v@disqus.com" "gender" "female" "ip_address" "93.208.71.112" "country" "Chile" "country_code" "CL" "city" "Vallenar" "longitude" "-70.7571009" "latitude" "-28.5757953" "last_login" "1581847870" +HSET "user:3249" "first_name" "Danita" "last_name" "Mosco" "email" "dmosco6w@usatoday.com" "gender" "female" "ip_address" "252.72.221.106" "country" "China" "country_code" "CN" "city" "Kunyang" "longitude" "121.790282" "latitude" "37.175532" "last_login" "1589586761" +HSET "user:3250" "first_name" "Leoine" "last_name" "Calkin" "email" "lcalkin6x@networkadvertising.org" "gender" "female" "ip_address" "56.87.170.128" "country" "Morocco" "country_code" "MA" "city" "Rislane" "longitude" "-2.432221" "latitude" "34.7577423" "last_login" "1570865465" +HSET "user:3251" "first_name" "Margalit" "last_name" "Durrant" "email" "mdurrant6y@state.gov" "gender" "female" "ip_address" "52.111.48.220" "country" "Indonesia" "country_code" "ID" "city" "Cibungur" "longitude" "107.4780383" "latitude" "-6.4698758" "last_login" "1599367020" +HSET "user:3252" "first_name" "Garold" "last_name" "Stuckes" "email" "gstuckes6z@soundcloud.com" "gender" "male" "ip_address" "229.52.249.98" "country" "Indonesia" "country_code" "ID" "city" "Sedandang" "longitude" "106.7567589" "latitude" "-6.2649072" "last_login" "1584490743" +HSET "user:3253" "first_name" "Jackqueline" "last_name" "Casewell" "email" "jcasewell70@spotify.com" "gender" "female" "ip_address" "200.212.43.56" "country" "Indonesia" "country_code" "ID" "city" "Utama Wetan" "longitude" "107.5088982" "latitude" "-6.8572408" "last_login" "1585595178" +HSET "user:3254" "first_name" "Sibeal" "last_name" "Oneile" "email" "soneile71@constantcontact.com" "gender" "female" "ip_address" "161.158.230.135" "country" "Cuba" "country_code" "CU" "city" "Santa Cruz del Norte" "longitude" "-81.9234712" "latitude" "23.1543183" "last_login" "1573870297" +HSET "user:3255" "first_name" "Ethelda" "last_name" "Lillegard" "email" "elillegard72@google.co.uk" "gender" "female" "ip_address" "218.28.114.160" "country" "Brazil" "country_code" "BR" "city" "Entre Rios" "longitude" "-52.5852334" "latitude" "-26.7416528" "last_login" "1591205759" +HSET "user:3256" "first_name" "Gusta" "last_name" "Pillington" "email" "gpillington73@soup.io" "gender" "female" "ip_address" "139.176.39.212" "country" "Sweden" "country_code" "SE" "city" "Alingsås" "longitude" "12.5710873" "latitude" "57.9423223" "last_login" "1598432241" +HSET "user:3257" "first_name" "Gino" "last_name" "Barttrum" "email" "gbarttrum74@nba.com" "gender" "male" "ip_address" "107.250.73.109" "country" "Thailand" "country_code" "TH" "city" "Lom Kao" "longitude" "101.2273373" "latitude" "16.8877073" "last_login" "1594717415" +HSET "user:3258" "first_name" "Jemmy" "last_name" "Fursland" "email" "jfursland75@webnode.com" "gender" "female" "ip_address" "182.185.70.254" "country" "Gambia" "country_code" "GM" "city" "Pateh Sam" "longitude" "-15.0608558" "latitude" "13.6095445" "last_login" "1592311189" +HSET "user:3259" "first_name" "Ezra" "last_name" "Walenta" "email" "ewalenta76@admin.ch" "gender" "male" "ip_address" "65.4.233.69" "country" "Iran" "country_code" "IR" "city" "Semīrom" "longitude" "51.5683274" "latitude" "31.4151366" "last_login" "1598388212" +HSET "user:3260" "first_name" "Gabriele" "last_name" "Winslade" "email" "gwinslade77@nasa.gov" "gender" "male" "ip_address" "195.119.176.59" "country" "Slovenia" "country_code" "SI" "city" "Trnovlje pri Celju" "longitude" "15.2867417" "latitude" "46.2394709" "last_login" "1568993508" +HSET "user:3261" "first_name" "Otto" "last_name" "Vitall" "email" "ovitall78@bloglovin.com" "gender" "male" "ip_address" "212.14.92.214" "country" "China" "country_code" "CN" "city" "Bailiang" "longitude" "121.597823" "latitude" "31.266878" "last_login" "1570377617" +HSET "user:3262" "first_name" "Mimi" "last_name" "Berthot" "email" "mberthot79@amazon.co.uk" "gender" "female" "ip_address" "80.2.73.11" "country" "China" "country_code" "CN" "city" "Yingtou" "longitude" "112.117922" "latitude" "35.656128" "last_login" "1593748468" +HSET "user:3263" "first_name" "Suzette" "last_name" "Badger" "email" "sbadger7a@tumblr.com" "gender" "female" "ip_address" "109.54.169.103" "country" "Portugal" "country_code" "PT" "city" "Safara" "longitude" "-7.2176902" "latitude" "38.111851" "last_login" "1594274320" +HSET "user:3264" "first_name" "Milo" "last_name" "Husher" "email" "mhusher7b@godaddy.com" "gender" "male" "ip_address" "76.184.139.78" "country" "Russia" "country_code" "RU" "city" "Kashira" "longitude" "38.2516419" "latitude" "54.8095591" "last_login" "1582807773" +HSET "user:3265" "first_name" "Moise" "last_name" "Mussotti" "email" "mmussotti7c@sakura.ne.jp" "gender" "male" "ip_address" "169.36.68.20" "country" "Guam" "country_code" "GU" "city" "Agana Heights Village" "longitude" "144.7453228" "latitude" "13.4677672" "last_login" "1591878781" +HSET "user:3266" "first_name" "Kristoffer" "last_name" "Beathem" "email" "kbeathem7d@bizjournals.com" "gender" "male" "ip_address" "2.137.118.215" "country" "Indonesia" "country_code" "ID" "city" "Krajan Srigonco" "longitude" "112.5618" "latitude" "-8.3418" "last_login" "1594629722" +HSET "user:3267" "first_name" "Frank" "last_name" "Footitt" "email" "ffootitt7e@webs.com" "gender" "female" "ip_address" "37.163.11.181" "country" "South Korea" "country_code" "KR" "city" "Samsan" "longitude" "129.3318295" "latitude" "35.544405" "last_login" "1574054754" +HSET "user:3268" "first_name" "Kayne" "last_name" "Brendel" "email" "kbrendel7f@sitemeter.com" "gender" "male" "ip_address" "44.169.42.152" "country" "Indonesia" "country_code" "ID" "city" "Pojok" "longitude" "111.9790773" "latitude" "-7.8169756" "last_login" "1589464304" +HSET "user:3269" "first_name" "Bertine" "last_name" "Fawcitt" "email" "bfawcitt7g@mozilla.com" "gender" "female" "ip_address" "56.237.169.184" "country" "Greece" "country_code" "GR" "city" "Pelópion" "longitude" "21.5926702" "latitude" "37.6753305" "last_login" "1576611156" +HSET "user:3270" "first_name" "Matthaeus" "last_name" "Muldownie" "email" "mmuldownie7h@unicef.org" "gender" "male" "ip_address" "131.37.178.121" "country" "United States" "country_code" "US" "city" "Austin" "longitude" "-97.74" "latitude" "30.27" "last_login" "1583158131" +HSET "user:3271" "first_name" "Ashlin" "last_name" "Caverhill" "email" "acaverhill7i@admin.ch" "gender" "male" "ip_address" "51.169.110.178" "country" "China" "country_code" "CN" "city" "Shawan" "longitude" "85.619416" "latitude" "44.326388" "last_login" "1577803214" +HSET "user:3272" "first_name" "Vanni" "last_name" "Hopfer" "email" "vhopfer7j@nifty.com" "gender" "female" "ip_address" "110.153.183.74" "country" "China" "country_code" "CN" "city" "Baojia" "longitude" "107.237743" "latitude" "34.363184" "last_login" "1569454440" +HSET "user:3273" "first_name" "Finlay" "last_name" "Nardrup" "email" "fnardrup7k@ucsd.edu" "gender" "male" "ip_address" "110.117.239.134" "country" "Ukraine" "country_code" "UA" "city" "Yampil’" "longitude" "28.2765218" "latitude" "48.2441219" "last_login" "1582061728" +HSET "user:3274" "first_name" "Leupold" "last_name" "Martynov" "email" "lmartynov7l@imdb.com" "gender" "male" "ip_address" "31.87.32.204" "country" "Portugal" "country_code" "PT" "city" "Carrascal" "longitude" "-9.4043725" "latitude" "38.8145081" "last_login" "1581304238" +HSET "user:3275" "first_name" "Neron" "last_name" "Custy" "email" "ncusty7m@statcounter.com" "gender" "male" "ip_address" "65.1.11.111" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Rudo" "longitude" "19.3702897" "latitude" "43.6188697" "last_login" "1597487689" +HSET "user:3276" "first_name" "Lazar" "last_name" "Mander" "email" "lmander7n@census.gov" "gender" "male" "ip_address" "212.180.65.168" "country" "Japan" "country_code" "JP" "city" "Tenri" "longitude" "135.7837972" "latitude" "34.6494619" "last_login" "1589039855" +HSET "user:3277" "first_name" "Burk" "last_name" "Walklett" "email" "bwalklett7o@fotki.com" "gender" "male" "ip_address" "76.72.200.67" "country" "South Africa" "country_code" "ZA" "city" "Parys" "longitude" "27.4732571" "latitude" "-26.8985232" "last_login" "1590179722" +HSET "user:3278" "first_name" "Dareen" "last_name" "Marrill" "email" "dmarrill7p@buzzfeed.com" "gender" "female" "ip_address" "223.6.126.204" "country" "Indonesia" "country_code" "ID" "city" "Weda" "longitude" "127.8300034" "latitude" "0.3407154" "last_login" "1587780907" +HSET "user:3279" "first_name" "Rena" "last_name" "Doubleday" "email" "rdoubleday7q@networksolutions.com" "gender" "female" "ip_address" "17.60.119.81" "country" "Egypt" "country_code" "EG" "city" "Al Wāsiţah" "longitude" "31.4656904" "latitude" "31.2385954" "last_login" "1594110572" +HSET "user:3280" "first_name" "Marja" "last_name" "Jewitt" "email" "mjewitt7r@omniture.com" "gender" "female" "ip_address" "74.82.114.244" "country" "Portugal" "country_code" "PT" "city" "Varge Mondar" "longitude" "-9.3408903" "latitude" "38.7554084" "last_login" "1590499697" +HSET "user:3281" "first_name" "Michele" "last_name" "Carnall" "email" "mcarnall7s@soundcloud.com" "gender" "female" "ip_address" "74.254.253.101" "country" "Russia" "country_code" "RU" "city" "Verkhozim" "longitude" "45.4271291" "latitude" "52.7112627" "last_login" "1579015603" +HSET "user:3282" "first_name" "Corabella" "last_name" "Peggs" "email" "cpeggs7t@drupal.org" "gender" "female" "ip_address" "239.121.83.148" "country" "Russia" "country_code" "RU" "city" "Rostokino" "longitude" "37.690366" "latitude" "55.874056" "last_login" "1581868231" +HSET "user:3283" "first_name" "Brewster" "last_name" "Dutton" "email" "bdutton7u@wiley.com" "gender" "male" "ip_address" "129.51.209.96" "country" "China" "country_code" "CN" "city" "Huayuan" "longitude" "109.482078" "latitude" "28.572029" "last_login" "1592917685" +HSET "user:3284" "first_name" "Stanislas" "last_name" "Andrioni" "email" "sandrioni7v@nih.gov" "gender" "male" "ip_address" "33.0.206.206" "country" "Russia" "country_code" "RU" "city" "Rostokino" "longitude" "37.690366" "latitude" "55.874056" "last_login" "1588253877" +HSET "user:3285" "first_name" "Rex" "last_name" "Lutton" "email" "rlutton7w@linkedin.com" "gender" "male" "ip_address" "108.139.206.176" "country" "Afghanistan" "country_code" "AF" "city" "Salām Khēl" "longitude" "69.666667" "latitude" "34.433333" "last_login" "1575397639" +HSET "user:3286" "first_name" "Lesley" "last_name" "Fairlaw" "email" "lfairlaw7x@zdnet.com" "gender" "male" "ip_address" "151.181.42.253" "country" "Peru" "country_code" "PE" "city" "Quinua" "longitude" "-74.139107" "latitude" "-13.05526" "last_login" "1582841065" +HSET "user:3287" "first_name" "Sibilla" "last_name" "Dionis" "email" "sdionis7y@is.gd" "gender" "female" "ip_address" "100.233.253.255" "country" "Philippines" "country_code" "PH" "city" "Naawan" "longitude" "124.2876362" "latitude" "8.4286368" "last_login" "1576543749" +HSET "user:3288" "first_name" "Brewer" "last_name" "Blankhorn" "email" "bblankhorn7z@meetup.com" "gender" "male" "ip_address" "133.89.121.152" "country" "Tanzania" "country_code" "TZ" "city" "Naberera" "longitude" "36.927071" "latitude" "-4.203866" "last_login" "1575498114" +HSET "user:3289" "first_name" "Brandais" "last_name" "Clemot" "email" "bclemot80@mozilla.com" "gender" "female" "ip_address" "85.9.156.132" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Kalenderovci Donji" "longitude" "17.8367375" "latitude" "44.9469715" "last_login" "1569162111" +HSET "user:3290" "first_name" "Bartholemy" "last_name" "Butcher" "email" "bbutcher81@smugmug.com" "gender" "male" "ip_address" "13.193.169.64" "country" "Russia" "country_code" "RU" "city" "Biryulëvo" "longitude" "37.6278499" "latitude" "55.590397" "last_login" "1582016112" +HSET "user:3291" "first_name" "Gigi" "last_name" "Heath" "email" "gheath82@google.ca" "gender" "female" "ip_address" "184.21.235.29" "country" "Costa Rica" "country_code" "CR" "city" "Pital" "longitude" "-84.2725621" "latitude" "10.4492758" "last_login" "1587612863" +HSET "user:3292" "first_name" "Shelbi" "last_name" "Arington" "email" "sarington83@eepurl.com" "gender" "female" "ip_address" "253.72.134.119" "country" "United States" "country_code" "US" "city" "Minneapolis" "longitude" "-93.26" "latitude" "44.9799999" "last_login" "1569778000" +HSET "user:3293" "first_name" "Sapphira" "last_name" "Grieveson" "email" "sgrieveson84@ftc.gov" "gender" "female" "ip_address" "213.193.101.251" "country" "Canada" "country_code" "CA" "city" "Grimshaw" "longitude" "-73.9260044" "latitude" "45.0417524" "last_login" "1579253772" +HSET "user:3294" "first_name" "Kane" "last_name" "Danielsky" "email" "kdanielsky85@cmu.edu" "gender" "male" "ip_address" "147.112.91.125" "country" "Indonesia" "country_code" "ID" "city" "Cinunjang" "longitude" "108.2822389" "latitude" "-7.4250762" "last_login" "1591295401" +HSET "user:3295" "first_name" "Ilyse" "last_name" "Chatelain" "email" "ichatelain86@npr.org" "gender" "female" "ip_address" "32.58.235.222" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1584321818" +HSET "user:3296" "first_name" "Arley" "last_name" "Eastway" "email" "aeastway87@about.me" "gender" "male" "ip_address" "160.49.111.61" "country" "Armenia" "country_code" "AM" "city" "Arshaluys" "longitude" "44.2123603" "latitude" "40.1667409" "last_login" "1593706631" +HSET "user:3297" "first_name" "Alexander" "last_name" "Janks" "email" "ajanks88@amazon.co.uk" "gender" "male" "ip_address" "152.202.24.237" "country" "Syria" "country_code" "SY" "city" "‘Uqayribāt" "longitude" "37.475109" "latitude" "35.03566" "last_login" "1589114978" +HSET "user:3298" "first_name" "Sibylle" "last_name" "Kira" "email" "skira89@irs.gov" "gender" "female" "ip_address" "59.11.188.84" "country" "Japan" "country_code" "JP" "city" "Nishinoomote" "longitude" "130.9913218" "latitude" "30.7366196" "last_login" "1580338007" +HSET "user:3299" "first_name" "Orlan" "last_name" "Caddell" "email" "ocaddell8a@google.nl" "gender" "male" "ip_address" "175.206.15.218" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "12.0551193" "latitude" "57.6975855" "last_login" "1599580697" +HSET "user:3300" "first_name" "Giralda" "last_name" "Bassford" "email" "gbassford8b@google.ca" "gender" "female" "ip_address" "224.44.39.152" "country" "Russia" "country_code" "RU" "city" "Gornorechenskiy" "longitude" "135.1145437" "latitude" "44.2636981" "last_login" "1578944572" +HSET "user:3301" "first_name" "Perri" "last_name" "Bisacre" "email" "pbisacre8c@gov.uk" "gender" "female" "ip_address" "0.158.96.221" "country" "Czech Republic" "country_code" "CZ" "city" "Jistebník" "longitude" "18.1313741" "latitude" "49.7523172" "last_login" "1583067676" +HSET "user:3302" "first_name" "Gerri" "last_name" "Burnell" "email" "gburnell8d@ebay.com" "gender" "male" "ip_address" "118.30.162.107" "country" "New Caledonia" "country_code" "NC" "city" "Nouméa" "longitude" "166.447436" "latitude" "-22.304089" "last_login" "1595950053" +HSET "user:3303" "first_name" "Currey" "last_name" "Dibdall" "email" "cdibdall8e@mail.ru" "gender" "male" "ip_address" "227.129.170.43" "country" "Argentina" "country_code" "AR" "city" "La Cruz" "longitude" "-58.6057651" "latitude" "-34.3998126" "last_login" "1583450641" +HSET "user:3304" "first_name" "Mariellen" "last_name" "Bassham" "email" "mbassham8f@ebay.com" "gender" "female" "ip_address" "217.131.39.49" "country" "China" "country_code" "CN" "city" "Bifeng" "longitude" "107.345882" "latitude" "28.693048" "last_login" "1588240554" +HSET "user:3305" "first_name" "Gusti" "last_name" "Burston" "email" "gburston8g@github.com" "gender" "female" "ip_address" "224.45.233.58" "country" "Indonesia" "country_code" "ID" "city" "Ciharalang" "longitude" "108.4098014" "latitude" "-7.3550776" "last_login" "1596735150" +HSET "user:3306" "first_name" "Mick" "last_name" "Djurkovic" "email" "mdjurkovic8h@typepad.com" "gender" "male" "ip_address" "158.15.46.219" "country" "Poland" "country_code" "PL" "city" "Bojano" "longitude" "18.3395929" "latitude" "54.4350153" "last_login" "1572289470" +HSET "user:3307" "first_name" "Archer" "last_name" "Dumbelton" "email" "adumbelton8i@wordpress.org" "gender" "male" "ip_address" "234.44.194.227" "country" "Brazil" "country_code" "BR" "city" "Tucano" "longitude" "-38.7897587" "latitude" "-10.9588216" "last_login" "1600203340" +HSET "user:3308" "first_name" "Ira" "last_name" "Davall" "email" "idavall8j@freewebs.com" "gender" "male" "ip_address" "71.31.222.210" "country" "China" "country_code" "CN" "city" "Jingzhou" "longitude" "112.239631" "latitude" "30.335237" "last_login" "1591395920" +HSET "user:3309" "first_name" "Tammi" "last_name" "Shaughnessy" "email" "tshaughnessy8k@europa.eu" "gender" "female" "ip_address" "217.230.238.202" "country" "Indonesia" "country_code" "ID" "city" "Jambuir Timur" "longitude" "114.3304" "latitude" "-7.1532" "last_login" "1592568493" +HSET "user:3310" "first_name" "Dominga" "last_name" "Cuddehay" "email" "dcuddehay8l@woothemes.com" "gender" "female" "ip_address" "231.30.240.156" "country" "Portugal" "country_code" "PT" "city" "Loures" "longitude" "-9.1901989" "latitude" "38.8424265" "last_login" "1586354503" +HSET "user:3311" "first_name" "Courtney" "last_name" "Overton" "email" "coverton8m@geocities.jp" "gender" "male" "ip_address" "134.227.83.8" "country" "Ukraine" "country_code" "UA" "city" "Novopokrovka" "longitude" "34.6153907" "latitude" "48.0589455" "last_login" "1599537995" +HSET "user:3312" "first_name" "Janean" "last_name" "Sylvaine" "email" "jsylvaine8n@google.co.jp" "gender" "female" "ip_address" "86.198.217.40" "country" "Sri Lanka" "country_code" "LK" "city" "Matara" "longitude" "80.5148127" "latitude" "5.9368109" "last_login" "1598520525" +HSET "user:3313" "first_name" "Gwenora" "last_name" "Pond-Jones" "email" "gpondjones8o@illinois.edu" "gender" "female" "ip_address" "218.34.127.69" "country" "Bulgaria" "country_code" "BG" "city" "Asenovgrad" "longitude" "24.8652145" "latitude" "42.0160888" "last_login" "1572204110" +HSET "user:3314" "first_name" "Ali" "last_name" "Longcaster" "email" "alongcaster8p@npr.org" "gender" "male" "ip_address" "178.83.184.77" "country" "Russia" "country_code" "RU" "city" "Nikol’sk" "longitude" "46.0481025" "latitude" "53.6992181" "last_login" "1582070109" +HSET "user:3315" "first_name" "Bella" "last_name" "Gather" "email" "bgather8q@wordpress.org" "gender" "female" "ip_address" "5.209.47.171" "country" "Japan" "country_code" "JP" "city" "Fukuroi" "longitude" "137.9224387" "latitude" "34.7465855" "last_login" "1582720203" +HSET "user:3316" "first_name" "Boris" "last_name" "Franks" "email" "bfranks8r@xing.com" "gender" "male" "ip_address" "53.126.182.208" "country" "Vietnam" "country_code" "VN" "city" "Đông Thành" "longitude" "105.9753452" "latitude" "20.2639567" "last_login" "1575101046" +HSET "user:3317" "first_name" "Leora" "last_name" "Wrate" "email" "lwrate8s@cyberchimps.com" "gender" "female" "ip_address" "207.18.118.23" "country" "Guatemala" "country_code" "GT" "city" "Ciudad Tecún Umán" "longitude" "-90.5279231" "latitude" "14.602493" "last_login" "1569908895" +HSET "user:3318" "first_name" "Glynnis" "last_name" "Cromer" "email" "gcromer8t@examiner.com" "gender" "female" "ip_address" "227.154.146.226" "country" "Indonesia" "country_code" "ID" "city" "Prioso Barat" "longitude" "115.18124" "latitude" "-8.665669" "last_login" "1597107827" +HSET "user:3319" "first_name" "Phaidra" "last_name" "Dainton" "email" "pdainton8u@youtu.be" "gender" "female" "ip_address" "36.81.181.21" "country" "China" "country_code" "CN" "city" "Heping" "longitude" "114.938684" "latitude" "24.44218" "last_login" "1576466958" +HSET "user:3320" "first_name" "Pammi" "last_name" "Windebank" "email" "pwindebank8v@va.gov" "gender" "female" "ip_address" "129.145.121.115" "country" "France" "country_code" "FR" "city" "Paris La Défense" "longitude" "2.2372792" "latitude" "48.890054" "last_login" "1591797691" +HSET "user:3321" "first_name" "Delores" "last_name" "Loch" "email" "dloch8w@bravesites.com" "gender" "female" "ip_address" "153.81.53.137" "country" "Czech Republic" "country_code" "CZ" "city" "Francova Lhota" "longitude" "18.1117597" "latitude" "49.2017413" "last_login" "1573022602" +HSET "user:3322" "first_name" "Ranna" "last_name" "Pole" "email" "rpole8x@wix.com" "gender" "female" "ip_address" "195.56.143.163" "country" "Philippines" "country_code" "PH" "city" "Claveria" "longitude" "124.972309" "latitude" "8.679187" "last_login" "1586760613" +HSET "user:3323" "first_name" "Raquel" "last_name" "Brandassi" "email" "rbrandassi8y@eventbrite.com" "gender" "female" "ip_address" "123.1.58.217" "country" "China" "country_code" "CN" "city" "Guxi" "longitude" "116.459299" "latitude" "39.909969" "last_login" "1577782310" +HSET "user:3324" "first_name" "Sonny" "last_name" "Cubuzzi" "email" "scubuzzi8z@state.gov" "gender" "male" "ip_address" "66.67.146.190" "country" "Russia" "country_code" "RU" "city" "Kushnarënkovo" "longitude" "55.3377071" "latitude" "55.1065781" "last_login" "1576323968" +HSET "user:3325" "first_name" "Nichol" "last_name" "Loynton" "email" "nloynton90@wp.com" "gender" "female" "ip_address" "118.40.225.69" "country" "Afghanistan" "country_code" "AF" "city" "Cool űrhajó" "longitude" "67.34516" "latitude" "34.26545" "last_login" "1597882649" +HSET "user:3326" "first_name" "Zelma" "last_name" "Deere" "email" "zdeere91@networkadvertising.org" "gender" "female" "ip_address" "236.204.117.71" "country" "Japan" "country_code" "JP" "city" "Kanie" "longitude" "136.7835269" "latitude" "35.0695474" "last_login" "1580851967" +HSET "user:3327" "first_name" "Norry" "last_name" "Avo" "email" "navo92@weather.com" "gender" "male" "ip_address" "1.195.253.178" "country" "Serbia" "country_code" "RS" "city" "Bašaid" "longitude" "20.4256633" "latitude" "45.6408779" "last_login" "1594163795" +HSET "user:3328" "first_name" "Phineas" "last_name" "Hancill" "email" "phancill93@intel.com" "gender" "male" "ip_address" "64.163.109.50" "country" "Indonesia" "country_code" "ID" "city" "Warungawi" "longitude" "107.4135643" "latitude" "-6.9560364" "last_login" "1579170972" +HSET "user:3329" "first_name" "Ahmad" "last_name" "King" "email" "aking94@nationalgeographic.com" "gender" "male" "ip_address" "49.75.172.135" "country" "Philippines" "country_code" "PH" "city" "Basiao" "longitude" "124.5514906" "latitude" "10.0698222" "last_login" "1584954611" +HSET "user:3330" "first_name" "Rosella" "last_name" "Woodes" "email" "rwoodes95@google.com.au" "gender" "female" "ip_address" "119.190.181.36" "country" "Indonesia" "country_code" "ID" "city" "Kedungwungu" "longitude" "108.4543113" "latitude" "-6.5096059" "last_login" "1576220826" +HSET "user:3331" "first_name" "Maurine" "last_name" "Suero" "email" "msuero96@pagesperso-orange.fr" "gender" "female" "ip_address" "35.247.165.46" "country" "Portugal" "country_code" "PT" "city" "Praia do Ribatejo" "longitude" "-8.3542102" "latitude" "39.4635996" "last_login" "1590142637" +HSET "user:3332" "first_name" "Lonny" "last_name" "Pybworth" "email" "lpybworth97@icio.us" "gender" "male" "ip_address" "206.207.24.75" "country" "France" "country_code" "FR" "city" "Vendargues" "longitude" "4.401981" "latitude" "43.804723" "last_login" "1581504207" +HSET "user:3333" "first_name" "Myrlene" "last_name" "McGrane" "email" "mmcgrane98@ucoz.ru" "gender" "female" "ip_address" "96.59.70.250" "country" "China" "country_code" "CN" "city" "Qinghu" "longitude" "96.4077358" "latitude" "35.744798" "last_login" "1589614624" +HSET "user:3334" "first_name" "Obed" "last_name" "Jarman" "email" "ojarman99@edublogs.org" "gender" "male" "ip_address" "35.119.123.154" "country" "Niger" "country_code" "NE" "city" "Mayahi" "longitude" "7.6710889" "latitude" "13.9501075" "last_login" "1587095678" +HSET "user:3335" "first_name" "Eliot" "last_name" "Towns" "email" "etowns9a@naver.com" "gender" "male" "ip_address" "196.183.154.225" "country" "Portugal" "country_code" "PT" "city" "Funchalinho" "longitude" "-9.2157735" "latitude" "38.6502909" "last_login" "1571046661" +HSET "user:3336" "first_name" "Addi" "last_name" "Jaram" "email" "ajaram9b@wired.com" "gender" "female" "ip_address" "124.97.113.1" "country" "Tanzania" "country_code" "TZ" "city" "Mikumi" "longitude" "36.9917125" "latitude" "-7.4031768" "last_login" "1573014765" +HSET "user:3337" "first_name" "Monte" "last_name" "Blinde" "email" "mblinde9c@wordpress.com" "gender" "male" "ip_address" "54.254.236.23" "country" "Russia" "country_code" "RU" "city" "Khryashchevka" "longitude" "49.0891636" "latitude" "53.8168303" "last_login" "1576020765" +HSET "user:3338" "first_name" "Gui" "last_name" "Hayne" "email" "ghayne9d@reddit.com" "gender" "female" "ip_address" "129.139.141.208" "country" "Nicaragua" "country_code" "NI" "city" "Jiquilillo" "longitude" "-87.4424369" "latitude" "12.7335527" "last_login" "1598242816" +HSET "user:3339" "first_name" "Archer" "last_name" "Bernardi" "email" "abernardi9e@columbia.edu" "gender" "male" "ip_address" "39.198.201.162" "country" "China" "country_code" "CN" "city" "Qiaole" "longitude" "115.568583" "latitude" "28.643587" "last_login" "1598660760" +HSET "user:3340" "first_name" "Hogan" "last_name" "Chant" "email" "hchant9f@businessweek.com" "gender" "male" "ip_address" "206.90.224.161" "country" "Indonesia" "country_code" "ID" "city" "Mauloo" "longitude" "122.0183914" "latitude" "-8.7517433" "last_login" "1599726279" +HSET "user:3341" "first_name" "Eddy" "last_name" "Darington" "email" "edarington9g@macromedia.com" "gender" "male" "ip_address" "147.52.182.22" "country" "China" "country_code" "CN" "city" "Choujiang" "longitude" "122.086156" "latitude" "30.284562" "last_login" "1589184793" +HSET "user:3342" "first_name" "Flor" "last_name" "Watsham" "email" "fwatsham9h@bloomberg.com" "gender" "female" "ip_address" "210.174.239.12" "country" "Colombia" "country_code" "CO" "city" "Sibaté" "longitude" "-74.259334" "latitude" "4.485011" "last_login" "1594961882" +HSET "user:3343" "first_name" "Ingaborg" "last_name" "Redwing" "email" "iredwing9i@tinypic.com" "gender" "female" "ip_address" "157.87.89.174" "country" "China" "country_code" "CN" "city" "Donghe" "longitude" "110.044106" "latitude" "40.576319" "last_login" "1570192121" +HSET "user:3344" "first_name" "Juana" "last_name" "Chillingsworth" "email" "jchillingsworth9j@diigo.com" "gender" "female" "ip_address" "225.11.120.200" "country" "Indonesia" "country_code" "ID" "city" "Pendolo" "longitude" "120.6832556" "latitude" "-2.0865267" "last_login" "1582915108" +HSET "user:3345" "first_name" "Gabby" "last_name" "Tammadge" "email" "gtammadge9k@home.pl" "gender" "male" "ip_address" "4.21.102.99" "country" "Jamaica" "country_code" "JM" "city" "Bluefields" "longitude" "-78.0295273" "latitude" "18.1741581" "last_login" "1592302301" +HSET "user:3346" "first_name" "Dorothee" "last_name" "Macro" "email" "dmacro9l@myspace.com" "gender" "female" "ip_address" "186.23.131.174" "country" "Argentina" "country_code" "AR" "city" "Ingeniero Guillermo N. Juárez" "longitude" "-58.5769684" "latitude" "-34.5939526" "last_login" "1586896511" +HSET "user:3347" "first_name" "Marya" "last_name" "Athowe" "email" "mathowe9m@so-net.ne.jp" "gender" "female" "ip_address" "246.92.96.236" "country" "Indonesia" "country_code" "ID" "city" "Dukuhtengah" "longitude" "112.7539449" "latitude" "-7.4099178" "last_login" "1570216177" +HSET "user:3348" "first_name" "Edna" "last_name" "Humphrys" "email" "ehumphrys9n@mapquest.com" "gender" "female" "ip_address" "68.192.102.13" "country" "Philippines" "country_code" "PH" "city" "Pangal Sur" "longitude" "121.71581" "latitude" "16.67064" "last_login" "1581425097" +HSET "user:3349" "first_name" "Nickey" "last_name" "McKinstry" "email" "nmckinstry9o@taobao.com" "gender" "male" "ip_address" "144.137.211.173" "country" "China" "country_code" "CN" "city" "Zhangcunping" "longitude" "111.207071" "latitude" "31.293061" "last_login" "1596883420" +HSET "user:3350" "first_name" "Elwin" "last_name" "Ashbolt" "email" "eashbolt9p@github.io" "gender" "male" "ip_address" "82.173.39.173" "country" "Norway" "country_code" "NO" "city" "Steinkjer" "longitude" "11.487163" "latitude" "64.012788" "last_login" "1585140922" +HSET "user:3351" "first_name" "Maje" "last_name" "Beake" "email" "mbeake9q@goo.gl" "gender" "male" "ip_address" "165.87.159.175" "country" "Canada" "country_code" "CA" "city" "Beaverlodge" "longitude" "-119.43605" "latitude" "55.21664" "last_login" "1586019579" +HSET "user:3352" "first_name" "Ellie" "last_name" "Lacaze" "email" "elacaze9r@webs.com" "gender" "female" "ip_address" "49.100.13.247" "country" "Canada" "country_code" "CA" "city" "Antigonish" "longitude" "-62.002631" "latitude" "45.6243985" "last_login" "1571534242" +HSET "user:3353" "first_name" "Garvin" "last_name" "Hackwell" "email" "ghackwell9s@usatoday.com" "gender" "male" "ip_address" "165.15.206.148" "country" "Gambia" "country_code" "GM" "city" "Sankwia" "longitude" "-15.5225259" "latitude" "13.460657" "last_login" "1583977963" +HSET "user:3354" "first_name" "Giacobo" "last_name" "Feore" "email" "gfeore9t@furl.net" "gender" "male" "ip_address" "214.14.88.80" "country" "Morocco" "country_code" "MA" "city" "Larache" "longitude" "-6.1473964" "latitude" "35.1744271" "last_login" "1579057972" +HSET "user:3355" "first_name" "Charlean" "last_name" "Semeniuk" "email" "csemeniuk9u@comcast.net" "gender" "female" "ip_address" "252.18.91.36" "country" "Thailand" "country_code" "TH" "city" "Sirindhorn" "longitude" "100.4959857" "latitude" "13.7850134" "last_login" "1571804695" +HSET "user:3356" "first_name" "Stanislaw" "last_name" "Treace" "email" "streace9v@purevolume.com" "gender" "male" "ip_address" "145.90.251.24" "country" "China" "country_code" "CN" "city" "Qingxi" "longitude" "114.164223" "latitude" "22.843818" "last_login" "1599578141" +HSET "user:3357" "first_name" "Abram" "last_name" "Joynt" "email" "ajoynt9w@cdc.gov" "gender" "male" "ip_address" "100.63.232.70" "country" "China" "country_code" "CN" "city" "Xiangyang" "longitude" "112.122426" "latitude" "32.009016" "last_login" "1600073800" +HSET "user:3358" "first_name" "Britte" "last_name" "Gellan" "email" "bgellan9x@1688.com" "gender" "female" "ip_address" "148.218.105.29" "country" "Indonesia" "country_code" "ID" "city" "Sukadana" "longitude" "110.0926112" "latitude" "-1.2468663" "last_login" "1585304597" +HSET "user:3359" "first_name" "Pearce" "last_name" "Arnholtz" "email" "parnholtz9y@dailymail.co.uk" "gender" "male" "ip_address" "130.16.211.125" "country" "France" "country_code" "FR" "city" "Laval" "longitude" "-0.7609009" "latitude" "48.0762327" "last_login" "1582135443" +HSET "user:3360" "first_name" "Ayn" "last_name" "Elfe" "email" "aelfe9z@studiopress.com" "gender" "female" "ip_address" "45.177.241.177" "country" "Palestinian Territory" "country_code" "PS" "city" "Masḩah" "longitude" "35.05096" "latitude" "32.10828" "last_login" "1578003714" +HSET "user:3361" "first_name" "Fernande" "last_name" "Virgin" "email" "fvirgina0@oracle.com" "gender" "female" "ip_address" "232.251.55.211" "country" "Pakistan" "country_code" "PK" "city" "Batgrām" "longitude" "73.02329" "latitude" "34.67719" "last_login" "1598705390" +HSET "user:3362" "first_name" "Carline" "last_name" "Linde" "email" "clindea1@t.co" "gender" "female" "ip_address" "25.206.129.172" "country" "Portugal" "country_code" "PT" "city" "Lourido" "longitude" "-8.207141" "latitude" "41.129239" "last_login" "1585366631" +HSET "user:3363" "first_name" "Bryanty" "last_name" "Fotheringham" "email" "bfotheringhama2@nasa.gov" "gender" "male" "ip_address" "127.239.214.208" "country" "Greece" "country_code" "GR" "city" "Yimnón" "longitude" "23.8850944" "latitude" "38.4391281" "last_login" "1585000900" +HSET "user:3364" "first_name" "Jackquelin" "last_name" "Scutts" "email" "jscuttsa3@japanpost.jp" "gender" "female" "ip_address" "116.151.18.87" "country" "Albania" "country_code" "AL" "city" "Vranisht" "longitude" "19.6892266" "latitude" "40.2115069" "last_login" "1595237319" +HSET "user:3365" "first_name" "Berny" "last_name" "Sponton" "email" "bspontona4@nymag.com" "gender" "male" "ip_address" "141.23.30.172" "country" "Indonesia" "country_code" "ID" "city" "Anjirserapat" "longitude" "114.533333" "latitude" "-3.233333" "last_login" "1572271413" +HSET "user:3366" "first_name" "Midge" "last_name" "Godley" "email" "mgodleya5@theatlantic.com" "gender" "female" "ip_address" "40.51.78.132" "country" "Bulgaria" "country_code" "BG" "city" "Boychinovtsi" "longitude" "26.5761136" "latitude" "43.2467751" "last_login" "1587741860" +HSET "user:3367" "first_name" "Valida" "last_name" "Ughelli" "email" "vughellia6@bigcartel.com" "gender" "female" "ip_address" "51.232.12.113" "country" "Oman" "country_code" "OM" "city" "‘Ibrī" "longitude" "56.4943984" "latitude" "23.2359238" "last_login" "1572595224" +HSET "user:3368" "first_name" "Frederico" "last_name" "Coste" "email" "fcostea7@vimeo.com" "gender" "male" "ip_address" "130.38.250.30" "country" "Canada" "country_code" "CA" "city" "Sainte-Agathe-des-Monts" "longitude" "-74.2739552" "latitude" "46.0474907" "last_login" "1575344375" +HSET "user:3369" "first_name" "Anatole" "last_name" "Leadley" "email" "aleadleya8@mysql.com" "gender" "male" "ip_address" "117.56.253.225" "country" "China" "country_code" "CN" "city" "Wangzha" "longitude" "113.264385" "latitude" "23.12911" "last_login" "1570564315" +HSET "user:3370" "first_name" "Renaud" "last_name" "Embery" "email" "remberya9@businessweek.com" "gender" "male" "ip_address" "36.250.128.82" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Starcevica" "longitude" "17.2038547" "latitude" "44.7607693" "last_login" "1569048892" +HSET "user:3371" "first_name" "Deana" "last_name" "Kleis" "email" "dkleisaa@narod.ru" "gender" "female" "ip_address" "142.9.118.26" "country" "Norway" "country_code" "NO" "city" "Kristiansand S" "longitude" "8.079923" "latitude" "58.1531344" "last_login" "1594779362" +HSET "user:3372" "first_name" "Lisa" "last_name" "Mallender" "email" "lmallenderab@opensource.org" "gender" "female" "ip_address" "17.167.138.42" "country" "Kazakhstan" "country_code" "KZ" "city" "Kostanay" "longitude" "63.6354232" "latitude" "53.2198089" "last_login" "1581029440" +HSET "user:3373" "first_name" "Nanete" "last_name" "Antonoczyk" "email" "nantonoczykac@google.es" "gender" "female" "ip_address" "196.250.21.85" "country" "China" "country_code" "CN" "city" "Huimin" "longitude" "117.509921" "latitude" "37.489877" "last_login" "1586650990" +HSET "user:3374" "first_name" "Wilow" "last_name" "Sertin" "email" "wsertinad@miitbeian.gov.cn" "gender" "female" "ip_address" "13.221.255.105" "country" "China" "country_code" "CN" "city" "Jiangti" "longitude" "114.9042208" "latitude" "27.0874564" "last_login" "1600074388" +HSET "user:3375" "first_name" "Dalt" "last_name" "Dinsmore" "email" "ddinsmoreae@bing.com" "gender" "male" "ip_address" "218.42.241.168" "country" "China" "country_code" "CN" "city" "Qiaotou" "longitude" "120.482198" "latitude" "28.168408" "last_login" "1599885997" +HSET "user:3376" "first_name" "Alford" "last_name" "Bayfield" "email" "abayfieldaf@dailymotion.com" "gender" "male" "ip_address" "231.161.147.113" "country" "China" "country_code" "CN" "city" "Xamba" "longitude" "-71.4720787" "latitude" "42.2971095" "last_login" "1592865742" +HSET "user:3377" "first_name" "Huntlee" "last_name" "Elner" "email" "helnerag@yolasite.com" "gender" "male" "ip_address" "15.33.229.91" "country" "China" "country_code" "CN" "city" "Gaoling" "longitude" "109.088297" "latitude" "34.534829" "last_login" "1582739241" +HSET "user:3378" "first_name" "Gretna" "last_name" "Siegertsz" "email" "gsiegertszah@prlog.org" "gender" "female" "ip_address" "236.180.29.100" "country" "Belarus" "country_code" "BY" "city" "Klichaw" "longitude" "29.3327582" "latitude" "53.4917756" "last_login" "1575693787" +HSET "user:3379" "first_name" "Danika" "last_name" "Manby" "email" "dmanbyai@scientificamerican.com" "gender" "female" "ip_address" "253.212.138.71" "country" "Venezuela" "country_code" "VE" "city" "Santa Bárbara" "longitude" "-71.1745579" "latitude" "7.8129929" "last_login" "1570155682" +HSET "user:3380" "first_name" "Opaline" "last_name" "Littleproud" "email" "olittleproudaj@acquirethisname.com" "gender" "female" "ip_address" "136.148.235.116" "country" "China" "country_code" "CN" "city" "Xixiang" "longitude" "107.766613" "latitude" "32.983101" "last_login" "1596389817" +HSET "user:3381" "first_name" "Brose" "last_name" "Brain" "email" "bbrainak@desdev.cn" "gender" "male" "ip_address" "82.215.6.153" "country" "Czech Republic" "country_code" "CZ" "city" "Nymburk" "longitude" "15.0436604" "latitude" "50.1855816" "last_login" "1571383494" +HSET "user:3382" "first_name" "Rubi" "last_name" "Spencer" "email" "rspenceral@icq.com" "gender" "female" "ip_address" "101.35.55.46" "country" "Brazil" "country_code" "BR" "city" "Colorado" "longitude" "-52.9814383" "latitude" "-28.4629851" "last_login" "1581233785" +HSET "user:3383" "first_name" "Matti" "last_name" "Peaple" "email" "mpeapleam@github.io" "gender" "female" "ip_address" "134.182.174.4" "country" "Poland" "country_code" "PL" "city" "Tworków" "longitude" "18.2125197" "latitude" "50.0144436" "last_login" "1586027567" +HSET "user:3384" "first_name" "Korie" "last_name" "Raspel" "email" "kraspelan@google.ca" "gender" "female" "ip_address" "101.57.210.200" "country" "Sweden" "country_code" "SE" "city" "Rimbo" "longitude" "18.3595793" "latitude" "59.7394596" "last_login" "1571485389" +HSET "user:3385" "first_name" "Jessee" "last_name" "Thaw" "email" "jthawao@uiuc.edu" "gender" "male" "ip_address" "235.205.160.70" "country" "Indonesia" "country_code" "ID" "city" "Tamanan" "longitude" "110.3859913" "latitude" "-7.8426533" "last_login" "1568840487" +HSET "user:3386" "first_name" "Skipper" "last_name" "Kernock" "email" "skernockap@newyorker.com" "gender" "male" "ip_address" "32.54.55.12" "country" "Uzbekistan" "country_code" "UZ" "city" "Qiziltepa Shahri" "longitude" "64.82885" "latitude" "40.0254" "last_login" "1595528915" +HSET "user:3387" "first_name" "Nevile" "last_name" "Iacobo" "email" "niacoboaq@aol.com" "gender" "male" "ip_address" "74.216.139.159" "country" "Greece" "country_code" "GR" "city" "Néa Plágia" "longitude" "23.2039759" "latitude" "40.2655961" "last_login" "1573928656" +HSET "user:3388" "first_name" "Bridget" "last_name" "Domke" "email" "bdomkear@creativecommons.org" "gender" "female" "ip_address" "60.175.82.172" "country" "Peru" "country_code" "PE" "city" "Mosoc Llacta" "longitude" "-71.47278" "latitude" "-14.12" "last_login" "1591569930" +HSET "user:3389" "first_name" "Sax" "last_name" "Gammons" "email" "sgammonsas@bandcamp.com" "gender" "male" "ip_address" "7.65.235.137" "country" "United States" "country_code" "US" "city" "Chicago" "longitude" "-117.0625875" "latitude" "34.5259004" "last_login" "1579263200" +HSET "user:3390" "first_name" "Verena" "last_name" "Haimes" "email" "vhaimesat@howstuffworks.com" "gender" "female" "ip_address" "101.229.157.181" "country" "Japan" "country_code" "JP" "city" "Niigata-shi" "longitude" "139.0158281" "latitude" "37.9133273" "last_login" "1590611960" +HSET "user:3391" "first_name" "Tyne" "last_name" "Kluss" "email" "tklussau@github.com" "gender" "female" "ip_address" "209.56.58.236" "country" "France" "country_code" "FR" "city" "Rennes" "longitude" "-1.9439194" "latitude" "48.1392924" "last_login" "1576128217" +HSET "user:3392" "first_name" "Hinda" "last_name" "Measey" "email" "hmeaseyav@wikimedia.org" "gender" "female" "ip_address" "128.128.58.69" "country" "Indonesia" "country_code" "ID" "city" "Klatakan" "longitude" "113.8882172" "latitude" "-7.7013097" "last_login" "1582919584" +HSET "user:3393" "first_name" "Gale" "last_name" "Freeburn" "email" "gfreeburnaw@irs.gov" "gender" "male" "ip_address" "127.96.134.43" "country" "Finland" "country_code" "FI" "city" "Kylmäkoski" "longitude" "23.7984078" "latitude" "61.1445749" "last_login" "1594993345" +HSET "user:3394" "first_name" "Nellie" "last_name" "McCloid" "email" "nmccloidax@npr.org" "gender" "female" "ip_address" "124.204.17.130" "country" "Dominican Republic" "country_code" "DO" "city" "Punta Cana" "longitude" "-71.3009387" "latitude" "18.8539206" "last_login" "1590923333" +HSET "user:3395" "first_name" "Ronny" "last_name" "Exton" "email" "rextonay@cmu.edu" "gender" "female" "ip_address" "217.137.212.58" "country" "Greece" "country_code" "GR" "city" "Keratéa" "longitude" "23.9763412" "latitude" "37.8071796" "last_login" "1590044327" +HSET "user:3396" "first_name" "Francisco" "last_name" "Blees" "email" "fbleesaz@bbb.org" "gender" "male" "ip_address" "181.142.98.162" "country" "Canada" "country_code" "CA" "city" "Moosomin" "longitude" "-101.66766" "latitude" "50.13332" "last_login" "1579904291" +HSET "user:3397" "first_name" "Ciel" "last_name" "Lantiffe" "email" "clantiffeb0@techcrunch.com" "gender" "female" "ip_address" "208.23.59.36" "country" "Zimbabwe" "country_code" "ZW" "city" "Nyazura" "longitude" "32.1646708" "latitude" "-18.7146874" "last_login" "1587692136" +HSET "user:3398" "first_name" "Malvin" "last_name" "Pflieger" "email" "mpfliegerb1@nps.gov" "gender" "male" "ip_address" "129.13.78.150" "country" "China" "country_code" "CN" "city" "Jinbi" "longitude" "98.533976" "latitude" "29.650449" "last_login" "1585446126" +HSET "user:3399" "first_name" "Roth" "last_name" "Pedroni" "email" "rpedronib2@amazon.com" "gender" "male" "ip_address" "182.128.76.129" "country" "Poland" "country_code" "PL" "city" "Pruchnik" "longitude" "22.5155104" "latitude" "49.9061322" "last_login" "1581825720" +HSET "user:3400" "first_name" "Ursala" "last_name" "Coarser" "email" "ucoarserb3@opera.com" "gender" "female" "ip_address" "196.19.117.208" "country" "Indonesia" "country_code" "ID" "city" "Atap" "longitude" "117.1147095" "latitude" "3.8152026" "last_login" "1592791161" +HSET "user:3401" "first_name" "Blondelle" "last_name" "Binge" "email" "bbingeb4@tripadvisor.com" "gender" "female" "ip_address" "34.86.137.12" "country" "Ukraine" "country_code" "UA" "city" "Vinnytsya" "longitude" "28.4682169" "latitude" "49.233083" "last_login" "1590508226" +HSET "user:3402" "first_name" "Fae" "last_name" "Cullabine" "email" "fcullabineb5@symantec.com" "gender" "female" "ip_address" "180.74.192.174" "country" "Dominican Republic" "country_code" "DO" "city" "Fantino" "longitude" "-69.9330362" "latitude" "18.4768908" "last_login" "1583881540" +HSET "user:3403" "first_name" "Glyn" "last_name" "Bennoe" "email" "gbennoeb6@1688.com" "gender" "male" "ip_address" "130.88.33.196" "country" "Japan" "country_code" "JP" "city" "Izumi" "longitude" "140.0392974" "latitude" "38.0818216" "last_login" "1588698469" +HSET "user:3404" "first_name" "Halsy" "last_name" "Aronin" "email" "haroninb7@taobao.com" "gender" "male" "ip_address" "30.16.237.24" "country" "Argentina" "country_code" "AR" "city" "Neuquén" "longitude" "-58.3326356" "latitude" "-34.7277137" "last_login" "1573163997" +HSET "user:3405" "first_name" "Avery" "last_name" "Stringfellow" "email" "astringfellowb8@clickbank.net" "gender" "male" "ip_address" "225.104.178.238" "country" "Israel" "country_code" "IL" "city" "‘Arad" "longitude" "35.214862" "latitude" "31.261447" "last_login" "1581957323" +HSET "user:3406" "first_name" "Cly" "last_name" "Cayet" "email" "ccayetb9@feedburner.com" "gender" "male" "ip_address" "0.158.116.127" "country" "Peru" "country_code" "PE" "city" "Quinua" "longitude" "-74.139107" "latitude" "-13.05526" "last_login" "1585602174" +HSET "user:3407" "first_name" "Gallard" "last_name" "Jersch" "email" "gjerschba@bigcartel.com" "gender" "male" "ip_address" "191.235.19.11" "country" "Indonesia" "country_code" "ID" "city" "Gununganyartambak Tengah" "longitude" "112.7699403" "latitude" "-7.3485439" "last_login" "1575239952" +HSET "user:3408" "first_name" "Saloma" "last_name" "Yekel" "email" "syekelbb@google.ca" "gender" "female" "ip_address" "31.210.28.204" "country" "Panama" "country_code" "PA" "city" "Chigoré" "longitude" "-80.3463754" "latitude" "8.5311099" "last_login" "1580011179" +HSET "user:3409" "first_name" "Arlyn" "last_name" "Becom" "email" "abecombc@example.com" "gender" "female" "ip_address" "226.33.36.151" "country" "Philippines" "country_code" "PH" "city" "Silongin" "longitude" "122.5217" "latitude" "13.2999" "last_login" "1570144975" +HSET "user:3410" "first_name" "Rolando" "last_name" "Pikesley" "email" "rpikesleybd@51.la" "gender" "male" "ip_address" "138.22.66.181" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Lamovita" "longitude" "16.9119159" "latitude" "44.9286321" "last_login" "1591023433" +HSET "user:3411" "first_name" "Giff" "last_name" "Usherwood" "email" "gusherwoodbe@buzzfeed.com" "gender" "male" "ip_address" "122.152.202.15" "country" "Philippines" "country_code" "PH" "city" "Daraitan" "longitude" "121.4276451" "latitude" "14.5951658" "last_login" "1569275129" +HSET "user:3412" "first_name" "Roth" "last_name" "Andrus" "email" "randrusbf@nationalgeographic.com" "gender" "male" "ip_address" "35.126.96.148" "country" "China" "country_code" "CN" "city" "Lisui" "longitude" "119.922796" "latitude" "28.46763" "last_login" "1592542491" +HSET "user:3413" "first_name" "Dale" "last_name" "Ward" "email" "dwardbg@123-reg.co.uk" "gender" "female" "ip_address" "213.105.106.71" "country" "Brazil" "country_code" "BR" "city" "São Miguel do Iguaçu" "longitude" "-54.3030016" "latitude" "-25.3849055" "last_login" "1597198722" +HSET "user:3414" "first_name" "Romola" "last_name" "Risebrow" "email" "rrisebrowbh@icq.com" "gender" "female" "ip_address" "24.238.118.227" "country" "China" "country_code" "CN" "city" "Shigou" "longitude" "113.916509" "latitude" "22.483182" "last_login" "1595083303" +HSET "user:3415" "first_name" "Alyosha" "last_name" "Twitty" "email" "atwittybi@go.com" "gender" "male" "ip_address" "219.40.24.237" "country" "Norway" "country_code" "NO" "city" "Tromsø" "longitude" "18.9221" "latitude" "69.63186" "last_login" "1568932877" +HSET "user:3416" "first_name" "Cathrin" "last_name" "Kitchingham" "email" "ckitchinghambj@archive.org" "gender" "female" "ip_address" "240.111.185.200" "country" "Estonia" "country_code" "EE" "city" "Suure-Jaani" "longitude" "25.4666818" "latitude" "58.5355022" "last_login" "1595842254" +HSET "user:3417" "first_name" "Marven" "last_name" "Dike" "email" "mdikebk@springer.com" "gender" "male" "ip_address" "215.141.91.219" "country" "Portugal" "country_code" "PT" "city" "Vilarelho" "longitude" "-8.8225193" "latitude" "41.860976" "last_login" "1598947128" +HSET "user:3418" "first_name" "Otto" "last_name" "Moresby" "email" "omoresbybl@cdbaby.com" "gender" "male" "ip_address" "8.157.174.249" "country" "Thailand" "country_code" "TH" "city" "Kaset Wisai" "longitude" "103.5899733" "latitude" "15.5906551" "last_login" "1574728247" +HSET "user:3419" "first_name" "Chance" "last_name" "Tilford" "email" "ctilfordbm@sakura.ne.jp" "gender" "male" "ip_address" "159.169.76.158" "country" "China" "country_code" "CN" "city" "Zhucun" "longitude" "113.69324" "latitude" "23.274583" "last_login" "1599232777" +HSET "user:3420" "first_name" "Ernesto" "last_name" "Runcieman" "email" "erunciemanbn@dagondesign.com" "gender" "male" "ip_address" "8.104.139.170" "country" "China" "country_code" "CN" "city" "Sijing" "longitude" "116.4073963" "latitude" "39.9041999" "last_login" "1569304538" +HSET "user:3421" "first_name" "Godiva" "last_name" "Muddle" "email" "gmuddlebo@omniture.com" "gender" "female" "ip_address" "127.115.191.242" "country" "China" "country_code" "CN" "city" "Xiashan" "longitude" "110.397656" "latitude" "21.192457" "last_login" "1573368489" +HSET "user:3422" "first_name" "Kerianne" "last_name" "Duffett" "email" "kduffettbp@nytimes.com" "gender" "female" "ip_address" "115.219.22.178" "country" "Portugal" "country_code" "PT" "city" "Cavalões" "longitude" "-8.5601403" "latitude" "41.4252912" "last_login" "1598904873" +HSET "user:3423" "first_name" "Vivyan" "last_name" "Crossdale" "email" "vcrossdalebq@paginegialle.it" "gender" "female" "ip_address" "11.198.87.57" "country" "Lithuania" "country_code" "LT" "city" "Širvintos" "longitude" "23.0257921" "latitude" "54.6590604" "last_login" "1572911215" +HSET "user:3424" "first_name" "Tasia" "last_name" "McColgan" "email" "tmccolganbr@surveymonkey.com" "gender" "female" "ip_address" "178.17.115.199" "country" "Indonesia" "country_code" "ID" "city" "Kenarilang" "longitude" "124.5029869" "latitude" "-8.2206994" "last_login" "1600163128" +HSET "user:3425" "first_name" "Bronson" "last_name" "De Filippo" "email" "bdefilippobs@noaa.gov" "gender" "male" "ip_address" "78.21.68.169" "country" "China" "country_code" "CN" "city" "Xiacang" "longitude" "115.540353" "latitude" "40.645924" "last_login" "1589605606" +HSET "user:3426" "first_name" "Karoly" "last_name" "Stidworthy" "email" "kstidworthybt@fc2.com" "gender" "male" "ip_address" "82.208.116.135" "country" "China" "country_code" "CN" "city" "Sexiong" "longitude" "92.835795" "latitude" "31.394935" "last_login" "1598535677" +HSET "user:3427" "first_name" "Anabal" "last_name" "Colum" "email" "acolumbu@sitemeter.com" "gender" "female" "ip_address" "81.62.32.10" "country" "Syria" "country_code" "SY" "city" "Tādif" "longitude" "37.5347993" "latitude" "36.3489618" "last_login" "1570078043" +HSET "user:3428" "first_name" "Dix" "last_name" "Witcombe" "email" "dwitcombebv@ycombinator.com" "gender" "female" "ip_address" "40.189.206.48" "country" "Indonesia" "country_code" "ID" "city" "Makbon" "longitude" "131.5612423" "latitude" "-0.8208263" "last_login" "1587374853" +HSET "user:3429" "first_name" "Neille" "last_name" "Shorter" "email" "nshorterbw@edublogs.org" "gender" "female" "ip_address" "255.227.218.132" "country" "Norway" "country_code" "NO" "city" "Grimstad" "longitude" "13.7026399" "latitude" "66.9443405" "last_login" "1579773477" +HSET "user:3430" "first_name" "Netty" "last_name" "Bungey" "email" "nbungeybx@phoca.cz" "gender" "female" "ip_address" "191.41.89.171" "country" "Croatia" "country_code" "HR" "city" "Bilice" "longitude" "17.8291657" "latitude" "45.2581286" "last_login" "1580378436" +HSET "user:3431" "first_name" "Olympia" "last_name" "Hynde" "email" "ohyndeby@fastcompany.com" "gender" "female" "ip_address" "2.6.219.179" "country" "Mexico" "country_code" "MX" "city" "Guadalupe" "longitude" "-100.2596935" "latitude" "25.6775595" "last_login" "1593396954" +HSET "user:3432" "first_name" "Mellie" "last_name" "Heartfield" "email" "mheartfieldbz@pbs.org" "gender" "female" "ip_address" "228.238.44.74" "country" "Russia" "country_code" "RU" "city" "Podporozh’ye" "longitude" "34.1661641" "latitude" "60.9116468" "last_login" "1569396445" +HSET "user:3433" "first_name" "Padgett" "last_name" "Hearnden" "email" "phearndenc0@washingtonpost.com" "gender" "male" "ip_address" "233.245.16.249" "country" "Brazil" "country_code" "BR" "city" "Brumado" "longitude" "-41.6809724" "latitude" "-14.1968614" "last_login" "1596248457" +HSET "user:3434" "first_name" "Quintin" "last_name" "Faltskog" "email" "qfaltskogc1@blogtalkradio.com" "gender" "male" "ip_address" "28.201.131.163" "country" "Sweden" "country_code" "SE" "city" "Tyresö" "longitude" "18.2180635" "latitude" "59.2290118" "last_login" "1592045185" +HSET "user:3435" "first_name" "Alair" "last_name" "Cornelleau" "email" "acornelleauc2@alexa.com" "gender" "male" "ip_address" "2.102.138.26" "country" "Russia" "country_code" "RU" "city" "Krasnogorskoye" "longitude" "86.185124" "latitude" "52.293402" "last_login" "1599026268" +HSET "user:3436" "first_name" "Lek" "last_name" "Winscum" "email" "lwinscumc3@phoca.cz" "gender" "male" "ip_address" "115.138.58.189" "country" "United States" "country_code" "US" "city" "Harrisburg" "longitude" "-76.8798693" "latitude" "40.2617721" "last_login" "1588028431" +HSET "user:3437" "first_name" "Britteny" "last_name" "Cristofvao" "email" "bcristofvaoc4@ted.com" "gender" "female" "ip_address" "226.225.57.192" "country" "Japan" "country_code" "JP" "city" "Fukayachō" "longitude" "139.5007628" "latitude" "35.3890138" "last_login" "1592989670" +HSET "user:3438" "first_name" "Rees" "last_name" "Leahy" "email" "rleahyc5@unc.edu" "gender" "male" "ip_address" "85.185.251.31" "country" "Tajikistan" "country_code" "TJ" "city" "Abdurahmoni Jomí" "longitude" "69.0138738" "latitude" "38.5527205" "last_login" "1594479115" +HSET "user:3439" "first_name" "Ernaline" "last_name" "Faye" "email" "efayec6@i2i.jp" "gender" "female" "ip_address" "172.192.192.113" "country" "Honduras" "country_code" "HN" "city" "Iralaya" "longitude" "-83.2251702" "latitude" "14.9974643" "last_login" "1578705419" +HSET "user:3440" "first_name" "Sampson" "last_name" "Pech" "email" "spechc7@google.nl" "gender" "male" "ip_address" "34.225.74.37" "country" "China" "country_code" "CN" "city" "Wuqu" "longitude" "119.8021001" "latitude" "31.3505924" "last_login" "1598136756" +HSET "user:3441" "first_name" "Towny" "last_name" "Sherringham" "email" "tsherringhamc8@flickr.com" "gender" "male" "ip_address" "200.97.64.138" "country" "Mexico" "country_code" "MX" "city" "San Antonio" "longitude" "-99.2058279" "latitude" "19.4805668" "last_login" "1575773546" +HSET "user:3442" "first_name" "Ive" "last_name" "McKelvey" "email" "imckelveyc9@freewebs.com" "gender" "male" "ip_address" "248.190.213.70" "country" "Thailand" "country_code" "TH" "city" "Chaiyaphum" "longitude" "101.6612934" "latitude" "16.5361315" "last_login" "1591341144" +HSET "user:3443" "first_name" "Anet" "last_name" "Keddle" "email" "akeddleca@slashdot.org" "gender" "female" "ip_address" "133.137.109.30" "country" "Indonesia" "country_code" "ID" "city" "Penisihan" "longitude" "109.1553021" "latitude" "-7.5882979" "last_login" "1583553943" +HSET "user:3444" "first_name" "Saundra" "last_name" "Lambregts" "email" "slambregtscb@google.ru" "gender" "female" "ip_address" "95.211.12.114" "country" "China" "country_code" "CN" "city" "Yingpu" "longitude" "121.525727" "latitude" "31.259822" "last_login" "1597301894" +HSET "user:3445" "first_name" "Llewellyn" "last_name" "Harvison" "email" "lharvisoncc@engadget.com" "gender" "male" "ip_address" "104.185.106.32" "country" "China" "country_code" "CN" "city" "Baisha" "longitude" "100.222545" "latitude" "26.641315" "last_login" "1573654614" +HSET "user:3446" "first_name" "Jarred" "last_name" "Cleveley" "email" "jcleveleycd@nationalgeographic.com" "gender" "male" "ip_address" "29.26.168.159" "country" "Kazakhstan" "country_code" "KZ" "city" "Zharkent" "longitude" "79.999974" "latitude" "44.166512" "last_login" "1573123953" +HSET "user:3447" "first_name" "Karylin" "last_name" "Beer" "email" "kbeerce@acquirethisname.com" "gender" "female" "ip_address" "239.23.9.164" "country" "Botswana" "country_code" "BW" "city" "Mahalapye" "longitude" "26.8321332" "latitude" "-23.107801" "last_login" "1584715314" +HSET "user:3448" "first_name" "Sandy" "last_name" "Brinkler" "email" "sbrinklercf@techcrunch.com" "gender" "male" "ip_address" "63.157.254.221" "country" "Brazil" "country_code" "BR" "city" "Quixeramobim" "longitude" "-39.4035876" "latitude" "-5.2915408" "last_login" "1572071303" +HSET "user:3449" "first_name" "Clari" "last_name" "Twomey" "email" "ctwomeycg@omniture.com" "gender" "female" "ip_address" "15.93.49.83" "country" "France" "country_code" "FR" "city" "Vittel" "longitude" "5.942257" "latitude" "48.2044234" "last_login" "1577763181" +HSET "user:3450" "first_name" "Deloris" "last_name" "Osbiston" "email" "dosbistonch@boston.com" "gender" "female" "ip_address" "16.46.57.50" "country" "France" "country_code" "FR" "city" "Moret-sur-Loing" "longitude" "2.683461" "latitude" "48.319875" "last_login" "1580655999" +HSET "user:3451" "first_name" "Hobard" "last_name" "Ellcock" "email" "hellcockci@issuu.com" "gender" "male" "ip_address" "98.234.98.29" "country" "China" "country_code" "CN" "city" "Shuibian" "longitude" "108.832917" "latitude" "33.988179" "last_login" "1598457288" +HSET "user:3452" "first_name" "Courtney" "last_name" "Dundridge" "email" "cdundridgecj@de.vu" "gender" "male" "ip_address" "215.26.102.12" "country" "Germany" "country_code" "DE" "city" "Hamburg Sankt Pauli" "longitude" "9.9778279" "latitude" "53.5472987" "last_login" "1587065321" +HSET "user:3453" "first_name" "Edee" "last_name" "Kensett" "email" "ekensettck@friendfeed.com" "gender" "female" "ip_address" "233.168.120.2" "country" "Guadeloupe" "country_code" "GP" "city" "Pointe-à-Pitre" "longitude" "-61.5340396" "latitude" "16.2413934" "last_login" "1588201255" +HSET "user:3454" "first_name" "Tania" "last_name" "McTurk" "email" "tmcturkcl@ask.com" "gender" "female" "ip_address" "54.56.225.66" "country" "Argentina" "country_code" "AR" "city" "Cruz Alta" "longitude" "-58.5321306" "latitude" "-34.6126135" "last_login" "1585454489" +HSET "user:3455" "first_name" "Natty" "last_name" "Letixier" "email" "nletixiercm@woothemes.com" "gender" "male" "ip_address" "123.50.232.227" "country" "Poland" "country_code" "PL" "city" "Turze Pole" "longitude" "22.004725" "latitude" "49.6616099" "last_login" "1581610856" +HSET "user:3456" "first_name" "Earle" "last_name" "Crittal" "email" "ecrittalcn@ca.gov" "gender" "male" "ip_address" "6.160.89.198" "country" "Nicaragua" "country_code" "NI" "city" "Yalagüina" "longitude" "-86.4920736" "latitude" "13.4817182" "last_login" "1579491772" +HSET "user:3457" "first_name" "Merna" "last_name" "Travers" "email" "mtraversco@webs.com" "gender" "female" "ip_address" "79.31.192.17" "country" "Nicaragua" "country_code" "NI" "city" "Nuevo Amanecer" "longitude" "-84.2002101" "latitude" "12.8207931" "last_login" "1596822037" +HSET "user:3458" "first_name" "Renell" "last_name" "McCotter" "email" "rmccottercp@squidoo.com" "gender" "female" "ip_address" "81.223.194.153" "country" "Ukraine" "country_code" "UA" "city" "Ovidiopol’" "longitude" "30.4372882" "latitude" "46.2519995" "last_login" "1584358425" +HSET "user:3459" "first_name" "Chuck" "last_name" "Boorne" "email" "cboornecq@ebay.com" "gender" "male" "ip_address" "86.136.199.19" "country" "China" "country_code" "CN" "city" "Shuijiang" "longitude" "102.6354187" "latitude" "24.9663939" "last_login" "1569781543" +HSET "user:3460" "first_name" "Gaston" "last_name" "Allinson" "email" "gallinsoncr@msu.edu" "gender" "male" "ip_address" "79.74.15.145" "country" "Czech Republic" "country_code" "CZ" "city" "Lochovice" "longitude" "13.9796068" "latitude" "49.8481991" "last_login" "1599233154" +HSET "user:3461" "first_name" "Concordia" "last_name" "Cockings" "email" "ccockingscs@newsvine.com" "gender" "female" "ip_address" "225.59.37.169" "country" "Czech Republic" "country_code" "CZ" "city" "Nové Strašecí" "longitude" "13.9004377" "latitude" "50.1527227" "last_login" "1585097606" +HSET "user:3462" "first_name" "Theobald" "last_name" "Duke" "email" "tdukect@123-reg.co.uk" "gender" "male" "ip_address" "209.7.180.193" "country" "Portugal" "country_code" "PT" "city" "Porto Salvo" "longitude" "-9.3069187" "latitude" "38.7157106" "last_login" "1568953557" +HSET "user:3463" "first_name" "Stanley" "last_name" "Wynett" "email" "swynettcu@nydailynews.com" "gender" "male" "ip_address" "62.123.244.24" "country" "Poland" "country_code" "PL" "city" "Rzewnie" "longitude" "21.3426286" "latitude" "52.8234799" "last_login" "1575760090" +HSET "user:3464" "first_name" "Damita" "last_name" "Frango" "email" "dfrangocv@globo.com" "gender" "female" "ip_address" "215.169.65.163" "country" "Indonesia" "country_code" "ID" "city" "Kedung" "longitude" "110.6757556" "latitude" "-6.6605307" "last_login" "1584511041" +HSET "user:3465" "first_name" "Aluino" "last_name" "Sloey" "email" "asloeycw@about.me" "gender" "male" "ip_address" "218.50.85.88" "country" "Russia" "country_code" "RU" "city" "Yantal’" "longitude" "131.900455" "latitude" "43.126984" "last_login" "1577832903" +HSET "user:3466" "first_name" "Carry" "last_name" "Pautot" "email" "cpautotcx@typepad.com" "gender" "female" "ip_address" "34.228.13.197" "country" "Philippines" "country_code" "PH" "city" "Legaspi" "longitude" "121.0215733" "latitude" "14.5694082" "last_login" "1588193224" +HSET "user:3467" "first_name" "Homere" "last_name" "Castagneri" "email" "hcastagnericy@java.com" "gender" "male" "ip_address" "4.29.191.216" "country" "France" "country_code" "FR" "city" "Cesson" "longitude" "-2.1105468" "latitude" "46.8315136" "last_login" "1574096325" +HSET "user:3468" "first_name" "Korella" "last_name" "Yakovlev" "email" "kyakovlevcz@utexas.edu" "gender" "female" "ip_address" "213.82.125.151" "country" "United Kingdom" "country_code" "GB" "city" "Church End" "longitude" "-0.198414" "latitude" "51.598282" "last_login" "1589059493" +HSET "user:3469" "first_name" "Geordie" "last_name" "Charlewood" "email" "gcharlewoodd0@php.net" "gender" "male" "ip_address" "252.165.184.122" "country" "Russia" "country_code" "RU" "city" "Krasnoshchekovo" "longitude" "82.756927" "latitude" "51.6661372" "last_login" "1576862701" +HSET "user:3470" "first_name" "Rick" "last_name" "Kimbley" "email" "rkimbleyd1@omniture.com" "gender" "male" "ip_address" "40.10.202.53" "country" "Sweden" "country_code" "SE" "city" "Rönninge" "longitude" "17.7558589" "latitude" "59.1894804" "last_login" "1575621041" +HSET "user:3471" "first_name" "Alice" "last_name" "Andrey" "email" "aandreyd2@devhub.com" "gender" "female" "ip_address" "226.29.229.133" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-77.0157837" "latitude" "38.8978995" "last_login" "1570088835" +HSET "user:3472" "first_name" "Marcus" "last_name" "Hatliffe" "email" "mhatliffed3@shareasale.com" "gender" "male" "ip_address" "183.84.121.33" "country" "China" "country_code" "CN" "city" "Weizheng" "longitude" "113.5978392" "latitude" "28.6909216" "last_login" "1575644688" +HSET "user:3473" "first_name" "Friedrich" "last_name" "Biggen" "email" "fbiggend4@miibeian.gov.cn" "gender" "male" "ip_address" "253.58.118.147" "country" "Indonesia" "country_code" "ID" "city" "Dofa" "longitude" "125.379537" "latitude" "-1.8213645" "last_login" "1575823286" +HSET "user:3474" "first_name" "Clint" "last_name" "Izat" "email" "cizatd5@pagesperso-orange.fr" "gender" "male" "ip_address" "24.215.242.57" "country" "South Africa" "country_code" "ZA" "city" "Vrede" "longitude" "28.8476254" "latitude" "-27.2369945" "last_login" "1589872665" +HSET "user:3475" "first_name" "Donella" "last_name" "Birkmyr" "email" "dbirkmyrd6@pagesperso-orange.fr" "gender" "female" "ip_address" "89.13.39.240" "country" "Germany" "country_code" "DE" "city" "Witzenhausen" "longitude" "9.7730968" "latitude" "51.349366" "last_login" "1578943055" +HSET "user:3476" "first_name" "Colette" "last_name" "Troy" "email" "ctroyd7@umn.edu" "gender" "female" "ip_address" "9.141.244.162" "country" "Colombia" "country_code" "CO" "city" "Puerto Santander" "longitude" "-72.408389" "latitude" "8.361323" "last_login" "1593325908" +HSET "user:3477" "first_name" "Averyl" "last_name" "Reichartz" "email" "areichartzd8@cpanel.net" "gender" "female" "ip_address" "233.254.43.182" "country" "United States" "country_code" "US" "city" "Palatine" "longitude" "-88.0549221" "latitude" "42.1165506" "last_login" "1596734774" +HSET "user:3478" "first_name" "Enrika" "last_name" "Wilfling" "email" "ewilflingd9@ebay.com" "gender" "female" "ip_address" "200.213.185.23" "country" "South Korea" "country_code" "KR" "city" "Imsil" "longitude" "127.2826599" "latitude" "35.6110549" "last_login" "1571443811" +HSET "user:3479" "first_name" "Belva" "last_name" "Jachimak" "email" "bjachimakda@blogtalkradio.com" "gender" "female" "ip_address" "94.244.11.118" "country" "Madagascar" "country_code" "MG" "city" "Fenoarivo Be" "longitude" "49.36706" "latitude" "-17.3256545" "last_login" "1581175728" +HSET "user:3480" "first_name" "Salvatore" "last_name" "Wabey" "email" "swabeydb@loc.gov" "gender" "male" "ip_address" "120.203.107.180" "country" "Benin" "country_code" "BJ" "city" "Abomey-Calavi" "longitude" "2.3468195" "latitude" "6.4503024" "last_login" "1568673592" +HSET "user:3481" "first_name" "Penn" "last_name" "Blindt" "email" "pblindtdc@bandcamp.com" "gender" "male" "ip_address" "128.89.115.46" "country" "Chile" "country_code" "CL" "city" "Villa Alemana" "longitude" "-71.3906234" "latitude" "-33.0516935" "last_login" "1580757292" +HSET "user:3482" "first_name" "Basil" "last_name" "Coker" "email" "bcokerdd@weebly.com" "gender" "male" "ip_address" "16.255.163.240" "country" "Egypt" "country_code" "EG" "city" "Dikirnis" "longitude" "31.6511258" "latitude" "31.060387" "last_login" "1579855382" +HSET "user:3483" "first_name" "Lexy" "last_name" "Harsant" "email" "lharsantde@addtoany.com" "gender" "female" "ip_address" "236.40.153.250" "country" "Indonesia" "country_code" "ID" "city" "Campok" "longitude" "99.9360207" "latitude" "0.1156645" "last_login" "1569595119" +HSET "user:3484" "first_name" "Ruprecht" "last_name" "Voss" "email" "rvossdf@t.co" "gender" "male" "ip_address" "106.162.232.132" "country" "Philippines" "country_code" "PH" "city" "Caminauit" "longitude" "121.0749225" "latitude" "12.3363017" "last_login" "1572840097" +HSET "user:3485" "first_name" "Ogdan" "last_name" "Crick" "email" "ocrickdg@senate.gov" "gender" "male" "ip_address" "208.203.254.213" "country" "China" "country_code" "CN" "city" "Yugang" "longitude" "112.124371" "latitude" "32.085484" "last_login" "1585497800" +HSET "user:3486" "first_name" "Chuck" "last_name" "Neenan" "email" "cneenandh@stanford.edu" "gender" "male" "ip_address" "77.94.226.124" "country" "China" "country_code" "CN" "city" "Sandouping" "longitude" "111.073494" "latitude" "30.833435" "last_login" "1596851775" +HSET "user:3487" "first_name" "Willie" "last_name" "Simakov" "email" "wsimakovdi@moonfruit.com" "gender" "male" "ip_address" "179.148.179.75" "country" "Thailand" "country_code" "TH" "city" "Nam Kliang" "longitude" "104.5422225" "latitude" "14.9128369" "last_login" "1582834186" +HSET "user:3488" "first_name" "Tim" "last_name" "Coate" "email" "tcoatedj@tmall.com" "gender" "male" "ip_address" "45.162.172.213" "country" "China" "country_code" "CN" "city" "Shuangmiaojie" "longitude" "106.5886373" "latitude" "31.6360346" "last_login" "1576369646" +HSET "user:3489" "first_name" "Pall" "last_name" "Smidmore" "email" "psmidmoredk@oaic.gov.au" "gender" "male" "ip_address" "217.206.121.144" "country" "Saudi Arabia" "country_code" "SA" "city" "Farasān" "longitude" "42.120984" "latitude" "16.701895" "last_login" "1588691321" +HSET "user:3490" "first_name" "Kiel" "last_name" "Meyrick" "email" "kmeyrickdl@weather.com" "gender" "male" "ip_address" "125.44.226.188" "country" "Philippines" "country_code" "PH" "city" "Ungca" "longitude" "120.6299566" "latitude" "15.1585322" "last_login" "1584956326" +HSET "user:3491" "first_name" "Malia" "last_name" "Garci" "email" "mgarcidm@salon.com" "gender" "female" "ip_address" "252.42.144.50" "country" "Bangladesh" "country_code" "BD" "city" "Manikchari" "longitude" "91.8696765" "latitude" "22.8109535" "last_login" "1571995439" +HSET "user:3492" "first_name" "Lanny" "last_name" "Carlett" "email" "lcarlettdn@nature.com" "gender" "female" "ip_address" "80.0.5.37" "country" "Sweden" "country_code" "SE" "city" "Katrineholm" "longitude" "16.18741" "latitude" "59.0836123" "last_login" "1571749180" +HSET "user:3493" "first_name" "Thomasine" "last_name" "Mainston" "email" "tmainstondo@google.co.jp" "gender" "female" "ip_address" "30.146.56.136" "country" "Argentina" "country_code" "AR" "city" "San Luis" "longitude" "-60.6949244" "latitude" "-32.9395437" "last_login" "1571096824" +HSET "user:3494" "first_name" "Forster" "last_name" "Markus" "email" "fmarkusdp@lulu.com" "gender" "male" "ip_address" "124.32.50.228" "country" "Micronesia" "country_code" "FM" "city" "Oneop" "longitude" "153.7133333" "latitude" "5.5047222" "last_login" "1577861140" +HSET "user:3495" "first_name" "Lucio" "last_name" "Rodolfi" "email" "lrodolfidq@behance.net" "gender" "male" "ip_address" "28.99.107.241" "country" "Brazil" "country_code" "BR" "city" "Garanhuns" "longitude" "-36.4968966" "latitude" "-8.8828551" "last_login" "1588151265" +HSET "user:3496" "first_name" "Gustave" "last_name" "Surmon" "email" "gsurmondr@comcast.net" "gender" "male" "ip_address" "252.198.157.79" "country" "United States" "country_code" "US" "city" "Minneapolis" "longitude" "-93.3007481" "latitude" "45.1908533" "last_login" "1581585310" +HSET "user:3497" "first_name" "Hall" "last_name" "Beville" "email" "hbevilleds@trellian.com" "gender" "male" "ip_address" "67.179.208.157" "country" "China" "country_code" "CN" "city" "Xiangfeng" "longitude" "116.339492" "latitude" "39.767266" "last_login" "1570141476" +HSET "user:3498" "first_name" "Bernetta" "last_name" "Mourant" "email" "bmourantdt@1688.com" "gender" "female" "ip_address" "244.135.244.169" "country" "Russia" "country_code" "RU" "city" "Rossosh’" "longitude" "39.5632497" "latitude" "50.1987725" "last_login" "1599862743" +HSET "user:3499" "first_name" "Raina" "last_name" "Francisco" "email" "rfranciscodu@spotify.com" "gender" "female" "ip_address" "155.151.192.250" "country" "China" "country_code" "CN" "city" "Dongdajie" "longitude" "115.1743446" "latitude" "38.1008157" "last_login" "1587724082" +HSET "user:3500" "first_name" "Christina" "last_name" "Sowden" "email" "csowdendv@yale.edu" "gender" "female" "ip_address" "226.114.181.129" "country" "Russia" "country_code" "RU" "city" "Lopatinskiy" "longitude" "43.1402151" "latitude" "51.5607333" "last_login" "1580847058" +HSET "user:3501" "first_name" "Dougy" "last_name" "Hofer" "email" "dhoferdw@wunderground.com" "gender" "male" "ip_address" "122.150.19.117" "country" "Portugal" "country_code" "PT" "city" "Monção" "longitude" "-8.4835185" "latitude" "42.079279" "last_login" "1576835950" +HSET "user:3502" "first_name" "Fransisco" "last_name" "Lowy" "email" "flowydx@delicious.com" "gender" "male" "ip_address" "70.96.122.93" "country" "Sweden" "country_code" "SE" "city" "Linköping" "longitude" "15.5930164" "latitude" "58.4050087" "last_login" "1574680156" +HSET "user:3503" "first_name" "Ramon" "last_name" "Tenbrug" "email" "rtenbrugdy@omniture.com" "gender" "male" "ip_address" "159.79.205.8" "country" "Japan" "country_code" "JP" "city" "Komono" "longitude" "130.5200852" "latitude" "33.7311229" "last_login" "1590813640" +HSET "user:3504" "first_name" "Harris" "last_name" "Eastmead" "email" "heastmeaddz@kickstarter.com" "gender" "male" "ip_address" "160.240.98.62" "country" "Philippines" "country_code" "PH" "city" "Maño" "longitude" "123.9418261" "latitude" "11.042265" "last_login" "1591908087" +HSET "user:3505" "first_name" "Alick" "last_name" "Quesne" "email" "aquesnee0@hugedomains.com" "gender" "male" "ip_address" "243.186.92.120" "country" "China" "country_code" "CN" "city" "Huliao" "longitude" "116.697433" "latitude" "24.366556" "last_login" "1583894509" +HSET "user:3506" "first_name" "Seline" "last_name" "Lauchlan" "email" "slauchlane1@sciencedaily.com" "gender" "female" "ip_address" "18.24.150.143" "country" "Colombia" "country_code" "CO" "city" "Gachancipá" "longitude" "-73.87076" "latitude" "4.9918699" "last_login" "1572914349" +HSET "user:3507" "first_name" "Hugibert" "last_name" "Bernardot" "email" "hbernardote2@deliciousdays.com" "gender" "male" "ip_address" "227.76.131.156" "country" "Gambia" "country_code" "GM" "city" "Sabi" "longitude" "-14.1959978" "latitude" "13.2375414" "last_login" "1589844499" +HSET "user:3508" "first_name" "Denis" "last_name" "Kybbye" "email" "dkybbyee3@stanford.edu" "gender" "male" "ip_address" "122.11.244.129" "country" "Philippines" "country_code" "PH" "city" "Manga" "longitude" "121.0527067" "latitude" "14.5653343" "last_login" "1577574352" +HSET "user:3509" "first_name" "Kippar" "last_name" "Douthwaite" "email" "kdouthwaitee4@yandex.ru" "gender" "male" "ip_address" "143.186.105.237" "country" "China" "country_code" "CN" "city" "Funan Chengguanzhen" "longitude" "115.5777522" "latitude" "32.6350368" "last_login" "1584016945" +HSET "user:3510" "first_name" "Brooks" "last_name" "Summerly" "email" "bsummerlye5@stumbleupon.com" "gender" "male" "ip_address" "53.205.43.205" "country" "Albania" "country_code" "AL" "city" "Aranitas" "longitude" "19.8082799" "latitude" "40.5974058" "last_login" "1594317485" +HSET "user:3511" "first_name" "Thurstan" "last_name" "Picknett" "email" "tpicknette6@github.io" "gender" "male" "ip_address" "159.99.106.249" "country" "Canada" "country_code" "CA" "city" "High Prairie" "longitude" "-116.4858" "latitude" "55.4334" "last_login" "1573912335" +HSET "user:3512" "first_name" "Cyrille" "last_name" "Barlow" "email" "cbarlowe7@yale.edu" "gender" "male" "ip_address" "236.158.112.80" "country" "China" "country_code" "CN" "city" "Jinghai" "longitude" "116.97413" "latitude" "38.947512" "last_login" "1585808083" +HSET "user:3513" "first_name" "Sherie" "last_name" "Easterby" "email" "seasterbye8@indiatimes.com" "gender" "female" "ip_address" "250.130.144.157" "country" "Colombia" "country_code" "CO" "city" "Andalucía" "longitude" "-76.167375" "latitude" "4.168711" "last_login" "1578734860" +HSET "user:3514" "first_name" "Dorris" "last_name" "Coultass" "email" "dcoultasse9@geocities.jp" "gender" "female" "ip_address" "220.21.21.126" "country" "Netherlands" "country_code" "NL" "city" "Leeuwarden" "longitude" "5.8112912" "latitude" "53.2012042" "last_login" "1590789882" +HSET "user:3515" "first_name" "Lenna" "last_name" "Sproson" "email" "lsprosonea@google.de" "gender" "female" "ip_address" "79.150.139.223" "country" "China" "country_code" "CN" "city" "Dongting" "longitude" "112.5841075" "latitude" "28.8876615" "last_login" "1590174303" +HSET "user:3516" "first_name" "Rodrique" "last_name" "Karsh" "email" "rkarsheb@amazon.co.uk" "gender" "male" "ip_address" "72.30.113.24" "country" "Brazil" "country_code" "BR" "city" "Plácido de Castro" "longitude" "-67.2847875" "latitude" "-10.2313205" "last_login" "1596698064" +HSET "user:3517" "first_name" "Hedwiga" "last_name" "Eykelhof" "email" "heykelhofec@google.co.uk" "gender" "female" "ip_address" "124.98.209.239" "country" "Bahrain" "country_code" "BH" "city" "Madīnat ‘Īsá" "longitude" "50.5523828" "latitude" "26.1656051" "last_login" "1597853824" +HSET "user:3518" "first_name" "Neila" "last_name" "Guthrie" "email" "nguthrieed@fema.gov" "gender" "female" "ip_address" "185.249.226.33" "country" "China" "country_code" "CN" "city" "Liangshuihe" "longitude" "111.472029" "latitude" "32.645622" "last_login" "1576709841" +HSET "user:3519" "first_name" "Dallis" "last_name" "Purchase" "email" "dpurchaseee@moonfruit.com" "gender" "male" "ip_address" "34.18.126.213" "country" "South Korea" "country_code" "KR" "city" "Songwon" "longitude" "127.0051893" "latitude" "37.5599805" "last_login" "1575596515" +HSET "user:3520" "first_name" "Sheela" "last_name" "Holmyard" "email" "sholmyardef@creativecommons.org" "gender" "female" "ip_address" "123.91.9.68" "country" "Portugal" "country_code" "PT" "city" "Roriz" "longitude" "-8.3773116" "latitude" "41.3435561" "last_login" "1579919353" +HSET "user:3521" "first_name" "Cristal" "last_name" "Bulward" "email" "cbulwardeg@ftc.gov" "gender" "female" "ip_address" "96.161.0.243" "country" "Thailand" "country_code" "TH" "city" "Betong" "longitude" "101.0372376" "latitude" "5.7799851" "last_login" "1596554621" +HSET "user:3522" "first_name" "Catherine" "last_name" "Prise" "email" "cpriseeh@cbc.ca" "gender" "female" "ip_address" "63.180.175.126" "country" "France" "country_code" "FR" "city" "Lyon" "longitude" "1.9038837" "latitude" "43.0429124" "last_login" "1591757691" +HSET "user:3523" "first_name" "Brandise" "last_name" "Forrest" "email" "bforrestei@weebly.com" "gender" "female" "ip_address" "70.163.21.233" "country" "Canada" "country_code" "CA" "city" "Alma" "longitude" "-71.6491" "latitude" "48.55009" "last_login" "1586055137" +HSET "user:3524" "first_name" "Hinze" "last_name" "Coakley" "email" "hcoakleyej@tripadvisor.com" "gender" "male" "ip_address" "68.15.210.58" "country" "Albania" "country_code" "AL" "city" "Librazhd-Qendër" "longitude" "20.384833" "latitude" "41.136741" "last_login" "1583182224" +HSET "user:3525" "first_name" "Sosanna" "last_name" "Larmuth" "email" "slarmuthek@dropbox.com" "gender" "female" "ip_address" "148.84.191.154" "country" "China" "country_code" "CN" "city" "Liaobu" "longitude" "113.87497" "latitude" "22.99732" "last_login" "1570680455" +HSET "user:3526" "first_name" "Boyd" "last_name" "Ousby" "email" "bousbyel@macromedia.com" "gender" "male" "ip_address" "76.117.251.73" "country" "Madagascar" "country_code" "MG" "city" "Ampasimanolotra" "longitude" "49.0652963" "latitude" "-18.8200534" "last_login" "1578074786" +HSET "user:3527" "first_name" "Klement" "last_name" "Marchington" "email" "kmarchingtonem@amazon.co.jp" "gender" "male" "ip_address" "101.148.231.163" "country" "Mexico" "country_code" "MX" "city" "Emiliano Zapata" "longitude" "-99.1559935" "latitude" "18.6220301" "last_login" "1584374219" +HSET "user:3528" "first_name" "Mikol" "last_name" "McCreery" "email" "mmccreeryen@free.fr" "gender" "male" "ip_address" "148.124.184.217" "country" "Indonesia" "country_code" "ID" "city" "Hegarmanah" "longitude" "107.5993373" "latitude" "-6.8732784" "last_login" "1578887973" +HSET "user:3529" "first_name" "Monti" "last_name" "Toy" "email" "mtoyeo@geocities.jp" "gender" "male" "ip_address" "158.152.215.243" "country" "Ivory Coast" "country_code" "CI" "city" "Abengourou" "longitude" "-3.4801349" "latitude" "6.7156982" "last_login" "1583843449" +HSET "user:3530" "first_name" "Elbertine" "last_name" "Clapp" "email" "eclappep@discuz.net" "gender" "female" "ip_address" "60.85.69.0" "country" "China" "country_code" "CN" "city" "Banyue" "longitude" "108.1171371" "latitude" "28.2586882" "last_login" "1591539755" +HSET "user:3531" "first_name" "Anitra" "last_name" "Baptista" "email" "abaptistaeq@newyorker.com" "gender" "female" "ip_address" "244.67.96.45" "country" "Luxembourg" "country_code" "LU" "city" "Mamer" "longitude" "6.0346235" "latitude" "49.6306384" "last_login" "1573981891" +HSET "user:3532" "first_name" "Julio" "last_name" "Stieger" "email" "jstiegerer@icio.us" "gender" "male" "ip_address" "115.223.64.81" "country" "Indonesia" "country_code" "ID" "city" "Banjar Teguan" "longitude" "115.2298" "latitude" "-8.5067" "last_login" "1595993813" +HSET "user:3533" "first_name" "Terri-jo" "last_name" "Gerry" "email" "tgerryes@networksolutions.com" "gender" "female" "ip_address" "217.207.117.139" "country" "France" "country_code" "FR" "city" "Argenteuil" "longitude" "2.257134" "latitude" "48.9467896" "last_login" "1583047759" +HSET "user:3534" "first_name" "Kenny" "last_name" "O'Hederscoll" "email" "kohederscollet@netvibes.com" "gender" "male" "ip_address" "215.122.109.180" "country" "Pakistan" "country_code" "PK" "city" "Tāndo Mittha Khān" "longitude" "69.1193694" "latitude" "25.8626983" "last_login" "1570598984" +HSET "user:3535" "first_name" "Mandi" "last_name" "Girardengo" "email" "mgirardengoeu@twitter.com" "gender" "female" "ip_address" "193.6.79.126" "country" "Peru" "country_code" "PE" "city" "Quinuabamba" "longitude" "-72.6919814" "latitude" "-12.868355" "last_login" "1583361727" +HSET "user:3536" "first_name" "Devland" "last_name" "Phippen" "email" "dphippenev@merriam-webster.com" "gender" "male" "ip_address" "222.213.167.208" "country" "Philippines" "country_code" "PH" "city" "Perrelos" "longitude" "123.649321" "latitude" "10.107755" "last_login" "1575733420" +HSET "user:3537" "first_name" "Nicoli" "last_name" "Sugarman" "email" "nsugarmanew@twitpic.com" "gender" "female" "ip_address" "95.150.143.90" "country" "Indonesia" "country_code" "ID" "city" "Gedongmulyo" "longitude" "111.4365318" "latitude" "-6.6845518" "last_login" "1583524442" +HSET "user:3538" "first_name" "Salomon" "last_name" "De Miranda" "email" "sdemirandaex@unblog.fr" "gender" "male" "ip_address" "160.112.119.244" "country" "Colombia" "country_code" "CO" "city" "Garagoa" "longitude" "-73.365046" "latitude" "5.082453" "last_login" "1574681284" +HSET "user:3539" "first_name" "Kylen" "last_name" "Lamlin" "email" "klamliney@photobucket.com" "gender" "female" "ip_address" "236.167.102.14" "country" "Poland" "country_code" "PL" "city" "Żywiec" "longitude" "19.2224417" "latitude" "49.6496394" "last_login" "1578428241" +HSET "user:3540" "first_name" "Tabbi" "last_name" "Mandry" "email" "tmandryez@columbia.edu" "gender" "female" "ip_address" "156.79.173.50" "country" "Macedonia" "country_code" "MK" "city" "Ilinden" "longitude" "21.574625" "latitude" "41.99427" "last_login" "1593194179" +HSET "user:3541" "first_name" "Marjory" "last_name" "Radeliffe" "email" "mradeliffef0@bbb.org" "gender" "female" "ip_address" "187.0.149.112" "country" "East Timor" "country_code" "TL" "city" "Dili" "longitude" "125.5603143" "latitude" "-8.5568557" "last_login" "1599134308" +HSET "user:3542" "first_name" "Jacquelin" "last_name" "Skade" "email" "jskadef1@privacy.gov.au" "gender" "female" "ip_address" "169.124.24.96" "country" "China" "country_code" "CN" "city" "Datong" "longitude" "113.300129" "latitude" "40.076762" "last_login" "1580851224" +HSET "user:3543" "first_name" "Vince" "last_name" "MacTrusty" "email" "vmactrustyf2@quantcast.com" "gender" "male" "ip_address" "185.161.203.90" "country" "China" "country_code" "CN" "city" "Hengling" "longitude" "109.3826264" "latitude" "24.3158024" "last_login" "1576414451" +HSET "user:3544" "first_name" "Morten" "last_name" "Belson" "email" "mbelsonf3@weibo.com" "gender" "male" "ip_address" "58.212.143.238" "country" "China" "country_code" "CN" "city" "Huangpi" "longitude" "114.375743" "latitude" "30.882557" "last_login" "1572957425" +HSET "user:3545" "first_name" "Emmanuel" "last_name" "Lett" "email" "elettf4@nps.gov" "gender" "male" "ip_address" "155.230.139.166" "country" "China" "country_code" "CN" "city" "Sizao" "longitude" "120.601922" "latitude" "32.661925" "last_login" "1572540716" +HSET "user:3546" "first_name" "Lawton" "last_name" "Leate" "email" "lleatef5@bloglines.com" "gender" "male" "ip_address" "131.92.134.120" "country" "Indonesia" "country_code" "ID" "city" "Ciseuseupan" "longitude" "106.8606139" "latitude" "-6.8618246" "last_login" "1570062242" +HSET "user:3547" "first_name" "Ryun" "last_name" "Arundel" "email" "rarundelf6@mysql.com" "gender" "male" "ip_address" "111.222.223.141" "country" "Honduras" "country_code" "HN" "city" "Jiquinlaca" "longitude" "-88.35" "latitude" "14" "last_login" "1599772073" +HSET "user:3548" "first_name" "Vivienne" "last_name" "Dallon" "email" "vdallonf7@army.mil" "gender" "female" "ip_address" "87.25.90.56" "country" "Poland" "country_code" "PL" "city" "Sępólno Krajeńskie" "longitude" "17.5316201" "latitude" "53.4513" "last_login" "1577855546" +HSET "user:3549" "first_name" "Merv" "last_name" "Timoney" "email" "mtimoneyf8@mtv.com" "gender" "male" "ip_address" "200.206.7.141" "country" "Poland" "country_code" "PL" "city" "Rzyki" "longitude" "19.3940342" "latitude" "49.8101924" "last_login" "1590622226" +HSET "user:3550" "first_name" "Tracy" "last_name" "Howse" "email" "thowsef9@gmpg.org" "gender" "female" "ip_address" "35.92.44.187" "country" "China" "country_code" "CN" "city" "Donglai" "longitude" "126.154678" "latitude" "41.654661" "last_login" "1580701208" +HSET "user:3551" "first_name" "Sianna" "last_name" "Skentelbery" "email" "sskentelberyfa@soup.io" "gender" "female" "ip_address" "158.18.26.233" "country" "China" "country_code" "CN" "city" "Eshan" "longitude" "102.405819" "latitude" "24.168957" "last_login" "1577403822" +HSET "user:3552" "first_name" "Had" "last_name" "Heatley" "email" "hheatleyfb@answers.com" "gender" "male" "ip_address" "102.3.12.207" "country" "Russia" "country_code" "RU" "city" "Rodionovo-Nesvetaiskoye" "longitude" "39.7" "latitude" "47.6" "last_login" "1593351156" +HSET "user:3553" "first_name" "Claribel" "last_name" "Scarsbrooke" "email" "cscarsbrookefc@soundcloud.com" "gender" "female" "ip_address" "191.48.156.12" "country" "China" "country_code" "CN" "city" "Penglai" "longitude" "120.758848" "latitude" "37.810661" "last_login" "1572785727" +HSET "user:3554" "first_name" "Burlie" "last_name" "Crinidge" "email" "bcrinidgefd@com.com" "gender" "male" "ip_address" "50.88.8.25" "country" "China" "country_code" "CN" "city" "Jijia" "longitude" "121.859272" "latitude" "29.60128" "last_login" "1570148947" +HSET "user:3555" "first_name" "Fax" "last_name" "Braferton" "email" "fbrafertonfe@ucoz.ru" "gender" "male" "ip_address" "9.26.34.76" "country" "Peru" "country_code" "PE" "city" "Ramón Castilla" "longitude" "-71.5438952" "latitude" "-16.3607933" "last_login" "1576220171" +HSET "user:3556" "first_name" "Rainer" "last_name" "Jovasevic" "email" "rjovasevicff@stumbleupon.com" "gender" "male" "ip_address" "62.184.193.174" "country" "Indonesia" "country_code" "ID" "city" "Delod Pangkung" "longitude" "114.63643" "latitude" "-8.38225" "last_login" "1575382079" +HSET "user:3557" "first_name" "Roanne" "last_name" "Reiglar" "email" "rreiglarfg@umich.edu" "gender" "female" "ip_address" "64.124.211.183" "country" "South Korea" "country_code" "KR" "city" "Kimje" "longitude" "126.8808872" "latitude" "35.8036079" "last_login" "1592861583" +HSET "user:3558" "first_name" "Woody" "last_name" "Videler" "email" "wvidelerfh@google.de" "gender" "male" "ip_address" "116.66.192.1" "country" "Russia" "country_code" "RU" "city" "Dubki" "longitude" "28.4695971" "latitude" "59.740619" "last_login" "1593015089" +HSET "user:3559" "first_name" "Syman" "last_name" "Bruck" "email" "sbruckfi@whitehouse.gov" "gender" "male" "ip_address" "7.211.190.66" "country" "China" "country_code" "CN" "city" "Gangu Chengguanzhen" "longitude" "105.32632" "latitude" "34.73564" "last_login" "1588608537" +HSET "user:3560" "first_name" "Caresse" "last_name" "Guwer" "email" "cguwerfj@163.com" "gender" "female" "ip_address" "37.72.193.34" "country" "Canada" "country_code" "CA" "city" "Bassano" "longitude" "-112.46854" "latitude" "50.78342" "last_login" "1590329221" +HSET "user:3561" "first_name" "Calida" "last_name" "Fairtlough" "email" "cfairtloughfk@imdb.com" "gender" "female" "ip_address" "51.232.254.139" "country" "Thailand" "country_code" "TH" "city" "Hua Hin" "longitude" "99.9576888" "latitude" "12.5683747" "last_login" "1570020751" +HSET "user:3562" "first_name" "Cecelia" "last_name" "Joontjes" "email" "cjoontjesfl@sfgate.com" "gender" "female" "ip_address" "10.166.184.72" "country" "Poland" "country_code" "PL" "city" "Mieścisko" "longitude" "17.3278637" "latitude" "52.7441662" "last_login" "1593555121" +HSET "user:3563" "first_name" "Paquito" "last_name" "Hullett" "email" "phullettfm@linkedin.com" "gender" "male" "ip_address" "93.186.225.75" "country" "Togo" "country_code" "TG" "city" "Atakpamé" "longitude" "1.1305049" "latitude" "7.5286908" "last_login" "1572278090" +HSET "user:3564" "first_name" "Karel" "last_name" "Reisin" "email" "kreisinfn@sogou.com" "gender" "male" "ip_address" "148.124.70.195" "country" "Poland" "country_code" "PL" "city" "Dubiecko" "longitude" "22.3924149" "latitude" "49.8279218" "last_login" "1573404670" +HSET "user:3565" "first_name" "Ford" "last_name" "Keddle" "email" "fkeddlefo@economist.com" "gender" "male" "ip_address" "10.171.22.192" "country" "China" "country_code" "CN" "city" "Zhuhu" "longitude" "113.576677" "latitude" "22.270978" "last_login" "1577497309" +HSET "user:3566" "first_name" "Rena" "last_name" "Blaxlande" "email" "rblaxlandefp@blogspot.com" "gender" "female" "ip_address" "254.164.79.167" "country" "China" "country_code" "CN" "city" "Silihe" "longitude" "117.554287" "latitude" "35.24069" "last_login" "1594549006" +HSET "user:3567" "first_name" "Elyn" "last_name" "Dioniso" "email" "edionisofq@technorati.com" "gender" "female" "ip_address" "1.189.117.67" "country" "Thailand" "country_code" "TH" "city" "Khon Buri" "longitude" "102.1632718" "latitude" "14.4349111" "last_login" "1573155071" +HSET "user:3568" "first_name" "Olympe" "last_name" "MacAless" "email" "omacalessfr@miibeian.gov.cn" "gender" "female" "ip_address" "177.177.21.134" "country" "China" "country_code" "CN" "city" "Xinmin" "longitude" "122.836723" "latitude" "41.985186" "last_login" "1575846338" +HSET "user:3569" "first_name" "Quinton" "last_name" "Vicioso" "email" "qviciosofs@prweb.com" "gender" "male" "ip_address" "91.4.5.99" "country" "Brazil" "country_code" "BR" "city" "Alegrete" "longitude" "-55.7980283" "latitude" "-29.7844393" "last_login" "1598048923" +HSET "user:3570" "first_name" "Corinna" "last_name" "Robke" "email" "crobkeft@blinklist.com" "gender" "female" "ip_address" "22.50.46.8" "country" "China" "country_code" "CN" "city" "Zhaoxiang" "longitude" "120.0339797" "latitude" "29.2997574" "last_login" "1577201280" +HSET "user:3571" "first_name" "Vince" "last_name" "Desforges" "email" "vdesforgesfu@lycos.com" "gender" "male" "ip_address" "194.122.105.251" "country" "Indonesia" "country_code" "ID" "city" "Ngulangan" "longitude" "111.4886997" "latitude" "-6.7160998" "last_login" "1584771153" +HSET "user:3572" "first_name" "Serge" "last_name" "Fontelles" "email" "sfontellesfv@marketwatch.com" "gender" "male" "ip_address" "205.99.85.23" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Visoko" "longitude" "18.1798837" "latitude" "43.9887651" "last_login" "1586849986" +HSET "user:3573" "first_name" "Jone" "last_name" "Pauleit" "email" "jpauleitfw@nymag.com" "gender" "male" "ip_address" "76.173.163.57" "country" "Russia" "country_code" "RU" "city" "Cheremshan" "longitude" "51.5020158" "latitude" "54.659677" "last_login" "1576651641" +HSET "user:3574" "first_name" "Enriqueta" "last_name" "Gentil" "email" "egentilfx@freewebs.com" "gender" "female" "ip_address" "38.69.91.184" "country" "Indonesia" "country_code" "ID" "city" "Beutong Ateuh" "longitude" "96.5249759" "latitude" "4.4613091" "last_login" "1580194427" +HSET "user:3575" "first_name" "Annelise" "last_name" "Gervaise" "email" "agervaisefy@npr.org" "gender" "female" "ip_address" "20.197.90.152" "country" "United States" "country_code" "US" "city" "Pittsburgh" "longitude" "-80.0367259" "latitude" "40.4222843" "last_login" "1578602632" +HSET "user:3576" "first_name" "Lenna" "last_name" "Hamstead" "email" "lhamsteadfz@state.tx.us" "gender" "female" "ip_address" "132.163.46.211" "country" "United States" "country_code" "US" "city" "New Brunswick" "longitude" "-74.446092" "latitude" "40.496654" "last_login" "1585521580" +HSET "user:3577" "first_name" "Vern" "last_name" "Halshaw" "email" "vhalshawg0@gov.uk" "gender" "male" "ip_address" "201.23.169.83" "country" "Sweden" "country_code" "SE" "city" "Trollhättan" "longitude" "12.3176309" "latitude" "58.276821" "last_login" "1598151872" +HSET "user:3578" "first_name" "Toddie" "last_name" "Eatttok" "email" "teatttokg1@zimbio.com" "gender" "male" "ip_address" "253.82.246.219" "country" "Philippines" "country_code" "PH" "city" "Bontoc" "longitude" "124.9703005" "latitude" "10.3547319" "last_login" "1573408949" +HSET "user:3579" "first_name" "Matthias" "last_name" "Wileman" "email" "mwilemang2@hc360.com" "gender" "male" "ip_address" "231.59.155.215" "country" "Indonesia" "country_code" "ID" "city" "Depok" "longitude" "106.7942405" "latitude" "-6.4024844" "last_login" "1588251545" +HSET "user:3580" "first_name" "Ambur" "last_name" "Bakster" "email" "abaksterg3@posterous.com" "gender" "female" "ip_address" "219.163.87.111" "country" "Russia" "country_code" "RU" "city" "Bronnitsy" "longitude" "38.2447393" "latitude" "55.4055305" "last_login" "1599215055" +HSET "user:3581" "first_name" "Gracia" "last_name" "Stooders" "email" "gstoodersg4@lycos.com" "gender" "female" "ip_address" "6.206.34.150" "country" "France" "country_code" "FR" "city" "Mayenne" "longitude" "-0.607106" "latitude" "47.854132" "last_login" "1594141978" +HSET "user:3582" "first_name" "Oswell" "last_name" "Coit" "email" "ocoitg5@diigo.com" "gender" "male" "ip_address" "194.77.208.107" "country" "Tanzania" "country_code" "TZ" "city" "Kijini" "longitude" "39.453159" "latitude" "-6.361128" "last_login" "1589142991" +HSET "user:3583" "first_name" "Bond" "last_name" "Leverett" "email" "bleverettg6@jimdo.com" "gender" "male" "ip_address" "132.55.165.96" "country" "Indonesia" "country_code" "ID" "city" "Negla" "longitude" "108.7987084" "latitude" "-6.9301649" "last_login" "1569920605" +HSET "user:3584" "first_name" "Dorry" "last_name" "Reeds" "email" "dreedsg7@csmonitor.com" "gender" "female" "ip_address" "141.129.169.70" "country" "Indonesia" "country_code" "ID" "city" "Sambungjaya" "longitude" "108.207518" "latitude" "-7.356466" "last_login" "1582954955" +HSET "user:3585" "first_name" "Jenifer" "last_name" "Philippe" "email" "jphilippeg8@list-manage.com" "gender" "female" "ip_address" "112.113.187.136" "country" "Iran" "country_code" "IR" "city" "Jāsk" "longitude" "57.7856677" "latitude" "25.6577006" "last_login" "1582951868" +HSET "user:3586" "first_name" "Micheline" "last_name" "Lazenbury" "email" "mlazenburyg9@miibeian.gov.cn" "gender" "female" "ip_address" "36.166.159.58" "country" "Cuba" "country_code" "CU" "city" "La Salud" "longitude" "-82.4211025" "latitude" "22.8564518" "last_login" "1597154564" +HSET "user:3587" "first_name" "Marcelle" "last_name" "Syalvester" "email" "msyalvesterga@tripod.com" "gender" "female" "ip_address" "28.190.38.49" "country" "Czech Republic" "country_code" "CZ" "city" "Horní Jiřetín" "longitude" "13.5166536" "latitude" "50.5702189" "last_login" "1583226655" +HSET "user:3588" "first_name" "Lishe" "last_name" "Relf" "email" "lrelfgb@vistaprint.com" "gender" "female" "ip_address" "61.48.249.41" "country" "Poland" "country_code" "PL" "city" "Trzebunia" "longitude" "19.8466246" "latitude" "49.7898368" "last_login" "1599707148" +HSET "user:3589" "first_name" "Lewes" "last_name" "Balbeck" "email" "lbalbeckgc@nba.com" "gender" "male" "ip_address" "12.102.102.222" "country" "Tajikistan" "country_code" "TJ" "city" "Vakhsh" "longitude" "68.8347313" "latitude" "37.6796771" "last_login" "1576432715" +HSET "user:3590" "first_name" "Tiphani" "last_name" "Barrott" "email" "tbarrottgd@usgs.gov" "gender" "female" "ip_address" "22.186.59.56" "country" "Japan" "country_code" "JP" "city" "Okinawa" "longitude" "127.833984" "latitude" "26.3448341" "last_login" "1591806126" +HSET "user:3591" "first_name" "Xavier" "last_name" "Luffman" "email" "xluffmange@furl.net" "gender" "male" "ip_address" "89.137.252.81" "country" "China" "country_code" "CN" "city" "Nanyaojie" "longitude" "108.643901" "latitude" "28.397356" "last_login" "1574649984" +HSET "user:3592" "first_name" "Averil" "last_name" "Radin" "email" "aradingf@mapquest.com" "gender" "female" "ip_address" "197.100.171.75" "country" "South Africa" "country_code" "ZA" "city" "Phalaborwa" "longitude" "31.0387714" "latitude" "-23.9200254" "last_login" "1588361881" +HSET "user:3593" "first_name" "Hillyer" "last_name" "Gregoretti" "email" "hgregorettigg@issuu.com" "gender" "male" "ip_address" "56.254.196.52" "country" "China" "country_code" "CN" "city" "Huangchi" "longitude" "113.310158" "latitude" "36.275231" "last_login" "1581466626" +HSET "user:3594" "first_name" "Dion" "last_name" "Yes" "email" "dyesgh@paginegialle.it" "gender" "female" "ip_address" "135.187.248.165" "country" "Poland" "country_code" "PL" "city" "Kotuń" "longitude" "22.0590694" "latitude" "52.1598029" "last_login" "1599101104" +HSET "user:3595" "first_name" "Bord" "last_name" "Linger" "email" "blingergi@simplemachines.org" "gender" "male" "ip_address" "16.92.12.36" "country" "Ukraine" "country_code" "UA" "city" "Chervonohryhorivka" "longitude" "34.5297956" "latitude" "47.6264367" "last_login" "1569606030" +HSET "user:3596" "first_name" "Katine" "last_name" "Howell" "email" "khowellgj@slate.com" "gender" "female" "ip_address" "4.167.171.169" "country" "Indonesia" "country_code" "ID" "city" "Gupakan" "longitude" "110.1899844" "latitude" "-7.6309189" "last_login" "1591813941" +HSET "user:3597" "first_name" "Marcelo" "last_name" "Ivetts" "email" "mivettsgk@usatoday.com" "gender" "male" "ip_address" "9.195.248.14" "country" "Philippines" "country_code" "PH" "city" "Taltal" "longitude" "121.049071" "latitude" "14.573997" "last_login" "1598627217" +HSET "user:3598" "first_name" "Sibeal" "last_name" "Millwater" "email" "smillwatergl@instagram.com" "gender" "female" "ip_address" "144.88.147.147" "country" "Kenya" "country_code" "KE" "city" "Embu" "longitude" "37.4596409" "latitude" "-0.5388381" "last_login" "1595698207" +HSET "user:3599" "first_name" "Zora" "last_name" "Zimmerman" "email" "zzimmermangm@unicef.org" "gender" "female" "ip_address" "192.83.133.238" "country" "Russia" "country_code" "RU" "city" "Tayturka" "longitude" "103.46083" "latitude" "52.86917" "last_login" "1580194045" +HSET "user:3600" "first_name" "Jorie" "last_name" "Pagett" "email" "jpagettgn@boston.com" "gender" "female" "ip_address" "55.0.185.116" "country" "China" "country_code" "CN" "city" "Nyima" "longitude" "87.236772" "latitude" "31.784701" "last_login" "1595658021" +HSET "user:3601" "first_name" "Bowie" "last_name" "Boobyer" "email" "bboobyergo@hatena.ne.jp" "gender" "male" "ip_address" "221.63.14.254" "country" "Indonesia" "country_code" "ID" "city" "Karangkancana" "longitude" "108.6828838" "latitude" "-7.0964497" "last_login" "1580985192" +HSET "user:3602" "first_name" "Arman" "last_name" "Meachan" "email" "ameachangp@opensource.org" "gender" "male" "ip_address" "131.119.83.154" "country" "Peru" "country_code" "PE" "city" "Putina" "longitude" "-69.874893" "latitude" "-14.91256" "last_login" "1585064551" +HSET "user:3603" "first_name" "Niall" "last_name" "Bruyet" "email" "nbruyetgq@shop-pro.jp" "gender" "male" "ip_address" "25.135.99.136" "country" "France" "country_code" "FR" "city" "Pau" "longitude" "-0.3696612" "latitude" "43.2916776" "last_login" "1596359668" +HSET "user:3604" "first_name" "Alec" "last_name" "Pairpoint" "email" "apairpointgr@bizjournals.com" "gender" "male" "ip_address" "127.104.159.100" "country" "Iran" "country_code" "IR" "city" "Bandar-e Torkaman" "longitude" "54.0738979" "latitude" "36.8979986" "last_login" "1587230337" +HSET "user:3605" "first_name" "Tim" "last_name" "Dreakin" "email" "tdreakings@fda.gov" "gender" "female" "ip_address" "232.47.48.157" "country" "Kazakhstan" "country_code" "KZ" "city" "Petropavlovsk" "longitude" "69.1505479" "latitude" "54.8732209" "last_login" "1595811113" +HSET "user:3606" "first_name" "Marline" "last_name" "Ceaplen" "email" "mceaplengt@dot.gov" "gender" "female" "ip_address" "111.4.74.244" "country" "Indonesia" "country_code" "ID" "city" "Raejeru" "longitude" "121.9359" "latitude" "-10.4555" "last_login" "1579622811" +HSET "user:3607" "first_name" "Clarence" "last_name" "Thurstance" "email" "cthurstancegu@over-blog.com" "gender" "male" "ip_address" "203.106.233.226" "country" "Peru" "country_code" "PE" "city" "Asquipata" "longitude" "-73.9249692" "latitude" "-14.0262695" "last_login" "1588459841" +HSET "user:3608" "first_name" "Jerrylee" "last_name" "Bunstone" "email" "jbunstonegv@pcworld.com" "gender" "female" "ip_address" "170.136.204.233" "country" "Japan" "country_code" "JP" "city" "Hanyū" "longitude" "139.5303855" "latitude" "36.1763474" "last_login" "1571967448" +HSET "user:3609" "first_name" "Karlene" "last_name" "Witt" "email" "kwittgw@ifeng.com" "gender" "female" "ip_address" "113.94.28.189" "country" "Indonesia" "country_code" "ID" "city" "Madan" "longitude" "98.6722227" "latitude" "3.5951956" "last_login" "1598615883" +HSET "user:3610" "first_name" "Irena" "last_name" "Koeppe" "email" "ikoeppegx@cdbaby.com" "gender" "female" "ip_address" "226.29.28.109" "country" "Poland" "country_code" "PL" "city" "Blizne" "longitude" "21.9739202" "latitude" "49.7529886" "last_login" "1578451953" +HSET "user:3611" "first_name" "Blinnie" "last_name" "Cordell" "email" "bcordellgy@un.org" "gender" "female" "ip_address" "190.205.72.86" "country" "Kazakhstan" "country_code" "KZ" "city" "Shīeli" "longitude" "66.7337284" "latitude" "44.1689119" "last_login" "1579843999" +HSET "user:3612" "first_name" "Sarajane" "last_name" "Godspede" "email" "sgodspedegz@deliciousdays.com" "gender" "female" "ip_address" "68.18.28.133" "country" "Ukraine" "country_code" "UA" "city" "Kopayhorod" "longitude" "27.7969" "latitude" "48.85917" "last_login" "1571124551" +HSET "user:3613" "first_name" "Aimee" "last_name" "Winslade" "email" "awinsladeh0@ning.com" "gender" "female" "ip_address" "137.47.107.98" "country" "Peru" "country_code" "PE" "city" "Sojo" "longitude" "-77.0445279" "latitude" "-12.1140973" "last_login" "1597925567" +HSET "user:3614" "first_name" "Lina" "last_name" "Harriman" "email" "lharrimanh1@cloudflare.com" "gender" "female" "ip_address" "132.192.120.15" "country" "China" "country_code" "CN" "city" "Temeke" "longitude" "39.2187828" "latitude" "-6.9206542" "last_login" "1586595151" +HSET "user:3615" "first_name" "Quinn" "last_name" "Ailsbury" "email" "qailsburyh2@wordpress.org" "gender" "male" "ip_address" "54.184.214.235" "country" "Slovenia" "country_code" "SI" "city" "Celje" "longitude" "15.2473699" "latitude" "46.2372396" "last_login" "1577720140" +HSET "user:3616" "first_name" "Johnnie" "last_name" "Pickerill" "email" "jpickerillh3@samsung.com" "gender" "male" "ip_address" "158.89.45.223" "country" "Togo" "country_code" "TG" "city" "Badou" "longitude" "0.6085749" "latitude" "7.5866041" "last_login" "1593346615" +HSET "user:3617" "first_name" "Jacquelynn" "last_name" "Strettle" "email" "jstrettleh4@unc.edu" "gender" "female" "ip_address" "70.25.27.73" "country" "Greece" "country_code" "GR" "city" "Svorónos" "longitude" "22.4624484" "latitude" "40.2683581" "last_login" "1585375268" +HSET "user:3618" "first_name" "Gilburt" "last_name" "Crankshaw" "email" "gcrankshawh5@g.co" "gender" "male" "ip_address" "104.125.28.108" "country" "Sweden" "country_code" "SE" "city" "Norrtälje" "longitude" "18.7017911" "latitude" "59.7620958" "last_login" "1569173913" +HSET "user:3619" "first_name" "Reed" "last_name" "Friend" "email" "rfriendh6@about.me" "gender" "male" "ip_address" "39.252.229.165" "country" "Portugal" "country_code" "PT" "city" "Estrada" "longitude" "-9.342559" "latitude" "39.3221782" "last_login" "1581108197" +HSET "user:3620" "first_name" "Daron" "last_name" "Klimkin" "email" "dklimkinh7@goo.gl" "gender" "female" "ip_address" "193.146.214.235" "country" "Philippines" "country_code" "PH" "city" "Santa Ignacia" "longitude" "120.438477" "latitude" "15.613097" "last_login" "1594139325" +HSET "user:3621" "first_name" "Pattie" "last_name" "Itzkovici" "email" "pitzkovicih8@ifeng.com" "gender" "male" "ip_address" "169.51.185.227" "country" "Indonesia" "country_code" "ID" "city" "Panawuan" "longitude" "108.5017948" "latitude" "-6.8806715" "last_login" "1582893348" +HSET "user:3622" "first_name" "Thornie" "last_name" "Ollcott" "email" "tollcotth9@berkeley.edu" "gender" "male" "ip_address" "183.109.4.191" "country" "Greece" "country_code" "GR" "city" "Mikró Monastíri" "longitude" "22.5450139" "latitude" "40.7069884" "last_login" "1593894927" +HSET "user:3623" "first_name" "Boothe" "last_name" "de Courcey" "email" "bdecourceyha@oakley.com" "gender" "male" "ip_address" "34.57.7.210" "country" "Japan" "country_code" "JP" "city" "Ashikaga" "longitude" "139.5356365" "latitude" "36.2761885" "last_login" "1596361292" +HSET "user:3624" "first_name" "Kevan" "last_name" "Pumfrett" "email" "kpumfretthb@mapy.cz" "gender" "male" "ip_address" "140.60.199.46" "country" "Indonesia" "country_code" "ID" "city" "Nusajaya" "longitude" "106.6166048" "latitude" "-6.2003572" "last_login" "1571073594" +HSET "user:3625" "first_name" "Jackie" "last_name" "Mewe" "email" "jmewehc@spiegel.de" "gender" "female" "ip_address" "187.237.30.121" "country" "Portugal" "country_code" "PT" "city" "Gominhães" "longitude" "-8.2776432" "latitude" "41.4821084" "last_login" "1598687375" +HSET "user:3626" "first_name" "Shari" "last_name" "Glide" "email" "sglidehd@about.me" "gender" "female" "ip_address" "222.220.206.36" "country" "China" "country_code" "CN" "city" "Jiaotang" "longitude" "121.4337784" "latitude" "31.0252201" "last_login" "1589009516" +HSET "user:3627" "first_name" "Delbert" "last_name" "Speak" "email" "dspeakhe@paginegialle.it" "gender" "male" "ip_address" "248.200.253.191" "country" "France" "country_code" "FR" "city" "Saint-Ouen" "longitude" "-1.1457859" "latitude" "46.5993244" "last_login" "1574750390" +HSET "user:3628" "first_name" "Danita" "last_name" "McAlpine" "email" "dmcalpinehf@friendfeed.com" "gender" "female" "ip_address" "87.13.227.228" "country" "China" "country_code" "CN" "city" "Bacun" "longitude" "109.735832" "latitude" "18.740381" "last_login" "1599056187" +HSET "user:3629" "first_name" "Emmy" "last_name" "Brislan" "email" "ebrislanhg@infoseek.co.jp" "gender" "female" "ip_address" "137.119.129.144" "country" "China" "country_code" "CN" "city" "Hougang" "longitude" "103.8832261" "latitude" "1.3573565" "last_login" "1570014004" +HSET "user:3630" "first_name" "Barrett" "last_name" "O' Scallan" "email" "boscallanhh@tiny.cc" "gender" "male" "ip_address" "162.108.126.15" "country" "China" "country_code" "CN" "city" "Guojiazhuang" "longitude" "116.451187" "latitude" "39.949418" "last_login" "1580561095" +HSET "user:3631" "first_name" "Willi" "last_name" "Howard" "email" "whowardhi@pen.io" "gender" "female" "ip_address" "234.39.151.72" "country" "Thailand" "country_code" "TH" "city" "Bang Lamung" "longitude" "100.9345401" "latitude" "13.0427506" "last_login" "1590705413" +HSET "user:3632" "first_name" "Juieta" "last_name" "Danskine" "email" "jdanskinehj@cbsnews.com" "gender" "female" "ip_address" "198.7.115.249" "country" "Russia" "country_code" "RU" "city" "Dolgoprudnyy" "longitude" "37.4864125" "latitude" "55.9353544" "last_login" "1598228081" +HSET "user:3633" "first_name" "Claudette" "last_name" "Boston" "email" "cbostonhk@fema.gov" "gender" "female" "ip_address" "160.2.42.0" "country" "Philippines" "country_code" "PH" "city" "Basiao" "longitude" "124.5514906" "latitude" "10.0698222" "last_login" "1578560114" +HSET "user:3634" "first_name" "Melissa" "last_name" "Brolly" "email" "mbrollyhl@booking.com" "gender" "female" "ip_address" "39.254.238.239" "country" "Vietnam" "country_code" "VN" "city" "Tây Đằng" "longitude" "105.4273093" "latitude" "21.2067429" "last_login" "1575433513" +HSET "user:3635" "first_name" "Lenka" "last_name" "Beilby" "email" "lbeilbyhm@elegantthemes.com" "gender" "female" "ip_address" "120.181.15.132" "country" "Georgia" "country_code" "GE" "city" "Tqibuli" "longitude" "42.994164" "latitude" "42.3414123" "last_login" "1573404944" +HSET "user:3636" "first_name" "Ardath" "last_name" "Guiel" "email" "aguielhn@macromedia.com" "gender" "female" "ip_address" "236.121.64.245" "country" "Uganda" "country_code" "UG" "city" "Kajansi" "longitude" "32.5401025" "latitude" "0.2070254" "last_login" "1593088643" +HSET "user:3637" "first_name" "Lancelot" "last_name" "Kelinge" "email" "lkelingeho@hexun.com" "gender" "male" "ip_address" "191.85.100.29" "country" "Netherlands" "country_code" "NL" "city" "Zaandam" "longitude" "4.8501344" "latitude" "52.435251" "last_login" "1592032698" +HSET "user:3638" "first_name" "Fabe" "last_name" "Margarson" "email" "fmargarsonhp@a8.net" "gender" "male" "ip_address" "204.217.12.164" "country" "Philippines" "country_code" "PH" "city" "San Mateo" "longitude" "121.586713" "latitude" "16.879252" "last_login" "1589658150" +HSET "user:3639" "first_name" "Francyne" "last_name" "Ferby" "email" "fferbyhq@smh.com.au" "gender" "female" "ip_address" "205.175.225.29" "country" "Tajikistan" "country_code" "TJ" "city" "Konibodom" "longitude" "70.419388" "latitude" "40.2982408" "last_login" "1575854117" +HSET "user:3640" "first_name" "Stefan" "last_name" "Thornhill" "email" "sthornhillhr@wikimedia.org" "gender" "male" "ip_address" "176.94.226.16" "country" "Sweden" "country_code" "SE" "city" "Katrineholm" "longitude" "16.1955511" "latitude" "58.9867399" "last_login" "1583408714" +HSET "user:3641" "first_name" "Robbie" "last_name" "Robertucci" "email" "rrobertuccihs@cnn.com" "gender" "female" "ip_address" "72.66.148.66" "country" "Philippines" "country_code" "PH" "city" "Balatero" "longitude" "120.9274735" "latitude" "13.5074239" "last_login" "1594010181" +HSET "user:3642" "first_name" "Glynda" "last_name" "Snartt" "email" "gsnarttht@github.com" "gender" "female" "ip_address" "25.19.116.60" "country" "Sierra Leone" "country_code" "SL" "city" "Tongole" "longitude" "-11.9" "latitude" "7.45" "last_login" "1598032251" +HSET "user:3643" "first_name" "Wake" "last_name" "Hedlestone" "email" "whedlestonehu@lulu.com" "gender" "male" "ip_address" "100.86.203.235" "country" "Uzbekistan" "country_code" "UZ" "city" "Pop Shahri" "longitude" "71.1022" "latitude" "40.87642" "last_login" "1581540600" +HSET "user:3644" "first_name" "Michele" "last_name" "Kochl" "email" "mkochlhv@alexa.com" "gender" "male" "ip_address" "15.97.182.88" "country" "Armenia" "country_code" "AM" "city" "Ararat" "longitude" "44.6942731" "latitude" "39.8551211" "last_login" "1599479967" +HSET "user:3645" "first_name" "Sayres" "last_name" "Ledgister" "email" "sledgisterhw@mail.ru" "gender" "male" "ip_address" "183.111.16.185" "country" "China" "country_code" "CN" "city" "Ruchihe" "longitude" "109.709717" "latitude" "29.276391" "last_login" "1586854352" +HSET "user:3646" "first_name" "George" "last_name" "Haddinton" "email" "ghaddintonhx@imageshack.us" "gender" "male" "ip_address" "217.25.93.125" "country" "Indonesia" "country_code" "ID" "city" "Winangun" "longitude" "124.8431006" "latitude" "1.4415901" "last_login" "1585861352" +HSET "user:3647" "first_name" "Constanta" "last_name" "Fairest" "email" "cfairesthy@shinystat.com" "gender" "female" "ip_address" "225.68.244.18" "country" "Canada" "country_code" "CA" "city" "Aldergrove" "longitude" "-122.4706669" "latitude" "49.0580516" "last_login" "1589875287" +HSET "user:3648" "first_name" "Arda" "last_name" "Foffano" "email" "afoffanohz@google.it" "gender" "female" "ip_address" "69.223.15.139" "country" "Uganda" "country_code" "UG" "city" "Kyegegwa" "longitude" "31.0550093" "latitude" "0.4818193" "last_login" "1571826845" +HSET "user:3649" "first_name" "Crin" "last_name" "Mayhow" "email" "cmayhowi0@soup.io" "gender" "female" "ip_address" "223.21.231.218" "country" "China" "country_code" "CN" "city" "Bayanbaogede" "longitude" "100.482354" "latitude" "41.234822" "last_login" "1595892346" +HSET "user:3650" "first_name" "Sisile" "last_name" "Cheale" "email" "schealei1@delicious.com" "gender" "female" "ip_address" "250.123.109.163" "country" "Poland" "country_code" "PL" "city" "Jeżów" "longitude" "19.9684918" "latitude" "51.8135681" "last_login" "1590504086" +HSET "user:3651" "first_name" "Gradey" "last_name" "Jodrelle" "email" "gjodrellei2@acquirethisname.com" "gender" "male" "ip_address" "139.107.217.43" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Bihać" "longitude" "15.8685645" "latitude" "44.8119628" "last_login" "1591372556" +HSET "user:3652" "first_name" "Natasha" "last_name" "Draycott" "email" "ndraycotti3@tmall.com" "gender" "female" "ip_address" "248.44.67.191" "country" "China" "country_code" "CN" "city" "Hongjiaguan" "longitude" "110.166477" "latitude" "29.474413" "last_login" "1599457404" +HSET "user:3653" "first_name" "Riley" "last_name" "Robillard" "email" "rrobillardi4@ocn.ne.jp" "gender" "male" "ip_address" "240.166.158.91" "country" "France" "country_code" "FR" "city" "Caen" "longitude" "-0.3907558" "latitude" "49.1931313" "last_login" "1599573299" +HSET "user:3654" "first_name" "Vance" "last_name" "Figgins" "email" "vfigginsi5@pen.io" "gender" "male" "ip_address" "104.248.229.51" "country" "Samoa" "country_code" "WS" "city" "Falefa" "longitude" "-171.5877457" "latitude" "-13.8875282" "last_login" "1572878720" +HSET "user:3655" "first_name" "Jonell" "last_name" "Mound" "email" "jmoundi6@usda.gov" "gender" "female" "ip_address" "231.59.196.203" "country" "China" "country_code" "CN" "city" "Jiulong" "longitude" "101.507294" "latitude" "29.000347" "last_login" "1581230584" +HSET "user:3656" "first_name" "Daveen" "last_name" "Matschek" "email" "dmatscheki7@springer.com" "gender" "female" "ip_address" "167.181.9.67" "country" "Gambia" "country_code" "GM" "city" "Abuko" "longitude" "-16.6525" "latitude" "13.3913889" "last_login" "1597851194" +HSET "user:3657" "first_name" "Mariejeanne" "last_name" "Conti" "email" "mcontii8@freewebs.com" "gender" "female" "ip_address" "86.205.70.224" "country" "Philippines" "country_code" "PH" "city" "Santo Niño" "longitude" "121.050126" "latitude" "14.3839328" "last_login" "1574929461" +HSET "user:3658" "first_name" "Edouard" "last_name" "Saywood" "email" "esaywoodi9@php.net" "gender" "male" "ip_address" "5.84.204.46" "country" "South Korea" "country_code" "KR" "city" "Changwon" "longitude" "128.655374" "latitude" "35.2392644" "last_login" "1591728854" +HSET "user:3659" "first_name" "Haley" "last_name" "Strooband" "email" "hstroobandia@paginegialle.it" "gender" "female" "ip_address" "192.211.250.17" "country" "China" "country_code" "CN" "city" "Qingfeng" "longitude" "115.104389" "latitude" "35.88518" "last_login" "1593956031" +HSET "user:3660" "first_name" "Tildi" "last_name" "Kenn" "email" "tkennib@globo.com" "gender" "female" "ip_address" "99.234.211.210" "country" "Brazil" "country_code" "BR" "city" "Iúna" "longitude" "-41.5338333" "latitude" "-20.353624" "last_login" "1585988746" +HSET "user:3661" "first_name" "Lamar" "last_name" "Chaytor" "email" "lchaytoric@harvard.edu" "gender" "male" "ip_address" "95.97.124.219" "country" "Philippines" "country_code" "PH" "city" "Naagas" "longitude" "123.6857559" "latitude" "13.4343708" "last_login" "1590577917" +HSET "user:3662" "first_name" "Quincy" "last_name" "Wallage" "email" "qwallageid@infoseek.co.jp" "gender" "male" "ip_address" "238.16.80.238" "country" "China" "country_code" "CN" "city" "Daxing" "longitude" "116.341395" "latitude" "39.726929" "last_login" "1582343383" +HSET "user:3663" "first_name" "Mario" "last_name" "Abbitt" "email" "mabbittie@prnewswire.com" "gender" "male" "ip_address" "220.210.225.49" "country" "Ireland" "country_code" "IE" "city" "Clondalkin" "longitude" "-6.4496384" "latitude" "53.3582341" "last_login" "1580517091" +HSET "user:3664" "first_name" "Deeann" "last_name" "Lyddon" "email" "dlyddonif@foxnews.com" "gender" "female" "ip_address" "193.10.111.119" "country" "Indonesia" "country_code" "ID" "city" "Tanggung" "longitude" "112.1758089" "latitude" "-8.0716019" "last_login" "1579771373" +HSET "user:3665" "first_name" "Dew" "last_name" "Malarkey" "email" "dmalarkeyig@hc360.com" "gender" "male" "ip_address" "11.94.246.72" "country" "Zimbabwe" "country_code" "ZW" "city" "Hwange" "longitude" "26.5019976" "latitude" "-18.3558779" "last_login" "1583749588" +HSET "user:3666" "first_name" "Pavlov" "last_name" "MacAndie" "email" "pmacandieih@typepad.com" "gender" "male" "ip_address" "76.110.31.102" "country" "China" "country_code" "CN" "city" "Gyigang" "longitude" "106.630153" "latitude" "26.647661" "last_login" "1578213091" +HSET "user:3667" "first_name" "Kippy" "last_name" "Scowcraft" "email" "kscowcraftii@multiply.com" "gender" "male" "ip_address" "48.73.45.38" "country" "China" "country_code" "CN" "city" "Dianwan" "longitude" "102.6711427" "latitude" "25.0518977" "last_login" "1597445458" +HSET "user:3668" "first_name" "Leontine" "last_name" "Vannuccini" "email" "lvannucciniij@vimeo.com" "gender" "female" "ip_address" "147.83.48.138" "country" "Indonesia" "country_code" "ID" "city" "Cibodas" "longitude" "106.5996595" "latitude" "-6.1989828" "last_login" "1577572565" +HSET "user:3669" "first_name" "Bette-ann" "last_name" "Lambrechts" "email" "blambrechtsik@engadget.com" "gender" "female" "ip_address" "89.245.234.96" "country" "China" "country_code" "CN" "city" "Haiyan" "longitude" "120.946263" "latitude" "30.526435" "last_login" "1587330105" +HSET "user:3670" "first_name" "Pascal" "last_name" "Donaghy" "email" "pdonaghyil@hibu.com" "gender" "male" "ip_address" "146.184.40.18" "country" "Nigeria" "country_code" "NG" "city" "Yanda Bayo" "longitude" "10.7654581" "latitude" "11.5098328" "last_login" "1573678824" +HSET "user:3671" "first_name" "Haily" "last_name" "Behrens" "email" "hbehrensim@go.com" "gender" "female" "ip_address" "89.203.179.112" "country" "Peru" "country_code" "PE" "city" "Sabandia" "longitude" "-71.4655565" "latitude" "-16.4544375" "last_login" "1583911205" +HSET "user:3672" "first_name" "Sherlock" "last_name" "De Coursey" "email" "sdecourseyin@hibu.com" "gender" "male" "ip_address" "128.220.205.57" "country" "Mongolia" "country_code" "MN" "city" "Nuga" "longitude" "107.0295809" "latitude" "49.0757178" "last_login" "1581877194" +HSET "user:3673" "first_name" "Aubrie" "last_name" "Ionn" "email" "aionnio@dion.ne.jp" "gender" "female" "ip_address" "223.62.162.103" "country" "China" "country_code" "CN" "city" "Du’ermenqin" "longitude" "123.55867" "latitude" "47.144225" "last_login" "1595874565" +HSET "user:3674" "first_name" "Bo" "last_name" "Cicci" "email" "bcicciip@foxnews.com" "gender" "male" "ip_address" "201.85.170.160" "country" "France" "country_code" "FR" "city" "Béziers" "longitude" "3.2188961" "latitude" "43.3362822" "last_login" "1588345237" +HSET "user:3675" "first_name" "Luciano" "last_name" "Aleswell" "email" "laleswelliq@smugmug.com" "gender" "male" "ip_address" "197.179.151.5" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Orguz" "longitude" "16.8628891" "latitude" "43.7745094" "last_login" "1571941073" +HSET "user:3676" "first_name" "Vic" "last_name" "Van Salzberger" "email" "vvansalzbergerir@booking.com" "gender" "male" "ip_address" "115.150.0.161" "country" "Portugal" "country_code" "PT" "city" "Urrô" "longitude" "-8.330057" "latitude" "41.1897615" "last_login" "1595562803" +HSET "user:3677" "first_name" "Leeanne" "last_name" "Kilfeder" "email" "lkilfederis@xrea.com" "gender" "female" "ip_address" "84.131.86.10" "country" "Russia" "country_code" "RU" "city" "Kysyl-Syr" "longitude" "122.762485" "latitude" "63.897847" "last_login" "1596927672" +HSET "user:3678" "first_name" "Iorgo" "last_name" "Oakhill" "email" "ioakhillit@thetimes.co.uk" "gender" "male" "ip_address" "123.3.232.56" "country" "China" "country_code" "CN" "city" "Nantang" "longitude" "110.792856" "latitude" "22.058407" "last_login" "1581078726" +HSET "user:3679" "first_name" "Corinne" "last_name" "Diffley" "email" "cdiffleyiu@linkedin.com" "gender" "female" "ip_address" "75.167.20.202" "country" "France" "country_code" "FR" "city" "Paris 16" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1590313994" +HSET "user:3680" "first_name" "Jae" "last_name" "Rottery" "email" "jrotteryiv@sciencedaily.com" "gender" "male" "ip_address" "183.95.155.153" "country" "Russia" "country_code" "RU" "city" "Starokorsunskaya" "longitude" "39.1162056" "latitude" "45.0222956" "last_login" "1589819490" +HSET "user:3681" "first_name" "Marcy" "last_name" "Schwaiger" "email" "mschwaigeriw@a8.net" "gender" "female" "ip_address" "84.38.207.202" "country" "Nigeria" "country_code" "NG" "city" "Gwio Kura" "longitude" "11.0672864" "latitude" "12.6742954" "last_login" "1596586281" +HSET "user:3682" "first_name" "Korrie" "last_name" "Byard" "email" "kbyardix@mozilla.org" "gender" "female" "ip_address" "143.232.232.196" "country" "France" "country_code" "FR" "city" "Paris La Défense" "longitude" "2.2372792" "latitude" "48.890054" "last_login" "1578663565" +HSET "user:3683" "first_name" "Sonnnie" "last_name" "Banbrick" "email" "sbanbrickiy@whitehouse.gov" "gender" "female" "ip_address" "35.20.173.12" "country" "Haiti" "country_code" "HT" "city" "Pétionville" "longitude" "-72.2881907" "latitude" "18.5138139" "last_login" "1588834837" +HSET "user:3684" "first_name" "Antoni" "last_name" "Hindenberger" "email" "ahindenbergeriz@mayoclinic.com" "gender" "male" "ip_address" "155.74.237.234" "country" "Argentina" "country_code" "AR" "city" "Quilino" "longitude" "-64.1275399" "latitude" "-31.4344135" "last_login" "1589202064" +HSET "user:3685" "first_name" "Benoite" "last_name" "cornhill" "email" "bcornhillj0@smugmug.com" "gender" "female" "ip_address" "203.51.27.135" "country" "Russia" "country_code" "RU" "city" "Biskamzha" "longitude" "89.52722" "latitude" "53.44972" "last_login" "1597943958" +HSET "user:3686" "first_name" "Dmitri" "last_name" "Farrans" "email" "dfarransj1@deliciousdays.com" "gender" "male" "ip_address" "243.120.241.116" "country" "Indonesia" "country_code" "ID" "city" "Blimbing" "longitude" "112.649662" "latitude" "-7.9553448" "last_login" "1577200276" +HSET "user:3687" "first_name" "Cross" "last_name" "Dowman" "email" "cdowmanj2@yelp.com" "gender" "male" "ip_address" "142.133.245.161" "country" "Russia" "country_code" "RU" "city" "Zheleznogorsk" "longitude" "35.4190083" "latitude" "52.2960003" "last_login" "1597552207" +HSET "user:3688" "first_name" "Trixi" "last_name" "Howard" "email" "thowardj3@examiner.com" "gender" "female" "ip_address" "120.84.187.5" "country" "Philippines" "country_code" "PH" "city" "Santa Teresa" "longitude" "121.012518" "latitude" "14.5999366" "last_login" "1594155683" +HSET "user:3689" "first_name" "Archy" "last_name" "Blatchford" "email" "ablatchfordj4@sina.com.cn" "gender" "male" "ip_address" "220.193.152.250" "country" "Ireland" "country_code" "IE" "city" "Dalkey" "longitude" "-6.1072403" "latitude" "53.2780047" "last_login" "1574620848" +HSET "user:3690" "first_name" "Timothee" "last_name" "Ghidoli" "email" "tghidolij5@oaic.gov.au" "gender" "male" "ip_address" "33.232.102.63" "country" "Russia" "country_code" "RU" "city" "Sernovodsk" "longitude" "45.168817" "latitude" "43.336168" "last_login" "1579372593" +HSET "user:3691" "first_name" "Patti" "last_name" "Livzey" "email" "plivzeyj6@cbc.ca" "gender" "female" "ip_address" "236.156.192.33" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.7545473" "latitude" "59.9043046" "last_login" "1583507621" +HSET "user:3692" "first_name" "Reginauld" "last_name" "Easum" "email" "reasumj7@deviantart.com" "gender" "male" "ip_address" "187.88.89.131" "country" "Japan" "country_code" "JP" "city" "Sayama" "longitude" "131.3494901" "latitude" "34.0313411" "last_login" "1585068482" +HSET "user:3693" "first_name" "Val" "last_name" "Mayhou" "email" "vmayhouj8@tuttocitta.it" "gender" "female" "ip_address" "142.92.171.123" "country" "Thailand" "country_code" "TH" "city" "Bang Pa-in" "longitude" "100.5749629" "latitude" "14.1999624" "last_login" "1583374094" +HSET "user:3694" "first_name" "Marlow" "last_name" "Grove" "email" "mgrovej9@latimes.com" "gender" "male" "ip_address" "134.214.20.234" "country" "France" "country_code" "FR" "city" "Évry" "longitude" "2.4381665" "latitude" "48.6277459" "last_login" "1574231405" +HSET "user:3695" "first_name" "Chryste" "last_name" "Dranfield" "email" "cdranfieldja@squidoo.com" "gender" "female" "ip_address" "26.166.39.228" "country" "China" "country_code" "CN" "city" "Jincheng" "longitude" "112.851831" "latitude" "35.490701" "last_login" "1570038810" +HSET "user:3696" "first_name" "Daniel" "last_name" "Cyson" "email" "dcysonjb@addthis.com" "gender" "male" "ip_address" "47.180.221.152" "country" "China" "country_code" "CN" "city" "Mawu" "longitude" "104.888718" "latitude" "23.642114" "last_login" "1592879412" +HSET "user:3697" "first_name" "Sherwynd" "last_name" "Farre" "email" "sfarrejc@soundcloud.com" "gender" "male" "ip_address" "0.252.170.215" "country" "Mozambique" "country_code" "MZ" "city" "Maputo" "longitude" "32.6051351" "latitude" "-25.891968" "last_login" "1591369333" +HSET "user:3698" "first_name" "Phoebe" "last_name" "Sunter" "email" "psunterjd@naver.com" "gender" "female" "ip_address" "125.199.85.227" "country" "Tanzania" "country_code" "TZ" "city" "Nyangao" "longitude" "39.3024611" "latitude" "-10.3280255" "last_login" "1588709499" +HSET "user:3699" "first_name" "Tye" "last_name" "Reith" "email" "treithje@ebay.co.uk" "gender" "male" "ip_address" "57.233.125.131" "country" "China" "country_code" "CN" "city" "Yulong" "longitude" "110.451368" "latitude" "24.751346" "last_login" "1594701314" +HSET "user:3700" "first_name" "Efrem" "last_name" "Barday" "email" "ebardayjf@nhs.uk" "gender" "male" "ip_address" "133.128.48.208" "country" "Afghanistan" "country_code" "AF" "city" "Gardēz" "longitude" "69.2281531" "latitude" "33.6042793" "last_login" "1578008447" +HSET "user:3701" "first_name" "Gale" "last_name" "Ashford" "email" "gashfordjg@sbwire.com" "gender" "female" "ip_address" "186.249.14.42" "country" "China" "country_code" "CN" "city" "Wenquan" "longitude" "108.520914" "latitude" "31.364042" "last_login" "1570374396" +HSET "user:3702" "first_name" "Layla" "last_name" "Adam" "email" "ladamjh@miitbeian.gov.cn" "gender" "female" "ip_address" "7.231.52.92" "country" "Pakistan" "country_code" "PK" "city" "Nankāna Sāhib" "longitude" "73.71257" "latitude" "31.44803" "last_login" "1592634858" +HSET "user:3703" "first_name" "Constancia" "last_name" "Hugnin" "email" "chugninji@domainmarket.com" "gender" "female" "ip_address" "234.127.126.132" "country" "Mongolia" "country_code" "MN" "city" "Erdenet" "longitude" "104.0716533" "latitude" "49.054082" "last_login" "1578030252" +HSET "user:3704" "first_name" "Phineas" "last_name" "Danick" "email" "pdanickjj@go.com" "gender" "male" "ip_address" "146.92.206.239" "country" "Philippines" "country_code" "PH" "city" "Batal" "longitude" "121.5954324" "latitude" "16.7011823" "last_login" "1581030434" +HSET "user:3705" "first_name" "Paddie" "last_name" "Iron" "email" "pironjk@wired.com" "gender" "male" "ip_address" "41.3.185.192" "country" "Indonesia" "country_code" "ID" "city" "Naekan" "longitude" "104.7593863" "latitude" "-3.2545446" "last_login" "1579582780" +HSET "user:3706" "first_name" "Wesley" "last_name" "Sewards" "email" "wsewardsjl@biglobe.ne.jp" "gender" "male" "ip_address" "180.47.141.145" "country" "China" "country_code" "CN" "city" "Jiujiang" "longitude" "116.00193" "latitude" "29.705077" "last_login" "1588070828" +HSET "user:3707" "first_name" "Pernell" "last_name" "Crissil" "email" "pcrissiljm@stanford.edu" "gender" "male" "ip_address" "202.13.118.139" "country" "Honduras" "country_code" "HN" "city" "Morazán" "longitude" "-87.603826" "latitude" "15.3179065" "last_login" "1597697734" +HSET "user:3708" "first_name" "Rockie" "last_name" "Inkpin" "email" "rinkpinjn@youku.com" "gender" "male" "ip_address" "2.198.235.228" "country" "Indonesia" "country_code" "ID" "city" "Sungaigerong" "longitude" "104.8746508" "latitude" "-2.9505021" "last_login" "1578191528" +HSET "user:3709" "first_name" "Jojo" "last_name" "Reggler" "email" "jregglerjo@edublogs.org" "gender" "female" "ip_address" "102.92.25.186" "country" "Ethiopia" "country_code" "ET" "city" "Debre Werk’" "longitude" "38.1662152" "latitude" "10.656869" "last_login" "1581355579" +HSET "user:3710" "first_name" "Miguel" "last_name" "Gut" "email" "mgutjp@washington.edu" "gender" "male" "ip_address" "19.124.114.73" "country" "China" "country_code" "CN" "city" "Pangguang" "longitude" "121.3729026" "latitude" "31.3657303" "last_login" "1583682482" +HSET "user:3711" "first_name" "Martin" "last_name" "Attkins" "email" "mattkinsjq@symantec.com" "gender" "male" "ip_address" "54.248.192.80" "country" "China" "country_code" "CN" "city" "Huaiya" "longitude" "107.872159" "latitude" "34.207908" "last_login" "1575869987" +HSET "user:3712" "first_name" "Jarred" "last_name" "Polet" "email" "jpoletjr@edublogs.org" "gender" "male" "ip_address" "92.148.91.64" "country" "Equatorial Guinea" "country_code" "GQ" "city" "Río Campo" "longitude" "9.8194682" "latitude" "2.3380025" "last_login" "1568738818" +HSET "user:3713" "first_name" "Ellswerth" "last_name" "O'Halleghane" "email" "eohalleghanejs@mayoclinic.com" "gender" "male" "ip_address" "20.16.102.185" "country" "Afghanistan" "country_code" "AF" "city" "Khānaqāh" "longitude" "66.16656" "latitude" "36.86278" "last_login" "1594049161" +HSET "user:3714" "first_name" "Ilka" "last_name" "Simnell" "email" "isimnelljt@washington.edu" "gender" "female" "ip_address" "50.210.117.115" "country" "Lithuania" "country_code" "LT" "city" "Žagarė" "longitude" "23.2565415" "latitude" "56.3588787" "last_login" "1572274064" +HSET "user:3715" "first_name" "Cookie" "last_name" "Masurel" "email" "cmasurelju@wikipedia.org" "gender" "female" "ip_address" "174.148.72.236" "country" "Palestinian Territory" "country_code" "PS" "city" "Za‘tarah" "longitude" "35.25662" "latitude" "31.67361" "last_login" "1571579566" +HSET "user:3716" "first_name" "Ettie" "last_name" "Hamson" "email" "ehamsonjv@japanpost.jp" "gender" "female" "ip_address" "234.17.140.146" "country" "Pakistan" "country_code" "PK" "city" "Alpūrai" "longitude" "72.6325857" "latitude" "34.9196569" "last_login" "1586259528" +HSET "user:3717" "first_name" "Gene" "last_name" "Matuszkiewicz" "email" "gmatuszkiewiczjw@boston.com" "gender" "male" "ip_address" "220.35.35.72" "country" "Japan" "country_code" "JP" "city" "Tsu-shi" "longitude" "136.3670325" "latitude" "34.668335" "last_login" "1581837350" +HSET "user:3718" "first_name" "Celina" "last_name" "Goutcher" "email" "cgoutcherjx@google.com.hk" "gender" "female" "ip_address" "96.204.157.103" "country" "Poland" "country_code" "PL" "city" "Tyszowce" "longitude" "23.6993741" "latitude" "50.6170721" "last_login" "1592909031" +HSET "user:3719" "first_name" "Errick" "last_name" "Renak" "email" "erenakjy@princeton.edu" "gender" "male" "ip_address" "149.222.170.192" "country" "Nigeria" "country_code" "NG" "city" "Ukata" "longitude" "5.8274722" "latitude" "10.8325561" "last_login" "1591417775" +HSET "user:3720" "first_name" "Goddart" "last_name" "Pourveer" "email" "gpourveerjz@unblog.fr" "gender" "male" "ip_address" "50.5.207.85" "country" "Thailand" "country_code" "TH" "city" "Thawat Buri" "longitude" "103.7473053" "latitude" "16.0392291" "last_login" "1574485606" +HSET "user:3721" "first_name" "Taite" "last_name" "Brennenstuhl" "email" "tbrennenstuhlk0@economist.com" "gender" "male" "ip_address" "183.176.64.160" "country" "Poland" "country_code" "PL" "city" "Świebodzice" "longitude" "16.3195565" "latitude" "50.8822214" "last_login" "1589139258" +HSET "user:3722" "first_name" "Sheree" "last_name" "Densell" "email" "sdensellk1@zdnet.com" "gender" "female" "ip_address" "43.64.192.178" "country" "Japan" "country_code" "JP" "city" "Karasuyama" "longitude" "140.2051504" "latitude" "36.0486399" "last_login" "1572734505" +HSET "user:3723" "first_name" "Hadrian" "last_name" "Hudd" "email" "hhuddk2@dmoz.org" "gender" "male" "ip_address" "104.249.201.119" "country" "Thailand" "country_code" "TH" "city" "Sam Chuk" "longitude" "100.0975221" "latitude" "14.7579513" "last_login" "1579285557" +HSET "user:3724" "first_name" "Valry" "last_name" "Dundin" "email" "vdundink3@loc.gov" "gender" "female" "ip_address" "147.152.236.36" "country" "Czech Republic" "country_code" "CZ" "city" "Louka" "longitude" "15.5547835" "latitude" "49.0498305" "last_login" "1571254456" +HSET "user:3725" "first_name" "Waylin" "last_name" "Lerhinan" "email" "wlerhinank4@addthis.com" "gender" "male" "ip_address" "137.161.105.116" "country" "Netherlands" "country_code" "NL" "city" "Zwolle" "longitude" "6.0684306" "latitude" "52.5019685" "last_login" "1596001776" +HSET "user:3726" "first_name" "Iorgo" "last_name" "Stubley" "email" "istubleyk5@cisco.com" "gender" "male" "ip_address" "69.166.64.17" "country" "Indonesia" "country_code" "ID" "city" "Tibakisa" "longitude" "121.3054" "latitude" "-8.7393" "last_login" "1572538379" +HSET "user:3727" "first_name" "Clemens" "last_name" "Wither" "email" "cwitherk6@sohu.com" "gender" "male" "ip_address" "124.3.22.182" "country" "Russia" "country_code" "RU" "city" "Mtsensk" "longitude" "36.5904759" "latitude" "53.286578" "last_login" "1586861011" +HSET "user:3728" "first_name" "Ellissa" "last_name" "Pendre" "email" "ependrek7@toplist.cz" "gender" "female" "ip_address" "135.190.91.137" "country" "Faroe Islands" "country_code" "FO" "city" "Eystur" "longitude" "-6.75247" "latitude" "62.20907" "last_login" "1585120782" +HSET "user:3729" "first_name" "Bud" "last_name" "Blum" "email" "bblumk8@webs.com" "gender" "male" "ip_address" "206.42.224.232" "country" "China" "country_code" "CN" "city" "Tacheng" "longitude" "82.978928" "latitude" "46.748522" "last_login" "1595629780" +HSET "user:3730" "first_name" "Zebulon" "last_name" "Babbe" "email" "zbabbek9@archive.org" "gender" "male" "ip_address" "13.229.123.174" "country" "Russia" "country_code" "RU" "city" "Saransk" "longitude" "45.2613033" "latitude" "54.1308809" "last_login" "1577589935" +HSET "user:3731" "first_name" "Ardella" "last_name" "Choppin" "email" "achoppinka@mail.ru" "gender" "female" "ip_address" "126.46.114.82" "country" "Indonesia" "country_code" "ID" "city" "Purwodadi" "longitude" "110.9134113" "latitude" "-7.0872117" "last_login" "1579881818" +HSET "user:3732" "first_name" "Gregor" "last_name" "Danford" "email" "gdanfordkb@mapy.cz" "gender" "male" "ip_address" "163.189.101.75" "country" "Bulgaria" "country_code" "BG" "city" "Devnya" "longitude" "27.905933" "latitude" "43.2001798" "last_login" "1599951582" +HSET "user:3733" "first_name" "Renae" "last_name" "Gyorgy" "email" "rgyorgykc@upenn.edu" "gender" "female" "ip_address" "31.81.217.96" "country" "Philippines" "country_code" "PH" "city" "Canomoy" "longitude" "123.2760396" "latitude" "12.1409532" "last_login" "1588956603" +HSET "user:3734" "first_name" "Stephen" "last_name" "Van Der Vlies" "email" "svandervlieskd@mapquest.com" "gender" "male" "ip_address" "20.175.199.216" "country" "Indonesia" "country_code" "ID" "city" "Dukuhtengah" "longitude" "112.7539449" "latitude" "-7.4099178" "last_login" "1579856698" +HSET "user:3735" "first_name" "Fiorenze" "last_name" "Overstall" "email" "foverstallke@cam.ac.uk" "gender" "female" "ip_address" "82.184.97.120" "country" "Russia" "country_code" "RU" "city" "Severoural’sk" "longitude" "59.9684485" "latitude" "60.1518638" "last_login" "1579059254" +HSET "user:3736" "first_name" "Emylee" "last_name" "Markie" "email" "emarkiekf@pcworld.com" "gender" "female" "ip_address" "153.236.52.174" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Basoko" "longitude" "23.611537" "latitude" "1.2408277" "last_login" "1588910378" +HSET "user:3737" "first_name" "Kelsey" "last_name" "Poge" "email" "kpogekg@columbia.edu" "gender" "male" "ip_address" "32.118.194.249" "country" "Cameroon" "country_code" "CM" "city" "Mutengene" "longitude" "9.3146014" "latitude" "4.0892492" "last_login" "1584523593" +HSET "user:3738" "first_name" "Addison" "last_name" "Bryett" "email" "abryettkh@etsy.com" "gender" "male" "ip_address" "137.221.205.220" "country" "Mauritius" "country_code" "MU" "city" "Melrose" "longitude" "57.6297389" "latitude" "-20.2695062" "last_login" "1582451403" +HSET "user:3739" "first_name" "Townie" "last_name" "Cassell" "email" "tcassellki@bluehost.com" "gender" "male" "ip_address" "195.214.133.89" "country" "Morocco" "country_code" "MA" "city" "Sidi Yahya Ou Saad" "longitude" "-5.5781378" "latitude" "32.6797904" "last_login" "1598289292" +HSET "user:3740" "first_name" "Domingo" "last_name" "Creeghan" "email" "dcreeghankj@state.gov" "gender" "male" "ip_address" "40.151.167.127" "country" "China" "country_code" "CN" "city" "Fengle" "longitude" "117.552738" "latitude" "30.8346" "last_login" "1594903633" +HSET "user:3741" "first_name" "Leicester" "last_name" "Lowfill" "email" "llowfillkk@pagesperso-orange.fr" "gender" "male" "ip_address" "72.248.81.242" "country" "China" "country_code" "CN" "city" "Xinhe" "longitude" "115.251124" "latitude" "37.520481" "last_login" "1589583813" +HSET "user:3742" "first_name" "Bea" "last_name" "Scoffins" "email" "bscoffinskl@prnewswire.com" "gender" "female" "ip_address" "226.37.162.123" "country" "Morocco" "country_code" "MA" "city" "Tit Mellil" "longitude" "-7.4841222" "latitude" "33.5507563" "last_login" "1592984199" +HSET "user:3743" "first_name" "Nonnah" "last_name" "Di Giacomo" "email" "ndigiacomokm@moonfruit.com" "gender" "female" "ip_address" "206.22.66.207" "country" "Argentina" "country_code" "AR" "city" "Intendente Alvear" "longitude" "-58.551112" "latitude" "-34.566408" "last_login" "1579565835" +HSET "user:3744" "first_name" "Ruben" "last_name" "Weitzel" "email" "rweitzelkn@prlog.org" "gender" "male" "ip_address" "244.96.40.217" "country" "China" "country_code" "CN" "city" "Wuyang" "longitude" "113.609286" "latitude" "33.437877" "last_login" "1581188690" +HSET "user:3745" "first_name" "Christian" "last_name" "Pierse" "email" "cpierseko@apple.com" "gender" "female" "ip_address" "137.33.45.161" "country" "Finland" "country_code" "FI" "city" "Ylöjärvi" "longitude" "23.5960975" "latitude" "61.549558" "last_login" "1583573773" +HSET "user:3746" "first_name" "Calv" "last_name" "Beames" "email" "cbeameskp@is.gd" "gender" "male" "ip_address" "108.125.213.75" "country" "Ukraine" "country_code" "UA" "city" "Hlyboka" "longitude" "25.9224603" "latitude" "48.0931021" "last_login" "1594429618" +HSET "user:3747" "first_name" "Althea" "last_name" "Smieton" "email" "asmietonkq@youku.com" "gender" "female" "ip_address" "39.109.64.149" "country" "France" "country_code" "FR" "city" "Paris 19" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1591812234" +HSET "user:3748" "first_name" "Carmela" "last_name" "Claxton" "email" "cclaxtonkr@businessweek.com" "gender" "female" "ip_address" "9.4.168.81" "country" "France" "country_code" "FR" "city" "Guyancourt" "longitude" "2.054647" "latitude" "48.7865463" "last_login" "1569629353" +HSET "user:3749" "first_name" "Albert" "last_name" "Lengthorn" "email" "alengthornks@hud.gov" "gender" "male" "ip_address" "136.55.90.204" "country" "Indonesia" "country_code" "ID" "city" "Penambangan" "longitude" "112.5349392" "latitude" "-7.40772" "last_login" "1576671317" +HSET "user:3750" "first_name" "Killie" "last_name" "Brindley" "email" "kbrindleykt@blogs.com" "gender" "male" "ip_address" "130.207.210.120" "country" "Russia" "country_code" "RU" "city" "Obolensk" "longitude" "37.2249417" "latitude" "54.9790861" "last_login" "1570915387" +HSET "user:3751" "first_name" "Trevar" "last_name" "Floweth" "email" "tflowethku@geocities.jp" "gender" "male" "ip_address" "228.159.150.88" "country" "Moldova" "country_code" "MD" "city" "Căuşeni" "longitude" "28.8716267" "latitude" "46.9962539" "last_login" "1577912209" +HSET "user:3752" "first_name" "Rhodia" "last_name" "Cyphus" "email" "rcyphuskv@time.com" "gender" "female" "ip_address" "178.47.185.83" "country" "Palestinian Territory" "country_code" "PS" "city" "Khursā" "longitude" "34.99744" "latitude" "31.440961" "last_login" "1586373876" +HSET "user:3753" "first_name" "Morie" "last_name" "Baumadier" "email" "mbaumadierkw@msn.com" "gender" "male" "ip_address" "124.218.142.46" "country" "Nigeria" "country_code" "NG" "city" "Keffin Hausa" "longitude" "9.9073986" "latitude" "12.241259" "last_login" "1571561224" +HSET "user:3754" "first_name" "Steffie" "last_name" "Thurman" "email" "sthurmankx@ucsd.edu" "gender" "female" "ip_address" "88.141.241.108" "country" "China" "country_code" "CN" "city" "Laohekou" "longitude" "111.683861" "latitude" "32.359068" "last_login" "1590098608" +HSET "user:3755" "first_name" "Ax" "last_name" "Bibby" "email" "abibbyky@ameblo.jp" "gender" "male" "ip_address" "96.213.94.150" "country" "Latvia" "country_code" "LV" "city" "Limbaži" "longitude" "24.721996" "latitude" "57.5129829" "last_login" "1593894916" +HSET "user:3756" "first_name" "Babbette" "last_name" "Sparshatt" "email" "bsparshattkz@yelp.com" "gender" "female" "ip_address" "131.215.233.249" "country" "Indonesia" "country_code" "ID" "city" "Comal" "longitude" "109.5389573" "latitude" "-6.8866676" "last_login" "1571723550" +HSET "user:3757" "first_name" "Grover" "last_name" "Kynett" "email" "gkynettl0@wp.com" "gender" "male" "ip_address" "50.144.182.129" "country" "Ukraine" "country_code" "UA" "city" "Chynadiyovo" "longitude" "22.8097434" "latitude" "48.4907371" "last_login" "1593208860" +HSET "user:3758" "first_name" "Kristin" "last_name" "Townsend" "email" "ktownsendl1@columbia.edu" "gender" "female" "ip_address" "184.54.36.158" "country" "China" "country_code" "CN" "city" "Dongshentou" "longitude" "121.896202" "latitude" "28.489465" "last_login" "1580126243" +HSET "user:3759" "first_name" "Ferd" "last_name" "Tudgay" "email" "ftudgayl2@bigcartel.com" "gender" "male" "ip_address" "77.222.119.45" "country" "Philippines" "country_code" "PH" "city" "Caramay" "longitude" "119.232122" "latitude" "10.1866432" "last_login" "1571527104" +HSET "user:3760" "first_name" "Natassia" "last_name" "Clowney" "email" "nclowneyl3@bigcartel.com" "gender" "female" "ip_address" "13.221.91.69" "country" "Peru" "country_code" "PE" "city" "Aguas Verdes" "longitude" "-80.2453748" "latitude" "-3.4816267" "last_login" "1598568930" +HSET "user:3761" "first_name" "Bella" "last_name" "Chasney" "email" "bchasneyl4@utexas.edu" "gender" "female" "ip_address" "251.110.159.205" "country" "Dominican Republic" "country_code" "DO" "city" "La Agustina" "longitude" "-69.9293076" "latitude" "18.4931208" "last_login" "1569904025" +HSET "user:3762" "first_name" "Eric" "last_name" "Glancey" "email" "eglanceyl5@abc.net.au" "gender" "male" "ip_address" "16.84.205.65" "country" "Yemen" "country_code" "YE" "city" "As Suwaydā" "longitude" "45.2304" "latitude" "13.78694" "last_login" "1577623243" +HSET "user:3763" "first_name" "Kayley" "last_name" "Hessel" "email" "khessell6@prlog.org" "gender" "female" "ip_address" "238.181.248.181" "country" "Canada" "country_code" "CA" "city" "Jasper Park Lodge" "longitude" "-118.0572366" "latitude" "52.8861365" "last_login" "1596068225" +HSET "user:3764" "first_name" "Kellia" "last_name" "Dyerson" "email" "kdyersonl7@privacy.gov.au" "gender" "female" "ip_address" "85.142.116.128" "country" "China" "country_code" "CN" "city" "Tongjiaxi" "longitude" "106.448707" "latitude" "29.677544" "last_login" "1571732659" +HSET "user:3765" "first_name" "Alex" "last_name" "Poore" "email" "apoorel8@bbc.co.uk" "gender" "female" "ip_address" "236.94.100.39" "country" "Peru" "country_code" "PE" "city" "Chimbote" "longitude" "-78.589011" "latitude" "-9.0633364" "last_login" "1579507025" +HSET "user:3766" "first_name" "Linzy" "last_name" "Blew" "email" "lblewl9@senate.gov" "gender" "female" "ip_address" "67.131.235.50" "country" "Ukraine" "country_code" "UA" "city" "Sosnytsya" "longitude" "32.5004914" "latitude" "51.524571" "last_login" "1592212511" +HSET "user:3767" "first_name" "Mabel" "last_name" "Faier" "email" "mfaierla@blogs.com" "gender" "female" "ip_address" "63.209.5.60" "country" "Canada" "country_code" "CA" "city" "Sechelt" "longitude" "-123.75903" "latitude" "49.47512" "last_login" "1580029549" +HSET "user:3768" "first_name" "Obed" "last_name" "Morefield" "email" "omorefieldlb@globo.com" "gender" "male" "ip_address" "74.122.6.142" "country" "Portugal" "country_code" "PT" "city" "Vale das Mós" "longitude" "-8.0659871" "latitude" "39.3438828" "last_login" "1593383514" +HSET "user:3769" "first_name" "Grenville" "last_name" "Statter" "email" "gstatterlc@wikimedia.org" "gender" "male" "ip_address" "182.237.81.32" "country" "China" "country_code" "CN" "city" "Henghe" "longitude" "121.507191" "latitude" "29.756501" "last_login" "1598427119" +HSET "user:3770" "first_name" "Ali" "last_name" "Hook" "email" "ahookld@baidu.com" "gender" "female" "ip_address" "118.61.16.112" "country" "China" "country_code" "CN" "city" "Ning’er" "longitude" "101.045317" "latitude" "23.061749" "last_login" "1584979419" +HSET "user:3771" "first_name" "Hartwell" "last_name" "Kift" "email" "hkiftle@slate.com" "gender" "male" "ip_address" "71.54.20.46" "country" "Brazil" "country_code" "BR" "city" "Araçoiaba da Serra" "longitude" "-47.5632863" "latitude" "-23.510329" "last_login" "1582406730" +HSET "user:3772" "first_name" "Davin" "last_name" "Braunlein" "email" "dbraunleinlf@reference.com" "gender" "male" "ip_address" "115.70.227.123" "country" "Bulgaria" "country_code" "BG" "city" "Cherven Bryag" "longitude" "24.1479966" "latitude" "43.2769388" "last_login" "1584336211" +HSET "user:3773" "first_name" "Windy" "last_name" "Binden" "email" "wbindenlg@miibeian.gov.cn" "gender" "female" "ip_address" "210.139.247.46" "country" "Brazil" "country_code" "BR" "city" "Floriano" "longitude" "-43.0226015" "latitude" "-6.7769318" "last_login" "1591357725" +HSET "user:3774" "first_name" "Malissa" "last_name" "Rayson" "email" "mraysonlh@edublogs.org" "gender" "female" "ip_address" "37.78.157.138" "country" "China" "country_code" "CN" "city" "Ying’ebu" "longitude" "125.5668499" "latitude" "41.733296" "last_login" "1576899267" +HSET "user:3775" "first_name" "Maryanne" "last_name" "Dudding" "email" "mduddingli@nsw.gov.au" "gender" "female" "ip_address" "123.147.15.35" "country" "Greece" "country_code" "GR" "city" "Palaiomonástiron" "longitude" "21.65861" "latitude" "39.4625" "last_login" "1596140372" +HSET "user:3776" "first_name" "Agace" "last_name" "Gaskin" "email" "agaskinlj@ask.com" "gender" "female" "ip_address" "212.21.66.29" "country" "Cameroon" "country_code" "CM" "city" "Nkoteng" "longitude" "12.0204247" "latitude" "4.5385626" "last_login" "1589972188" +HSET "user:3777" "first_name" "Hieronymus" "last_name" "Lumsdall" "email" "hlumsdalllk@bbb.org" "gender" "male" "ip_address" "218.41.4.159" "country" "Honduras" "country_code" "HN" "city" "Travesía" "longitude" "-87.8930184" "latitude" "15.8672784" "last_login" "1599012227" +HSET "user:3778" "first_name" "Consolata" "last_name" "Hazlegrove" "email" "chazlegrovell@posterous.com" "gender" "female" "ip_address" "67.190.201.21" "country" "Czech Republic" "country_code" "CZ" "city" "Horní Jiřetín" "longitude" "13.5166536" "latitude" "50.5702189" "last_login" "1578946857" +HSET "user:3779" "first_name" "Aggie" "last_name" "Loxton" "email" "aloxtonlm@sfgate.com" "gender" "female" "ip_address" "127.120.239.10" "country" "Russia" "country_code" "RU" "city" "Vidnoye" "longitude" "37.7673912" "latitude" "55.5807611" "last_login" "1572427859" +HSET "user:3780" "first_name" "Toddy" "last_name" "Warke" "email" "twarkeln@ehow.com" "gender" "male" "ip_address" "171.13.144.17" "country" "Philippines" "country_code" "PH" "city" "Matinao" "longitude" "124.2968273" "latitude" "9.7532927" "last_login" "1584042604" +HSET "user:3781" "first_name" "Marlon" "last_name" "Sorrell" "email" "msorrelllo@dell.com" "gender" "male" "ip_address" "184.116.247.106" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0615388" "latitude" "59.3145841" "last_login" "1590390035" +HSET "user:3782" "first_name" "Aili" "last_name" "Rappport" "email" "arappportlp@buzzfeed.com" "gender" "female" "ip_address" "62.50.103.69" "country" "Indonesia" "country_code" "ID" "city" "Balungkopi" "longitude" "113.5384156" "latitude" "-8.2933192" "last_login" "1589604697" +HSET "user:3783" "first_name" "Aldus" "last_name" "Nowaczyk" "email" "anowaczyklq@pagesperso-orange.fr" "gender" "male" "ip_address" "184.67.76.53" "country" "China" "country_code" "CN" "city" "Yiqi" "longitude" "111.6717568" "latitude" "39.1372748" "last_login" "1586345111" +HSET "user:3784" "first_name" "Rena" "last_name" "Roakes" "email" "rroakeslr@go.com" "gender" "female" "ip_address" "253.14.244.22" "country" "Spain" "country_code" "ES" "city" "Pontevedra" "longitude" "-8.5995773" "latitude" "42.4385891" "last_login" "1577286600" +HSET "user:3785" "first_name" "Cathrine" "last_name" "Cherrington" "email" "ccherringtonls@latimes.com" "gender" "female" "ip_address" "244.142.0.235" "country" "Finland" "country_code" "FI" "city" "Yläne" "longitude" "22.5352853" "latitude" "60.7428382" "last_login" "1572236138" +HSET "user:3786" "first_name" "Giraud" "last_name" "Cady" "email" "gcadylt@biglobe.ne.jp" "gender" "male" "ip_address" "138.155.26.137" "country" "China" "country_code" "CN" "city" "Wumahe" "longitude" "128.799478" "latitude" "47.727687" "last_login" "1596164225" +HSET "user:3787" "first_name" "Muriel" "last_name" "Dalyiel" "email" "mdalyiellu@indiatimes.com" "gender" "female" "ip_address" "57.231.8.143" "country" "Croatia" "country_code" "HR" "city" "Brijest" "longitude" "18.6747675" "latitude" "45.5206082" "last_login" "1581088884" +HSET "user:3788" "first_name" "Kenneth" "last_name" "Acott" "email" "kacottlv@europa.eu" "gender" "male" "ip_address" "231.146.8.132" "country" "Czech Republic" "country_code" "CZ" "city" "Horní Stropnice" "longitude" "14.732221" "latitude" "48.7618689" "last_login" "1577390112" +HSET "user:3789" "first_name" "Agnese" "last_name" "Charters" "email" "acharterslw@howstuffworks.com" "gender" "female" "ip_address" "57.221.82.52" "country" "Mexico" "country_code" "MX" "city" "Lazaro Cardenas" "longitude" "-102.1943485" "latitude" "17.9567646" "last_login" "1599068543" +HSET "user:3790" "first_name" "Rowan" "last_name" "O'Logan" "email" "rologanlx@cnbc.com" "gender" "male" "ip_address" "183.21.230.246" "country" "Philippines" "country_code" "PH" "city" "Union" "longitude" "120.9965883" "latitude" "14.5792342" "last_login" "1599554725" +HSET "user:3791" "first_name" "Kain" "last_name" "Roxburgh" "email" "kroxburghly@fda.gov" "gender" "male" "ip_address" "114.83.215.44" "country" "Pakistan" "country_code" "PK" "city" "Shāhdādkot" "longitude" "67.9616412" "latitude" "27.9972231" "last_login" "1586379790" +HSET "user:3792" "first_name" "Kaja" "last_name" "Darben" "email" "kdarbenlz@rediff.com" "gender" "female" "ip_address" "233.186.51.107" "country" "Thailand" "country_code" "TH" "city" "Si Thep" "longitude" "101.1949191" "latitude" "15.4601543" "last_login" "1599690238" +HSET "user:3793" "first_name" "Giuditta" "last_name" "Yedy" "email" "gyedym0@bloglines.com" "gender" "female" "ip_address" "188.62.147.25" "country" "South Korea" "country_code" "KR" "city" "Okcheon" "longitude" "127.5712809" "latitude" "36.3063646" "last_login" "1572780739" +HSET "user:3794" "first_name" "Jaynell" "last_name" "Wannes" "email" "jwannesm1@google.cn" "gender" "female" "ip_address" "85.73.32.50" "country" "Nigeria" "country_code" "NG" "city" "Bukuru" "longitude" "8.8597095" "latitude" "9.7652591" "last_login" "1599553466" +HSET "user:3795" "first_name" "Lezlie" "last_name" "Clayworth" "email" "lclayworthm2@friendfeed.com" "gender" "female" "ip_address" "34.239.178.33" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.5190048" "latitude" "59.5495402" "last_login" "1595288490" +HSET "user:3796" "first_name" "Richart" "last_name" "Cunah" "email" "rcunahm3@merriam-webster.com" "gender" "male" "ip_address" "192.144.109.64" "country" "France" "country_code" "FR" "city" "Nevers" "longitude" "3.160773" "latitude" "46.990055" "last_login" "1594615859" +HSET "user:3797" "first_name" "Eugenius" "last_name" "Cuseck" "email" "ecuseckm4@auda.org.au" "gender" "male" "ip_address" "236.239.75.117" "country" "Sweden" "country_code" "SE" "city" "Kalmar" "longitude" "16.3569786" "latitude" "56.7115456" "last_login" "1586977285" +HSET "user:3798" "first_name" "Stewart" "last_name" "Cristou" "email" "scristoum5@earthlink.net" "gender" "male" "ip_address" "94.98.139.159" "country" "Japan" "country_code" "JP" "city" "Kobe" "longitude" "134.3028193" "latitude" "34.5465928" "last_login" "1576905613" +HSET "user:3799" "first_name" "Abbe" "last_name" "Tregear" "email" "atregearm6@newsvine.com" "gender" "male" "ip_address" "191.20.214.64" "country" "Colombia" "country_code" "CO" "city" "Ciudad Bolívar" "longitude" "-75.9928971" "latitude" "5.8294025" "last_login" "1581006506" +HSET "user:3800" "first_name" "Annabelle" "last_name" "McKimmey" "email" "amckimmeym7@constantcontact.com" "gender" "female" "ip_address" "182.133.187.124" "country" "Indonesia" "country_code" "ID" "city" "Potikosin" "longitude" "123.0979" "latitude" "-10.7246" "last_login" "1593868857" +HSET "user:3801" "first_name" "Samuele" "last_name" "Dumper" "email" "sdumperm8@google.com" "gender" "male" "ip_address" "125.2.208.4" "country" "Morocco" "country_code" "MA" "city" "Galaz" "longitude" "-4.8015285" "latitude" "34.5403537" "last_login" "1589077677" +HSET "user:3802" "first_name" "Raimund" "last_name" "Battill" "email" "rbattillm9@rakuten.co.jp" "gender" "male" "ip_address" "225.49.206.160" "country" "Sweden" "country_code" "SE" "city" "Bjuv" "longitude" "12.9029659" "latitude" "56.0913813" "last_login" "1570409859" +HSET "user:3803" "first_name" "Lyndell" "last_name" "Jewiss" "email" "ljewissma@fema.gov" "gender" "female" "ip_address" "171.214.184.226" "country" "South Africa" "country_code" "ZA" "city" "Viljoenskroon" "longitude" "26.9528629" "latitude" "-27.1886944" "last_login" "1593610897" +HSET "user:3804" "first_name" "Rasia" "last_name" "Beatson" "email" "rbeatsonmb@technorati.com" "gender" "female" "ip_address" "249.239.205.87" "country" "Afghanistan" "country_code" "AF" "city" "Mandōl" "longitude" "70.3360691" "latitude" "35.2303205" "last_login" "1581087972" +HSET "user:3805" "first_name" "Luis" "last_name" "Dunley" "email" "ldunleymc@seesaa.net" "gender" "male" "ip_address" "38.77.181.71" "country" "Portugal" "country_code" "PT" "city" "Tojal" "longitude" "-8.3148854" "latitude" "41.2511521" "last_login" "1571993336" +HSET "user:3806" "first_name" "Pavla" "last_name" "Priddie" "email" "ppriddiemd@sciencedaily.com" "gender" "female" "ip_address" "230.80.103.199" "country" "Brazil" "country_code" "BR" "city" "Ibaté" "longitude" "-48.0006076" "latitude" "-21.953253" "last_login" "1578394910" +HSET "user:3807" "first_name" "Francine" "last_name" "Trowill" "email" "ftrowillme@fotki.com" "gender" "female" "ip_address" "108.8.124.21" "country" "Russia" "country_code" "RU" "city" "Yeysk" "longitude" "38.2755861" "latitude" "46.711547" "last_login" "1591049562" +HSET "user:3808" "first_name" "Gena" "last_name" "Bracken" "email" "gbrackenmf@elpais.com" "gender" "female" "ip_address" "254.246.197.86" "country" "Ecuador" "country_code" "EC" "city" "Nueva Loja" "longitude" "-76.8940156" "latitude" "0.0851034" "last_login" "1580131193" +HSET "user:3809" "first_name" "Amby" "last_name" "Brafferton" "email" "abraffertonmg@slashdot.org" "gender" "male" "ip_address" "251.170.25.156" "country" "Indonesia" "country_code" "ID" "city" "Cibunar" "longitude" "106.5495683" "latitude" "-6.3413734" "last_login" "1593757909" +HSET "user:3810" "first_name" "Rafferty" "last_name" "Burgyn" "email" "rburgynmj@rambler.ru" "gender" "male" "ip_address" "142.123.202.249" "country" "Spain" "country_code" "ES" "city" "Madrid" "longitude" "-3.6952896" "latitude" "40.4563733" "last_login" "1578518164" +HSET "user:3811" "first_name" "Chris" "last_name" "Dudin" "email" "cdudinmk@timesonline.co.uk" "gender" "female" "ip_address" "56.110.122.93" "country" "Kuwait" "country_code" "KW" "city" "Al Jahrā’" "longitude" "47.6755291" "latitude" "29.3365728" "last_login" "1578244065" +HSET "user:3812" "first_name" "Trixi" "last_name" "Caves" "email" "tcavesml@dailymotion.com" "gender" "female" "ip_address" "45.76.11.96" "country" "Ukraine" "country_code" "UA" "city" "Molodohvardiys’k" "longitude" "39.6490172" "latitude" "48.3477045" "last_login" "1591130268" +HSET "user:3813" "first_name" "Maure" "last_name" "Read" "email" "mreadmm@e-recht24.de" "gender" "female" "ip_address" "95.228.177.233" "country" "Morocco" "country_code" "MA" "city" "Tamanar" "longitude" "-9.675904" "latitude" "30.9991154" "last_login" "1570381676" +HSET "user:3814" "first_name" "Lucy" "last_name" "Crim" "email" "lcrimmn@nature.com" "gender" "female" "ip_address" "81.233.235.17" "country" "Libya" "country_code" "LY" "city" "At Tāj" "longitude" "23.3005731" "latitude" "24.2233588" "last_login" "1579566653" +HSET "user:3815" "first_name" "Melisandra" "last_name" "Kinig" "email" "mkinigmo@liveinternet.ru" "gender" "female" "ip_address" "46.175.242.168" "country" "China" "country_code" "CN" "city" "Gaoshibei" "longitude" "115.070598" "latitude" "36.983696" "last_login" "1597495695" +HSET "user:3816" "first_name" "Gabie" "last_name" "Hurndall" "email" "ghurndallmp@prweb.com" "gender" "male" "ip_address" "107.68.72.166" "country" "Pakistan" "country_code" "PK" "city" "Ghauspur" "longitude" "69.0827863" "latitude" "28.1385576" "last_login" "1586672021" +HSET "user:3817" "first_name" "Roscoe" "last_name" "Scroggie" "email" "rscroggiemq@whitehouse.gov" "gender" "male" "ip_address" "207.201.145.8" "country" "China" "country_code" "CN" "city" "Yinghua" "longitude" "116.4284919" "latitude" "39.9727653" "last_login" "1595598762" +HSET "user:3818" "first_name" "Abbott" "last_name" "Vettore" "email" "avettoremr@lulu.com" "gender" "male" "ip_address" "198.228.33.253" "country" "China" "country_code" "CN" "city" "Jinghong" "longitude" "100.771678" "latitude" "22.000143" "last_login" "1580993054" +HSET "user:3819" "first_name" "Bonnie" "last_name" "Zollner" "email" "bzollnerms@cbslocal.com" "gender" "female" "ip_address" "32.51.92.249" "country" "United States" "country_code" "US" "city" "Springfield" "longitude" "-93.2478638" "latitude" "37.235499" "last_login" "1593928251" +HSET "user:3820" "first_name" "Marcile" "last_name" "Sommerton" "email" "msommertonmt@simplemachines.org" "gender" "female" "ip_address" "100.168.189.234" "country" "Ireland" "country_code" "IE" "city" "Skerries" "longitude" "-6.1349155" "latitude" "53.5834008" "last_login" "1585895470" +HSET "user:3821" "first_name" "Jenelle" "last_name" "Basey" "email" "jbaseymu@exblog.jp" "gender" "female" "ip_address" "135.16.114.167" "country" "Nigeria" "country_code" "NG" "city" "Jimeta" "longitude" "12.4495221" "latitude" "9.2485489" "last_login" "1570424201" +HSET "user:3822" "first_name" "Issy" "last_name" "Rossoni" "email" "irossonimv@shareasale.com" "gender" "female" "ip_address" "78.66.210.169" "country" "China" "country_code" "CN" "city" "Zhendeqiao" "longitude" "111.827018" "latitude" "29.139697" "last_login" "1580276665" +HSET "user:3823" "first_name" "Elinor" "last_name" "Strangward" "email" "estrangwardmw@google.ru" "gender" "female" "ip_address" "110.124.63.48" "country" "Norway" "country_code" "NO" "city" "Harstad" "longitude" "16.5529921" "latitude" "68.787629" "last_login" "1579559756" +HSET "user:3824" "first_name" "Sollie" "last_name" "Murtagh" "email" "smurtaghmx@quantcast.com" "gender" "male" "ip_address" "40.112.153.253" "country" "Kazakhstan" "country_code" "KZ" "city" "Lenger" "longitude" "69.8824972" "latitude" "42.1811386" "last_login" "1589603269" +HSET "user:3825" "first_name" "Audrye" "last_name" "Filmer" "email" "afilmermy@quantcast.com" "gender" "female" "ip_address" "173.240.244.42" "country" "Indonesia" "country_code" "ID" "city" "Lokolande" "longitude" "121.9715" "latitude" "-8.5261" "last_login" "1577097578" +HSET "user:3826" "first_name" "Kory" "last_name" "Hatterslay" "email" "khatterslaymz@vkontakte.ru" "gender" "male" "ip_address" "0.169.34.49" "country" "Indonesia" "country_code" "ID" "city" "Banjar Jabejero" "longitude" "115.2401" "latitude" "-8.5988" "last_login" "1587781259" +HSET "user:3827" "first_name" "Erny" "last_name" "Clearie" "email" "eclearien0@sciencedirect.com" "gender" "male" "ip_address" "237.66.140.183" "country" "Indonesia" "country_code" "ID" "city" "Dalo" "longitude" "120.3867834" "latitude" "-8.5997534" "last_login" "1571933418" +HSET "user:3828" "first_name" "Aubine" "last_name" "Reiner" "email" "areinern1@angelfire.com" "gender" "female" "ip_address" "52.245.211.175" "country" "United States" "country_code" "US" "city" "Decatur" "longitude" "-84.2953464" "latitude" "33.7746886" "last_login" "1600029211" +HSET "user:3829" "first_name" "Frances" "last_name" "de Aguirre" "email" "fdeaguirren2@about.com" "gender" "female" "ip_address" "79.254.97.79" "country" "Russia" "country_code" "RU" "city" "Sviblovo" "longitude" "37.669967" "latitude" "55.85611" "last_login" "1596338782" +HSET "user:3830" "first_name" "Giorgia" "last_name" "Eynald" "email" "geynaldn3@adobe.com" "gender" "female" "ip_address" "229.186.56.48" "country" "Ukraine" "country_code" "UA" "city" "Staryy Merchyk" "longitude" "35.759315" "latitude" "49.978837" "last_login" "1583011564" +HSET "user:3831" "first_name" "Timothee" "last_name" "Keld" "email" "tkeldn4@cloudflare.com" "gender" "male" "ip_address" "200.120.35.41" "country" "China" "country_code" "CN" "city" "Xuguang" "longitude" "106.419798" "latitude" "38.669386" "last_login" "1578135706" +HSET "user:3832" "first_name" "Evanne" "last_name" "Reyson" "email" "ereysonn5@yale.edu" "gender" "female" "ip_address" "65.97.75.117" "country" "Philippines" "country_code" "PH" "city" "Balangkayan" "longitude" "125.491172" "latitude" "11.446769" "last_login" "1568632362" +HSET "user:3833" "first_name" "Ermina" "last_name" "Tharme" "email" "etharmen6@marketwatch.com" "gender" "female" "ip_address" "57.197.99.83" "country" "Iran" "country_code" "IR" "city" "Ārān Bīdgol" "longitude" "51.4782228" "latitude" "34.0624686" "last_login" "1576363700" +HSET "user:3834" "first_name" "Nat" "last_name" "Sinfield" "email" "nsinfieldn7@a8.net" "gender" "male" "ip_address" "43.109.229.5" "country" "France" "country_code" "FR" "city" "Massy" "longitude" "2.2889821" "latitude" "48.732568" "last_login" "1587005084" +HSET "user:3835" "first_name" "Ginevra" "last_name" "Siaskowski" "email" "gsiaskowskin8@noaa.gov" "gender" "female" "ip_address" "228.126.223.6" "country" "China" "country_code" "CN" "city" "Yujia" "longitude" "107.96879" "latitude" "30.798325" "last_login" "1583190652" +HSET "user:3836" "first_name" "Marja" "last_name" "Duddell" "email" "mduddelln9@bbc.co.uk" "gender" "female" "ip_address" "119.138.93.131" "country" "China" "country_code" "CN" "city" "Xintang" "longitude" "113.823135" "latitude" "23.296786" "last_login" "1583856794" +HSET "user:3837" "first_name" "Mar" "last_name" "Cuttles" "email" "mcuttlesna@baidu.com" "gender" "male" "ip_address" "151.90.150.155" "country" "Indonesia" "country_code" "ID" "city" "Cimenga" "longitude" "108.4068343" "latitude" "-7.0795255" "last_login" "1599853607" +HSET "user:3838" "first_name" "Dominga" "last_name" "De Freyne" "email" "ddefreynenb@npr.org" "gender" "female" "ip_address" "64.121.129.195" "country" "France" "country_code" "FR" "city" "Caen" "longitude" "-0.4440154" "latitude" "49.2221045" "last_login" "1577920495" +HSET "user:3839" "first_name" "Jeffy" "last_name" "Wint" "email" "jwintnc@alibaba.com" "gender" "male" "ip_address" "110.172.143.210" "country" "Canada" "country_code" "CA" "city" "Medicine Hat" "longitude" "-110.6821866" "latitude" "50.0625015" "last_login" "1580064165" +HSET "user:3840" "first_name" "Burr" "last_name" "Hesey" "email" "bheseynd@cafepress.com" "gender" "male" "ip_address" "189.36.223.226" "country" "Portugal" "country_code" "PT" "city" "Silgueiros" "longitude" "-8.0108755" "latitude" "40.7143433" "last_login" "1572061690" +HSET "user:3841" "first_name" "Saleem" "last_name" "Scanes" "email" "sscanesne@mapy.cz" "gender" "male" "ip_address" "111.131.138.20" "country" "Norway" "country_code" "NO" "city" "Larvik" "longitude" "10.0275028" "latitude" "59.0524231" "last_login" "1599604785" +HSET "user:3842" "first_name" "Rip" "last_name" "Jickles" "email" "rjicklesnf@netlog.com" "gender" "male" "ip_address" "186.64.94.146" "country" "China" "country_code" "CN" "city" "Jinta" "longitude" "98.90327" "latitude" "39.983599" "last_login" "1588669079" +HSET "user:3843" "first_name" "Nicholas" "last_name" "Antoons" "email" "nantoonsmi@webnode.com" "gender" "male" "ip_address" "87.189.126.127" "country" "United States" "country_code" "US" "city" "Fort Wayne" "longitude" "-85.14" "latitude" "41.07" "last_login" "1599179360" +HSET "user:3844" "first_name" "Dov" "last_name" "Murcott" "email" "dmurcottnh@hp.com" "gender" "male" "ip_address" "102.99.30.56" "country" "China" "country_code" "CN" "city" "Yanwo" "longitude" "106.5767662" "latitude" "29.5582227" "last_login" "1569896709" +HSET "user:3845" "first_name" "Hobart" "last_name" "Salack" "email" "hsalackni@webnode.com" "gender" "male" "ip_address" "250.167.136.55" "country" "Portugal" "country_code" "PT" "city" "Escola" "longitude" "-9.2647064" "latitude" "38.7606468" "last_login" "1581657663" +HSET "user:3846" "first_name" "Mortie" "last_name" "Jakoub" "email" "mjakoubnj@si.edu" "gender" "male" "ip_address" "197.94.157.153" "country" "Russia" "country_code" "RU" "city" "Leninogorsk" "longitude" "52.4387134" "latitude" "54.6001467" "last_login" "1575242460" +HSET "user:3847" "first_name" "Maighdiln" "last_name" "Leynham" "email" "mleynhamnk@1688.com" "gender" "female" "ip_address" "172.151.126.11" "country" "Poland" "country_code" "PL" "city" "Krzeszów" "longitude" "16.0708309" "latitude" "50.7338713" "last_login" "1576628633" +HSET "user:3848" "first_name" "Jeddy" "last_name" "Ambrois" "email" "jambroisnl@harvard.edu" "gender" "male" "ip_address" "116.209.142.70" "country" "China" "country_code" "CN" "city" "Suqu" "longitude" "119.435046" "latitude" "32.391736" "last_login" "1572848642" +HSET "user:3849" "first_name" "Aurilia" "last_name" "MacAiline" "email" "amacailinenm@baidu.com" "gender" "female" "ip_address" "99.100.251.42" "country" "Aruba" "country_code" "AW" "city" "Oranjestad" "longitude" "-70.0086306" "latitude" "12.5092044" "last_login" "1578667974" +HSET "user:3850" "first_name" "Roselia" "last_name" "Dudney" "email" "rdudneynn@linkedin.com" "gender" "female" "ip_address" "157.254.178.184" "country" "France" "country_code" "FR" "city" "Cannes" "longitude" "7.0362389" "latitude" "43.5418913" "last_login" "1598312923" +HSET "user:3851" "first_name" "Rafferty" "last_name" "Baitey" "email" "rbaiteyno@behance.net" "gender" "male" "ip_address" "48.97.53.36" "country" "Brazil" "country_code" "BR" "city" "Camocim" "longitude" "-40.8388865" "latitude" "-2.9014475" "last_login" "1590834055" +HSET "user:3852" "first_name" "Grethel" "last_name" "Sayward" "email" "gsaywardnp@comsenz.com" "gender" "female" "ip_address" "175.72.245.2" "country" "China" "country_code" "CN" "city" "Qingfenglin" "longitude" "106.839279" "latitude" "27.799581" "last_login" "1575301092" +HSET "user:3853" "first_name" "Daron" "last_name" "Gabites" "email" "dgabitesnq@edublogs.org" "gender" "female" "ip_address" "212.227.155.121" "country" "Nicaragua" "country_code" "NI" "city" "Tipitapa" "longitude" "-86.0529604" "latitude" "12.2722898" "last_login" "1584298677" +HSET "user:3854" "first_name" "Muffin" "last_name" "MacNair" "email" "mmacnairnr@parallels.com" "gender" "male" "ip_address" "216.88.131.69" "country" "France" "country_code" "FR" "city" "Rennes" "longitude" "-1.7307558" "latitude" "48.0270746" "last_login" "1572902187" +HSET "user:3855" "first_name" "Jerald" "last_name" "MacCarroll" "email" "jmaccarrollns@etsy.com" "gender" "male" "ip_address" "188.151.161.65" "country" "China" "country_code" "CN" "city" "Gaojingzhuang" "longitude" "117.644144" "latitude" "39.419036" "last_login" "1591298891" +HSET "user:3856" "first_name" "Jermayne" "last_name" "Dunstall" "email" "jdunstallnt@mediafire.com" "gender" "male" "ip_address" "93.17.164.254" "country" "New Zealand" "country_code" "NZ" "city" "Waitara" "longitude" "174.2418241" "latitude" "-39.0482569" "last_login" "1568919296" +HSET "user:3857" "first_name" "Gillan" "last_name" "Slemmonds" "email" "gslemmondsnu@engadget.com" "gender" "female" "ip_address" "195.12.20.158" "country" "Greece" "country_code" "GR" "city" "Anthoúsa" "longitude" "23.8724272" "latitude" "38.0230869" "last_login" "1571060652" +HSET "user:3858" "first_name" "Kimmy" "last_name" "Cooksley" "email" "kcooksleynv@w3.org" "gender" "female" "ip_address" "233.223.223.129" "country" "Philippines" "country_code" "PH" "city" "Pangpang" "longitude" "123.8363399" "latitude" "10.2583233" "last_login" "1568992058" +HSET "user:3859" "first_name" "Jard" "last_name" "Blasing" "email" "jblasingnw@usa.gov" "gender" "male" "ip_address" "5.196.213.136" "country" "Portugal" "country_code" "PT" "city" "Folques" "longitude" "-8.0122102" "latitude" "40.2221306" "last_login" "1587476977" +HSET "user:3860" "first_name" "Annalise" "last_name" "Yarrow" "email" "ayarrownx@cmu.edu" "gender" "female" "ip_address" "157.178.174.145" "country" "Philippines" "country_code" "PH" "city" "San Roque" "longitude" "124.870243" "latitude" "12.532252" "last_login" "1583095046" +HSET "user:3861" "first_name" "Serge" "last_name" "Givens" "email" "sgivensny@webs.com" "gender" "male" "ip_address" "120.196.156.170" "country" "Honduras" "country_code" "HN" "city" "Ciudad Choluteca" "longitude" "-87.1622344" "latitude" "13.3198572" "last_login" "1571234782" +HSET "user:3862" "first_name" "Andrey" "last_name" "Topaz" "email" "atopaznz@dyndns.org" "gender" "male" "ip_address" "97.4.60.210" "country" "China" "country_code" "CN" "city" "Xiaopu" "longitude" "120.005147" "latitude" "26.885704" "last_login" "1598697469" +HSET "user:3863" "first_name" "Orland" "last_name" "Prescott" "email" "oprescotto0@about.me" "gender" "male" "ip_address" "240.95.117.36" "country" "Russia" "country_code" "RU" "city" "Podgorenskiy" "longitude" "39.6505372" "latitude" "50.3485458" "last_login" "1571200832" +HSET "user:3864" "first_name" "Johnna" "last_name" "Rhoades" "email" "jrhoadeso1@meetup.com" "gender" "female" "ip_address" "8.195.103.33" "country" "Indonesia" "country_code" "ID" "city" "Sumuragung" "longitude" "111.9969626" "latitude" "-7.1665502" "last_login" "1600156887" +HSET "user:3865" "first_name" "Carlo" "last_name" "Vian" "email" "cviano2@sciencedirect.com" "gender" "male" "ip_address" "24.44.85.49" "country" "Russia" "country_code" "RU" "city" "Vorontsovka" "longitude" "38.0807467" "latitude" "46.6521155" "last_login" "1579861294" +HSET "user:3866" "first_name" "Munroe" "last_name" "Narup" "email" "mnarupo3@baidu.com" "gender" "male" "ip_address" "60.64.248.15" "country" "Ukraine" "country_code" "UA" "city" "Sofiyivka" "longitude" "30.234973" "latitude" "48.761389" "last_login" "1587599664" +HSET "user:3867" "first_name" "Tomasine" "last_name" "Worms" "email" "twormso4@intel.com" "gender" "female" "ip_address" "59.120.172.249" "country" "Belarus" "country_code" "BY" "city" "Skidal’" "longitude" "24.2503492" "latitude" "53.5866599" "last_login" "1591877862" +HSET "user:3868" "first_name" "Lucy" "last_name" "Jentgens" "email" "ljentgenso5@usnews.com" "gender" "female" "ip_address" "250.18.48.6" "country" "Indonesia" "country_code" "ID" "city" "Ngrejo" "longitude" "112.0744643" "latitude" "-8.2412718" "last_login" "1599215183" +HSET "user:3869" "first_name" "Erin" "last_name" "McAlpine" "email" "emcalpineo6@gizmodo.com" "gender" "female" "ip_address" "96.21.54.18" "country" "Indonesia" "country_code" "ID" "city" "Lembongan Kawan" "longitude" "115.4555858" "latitude" "-8.6785828" "last_login" "1570308797" +HSET "user:3870" "first_name" "Elly" "last_name" "Trass" "email" "etrasso7@stanford.edu" "gender" "female" "ip_address" "60.33.33.126" "country" "Netherlands" "country_code" "NL" "city" "Alkmaar" "longitude" "4.7270746" "latitude" "52.6435136" "last_login" "1579114007" +HSET "user:3871" "first_name" "Laurens" "last_name" "Blennerhassett" "email" "lblennerhassetto8@amazonaws.com" "gender" "male" "ip_address" "247.109.36.65" "country" "Indonesia" "country_code" "ID" "city" "Karawatu" "longitude" "133.4608333" "latitude" "-4.0180556" "last_login" "1595098285" +HSET "user:3872" "first_name" "Lacey" "last_name" "Bentham3" "email" "lbenthamo9@devhub.com" "gender" "female" "ip_address" "36.188.183.216" "country" "Mauritius" "country_code" "MU" "city" "Notre Dame" "longitude" "57.5617693" "latitude" "-20.139651" "last_login" "1594253978" +HSET "user:3873" "first_name" "Sterne" "last_name" "Grimstead" "email" "sgrimsteadoa@usda.gov" "gender" "male" "ip_address" "63.137.224.110" "country" "Indonesia" "country_code" "ID" "city" "Sambungjaya" "longitude" "108.207518" "latitude" "-7.356466" "last_login" "1589772000" +HSET "user:3874" "first_name" "Augustine" "last_name" "Filliskirk" "email" "afilliskirkob@utexas.edu" "gender" "male" "ip_address" "23.125.85.63" "country" "Russia" "country_code" "RU" "city" "Vetluzhskiy" "longitude" "45.5416034" "latitude" "58.3669548" "last_login" "1597964008" +HSET "user:3875" "first_name" "Alaric" "last_name" "McAuslan" "email" "amcauslanoc@intel.com" "gender" "male" "ip_address" "22.79.149.255" "country" "Somalia" "country_code" "SO" "city" "Baardheere" "longitude" "42.2880059" "latitude" "2.3390467" "last_login" "1584368531" +HSET "user:3876" "first_name" "Karel" "last_name" "Pund" "email" "kpundod@ft.com" "gender" "male" "ip_address" "29.26.96.251" "country" "Argentina" "country_code" "AR" "city" "Florentino Ameghino" "longitude" "-64.1582003" "latitude" "-31.3540428" "last_login" "1577999370" +HSET "user:3877" "first_name" "Grantley" "last_name" "Housden" "email" "ghousdenoe@samsung.com" "gender" "male" "ip_address" "146.83.56.76" "country" "Indonesia" "country_code" "ID" "city" "Kertanegla" "longitude" "107.9591094" "latitude" "-7.5293844" "last_login" "1595021506" +HSET "user:3878" "first_name" "Margie" "last_name" "Kendrick" "email" "mkendrickof@berkeley.edu" "gender" "female" "ip_address" "184.26.73.196" "country" "Netherlands" "country_code" "NL" "city" "Bergen op Zoom" "longitude" "4.2864439" "latitude" "51.5004971" "last_login" "1576466137" +HSET "user:3879" "first_name" "Shae" "last_name" "Dorian" "email" "sdorianog@wix.com" "gender" "female" "ip_address" "203.169.89.31" "country" "Canada" "country_code" "CA" "city" "Senneterre" "longitude" "-77.23951" "latitude" "48.39302" "last_login" "1589610381" +HSET "user:3880" "first_name" "Zondra" "last_name" "Pickvance" "email" "zpickvanceoh@goo.ne.jp" "gender" "female" "ip_address" "214.104.144.246" "country" "China" "country_code" "CN" "city" "Piancheng" "longitude" "120.16366" "latitude" "33.347316" "last_login" "1579429616" +HSET "user:3881" "first_name" "Cornie" "last_name" "Bennetts" "email" "cbennettsoi@auda.org.au" "gender" "male" "ip_address" "171.201.90.60" "country" "South Sudan" "country_code" "SS" "city" "Raga" "longitude" "25.6805868" "latitude" "8.4611612" "last_login" "1579729083" +HSET "user:3882" "first_name" "Fidelio" "last_name" "Ehlerding" "email" "fehlerdingoj@google.it" "gender" "male" "ip_address" "78.8.15.96" "country" "Indonesia" "country_code" "ID" "city" "Krajan" "longitude" "111.6556388" "latitude" "-7.5450262" "last_login" "1592056026" +HSET "user:3883" "first_name" "Carole" "last_name" "Shailer" "email" "cshailerok@amazon.co.jp" "gender" "female" "ip_address" "119.221.85.224" "country" "Portugal" "country_code" "PT" "city" "Gouveia" "longitude" "-7.5954135" "latitude" "40.4918264" "last_login" "1583859165" +HSET "user:3884" "first_name" "Stephana" "last_name" "Trueman" "email" "struemanol@digg.com" "gender" "female" "ip_address" "211.184.205.178" "country" "Mongolia" "country_code" "MN" "city" "Buga" "longitude" "90.0133872" "latitude" "48.9479951" "last_login" "1588181544" +HSET "user:3885" "first_name" "Lief" "last_name" "Seywood" "email" "lseywoodom@bing.com" "gender" "male" "ip_address" "45.225.195.30" "country" "China" "country_code" "CN" "city" "Liuyuan" "longitude" "117.115904" "latitude" "39.207953" "last_login" "1578321801" +HSET "user:3886" "first_name" "Ollie" "last_name" "Pennacci" "email" "opennaccion@altervista.org" "gender" "male" "ip_address" "216.133.153.211" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.5104253" "latitude" "59.5891945" "last_login" "1570569440" +HSET "user:3887" "first_name" "Neda" "last_name" "Megainey" "email" "nmegaineyoo@qq.com" "gender" "female" "ip_address" "225.105.227.93" "country" "Slovenia" "country_code" "SI" "city" "Cankova" "longitude" "16.0197222" "latitude" "46.718237" "last_login" "1568763178" +HSET "user:3888" "first_name" "Gene" "last_name" "O'Dulchonta" "email" "godulchontaop@bandcamp.com" "gender" "male" "ip_address" "87.250.34.243" "country" "Greece" "country_code" "GR" "city" "Sofádes" "longitude" "22.097651" "latitude" "39.335659" "last_login" "1588212460" +HSET "user:3889" "first_name" "Brigitte" "last_name" "MacGregor" "email" "bmacgregoroq@telegraph.co.uk" "gender" "female" "ip_address" "163.168.80.152" "country" "Haiti" "country_code" "HT" "city" "Torbeck" "longitude" "-73.8110279" "latitude" "18.1646497" "last_login" "1585368332" +HSET "user:3890" "first_name" "Ali" "last_name" "Possek" "email" "apossekor@photobucket.com" "gender" "male" "ip_address" "161.215.27.199" "country" "China" "country_code" "CN" "city" "Zhongtong" "longitude" "116.0625588" "latitude" "36.448127" "last_login" "1577018358" +HSET "user:3891" "first_name" "Susann" "last_name" "Larner" "email" "slarneros@mozilla.com" "gender" "female" "ip_address" "63.61.190.178" "country" "China" "country_code" "CN" "city" "Nanping" "longitude" "118.17771" "latitude" "26.641774" "last_login" "1594182508" +HSET "user:3892" "first_name" "Kurtis" "last_name" "Barajas" "email" "kbarajasot@unc.edu" "gender" "male" "ip_address" "45.204.14.113" "country" "Russia" "country_code" "RU" "city" "Shchelkovo" "longitude" "38.0011402" "latitude" "55.9240189" "last_login" "1587049327" +HSET "user:3893" "first_name" "Quill" "last_name" "Menci" "email" "qmenciou@sina.com.cn" "gender" "male" "ip_address" "61.162.63.204" "country" "Solomon Islands" "country_code" "SB" "city" "Gizo" "longitude" "156.8349986" "latitude" "-8.1058258" "last_login" "1592851703" +HSET "user:3894" "first_name" "Claiborn" "last_name" "Scandrett" "email" "cscandrettov@reference.com" "gender" "male" "ip_address" "26.222.159.138" "country" "China" "country_code" "CN" "city" "Zhouji" "longitude" "120.246863" "latitude" "29.708692" "last_login" "1586114336" +HSET "user:3895" "first_name" "Giacinta" "last_name" "Annell" "email" "gannellow@reference.com" "gender" "female" "ip_address" "131.194.226.159" "country" "Russia" "country_code" "RU" "city" "Shumerlya" "longitude" "46.3984938" "latitude" "55.5039231" "last_login" "1585344166" +HSET "user:3896" "first_name" "Tatum" "last_name" "Bentje" "email" "tbentjeox@google.co.uk" "gender" "female" "ip_address" "118.138.232.70" "country" "Russia" "country_code" "RU" "city" "Orël" "longitude" "36.7528817" "latitude" "53.2085624" "last_login" "1580600409" +HSET "user:3897" "first_name" "Jocelyn" "last_name" "Rey" "email" "jreyoy@canalblog.com" "gender" "female" "ip_address" "0.145.135.43" "country" "Indonesia" "country_code" "ID" "city" "Gunungbatu" "longitude" "107.0527778" "latitude" "-6.6038889" "last_login" "1598319555" +HSET "user:3898" "first_name" "Nona" "last_name" "Farfalameev" "email" "nfarfalameevoz@google.pl" "gender" "female" "ip_address" "121.62.230.58" "country" "Indonesia" "country_code" "ID" "city" "Pelabuhanratu" "longitude" "106.5475399" "latitude" "-6.9852341" "last_login" "1599369849" +HSET "user:3899" "first_name" "Ian" "last_name" "Bissett" "email" "ibissettp0@tmall.com" "gender" "male" "ip_address" "255.41.247.146" "country" "Norway" "country_code" "NO" "city" "Bergen" "longitude" "5.3067543" "latitude" "60.4232195" "last_login" "1582072842" +HSET "user:3900" "first_name" "Lou" "last_name" "Wenderoth" "email" "lwenderothp1@imdb.com" "gender" "male" "ip_address" "208.112.64.182" "country" "China" "country_code" "CN" "city" "Xiaoguwei" "longitude" "113.398429" "latitude" "23.044969" "last_login" "1586052945" +HSET "user:3901" "first_name" "Irvin" "last_name" "Cuppitt" "email" "icuppittp2@biglobe.ne.jp" "gender" "male" "ip_address" "138.209.219.178" "country" "Ukraine" "country_code" "UA" "city" "Pidhaytsi" "longitude" "25.1313297" "latitude" "49.2744124" "last_login" "1598292289" +HSET "user:3902" "first_name" "Quincy" "last_name" "Carrivick" "email" "qcarrivickp3@mayoclinic.com" "gender" "male" "ip_address" "95.145.84.87" "country" "Ukraine" "country_code" "UA" "city" "Karlivka" "longitude" "35.1200067" "latitude" "49.4576263" "last_login" "1569569392" +HSET "user:3903" "first_name" "Vicki" "last_name" "McPhater" "email" "vmcphaterp4@prweb.com" "gender" "female" "ip_address" "66.98.232.193" "country" "China" "country_code" "CN" "city" "Wenjiao" "longitude" "110.460225" "latitude" "19.7206" "last_login" "1591632962" +HSET "user:3904" "first_name" "Pooh" "last_name" "Caldera" "email" "pcalderap5@google.com" "gender" "male" "ip_address" "216.24.217.176" "country" "Malaysia" "country_code" "MY" "city" "Kuala Lumpur" "longitude" "101.7178316" "latitude" "3.1523104" "last_login" "1577020650" +HSET "user:3905" "first_name" "Jedd" "last_name" "Togwell" "email" "jtogwellp6@seattletimes.com" "gender" "male" "ip_address" "0.59.20.53" "country" "China" "country_code" "CN" "city" "Zhangshi" "longitude" "115.387259" "latitude" "37.187796" "last_login" "1585273462" +HSET "user:3906" "first_name" "Loy" "last_name" "Serjent" "email" "lserjentp7@google.pl" "gender" "male" "ip_address" "39.95.201.120" "country" "Indonesia" "country_code" "ID" "city" "Poja Nae" "longitude" "119.03867" "latitude" "-8.50246" "last_login" "1591607887" +HSET "user:3907" "first_name" "Ginnifer" "last_name" "Siemens" "email" "gsiemensp8@rediff.com" "gender" "female" "ip_address" "119.204.133.211" "country" "Indonesia" "country_code" "ID" "city" "Bedadung Kulon" "longitude" "113.7603078" "latitude" "-8.1306189" "last_login" "1587194877" +HSET "user:3908" "first_name" "Fionna" "last_name" "Lyddy" "email" "flyddyp9@vinaora.com" "gender" "female" "ip_address" "0.95.47.180" "country" "Ecuador" "country_code" "EC" "city" "Tena" "longitude" "-77.8136035" "latitude" "-0.9962972" "last_login" "1578864431" +HSET "user:3909" "first_name" "Nettle" "last_name" "Bompass" "email" "nbompasspa@pinterest.com" "gender" "female" "ip_address" "148.29.30.67" "country" "Indonesia" "country_code" "ID" "city" "Mandalasari" "longitude" "107.8361732" "latitude" "-7.0186412" "last_login" "1597924647" +HSET "user:3910" "first_name" "Zacharias" "last_name" "Bahl" "email" "zbahlpb@cisco.com" "gender" "male" "ip_address" "248.49.124.112" "country" "China" "country_code" "CN" "city" "Fuming" "longitude" "121.593092" "latitude" "29.86098" "last_login" "1578932726" +HSET "user:3911" "first_name" "Jocko" "last_name" "Ramage" "email" "jramagepc@example.com" "gender" "male" "ip_address" "110.239.197.66" "country" "Croatia" "country_code" "HR" "city" "Senj" "longitude" "14.9036052" "latitude" "44.9893604" "last_login" "1580293903" +HSET "user:3912" "first_name" "Joshua" "last_name" "Bacchus" "email" "jbacchuspd@hatena.ne.jp" "gender" "male" "ip_address" "137.177.132.66" "country" "Czech Republic" "country_code" "CZ" "city" "Kostelec nad Černými Lesy" "longitude" "14.859224" "latitude" "49.9940366" "last_login" "1600243984" +HSET "user:3913" "first_name" "Bendick" "last_name" "Krabbe" "email" "bkrabbepe@foxnews.com" "gender" "male" "ip_address" "237.68.99.124" "country" "Myanmar" "country_code" "MM" "city" "Myanaung" "longitude" "95.3207069" "latitude" "18.2707494" "last_login" "1572427165" +HSET "user:3914" "first_name" "Julius" "last_name" "Yesenev" "email" "jyesenevpf@barnesandnoble.com" "gender" "male" "ip_address" "238.193.6.232" "country" "Indonesia" "country_code" "ID" "city" "Juwana" "longitude" "111.1533456" "latitude" "-6.7099134" "last_login" "1587904525" +HSET "user:3915" "first_name" "Odette" "last_name" "Jacobowicz" "email" "ojacobowiczpg@time.com" "gender" "female" "ip_address" "165.83.52.51" "country" "China" "country_code" "CN" "city" "Xiaojie" "longitude" "109.155152" "latitude" "37.32273" "last_login" "1587965080" +HSET "user:3916" "first_name" "Isobel" "last_name" "Blissitt" "email" "iblissittph@livejournal.com" "gender" "female" "ip_address" "50.159.215.162" "country" "Russia" "country_code" "RU" "city" "Yeysk" "longitude" "38.2755861" "latitude" "46.711547" "last_login" "1585068206" +HSET "user:3917" "first_name" "Cale" "last_name" "Druce" "email" "cdrucepi@google.com" "gender" "male" "ip_address" "89.34.36.131" "country" "New Caledonia" "country_code" "NC" "city" "Dumbéa" "longitude" "166.4574811" "latitude" "-22.1678006" "last_login" "1585759526" +HSET "user:3918" "first_name" "Ianthe" "last_name" "Covelle" "email" "icovellepj@state.tx.us" "gender" "female" "ip_address" "138.113.65.214" "country" "Brazil" "country_code" "BR" "city" "Pedro Leopoldo" "longitude" "-44.0404979" "latitude" "-19.6189005" "last_login" "1576436859" +HSET "user:3919" "first_name" "Brittni" "last_name" "Passe" "email" "bpassepk@foxnews.com" "gender" "female" "ip_address" "138.164.9.17" "country" "Indonesia" "country_code" "ID" "city" "Pohbango" "longitude" "111.0625" "latitude" "-6.6425" "last_login" "1582078492" +HSET "user:3920" "first_name" "Heriberto" "last_name" "MacKellar" "email" "hmackellarpl@barnesandnoble.com" "gender" "male" "ip_address" "131.167.98.103" "country" "Brazil" "country_code" "BR" "city" "Santo Antônio do Monte" "longitude" "-45.2957103" "latitude" "-20.0859007" "last_login" "1569889127" +HSET "user:3921" "first_name" "Yoko" "last_name" "Tomasik" "email" "ytomasikpm@people.com.cn" "gender" "female" "ip_address" "139.189.233.150" "country" "France" "country_code" "FR" "city" "Reims" "longitude" "-1.8090692" "latitude" "48.2414942" "last_login" "1582484334" +HSET "user:3922" "first_name" "Hurley" "last_name" "Pibworth" "email" "hpibworthpn@cocolog-nifty.com" "gender" "male" "ip_address" "104.48.213.36" "country" "United States" "country_code" "US" "city" "Houston" "longitude" "-95.29" "latitude" "29.82" "last_login" "1582727460" +HSET "user:3923" "first_name" "Shepperd" "last_name" "Blankman" "email" "sblankmanpo@parallels.com" "gender" "male" "ip_address" "184.122.223.133" "country" "China" "country_code" "CN" "city" "Jintang" "longitude" "104.408801" "latitude" "30.845968" "last_login" "1571769105" +HSET "user:3924" "first_name" "Casandra" "last_name" "Sibbe" "email" "csibbepp@statcounter.com" "gender" "female" "ip_address" "46.248.44.170" "country" "Indonesia" "country_code" "ID" "city" "Cibalieur" "longitude" "107.8826" "latitude" "-7.6965" "last_login" "1587680038" +HSET "user:3925" "first_name" "Ileane" "last_name" "Forestel" "email" "iforestelpq@dagondesign.com" "gender" "female" "ip_address" "217.121.98.97" "country" "China" "country_code" "CN" "city" "Tuguanpu" "longitude" "106.558023" "latitude" "33.12688" "last_login" "1585606547" +HSET "user:3926" "first_name" "Romy" "last_name" "Grimley" "email" "rgrimleypr@a8.net" "gender" "female" "ip_address" "35.66.92.111" "country" "Lithuania" "country_code" "LT" "city" "Trakai" "longitude" "24.9344265" "latitude" "54.6219097" "last_login" "1578575351" +HSET "user:3927" "first_name" "Bay" "last_name" "Meiklam" "email" "bmeiklamps@fastcompany.com" "gender" "male" "ip_address" "153.14.188.92" "country" "China" "country_code" "CN" "city" "Hegeng" "longitude" "105.877112" "latitude" "29.129743" "last_login" "1585265856" +HSET "user:3928" "first_name" "Althea" "last_name" "Dobrowolny" "email" "adobrowolnypt@arizona.edu" "gender" "female" "ip_address" "70.100.129.7" "country" "Indonesia" "country_code" "ID" "city" "Mekarsari" "longitude" "115.1918802" "latitude" "-8.3765619" "last_login" "1587365677" +HSET "user:3929" "first_name" "Jenelle" "last_name" "Conlaund" "email" "jconlaundpu@biblegateway.com" "gender" "female" "ip_address" "125.218.179.136" "country" "Colombia" "country_code" "CO" "city" "Purificación" "longitude" "-74.8039205" "latitude" "3.8291336" "last_login" "1587683427" +HSET "user:3930" "first_name" "Sarajane" "last_name" "Blais" "email" "sblaispv@4shared.com" "gender" "female" "ip_address" "252.227.237.215" "country" "Indonesia" "country_code" "ID" "city" "Pasirtujuhpuluh" "longitude" "99.4976356" "latitude" "3.2443317" "last_login" "1572780426" +HSET "user:3931" "first_name" "Holly" "last_name" "Liepins" "email" "hliepinspw@wufoo.com" "gender" "female" "ip_address" "53.89.234.89" "country" "Brazil" "country_code" "BR" "city" "Senador Canedo" "longitude" "-49.1019233" "latitude" "-16.6948713" "last_login" "1598317934" +HSET "user:3932" "first_name" "Nichol" "last_name" "Topping" "email" "ntoppingpx@theatlantic.com" "gender" "female" "ip_address" "179.128.83.163" "country" "Yemen" "country_code" "YE" "city" "Al Qurayshīyah" "longitude" "44.85358" "latitude" "14.5122" "last_login" "1569217813" +HSET "user:3933" "first_name" "Kristel" "last_name" "Gerretsen" "email" "kgerretsenpy@china.com.cn" "gender" "female" "ip_address" "207.211.68.191" "country" "Philippines" "country_code" "PH" "city" "Tigpalay" "longitude" "122.3399664" "latitude" "7.4854917" "last_login" "1575454241" +HSET "user:3934" "first_name" "Heinrik" "last_name" "Stubs" "email" "hstubspz@vinaora.com" "gender" "male" "ip_address" "243.244.28.146" "country" "Brazil" "country_code" "BR" "city" "São Félix do Xingu" "longitude" "-52.3613378" "latitude" "-7.0179497" "last_login" "1574864338" +HSET "user:3935" "first_name" "Gregoire" "last_name" "Abramowitz" "email" "gabramowitzq0@parallels.com" "gender" "male" "ip_address" "177.49.238.1" "country" "Costa Rica" "country_code" "CR" "city" "Siquirres" "longitude" "-83.504629" "latitude" "10.097212" "last_login" "1594508418" +HSET "user:3936" "first_name" "Herbert" "last_name" "Ormshaw" "email" "hormshawq1@example.com" "gender" "male" "ip_address" "18.20.216.147" "country" "Poland" "country_code" "PL" "city" "Orzesze" "longitude" "18.7713104" "latitude" "50.0898667" "last_login" "1571452532" +HSET "user:3937" "first_name" "Isidro" "last_name" "Loakes" "email" "iloakesq2@narod.ru" "gender" "male" "ip_address" "95.250.72.53" "country" "France" "country_code" "FR" "city" "Paris 09" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1587932792" +HSET "user:3938" "first_name" "Shannah" "last_name" "Wollers" "email" "swollersq3@seattletimes.com" "gender" "female" "ip_address" "243.23.240.221" "country" "Slovenia" "country_code" "SI" "city" "Turnišče" "longitude" "16.3144961" "latitude" "46.625456" "last_login" "1575193236" +HSET "user:3939" "first_name" "Daryl" "last_name" "MacConnel" "email" "dmacconnelq4@columbia.edu" "gender" "male" "ip_address" "131.73.42.215" "country" "Czech Republic" "country_code" "CZ" "city" "Strančice" "longitude" "14.6774529" "latitude" "49.9481168" "last_login" "1573772528" +HSET "user:3940" "first_name" "Judas" "last_name" "Triggol" "email" "jtriggolq5@hao123.com" "gender" "male" "ip_address" "101.243.167.2" "country" "United States" "country_code" "US" "city" "Madison" "longitude" "-89.4245627" "latitude" "43.0690343" "last_login" "1572505580" +HSET "user:3941" "first_name" "Aldin" "last_name" "Muat" "email" "amuatq6@cdbaby.com" "gender" "male" "ip_address" "9.23.167.249" "country" "Philippines" "country_code" "PH" "city" "Dumaguil" "longitude" "124.6846104" "latitude" "6.5592478" "last_login" "1578091812" +HSET "user:3942" "first_name" "Jori" "last_name" "Hamor" "email" "jhamorq7@hibu.com" "gender" "female" "ip_address" "111.248.36.109" "country" "Portugal" "country_code" "PT" "city" "Fátima" "longitude" "-8.6563967" "latitude" "39.6208162" "last_login" "1598172438" +HSET "user:3943" "first_name" "Klement" "last_name" "Sweeten" "email" "ksweetenq8@ezinearticles.com" "gender" "male" "ip_address" "12.5.30.63" "country" "Indonesia" "country_code" "ID" "city" "Maundai" "longitude" "121.2901" "latitude" "-8.8993" "last_login" "1587321726" +HSET "user:3944" "first_name" "Hedda" "last_name" "Scamwell" "email" "hscamwellq9@bizjournals.com" "gender" "female" "ip_address" "156.84.80.3" "country" "China" "country_code" "CN" "city" "Jiujianfang" "longitude" "128.219871" "latitude" "45.360768" "last_login" "1572681083" +HSET "user:3945" "first_name" "Constantia" "last_name" "Robbins" "email" "crobbinsqa@dot.gov" "gender" "female" "ip_address" "170.111.195.237" "country" "Philippines" "country_code" "PH" "city" "Cumadcad" "longitude" "123.7830057" "latitude" "12.9785941" "last_login" "1578294256" +HSET "user:3946" "first_name" "Arley" "last_name" "Robilliard" "email" "arobilliardqb@shinystat.com" "gender" "male" "ip_address" "58.95.53.209" "country" "China" "country_code" "CN" "city" "Gulao" "longitude" "112.94593" "latitude" "22.830644" "last_login" "1592037626" +HSET "user:3947" "first_name" "Lena" "last_name" "Reuven" "email" "lreuvenqc@tuttocitta.it" "gender" "female" "ip_address" "163.138.247.220" "country" "Philippines" "country_code" "PH" "city" "Lemery" "longitude" "121.0022623" "latitude" "14.5665991" "last_login" "1578451711" +HSET "user:3948" "first_name" "Hannis" "last_name" "Clegg" "email" "hcleggqd@imageshack.us" "gender" "female" "ip_address" "85.8.21.224" "country" "Philippines" "country_code" "PH" "city" "Aborlan" "longitude" "118.439613" "latitude" "9.562371" "last_login" "1577300003" +HSET "user:3949" "first_name" "Issy" "last_name" "Pandya" "email" "ipandyaqe@google.it" "gender" "female" "ip_address" "255.246.156.178" "country" "Pakistan" "country_code" "PK" "city" "Vihāri" "longitude" "71.5263363" "latitude" "30.1631687" "last_login" "1591106498" +HSET "user:3950" "first_name" "Stevena" "last_name" "Pittham" "email" "spitthamqf@cargocollective.com" "gender" "female" "ip_address" "205.247.163.117" "country" "Japan" "country_code" "JP" "city" "Nobeoka" "longitude" "131.6597893" "latitude" "32.5496232" "last_login" "1584121383" +HSET "user:3951" "first_name" "Bartholomew" "last_name" "Rubert" "email" "brubertqg@desdev.cn" "gender" "male" "ip_address" "230.15.26.62" "country" "United States" "country_code" "US" "city" "Burbank" "longitude" "-118.3403506" "latitude" "34.1615135" "last_login" "1594830011" +HSET "user:3952" "first_name" "Joelle" "last_name" "Wilkowski" "email" "jwilkowskiqh@ca.gov" "gender" "female" "ip_address" "236.226.87.154" "country" "Nicaragua" "country_code" "NI" "city" "Telpaneca" "longitude" "-86.2856819" "latitude" "13.5292779" "last_login" "1598576320" +HSET "user:3953" "first_name" "Barthel" "last_name" "Rasor" "email" "brasorqi@umn.edu" "gender" "male" "ip_address" "27.236.231.182" "country" "United States" "country_code" "US" "city" "Louisville" "longitude" "-85.7" "latitude" "38.2" "last_login" "1579789223" +HSET "user:3954" "first_name" "Brigid" "last_name" "Ibeson" "email" "bibesonqj@bravesites.com" "gender" "female" "ip_address" "65.225.208.123" "country" "Nicaragua" "country_code" "NI" "city" "Chinandega" "longitude" "-87.1273253" "latitude" "12.6234721" "last_login" "1569451052" +HSET "user:3955" "first_name" "Renault" "last_name" "Slimm" "email" "rslimmqk@craigslist.org" "gender" "male" "ip_address" "249.72.67.74" "country" "Indonesia" "country_code" "ID" "city" "Manding" "longitude" "100.663597" "latitude" "0.93669" "last_login" "1589308144" +HSET "user:3956" "first_name" "Kassi" "last_name" "McGeachie" "email" "kmcgeachieql@imgur.com" "gender" "female" "ip_address" "97.248.227.207" "country" "Georgia" "country_code" "GE" "city" "P’rimorsk’oe" "longitude" "40.702579" "latitude" "43.089588" "last_login" "1577810868" +HSET "user:3957" "first_name" "Brit" "last_name" "Cadney" "email" "bcadneyqm@about.me" "gender" "female" "ip_address" "211.201.184.213" "country" "Tanzania" "country_code" "TZ" "city" "Tandahimba" "longitude" "39.5691841" "latitude" "-10.7385515" "last_login" "1599320248" +HSET "user:3958" "first_name" "Isabelle" "last_name" "Patesel" "email" "ipateselqn@senate.gov" "gender" "female" "ip_address" "109.87.69.211" "country" "Portugal" "country_code" "PT" "city" "Casais de Vera Cruz" "longitude" "-8.57269" "latitude" "40.2603592" "last_login" "1580028466" +HSET "user:3959" "first_name" "Pasquale" "last_name" "Arnley" "email" "parnleyqo@multiply.com" "gender" "male" "ip_address" "221.179.14.231" "country" "Argentina" "country_code" "AR" "city" "Dalmacio Vélez Sársfield" "longitude" "-58.5988688" "latitude" "-34.6531982" "last_login" "1591948230" +HSET "user:3960" "first_name" "Ad" "last_name" "Lamberto" "email" "alambertoqp@fotki.com" "gender" "male" "ip_address" "86.251.253.140" "country" "Indonesia" "country_code" "ID" "city" "Mauloo" "longitude" "122.0183914" "latitude" "-8.7517433" "last_login" "1584316151" +HSET "user:3961" "first_name" "Collie" "last_name" "Olech" "email" "colechqq@harvard.edu" "gender" "female" "ip_address" "31.24.59.68" "country" "Finland" "country_code" "FI" "city" "Kuhmoinen" "longitude" "25.1814985" "latitude" "61.5656107" "last_login" "1585199964" +HSET "user:3962" "first_name" "Kimberley" "last_name" "Churcher" "email" "kchurcherqr@angelfire.com" "gender" "female" "ip_address" "192.11.149.98" "country" "Nicaragua" "country_code" "NI" "city" "Yalagüina" "longitude" "-86.4920736" "latitude" "13.4817182" "last_login" "1573366819" +HSET "user:3963" "first_name" "Lynnette" "last_name" "Nudds" "email" "lnuddsqs@pbs.org" "gender" "female" "ip_address" "254.35.129.131" "country" "Argentina" "country_code" "AR" "city" "Villaguay" "longitude" "-68.1042424" "latitude" "-38.9467974" "last_login" "1582141781" +HSET "user:3964" "first_name" "Merv" "last_name" "Dunk" "email" "mdunkqt@howstuffworks.com" "gender" "male" "ip_address" "128.238.145.144" "country" "Azerbaijan" "country_code" "AZ" "city" "Hövsan" "longitude" "50.0918078" "latitude" "40.3802589" "last_login" "1569149075" +HSET "user:3965" "first_name" "Ellene" "last_name" "Haistwell" "email" "ehaistwellqu@stumbleupon.com" "gender" "female" "ip_address" "7.73.144.172" "country" "Philippines" "country_code" "PH" "city" "Inicbulan" "longitude" "120.9814426" "latitude" "13.8206796" "last_login" "1582788901" +HSET "user:3966" "first_name" "Rosmunda" "last_name" "Raithbie" "email" "rraithbieqv@sitemeter.com" "gender" "female" "ip_address" "192.185.213.244" "country" "Mexico" "country_code" "MX" "city" "San Luis" "longitude" "-100.9855409" "latitude" "22.1564699" "last_login" "1582521027" +HSET "user:3967" "first_name" "Lorelle" "last_name" "Crookall" "email" "lcrookallqw@walmart.com" "gender" "female" "ip_address" "227.98.235.121" "country" "Philippines" "country_code" "PH" "city" "San Francisco" "longitude" "125.9772286" "latitude" "8.5057205" "last_login" "1591308108" +HSET "user:3968" "first_name" "Evin" "last_name" "Owlner" "email" "eowlnerqx@adobe.com" "gender" "male" "ip_address" "152.36.8.245" "country" "Tanzania" "country_code" "TZ" "city" "Butiama" "longitude" "33.9694276" "latitude" "-1.7669836" "last_login" "1575276382" +HSET "user:3969" "first_name" "Dawna" "last_name" "Tarbox" "email" "dtarboxqy@toplist.cz" "gender" "female" "ip_address" "242.1.179.135" "country" "Ireland" "country_code" "IE" "city" "Muff" "longitude" "-7.269174" "latitude" "55.0650892" "last_login" "1580986225" +HSET "user:3970" "first_name" "Martie" "last_name" "Breen" "email" "mbreenqz@surveymonkey.com" "gender" "male" "ip_address" "236.246.218.135" "country" "France" "country_code" "FR" "city" "Bordeaux" "longitude" "-0.318174" "latitude" "44.386415" "last_login" "1584633434" +HSET "user:3971" "first_name" "Emmy" "last_name" "Milsted" "email" "emilstedr0@gravatar.com" "gender" "female" "ip_address" "118.36.113.43" "country" "Indonesia" "country_code" "ID" "city" "Pinggirsari" "longitude" "107.6540877" "latitude" "-7.0837462" "last_login" "1599724662" +HSET "user:3972" "first_name" "Lenna" "last_name" "Salsbury" "email" "lsalsburyr1@phoca.cz" "gender" "female" "ip_address" "175.133.246.60" "country" "Philippines" "country_code" "PH" "city" "Mercedes" "longitude" "121.0307955" "latitude" "14.5634196" "last_login" "1577844117" +HSET "user:3973" "first_name" "Dev" "last_name" "Elmore" "email" "delmorer2@utexas.edu" "gender" "male" "ip_address" "255.164.87.224" "country" "Poland" "country_code" "PL" "city" "Sławatycze" "longitude" "23.528792" "latitude" "51.7930978" "last_login" "1586430488" +HSET "user:3974" "first_name" "Krispin" "last_name" "Claypool" "email" "kclaypoolr3@senate.gov" "gender" "male" "ip_address" "101.144.82.9" "country" "United States" "country_code" "US" "city" "Amarillo" "longitude" "-102.8518139" "latitude" "32.9578909" "last_login" "1571918006" +HSET "user:3975" "first_name" "Violette" "last_name" "Treske" "email" "vtresker4@free.fr" "gender" "female" "ip_address" "159.140.231.149" "country" "Argentina" "country_code" "AR" "city" "La Rioja" "longitude" "-60.6961061" "latitude" "-32.9377962" "last_login" "1588384851" +HSET "user:3976" "first_name" "Yolande" "last_name" "Spatoni" "email" "yspatonir5@csmonitor.com" "gender" "female" "ip_address" "67.113.110.196" "country" "Paraguay" "country_code" "PY" "city" "Antequera" "longitude" "-57.2000138" "latitude" "-24.085215" "last_login" "1594193853" +HSET "user:3977" "first_name" "Portie" "last_name" "Evenett" "email" "pevenettr6@seesaa.net" "gender" "male" "ip_address" "38.110.176.79" "country" "Jordan" "country_code" "JO" "city" "Aydūn" "longitude" "35.853757" "latitude" "32.5236404" "last_login" "1592315242" +HSET "user:3978" "first_name" "Riva" "last_name" "Nother" "email" "rnotherr7@diigo.com" "gender" "female" "ip_address" "141.139.4.222" "country" "China" "country_code" "CN" "city" "Kuzhu" "longitude" "117.980053" "latitude" "26.982106" "last_login" "1577516788" +HSET "user:3979" "first_name" "Drusi" "last_name" "Donovan" "email" "ddonovanr8@joomla.org" "gender" "female" "ip_address" "74.234.177.215" "country" "Kenya" "country_code" "KE" "city" "Rongai" "longitude" "36.7442377" "latitude" "-1.3938636" "last_login" "1579424569" +HSET "user:3980" "first_name" "Michele" "last_name" "Brodnecke" "email" "mbrodnecker9@1688.com" "gender" "female" "ip_address" "23.160.243.151" "country" "Philippines" "country_code" "PH" "city" "Hilotongan" "longitude" "123.6441498" "latitude" "11.144989" "last_login" "1588647357" +HSET "user:3981" "first_name" "Nickolai" "last_name" "Lyddiatt" "email" "nlyddiattra@gnu.org" "gender" "male" "ip_address" "122.152.131.170" "country" "Indonesia" "country_code" "ID" "city" "Kramat" "longitude" "106.8466001" "latitude" "-6.1840029" "last_login" "1573679523" +HSET "user:3982" "first_name" "Fabe" "last_name" "Lowle" "email" "flowlerb@nifty.com" "gender" "male" "ip_address" "128.114.130.138" "country" "Argentina" "country_code" "AR" "city" "Fontana" "longitude" "-67.5018975" "latitude" "-45.8732238" "last_login" "1589797540" +HSET "user:3983" "first_name" "Merline" "last_name" "Finneran" "email" "mfinneranrc@addtoany.com" "gender" "female" "ip_address" "237.38.134.91" "country" "France" "country_code" "FR" "city" "Saint-Étienne" "longitude" "4.3637137" "latitude" "45.4815563" "last_login" "1576282448" +HSET "user:3984" "first_name" "Shirl" "last_name" "Coyte" "email" "scoyterd@ebay.com" "gender" "female" "ip_address" "19.217.0.102" "country" "Sweden" "country_code" "SE" "city" "Nyköping" "longitude" "16.8539366" "latitude" "58.7500889" "last_login" "1588794571" +HSET "user:3985" "first_name" "Gorden" "last_name" "Varfalameev" "email" "gvarfalameevre@cpanel.net" "gender" "male" "ip_address" "164.13.84.227" "country" "Cyprus" "country_code" "CY" "city" "Dhromolaxia" "longitude" "33.5895956" "latitude" "34.8813447" "last_login" "1580538631" +HSET "user:3986" "first_name" "Ferdinande" "last_name" "Kaszper" "email" "fkaszperrf@nifty.com" "gender" "female" "ip_address" "164.144.183.143" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Ngọc Lặc" "longitude" "105.3760604" "latitude" "20.0844095" "last_login" "1584590408" +HSET "user:3987" "first_name" "Debor" "last_name" "Matthiae" "email" "dmatthiaerg@storify.com" "gender" "female" "ip_address" "248.188.215.161" "country" "Martinique" "country_code" "MQ" "city" "Fort-de-France" "longitude" "-61.0512822" "latitude" "14.641514" "last_login" "1576078242" +HSET "user:3988" "first_name" "Julio" "last_name" "Barrabeale" "email" "jbarrabealerh@hibu.com" "gender" "male" "ip_address" "94.213.157.164" "country" "Philippines" "country_code" "PH" "city" "Manalad" "longitude" "122.7778598" "latitude" "10.0037408" "last_login" "1580148985" +HSET "user:3989" "first_name" "Gardy" "last_name" "Wisdom" "email" "gwisdomri@dagondesign.com" "gender" "male" "ip_address" "234.114.23.153" "country" "Ukraine" "country_code" "UA" "city" "Stepove" "longitude" "31.5156018" "latitude" "47.1899563" "last_login" "1572622662" +HSET "user:3990" "first_name" "Ive" "last_name" "Verheijden" "email" "iverheijdenrj@furl.net" "gender" "male" "ip_address" "131.11.250.124" "country" "United States" "country_code" "US" "city" "Pasadena" "longitude" "-118.153228" "latitude" "34.1672881" "last_login" "1587590657" +HSET "user:3991" "first_name" "Orran" "last_name" "Loughhead" "email" "oloughheadrk@tinypic.com" "gender" "male" "ip_address" "8.20.254.228" "country" "Russia" "country_code" "RU" "city" "Zmeyskaya" "longitude" "44.1589834" "latitude" "43.3367832" "last_login" "1581793169" +HSET "user:3992" "first_name" "Hilario" "last_name" "Bradtke" "email" "hbradtkerl@epa.gov" "gender" "male" "ip_address" "219.205.180.78" "country" "Burkina Faso" "country_code" "BF" "city" "Ouahigouya" "longitude" "-2.4109908" "latitude" "13.5668258" "last_login" "1574472899" +HSET "user:3993" "first_name" "Zeb" "last_name" "Afield" "email" "zafieldrm@archive.org" "gender" "male" "ip_address" "182.72.82.96" "country" "Syria" "country_code" "SY" "city" "Al Qāmishlī" "longitude" "41.2282471" "latitude" "37.054943" "last_login" "1581799653" +HSET "user:3994" "first_name" "Rickie" "last_name" "Hedon" "email" "rhedonrn@washington.edu" "gender" "female" "ip_address" "99.116.182.104" "country" "China" "country_code" "CN" "city" "Zhangye" "longitude" "100.449818" "latitude" "38.925875" "last_login" "1593281667" +HSET "user:3995" "first_name" "Cozmo" "last_name" "O' Scallan" "email" "coscallanro@icio.us" "gender" "male" "ip_address" "191.62.122.244" "country" "Russia" "country_code" "RU" "city" "Kharp" "longitude" "66.4550896" "latitude" "66.6441543" "last_login" "1579215442" +HSET "user:3996" "first_name" "Madelon" "last_name" "MacLure" "email" "mmaclurerp@ow.ly" "gender" "female" "ip_address" "176.81.10.78" "country" "Ukraine" "country_code" "UA" "city" "Rozivka" "longitude" "36.9644676" "latitude" "47.4671664" "last_login" "1596273767" +HSET "user:3997" "first_name" "Hasty" "last_name" "Fedynski" "email" "hfedynskirq@vinaora.com" "gender" "male" "ip_address" "101.99.10.61" "country" "Japan" "country_code" "JP" "city" "Hitoyoshi" "longitude" "130.785523" "latitude" "32.1911268" "last_login" "1599511550" +HSET "user:3998" "first_name" "Hayward" "last_name" "Broader" "email" "hbroaderrr@uiuc.edu" "gender" "male" "ip_address" "178.207.188.245" "country" "Brazil" "country_code" "BR" "city" "Satuba" "longitude" "-35.825399" "latitude" "-9.5715752" "last_login" "1591455899" +HSET "user:3999" "first_name" "Corey" "last_name" "Medland" "email" "cmedland0@goo.gl" "gender" "male" "ip_address" "208.240.29.157" "country" "Indonesia" "country_code" "ID" "city" "Banyulegi" "longitude" "112.4455374" "latitude" "-7.316501" "last_login" "1568603731" +HSET "user:4000" "first_name" "Emogene" "last_name" "Chesnay" "email" "echesnay1@umn.edu" "gender" "female" "ip_address" "17.100.104.110" "country" "Cuba" "country_code" "CU" "city" "Bahía Honda" "longitude" "-83.1702597" "latitude" "22.9081486" "last_login" "1577325372" +HSET "user:4001" "first_name" "Justis" "last_name" "Rickson" "email" "jrickson2@patch.com" "gender" "male" "ip_address" "157.251.35.144" "country" "Brazil" "country_code" "BR" "city" "Ladário" "longitude" "-57.5977799" "latitude" "-19.009336" "last_login" "1595695829" +HSET "user:4002" "first_name" "Daune" "last_name" "Conkay" "email" "dconkay3@newyorker.com" "gender" "female" "ip_address" "250.135.79.225" "country" "Ukraine" "country_code" "UA" "city" "Svyatogorsk" "longitude" "37.578484" "latitude" "49.0440881" "last_login" "1597754041" +HSET "user:4003" "first_name" "Timi" "last_name" "Oxtarby" "email" "toxtarby4@tamu.edu" "gender" "female" "ip_address" "89.53.54.11" "country" "Yemen" "country_code" "YE" "city" "As Sayyānī" "longitude" "44.161347" "latitude" "13.8138823" "last_login" "1579755528" +HSET "user:4004" "first_name" "Rurik" "last_name" "Piborn" "email" "rpiborn5@nymag.com" "gender" "male" "ip_address" "138.200.171.91" "country" "Armenia" "country_code" "AM" "city" "Hrazdan" "longitude" "44.7695698" "latitude" "40.5353559" "last_login" "1575793185" +HSET "user:4005" "first_name" "Mohammed" "last_name" "Gill" "email" "mgill6@flickr.com" "gender" "male" "ip_address" "232.149.39.146" "country" "China" "country_code" "CN" "city" "Huangling" "longitude" "109.262961" "latitude" "35.579427" "last_login" "1576349664" +HSET "user:4006" "first_name" "Obediah" "last_name" "Denacamp" "email" "odenacamp7@prweb.com" "gender" "male" "ip_address" "224.66.229.64" "country" "China" "country_code" "CN" "city" "Tieremu" "longitude" "77.002783" "latitude" "39.119934" "last_login" "1600148512" +HSET "user:4007" "first_name" "Cindi" "last_name" "Esland" "email" "cesland8@nba.com" "gender" "female" "ip_address" "217.18.181.160" "country" "Myanmar" "country_code" "MM" "city" "Thaton" "longitude" "97.3678624" "latitude" "16.9270749" "last_login" "1574134901" +HSET "user:4008" "first_name" "Rusty" "last_name" "Kinvig" "email" "rkinvig9@a8.net" "gender" "male" "ip_address" "198.167.2.97" "country" "France" "country_code" "FR" "city" "Paris 15" "longitude" "2.2582125" "latitude" "48.8466523" "last_login" "1595051678" +HSET "user:4009" "first_name" "Letti" "last_name" "Decayette" "email" "ldecayettea@hostgator.com" "gender" "female" "ip_address" "116.69.42.140" "country" "France" "country_code" "FR" "city" "Quimper" "longitude" "-4.1020654" "latitude" "47.9962116" "last_login" "1571043526" +HSET "user:4010" "first_name" "Lawton" "last_name" "St Leger" "email" "lstlegerb@canalblog.com" "gender" "male" "ip_address" "43.92.210.201" "country" "Benin" "country_code" "BJ" "city" "Parakou" "longitude" "2.6090043" "latitude" "9.3466822" "last_login" "1582542510" +HSET "user:4011" "first_name" "Fawnia" "last_name" "Mennear" "email" "fmennearc@domainmarket.com" "gender" "female" "ip_address" "161.211.198.72" "country" "Brazil" "country_code" "BR" "city" "Viseu" "longitude" "-46.3624686" "latitude" "-1.4391409" "last_login" "1586583802" +HSET "user:4012" "first_name" "Shalom" "last_name" "Sergeant" "email" "ssergeantd@geocities.com" "gender" "male" "ip_address" "98.103.130.14" "country" "Argentina" "country_code" "AR" "city" "Pilcaniyeu" "longitude" "-62.2206382" "latitude" "-38.7418721" "last_login" "1598550929" +HSET "user:4013" "first_name" "Kathleen" "last_name" "Hengoed" "email" "khengoede@fastcompany.com" "gender" "female" "ip_address" "52.127.30.135" "country" "Nigeria" "country_code" "NG" "city" "Okpoga" "longitude" "7.8096037" "latitude" "7.0410845" "last_login" "1593942645" +HSET "user:4014" "first_name" "Tootsie" "last_name" "Roelvink" "email" "troelvinkf@mit.edu" "gender" "female" "ip_address" "243.5.71.177" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Bunia" "longitude" "30.2397336" "latitude" "1.574278" "last_login" "1589989577" +HSET "user:4015" "first_name" "Rudolfo" "last_name" "Bourdon" "email" "rbourdong@oakley.com" "gender" "male" "ip_address" "218.154.34.76" "country" "Brazil" "country_code" "BR" "city" "Niquelândia" "longitude" "-48.4560109" "latitude" "-14.4681236" "last_login" "1586850530" +HSET "user:4016" "first_name" "Gilbertine" "last_name" "Pelz" "email" "gpelzh@wunderground.com" "gender" "female" "ip_address" "133.92.157.75" "country" "Indonesia" "country_code" "ID" "city" "Sinjai" "longitude" "120.112735" "latitude" "-5.2171961" "last_login" "1584544898" +HSET "user:4017" "first_name" "Caleb" "last_name" "Glowacz" "email" "cglowaczi@columbia.edu" "gender" "male" "ip_address" "111.94.49.183" "country" "Brazil" "country_code" "BR" "city" "Panambi" "longitude" "-53.5009992" "latitude" "-28.2588438" "last_login" "1588099034" +HSET "user:4018" "first_name" "Bayard" "last_name" "Anglim" "email" "banglimj@blog.com" "gender" "male" "ip_address" "88.134.121.53" "country" "Poland" "country_code" "PL" "city" "Opatówek" "longitude" "18.2051618" "latitude" "51.7318422" "last_login" "1579057690" +HSET "user:4019" "first_name" "Krishna" "last_name" "Girt" "email" "kgirtk@cbslocal.com" "gender" "male" "ip_address" "58.48.231.202" "country" "China" "country_code" "CN" "city" "Suqiaoxiang" "longitude" "116.935849" "latitude" "28.583113" "last_login" "1594886631" +HSET "user:4020" "first_name" "Corny" "last_name" "Orkney" "email" "corkneyl@cafepress.com" "gender" "male" "ip_address" "164.75.221.16" "country" "China" "country_code" "CN" "city" "Xugu" "longitude" "111.033425" "latitude" "38.491235" "last_login" "1586077235" +HSET "user:4021" "first_name" "Trista" "last_name" "Tamburi" "email" "ttamburim@mit.edu" "gender" "female" "ip_address" "209.32.247.140" "country" "Albania" "country_code" "AL" "city" "Mesopotam" "longitude" "20.0970781" "latitude" "39.912087" "last_login" "1582082355" +HSET "user:4022" "first_name" "Payton" "last_name" "Beamand" "email" "pbeamandn@yahoo.com" "gender" "male" "ip_address" "65.204.172.168" "country" "Brazil" "country_code" "BR" "city" "Catende" "longitude" "-35.7188463" "latitude" "-8.6741659" "last_login" "1588433097" +HSET "user:4023" "first_name" "Aymer" "last_name" "Ralton" "email" "araltono@china.com.cn" "gender" "male" "ip_address" "190.82.82.22" "country" "Russia" "country_code" "RU" "city" "Gastello" "longitude" "142.9448251" "latitude" "49.1095977" "last_login" "1587657462" +HSET "user:4024" "first_name" "Dodie" "last_name" "Mitrikhin" "email" "dmitrikhinp@telegraph.co.uk" "gender" "female" "ip_address" "114.196.61.6" "country" "Slovenia" "country_code" "SI" "city" "Zabukovica" "longitude" "15.1585599" "latitude" "46.2144039" "last_login" "1592445074" +HSET "user:4025" "first_name" "Ronnie" "last_name" "McGuinness" "email" "rmcguinnessq@friendfeed.com" "gender" "male" "ip_address" "40.76.92.183" "country" "France" "country_code" "FR" "city" "Montpellier" "longitude" "3.9826826" "latitude" "43.6746011" "last_login" "1584385621" +HSET "user:4026" "first_name" "Sukey" "last_name" "Stopford" "email" "sstopfordr@rakuten.co.jp" "gender" "female" "ip_address" "153.220.28.255" "country" "Czech Republic" "country_code" "CZ" "city" "Hořice" "longitude" "16.6227158" "latitude" "49.3564315" "last_login" "1580184851" +HSET "user:4027" "first_name" "Ewell" "last_name" "Brooksby" "email" "ebrooksbys@miibeian.gov.cn" "gender" "male" "ip_address" "92.10.147.70" "country" "Georgia" "country_code" "GE" "city" "Shorapani" "longitude" "43.080345" "latitude" "42.0943874" "last_login" "1581836431" +HSET "user:4028" "first_name" "Galven" "last_name" "Battleson" "email" "gbattlesont@princeton.edu" "gender" "male" "ip_address" "94.171.28.116" "country" "Argentina" "country_code" "AR" "city" "Chorotis" "longitude" "-61.4014775" "latitude" "-27.9145782" "last_login" "1599354537" +HSET "user:4029" "first_name" "Larina" "last_name" "Blincoe" "email" "lblincoeu@slashdot.org" "gender" "female" "ip_address" "164.55.54.247" "country" "China" "country_code" "CN" "city" "Huangjiabu" "longitude" "120.965215" "latitude" "30.126539" "last_login" "1596395505" +HSET "user:4030" "first_name" "Normand" "last_name" "Dymick" "email" "ndymickv@ehow.com" "gender" "male" "ip_address" "17.245.181.242" "country" "Morocco" "country_code" "MA" "city" "Sidi Lamine" "longitude" "-6.060131" "latitude" "32.91795" "last_login" "1585177442" +HSET "user:4031" "first_name" "Daisy" "last_name" "Casier" "email" "dcasierw@cargocollective.com" "gender" "female" "ip_address" "143.84.66.189" "country" "China" "country_code" "CN" "city" "Zhongshan" "longitude" "113.39277" "latitude" "22.517585" "last_login" "1593692815" +HSET "user:4032" "first_name" "Simona" "last_name" "Scamp" "email" "sscampx@va.gov" "gender" "female" "ip_address" "223.127.197.151" "country" "Poland" "country_code" "PL" "city" "Kamieniec Ząbkowicki" "longitude" "16.8791589" "latitude" "50.5251922" "last_login" "1580938688" +HSET "user:4033" "first_name" "Germain" "last_name" "Ablett" "email" "gabletty@de.vu" "gender" "male" "ip_address" "182.128.53.158" "country" "Portugal" "country_code" "PT" "city" "Vagos" "longitude" "-8.692591" "latitude" "40.5567316" "last_login" "1579463465" +HSET "user:4034" "first_name" "Graig" "last_name" "Ruoff" "email" "gruoffz@printfriendly.com" "gender" "male" "ip_address" "29.83.175.93" "country" "China" "country_code" "CN" "city" "Guankou" "longitude" "113.641688" "latitude" "28.168791" "last_login" "1577872641" +HSET "user:4035" "first_name" "Shawna" "last_name" "Mayor" "email" "smayor10@tumblr.com" "gender" "female" "ip_address" "20.46.192.233" "country" "Czech Republic" "country_code" "CZ" "city" "Orlová" "longitude" "18.3442739" "latitude" "49.7917105" "last_login" "1592728874" +HSET "user:4036" "first_name" "Yorgos" "last_name" "Feige" "email" "yfeige11@livejournal.com" "gender" "male" "ip_address" "134.81.209.31" "country" "Indonesia" "country_code" "ID" "city" "Saseel" "longitude" "115.7604781" "latitude" "-7.0908504" "last_login" "1582987165" +HSET "user:4037" "first_name" "Carlina" "last_name" "Wigley" "email" "cwigley12@discuz.net" "gender" "female" "ip_address" "48.42.27.170" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0885223" "latitude" "59.3019771" "last_login" "1589475661" +HSET "user:4038" "first_name" "Lucila" "last_name" "La Padula" "email" "llapadula13@pinterest.com" "gender" "female" "ip_address" "228.104.216.9" "country" "Russia" "country_code" "RU" "city" "Kotlyarevskaya" "longitude" "44.06134" "latitude" "43.57344" "last_login" "1579310343" +HSET "user:4039" "first_name" "Caspar" "last_name" "Hinkensen" "email" "chinkensen14@imageshack.us" "gender" "male" "ip_address" "25.51.161.137" "country" "Greece" "country_code" "GR" "city" "Aráchova" "longitude" "22.5843667" "latitude" "38.4800003" "last_login" "1591433268" +HSET "user:4040" "first_name" "Melvin" "last_name" "Manilove" "email" "mmanilove15@who.int" "gender" "male" "ip_address" "70.162.243.162" "country" "Sweden" "country_code" "SE" "city" "Storuman" "longitude" "17.0061406" "latitude" "65.0081559" "last_login" "1598295733" +HSET "user:4041" "first_name" "Ethelred" "last_name" "Hodjetts" "email" "ehodjetts16@devhub.com" "gender" "male" "ip_address" "75.22.98.87" "country" "China" "country_code" "CN" "city" "Tuguan" "longitude" "113.265008" "latitude" "23.146358" "last_login" "1573990398" +HSET "user:4042" "first_name" "Susi" "last_name" "Shee" "email" "sshee17@linkedin.com" "gender" "female" "ip_address" "179.223.47.4" "country" "Philippines" "country_code" "PH" "city" "Loyola" "longitude" "120.998941" "latitude" "14.6131569" "last_login" "1590571657" +HSET "user:4043" "first_name" "Mae" "last_name" "Gresham" "email" "mgresham18@stanford.edu" "gender" "female" "ip_address" "190.0.4.5" "country" "Russia" "country_code" "RU" "city" "Ordynskoye" "longitude" "81.9305699" "latitude" "54.3777115" "last_login" "1581417114" +HSET "user:4044" "first_name" "Philip" "last_name" "Mungane" "email" "pmungane19@archive.org" "gender" "male" "ip_address" "184.70.211.255" "country" "Poland" "country_code" "PL" "city" "Skalbmierz" "longitude" "20.3992492" "latitude" "50.3197113" "last_login" "1591723643" +HSET "user:4045" "first_name" "Ashien" "last_name" "Stains" "email" "astains1a@disqus.com" "gender" "female" "ip_address" "121.22.191.244" "country" "France" "country_code" "FR" "city" "Annecy" "longitude" "6.121072" "latitude" "45.9018536" "last_login" "1581164003" +HSET "user:4046" "first_name" "Miguel" "last_name" "Rohlf" "email" "mrohlf1b@hc360.com" "gender" "male" "ip_address" "35.22.72.1" "country" "Canada" "country_code" "CA" "city" "Farnham" "longitude" "-72.9768148" "latitude" "45.2865242" "last_login" "1574290708" +HSET "user:4047" "first_name" "Fidelio" "last_name" "Jillitt" "email" "fjillitt1c@opera.com" "gender" "male" "ip_address" "164.54.117.182" "country" "Ukraine" "country_code" "UA" "city" "Murovanoye" "longitude" "22.937308" "latitude" "49.5216159" "last_login" "1577847613" +HSET "user:4048" "first_name" "Bernard" "last_name" "Jeromson" "email" "bjeromson1d@behance.net" "gender" "male" "ip_address" "1.66.170.124" "country" "Ukraine" "country_code" "UA" "city" "Staryy Merchyk" "longitude" "35.759315" "latitude" "49.978837" "last_login" "1574614005" +HSET "user:4049" "first_name" "Fairleigh" "last_name" "Gimlet" "email" "fgimlet1e@networkadvertising.org" "gender" "male" "ip_address" "10.47.27.5" "country" "Argentina" "country_code" "AR" "city" "Villa Mercedes" "longitude" "-58.5197163" "latitude" "-34.5926613" "last_login" "1589342405" +HSET "user:4050" "first_name" "Sissy" "last_name" "Mugleston" "email" "smugleston1f@un.org" "gender" "female" "ip_address" "200.170.78.104" "country" "China" "country_code" "CN" "city" "Qiandian" "longitude" "99.825101" "latitude" "25.984639" "last_login" "1589428905" +HSET "user:4051" "first_name" "Jenda" "last_name" "Francesch" "email" "jfrancesch1g@usgs.gov" "gender" "female" "ip_address" "56.177.142.5" "country" "China" "country_code" "CN" "city" "Jiulong" "longitude" "101.507294" "latitude" "29.000347" "last_login" "1591233417" +HSET "user:4052" "first_name" "Kath" "last_name" "Brelsford" "email" "kbrelsford1h@google.ru" "gender" "female" "ip_address" "134.213.223.125" "country" "Canada" "country_code" "CA" "city" "Waterloo" "longitude" "-72.51582" "latitude" "45.35008" "last_login" "1594392170" +HSET "user:4053" "first_name" "Jamie" "last_name" "Weadick" "email" "jweadick1i@amazon.de" "gender" "female" "ip_address" "99.234.94.197" "country" "Brazil" "country_code" "BR" "city" "Caicó" "longitude" "-37.0829593" "latitude" "-6.4696439" "last_login" "1589165094" +HSET "user:4054" "first_name" "Warner" "last_name" "Strangman" "email" "wstrangman1j@paginegialle.it" "gender" "male" "ip_address" "146.171.19.179" "country" "Mexico" "country_code" "MX" "city" "Las Animas" "longitude" "-99.0165468" "latitude" "19.2558715" "last_login" "1587712331" +HSET "user:4055" "first_name" "Anne-marie" "last_name" "Pettisall" "email" "apettisall1k@bloomberg.com" "gender" "female" "ip_address" "201.215.47.193" "country" "Poland" "country_code" "PL" "city" "Tarczyn" "longitude" "20.83374" "latitude" "51.97842" "last_login" "1600061951" +HSET "user:4056" "first_name" "Selestina" "last_name" "Croney" "email" "scroney1l@usatoday.com" "gender" "female" "ip_address" "1.67.10.182" "country" "Mexico" "country_code" "MX" "city" "La Paz" "longitude" "-110.3127531" "latitude" "24.1426408" "last_login" "1575172276" +HSET "user:4057" "first_name" "Eddi" "last_name" "Pavolillo" "email" "epavolillo1m@oracle.com" "gender" "female" "ip_address" "204.223.164.91" "country" "South Africa" "country_code" "ZA" "city" "Port Nolloth" "longitude" "17.256296" "latitude" "-28.8241753" "last_login" "1578477365" +HSET "user:4058" "first_name" "Carr" "last_name" "Frosdick" "email" "cfrosdick1n@independent.co.uk" "gender" "male" "ip_address" "87.36.49.65" "country" "Indonesia" "country_code" "ID" "city" "Sumberkemuning" "longitude" "113.8436013" "latitude" "-8.0090935" "last_login" "1599846062" +HSET "user:4059" "first_name" "Tobit" "last_name" "Birdis" "email" "tbirdis1o@wikispaces.com" "gender" "male" "ip_address" "152.202.141.198" "country" "Iran" "country_code" "IR" "city" "Bastak" "longitude" "54.3666012" "latitude" "27.198639" "last_login" "1584083538" +HSET "user:4060" "first_name" "Vinnie" "last_name" "Harman" "email" "vharman1p@jigsy.com" "gender" "female" "ip_address" "89.104.152.87" "country" "Japan" "country_code" "JP" "city" "Asahikawa" "longitude" "127.9536808" "latitude" "26.6155575" "last_login" "1600039486" +HSET "user:4061" "first_name" "Zedekiah" "last_name" "Orhrt" "email" "zorhrt1q@php.net" "gender" "male" "ip_address" "212.72.222.70" "country" "Mongolia" "country_code" "MN" "city" "Bayan" "longitude" "107.5408308" "latitude" "47.2495437" "last_login" "1590458311" +HSET "user:4062" "first_name" "Jobina" "last_name" "Maybury" "email" "jmaybury1r@bandcamp.com" "gender" "female" "ip_address" "215.108.160.251" "country" "China" "country_code" "CN" "city" "Shanghang" "longitude" "116.420098" "latitude" "25.049518" "last_login" "1583400317" +HSET "user:4063" "first_name" "Tyrus" "last_name" "Ellerton" "email" "tellerton1s@comcast.net" "gender" "male" "ip_address" "11.17.212.132" "country" "Portugal" "country_code" "PT" "city" "Quintas" "longitude" "-8.504234" "latitude" "41.6716076" "last_login" "1596162328" +HSET "user:4064" "first_name" "Thelma" "last_name" "Nulty" "email" "tnulty1t@si.edu" "gender" "female" "ip_address" "97.69.214.21" "country" "China" "country_code" "CN" "city" "Zhongxin" "longitude" "16.3587247" "latitude" "48.1973404" "last_login" "1583543379" +HSET "user:4065" "first_name" "Tiffani" "last_name" "Buyers" "email" "tbuyers1u@devhub.com" "gender" "female" "ip_address" "204.185.94.203" "country" "Ukraine" "country_code" "UA" "city" "Nuyno" "longitude" "24.8942909" "latitude" "51.5363109" "last_login" "1597495942" +HSET "user:4066" "first_name" "Jacobo" "last_name" "Jenkison" "email" "jjenkison1v@yelp.com" "gender" "male" "ip_address" "56.118.195.3" "country" "Russia" "country_code" "RU" "city" "Petrokamenskoye" "longitude" "60.6484" "latitude" "57.716" "last_login" "1589157325" +HSET "user:4067" "first_name" "Star" "last_name" "Borlease" "email" "sborlease1w@cbc.ca" "gender" "female" "ip_address" "116.49.181.81" "country" "Albania" "country_code" "AL" "city" "Elbasan" "longitude" "20.0866554" "latitude" "41.11023" "last_login" "1585859984" +HSET "user:4068" "first_name" "Florenza" "last_name" "Shacklady" "email" "fshacklady1x@diigo.com" "gender" "female" "ip_address" "5.210.90.51" "country" "Portugal" "country_code" "PT" "city" "Corredoura" "longitude" "-9.1065809" "latitude" "38.4576605" "last_login" "1577161962" +HSET "user:4069" "first_name" "Jana" "last_name" "Breward" "email" "jbreward1y@theglobeandmail.com" "gender" "female" "ip_address" "190.201.78.54" "country" "Saint Pierre and Miquelon" "country_code" "PM" "city" "Saint-Pierre" "longitude" "-56.173126" "latitude" "46.779204" "last_login" "1583893146" +HSET "user:4070" "first_name" "Nannette" "last_name" "Dunwoody" "email" "ndunwoody1z@istockphoto.com" "gender" "female" "ip_address" "121.111.244.184" "country" "Poland" "country_code" "PL" "city" "Górki Wielkie" "longitude" "18.8445446" "latitude" "49.7709142" "last_login" "1585456069" +HSET "user:4071" "first_name" "Giacomo" "last_name" "Puttan" "email" "gputtan20@europa.eu" "gender" "male" "ip_address" "205.12.137.85" "country" "France" "country_code" "FR" "city" "Laval" "longitude" "-0.7609009" "latitude" "48.0762327" "last_login" "1599689016" +HSET "user:4072" "first_name" "Cyndy" "last_name" "Redgewell" "email" "credgewell21@linkedin.com" "gender" "female" "ip_address" "80.5.230.208" "country" "Canada" "country_code" "CA" "city" "Beaverlodge" "longitude" "-119.43605" "latitude" "55.21664" "last_login" "1586339962" +HSET "user:4073" "first_name" "Goddart" "last_name" "Bannerman" "email" "gbannerman22@china.com.cn" "gender" "male" "ip_address" "171.23.224.14" "country" "Colombia" "country_code" "CO" "city" "Mistrató" "longitude" "-76.01598" "latitude" "5.459089" "last_login" "1589619555" +HSET "user:4074" "first_name" "Kin" "last_name" "Dow" "email" "kdow23@yandex.ru" "gender" "male" "ip_address" "106.12.199.133" "country" "China" "country_code" "CN" "city" "Dalongdong" "longitude" "121.5140449" "latitude" "25.073688" "last_login" "1582683994" +HSET "user:4075" "first_name" "Sallyanne" "last_name" "Shayler" "email" "sshayler24@answers.com" "gender" "female" "ip_address" "201.55.243.255" "country" "Indonesia" "country_code" "ID" "city" "Gesikan" "longitude" "109.6922026" "latitude" "-7.7090989" "last_login" "1576096141" +HSET "user:4076" "first_name" "Christa" "last_name" "Lote" "email" "clote25@wix.com" "gender" "female" "ip_address" "139.158.192.82" "country" "Mexico" "country_code" "MX" "city" "Fernando Gutierrez Barrios" "longitude" "-97.3401785" "latitude" "20.4360818" "last_login" "1597947663" +HSET "user:4077" "first_name" "Garvin" "last_name" "Etchingham" "email" "getchingham26@cdc.gov" "gender" "male" "ip_address" "214.36.36.187" "country" "Poland" "country_code" "PL" "city" "Karpacz" "longitude" "15.702767" "latitude" "50.749001" "last_login" "1577091630" +HSET "user:4078" "first_name" "Akim" "last_name" "Yarnold" "email" "ayarnold27@netvibes.com" "gender" "male" "ip_address" "43.151.82.63" "country" "Croatia" "country_code" "HR" "city" "Jagodnjak" "longitude" "18.5702566" "latitude" "45.6747796" "last_login" "1582127732" +HSET "user:4079" "first_name" "Van" "last_name" "Springell" "email" "vspringell28@europa.eu" "gender" "female" "ip_address" "85.20.220.187" "country" "China" "country_code" "CN" "city" "Shinaihai" "longitude" "99.598035" "latitude" "36.994225" "last_login" "1576346071" +HSET "user:4080" "first_name" "Elnar" "last_name" "Grinston" "email" "egrinston29@storify.com" "gender" "male" "ip_address" "127.251.145.210" "country" "Russia" "country_code" "RU" "city" "Gazimurskiy Zavod" "longitude" "118.3446" "latitude" "51.55352" "last_login" "1599149059" +HSET "user:4081" "first_name" "Gertruda" "last_name" "todor" "email" "gtodor2a@independent.co.uk" "gender" "female" "ip_address" "11.166.131.245" "country" "Philippines" "country_code" "PH" "city" "Piña" "longitude" "121.0702405" "latitude" "14.578621" "last_login" "1585328765" +HSET "user:4082" "first_name" "Pearl" "last_name" "Garrood" "email" "pgarrood2b@ca.gov" "gender" "female" "ip_address" "25.71.43.202" "country" "China" "country_code" "CN" "city" "Liangli" "longitude" "115.9811735" "latitude" "32.9187879" "last_login" "1584542507" +HSET "user:4083" "first_name" "Clarice" "last_name" "Lambirth" "email" "clambirth2c@google.com.au" "gender" "female" "ip_address" "2.203.61.26" "country" "Russia" "country_code" "RU" "city" "Kabakovo" "longitude" "36.885813" "latitude" "56.6342788" "last_login" "1598247940" +HSET "user:4084" "first_name" "Mathilda" "last_name" "Franchi" "email" "mfranchi2d@jiathis.com" "gender" "female" "ip_address" "148.60.235.69" "country" "Costa Rica" "country_code" "CR" "city" "San Isidro" "longitude" "-83.7145811" "latitude" "9.3607067" "last_login" "1594812893" +HSET "user:4085" "first_name" "Yolanda" "last_name" "Meekings" "email" "ymeekings2e@google.co.jp" "gender" "female" "ip_address" "236.203.14.63" "country" "Russia" "country_code" "RU" "city" "Ordzhonikidzevskaya" "longitude" "45.044839" "latitude" "43.3213308" "last_login" "1583294120" +HSET "user:4086" "first_name" "Delmer" "last_name" "MacGray" "email" "dmacgray2f@tmall.com" "gender" "male" "ip_address" "112.121.202.52" "country" "Uganda" "country_code" "UG" "city" "Kamuli" "longitude" "33.126717" "latitude" "0.944785" "last_login" "1591900370" +HSET "user:4087" "first_name" "Lazarus" "last_name" "Vivyan" "email" "lvivyan2g@huffingtonpost.com" "gender" "male" "ip_address" "218.244.132.214" "country" "China" "country_code" "CN" "city" "Yueyang" "longitude" "113.12873" "latitude" "29.356803" "last_login" "1595030337" +HSET "user:4088" "first_name" "Agosto" "last_name" "Justice" "email" "ajustice2h@thetimes.co.uk" "gender" "male" "ip_address" "8.71.254.130" "country" "China" "country_code" "CN" "city" "Xiongjia" "longitude" "111.675265" "latitude" "25.648962" "last_login" "1578536974" +HSET "user:4089" "first_name" "Abran" "last_name" "Diwell" "email" "adiwell2i@deliciousdays.com" "gender" "male" "ip_address" "134.48.19.187" "country" "Japan" "country_code" "JP" "city" "Mibu" "longitude" "132.5509347" "latitude" "34.6796489" "last_login" "1577777312" +HSET "user:4090" "first_name" "Malanie" "last_name" "Geyton" "email" "mgeyton2j@pcworld.com" "gender" "female" "ip_address" "220.16.226.253" "country" "United States" "country_code" "US" "city" "New York City" "longitude" "-73.9681265" "latitude" "40.7608571" "last_login" "1573314468" +HSET "user:4091" "first_name" "Granny" "last_name" "Kleeman" "email" "gkleeman2k@umich.edu" "gender" "male" "ip_address" "224.71.167.248" "country" "China" "country_code" "CN" "city" "Qianfoling" "longitude" "112.341117" "latitude" "27.33699" "last_login" "1586671502" +HSET "user:4092" "first_name" "Randell" "last_name" "Ethridge" "email" "rethridge2l@whitehouse.gov" "gender" "male" "ip_address" "243.10.168.51" "country" "China" "country_code" "CN" "city" "Qukou" "longitude" "116.251947" "latitude" "29.731101" "last_login" "1590389185" +HSET "user:4093" "first_name" "Marchelle" "last_name" "Buxsy" "email" "mbuxsy2m@bigcartel.com" "gender" "female" "ip_address" "230.197.97.134" "country" "Indonesia" "country_code" "ID" "city" "Cemara" "longitude" "106.8274787" "latitude" "-6.1874721" "last_login" "1588072956" +HSET "user:4094" "first_name" "Marianna" "last_name" "Jearum" "email" "mjearum2n@wix.com" "gender" "female" "ip_address" "177.221.10.192" "country" "Poland" "country_code" "PL" "city" "Koszyce Wielkie" "longitude" "20.9421091" "latitude" "49.9776657" "last_login" "1600166027" +HSET "user:4095" "first_name" "De witt" "last_name" "Currin" "email" "dcurrin2o@cbslocal.com" "gender" "male" "ip_address" "195.124.227.83" "country" "Mexico" "country_code" "MX" "city" "Francisco Villa" "longitude" "-99.0591821" "latitude" "19.3376878" "last_login" "1570012908" +HSET "user:4096" "first_name" "Talyah" "last_name" "Liggett" "email" "tliggett2p@hibu.com" "gender" "female" "ip_address" "91.216.69.123" "country" "Philippines" "country_code" "PH" "city" "Libog" "longitude" "123.7750159" "latitude" "13.2409585" "last_login" "1572699606" +HSET "user:4097" "first_name" "Loy" "last_name" "Thomasen" "email" "lthomasen2q@ask.com" "gender" "male" "ip_address" "55.226.22.134" "country" "Serbia" "country_code" "RS" "city" "Zrenjanin" "longitude" "20.3685737" "latitude" "45.3815612" "last_login" "1591599816" +HSET "user:4098" "first_name" "Kinny" "last_name" "Haile" "email" "khaile2r@exblog.jp" "gender" "male" "ip_address" "50.176.19.76" "country" "Argentina" "country_code" "AR" "city" "San Nicolás de los Arroyos" "longitude" "-60.1976374" "latitude" "-33.3672731" "last_login" "1592933982" +HSET "user:4099" "first_name" "Peggi" "last_name" "Quinnette" "email" "pquinnette2s@yolasite.com" "gender" "female" "ip_address" "83.98.151.11" "country" "Serbia" "country_code" "RS" "city" "Begejci" "longitude" "20.6465628" "latitude" "45.4912891" "last_login" "1593289776" +HSET "user:4100" "first_name" "Bartlett" "last_name" "Lockton" "email" "blockton2t@economist.com" "gender" "male" "ip_address" "125.91.162.168" "country" "Montserrat" "country_code" "MS" "city" "Brades" "longitude" "-62.2106241" "latitude" "16.7909044" "last_login" "1594368707" +HSET "user:4101" "first_name" "Blakeley" "last_name" "Lackey" "email" "blackey2u@csmonitor.com" "gender" "female" "ip_address" "181.57.191.32" "country" "China" "country_code" "CN" "city" "Hezhi" "longitude" "111.862117" "latitude" "39.105787" "last_login" "1598596668" +HSET "user:4102" "first_name" "Raven" "last_name" "Fery" "email" "rfery2v@home.pl" "gender" "female" "ip_address" "114.130.158.147" "country" "China" "country_code" "CN" "city" "Huaping" "longitude" "101.266195" "latitude" "26.629211" "last_login" "1592880427" +HSET "user:4103" "first_name" "Lilly" "last_name" "Gristock" "email" "lgristock2w@bbc.co.uk" "gender" "female" "ip_address" "215.87.26.213" "country" "Peru" "country_code" "PE" "city" "Urpay" "longitude" "-77.3895014" "latitude" "-8.3478186" "last_login" "1598101250" +HSET "user:4104" "first_name" "Forbes" "last_name" "Schaumann" "email" "fschaumann2x@arstechnica.com" "gender" "male" "ip_address" "226.136.11.21" "country" "China" "country_code" "CN" "city" "Baishuitan" "longitude" "110.464464" "latitude" "28.998299" "last_login" "1573199537" +HSET "user:4105" "first_name" "Hector" "last_name" "Wedgwood" "email" "hwedgwood2y@ameblo.jp" "gender" "male" "ip_address" "89.64.111.254" "country" "Russia" "country_code" "RU" "city" "Lyamino" "longitude" "57.6968252" "latitude" "58.295323" "last_login" "1595359402" +HSET "user:4106" "first_name" "Gabie" "last_name" "MacCorley" "email" "gmaccorley2z@reuters.com" "gender" "male" "ip_address" "74.121.7.168" "country" "Venezuela" "country_code" "VE" "city" "Ciudad Guayana" "longitude" "-62.6496813" "latitude" "8.3663119" "last_login" "1574897435" +HSET "user:4107" "first_name" "Bendicty" "last_name" "Gilbody" "email" "bgilbody30@about.com" "gender" "male" "ip_address" "25.67.133.202" "country" "Indonesia" "country_code" "ID" "city" "Cibodas" "longitude" "106.5996595" "latitude" "-6.1989828" "last_login" "1594573068" +HSET "user:4108" "first_name" "Kip" "last_name" "Tidswell" "email" "ktidswell31@unc.edu" "gender" "male" "ip_address" "194.187.191.114" "country" "Philippines" "country_code" "PH" "city" "Bani" "longitude" "119.8572781" "latitude" "16.1779407" "last_login" "1592458840" +HSET "user:4109" "first_name" "Ardra" "last_name" "Ranyell" "email" "aranyell32@symantec.com" "gender" "female" "ip_address" "205.71.34.131" "country" "Russia" "country_code" "RU" "city" "Verkhoshizhem’ye" "longitude" "49.104418" "latitude" "58.0098083" "last_login" "1596608214" +HSET "user:4110" "first_name" "Benoit" "last_name" "Stretton" "email" "bstretton33@nature.com" "gender" "male" "ip_address" "50.75.11.170" "country" "Brazil" "country_code" "BR" "city" "Osvaldo Cruz" "longitude" "-50.879763" "latitude" "-21.7972251" "last_login" "1592595743" +HSET "user:4111" "first_name" "Courtnay" "last_name" "Howgego" "email" "chowgego34@zimbio.com" "gender" "female" "ip_address" "148.236.71.84" "country" "China" "country_code" "CN" "city" "Qiangtou" "longitude" "103.506415" "latitude" "35.547715" "last_login" "1576206464" +HSET "user:4112" "first_name" "Althea" "last_name" "Oliff" "email" "aoliff35@blogger.com" "gender" "female" "ip_address" "127.53.38.65" "country" "Thailand" "country_code" "TH" "city" "Srinagarindra" "longitude" "100.6461557" "latitude" "13.7051354" "last_login" "1586426981" +HSET "user:4113" "first_name" "Demeter" "last_name" "Yashin" "email" "dyashin36@list-manage.com" "gender" "female" "ip_address" "50.64.249.249" "country" "Brazil" "country_code" "BR" "city" "Paraguaçu" "longitude" "-45.7142063" "latitude" "-21.5679739" "last_login" "1576242527" +HSET "user:4114" "first_name" "Laurence" "last_name" "Greenin" "email" "lgreenin37@accuweather.com" "gender" "male" "ip_address" "169.203.192.147" "country" "Greece" "country_code" "GR" "city" "Chrysoúpolis" "longitude" "24.6966476" "latitude" "40.9880227" "last_login" "1570296236" +HSET "user:4115" "first_name" "Valeda" "last_name" "Casement" "email" "vcasement38@washingtonpost.com" "gender" "female" "ip_address" "212.48.167.77" "country" "Indonesia" "country_code" "ID" "city" "Sukamaju" "longitude" "106.8502879" "latitude" "-6.4185424" "last_login" "1585102107" +HSET "user:4116" "first_name" "Salomi" "last_name" "Ram" "email" "sram39@sourceforge.net" "gender" "female" "ip_address" "139.0.247.239" "country" "Russia" "country_code" "RU" "city" "Volokolamsk" "longitude" "35.9510395" "latitude" "56.0349544" "last_login" "1589762053" +HSET "user:4117" "first_name" "Leone" "last_name" "Bugdell" "email" "lbugdell3a@tumblr.com" "gender" "female" "ip_address" "159.50.167.27" "country" "Norway" "country_code" "NO" "city" "Hafrsfjord" "longitude" "5.7326598" "latitude" "58.960787" "last_login" "1596192086" +HSET "user:4118" "first_name" "Rawley" "last_name" "Harnett" "email" "rharnett3b@fema.gov" "gender" "male" "ip_address" "132.89.223.155" "country" "China" "country_code" "CN" "city" "Xiaheqing" "longitude" "98.981746" "latitude" "39.553172" "last_login" "1587638297" +HSET "user:4119" "first_name" "Marven" "last_name" "Lingard" "email" "mlingard3c@ebay.co.uk" "gender" "male" "ip_address" "182.235.170.249" "country" "China" "country_code" "CN" "city" "Cangzhou" "longitude" "116.838834" "latitude" "38.304477" "last_login" "1597200965" +HSET "user:4120" "first_name" "Vladimir" "last_name" "Tyzack" "email" "vtyzack3d@google.de" "gender" "male" "ip_address" "174.191.101.55" "country" "Equatorial Guinea" "country_code" "GQ" "city" "Bitica" "longitude" "9.6216084" "latitude" "1.4243635" "last_login" "1598922701" +HSET "user:4121" "first_name" "Eberto" "last_name" "Oke" "email" "eoke3e@jalbum.net" "gender" "male" "ip_address" "149.147.229.191" "country" "Peru" "country_code" "PE" "city" "La Curva" "longitude" "-71.8230371" "latitude" "-17.1406793" "last_login" "1570918130" +HSET "user:4122" "first_name" "Salomon" "last_name" "Gianetti" "email" "sgianetti3f@nps.gov" "gender" "male" "ip_address" "202.176.71.127" "country" "Indonesia" "country_code" "ID" "city" "Kembangkerang Satu" "longitude" "116.5377213" "latitude" "-8.5575745" "last_login" "1586544027" +HSET "user:4123" "first_name" "Andras" "last_name" "Maulden" "email" "amaulden3g@slashdot.org" "gender" "male" "ip_address" "194.190.232.31" "country" "Russia" "country_code" "RU" "city" "Khelyulya" "longitude" "30.6676956" "latitude" "61.750154" "last_login" "1572863164" +HSET "user:4124" "first_name" "Howey" "last_name" "Upward" "email" "hupward3h@wired.com" "gender" "male" "ip_address" "170.236.209.161" "country" "France" "country_code" "FR" "city" "Cluses" "longitude" "6.568907" "latitude" "46.068811" "last_login" "1571879348" +HSET "user:4125" "first_name" "Edie" "last_name" "O'Riordan" "email" "eoriordan3i@loc.gov" "gender" "female" "ip_address" "166.136.99.14" "country" "Philippines" "country_code" "PH" "city" "Esperanza" "longitude" "121.0702642" "latitude" "14.7342524" "last_login" "1578340306" +HSET "user:4126" "first_name" "Nichol" "last_name" "Sommersett" "email" "nsommersett3j@sourceforge.net" "gender" "female" "ip_address" "20.49.205.194" "country" "China" "country_code" "CN" "city" "Shiyan" "longitude" "110.798266" "latitude" "32.629398" "last_login" "1575285347" +HSET "user:4127" "first_name" "Dee" "last_name" "Winpenny" "email" "dwinpenny3k@sciencedaily.com" "gender" "female" "ip_address" "100.44.240.3" "country" "France" "country_code" "FR" "city" "Bobigny" "longitude" "2.8898334" "latitude" "49.4648362" "last_login" "1594663823" +HSET "user:4128" "first_name" "Dania" "last_name" "Larive" "email" "dlarive3l@biblegateway.com" "gender" "female" "ip_address" "234.169.204.237" "country" "China" "country_code" "CN" "city" "Liulin" "longitude" "110.88907" "latitude" "37.429832" "last_login" "1592589594" +HSET "user:4129" "first_name" "Lancelot" "last_name" "Ricciardi" "email" "lricciardi3m@mapquest.com" "gender" "male" "ip_address" "108.126.35.217" "country" "Greece" "country_code" "GR" "city" "Patrída" "longitude" "22.1857013" "latitude" "40.561598" "last_login" "1575597887" +HSET "user:4130" "first_name" "Dierdre" "last_name" "Vyse" "email" "dvyse3n@fc2.com" "gender" "female" "ip_address" "165.169.23.14" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Phước Bửu" "longitude" "107.4055814" "latitude" "10.5353285" "last_login" "1586183298" +HSET "user:4131" "first_name" "Miles" "last_name" "Banford" "email" "mbanford3o@shutterfly.com" "gender" "male" "ip_address" "50.106.116.159" "country" "Ukraine" "country_code" "UA" "city" "Kamennyye Potoki" "longitude" "33.52638" "latitude" "48.97974" "last_login" "1587115497" +HSET "user:4132" "first_name" "Meta" "last_name" "Geikie" "email" "mgeikie3p@spiegel.de" "gender" "female" "ip_address" "96.73.37.127" "country" "Japan" "country_code" "JP" "city" "Maizuru" "longitude" "130.3917496" "latitude" "33.5914293" "last_login" "1578686515" +HSET "user:4133" "first_name" "Corie" "last_name" "Breeze" "email" "cbreeze3q@over-blog.com" "gender" "female" "ip_address" "151.121.140.126" "country" "Portugal" "country_code" "PT" "city" "São Bento" "longitude" "-8.3509957" "latitude" "41.707342" "last_login" "1575286847" +HSET "user:4134" "first_name" "Collete" "last_name" "Ashbey" "email" "cashbey3r@purevolume.com" "gender" "female" "ip_address" "171.230.39.72" "country" "Indonesia" "country_code" "ID" "city" "Belang" "longitude" "124.7851264" "latitude" "0.9718896" "last_login" "1581589899" +HSET "user:4135" "first_name" "Welbie" "last_name" "Manchett" "email" "wmanchett3s@cloudflare.com" "gender" "male" "ip_address" "50.92.188.214" "country" "Syria" "country_code" "SY" "city" "Tādif" "longitude" "37.5347993" "latitude" "36.3489618" "last_login" "1595065343" +HSET "user:4136" "first_name" "Laird" "last_name" "Ostler" "email" "lostler3t@biblegateway.com" "gender" "male" "ip_address" "47.127.211.178" "country" "Azerbaijan" "country_code" "AZ" "city" "Basqal" "longitude" "48.4033184" "latitude" "40.7513017" "last_login" "1594243249" +HSET "user:4137" "first_name" "Darlene" "last_name" "Moneypenny" "email" "dmoneypenny3u@macromedia.com" "gender" "female" "ip_address" "50.129.227.16" "country" "China" "country_code" "CN" "city" "Yingtan" "longitude" "117.069202" "latitude" "28.260189" "last_login" "1591406098" +HSET "user:4138" "first_name" "Nevin" "last_name" "Blaker" "email" "nblaker3v@forbes.com" "gender" "male" "ip_address" "193.110.11.89" "country" "Brazil" "country_code" "BR" "city" "Pomerode" "longitude" "-49.1743626" "latitude" "-26.7376205" "last_login" "1582003122" +HSET "user:4139" "first_name" "Meredithe" "last_name" "Quant" "email" "mquant3w@soup.io" "gender" "female" "ip_address" "130.88.117.139" "country" "Indonesia" "country_code" "ID" "city" "Dajanrurung" "longitude" "114.8899" "latitude" "-8.2015" "last_login" "1586673442" +HSET "user:4140" "first_name" "Julienne" "last_name" "Spyby" "email" "jspyby3x@bravesites.com" "gender" "female" "ip_address" "59.116.164.188" "country" "Mongolia" "country_code" "MN" "city" "Kharkhorin" "longitude" "102.8340449" "latitude" "47.1900322" "last_login" "1572464423" +HSET "user:4141" "first_name" "Leodora" "last_name" "Fenty" "email" "lfenty3y@utexas.edu" "gender" "female" "ip_address" "190.141.93.4" "country" "Greece" "country_code" "GR" "city" "Náousa" "longitude" "22.0688549" "latitude" "40.6294406" "last_login" "1597571512" +HSET "user:4142" "first_name" "Purcell" "last_name" "Pietrzak" "email" "ppietrzak3z@over-blog.com" "gender" "male" "ip_address" "124.119.240.162" "country" "Ukraine" "country_code" "UA" "city" "Syevyerodonets’k" "longitude" "38.4878774" "latitude" "48.9481767" "last_login" "1577444650" +HSET "user:4143" "first_name" "Indira" "last_name" "Kinglake" "email" "ikinglake40@imgur.com" "gender" "female" "ip_address" "12.51.211.163" "country" "Philippines" "country_code" "PH" "city" "Guyam Malaki" "longitude" "120.8612609" "latitude" "14.1526544" "last_login" "1568625357" +HSET "user:4144" "first_name" "Borden" "last_name" "Hamber" "email" "bhamber41@china.com.cn" "gender" "male" "ip_address" "124.244.50.77" "country" "Indonesia" "country_code" "ID" "city" "Kadurahayu" "longitude" "106.1286901" "latitude" "-6.5633157" "last_login" "1591010382" +HSET "user:4145" "first_name" "Cissiee" "last_name" "de Chastelain" "email" "cdechastelain42@zdnet.com" "gender" "female" "ip_address" "29.111.78.251" "country" "Colombia" "country_code" "CO" "city" "Cocorná" "longitude" "-75.185598" "latitude" "6.057265" "last_login" "1580930689" +HSET "user:4146" "first_name" "Bail" "last_name" "Bollis" "email" "bbollis43@china.com.cn" "gender" "male" "ip_address" "3.185.28.165" "country" "Nigeria" "country_code" "NG" "city" "Ikeja" "longitude" "3.3514863" "latitude" "6.601838" "last_login" "1599544887" +HSET "user:4147" "first_name" "Claudian" "last_name" "Eleshenar" "email" "celeshenar44@parallels.com" "gender" "male" "ip_address" "245.165.221.179" "country" "Japan" "country_code" "JP" "city" "Utsunomiya-shi" "longitude" "139.8816085" "latitude" "36.6493964" "last_login" "1592269696" +HSET "user:4148" "first_name" "Ardisj" "last_name" "Pedreschi" "email" "apedreschi45@go.com" "gender" "female" "ip_address" "121.77.240.241" "country" "China" "country_code" "CN" "city" "Yangmaogong" "longitude" "87.592379" "latitude" "44.142359" "last_login" "1594499019" +HSET "user:4149" "first_name" "Alfonse" "last_name" "Rabson" "email" "arabson46@dyndns.org" "gender" "male" "ip_address" "42.235.51.94" "country" "Macedonia" "country_code" "MK" "city" "Могила" "longitude" "21.3788215" "latitude" "41.107701" "last_login" "1582813844" +HSET "user:4150" "first_name" "Claiborn" "last_name" "Petegree" "email" "cpetegree47@trellian.com" "gender" "male" "ip_address" "214.237.109.11" "country" "South Africa" "country_code" "ZA" "city" "Roodepoort" "longitude" "27.8252814" "latitude" "-26.1631828" "last_login" "1571300636" +HSET "user:4151" "first_name" "Polly" "last_name" "Roskrug" "email" "proskrug48@wikimedia.org" "gender" "female" "ip_address" "107.214.243.202" "country" "Portugal" "country_code" "PT" "city" "Barrosas" "longitude" "-8.2519171" "latitude" "41.3395549" "last_login" "1572554992" +HSET "user:4152" "first_name" "Domini" "last_name" "Feitosa" "email" "dfeitosa49@php.net" "gender" "female" "ip_address" "145.185.105.6" "country" "China" "country_code" "CN" "city" "Hengdian" "longitude" "120.3168231" "latitude" "29.1520649" "last_login" "1577741447" +HSET "user:4153" "first_name" "Atlanta" "last_name" "Kacheler" "email" "akacheler4a@issuu.com" "gender" "female" "ip_address" "23.109.81.172" "country" "China" "country_code" "CN" "city" "Qinghe" "longitude" "115.667208" "latitude" "37.039991" "last_login" "1587488622" +HSET "user:4154" "first_name" "Terence" "last_name" "Pass" "email" "tpass4b@webnode.com" "gender" "male" "ip_address" "149.208.150.158" "country" "Colombia" "country_code" "CO" "city" "Melgar" "longitude" "-74.643383" "latitude" "4.203572" "last_login" "1581367272" +HSET "user:4155" "first_name" "Tedman" "last_name" "Mereweather" "email" "tmereweather4c@yandex.ru" "gender" "male" "ip_address" "254.128.79.147" "country" "China" "country_code" "CN" "city" "Heping" "longitude" "114.938684" "latitude" "24.44218" "last_login" "1579879581" +HSET "user:4156" "first_name" "Ollie" "last_name" "Brooksby" "email" "obrooksby4d@amazon.co.uk" "gender" "male" "ip_address" "90.204.42.102" "country" "Georgia" "country_code" "GE" "city" "Gulrip’shi" "longitude" "41.1062184" "latitude" "42.9314238" "last_login" "1592151372" +HSET "user:4157" "first_name" "Forster" "last_name" "Dickey" "email" "fdickey4e@altervista.org" "gender" "male" "ip_address" "72.9.49.196" "country" "China" "country_code" "CN" "city" "Chenhu" "longitude" "104.066801" "latitude" "30.572815" "last_login" "1584987496" +HSET "user:4158" "first_name" "Barton" "last_name" "MacShirie" "email" "bmacshirie4f@godaddy.com" "gender" "male" "ip_address" "236.66.238.63" "country" "Mongolia" "country_code" "MN" "city" "Jargalant" "longitude" "100.7724281" "latitude" "48.7277622" "last_login" "1574556061" +HSET "user:4159" "first_name" "Gordon" "last_name" "Crim" "email" "gcrim4g@nps.gov" "gender" "male" "ip_address" "100.77.235.91" "country" "Peru" "country_code" "PE" "city" "Leticia" "longitude" "-75.7560455" "latitude" "-11.3826999" "last_login" "1575853401" +HSET "user:4160" "first_name" "Celestine" "last_name" "Geck" "email" "cgeck4h@bandcamp.com" "gender" "female" "ip_address" "74.3.25.226" "country" "Argentina" "country_code" "AR" "city" "Villa Carlos Paz" "longitude" "-64.485902" "latitude" "-31.413822" "last_login" "1579885444" +HSET "user:4161" "first_name" "Virgina" "last_name" "Sinfield" "email" "vsinfield4i@angelfire.com" "gender" "female" "ip_address" "64.119.91.131" "country" "Japan" "country_code" "JP" "city" "Kanoya" "longitude" "139.8816085" "latitude" "36.6493964" "last_login" "1590066077" +HSET "user:4162" "first_name" "Carl" "last_name" "Deards" "email" "cdeards4j@bing.com" "gender" "male" "ip_address" "177.155.92.162" "country" "China" "country_code" "CN" "city" "Qijiawan" "longitude" "118.803753" "latitude" "32.047749" "last_login" "1579923145" +HSET "user:4163" "first_name" "Nessie" "last_name" "Mewe" "email" "nmewe4k@printfriendly.com" "gender" "female" "ip_address" "158.13.104.204" "country" "Jordan" "country_code" "JO" "city" "Jāwā" "longitude" "35.936274" "latitude" "31.8577642" "last_login" "1583442037" +HSET "user:4164" "first_name" "Jewel" "last_name" "Cassey" "email" "jcassey4l@blogs.com" "gender" "female" "ip_address" "162.137.43.98" "country" "Japan" "country_code" "JP" "city" "Uwajima" "longitude" "132.6146565" "latitude" "33.24846" "last_login" "1578001957" +HSET "user:4165" "first_name" "Demott" "last_name" "Autrie" "email" "dautrie4m@github.io" "gender" "male" "ip_address" "21.71.121.236" "country" "Yemen" "country_code" "YE" "city" "Az̧ Z̧alī‘ah" "longitude" "48.01667" "latitude" "15.01667" "last_login" "1596848096" +HSET "user:4166" "first_name" "Jemmie" "last_name" "Pane" "email" "jpane4n@intel.com" "gender" "female" "ip_address" "140.23.70.115" "country" "China" "country_code" "CN" "city" "Zhenxi" "longitude" "117.47637" "latitude" "30.356669" "last_login" "1587427903" +HSET "user:4167" "first_name" "Cora" "last_name" "Annesley" "email" "cannesley4o@imageshack.us" "gender" "female" "ip_address" "219.198.145.164" "country" "China" "country_code" "CN" "city" "Zhouzhuang" "longitude" "120.839842" "latitude" "31.129098" "last_login" "1581662985" +HSET "user:4168" "first_name" "Grange" "last_name" "Allcroft" "email" "gallcroft4p@symantec.com" "gender" "male" "ip_address" "202.250.160.184" "country" "France" "country_code" "FR" "city" "Bonneville" "longitude" "-0.8937702" "latitude" "46.2983568" "last_login" "1584032018" +HSET "user:4169" "first_name" "Jacintha" "last_name" "Larner" "email" "jlarner4q@hostgator.com" "gender" "female" "ip_address" "158.140.175.234" "country" "Japan" "country_code" "JP" "city" "Takanabe" "longitude" "131.4937793" "latitude" "32.0550488" "last_login" "1570341954" +HSET "user:4170" "first_name" "Lyndell" "last_name" "Wrathall" "email" "lwrathall4r@e-recht24.de" "gender" "female" "ip_address" "96.234.89.28" "country" "Estonia" "country_code" "EE" "city" "Tabasalu" "longitude" "24.5475697" "latitude" "59.4294432" "last_login" "1570879991" +HSET "user:4171" "first_name" "Catlaina" "last_name" "Proswell" "email" "cproswell4s@acquirethisname.com" "gender" "female" "ip_address" "113.180.75.28" "country" "South Korea" "country_code" "KR" "city" "Guri-si" "longitude" "127.1295646" "latitude" "37.5943124" "last_login" "1598238617" +HSET "user:4172" "first_name" "Griswold" "last_name" "Gerrets" "email" "ggerrets4t@europa.eu" "gender" "male" "ip_address" "157.235.42.0" "country" "Brazil" "country_code" "BR" "city" "Itararé" "longitude" "-49.3356859" "latitude" "-24.1089373" "last_login" "1581235541" +HSET "user:4173" "first_name" "Euell" "last_name" "Teml" "email" "eteml4u@upenn.edu" "gender" "male" "ip_address" "196.141.221.156" "country" "Indonesia" "country_code" "ID" "city" "Sirnasari" "longitude" "107.1573142" "latitude" "-6.633688" "last_login" "1600145575" +HSET "user:4174" "first_name" "Ripley" "last_name" "Malone" "email" "rmalone4v@bing.com" "gender" "male" "ip_address" "43.127.157.138" "country" "China" "country_code" "CN" "city" "Longxian Chengguanzhen" "longitude" "106.836465" "latitude" "34.894093" "last_login" "1588423135" +HSET "user:4175" "first_name" "Arlyn" "last_name" "Gelsthorpe" "email" "agelsthorpe4w@toplist.cz" "gender" "female" "ip_address" "119.211.48.39" "country" "Brazil" "country_code" "BR" "city" "Arapongas" "longitude" "-51.4264048" "latitude" "-23.4157731" "last_login" "1574584971" +HSET "user:4176" "first_name" "Timothee" "last_name" "von Grollmann" "email" "tvongrollmann4x@va.gov" "gender" "male" "ip_address" "152.121.1.1" "country" "China" "country_code" "CN" "city" "Hongxing" "longitude" "129.3909831" "latitude" "48.239431" "last_login" "1570025457" +HSET "user:4177" "first_name" "Odell" "last_name" "Verbeke" "email" "overbeke4y@gov.uk" "gender" "male" "ip_address" "254.180.31.99" "country" "Philippines" "country_code" "PH" "city" "Leon Postigo" "longitude" "122.9244113" "latitude" "8.1503324" "last_login" "1585815222" +HSET "user:4178" "first_name" "Michaeline" "last_name" "Rouzet" "email" "mrouzet4z@harvard.edu" "gender" "female" "ip_address" "99.229.118.33" "country" "Argentina" "country_code" "AR" "city" "Vicuña Mackenna" "longitude" "-64.3897946" "latitude" "-33.9162938" "last_login" "1570641855" +HSET "user:4179" "first_name" "Toddie" "last_name" "Mazzilli" "email" "tmazzilli50@lycos.com" "gender" "male" "ip_address" "222.200.110.13" "country" "Brazil" "country_code" "BR" "city" "Jaru" "longitude" "-62.4792921" "latitude" "-10.4322235" "last_login" "1592994347" +HSET "user:4180" "first_name" "Demetria" "last_name" "Wallsam" "email" "dwallsam51@alibaba.com" "gender" "female" "ip_address" "86.111.46.102" "country" "Central African Republic" "country_code" "CF" "city" "Ouango" "longitude" "22.5498389" "latitude" "4.3139754" "last_login" "1599649214" +HSET "user:4181" "first_name" "Yancey" "last_name" "Bownd" "email" "ybownd52@washington.edu" "gender" "male" "ip_address" "24.89.232.128" "country" "China" "country_code" "CN" "city" "Beicheng" "longitude" "117.135488" "latitude" "39.224791" "last_login" "1588496866" +HSET "user:4182" "first_name" "Farlay" "last_name" "De Maria" "email" "fdemaria53@ebay.co.uk" "gender" "male" "ip_address" "155.45.168.190" "country" "Russia" "country_code" "RU" "city" "Slyudyanka" "longitude" "83.000494" "latitude" "54.8737338" "last_login" "1582352354" +HSET "user:4183" "first_name" "Morgun" "last_name" "Leare" "email" "mleare54@thetimes.co.uk" "gender" "male" "ip_address" "161.232.67.135" "country" "China" "country_code" "CN" "city" "Eshan" "longitude" "102.405819" "latitude" "24.168957" "last_login" "1579790699" +HSET "user:4184" "first_name" "Henka" "last_name" "Helian" "email" "hhelian55@booking.com" "gender" "female" "ip_address" "164.192.247.137" "country" "Indonesia" "country_code" "ID" "city" "Mloko" "longitude" "110.1726465" "latitude" "-7.3608928" "last_login" "1577900173" +HSET "user:4185" "first_name" "Pavia" "last_name" "Caldecot" "email" "pcaldecot56@soundcloud.com" "gender" "female" "ip_address" "26.39.33.222" "country" "Philippines" "country_code" "PH" "city" "Carigara" "longitude" "124.6904308" "latitude" "11.3008218" "last_login" "1578637238" +HSET "user:4186" "first_name" "Chris" "last_name" "Takle" "email" "ctakle57@webs.com" "gender" "male" "ip_address" "145.11.171.91" "country" "China" "country_code" "CN" "city" "Tianyi" "longitude" "114.182575" "latitude" "22.278214" "last_login" "1572679358" +HSET "user:4187" "first_name" "Ellswerth" "last_name" "Kenward" "email" "ekenward58@csmonitor.com" "gender" "male" "ip_address" "218.39.61.192" "country" "Russia" "country_code" "RU" "city" "Yaroslavskaya" "longitude" "52.1354762" "latitude" "56.9846984" "last_login" "1598275030" +HSET "user:4188" "first_name" "Blair" "last_name" "MacLaughlin" "email" "bmaclaughlin59@spotify.com" "gender" "male" "ip_address" "39.102.176.169" "country" "Indonesia" "country_code" "ID" "city" "Klagen" "longitude" "111.8956112" "latitude" "-7.541449" "last_login" "1585356873" +HSET "user:4189" "first_name" "Melvin" "last_name" "MacMeekan" "email" "mmacmeekan5a@blog.com" "gender" "male" "ip_address" "28.255.252.109" "country" "China" "country_code" "CN" "city" "Huaicheng" "longitude" "122.685217" "latitude" "40.882377" "last_login" "1588899678" +HSET "user:4190" "first_name" "Giffie" "last_name" "Biaggelli" "email" "gbiaggelli5b@goo.gl" "gender" "male" "ip_address" "50.252.186.50" "country" "Russia" "country_code" "RU" "city" "Ural" "longitude" "94.7518395" "latitude" "55.906648" "last_login" "1599881241" +HSET "user:4191" "first_name" "Bentlee" "last_name" "Dysart" "email" "bdysart5c@kickstarter.com" "gender" "male" "ip_address" "215.117.136.244" "country" "Russia" "country_code" "RU" "city" "Vnukovo" "longitude" "37.2712341" "latitude" "55.599648" "last_login" "1589507695" +HSET "user:4192" "first_name" "Hermione" "last_name" "Campbell" "email" "hcampbell5d@whitehouse.gov" "gender" "female" "ip_address" "201.220.151.238" "country" "Georgia" "country_code" "GE" "city" "Bagdadi" "longitude" "42.8212218" "latitude" "42.0732393" "last_login" "1591681271" +HSET "user:4193" "first_name" "Perle" "last_name" "Depke" "email" "pdepke5e@netvibes.com" "gender" "female" "ip_address" "100.155.230.179" "country" "South Africa" "country_code" "ZA" "city" "Louis Trichardt" "longitude" "30.0723009" "latitude" "-23.1846822" "last_login" "1577676082" +HSET "user:4194" "first_name" "Cynthia" "last_name" "Crean" "email" "ccrean5f@sun.com" "gender" "female" "ip_address" "229.99.238.26" "country" "Canada" "country_code" "CA" "city" "Kirkland" "longitude" "-73.858939" "latitude" "45.448409" "last_login" "1592886568" +HSET "user:4195" "first_name" "Norton" "last_name" "Gantz" "email" "ngantz5g@amazon.co.uk" "gender" "male" "ip_address" "190.202.88.6" "country" "Indonesia" "country_code" "ID" "city" "Cikiruh" "longitude" "105.7644596" "latitude" "-6.8027421" "last_login" "1597515963" +HSET "user:4196" "first_name" "Harland" "last_name" "Sparkwell" "email" "hsparkwell5h@admin.ch" "gender" "male" "ip_address" "0.101.74.28" "country" "Philippines" "country_code" "PH" "city" "Santa Maria" "longitude" "121.0036417" "latitude" "14.5806413" "last_login" "1573831216" +HSET "user:4197" "first_name" "Stephie" "last_name" "Klewer" "email" "sklewer5i@sciencedirect.com" "gender" "female" "ip_address" "34.195.71.50" "country" "Russia" "country_code" "RU" "city" "Dzhayrakh" "longitude" "44.68139" "latitude" "42.82042" "last_login" "1571747173" +HSET "user:4198" "first_name" "Morgun" "last_name" "Dittson" "email" "mdittson5j@vimeo.com" "gender" "male" "ip_address" "201.74.145.137" "country" "China" "country_code" "CN" "city" "Heping" "longitude" "114.938684" "latitude" "24.44218" "last_login" "1593197541" +HSET "user:4199" "first_name" "Dody" "last_name" "Eden" "email" "deden5k@mit.edu" "gender" "female" "ip_address" "229.218.51.221" "country" "Indonesia" "country_code" "ID" "city" "Likwatang Timur" "longitude" "124.668" "latitude" "-8.1649" "last_login" "1579123838" +HSET "user:4200" "first_name" "Nikola" "last_name" "Ullyott" "email" "nullyott5l@netscape.com" "gender" "male" "ip_address" "247.137.247.151" "country" "Greece" "country_code" "GR" "city" "Pámfylla" "longitude" "26.52167" "latitude" "39.15667" "last_login" "1593656794" +HSET "user:4201" "first_name" "Lavinia" "last_name" "Davall" "email" "ldavall5m@census.gov" "gender" "female" "ip_address" "38.167.41.174" "country" "France" "country_code" "FR" "city" "Loudun" "longitude" "4.1293609" "latitude" "45.3207796" "last_login" "1599244514" +HSET "user:4202" "first_name" "Bernhard" "last_name" "Avison" "email" "bavison5n@amazon.de" "gender" "male" "ip_address" "255.18.102.109" "country" "Russia" "country_code" "RU" "city" "Rakitnoye" "longitude" "35.690669" "latitude" "50.9621585" "last_login" "1574230067" +HSET "user:4203" "first_name" "Henrie" "last_name" "Balassa" "email" "hbalassa5o@unblog.fr" "gender" "female" "ip_address" "187.151.188.21" "country" "Serbia" "country_code" "RS" "city" "Jazovo" "longitude" "20.2325754" "latitude" "45.8987694" "last_login" "1578909945" +HSET "user:4204" "first_name" "Nanci" "last_name" "Braddick" "email" "nbraddick5p@comsenz.com" "gender" "female" "ip_address" "40.129.180.144" "country" "Sweden" "country_code" "SE" "city" "Tanumshede" "longitude" "11.2533509" "latitude" "58.695946" "last_login" "1589489365" +HSET "user:4205" "first_name" "Jephthah" "last_name" "Oxbe" "email" "joxbe5q@hud.gov" "gender" "male" "ip_address" "14.179.243.70" "country" "Brazil" "country_code" "BR" "city" "Piuí" "longitude" "-46.668872" "latitude" "-23.611227" "last_login" "1579260979" +HSET "user:4206" "first_name" "Mandel" "last_name" "Brosnan" "email" "mbrosnan5r@reference.com" "gender" "male" "ip_address" "202.254.109.23" "country" "China" "country_code" "CN" "city" "Ya’erya" "longitude" "-88.0162724" "latitude" "43.1043447" "last_login" "1571827418" +HSET "user:4207" "first_name" "Ossie" "last_name" "Tremellan" "email" "otremellan5s@discuz.net" "gender" "male" "ip_address" "111.237.92.192" "country" "Indonesia" "country_code" "ID" "city" "Bantarpanjang" "longitude" "106.4563567" "latitude" "-6.3034502" "last_login" "1575205899" +HSET "user:4208" "first_name" "Tomasina" "last_name" "Yousef" "email" "tyousef5t@theglobeandmail.com" "gender" "female" "ip_address" "108.55.167.16" "country" "China" "country_code" "CN" "city" "Yonghe" "longitude" "110.632006" "latitude" "36.759507" "last_login" "1587932856" +HSET "user:4209" "first_name" "Aguie" "last_name" "Lisciardelli" "email" "alisciardelli5u@irs.gov" "gender" "male" "ip_address" "147.83.48.84" "country" "Peru" "country_code" "PE" "city" "Pacasmayo" "longitude" "-79.565078" "latitude" "-7.4040051" "last_login" "1599786749" +HSET "user:4210" "first_name" "Renado" "last_name" "Duce" "email" "rduce5v@sun.com" "gender" "male" "ip_address" "220.89.33.110" "country" "Honduras" "country_code" "HN" "city" "El Escanito" "longitude" "-87.1210889" "latitude" "14.7036955" "last_login" "1595800877" +HSET "user:4211" "first_name" "Toby" "last_name" "Eagger" "email" "teagger5w@plala.or.jp" "gender" "female" "ip_address" "54.175.87.25" "country" "Bulgaria" "country_code" "BG" "city" "Pŭrvomaytsi" "longitude" "25.65" "latitude" "43.15" "last_login" "1577691864" +HSET "user:4212" "first_name" "Eamon" "last_name" "Graeme" "email" "egraeme5x@smh.com.au" "gender" "male" "ip_address" "198.144.254.59" "country" "New Zealand" "country_code" "NZ" "city" "Pakuranga" "longitude" "174.8893277" "latitude" "-36.9060236" "last_login" "1574820195" +HSET "user:4213" "first_name" "Anabella" "last_name" "Garfoot" "email" "agarfoot5y@economist.com" "gender" "female" "ip_address" "36.145.162.126" "country" "China" "country_code" "CN" "city" "Gujiadian" "longitude" "111.566008" "latitude" "30.3352" "last_login" "1596594920" +HSET "user:4214" "first_name" "Camala" "last_name" "Sleaford" "email" "csleaford5z@soup.io" "gender" "female" "ip_address" "167.27.10.10" "country" "Russia" "country_code" "RU" "city" "Nizhnyaya Tura" "longitude" "59.8241142" "latitude" "58.6247472" "last_login" "1590463467" +HSET "user:4215" "first_name" "Bron" "last_name" "Oldall" "email" "boldall60@cbsnews.com" "gender" "male" "ip_address" "186.128.152.203" "country" "Russia" "country_code" "RU" "city" "Pokrov" "longitude" "39.1784374" "latitude" "55.9180886" "last_login" "1586929106" +HSET "user:4216" "first_name" "Jeanette" "last_name" "Feaveer" "email" "jfeaveer61@nbcnews.com" "gender" "female" "ip_address" "223.89.251.227" "country" "Peru" "country_code" "PE" "city" "Pilcomay" "longitude" "-75.2535192" "latitude" "-12.0442537" "last_login" "1586628697" +HSET "user:4217" "first_name" "Willard" "last_name" "Wedlake" "email" "wwedlake62@squarespace.com" "gender" "male" "ip_address" "107.185.218.12" "country" "Philippines" "country_code" "PH" "city" "Polo" "longitude" "120.947095" "latitude" "14.709034" "last_login" "1582386159" +HSET "user:4218" "first_name" "Paulette" "last_name" "Reason" "email" "preason63@technorati.com" "gender" "female" "ip_address" "100.141.57.122" "country" "Russia" "country_code" "RU" "city" "Pokrov" "longitude" "39.1784374" "latitude" "55.9180886" "last_login" "1583128683" +HSET "user:4219" "first_name" "Mordecai" "last_name" "Jelley" "email" "mjelley64@blogs.com" "gender" "male" "ip_address" "188.166.254.40" "country" "Russia" "country_code" "RU" "city" "Fëdorovskoye" "longitude" "135.1523126" "latitude" "48.581467" "last_login" "1585015116" +HSET "user:4220" "first_name" "Bealle" "last_name" "Raithmill" "email" "braithmill65@ehow.com" "gender" "male" "ip_address" "239.104.242.67" "country" "China" "country_code" "CN" "city" "Shanghuang" "longitude" "119.567785" "latitude" "31.532311" "last_login" "1598481819" +HSET "user:4221" "first_name" "Richie" "last_name" "Birdsall" "email" "rbirdsall66@privacy.gov.au" "gender" "male" "ip_address" "79.16.20.186" "country" "China" "country_code" "CN" "city" "Chengguan" "longitude" "91.140552" "latitude" "29.654838" "last_login" "1598938559" +HSET "user:4222" "first_name" "Fraser" "last_name" "Merali" "email" "fmerali67@ca.gov" "gender" "male" "ip_address" "107.226.184.143" "country" "Indonesia" "country_code" "ID" "city" "Barengkok" "longitude" "106.635025" "latitude" "-6.5978669" "last_login" "1569021695" +HSET "user:4223" "first_name" "Aguistin" "last_name" "Soans" "email" "asoans68@theatlantic.com" "gender" "male" "ip_address" "143.54.82.41" "country" "Colombia" "country_code" "CO" "city" "Sabaneta" "longitude" "-75.6033497" "latitude" "6.1307505" "last_login" "1571152831" +HSET "user:4224" "first_name" "Lenci" "last_name" "Petti" "email" "lpetti69@marriott.com" "gender" "male" "ip_address" "183.19.220.149" "country" "Ukraine" "country_code" "UA" "city" "Zahvizdya" "longitude" "24.6653537" "latitude" "48.9240653" "last_login" "1590236795" +HSET "user:4225" "first_name" "Merrie" "last_name" "Kays" "email" "mkays6a@microsoft.com" "gender" "female" "ip_address" "252.57.109.88" "country" "Brazil" "country_code" "BR" "city" "Armação de Búzios" "longitude" "-41.889042" "latitude" "-22.7563906" "last_login" "1577130479" +HSET "user:4226" "first_name" "Sarette" "last_name" "Plackstone" "email" "splackstone6b@soundcloud.com" "gender" "female" "ip_address" "84.79.236.183" "country" "Malawi" "country_code" "MW" "city" "Blantyre" "longitude" "35.0167866" "latitude" "-15.7666707" "last_login" "1582380642" +HSET "user:4227" "first_name" "Jeremy" "last_name" "Burhill" "email" "jburhill6c@reuters.com" "gender" "male" "ip_address" "44.200.163.193" "country" "Jordan" "country_code" "JO" "city" "Safi" "longitude" "35.853029" "latitude" "31.975951" "last_login" "1597685112" +HSET "user:4228" "first_name" "Oona" "last_name" "Jiles" "email" "ojiles6d@sbwire.com" "gender" "female" "ip_address" "130.213.52.157" "country" "Sweden" "country_code" "SE" "city" "Huddinge" "longitude" "18.0084483" "latitude" "59.2442754" "last_login" "1579736466" +HSET "user:4229" "first_name" "Julius" "last_name" "Fahey" "email" "jfahey6e@xrea.com" "gender" "male" "ip_address" "98.137.91.151" "country" "Sweden" "country_code" "SE" "city" "Sundbyberg" "longitude" "17.9613181" "latitude" "59.3777955" "last_login" "1570926358" +HSET "user:4230" "first_name" "Rriocard" "last_name" "Josse" "email" "rjosse6f@opera.com" "gender" "male" "ip_address" "41.125.243.93" "country" "China" "country_code" "CN" "city" "Hexi" "longitude" "117.223371" "latitude" "39.109563" "last_login" "1589153214" +HSET "user:4231" "first_name" "Glynn" "last_name" "Bristow" "email" "gbristow6g@about.com" "gender" "male" "ip_address" "108.199.238.170" "country" "Indonesia" "country_code" "ID" "city" "Sungaigerong" "longitude" "104.8746508" "latitude" "-2.9505021" "last_login" "1595639923" +HSET "user:4232" "first_name" "Imojean" "last_name" "Pitrollo" "email" "ipitrollo6h@hubpages.com" "gender" "female" "ip_address" "91.83.29.97" "country" "Portugal" "country_code" "PT" "city" "Santa Maria da Feira" "longitude" "-8.5426466" "latitude" "40.9368325" "last_login" "1591438708" +HSET "user:4233" "first_name" "Patrizius" "last_name" "Santostefano." "email" "psantostefano6i@statcounter.com" "gender" "male" "ip_address" "150.200.112.214" "country" "Denmark" "country_code" "DK" "city" "København" "longitude" "12.5886879" "latitude" "55.6862651" "last_login" "1573335076" +HSET "user:4234" "first_name" "Radcliffe" "last_name" "Wince" "email" "rwince6j@archive.org" "gender" "male" "ip_address" "48.243.89.220" "country" "Nicaragua" "country_code" "NI" "city" "León" "longitude" "-86.8722146" "latitude" "12.4315534" "last_login" "1584062341" +HSET "user:4235" "first_name" "Mellisa" "last_name" "Brackstone" "email" "mbrackstone6k@alibaba.com" "gender" "female" "ip_address" "73.116.236.50" "country" "United States" "country_code" "US" "city" "Louisville" "longitude" "-85.68525" "latitude" "38.2473" "last_login" "1575793708" +HSET "user:4236" "first_name" "Dorotea" "last_name" "Shimony" "email" "dshimony6l@army.mil" "gender" "female" "ip_address" "78.101.36.175" "country" "Ireland" "country_code" "IE" "city" "Clifden" "longitude" "-10.022186" "latitude" "53.488087" "last_login" "1584168256" +HSET "user:4237" "first_name" "Krishna" "last_name" "Kuschel" "email" "kkuschel6m@quantcast.com" "gender" "male" "ip_address" "238.195.35.154" "country" "Indonesia" "country_code" "ID" "city" "Kasonawejo" "longitude" "138.0109374" "latitude" "-2.2661571" "last_login" "1595251282" +HSET "user:4238" "first_name" "Jasmin" "last_name" "Newarte" "email" "jnewarte6n@smugmug.com" "gender" "female" "ip_address" "249.219.154.141" "country" "Philippines" "country_code" "PH" "city" "Mantampay" "longitude" "124.21667" "latitude" "8.16667" "last_login" "1575116065" +HSET "user:4239" "first_name" "Tawsha" "last_name" "Sindall" "email" "tsindall6o@wordpress.org" "gender" "female" "ip_address" "62.240.171.58" "country" "Japan" "country_code" "JP" "city" "Iyo" "longitude" "132.7021114" "latitude" "33.7622962" "last_login" "1579757825" +HSET "user:4240" "first_name" "Patrizio" "last_name" "Baum" "email" "pbaum6p@themeforest.net" "gender" "male" "ip_address" "245.213.58.131" "country" "Peru" "country_code" "PE" "city" "La Tinguiña" "longitude" "-75.7051647" "latitude" "-14.0393995" "last_login" "1597252502" +HSET "user:4241" "first_name" "Derk" "last_name" "Paris" "email" "dparis6q@sciencedirect.com" "gender" "male" "ip_address" "245.92.41.64" "country" "Czech Republic" "country_code" "CZ" "city" "Libice nad Cidlinou" "longitude" "15.1782064" "latitude" "50.1267742" "last_login" "1598056764" +HSET "user:4242" "first_name" "Shurlocke" "last_name" "Curman" "email" "scurman6r@yellowbook.com" "gender" "male" "ip_address" "8.138.207.234" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-77.0380148" "latitude" "38.8991558" "last_login" "1579367816" +HSET "user:4243" "first_name" "Binny" "last_name" "Welham" "email" "bwelham6s@stumbleupon.com" "gender" "female" "ip_address" "37.47.178.163" "country" "Indonesia" "country_code" "ID" "city" "Kalkal Barat" "longitude" "112.8193" "latitude" "-6.9965" "last_login" "1574421009" +HSET "user:4244" "first_name" "Dillon" "last_name" "Randlesome" "email" "drandlesome6t@nba.com" "gender" "male" "ip_address" "68.142.175.218" "country" "Thailand" "country_code" "TH" "city" "Pluak Daeng" "longitude" "101.2163774" "latitude" "12.9707642" "last_login" "1576610935" +HSET "user:4245" "first_name" "Candace" "last_name" "Careless" "email" "ccareless6u@addthis.com" "gender" "female" "ip_address" "123.146.29.51" "country" "Malaysia" "country_code" "MY" "city" "Alor Star" "longitude" "100.310501" "latitude" "6.1324209" "last_login" "1599547855" +HSET "user:4246" "first_name" "Jany" "last_name" "Lerven" "email" "jlerven6v@360.cn" "gender" "female" "ip_address" "168.62.36.148" "country" "Poland" "country_code" "PL" "city" "Księżpol" "longitude" "22.7432687" "latitude" "50.4127137" "last_login" "1578094408" +HSET "user:4247" "first_name" "Gabriele" "last_name" "O'Lehane" "email" "golehane6w@topsy.com" "gender" "male" "ip_address" "245.144.150.210" "country" "South Africa" "country_code" "ZA" "city" "Somerset East" "longitude" "25.5799503" "latitude" "-32.7248333" "last_login" "1571591842" +HSET "user:4248" "first_name" "Desmund" "last_name" "Culter" "email" "dculter6x@mayoclinic.com" "gender" "male" "ip_address" "202.128.9.66" "country" "China" "country_code" "CN" "city" "Kuidou" "longitude" "118.439554" "latitude" "26.09765" "last_login" "1598169811" +HSET "user:4249" "first_name" "Hodge" "last_name" "McMennum" "email" "hmcmennum6y@ycombinator.com" "gender" "male" "ip_address" "150.70.166.171" "country" "Brazil" "country_code" "BR" "city" "Santana" "longitude" "-44.0199152" "latitude" "-12.9730966" "last_login" "1595684824" +HSET "user:4250" "first_name" "Carolyn" "last_name" "Frohock" "email" "cfrohock6z@clickbank.net" "gender" "female" "ip_address" "231.4.229.75" "country" "Armenia" "country_code" "AM" "city" "Dalarik" "longitude" "43.8717749" "latitude" "40.2272711" "last_login" "1570105156" +HSET "user:4251" "first_name" "Man" "last_name" "McCorley" "email" "mmccorley70@pcworld.com" "gender" "male" "ip_address" "174.95.167.115" "country" "Indonesia" "country_code" "ID" "city" "Sipirok" "longitude" "99.2342196" "latitude" "1.616009" "last_login" "1580753045" +HSET "user:4252" "first_name" "Lauritz" "last_name" "Cottis" "email" "lcottis71@sbwire.com" "gender" "male" "ip_address" "160.63.156.97" "country" "China" "country_code" "CN" "city" "Xinghuo" "longitude" "116.2398367" "latitude" "40.2023282" "last_login" "1569666199" +HSET "user:4253" "first_name" "Sephira" "last_name" "Grosier" "email" "sgrosier72@mail.ru" "gender" "female" "ip_address" "108.101.61.132" "country" "Argentina" "country_code" "AR" "city" "Herrera" "longitude" "-58.3734773" "latitude" "-34.6558079" "last_login" "1581266500" +HSET "user:4254" "first_name" "Bartolomeo" "last_name" "Finlason" "email" "bfinlason73@un.org" "gender" "male" "ip_address" "232.222.220.131" "country" "Egypt" "country_code" "EG" "city" "Talā" "longitude" "30.9427433" "latitude" "30.6795086" "last_login" "1599640851" +HSET "user:4255" "first_name" "Cullen" "last_name" "Mulrooney" "email" "cmulrooney74@sogou.com" "gender" "male" "ip_address" "198.81.164.112" "country" "Greece" "country_code" "GR" "city" "Kardamás" "longitude" "21.3383382" "latitude" "37.7668391" "last_login" "1580564477" +HSET "user:4256" "first_name" "Cole" "last_name" "Whitland" "email" "cwhitland75@amazon.co.uk" "gender" "male" "ip_address" "160.26.35.219" "country" "Bulgaria" "country_code" "BG" "city" "Balgarevo" "longitude" "28.413371" "latitude" "43.4018427" "last_login" "1596308005" +HSET "user:4257" "first_name" "Brigit" "last_name" "Ducastel" "email" "bducastel76@accuweather.com" "gender" "female" "ip_address" "150.92.3.12" "country" "China" "country_code" "CN" "city" "Shimen" "longitude" "111.380014" "latitude" "29.584292" "last_login" "1593145799" +HSET "user:4258" "first_name" "Eddy" "last_name" "Kuzma" "email" "ekuzma77@digg.com" "gender" "male" "ip_address" "156.20.10.210" "country" "Philippines" "country_code" "PH" "city" "Sipocot" "longitude" "122.9760543" "latitude" "13.7643349" "last_login" "1573010766" +HSET "user:4259" "first_name" "Fina" "last_name" "Covey" "email" "fcovey78@joomla.org" "gender" "female" "ip_address" "252.43.194.76" "country" "Indonesia" "country_code" "ID" "city" "Gresik" "longitude" "112.5721881" "latitude" "-7.1550291" "last_login" "1588182827" +HSET "user:4260" "first_name" "Loren" "last_name" "Lauthian" "email" "llauthian79@tamu.edu" "gender" "male" "ip_address" "156.35.243.63" "country" "Portugal" "country_code" "PT" "city" "Cachadinha" "longitude" "-8.3569915" "latitude" "41.4981839" "last_login" "1594499306" +HSET "user:4261" "first_name" "Leonidas" "last_name" "Alliband" "email" "lalliband7a@g.co" "gender" "male" "ip_address" "10.160.110.122" "country" "Argentina" "country_code" "AR" "city" "Ushuaia" "longitude" "-68.3214955" "latitude" "-54.8079502" "last_login" "1598353506" +HSET "user:4262" "first_name" "Raimondo" "last_name" "Scalia" "email" "rscalia7b@washingtonpost.com" "gender" "male" "ip_address" "213.242.91.147" "country" "Japan" "country_code" "JP" "city" "Kamojimachō-jōgejima" "longitude" "134.3493568" "latitude" "34.0716318" "last_login" "1592059050" +HSET "user:4263" "first_name" "Tulley" "last_name" "Norkutt" "email" "tnorkutt7c@marketwatch.com" "gender" "male" "ip_address" "88.117.70.120" "country" "Poland" "country_code" "PL" "city" "Bielawy" "longitude" "19.6406627" "latitude" "52.0629803" "last_login" "1584942722" +HSET "user:4264" "first_name" "Christian" "last_name" "Doers" "email" "cdoers7d@phpbb.com" "gender" "male" "ip_address" "213.161.183.51" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "12.0625459" "latitude" "57.7314161" "last_login" "1595771972" +HSET "user:4265" "first_name" "Felix" "last_name" "Spollen" "email" "fspollen7e@bloglovin.com" "gender" "male" "ip_address" "124.122.139.41" "country" "Bulgaria" "country_code" "BG" "city" "Sozopol" "longitude" "27.7009454" "latitude" "42.4099129" "last_login" "1584644272" +HSET "user:4266" "first_name" "Everett" "last_name" "Cherry Holme" "email" "echerryholme7f@npr.org" "gender" "male" "ip_address" "61.47.160.158" "country" "China" "country_code" "CN" "city" "Liangchahe" "longitude" "102.267712" "latitude" "27.88157" "last_login" "1590433204" +HSET "user:4267" "first_name" "Emmit" "last_name" "Lazare" "email" "elazare7g@domainmarket.com" "gender" "male" "ip_address" "40.229.126.15" "country" "Spain" "country_code" "ES" "city" "Donostia-San Sebastian" "longitude" "-1.9514657" "latitude" "43.3152889" "last_login" "1577154989" +HSET "user:4268" "first_name" "Nadya" "last_name" "Fray" "email" "nfray7h@spiegel.de" "gender" "female" "ip_address" "76.33.245.175" "country" "Mexico" "country_code" "MX" "city" "Loma Bonita" "longitude" "-95.8803869" "latitude" "18.1096868" "last_login" "1599250767" +HSET "user:4269" "first_name" "Timmie" "last_name" "Kiendl" "email" "tkiendl7i@zdnet.com" "gender" "female" "ip_address" "183.241.170.58" "country" "Indonesia" "country_code" "ID" "city" "Ketawang" "longitude" "110.3279026" "latitude" "-7.4104934" "last_login" "1573872246" +HSET "user:4270" "first_name" "Orazio" "last_name" "Delwater" "email" "odelwater7j@mysql.com" "gender" "male" "ip_address" "65.210.196.26" "country" "Iran" "country_code" "IR" "city" "Akbarābād" "longitude" "52.7830627" "latitude" "29.2444816" "last_login" "1578333620" +HSET "user:4271" "first_name" "Germaine" "last_name" "Critchard" "email" "gcritchard7k@netscape.com" "gender" "female" "ip_address" "52.82.172.38" "country" "Nepal" "country_code" "NP" "city" "Bāglung" "longitude" "83.2934086" "latitude" "28.3683182" "last_login" "1576289173" +HSET "user:4272" "first_name" "Daryn" "last_name" "Szymaniak" "email" "dszymaniak7l@sun.com" "gender" "female" "ip_address" "12.160.167.206" "country" "Argentina" "country_code" "AR" "city" "Avellaneda" "longitude" "-57.5825246" "latitude" "-37.9973752" "last_login" "1576253739" +HSET "user:4273" "first_name" "Erminie" "last_name" "Da Costa" "email" "edacosta7m@apple.com" "gender" "female" "ip_address" "92.134.191.212" "country" "Finland" "country_code" "FI" "city" "Himanka" "longitude" "23.6542166" "latitude" "64.0615492" "last_login" "1583647354" +HSET "user:4274" "first_name" "Serge" "last_name" "Moodie" "email" "smoodie7n@eventbrite.com" "gender" "male" "ip_address" "130.230.100.12" "country" "Ireland" "country_code" "IE" "city" "Claremorris" "longitude" "-8.334953" "latitude" "51.8610022" "last_login" "1586224018" +HSET "user:4275" "first_name" "Kalinda" "last_name" "Branford" "email" "kbranford7o@unblog.fr" "gender" "female" "ip_address" "106.247.73.78" "country" "Indonesia" "country_code" "ID" "city" "Kebonagung" "longitude" "113.6770012" "latitude" "-8.1611036" "last_login" "1594573981" +HSET "user:4276" "first_name" "Shawnee" "last_name" "Studders" "email" "sstudders7p@hhs.gov" "gender" "female" "ip_address" "236.89.33.190" "country" "Morocco" "country_code" "MA" "city" "Chefchaouene" "longitude" "-5.2632201" "latitude" "35.1612182" "last_login" "1583894337" +HSET "user:4277" "first_name" "Zitella" "last_name" "Gillian" "email" "zgillian7q@pcworld.com" "gender" "female" "ip_address" "228.253.231.22" "country" "Czech Republic" "country_code" "CZ" "city" "Vlkoš" "longitude" "17.4190192" "latitude" "49.395784" "last_login" "1574115110" +HSET "user:4278" "first_name" "Flinn" "last_name" "Stockle" "email" "fstockle7r@fda.gov" "gender" "male" "ip_address" "41.237.208.26" "country" "Ukraine" "country_code" "UA" "city" "Chervonoarmiys’k" "longitude" "30.5176371" "latitude" "50.4254568" "last_login" "1571202636" +HSET "user:4279" "first_name" "Lucio" "last_name" "Ickovitz" "email" "lickovitz7s@typepad.com" "gender" "male" "ip_address" "224.139.180.174" "country" "Albania" "country_code" "AL" "city" "Hoçisht" "longitude" "20.9193691" "latitude" "40.605681" "last_login" "1569788592" +HSET "user:4280" "first_name" "Rochella" "last_name" "Kilroy" "email" "rkilroy7t@vkontakte.ru" "gender" "female" "ip_address" "37.80.89.185" "country" "China" "country_code" "CN" "city" "Yiyang" "longitude" "112.35518" "latitude" "28.55386" "last_login" "1570479481" +HSET "user:4281" "first_name" "Jobey" "last_name" "Keasley" "email" "jkeasley7u@naver.com" "gender" "female" "ip_address" "104.171.26.122" "country" "China" "country_code" "CN" "city" "Paipu" "longitude" "116.342934" "latitude" "22.980665" "last_login" "1571008388" +HSET "user:4282" "first_name" "Arin" "last_name" "De Cruce" "email" "adecruce7v@amazon.co.jp" "gender" "male" "ip_address" "28.168.98.23" "country" "Poland" "country_code" "PL" "city" "Łapanów" "longitude" "20.3132252" "latitude" "49.8709627" "last_login" "1596180464" +HSET "user:4283" "first_name" "Nobie" "last_name" "Forri" "email" "nforri7w@opensource.org" "gender" "male" "ip_address" "44.22.43.97" "country" "Poland" "country_code" "PL" "city" "Brzyska" "longitude" "21.3934539" "latitude" "49.8232218" "last_login" "1571297477" +HSET "user:4284" "first_name" "Freddy" "last_name" "Currao" "email" "fcurrao7x@upenn.edu" "gender" "male" "ip_address" "189.92.111.206" "country" "China" "country_code" "CN" "city" "Jindong" "longitude" "119.692696" "latitude" "29.099294" "last_login" "1574695416" +HSET "user:4285" "first_name" "Letizia" "last_name" "Vasishchev" "email" "lvasishchev7y@cisco.com" "gender" "female" "ip_address" "42.97.63.47" "country" "Ukraine" "country_code" "UA" "city" "Medzhibozh" "longitude" "27.4042153" "latitude" "49.4389042" "last_login" "1578678234" +HSET "user:4286" "first_name" "Linda" "last_name" "Beausang" "email" "lbeausang7z@bloomberg.com" "gender" "female" "ip_address" "5.156.20.203" "country" "Luxembourg" "country_code" "LU" "city" "Schengen" "longitude" "6.3640878" "latitude" "49.4709886" "last_login" "1579123083" +HSET "user:4287" "first_name" "Engelbert" "last_name" "Mazzey" "email" "emazzey80@statcounter.com" "gender" "male" "ip_address" "10.41.16.215" "country" "Russia" "country_code" "RU" "city" "Pyra" "longitude" "43.3592596" "latitude" "56.3137647" "last_login" "1582402530" +HSET "user:4288" "first_name" "Hyacinthia" "last_name" "Grewar" "email" "hgrewar81@reverbnation.com" "gender" "female" "ip_address" "117.1.65.204" "country" "Ukraine" "country_code" "UA" "city" "Pokotylivka" "longitude" "36.1763412" "latitude" "49.9166765" "last_login" "1577317128" +HSET "user:4289" "first_name" "Ekaterina" "last_name" "Novic" "email" "enovic82@sbwire.com" "gender" "female" "ip_address" "253.74.162.19" "country" "China" "country_code" "CN" "city" "Qianhong" "longitude" "117.044333" "latitude" "31.849004" "last_login" "1571823200" +HSET "user:4290" "first_name" "Pansy" "last_name" "Dziwisz" "email" "pdziwisz83@vimeo.com" "gender" "female" "ip_address" "64.52.164.73" "country" "China" "country_code" "CN" "city" "Xidajie" "longitude" "108.9422832" "latitude" "34.2579981" "last_login" "1584919665" +HSET "user:4291" "first_name" "Meghann" "last_name" "Moulster" "email" "mmoulster84@upenn.edu" "gender" "female" "ip_address" "169.129.186.87" "country" "Indonesia" "country_code" "ID" "city" "Sukaratu" "longitude" "108.1250791" "latitude" "-7.2739902" "last_login" "1571283424" +HSET "user:4292" "first_name" "Terri-jo" "last_name" "Klaaassen" "email" "tklaaassen85@alexa.com" "gender" "female" "ip_address" "200.153.159.71" "country" "China" "country_code" "CN" "city" "Lianyun" "longitude" "119.338788" "latitude" "34.760249" "last_login" "1578927767" +HSET "user:4293" "first_name" "Flore" "last_name" "Barthelmes" "email" "fbarthelmes86@ihg.com" "gender" "female" "ip_address" "132.135.129.170" "country" "China" "country_code" "CN" "city" "Fengshan" "longitude" "107.04219" "latitude" "24.546876" "last_login" "1600023258" +HSET "user:4294" "first_name" "Harold" "last_name" "Escudier" "email" "hescudier87@thetimes.co.uk" "gender" "male" "ip_address" "80.75.203.127" "country" "China" "country_code" "CN" "city" "Wangmo" "longitude" "106.099617" "latitude" "25.178421" "last_login" "1570204776" +HSET "user:4295" "first_name" "Gonzales" "last_name" "De Bruin" "email" "gdebruin88@csmonitor.com" "gender" "male" "ip_address" "214.55.66.105" "country" "Ukraine" "country_code" "UA" "city" "Zahvizdya" "longitude" "24.6653537" "latitude" "48.9240653" "last_login" "1577924731" +HSET "user:4296" "first_name" "Farlie" "last_name" "De Avenell" "email" "fdeavenell89@miitbeian.gov.cn" "gender" "male" "ip_address" "212.225.179.131" "country" "Russia" "country_code" "RU" "city" "Lukhovka" "longitude" "45.2504398" "latitude" "54.1456181" "last_login" "1581790431" +HSET "user:4297" "first_name" "Celesta" "last_name" "Toth" "email" "ctoth8a@jalbum.net" "gender" "female" "ip_address" "246.223.52.129" "country" "China" "country_code" "CN" "city" "Yushu" "longitude" "97.008784" "latitude" "32.993106" "last_login" "1595777754" +HSET "user:4298" "first_name" "Dido" "last_name" "Perrett" "email" "dperrett8b@paypal.com" "gender" "female" "ip_address" "35.47.247.208" "country" "Russia" "country_code" "RU" "city" "Novokuz’minki" "longitude" "87.4792556" "latitude" "53.1294318" "last_login" "1573694806" +HSET "user:4299" "first_name" "Gerald" "last_name" "Walasik" "email" "gwalasik8c@de.vu" "gender" "male" "ip_address" "246.83.20.211" "country" "Haiti" "country_code" "HT" "city" "Petite Rivière de Nippes" "longitude" "-73.2337779" "latitude" "18.4759089" "last_login" "1570875275" +HSET "user:4300" "first_name" "Brod" "last_name" "Calrow" "email" "bcalrow8d@networkadvertising.org" "gender" "male" "ip_address" "211.112.130.219" "country" "Togo" "country_code" "TG" "city" "Sokodé" "longitude" "1.1448981" "latitude" "8.9779832" "last_login" "1591930506" +HSET "user:4301" "first_name" "Susan" "last_name" "Durber" "email" "sdurber8e@google.nl" "gender" "female" "ip_address" "216.69.215.90" "country" "China" "country_code" "CN" "city" "Pengwan" "longitude" "116.670173" "latitude" "30.920727" "last_login" "1580803926" +HSET "user:4302" "first_name" "Dicky" "last_name" "Afonso" "email" "dafonso8f@g.co" "gender" "male" "ip_address" "122.108.9.134" "country" "Indonesia" "country_code" "ID" "city" "Sukamulya" "longitude" "106.4288088" "latitude" "-6.1583904" "last_login" "1587492927" +HSET "user:4303" "first_name" "Charmaine" "last_name" "Arpur" "email" "carpur8g@phoca.cz" "gender" "female" "ip_address" "97.211.34.126" "country" "Mauritius" "country_code" "MU" "city" "Cap Malheureux" "longitude" "57.6127424" "latitude" "-19.986874" "last_login" "1600288197" +HSET "user:4304" "first_name" "Ailyn" "last_name" "Cheltnam" "email" "acheltnam8h@wisc.edu" "gender" "female" "ip_address" "95.53.180.103" "country" "Czech Republic" "country_code" "CZ" "city" "Velké Němčice" "longitude" "16.6802413" "latitude" "48.9933836" "last_login" "1591784818" +HSET "user:4305" "first_name" "Cosmo" "last_name" "Gabriely" "email" "cgabriely8i@cyberchimps.com" "gender" "male" "ip_address" "183.209.169.172" "country" "Cyprus" "country_code" "CY" "city" "Kato Pyrgos" "longitude" "32.6786008" "latitude" "35.1804745" "last_login" "1571888223" +HSET "user:4306" "first_name" "Ashil" "last_name" "Cockrill" "email" "acockrill8j@wordpress.org" "gender" "female" "ip_address" "154.65.172.224" "country" "Italy" "country_code" "IT" "city" "Torino" "longitude" "7.6579399" "latitude" "45.054478" "last_login" "1579295838" +HSET "user:4307" "first_name" "Keir" "last_name" "Hubbis" "email" "khubbis8k@globo.com" "gender" "male" "ip_address" "222.210.49.40" "country" "Peru" "country_code" "PE" "city" "San Felipe" "longitude" "-79.313438" "latitude" "-5.770584" "last_login" "1596663484" +HSET "user:4308" "first_name" "Christye" "last_name" "Pereira" "email" "cpereira8l@upenn.edu" "gender" "female" "ip_address" "0.99.111.241" "country" "Russia" "country_code" "RU" "city" "Tashtagol" "longitude" "87.8895009" "latitude" "52.7643345" "last_login" "1568948149" +HSET "user:4309" "first_name" "Inglis" "last_name" "Elverston" "email" "ielverston8m@buzzfeed.com" "gender" "male" "ip_address" "57.227.146.88" "country" "Germany" "country_code" "DE" "city" "Berlin" "longitude" "13.4343715" "latitude" "52.4867189" "last_login" "1585968594" +HSET "user:4310" "first_name" "Glennie" "last_name" "Blockwell" "email" "gblockwell8n@nhs.uk" "gender" "female" "ip_address" "34.172.89.225" "country" "Zimbabwe" "country_code" "ZW" "city" "Centenary" "longitude" "31.1166193" "latitude" "-16.7293695" "last_login" "1579305805" +HSET "user:4311" "first_name" "Eugen" "last_name" "Loverock" "email" "eloverock8o@printfriendly.com" "gender" "male" "ip_address" "190.7.176.200" "country" "Panama" "country_code" "PA" "city" "Mulatupo" "longitude" "-77.86667" "latitude" "9" "last_login" "1598373561" +HSET "user:4312" "first_name" "Charis" "last_name" "Brew" "email" "cbrew8p@1und1.de" "gender" "female" "ip_address" "82.104.169.45" "country" "Armenia" "country_code" "AM" "city" "Hovtashen" "longitude" "44.4540632" "latitude" "40.0249257" "last_login" "1568795498" +HSET "user:4313" "first_name" "Yolanda" "last_name" "Mercey" "email" "ymercey8q@prnewswire.com" "gender" "female" "ip_address" "122.220.222.233" "country" "Kenya" "country_code" "KE" "city" "Narok" "longitude" "35.8770642" "latitude" "-1.0875428" "last_login" "1584231564" +HSET "user:4314" "first_name" "Raynard" "last_name" "Bowden" "email" "rbowden8r@java.com" "gender" "male" "ip_address" "49.152.250.37" "country" "France" "country_code" "FR" "city" "Boulogne-Billancourt" "longitude" "2.2372823" "latitude" "48.830394" "last_login" "1597252866" +HSET "user:4315" "first_name" "Heda" "last_name" "Agates" "email" "hagates8s@ebay.co.uk" "gender" "female" "ip_address" "95.206.93.155" "country" "Cuba" "country_code" "CU" "city" "Güira de Melena" "longitude" "-82.5131717" "latitude" "22.795672" "last_login" "1587357102" +HSET "user:4316" "first_name" "Robert" "last_name" "Bedson" "email" "rbedson8t@sphinn.com" "gender" "male" "ip_address" "201.40.153.125" "country" "France" "country_code" "FR" "city" "Thiers" "longitude" "3.53936" "latitude" "45.85029" "last_login" "1593399865" +HSET "user:4317" "first_name" "Cassi" "last_name" "Muddle" "email" "cmuddle8u@feedburner.com" "gender" "female" "ip_address" "53.94.179.43" "country" "Indonesia" "country_code" "ID" "city" "Caringin" "longitude" "106.8768415" "latitude" "-6.7387737" "last_login" "1584038931" +HSET "user:4318" "first_name" "Conway" "last_name" "O' Sullivan" "email" "cosullivan8v@joomla.org" "gender" "male" "ip_address" "88.156.149.1" "country" "China" "country_code" "CN" "city" "Huili" "longitude" "102.244683" "latitude" "26.655026" "last_login" "1588574515" +HSET "user:4319" "first_name" "Dael" "last_name" "Milmoe" "email" "dmilmoe8w@wired.com" "gender" "male" "ip_address" "31.224.104.13" "country" "China" "country_code" "CN" "city" "Matangshan" "longitude" "119.150254" "latitude" "31.361491" "last_login" "1582284014" +HSET "user:4320" "first_name" "Rafa" "last_name" "Hedley" "email" "rhedley8x@webeden.co.uk" "gender" "female" "ip_address" "247.58.53.82" "country" "Saudi Arabia" "country_code" "SA" "city" "‘Afīf" "longitude" "42.9124955" "latitude" "23.9052203" "last_login" "1594930462" +HSET "user:4321" "first_name" "Wyn" "last_name" "Bruniges" "email" "wbruniges8y@who.int" "gender" "male" "ip_address" "111.127.34.97" "country" "Ukraine" "country_code" "UA" "city" "Dnipryany" "longitude" "33.2473218" "latitude" "46.7523145" "last_login" "1586887657" +HSET "user:4322" "first_name" "Barbabra" "last_name" "Longfoot" "email" "blongfoot8z@vistaprint.com" "gender" "female" "ip_address" "26.129.82.35" "country" "Indonesia" "country_code" "ID" "city" "Cikuray" "longitude" "107.86" "latitude" "-7.3225" "last_login" "1584543503" +HSET "user:4323" "first_name" "Horacio" "last_name" "de Nore" "email" "hdenore90@weebly.com" "gender" "male" "ip_address" "87.243.65.129" "country" "Indonesia" "country_code" "ID" "city" "Tanahedang" "longitude" "122.9028" "latitude" "-8.5534" "last_login" "1590480350" +HSET "user:4324" "first_name" "Shea" "last_name" "Jakaway" "email" "sjakaway91@census.gov" "gender" "female" "ip_address" "165.203.50.145" "country" "Nigeria" "country_code" "NG" "city" "Ohafia-Ifigh" "longitude" "7.81191" "latitude" "5.61455" "last_login" "1578622600" +HSET "user:4325" "first_name" "Bobine" "last_name" "Timcke" "email" "btimcke92@cam.ac.uk" "gender" "female" "ip_address" "74.31.89.190" "country" "Ukraine" "country_code" "UA" "city" "Zolochiv" "longitude" "24.901371" "latitude" "49.80941" "last_login" "1593323461" +HSET "user:4326" "first_name" "Carleen" "last_name" "Klaff" "email" "cklaff93@bing.com" "gender" "female" "ip_address" "6.135.53.102" "country" "Russia" "country_code" "RU" "city" "Kulary" "longitude" "45.5034856" "latitude" "43.2388068" "last_login" "1579446351" +HSET "user:4327" "first_name" "Demetre" "last_name" "Kohrs" "email" "dkohrs94@free.fr" "gender" "male" "ip_address" "218.191.239.143" "country" "Indonesia" "country_code" "ID" "city" "Weepangali" "longitude" "119.2627176" "latitude" "-9.4355285" "last_login" "1578730539" +HSET "user:4328" "first_name" "Nolan" "last_name" "Scotchmur" "email" "nscotchmur95@hugedomains.com" "gender" "male" "ip_address" "159.197.194.21" "country" "Russia" "country_code" "RU" "city" "Markovo" "longitude" "107.092445" "latitude" "57.315861" "last_login" "1580391249" +HSET "user:4329" "first_name" "Dilly" "last_name" "Swanbourne" "email" "dswanbourne96@mit.edu" "gender" "male" "ip_address" "126.194.130.7" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Zborište" "longitude" "16.018026" "latitude" "45.1458598" "last_login" "1587004316" +HSET "user:4330" "first_name" "Layton" "last_name" "Ghiroldi" "email" "lghiroldi97@indiatimes.com" "gender" "male" "ip_address" "151.211.117.214" "country" "Indonesia" "country_code" "ID" "city" "Bobojong" "longitude" "107.260056" "latitude" "-6.7535737" "last_login" "1583489527" +HSET "user:4331" "first_name" "Kirbee" "last_name" "Takos" "email" "ktakos98@posterous.com" "gender" "female" "ip_address" "58.100.17.131" "country" "Sweden" "country_code" "SE" "city" "Eskilstuna" "longitude" "16.3732686" "latitude" "59.4084121" "last_login" "1581809313" +HSET "user:4332" "first_name" "Walsh" "last_name" "Outhwaite" "email" "wouthwaite99@chronoengine.com" "gender" "male" "ip_address" "112.187.71.25" "country" "Poland" "country_code" "PL" "city" "Wilków" "longitude" "17.649817" "latitude" "51.1146113" "last_login" "1598749319" +HSET "user:4333" "first_name" "Natale" "last_name" "Beverley" "email" "nbeverley9a@newyorker.com" "gender" "male" "ip_address" "122.15.66.229" "country" "China" "country_code" "CN" "city" "Fangshan" "longitude" "116.143267" "latitude" "39.749144" "last_login" "1597456540" +HSET "user:4334" "first_name" "Eloise" "last_name" "Penketh" "email" "epenketh9b@skyrock.com" "gender" "female" "ip_address" "130.186.87.43" "country" "Bulgaria" "country_code" "BG" "city" "Lesichevo" "longitude" "24.1115593" "latitude" "42.3569364" "last_login" "1570958685" +HSET "user:4335" "first_name" "Frederick" "last_name" "Lowes" "email" "flowes9c@icio.us" "gender" "male" "ip_address" "27.234.125.162" "country" "Botswana" "country_code" "BW" "city" "Letlhakeng" "longitude" "25.0288051" "latitude" "-24.097317" "last_login" "1582713390" +HSET "user:4336" "first_name" "Dorothea" "last_name" "Panther" "email" "dpanther9d@ebay.com" "gender" "female" "ip_address" "181.4.96.30" "country" "Venezuela" "country_code" "VE" "city" "Maripa" "longitude" "-65.1892471" "latitude" "7.4154444" "last_login" "1598231923" +HSET "user:4337" "first_name" "Arlyne" "last_name" "Foggarty" "email" "afoggarty9e@fastcompany.com" "gender" "female" "ip_address" "115.87.134.37" "country" "China" "country_code" "CN" "city" "Chengji" "longitude" "104.066801" "latitude" "30.572815" "last_login" "1588897459" +HSET "user:4338" "first_name" "Hewie" "last_name" "Mulbery" "email" "hmulbery9f@over-blog.com" "gender" "male" "ip_address" "166.94.87.9" "country" "Myanmar" "country_code" "MM" "city" "Bogale" "longitude" "95.4018087" "latitude" "16.2864333" "last_login" "1575235299" +HSET "user:4339" "first_name" "Ronnie" "last_name" "Cramond" "email" "rcramond9g@tinypic.com" "gender" "male" "ip_address" "209.55.71.54" "country" "Portugal" "country_code" "PT" "city" "Caridade" "longitude" "-7.5669496" "latitude" "38.4475572" "last_login" "1568660607" +HSET "user:4340" "first_name" "Cecilius" "last_name" "Dyet" "email" "cdyet9h@blogs.com" "gender" "male" "ip_address" "197.156.140.176" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Starcevica" "longitude" "17.2038547" "latitude" "44.7607693" "last_login" "1585035929" +HSET "user:4341" "first_name" "Luz" "last_name" "Sibbert" "email" "lsibbert9i@loc.gov" "gender" "female" "ip_address" "62.80.240.154" "country" "Portugal" "country_code" "PT" "city" "Olho Marinho" "longitude" "-9.232542" "latitude" "39.3253135" "last_login" "1570196579" +HSET "user:4342" "first_name" "Hersch" "last_name" "Hardeman" "email" "hhardeman9j@weather.com" "gender" "male" "ip_address" "72.76.243.232" "country" "Mexico" "country_code" "MX" "city" "Guadalupe" "longitude" "-99.1135903" "latitude" "19.4838854" "last_login" "1580942649" +HSET "user:4343" "first_name" "Connie" "last_name" "Kobisch" "email" "ckobisch9k@marriott.com" "gender" "female" "ip_address" "17.213.160.48" "country" "China" "country_code" "CN" "city" "Xuri" "longitude" "100.682238" "latitude" "31.988669" "last_login" "1587374637" +HSET "user:4344" "first_name" "Elliot" "last_name" "Prestney" "email" "eprestney9l@hc360.com" "gender" "male" "ip_address" "108.8.100.231" "country" "Armenia" "country_code" "AM" "city" "Norabats’" "longitude" "44.4322092" "latitude" "40.1068238" "last_login" "1575284561" +HSET "user:4345" "first_name" "Hyacinthe" "last_name" "Marwood" "email" "hmarwood9m@businesswire.com" "gender" "female" "ip_address" "147.41.98.224" "country" "Honduras" "country_code" "HN" "city" "El Marañón" "longitude" "-88.0534236" "latitude" "15.3954121" "last_login" "1587405974" +HSET "user:4346" "first_name" "Renelle" "last_name" "Tabrett" "email" "rtabrett9n@slideshare.net" "gender" "female" "ip_address" "74.44.120.208" "country" "Armenia" "country_code" "AM" "city" "Goght’" "longitude" "44.7810683" "latitude" "40.1366726" "last_login" "1587792145" +HSET "user:4347" "first_name" "Cordula" "last_name" "Sleigh" "email" "csleigh9o@phoca.cz" "gender" "female" "ip_address" "137.150.127.181" "country" "Armenia" "country_code" "AM" "city" "Areni" "longitude" "45.1858986" "latitude" "39.7230741" "last_login" "1569983985" +HSET "user:4348" "first_name" "Jimmy" "last_name" "Jaquest" "email" "jjaquest9p@businessweek.com" "gender" "male" "ip_address" "186.160.19.63" "country" "Croatia" "country_code" "HR" "city" "Vis" "longitude" "16.1828781" "latitude" "43.0602104" "last_login" "1584197333" +HSET "user:4349" "first_name" "Olga" "last_name" "Pavitt" "email" "opavitt9q@telegraph.co.uk" "gender" "female" "ip_address" "33.165.246.81" "country" "Indonesia" "country_code" "ID" "city" "Sindangjati" "longitude" "102.6934048" "latitude" "-3.4964316" "last_login" "1583344757" +HSET "user:4350" "first_name" "Aharon" "last_name" "Cayton" "email" "acayton9r@technorati.com" "gender" "male" "ip_address" "229.82.196.211" "country" "China" "country_code" "CN" "city" "Yangcheng" "longitude" "120.16366" "latitude" "33.347316" "last_login" "1597869101" +HSET "user:4351" "first_name" "Maurise" "last_name" "Collaton" "email" "mcollaton9s@canalblog.com" "gender" "male" "ip_address" "45.37.26.67" "country" "Russia" "country_code" "RU" "city" "Firovo" "longitude" "33.70211" "latitude" "57.48135" "last_login" "1576580088" +HSET "user:4352" "first_name" "Dmitri" "last_name" "Spatig" "email" "dspatig9t@google.com.hk" "gender" "male" "ip_address" "52.181.154.18" "country" "United States" "country_code" "US" "city" "Santa Monica" "longitude" "-118.5" "latitude" "34.02" "last_login" "1592814066" +HSET "user:4353" "first_name" "Trueman" "last_name" "Duesbury" "email" "tduesbury9u@hexun.com" "gender" "male" "ip_address" "170.38.39.1" "country" "China" "country_code" "CN" "city" "Baitu" "longitude" "103.498609" "latitude" "34.675197" "last_login" "1598187647" +HSET "user:4354" "first_name" "Barret" "last_name" "Million" "email" "bmillion9v@bigcartel.com" "gender" "male" "ip_address" "206.31.1.127" "country" "Brazil" "country_code" "BR" "city" "Jacareí" "longitude" "-45.9662542" "latitude" "-23.2987827" "last_login" "1594817519" +HSET "user:4355" "first_name" "Rab" "last_name" "Forbes" "email" "rforbes9w@pinterest.com" "gender" "male" "ip_address" "172.167.46.105" "country" "Ukraine" "country_code" "UA" "city" "Luzhany" "longitude" "25.7753797" "latitude" "48.3627105" "last_login" "1568772988" +HSET "user:4356" "first_name" "Georgette" "last_name" "Habard" "email" "ghabard9x@sogou.com" "gender" "female" "ip_address" "108.43.218.233" "country" "Poland" "country_code" "PL" "city" "Ełk" "longitude" "22.3619798" "latitude" "53.8249945" "last_login" "1569323200" +HSET "user:4357" "first_name" "Ailyn" "last_name" "Trase" "email" "atrase9y@mapy.cz" "gender" "female" "ip_address" "134.81.120.132" "country" "China" "country_code" "CN" "city" "Dayong" "longitude" "110.451191" "latitude" "29.103856" "last_login" "1570069765" +HSET "user:4358" "first_name" "Adair" "last_name" "Kilrow" "email" "akilrow9z@dailymail.co.uk" "gender" "male" "ip_address" "101.29.113.41" "country" "Nigeria" "country_code" "NG" "city" "Okpoga" "longitude" "7.8096037" "latitude" "7.0410845" "last_login" "1576828373" +HSET "user:4359" "first_name" "Gaultiero" "last_name" "Moat" "email" "gmoata0@altervista.org" "gender" "male" "ip_address" "117.113.68.57" "country" "Portugal" "country_code" "PT" "city" "Souto" "longitude" "-8.5863716" "latitude" "41.5608072" "last_login" "1599113526" +HSET "user:4360" "first_name" "Kippy" "last_name" "Antoney" "email" "kantoneya1@usgs.gov" "gender" "male" "ip_address" "176.103.198.224" "country" "Albania" "country_code" "AL" "city" "Allkaj" "longitude" "19.7487502" "latitude" "40.8591123" "last_login" "1598743719" +HSET "user:4361" "first_name" "Frank" "last_name" "Maylor" "email" "fmaylora2@friendfeed.com" "gender" "female" "ip_address" "3.52.70.211" "country" "Russia" "country_code" "RU" "city" "Yedogon" "longitude" "43.1000425" "latitude" "40.6108358" "last_login" "1592737155" +HSET "user:4362" "first_name" "Earl" "last_name" "Carmont" "email" "ecarmonta3@alexa.com" "gender" "male" "ip_address" "136.118.172.44" "country" "Portugal" "country_code" "PT" "city" "Mó" "longitude" "-8.4826853" "latitude" "41.646065" "last_login" "1573352221" +HSET "user:4363" "first_name" "Kerwinn" "last_name" "Goodge" "email" "kgoodgea4@godaddy.com" "gender" "male" "ip_address" "189.28.13.190" "country" "Sweden" "country_code" "SE" "city" "Ängelholm" "longitude" "12.8657225" "latitude" "56.2419057" "last_login" "1581652494" +HSET "user:4364" "first_name" "Maureen" "last_name" "Adamek" "email" "madameka5@oakley.com" "gender" "female" "ip_address" "170.234.145.122" "country" "Russia" "country_code" "RU" "city" "Staryy Cherek" "longitude" "43.84694" "latitude" "43.47139" "last_login" "1591976291" +HSET "user:4365" "first_name" "Alfie" "last_name" "Hayller" "email" "ahayllera6@telegraph.co.uk" "gender" "female" "ip_address" "205.134.166.123" "country" "Indonesia" "country_code" "ID" "city" "Karangasem Laok" "longitude" "112.8633" "latitude" "-6.936" "last_login" "1577476985" +HSET "user:4366" "first_name" "Lu" "last_name" "Christophers" "email" "lchristophersa7@ebay.co.uk" "gender" "female" "ip_address" "161.75.120.88" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.8180311" "latitude" "59.9173309" "last_login" "1583067769" +HSET "user:4367" "first_name" "Mufi" "last_name" "Prickett" "email" "mpricketta8@soundcloud.com" "gender" "female" "ip_address" "39.61.236.213" "country" "China" "country_code" "CN" "city" "Hongshan" "longitude" "113.39277" "latitude" "22.517585" "last_login" "1597457806" +HSET "user:4368" "first_name" "Launce" "last_name" "Erasmus" "email" "lerasmusa9@free.fr" "gender" "male" "ip_address" "107.38.187.28" "country" "China" "country_code" "CN" "city" "Gongbuxue" "longitude" "91.016402" "latitude" "28.841329" "last_login" "1571342876" +HSET "user:4369" "first_name" "Shepherd" "last_name" "Polsin" "email" "spolsinaa@cornell.edu" "gender" "male" "ip_address" "59.110.132.199" "country" "Philippines" "country_code" "PH" "city" "Herrera" "longitude" "120.9818412" "latitude" "14.6181466" "last_login" "1575813662" +HSET "user:4370" "first_name" "Janie" "last_name" "L'oiseau" "email" "jloiseauab@live.com" "gender" "female" "ip_address" "25.241.198.101" "country" "Cuba" "country_code" "CU" "city" "Jimaguayú" "longitude" "-77.8267218" "latitude" "21.241735" "last_login" "1597452232" +HSET "user:4371" "first_name" "Cazzie" "last_name" "Bontine" "email" "cbontineac@cyberchimps.com" "gender" "male" "ip_address" "124.116.145.223" "country" "Peru" "country_code" "PE" "city" "Olmos" "longitude" "-79.7455956" "latitude" "-5.9873416" "last_login" "1572244509" +HSET "user:4372" "first_name" "Mattie" "last_name" "Clawley" "email" "mclawleyad@nba.com" "gender" "female" "ip_address" "203.68.174.207" "country" "China" "country_code" "CN" "city" "Mocun" "longitude" "125.1797741" "latitude" "44.439044" "last_login" "1595907354" +HSET "user:4373" "first_name" "Ikey" "last_name" "Parken" "email" "iparkenae@huffingtonpost.com" "gender" "male" "ip_address" "143.183.87.146" "country" "Syria" "country_code" "SY" "city" "Dārayyā" "longitude" "36.2359629" "latitude" "33.456443" "last_login" "1573621758" +HSET "user:4374" "first_name" "Codi" "last_name" "Maps" "email" "cmapsaf@oracle.com" "gender" "male" "ip_address" "171.93.56.104" "country" "Syria" "country_code" "SY" "city" "Barrī ash Sharqī" "longitude" "37.22551" "latitude" "35.008579" "last_login" "1591769672" +HSET "user:4375" "first_name" "Eolande" "last_name" "Inkpin" "email" "einkpinag@samsung.com" "gender" "female" "ip_address" "64.95.249.165" "country" "Philippines" "country_code" "PH" "city" "Pangpang" "longitude" "123.8363399" "latitude" "10.2583233" "last_login" "1598495927" +HSET "user:4376" "first_name" "Rodger" "last_name" "Balch" "email" "rbalchah@facebook.com" "gender" "male" "ip_address" "112.76.58.48" "country" "Indonesia" "country_code" "ID" "city" "Samadua" "longitude" "96.7999931" "latitude" "3.7334765" "last_login" "1580319176" +HSET "user:4377" "first_name" "Frannie" "last_name" "Iozefovich" "email" "fiozefovichak@oakley.com" "gender" "female" "ip_address" "202.238.166.225" "country" "Kyrgyzstan" "country_code" "KG" "city" "Chayek" "longitude" "74.5404694" "latitude" "41.9339521" "last_login" "1572664449" +HSET "user:4378" "first_name" "Sayers" "last_name" "Biaggioni" "email" "sbiaggionial@issuu.com" "gender" "male" "ip_address" "151.35.100.206" "country" "Seychelles" "country_code" "SC" "city" "Port Glaud" "longitude" "55.4194753" "latitude" "-4.6488523" "last_login" "1581518968" +HSET "user:4379" "first_name" "Nikaniki" "last_name" "McAndie" "email" "nmcandieam@mayoclinic.com" "gender" "female" "ip_address" "2.47.92.216" "country" "Jordan" "country_code" "JO" "city" "Ma'an" "longitude" "35.7249409" "latitude" "30.1926637" "last_login" "1574998328" +HSET "user:4380" "first_name" "Rosabella" "last_name" "Abramski" "email" "rabramskian@nih.gov" "gender" "female" "ip_address" "62.182.98.107" "country" "China" "country_code" "CN" "city" "Zhenzhushan" "longitude" "117.468181" "latitude" "29.185721" "last_login" "1571164977" +HSET "user:4381" "first_name" "Nedda" "last_name" "Howling" "email" "nhowlingao@webeden.co.uk" "gender" "female" "ip_address" "143.206.195.9" "country" "Philippines" "country_code" "PH" "city" "Tigpalay" "longitude" "122.3399664" "latitude" "7.4854917" "last_login" "1587419384" +HSET "user:4382" "first_name" "Berny" "last_name" "Dusting" "email" "bdustingap@patch.com" "gender" "female" "ip_address" "6.230.98.33" "country" "Brazil" "country_code" "BR" "city" "Pirassununga" "longitude" "-47.4220818" "latitude" "-21.9896473" "last_login" "1583032488" +HSET "user:4383" "first_name" "Aurel" "last_name" "Batrop" "email" "abatropaq@scientificamerican.com" "gender" "female" "ip_address" "97.15.17.129" "country" "Portugal" "country_code" "PT" "city" "Samouco" "longitude" "-9.0038291" "latitude" "38.7226348" "last_login" "1590784917" +HSET "user:4384" "first_name" "Sumner" "last_name" "Waterfall" "email" "swaterfallaj@twitter.com" "gender" "male" "ip_address" "89.201.224.229" "country" "Philippines" "country_code" "PH" "city" "Pancol" "longitude" "119.4011078" "latitude" "10.9005556" "last_login" "1583551629" +HSET "user:4385" "first_name" "Patrica" "last_name" "De Atta" "email" "pdeattaas@tinypic.com" "gender" "female" "ip_address" "227.242.253.93" "country" "Sweden" "country_code" "SE" "city" "Moholm" "longitude" "14.0368868" "latitude" "58.6073483" "last_login" "1594750329" +HSET "user:4386" "first_name" "Sheeree" "last_name" "Rouch" "email" "srouchat@wisc.edu" "gender" "female" "ip_address" "49.15.212.245" "country" "Uzbekistan" "country_code" "UZ" "city" "Pop Shahri" "longitude" "71.1022" "latitude" "40.87642" "last_login" "1583740607" +HSET "user:4387" "first_name" "Randal" "last_name" "Pawelczyk" "email" "rpawelczykau@ucoz.com" "gender" "male" "ip_address" "163.250.74.237" "country" "Brazil" "country_code" "BR" "city" "Pantanal" "longitude" "-48.5162223" "latitude" "-27.6146187" "last_login" "1582181000" +HSET "user:4388" "first_name" "Morly" "last_name" "Chetwin" "email" "mchetwinav@marriott.com" "gender" "male" "ip_address" "191.38.85.18" "country" "China" "country_code" "CN" "city" "Chixi" "longitude" "121.266579" "latitude" "30.169665" "last_login" "1577286816" +HSET "user:4389" "first_name" "Lucila" "last_name" "Blazek" "email" "lblazekaw@dot.gov" "gender" "female" "ip_address" "32.59.39.93" "country" "Marshall Islands" "country_code" "MH" "city" "Ebaye" "longitude" "167.7373396" "latitude" "8.7814708" "last_login" "1579552355" +HSET "user:4390" "first_name" "Nancy" "last_name" "Gollop" "email" "ngollopax@qq.com" "gender" "female" "ip_address" "127.111.155.42" "country" "China" "country_code" "CN" "city" "Jindu" "longitude" "112.515033" "latitude" "23.036996" "last_login" "1583344999" +HSET "user:4391" "first_name" "Micheal" "last_name" "Tumini" "email" "mtuminiay@foxnews.com" "gender" "male" "ip_address" "38.253.108.68" "country" "China" "country_code" "CN" "city" "Nyagla" "longitude" "96.842945" "latitude" "32.036154" "last_login" "1569324129" +HSET "user:4392" "first_name" "Huberto" "last_name" "O'Dempsey" "email" "hodempseyaz@answers.com" "gender" "male" "ip_address" "222.196.86.87" "country" "China" "country_code" "CN" "city" "Zheshan" "longitude" "122.207215" "latitude" "29.985295" "last_login" "1572610214" +HSET "user:4393" "first_name" "Rhianon" "last_name" "Haslock(e)" "email" "rhaslockeb0@prweb.com" "gender" "female" "ip_address" "158.175.26.83" "country" "Colombia" "country_code" "CO" "city" "Ciénaga" "longitude" "-73.9830029" "latitude" "10.8698035" "last_login" "1577547830" +HSET "user:4394" "first_name" "Chrystal" "last_name" "Ashmole" "email" "cashmoleb1@msn.com" "gender" "female" "ip_address" "239.150.12.19" "country" "Vietnam" "country_code" "VN" "city" "Phong Điền" "longitude" "107.3375791" "latitude" "16.503112" "last_login" "1591986711" +HSET "user:4395" "first_name" "Durant" "last_name" "Bendare" "email" "dbendareb2@wufoo.com" "gender" "male" "ip_address" "195.38.141.77" "country" "China" "country_code" "CN" "city" "Qukou" "longitude" "116.251947" "latitude" "29.731101" "last_login" "1580493278" +HSET "user:4396" "first_name" "Vassily" "last_name" "Sellek" "email" "vsellekb3@patch.com" "gender" "male" "ip_address" "132.146.17.139" "country" "Indonesia" "country_code" "ID" "city" "Mangunjaya" "longitude" "107.0568962" "latitude" "-6.2377312" "last_login" "1576616585" +HSET "user:4397" "first_name" "Bernete" "last_name" "Dabel" "email" "bdabelb4@tripod.com" "gender" "female" "ip_address" "161.103.139.48" "country" "Indonesia" "country_code" "ID" "city" "Geneng" "longitude" "111.4156647" "latitude" "-7.4873219" "last_login" "1596719836" +HSET "user:4398" "first_name" "Karola" "last_name" "Crohan" "email" "kcrohanb5@domainmarket.com" "gender" "female" "ip_address" "19.240.64.25" "country" "United States" "country_code" "US" "city" "Jackson" "longitude" "-90.1565209" "latitude" "32.3361632" "last_login" "1570790104" +HSET "user:4399" "first_name" "Layla" "last_name" "Gilks" "email" "lgilksb6@tripod.com" "gender" "female" "ip_address" "144.191.108.108" "country" "Sri Lanka" "country_code" "LK" "city" "Battaramulla South" "longitude" "79.8908308" "latitude" "6.9280156" "last_login" "1580014967" +HSET "user:4400" "first_name" "Ike" "last_name" "Kyttor" "email" "ikyttorb7@bandcamp.com" "gender" "male" "ip_address" "149.202.11.28" "country" "Ireland" "country_code" "IE" "city" "Coolock" "longitude" "-6.1920933" "latitude" "53.3916434" "last_login" "1578070507" +HSET "user:4401" "first_name" "Gladys" "last_name" "Gosforth" "email" "ggosforthb8@apple.com" "gender" "female" "ip_address" "9.84.147.182" "country" "China" "country_code" "CN" "city" "Nantian" "longitude" "114.236875" "latitude" "22.556499" "last_login" "1590377919" +HSET "user:4402" "first_name" "Barbette" "last_name" "Lantaph" "email" "blantaphb9@bing.com" "gender" "female" "ip_address" "144.189.143.123" "country" "China" "country_code" "CN" "city" "Beiwucha" "longitude" "86.325054" "latitude" "44.533814" "last_login" "1571298531" +HSET "user:4403" "first_name" "Major" "last_name" "Reach" "email" "mreachba@feedburner.com" "gender" "male" "ip_address" "90.0.81.170" "country" "Brazil" "country_code" "BR" "city" "Jacobina" "longitude" "-40.5120603" "latitude" "-11.1816506" "last_login" "1587058848" +HSET "user:4404" "first_name" "Quill" "last_name" "De Gowe" "email" "qdegowebb@guardian.co.uk" "gender" "male" "ip_address" "28.174.239.164" "country" "Ukraine" "country_code" "UA" "city" "Starychi" "longitude" "23.5488713" "latitude" "49.9742883" "last_login" "1588606491" +HSET "user:4405" "first_name" "Modesty" "last_name" "Bowers" "email" "mbowersbc@edublogs.org" "gender" "female" "ip_address" "120.51.140.245" "country" "Philippines" "country_code" "PH" "city" "Tagapul-an" "longitude" "124.1609842" "latitude" "12.0457956" "last_login" "1599378991" +HSET "user:4406" "first_name" "Scot" "last_name" "Baldacchi" "email" "sbaldacchibd@flickr.com" "gender" "male" "ip_address" "35.147.36.197" "country" "Tanzania" "country_code" "TZ" "city" "Ndago" "longitude" "34.35" "latitude" "-4.6" "last_login" "1596785940" +HSET "user:4407" "first_name" "Fletcher" "last_name" "Wallworke" "email" "fwallworkebe@virginia.edu" "gender" "male" "ip_address" "188.120.63.147" "country" "Indonesia" "country_code" "ID" "city" "Gampang" "longitude" "112.6004965" "latitude" "-7.482537" "last_login" "1578765265" +HSET "user:4408" "first_name" "Rori" "last_name" "Downham" "email" "rdownhambf@over-blog.com" "gender" "female" "ip_address" "228.222.29.51" "country" "Mexico" "country_code" "MX" "city" "San Miguel" "longitude" "-99.0806088" "latitude" "19.3579802" "last_login" "1579459007" +HSET "user:4409" "first_name" "Hadrian" "last_name" "Prozescky" "email" "hprozesckybg@flavors.me" "gender" "male" "ip_address" "32.227.222.177" "country" "Brazil" "country_code" "BR" "city" "Mombaça" "longitude" "-39.734338" "latitude" "-5.8002425" "last_login" "1594354822" +HSET "user:4410" "first_name" "Ring" "last_name" "Stockau" "email" "rstockaubh@comsenz.com" "gender" "male" "ip_address" "15.229.69.66" "country" "Nigeria" "country_code" "NG" "city" "Abuochiche" "longitude" "8.8997015" "latitude" "6.703272" "last_login" "1577109196" +HSET "user:4411" "first_name" "Forest" "last_name" "Shillum" "email" "fshillumbi@hp.com" "gender" "male" "ip_address" "236.200.179.229" "country" "China" "country_code" "CN" "city" "Xinbei" "longitude" "119.97167" "latitude" "31.830362" "last_login" "1597933931" +HSET "user:4412" "first_name" "Dietrich" "last_name" "Lebbon" "email" "dlebbonbj@sphinn.com" "gender" "male" "ip_address" "204.47.44.74" "country" "China" "country_code" "CN" "city" "Doushaguan" "longitude" "104.121341" "latitude" "28.0367067" "last_login" "1582456046" +HSET "user:4413" "first_name" "Imogen" "last_name" "Zaple" "email" "izaplebk@t.co" "gender" "female" "ip_address" "31.126.129.253" "country" "United Kingdom" "country_code" "GB" "city" "Manchester" "longitude" "-2.2294364" "latitude" "53.4508777" "last_login" "1599014044" +HSET "user:4414" "first_name" "Vladimir" "last_name" "Vlahos" "email" "vvlahosbl@nhs.uk" "gender" "male" "ip_address" "93.236.64.172" "country" "Brazil" "country_code" "BR" "city" "Itaí" "longitude" "-49.0924714" "latitude" "-23.4217742" "last_login" "1589351754" +HSET "user:4415" "first_name" "Irvine" "last_name" "Dillestone" "email" "idillestonebm@admin.ch" "gender" "male" "ip_address" "242.177.98.41" "country" "Indonesia" "country_code" "ID" "city" "Rapas" "longitude" "132.324948" "latitude" "-2.1653279" "last_login" "1586649550" +HSET "user:4416" "first_name" "Myriam" "last_name" "Manach" "email" "mmanachbn@abc.net.au" "gender" "female" "ip_address" "131.236.255.138" "country" "Peru" "country_code" "PE" "city" "Zepita" "longitude" "-69.1014935" "latitude" "-16.4981761" "last_login" "1587948283" +HSET "user:4417" "first_name" "Laurella" "last_name" "Silverthorn" "email" "lsilverthornbo@multiply.com" "gender" "female" "ip_address" "84.240.111.43" "country" "Czech Republic" "country_code" "CZ" "city" "Horní Stropnice" "longitude" "14.732221" "latitude" "48.7618689" "last_login" "1569948309" +HSET "user:4418" "first_name" "Jose" "last_name" "Goomes" "email" "jgoomesbp@vimeo.com" "gender" "male" "ip_address" "67.127.68.209" "country" "France" "country_code" "FR" "city" "Le Mans" "longitude" "0.1924459" "latitude" "47.9956173" "last_login" "1586266501" +HSET "user:4419" "first_name" "Johnna" "last_name" "Gatenby" "email" "jgatenbybq@sphinn.com" "gender" "female" "ip_address" "236.154.152.123" "country" "Russia" "country_code" "RU" "city" "Nekrasovka" "longitude" "37.9416367" "latitude" "55.6152783" "last_login" "1576510766" +HSET "user:4420" "first_name" "Jojo" "last_name" "Matys" "email" "jmatysbr@shareasale.com" "gender" "female" "ip_address" "141.239.179.50" "country" "China" "country_code" "CN" "city" "Zengguang" "longitude" "116.9237911" "latitude" "39.0527074" "last_login" "1573085722" +HSET "user:4421" "first_name" "Niki" "last_name" "Grastye" "email" "ngrastyebs@taobao.com" "gender" "male" "ip_address" "206.32.78.43" "country" "Ukraine" "country_code" "UA" "city" "Yasinya" "longitude" "24.3450737" "latitude" "48.2595628" "last_login" "1574333578" +HSET "user:4422" "first_name" "Lizbeth" "last_name" "Claibourn" "email" "lclaibournbt@goo.ne.jp" "gender" "female" "ip_address" "115.218.54.243" "country" "Finland" "country_code" "FI" "city" "Saukkola" "longitude" "23.9618656" "latitude" "60.3802969" "last_login" "1583584511" +HSET "user:4423" "first_name" "Juliet" "last_name" "Geach" "email" "jgeachbu@dion.ne.jp" "gender" "female" "ip_address" "28.151.60.114" "country" "Lithuania" "country_code" "LT" "city" "Kupiskis" "longitude" "24.9815513" "latitude" "55.8395478" "last_login" "1570524138" +HSET "user:4424" "first_name" "Dona" "last_name" "Adamides" "email" "dadamidesbv@gizmodo.com" "gender" "female" "ip_address" "254.15.212.192" "country" "Indonesia" "country_code" "ID" "city" "Tegaldowo" "longitude" "111.5170196" "latitude" "-6.8695345" "last_login" "1599436040" +HSET "user:4425" "first_name" "Misha" "last_name" "Melesk" "email" "mmeleskbw@jigsy.com" "gender" "female" "ip_address" "185.13.207.84" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Kasangulu" "longitude" "15.1668326" "latitude" "-4.5887697" "last_login" "1568612636" +HSET "user:4426" "first_name" "Violante" "last_name" "Dowles" "email" "vdowlesbx@dot.gov" "gender" "female" "ip_address" "35.206.37.218" "country" "North Korea" "country_code" "KP" "city" "Yŏnan-ŭp" "longitude" "126.16111" "latitude" "37.90889" "last_login" "1571588463" +HSET "user:4427" "first_name" "Keelia" "last_name" "Hagland" "email" "khaglandby@un.org" "gender" "female" "ip_address" "59.37.255.180" "country" "Poland" "country_code" "PL" "city" "Krzeczów" "longitude" "20.5122334" "latitude" "50.0055345" "last_login" "1578572502" +HSET "user:4428" "first_name" "Kenn" "last_name" "Furber" "email" "kfurberbz@xrea.com" "gender" "male" "ip_address" "66.240.107.246" "country" "Czech Republic" "country_code" "CZ" "city" "Zátor" "longitude" "17.5929608" "latitude" "50.0341272" "last_login" "1589134003" +HSET "user:4429" "first_name" "Bail" "last_name" "Meachan" "email" "bmeachanc0@cdbaby.com" "gender" "male" "ip_address" "176.13.124.74" "country" "China" "country_code" "CN" "city" "Xinglong" "longitude" "117.500558" "latitude" "40.417358" "last_login" "1575269244" +HSET "user:4430" "first_name" "Nadine" "last_name" "Dowzell" "email" "ndowzellc1@ucsd.edu" "gender" "female" "ip_address" "245.193.152.11" "country" "Brazil" "country_code" "BR" "city" "Barras" "longitude" "-42.2925342" "latitude" "-4.2450638" "last_login" "1583150796" +HSET "user:4431" "first_name" "Ivonne" "last_name" "Duckit" "email" "iduckitc2@reuters.com" "gender" "female" "ip_address" "28.69.194.148" "country" "Bulgaria" "country_code" "BG" "city" "Medovene" "longitude" "26.5290794" "latitude" "43.7728532" "last_login" "1571229896" +HSET "user:4432" "first_name" "Georges" "last_name" "Copeland" "email" "gcopelandc3@livejournal.com" "gender" "male" "ip_address" "46.67.170.212" "country" "South Africa" "country_code" "ZA" "city" "Lady Frere" "longitude" "27.3469574" "latitude" "-31.7457502" "last_login" "1587970084" +HSET "user:4433" "first_name" "Kesley" "last_name" "Birchenough" "email" "kbirchenoughc4@mapy.cz" "gender" "female" "ip_address" "113.108.13.243" "country" "Indonesia" "country_code" "ID" "city" "Rantau" "longitude" "115.143997" "latitude" "-2.937572" "last_login" "1572762938" +HSET "user:4434" "first_name" "Vlad" "last_name" "Donaldson" "email" "vdonaldsonc5@wsj.com" "gender" "male" "ip_address" "59.47.183.91" "country" "South Korea" "country_code" "KR" "city" "Anseong" "longitude" "127.2796786" "latitude" "37.0079695" "last_login" "1596003748" +HSET "user:4435" "first_name" "Armand" "last_name" "Jacobsson" "email" "ajacobssonc6@123-reg.co.uk" "gender" "male" "ip_address" "25.225.138.54" "country" "China" "country_code" "CN" "city" "Luqiao" "longitude" "121.365123" "latitude" "28.582654" "last_login" "1593110379" +HSET "user:4436" "first_name" "Chrysler" "last_name" "Siggs" "email" "csiggsc7@unesco.org" "gender" "female" "ip_address" "132.227.4.12" "country" "Indonesia" "country_code" "ID" "city" "Cidolog" "longitude" "108.439474" "latitude" "-7.4209758" "last_login" "1585643727" +HSET "user:4437" "first_name" "Susana" "last_name" "Fibben" "email" "sfibbenc8@rambler.ru" "gender" "female" "ip_address" "151.226.79.255" "country" "Russia" "country_code" "RU" "city" "Tukan" "longitude" "61.2971487" "latitude" "55.1613358" "last_login" "1599035906" +HSET "user:4438" "first_name" "Glori" "last_name" "Scroxton" "email" "gscroxtonc9@yellowpages.com" "gender" "female" "ip_address" "156.38.190.135" "country" "Japan" "country_code" "JP" "city" "Otaru" "longitude" "130.845304" "latitude" "32.9267098" "last_login" "1574121466" +HSET "user:4439" "first_name" "Neddie" "last_name" "Giannazzi" "email" "ngiannazzica@auda.org.au" "gender" "male" "ip_address" "226.66.57.220" "country" "Poland" "country_code" "PL" "city" "Tolkmicko" "longitude" "19.5273042" "latitude" "54.3202047" "last_login" "1583375684" +HSET "user:4440" "first_name" "Dimitry" "last_name" "Beane" "email" "dbeanecb@soup.io" "gender" "male" "ip_address" "162.189.123.43" "country" "Indonesia" "country_code" "ID" "city" "Maubasa" "longitude" "121.9373561" "latitude" "-8.8230363" "last_login" "1588123462" +HSET "user:4441" "first_name" "Ignatius" "last_name" "Loadman" "email" "iloadmancc@umich.edu" "gender" "male" "ip_address" "4.186.206.129" "country" "Greece" "country_code" "GR" "city" "Diónysos" "longitude" "23.8790184" "latitude" "38.0987438" "last_login" "1592651413" +HSET "user:4442" "first_name" "Anette" "last_name" "Depke" "email" "adepkecd@mozilla.com" "gender" "female" "ip_address" "143.210.158.66" "country" "Indonesia" "country_code" "ID" "city" "Ngori" "longitude" "111.5417207" "latitude" "-7.2355945" "last_login" "1570808673" +HSET "user:4443" "first_name" "Hailey" "last_name" "Millwall" "email" "hmillwallce@eventbrite.com" "gender" "male" "ip_address" "22.210.163.54" "country" "France" "country_code" "FR" "city" "Rungis" "longitude" "2.3572729" "latitude" "48.7471816" "last_login" "1576583133" +HSET "user:4444" "first_name" "Jehanna" "last_name" "Swede" "email" "jswedecf@unesco.org" "gender" "female" "ip_address" "245.253.181.119" "country" "China" "country_code" "CN" "city" "Beicheng" "longitude" "117.135488" "latitude" "39.224791" "last_login" "1585788144" +HSET "user:4445" "first_name" "Gillan" "last_name" "Dagless" "email" "gdaglesscg@wisc.edu" "gender" "female" "ip_address" "150.34.125.87" "country" "Uganda" "country_code" "UG" "city" "Lwengo" "longitude" "31.3998995" "latitude" "-0.4165288" "last_login" "1599889558" +HSET "user:4446" "first_name" "Christabel" "last_name" "Gillison" "email" "cgillisonch@wikispaces.com" "gender" "female" "ip_address" "246.34.143.3" "country" "Peru" "country_code" "PE" "city" "El Tambo" "longitude" "-77.0270549" "latitude" "-12.1253006" "last_login" "1598486197" +HSET "user:4447" "first_name" "Sheppard" "last_name" "Crottagh" "email" "scrottaghci@usgs.gov" "gender" "male" "ip_address" "206.124.211.3" "country" "China" "country_code" "CN" "city" "Mulan" "longitude" "128.043465" "latitude" "45.950582" "last_login" "1596575344" +HSET "user:4448" "first_name" "Sherwood" "last_name" "Krzyzowski" "email" "skrzyzowskicj@wix.com" "gender" "male" "ip_address" "66.135.184.73" "country" "Tanzania" "country_code" "TZ" "city" "Kibondo" "longitude" "30.7177509" "latitude" "-3.5837638" "last_login" "1586980635" +HSET "user:4449" "first_name" "Cecilius" "last_name" "Lyte" "email" "clyteck@mtv.com" "gender" "male" "ip_address" "184.43.21.136" "country" "Iran" "country_code" "IR" "city" "Mahābād" "longitude" "45.7337091" "latitude" "36.7683527" "last_login" "1583621396" +HSET "user:4450" "first_name" "Alley" "last_name" "Tessyman" "email" "atessymancl@craigslist.org" "gender" "male" "ip_address" "5.8.196.29" "country" "Poland" "country_code" "PL" "city" "Rybie" "longitude" "21.1921379" "latitude" "51.9857896" "last_login" "1571069495" +HSET "user:4451" "first_name" "Emelita" "last_name" "How" "email" "ehowcm@ovh.net" "gender" "female" "ip_address" "90.168.125.191" "country" "Russia" "country_code" "RU" "city" "Troitskaya" "longitude" "44.9887945" "latitude" "43.3045595" "last_login" "1580903723" +HSET "user:4452" "first_name" "Earle" "last_name" "McCraine" "email" "emccrainecn@amazon.de" "gender" "male" "ip_address" "92.127.147.173" "country" "Portugal" "country_code" "PT" "city" "Ervedosa do Douro" "longitude" "-7.4737393" "latitude" "41.1661451" "last_login" "1571131392" +HSET "user:4453" "first_name" "Dyanne" "last_name" "Dunphie" "email" "ddunphieco@chronoengine.com" "gender" "female" "ip_address" "60.253.224.237" "country" "Venezuela" "country_code" "VE" "city" "Arapuey" "longitude" "-70.95" "latitude" "9.25" "last_login" "1594379754" +HSET "user:4454" "first_name" "Moe" "last_name" "Buglass" "email" "mbuglasscp@lulu.com" "gender" "male" "ip_address" "205.170.214.128" "country" "Portugal" "country_code" "PT" "city" "Vessada" "longitude" "-8.5821839" "latitude" "40.5566629" "last_login" "1581855919" +HSET "user:4455" "first_name" "Fianna" "last_name" "Lukacs" "email" "flukacscq@harvard.edu" "gender" "female" "ip_address" "4.177.177.0" "country" "Nicaragua" "country_code" "NI" "city" "Comalapa" "longitude" "-85.5112879" "latitude" "12.283797" "last_login" "1597972516" +HSET "user:4456" "first_name" "Leopold" "last_name" "Karpychev" "email" "lkarpychevcr@homestead.com" "gender" "male" "ip_address" "170.195.27.175" "country" "Mexico" "country_code" "MX" "city" "Los Pinos" "longitude" "-101.4591146" "latitude" "19.2312719" "last_login" "1579658291" +HSET "user:4457" "first_name" "Bessy" "last_name" "Melchior" "email" "bmelchiorcs@gravatar.com" "gender" "female" "ip_address" "80.117.206.24" "country" "Colombia" "country_code" "CO" "city" "Buga" "longitude" "-76.2981163" "latitude" "3.8785364" "last_login" "1570510035" +HSET "user:4458" "first_name" "Olympia" "last_name" "Malimoe" "email" "omalimoect@ucsd.edu" "gender" "female" "ip_address" "83.70.181.253" "country" "Philippines" "country_code" "PH" "city" "Ilihan" "longitude" "121.010151" "latitude" "14.6425547" "last_login" "1590683648" +HSET "user:4459" "first_name" "Jessey" "last_name" "Varnham" "email" "jvarnhamcu@ed.gov" "gender" "male" "ip_address" "73.159.178.78" "country" "Turkmenistan" "country_code" "TM" "city" "Serhetabat" "longitude" "62.3271815" "latitude" "35.275142" "last_login" "1575501437" +HSET "user:4460" "first_name" "Steffen" "last_name" "Thowes" "email" "sthowescv@mediafire.com" "gender" "male" "ip_address" "30.171.219.63" "country" "Bulgaria" "country_code" "BG" "city" "Yakimovo" "longitude" "23.3663219" "latitude" "43.6347968" "last_login" "1593081765" +HSET "user:4461" "first_name" "Lulita" "last_name" "Humbert" "email" "lhumbertcw@paypal.com" "gender" "female" "ip_address" "230.139.75.22" "country" "Ukraine" "country_code" "UA" "city" "Chutove" "longitude" "35.1228303" "latitude" "49.7180346" "last_login" "1589409266" +HSET "user:4462" "first_name" "Aliza" "last_name" "Abys" "email" "aabyscx@globo.com" "gender" "female" "ip_address" "111.138.121.14" "country" "Croatia" "country_code" "HR" "city" "Pridraga" "longitude" "15.5846313" "latitude" "44.1509604" "last_login" "1587384053" +HSET "user:4463" "first_name" "Dasha" "last_name" "Beldham" "email" "dbeldhamcy@photobucket.com" "gender" "female" "ip_address" "68.216.136.177" "country" "China" "country_code" "CN" "city" "Yuanyang Zhen" "longitude" "104.782196" "latitude" "34.786179" "last_login" "1595118006" +HSET "user:4464" "first_name" "Vern" "last_name" "Hopfner" "email" "vhopfnercz@hatena.ne.jp" "gender" "male" "ip_address" "117.238.252.179" "country" "Indonesia" "country_code" "ID" "city" "Kadubincarung" "longitude" "106.1078627" "latitude" "-6.3517979" "last_login" "1587399303" +HSET "user:4465" "first_name" "Claresta" "last_name" "Vize" "email" "cvized0@netvibes.com" "gender" "female" "ip_address" "190.93.166.4" "country" "Indonesia" "country_code" "ID" "city" "Tambakan" "longitude" "107.7132895" "latitude" "-6.6597862" "last_login" "1594366795" +HSET "user:4466" "first_name" "Quinlan" "last_name" "Huniwall" "email" "qhuniwalld1@hugedomains.com" "gender" "male" "ip_address" "94.245.179.216" "country" "China" "country_code" "CN" "city" "Puyang" "longitude" "115.029215" "latitude" "35.761829" "last_login" "1598823914" +HSET "user:4467" "first_name" "Edwina" "last_name" "Hannaway" "email" "ehannawayd2@wufoo.com" "gender" "female" "ip_address" "47.37.9.234" "country" "Brazil" "country_code" "BR" "city" "Riachão das Neves" "longitude" "-45.2243578" "latitude" "-11.5527175" "last_login" "1577232607" +HSET "user:4468" "first_name" "Virgil" "last_name" "Ayree" "email" "vayreed3@addtoany.com" "gender" "male" "ip_address" "48.221.68.201" "country" "South Korea" "country_code" "KR" "city" "Taesal-li" "longitude" "126.4542" "latitude" "36.9714" "last_login" "1596386165" +HSET "user:4469" "first_name" "Auberon" "last_name" "O'Monahan" "email" "aomonahand4@oaic.gov.au" "gender" "male" "ip_address" "128.28.3.173" "country" "United States" "country_code" "US" "city" "Columbus" "longitude" "-82.9447782" "latitude" "40.078872" "last_login" "1573813281" +HSET "user:4470" "first_name" "Amata" "last_name" "McKinn" "email" "amckinnd5@usatoday.com" "gender" "female" "ip_address" "146.51.80.160" "country" "Peru" "country_code" "PE" "city" "Lluchubamba" "longitude" "-77.9710098" "latitude" "-7.5231833" "last_login" "1597137298" +HSET "user:4471" "first_name" "Ram" "last_name" "Kleinert" "email" "rkleinertd6@umn.edu" "gender" "male" "ip_address" "113.189.27.171" "country" "Sweden" "country_code" "SE" "city" "Sundbyberg" "longitude" "17.9325356" "latitude" "59.3763019" "last_login" "1582341053" +HSET "user:4472" "first_name" "Corney" "last_name" "Batisse" "email" "cbatissed7@gmpg.org" "gender" "male" "ip_address" "254.54.119.60" "country" "China" "country_code" "CN" "city" "Dongjiahe" "longitude" "119.761775" "latitude" "35.585575" "last_login" "1598407612" +HSET "user:4473" "first_name" "Fidela" "last_name" "Simkins" "email" "fsimkinsd8@bigcartel.com" "gender" "female" "ip_address" "85.240.47.38" "country" "China" "country_code" "CN" "city" "Baipenzhu" "longitude" "115.027634" "latitude" "23.067896" "last_login" "1585514341" +HSET "user:4474" "first_name" "Lanie" "last_name" "Frere" "email" "lfrered9@umich.edu" "gender" "male" "ip_address" "140.226.88.189" "country" "Hungary" "country_code" "HU" "city" "Budapest" "longitude" "19.0731949" "latitude" "47.4997688" "last_login" "1580032891" +HSET "user:4475" "first_name" "Rubi" "last_name" "Ilyin" "email" "rilyinda@wunderground.com" "gender" "female" "ip_address" "136.117.170.37" "country" "Belarus" "country_code" "BY" "city" "Horki" "longitude" "30.990449" "latitude" "54.2825201" "last_login" "1594692002" +HSET "user:4476" "first_name" "Griffy" "last_name" "Skinner" "email" "gskinnerdb@engadget.com" "gender" "male" "ip_address" "227.20.41.86" "country" "Russia" "country_code" "RU" "city" "Tsotsin-Yurt" "longitude" "45.9860099" "latitude" "43.2496743" "last_login" "1581541658" +HSET "user:4477" "first_name" "Aveline" "last_name" "Eayres" "email" "aeayresdc@livejournal.com" "gender" "female" "ip_address" "19.238.148.71" "country" "China" "country_code" "CN" "city" "Hengdian" "longitude" "120.3168231" "latitude" "29.1520649" "last_login" "1580184294" +HSET "user:4478" "first_name" "Elsworth" "last_name" "Sapir" "email" "esapirdd@51.la" "gender" "male" "ip_address" "233.30.163.20" "country" "France" "country_code" "FR" "city" "Hyères" "longitude" "6.1356499" "latitude" "43.1286974" "last_login" "1591323053" +HSET "user:4479" "first_name" "Shirl" "last_name" "De Angelis" "email" "sdeangelisde@elpais.com" "gender" "female" "ip_address" "166.60.103.221" "country" "Philippines" "country_code" "PH" "city" "Santo Domingo" "longitude" "123.7702587" "latitude" "13.2317498" "last_login" "1572087454" +HSET "user:4480" "first_name" "Doroteya" "last_name" "Keay" "email" "dkeaydf@360.cn" "gender" "female" "ip_address" "96.98.172.89" "country" "Colombia" "country_code" "CO" "city" "Morales" "longitude" "-73.868176" "latitude" "8.27533" "last_login" "1599974214" +HSET "user:4481" "first_name" "Raimundo" "last_name" "Stirzaker" "email" "rstirzakerdg@vk.com" "gender" "male" "ip_address" "231.239.151.1" "country" "Ukraine" "country_code" "UA" "city" "Vendychany" "longitude" "27.8023025" "latitude" "48.6184003" "last_login" "1597531356" +HSET "user:4482" "first_name" "Stefan" "last_name" "Alvis" "email" "salvisdh@i2i.jp" "gender" "male" "ip_address" "86.74.25.241" "country" "China" "country_code" "CN" "city" "Lijia" "longitude" "120.6240412" "latitude" "31.306136" "last_login" "1570569094" +HSET "user:4483" "first_name" "Cathi" "last_name" "Lidgate" "email" "clidgatedi@rediff.com" "gender" "female" "ip_address" "54.83.148.166" "country" "Indonesia" "country_code" "ID" "city" "Pangkalanbuun" "longitude" "111.622398" "latitude" "-2.688962" "last_login" "1583488623" +HSET "user:4484" "first_name" "Bryn" "last_name" "Keir" "email" "bkeirdj@omniture.com" "gender" "male" "ip_address" "74.26.120.224" "country" "Kyrgyzstan" "country_code" "KG" "city" "Bazar-Korgon" "longitude" "72.7392711" "latitude" "41.0285386" "last_login" "1583806835" +HSET "user:4485" "first_name" "Brandy" "last_name" "Stembridge" "email" "bstembridgedk@usatoday.com" "gender" "female" "ip_address" "108.195.202.175" "country" "Colombia" "country_code" "CO" "city" "Mutatá" "longitude" "-76.5719414" "latitude" "7.3423696" "last_login" "1580350432" +HSET "user:4486" "first_name" "Jeffry" "last_name" "Cohalan" "email" "jcohalandl@woothemes.com" "gender" "male" "ip_address" "127.212.64.130" "country" "Indonesia" "country_code" "ID" "city" "Rawa" "longitude" "108.3178328" "latitude" "-7.1552009" "last_login" "1574591047" +HSET "user:4487" "first_name" "Antonina" "last_name" "Kroll" "email" "akrolldm@linkedin.com" "gender" "female" "ip_address" "15.207.189.2" "country" "Philippines" "country_code" "PH" "city" "Mayantoc" "longitude" "120.3903545" "latitude" "15.6240255" "last_login" "1589640895" +HSET "user:4488" "first_name" "Hilde" "last_name" "Lenormand" "email" "hlenormanddn@cpanel.net" "gender" "female" "ip_address" "131.69.49.15" "country" "Turks and Caicos Islands" "country_code" "TC" "city" "Cockburn Town" "longitude" "-71.1389101" "latitude" "21.4674584" "last_login" "1577177575" +HSET "user:4489" "first_name" "Terencio" "last_name" "Grishin" "email" "tgrishindo@theglobeandmail.com" "gender" "male" "ip_address" "55.204.184.234" "country" "Norway" "country_code" "NO" "city" "Moss" "longitude" "10.7605604" "latitude" "59.3779388" "last_login" "1586487589" +HSET "user:4490" "first_name" "Granville" "last_name" "Passey" "email" "gpasseydp@vkontakte.ru" "gender" "male" "ip_address" "126.38.12.94" "country" "Bahamas" "country_code" "BS" "city" "Masons Bay" "longitude" "-73.8948295" "latitude" "22.5408317" "last_login" "1587554356" +HSET "user:4491" "first_name" "Petr" "last_name" "Folley" "email" "pfolleydq@upenn.edu" "gender" "male" "ip_address" "112.51.123.96" "country" "Colombia" "country_code" "CO" "city" "Barbosa" "longitude" "-73.615679" "latitude" "5.934363" "last_login" "1593505207" +HSET "user:4492" "first_name" "Chaddy" "last_name" "Gridley" "email" "cgridleydr@elegantthemes.com" "gender" "male" "ip_address" "226.179.92.174" "country" "China" "country_code" "CN" "city" "Longfeng" "longitude" "125.1353261" "latitude" "46.562247" "last_login" "1591888684" +HSET "user:4493" "first_name" "Alexis" "last_name" "Braghini" "email" "abraghinids@phoca.cz" "gender" "female" "ip_address" "24.179.95.166" "country" "Sweden" "country_code" "SE" "city" "Härnösand" "longitude" "17.953415" "latitude" "62.6291355" "last_login" "1569046154" +HSET "user:4494" "first_name" "Gabbi" "last_name" "Van Velde" "email" "gvanveldedt@yahoo.com" "gender" "female" "ip_address" "74.247.133.190" "country" "Mexico" "country_code" "MX" "city" "Santa Fe" "longitude" "-100.2638682" "latitude" "25.692148" "last_login" "1598457108" +HSET "user:4495" "first_name" "Moritz" "last_name" "Belhome" "email" "mbelhomedu@amazon.co.jp" "gender" "male" "ip_address" "171.157.200.130" "country" "Azerbaijan" "country_code" "AZ" "city" "Qızılhacılı" "longitude" "46.8429953" "latitude" "40.5851643" "last_login" "1579022733" +HSET "user:4496" "first_name" "Pauline" "last_name" "Huzzey" "email" "phuzzeydv@devhub.com" "gender" "female" "ip_address" "103.223.199.34" "country" "Ukraine" "country_code" "UA" "city" "Roskoshnyy" "longitude" "34.6523446" "latitude" "48.5006149" "last_login" "1595575290" +HSET "user:4497" "first_name" "Wendell" "last_name" "Apdell" "email" "wapdelldw@guardian.co.uk" "gender" "male" "ip_address" "145.57.201.156" "country" "China" "country_code" "CN" "city" "Harbin" "longitude" "126.534967" "latitude" "45.803775" "last_login" "1583900842" +HSET "user:4498" "first_name" "Brodie" "last_name" "Tante" "email" "btantedx@slashdot.org" "gender" "male" "ip_address" "77.198.143.143" "country" "Poland" "country_code" "PL" "city" "Kościelec" "longitude" "18.553654" "latitude" "52.1683391" "last_login" "1575327990" +HSET "user:4499" "first_name" "Reggi" "last_name" "Reames" "email" "rreamesdy@blog.com" "gender" "female" "ip_address" "53.125.162.95" "country" "China" "country_code" "CN" "city" "Qutun" "longitude" "112.039383" "latitude" "33.036246" "last_login" "1580237169" +HSET "user:4500" "first_name" "Marv" "last_name" "Woodnutt" "email" "mwoodnuttdz@163.com" "gender" "male" "ip_address" "149.165.167.77" "country" "France" "country_code" "FR" "city" "Marseille" "longitude" "2.511999" "latitude" "43.7441795" "last_login" "1599870227" +HSET "user:4501" "first_name" "Adelice" "last_name" "Curl" "email" "acurle0@furl.net" "gender" "female" "ip_address" "49.216.246.103" "country" "Comoros" "country_code" "KM" "city" "Pajé" "longitude" "44.3862983" "latitude" "-12.1768359" "last_login" "1572857602" +HSET "user:4502" "first_name" "Deny" "last_name" "Thay" "email" "dthaye1@cnbc.com" "gender" "female" "ip_address" "109.73.230.67" "country" "Indonesia" "country_code" "ID" "city" "Bandungsari" "longitude" "108.7987084" "latitude" "-7.0890676" "last_login" "1576698449" +HSET "user:4503" "first_name" "Thomasine" "last_name" "Yvens" "email" "tyvense2@weather.com" "gender" "female" "ip_address" "39.178.41.230" "country" "China" "country_code" "CN" "city" "Qutun" "longitude" "112.039383" "latitude" "33.036246" "last_login" "1597075823" +HSET "user:4504" "first_name" "Erin" "last_name" "Riccetti" "email" "ericcettie3@sohu.com" "gender" "female" "ip_address" "165.226.153.23" "country" "United Kingdom" "country_code" "GB" "city" "Ashley" "longitude" "-2.2685462" "latitude" "51.4139633" "last_login" "1599203447" +HSET "user:4505" "first_name" "Way" "last_name" "Hatley" "email" "whatleye4@boston.com" "gender" "male" "ip_address" "10.190.58.41" "country" "Honduras" "country_code" "HN" "city" "Azacualpa" "longitude" "-88.0876336" "latitude" "14.7121689" "last_login" "1584165821" +HSET "user:4506" "first_name" "Wes" "last_name" "Caulton" "email" "wcaultone5@hibu.com" "gender" "male" "ip_address" "102.59.173.14" "country" "Mexico" "country_code" "MX" "city" "Santa Cruz" "longitude" "-99.6000391" "latitude" "19.2540302" "last_login" "1585900227" +HSET "user:4507" "first_name" "Mozelle" "last_name" "Truse" "email" "mtrusee6@bloglovin.com" "gender" "female" "ip_address" "23.162.107.228" "country" "United States" "country_code" "US" "city" "Baltimore" "longitude" "-76.5697075" "latitude" "39.2957066" "last_login" "1597093672" +HSET "user:4508" "first_name" "Arabela" "last_name" "Twatt" "email" "atwatte7@mozilla.org" "gender" "female" "ip_address" "250.134.219.249" "country" "Uzbekistan" "country_code" "UZ" "city" "Oqtosh" "longitude" "65.9214676" "latitude" "39.9225394" "last_login" "1590814544" +HSET "user:4509" "first_name" "Bowie" "last_name" "Goodban" "email" "bgoodbane8@springer.com" "gender" "male" "ip_address" "110.68.74.86" "country" "Russia" "country_code" "RU" "city" "Novouzensk" "longitude" "48.1450932" "latitude" "50.4438122" "last_login" "1584688316" +HSET "user:4510" "first_name" "Bertie" "last_name" "Hearley" "email" "bhearleye9@joomla.org" "gender" "male" "ip_address" "5.228.149.214" "country" "Bolivia" "country_code" "BO" "city" "Huajlaya" "longitude" "-64.55" "latitude" "-20.6" "last_login" "1582204365" +HSET "user:4511" "first_name" "Toma" "last_name" "Warrier" "email" "twarrierea@posterous.com" "gender" "female" "ip_address" "231.143.119.252" "country" "China" "country_code" "CN" "city" "Chadong" "longitude" "117.9249002" "latitude" "35.8939566" "last_login" "1596872609" +HSET "user:4512" "first_name" "Paton" "last_name" "Karpf" "email" "pkarpfeb@dion.ne.jp" "gender" "male" "ip_address" "166.95.166.38" "country" "Morocco" "country_code" "MA" "city" "Talmest" "longitude" "-9.3381766" "latitude" "31.8127435" "last_login" "1593986700" +HSET "user:4513" "first_name" "Gail" "last_name" "Weatherley" "email" "gweatherleyec@marriott.com" "gender" "male" "ip_address" "221.111.226.26" "country" "France" "country_code" "FR" "city" "Paris 03" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1577870521" +HSET "user:4514" "first_name" "Frederik" "last_name" "Albrooke" "email" "falbrookeed@bloglovin.com" "gender" "male" "ip_address" "22.173.44.178" "country" "Croatia" "country_code" "HR" "city" "Retkovci" "longitude" "18.6364096" "latitude" "45.235059" "last_login" "1596938797" +HSET "user:4515" "first_name" "Emile" "last_name" "Mugridge" "email" "emugridgeee@clickbank.net" "gender" "male" "ip_address" "15.206.193.6" "country" "Indonesia" "country_code" "ID" "city" "Sumbersari Wetan" "longitude" "110.7245903" "latitude" "-6.7498213" "last_login" "1597277682" +HSET "user:4516" "first_name" "Wade" "last_name" "Stanistrete" "email" "wstanistreteef@ibm.com" "gender" "male" "ip_address" "200.195.58.194" "country" "Indonesia" "country_code" "ID" "city" "Sukomulyo" "longitude" "112.4023244" "latitude" "-7.1259703" "last_login" "1587857559" +HSET "user:4517" "first_name" "Dorelle" "last_name" "Hauck" "email" "dhauckeg@reference.com" "gender" "female" "ip_address" "118.245.192.150" "country" "China" "country_code" "CN" "city" "Kuanghe" "longitude" "115.7834972" "latitude" "36.3081761" "last_login" "1589954355" +HSET "user:4518" "first_name" "Amber" "last_name" "Farragher" "email" "afarraghereh@goo.ne.jp" "gender" "female" "ip_address" "81.76.243.154" "country" "Russia" "country_code" "RU" "city" "Tevriz" "longitude" "72.40078" "latitude" "57.512722" "last_login" "1573315224" +HSET "user:4519" "first_name" "Carmen" "last_name" "Brydson" "email" "cbrydsonei@virginia.edu" "gender" "female" "ip_address" "144.229.163.75" "country" "France" "country_code" "FR" "city" "Nantes" "longitude" "-1.5401497" "latitude" "47.2550409" "last_login" "1577690799" +HSET "user:4520" "first_name" "Fred" "last_name" "Craighill" "email" "fcraighillej@plala.or.jp" "gender" "male" "ip_address" "241.216.222.114" "country" "China" "country_code" "CN" "city" "Lin’an" "longitude" "119.724733" "latitude" "30.233873" "last_login" "1576137640" +HSET "user:4521" "first_name" "Shawna" "last_name" "Vanyukhin" "email" "svanyukhinek@vistaprint.com" "gender" "female" "ip_address" "79.47.123.110" "country" "Mongolia" "country_code" "MN" "city" "Javhlant" "longitude" "105.924" "latitude" "48.80189" "last_login" "1581618658" +HSET "user:4522" "first_name" "Mead" "last_name" "Wigfield" "email" "mwigfieldel@t.co" "gender" "male" "ip_address" "186.46.186.214" "country" "Sweden" "country_code" "SE" "city" "Mjölby" "longitude" "15.1335348" "latitude" "58.3226908" "last_login" "1584889472" +HSET "user:4523" "first_name" "Bertrand" "last_name" "Alldread" "email" "balldreadem@comsenz.com" "gender" "male" "ip_address" "229.179.59.4" "country" "Poland" "country_code" "PL" "city" "Baruchowo" "longitude" "19.2910855" "latitude" "52.4818411" "last_login" "1569635916" +HSET "user:4524" "first_name" "Annabela" "last_name" "Pughsley" "email" "apughsleyen@hugedomains.com" "gender" "female" "ip_address" "67.133.93.32" "country" "United Arab Emirates" "country_code" "AE" "city" "Umm al Qaywayn" "longitude" "55.7133909" "latitude" "25.5204824" "last_login" "1585741684" +HSET "user:4525" "first_name" "Bern" "last_name" "Barhims" "email" "bbarhimseo@opensource.org" "gender" "male" "ip_address" "107.15.59.215" "country" "Poland" "country_code" "PL" "city" "Kamieniec Wrocławski" "longitude" "17.1762909" "latitude" "51.0768184" "last_login" "1586097594" +HSET "user:4526" "first_name" "Cross" "last_name" "Kellet" "email" "ckelletep@state.tx.us" "gender" "male" "ip_address" "228.250.153.7" "country" "China" "country_code" "CN" "city" "Liangli" "longitude" "115.9811735" "latitude" "32.9187879" "last_login" "1574177234" +HSET "user:4527" "first_name" "Lev" "last_name" "Drynan" "email" "ldrynaneq@msu.edu" "gender" "male" "ip_address" "152.170.105.173" "country" "Argentina" "country_code" "AR" "city" "Vera" "longitude" "-60.7829517" "latitude" "-31.6577222" "last_login" "1572111454" +HSET "user:4528" "first_name" "Dominic" "last_name" "Prantoni" "email" "dprantonier@wordpress.org" "gender" "male" "ip_address" "37.40.60.253" "country" "Indonesia" "country_code" "ID" "city" "Kaduluhur" "longitude" "108.6334" "latitude" "-7.1928" "last_login" "1594145777" +HSET "user:4529" "first_name" "Salvidor" "last_name" "Barreau" "email" "sbarreaues@who.int" "gender" "male" "ip_address" "33.28.202.222" "country" "China" "country_code" "CN" "city" "Guohe" "longitude" "113.447431" "latitude" "28.94074" "last_login" "1581219874" +HSET "user:4530" "first_name" "Cord" "last_name" "Oneill" "email" "coneillet@instagram.com" "gender" "male" "ip_address" "126.139.240.208" "country" "Thailand" "country_code" "TH" "city" "Lao Suea Kok" "longitude" "104.9201205" "latitude" "15.4097396" "last_login" "1571488534" +HSET "user:4531" "first_name" "Stacee" "last_name" "Quibell" "email" "squibelleu@miibeian.gov.cn" "gender" "male" "ip_address" "133.60.176.157" "country" "Armenia" "country_code" "AM" "city" "Haykashen" "longitude" "44.3051313" "latitude" "40.0725348" "last_login" "1576201659" +HSET "user:4532" "first_name" "Koressa" "last_name" "O'Coskerry" "email" "kocoskerryev@samsung.com" "gender" "female" "ip_address" "242.250.68.189" "country" "Iran" "country_code" "IR" "city" "Gāvbandī" "longitude" "53.0405196" "latitude" "27.2087957" "last_login" "1575791264" +HSET "user:4533" "first_name" "Lamond" "last_name" "Cossentine" "email" "lcossentineew@rediff.com" "gender" "male" "ip_address" "136.57.107.176" "country" "Russia" "country_code" "RU" "city" "Vilya" "longitude" "42.2051732" "latitude" "55.2571473" "last_login" "1585627918" +HSET "user:4534" "first_name" "Renado" "last_name" "Mobley" "email" "rmobleyex@clickbank.net" "gender" "male" "ip_address" "214.25.20.178" "country" "Czech Republic" "country_code" "CZ" "city" "Dolní Bečva" "longitude" "18.2282007" "latitude" "49.4679131" "last_login" "1581788474" +HSET "user:4535" "first_name" "Garek" "last_name" "Risdall" "email" "grisdalley@biglobe.ne.jp" "gender" "male" "ip_address" "245.185.160.77" "country" "Germany" "country_code" "DE" "city" "Leipzig" "longitude" "12.40504" "latitude" "51.3303754" "last_login" "1590802621" +HSET "user:4536" "first_name" "Kristofor" "last_name" "Sumpner" "email" "ksumpnerez@lycos.com" "gender" "male" "ip_address" "253.151.225.147" "country" "Philippines" "country_code" "PH" "city" "Paulba" "longitude" "123.4572574" "latitude" "13.1870854" "last_login" "1579584388" +HSET "user:4537" "first_name" "Brenna" "last_name" "Leuren" "email" "bleurenf0@cisco.com" "gender" "female" "ip_address" "66.27.239.225" "country" "China" "country_code" "CN" "city" "Xinshidu" "longitude" "121.585315" "latitude" "31.264592" "last_login" "1574285253" +HSET "user:4538" "first_name" "Valery" "last_name" "Izat" "email" "vizatf1@goo.ne.jp" "gender" "female" "ip_address" "220.97.126.42" "country" "Honduras" "country_code" "HN" "city" "La Estancia" "longitude" "-87.921223" "latitude" "13.9142931" "last_login" "1589326965" +HSET "user:4539" "first_name" "Shalne" "last_name" "Luchelli" "email" "sluchellif2@globo.com" "gender" "female" "ip_address" "56.34.183.80" "country" "China" "country_code" "CN" "city" "Dangchang Chengguanzhen" "longitude" "104.39189" "latitude" "34.041823" "last_login" "1580591955" +HSET "user:4540" "first_name" "Early" "last_name" "Atherley" "email" "eatherleyf3@macromedia.com" "gender" "male" "ip_address" "227.246.173.55" "country" "China" "country_code" "CN" "city" "Baojia" "longitude" "107.237743" "latitude" "34.363184" "last_login" "1590027835" +HSET "user:4541" "first_name" "Simmonds" "last_name" "Kleinplatz" "email" "skleinplatzf4@barnesandnoble.com" "gender" "male" "ip_address" "227.71.135.39" "country" "China" "country_code" "CN" "city" "Shuangxing" "longitude" "123.3561121" "latitude" "41.7730238" "last_login" "1581642874" +HSET "user:4542" "first_name" "Ryon" "last_name" "Coat" "email" "rcoatf5@unesco.org" "gender" "male" "ip_address" "193.128.140.5" "country" "Philippines" "country_code" "PH" "city" "Cabatang" "longitude" "124.4318122" "latitude" "9.9213559" "last_login" "1595260605" +HSET "user:4543" "first_name" "Melisent" "last_name" "Nystrom" "email" "mnystromf6@mayoclinic.com" "gender" "female" "ip_address" "110.167.226.236" "country" "China" "country_code" "CN" "city" "Renfengzhuang" "longitude" "117.666466" "latitude" "39.315813" "last_login" "1580962738" +HSET "user:4544" "first_name" "Ingra" "last_name" "Scollan" "email" "iscollanf7@bigcartel.com" "gender" "male" "ip_address" "6.130.14.159" "country" "Pakistan" "country_code" "PK" "city" "Mastung" "longitude" "66.9622545" "latitude" "30.0814376" "last_login" "1593070782" +HSET "user:4545" "first_name" "Melina" "last_name" "Rawson" "email" "mrawsonf8@360.cn" "gender" "female" "ip_address" "28.90.199.142" "country" "Philippines" "country_code" "PH" "city" "Bulo" "longitude" "121.1098151" "latitude" "15.9535593" "last_login" "1572104712" +HSET "user:4546" "first_name" "Leola" "last_name" "Baleine" "email" "lbaleinef9@sakura.ne.jp" "gender" "female" "ip_address" "79.9.148.4" "country" "France" "country_code" "FR" "city" "Pontarlier" "longitude" "6.3333882" "latitude" "46.907884" "last_login" "1584407606" +HSET "user:4547" "first_name" "Frederick" "last_name" "Lerwill" "email" "flerwillfa@gizmodo.com" "gender" "male" "ip_address" "25.130.25.46" "country" "China" "country_code" "CN" "city" "Chenchang" "longitude" "117.624455" "latitude" "33.770447" "last_login" "1591854448" +HSET "user:4548" "first_name" "Jarad" "last_name" "McKeran" "email" "jmckeranfb@rakuten.co.jp" "gender" "male" "ip_address" "147.213.109.78" "country" "China" "country_code" "CN" "city" "Weishan" "longitude" "100.307174" "latitude" "25.227212" "last_login" "1590474956" +HSET "user:4549" "first_name" "Merna" "last_name" "Mathey" "email" "mmatheyfc@paginegialle.it" "gender" "female" "ip_address" "77.240.229.99" "country" "Bulgaria" "country_code" "BG" "city" "Bratsigovo" "longitude" "24.4410972" "latitude" "42.0070624" "last_login" "1597725575" +HSET "user:4550" "first_name" "Ermina" "last_name" "Filer" "email" "efilerfd@trellian.com" "gender" "female" "ip_address" "93.111.76.75" "country" "China" "country_code" "CN" "city" "Hukou" "longitude" "116.251947" "latitude" "29.731101" "last_login" "1575951671" +HSET "user:4551" "first_name" "Ignatius" "last_name" "Leynton" "email" "ileyntonfe@istockphoto.com" "gender" "male" "ip_address" "144.167.236.115" "country" "Japan" "country_code" "JP" "city" "Mizunami" "longitude" "139.3167305" "latitude" "37.8909637" "last_login" "1584631004" +HSET "user:4552" "first_name" "Ettie" "last_name" "Sally" "email" "esallyff@irs.gov" "gender" "female" "ip_address" "69.200.237.239" "country" "China" "country_code" "CN" "city" "Longmiao" "longitude" "106.161173" "latitude" "25.954126" "last_login" "1572214285" +HSET "user:4553" "first_name" "Carver" "last_name" "Aberkirdo" "email" "caberkirdofg@lulu.com" "gender" "male" "ip_address" "3.155.235.147" "country" "Russia" "country_code" "RU" "city" "Chuguyevka" "longitude" "133.86495" "latitude" "44.16652" "last_login" "1571558205" +HSET "user:4554" "first_name" "Cleveland" "last_name" "Smedmoor" "email" "csmedmoorfh@fema.gov" "gender" "male" "ip_address" "68.83.39.215" "country" "Poland" "country_code" "PL" "city" "Słupsk" "longitude" "21.050137" "latitude" "50.3406189" "last_login" "1580426654" +HSET "user:4555" "first_name" "Finlay" "last_name" "Meckiff" "email" "fmeckifffi@people.com.cn" "gender" "male" "ip_address" "2.159.231.35" "country" "Bulgaria" "country_code" "BG" "city" "Rila" "longitude" "23.1315864" "latitude" "42.1256751" "last_login" "1587844473" +HSET "user:4556" "first_name" "Susanetta" "last_name" "Lynds" "email" "slyndsfj@yelp.com" "gender" "female" "ip_address" "142.247.206.139" "country" "Cuba" "country_code" "CU" "city" "Unión de Reyes" "longitude" "-81.5349581" "latitude" "22.7970061" "last_login" "1576675879" +HSET "user:4557" "first_name" "Federico" "last_name" "Tayloe" "email" "ftayloefk@blogger.com" "gender" "male" "ip_address" "137.10.82.80" "country" "China" "country_code" "CN" "city" "Huangjinjing" "longitude" "110.897275" "latitude" "27.58237" "last_login" "1589549880" +HSET "user:4558" "first_name" "Gaspar" "last_name" "MacKaig" "email" "gmackaigfl@about.me" "gender" "male" "ip_address" "152.194.250.101" "country" "Indonesia" "country_code" "ID" "city" "Doropayung" "longitude" "111.1436581" "latitude" "-6.7235696" "last_login" "1574215272" +HSET "user:4559" "first_name" "Mady" "last_name" "Salzburger" "email" "msalzburgerfm@xinhuanet.com" "gender" "female" "ip_address" "44.18.51.159" "country" "United States" "country_code" "US" "city" "Bronx" "longitude" "-73.8477874" "latitude" "40.8690303" "last_login" "1594096532" +HSET "user:4560" "first_name" "Florri" "last_name" "Pirri" "email" "fpirrifn@squidoo.com" "gender" "female" "ip_address" "52.239.192.38" "country" "United States" "country_code" "US" "city" "Springfield" "longitude" "-89.65" "latitude" "39.8" "last_login" "1576745645" +HSET "user:4561" "first_name" "Granthem" "last_name" "Grealey" "email" "ggrealeyfo@comcast.net" "gender" "male" "ip_address" "100.94.91.41" "country" "France" "country_code" "FR" "city" "Grenoble" "longitude" "5.7218985" "latitude" "45.1934857" "last_login" "1592200154" +HSET "user:4562" "first_name" "Cindi" "last_name" "Tunnicliffe" "email" "ctunnicliffefp@trellian.com" "gender" "female" "ip_address" "50.248.144.169" "country" "Russia" "country_code" "RU" "city" "Kedrovyy" "longitude" "87.372095" "latitude" "53.8072015" "last_login" "1595089744" +HSET "user:4563" "first_name" "Brigham" "last_name" "Selesnick" "email" "bselesnickfq@paypal.com" "gender" "male" "ip_address" "158.101.83.244" "country" "Turkmenistan" "country_code" "TM" "city" "Türkmenbaşy" "longitude" "52.9759299" "latitude" "40.0336591" "last_login" "1569350387" +HSET "user:4564" "first_name" "Gene" "last_name" "Boydon" "email" "gboydonfr@hubpages.com" "gender" "female" "ip_address" "32.234.170.29" "country" "Ukraine" "country_code" "UA" "city" "Chornukhyne" "longitude" "38.5208692" "latitude" "48.3238703" "last_login" "1593228268" +HSET "user:4565" "first_name" "Aldo" "last_name" "Kettles" "email" "akettlesfs@51.la" "gender" "male" "ip_address" "185.156.133.115" "country" "United States" "country_code" "US" "city" "Chicago" "longitude" "-117.0625875" "latitude" "34.5259004" "last_login" "1581328711" +HSET "user:4566" "first_name" "Kellby" "last_name" "Raeburn" "email" "kraeburnft@addthis.com" "gender" "male" "ip_address" "213.171.62.179" "country" "Egypt" "country_code" "EG" "city" "Abnūb" "longitude" "31.151928" "latitude" "27.2674027" "last_login" "1588870543" +HSET "user:4567" "first_name" "Tanitansy" "last_name" "Lorkings" "email" "tlorkingsfu@bizjournals.com" "gender" "female" "ip_address" "59.99.160.200" "country" "Indonesia" "country_code" "ID" "city" "Bengga" "longitude" "119.466667" "latitude" "-1.783333" "last_login" "1597921379" +HSET "user:4568" "first_name" "Merrili" "last_name" "Muskett" "email" "mmuskettfv@slashdot.org" "gender" "female" "ip_address" "1.104.120.130" "country" "Uganda" "country_code" "UG" "city" "Kisoro" "longitude" "29.6904746" "latitude" "-1.2834307" "last_login" "1570979773" +HSET "user:4569" "first_name" "Everard" "last_name" "Mattosoff" "email" "emattosofffw@rakuten.co.jp" "gender" "male" "ip_address" "131.251.177.174" "country" "Dominican Republic" "country_code" "DO" "city" "Guayabo Dulce" "longitude" "-69.2696692" "latitude" "18.6367692" "last_login" "1578846872" +HSET "user:4570" "first_name" "Mauricio" "last_name" "McGahy" "email" "mmcgahyfx@jigsy.com" "gender" "male" "ip_address" "225.111.205.51" "country" "Finland" "country_code" "FI" "city" "Vaasa" "longitude" "21.5863577" "latitude" "63.0923534" "last_login" "1581206142" +HSET "user:4571" "first_name" "Wendi" "last_name" "Awcock" "email" "wawcockfy@soundcloud.com" "gender" "female" "ip_address" "27.191.5.130" "country" "China" "country_code" "CN" "city" "Jiushe" "longitude" "114.946019" "latitude" "23.790902" "last_login" "1569039436" +HSET "user:4572" "first_name" "Redd" "last_name" "McCathie" "email" "rmccathiefz@altervista.org" "gender" "male" "ip_address" "57.3.230.132" "country" "China" "country_code" "CN" "city" "Moguqi" "longitude" "123.674166" "latitude" "46.424008" "last_login" "1580220280" +HSET "user:4573" "first_name" "Jarib" "last_name" "Lackner" "email" "jlacknerg0@dailymail.co.uk" "gender" "male" "ip_address" "38.177.131.59" "country" "Nicaragua" "country_code" "NI" "city" "El Crucero" "longitude" "-86.3110516" "latitude" "11.9805692" "last_login" "1583334766" +HSET "user:4574" "first_name" "Wylie" "last_name" "Cristofari" "email" "wcristofarig1@xrea.com" "gender" "male" "ip_address" "32.174.171.253" "country" "Russia" "country_code" "RU" "city" "Suna" "longitude" "50.0688474" "latitude" "57.8308498" "last_login" "1591353617" +HSET "user:4575" "first_name" "Michael" "last_name" "Shippey" "email" "mshippeyg2@google.pl" "gender" "male" "ip_address" "219.46.189.51" "country" "Peru" "country_code" "PE" "city" "Tarata" "longitude" "-70.0339387" "latitude" "-17.4776078" "last_login" "1594795804" +HSET "user:4576" "first_name" "Murry" "last_name" "Doret" "email" "mdoretg3@usgs.gov" "gender" "male" "ip_address" "233.226.219.56" "country" "China" "country_code" "CN" "city" "Xinzheng" "longitude" "113.740529" "latitude" "34.395562" "last_login" "1576050777" +HSET "user:4577" "first_name" "Charisse" "last_name" "Heino" "email" "cheinog4@gizmodo.com" "gender" "female" "ip_address" "144.10.54.163" "country" "Indonesia" "country_code" "ID" "city" "Puan Selatan" "longitude" "106.615284" "latitude" "-6.197006" "last_login" "1588421324" +HSET "user:4578" "first_name" "Tod" "last_name" "Wildsmith" "email" "twildsmithg5@linkedin.com" "gender" "male" "ip_address" "81.90.248.164" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-91.1118075" "latitude" "42.5420213" "last_login" "1569582478" +HSET "user:4579" "first_name" "Bekki" "last_name" "Pinor" "email" "bpinorg6@psu.edu" "gender" "female" "ip_address" "49.245.188.26" "country" "Russia" "country_code" "RU" "city" "Nesterovskaya" "longitude" "45.0503473" "latitude" "43.2374865" "last_login" "1587271109" +HSET "user:4580" "first_name" "Aleksandr" "last_name" "Eykelhof" "email" "aeykelhofg7@fema.gov" "gender" "male" "ip_address" "250.37.135.11" "country" "China" "country_code" "CN" "city" "Songjianghe" "longitude" "127.545072" "latitude" "42.17119" "last_login" "1598342270" +HSET "user:4581" "first_name" "Peter" "last_name" "Ardern" "email" "parderng8@statcounter.com" "gender" "male" "ip_address" "116.224.195.96" "country" "China" "country_code" "CN" "city" "Heka" "longitude" "118.0855763" "latitude" "24.4670098" "last_login" "1586486030" +HSET "user:4582" "first_name" "Therese" "last_name" "Mohun" "email" "tmohung9@tamu.edu" "gender" "female" "ip_address" "53.227.102.243" "country" "Netherlands" "country_code" "NL" "city" "Maastricht" "longitude" "5.7114171" "latitude" "50.8493216" "last_login" "1584761312" +HSET "user:4583" "first_name" "Lionel" "last_name" "Livesey" "email" "lliveseyga@adobe.com" "gender" "male" "ip_address" "125.244.25.255" "country" "China" "country_code" "CN" "city" "Jincang" "longitude" "102.188043" "latitude" "38.520089" "last_login" "1587506635" +HSET "user:4584" "first_name" "Lacie" "last_name" "McEntegart" "email" "lmcentegartgb@unblog.fr" "gender" "female" "ip_address" "171.41.37.36" "country" "China" "country_code" "CN" "city" "Marzhing" "longitude" "100.435347" "latitude" "33.288467" "last_login" "1580972923" +HSET "user:4585" "first_name" "Sophi" "last_name" "Stedson" "email" "sstedsongc@skype.com" "gender" "female" "ip_address" "172.151.16.127" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "11.9696406" "latitude" "57.7040021" "last_login" "1572701899" +HSET "user:4586" "first_name" "Rufus" "last_name" "Dugan" "email" "rdugangd@imdb.com" "gender" "male" "ip_address" "246.148.250.53" "country" "Indonesia" "country_code" "ID" "city" "Palangan" "longitude" "112.4455374" "latitude" "-7.0169631" "last_login" "1589001807" +HSET "user:4587" "first_name" "Bale" "last_name" "Masters" "email" "bmastersge@go.com" "gender" "male" "ip_address" "161.89.98.133" "country" "South Africa" "country_code" "ZA" "city" "Pofadder" "longitude" "19.295048" "latitude" "-28.7523" "last_login" "1585788986" +HSET "user:4588" "first_name" "Gretal" "last_name" "Gallandre" "email" "ggallandregf@globo.com" "gender" "female" "ip_address" "138.68.17.2" "country" "China" "country_code" "CN" "city" "Yingchun" "longitude" "128.720857" "latitude" "44.9829" "last_login" "1583215220" +HSET "user:4589" "first_name" "Cobb" "last_name" "Kochlin" "email" "ckochlingg@alibaba.com" "gender" "male" "ip_address" "26.174.10.3" "country" "Tajikistan" "country_code" "TJ" "city" "Konsoy" "longitude" "69.70245" "latitude" "40.49155" "last_login" "1597360294" +HSET "user:4590" "first_name" "Neron" "last_name" "Brownstein" "email" "nbrownsteingh@theglobeandmail.com" "gender" "male" "ip_address" "212.251.5.141" "country" "Albania" "country_code" "AL" "city" "Ishëm" "longitude" "19.6103673" "latitude" "41.5332101" "last_login" "1590594984" +HSET "user:4591" "first_name" "Thorsten" "last_name" "Harbison" "email" "tharbisongi@live.com" "gender" "male" "ip_address" "172.212.252.168" "country" "Micronesia" "country_code" "FM" "city" "Houk" "longitude" "149.3023702" "latitude" "6.6885285" "last_login" "1598313547" +HSET "user:4592" "first_name" "Alana" "last_name" "Teresse" "email" "ateressegj@sciencedaily.com" "gender" "female" "ip_address" "192.101.193.34" "country" "Indonesia" "country_code" "ID" "city" "Kapinango" "longitude" "105.8625" "latitude" "-6.4127" "last_login" "1589022982" +HSET "user:4593" "first_name" "Auria" "last_name" "Lanfranchi" "email" "alanfranchigk@spiegel.de" "gender" "female" "ip_address" "76.116.157.221" "country" "China" "country_code" "CN" "city" "Shanglu" "longitude" "109.940477" "latitude" "33.870422" "last_login" "1591076848" +HSET "user:4594" "first_name" "Zenia" "last_name" "Neagle" "email" "zneaglegl@usa.gov" "gender" "female" "ip_address" "93.151.9.68" "country" "Philippines" "country_code" "PH" "city" "San Isidro" "longitude" "126.065213" "latitude" "9.939624" "last_login" "1599267254" +HSET "user:4595" "first_name" "Gianna" "last_name" "Darton" "email" "gdartongm@dot.gov" "gender" "female" "ip_address" "255.124.140.68" "country" "Cameroon" "country_code" "CM" "city" "Belo" "longitude" "10.2572084" "latitude" "6.1360612" "last_login" "1596154357" +HSET "user:4596" "first_name" "Marijo" "last_name" "Harp" "email" "mharpgn@independent.co.uk" "gender" "female" "ip_address" "198.162.53.104" "country" "Brazil" "country_code" "BR" "city" "Maringá" "longitude" "-51.9330558" "latitude" "-23.4209995" "last_login" "1580929538" +HSET "user:4597" "first_name" "Gus" "last_name" "Bathurst" "email" "gbathurstgo@bloomberg.com" "gender" "male" "ip_address" "144.132.52.195" "country" "Mongolia" "country_code" "MN" "city" "Saynshand" "longitude" "110.1065717" "latitude" "44.8990915" "last_login" "1592761003" +HSET "user:4598" "first_name" "Kaspar" "last_name" "Clace" "email" "kclacegp@amazon.co.uk" "gender" "male" "ip_address" "249.152.231.177" "country" "Netherlands" "country_code" "NL" "city" "Delft" "longitude" "4.3557381" "latitude" "51.991495" "last_login" "1578689938" +HSET "user:4599" "first_name" "Crystie" "last_name" "Roberson" "email" "crobersongq@meetup.com" "gender" "female" "ip_address" "140.84.239.242" "country" "Ukraine" "country_code" "UA" "city" "Turbiv" "longitude" "28.7228609" "latitude" "49.3448284" "last_login" "1591675224" +HSET "user:4600" "first_name" "Haily" "last_name" "Bouldon" "email" "hbouldongr@nhs.uk" "gender" "male" "ip_address" "55.57.93.101" "country" "Indonesia" "country_code" "ID" "city" "Daja" "longitude" "112.906475" "latitude" "-7.072846" "last_login" "1588404984" +HSET "user:4601" "first_name" "Bradan" "last_name" "Rosenbush" "email" "brosenbushgs@about.com" "gender" "male" "ip_address" "106.73.178.110" "country" "Canada" "country_code" "CA" "city" "Barrhead" "longitude" "-114.3954066" "latitude" "54.1187723" "last_login" "1594182845" +HSET "user:4602" "first_name" "Rance" "last_name" "Jacob" "email" "rjacobgt@gravatar.com" "gender" "male" "ip_address" "110.96.160.84" "country" "France" "country_code" "FR" "city" "Reims" "longitude" "-1.8090692" "latitude" "48.2414942" "last_login" "1598640834" +HSET "user:4603" "first_name" "Northrop" "last_name" "Tort" "email" "ntortgu@blog.com" "gender" "male" "ip_address" "191.212.158.14" "country" "Madagascar" "country_code" "MG" "city" "Ambovombe" "longitude" "46.0897124" "latitude" "-25.1720132" "last_login" "1598001495" +HSET "user:4604" "first_name" "Averil" "last_name" "Coggles" "email" "acogglesgv@google.cn" "gender" "female" "ip_address" "238.55.0.66" "country" "Serbia" "country_code" "RS" "city" "Ilandža" "longitude" "20.9132879" "latitude" "45.1761098" "last_login" "1584717787" +HSET "user:4605" "first_name" "Berkley" "last_name" "Stuck" "email" "bstuckgw@gizmodo.com" "gender" "male" "ip_address" "251.78.168.162" "country" "China" "country_code" "CN" "city" "Mazha" "longitude" "114.010317" "latitude" "23.460229" "last_login" "1576604599" +HSET "user:4606" "first_name" "Hammad" "last_name" "Hinnerk" "email" "hhinnerkgx@wired.com" "gender" "male" "ip_address" "111.141.21.112" "country" "Cuba" "country_code" "CU" "city" "Florida" "longitude" "-78.219132" "latitude" "21.5149423" "last_login" "1580706378" +HSET "user:4607" "first_name" "Fionna" "last_name" "Ponter" "email" "fpontergy@icq.com" "gender" "female" "ip_address" "150.230.43.59" "country" "United States" "country_code" "US" "city" "Springfield" "longitude" "-77.19" "latitude" "38.79" "last_login" "1593152061" +HSET "user:4608" "first_name" "Royce" "last_name" "Leckie" "email" "rleckiegz@nasa.gov" "gender" "male" "ip_address" "119.86.231.89" "country" "Russia" "country_code" "RU" "city" "Usogorsk" "longitude" "48.67174" "latitude" "63.4258542" "last_login" "1590011341" +HSET "user:4609" "first_name" "Leoline" "last_name" "Paradis" "email" "lparadish0@dedecms.com" "gender" "female" "ip_address" "41.54.210.124" "country" "France" "country_code" "FR" "city" "Altkirch" "longitude" "7.243036" "latitude" "47.620391" "last_login" "1595715637" +HSET "user:4610" "first_name" "Jinny" "last_name" "Langworthy" "email" "jlangworthyh1@icio.us" "gender" "female" "ip_address" "38.172.207.32" "country" "Croatia" "country_code" "HR" "city" "Smokvica" "longitude" "15.1873721" "latitude" "44.3200232" "last_login" "1586096696" +HSET "user:4611" "first_name" "Suzanne" "last_name" "Collington" "email" "scollingtonh2@chronoengine.com" "gender" "female" "ip_address" "54.25.72.55" "country" "Brazil" "country_code" "BR" "city" "Campos Belos" "longitude" "-46.7705781" "latitude" "-13.0331624" "last_login" "1586728166" +HSET "user:4612" "first_name" "Bertram" "last_name" "Bradberry" "email" "bbradberryh3@oaic.gov.au" "gender" "male" "ip_address" "226.182.244.182" "country" "China" "country_code" "CN" "city" "Qingshan" "longitude" "114.385538" "latitude" "30.63963" "last_login" "1596741527" +HSET "user:4613" "first_name" "Sigvard" "last_name" "Locket" "email" "slocketh4@blinklist.com" "gender" "male" "ip_address" "137.192.94.252" "country" "Indonesia" "country_code" "ID" "city" "Cipatat" "longitude" "107.3532717" "latitude" "-6.8292253" "last_login" "1586025259" +HSET "user:4614" "first_name" "Claudell" "last_name" "Sibson" "email" "csibsonh5@lulu.com" "gender" "male" "ip_address" "137.5.197.20" "country" "Italy" "country_code" "IT" "city" "Pescara" "longitude" "14.222154" "latitude" "42.4353312" "last_login" "1576639666" +HSET "user:4615" "first_name" "Palmer" "last_name" "Dougharty" "email" "pdoughartyh6@springer.com" "gender" "male" "ip_address" "105.4.236.211" "country" "Japan" "country_code" "JP" "city" "Fukagawa" "longitude" "139.8744722" "latitude" "38.8466225" "last_login" "1589910835" +HSET "user:4616" "first_name" "Carlynn" "last_name" "D'Aguanno" "email" "cdaguannoh7@home.pl" "gender" "female" "ip_address" "214.185.144.112" "country" "Japan" "country_code" "JP" "city" "Chigasaki" "longitude" "139.4046734" "latitude" "35.3372599" "last_login" "1569536737" +HSET "user:4617" "first_name" "Christan" "last_name" "Triggol" "email" "ctriggolh8@quantcast.com" "gender" "female" "ip_address" "187.57.142.226" "country" "Serbia" "country_code" "RS" "city" "Zemun" "longitude" "20.3555646" "latitude" "44.8532094" "last_login" "1592630226" +HSET "user:4618" "first_name" "Candi" "last_name" "Gilding" "email" "cgildingh9@tiny.cc" "gender" "female" "ip_address" "9.83.218.36" "country" "Morocco" "country_code" "MA" "city" "Casablanca" "longitude" "-7.5898434" "latitude" "33.5731104" "last_login" "1597849484" +HSET "user:4619" "first_name" "Dawna" "last_name" "Bingell" "email" "dbingellha@addtoany.com" "gender" "female" "ip_address" "149.97.151.81" "country" "Greece" "country_code" "GR" "city" "Néa Ankhíalos" "longitude" "22.818555" "latitude" "39.2759274" "last_login" "1577775214" +HSET "user:4620" "first_name" "Byrle" "last_name" "Hinkens" "email" "bhinkenshb@e-recht24.de" "gender" "male" "ip_address" "91.89.165.250" "country" "Colombia" "country_code" "CO" "city" "Nariño" "longitude" "-74.828718" "latitude" "4.398278" "last_login" "1570877533" +HSET "user:4621" "first_name" "Tamas" "last_name" "Biddy" "email" "tbiddyhc@usda.gov" "gender" "male" "ip_address" "63.110.191.166" "country" "Argentina" "country_code" "AR" "city" "El Arañado" "longitude" "-64.2278386" "latitude" "-31.4774881" "last_login" "1588507459" +HSET "user:4622" "first_name" "Tadeas" "last_name" "Lundy" "email" "tlundyhd@mac.com" "gender" "male" "ip_address" "93.38.146.109" "country" "Morocco" "country_code" "MA" "city" "Chefchaouene" "longitude" "-5.2632201" "latitude" "35.1612182" "last_login" "1583327838" +HSET "user:4623" "first_name" "Randal" "last_name" "Gilcrist" "email" "rgilcristhe@angelfire.com" "gender" "male" "ip_address" "191.14.242.233" "country" "Canada" "country_code" "CA" "city" "Woodstock" "longitude" "-67.6033952" "latitude" "46.150266" "last_login" "1571061029" +HSET "user:4624" "first_name" "Joanie" "last_name" "Rowles" "email" "jrowleshf@deliciousdays.com" "gender" "female" "ip_address" "16.54.119.155" "country" "Portugal" "country_code" "PT" "city" "Rio Covo" "longitude" "-8.5859581" "latitude" "41.529235" "last_login" "1575615313" +HSET "user:4625" "first_name" "Biddy" "last_name" "Dronsfield" "email" "bdronsfieldhg@blog.com" "gender" "female" "ip_address" "58.138.194.55" "country" "Indonesia" "country_code" "ID" "city" "Dodol" "longitude" "114.4120114" "latitude" "-8.0972402" "last_login" "1577342700" +HSET "user:4626" "first_name" "Sergent" "last_name" "Skokoe" "email" "sskokoehh@usa.gov" "gender" "male" "ip_address" "130.183.42.46" "country" "China" "country_code" "CN" "city" "Tiechanggou" "longitude" "104.868349" "latitude" "32.025538" "last_login" "1599510372" +HSET "user:4627" "first_name" "Meggie" "last_name" "Fyldes" "email" "mfyldeshi@army.mil" "gender" "female" "ip_address" "95.222.180.178" "country" "Brazil" "country_code" "BR" "city" "Bagé" "longitude" "-54.1038619" "latitude" "-31.3317595" "last_login" "1572621060" +HSET "user:4628" "first_name" "Edyth" "last_name" "St. Louis" "email" "estlouishj@pen.io" "gender" "female" "ip_address" "228.167.206.247" "country" "Iran" "country_code" "IR" "city" "Shāzand" "longitude" "49.4008633" "latitude" "33.9345904" "last_login" "1575938386" +HSET "user:4629" "first_name" "Harris" "last_name" "Whitland" "email" "hwhitlandhk@cam.ac.uk" "gender" "male" "ip_address" "25.8.152.223" "country" "Portugal" "country_code" "PT" "city" "Laveiras" "longitude" "-9.2716405" "latitude" "38.708348" "last_login" "1579463418" +HSET "user:4630" "first_name" "Kiele" "last_name" "Singh" "email" "ksinghhl@networkadvertising.org" "gender" "female" "ip_address" "85.162.79.201" "country" "China" "country_code" "CN" "city" "Xiaohe" "longitude" "102.521807" "latitude" "35.202503" "last_login" "1578138203" +HSET "user:4631" "first_name" "Adriena" "last_name" "Astlett" "email" "aastletthm@fotki.com" "gender" "female" "ip_address" "208.216.103.61" "country" "Ukraine" "country_code" "UA" "city" "Piskivka" "longitude" "29.5987334" "latitude" "50.6960614" "last_login" "1569900421" +HSET "user:4632" "first_name" "Gwyn" "last_name" "Lodemann" "email" "glodemannhn@hatena.ne.jp" "gender" "female" "ip_address" "68.133.71.252" "country" "China" "country_code" "CN" "city" "Xiadian" "longitude" "118.725698" "latitude" "35.621965" "last_login" "1577567997" +HSET "user:4633" "first_name" "Florrie" "last_name" "Tester" "email" "ftesterho@apache.org" "gender" "female" "ip_address" "146.68.163.250" "country" "Mexico" "country_code" "MX" "city" "Revolucion Verde" "longitude" "-97.45842" "latitude" "25.8513334" "last_login" "1589326426" +HSET "user:4634" "first_name" "Bennie" "last_name" "Worsnop" "email" "bworsnophp@twitter.com" "gender" "male" "ip_address" "30.242.110.74" "country" "Burkina Faso" "country_code" "BF" "city" "Koudougou" "longitude" "-2.3517526" "latitude" "12.2562183" "last_login" "1573327124" +HSET "user:4635" "first_name" "Robert" "last_name" "Osmant" "email" "rosmanthq@google.ru" "gender" "male" "ip_address" "62.2.233.164" "country" "Azerbaijan" "country_code" "AZ" "city" "Dzhalilabad" "longitude" "48.5100604" "latitude" "39.2051632" "last_login" "1597781710" +HSET "user:4636" "first_name" "Pearce" "last_name" "Major" "email" "pmajorhr@cmu.edu" "gender" "male" "ip_address" "91.155.123.146" "country" "Russia" "country_code" "RU" "city" "Rostokino" "longitude" "37.690366" "latitude" "55.874056" "last_login" "1590887838" +HSET "user:4637" "first_name" "Bertram" "last_name" "Filochov" "email" "bfilochovhs@rambler.ru" "gender" "male" "ip_address" "101.139.64.66" "country" "Moldova" "country_code" "MD" "city" "Ungheni" "longitude" "27.7917874" "latitude" "47.2262024" "last_login" "1581869603" +HSET "user:4638" "first_name" "Terri" "last_name" "Lermit" "email" "tlermitht@acquirethisname.com" "gender" "male" "ip_address" "227.35.235.101" "country" "Indonesia" "country_code" "ID" "city" "Lantera" "longitude" "106.7817741" "latitude" "-6.2455587" "last_login" "1573098075" +HSET "user:4639" "first_name" "Tove" "last_name" "Schwand" "email" "tschwandhu@linkedin.com" "gender" "female" "ip_address" "199.187.142.206" "country" "China" "country_code" "CN" "city" "Mingyuedian" "longitude" "114.897169" "latitude" "38.452173" "last_login" "1570270082" +HSET "user:4640" "first_name" "Valentin" "last_name" "Fidgett" "email" "vfidgetthv@issuu.com" "gender" "male" "ip_address" "0.129.123.120" "country" "Indonesia" "country_code" "ID" "city" "Mbomba" "longitude" "121.674572" "latitude" "-0.5223759" "last_login" "1585750445" +HSET "user:4641" "first_name" "Alisander" "last_name" "Ianne" "email" "aiannehw@apache.org" "gender" "male" "ip_address" "0.150.44.226" "country" "Russia" "country_code" "RU" "city" "Usol’ye" "longitude" "56.6803807" "latitude" "59.4254685" "last_login" "1598900878" +HSET "user:4642" "first_name" "Iolande" "last_name" "De Ruel" "email" "ideruelhx@disqus.com" "gender" "female" "ip_address" "9.15.25.186" "country" "Russia" "country_code" "RU" "city" "Vnukovo" "longitude" "37.2712341" "latitude" "55.599648" "last_login" "1575568098" +HSET "user:4643" "first_name" "Guenna" "last_name" "McTerlagh" "email" "gmcterlaghhy@virginia.edu" "gender" "female" "ip_address" "15.164.162.111" "country" "Latvia" "country_code" "LV" "city" "Zilupe" "longitude" "28.1195609" "latitude" "56.387721" "last_login" "1592562147" +HSET "user:4644" "first_name" "Edith" "last_name" "Symons" "email" "esymonshz@deviantart.com" "gender" "female" "ip_address" "66.237.86.245" "country" "Palestinian Territory" "country_code" "PS" "city" "Al Fandaqūmīyah" "longitude" "35.20329" "latitude" "32.3206" "last_login" "1570037576" +HSET "user:4645" "first_name" "Elena" "last_name" "Goskar" "email" "egoskari0@msu.edu" "gender" "female" "ip_address" "139.66.117.231" "country" "Russia" "country_code" "RU" "city" "Teberda" "longitude" "41.7374739" "latitude" "43.4265165" "last_login" "1575410999" +HSET "user:4646" "first_name" "Walsh" "last_name" "Fladgate" "email" "wfladgatei1@epa.gov" "gender" "male" "ip_address" "13.39.200.101" "country" "China" "country_code" "CN" "city" "Guanyinsi" "longitude" "120.185095" "latitude" "33.083093" "last_login" "1596163471" +HSET "user:4647" "first_name" "Celestyn" "last_name" "Conquest" "email" "cconquesti2@ihg.com" "gender" "female" "ip_address" "83.78.36.126" "country" "China" "country_code" "CN" "city" "Baiguo" "longitude" "104.512603" "latitude" "26.006775" "last_login" "1591120217" +HSET "user:4648" "first_name" "Isahella" "last_name" "Sellors" "email" "isellorsi3@mozilla.com" "gender" "female" "ip_address" "43.254.69.49" "country" "Portugal" "country_code" "PT" "city" "Carrasqueira" "longitude" "-8.7329478" "latitude" "39.7575072" "last_login" "1598258361" +HSET "user:4649" "first_name" "Alvis" "last_name" "Fitzackerley" "email" "afitzackerleyi4@weibo.com" "gender" "male" "ip_address" "228.78.185.190" "country" "Samoa" "country_code" "WS" "city" "Vailoa" "longitude" "-172.3051657" "latitude" "-13.7557949" "last_login" "1578509161" +HSET "user:4650" "first_name" "Jerald" "last_name" "Petrelli" "email" "jpetrellii5@chronoengine.com" "gender" "male" "ip_address" "162.25.123.81" "country" "Brazil" "country_code" "BR" "city" "Espinosa" "longitude" "-43.0971625" "latitude" "-14.7710261" "last_login" "1597008822" +HSET "user:4651" "first_name" "Ginnie" "last_name" "Flight" "email" "gflighti6@jalbum.net" "gender" "female" "ip_address" "70.112.192.86" "country" "Peru" "country_code" "PE" "city" "Cayna" "longitude" "-79.8310829" "latitude" "-6.760856" "last_login" "1571886170" +HSET "user:4652" "first_name" "Jeanelle" "last_name" "Royston" "email" "jroystoni7@miitbeian.gov.cn" "gender" "female" "ip_address" "161.118.224.238" "country" "China" "country_code" "CN" "city" "Xuanhua" "longitude" "115.099494" "latitude" "40.608793" "last_login" "1572671702" +HSET "user:4653" "first_name" "Willette" "last_name" "Proffer" "email" "wprofferi8@globo.com" "gender" "female" "ip_address" "192.146.30.233" "country" "Philippines" "country_code" "PH" "city" "Loyola" "longitude" "120.998941" "latitude" "14.6131569" "last_login" "1579280277" +HSET "user:4654" "first_name" "Judah" "last_name" "Knocker" "email" "jknockeri9@sbwire.com" "gender" "male" "ip_address" "104.179.74.118" "country" "Brazil" "country_code" "BR" "city" "Estância" "longitude" "-37.43854" "latitude" "-11.268661" "last_login" "1599858677" +HSET "user:4655" "first_name" "Lefty" "last_name" "Cadwallader" "email" "lcadwalladeria@hc360.com" "gender" "male" "ip_address" "65.3.253.22" "country" "Sweden" "country_code" "SE" "city" "Trollhättan" "longitude" "12.3166671" "latitude" "58.316667" "last_login" "1572978154" +HSET "user:4656" "first_name" "Judah" "last_name" "Bew" "email" "jbewib@twitpic.com" "gender" "male" "ip_address" "83.157.95.15" "country" "Estonia" "country_code" "EE" "city" "Paldiski" "longitude" "24.0551606" "latitude" "59.3528754" "last_login" "1568634673" +HSET "user:4657" "first_name" "Taylor" "last_name" "Ubanks" "email" "tubanksic@diigo.com" "gender" "male" "ip_address" "46.60.245.141" "country" "Czech Republic" "country_code" "CZ" "city" "Petrov" "longitude" "17.2802878" "latitude" "48.8818933" "last_login" "1570984902" +HSET "user:4658" "first_name" "Natty" "last_name" "Torri" "email" "ntorriid@tripadvisor.com" "gender" "female" "ip_address" "231.102.47.143" "country" "Vietnam" "country_code" "VN" "city" "Ea Drăng" "longitude" "108.2080973" "latitude" "13.204053" "last_login" "1578657419" +HSET "user:4659" "first_name" "Stacia" "last_name" "Wormstone" "email" "swormstoneie@moonfruit.com" "gender" "female" "ip_address" "68.143.24.248" "country" "Philippines" "country_code" "PH" "city" "Malawa" "longitude" "120.2781338" "latitude" "15.9584937" "last_login" "1585491783" +HSET "user:4660" "first_name" "Ravi" "last_name" "Celler" "email" "rcellerif@ucsd.edu" "gender" "male" "ip_address" "48.11.146.219" "country" "Greece" "country_code" "GR" "city" "Áno Kalentíni" "longitude" "21.1614231" "latitude" "39.2476884" "last_login" "1584483591" +HSET "user:4661" "first_name" "Elfrida" "last_name" "Mathison" "email" "emathisonig@wunderground.com" "gender" "female" "ip_address" "138.201.67.139" "country" "Canada" "country_code" "CA" "city" "Baie-D'Urfé" "longitude" "-73.9160797" "latitude" "45.416456" "last_login" "1599026122" +HSET "user:4662" "first_name" "Magdalen" "last_name" "Kalker" "email" "mkalkerih@sun.com" "gender" "female" "ip_address" "51.202.82.57" "country" "North Korea" "country_code" "KP" "city" "Sinmak" "longitude" "126.2332502" "latitude" "38.4215487" "last_login" "1590430516" +HSET "user:4663" "first_name" "Seline" "last_name" "Stogill" "email" "sstogillii@opera.com" "gender" "female" "ip_address" "172.152.173.148" "country" "China" "country_code" "CN" "city" "Xianren" "longitude" "106.809489" "latitude" "24.686644" "last_login" "1573936381" +HSET "user:4664" "first_name" "Thacher" "last_name" "Maeer" "email" "tmaeerij@symantec.com" "gender" "male" "ip_address" "9.183.204.181" "country" "China" "country_code" "CN" "city" "Shicang" "longitude" "118.9353968" "latitude" "29.5530941" "last_login" "1568907310" +HSET "user:4665" "first_name" "Alissa" "last_name" "Chipchase" "email" "achipchaseik@ameblo.jp" "gender" "female" "ip_address" "38.129.28.181" "country" "Philippines" "country_code" "PH" "city" "Bocos" "longitude" "121.065069" "latitude" "16.913074" "last_login" "1578095542" +HSET "user:4666" "first_name" "Giraldo" "last_name" "Dalton" "email" "gdaltonil@gov.uk" "gender" "male" "ip_address" "94.180.108.54" "country" "Sweden" "country_code" "SE" "city" "Karlshamn" "longitude" "14.8628712" "latitude" "56.1705322" "last_login" "1599080173" +HSET "user:4667" "first_name" "Kerby" "last_name" "O'Hickey" "email" "kohickeyim@youku.com" "gender" "male" "ip_address" "235.154.117.73" "country" "France" "country_code" "FR" "city" "Bar-le-Duc" "longitude" "5.0953327" "latitude" "48.7131111" "last_login" "1585037033" +HSET "user:4668" "first_name" "Stephan" "last_name" "Whimper" "email" "swhimperin@wordpress.com" "gender" "male" "ip_address" "84.224.133.123" "country" "Sri Lanka" "country_code" "LK" "city" "Panadura" "longitude" "79.8949309" "latitude" "6.7527994" "last_login" "1586819389" +HSET "user:4669" "first_name" "Marilee" "last_name" "Jannings" "email" "mjanningsio@dyndns.org" "gender" "female" "ip_address" "30.92.11.69" "country" "Mozambique" "country_code" "MZ" "city" "Macia" "longitude" "33.1070309" "latitude" "-25.0263578" "last_login" "1592410660" +HSET "user:4670" "first_name" "Janaya" "last_name" "FitzGilbert" "email" "jfitzgilbertip@goodreads.com" "gender" "female" "ip_address" "19.166.148.126" "country" "Peru" "country_code" "PE" "city" "Yanacancha" "longitude" "-75.416667" "latitude" "-12.2" "last_login" "1588765245" +HSET "user:4671" "first_name" "Terrye" "last_name" "Drogan" "email" "tdroganiq@tinyurl.com" "gender" "female" "ip_address" "60.65.45.235" "country" "Indonesia" "country_code" "ID" "city" "Lawesigalagala Timur" "longitude" "97.913223" "latitude" "3.352913" "last_login" "1596474104" +HSET "user:4672" "first_name" "Emlyn" "last_name" "Gauden" "email" "egaudenir@cisco.com" "gender" "female" "ip_address" "246.96.55.94" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.7140212" "latitude" "59.9112915" "last_login" "1593865906" +HSET "user:4673" "first_name" "Ignazio" "last_name" "Cahn" "email" "icahnis@apache.org" "gender" "male" "ip_address" "86.237.187.79" "country" "Norway" "country_code" "NO" "city" "Porsgrunn" "longitude" "9.6759643" "latitude" "59.1102039" "last_login" "1586933441" +HSET "user:4674" "first_name" "Rhianon" "last_name" "Gillebert" "email" "rgillebertit@furl.net" "gender" "female" "ip_address" "65.102.59.223" "country" "United States" "country_code" "US" "city" "Kingsport" "longitude" "-82.5753842" "latitude" "36.5804277" "last_login" "1589193304" +HSET "user:4675" "first_name" "Mayne" "last_name" "Vayne" "email" "mvayneiu@e-recht24.de" "gender" "male" "ip_address" "209.211.170.33" "country" "China" "country_code" "CN" "city" "Nanyang" "longitude" "112.528308" "latitude" "32.990664" "last_login" "1591421115" +HSET "user:4676" "first_name" "Perice" "last_name" "McGuinley" "email" "pmcguinleyiv@blogger.com" "gender" "male" "ip_address" "26.153.1.56" "country" "Belarus" "country_code" "BY" "city" "Khodasy" "longitude" "31.4779" "latitude" "53.9266" "last_login" "1586818243" +HSET "user:4677" "first_name" "Randa" "last_name" "Leathers" "email" "rleathersiw@purevolume.com" "gender" "female" "ip_address" "212.114.191.129" "country" "China" "country_code" "CN" "city" "Shitun" "longitude" "118.764807" "latitude" "27.351652" "last_login" "1592724054" +HSET "user:4678" "first_name" "Nels" "last_name" "Buckenhill" "email" "nbuckenhillix@sitemeter.com" "gender" "male" "ip_address" "228.254.72.150" "country" "Brazil" "country_code" "BR" "city" "Jardinópolis" "longitude" "-47.7772049" "latitude" "-21.0277616" "last_login" "1572325928" +HSET "user:4679" "first_name" "Morry" "last_name" "Ledeker" "email" "mledekeriy@a8.net" "gender" "male" "ip_address" "234.63.226.1" "country" "Cyprus" "country_code" "CY" "city" "Ágios Týchon" "longitude" "33.129529" "latitude" "34.7188616" "last_login" "1578874580" +HSET "user:4680" "first_name" "Julianne" "last_name" "Daniellot" "email" "jdaniellotiz@wisc.edu" "gender" "female" "ip_address" "64.110.114.62" "country" "Sweden" "country_code" "SE" "city" "Stocksund" "longitude" "18.0637231" "latitude" "59.3881332" "last_login" "1576807888" +HSET "user:4681" "first_name" "Pernell" "last_name" "Harriskine" "email" "pharriskinej0@sciencedaily.com" "gender" "male" "ip_address" "76.94.161.43" "country" "Sweden" "country_code" "SE" "city" "Solna" "longitude" "18.0191452" "latitude" "59.3525393" "last_login" "1576506111" +HSET "user:4682" "first_name" "Balduin" "last_name" "Mahmood" "email" "bmahmoodj1@ftc.gov" "gender" "male" "ip_address" "211.26.241.18" "country" "Philippines" "country_code" "PH" "city" "Guiset East" "longitude" "125.0950286" "latitude" "7.3442714" "last_login" "1574806675" +HSET "user:4683" "first_name" "Michale" "last_name" "Huchot" "email" "mhuchotj2@gmpg.org" "gender" "male" "ip_address" "207.228.29.123" "country" "Philippines" "country_code" "PH" "city" "Dapitan" "longitude" "121.0481656" "latitude" "14.5612208" "last_login" "1574234175" +HSET "user:4684" "first_name" "Celine" "last_name" "Babonau" "email" "cbabonauj3@hubpages.com" "gender" "female" "ip_address" "40.86.196.120" "country" "Tunisia" "country_code" "TN" "city" "Monastir" "longitude" "10.8112885" "latitude" "35.7642515" "last_login" "1592003971" +HSET "user:4685" "first_name" "Abelard" "last_name" "Matula" "email" "amatulaj4@state.tx.us" "gender" "male" "ip_address" "162.12.4.61" "country" "Vietnam" "country_code" "VN" "city" "Hà Tiên" "longitude" "104.4901728" "latitude" "10.381909" "last_login" "1585394262" +HSET "user:4686" "first_name" "Heath" "last_name" "Bebbington" "email" "hbebbingtonj5@shutterfly.com" "gender" "female" "ip_address" "184.120.7.78" "country" "United Arab Emirates" "country_code" "AE" "city" "Dubai" "longitude" "55.2707828" "latitude" "25.2048493" "last_login" "1586532966" +HSET "user:4687" "first_name" "Mathew" "last_name" "Isted" "email" "mistedj6@unblog.fr" "gender" "male" "ip_address" "213.36.33.188" "country" "Indonesia" "country_code" "ID" "city" "Tanggung" "longitude" "112.1758089" "latitude" "-8.0716019" "last_login" "1581473021" +HSET "user:4688" "first_name" "Constancy" "last_name" "Dryburgh" "email" "cdryburghj7@chron.com" "gender" "female" "ip_address" "32.180.142.7" "country" "China" "country_code" "CN" "city" "Fuqiang" "longitude" "119.384334" "latitude" "25.721143" "last_login" "1569955420" +HSET "user:4689" "first_name" "Cyndy" "last_name" "Paxman" "email" "cpaxmanj8@wikispaces.com" "gender" "female" "ip_address" "135.186.4.112" "country" "Poland" "country_code" "PL" "city" "Raniżów" "longitude" "22.0218252" "latitude" "50.2709514" "last_login" "1587752500" +HSET "user:4690" "first_name" "Shae" "last_name" "Trimnell" "email" "strimnellj9@un.org" "gender" "male" "ip_address" "239.154.187.218" "country" "Philippines" "country_code" "PH" "city" "San Miguel" "longitude" "126.009711" "latitude" "8.955271" "last_login" "1577746914" +HSET "user:4691" "first_name" "Katharyn" "last_name" "M'Quharge" "email" "kmquhargeja@mac.com" "gender" "female" "ip_address" "116.19.123.37" "country" "China" "country_code" "CN" "city" "Nanshi" "longitude" "113.525165" "latitude" "22.801624" "last_login" "1588857113" +HSET "user:4692" "first_name" "Otto" "last_name" "Aird" "email" "oairdjb@slashdot.org" "gender" "male" "ip_address" "143.30.14.178" "country" "Philippines" "country_code" "PH" "city" "San Enrique" "longitude" "122.8801918" "latitude" "10.4179921" "last_login" "1574645074" +HSET "user:4693" "first_name" "Madelyn" "last_name" "Garlett" "email" "mgarlettjc@youtube.com" "gender" "female" "ip_address" "28.254.142.189" "country" "Mongolia" "country_code" "MN" "city" "Jargalant" "longitude" "100.7724281" "latitude" "48.7277622" "last_login" "1596078271" +HSET "user:4694" "first_name" "Vonny" "last_name" "Vasyukhnov" "email" "vvasyukhnovjd@dell.com" "gender" "female" "ip_address" "138.34.7.158" "country" "Tanzania" "country_code" "TZ" "city" "Kyaka" "longitude" "31.4199035" "latitude" "-1.2545772" "last_login" "1591292996" +HSET "user:4695" "first_name" "Reagan" "last_name" "Trounson" "email" "rtrounsonje@redcross.org" "gender" "male" "ip_address" "179.112.157.68" "country" "Kazakhstan" "country_code" "KZ" "city" "Petropavlovsk" "longitude" "69.1505479" "latitude" "54.8732209" "last_login" "1578226967" +HSET "user:4696" "first_name" "Pattie" "last_name" "Yarranton" "email" "pyarrantonjf@xrea.com" "gender" "female" "ip_address" "30.172.122.112" "country" "Bangladesh" "country_code" "BD" "city" "Sarankhola" "longitude" "89.8130356" "latitude" "22.0952234" "last_login" "1570875097" +HSET "user:4697" "first_name" "Dinny" "last_name" "Truckell" "email" "dtruckelljg@cam.ac.uk" "gender" "female" "ip_address" "147.33.47.209" "country" "Russia" "country_code" "RU" "city" "Solnechnogorsk" "longitude" "36.99786" "latitude" "56.176516" "last_login" "1581981986" +HSET "user:4698" "first_name" "Tymon" "last_name" "Drayn" "email" "tdraynjh@elpais.com" "gender" "male" "ip_address" "111.215.132.255" "country" "China" "country_code" "CN" "city" "Jingping" "longitude" "116.70345" "latitude" "23.365556" "last_login" "1570819324" +HSET "user:4699" "first_name" "Neila" "last_name" "McElrath" "email" "nmcelrathji@tripadvisor.com" "gender" "female" "ip_address" "129.248.95.197" "country" "Mexico" "country_code" "MX" "city" "Morelos" "longitude" "-99.1013498" "latitude" "18.6813049" "last_login" "1587373788" +HSET "user:4700" "first_name" "Evelin" "last_name" "Gerrietz" "email" "egerrietzjj@trellian.com" "gender" "male" "ip_address" "9.78.126.163" "country" "Brazil" "country_code" "BR" "city" "Lajinha" "longitude" "-41.5612423" "latitude" "-20.1217728" "last_login" "1592512063" +HSET "user:4701" "first_name" "Hogan" "last_name" "Pedersen" "email" "hpedersenjk@xing.com" "gender" "male" "ip_address" "146.211.178.206" "country" "El Salvador" "country_code" "SV" "city" "Tenancingo" "longitude" "-88.9856574" "latitude" "13.8354819" "last_login" "1573004715" +HSET "user:4702" "first_name" "Antone" "last_name" "Crossley" "email" "acrossleyjl@cpanel.net" "gender" "male" "ip_address" "179.97.120.235" "country" "Trinidad and Tobago" "country_code" "TT" "city" "Couva" "longitude" "-61.4493842" "latitude" "10.4320215" "last_login" "1594738318" +HSET "user:4703" "first_name" "Herta" "last_name" "Jeffree" "email" "hjeffreejm@cafepress.com" "gender" "female" "ip_address" "161.129.158.129" "country" "Philippines" "country_code" "PH" "city" "Mandaluyong City" "longitude" "121.0855062" "latitude" "14.5906311" "last_login" "1578073994" +HSET "user:4704" "first_name" "Timothee" "last_name" "Jerromes" "email" "tjerromesjn@about.com" "gender" "male" "ip_address" "151.170.43.251" "country" "Czech Republic" "country_code" "CZ" "city" "Nasavrky" "longitude" "16.2590848" "latitude" "50.025483" "last_login" "1572764093" +HSET "user:4705" "first_name" "Hagen" "last_name" "Reichert" "email" "hreichertjo@illinois.edu" "gender" "male" "ip_address" "102.138.200.156" "country" "Brazil" "country_code" "BR" "city" "Jeremoabo" "longitude" "-38.5690418" "latitude" "-10.0036656" "last_login" "1592768016" +HSET "user:4706" "first_name" "Liz" "last_name" "Corona" "email" "lcoronajp@dailymail.co.uk" "gender" "female" "ip_address" "8.86.128.199" "country" "China" "country_code" "CN" "city" "Sanzhou" "longitude" "113.268583" "latitude" "22.872655" "last_login" "1589244157" +HSET "user:4707" "first_name" "Joyous" "last_name" "Lamblin" "email" "jlamblinjq@canalblog.com" "gender" "female" "ip_address" "135.46.154.12" "country" "Indonesia" "country_code" "ID" "city" "Banjar Laing" "longitude" "115.136457" "latitude" "-8.577582" "last_login" "1575582708" +HSET "user:4708" "first_name" "Allys" "last_name" "Blaxeland" "email" "ablaxelandjr@kickstarter.com" "gender" "female" "ip_address" "31.122.56.82" "country" "Norway" "country_code" "NO" "city" "Trondheim" "longitude" "10.4024274" "latitude" "63.4400274" "last_login" "1583525438" +HSET "user:4709" "first_name" "Tiffy" "last_name" "Willcot" "email" "twillcotjs@webnode.com" "gender" "female" "ip_address" "111.29.29.185" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "12.0625459" "latitude" "57.7314161" "last_login" "1588915734" +HSET "user:4710" "first_name" "Murielle" "last_name" "Elsby" "email" "melsbyjt@salon.com" "gender" "female" "ip_address" "162.249.153.220" "country" "Honduras" "country_code" "HN" "city" "San Esteban" "longitude" "-85.7692277" "latitude" "15.2120303" "last_login" "1582471877" +HSET "user:4711" "first_name" "Garnette" "last_name" "Broyd" "email" "gbroydju@newsvine.com" "gender" "female" "ip_address" "186.84.221.221" "country" "China" "country_code" "CN" "city" "Sheshan" "longitude" "121.197458" "latitude" "31.091814" "last_login" "1569772550" +HSET "user:4712" "first_name" "Anna-diane" "last_name" "Geake" "email" "ageakejv@cpanel.net" "gender" "female" "ip_address" "117.199.45.7" "country" "China" "country_code" "CN" "city" "Pagnag" "longitude" "91.677053" "latitude" "32.265208" "last_login" "1569462712" +HSET "user:4713" "first_name" "Ingaborg" "last_name" "Jozwik" "email" "ijozwikjw@msu.edu" "gender" "female" "ip_address" "20.54.23.0" "country" "Indonesia" "country_code" "ID" "city" "Mulyoagung" "longitude" "112.5870873" "latitude" "-7.9207392" "last_login" "1569428596" +HSET "user:4714" "first_name" "Delilah" "last_name" "Atterbury" "email" "datterburyjx@list-manage.com" "gender" "female" "ip_address" "151.203.117.80" "country" "China" "country_code" "CN" "city" "Gechuan" "longitude" "116.747009" "latitude" "25.748455" "last_login" "1574091926" +HSET "user:4715" "first_name" "Gavin" "last_name" "Lismore" "email" "glismorejy@fc2.com" "gender" "male" "ip_address" "70.15.52.30" "country" "China" "country_code" "CN" "city" "Gejiu" "longitude" "103.160034" "latitude" "23.359121" "last_login" "1576491514" +HSET "user:4716" "first_name" "Ilsa" "last_name" "Whife" "email" "iwhifejz@privacy.gov.au" "gender" "female" "ip_address" "250.30.220.183" "country" "Philippines" "country_code" "PH" "city" "Sigaboy" "longitude" "126.0755806" "latitude" "6.6560144" "last_login" "1576136967" +HSET "user:4717" "first_name" "Florrie" "last_name" "Van Schafflaer" "email" "fvanschafflaerk0@goo.gl" "gender" "female" "ip_address" "73.194.230.206" "country" "Belize" "country_code" "BZ" "city" "Belize City" "longitude" "-88.1962133" "latitude" "17.5045661" "last_login" "1598358603" +HSET "user:4718" "first_name" "Hughie" "last_name" "Mithun" "email" "hmithunk1@nyu.edu" "gender" "male" "ip_address" "111.174.47.72" "country" "Croatia" "country_code" "HR" "city" "Stari Grad" "longitude" "16.5992505" "latitude" "43.1839958" "last_login" "1599630727" +HSET "user:4719" "first_name" "Galven" "last_name" "Rantoull" "email" "grantoullk2@wikimedia.org" "gender" "male" "ip_address" "217.50.158.64" "country" "Belarus" "country_code" "BY" "city" "Starobin" "longitude" "27.4572059" "latitude" "52.7312889" "last_login" "1590877863" +HSET "user:4720" "first_name" "Olivie" "last_name" "Connichie" "email" "oconnichiek3@ning.com" "gender" "female" "ip_address" "116.67.199.110" "country" "Russia" "country_code" "RU" "city" "Rakhmanovo" "longitude" "37.9891132" "latitude" "56.1597869" "last_login" "1593592080" +HSET "user:4721" "first_name" "Allayne" "last_name" "Torrans" "email" "atorransk4@nytimes.com" "gender" "male" "ip_address" "224.125.4.28" "country" "Ukraine" "country_code" "UA" "city" "Voskhod" "longitude" "34.2156313" "latitude" "44.5132212" "last_login" "1574055534" +HSET "user:4722" "first_name" "Arabele" "last_name" "Abotson" "email" "aabotsonk5@nydailynews.com" "gender" "female" "ip_address" "38.58.192.223" "country" "Poland" "country_code" "PL" "city" "Książki" "longitude" "19.0654716" "latitude" "53.326905" "last_login" "1585501742" +HSET "user:4723" "first_name" "Ginni" "last_name" "Cardoo" "email" "gcardook6@dot.gov" "gender" "female" "ip_address" "28.33.187.217" "country" "South Africa" "country_code" "ZA" "city" "Muldersdriseloop" "longitude" "27.8452537" "latitude" "-26.0396759" "last_login" "1583767005" +HSET "user:4724" "first_name" "Denna" "last_name" "Lathy" "email" "dlathyk7@tripod.com" "gender" "female" "ip_address" "10.116.94.184" "country" "Poland" "country_code" "PL" "city" "Pułtusk" "longitude" "21.1228461" "latitude" "52.7440595" "last_login" "1580118164" +HSET "user:4725" "first_name" "Erich" "last_name" "Blatherwick" "email" "eblatherwickk8@odnoklassniki.ru" "gender" "male" "ip_address" "216.179.244.66" "country" "Guatemala" "country_code" "GT" "city" "Chisec" "longitude" "-90.290544" "latitude" "15.809627" "last_login" "1586090162" +HSET "user:4726" "first_name" "Devlin" "last_name" "Seally" "email" "dseallyk9@ucsd.edu" "gender" "male" "ip_address" "125.245.46.4" "country" "Indonesia" "country_code" "ID" "city" "Bijeli" "longitude" "124.3365882" "latitude" "-9.6666989" "last_login" "1571457529" +HSET "user:4727" "first_name" "Elmore" "last_name" "Hutcheons" "email" "ehutcheonska@buzzfeed.com" "gender" "male" "ip_address" "103.248.142.67" "country" "Portugal" "country_code" "PT" "city" "Funchal" "longitude" "-16.9417632" "latitude" "32.6480275" "last_login" "1573304905" +HSET "user:4728" "first_name" "Donia" "last_name" "Geck" "email" "dgeckkb@bigcartel.com" "gender" "female" "ip_address" "171.84.186.218" "country" "China" "country_code" "CN" "city" "Pingle" "longitude" "110.643305" "latitude" "24.633362" "last_login" "1572793907" +HSET "user:4729" "first_name" "Brewer" "last_name" "Taylo" "email" "btaylokc@amazon.de" "gender" "male" "ip_address" "33.240.228.112" "country" "Czech Republic" "country_code" "CZ" "city" "Brněnec" "longitude" "16.522025" "latitude" "49.6273493" "last_login" "1587928204" +HSET "user:4730" "first_name" "Dory" "last_name" "Marzelo" "email" "dmarzelokd@usgs.gov" "gender" "female" "ip_address" "211.238.230.51" "country" "Brazil" "country_code" "BR" "city" "Pederneiras" "longitude" "-48.7862736" "latitude" "-22.3463487" "last_login" "1591314220" +HSET "user:4731" "first_name" "Waverley" "last_name" "Winkle" "email" "wwinkleke@infoseek.co.jp" "gender" "male" "ip_address" "64.97.76.17" "country" "Kenya" "country_code" "KE" "city" "Kinango" "longitude" "39.3180297" "latitude" "-4.1393386" "last_login" "1597832237" +HSET "user:4732" "first_name" "Dov" "last_name" "Coult" "email" "dcoultkf@twitpic.com" "gender" "male" "ip_address" "211.163.66.148" "country" "Kenya" "country_code" "KE" "city" "Embu" "longitude" "37.4596409" "latitude" "-0.5388381" "last_login" "1575117244" +HSET "user:4733" "first_name" "Eben" "last_name" "Saffen" "email" "esaffenkg@hexun.com" "gender" "male" "ip_address" "178.184.223.81" "country" "Ireland" "country_code" "IE" "city" "Dungloe" "longitude" "-6.3695384" "latitude" "53.3734053" "last_login" "1570572594" +HSET "user:4734" "first_name" "Kenyon" "last_name" "Staden" "email" "kstadenkh@google.co.uk" "gender" "male" "ip_address" "42.123.4.230" "country" "Nigeria" "country_code" "NG" "city" "Ringim" "longitude" "9.0571089" "latitude" "12.151801" "last_login" "1580871937" +HSET "user:4735" "first_name" "Grantham" "last_name" "Dimblebee" "email" "gdimblebeeki@narod.ru" "gender" "male" "ip_address" "56.130.245.127" "country" "Indonesia" "country_code" "ID" "city" "Prantaan" "longitude" "111.5021144" "latitude" "-6.9534286" "last_login" "1589698214" +HSET "user:4736" "first_name" "Dewain" "last_name" "Grigg" "email" "dgriggkj@nhs.uk" "gender" "male" "ip_address" "125.239.17.130" "country" "United States" "country_code" "US" "city" "Fresno" "longitude" "-119.8062912" "latitude" "36.7757374" "last_login" "1577982873" +HSET "user:4737" "first_name" "Bar" "last_name" "Bracco" "email" "bbraccokk@nps.gov" "gender" "male" "ip_address" "213.35.119.174" "country" "Canada" "country_code" "CA" "city" "Drayton Valley" "longitude" "-114.9766785" "latitude" "53.2214074" "last_login" "1592529117" +HSET "user:4738" "first_name" "Charis" "last_name" "Mapledorum" "email" "cmapledorumkl@issuu.com" "gender" "female" "ip_address" "205.44.33.97" "country" "Sweden" "country_code" "SE" "city" "Onsala" "longitude" "12.0487391" "latitude" "57.4395298" "last_login" "1583550923" +HSET "user:4739" "first_name" "Otis" "last_name" "Bedham" "email" "obedhamkm@reference.com" "gender" "male" "ip_address" "6.239.84.52" "country" "Philippines" "country_code" "PH" "city" "Union" "longitude" "120.9965883" "latitude" "14.5792342" "last_login" "1591567512" +HSET "user:4740" "first_name" "Sabrina" "last_name" "Dransfield" "email" "sdransfieldkn@elegantthemes.com" "gender" "female" "ip_address" "152.153.174.162" "country" "Czech Republic" "country_code" "CZ" "city" "Újezd" "longitude" "16.9050077" "latitude" "49.7647258" "last_login" "1599487994" +HSET "user:4741" "first_name" "Darcy" "last_name" "Curley" "email" "dcurleyko@eepurl.com" "gender" "female" "ip_address" "76.216.242.128" "country" "Libya" "country_code" "LY" "city" "Qasr Abu Hadi" "longitude" "16.6556575" "latitude" "31.0531534" "last_login" "1590550844" +HSET "user:4742" "first_name" "Perkin" "last_name" "Bassham" "email" "pbasshamkp@time.com" "gender" "male" "ip_address" "181.15.141.53" "country" "Philippines" "country_code" "PH" "city" "Guintubhan" "longitude" "122.9611892" "latitude" "10.2060924" "last_login" "1597042876" +HSET "user:4743" "first_name" "Pauly" "last_name" "Kitcatt" "email" "pkitcattkq@mediafire.com" "gender" "female" "ip_address" "48.197.175.87" "country" "Brazil" "country_code" "BR" "city" "Conselheiro Lafaiete" "longitude" "-43.7850227" "latitude" "-20.6639305" "last_login" "1577767612" +HSET "user:4744" "first_name" "Lynne" "last_name" "Bain" "email" "lbainkr@stanford.edu" "gender" "female" "ip_address" "153.252.255.135" "country" "Ukraine" "country_code" "UA" "city" "Brylivka" "longitude" "33.1462635" "latitude" "46.4214581" "last_login" "1586173643" +HSET "user:4745" "first_name" "Brok" "last_name" "Bartoszewski" "email" "bbartoszewskiks@vk.com" "gender" "male" "ip_address" "103.105.181.236" "country" "Indonesia" "country_code" "ID" "city" "Tutem" "longitude" "124.2699432" "latitude" "-9.6551739" "last_login" "1596600578" +HSET "user:4746" "first_name" "Justine" "last_name" "Clerke" "email" "jclerkekt@fda.gov" "gender" "female" "ip_address" "223.104.157.42" "country" "Indonesia" "country_code" "ID" "city" "Curahpacul Satu" "longitude" "114.288097" "latitude" "-8.4425528" "last_login" "1599775312" +HSET "user:4747" "first_name" "Tades" "last_name" "Fellenor" "email" "tfellenorku@ovh.net" "gender" "male" "ip_address" "186.24.72.54" "country" "China" "country_code" "CN" "city" "Hegeng" "longitude" "105.877112" "latitude" "29.129743" "last_login" "1580846068" +HSET "user:4748" "first_name" "Cinderella" "last_name" "Ehlerding" "email" "cehlerdingkv@statcounter.com" "gender" "female" "ip_address" "191.241.237.247" "country" "China" "country_code" "CN" "city" "Moxi" "longitude" "102.125808" "latitude" "29.64227" "last_login" "1578580683" +HSET "user:4749" "first_name" "Filberto" "last_name" "Lambertson" "email" "flambertsonkw@flickr.com" "gender" "male" "ip_address" "207.204.166.137" "country" "United Kingdom" "country_code" "GB" "city" "Glasgow" "longitude" "-4.2494388" "latitude" "55.8709949" "last_login" "1586647848" +HSET "user:4750" "first_name" "Eolande" "last_name" "MacInerney" "email" "emacinerneykx@stumbleupon.com" "gender" "female" "ip_address" "0.194.33.111" "country" "Philippines" "country_code" "PH" "city" "Bombon" "longitude" "123.1989968" "latitude" "13.6867437" "last_login" "1595781247" +HSET "user:4751" "first_name" "Adolph" "last_name" "Poynser" "email" "apoynserky@un.org" "gender" "male" "ip_address" "13.47.151.61" "country" "Philippines" "country_code" "PH" "city" "Marogong" "longitude" "124.153749" "latitude" "7.5949353" "last_login" "1588761646" +HSET "user:4752" "first_name" "Maria" "last_name" "Oxton" "email" "moxtonkz@w3.org" "gender" "female" "ip_address" "144.56.164.174" "country" "China" "country_code" "CN" "city" "Yanyang" "longitude" "102.835223" "latitude" "23.219932" "last_login" "1572258091" +HSET "user:4753" "first_name" "Tadd" "last_name" "Alexandersen" "email" "talexandersenl0@quantcast.com" "gender" "male" "ip_address" "255.176.215.38" "country" "United States" "country_code" "US" "city" "Indianapolis" "longitude" "-86.1700894" "latitude" "39.7794767" "last_login" "1595704530" +HSET "user:4754" "first_name" "Aylmar" "last_name" "Adderson" "email" "aaddersonl1@simplemachines.org" "gender" "male" "ip_address" "133.219.86.251" "country" "Sweden" "country_code" "SE" "city" "Trollhättan" "longitude" "12.3260336" "latitude" "58.284686" "last_login" "1582971840" +HSET "user:4755" "first_name" "Deva" "last_name" "Gledhall" "email" "dgledhalll2@walmart.com" "gender" "female" "ip_address" "205.79.117.112" "country" "Sierra Leone" "country_code" "SL" "city" "Tongole" "longitude" "-11.9" "latitude" "7.45" "last_login" "1574158067" +HSET "user:4756" "first_name" "Ev" "last_name" "Dudny" "email" "edudnyl3@mit.edu" "gender" "male" "ip_address" "22.53.121.239" "country" "Croatia" "country_code" "HR" "city" "Špišić-Bukovica" "longitude" "17.3018974" "latitude" "45.8580458" "last_login" "1599578697" +HSET "user:4757" "first_name" "Allianora" "last_name" "Ledgerton" "email" "aledgertonl4@sun.com" "gender" "female" "ip_address" "111.72.159.122" "country" "China" "country_code" "CN" "city" "Jiufeng" "longitude" "120.4910168" "latitude" "30.7446878" "last_login" "1578678049" +HSET "user:4758" "first_name" "Jacquette" "last_name" "Bangley" "email" "jbangleyl5@nba.com" "gender" "female" "ip_address" "214.3.231.43" "country" "Indonesia" "country_code" "ID" "city" "Wolomarang" "longitude" "122.1916328" "latitude" "-8.618134" "last_login" "1574943984" +HSET "user:4759" "first_name" "Greg" "last_name" "Fibbens" "email" "gfibbensl6@nasa.gov" "gender" "male" "ip_address" "172.162.236.70" "country" "Afghanistan" "country_code" "AF" "city" "Dū Qal‘ah" "longitude" "61.4469" "latitude" "32.14237" "last_login" "1583094548" +HSET "user:4760" "first_name" "Darell" "last_name" "Baker" "email" "dbakerl7@washingtonpost.com" "gender" "female" "ip_address" "180.16.175.118" "country" "China" "country_code" "CN" "city" "Lantang" "longitude" "115.996709" "latitude" "33.052654" "last_login" "1570612929" +HSET "user:4761" "first_name" "Shermie" "last_name" "Pottiphar" "email" "spottipharl8@wp.com" "gender" "male" "ip_address" "167.157.5.128" "country" "China" "country_code" "CN" "city" "Mizhuang" "longitude" "112.55743" "latitude" "33.052837" "last_login" "1598217876" +HSET "user:4762" "first_name" "Julee" "last_name" "Feedham" "email" "jfeedhaml9@technorati.com" "gender" "female" "ip_address" "209.106.53.167" "country" "Poland" "country_code" "PL" "city" "Sierpc" "longitude" "19.669432" "latitude" "52.8568142" "last_login" "1584689629" +HSET "user:4763" "first_name" "Corbet" "last_name" "Eaton" "email" "ceatonla@mashable.com" "gender" "male" "ip_address" "80.70.73.19" "country" "France" "country_code" "FR" "city" "Avignon" "longitude" "4.3686291" "latitude" "43.8317876" "last_login" "1599020440" +HSET "user:4764" "first_name" "Nissa" "last_name" "Struis" "email" "nstruislb@umich.edu" "gender" "female" "ip_address" "168.120.125.23" "country" "Honduras" "country_code" "HN" "city" "Morazán" "longitude" "-87.603826" "latitude" "15.3179065" "last_login" "1588165952" +HSET "user:4765" "first_name" "Brena" "last_name" "Stellino" "email" "bstellinolc@github.io" "gender" "female" "ip_address" "137.66.164.25" "country" "China" "country_code" "CN" "city" "Shuanglu" "longitude" "103.923651" "latitude" "30.574474" "last_login" "1575484612" +HSET "user:4766" "first_name" "Abigael" "last_name" "Domerq" "email" "adomerqld@about.com" "gender" "female" "ip_address" "163.52.25.90" "country" "China" "country_code" "CN" "city" "Jieshou" "longitude" "115.374821" "latitude" "33.258244" "last_login" "1598722059" +HSET "user:4767" "first_name" "Andris" "last_name" "Togher" "email" "atogherle@sbwire.com" "gender" "male" "ip_address" "98.201.56.219" "country" "Indonesia" "country_code" "ID" "city" "Muncar" "longitude" "114.3103718" "latitude" "-8.4480167" "last_login" "1590265935" +HSET "user:4768" "first_name" "Willie" "last_name" "Mion" "email" "wmionlf@google.co.jp" "gender" "female" "ip_address" "205.246.240.81" "country" "Turkmenistan" "country_code" "TM" "city" "Serhetabat" "longitude" "62.3271815" "latitude" "35.275142" "last_login" "1586109496" +HSET "user:4769" "first_name" "Zsazsa" "last_name" "Minett" "email" "zminettlg@china.com.cn" "gender" "female" "ip_address" "51.41.155.220" "country" "Ukraine" "country_code" "UA" "city" "Bytkiv" "longitude" "24.472416" "latitude" "48.6299901" "last_login" "1573117352" +HSET "user:4770" "first_name" "Trace" "last_name" "Iacovone" "email" "tiacovonelh@odnoklassniki.ru" "gender" "male" "ip_address" "42.63.140.118" "country" "Portugal" "country_code" "PT" "city" "Chaves" "longitude" "-7.4731648" "latitude" "41.741781" "last_login" "1596793353" +HSET "user:4771" "first_name" "Ulrich" "last_name" "Cogzell" "email" "ucogzellli@creativecommons.org" "gender" "male" "ip_address" "83.78.249.180" "country" "Philippines" "country_code" "PH" "city" "Lusong" "longitude" "120.8249088" "latitude" "16.7903346" "last_login" "1595770554" +HSET "user:4772" "first_name" "Findley" "last_name" "Mersey" "email" "fmerseylj@statcounter.com" "gender" "male" "ip_address" "0.75.245.66" "country" "Iran" "country_code" "IR" "city" "Ravānsar" "longitude" "46.6512998" "latitude" "34.7120892" "last_login" "1587990895" +HSET "user:4773" "first_name" "Sherlocke" "last_name" "Trinkwon" "email" "strinkwonlk@sourceforge.net" "gender" "male" "ip_address" "70.0.253.196" "country" "Yemen" "country_code" "YE" "city" "Aş Şalw" "longitude" "44.21708" "latitude" "13.32887" "last_login" "1587432091" +HSET "user:4774" "first_name" "Leroi" "last_name" "Gaveltone" "email" "lgaveltonell@harvard.edu" "gender" "male" "ip_address" "103.226.192.21" "country" "Brazil" "country_code" "BR" "city" "Boituva" "longitude" "-47.6790285" "latitude" "-23.2860188" "last_login" "1582051280" +HSET "user:4775" "first_name" "Chrystal" "last_name" "Wilton" "email" "cwiltonlm@admin.ch" "gender" "female" "ip_address" "93.16.181.158" "country" "Austria" "country_code" "AT" "city" "Altenberg bei Linz" "longitude" "14.4310149" "latitude" "48.3688297" "last_login" "1586674683" +HSET "user:4776" "first_name" "Gian" "last_name" "Cottill" "email" "gcottillln@cafepress.com" "gender" "male" "ip_address" "144.218.30.250" "country" "China" "country_code" "CN" "city" "Jiulong" "longitude" "101.507294" "latitude" "29.000347" "last_login" "1591327069" +HSET "user:4777" "first_name" "Heath" "last_name" "Sager" "email" "hsagerlo@csmonitor.com" "gender" "female" "ip_address" "33.8.200.6" "country" "China" "country_code" "CN" "city" "Shitong" "longitude" "121.166112" "latitude" "30.025924" "last_login" "1597537309" +HSET "user:4778" "first_name" "Clyde" "last_name" "Renneke" "email" "crennekelp@ucsd.edu" "gender" "male" "ip_address" "108.20.55.39" "country" "France" "country_code" "FR" "city" "Montpellier" "longitude" "-0.8453268" "latitude" "47.3752386" "last_login" "1588250264" +HSET "user:4779" "first_name" "Kippy" "last_name" "Hughman" "email" "khughmanlq@theguardian.com" "gender" "female" "ip_address" "75.146.49.64" "country" "China" "country_code" "CN" "city" "Dongfeng" "longitude" "121.532286" "latitude" "31.236833" "last_login" "1588756112" +HSET "user:4780" "first_name" "Cindy" "last_name" "Lipsett" "email" "clipsettlr@aboutads.info" "gender" "female" "ip_address" "88.214.62.21" "country" "China" "country_code" "CN" "city" "Dongfanghong" "longitude" "80.3038321" "latitude" "41.1846097" "last_login" "1597272084" +HSET "user:4781" "first_name" "Kai" "last_name" "Kynson" "email" "kkynsonls@hostgator.com" "gender" "female" "ip_address" "226.43.250.127" "country" "Russia" "country_code" "RU" "city" "Groznyy" "longitude" "40.1981432" "latitude" "44.6441061" "last_login" "1580546977" +HSET "user:4782" "first_name" "Kary" "last_name" "Grenville" "email" "kgrenvillelt@cbc.ca" "gender" "female" "ip_address" "113.55.111.69" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "12.0599176" "latitude" "57.731461" "last_login" "1590376589" +HSET "user:4783" "first_name" "Jasmin" "last_name" "Ceaplen" "email" "jceaplenlu@smh.com.au" "gender" "female" "ip_address" "74.38.46.11" "country" "Philippines" "country_code" "PH" "city" "San Luis" "longitude" "125.743983" "latitude" "8.47834" "last_login" "1576909858" +HSET "user:4784" "first_name" "Charlie" "last_name" "Izkovitz" "email" "cizkovitzlv@yellowpages.com" "gender" "male" "ip_address" "160.164.210.241" "country" "Russia" "country_code" "RU" "city" "Novyy Urgal" "longitude" "132.6007578" "latitude" "51.0722125" "last_login" "1585876196" +HSET "user:4785" "first_name" "Sharleen" "last_name" "Guidi" "email" "sguidilw@japanpost.jp" "gender" "female" "ip_address" "162.231.204.60" "country" "China" "country_code" "CN" "city" "Dehui" "longitude" "125.72862" "latitude" "44.521785" "last_login" "1588362060" +HSET "user:4786" "first_name" "Reginald" "last_name" "Palleske" "email" "rpalleskelx@wikia.com" "gender" "male" "ip_address" "141.82.176.193" "country" "Indonesia" "country_code" "ID" "city" "Kahabe" "longitude" "121.9306" "latitude" "-10.5676" "last_login" "1578013077" +HSET "user:4787" "first_name" "Dorella" "last_name" "Iamittii" "email" "diamittiily@webeden.co.uk" "gender" "female" "ip_address" "219.146.184.147" "country" "Indonesia" "country_code" "ID" "city" "Ciawitali" "longitude" "108.133333" "latitude" "-7.633333" "last_login" "1586842755" +HSET "user:4788" "first_name" "Caresse" "last_name" "Saxon" "email" "csaxonlz@miibeian.gov.cn" "gender" "female" "ip_address" "201.177.205.251" "country" "Indonesia" "country_code" "ID" "city" "Merik" "longitude" "105.9997125" "latitude" "-5.9329071" "last_login" "1585931961" +HSET "user:4789" "first_name" "Ellie" "last_name" "Sirrell" "email" "esirrellm0@freewebs.com" "gender" "female" "ip_address" "191.54.45.192" "country" "United States" "country_code" "US" "city" "Pittsburgh" "longitude" "-80.04928" "latitude" "40.5053499" "last_login" "1590277984" +HSET "user:4790" "first_name" "Ingeborg" "last_name" "Cran" "email" "icranm1@pen.io" "gender" "female" "ip_address" "251.62.69.170" "country" "China" "country_code" "CN" "city" "Shuangxikou" "longitude" "119.314016" "latitude" "28.944692" "last_login" "1587893096" +HSET "user:4791" "first_name" "Rebecca" "last_name" "Killshaw" "email" "rkillshawm2@1und1.de" "gender" "female" "ip_address" "67.72.142.142" "country" "Sweden" "country_code" "SE" "city" "Hovås" "longitude" "11.9770405" "latitude" "57.6073069" "last_login" "1569025041" +HSET "user:4792" "first_name" "Josiah" "last_name" "Wilflinger" "email" "jwilflingerm3@webnode.com" "gender" "male" "ip_address" "138.223.216.247" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Lubumbashi" "longitude" "27.5026174" "latitude" "-11.6876026" "last_login" "1582366647" +HSET "user:4793" "first_name" "Eustacia" "last_name" "Barbey" "email" "ebarbeym4@google.fr" "gender" "female" "ip_address" "129.63.29.32" "country" "Indonesia" "country_code" "ID" "city" "Tonjongsari" "longitude" "108.1754804" "latitude" "-7.7408587" "last_login" "1589190238" +HSET "user:4794" "first_name" "Roda" "last_name" "Jedraszczyk" "email" "rjedraszczykm5@sohu.com" "gender" "female" "ip_address" "176.129.96.122" "country" "Sweden" "country_code" "SE" "city" "Kista" "longitude" "17.9282806" "latitude" "59.4075977" "last_login" "1579229226" +HSET "user:4795" "first_name" "Goddart" "last_name" "Hibbart" "email" "ghibbartm6@oakley.com" "gender" "male" "ip_address" "164.91.128.139" "country" "Poland" "country_code" "PL" "city" "Ursus" "longitude" "20.8837885" "latitude" "52.1951226" "last_login" "1572233261" +HSET "user:4796" "first_name" "Tiphany" "last_name" "Monday" "email" "tmondaym7@mayoclinic.com" "gender" "female" "ip_address" "173.135.207.93" "country" "China" "country_code" "CN" "city" "Chendong" "longitude" "117.9249002" "latitude" "35.8939566" "last_login" "1592074390" +HSET "user:4797" "first_name" "Danya" "last_name" "Sillis" "email" "dsillism8@cnn.com" "gender" "male" "ip_address" "22.236.175.72" "country" "Canada" "country_code" "CA" "city" "Beaumont" "longitude" "-113.4153735" "latitude" "53.3524256" "last_login" "1599618721" +HSET "user:4798" "first_name" "Rickey" "last_name" "Darkin" "email" "rdarkinm9@guardian.co.uk" "gender" "male" "ip_address" "218.80.57.195" "country" "Sweden" "country_code" "SE" "city" "Tyringe" "longitude" "13.6083989" "latitude" "56.1138556" "last_login" "1586155244" +HSET "user:4799" "first_name" "Stavros" "last_name" "Marxsen" "email" "smarxsenma@live.com" "gender" "male" "ip_address" "197.91.29.129" "country" "Madagascar" "country_code" "MG" "city" "Antsiranana" "longitude" "49.2942833" "latitude" "-12.3231349" "last_login" "1586620335" +HSET "user:4800" "first_name" "Neely" "last_name" "Ferfulle" "email" "nferfullemb@cdc.gov" "gender" "female" "ip_address" "133.178.145.80" "country" "Brazil" "country_code" "BR" "city" "Viana" "longitude" "-45.0373171" "latitude" "-3.2023658" "last_login" "1588446365" +HSET "user:4801" "first_name" "Shae" "last_name" "Doodney" "email" "sdoodneymc@hugedomains.com" "gender" "male" "ip_address" "241.195.85.65" "country" "Portugal" "country_code" "PT" "city" "Bairro do Margaça" "longitude" "-9.2788217" "latitude" "38.8774735" "last_login" "1586714450" +HSET "user:4802" "first_name" "Aeriell" "last_name" "Redemile" "email" "aredemilemd@pinterest.com" "gender" "female" "ip_address" "210.208.248.86" "country" "Germany" "country_code" "DE" "city" "Hanau" "longitude" "8.911141" "latitude" "50.104315" "last_login" "1571208372" +HSET "user:4803" "first_name" "Judi" "last_name" "Jenkin" "email" "jjenkinme@aol.com" "gender" "female" "ip_address" "185.237.135.63" "country" "China" "country_code" "CN" "city" "Shanghe" "longitude" "117.157183" "latitude" "37.309045" "last_login" "1578392395" +HSET "user:4804" "first_name" "Teresina" "last_name" "Sutheran" "email" "tsutheranmf@hp.com" "gender" "female" "ip_address" "8.118.222.110" "country" "Russia" "country_code" "RU" "city" "Svetogorsk" "longitude" "28.8780526" "latitude" "61.0962323" "last_login" "1576656604" +HSET "user:4805" "first_name" "Filide" "last_name" "Craiker" "email" "fcraikermg@mail.ru" "gender" "female" "ip_address" "165.121.53.177" "country" "China" "country_code" "CN" "city" "Kalatongke" "longitude" "102.901453" "latitude" "23.068062" "last_login" "1569037145" +HSET "user:4806" "first_name" "Jermayne" "last_name" "Jaukovic" "email" "jjaukovicmh@nps.gov" "gender" "male" "ip_address" "201.202.138.42" "country" "Afghanistan" "country_code" "AF" "city" "Markaz-e Woluswalī-ye Āchīn" "longitude" "70.70778" "latitude" "34.12583" "last_login" "1574126766" +HSET "user:4807" "first_name" "Marve" "last_name" "Collip" "email" "mcollipmi@google.nl" "gender" "male" "ip_address" "224.116.56.55" "country" "Croatia" "country_code" "HR" "city" "Nuštar" "longitude" "18.8818902" "latitude" "45.3098715" "last_login" "1587848458" +HSET "user:4808" "first_name" "Clyve" "last_name" "Gricewood" "email" "cgricewoodmj@go.com" "gender" "male" "ip_address" "70.191.191.53" "country" "China" "country_code" "CN" "city" "Qingminghe" "longitude" "113.698728" "latitude" "31.031618" "last_login" "1592809978" +HSET "user:4809" "first_name" "Abdul" "last_name" "Gaitley" "email" "agaitleymk@seesaa.net" "gender" "male" "ip_address" "41.211.183.110" "country" "Poland" "country_code" "PL" "city" "Murów" "longitude" "18.0313123" "latitude" "50.893024" "last_login" "1594681093" +HSET "user:4810" "first_name" "Claudian" "last_name" "Bradly" "email" "cbradlyml@histats.com" "gender" "male" "ip_address" "38.133.90.234" "country" "Croatia" "country_code" "HR" "city" "Smokvica" "longitude" "15.1873721" "latitude" "44.3200232" "last_login" "1587339738" +HSET "user:4811" "first_name" "Cristobal" "last_name" "Baldi" "email" "cbaldimm@google.com.hk" "gender" "male" "ip_address" "122.76.8.27" "country" "China" "country_code" "CN" "city" "Wuxiang" "longitude" "112.864561" "latitude" "36.837625" "last_login" "1578895260" +HSET "user:4812" "first_name" "Clarinda" "last_name" "Gomby" "email" "cgombymn@elpais.com" "gender" "female" "ip_address" "220.216.42.155" "country" "Japan" "country_code" "JP" "city" "Mutsu" "longitude" "138.3175811" "latitude" "36.3681952" "last_login" "1599593264" +HSET "user:4813" "first_name" "Delmer" "last_name" "MacGillavery" "email" "dmacgillaverymo@elegantthemes.com" "gender" "male" "ip_address" "158.98.211.111" "country" "Japan" "country_code" "JP" "city" "Tennō" "longitude" "135.5624945" "latitude" "34.8015007" "last_login" "1573561284" +HSET "user:4814" "first_name" "Dorolice" "last_name" "Spavins" "email" "dspavinsmp@nih.gov" "gender" "female" "ip_address" "147.90.110.167" "country" "Sweden" "country_code" "SE" "city" "Kungsbacka" "longitude" "12.0730996" "latitude" "57.492982" "last_login" "1584564432" +HSET "user:4815" "first_name" "Aksel" "last_name" "Skeats" "email" "askeatsmq@loc.gov" "gender" "male" "ip_address" "140.203.167.209" "country" "Nigeria" "country_code" "NG" "city" "Okpoma" "longitude" "8.6050736" "latitude" "6.6635241" "last_login" "1573005279" +HSET "user:4816" "first_name" "Ernestine" "last_name" "Paradine" "email" "eparadinemr@slashdot.org" "gender" "female" "ip_address" "140.87.39.106" "country" "Germany" "country_code" "DE" "city" "Köln" "longitude" "7.0486698" "latitude" "50.9093945" "last_login" "1577187306" +HSET "user:4817" "first_name" "Stanton" "last_name" "Dodshun" "email" "sdodshunms@nbcnews.com" "gender" "male" "ip_address" "117.207.210.68" "country" "Peru" "country_code" "PE" "city" "Cahuac" "longitude" "-76.631796" "latitude" "-9.8535874" "last_login" "1591000860" +HSET "user:4818" "first_name" "Bronnie" "last_name" "Duny" "email" "bdunymt@xrea.com" "gender" "male" "ip_address" "75.89.220.141" "country" "Philippines" "country_code" "PH" "city" "Bagahanlad" "longitude" "123.6688" "latitude" "12.5797" "last_login" "1580861338" +HSET "user:4819" "first_name" "Madelyn" "last_name" "Beert" "email" "mbeertmu@nsw.gov.au" "gender" "female" "ip_address" "252.178.32.196" "country" "Argentina" "country_code" "AR" "city" "Catriel" "longitude" "-58.5247124" "latitude" "-34.6893026" "last_login" "1596256569" +HSET "user:4820" "first_name" "Kelvin" "last_name" "Tinsley" "email" "ktinsleymv@freewebs.com" "gender" "male" "ip_address" "170.96.162.206" "country" "Portugal" "country_code" "PT" "city" "Corroios" "longitude" "-9.1624406" "latitude" "38.6332265" "last_login" "1585205806" +HSET "user:4821" "first_name" "Goldie" "last_name" "Joel" "email" "gjoelmw@huffingtonpost.com" "gender" "female" "ip_address" "193.1.9.157" "country" "Greece" "country_code" "GR" "city" "Skoútari" "longitude" "23.5206341" "latitude" "41.0184587" "last_login" "1591021385" +HSET "user:4822" "first_name" "Kass" "last_name" "Waggitt" "email" "kwaggittmx@globo.com" "gender" "female" "ip_address" "130.58.72.64" "country" "Russia" "country_code" "RU" "city" "Ivanteyevka" "longitude" "37.9358133" "latitude" "55.9711379" "last_login" "1593408230" +HSET "user:4823" "first_name" "Ferdinanda" "last_name" "Deboy" "email" "fdeboymy@bloomberg.com" "gender" "female" "ip_address" "136.54.46.219" "country" "China" "country_code" "CN" "city" "Haizigou" "longitude" "119.19371" "latitude" "34.606756" "last_login" "1593232395" +HSET "user:4824" "first_name" "Xena" "last_name" "Espinha" "email" "xespinhamz@craigslist.org" "gender" "female" "ip_address" "91.48.176.219" "country" "Greece" "country_code" "GR" "city" "Kítsi" "longitude" "23.8408158" "latitude" "37.8519345" "last_login" "1583734255" +HSET "user:4825" "first_name" "Leslie" "last_name" "Garlant" "email" "lgarlantn0@pen.io" "gender" "male" "ip_address" "255.220.138.147" "country" "China" "country_code" "CN" "city" "Changzhou" "longitude" "119.974061" "latitude" "31.811226" "last_login" "1591939450" +HSET "user:4826" "first_name" "Ted" "last_name" "Cordle" "email" "tcordlen1@sina.com.cn" "gender" "male" "ip_address" "69.206.90.114" "country" "Czech Republic" "country_code" "CZ" "city" "Vrané nad Vltavou" "longitude" "14.3818464" "latitude" "49.9313612" "last_login" "1592759070" +HSET "user:4827" "first_name" "Robb" "last_name" "Fardell" "email" "rfardelln2@yale.edu" "gender" "male" "ip_address" "80.23.174.212" "country" "Belarus" "country_code" "BY" "city" "Brahin" "longitude" "30.2688788" "latitude" "51.7954009" "last_login" "1591308475" +HSET "user:4828" "first_name" "Anne-corinne" "last_name" "Vernazza" "email" "avernazzan3@springer.com" "gender" "female" "ip_address" "124.198.92.185" "country" "China" "country_code" "CN" "city" "Shixiang" "longitude" "120.1534039" "latitude" "30.3312397" "last_login" "1584385406" +HSET "user:4829" "first_name" "Farrand" "last_name" "Handover" "email" "fhandovern4@51.la" "gender" "female" "ip_address" "111.51.109.21" "country" "Indonesia" "country_code" "ID" "city" "Banjarjo" "longitude" "111.3679689" "latitude" "-7.0431437" "last_login" "1580704719" +HSET "user:4830" "first_name" "Tally" "last_name" "Escreet" "email" "tescreetn5@blinklist.com" "gender" "male" "ip_address" "73.24.36.160" "country" "Philippines" "country_code" "PH" "city" "Paraiso" "longitude" "121.017819" "latitude" "14.637051" "last_login" "1593701949" +HSET "user:4831" "first_name" "Adiana" "last_name" "Pietesch" "email" "apieteschn6@blogtalkradio.com" "gender" "female" "ip_address" "59.19.39.17" "country" "Greece" "country_code" "GR" "city" "Skýros" "longitude" "24.5955356" "latitude" "38.8162965" "last_login" "1594193487" +HSET "user:4832" "first_name" "Odette" "last_name" "Dollimore" "email" "odollimoren7@howstuffworks.com" "gender" "female" "ip_address" "199.36.65.231" "country" "China" "country_code" "CN" "city" "Guanting" "longitude" "102.801062" "latitude" "35.87616" "last_login" "1573684249" +HSET "user:4833" "first_name" "Oliver" "last_name" "Clorley" "email" "oclorleyn8@theguardian.com" "gender" "male" "ip_address" "234.83.135.176" "country" "Philippines" "country_code" "PH" "city" "Calinog" "longitude" "122.5402486" "latitude" "11.1228862" "last_login" "1595993293" +HSET "user:4834" "first_name" "Theodosia" "last_name" "Bassingden" "email" "tbassingdenn9@nasa.gov" "gender" "female" "ip_address" "131.204.237.226" "country" "Canada" "country_code" "CA" "city" "Burnaby" "longitude" "-123.0419607" "latitude" "49.2574664" "last_login" "1579697132" +HSET "user:4835" "first_name" "Alan" "last_name" "Singh" "email" "asinghna@chicagotribune.com" "gender" "male" "ip_address" "90.205.36.164" "country" "Ukraine" "country_code" "UA" "city" "Bolekhiv" "longitude" "23.8543141" "latitude" "49.0702518" "last_login" "1587320364" +HSET "user:4836" "first_name" "Fritz" "last_name" "Madoc-Jones" "email" "fmadocjonesnb@about.com" "gender" "male" "ip_address" "185.176.217.167" "country" "Thailand" "country_code" "TH" "city" "Phra Phutthabat" "longitude" "100.7830826" "latitude" "14.7268634" "last_login" "1599816655" +HSET "user:4837" "first_name" "Northrop" "last_name" "Boundley" "email" "nboundleync@tripadvisor.com" "gender" "male" "ip_address" "110.144.5.198" "country" "China" "country_code" "CN" "city" "Mawu" "longitude" "104.888718" "latitude" "23.642114" "last_login" "1576266522" +HSET "user:4838" "first_name" "Aundrea" "last_name" "Stainson" "email" "astainsonnd@archive.org" "gender" "female" "ip_address" "255.125.198.11" "country" "Indonesia" "country_code" "ID" "city" "Rawa Satu" "longitude" "107.5168417" "latitude" "-7.025171" "last_login" "1570726188" +HSET "user:4839" "first_name" "Elvis" "last_name" "McGettrick" "email" "emcgettrickne@wikispaces.com" "gender" "male" "ip_address" "178.70.178.253" "country" "China" "country_code" "CN" "city" "Changtu" "longitude" "124.111099" "latitude" "42.785791" "last_login" "1580635407" +HSET "user:4840" "first_name" "Torey" "last_name" "Heibel" "email" "theibelnf@miitbeian.gov.cn" "gender" "female" "ip_address" "34.244.133.34" "country" "Greece" "country_code" "GR" "city" "Kouvarás" "longitude" "23.9667402" "latitude" "37.8269697" "last_login" "1599629298" +HSET "user:4841" "first_name" "Brucie" "last_name" "Line" "email" "blineng@topsy.com" "gender" "male" "ip_address" "156.62.150.196" "country" "Indonesia" "country_code" "ID" "city" "Arjawinangun" "longitude" "108.3848152" "latitude" "-6.6312766" "last_login" "1575256239" +HSET "user:4842" "first_name" "Stern" "last_name" "Banbridge" "email" "sbanbridgenh@g.co" "gender" "male" "ip_address" "42.152.198.195" "country" "Haiti" "country_code" "HT" "city" "Pignon" "longitude" "-72.1164358" "latitude" "19.3362853" "last_login" "1569059102" +HSET "user:4843" "first_name" "Doloritas" "last_name" "Colloff" "email" "dcolloffni@webs.com" "gender" "female" "ip_address" "93.68.225.127" "country" "Peru" "country_code" "PE" "city" "Sangallaya" "longitude" "-76.2294444" "latitude" "-12.1613589" "last_login" "1577883489" +HSET "user:4844" "first_name" "Erda" "last_name" "Fiorentino" "email" "efiorentinonj@upenn.edu" "gender" "female" "ip_address" "14.102.155.42" "country" "Norway" "country_code" "NO" "city" "Tromsø" "longitude" "18.9221" "latitude" "69.63186" "last_login" "1598898265" +HSET "user:4845" "first_name" "Alphonso" "last_name" "Fairlaw" "email" "afairlawnk@twitter.com" "gender" "male" "ip_address" "18.109.80.156" "country" "Guatemala" "country_code" "GT" "city" "Santa Ana" "longitude" "-89.8909572" "latitude" "16.9296881" "last_login" "1578486795" +HSET "user:4846" "first_name" "Britt" "last_name" "Lantiffe" "email" "blantiffenl@lulu.com" "gender" "male" "ip_address" "73.198.128.38" "country" "Brazil" "country_code" "BR" "city" "Mirandopólis" "longitude" "-47.0897445" "latitude" "-22.9304477" "last_login" "1583509300" +HSET "user:4847" "first_name" "Birdie" "last_name" "Galea" "email" "bgaleanm@skype.com" "gender" "female" "ip_address" "145.149.34.112" "country" "Indonesia" "country_code" "ID" "city" "Pakel" "longitude" "111.8270486" "latitude" "-8.1553145" "last_login" "1593280527" +HSET "user:4848" "first_name" "Arvy" "last_name" "Tetlow" "email" "atetlownn@soundcloud.com" "gender" "male" "ip_address" "206.62.128.181" "country" "Thailand" "country_code" "TH" "city" "Tha Luang" "longitude" "101.1228553" "latitude" "15.0663747" "last_login" "1593540833" +HSET "user:4849" "first_name" "Renard" "last_name" "Moreside" "email" "rmoresideno@nytimes.com" "gender" "male" "ip_address" "192.153.151.125" "country" "Georgia" "country_code" "GE" "city" "Sighnaghi" "longitude" "45.9271436" "latitude" "41.6111031" "last_login" "1572062022" +HSET "user:4850" "first_name" "Bobby" "last_name" "Tarbet" "email" "btarbetnp@mayoclinic.com" "gender" "male" "ip_address" "67.105.109.223" "country" "Kenya" "country_code" "KE" "city" "Ol Kalou" "longitude" "36.3775152" "latitude" "-0.272699" "last_login" "1575902941" +HSET "user:4851" "first_name" "Constantino" "last_name" "Yersin" "email" "cyersinnq@rediff.com" "gender" "male" "ip_address" "5.133.236.184" "country" "Guatemala" "country_code" "GT" "city" "El Asintal" "longitude" "-91.7270911" "latitude" "14.5975238" "last_login" "1596843221" +HSET "user:4852" "first_name" "Myrtice" "last_name" "Croney" "email" "mcroneynr@sfgate.com" "gender" "female" "ip_address" "4.194.41.178" "country" "Ukraine" "country_code" "UA" "city" "Stetseva" "longitude" "25.5701022" "latitude" "48.5264861" "last_login" "1569041100" +HSET "user:4853" "first_name" "Lynnelle" "last_name" "Yukhov" "email" "lyukhovns@msn.com" "gender" "female" "ip_address" "229.35.127.108" "country" "Mongolia" "country_code" "MN" "city" "Dzel" "longitude" "77.1232581" "latitude" "28.650272" "last_login" "1590532084" +HSET "user:4854" "first_name" "Hagan" "last_name" "Pohl" "email" "hpohlnt@slashdot.org" "gender" "male" "ip_address" "23.121.233.156" "country" "Portugal" "country_code" "PT" "city" "Besteiros" "longitude" "-8.344485" "latitude" "41.2263185" "last_login" "1577796466" +HSET "user:4855" "first_name" "Kristos" "last_name" "Buckles" "email" "kbucklesnu@dropbox.com" "gender" "male" "ip_address" "95.27.211.118" "country" "Philippines" "country_code" "PH" "city" "Rosario" "longitude" "121.1293312" "latitude" "14.5643857" "last_login" "1580850379" +HSET "user:4856" "first_name" "Vanny" "last_name" "Fumagallo" "email" "vfumagallonv@msu.edu" "gender" "female" "ip_address" "109.158.235.120" "country" "United States" "country_code" "US" "city" "Burbank" "longitude" "-118.3403506" "latitude" "34.1615135" "last_login" "1568878886" +HSET "user:4857" "first_name" "Meade" "last_name" "Addekin" "email" "maddekinnw@cnet.com" "gender" "female" "ip_address" "226.23.251.78" "country" "Portugal" "country_code" "PT" "city" "São Bartolomeu" "longitude" "-27.281743" "latitude" "38.67387" "last_login" "1585425418" +HSET "user:4858" "first_name" "Harmonia" "last_name" "Landis" "email" "hlandisnx@sogou.com" "gender" "female" "ip_address" "80.244.186.196" "country" "China" "country_code" "CN" "city" "Wujiayao" "longitude" "111.6568972" "latitude" "40.8536972" "last_login" "1578488409" +HSET "user:4859" "first_name" "Priscella" "last_name" "Sullivan" "email" "psullivanny@reference.com" "gender" "female" "ip_address" "3.147.8.146" "country" "Indonesia" "country_code" "ID" "city" "Tegalheras" "longitude" "107.0659" "latitude" "-7.2789" "last_login" "1590858452" +HSET "user:4860" "first_name" "Rolfe" "last_name" "Hilldrup" "email" "rhilldrupnz@ihg.com" "gender" "male" "ip_address" "188.66.24.235" "country" "Morocco" "country_code" "MA" "city" "Tarfaya" "longitude" "-12.9262851" "latitude" "27.9375382" "last_login" "1583260960" +HSET "user:4861" "first_name" "Ailbert" "last_name" "Ostler" "email" "aostlero0@zimbio.com" "gender" "male" "ip_address" "82.244.1.161" "country" "Comoros" "country_code" "KM" "city" "Mirontsi" "longitude" "44.4146374" "latitude" "-12.1579355" "last_login" "1597981782" +HSET "user:4862" "first_name" "Upton" "last_name" "Kislingbury" "email" "ukislingburyo1@creativecommons.org" "gender" "male" "ip_address" "98.14.193.91" "country" "United States" "country_code" "US" "city" "Saint Cloud" "longitude" "-94.25" "latitude" "45.62" "last_login" "1579042208" +HSET "user:4863" "first_name" "Zebedee" "last_name" "Jillard" "email" "zjillardo2@nasa.gov" "gender" "male" "ip_address" "159.92.69.195" "country" "Indonesia" "country_code" "ID" "city" "Ciseda" "longitude" "107.9276672" "latitude" "-6.7796462" "last_login" "1594414640" +HSET "user:4864" "first_name" "Rafaela" "last_name" "Sparhawk" "email" "rsparhawko3@digg.com" "gender" "female" "ip_address" "96.205.33.17" "country" "France" "country_code" "FR" "city" "Bondoufle" "longitude" "2.406265" "latitude" "48.6169664" "last_login" "1598815679" +HSET "user:4865" "first_name" "Estevan" "last_name" "Allner" "email" "eallnero4@tiny.cc" "gender" "male" "ip_address" "207.9.138.43" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Vukovije Donje" "longitude" "18.7494454" "latitude" "44.4635116" "last_login" "1569257271" +HSET "user:4866" "first_name" "Truman" "last_name" "Lehrmann" "email" "tlehrmanno5@123-reg.co.uk" "gender" "male" "ip_address" "113.196.6.18" "country" "Japan" "country_code" "JP" "city" "Ogōri-shimogō" "longitude" "131.3917159" "latitude" "34.101082" "last_login" "1589913346" +HSET "user:4867" "first_name" "Susannah" "last_name" "Maddocks" "email" "smaddockso6@live.com" "gender" "female" "ip_address" "93.242.93.127" "country" "China" "country_code" "CN" "city" "Dalang" "longitude" "113.943916" "latitude" "22.940196" "last_login" "1594455015" +HSET "user:4868" "first_name" "Traver" "last_name" "Raynor" "email" "traynoro7@bbc.co.uk" "gender" "male" "ip_address" "175.186.247.181" "country" "Canada" "country_code" "CA" "city" "Beaverlodge" "longitude" "-119.43605" "latitude" "55.21664" "last_login" "1577521417" +HSET "user:4869" "first_name" "Nikki" "last_name" "Geroldini" "email" "ngeroldinio8@google.com.hk" "gender" "female" "ip_address" "224.147.121.142" "country" "China" "country_code" "CN" "city" "Dongqu" "longitude" "113.398577" "latitude" "22.513701" "last_login" "1576352271" +HSET "user:4870" "first_name" "Sholom" "last_name" "McRamsey" "email" "smcramseyo9@nbcnews.com" "gender" "male" "ip_address" "99.14.117.239" "country" "Indonesia" "country_code" "ID" "city" "Seupakat" "longitude" "97.46279" "latitude" "3.64333" "last_login" "1584022458" +HSET "user:4871" "first_name" "Aurthur" "last_name" "Assinder" "email" "aassinderoa@nps.gov" "gender" "male" "ip_address" "87.148.126.2" "country" "Panama" "country_code" "PA" "city" "Colón" "longitude" "-79.8998608" "latitude" "9.359302" "last_login" "1572226705" +HSET "user:4872" "first_name" "Zoe" "last_name" "Mates" "email" "zmatesob@icio.us" "gender" "female" "ip_address" "97.164.119.237" "country" "China" "country_code" "CN" "city" "Fucheng" "longitude" "116.144417" "latitude" "37.868872" "last_login" "1578543427" +HSET "user:4873" "first_name" "Darby" "last_name" "Bullas" "email" "dbullasoc@blogger.com" "gender" "female" "ip_address" "118.108.233.70" "country" "Kazakhstan" "country_code" "KZ" "city" "Shalkar" "longitude" "59.6188673" "latitude" "47.8313394" "last_login" "1594073582" +HSET "user:4874" "first_name" "Burgess" "last_name" "Semeradova" "email" "bsemeradovaod@skyrock.com" "gender" "male" "ip_address" "113.59.159.224" "country" "South Korea" "country_code" "KR" "city" "Goseong" "longitude" "128.3222456" "latitude" "34.973149" "last_login" "1572749475" +HSET "user:4875" "first_name" "Haily" "last_name" "Northeast" "email" "hnortheastoe@amazon.co.uk" "gender" "male" "ip_address" "195.242.177.218" "country" "China" "country_code" "CN" "city" "Dongchengyuan" "longitude" "116.475691" "latitude" "33.92692" "last_login" "1588723751" +HSET "user:4876" "first_name" "Elia" "last_name" "Traut" "email" "etrautof@prnewswire.com" "gender" "male" "ip_address" "243.219.72.53" "country" "China" "country_code" "CN" "city" "Baitu" "longitude" "103.498609" "latitude" "34.675197" "last_login" "1574052030" +HSET "user:4877" "first_name" "Derward" "last_name" "Imlen" "email" "dimlenog@ezinearticles.com" "gender" "male" "ip_address" "73.104.207.254" "country" "Argentina" "country_code" "AR" "city" "Villa Gesell" "longitude" "-58.5019467" "latitude" "-34.7368519" "last_login" "1579163624" +HSET "user:4878" "first_name" "Verina" "last_name" "Karadzas" "email" "vkaradzasoh@statcounter.com" "gender" "female" "ip_address" "148.213.36.224" "country" "United States" "country_code" "US" "city" "Springfield" "longitude" "-89.7286056" "latitude" "39.7443294" "last_login" "1577849603" +HSET "user:4879" "first_name" "Lonnard" "last_name" "Searjeant" "email" "lsearjeantoi@bizjournals.com" "gender" "male" "ip_address" "213.157.91.221" "country" "Japan" "country_code" "JP" "city" "Aso" "longitude" "140.4806732" "latitude" "35.9889377" "last_login" "1574721887" +HSET "user:4880" "first_name" "Beret" "last_name" "McIntosh" "email" "bmcintoshoj@cargocollective.com" "gender" "female" "ip_address" "175.217.154.35" "country" "China" "country_code" "CN" "city" "Qingshi" "longitude" "102.7319467" "latitude" "30.0781136" "last_login" "1591071530" +HSET "user:4881" "first_name" "Gerald" "last_name" "Fantin" "email" "gfantinok@creativecommons.org" "gender" "male" "ip_address" "174.29.175.223" "country" "France" "country_code" "FR" "city" "Beauvais" "longitude" "2.0887457" "latitude" "49.4263976" "last_login" "1572019677" +HSET "user:4882" "first_name" "Ky" "last_name" "Harwin" "email" "kharwinol@va.gov" "gender" "male" "ip_address" "205.187.84.57" "country" "China" "country_code" "CN" "city" "Mushu" "longitude" "118.698572" "latitude" "25.109249" "last_login" "1580605850" +HSET "user:4883" "first_name" "Ingelbert" "last_name" "Andor" "email" "iandorom@vk.com" "gender" "male" "ip_address" "206.160.86.187" "country" "Ethiopia" "country_code" "ET" "city" "Goba" "longitude" "39.9761012" "latitude" "7.0115716" "last_login" "1569426723" +HSET "user:4884" "first_name" "Bernadina" "last_name" "Swadlin" "email" "bswadlinon@naver.com" "gender" "female" "ip_address" "20.169.24.34" "country" "South Africa" "country_code" "ZA" "city" "Piketberg" "longitude" "18.7671299" "latitude" "-32.90269" "last_login" "1573868372" +HSET "user:4885" "first_name" "Base" "last_name" "Hooke" "email" "bhookeoo@reuters.com" "gender" "male" "ip_address" "38.225.238.135" "country" "South Africa" "country_code" "ZA" "city" "Pietermaritzburg" "longitude" "30.4048541" "latitude" "-29.5482451" "last_login" "1587478401" +HSET "user:4886" "first_name" "Brady" "last_name" "Sharer" "email" "bsharerop@state.tx.us" "gender" "male" "ip_address" "69.45.165.202" "country" "Slovenia" "country_code" "SI" "city" "Lucija" "longitude" "13.6405292" "latitude" "45.4698284" "last_login" "1590615088" +HSET "user:4887" "first_name" "Adi" "last_name" "Conti" "email" "acontioq@springer.com" "gender" "female" "ip_address" "208.125.68.190" "country" "Netherlands" "country_code" "NL" "city" "Heemstede" "longitude" "4.6073677" "latitude" "52.3329057" "last_login" "1572088007" +HSET "user:4888" "first_name" "Alyss" "last_name" "Bougen" "email" "abougenor@rakuten.co.jp" "gender" "female" "ip_address" "176.158.119.105" "country" "Indonesia" "country_code" "ID" "city" "Cawalo" "longitude" "121.6978" "latitude" "-8.3115" "last_login" "1590922951" +HSET "user:4889" "first_name" "Chick" "last_name" "Keniwell" "email" "ckeniwellos@ameblo.jp" "gender" "male" "ip_address" "7.81.192.100" "country" "Poland" "country_code" "PL" "city" "Borek" "longitude" "20.5122334" "latitude" "50.0055345" "last_login" "1595469233" +HSET "user:4890" "first_name" "Mandel" "last_name" "Pauleau" "email" "mpauleauot@geocities.jp" "gender" "male" "ip_address" "116.169.47.230" "country" "China" "country_code" "CN" "city" "Pu’er" "longitude" "100.966512" "latitude" "22.825065" "last_login" "1585391000" +HSET "user:4891" "first_name" "Vittorio" "last_name" "Accum" "email" "vaccumou@wp.com" "gender" "male" "ip_address" "67.200.111.76" "country" "Russia" "country_code" "RU" "city" "Koslan" "longitude" "48.8833546" "latitude" "63.4529778" "last_login" "1592102412" +HSET "user:4892" "first_name" "Tobit" "last_name" "Stanford" "email" "tstanfordov@cmu.edu" "gender" "male" "ip_address" "234.158.60.238" "country" "China" "country_code" "CN" "city" "Xixia" "longitude" "111.482591" "latitude" "33.298364" "last_login" "1593806250" +HSET "user:4893" "first_name" "Gar" "last_name" "Murray" "email" "gmurrayow@51.la" "gender" "male" "ip_address" "101.211.20.131" "country" "Vietnam" "country_code" "VN" "city" "Chợ Lầu" "longitude" "108.4869555" "latitude" "11.1506898" "last_login" "1583448833" +HSET "user:4894" "first_name" "Morganne" "last_name" "Capeling" "email" "mcapelingox@fotki.com" "gender" "female" "ip_address" "60.226.125.32" "country" "Argentina" "country_code" "AR" "city" "Santa Elena" "longitude" "-65.4412053" "latitude" "-24.8082762" "last_login" "1580082400" +HSET "user:4895" "first_name" "Sheffield" "last_name" "Bairstow" "email" "sbairstowoy@cbsnews.com" "gender" "male" "ip_address" "178.170.56.16" "country" "Syria" "country_code" "SY" "city" "As Suwaydā’" "longitude" "36.5662858" "latitude" "32.7128968" "last_login" "1589869441" +HSET "user:4896" "first_name" "Burk" "last_name" "Botwright" "email" "bbotwrightoz@dailymotion.com" "gender" "male" "ip_address" "2.90.142.108" "country" "Mexico" "country_code" "MX" "city" "Las Flores" "longitude" "-100.747182" "latitude" "20.900993" "last_login" "1599458325" +HSET "user:4897" "first_name" "Tallie" "last_name" "Moorhead" "email" "tmoorheadp0@theglobeandmail.com" "gender" "female" "ip_address" "186.118.203.209" "country" "Philippines" "country_code" "PH" "city" "Santa Catalina" "longitude" "123.6419711" "latitude" "10.103645" "last_login" "1578682984" +HSET "user:4898" "first_name" "Clary" "last_name" "Corneille" "email" "ccorneillep1@weather.com" "gender" "female" "ip_address" "230.88.245.184" "country" "Uganda" "country_code" "UG" "city" "Tororo" "longitude" "34.1865669" "latitude" "0.6782274" "last_login" "1594674689" +HSET "user:4899" "first_name" "Husain" "last_name" "Calendar" "email" "hcalendarp2@xrea.com" "gender" "male" "ip_address" "189.252.242.126" "country" "Mexico" "country_code" "MX" "city" "Santa Maria" "longitude" "-100.9383192" "latitude" "25.5562935" "last_login" "1580988206" +HSET "user:4900" "first_name" "Rosetta" "last_name" "Corps" "email" "rcorpsp3@wordpress.com" "gender" "female" "ip_address" "70.63.252.87" "country" "Argentina" "country_code" "AR" "city" "Córdoba" "longitude" "-64.2679738" "latitude" "-31.3221103" "last_login" "1589369711" +HSET "user:4901" "first_name" "Carlota" "last_name" "Yurkov" "email" "cyurkovp4@fc2.com" "gender" "female" "ip_address" "111.210.227.197" "country" "Armenia" "country_code" "AM" "city" "Sarukhan" "longitude" "45.1360148" "latitude" "40.2938995" "last_login" "1573055147" +HSET "user:4902" "first_name" "Zonnya" "last_name" "Hearse" "email" "zhearsep5@virginia.edu" "gender" "female" "ip_address" "6.149.52.124" "country" "Brazil" "country_code" "BR" "city" "Itapevi" "longitude" "-46.9354774" "latitude" "-23.5535152" "last_login" "1576494531" +HSET "user:4903" "first_name" "Lexine" "last_name" "Toseland" "email" "ltoselandp6@freewebs.com" "gender" "female" "ip_address" "157.250.67.226" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "-68.1430761" "latitude" "47.0184615" "last_login" "1572624802" +HSET "user:4904" "first_name" "Gail" "last_name" "Mervyn" "email" "gmervynp7@bbb.org" "gender" "male" "ip_address" "78.156.97.14" "country" "Russia" "country_code" "RU" "city" "Kalinovskoye" "longitude" "48.319948" "latitude" "52.958682" "last_login" "1594013487" +HSET "user:4905" "first_name" "Howie" "last_name" "O'Meara" "email" "homearap8@wisc.edu" "gender" "male" "ip_address" "234.248.80.199" "country" "Ukraine" "country_code" "UA" "city" "Korniyivka" "longitude" "31.46261" "latitude" "50.41661" "last_login" "1580645627" +HSET "user:4906" "first_name" "Yurik" "last_name" "Geeraert" "email" "ygeeraertp9@weibo.com" "gender" "male" "ip_address" "154.58.250.84" "country" "Portugal" "country_code" "PT" "city" "Carvoeira" "longitude" "-9.3964878" "latitude" "38.9426594" "last_login" "1590174256" +HSET "user:4907" "first_name" "Letta" "last_name" "Drakard" "email" "ldrakardpa@yelp.com" "gender" "female" "ip_address" "103.163.177.85" "country" "Mayotte" "country_code" "YT" "city" "Dzaoudzi" "longitude" "45.2582086" "latitude" "-12.7822122" "last_login" "1570556100" +HSET "user:4908" "first_name" "Beauregard" "last_name" "McAndie" "email" "bmcandiepb@i2i.jp" "gender" "male" "ip_address" "24.67.131.30" "country" "Indonesia" "country_code" "ID" "city" "Kasturi" "longitude" "108.3534306" "latitude" "-7.0148687" "last_login" "1580266613" +HSET "user:4909" "first_name" "Livvyy" "last_name" "Attfield" "email" "lattfieldpc@usgs.gov" "gender" "female" "ip_address" "224.243.213.165" "country" "Guatemala" "country_code" "GT" "city" "San Miguel Dueñas" "longitude" "-90.7973456" "latitude" "14.523594" "last_login" "1571363398" +HSET "user:4910" "first_name" "Shirlene" "last_name" "Hasell" "email" "shasellpd@php.net" "gender" "female" "ip_address" "231.60.235.35" "country" "Indonesia" "country_code" "ID" "city" "Samparna" "longitude" "4.8902879" "latitude" "52.3668372" "last_login" "1596256668" +HSET "user:4911" "first_name" "Bea" "last_name" "Grishanin" "email" "bgrishaninpe@statcounter.com" "gender" "female" "ip_address" "155.71.28.101" "country" "Greece" "country_code" "GR" "city" "Néa Plágia" "longitude" "23.2039759" "latitude" "40.2655961" "last_login" "1576868784" +HSET "user:4912" "first_name" "Franky" "last_name" "O'Hoolahan" "email" "fohoolahanpf@google.fr" "gender" "female" "ip_address" "128.100.117.2" "country" "Argentina" "country_code" "AR" "city" "Chilecito" "longitude" "-58.4798082" "latitude" "-34.6312662" "last_login" "1589271659" +HSET "user:4913" "first_name" "Naoma" "last_name" "Kochs" "email" "nkochspg@slate.com" "gender" "female" "ip_address" "188.14.62.46" "country" "China" "country_code" "CN" "city" "Xinye" "longitude" "119.334789" "latitude" "29.330041" "last_login" "1587854675" +HSET "user:4914" "first_name" "Hanan" "last_name" "Itzkovwich" "email" "hitzkovwichph@mlb.com" "gender" "male" "ip_address" "218.185.101.184" "country" "Russia" "country_code" "RU" "city" "Shumikha" "longitude" "59.3678115" "latitude" "58.8110301" "last_login" "1585203784" +HSET "user:4915" "first_name" "Emory" "last_name" "Wike" "email" "ewikepi@deviantart.com" "gender" "male" "ip_address" "203.243.62.97" "country" "China" "country_code" "CN" "city" "Chengdu" "longitude" "104.066801" "latitude" "30.572815" "last_login" "1579645512" +HSET "user:4916" "first_name" "Ina" "last_name" "Sheppard" "email" "isheppardpj@google.com.hk" "gender" "female" "ip_address" "138.55.80.122" "country" "Iran" "country_code" "IR" "city" "Zehak" "longitude" "61.680106" "latitude" "30.8908344" "last_login" "1589476591" +HSET "user:4917" "first_name" "Craig" "last_name" "Fierman" "email" "cfiermanpk@sciencedaily.com" "gender" "male" "ip_address" "119.190.128.25" "country" "Russia" "country_code" "RU" "city" "Ozerki" "longitude" "30.317148" "latitude" "59.9251489" "last_login" "1576446185" +HSET "user:4918" "first_name" "Bunni" "last_name" "Dulson" "email" "bdulsonpl@vistaprint.com" "gender" "female" "ip_address" "235.221.129.112" "country" "Venezuela" "country_code" "VE" "city" "Tucupido" "longitude" "-65.7698663" "latitude" "9.2727457" "last_login" "1582915429" +HSET "user:4919" "first_name" "Anthea" "last_name" "Feldklein" "email" "afeldkleinpm@java.com" "gender" "female" "ip_address" "220.93.183.221" "country" "Poland" "country_code" "PL" "city" "Mogilany" "longitude" "19.8866771" "latitude" "49.9478668" "last_login" "1600098960" +HSET "user:4920" "first_name" "Giulietta" "last_name" "Chattock" "email" "gchattockpn@salon.com" "gender" "female" "ip_address" "231.197.83.224" "country" "China" "country_code" "CN" "city" "Dananyu" "longitude" "116.030192" "latitude" "39.8067" "last_login" "1591514866" +HSET "user:4921" "first_name" "Rea" "last_name" "Hulance" "email" "rhulancepo@vinaora.com" "gender" "female" "ip_address" "24.157.63.54" "country" "Indonesia" "country_code" "ID" "city" "Nangewer" "longitude" "107.4765594" "latitude" "-6.7146375" "last_login" "1581493020" +HSET "user:4922" "first_name" "Aldin" "last_name" "Davidai" "email" "adavidaipp@mozilla.com" "gender" "male" "ip_address" "18.120.46.158" "country" "China" "country_code" "CN" "city" "Lisui" "longitude" "119.922796" "latitude" "28.46763" "last_login" "1577246010" +HSET "user:4923" "first_name" "Pen" "last_name" "Dumbrell" "email" "pdumbrellpq@webmd.com" "gender" "female" "ip_address" "77.71.18.229" "country" "Japan" "country_code" "JP" "city" "Ueda" "longitude" "140.4069331" "latitude" "36.905485" "last_login" "1576869757" +HSET "user:4924" "first_name" "Ennis" "last_name" "Wickie" "email" "ewickiepr@feedburner.com" "gender" "male" "ip_address" "109.108.40.200" "country" "Mongolia" "country_code" "MN" "city" "Ölgiy" "longitude" "89.9678382" "latitude" "48.9706758" "last_login" "1583395591" +HSET "user:4925" "first_name" "Mitchael" "last_name" "Springtorpe" "email" "mspringtorpeps@typepad.com" "gender" "male" "ip_address" "186.191.206.173" "country" "Chile" "country_code" "CL" "city" "Buin" "longitude" "-70.7423218" "latitude" "-33.7309374" "last_login" "1588805135" +HSET "user:4926" "first_name" "Farly" "last_name" "Kimbley" "email" "fkimbleypt@epa.gov" "gender" "male" "ip_address" "73.12.152.144" "country" "Puerto Rico" "country_code" "PR" "city" "Ponce" "longitude" "-66.6395219" "latitude" "18.1311468" "last_login" "1583043150" +HSET "user:4927" "first_name" "Jakie" "last_name" "Cregeen" "email" "jcregeenpu@scribd.com" "gender" "male" "ip_address" "204.129.72.169" "country" "China" "country_code" "CN" "city" "Bailizhou" "longitude" "111.81127" "latitude" "30.400907" "last_login" "1596143547" +HSET "user:4928" "first_name" "Mavra" "last_name" "Spellworth" "email" "mspellworthpv@mashable.com" "gender" "female" "ip_address" "220.238.59.70" "country" "Russia" "country_code" "RU" "city" "Likhobory" "longitude" "37.5643911" "latitude" "55.847796" "last_login" "1588919019" +HSET "user:4929" "first_name" "Ingaborg" "last_name" "Farris" "email" "ifarrispw@ovh.net" "gender" "female" "ip_address" "162.113.146.29" "country" "Russia" "country_code" "RU" "city" "Kantyshevo" "longitude" "44.6420273" "latitude" "43.2311668" "last_login" "1598930226" +HSET "user:4930" "first_name" "Maximilien" "last_name" "Thews" "email" "mthewspx@deviantart.com" "gender" "male" "ip_address" "109.7.170.163" "country" "Poland" "country_code" "PL" "city" "Tyrawa Wołoska" "longitude" "22.3696964" "latitude" "49.5773435" "last_login" "1573925676" +HSET "user:4931" "first_name" "Sal" "last_name" "Delacroix" "email" "sdelacroixpy@illinois.edu" "gender" "male" "ip_address" "102.202.142.201" "country" "Georgia" "country_code" "GE" "city" "Akhaltsikhe" "longitude" "42.9934449" "latitude" "41.6434293" "last_login" "1571646981" +HSET "user:4932" "first_name" "Maybelle" "last_name" "Renvoise" "email" "mrenvoisepz@cyberchimps.com" "gender" "female" "ip_address" "61.146.188.47" "country" "China" "country_code" "CN" "city" "Xigangzi" "longitude" "126.656651" "latitude" "46.190375" "last_login" "1576315781" +HSET "user:4933" "first_name" "Alley" "last_name" "Colbertson" "email" "acolbertsonq0@yahoo.com" "gender" "male" "ip_address" "66.70.90.35" "country" "China" "country_code" "CN" "city" "Qiagai" "longitude" "103.467868" "latitude" "34.839635" "last_login" "1584041492" +HSET "user:4934" "first_name" "Reinold" "last_name" "Stonner" "email" "rstonnerq1@w3.org" "gender" "male" "ip_address" "130.227.138.1" "country" "Poland" "country_code" "PL" "city" "Złocieniec" "longitude" "16.0186245" "latitude" "53.5281012" "last_login" "1575674858" +HSET "user:4935" "first_name" "Dietrich" "last_name" "Kempton" "email" "dkemptonq2@mail.ru" "gender" "male" "ip_address" "61.10.101.37" "country" "Brazil" "country_code" "BR" "city" "Buriti Bravo" "longitude" "-43.8356779" "latitude" "-5.8327847" "last_login" "1578984282" +HSET "user:4936" "first_name" "Luz" "last_name" "Dadson" "email" "ldadsonq3@cocolog-nifty.com" "gender" "female" "ip_address" "7.49.4.164" "country" "Brazil" "country_code" "BR" "city" "Caldas Novas" "longitude" "-48.6122723" "latitude" "-17.7472494" "last_login" "1579820042" +HSET "user:4937" "first_name" "Marketa" "last_name" "Johnke" "email" "mjohnkeq4@i2i.jp" "gender" "female" "ip_address" "147.171.239.249" "country" "Indonesia" "country_code" "ID" "city" "Sukasirna" "longitude" "107.0362272" "latitude" "-7.3590199" "last_login" "1594725694" +HSET "user:4938" "first_name" "Ewart" "last_name" "Ixor" "email" "eixorq5@pcworld.com" "gender" "male" "ip_address" "180.251.79.183" "country" "China" "country_code" "CN" "city" "Huarong" "longitude" "112.540463" "latitude" "29.531057" "last_login" "1595357098" +HSET "user:4939" "first_name" "Stanfield" "last_name" "George" "email" "sgeorgeq6@msn.com" "gender" "male" "ip_address" "27.198.88.72" "country" "China" "country_code" "CN" "city" "Zhangcun" "longitude" "125.323544" "latitude" "43.817071" "last_login" "1591135387" +HSET "user:4940" "first_name" "Malory" "last_name" "Terry" "email" "mterryq7@mtv.com" "gender" "female" "ip_address" "30.86.213.201" "country" "Portugal" "country_code" "PT" "city" "Abade de Neiva" "longitude" "-8.6435589" "latitude" "41.5498969" "last_login" "1595117040" +HSET "user:4941" "first_name" "Hollyanne" "last_name" "Bebbell" "email" "hbebbellq8@nps.gov" "gender" "female" "ip_address" "179.62.93.78" "country" "Armenia" "country_code" "AM" "city" "Alaverdi" "longitude" "44.6590356" "latitude" "41.0911538" "last_login" "1594603823" +HSET "user:4942" "first_name" "Thedric" "last_name" "Hellikes" "email" "thellikesq9@ebay.co.uk" "gender" "male" "ip_address" "119.206.101.92" "country" "Russia" "country_code" "RU" "city" "Ozëry" "longitude" "38.5734956" "latitude" "54.8539133" "last_login" "1584891192" +HSET "user:4943" "first_name" "Lindy" "last_name" "Neissen" "email" "lneissenqa@cbslocal.com" "gender" "female" "ip_address" "42.100.10.35" "country" "Indonesia" "country_code" "ID" "city" "Aibura" "longitude" "122.3504283" "latitude" "-8.6797285" "last_login" "1589808228" +HSET "user:4944" "first_name" "Fransisco" "last_name" "Duligal" "email" "fduligalqb@sphinn.com" "gender" "male" "ip_address" "178.196.117.246" "country" "China" "country_code" "CN" "city" "Dikou" "longitude" "118.469281" "latitude" "26.745704" "last_login" "1583505718" +HSET "user:4945" "first_name" "Deerdre" "last_name" "Raraty" "email" "draratyqc@prweb.com" "gender" "female" "ip_address" "154.4.197.173" "country" "China" "country_code" "CN" "city" "Mocun" "longitude" "125.1797741" "latitude" "44.439044" "last_login" "1587361408" +HSET "user:4946" "first_name" "Philip" "last_name" "Shales" "email" "pshalesqd@spotify.com" "gender" "male" "ip_address" "239.251.251.131" "country" "Yemen" "country_code" "YE" "city" "Ḑawrān ad Daydah" "longitude" "44.20664" "latitude" "14.73927" "last_login" "1598861292" +HSET "user:4947" "first_name" "Ambrose" "last_name" "Guidotti" "email" "aguidottiqe@mozilla.org" "gender" "male" "ip_address" "121.78.236.180" "country" "China" "country_code" "CN" "city" "Wenfang" "longitude" "116.602435" "latitude" "26.015959" "last_login" "1574249518" +HSET "user:4948" "first_name" "Sheilah" "last_name" "Poulsum" "email" "spoulsumqf@state.gov" "gender" "female" "ip_address" "41.110.200.58" "country" "Poland" "country_code" "PL" "city" "Pilawa" "longitude" "21.53057" "latitude" "51.95914" "last_login" "1589882247" +HSET "user:4949" "first_name" "Napoleon" "last_name" "McKinley" "email" "nmckinleyqg@patch.com" "gender" "male" "ip_address" "67.76.114.163" "country" "Mexico" "country_code" "MX" "city" "Hidalgo" "longitude" "-98.7623874" "latitude" "20.0910963" "last_login" "1585082170" +HSET "user:4950" "first_name" "Sheela" "last_name" "Messent" "email" "smessentqh@examiner.com" "gender" "female" "ip_address" "45.82.76.191" "country" "Netherlands" "country_code" "NL" "city" "Almere Stad" "longitude" "5.2156739" "latitude" "52.3670698" "last_login" "1573076575" +HSET "user:4951" "first_name" "Levin" "last_name" "Emanuel" "email" "lemanuelqi@creativecommons.org" "gender" "male" "ip_address" "76.96.151.93" "country" "China" "country_code" "CN" "city" "Wuyahe" "longitude" "114.305539" "latitude" "30.592849" "last_login" "1585541046" +HSET "user:4952" "first_name" "Christy" "last_name" "Brunicke" "email" "cbrunickeqj@exblog.jp" "gender" "male" "ip_address" "231.103.66.222" "country" "Honduras" "country_code" "HN" "city" "Jocón" "longitude" "-86.9135745" "latitude" "15.2904851" "last_login" "1595713667" +HSET "user:4953" "first_name" "Araldo" "last_name" "Jaffa" "email" "ajaffaqk@apache.org" "gender" "male" "ip_address" "45.81.75.104" "country" "Malaysia" "country_code" "MY" "city" "Kuching" "longitude" "101.6716295" "latitude" "3.2093353" "last_login" "1596679793" +HSET "user:4954" "first_name" "Cesaro" "last_name" "Boulstridge" "email" "cboulstridgeql@loc.gov" "gender" "male" "ip_address" "130.155.233.46" "country" "Colombia" "country_code" "CO" "city" "Ábrego" "longitude" "-73.222102" "latitude" "8.0762129" "last_login" "1598757226" +HSET "user:4955" "first_name" "Tedmund" "last_name" "Jiras" "email" "tjirasqm@cnn.com" "gender" "male" "ip_address" "22.74.138.135" "country" "Indonesia" "country_code" "ID" "city" "Oehala" "longitude" "124.1810057" "latitude" "-9.9422458" "last_login" "1569849582" +HSET "user:4956" "first_name" "Cathleen" "last_name" "Shorbrook" "email" "cshorbrookqn@tmall.com" "gender" "female" "ip_address" "120.247.185.107" "country" "Colombia" "country_code" "CO" "city" "Ríohacha" "longitude" "-73.0405277" "latitude" "11.3421375" "last_login" "1594275311" +HSET "user:4957" "first_name" "Whitney" "last_name" "O'Cuddie" "email" "wocuddieqo@alibaba.com" "gender" "male" "ip_address" "43.218.230.47" "country" "China" "country_code" "CN" "city" "Beigucheng" "longitude" "117.197212" "latitude" "35.86983" "last_login" "1577788518" +HSET "user:4958" "first_name" "Nero" "last_name" "Mitchiner" "email" "nmitchinerqp@nih.gov" "gender" "male" "ip_address" "102.115.124.20" "country" "Norway" "country_code" "NO" "city" "Oslo" "longitude" "10.802721" "latitude" "59.8879013" "last_login" "1569405722" +HSET "user:4959" "first_name" "Ignacio" "last_name" "Whittick" "email" "iwhittickqq@pen.io" "gender" "male" "ip_address" "60.195.112.131" "country" "Fiji" "country_code" "FJ" "city" "Nadi" "longitude" "177.4356227" "latitude" "-17.7765356" "last_login" "1586842086" +HSET "user:4960" "first_name" "Francisco" "last_name" "Vasyaev" "email" "fvasyaevqr@nbcnews.com" "gender" "male" "ip_address" "141.10.126.49" "country" "Afghanistan" "country_code" "AF" "city" "Anār Darah" "longitude" "61.6567273" "latitude" "32.7778898" "last_login" "1581702946" +HSET "user:4961" "first_name" "Robinson" "last_name" "Cockerill" "email" "rcockerillqs@nature.com" "gender" "male" "ip_address" "108.155.80.72" "country" "Sweden" "country_code" "SE" "city" "Kista" "longitude" "17.9282806" "latitude" "59.4075977" "last_login" "1595138402" +HSET "user:4962" "first_name" "Stoddard" "last_name" "Oliver-Paull" "email" "soliverpaullqt@networksolutions.com" "gender" "female" "ip_address" "119.148.78.39" "country" "Philippines" "country_code" "PH" "city" "Mabuhay" "longitude" "121.0286448" "latitude" "14.6440549" "last_login" "1596134622" +HSET "user:4963" "first_name" "Tris" "last_name" "Craine" "email" "tcrainequ@baidu.com" "gender" "male" "ip_address" "242.57.197.92" "country" "Mexico" "country_code" "MX" "city" "San Isidro" "longitude" "-103.3977222" "latitude" "20.7303804" "last_login" "1593017775" +HSET "user:4964" "first_name" "Graig" "last_name" "Aish" "email" "gaishqv@desdev.cn" "gender" "male" "ip_address" "166.253.178.199" "country" "Colombia" "country_code" "CO" "city" "Mutatá" "longitude" "-76.5719414" "latitude" "7.3423696" "last_login" "1579472270" +HSET "user:4965" "first_name" "Paten" "last_name" "Galego" "email" "pgalegoqw@google.com.au" "gender" "male" "ip_address" "45.43.48.28" "country" "China" "country_code" "CN" "city" "Xiaowuzhan" "longitude" "130.7788921" "latitude" "45.730664" "last_login" "1568850479" +HSET "user:4966" "first_name" "Carolee" "last_name" "De Dei" "email" "cdedeiqx@amazon.co.jp" "gender" "female" "ip_address" "10.42.51.136" "country" "Japan" "country_code" "JP" "city" "Nagano-shi" "longitude" "138.1877051" "latitude" "36.6589921" "last_login" "1574883796" +HSET "user:4967" "first_name" "Sybil" "last_name" "Cridland" "email" "scridlandqy@elpais.com" "gender" "female" "ip_address" "4.228.203.92" "country" "Venezuela" "country_code" "VE" "city" "Caraballeda" "longitude" "-66.8498883" "latitude" "10.6135398" "last_login" "1583524490" +HSET "user:4968" "first_name" "Blakelee" "last_name" "Greenrde" "email" "bgreenrdeqz@mozilla.com" "gender" "female" "ip_address" "79.64.187.112" "country" "Russia" "country_code" "RU" "city" "Imeni Babushkina" "longitude" "43.1333329" "latitude" "59.75" "last_login" "1581295903" +HSET "user:4969" "first_name" "Shea" "last_name" "Luckie" "email" "sluckier0@google.pl" "gender" "male" "ip_address" "63.54.170.70" "country" "United States" "country_code" "US" "city" "Boston" "longitude" "-71.05" "latitude" "42.34" "last_login" "1598019553" +HSET "user:4970" "first_name" "Ardelis" "last_name" "Paulton" "email" "apaultonr1@gov.uk" "gender" "female" "ip_address" "220.241.246.11" "country" "United States" "country_code" "US" "city" "Newport Beach" "longitude" "-117.8912117" "latitude" "33.6061462" "last_login" "1599345416" +HSET "user:4971" "first_name" "Mayor" "last_name" "Asson" "email" "massonr2@hc360.com" "gender" "male" "ip_address" "239.116.184.152" "country" "Poland" "country_code" "PL" "city" "Podwilk" "longitude" "19.7385089" "latitude" "49.5471943" "last_login" "1596391043" +HSET "user:4972" "first_name" "Ciel" "last_name" "Brookfield" "email" "cbrookfieldr3@multiply.com" "gender" "female" "ip_address" "215.199.196.91" "country" "Poland" "country_code" "PL" "city" "Głuchołazy" "longitude" "17.38347" "latitude" "50.31512" "last_login" "1573084051" +HSET "user:4973" "first_name" "Elisha" "last_name" "Duesbury" "email" "eduesburyr4@woothemes.com" "gender" "male" "ip_address" "94.100.56.139" "country" "China" "country_code" "CN" "city" "Dongchong" "longitude" "113.454975" "latitude" "22.884636" "last_login" "1591785238" +HSET "user:4974" "first_name" "Norby" "last_name" "Boggish" "email" "nboggishr5@nsw.gov.au" "gender" "male" "ip_address" "137.102.230.134" "country" "China" "country_code" "CN" "city" "Nianba" "longitude" "106.763842" "latitude" "31.839084" "last_login" "1580810681" +HSET "user:4975" "first_name" "Morten" "last_name" "Franseco" "email" "mfransecor6@gov.uk" "gender" "male" "ip_address" "255.228.137.201" "country" "Sudan" "country_code" "SD" "city" "Karmah an Nuzul" "longitude" "30.41667" "latitude" "19.63333" "last_login" "1594124913" +HSET "user:4976" "first_name" "Anderson" "last_name" "Burehill" "email" "aburehillr7@spiegel.de" "gender" "male" "ip_address" "194.97.128.25" "country" "Honduras" "country_code" "HN" "city" "Berlín" "longitude" "-88.493797" "latitude" "14.84276" "last_login" "1587920326" +HSET "user:4977" "first_name" "Jess" "last_name" "Goulter" "email" "jgoulterr8@behance.net" "gender" "male" "ip_address" "80.148.103.2" "country" "Netherlands" "country_code" "NL" "city" "Wageningen" "longitude" "5.6469613" "latitude" "51.9671737" "last_login" "1580410998" +HSET "user:4978" "first_name" "Flem" "last_name" "Pigford" "email" "fpigfordr9@twitter.com" "gender" "male" "ip_address" "34.199.35.237" "country" "Costa Rica" "country_code" "CR" "city" "Alajuela" "longitude" "-84.2184331" "latitude" "10.0165314" "last_login" "1580949561" +HSET "user:4979" "first_name" "Aldis" "last_name" "Shout" "email" "ashoutra@apache.org" "gender" "male" "ip_address" "113.12.207.209" "country" "Thailand" "country_code" "TH" "city" "Khlong Luang" "longitude" "100.6473542" "latitude" "14.0654264" "last_login" "1596851973" +HSET "user:4980" "first_name" "Vaughan" "last_name" "Scibsey" "email" "vscibseyrb@vkontakte.ru" "gender" "male" "ip_address" "157.88.134.116" "country" "Indonesia" "country_code" "ID" "city" "Pericik" "longitude" "106.797267" "latitude" "-6.308084" "last_login" "1579771306" +HSET "user:4981" "first_name" "Xenos" "last_name" "Matasov" "email" "xmatasovrc@paypal.com" "gender" "male" "ip_address" "120.143.113.154" "country" "China" "country_code" "CN" "city" "Dacheng" "longitude" "116.653793" "latitude" "38.705449" "last_login" "1592123091" +HSET "user:4982" "first_name" "Thacher" "last_name" "Gyer" "email" "tgyerrd@is.gd" "gender" "male" "ip_address" "154.44.159.45" "country" "China" "country_code" "CN" "city" "Daliyuan" "longitude" "98.43503" "latitude" "25.387227" "last_login" "1577171124" +HSET "user:4983" "first_name" "Durant" "last_name" "Thiese" "email" "dthiesere@w3.org" "gender" "male" "ip_address" "41.119.135.90" "country" "Pakistan" "country_code" "PK" "city" "Jarānwāla" "longitude" "73.1228958" "latitude" "31.4057897" "last_login" "1585056298" +HSET "user:4984" "first_name" "Brewer" "last_name" "Masding" "email" "bmasdingrf@wisc.edu" "gender" "male" "ip_address" "222.98.1.250" "country" "Lithuania" "country_code" "LT" "city" "Kaišiadorys" "longitude" "24.4549495" "latitude" "54.8593462" "last_login" "1580747976" +HSET "user:4985" "first_name" "Lucie" "last_name" "Erangey" "email" "lerangeyrg@yahoo.com" "gender" "female" "ip_address" "249.251.205.184" "country" "Iraq" "country_code" "IQ" "city" "Ḩalabjah" "longitude" "45.9896078" "latitude" "35.1654999" "last_login" "1587486423" +HSET "user:4986" "first_name" "Arluene" "last_name" "Hubert" "email" "ahubertrh@hp.com" "gender" "female" "ip_address" "140.220.248.176" "country" "North Korea" "country_code" "KP" "city" "Changyŏn" "longitude" "125.0911142" "latitude" "38.2527464" "last_login" "1576468186" +HSET "user:4987" "first_name" "Tally" "last_name" "Areles" "email" "tarelesri@yelp.com" "gender" "male" "ip_address" "90.71.203.223" "country" "Madagascar" "country_code" "MG" "city" "Soanindrariny" "longitude" "47.2342299" "latitude" "-19.90625" "last_login" "1588944933" +HSET "user:4988" "first_name" "Nydia" "last_name" "Sugars" "email" "nsugarsrj@marriott.com" "gender" "female" "ip_address" "69.112.201.231" "country" "Portugal" "country_code" "PT" "city" "Matos da Ranha" "longitude" "-8.6795117" "latitude" "39.8731369" "last_login" "1593599902" +HSET "user:4989" "first_name" "Fionnula" "last_name" "Beddow" "email" "fbeddowrk@liveinternet.ru" "gender" "female" "ip_address" "206.0.176.217" "country" "Paraguay" "country_code" "PY" "city" "Cerrito" "longitude" "-57.6382382" "latitude" "-27.3330369" "last_login" "1570868138" +HSET "user:4990" "first_name" "Anni" "last_name" "Maffy" "email" "amaffyrl@bloomberg.com" "gender" "female" "ip_address" "221.1.45.141" "country" "Mongolia" "country_code" "MN" "city" "Bayan" "longitude" "107.5408308" "latitude" "47.2495437" "last_login" "1590678965" +HSET "user:4991" "first_name" "Tracy" "last_name" "Tynemouth" "email" "ttynemouthrm@shop-pro.jp" "gender" "female" "ip_address" "200.184.174.136" "country" "China" "country_code" "CN" "city" "Lishu" "longitude" "124.33539" "latitude" "43.30706" "last_login" "1574509403" +HSET "user:4992" "first_name" "Bertrando" "last_name" "Lowrance" "email" "blowrancern@forbes.com" "gender" "male" "ip_address" "50.13.119.22" "country" "Vietnam" "country_code" "VN" "city" "Vân Tùng" "longitude" "105.981739" "latitude" "22.4201574" "last_login" "1599962847" +HSET "user:4993" "first_name" "Jo-ann" "last_name" "Gough" "email" "jgoughro@businessinsider.com" "gender" "female" "ip_address" "37.97.125.14" "country" "Indonesia" "country_code" "ID" "city" "Tambakrejo" "longitude" "112.1489829" "latitude" "-8.3010912" "last_login" "1583370286" +HSET "user:4994" "first_name" "Anastasia" "last_name" "Davidman" "email" "adavidmanrp@columbia.edu" "gender" "female" "ip_address" "115.99.88.109" "country" "Colombia" "country_code" "CO" "city" "Galapa" "longitude" "-74.883823" "latitude" "10.898923" "last_login" "1578843852" +HSET "user:4995" "first_name" "Rurik" "last_name" "Mottershaw" "email" "rmottershawrq@wikispaces.com" "gender" "male" "ip_address" "111.54.67.136" "country" "Russia" "country_code" "RU" "city" "Ostashkov" "longitude" "33.10753" "latitude" "57.14667" "last_login" "1598244469" +HSET "user:4996" "first_name" "Ramsey" "last_name" "Labusch" "email" "rlabuschrr@vinaora.com" "gender" "male" "ip_address" "73.77.242.115" "country" "Argentina" "country_code" "AR" "city" "La Calera" "longitude" "-71.2106242" "latitude" "-32.7910792" "last_login" "1581173510" +HSET "user:4997" "first_name" "Calla" "last_name" "Gibb" "email" "cgibb0@gmpg.org" "gender" "female" "ip_address" "79.151.98.148" "country" "Russia" "country_code" "RU" "city" "Burla" "longitude" "78.3407084" "latitude" "53.3347847" "last_login" "1577309290" +HSET "user:4998" "first_name" "Nataline" "last_name" "Novik" "email" "nnovik1@sbwire.com" "gender" "female" "ip_address" "218.69.133.231" "country" "Italy" "country_code" "IT" "city" "Milano" "longitude" "9.1855974" "latitude" "45.4476447" "last_login" "1574394980" +HSET "user:4999" "first_name" "Gilligan" "last_name" "Kitching" "email" "gkitching2@phoca.cz" "gender" "female" "ip_address" "235.235.155.25" "country" "Thailand" "country_code" "TH" "city" "Bang Bon" "longitude" "100.3976471" "latitude" "13.657613" "last_login" "1599980876" +HSET "user:5000" "first_name" "Tallie" "last_name" "Carruthers" "email" "tcarruthers3@cmu.edu" "gender" "female" "ip_address" "224.170.100.99" "country" "China" "country_code" "CN" "city" "Xiangshi" "longitude" "110.840021" "latitude" "29.514498" "last_login" "1570104977" +HSET "user:5001" "first_name" "Brigit" "last_name" "Abrahams" "email" "babrahams4@ow.ly" "gender" "female" "ip_address" "86.189.152.70" "country" "Portugal" "country_code" "PT" "city" "Fornos" "longitude" "-8.2439651" "latitude" "41.0562367" "last_login" "1583944161" +HSET "user:5002" "first_name" "Annabel" "last_name" "Moreton" "email" "amoreton5@icq.com" "gender" "female" "ip_address" "80.208.137.178" "country" "United States" "country_code" "US" "city" "Asheville" "longitude" "-82.4861053" "latitude" "35.6046911" "last_login" "1589724808" +HSET "user:5003" "first_name" "Libby" "last_name" "Hammand" "email" "lhammand6@whitehouse.gov" "gender" "female" "ip_address" "173.209.11.11" "country" "Mexico" "country_code" "MX" "city" "Reforma" "longitude" "-93.1548091" "latitude" "17.8579334" "last_login" "1588498022" +HSET "user:5004" "first_name" "Flor" "last_name" "Boggs" "email" "fboggs7@so-net.ne.jp" "gender" "female" "ip_address" "7.31.21.2" "country" "China" "country_code" "CN" "city" "Baima" "longitude" "104.990101" "latitude" "29.528923" "last_login" "1598224153" +HSET "user:5005" "first_name" "Chauncey" "last_name" "Plewright" "email" "cplewright8@shutterfly.com" "gender" "male" "ip_address" "157.88.128.191" "country" "China" "country_code" "CN" "city" "Ganyan" "longitude" "110.790339" "latitude" "29.275625" "last_login" "1581698192" +HSET "user:5006" "first_name" "Dewie" "last_name" "Hurt" "email" "dhurt9@walmart.com" "gender" "male" "ip_address" "63.164.131.204" "country" "China" "country_code" "CN" "city" "Toutuo" "longitude" "116.360871" "latitude" "30.848103" "last_login" "1568607637" +HSET "user:5007" "first_name" "Jeni" "last_name" "Beurich" "email" "jbeuricha@cam.ac.uk" "gender" "female" "ip_address" "215.66.246.39" "country" "Mongolia" "country_code" "MN" "city" "Bulgan" "longitude" "103.5218199" "latitude" "48.8231572" "last_login" "1599018776" +HSET "user:5008" "first_name" "Hyatt" "last_name" "Graffin" "email" "hgraffinb@army.mil" "gender" "male" "ip_address" "84.76.204.205" "country" "Philippines" "country_code" "PH" "city" "Llanera" "longitude" "121.0126662" "latitude" "15.6662632" "last_login" "1572604603" +HSET "user:5009" "first_name" "Mireielle" "last_name" "Bum" "email" "mbumc@usda.gov" "gender" "female" "ip_address" "2.89.170.81" "country" "Canada" "country_code" "CA" "city" "Two Hills" "longitude" "-111.743338" "latitude" "53.7131425" "last_login" "1589830731" +HSET "user:5010" "first_name" "Fairlie" "last_name" "Straneo" "email" "fstraneod@qq.com" "gender" "male" "ip_address" "190.43.239.29" "country" "China" "country_code" "CN" "city" "Koktokay" "longitude" "89.803615" "latitude" "47.211019" "last_login" "1584321170" +HSET "user:5011" "first_name" "Christie" "last_name" "Baitman" "email" "cbaitmane@biblegateway.com" "gender" "female" "ip_address" "184.21.62.204" "country" "China" "country_code" "CN" "city" "Qian’an" "longitude" "118.701144" "latitude" "39.999174" "last_login" "1588549250" +HSET "user:5012" "first_name" "Jami" "last_name" "Vardie" "email" "jvardief@hc360.com" "gender" "female" "ip_address" "188.215.42.190" "country" "Ethiopia" "country_code" "ET" "city" "Lalībela" "longitude" "39.0476298" "latitude" "12.0308987" "last_login" "1569717268" +HSET "user:5013" "first_name" "Nataline" "last_name" "Clubley" "email" "nclubleyg@angelfire.com" "gender" "female" "ip_address" "166.125.129.141" "country" "Russia" "country_code" "RU" "city" "Moshenskoye" "longitude" "34.5830034" "latitude" "58.5083791" "last_login" "1585109983" +HSET "user:5014" "first_name" "Laurence" "last_name" "Rothman" "email" "lrothmanh@geocities.jp" "gender" "male" "ip_address" "189.96.190.201" "country" "Philippines" "country_code" "PH" "city" "Mat-i" "longitude" "123.9026495" "latitude" "8.1142739" "last_login" "1578326176" +HSET "user:5015" "first_name" "Casi" "last_name" "Cutbush" "email" "ccutbushi@blogspot.com" "gender" "female" "ip_address" "245.217.76.203" "country" "China" "country_code" "CN" "city" "Xiahong" "longitude" "104.785208" "latitude" "36.730837" "last_login" "1596345497" +HSET "user:5016" "first_name" "Kippy" "last_name" "Retchford" "email" "kretchfordj@4shared.com" "gender" "male" "ip_address" "251.33.252.153" "country" "Indonesia" "country_code" "ID" "city" "Setonokalong" "longitude" "111.9629" "latitude" "-8.0934" "last_login" "1596600807" +HSET "user:5017" "first_name" "Allister" "last_name" "Berthomier" "email" "aberthomierk@cpanel.net" "gender" "male" "ip_address" "124.228.20.25" "country" "Argentina" "country_code" "AR" "city" "Concepción del Uruguay" "longitude" "-58.269543" "latitude" "-32.485681" "last_login" "1595742527" +HSET "user:5018" "first_name" "Osbert" "last_name" "Eborn" "email" "oebornl@newsvine.com" "gender" "male" "ip_address" "4.31.62.180" "country" "North Korea" "country_code" "KP" "city" "Hŭngju-dong" "longitude" "126.54756" "latitude" "40.99629" "last_login" "1596819841" +HSET "user:5019" "first_name" "Dinnie" "last_name" "Ibbeson" "email" "dibbesonm@google.ru" "gender" "female" "ip_address" "148.71.51.231" "country" "Colombia" "country_code" "CO" "city" "Puerto Nariño" "longitude" "-70.38306" "latitude" "-3.7702" "last_login" "1597267261" +HSET "user:5020" "first_name" "Doll" "last_name" "Pattisson" "email" "dpattissonn@ebay.co.uk" "gender" "female" "ip_address" "58.164.75.3" "country" "China" "country_code" "CN" "city" "Heba" "longitude" "112.646263" "latitude" "29.186335" "last_login" "1589699382" +HSET "user:5021" "first_name" "Neville" "last_name" "Bray" "email" "nbrayo@examiner.com" "gender" "male" "ip_address" "81.169.9.191" "country" "China" "country_code" "CN" "city" "Dagang" "longitude" "120.103473" "latitude" "33.189192" "last_login" "1579163569" +HSET "user:5022" "first_name" "Leelah" "last_name" "McLorinan" "email" "lmclorinanp@utexas.edu" "gender" "female" "ip_address" "54.173.35.235" "country" "Finland" "country_code" "FI" "city" "Hartola" "longitude" "26.0188652" "latitude" "61.5792581" "last_login" "1579967868" +HSET "user:5023" "first_name" "Westbrook" "last_name" "Eddicott" "email" "weddicottq@nature.com" "gender" "male" "ip_address" "173.205.74.86" "country" "Russia" "country_code" "RU" "city" "Linëvo" "longitude" "83.3748613" "latitude" "54.4555308" "last_login" "1584839560" +HSET "user:5024" "first_name" "Starlene" "last_name" "Oultram" "email" "soultramr@mac.com" "gender" "female" "ip_address" "151.22.25.181" "country" "Portugal" "country_code" "PT" "city" "Ordem" "longitude" "-8.942153" "latitude" "39.7433445" "last_login" "1598298218" +HSET "user:5025" "first_name" "Tibold" "last_name" "Hallawell" "email" "thallawells@domainmarket.com" "gender" "male" "ip_address" "17.246.114.168" "country" "Honduras" "country_code" "HN" "city" "Jiquinlaca" "longitude" "-88.35" "latitude" "14" "last_login" "1575936177" +HSET "user:5026" "first_name" "Fran" "last_name" "Swinyard" "email" "fswinyardt@youtu.be" "gender" "male" "ip_address" "35.97.83.21" "country" "Panama" "country_code" "PA" "city" "La Loma" "longitude" "-82.157199" "latitude" "9.315382" "last_login" "1583175909" +HSET "user:5027" "first_name" "Albertina" "last_name" "Leasor" "email" "aleasoru@goo.ne.jp" "gender" "female" "ip_address" "123.125.121.125" "country" "Guadeloupe" "country_code" "GP" "city" "Jarry" "longitude" "-61.558" "latitude" "16.2359" "last_login" "1594387195" +HSET "user:5028" "first_name" "Dev" "last_name" "MacGillreich" "email" "dmacgillreichv@stanford.edu" "gender" "male" "ip_address" "152.100.62.4" "country" "Japan" "country_code" "JP" "city" "Haebaru" "longitude" "127.875104" "latitude" "26.3358903" "last_login" "1593918332" +HSET "user:5029" "first_name" "Lambert" "last_name" "Leasor" "email" "lleasorw@furl.net" "gender" "male" "ip_address" "185.64.187.112" "country" "Indonesia" "country_code" "ID" "city" "Banjarkemuning" "longitude" "112.8165095" "latitude" "-7.3788331" "last_login" "1592843763" +HSET "user:5030" "first_name" "Timofei" "last_name" "Pencot" "email" "tpencotx@cyberchimps.com" "gender" "male" "ip_address" "132.232.87.221" "country" "Iraq" "country_code" "IQ" "city" "Ad Dīwānīyah" "longitude" "44.9066503" "latitude" "31.9641427" "last_login" "1575580443" +HSET "user:5031" "first_name" "Dorthea" "last_name" "Mazillius" "email" "dmazilliusy@flickr.com" "gender" "female" "ip_address" "196.56.33.172" "country" "Jordan" "country_code" "JO" "city" "Amman" "longitude" "35.9283716" "latitude" "31.9453666" "last_login" "1575954101" +HSET "user:5032" "first_name" "Kelsey" "last_name" "Niland" "email" "knilandz@unicef.org" "gender" "male" "ip_address" "23.55.16.234" "country" "China" "country_code" "CN" "city" "Duoxiang" "longitude" "113.367059" "latitude" "30.427416" "last_login" "1573569551" +HSET "user:5033" "first_name" "Merci" "last_name" "Loud" "email" "mloud10@reverbnation.com" "gender" "female" "ip_address" "103.58.113.96" "country" "Indonesia" "country_code" "ID" "city" "Cilebang Satu" "longitude" "106.2931013" "latitude" "-6.6591023" "last_login" "1598825913" +HSET "user:5034" "first_name" "Waylin" "last_name" "McGuffog" "email" "wmcguffog11@usa.gov" "gender" "male" "ip_address" "192.107.186.46" "country" "Guatemala" "country_code" "GT" "city" "Ostuncalco" "longitude" "-91.619388" "latitude" "14.868392" "last_login" "1581476842" +HSET "user:5035" "first_name" "Kordula" "last_name" "Adger" "email" "kadger12@xing.com" "gender" "female" "ip_address" "151.247.0.249" "country" "Comoros" "country_code" "KM" "city" "Vanadjou" "longitude" "43.2853868" "latitude" "-11.6110008" "last_login" "1573888205" +HSET "user:5036" "first_name" "Ellary" "last_name" "Treverton" "email" "etreverton13@ehow.com" "gender" "male" "ip_address" "93.148.14.34" "country" "Indonesia" "country_code" "ID" "city" "Sirnaresmi" "longitude" "106.493598" "latitude" "-6.8089753" "last_login" "1572891086" +HSET "user:5037" "first_name" "Melisandra" "last_name" "Giovani" "email" "mgiovani14@who.int" "gender" "female" "ip_address" "171.191.81.72" "country" "China" "country_code" "CN" "city" "Niu" "longitude" "108.3451423" "latitude" "22.8157128" "last_login" "1581260294" +HSET "user:5038" "first_name" "Nessa" "last_name" "Lemmer" "email" "nlemmer15@ow.ly" "gender" "female" "ip_address" "205.45.126.229" "country" "Russia" "country_code" "RU" "city" "Kachkanar" "longitude" "59.4504627" "latitude" "58.7239855" "last_login" "1584482866" +HSET "user:5039" "first_name" "Rudiger" "last_name" "Glanert" "email" "rglanert16@angelfire.com" "gender" "male" "ip_address" "23.125.122.15" "country" "Philippines" "country_code" "PH" "city" "President Roxas" "longitude" "125.05806" "latitude" "7.160227" "last_login" "1573711397" +HSET "user:5040" "first_name" "Humfrid" "last_name" "Bowe" "email" "hbowe17@geocities.jp" "gender" "male" "ip_address" "57.231.88.41" "country" "Indonesia" "country_code" "ID" "city" "Tetebatu" "longitude" "116.4134873" "latitude" "-8.4691756" "last_login" "1591372288" +HSET "user:5041" "first_name" "Timmy" "last_name" "Anfosso" "email" "tanfosso18@jimdo.com" "gender" "female" "ip_address" "6.93.48.132" "country" "Mongolia" "country_code" "MN" "city" "Bodĭ" "longitude" "106.915572" "latitude" "47.918302" "last_login" "1595233032" +HSET "user:5042" "first_name" "Nobe" "last_name" "Franscioni" "email" "nfranscioni19@nifty.com" "gender" "male" "ip_address" "159.128.165.190" "country" "China" "country_code" "CN" "city" "Tianshan" "longitude" "119.257096" "latitude" "32.627137" "last_login" "1594977494" +HSET "user:5043" "first_name" "Abbe" "last_name" "Follit" "email" "afollit1a@berkeley.edu" "gender" "female" "ip_address" "183.89.253.62" "country" "China" "country_code" "CN" "city" "Qianjin" "longitude" "130.375062" "latitude" "46.814102" "last_login" "1571449262" +HSET "user:5044" "first_name" "Bartlett" "last_name" "Leuchars" "email" "bleuchars1b@marketwatch.com" "gender" "male" "ip_address" "160.43.147.58" "country" "Greece" "country_code" "GR" "city" "Asíni" "longitude" "23.013113" "latitude" "37.5097524" "last_login" "1582143136" +HSET "user:5045" "first_name" "Anabella" "last_name" "Flint" "email" "aflint1c@theguardian.com" "gender" "female" "ip_address" "205.151.35.145" "country" "Tajikistan" "country_code" "TJ" "city" "Ayní" "longitude" "68.533658" "latitude" "39.3960229" "last_login" "1587835703" +HSET "user:5046" "first_name" "Jazmin" "last_name" "Quartermain" "email" "jquartermain1d@aboutads.info" "gender" "female" "ip_address" "97.113.210.97" "country" "China" "country_code" "CN" "city" "Sucun" "longitude" "110.947552" "latitude" "34.423878" "last_login" "1587835371" +HSET "user:5047" "first_name" "Latia" "last_name" "Senter" "email" "lsenter1e@mit.edu" "gender" "female" "ip_address" "194.36.78.61" "country" "Iceland" "country_code" "IS" "city" "Hafnarfjörður" "longitude" "-21.986995" "latitude" "64.0516089" "last_login" "1568825737" +HSET "user:5048" "first_name" "Vera" "last_name" "Egdal" "email" "vegdal1f@cbc.ca" "gender" "female" "ip_address" "232.28.124.237" "country" "United States" "country_code" "US" "city" "Fort Pierce" "longitude" "-80.3714326" "latitude" "27.3980151" "last_login" "1592914886" +HSET "user:5049" "first_name" "Cecil" "last_name" "McDonogh" "email" "cmcdonogh1g@google.co.uk" "gender" "male" "ip_address" "174.25.159.225" "country" "Brazil" "country_code" "BR" "city" "Serra" "longitude" "-40.3077898" "latitude" "-20.1215224" "last_login" "1583851722" +HSET "user:5050" "first_name" "Bertram" "last_name" "Jaxon" "email" "bjaxon1h@skype.com" "gender" "male" "ip_address" "144.224.227.73" "country" "Indonesia" "country_code" "ID" "city" "Ciawitali" "longitude" "108.133333" "latitude" "-7.633333" "last_login" "1574128413" +HSET "user:5051" "first_name" "Tallia" "last_name" "Belderson" "email" "tbelderson1i@is.gd" "gender" "female" "ip_address" "15.187.1.68" "country" "Togo" "country_code" "TG" "city" "Kpalimé" "longitude" "0.6298922" "latitude" "6.9097671" "last_login" "1583386796" +HSET "user:5052" "first_name" "Annabal" "last_name" "Cornuau" "email" "acornuau1j@webnode.com" "gender" "female" "ip_address" "195.252.49.62" "country" "Tanzania" "country_code" "TZ" "city" "Malya" "longitude" "33.5140043" "latitude" "-2.9765098" "last_login" "1572739356" +HSET "user:5053" "first_name" "Kirby" "last_name" "Michelmore" "email" "kmichelmore1k@hostgator.com" "gender" "male" "ip_address" "69.249.212.79" "country" "Portugal" "country_code" "PT" "city" "Pisão" "longitude" "-8.3092933" "latitude" "40.1394691" "last_login" "1597658756" +HSET "user:5054" "first_name" "Beatrice" "last_name" "Ranking" "email" "branking1l@wiley.com" "gender" "female" "ip_address" "241.221.192.132" "country" "Ukraine" "country_code" "UA" "city" "Yabluniv" "longitude" "24.9415656" "latitude" "48.4018664" "last_login" "1581049417" +HSET "user:5055" "first_name" "Seana" "last_name" "Jallin" "email" "sjallin1m@yahoo.co.jp" "gender" "female" "ip_address" "206.93.163.253" "country" "Egypt" "country_code" "EG" "city" "Aş Şaff" "longitude" "31.3159513" "latitude" "29.6516537" "last_login" "1598191009" +HSET "user:5056" "first_name" "Ciro" "last_name" "Bresnahan" "email" "cbresnahan1n@artisteer.com" "gender" "male" "ip_address" "85.1.100.144" "country" "China" "country_code" "CN" "city" "Nanfeng" "longitude" "116.525725" "latitude" "27.218444" "last_login" "1573473405" +HSET "user:5057" "first_name" "Loleta" "last_name" "Houten" "email" "lhouten1o@ihg.com" "gender" "female" "ip_address" "127.35.4.164" "country" "Madagascar" "country_code" "MG" "city" "Ambarakaraka" "longitude" "48.86667" "latitude" "-13.5" "last_login" "1575220393" +HSET "user:5058" "first_name" "Wallie" "last_name" "Jesteco" "email" "wjesteco1p@techcrunch.com" "gender" "male" "ip_address" "114.134.130.89" "country" "South Africa" "country_code" "ZA" "city" "Tembisa" "longitude" "28.1971031" "latitude" "-25.99566" "last_login" "1584892161" +HSET "user:5059" "first_name" "Jessalyn" "last_name" "Ceaser" "email" "jceaser1q@cdc.gov" "gender" "female" "ip_address" "82.75.234.184" "country" "Ukraine" "country_code" "UA" "city" "Kalyny" "longitude" "23.8730183" "latitude" "48.1417959" "last_login" "1570875187" +HSET "user:5060" "first_name" "Micheil" "last_name" "Semble" "email" "msemble1r@barnesandnoble.com" "gender" "male" "ip_address" "235.12.254.95" "country" "Philippines" "country_code" "PH" "city" "Paoay" "longitude" "120.5168009" "latitude" "18.1405298" "last_login" "1598246332" +HSET "user:5061" "first_name" "Arlina" "last_name" "Gurden" "email" "agurden1s@wordpress.com" "gender" "female" "ip_address" "173.121.95.114" "country" "China" "country_code" "CN" "city" "Baixi" "longitude" "103.573122" "latitude" "31.874138" "last_login" "1592270691" +HSET "user:5062" "first_name" "Olva" "last_name" "Ewers" "email" "oewers1t@redcross.org" "gender" "female" "ip_address" "80.179.110.18" "country" "Indonesia" "country_code" "ID" "city" "Warmare" "longitude" "133.9246009" "latitude" "-0.970213" "last_login" "1579464193" +HSET "user:5063" "first_name" "Donni" "last_name" "Boise" "email" "dboise1u@pagesperso-orange.fr" "gender" "female" "ip_address" "232.123.232.221" "country" "Sweden" "country_code" "SE" "city" "Borlänge" "longitude" "15.3893305" "latitude" "60.3068052" "last_login" "1578371927" +HSET "user:5064" "first_name" "Rici" "last_name" "Tappin" "email" "rtappin1v@reference.com" "gender" "female" "ip_address" "235.45.100.145" "country" "China" "country_code" "CN" "city" "Galutu" "longitude" "108.689367" "latitude" "38.766979" "last_login" "1575396701" +HSET "user:5065" "first_name" "Sterne" "last_name" "Miguel" "email" "smiguel1w@slideshare.net" "gender" "male" "ip_address" "119.232.167.113" "country" "China" "country_code" "CN" "city" "Mingcheng" "longitude" "-72.3412362" "latitude" "43.3667218" "last_login" "1596662944" +HSET "user:5066" "first_name" "Harley" "last_name" "Edgcumbe" "email" "hedgcumbe1x@prlog.org" "gender" "male" "ip_address" "36.171.112.106" "country" "China" "country_code" "CN" "city" "Changsha" "longitude" "112.938814" "latitude" "28.228209" "last_login" "1590314546" +HSET "user:5067" "first_name" "Tait" "last_name" "Garham" "email" "tgarham1y@washington.edu" "gender" "male" "ip_address" "160.226.105.15" "country" "Indonesia" "country_code" "ID" "city" "Karanggeneng" "longitude" "110.5933862" "latitude" "-7.5173045" "last_login" "1582625089" +HSET "user:5068" "first_name" "Alberto" "last_name" "Burrus" "email" "aburrus1z@hc360.com" "gender" "male" "ip_address" "125.110.142.201" "country" "China" "country_code" "CN" "city" "Meixi" "longitude" "116.081656" "latitude" "24.265926" "last_login" "1572147996" +HSET "user:5069" "first_name" "Sybille" "last_name" "de'-Ancy Willis" "email" "sdeancywillis20@cyberchimps.com" "gender" "female" "ip_address" "129.113.117.85" "country" "Ukraine" "country_code" "UA" "city" "Klavdiyevo-Tarasove" "longitude" "30.0105737" "latitude" "50.5803842" "last_login" "1582970408" +HSET "user:5070" "first_name" "Krispin" "last_name" "Helbeck" "email" "khelbeck21@t-online.de" "gender" "male" "ip_address" "241.212.229.157" "country" "Indonesia" "country_code" "ID" "city" "Sangojar" "longitude" "108.0306" "latitude" "-7.1667" "last_login" "1587343851" +HSET "user:5071" "first_name" "Eb" "last_name" "Arrowsmith" "email" "earrowsmith22@myspace.com" "gender" "male" "ip_address" "68.139.149.183" "country" "United Arab Emirates" "country_code" "AE" "city" "Al Fujayrah" "longitude" "56.2482277" "latitude" "25.4110762" "last_login" "1591739937" +HSET "user:5072" "first_name" "Adele" "last_name" "Broz" "email" "abroz23@sun.com" "gender" "female" "ip_address" "73.97.122.202" "country" "Russia" "country_code" "RU" "city" "Nizhneivkino" "longitude" "49.5179263" "latitude" "58.1951391" "last_login" "1596691899" +HSET "user:5073" "first_name" "Kermy" "last_name" "Hallihane" "email" "khallihane24@fastcompany.com" "gender" "male" "ip_address" "39.243.75.173" "country" "China" "country_code" "CN" "city" "Yuxin" "longitude" "120.79411" "latitude" "30.66974" "last_login" "1581177743" +HSET "user:5074" "first_name" "Antonie" "last_name" "Stiger" "email" "astiger25@mapquest.com" "gender" "female" "ip_address" "202.15.194.246" "country" "Tanzania" "country_code" "TZ" "city" "Kintinku" "longitude" "35.2175944" "latitude" "-5.881878" "last_login" "1600086292" +HSET "user:5075" "first_name" "Andie" "last_name" "Strickler" "email" "astrickler26@answers.com" "gender" "male" "ip_address" "37.147.42.34" "country" "Brazil" "country_code" "BR" "city" "Franco da Rocha" "longitude" "-46.7294577" "latitude" "-23.3233727" "last_login" "1575086182" +HSET "user:5076" "first_name" "Boone" "last_name" "Teasdale-Markie" "email" "bteasdalemarkie27@xinhuanet.com" "gender" "male" "ip_address" "33.16.8.202" "country" "Burkina Faso" "country_code" "BF" "city" "Fada N'gourma" "longitude" "0.3654204" "latitude" "12.0601649" "last_login" "1585006397" +HSET "user:5077" "first_name" "Linc" "last_name" "Lillegard" "email" "llillegard28@newyorker.com" "gender" "male" "ip_address" "49.163.248.159" "country" "Czech Republic" "country_code" "CZ" "city" "Žatec" "longitude" "15.5089055" "latitude" "49.2063442" "last_login" "1577230678" +HSET "user:5078" "first_name" "Babbette" "last_name" "Sleightholm" "email" "bsleightholm29@flickr.com" "gender" "female" "ip_address" "51.167.203.80" "country" "Russia" "country_code" "RU" "city" "Pereleshino" "longitude" "40.1348656" "latitude" "51.7386378" "last_login" "1598738651" +HSET "user:5079" "first_name" "Wendy" "last_name" "Borzone" "email" "wborzone2a@google.com" "gender" "female" "ip_address" "218.223.38.223" "country" "China" "country_code" "CN" "city" "Hekou" "longitude" "103.93935" "latitude" "22.529403" "last_login" "1583828199" +HSET "user:5080" "first_name" "Raff" "last_name" "Barbrick" "email" "rbarbrick2b@senate.gov" "gender" "male" "ip_address" "95.217.44.110" "country" "Mongolia" "country_code" "MN" "city" "Orhon" "longitude" "104.3016527" "latitude" "49.004705" "last_login" "1575519313" +HSET "user:5081" "first_name" "Fiona" "last_name" "Cavaney" "email" "fcavaney2c@ustream.tv" "gender" "female" "ip_address" "177.175.154.55" "country" "Brazil" "country_code" "BR" "city" "Jaciara" "longitude" "-55.0493375" "latitude" "-16.0010539" "last_login" "1594566975" +HSET "user:5082" "first_name" "Leona" "last_name" "Klaiser" "email" "lklaiser2d@about.com" "gender" "female" "ip_address" "178.35.111.104" "country" "China" "country_code" "CN" "city" "Changqi" "longitude" "110.552977" "latitude" "21.938596" "last_login" "1569123870" +HSET "user:5083" "first_name" "Lionello" "last_name" "Severn" "email" "lsevern2e@prweb.com" "gender" "male" "ip_address" "218.244.246.213" "country" "Russia" "country_code" "RU" "city" "Tbilisskaya" "longitude" "40.1763516" "latitude" "45.3913779" "last_login" "1591307525" +HSET "user:5084" "first_name" "Dino" "last_name" "Shave" "email" "dshave2f@tumblr.com" "gender" "male" "ip_address" "244.136.96.190" "country" "Thailand" "country_code" "TH" "city" "Prang Ku" "longitude" "104.053676" "latitude" "14.8297769" "last_login" "1581671818" +HSET "user:5085" "first_name" "Ingaberg" "last_name" "Berkelay" "email" "iberkelay2g@tumblr.com" "gender" "female" "ip_address" "75.90.25.88" "country" "Uruguay" "country_code" "UY" "city" "Florida" "longitude" "-56.2202946" "latitude" "-34.0948167" "last_login" "1593317998" +HSET "user:5086" "first_name" "Genevieve" "last_name" "Malpass" "email" "gmalpass2h@alibaba.com" "gender" "female" "ip_address" "102.124.157.122" "country" "China" "country_code" "CN" "city" "Nancha" "longitude" "129.283467" "latitude" "47.138034" "last_login" "1588614688" +HSET "user:5087" "first_name" "Duncan" "last_name" "Mansford" "email" "dmansford2i@ca.gov" "gender" "male" "ip_address" "227.0.81.76" "country" "Peru" "country_code" "PE" "city" "Ihuari" "longitude" "-76.95139" "latitude" "-11.18917" "last_login" "1579393977" +HSET "user:5088" "first_name" "Christos" "last_name" "Castellino" "email" "ccastellino2j@taobao.com" "gender" "male" "ip_address" "82.3.126.15" "country" "Czech Republic" "country_code" "CZ" "city" "Chýnov" "longitude" "14.8112191" "latitude" "49.4067724" "last_login" "1595303106" +HSET "user:5089" "first_name" "Julie" "last_name" "Conwell" "email" "jconwell2k@cbslocal.com" "gender" "female" "ip_address" "30.11.246.19" "country" "China" "country_code" "CN" "city" "Lingmen" "longitude" "-84.9047641" "latitude" "32.5571916" "last_login" "1588261243" +HSET "user:5090" "first_name" "Janis" "last_name" "Monkeman" "email" "jmonkeman2l@nifty.com" "gender" "female" "ip_address" "194.108.7.90" "country" "Palestinian Territory" "country_code" "PS" "city" "Arţās" "longitude" "35.188236" "latitude" "31.689957" "last_login" "1569473726" +HSET "user:5091" "first_name" "Jamesy" "last_name" "Orhtmann" "email" "jorhtmann2m@biblegateway.com" "gender" "male" "ip_address" "201.142.245.209" "country" "China" "country_code" "CN" "city" "Binhe" "longitude" "117.710496" "latitude" "39.00366" "last_login" "1580509537" +HSET "user:5092" "first_name" "Sada" "last_name" "Johansen" "email" "sjohansen2n@cornell.edu" "gender" "female" "ip_address" "70.18.110.99" "country" "South Africa" "country_code" "ZA" "city" "Welkom" "longitude" "26.77027" "latitude" "-27.9699645" "last_login" "1579539959" +HSET "user:5093" "first_name" "Bendick" "last_name" "Iashvili" "email" "biashvili2o@answers.com" "gender" "male" "ip_address" "186.118.187.89" "country" "Indonesia" "country_code" "ID" "city" "Jayaraga Kaler" "longitude" "107.8773835" "latitude" "-7.2034105" "last_login" "1580479441" +HSET "user:5094" "first_name" "Angelita" "last_name" "Klimt" "email" "aklimt2p@amazonaws.com" "gender" "female" "ip_address" "105.208.189.106" "country" "Botswana" "country_code" "BW" "city" "Manyana" "longitude" "25.5897031" "latitude" "-24.7711226" "last_login" "1569048492" +HSET "user:5095" "first_name" "Vladimir" "last_name" "Acum" "email" "vacum2q@hhs.gov" "gender" "male" "ip_address" "218.35.158.84" "country" "France" "country_code" "FR" "city" "Narbonne" "longitude" "3.0057099" "latitude" "43.1905743" "last_login" "1571193947" +HSET "user:5096" "first_name" "Rodolph" "last_name" "Gerkens" "email" "rgerkens2r@homestead.com" "gender" "male" "ip_address" "31.127.198.67" "country" "Sweden" "country_code" "SE" "city" "Dalsjöfors" "longitude" "13.0953584" "latitude" "57.7189182" "last_login" "1600213068" +HSET "user:5097" "first_name" "Bryon" "last_name" "Carlson" "email" "bcarlson2s@howstuffworks.com" "gender" "male" "ip_address" "65.180.67.75" "country" "Philippines" "country_code" "PH" "city" "Malabang" "longitude" "124.0735387" "latitude" "7.591829" "last_login" "1582986854" +HSET "user:5098" "first_name" "Berri" "last_name" "Samme" "email" "bsamme2t@bizjournals.com" "gender" "female" "ip_address" "120.17.196.116" "country" "Russia" "country_code" "RU" "city" "Trubchevsk" "longitude" "33.7634935" "latitude" "52.5871233" "last_login" "1588204519" +HSET "user:5099" "first_name" "Ximenez" "last_name" "Berrington" "email" "xberrington2u@tripadvisor.com" "gender" "male" "ip_address" "229.23.209.5" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Sìn Hồ" "longitude" "103.2493721" "latitude" "22.3577742" "last_login" "1593386438" +HSET "user:5100" "first_name" "Perceval" "last_name" "Penswick" "email" "ppenswick2v@soup.io" "gender" "male" "ip_address" "56.171.46.54" "country" "Democratic Republic of the Congo" "country_code" "CD" "city" "Tshikapa" "longitude" "20.7956878" "latitude" "-6.4237489" "last_login" "1587715736" +HSET "user:5101" "first_name" "Yettie" "last_name" "Segot" "email" "ysegot2w@ning.com" "gender" "female" "ip_address" "114.254.191.143" "country" "China" "country_code" "CN" "city" "Fangxiang" "longitude" "119.389592" "latitude" "32.504051" "last_login" "1580423544" +HSET "user:5102" "first_name" "Alfie" "last_name" "Egginson" "email" "aegginson2x@mac.com" "gender" "female" "ip_address" "213.211.94.81" "country" "Indonesia" "country_code" "ID" "city" "Babakanjaya" "longitude" "106.3684552" "latitude" "-6.2434505" "last_login" "1594976620" +HSET "user:5103" "first_name" "Addie" "last_name" "Skillern" "email" "askillern2y@nps.gov" "gender" "male" "ip_address" "22.16.6.62" "country" "China" "country_code" "CN" "city" "Caijiazha" "longitude" "114.827038" "latitude" "30.910965" "last_login" "1577511896" +HSET "user:5104" "first_name" "Leonardo" "last_name" "Candwell" "email" "lcandwell2z@xing.com" "gender" "male" "ip_address" "44.151.34.80" "country" "China" "country_code" "CN" "city" "Anyuan" "longitude" "113.870729" "latitude" "27.615202" "last_login" "1599471818" +HSET "user:5105" "first_name" "Carlene" "last_name" "Filpi" "email" "cfilpi30@topsy.com" "gender" "female" "ip_address" "238.79.68.199" "country" "Brazil" "country_code" "BR" "city" "Iperó" "longitude" "-47.6931718" "latitude" "-23.351784" "last_login" "1587379188" +HSET "user:5106" "first_name" "Haroun" "last_name" "Ibbott" "email" "hibbott31@cpanel.net" "gender" "male" "ip_address" "55.171.151.36" "country" "Peru" "country_code" "PE" "city" "Chincha Baja" "longitude" "-76.1667807" "latitude" "-13.4919595" "last_login" "1594573508" +HSET "user:5107" "first_name" "Dael" "last_name" "Baal" "email" "dbaal32@360.cn" "gender" "male" "ip_address" "134.86.250.11" "country" "China" "country_code" "CN" "city" "Linxia Chengguanzhen" "longitude" "103.352654" "latitude" "35.422892" "last_login" "1572314728" +HSET "user:5108" "first_name" "Audrie" "last_name" "Arnett" "email" "aarnett33@php.net" "gender" "female" "ip_address" "124.43.212.16" "country" "Laos" "country_code" "LA" "city" "Ban Houayxay" "longitude" "100.4340367" "latitude" "20.262817" "last_login" "1592680532" +HSET "user:5109" "first_name" "Winslow" "last_name" "Fewell" "email" "wfewell34@oracle.com" "gender" "male" "ip_address" "105.209.18.165" "country" "Russia" "country_code" "RU" "city" "Salavat" "longitude" "55.9381136" "latitude" "53.3624134" "last_login" "1581491636" +HSET "user:5110" "first_name" "Renell" "last_name" "McKain" "email" "rmckain35@tinyurl.com" "gender" "female" "ip_address" "162.61.22.98" "country" "Indonesia" "country_code" "ID" "city" "Karangpete" "longitude" "110.509841" "latitude" "-7.324188" "last_login" "1597455883" +HSET "user:5111" "first_name" "Celina" "last_name" "Dunster" "email" "cdunster36@whitehouse.gov" "gender" "female" "ip_address" "51.215.145.229" "country" "Portugal" "country_code" "PT" "city" "Serrinha" "longitude" "-8.2927634" "latitude" "41.248043" "last_login" "1575525379" +HSET "user:5112" "first_name" "Nani" "last_name" "Chew" "email" "nchew37@alibaba.com" "gender" "female" "ip_address" "54.57.229.220" "country" "Philippines" "country_code" "PH" "city" "Bulihan" "longitude" "120.8986655" "latitude" "14.8853727" "last_login" "1597482972" +HSET "user:5113" "first_name" "Goldie" "last_name" "Boxhall" "email" "gboxhall38@msn.com" "gender" "female" "ip_address" "96.45.91.84" "country" "Zimbabwe" "country_code" "ZW" "city" "Zvishavane" "longitude" "30.0549683" "latitude" "-20.3139411" "last_login" "1593903794" +HSET "user:5114" "first_name" "Dedie" "last_name" "Carnell" "email" "dcarnell39@cloudflare.com" "gender" "female" "ip_address" "196.87.38.201" "country" "Venezuela" "country_code" "VE" "city" "Boconó" "longitude" "-70.2497616" "latitude" "9.2534438" "last_login" "1595877066" +HSET "user:5115" "first_name" "Guilbert" "last_name" "Arrighetti" "email" "garrighetti3a@stanford.edu" "gender" "male" "ip_address" "135.34.43.49" "country" "Russia" "country_code" "RU" "city" "Ordynskoye" "longitude" "81.9305699" "latitude" "54.3777115" "last_login" "1598358638" +HSET "user:5116" "first_name" "Irv" "last_name" "Bedingfield" "email" "ibedingfield3b@miibeian.gov.cn" "gender" "male" "ip_address" "137.159.15.37" "country" "China" "country_code" "CN" "city" "Litian" "longitude" "103.817356" "latitude" "25.60162" "last_login" "1599516324" +HSET "user:5117" "first_name" "Jere" "last_name" "Crowch" "email" "jcrowch3c@hc360.com" "gender" "male" "ip_address" "156.133.230.220" "country" "United States" "country_code" "US" "city" "Birmingham" "longitude" "-86.8512078" "latitude" "33.5199899" "last_login" "1576114273" +HSET "user:5118" "first_name" "Jeno" "last_name" "Pietroni" "email" "jpietroni3d@tripod.com" "gender" "male" "ip_address" "231.3.27.130" "country" "France" "country_code" "FR" "city" "Hénin-Beaumont" "longitude" "2.801236" "latitude" "50.3171905" "last_login" "1580145512" +HSET "user:5119" "first_name" "Marcelle" "last_name" "Slevin" "email" "mslevin3e@histats.com" "gender" "female" "ip_address" "70.55.224.206" "country" "Venezuela" "country_code" "VE" "city" "Caicara" "longitude" "-66.1474752" "latitude" "7.6128972" "last_login" "1586557564" +HSET "user:5120" "first_name" "Abbi" "last_name" "Mallabon" "email" "amallabon3f@xrea.com" "gender" "female" "ip_address" "255.188.169.111" "country" "Brazil" "country_code" "BR" "city" "Jaguariaíva" "longitude" "-49.7106625" "latitude" "-24.2530306" "last_login" "1597270137" +HSET "user:5121" "first_name" "Oona" "last_name" "Pitcaithly" "email" "opitcaithly3g@wikispaces.com" "gender" "female" "ip_address" "133.149.169.119" "country" "Iran" "country_code" "IR" "city" "Noşratābād" "longitude" "59.9739243" "latitude" "29.8572576" "last_login" "1576612344" +HSET "user:5122" "first_name" "Kain" "last_name" "Cowpland" "email" "kcowpland3h@usda.gov" "gender" "male" "ip_address" "241.135.251.131" "country" "Greece" "country_code" "GR" "city" "Káto Miliá" "longitude" "22.3420757" "latitude" "40.2549207" "last_login" "1570115483" +HSET "user:5123" "first_name" "Verla" "last_name" "Schollick" "email" "vschollick3i@meetup.com" "gender" "female" "ip_address" "26.162.129.139" "country" "Indonesia" "country_code" "ID" "city" "Karangmangu" "longitude" "109.228143" "latitude" "-7.3081882" "last_login" "1586795632" +HSET "user:5124" "first_name" "Demetris" "last_name" "Devo" "email" "ddevo3j@mozilla.com" "gender" "female" "ip_address" "220.101.185.50" "country" "Philippines" "country_code" "PH" "city" "Itbayat" "longitude" "121.8097656" "latitude" "20.7236765" "last_login" "1577492617" +HSET "user:5125" "first_name" "Nappy" "last_name" "Concklin" "email" "nconcklin3k@fc2.com" "gender" "male" "ip_address" "18.170.90.66" "country" "China" "country_code" "CN" "city" "Xingong" "longitude" "117.6852235" "latitude" "39.0063718" "last_login" "1583534573" +HSET "user:5126" "first_name" "Cord" "last_name" "Hext" "email" "chext3l@cornell.edu" "gender" "male" "ip_address" "152.140.57.132" "country" "China" "country_code" "CN" "city" "Tangchi" "longitude" "123.769368" "latitude" "46.987383" "last_login" "1574768370" +HSET "user:5127" "first_name" "Flory" "last_name" "Tapply" "email" "ftapply3m@xinhuanet.com" "gender" "female" "ip_address" "183.225.193.114" "country" "Russia" "country_code" "RU" "city" "Sovetskoye" "longitude" "85.4051549" "latitude" "52.2774362" "last_login" "1595399393" +HSET "user:5128" "first_name" "Correna" "last_name" "Hotchkin" "email" "chotchkin3n@newsvine.com" "gender" "female" "ip_address" "143.151.149.31" "country" "Portugal" "country_code" "PT" "city" "Ferreiros" "longitude" "-8.3575438" "latitude" "41.6188726" "last_login" "1573413167" +HSET "user:5129" "first_name" "Giffy" "last_name" "Forsyth" "email" "gforsyth3o@mac.com" "gender" "male" "ip_address" "223.6.147.174" "country" "Togo" "country_code" "TG" "city" "Aného" "longitude" "1.5814235" "latitude" "6.2272766" "last_login" "1588662962" +HSET "user:5130" "first_name" "Stan" "last_name" "Jacques" "email" "sjacques3p@merriam-webster.com" "gender" "male" "ip_address" "171.137.88.139" "country" "Argentina" "country_code" "AR" "city" "Villa Mercedes" "longitude" "-58.5197163" "latitude" "-34.5926613" "last_login" "1599190037" +HSET "user:5131" "first_name" "Vinni" "last_name" "Durrant" "email" "vdurrant3q@wired.com" "gender" "female" "ip_address" "232.244.114.208" "country" "Russia" "country_code" "RU" "city" "Tashtagol" "longitude" "87.8895009" "latitude" "52.7643345" "last_login" "1586974149" +HSET "user:5132" "first_name" "Luella" "last_name" "Southcott" "email" "lsouthcott3r@redcross.org" "gender" "female" "ip_address" "120.93.182.209" "country" "China" "country_code" "CN" "city" "Yuguan" "longitude" "98.289419" "latitude" "39.772554" "last_login" "1573169867" +HSET "user:5133" "first_name" "Bertrand" "last_name" "Mark" "email" "bmark3s@privacy.gov.au" "gender" "male" "ip_address" "23.103.55.229" "country" "Bolivia" "country_code" "BO" "city" "Portachuelo" "longitude" "-63.3977316" "latitude" "-17.3547843" "last_login" "1575733777" +HSET "user:5134" "first_name" "Neddie" "last_name" "Hegley" "email" "nhegley3t@ebay.com" "gender" "male" "ip_address" "144.115.56.65" "country" "Mongolia" "country_code" "MN" "city" "Dzüünharaa" "longitude" "106.4515929" "latitude" "48.8459103" "last_login" "1574535831" +HSET "user:5135" "first_name" "Bertina" "last_name" "Mattes" "email" "bmattes3u@last.fm" "gender" "female" "ip_address" "99.94.214.27" "country" "Honduras" "country_code" "HN" "city" "Araulí" "longitude" "-86.5425921" "latitude" "13.9740494" "last_login" "1573985008" +HSET "user:5136" "first_name" "Yovonnda" "last_name" "Oke" "email" "yoke3v@webs.com" "gender" "female" "ip_address" "203.29.61.255" "country" "Indonesia" "country_code" "ID" "city" "Cimuncang" "longitude" "106.1610343" "latitude" "-6.1130137" "last_login" "1579490194" +HSET "user:5137" "first_name" "Moritz" "last_name" "Arnot" "email" "marnot3w@yahoo.co.jp" "gender" "male" "ip_address" "10.243.212.228" "country" "Cape Verde" "country_code" "CV" "city" "Calheta" "longitude" "-23.2141352" "latitude" "15.229571" "last_login" "1569888175" +HSET "user:5138" "first_name" "Philis" "last_name" "Gillise" "email" "pgillise3x@wiley.com" "gender" "female" "ip_address" "124.99.86.169" "country" "Philippines" "country_code" "PH" "city" "Talisay" "longitude" "121.0130439" "latitude" "14.5618599" "last_login" "1578382342" +HSET "user:5139" "first_name" "Dagmar" "last_name" "Crossgrove" "email" "dcrossgrove3y@networksolutions.com" "gender" "female" "ip_address" "149.31.254.59" "country" "Poland" "country_code" "PL" "city" "Stronie" "longitude" "19.6728793" "latitude" "49.829369" "last_login" "1569673161" +HSET "user:5140" "first_name" "Percival" "last_name" "Hein" "email" "phein3z@canalblog.com" "gender" "male" "ip_address" "33.176.241.194" "country" "Greece" "country_code" "GR" "city" "Chalandrítsa" "longitude" "21.7838411" "latitude" "38.1087967" "last_login" "1591408356" +HSET "user:5141" "first_name" "Rodrigo" "last_name" "Santon" "email" "rsanton40@hibu.com" "gender" "male" "ip_address" "30.195.29.177" "country" "Indonesia" "country_code" "ID" "city" "Rentung" "longitude" "120.6027296" "latitude" "-8.4236237" "last_login" "1597937727" +HSET "user:5142" "first_name" "Shepperd" "last_name" "Coase" "email" "scoase41@discuz.net" "gender" "male" "ip_address" "79.163.234.217" "country" "France" "country_code" "FR" "city" "Cergy-Pontoise" "longitude" "2.0362602" "latitude" "49.1025395" "last_login" "1595099875" +HSET "user:5143" "first_name" "Rosco" "last_name" "Westhoff" "email" "rwesthoff42@goo.gl" "gender" "male" "ip_address" "145.252.107.215" "country" "Peru" "country_code" "PE" "city" "Puerto Maldonado" "longitude" "-69.1963141" "latitude" "-12.5909084" "last_login" "1588579954" +HSET "user:5144" "first_name" "Nikita" "last_name" "Tenant" "email" "ntenant43@youtube.com" "gender" "male" "ip_address" "32.31.129.89" "country" "China" "country_code" "CN" "city" "Delingha" "longitude" "97.360984" "latitude" "37.369435" "last_login" "1584567637" +HSET "user:5145" "first_name" "Horst" "last_name" "de Amaya" "email" "hdeamaya44@omniture.com" "gender" "male" "ip_address" "157.124.112.134" "country" "Brazil" "country_code" "BR" "city" "Abaeté" "longitude" "-45.4447859" "latitude" "-19.157438" "last_login" "1593901727" +HSET "user:5146" "first_name" "Dael" "last_name" "Rogge" "email" "drogge45@sourceforge.net" "gender" "female" "ip_address" "76.30.202.180" "country" "Sweden" "country_code" "SE" "city" "Uppsala" "longitude" "17.682881" "latitude" "59.8053589" "last_login" "1580278942" +HSET "user:5147" "first_name" "Tanner" "last_name" "Rousel" "email" "trousel46@freewebs.com" "gender" "male" "ip_address" "164.142.50.51" "country" "Kazakhstan" "country_code" "KZ" "city" "Fedorovka" "longitude" "51.9665342" "latitude" "51.2308402" "last_login" "1569925340" +HSET "user:5148" "first_name" "Francene" "last_name" "Groven" "email" "fgroven47@surveymonkey.com" "gender" "female" "ip_address" "212.16.197.143" "country" "Iran" "country_code" "IR" "city" "Lordegān" "longitude" "50.8144259" "latitude" "31.5165852" "last_login" "1575063936" +HSET "user:5149" "first_name" "Teodorico" "last_name" "Liff" "email" "tliff48@mail.ru" "gender" "male" "ip_address" "164.53.174.87" "country" "Czech Republic" "country_code" "CZ" "city" "Batelov" "longitude" "15.3946577" "latitude" "49.3142554" "last_login" "1599271003" +HSET "user:5150" "first_name" "Antoni" "last_name" "Wigelsworth" "email" "awigelsworth49@illinois.edu" "gender" "male" "ip_address" "227.70.252.158" "country" "China" "country_code" "CN" "city" "Dongkan" "longitude" "120.2625" "latitude" "33.398866" "last_login" "1599563090" +HSET "user:5151" "first_name" "Dalton" "last_name" "Tuting" "email" "dtuting4a@earthlink.net" "gender" "male" "ip_address" "242.229.235.191" "country" "Japan" "country_code" "JP" "city" "Kamigyō-ku" "longitude" "135.7515062" "latitude" "34.9540542" "last_login" "1584740001" +HSET "user:5152" "first_name" "Trent" "last_name" "Sanches" "email" "tsanches4b@ezinearticles.com" "gender" "male" "ip_address" "166.80.132.21" "country" "Brazil" "country_code" "BR" "city" "Floriano" "longitude" "-43.0226015" "latitude" "-6.7769318" "last_login" "1588660642" +HSET "user:5153" "first_name" "Estel" "last_name" "Bowshire" "email" "ebowshire4c@narod.ru" "gender" "female" "ip_address" "158.36.114.231" "country" "Egypt" "country_code" "EG" "city" "Al ‘Alamayn" "longitude" "28.954309" "latitude" "30.82247" "last_login" "1572629783" +HSET "user:5154" "first_name" "Emelen" "last_name" "Twizell" "email" "etwizell4d@google.pl" "gender" "male" "ip_address" "145.0.113.57" "country" "Indonesia" "country_code" "ID" "city" "Bulusari" "longitude" "110.5424021" "latitude" "-6.9775856" "last_login" "1594762014" +HSET "user:5155" "first_name" "Brooke" "last_name" "Quilleash" "email" "bquilleash4e@google.de" "gender" "male" "ip_address" "44.59.79.47" "country" "Poland" "country_code" "PL" "city" "Sępólno Krajeńskie" "longitude" "17.5316201" "latitude" "53.4513" "last_login" "1580109079" +HSET "user:5156" "first_name" "Filip" "last_name" "Chataignier" "email" "fchataignier4f@facebook.com" "gender" "male" "ip_address" "24.213.190.48" "country" "United States" "country_code" "US" "city" "Grand Rapids" "longitude" "-85.7564107" "latitude" "43.0283952" "last_login" "1593949158" +HSET "user:5157" "first_name" "Haroun" "last_name" "Surman" "email" "hsurman4g@prlog.org" "gender" "male" "ip_address" "130.152.220.111" "country" "Vietnam" "country_code" "VN" "city" "Buôn Ma Thuột" "longitude" "108.0382475" "latitude" "12.6661944" "last_login" "1577920227" +HSET "user:5158" "first_name" "Gavin" "last_name" "Lackinton" "email" "glackinton4h@symantec.com" "gender" "male" "ip_address" "120.204.251.171" "country" "France" "country_code" "FR" "city" "Paris 03" "longitude" "5.8978018" "latitude" "43.4945737" "last_login" "1595005370" +HSET "user:5159" "first_name" "Ardyth" "last_name" "Mullard" "email" "amullard4i@youku.com" "gender" "female" "ip_address" "198.15.114.67" "country" "China" "country_code" "CN" "city" "Mijiang" "longitude" "100.22775" "latitude" "26.855047" "last_login" "1589731534" +HSET "user:5160" "first_name" "Sylvester" "last_name" "Cragoe" "email" "scragoe4j@howstuffworks.com" "gender" "male" "ip_address" "158.199.232.242" "country" "Poland" "country_code" "PL" "city" "Kaczory" "longitude" "16.9015317" "latitude" "53.0905078" "last_login" "1575705829" +HSET "user:5161" "first_name" "Alix" "last_name" "Meryett" "email" "ameryett4k@cdbaby.com" "gender" "male" "ip_address" "195.213.19.53" "country" "Netherlands" "country_code" "NL" "city" "'s-Hertogenbosch" "longitude" "5.2583334" "latitude" "51.6991519" "last_login" "1596689110" +HSET "user:5162" "first_name" "Nonna" "last_name" "Rolfini" "email" "nrolfini4l@mtv.com" "gender" "female" "ip_address" "34.122.219.112" "country" "China" "country_code" "CN" "city" "Gangjia" "longitude" "121.668489" "latitude" "42.016401" "last_login" "1593136333" +HSET "user:5163" "first_name" "Shamus" "last_name" "Potts" "email" "spotts4m@google.it" "gender" "male" "ip_address" "101.172.208.92" "country" "China" "country_code" "CN" "city" "Menggusi" "longitude" "88.433942" "latitude" "22.627308" "last_login" "1589012350" +HSET "user:5164" "first_name" "Cathi" "last_name" "Henker" "email" "chenker4n@cbslocal.com" "gender" "female" "ip_address" "245.130.14.223" "country" "Brazil" "country_code" "BR" "city" "Minador do Negrão" "longitude" "-36.8465564" "latitude" "-9.3228094" "last_login" "1568646251" +HSET "user:5165" "first_name" "Emmerich" "last_name" "Readman" "email" "ereadman4o@tamu.edu" "gender" "male" "ip_address" "137.253.158.43" "country" "Turkmenistan" "country_code" "TM" "city" "Gumdag" "longitude" "54.594037" "latitude" "39.2097706" "last_login" "1572519282" +HSET "user:5166" "first_name" "Currie" "last_name" "Borit" "email" "cborit4p@marriott.com" "gender" "male" "ip_address" "127.65.173.242" "country" "Thailand" "country_code" "TH" "city" "Chaloem Phra Kiat" "longitude" "98.6111657" "latitude" "9.9533828" "last_login" "1572963566" +HSET "user:5167" "first_name" "Erinn" "last_name" "Boggers" "email" "eboggers4q@google.it" "gender" "female" "ip_address" "94.145.227.129" "country" "Germany" "country_code" "DE" "city" "Berlin" "longitude" "13.4343715" "latitude" "52.4867189" "last_login" "1598454977" +HSET "user:5168" "first_name" "Braden" "last_name" "Lamberto" "email" "blamberto4r@dion.ne.jp" "gender" "male" "ip_address" "163.178.131.20" "country" "Serbia" "country_code" "RS" "city" "Čortanovci" "longitude" "20.0069251" "latitude" "45.1501866" "last_login" "1582953480" +HSET "user:5169" "first_name" "Georgena" "last_name" "McMeeking" "email" "gmcmeeking4s@census.gov" "gender" "female" "ip_address" "110.114.181.90" "country" "Sweden" "country_code" "SE" "city" "Strömsund" "longitude" "15.5568691" "latitude" "63.8536621" "last_login" "1589626080" +HSET "user:5170" "first_name" "Bernarr" "last_name" "Ogger" "email" "bogger4t@php.net" "gender" "male" "ip_address" "115.178.42.113" "country" "China" "country_code" "CN" "city" "Shuangqiaoping" "longitude" "111.777681" "latitude" "29.264004" "last_login" "1584220744" +HSET "user:5171" "first_name" "Kingsley" "last_name" "Gerrell" "email" "kgerrell4u@about.me" "gender" "male" "ip_address" "239.160.222.113" "country" "China" "country_code" "CN" "city" "Huangtugang" "longitude" "114.872199" "latitude" "30.453667" "last_login" "1581917455" +HSET "user:5172" "first_name" "Cal" "last_name" "Gilhoolie" "email" "cgilhoolie4v@oaic.gov.au" "gender" "female" "ip_address" "37.105.217.77" "country" "Senegal" "country_code" "SN" "city" "Foundiougne" "longitude" "-16.4405872" "latitude" "13.81425" "last_login" "1572496894" +HSET "user:5173" "first_name" "Lora" "last_name" "Pauwel" "email" "lpauwel4w@chron.com" "gender" "female" "ip_address" "129.123.161.50" "country" "Peru" "country_code" "PE" "city" "Patambuco" "longitude" "-69.567879" "latitude" "-14.27079" "last_login" "1574331366" +HSET "user:5174" "first_name" "Judith" "last_name" "Hullins" "email" "jhullins4x@usgs.gov" "gender" "female" "ip_address" "214.17.147.160" "country" "Brazil" "country_code" "BR" "city" "Apucarana" "longitude" "-51.4650904" "latitude" "-23.5586314" "last_login" "1599761636" +HSET "user:5175" "first_name" "Kaine" "last_name" "Treadwell" "email" "ktreadwell4y@wordpress.org" "gender" "male" "ip_address" "147.65.79.24" "country" "Thailand" "country_code" "TH" "city" "Samut Songkhram" "longitude" "99.9129845" "latitude" "13.3601931" "last_login" "1578666077" +HSET "user:5176" "first_name" "Deeanne" "last_name" "Nockalls" "email" "dnockalls4z@toplist.cz" "gender" "female" "ip_address" "39.168.193.171" "country" "Sweden" "country_code" "SE" "city" "Norberg" "longitude" "15.9334948" "latitude" "60.0702076" "last_login" "1591916214" +HSET "user:5177" "first_name" "Townie" "last_name" "Potapczuk" "email" "tpotapczuk50@edublogs.org" "gender" "male" "ip_address" "28.16.26.61" "country" "China" "country_code" "CN" "city" "Guankou" "longitude" "113.641688" "latitude" "28.168791" "last_login" "1583486344" +HSET "user:5178" "first_name" "Laurella" "last_name" "Harnett" "email" "lharnett51@ning.com" "gender" "female" "ip_address" "204.5.245.74" "country" "China" "country_code" "CN" "city" "Heishui" "longitude" "102.990108" "latitude" "32.061895" "last_login" "1583446688" +HSET "user:5179" "first_name" "Estevan" "last_name" "Purser" "email" "epurser52@123-reg.co.uk" "gender" "male" "ip_address" "112.20.123.79" "country" "United States" "country_code" "US" "city" "Springfield" "longitude" "-72.5766759" "latitude" "42.1014803" "last_login" "1577760862" +HSET "user:5180" "first_name" "Kienan" "last_name" "Taggett" "email" "ktaggett53@topsy.com" "gender" "male" "ip_address" "199.18.3.122" "country" "China" "country_code" "CN" "city" "Caomiao" "longitude" "115.680442" "latitude" "34.059263" "last_login" "1595033091" +HSET "user:5181" "first_name" "Farr" "last_name" "Cosser" "email" "fcosser54@chronoengine.com" "gender" "male" "ip_address" "186.242.81.165" "country" "Indonesia" "country_code" "ID" "city" "Lamawalang" "longitude" "122.9409494" "latitude" "-8.3272653" "last_login" "1570149529" +HSET "user:5182" "first_name" "Brigit" "last_name" "Lawrenson" "email" "blawrenson55@cornell.edu" "gender" "female" "ip_address" "190.83.169.89" "country" "Chile" "country_code" "CL" "city" "Quillota" "longitude" "-71.2497156" "latitude" "-32.8803027" "last_login" "1599482728" +HSET "user:5183" "first_name" "Nicola" "last_name" "Gwyther" "email" "ngwyther56@wiley.com" "gender" "male" "ip_address" "8.52.198.131" "country" "Tunisia" "country_code" "TN" "city" "Gafsa" "longitude" "8.7756556" "latitude" "34.4311398" "last_login" "1591783847" +HSET "user:5184" "first_name" "Jeromy" "last_name" "Inch" "email" "jinch57@toplist.cz" "gender" "male" "ip_address" "25.18.1.218" "country" "China" "country_code" "CN" "city" "Yutou" "longitude" "120.445031" "latitude" "27.8096522" "last_login" "1570062995" +HSET "user:5185" "first_name" "Melodee" "last_name" "Showen" "email" "mshowen58@patch.com" "gender" "female" "ip_address" "63.240.233.123" "country" "China" "country_code" "CN" "city" "Bazha" "longitude" "89.146146" "latitude" "29.171978" "last_login" "1594767377" +HSET "user:5186" "first_name" "Rufe" "last_name" "Neissen" "email" "rneissen59@istockphoto.com" "gender" "male" "ip_address" "164.72.111.27" "country" "Thailand" "country_code" "TH" "city" "Chulabhorn" "longitude" "101.638266" "latitude" "16.5284299" "last_login" "1593287148" +HSET "user:5187" "first_name" "Bertram" "last_name" "Galsworthy" "email" "bgalsworthy5a@google.com.br" "gender" "male" "ip_address" "220.58.151.121" "country" "China" "country_code" "CN" "city" "Tiedonglu" "longitude" "117.207298" "latitude" "39.179865" "last_login" "1571073406" +HSET "user:5188" "first_name" "Chloe" "last_name" "Figgen" "email" "cfiggen5b@scientificamerican.com" "gender" "female" "ip_address" "58.33.36.90" "country" "China" "country_code" "CN" "city" "Ziketan" "longitude" "99.982552" "latitude" "35.588399" "last_login" "1577553763" +HSET "user:5189" "first_name" "Janean" "last_name" "Bogays" "email" "jbogays5c@fema.gov" "gender" "female" "ip_address" "80.188.56.153" "country" "Czech Republic" "country_code" "CZ" "city" "Štítná nad Vláří" "longitude" "17.9723651" "latitude" "49.070618" "last_login" "1588654002" +HSET "user:5190" "first_name" "Karoly" "last_name" "Dye" "email" "kdye5d@wordpress.org" "gender" "male" "ip_address" "112.149.139.225" "country" "Poland" "country_code" "PL" "city" "Sławatycze" "longitude" "23.528792" "latitude" "51.7930978" "last_login" "1597237056" +HSET "user:5191" "first_name" "Ivan" "last_name" "Nuschke" "email" "inuschke5e@salon.com" "gender" "male" "ip_address" "234.27.207.158" "country" "Indonesia" "country_code" "ID" "city" "Carenang Lor" "longitude" "106.3110622" "latitude" "-6.0802849" "last_login" "1582538601" +HSET "user:5192" "first_name" "Pamelina" "last_name" "Haddon" "email" "phaddon5f@house.gov" "gender" "female" "ip_address" "97.220.130.215" "country" "Japan" "country_code" "JP" "city" "Obihiro" "longitude" "143.1041325" "latitude" "42.9506191" "last_login" "1597225437" +HSET "user:5193" "first_name" "Celinka" "last_name" "LLelweln" "email" "cllelweln5g@webnode.com" "gender" "female" "ip_address" "75.200.236.137" "country" "Portugal" "country_code" "PT" "city" "Freiria" "longitude" "-8.9534587" "latitude" "39.3442902" "last_login" "1578583097" +HSET "user:5194" "first_name" "Lauri" "last_name" "Massot" "email" "lmassot5h@g.co" "gender" "female" "ip_address" "242.34.255.14" "country" "Poland" "country_code" "PL" "city" "Nowa Sarzyna" "longitude" "22.3273146" "latitude" "50.3235719" "last_login" "1587162466" +HSET "user:5195" "first_name" "Llywellyn" "last_name" "MacCartan" "email" "lmaccartan5i@springer.com" "gender" "male" "ip_address" "113.44.73.175" "country" "Chile" "country_code" "CL" "city" "Putre" "longitude" "-69.5597273" "latitude" "-18.1969907" "last_login" "1578971767" +HSET "user:5196" "first_name" "Rozalie" "last_name" "Rudledge" "email" "rrudledge5j@youtube.com" "gender" "female" "ip_address" "105.142.72.201" "country" "Brazil" "country_code" "BR" "city" "Timbó" "longitude" "-49.26952" "latitude" "-26.8251371" "last_login" "1590225397" +HSET "user:5197" "first_name" "Jeanie" "last_name" "Landor" "email" "jlandor5k@rambler.ru" "gender" "female" "ip_address" "201.22.100.148" "country" "Republic of the Congo" "country_code" "CG" "city" "Owando" "longitude" "15.8936224" "latitude" "-0.4829632" "last_login" "1578741205" +HSET "user:5198" "first_name" "Rodina" "last_name" "Garvill" "email" "rgarvill5l@wikispaces.com" "gender" "female" "ip_address" "35.195.211.19" "country" "China" "country_code" "CN" "city" "Jiuguan" "longitude" "120.281653" "latitude" "30.835511" "last_login" "1575589920" +HSET "user:5199" "first_name" "Lanae" "last_name" "Dunwoody" "email" "ldunwoody5m@xinhuanet.com" "gender" "female" "ip_address" "144.117.181.54" "country" "Argentina" "country_code" "AR" "city" "Mariano Moreno" "longitude" "-58.3124766" "latitude" "-34.7061803" "last_login" "1587587587" +HSET "user:5200" "first_name" "Norry" "last_name" "Pitherick" "email" "npitherick5n@diigo.com" "gender" "female" "ip_address" "160.252.154.116" "country" "Croatia" "country_code" "HR" "city" "Kamen" "longitude" "16.5201503" "latitude" "43.5111646" "last_login" "1580687919" +HSET "user:5201" "first_name" "Jeanie" "last_name" "Bugg" "email" "jbugg5o@princeton.edu" "gender" "female" "ip_address" "5.201.19.68" "country" "Indonesia" "country_code" "ID" "city" "Pasirhuni" "longitude" "107.5771444" "latitude" "-7.0970638" "last_login" "1596761981" +HSET "user:5202" "first_name" "Ronny" "last_name" "Whyard" "email" "rwhyard5p@tinypic.com" "gender" "male" "ip_address" "197.16.8.43" "country" "China" "country_code" "CN" "city" "Nanzamu" "longitude" "124.411343" "latitude" "41.96014" "last_login" "1574328389" +HSET "user:5203" "first_name" "Ingeberg" "last_name" "Loxly" "email" "iloxly5q@archive.org" "gender" "female" "ip_address" "252.193.102.76" "country" "Palau" "country_code" "PW" "city" "Melekeok Village" "longitude" "134.6336896" "latitude" "7.4951158" "last_login" "1588973818" +HSET "user:5204" "first_name" "Richmond" "last_name" "McIvor" "email" "rmcivor5r@bbb.org" "gender" "male" "ip_address" "170.55.68.11" "country" "Liberia" "country_code" "LR" "city" "Kakata" "longitude" "-10.3441758" "latitude" "6.5301553" "last_login" "1598734550" +HSET "user:5205" "first_name" "Mathian" "last_name" "Wyldbore" "email" "mwyldbore5s@quantcast.com" "gender" "male" "ip_address" "186.65.198.17" "country" "Sweden" "country_code" "SE" "city" "Älvdalen" "longitude" "14.040054" "latitude" "61.228665" "last_login" "1599773023" +HSET "user:5206" "first_name" "Carmine" "last_name" "O'Hickee" "email" "cohickee5t@hao123.com" "gender" "male" "ip_address" "182.104.152.225" "country" "China" "country_code" "CN" "city" "Xiaqiao" "longitude" "120.558665" "latitude" "27.607731" "last_login" "1581142703" +HSET "user:5207" "first_name" "Ernst" "last_name" "Efford" "email" "eefford5u@sina.com.cn" "gender" "male" "ip_address" "78.121.120.188" "country" "Philippines" "country_code" "PH" "city" "Carot" "longitude" "119.90559" "latitude" "16.289185" "last_login" "1578578726" +HSET "user:5208" "first_name" "Winonah" "last_name" "Henriksson" "email" "whenriksson5v@blogs.com" "gender" "female" "ip_address" "127.18.169.189" "country" "Bahrain" "country_code" "BH" "city" "Madīnat Ḩamad" "longitude" "50.4980362" "latitude" "26.1256441" "last_login" "1589593040" +HSET "user:5209" "first_name" "Lexis" "last_name" "Manz" "email" "lmanz5w@google.fr" "gender" "female" "ip_address" "28.212.155.201" "country" "Indonesia" "country_code" "ID" "city" "Mondoteko" "longitude" "111.3471022" "latitude" "-6.7338751" "last_login" "1596200250" +HSET "user:5210" "first_name" "Joella" "last_name" "Warlaw" "email" "jwarlaw5x@barnesandnoble.com" "gender" "female" "ip_address" "219.121.115.34" "country" "Ukraine" "country_code" "UA" "city" "Balky" "longitude" "34.9321089" "latitude" "47.3845072" "last_login" "1596761901" +HSET "user:5211" "first_name" "Hy" "last_name" "Shrimplin" "email" "hshrimplin5y@umich.edu" "gender" "male" "ip_address" "144.232.227.30" "country" "Serbia" "country_code" "RS" "city" "Neuzina" "longitude" "20.7261064" "latitude" "45.3095119" "last_login" "1598396189" +HSET "user:5212" "first_name" "Jabez" "last_name" "Fraschetti" "email" "jfraschetti5z@webeden.co.uk" "gender" "male" "ip_address" "62.172.194.236" "country" "United States" "country_code" "US" "city" "Beaufort" "longitude" "-80.67895" "latitude" "32.34977" "last_login" "1598406636" +HSET "user:5213" "first_name" "Prentice" "last_name" "Iannitti" "email" "piannitti60@miibeian.gov.cn" "gender" "male" "ip_address" "91.88.225.189" "country" "Argentina" "country_code" "AR" "city" "General Martín Miguel de Güemes" "longitude" "-58.2532508" "latitude" "-34.804675" "last_login" "1573125857" +HSET "user:5214" "first_name" "Ellary" "last_name" "Le Maitre" "email" "elemaitre61@yellowpages.com" "gender" "male" "ip_address" "251.169.182.248" "country" "China" "country_code" "CN" "city" "Yamen" "longitude" "113.058484" "latitude" "22.299866" "last_login" "1587885576" +HSET "user:5215" "first_name" "Vyky" "last_name" "Marking" "email" "vmarking62@narod.ru" "gender" "female" "ip_address" "255.159.60.185" "country" "France" "country_code" "FR" "city" "Dijon" "longitude" "2.5135985" "latitude" "45.2977605" "last_login" "1569843660" +HSET "user:5216" "first_name" "De" "last_name" "Jorczyk" "email" "djorczyk63@auda.org.au" "gender" "female" "ip_address" "115.52.60.197" "country" "Russia" "country_code" "RU" "city" "Listvyanka" "longitude" "104.8423232" "latitude" "51.8761178" "last_login" "1598638624" +HSET "user:5217" "first_name" "Dudley" "last_name" "Smail" "email" "dsmail64@digg.com" "gender" "male" "ip_address" "122.149.230.169" "country" "Indonesia" "country_code" "ID" "city" "Mranggen" "longitude" "110.5096283" "latitude" "-7.0425557" "last_login" "1589945331" +HSET "user:5218" "first_name" "Kelcy" "last_name" "Madill" "email" "kmadill65@bloglines.com" "gender" "female" "ip_address" "121.227.229.220" "country" "France" "country_code" "FR" "city" "Le Mans" "longitude" "0.1924459" "latitude" "47.9956173" "last_login" "1589641503" +HSET "user:5219" "first_name" "Denver" "last_name" "Aspray" "email" "daspray66@addtoany.com" "gender" "male" "ip_address" "126.138.104.227" "country" "China" "country_code" "CN" "city" "Tongyu" "longitude" "123.088238" "latitude" "44.81291" "last_login" "1587217853" +HSET "user:5220" "first_name" "Geri" "last_name" "Franchioni" "email" "gfranchioni67@mozilla.org" "gender" "female" "ip_address" "77.25.35.106" "country" "Kosovo" "country_code" "XK" "city" "Klokot" "longitude" "21.3709578" "latitude" "42.3690023" "last_login" "1586050092" +HSET "user:5221" "first_name" "Bertha" "last_name" "Portam" "email" "bportam68@ted.com" "gender" "female" "ip_address" "15.88.100.5" "country" "Sweden" "country_code" "SE" "city" "Ljungbyholm" "longitude" "16.1858857" "latitude" "56.6306408" "last_login" "1572760569" +HSET "user:5222" "first_name" "Marijn" "last_name" "Napoli" "email" "mnapoli69@google.nl" "gender" "male" "ip_address" "165.24.236.249" "country" "Russia" "country_code" "RU" "city" "Tol’yatti" "longitude" "49.435224" "latitude" "53.526935" "last_login" "1588793009" +HSET "user:5223" "first_name" "Krishna" "last_name" "Jakovijevic" "email" "kjakovijevic6a@wsj.com" "gender" "male" "ip_address" "15.92.5.161" "country" "Uganda" "country_code" "UG" "city" "Hoima" "longitude" "31.3484448" "latitude" "1.4273554" "last_login" "1587819963" +HSET "user:5224" "first_name" "Korella" "last_name" "Flode" "email" "kflode6b@storify.com" "gender" "female" "ip_address" "54.212.196.98" "country" "Portugal" "country_code" "PT" "city" "Gandra" "longitude" "-8.6287913" "latitude" "41.6213969" "last_login" "1584632261" +HSET "user:5225" "first_name" "Silas" "last_name" "Mottini" "email" "smottini6c@so-net.ne.jp" "gender" "male" "ip_address" "12.90.148.50" "country" "Indonesia" "country_code" "ID" "city" "Kalunan" "longitude" "124.6687109" "latitude" "-8.3899579" "last_login" "1570575299" +HSET "user:5226" "first_name" "Janeczka" "last_name" "Copper" "email" "jcopper6d@berkeley.edu" "gender" "female" "ip_address" "59.246.70.198" "country" "Poland" "country_code" "PL" "city" "Krynice" "longitude" "23.4060228" "latitude" "50.5799404" "last_login" "1587228755" +HSET "user:5227" "first_name" "Ryun" "last_name" "Lilliman" "email" "rlilliman6e@hao123.com" "gender" "male" "ip_address" "174.95.172.60" "country" "Argentina" "country_code" "AR" "city" "General Enrique Godoy" "longitude" "-68.2320043" "latitude" "-38.9351182" "last_login" "1590645573" +HSET "user:5228" "first_name" "Hughie" "last_name" "Spatari" "email" "hspatari6f@discovery.com" "gender" "male" "ip_address" "246.239.149.44" "country" "Japan" "country_code" "JP" "city" "Rumoi" "longitude" "141.7351885" "latitude" "43.8832308" "last_login" "1594519395" +HSET "user:5229" "first_name" "Natal" "last_name" "Redwood" "email" "nredwood6g@shutterfly.com" "gender" "male" "ip_address" "147.187.52.193" "country" "Slovenia" "country_code" "SI" "city" "Poljčane" "longitude" "15.5784672" "latitude" "46.3141609" "last_login" "1596071564" +HSET "user:5230" "first_name" "Miran" "last_name" "Dobby" "email" "mdobby6h@hostgator.com" "gender" "female" "ip_address" "153.19.208.163" "country" "Philippines" "country_code" "PH" "city" "Buan" "longitude" "121.6397151" "latitude" "13.939297" "last_login" "1597258732" +HSET "user:5231" "first_name" "Gavin" "last_name" "Fallen" "email" "gfallen6i@ucoz.ru" "gender" "male" "ip_address" "200.40.33.114" "country" "Jamaica" "country_code" "JM" "city" "Alexandria" "longitude" "-77.3539774" "latitude" "18.3051999" "last_login" "1592438976" +HSET "user:5232" "first_name" "Dorie" "last_name" "Caughey" "email" "dcaughey6j@hugedomains.com" "gender" "male" "ip_address" "159.122.219.146" "country" "Indonesia" "country_code" "ID" "city" "Mlonggo" "longitude" "110.7095788" "latitude" "-6.5277643" "last_login" "1572021844" +HSET "user:5233" "first_name" "Gage" "last_name" "Chaplain" "email" "gchaplain6k@hugedomains.com" "gender" "male" "ip_address" "62.43.241.199" "country" "Indonesia" "country_code" "ID" "city" "Pule" "longitude" "111.5349059" "latitude" "-8.135667" "last_login" "1596653135" +HSET "user:5234" "first_name" "Jolyn" "last_name" "Houten" "email" "jhouten6l@slashdot.org" "gender" "female" "ip_address" "133.185.224.222" "country" "Ukraine" "country_code" "UA" "city" "Izyum" "longitude" "37.2665006" "latitude" "49.2121445" "last_login" "1569900324" +HSET "user:5235" "first_name" "Maryanne" "last_name" "Fehely" "email" "mfehely6m@blog.com" "gender" "female" "ip_address" "176.126.104.177" "country" "Russia" "country_code" "RU" "city" "Voznesen’ye" "longitude" "35.485856" "latitude" "61.0162875" "last_login" "1583653489" +HSET "user:5236" "first_name" "Welsh" "last_name" "Frere" "email" "wfrere6n@dyndns.org" "gender" "male" "ip_address" "198.121.163.230" "country" "Indonesia" "country_code" "ID" "city" "Pringu" "longitude" "112.6824377" "latitude" "-8.098655" "last_login" "1571249069" +HSET "user:5237" "first_name" "Karie" "last_name" "Rumke" "email" "krumke6o@uiuc.edu" "gender" "female" "ip_address" "235.160.234.191" "country" "Macedonia" "country_code" "MK" "city" "Kumanovo" "longitude" "21.7247643" "latitude" "42.13896" "last_login" "1596039717" +HSET "user:5238" "first_name" "Henrietta" "last_name" "Toping" "email" "htoping6p@deliciousdays.com" "gender" "female" "ip_address" "0.199.218.50" "country" "China" "country_code" "CN" "city" "Danglang Hudong" "longitude" "112.915135" "latitude" "41.669412" "last_login" "1574580690" +HSET "user:5239" "first_name" "Kamila" "last_name" "Halligan" "email" "khalligan6q@facebook.com" "gender" "female" "ip_address" "207.207.6.130" "country" "Indonesia" "country_code" "ID" "city" "Leran Wetan" "longitude" "112.1579249" "latitude" "-6.9219286" "last_login" "1577532214" +HSET "user:5240" "first_name" "Fenelia" "last_name" "Owttrim" "email" "fowttrim6r@networksolutions.com" "gender" "female" "ip_address" "134.157.11.169" "country" "China" "country_code" "CN" "city" "Chongru" "longitude" "111.658698" "latitude" "23.636404" "last_login" "1585391075" +HSET "user:5241" "first_name" "Roxy" "last_name" "Cauldwell" "email" "rcauldwell6s@wunderground.com" "gender" "female" "ip_address" "198.121.227.97" "country" "Panama" "country_code" "PA" "city" "Montijo" "longitude" "-81.0423429" "latitude" "7.9819981" "last_login" "1596961218" +HSET "user:5242" "first_name" "Amalia" "last_name" "Sneden" "email" "asneden6t@webmd.com" "gender" "female" "ip_address" "8.44.102.183" "country" "Albania" "country_code" "AL" "city" "Bradashesh" "longitude" "20.0226337" "latitude" "41.1036618" "last_login" "1585206334" +HSET "user:5243" "first_name" "Monique" "last_name" "Lowde" "email" "mlowde6u@google.com.br" "gender" "female" "ip_address" "67.133.13.201" "country" "Germany" "country_code" "DE" "city" "Duisburg" "longitude" "6.6518329" "latitude" "51.3948213" "last_login" "1597146457" +HSET "user:5244" "first_name" "Gil" "last_name" "Standrin" "email" "gstandrin6v@army.mil" "gender" "male" "ip_address" "233.105.54.155" "country" "South Korea" "country_code" "KR" "city" "Cheongsong gun" "longitude" "129.0571077" "latitude" "36.4359045" "last_login" "1595817530" +HSET "user:5245" "first_name" "Royce" "last_name" "Ebbers" "email" "rebbers6w@edublogs.org" "gender" "male" "ip_address" "226.222.162.240" "country" "Russia" "country_code" "RU" "city" "Petrovskaya" "longitude" "30.6795112" "latitude" "59.943775" "last_login" "1573382348" +HSET "user:5246" "first_name" "Maia" "last_name" "Milsted" "email" "mmilsted6x@shinystat.com" "gender" "female" "ip_address" "216.15.199.38" "country" "Indonesia" "country_code" "ID" "city" "Rantepang" "longitude" "119.9413" "latitude" "-2.9252" "last_login" "1580086573" +HSET "user:5247" "first_name" "Pauli" "last_name" "Brager" "email" "pbrager6y@cornell.edu" "gender" "female" "ip_address" "147.128.95.178" "country" "Sweden" "country_code" "SE" "city" "Ljungby" "longitude" "12.9321834" "latitude" "56.67925" "last_login" "1593803502" +HSET "user:5248" "first_name" "Kristoffer" "last_name" "Issitt" "email" "kissitt6z@tripod.com" "gender" "male" "ip_address" "45.175.252.37" "country" "Thailand" "country_code" "TH" "city" "Bang Kaeo" "longitude" "100.1927389" "latitude" "7.4286324" "last_login" "1585003324" +HSET "user:5249" "first_name" "Kalinda" "last_name" "Evitt" "email" "kevitt70@shareasale.com" "gender" "female" "ip_address" "114.51.41.98" "country" "Portugal" "country_code" "PT" "city" "Prior Velho" "longitude" "-9.1194989" "latitude" "38.7908786" "last_login" "1595356535" +HSET "user:5250" "first_name" "Clem" "last_name" "Spraggs" "email" "cspraggs71@phoca.cz" "gender" "female" "ip_address" "107.75.77.25" "country" "Ghana" "country_code" "GH" "city" "Mamponteng" "longitude" "-1.566667" "latitude" "6.783333" "last_login" "1573790565" +HSET "user:5251" "first_name" "Irita" "last_name" "Lettson" "email" "ilettson72@nps.gov" "gender" "female" "ip_address" "28.160.75.160" "country" "China" "country_code" "CN" "city" "Jimusa’er" "longitude" "89.1806674" "latitude" "43.9912932" "last_login" "1572842984" +HSET "user:5252" "first_name" "Corbin" "last_name" "Paff" "email" "cpaff73@cloudflare.com" "gender" "male" "ip_address" "22.234.101.149" "country" "China" "country_code" "CN" "city" "Gaojiazhuang" "longitude" "113.110378" "latitude" "36.309203" "last_login" "1573254983" +HSET "user:5253" "first_name" "Norma" "last_name" "Slopier" "email" "nslopier74@google.co.jp" "gender" "female" "ip_address" "231.18.232.14" "country" "Russia" "country_code" "RU" "city" "Belyye Berega" "longitude" "34.6649001" "latitude" "53.2058" "last_login" "1570052924" +HSET "user:5254" "first_name" "Cathy" "last_name" "Hundell" "email" "chundell75@nps.gov" "gender" "female" "ip_address" "190.195.53.143" "country" "Brazil" "country_code" "BR" "city" "Piuí" "longitude" "-46.668872" "latitude" "-23.611227" "last_login" "1599117655" +HSET "user:5255" "first_name" "Phip" "last_name" "Guilfoyle" "email" "pguilfoyle76@sogou.com" "gender" "male" "ip_address" "57.106.52.148" "country" "Switzerland" "country_code" "CH" "city" "Basel" "longitude" "7.5961692" "latitude" "47.4978346" "last_login" "1585163246" +HSET "user:5256" "first_name" "Kerk" "last_name" "Torricella" "email" "ktorricella77@amazon.com" "gender" "male" "ip_address" "43.58.214.29" "country" "China" "country_code" "CN" "city" "Chujiang" "longitude" "-73.7830184" "latitude" "40.7284708" "last_login" "1593585729" +HSET "user:5257" "first_name" "Dorita" "last_name" "Littefair" "email" "dlittefair78@w3.org" "gender" "female" "ip_address" "62.238.142.155" "country" "Indonesia" "country_code" "ID" "city" "Bajomulyo" "longitude" "111.1518552" "latitude" "-6.7062035" "last_login" "1600072002" +HSET "user:5258" "first_name" "Arlyn" "last_name" "Cousens" "email" "acousens79@barnesandnoble.com" "gender" "female" "ip_address" "137.85.74.23" "country" "Vietnam" "country_code" "VN" "city" "Thị Trấn Triệu Sơn" "longitude" "105.5708865" "latitude" "19.8512387" "last_login" "1592250762" +HSET "user:5259" "first_name" "Fairleigh" "last_name" "Comar" "email" "fcomar7a@ehow.com" "gender" "male" "ip_address" "237.60.217.68" "country" "China" "country_code" "CN" "city" "Luowan" "longitude" "112.999502" "latitude" "28.1905018" "last_login" "1596558450" +HSET "user:5260" "first_name" "Tomi" "last_name" "MacVanamy" "email" "tmacvanamy7b@smh.com.au" "gender" "female" "ip_address" "65.81.68.71" "country" "Russia" "country_code" "RU" "city" "Gornyy" "longitude" "30.2307225" "latitude" "59.9420078" "last_login" "1571250587" +HSET "user:5261" "first_name" "Glory" "last_name" "Grodden" "email" "ggrodden7c@walmart.com" "gender" "female" "ip_address" "142.194.3.29" "country" "Portugal" "country_code" "PT" "city" "Lamego" "longitude" "-7.8123805" "latitude" "41.0953745" "last_login" "1575323906" +HSET "user:5262" "first_name" "Lil" "last_name" "Karlolak" "email" "lkarlolak7d@youtube.com" "gender" "female" "ip_address" "242.192.253.158" "country" "Ukraine" "country_code" "UA" "city" "Tymoshivka" "longitude" "35.1072745" "latitude" "47.1844184" "last_login" "1598092791" +HSET "user:5263" "first_name" "Avrit" "last_name" "Janecek" "email" "ajanecek7e@cmu.edu" "gender" "female" "ip_address" "240.206.90.143" "country" "China" "country_code" "CN" "city" "Shiyang" "longitude" "105.5825" "latitude" "30.0705556" "last_login" "1573755037" +HSET "user:5264" "first_name" "Torrin" "last_name" "Caunt" "email" "tcaunt7f@sbwire.com" "gender" "male" "ip_address" "81.112.57.99" "country" "China" "country_code" "CN" "city" "Nancheng" "longitude" "116.63704" "latitude" "27.569678" "last_login" "1575913428" +HSET "user:5265" "first_name" "Quintilla" "last_name" "Ramm" "email" "qramm7g@dailymail.co.uk" "gender" "female" "ip_address" "149.54.254.195" "country" "Finland" "country_code" "FI" "city" "Kiihtelysvaara" "longitude" "30.2512315" "latitude" "62.4931114" "last_login" "1597256360" +HSET "user:5266" "first_name" "Ezri" "last_name" "Braiden" "email" "ebraiden7h@unesco.org" "gender" "male" "ip_address" "191.213.59.171" "country" "China" "country_code" "CN" "city" "Qingxi" "longitude" "114.164223" "latitude" "22.843818" "last_login" "1580318007" +HSET "user:5267" "first_name" "Kinnie" "last_name" "Grigoliis" "email" "kgrigoliis7i@bloglines.com" "gender" "male" "ip_address" "88.102.190.246" "country" "Ghana" "country_code" "GH" "city" "Prestea" "longitude" "-2.1401139" "latitude" "5.4373199" "last_login" "1590367663" +HSET "user:5268" "first_name" "Aldrich" "last_name" "Burberye" "email" "aburberye7j@yahoo.co.jp" "gender" "male" "ip_address" "23.126.118.60" "country" "Ethiopia" "country_code" "ET" "city" "Hawassa" "longitude" "38.4955043" "latitude" "7.0503742" "last_login" "1596932083" +HSET "user:5269" "first_name" "Austina" "last_name" "Fathers" "email" "afathers7k@mapquest.com" "gender" "female" "ip_address" "177.206.255.51" "country" "United Kingdom" "country_code" "GB" "city" "Belfast" "longitude" "-5.9308088" "latitude" "54.5940619" "last_login" "1593147961" +HSET "user:5270" "first_name" "Godfrey" "last_name" "O' Clovan" "email" "goclovan7l@reuters.com" "gender" "male" "ip_address" "201.65.80.203" "country" "Niger" "country_code" "NE" "city" "Nguigmi" "longitude" "13.1134915" "latitude" "14.2553505" "last_login" "1595641720" +HSET "user:5271" "first_name" "Mariel" "last_name" "Scothorne" "email" "mscothorne7m@phpbb.com" "gender" "female" "ip_address" "111.28.49.203" "country" "Russia" "country_code" "RU" "city" "Choya" "longitude" "86.5467" "latitude" "52.0108" "last_login" "1578880172" +HSET "user:5272" "first_name" "Skipton" "last_name" "Hurne" "email" "shurne7n@wikimedia.org" "gender" "male" "ip_address" "40.80.73.136" "country" "France" "country_code" "FR" "city" "Sablé-sur-Sarthe" "longitude" "-0.3419882" "latitude" "47.8417718" "last_login" "1572459448" +HSET "user:5273" "first_name" "Cullin" "last_name" "Randleson" "email" "crandleson7o@geocities.com" "gender" "male" "ip_address" "159.113.251.169" "country" "Brazil" "country_code" "BR" "city" "Morro do Chapéu" "longitude" "-41.3803558" "latitude" "-11.4346353" "last_login" "1589627295" +HSET "user:5274" "first_name" "Tedmund" "last_name" "Rathbone" "email" "trathbone7p@feedburner.com" "gender" "male" "ip_address" "146.246.105.171" "country" "Indonesia" "country_code" "ID" "city" "Arjawinangun" "longitude" "108.3848152" "latitude" "-6.6312766" "last_login" "1586116010" +HSET "user:5275" "first_name" "Francklyn" "last_name" "Conyers" "email" "fconyers7q@whitehouse.gov" "gender" "male" "ip_address" "188.2.181.165" "country" "Sweden" "country_code" "SE" "city" "Helsingborg" "longitude" "12.7045118" "latitude" "56.0463429" "last_login" "1580606383" +HSET "user:5276" "first_name" "Fancie" "last_name" "Gowers" "email" "fgowers7r@ovh.net" "gender" "female" "ip_address" "103.144.195.63" "country" "Russia" "country_code" "RU" "city" "Korenovsk" "longitude" "39.5186898" "latitude" "45.4401623" "last_login" "1575054324" +HSET "user:5277" "first_name" "Charmine" "last_name" "Medwell" "email" "cmedwell7s@ebay.com" "gender" "female" "ip_address" "16.189.66.191" "country" "Lithuania" "country_code" "LT" "city" "Kybartai" "longitude" "22.7575987" "latitude" "54.6410525" "last_login" "1597199428" +HSET "user:5278" "first_name" "Maryjo" "last_name" "Lindgren" "email" "mlindgren7t@squidoo.com" "gender" "female" "ip_address" "148.47.81.184" "country" "China" "country_code" "CN" "city" "Dahuangwei" "longitude" "113.087107" "latitude" "39.534154" "last_login" "1576519220" +HSET "user:5279" "first_name" "Avis" "last_name" "Baudic" "email" "abaudic7u@microsoft.com" "gender" "female" "ip_address" "108.235.123.231" "country" "China" "country_code" "CN" "city" "Xinji" "longitude" "115.217658" "latitude" "37.943121" "last_login" "1578970457" +HSET "user:5280" "first_name" "Eirena" "last_name" "McGunley" "email" "emcgunley7v@histats.com" "gender" "female" "ip_address" "229.160.70.207" "country" "Russia" "country_code" "RU" "city" "Syktyvkar" "longitude" "41.1199008" "latitude" "45.0052663" "last_login" "1586164090" +HSET "user:5281" "first_name" "Victoria" "last_name" "Plummer" "email" "vplummer7w@1und1.de" "gender" "female" "ip_address" "17.160.216.157" "country" "Argentina" "country_code" "AR" "city" "Quimilí" "longitude" "-64.2708937" "latitude" "-27.7310843" "last_login" "1570645089" +HSET "user:5282" "first_name" "Mitchel" "last_name" "Minci" "email" "mminci7x@liveinternet.ru" "gender" "male" "ip_address" "240.49.51.148" "country" "China" "country_code" "CN" "city" "Dengmu" "longitude" "92.836629" "latitude" "28.880867" "last_login" "1593173500" +HSET "user:5283" "first_name" "Den" "last_name" "Snugg" "email" "dsnugg7y@sogou.com" "gender" "male" "ip_address" "77.189.56.203" "country" "Chile" "country_code" "CL" "city" "Molina" "longitude" "-71.2829759" "latitude" "-35.1164987" "last_login" "1593171370" +HSET "user:5284" "first_name" "Bastien" "last_name" "Warrillow" "email" "bwarrillow7z@imgur.com" "gender" "male" "ip_address" "99.146.46.172" "country" "Denmark" "country_code" "DK" "city" "København" "longitude" "12.5468826" "latitude" "55.6700613" "last_login" "1593150449" +HSET "user:5285" "first_name" "Denney" "last_name" "Dulake" "email" "ddulake80@cpanel.net" "gender" "male" "ip_address" "248.18.168.124" "country" "China" "country_code" "CN" "city" "Dongzhaogezhuang" "longitude" "118.630532" "latitude" "39.815838" "last_login" "1587309978" +HSET "user:5286" "first_name" "Peterus" "last_name" "O'Lagene" "email" "polagene81@eventbrite.com" "gender" "male" "ip_address" "110.19.172.101" "country" "Malawi" "country_code" "MW" "city" "Chipoka" "longitude" "34.5112934" "latitude" "-13.9932843" "last_login" "1577442166" +HSET "user:5287" "first_name" "Gun" "last_name" "Kingsley" "email" "gkingsley82@java.com" "gender" "male" "ip_address" "79.241.20.255" "country" "Pakistan" "country_code" "PK" "city" "Daur" "longitude" "68.3132182" "latitude" "26.4486465" "last_login" "1591367474" +HSET "user:5288" "first_name" "Honor" "last_name" "Bremmell" "email" "hbremmell83@de.vu" "gender" "female" "ip_address" "19.24.82.18" "country" "France" "country_code" "FR" "city" "Niort" "longitude" "-0.4546217" "latitude" "46.3194856" "last_login" "1594835730" +HSET "user:5289" "first_name" "Charmaine" "last_name" "Messager" "email" "cmessager84@mlb.com" "gender" "female" "ip_address" "19.117.24.12" "country" "Indonesia" "country_code" "ID" "city" "Kapinango" "longitude" "105.8625" "latitude" "-6.4127" "last_login" "1572386779" +HSET "user:5290" "first_name" "Wildon" "last_name" "Aikett" "email" "waikett85@bloglines.com" "gender" "male" "ip_address" "32.136.209.84" "country" "Cuba" "country_code" "CU" "city" "Cifuentes" "longitude" "-80.0479039" "latitude" "22.6491239" "last_login" "1581816836" +HSET "user:5291" "first_name" "Merrili" "last_name" "Stiegar" "email" "mstiegar86@gmpg.org" "gender" "female" "ip_address" "0.134.155.82" "country" "Micronesia" "country_code" "FM" "city" "Fais" "longitude" "140.5161464" "latitude" "9.762345" "last_login" "1593945168" +HSET "user:5292" "first_name" "Pat" "last_name" "Willavoys" "email" "pwillavoys87@g.co" "gender" "male" "ip_address" "96.30.165.183" "country" "Indonesia" "country_code" "ID" "city" "Pondokunyur" "longitude" "108.6759" "latitude" "-7.3887" "last_login" "1586452703" +HSET "user:5293" "first_name" "Tull" "last_name" "Sibbons" "email" "tsibbons88@1688.com" "gender" "male" "ip_address" "124.164.222.201" "country" "Serbia" "country_code" "RS" "city" "Lukićevo" "longitude" "20.5145956" "latitude" "45.3444075" "last_login" "1593602451" +HSET "user:5294" "first_name" "Nicolis" "last_name" "Chancellor" "email" "nchancellor89@about.me" "gender" "male" "ip_address" "197.61.53.76" "country" "Indonesia" "country_code" "ID" "city" "Parengan" "longitude" "111.8330106" "latitude" "-7.0510263" "last_login" "1597158107" +HSET "user:5295" "first_name" "Genna" "last_name" "Vedikhov" "email" "gvedikhov8a@cbsnews.com" "gender" "female" "ip_address" "191.61.192.208" "country" "China" "country_code" "CN" "city" "Jinjiahe" "longitude" "118.552365" "latitude" "24.781681" "last_login" "1575660134" +HSET "user:5296" "first_name" "Joelie" "last_name" "Stickley" "email" "jstickley8b@so-net.ne.jp" "gender" "female" "ip_address" "219.92.154.115" "country" "Nicaragua" "country_code" "NI" "city" "La Paz Centro" "longitude" "-86.6762176" "latitude" "12.3434106" "last_login" "1595361886" +HSET "user:5297" "first_name" "Karin" "last_name" "Robet" "email" "krobet8c@soundcloud.com" "gender" "female" "ip_address" "247.62.54.5" "country" "Togo" "country_code" "TG" "city" "Bassar" "longitude" "0.7770529" "latitude" "9.2610914" "last_login" "1586116075" +HSET "user:5298" "first_name" "Jaclyn" "last_name" "Matresse" "email" "jmatresse8d@list-manage.com" "gender" "female" "ip_address" "221.179.189.59" "country" "Syria" "country_code" "SY" "city" "Khān Arnabah" "longitude" "35.8988626" "latitude" "33.1786556" "last_login" "1579075685" +HSET "user:5299" "first_name" "El" "last_name" "Filyukov" "email" "efilyukov8e@statcounter.com" "gender" "male" "ip_address" "214.198.102.198" "country" "Azerbaijan" "country_code" "AZ" "city" "Ramana" "longitude" "49.9843941" "latitude" "40.4581279" "last_login" "1599469629" +HSET "user:5300" "first_name" "Ethelind" "last_name" "Rafter" "email" "erafter8f@ameblo.jp" "gender" "female" "ip_address" "208.157.64.105" "country" "Japan" "country_code" "JP" "city" "Hondo" "longitude" "136.6447089" "latitude" "35.3078775" "last_login" "1583107031" +HSET "user:5301" "first_name" "Olivier" "last_name" "Copeland" "email" "ocopeland8g@symantec.com" "gender" "male" "ip_address" "122.193.121.136" "country" "Finland" "country_code" "FI" "city" "Hausjärvi" "longitude" "24.9298029" "latitude" "60.7905791" "last_login" "1599430374" +HSET "user:5302" "first_name" "Delly" "last_name" "Vigietti" "email" "dvigietti8h@ifeng.com" "gender" "female" "ip_address" "0.90.164.187" "country" "Sweden" "country_code" "SE" "city" "Kopparberg" "longitude" "15.0061548" "latitude" "59.870238" "last_login" "1569225789" +HSET "user:5303" "first_name" "Benjie" "last_name" "Horwell" "email" "bhorwell8i@auda.org.au" "gender" "male" "ip_address" "215.114.230.73" "country" "Mozambique" "country_code" "MZ" "city" "Lichinga" "longitude" "35.2478112" "latitude" "-13.3023564" "last_login" "1584976000" +HSET "user:5304" "first_name" "Kingston" "last_name" "Northen" "email" "knorthen8j@soup.io" "gender" "male" "ip_address" "84.42.12.243" "country" "Spain" "country_code" "ES" "city" "Palma De Mallorca" "longitude" "2.631838" "latitude" "39.6343248" "last_login" "1570489005" +HSET "user:5305" "first_name" "Alie" "last_name" "Wilstead" "email" "awilstead8k@archive.org" "gender" "female" "ip_address" "152.210.225.172" "country" "Indonesia" "country_code" "ID" "city" "Cipancur" "longitude" "108.6383454" "latitude" "-6.9623022" "last_login" "1578691086" +HSET "user:5306" "first_name" "Penelopa" "last_name" "Maddin" "email" "pmaddin8l@skyrock.com" "gender" "female" "ip_address" "26.185.53.118" "country" "Russia" "country_code" "RU" "city" "Nesterovskaya" "longitude" "45.0503473" "latitude" "43.2374865" "last_login" "1575902102" +HSET "user:5307" "first_name" "Jonis" "last_name" "Iseton" "email" "jiseton8m@census.gov" "gender" "female" "ip_address" "216.221.12.179" "country" "China" "country_code" "CN" "city" "Tonggu" "longitude" "114.371172" "latitude" "28.520769" "last_login" "1587956053" +HSET "user:5308" "first_name" "Hastie" "last_name" "Reppaport" "email" "hreppaport8n@rambler.ru" "gender" "male" "ip_address" "122.13.232.53" "country" "Iran" "country_code" "IR" "city" "Eqbālīyeh" "longitude" "49.9213133" "latitude" "36.2291285" "last_login" "1583305794" +HSET "user:5309" "first_name" "Letti" "last_name" "Ivkovic" "email" "livkovic8o@goodreads.com" "gender" "female" "ip_address" "214.33.133.90" "country" "Sweden" "country_code" "SE" "city" "Göteborg" "longitude" "11.9727803" "latitude" "57.7069317" "last_login" "1592962467" +HSET "user:5310" "first_name" "Mychal" "last_name" "Boij" "email" "mboij8p@devhub.com" "gender" "male" "ip_address" "237.229.85.212" "country" "Indonesia" "country_code" "ID" "city" "Tegalloa" "longitude" "106.9600711" "latitude" "-7.2510084" "last_login" "1588542349" +HSET "user:5311" "first_name" "Gene" "last_name" "Ellicock" "email" "gellicock8q@cbc.ca" "gender" "male" "ip_address" "233.57.153.249" "country" "Thailand" "country_code" "TH" "city" "Ko Pha Ngan" "longitude" "99.9788481" "latitude" "9.7421342" "last_login" "1582362169" +HSET "user:5312" "first_name" "Lane" "last_name" "MacDonell" "email" "lmacdonell8r@theatlantic.com" "gender" "male" "ip_address" "6.41.14.88" "country" "Philippines" "country_code" "PH" "city" "Paitan Este" "longitude" "120.03164" "latitude" "16.08532" "last_login" "1589352160" +HSET "user:5313" "first_name" "Flint" "last_name" "Sanson" "email" "fsanson8s@gmpg.org" "gender" "male" "ip_address" "93.111.129.132" "country" "China" "country_code" "CN" "city" "Wuli" "longitude" "110.346166" "latitude" "29.893672" "last_login" "1596438183" +HSET "user:5314" "first_name" "Patten" "last_name" "Vuitte" "email" "pvuitte8t@multiply.com" "gender" "male" "ip_address" "161.139.164.129" "country" "Indonesia" "country_code" "ID" "city" "Langgen" "longitude" "109.1426676" "latitude" "-6.9230423" "last_login" "1589456208" +HSET "user:5315" "first_name" "Moria" "last_name" "Errigo" "email" "merrigo8u@zdnet.com" "gender" "female" "ip_address" "226.247.21.61" "country" "Cyprus" "country_code" "CY" "city" "Xylotymbou" "longitude" "33.7405967" "latitude" "35.0150933" "last_login" "1574659206" +HSET "user:5316" "first_name" "Missie" "last_name" "Arlow" "email" "marlow8v@blogspot.com" "gender" "female" "ip_address" "70.82.132.80" "country" "France" "country_code" "FR" "city" "Moret-sur-Loing" "longitude" "2.683461" "latitude" "48.319875" "last_login" "1599609650" +HSET "user:5317" "first_name" "Dacey" "last_name" "Lankford" "email" "dlankford8w@clickbank.net" "gender" "female" "ip_address" "100.3.3.109" "country" "Ukraine" "country_code" "UA" "city" "Obroshyne" "longitude" "23.8698278" "latitude" "49.7855549" "last_login" "1579244197" +HSET "user:5318" "first_name" "Chrisse" "last_name" "Baike" "email" "cbaike8x@mysql.com" "gender" "male" "ip_address" "66.133.180.27" "country" "China" "country_code" "CN" "city" "Penghu" "longitude" "119.5793157" "latitude" "23.5711899" "last_login" "1589719382" +HSET "user:5319" "first_name" "Shanan" "last_name" "Cayton" "email" "scayton8y@exblog.jp" "gender" "male" "ip_address" "96.22.110.204" "country" "South Korea" "country_code" "KR" "city" "Yŏnmu" "longitude" "127.1" "latitude" "36.12944" "last_login" "1568652358" +HSET "user:5320" "first_name" "Ringo" "last_name" "Hicklingbottom" "email" "rhicklingbottom8z@google.it" "gender" "male" "ip_address" "19.32.154.247" "country" "China" "country_code" "CN" "city" "Meizhuang" "longitude" "114.926383" "latitude" "37.366903" "last_login" "1577610703" +HSET "user:5321" "first_name" "Row" "last_name" "Craufurd" "email" "rcraufurd90@usgs.gov" "gender" "female" "ip_address" "224.108.242.122" "country" "Latvia" "country_code" "LV" "city" "Valdemārpils" "longitude" "22.591118" "latitude" "57.3690549" "last_login" "1569619863" +HSET "user:5322" "first_name" "Elton" "last_name" "Gantlett" "email" "egantlett91@imdb.com" "gender" "male" "ip_address" "149.199.182.24" "country" "Russia" "country_code" "RU" "city" "Kukushtan" "longitude" "56.4727932" "latitude" "57.6442367" "last_login" "1571850284" +HSET "user:5323" "first_name" "Ali" "last_name" "Spata" "email" "aspata92@printfriendly.com" "gender" "male" "ip_address" "245.5.53.201" "country" "Tunisia" "country_code" "TN" "city" "Al Qarmadah" "longitude" "10.78333" "latitude" "34.75" "last_login" "1579440994" +HSET "user:5324" "first_name" "Zorana" "last_name" "Camis" "email" "zcamis93@opera.com" "gender" "female" "ip_address" "224.253.96.51" "country" "Philippines" "country_code" "PH" "city" "San Vicente" "longitude" "121.0589081" "latitude" "14.7596318" "last_login" "1573023818" +HSET "user:5325" "first_name" "Merle" "last_name" "Haggish" "email" "mhaggish94@mtv.com" "gender" "male" "ip_address" "28.86.251.15" "country" "Russia" "country_code" "RU" "city" "Makhalino" "longitude" "46.2227118" "latitude" "53.0831775" "last_login" "1581895388" +HSET "user:5326" "first_name" "Ailsun" "last_name" "Imbrey" "email" "aimbrey95@tripadvisor.com" "gender" "female" "ip_address" "202.183.49.136" "country" "Indonesia" "country_code" "ID" "city" "Hokor" "longitude" "122.2483726" "latitude" "-8.727652" "last_login" "1592822906" +HSET "user:5327" "first_name" "Jillane" "last_name" "Wordsley" "email" "jwordsley96@linkedin.com" "gender" "female" "ip_address" "152.151.76.117" "country" "Sweden" "country_code" "SE" "city" "Nässjö" "longitude" "14.7061761" "latitude" "57.6624125" "last_login" "1584022799" +HSET "user:5328" "first_name" "Shanan" "last_name" "Guinn" "email" "sguinn97@mapquest.com" "gender" "male" "ip_address" "21.17.27.185" "country" "China" "country_code" "CN" "city" "Houbai" "longitude" "119.188203" "latitude" "31.805855" "last_login" "1568618100" +HSET "user:5329" "first_name" "Dene" "last_name" "Cail" "email" "dcail98@google.com.hk" "gender" "male" "ip_address" "209.95.48.109" "country" "Poland" "country_code" "PL" "city" "Kaliska" "longitude" "18.1905615" "latitude" "53.9165867" "last_login" "1600267203" +HSET "user:5330" "first_name" "Mozelle" "last_name" "Simmonite" "email" "msimmonite99@tumblr.com" "gender" "female" "ip_address" "24.154.11.181" "country" "Senegal" "country_code" "SN" "city" "Ndofane" "longitude" "-15.9259271" "latitude" "13.919217" "last_login" "1597096229" +HSET "user:5331" "first_name" "Virgil" "last_name" "Deppe" "email" "vdeppe9a@home.pl" "gender" "male" "ip_address" "173.208.82.190" "country" "Brazil" "country_code" "BR" "city" "Piraí do Sul" "longitude" "-49.8956943" "latitude" "-24.4748345" "last_login" "1584251113" +HSET "user:5332" "first_name" "Briny" "last_name" "Bleasby" "email" "bbleasby9b@va.gov" "gender" "female" "ip_address" "11.176.159.213" "country" "Dominican Republic" "country_code" "DO" "city" "Mao" "longitude" "-71.0790048" "latitude" "19.5403533" "last_login" "1598744338" +HSET "user:5333" "first_name" "Zechariah" "last_name" "Biggadike" "email" "zbiggadike9c@123-reg.co.uk" "gender" "male" "ip_address" "211.138.142.46" "country" "Czech Republic" "country_code" "CZ" "city" "Opatovice nad Labem" "longitude" "15.7904531" "latitude" "50.1454119" "last_login" "1597568435" +HSET "user:5334" "first_name" "Maire" "last_name" "Trowell" "email" "mtrowell9d@mapy.cz" "gender" "female" "ip_address" "227.21.129.208" "country" "Tajikistan" "country_code" "TJ" "city" "Dŭstí" "longitude" "68.6767454" "latitude" "37.3520055" "last_login" "1598458485" +HSET "user:5335" "first_name" "Patty" "last_name" "Semorad" "email" "psemorad9e@salon.com" "gender" "male" "ip_address" "149.243.39.243" "country" "Russia" "country_code" "RU" "city" "Zavitinsk" "longitude" "129.4430074" "latitude" "50.1010604" "last_login" "1587700909" +HSET "user:5336" "first_name" "Artemas" "last_name" "Bonick" "email" "abonick9f@tinypic.com" "gender" "male" "ip_address" "203.91.90.138" "country" "Russia" "country_code" "RU" "city" "Tuzha" "longitude" "47.9368725" "latitude" "57.6067536" "last_login" "1572904356" +HSET "user:5337" "first_name" "Lanny" "last_name" "Gregs" "email" "lgregs9g@wikia.com" "gender" "female" "ip_address" "228.89.102.132" "country" "China" "country_code" "CN" "city" "Huanglong" "longitude" "103.82319" "latitude" "32.748741" "last_login" "1587108088" +HSET "user:5338" "first_name" "Lek" "last_name" "Grishakin" "email" "lgrishakin9h@studiopress.com" "gender" "male" "ip_address" "231.199.8.234" "country" "Chile" "country_code" "CL" "city" "Monte Patria" "longitude" "-70.9586889" "latitude" "-30.6978944" "last_login" "1595197170" +HSET "user:5339" "first_name" "Jenni" "last_name" "Oakhill" "email" "joakhill9i@mail.ru" "gender" "female" "ip_address" "221.182.94.237" "country" "Sweden" "country_code" "SE" "city" "Hagfors" "longitude" "13.6981276" "latitude" "60.0392991" "last_login" "1597929661" +HSET "user:5340" "first_name" "Gabie" "last_name" "Kenrack" "email" "gkenrack9j@posterous.com" "gender" "male" "ip_address" "251.250.79.121" "country" "Malaysia" "country_code" "MY" "city" "Kangar" "longitude" "100.1947477" "latitude" "6.4387946" "last_login" "1569346968" +HSET "user:5341" "first_name" "Ara" "last_name" "Doughill" "email" "adoughill9k@meetup.com" "gender" "female" "ip_address" "36.90.133.208" "country" "China" "country_code" "CN" "city" "Changshou" "longitude" "107.081282" "latitude" "29.857996" "last_login" "1592633232" +HSET "user:5342" "first_name" "Anica" "last_name" "Serot" "email" "aserot9l@dell.com" "gender" "female" "ip_address" "29.59.108.64" "country" "China" "country_code" "CN" "city" "Junyang" "longitude" "116.47531" "latitude" "39.907593" "last_login" "1585868881" +HSET "user:5343" "first_name" "Madlen" "last_name" "Kynoch" "email" "mkynoch9m@canalblog.com" "gender" "female" "ip_address" "217.179.18.182" "country" "China" "country_code" "CN" "city" "Jinhe" "longitude" "101.841707" "latitude" "26.695419" "last_login" "1571955057" +HSET "user:5344" "first_name" "Penn" "last_name" "Drynan" "email" "pdrynan9n@businesswire.com" "gender" "male" "ip_address" "69.1.213.53" "country" "Greece" "country_code" "GR" "city" "Psychikó" "longitude" "23.7725723" "latitude" "38.0120968" "last_login" "1574350703" +HSET "user:5345" "first_name" "Darby" "last_name" "Baythrop" "email" "dbaythrop9o@artisteer.com" "gender" "male" "ip_address" "206.214.25.73" "country" "Portugal" "country_code" "PT" "city" "Pexiligais" "longitude" "-9.3199202" "latitude" "38.8066531" "last_login" "1574913751" +HSET "user:5346" "first_name" "Rutger" "last_name" "Dies" "email" "rdies9p@eepurl.com" "gender" "male" "ip_address" "101.134.124.110" "country" "Indonesia" "country_code" "ID" "city" "Sumberbaru" "longitude" "113.4061697" "latitude" "-8.0989645" "last_login" "1597499913" +HSET "user:5347" "first_name" "Lucio" "last_name" "Gowland" "email" "lgowland9q@businessweek.com" "gender" "male" "ip_address" "208.136.227.240" "country" "Philippines" "country_code" "PH" "city" "Tabalong" "longitude" "123.821694" "latitude" "9.623809" "last_login" "1572348548" +HSET "user:5348" "first_name" "Rose" "last_name" "Jenner" "email" "rjenner9r@nih.gov" "gender" "female" "ip_address" "139.109.196.53" "country" "Indonesia" "country_code" "ID" "city" "Sindangsari" "longitude" "108.438797" "latitude" "-7.811056" "last_login" "1572037290" +HSET "user:5349" "first_name" "Harper" "last_name" "Lorman" "email" "hlorman9s@arstechnica.com" "gender" "male" "ip_address" "144.200.50.76" "country" "Bangladesh" "country_code" "BD" "city" "Bājitpur" "longitude" "90.9081542" "latitude" "24.22123" "last_login" "1586140182" +HSET "user:5350" "first_name" "Dion" "last_name" "Clew" "email" "dclew9t@ifeng.com" "gender" "male" "ip_address" "79.30.231.215" "country" "Russia" "country_code" "RU" "city" "Susuman" "longitude" "148.1452805" "latitude" "62.7810616" "last_login" "1571480572" +HSET "user:5351" "first_name" "Ruggiero" "last_name" "Groucock" "email" "rgroucock9u@cafepress.com" "gender" "male" "ip_address" "42.195.36.131" "country" "Greece" "country_code" "GR" "city" "Gerakaroú" "longitude" "23.2115394" "latitude" "40.6287684" "last_login" "1574049945" +HSET "user:5352" "first_name" "Gustave" "last_name" "Dean" "email" "gdean9v@netscape.com" "gender" "male" "ip_address" "135.67.1.156" "country" "Sudan" "country_code" "SD" "city" "Wagar" "longitude" "36.2032" "latitude" "16.1525" "last_login" "1588207795" +HSET "user:5353" "first_name" "Ros" "last_name" "Younger" "email" "ryounger9w@ca.gov" "gender" "female" "ip_address" "141.57.107.213" "country" "Czech Republic" "country_code" "CZ" "city" "Zdounky" "longitude" "17.3189958" "latitude" "49.2277083" "last_login" "1589976153" +HSET "user:5354" "first_name" "Edin" "last_name" "Comford" "email" "ecomford9x@altervista.org" "gender" "female" "ip_address" "69.107.34.233" "country" "China" "country_code" "CN" "city" "Huoli" "longitude" "105.799791" "latitude" "34.776765" "last_login" "1598080067" +HSET "user:5355" "first_name" "Reinold" "last_name" "Newham" "email" "rnewham9y@geocities.jp" "gender" "male" "ip_address" "130.39.221.130" "country" "Indonesia" "country_code" "ID" "city" "Kalibuntu" "longitude" "108.7927679" "latitude" "-6.8843479" "last_login" "1597902101" +HSET "user:5356" "first_name" "Kory" "last_name" "Anan" "email" "kanan9z@smh.com.au" "gender" "male" "ip_address" "86.201.182.69" "country" "Ukraine" "country_code" "UA" "city" "Karapyshi" "longitude" "30.7841246" "latitude" "49.6439444" "last_login" "1598317783" +HSET "user:5357" "first_name" "Kiley" "last_name" "Bustin" "email" "kbustina0@intel.com" "gender" "male" "ip_address" "190.40.97.207" "country" "China" "country_code" "CN" "city" "Gaotang" "longitude" "116.231416" "latitude" "36.865827" "last_login" "1592790318" +HSET "user:5358" "first_name" "Marika" "last_name" "Haighton" "email" "mhaightona1@google.com.br" "gender" "female" "ip_address" "36.30.231.231" "country" "Indonesia" "country_code" "ID" "city" "Krajan Kedungsalam" "longitude" "112.4501" "latitude" "-8.3251" "last_login" "1598913766" +HSET "user:5359" "first_name" "Opalina" "last_name" "Scoullar" "email" "oscoullara2@sourceforge.net" "gender" "female" "ip_address" "181.186.158.112" "country" "China" "country_code" "CN" "city" "Dahe" "longitude" "114.397004" "latitude" "38.135288" "last_login" "1596325959" +HSET "user:5360" "first_name" "Kareem" "last_name" "Steere" "email" "ksteerea3@google.pl" "gender" "male" "ip_address" "147.230.217.112" "country" "China" "country_code" "CN" "city" "Baiyang" "longitude" "115.84573" "latitude" "23.028301" "last_login" "1571370716" +HSET "user:5361" "first_name" "Randal" "last_name" "Dantesia" "email" "rdantesiaa4@woothemes.com" "gender" "male" "ip_address" "137.141.152.156" "country" "Peru" "country_code" "PE" "city" "Nueva Requena" "longitude" "-74.562548" "latitude" "-8.334487" "last_login" "1590063998" +HSET "user:5362" "first_name" "Brade" "last_name" "Sea" "email" "bseaa5@mapquest.com" "gender" "male" "ip_address" "137.24.126.111" "country" "Netherlands" "country_code" "NL" "city" "Hoorn" "longitude" "5.0570439" "latitude" "52.6472404" "last_login" "1585996410" +HSET "user:5363" "first_name" "Herb" "last_name" "Doggart" "email" "hdoggarta6@domainmarket.com" "gender" "male" "ip_address" "89.24.179.141" "country" "Indonesia" "country_code" "ID" "city" "Cikarang" "longitude" "107.172085" "latitude" "-6.3079232" "last_login" "1573910489" +HSET "user:5364" "first_name" "Moshe" "last_name" "Tatlock" "email" "mtatlocka7@wikimedia.org" "gender" "male" "ip_address" "127.43.135.28" "country" "Vietnam" "country_code" "VN" "city" "Thuận Nam" "longitude" "108.9145675" "latitude" "11.4702151" "last_login" "1583098325" +HSET "user:5365" "first_name" "Rogerio" "last_name" "Taye" "email" "rtayea8@sciencedirect.com" "gender" "male" "ip_address" "198.205.217.10" "country" "Madagascar" "country_code" "MG" "city" "Antalaha" "longitude" "50.2785486" "latitude" "-14.9061237" "last_login" "1571299285" +HSET "user:5366" "first_name" "Creigh" "last_name" "Jeaves" "email" "cjeavesa9@cloudflare.com" "gender" "male" "ip_address" "194.171.5.174" "country" "Colombia" "country_code" "CO" "city" "Chiscas" "longitude" "-72.5003179" "latitude" "6.552741" "last_login" "1591206993" +HSET "user:5367" "first_name" "Daisie" "last_name" "Conradie" "email" "dconradieaa@cafepress.com" "gender" "female" "ip_address" "252.32.216.186" "country" "China" "country_code" "CN" "city" "Gangmian" "longitude" "112.018204" "latitude" "23.438818" "last_login" "1596798560" +HSET "user:5368" "first_name" "Blondie" "last_name" "Ebi" "email" "bebiab@gmpg.org" "gender" "female" "ip_address" "216.199.23.105" "country" "Nigeria" "country_code" "NG" "city" "Igbor" "longitude" "8.6091961" "latitude" "7.450268" "last_login" "1569656426" +HSET "user:5369" "first_name" "Quintilla" "last_name" "Sterrick" "email" "qsterrickac@yahoo.co.jp" "gender" "female" "ip_address" "160.155.148.152" "country" "Portugal" "country_code" "PT" "city" "Maiorca" "longitude" "-8.7570417" "latitude" "40.1430734" "last_login" "1590858491" +HSET "user:5370" "first_name" "Garwin" "last_name" "Weddell" "email" "gweddellad@amazon.de" "gender" "male" "ip_address" "196.137.178.224" "country" "Indonesia" "country_code" "ID" "city" "Pejek" "longitude" "101.642899" "latitude" "2.100305" "last_login" "1590252930" +HSET "user:5371" "first_name" "Marybeth" "last_name" "Jaquin" "email" "mjaquinae@myspace.com" "gender" "female" "ip_address" "37.139.241.79" "country" "China" "country_code" "CN" "city" "Changjiangbu" "longitude" "113.734707" "latitude" "30.855065" "last_login" "1600137378" +HSET "user:5372" "first_name" "Morten" "last_name" "Murrill" "email" "mmurrillaf@unblog.fr" "gender" "male" "ip_address" "248.6.47.20" "country" "Belize" "country_code" "BZ" "city" "Orange Walk" "longitude" "-88.5710266" "latitude" "18.0842472" "last_login" "1594796019" +HSET "user:5373" "first_name" "Tersina" "last_name" "Bidmead" "email" "tbidmeadag@vinaora.com" "gender" "female" "ip_address" "110.153.245.133" "country" "China" "country_code" "CN" "city" "Songzhuang" "longitude" "116.714967" "latitude" "39.964054" "last_login" "1583076851" +HSET "user:5374" "first_name" "Edgardo" "last_name" "Firth" "email" "efirthah@gov.uk" "gender" "male" "ip_address" "180.161.5.239" "country" "Libya" "country_code" "LY" "city" "Şabrātah" "longitude" "12.4495221" "latitude" "32.7811016" "last_login" "1579089348" +HSET "user:5375" "first_name" "Jess" "last_name" "Jarratt" "email" "jjarrattai@aboutads.info" "gender" "male" "ip_address" "18.171.214.140" "country" "Poland" "country_code" "PL" "city" "Krzanowice" "longitude" "18.1278226" "latitude" "50.0281297" "last_login" "1596996350" +HSET "user:5376" "first_name" "Georgiana" "last_name" "Hudspith" "email" "ghudspithaj@istockphoto.com" "gender" "female" "ip_address" "113.73.69.192" "country" "Japan" "country_code" "JP" "city" "Nakanojōmachi" "longitude" "138.8434833" "latitude" "36.5888732" "last_login" "1587844623" +HSET "user:5377" "first_name" "Bertram" "last_name" "Cellier" "email" "bcellierak@latimes.com" "gender" "male" "ip_address" "171.118.136.30" "country" "China" "country_code" "CN" "city" "Maoyang" "longitude" "119.394148" "latitude" "27.718295" "last_login" "1597758108" +HSET "user:5378" "first_name" "Dayna" "last_name" "Delamere" "email" "ddelamereal@sogou.com" "gender" "female" "ip_address" "173.26.81.187" "country" "American Samoa" "country_code" "AS" "city" "Vailoatai" "longitude" "-170.7810162" "latitude" "-14.3521224" "last_login" "1582282143" +HSET "user:5379" "first_name" "Lucian" "last_name" "Westoff" "email" "lwestoffam@dell.com" "gender" "male" "ip_address" "254.179.48.11" "country" "Ireland" "country_code" "IE" "city" "Kinsale" "longitude" "-6.251714" "latitude" "53.3169419" "last_login" "1588376350" +HSET "user:5380" "first_name" "Starla" "last_name" "Balling" "email" "sballingan@themeforest.net" "gender" "female" "ip_address" "38.114.70.61" "country" "Nepal" "country_code" "NP" "city" "Banepa" "longitude" "85.5277488" "latitude" "27.6332252" "last_login" "1597975061" +HSET "user:5381" "first_name" "Harvey" "last_name" "Baddeley" "email" "hbaddeleyao@imdb.com" "gender" "male" "ip_address" "190.206.19.23" "country" "Argentina" "country_code" "AR" "city" "Arraga" "longitude" "-60.7891909" "latitude" "-37.5407812" "last_login" "1584533044" +HSET "user:5382" "first_name" "Perry" "last_name" "Curneen" "email" "pcurneenap@skyrock.com" "gender" "male" "ip_address" "255.178.62.221" "country" "Czech Republic" "country_code" "CZ" "city" "Světlá nad Sázavou" "longitude" "15.4039384" "latitude" "49.6680095" "last_login" "1583309380" +HSET "user:5383" "first_name" "Abbott" "last_name" "MacIntyre" "email" "amacintyreaq@newsvine.com" "gender" "male" "ip_address" "168.71.201.119" "country" "China" "country_code" "CN" "city" "Qiankeng" "longitude" "119.105047" "latitude" "26.750454" "last_login" "1586733246" +HSET "user:5384" "first_name" "Panchito" "last_name" "St. Paul" "email" "pstpaular@wikimedia.org" "gender" "male" "ip_address" "157.170.45.143" "country" "Philippines" "country_code" "PH" "city" "Santa Cruz" "longitude" "120.7213113" "latitude" "13.0748879" "last_login" "1570451700" +HSET "user:5385" "first_name" "Noell" "last_name" "Kohnert" "email" "nkohnertas@imageshack.us" "gender" "female" "ip_address" "32.225.207.154" "country" "China" "country_code" "CN" "city" "Tongxing" "longitude" "111.45269" "latitude" "27.690732" "last_login" "1596338775" +HSET "user:5386" "first_name" "Saudra" "last_name" "Neem" "email" "sneemat@sohu.com" "gender" "female" "ip_address" "71.24.168.177" "country" "Czech Republic" "country_code" "CZ" "city" "Strašice" "longitude" "13.7575556" "latitude" "49.735524" "last_login" "1578228130" +HSET "user:5387" "first_name" "Devinne" "last_name" "Rillatt" "email" "drillattau@marriott.com" "gender" "female" "ip_address" "233.237.91.50" "country" "Argentina" "country_code" "AR" "city" "Cruz de los Milagros" "longitude" "-58.8062726" "latitude" "-27.5093879" "last_login" "1570335435" +HSET "user:5388" "first_name" "Zolly" "last_name" "Skillington" "email" "zskillingtonav@nsw.gov.au" "gender" "male" "ip_address" "48.222.129.71" "country" "Cape Verde" "country_code" "CV" "city" "Praia" "longitude" "-23.5133267" "latitude" "14.93305" "last_login" "1578963602" +HSET "user:5389" "first_name" "Donavon" "last_name" "Mallam" "email" "dmallamaw@scribd.com" "gender" "male" "ip_address" "186.216.172.111" "country" "Indonesia" "country_code" "ID" "city" "Warungawi" "longitude" "107.4135643" "latitude" "-6.9560364" "last_login" "1589251069" +HSET "user:5390" "first_name" "Marcella" "last_name" "MacIntosh" "email" "mmacintoshax@simplemachines.org" "gender" "female" "ip_address" "92.212.216.14" "country" "Serbia" "country_code" "RS" "city" "Valjevo" "longitude" "19.8906547" "latitude" "44.2682727" "last_login" "1597024649" +HSET "user:5391" "first_name" "Koo" "last_name" "Legerwood" "email" "klegerwooday@jalbum.net" "gender" "female" "ip_address" "206.247.157.38" "country" "Philippines" "country_code" "PH" "city" "Banag" "longitude" "120.9777157" "latitude" "14.6875764" "last_login" "1570241678" +HSET "user:5392" "first_name" "Anders" "last_name" "Sendall" "email" "asendallaz@theglobeandmail.com" "gender" "male" "ip_address" "11.156.64.30" "country" "Ukraine" "country_code" "UA" "city" "Kivsharivka" "longitude" "37.6810464" "latitude" "49.6297207" "last_login" "1584971665" +HSET "user:5393" "first_name" "Duffie" "last_name" "Perin" "email" "dperinb0@lycos.com" "gender" "male" "ip_address" "57.229.235.137" "country" "China" "country_code" "CN" "city" "Zhujiachang" "longitude" "121.4849128" "latitude" "38.9421248" "last_login" "1591028077" +HSET "user:5394" "first_name" "Albert" "last_name" "Hutable" "email" "ahutableb1@desdev.cn" "gender" "male" "ip_address" "68.240.89.54" "country" "Estonia" "country_code" "EE" "city" "Kohtla-Järve" "longitude" "27.2797506" "latitude" "59.3974738" "last_login" "1587135035" +HSET "user:5395" "first_name" "Lona" "last_name" "Gepson" "email" "lgepsonb2@fastcompany.com" "gender" "female" "ip_address" "54.113.163.250" "country" "Philippines" "country_code" "PH" "city" "Cambanugoy" "longitude" "125.75324" "latitude" "7.5353338" "last_login" "1583361734" +HSET "user:5396" "first_name" "Kariotta" "last_name" "Daniell" "email" "kdaniellb3@patch.com" "gender" "female" "ip_address" "131.170.51.210" "country" "Uganda" "country_code" "UG" "city" "Pallisa" "longitude" "33.7098569" "latitude" "1.1706966" "last_login" "1571742837" +HSET "user:5397" "first_name" "Maura" "last_name" "Coburn" "email" "mcoburnb4@theguardian.com" "gender" "female" "ip_address" "153.77.181.144" "country" "Indonesia" "country_code" "ID" "city" "Pasar" "longitude" "110.8312777" "latitude" "-7.5690727" "last_login" "1596673350" +HSET "user:5398" "first_name" "Sapphire" "last_name" "Letterese" "email" "slettereseb5@themeforest.net" "gender" "female" "ip_address" "231.107.57.158" "country" "Mayotte" "country_code" "YT" "city" "Dembeni" "longitude" "45.176077" "latitude" "-12.836985" "last_login" "1591137064" +HSET "user:5399" "first_name" "Kristos" "last_name" "McReedy" "email" "kmcreedyb6@google.com" "gender" "male" "ip_address" "206.86.134.132" "country" "Russia" "country_code" "RU" "city" "Dolgoprudnyy" "longitude" "37.4864125" "latitude" "55.9353544" "last_login" "1572530525" +HSET "user:5400" "first_name" "Berkeley" "last_name" "Godly" "email" "bgodlyb7@pen.io" "gender" "male" "ip_address" "2.156.45.6" "country" "China" "country_code" "CN" "city" "Tucheng" "longitude" "120.6736482" "latitude" "24.1477358" "last_login" "1571475165" +HSET "user:5401" "first_name" "Robina" "last_name" "Rottgers" "email" "rrottgersb8@ucoz.ru" "gender" "female" "ip_address" "27.220.194.99" "country" "Portugal" "country_code" "PT" "city" "Fornos" "longitude" "-8.4816505" "latitude" "40.9785232" "last_login" "1596678356" +HSET "user:5402" "first_name" "Eve" "last_name" "Vamplus" "email" "evamplusb9@scientificamerican.com" "gender" "female" "ip_address" "126.71.129.138" "country" "Colombia" "country_code" "CO" "city" "Segovia" "longitude" "-74.699095" "latitude" "7.079604" "last_login" "1596783077" +HSET "user:5403" "first_name" "Stacy" "last_name" "Prozescky" "email" "sprozesckyba@aboutads.info" "gender" "male" "ip_address" "179.129.197.37" "country" "Panama" "country_code" "PA" "city" "Agua Buena" "longitude" "-80.3964824" "latitude" "7.8357065" "last_login" "1576119247" +HSET "user:5404" "first_name" "Dean" "last_name" "Pachmann" "email" "dpachmannbb@hugedomains.com" "gender" "male" "ip_address" "237.252.194.103" "country" "Canada" "country_code" "CA" "city" "Powassan" "longitude" "-79.34961" "latitude" "46.0334" "last_login" "1568742744" +HSET "user:5405" "first_name" "Bekki" "last_name" "Bester" "email" "bbesterbc@pen.io" "gender" "female" "ip_address" "193.92.225.248" "country" "Martinique" "country_code" "MQ" "city" "Fort-de-France" "longitude" "-61.0512822" "latitude" "14.641514" "last_login" "1576738978" +HSET "user:5406" "first_name" "Kaylil" "last_name" "Perkin" "email" "kperkinbd@domainmarket.com" "gender" "female" "ip_address" "204.209.96.105" "country" "Greece" "country_code" "GR" "city" "Langádhia" "longitude" "22.0300208" "latitude" "37.6818606" "last_login" "1568906825" +HSET "user:5407" "first_name" "Duane" "last_name" "Shinton" "email" "dshintonbe@google.com" "gender" "male" "ip_address" "234.149.156.61" "country" "Canada" "country_code" "CA" "city" "Willowdale" "longitude" "-79.4422593" "latitude" "43.7543283" "last_login" "1583046351" +HSET "user:5408" "first_name" "Gwendolyn" "last_name" "Clewett" "email" "gclewettbf@shop-pro.jp" "gender" "female" "ip_address" "80.16.226.164" "country" "Brazil" "country_code" "BR" "city" "Amaraji" "longitude" "-35.4551341" "latitude" "-8.3748772" "last_login" "1593297391" +HSET "user:5409" "first_name" "Evie" "last_name" "Sargent" "email" "esargentbg@slate.com" "gender" "female" "ip_address" "248.81.38.40" "country" "China" "country_code" "CN" "city" "Fuxing" "longitude" "114.462061" "latitude" "36.639033" "last_login" "1593199020" +HSET "user:5410" "first_name" "Tracy" "last_name" "Novotni" "email" "tnovotnibh@geocities.com" "gender" "male" "ip_address" "209.172.86.76" "country" "China" "country_code" "CN" "city" "Hongtang" "longitude" "114.157935" "latitude" "22.280436" "last_login" "1588796867" +HSET "user:5411" "first_name" "Aharon" "last_name" "Milham" "email" "amilhambi@edublogs.org" "gender" "male" "ip_address" "156.26.57.170" "country" "Sweden" "country_code" "SE" "city" "Solna" "longitude" "17.9947004" "latitude" "59.3650479" "last_login" "1584008818" +HSET "user:5412" "first_name" "Miles" "last_name" "Schops" "email" "mschopsbj@hao123.com" "gender" "male" "ip_address" "123.252.231.227" "country" "Canada" "country_code" "CA" "city" "Parry Sound" "longitude" "-80.0175734" "latitude" "45.3483509" "last_login" "1578794651" +HSET "user:5413" "first_name" "Polly" "last_name" "Korb" "email" "pkorbbk@blogtalkradio.com" "gender" "female" "ip_address" "139.134.137.194" "country" "Maldives" "country_code" "MV" "city" "Viligili" "longitude" "73.434227" "latitude" "0.7573413" "last_login" "1598623871" +HSET "user:5414" "first_name" "Augustin" "last_name" "Hinksen" "email" "ahinksenbl@mlb.com" "gender" "male" "ip_address" "133.192.185.186" "country" "Republic of the Congo" "country_code" "CG" "city" "Madingou" "longitude" "13.5523679" "latitude" "-4.1682452" "last_login" "1587092036" +HSET "user:5415" "first_name" "Bo" "last_name" "Demangeon" "email" "bdemangeonbm@icq.com" "gender" "male" "ip_address" "172.87.21.72" "country" "Chile" "country_code" "CL" "city" "Molina" "longitude" "-71.2829759" "latitude" "-35.1164987" "last_login" "1596257011" +HSET "user:5416" "first_name" "Cosme" "last_name" "Pepin" "email" "cpepinbn@google.com.hk" "gender" "male" "ip_address" "90.100.82.196" "country" "Azerbaijan" "country_code" "AZ" "city" "Maştağa" "longitude" "50.0035678" "latitude" "40.5329933" "last_login" "1583079415" +HSET "user:5417" "first_name" "Alanah" "last_name" "Cattrell" "email" "acattrellbo@bbb.org" "gender" "female" "ip_address" "102.54.67.211" "country" "Mexico" "country_code" "MX" "city" "Loma Bonita" "longitude" "-101.6961551" "latitude" "21.115093" "last_login" "1574348083" +HSET "user:5418" "first_name" "Leslie" "last_name" "Suermeiers" "email" "lsuermeiersbp@amazonaws.com" "gender" "male" "ip_address" "60.190.122.111" "country" "United States" "country_code" "US" "city" "Austin" "longitude" "-97.7525352" "latitude" "30.401356" "last_login" "1575048617" +HSET "user:5419" "first_name" "Theo" "last_name" "Iban" "email" "tibanbq@hostgator.com" "gender" "male" "ip_address" "88.128.214.255" "country" "Indonesia" "country_code" "ID" "city" "Krajan Battal" "longitude" "114.0409" "latitude" "-7.7474" "last_login" "1586618082" +HSET "user:5420" "first_name" "Modestine" "last_name" "Sleightholme" "email" "msleightholmebr@altervista.org" "gender" "female" "ip_address" "249.223.172.187" "country" "Indonesia" "country_code" "ID" "city" "Mlanggeng" "longitude" "112.4303" "latitude" "-7.0748" "last_login" "1580680400" +HSET "user:5421" "first_name" "Waylon" "last_name" "Wilshere" "email" "wwilsherebs@i2i.jp" "gender" "male" "ip_address" "5.243.151.61" "country" "China" "country_code" "CN" "city" "Huangqu" "longitude" "113.459749" "latitude" "23.106401" "last_login" "1571586304" +HSET "user:5422" "first_name" "Margarette" "last_name" "Ellerey" "email" "mellereybt@homestead.com" "gender" "female" "ip_address" "238.127.234.126" "country" "Albania" "country_code" "AL" "city" "Pojan" "longitude" "20.8344302" "latitude" "40.7273859" "last_login" "1592637058" +HSET "user:5423" "first_name" "Robin" "last_name" "Cohan" "email" "rcohanbu@howstuffworks.com" "gender" "male" "ip_address" "142.5.43.144" "country" "China" "country_code" "CN" "city" "Pingfeng" "longitude" "126.637515" "latitude" "45.597839" "last_login" "1576792497" +HSET "user:5424" "first_name" "Erich" "last_name" "MacTimpany" "email" "emactimpanybv@ocn.ne.jp" "gender" "male" "ip_address" "220.153.17.193" "country" "Russia" "country_code" "RU" "city" "Srednebelaya" "longitude" "128.00932" "latitude" "50.65854" "last_login" "1599708565" +HSET "user:5425" "first_name" "Kelsey" "last_name" "Giroldo" "email" "kgiroldobw@salon.com" "gender" "male" "ip_address" "213.75.91.134" "country" "Ukraine" "country_code" "UA" "city" "Chernivtsi" "longitude" "25.9358367" "latitude" "48.2920787" "last_login" "1570417571" +HSET "user:5426" "first_name" "Phineas" "last_name" "Jaze" "email" "pjazebx@phpbb.com" "gender" "male" "ip_address" "29.193.112.47" "country" "Croatia" "country_code" "HR" "city" "Slunj" "longitude" "15.5854843" "latitude" "45.1150317" "last_login" "1587965022" +HSET "user:5427" "first_name" "Curt" "last_name" "Rayment" "email" "craymentby@virginia.edu" "gender" "male" "ip_address" "48.126.51.6" "country" "United States" "country_code" "US" "city" "Philadelphia" "longitude" "-75.1866396" "latitude" "39.9396284" "last_login" "1570653274" +HSET "user:5428" "first_name" "Brook" "last_name" "Yosevitz" "email" "byosevitzbz@earthlink.net" "gender" "female" "ip_address" "3.28.160.139" "country" "Czech Republic" "country_code" "CZ" "city" "Ledeč nad Sázavou" "longitude" "15.2777272" "latitude" "49.6951686" "last_login" "1596934304" +HSET "user:5429" "first_name" "Ronnica" "last_name" "Deval" "email" "rdevalc0@ted.com" "gender" "female" "ip_address" "123.145.74.135" "country" "Argentina" "country_code" "AR" "city" "Comodoro Rivadavia" "longitude" "-67.4686475" "latitude" "-45.8405005" "last_login" "1587904040" +HSET "user:5430" "first_name" "Kenna" "last_name" "Astley" "email" "kastleyc1@oracle.com" "gender" "female" "ip_address" "89.191.194.30" "country" "Peru" "country_code" "PE" "city" "San Miguel" "longitude" "-77.0934017" "latitude" "-12.077493" "last_login" "1577496886" +HSET "user:5431" "first_name" "Bevin" "last_name" "Arrigo" "email" "barrigoc2@biblegateway.com" "gender" "male" "ip_address" "171.132.173.22" "country" "United States" "country_code" "US" "city" "San Antonio" "longitude" "-98.42" "latitude" "29.54" "last_login" "1599914570" +HSET "user:5432" "first_name" "Rosetta" "last_name" "Dunhill" "email" "rdunhillc3@deviantart.com" "gender" "female" "ip_address" "19.249.13.254" "country" "Palestinian Territory" "country_code" "PS" "city" "Arţās" "longitude" "35.188236" "latitude" "31.689957" "last_login" "1576954501" +HSET "user:5433" "first_name" "Lynnea" "last_name" "Rilston" "email" "lrilstonc4@mozilla.com" "gender" "female" "ip_address" "94.185.139.149" "country" "Philippines" "country_code" "PH" "city" "Simimbaan" "longitude" "121.583097" "latitude" "17.1179264" "last_login" "1575512049" +HSET "user:5434" "first_name" "Lorant" "last_name" "Josey" "email" "ljoseyc5@wordpress.com" "gender" "male" "ip_address" "107.57.226.242" "country" "Brazil" "country_code" "BR" "city" "Araras" "longitude" "-47.3853435" "latitude" "-22.3595631" "last_login" "1596221977" +HSET "user:5435" "first_name" "Caprice" "last_name" "Southern" "email" "csouthernc6@arizona.edu" "gender" "female" "ip_address" "183.149.2.105" "country" "China" "country_code" "CN" "city" "Jiuzihe" "longitude" "115.67779" "latitude" "31.138558" "last_login" "1572915355" +HSET "user:5436" "first_name" "Christan" "last_name" "Gahagan" "email" "cgahaganc7@devhub.com" "gender" "female" "ip_address" "188.157.138.207" "country" "Canada" "country_code" "CA" "city" "Hope" "longitude" "-121.44144" "latitude" "49.38299" "last_login" "1591323667" +HSET "user:5437" "first_name" "Osmund" "last_name" "Bayly" "email" "obaylyc8@dropbox.com" "gender" "male" "ip_address" "105.143.134.45" "country" "Tunisia" "country_code" "TN" "city" "Banī Khaddāsh" "longitude" "10.2" "latitude" "33.25" "last_login" "1592929049" +HSET "user:5438" "first_name" "Atalanta" "last_name" "Polding" "email" "apoldingc9@php.net" "gender" "female" "ip_address" "21.52.216.120" "country" "Saudi Arabia" "country_code" "SA" "city" "As Sulayyil" "longitude" "45.5629394" "latitude" "20.4668679" "last_login" "1595909556" +HSET "user:5439" "first_name" "Conroy" "last_name" "Haggas" "email" "chaggasca@liveinternet.ru" "gender" "male" "ip_address" "171.161.76.66" "country" "Cameroon" "country_code" "CM" "city" "Bamusso" "longitude" "8.941094" "latitude" "4.4308445" "last_login" "1577874472" +HSET "user:5440" "first_name" "Kelli" "last_name" "Seagrove" "email" "kseagrovecb@google.pl" "gender" "female" "ip_address" "42.16.6.108" "country" "Ukraine" "country_code" "UA" "city" "Illintsi" "longitude" "29.2092738" "latitude" "49.1040007" "last_login" "1575443679" +HSET "user:5441" "first_name" "Antonin" "last_name" "Langston" "email" "alangstoncc@mozilla.com" "gender" "male" "ip_address" "144.234.220.68" "country" "Indonesia" "country_code" "ID" "city" "Panayagan" "longitude" "108.1110423" "latitude" "-7.3518129" "last_login" "1570717132" +HSET "user:5442" "first_name" "Abner" "last_name" "Eldered" "email" "aelderedcd@com.com" "gender" "male" "ip_address" "166.215.101.123" "country" "Brazil" "country_code" "BR" "city" "Coronel Vivida" "longitude" "-52.5678016" "latitude" "-25.979821" "last_login" "1578507998" +HSET "user:5443" "first_name" "Timmie" "last_name" "Hedley" "email" "thedleyce@miitbeian.gov.cn" "gender" "male" "ip_address" "191.174.191.157" "country" "Norway" "country_code" "NO" "city" "Porsgrunn" "longitude" "9.6759643" "latitude" "59.1102039" "last_login" "1584285069" +HSET "user:5444" "first_name" "Hurleigh" "last_name" "Sneesbie" "email" "hsneesbiecf@mayoclinic.com" "gender" "male" "ip_address" "149.17.179.159" "country" "France" "country_code" "FR" "city" "Épinal" "longitude" "6.4140214" "latitude" "48.2576572" "last_login" "1583822363" +HSET "user:5445" "first_name" "Hyacintha" "last_name" "Haberfield" "email" "hhaberfieldcg@hud.gov" "gender" "female" "ip_address" "70.213.228.206" "country" "Greece" "country_code" "GR" "city" "Néo Psychikó" "longitude" "23.7836954" "latitude" "38.006148" "last_login" "1589668295" +HSET "user:5446" "first_name" "Marni" "last_name" "Kiernan" "email" "mkiernanch@soup.io" "gender" "female" "ip_address" "68.97.42.121" "country" "Russia" "country_code" "RU" "city" "Salekhard" "longitude" "66.6028111" "latitude" "66.550073" "last_login" "1598476355" +HSET "user:5447" "first_name" "Gav" "last_name" "Yerrill" "email" "gyerrillci@twitter.com" "gender" "male" "ip_address" "74.10.78.174" "country" "Cuba" "country_code" "CU" "city" "Guáimaro" "longitude" "-77.3496708" "latitude" "21.0525989" "last_login" "1577618569" +HSET "user:5448" "first_name" "Seka" "last_name" "Bullivent" "email" "sbulliventcj@bloomberg.com" "gender" "female" "ip_address" "152.204.213.183" "country" "Portugal" "country_code" "PT" "city" "Agrelo" "longitude" "-8.3726599" "latitude" "41.3595963" "last_login" "1600166199" +HSET "user:5449" "first_name" "Neille" "last_name" "de Zamora" "email" "ndezamorack@cbc.ca" "gender" "female" "ip_address" "46.27.27.201" "country" "Poland" "country_code" "PL" "city" "Grojec" "longitude" "19.234704" "latitude" "49.9800949" "last_login" "1588078832" +HSET "user:5450" "first_name" "Gardy" "last_name" "Weight" "email" "gweightcl@smh.com.au" "gender" "male" "ip_address" "157.101.216.189" "country" "China" "country_code" "CN" "city" "Qiaozi" "longitude" "116.574067" "latitude" "40.290497" "last_login" "1582046794" +HSET "user:5451" "first_name" "Stella" "last_name" "Boult" "email" "sboultcm@devhub.com" "gender" "female" "ip_address" "158.213.248.133" "country" "Sweden" "country_code" "SE" "city" "Falun" "longitude" "15.6257125" "latitude" "60.6065466" "last_login" "1599651182" +HSET "user:5452" "first_name" "Darrel" "last_name" "Skull" "email" "dskullcn@blogger.com" "gender" "male" "ip_address" "160.240.100.41" "country" "Brazil" "country_code" "BR" "city" "Carangola" "longitude" "-42.0299263" "latitude" "-20.7314751" "last_login" "1574237975" +HSET "user:5453" "first_name" "Abbie" "last_name" "Boyes" "email" "aboyesco@foxnews.com" "gender" "male" "ip_address" "185.86.221.53" "country" "Indonesia" "country_code" "ID" "city" "Kawungsari" "longitude" "107.9591094" "latitude" "-7.384252" "last_login" "1570621243" +HSET "user:5454" "first_name" "Danika" "last_name" "Nutbrown" "email" "dnutbrowncp@fastcompany.com" "gender" "female" "ip_address" "13.110.157.203" "country" "China" "country_code" "CN" "city" "Shuyuan Zhen" "longitude" "121.538057" "latitude" "29.894972" "last_login" "1588453212" +HSET "user:5455" "first_name" "Rick" "last_name" "Bardwall" "email" "rbardwallcq@bluehost.com" "gender" "male" "ip_address" "75.96.106.56" "country" "Azerbaijan" "country_code" "AZ" "city" "Ramana" "longitude" "49.9843941" "latitude" "40.4581279" "last_login" "1584113715" +HSET "user:5456" "first_name" "Odilia" "last_name" "Shatliff" "email" "oshatliffcr@comsenz.com" "gender" "female" "ip_address" "254.225.126.25" "country" "Russia" "country_code" "RU" "city" "Vetluzhskiy" "longitude" "45.5416034" "latitude" "58.3669548" "last_login" "1593136614" +HSET "user:5457" "first_name" "Colline" "last_name" "Pomfret" "email" "cpomfretcs@wikispaces.com" "gender" "female" "ip_address" "108.35.99.247" "country" "Honduras" "country_code" "HN" "city" "Santa Cruz" "longitude" "-87.8893383" "latitude" "14.9817467" "last_login" "1581150588" +HSET "user:5458" "first_name" "Darrick" "last_name" "Ruggen" "email" "druggenct@ezinearticles.com" "gender" "male" "ip_address" "76.117.172.70" "country" "Japan" "country_code" "JP" "city" "Toyota" "longitude" "138.3380852" "latitude" "37.9570614" "last_login" "1581466006" +HSET "user:5459" "first_name" "Urbain" "last_name" "Jozefiak" "email" "ujozefiakcu@yellowpages.com" "gender" "male" "ip_address" "120.110.190.67" "country" "Russia" "country_code" "RU" "city" "Khasavyurt" "longitude" "46.5485537" "latitude" "43.3688739" "last_login" "1581486894" +HSET "user:5460" "first_name" "Launce" "last_name" "Kiltie" "email" "lkiltiecv@mtv.com" "gender" "male" "ip_address" "131.155.40.33" "country" "Argentina" "country_code" "AR" "city" "Alta Gracia" "longitude" "-58.5278307" "latitude" "-34.6104702" "last_login" "1575614606" +HSET "user:5461" "first_name" "Aleksandr" "last_name" "Troucher" "email" "atrouchercw@etsy.com" "gender" "male" "ip_address" "51.177.205.250" "country" "Greece" "country_code" "GR" "city" "Kalýves Polygýrou" "longitude" "23.390846" "latitude" "40.2861415" "last_login" "1569525590" +HSET "user:5462" "first_name" "Donn" "last_name" "Vedeneev" "email" "dvedeneevcx@360.cn" "gender" "male" "ip_address" "35.26.80.155" "country" "Malaysia" "country_code" "MY" "city" "Kuala Terengganu" "longitude" "103.1369108" "latitude" "5.329576" "last_login" "1587653956" +HSET "user:5463" "first_name" "Jory" "last_name" "Ohms" "email" "johmscy@disqus.com" "gender" "male" "ip_address" "114.234.149.125" "country" "Kyrgyzstan" "country_code" "KG" "city" "Toktogul" "longitude" "72.9401509" "latitude" "41.8760133" "last_login" "1568773133" +HSET "user:5464" "first_name" "Fiann" "last_name" "Petow" "email" "fpetowcz@mit.edu" "gender" "female" "ip_address" "46.157.138.99" "country" "Indonesia" "country_code" "ID" "city" "Sumanding" "longitude" "110.8642328" "latitude" "-6.5640911" "last_login" "1588108879" +HSET "user:5465" "first_name" "Florry" "last_name" "Folkerts" "email" "ffolkertsd0@google.ca" "gender" "female" "ip_address" "142.223.6.255" "country" "China" "country_code" "CN" "city" "Hongmiao" "longitude" "118.670339" "latitude" "31.9339724" "last_login" "1592087097" +HSET "user:5466" "first_name" "Quintina" "last_name" "Schwieso" "email" "qschwiesod1@zdnet.com" "gender" "female" "ip_address" "1.205.213.91" "country" "Mozambique" "country_code" "MZ" "city" "Manjacaze" "longitude" "33.8801952" "latitude" "-24.7057037" "last_login" "1572515626" +HSET "user:5467" "first_name" "Kristy" "last_name" "Haythornthwaite" "email" "khaythornthwaited2@lulu.com" "gender" "female" "ip_address" "85.130.48.91" "country" "Indonesia" "country_code" "ID" "city" "Idi Rayeuk" "longitude" "97.7525352" "latitude" "4.9623026" "last_login" "1595801652" +HSET "user:5468" "first_name" "Sinclare" "last_name" "Eastcott" "email" "seastcottd3@behance.net" "gender" "male" "ip_address" "72.51.225.62" "country" "Indonesia" "country_code" "ID" "city" "Singaraja" "longitude" "115.0916254" "latitude" "-8.1149145" "last_login" "1593617375" +HSET "user:5469" "first_name" "Nelie" "last_name" "Eshmade" "email" "neshmaded4@intel.com" "gender" "female" "ip_address" "38.27.15.160" "country" "Portugal" "country_code" "PT" "city" "Aldeia de Juzo" "longitude" "-9.4472984" "latitude" "38.7255705" "last_login" "1573077679" +HSET "user:5470" "first_name" "Smith" "last_name" "Marchiso" "email" "smarchisod5@yale.edu" "gender" "male" "ip_address" "65.124.35.187" "country" "Czech Republic" "country_code" "CZ" "city" "Železnice" "longitude" "15.3845968" "latitude" "50.4727367" "last_login" "1570203145" +HSET "user:5471" "first_name" "Samaria" "last_name" "Tebbett" "email" "stebbettd6@webeden.co.uk" "gender" "female" "ip_address" "146.106.10.96" "country" "China" "country_code" "CN" "city" "Lushikeng" "longitude" "110.153093" "latitude" "26.648393" "last_login" "1582694044" +HSET "user:5472" "first_name" "Cornelius" "last_name" "Walcot" "email" "cwalcotd7@sogou.com" "gender" "male" "ip_address" "30.231.225.225" "country" "China" "country_code" "CN" "city" "Jiangduo" "longitude" "119.569989" "latitude" "32.434672" "last_login" "1590607125" +HSET "user:5473" "first_name" "Thoma" "last_name" "Coorington" "email" "tcooringtond8@cocolog-nifty.com" "gender" "male" "ip_address" "69.211.237.166" "country" "Germany" "country_code" "DE" "city" "Mülheim an der Ruhr" "longitude" "6.886548" "latitude" "51.441874" "last_login" "1591593006" +HSET "user:5474" "first_name" "Kevyn" "last_name" "Allchorn" "email" "kallchornd9@java.com" "gender" "female" "ip_address" "146.164.49.233" "country" "Japan" "country_code" "JP" "city" "Yono" "longitude" "134.1994263" "latitude" "35.0900891" "last_login" "1596340114" +HSET "user:5475" "first_name" "Casper" "last_name" "Slyford" "email" "cslyfordda@google.pl" "gender" "male" "ip_address" "124.220.96.212" "country" "Russia" "country_code" "RU" "city" "Severnoye" "longitude" "38.439524" "latitude" "55.7977131" "last_login" "1588678112" +HSET "user:5476" "first_name" "Allene" "last_name" "Shaudfurth" "email" "ashaudfurthdb@businessinsider.com" "gender" "female" "ip_address" "34.81.30.96" "country" "Portugal" "country_code" "PT" "city" "Estrada" "longitude" "-7.948491" "latitude" "41.2496914" "last_login" "1591084381" +HSET "user:5477" "first_name" "Galina" "last_name" "D'Acth" "email" "gdacthdc@opera.com" "gender" "female" "ip_address" "249.187.70.184" "country" "Indonesia" "country_code" "ID" "city" "Tekikbanyuurip" "longitude" "111.9507" "latitude" "-8.2219" "last_login" "1588034785" +HSET "user:5478" "first_name" "Thebault" "last_name" "Cammish" "email" "tcammishdd@census.gov" "gender" "male" "ip_address" "199.60.239.43" "country" "Indonesia" "country_code" "ID" "city" "Gading" "longitude" "106.9054618" "latitude" "-6.1604549" "last_login" "1576452457" +HSET "user:5479" "first_name" "Bernelle" "last_name" "Westphal" "email" "bwestphalde@bing.com" "gender" "female" "ip_address" "122.17.130.164" "country" "Indonesia" "country_code" "ID" "city" "Bontang" "longitude" "117.4800445" "latitude" "0.120863" "last_login" "1595217643" +HSET "user:5480" "first_name" "Grethel" "last_name" "Fitzroy" "email" "gfitzroydf@army.mil" "gender" "female" "ip_address" "199.131.87.148" "country" "China" "country_code" "CN" "city" "Guashe" "longitude" "114.715117" "latitude" "27.406721" "last_login" "1570836462" +HSET "user:5481" "first_name" "Gunner" "last_name" "Rigden" "email" "grigdendg@reverbnation.com" "gender" "male" "ip_address" "116.174.20.37" "country" "France" "country_code" "FR" "city" "Rungis" "longitude" "2.3536083" "latitude" "48.7381259" "last_login" "1591793645" +HSET "user:5482" "first_name" "Martainn" "last_name" "Babber" "email" "mbabberdh@ifeng.com" "gender" "male" "ip_address" "188.217.98.35" "country" "United States" "country_code" "US" "city" "Des Moines" "longitude" "-93.61" "latitude" "41.6" "last_login" "1595960536" +HSET "user:5483" "first_name" "Rosmunda" "last_name" "Hamberston" "email" "rhamberstondi@vk.com" "gender" "female" "ip_address" "213.190.65.71" "country" "Nigeria" "country_code" "NG" "city" "Gora" "longitude" "7.255737" "latitude" "12.3508099" "last_login" "1581224202" +HSET "user:5484" "first_name" "Ezekiel" "last_name" "Cosgriff" "email" "ecosgriffdj@nature.com" "gender" "male" "ip_address" "61.138.248.191" "country" "China" "country_code" "CN" "city" "Yuanquan" "longitude" "118.592147" "latitude" "24.89604" "last_login" "1570949950" +HSET "user:5485" "first_name" "Dennison" "last_name" "Grigolon" "email" "dgrigolondk@com.com" "gender" "male" "ip_address" "108.44.125.30" "country" "Poland" "country_code" "PL" "city" "Sadkowice" "longitude" "20.5223046" "latitude" "51.7192247" "last_login" "1598581328" +HSET "user:5486" "first_name" "Seymour" "last_name" "Goodred" "email" "sgoodreddl@cbsnews.com" "gender" "male" "ip_address" "61.107.73.85" "country" "Indonesia" "country_code" "ID" "city" "Krajan Alasdowo" "longitude" "111.0400034" "latitude" "-6.4761564" "last_login" "1574751193" +HSET "user:5487" "first_name" "Swen" "last_name" "Roycroft" "email" "sroycroftdm@bravesites.com" "gender" "male" "ip_address" "246.234.238.216" "country" "Poland" "country_code" "PL" "city" "Sokółka" "longitude" "21.8949682" "latitude" "52.6057865" "last_login" "1593422458" +HSET "user:5488" "first_name" "Abba" "last_name" "McGaraghan" "email" "amcgaraghandn@unc.edu" "gender" "male" "ip_address" "201.227.86.242" "country" "Portugal" "country_code" "PT" "city" "Bolhos" "longitude" "-9.2859032" "latitude" "39.3072275" "last_login" "1580301780" +HSET "user:5489" "first_name" "Teena" "last_name" "Chestney" "email" "tchestneydo@si.edu" "gender" "female" "ip_address" "105.186.73.175" "country" "Marshall Islands" "country_code" "MH" "city" "RMI Capitol" "longitude" "171.3805" "latitude" "7.08931" "last_login" "1574572997" +HSET "user:5490" "first_name" "Bert" "last_name" "Waiting" "email" "bwaitingdp@seesaa.net" "gender" "female" "ip_address" "52.9.195.52" "country" "France" "country_code" "FR" "city" "Strasbourg" "longitude" "7.7342943" "latitude" "48.5851876" "last_login" "1576972495" +HSET "user:5491" "first_name" "Jasen" "last_name" "Matussow" "email" "jmatussowdq@desdev.cn" "gender" "male" "ip_address" "146.239.197.192" "country" "Poland" "country_code" "PL" "city" "Przodkowo" "longitude" "18.2912258" "latitude" "54.3817334" "last_login" "1573309166" +HSET "user:5492" "first_name" "Dukie" "last_name" "Beachem" "email" "dbeachemdr@soundcloud.com" "gender" "male" "ip_address" "130.13.54.64" "country" "France" "country_code" "FR" "city" "Le Blanc-Mesnil" "longitude" "2.4774664" "latitude" "48.9323908" "last_login" "1575579337" +HSET "user:5493" "first_name" "Klaus" "last_name" "Valentinuzzi" "email" "kvalentinuzzids@bizjournals.com" "gender" "male" "ip_address" "167.62.115.223" "country" "China" "country_code" "CN" "city" "Shaowu" "longitude" "117.492533" "latitude" "27.340326" "last_login" "1572968252" +HSET "user:5494" "first_name" "Marjorie" "last_name" "Lawn" "email" "mlawndt@mail.ru" "gender" "female" "ip_address" "70.74.65.134" "country" "Paraguay" "country_code" "PY" "city" "Villa Hayes" "longitude" "-57.527801" "latitude" "-25.0913166" "last_login" "1588825739" +HSET "user:5495" "first_name" "Sol" "last_name" "Paris" "email" "sparisdu@bbc.co.uk" "gender" "male" "ip_address" "162.136.232.133" "country" "China" "country_code" "CN" "city" "Dongguang" "longitude" "116.537067" "latitude" "37.888248" "last_login" "1596976508" +HSET "user:5496" "first_name" "Sergent" "last_name" "Alfonso" "email" "salfonsodv@archive.org" "gender" "male" "ip_address" "10.80.32.118" "country" "China" "country_code" "CN" "city" "Langchuan" "longitude" "118.604556" "latitude" "29.492402" "last_login" "1588812564" +HSET "user:5497" "first_name" "Rivalee" "last_name" "Whittet" "email" "rwhittetdw@sogou.com" "gender" "female" "ip_address" "247.238.63.66" "country" "Madagascar" "country_code" "MG" "city" "Ifanadiana" "longitude" "47.6381357" "latitude" "-21.3032134" "last_login" "1575230810" +HSET "user:5498" "first_name" "Alfy" "last_name" "Wivell" "email" "awivelldx@yahoo.co.jp" "gender" "male" "ip_address" "62.10.97.237" "country" "Indonesia" "country_code" "ID" "city" "Binawara" "longitude" "115.7782286" "latitude" "-3.4795532" "last_login" "1595928703" +HSET "user:5499" "first_name" "Kasper" "last_name" "Piper" "email" "kpiperdy@mozilla.com" "gender" "male" "ip_address" "86.94.111.213" "country" "Argentina" "country_code" "AR" "city" "La Rioja" "longitude" "-60.6961061" "latitude" "-32.9377962" "last_login" "1596332255" +HSET "user:5500" "first_name" "Conny" "last_name" "Gullen" "email" "cgullendz@cafepress.com" "gender" "male" "ip_address" "9.121.237.198" "country" "Indonesia" "country_code" "ID" "city" "Solok Timur" "longitude" "103.8042382" "latitude" "-1.0233937" "last_login" "1572255114" +HSET "user:5501" "first_name" "Charlie" "last_name" "Mulles" "email" "cmullese0@163.com" "gender" "male" "ip_address" "213.155.192.120" "country" "China" "country_code" "CN" "city" "Guanyinge" "longitude" "114.59862" "latitude" "23.401553" "last_login" "1574482528" +HSET "user:5502" "first_name" "Franz" "last_name" "Frizzell" "email" "ffrizzelle1@youtube.com" "gender" "male" "ip_address" "0.74.14.150" "country" "Russia" "country_code" "RU" "city" "Soloneshnoye" "longitude" "84.3244979" "latitude" "51.65991" "last_login" "1568653026" +HSET "user:5503" "first_name" "Gretchen" "last_name" "Hubbins" "email" "ghubbinse2@ucoz.ru" "gender" "female" "ip_address" "139.125.15.3" "country" "Syria" "country_code" "SY" "city" "Ash Shajarah" "longitude" "35.8852393" "latitude" "32.7737057" "last_login" "1586724777" +HSET "user:5504" "first_name" "Doyle" "last_name" "Feechan" "email" "dfeechane3@liveinternet.ru" "gender" "male" "ip_address" "169.182.34.94" "country" "Philippines" "country_code" "PH" "city" "Anuling" "longitude" "120.878102" "latitude" "14.1507357" "last_login" "1584094423" +HSET "user:5505" "first_name" "Filmer" "last_name" "Bjorkan" "email" "fbjorkane4@friendfeed.com" "gender" "male" "ip_address" "225.129.27.231" "country" "China" "country_code" "CN" "city" "Liangdang Chengguanzhen" "longitude" "106.309127" "latitude" "33.917649" "last_login" "1585582875" +HSET "user:5506" "first_name" "Hersh" "last_name" "Brotherheed" "email" "hbrotherheede5@usatoday.com" "gender" "male" "ip_address" "201.167.153.182" "country" "China" "country_code" "CN" "city" "Fangfan" "longitude" "-96.682893" "latitude" "33.029633" "last_login" "1596138883" +HSET "user:5507" "first_name" "Luisa" "last_name" "Bater" "email" "lbatere6@wufoo.com" "gender" "female" "ip_address" "239.84.75.86" "country" "Indonesia" "country_code" "ID" "city" "Semamung" "longitude" "117.4145232" "latitude" "-8.6438821" "last_login" "1575454917" +HSET "user:5508" "first_name" "Correy" "last_name" "Bernasek" "email" "cbernaseke7@uol.com.br" "gender" "female" "ip_address" "171.190.117.125" "country" "Ghana" "country_code" "GH" "city" "Savelugu" "longitude" "-0.8246386" "latitude" "9.6164557" "last_login" "1581428354" +HSET "user:5509" "first_name" "Joice" "last_name" "Vannozzii" "email" "jvannozziie8@oakley.com" "gender" "female" "ip_address" "173.36.223.14" "country" "Cuba" "country_code" "CU" "city" "Cacocum" "longitude" "-76.331889" "latitude" "20.7365652" "last_login" "1591336709" +HSET "user:5510" "first_name" "Clemente" "last_name" "Terese" "email" "cteresee9@upenn.edu" "gender" "male" "ip_address" "212.185.210.80" "country" "Indonesia" "country_code" "ID" "city" "Banjarejo" "longitude" "111.3679689" "latitude" "-7.0431437" "last_login" "1578885138" +HSET "user:5511" "first_name" "Papageno" "last_name" "Dalligan" "email" "pdalliganea@phpbb.com" "gender" "male" "ip_address" "19.145.238.116" "country" "Tanzania" "country_code" "TZ" "city" "Nungwi" "longitude" "39.2985684" "latitude" "-5.725856" "last_login" "1572186511" +HSET "user:5512" "first_name" "Isacco" "last_name" "Turmel" "email" "iturmeleb@ca.gov" "gender" "male" "ip_address" "252.170.140.89" "country" "Russia" "country_code" "RU" "city" "Tisul’" "longitude" "88.6780253" "latitude" "56.0764809" "last_login" "1578938865" +HSET "user:5513" "first_name" "Teddy" "last_name" "Holehouse" "email" "tholehouseec@whitehouse.gov" "gender" "female" "ip_address" "204.64.124.228" "country" "France" "country_code" "FR" "city" "Bressuire" "longitude" "-0.5451553" "latitude" "46.8118134" "last_login" "1593361588" +HSET "user:5514" "first_name" "Wilma" "last_name" "Batrim" "email" "wbatrimed@huffingtonpost.com" "gender" "female" "ip_address" "13.211.131.203" "country" "China" "country_code" "CN" "city" "Batuan" "longitude" "113.732949" "latitude" "27.029507" "last_login" "1571925195" +HSET "user:5515" "first_name" "Lorette" "last_name" "Greenall" "email" "lgreenallee@github.com" "gender" "female" "ip_address" "153.147.112.73" "country" "Russia" "country_code" "RU" "city" "Borodinskiy" "longitude" "34.3739957" "latitude" "61.7921776" "last_login" "1568605045" +HSET "user:5516" "first_name" "Lorenza" "last_name" "Bansal" "email" "lbansalef@accuweather.com" "gender" "female" "ip_address" "85.226.29.19" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.5104253" "latitude" "59.5891945" "last_login" "1595238519" +HSET "user:5517" "first_name" "Tasia" "last_name" "Morville" "email" "tmorvilleeg@hhs.gov" "gender" "female" "ip_address" "45.234.105.239" "country" "China" "country_code" "CN" "city" "Luopu" "longitude" "80.188986" "latitude" "37.073667" "last_login" "1598673098" +HSET "user:5518" "first_name" "Natty" "last_name" "Alcide" "email" "nalcideeh@indiatimes.com" "gender" "male" "ip_address" "236.224.236.243" "country" "Sweden" "country_code" "SE" "city" "Falun" "longitude" "15.6530104" "latitude" "60.6130236" "last_login" "1570772268" +HSET "user:5519" "first_name" "Ysabel" "last_name" "Haslehurst" "email" "yhaslehurstei@princeton.edu" "gender" "female" "ip_address" "210.43.69.83" "country" "France" "country_code" "FR" "city" "Oyonnax" "longitude" "5.653268" "latitude" "46.259611" "last_login" "1586724856" +HSET "user:5520" "first_name" "Lennie" "last_name" "Walpole" "email" "lwalpoleej@hatena.ne.jp" "gender" "male" "ip_address" "27.141.111.29" "country" "United States" "country_code" "US" "city" "Boulder" "longitude" "-105.248737" "latitude" "39.9799992" "last_login" "1594105279" +HSET "user:5521" "first_name" "Betteann" "last_name" "Micheli" "email" "bmicheliek@studiopress.com" "gender" "female" "ip_address" "102.210.17.138" "country" "Poland" "country_code" "PL" "city" "Paprotnia" "longitude" "22.4724915" "latitude" "52.2902011" "last_login" "1594576990" +HSET "user:5522" "first_name" "Bernelle" "last_name" "MacGeffen" "email" "bmacgeffenel@engadget.com" "gender" "female" "ip_address" "53.31.243.234" "country" "Uruguay" "country_code" "UY" "city" "Rivera" "longitude" "-55.5469032" "latitude" "-30.9178625" "last_login" "1589338340" +HSET "user:5523" "first_name" "Verene" "last_name" "Rubinek" "email" "vrubinekem@quantcast.com" "gender" "female" "ip_address" "108.188.73.229" "country" "Philippines" "country_code" "PH" "city" "Cambuga" "longitude" "122.469352" "latitude" "13.513211" "last_login" "1584878950" +HSET "user:5524" "first_name" "Aurie" "last_name" "Charrisson" "email" "acharrissonen@nps.gov" "gender" "female" "ip_address" "38.115.29.44" "country" "Ireland" "country_code" "IE" "city" "Shankill" "longitude" "-6.124065" "latitude" "53.231395" "last_login" "1575048576" +HSET "user:5525" "first_name" "Jolene" "last_name" "Christauffour" "email" "jchristauffoureo@webs.com" "gender" "female" "ip_address" "180.211.201.117" "country" "China" "country_code" "CN" "city" "Gengma" "longitude" "99.397126" "latitude" "23.538092" "last_login" "1572602383" +HSET "user:5526" "first_name" "Benedict" "last_name" "Capron" "email" "bcapronep@cdbaby.com" "gender" "male" "ip_address" "75.117.239.44" "country" "China" "country_code" "CN" "city" "Lianzhou" "longitude" "112.377361" "latitude" "24.780966" "last_login" "1573150964" +HSET "user:5527" "first_name" "Mordecai" "last_name" "Teliga" "email" "mteligaeq@posterous.com" "gender" "male" "ip_address" "215.232.203.31" "country" "China" "country_code" "CN" "city" "Sanli" "longitude" "116.746096" "latitude" "24.84662" "last_login" "1587965671" +HSET "user:5528" "first_name" "Gabe" "last_name" "Cammack" "email" "gcammacker@ox.ac.uk" "gender" "male" "ip_address" "30.197.246.203" "country" "Ukraine" "country_code" "UA" "city" "Staryy Sambor" "longitude" "23.0037506" "latitude" "49.443994" "last_login" "1570269680" +HSET "user:5529" "first_name" "Tine" "last_name" "Divers" "email" "tdiverses@soundcloud.com" "gender" "female" "ip_address" "132.34.14.116" "country" "Philippines" "country_code" "PH" "city" "Santa Maria" "longitude" "121.0036417" "latitude" "14.5806413" "last_login" "1586508265" +HSET "user:5530" "first_name" "Wyndham" "last_name" "Maskrey" "email" "wmaskreyet@miitbeian.gov.cn" "gender" "male" "ip_address" "14.98.56.170" "country" "Palestinian Territory" "country_code" "PS" "city" "Azun Atme" "longitude" "35.018481" "latitude" "32.123667" "last_login" "1568642749" +HSET "user:5531" "first_name" "Delcina" "last_name" "Roselli" "email" "drosellieu@sphinn.com" "gender" "female" "ip_address" "193.48.69.110" "country" "Ukraine" "country_code" "UA" "city" "Nelipyno" "longitude" "23.0332798" "latitude" "48.5637949" "last_login" "1587649044" +HSET "user:5532" "first_name" "Afton" "last_name" "Crust" "email" "acrustev@furl.net" "gender" "female" "ip_address" "82.216.215.172" "country" "Bosnia and Herzegovina" "country_code" "BA" "city" "Bosanski Novi" "longitude" "16.3746171" "latitude" "45.0486976" "last_login" "1597880745" +HSET "user:5533" "first_name" "Melesa" "last_name" "Kincade" "email" "mkincadeew@phoca.cz" "gender" "female" "ip_address" "115.11.250.124" "country" "France" "country_code" "FR" "city" "Longvic" "longitude" "5.0488236" "latitude" "47.3080493" "last_login" "1580432610" +HSET "user:5534" "first_name" "Shellie" "last_name" "Starbeck" "email" "sstarbeckex@usda.gov" "gender" "female" "ip_address" "60.36.110.214" "country" "Czech Republic" "country_code" "CZ" "city" "Mostek" "longitude" "16.2650464" "latitude" "50.0093858" "last_login" "1599983199" +HSET "user:5535" "first_name" "Lucia" "last_name" "Somerled" "email" "lsomerledey@surveymonkey.com" "gender" "female" "ip_address" "219.166.171.17" "country" "Indonesia" "country_code" "ID" "city" "Tugusirna" "longitude" "108.2158" "latitude" "-7.3441" "last_login" "1590827767" +HSET "user:5536" "first_name" "Neddy" "last_name" "Adamovicz" "email" "nadamoviczez@ed.gov" "gender" "male" "ip_address" "63.255.210.117" "country" "France" "country_code" "FR" "city" "Mulhouse" "longitude" "7.3507066" "latitude" "47.7489727" "last_login" "1593782343" +HSET "user:5537" "first_name" "Bernarr" "last_name" "Barends" "email" "bbarendsf0@dell.com" "gender" "male" "ip_address" "168.185.142.84" "country" "Russia" "country_code" "RU" "city" "Spitsevka" "longitude" "42.503334" "latitude" "45.116904" "last_login" "1591931682" +HSET "user:5538" "first_name" "Garvin" "last_name" "Laytham" "email" "glaythamf1@artisteer.com" "gender" "male" "ip_address" "140.4.55.91" "country" "Brazil" "country_code" "BR" "city" "Paripiranga" "longitude" "-37.9148742" "latitude" "-10.6670645" "last_login" "1594847081" +HSET "user:5539" "first_name" "Kathi" "last_name" "Ramble" "email" "kramblef2@home.pl" "gender" "female" "ip_address" "66.2.88.50" "country" "Pakistan" "country_code" "PK" "city" "Kabīrwāla" "longitude" "71.756132" "latitude" "30.3364517" "last_login" "1580319366" +HSET "user:5540" "first_name" "Gilburt" "last_name" "Skirven" "email" "gskirvenf3@go.com" "gender" "male" "ip_address" "81.38.59.143" "country" "Indonesia" "country_code" "ID" "city" "Sumber" "longitude" "113.0845936" "latitude" "-7.9454654" "last_login" "1581175959" +HSET "user:5541" "first_name" "Larina" "last_name" "Kenyon" "email" "lkenyonf4@typepad.com" "gender" "female" "ip_address" "212.1.13.41" "country" "Poland" "country_code" "PL" "city" "Pasłęk" "longitude" "19.698964" "latitude" "53.996769" "last_login" "1580012706" +HSET "user:5542" "first_name" "Violet" "last_name" "Penkman" "email" "vpenkmanf5@ycombinator.com" "gender" "female" "ip_address" "156.167.184.207" "country" "Gambia" "country_code" "GM" "city" "Wassu" "longitude" "-14.8797594" "latitude" "13.6868427" "last_login" "1577418679" +HSET "user:5543" "first_name" "Dennison" "last_name" "Mettricke" "email" "dmettrickef6@reference.com" "gender" "male" "ip_address" "101.248.43.64" "country" "Colombia" "country_code" "CO" "city" "Guachucal" "longitude" "-77.7565925" "latitude" "1.003696" "last_login" "1600176055" +HSET "user:5544" "first_name" "Wilhelmine" "last_name" "Nisard" "email" "wnisardf7@npr.org" "gender" "female" "ip_address" "225.145.180.8" "country" "Japan" "country_code" "JP" "city" "Ishigaki" "longitude" "137.4474511" "latitude" "36.8047032" "last_login" "1579928065" +HSET "user:5545" "first_name" "Chane" "last_name" "Iskov" "email" "ciskovf8@uiuc.edu" "gender" "male" "ip_address" "181.90.208.138" "country" "Portugal" "country_code" "PT" "city" "Roliça" "longitude" "-9.1836701" "latitude" "39.3131016" "last_login" "1583235806" +HSET "user:5546" "first_name" "Laurella" "last_name" "Zmitrovich" "email" "lzmitrovichf9@unicef.org" "gender" "female" "ip_address" "251.147.213.235" "country" "Hungary" "country_code" "HU" "city" "Pécs" "longitude" "18.3028286" "latitude" "46.0852466" "last_login" "1577049038" +HSET "user:5547" "first_name" "Eldredge" "last_name" "Volk" "email" "evolkfa@samsung.com" "gender" "male" "ip_address" "207.253.8.60" "country" "China" "country_code" "CN" "city" "Donggaocun" "longitude" "117.116756" "latitude" "40.104785" "last_login" "1583623178" +HSET "user:5548" "first_name" "Orelia" "last_name" "Leeming" "email" "oleemingfb@homestead.com" "gender" "female" "ip_address" "194.87.101.101" "country" "United Kingdom" "country_code" "GB" "city" "Tullich" "longitude" "-3.1269422" "latitude" "57.4694803" "last_login" "1572724862" +HSET "user:5549" "first_name" "Boony" "last_name" "Adolfsen" "email" "badolfsenfc@netlog.com" "gender" "male" "ip_address" "124.11.189.130" "country" "Indonesia" "country_code" "ID" "city" "Sumbergayam" "longitude" "111.8240676" "latitude" "-8.1067604" "last_login" "1585829714" +HSET "user:5550" "first_name" "Simone" "last_name" "McLaughlan" "email" "smclaughlanfd@blogs.com" "gender" "female" "ip_address" "178.162.200.95" "country" "Guatemala" "country_code" "GT" "city" "San Felipe" "longitude" "-91.578904" "latitude" "14.63441" "last_login" "1573528153" +HSET "user:5551" "first_name" "Hashim" "last_name" "Antowski" "email" "hantowskife@ft.com" "gender" "male" "ip_address" "239.123.105.108" "country" "Indonesia" "country_code" "ID" "city" "Pamarayan" "longitude" "106.2904635" "latitude" "-6.2676999" "last_login" "1576259570" +HSET "user:5552" "first_name" "Meade" "last_name" "Zanelli" "email" "mzanelliff@pen.io" "gender" "male" "ip_address" "104.103.232.104" "country" "Tunisia" "country_code" "TN" "city" "Al Maşdūr" "longitude" "10.72746" "latitude" "35.68206" "last_login" "1596775892" +HSET "user:5553" "first_name" "Davon" "last_name" "Dury" "email" "dduryfg@feedburner.com" "gender" "male" "ip_address" "179.6.230.221" "country" "Indonesia" "country_code" "ID" "city" "Leran Wetan" "longitude" "112.1579249" "latitude" "-6.9219286" "last_login" "1573593471" +HSET "user:5554" "first_name" "Meredith" "last_name" "Bricket" "email" "mbricketfh@cbslocal.com" "gender" "male" "ip_address" "20.202.214.171" "country" "Palestinian Territory" "country_code" "PS" "city" "Al Fukhkhārī" "longitude" "34.333152" "latitude" "31.295228" "last_login" "1584999695" +HSET "user:5555" "first_name" "Dacey" "last_name" "Cleere" "email" "dcleerefi@hugedomains.com" "gender" "female" "ip_address" "66.36.57.162" "country" "Malawi" "country_code" "MW" "city" "Machinga" "longitude" "35.4781926" "latitude" "-14.9407263" "last_login" "1581574921" +HSET "user:5556" "first_name" "Harper" "last_name" "Kiloh" "email" "hkilohfj@home.pl" "gender" "male" "ip_address" "165.235.146.103" "country" "Poland" "country_code" "PL" "city" "Olszówka" "longitude" "18.8632124" "latitude" "52.1899235" "last_login" "1585132548" +HSET "user:5557" "first_name" "Florie" "last_name" "Nekrews" "email" "fnekrewsfk@cdc.gov" "gender" "female" "ip_address" "45.144.225.173" "country" "France" "country_code" "FR" "city" "Caluire-et-Cuire" "longitude" "4.8427596" "latitude" "45.7967858" "last_login" "1586833122" +HSET "user:5558" "first_name" "Zsazsa" "last_name" "Gethen" "email" "zgethenfl@noaa.gov" "gender" "female" "ip_address" "220.191.0.250" "country" "Russia" "country_code" "RU" "city" "Krasnoshchekovo" "longitude" "82.756927" "latitude" "51.6661372" "last_login" "1591211339" +HSET "user:5559" "first_name" "Xenia" "last_name" "Soot" "email" "xsootfm@scribd.com" "gender" "female" "ip_address" "96.16.204.38" "country" "Lebanon" "country_code" "LB" "city" "Joubb Jannîne" "longitude" "35.7819158" "latitude" "33.6328198" "last_login" "1581529880" +HSET "user:5560" "first_name" "Porter" "last_name" "Cattonnet" "email" "pcattonnetfn@ucoz.com" "gender" "male" "ip_address" "145.97.16.146" "country" "Colombia" "country_code" "CO" "city" "Mompós" "longitude" "-74.4028287" "latitude" "9.2209606" "last_login" "1593352043" +HSET "user:5561" "first_name" "Hanny" "last_name" "Waistall" "email" "hwaistallfo@ibm.com" "gender" "female" "ip_address" "158.78.114.46" "country" "Pakistan" "country_code" "PK" "city" "Kohlu" "longitude" "69.1823141" "latitude" "29.8601155" "last_login" "1589542243" +HSET "user:5562" "first_name" "Isahella" "last_name" "Daft" "email" "idaftfp@noaa.gov" "gender" "female" "ip_address" "201.137.2.94" "country" "Portugal" "country_code" "PT" "city" "Paço" "longitude" "-8.1451415" "latitude" "41.3469244" "last_login" "1570099652" +HSET "user:5563" "first_name" "Sharon" "last_name" "Reynish" "email" "sreynishfq@tiny.cc" "gender" "female" "ip_address" "201.32.147.132" "country" "China" "country_code" "CN" "city" "Wanli" "longitude" "115.730847" "latitude" "28.714796" "last_login" "1571583046" +HSET "user:5564" "first_name" "Felic" "last_name" "Spears" "email" "fspearsfr@vk.com" "gender" "male" "ip_address" "134.253.172.120" "country" "Albania" "country_code" "AL" "city" "Burrel" "longitude" "20.006257" "latitude" "41.6089452" "last_login" "1572831993" +HSET "user:5565" "first_name" "Doe" "last_name" "Lockner" "email" "dlocknerfs@hugedomains.com" "gender" "female" "ip_address" "19.182.211.185" "country" "Palestinian Territory" "country_code" "PS" "city" "Qaryūt" "longitude" "35.29528" "latitude" "32.070084" "last_login" "1586247697" +HSET "user:5566" "first_name" "Emiline" "last_name" "Pelosi" "email" "epelosift@state.tx.us" "gender" "female" "ip_address" "238.138.94.17" "country" "China" "country_code" "CN" "city" "Maxu" "longitude" "117.541917" "latitude" "33.366735" "last_login" "1596113787" +HSET "user:5567" "first_name" "Sadye" "last_name" "Costi" "email" "scostifu@google.com.hk" "gender" "female" "ip_address" "168.45.13.216" "country" "Hungary" "country_code" "HU" "city" "Ózd" "longitude" "20.2934524" "latitude" "48.2166359" "last_login" "1590401231" +HSET "user:5568" "first_name" "Melesa" "last_name" "Mineghelli" "email" "mmineghellifv@goodreads.com" "gender" "female" "ip_address" "43.16.228.83" "country" "Sweden" "country_code" "SE" "city" "Hörby" "longitude" "13.6546035" "latitude" "55.8346942" "last_login" "1596588182" +HSET "user:5569" "first_name" "Arly" "last_name" "Kolakovic" "email" "akolakovicfw@opera.com" "gender" "female" "ip_address" "140.35.28.218" "country" "Indonesia" "country_code" "ID" "city" "Sebuku" "longitude" "116.39" "latitude" "-3.45" "last_login" "1598987850" +HSET "user:5570" "first_name" "Melany" "last_name" "Perryn" "email" "mperrynfx@sakura.ne.jp" "gender" "female" "ip_address" "188.190.208.176" "country" "Indonesia" "country_code" "ID" "city" "Cikiray" "longitude" "106.5849256" "latitude" "-6.8651955" "last_login" "1584612013" +HSET "user:5571" "first_name" "Heida" "last_name" "Gookey" "email" "hgookeyfy@csmonitor.com" "gender" "female" "ip_address" "96.169.96.224" "country" "China" "country_code" "CN" "city" "Daxi" "longitude" "117.1199596" "latitude" "24.1092009" "last_login" "1590484799" +HSET "user:5572" "first_name" "Arleyne" "last_name" "Butters" "email" "abuttersfz@ucoz.com" "gender" "female" "ip_address" "158.74.137.54" "country" "Philippines" "country_code" "PH" "city" "San Roque" "longitude" "124.870243" "latitude" "12.532252" "last_login" "1569137645" +HSET "user:5573" "first_name" "Charity" "last_name" "Saiger" "email" "csaigerg0@homestead.com" "gender" "female" "ip_address" "139.2.106.57" "country" "Russia" "country_code" "RU" "city" "Falënki" "longitude" "51.5974391" "latitude" "58.3556892" "last_login" "1589678215" +HSET "user:5574" "first_name" "Caroljean" "last_name" "Batting" "email" "cbattingg1@nature.com" "gender" "female" "ip_address" "86.40.38.127" "country" "Thailand" "country_code" "TH" "city" "Trat" "longitude" "102.2928163" "latitude" "12.0310173" "last_login" "1580048630" +HSET "user:5575" "first_name" "Carma" "last_name" "Crose" "email" "ccroseg2@illinois.edu" "gender" "female" "ip_address" "231.90.134.166" "country" "China" "country_code" "CN" "city" "Zonghan" "longitude" "121.227926" "latitude" "30.184907" "last_login" "1585532111" +HSET "user:5576" "first_name" "Sybyl" "last_name" "Elbourne" "email" "selbourneg3@archive.org" "gender" "female" "ip_address" "233.163.102.209" "country" "Russia" "country_code" "RU" "city" "Biskamzha" "longitude" "89.52722" "latitude" "53.44972" "last_login" "1597291211" +HSET "user:5577" "first_name" "Alyss" "last_name" "Dennitts" "email" "adennittsg4@scribd.com" "gender" "female" "ip_address" "58.12.30.175" "country" "Morocco" "country_code" "MA" "city" "Taouloukoult" "longitude" "-9.0736964" "latitude" "31.2219543" "last_login" "1577580084" +HSET "user:5578" "first_name" "Hyacinthie" "last_name" "Rude" "email" "hrudeg5@constantcontact.com" "gender" "female" "ip_address" "185.141.111.27" "country" "Ghana" "country_code" "GH" "city" "Asamankese" "longitude" "-0.6676865" "latitude" "5.8607314" "last_login" "1580026818" +HSET "user:5579" "first_name" "Chaim" "last_name" "MacMychem" "email" "cmacmychemg6@mayoclinic.com" "gender" "male" "ip_address" "253.212.222.62" "country" "China" "country_code" "CN" "city" "Galutu" "longitude" "108.689367" "latitude" "38.766979" "last_login" "1572074153" +HSET "user:5580" "first_name" "Phil" "last_name" "Colaco" "email" "pcolacog7@reddit.com" "gender" "female" "ip_address" "73.203.236.140" "country" "China" "country_code" "CN" "city" "Yunping" "longitude" "86.812286" "latitude" "31.17495" "last_login" "1595798763" +HSET "user:5581" "first_name" "Portia" "last_name" "Blanchet" "email" "pblanchetg8@princeton.edu" "gender" "female" "ip_address" "98.221.213.165" "country" "Brazil" "country_code" "BR" "city" "Senador Canedo" "longitude" "-49.1019233" "latitude" "-16.6948713" "last_login" "1572577546" +HSET "user:5582" "first_name" "Yolanda" "last_name" "Verdy" "email" "yverdyg9@pagesperso-orange.fr" "gender" "female" "ip_address" "215.247.247.186" "country" "Portugal" "country_code" "PT" "city" "Cimo de Vila" "longitude" "-8.1591621" "latitude" "41.3389801" "last_login" "1587122503" +HSET "user:5583" "first_name" "Pamella" "last_name" "Luto" "email" "plutoga@theglobeandmail.com" "gender" "female" "ip_address" "109.217.106.193" "country" "France" "country_code" "FR" "city" "Wissous" "longitude" "2.281825" "latitude" "48.7276331" "last_login" "1595044442" +HSET "user:5584" "first_name" "Linc" "last_name" "Djekovic" "email" "ldjekovicgb@mozilla.com" "gender" "male" "ip_address" "37.39.113.204" "country" "Russia" "country_code" "RU" "city" "Ruzayevka" "longitude" "44.8841712" "latitude" "54.0278591" "last_login" "1593262064" +HSET "user:5585" "first_name" "Talia" "last_name" "Pfeffle" "email" "tpfefflegc@joomla.org" "gender" "female" "ip_address" "193.44.28.68" "country" "Indonesia" "country_code" "ID" "city" "Maria" "longitude" "124.402271" "latitude" "-8.328435" "last_login" "1588864587" +HSET "user:5586" "first_name" "Leonhard" "last_name" "Crichten" "email" "lcrichtengd@reddit.com" "gender" "male" "ip_address" "37.51.162.219" "country" "Russia" "country_code" "RU" "city" "Belomorsk" "longitude" "34.7710761" "latitude" "64.5281061" "last_login" "1595355803" +HSET "user:5587" "first_name" "Abba" "last_name" "Muglestone" "email" "amuglestonege@slate.com" "gender" "male" "ip_address" "142.250.14.89" "country" "Brazil" "country_code" "BR" "city" "Caçapava" "longitude" "-45.6964547" "latitude" "-23.0939881" "last_login" "1583685712" +HSET "user:5588" "first_name" "Bambie" "last_name" "Emblow" "email" "bemblowgf@slate.com" "gender" "female" "ip_address" "109.230.46.184" "country" "Japan" "country_code" "JP" "city" "Yanagawamachi-saiwaichō" "longitude" "140.6001539" "latitude" "37.8505169" "last_login" "1568828264" +HSET "user:5589" "first_name" "Arvin" "last_name" "Cudbird" "email" "acudbirdgg@deliciousdays.com" "gender" "male" "ip_address" "25.244.253.189" "country" "Tunisia" "country_code" "TN" "city" "Carthage" "longitude" "10.3329494" "latitude" "36.8625853" "last_login" "1594983255" +HSET "user:5590" "first_name" "Laverna" "last_name" "Scrivens" "email" "lscrivensgh@php.net" "gender" "female" "ip_address" "237.240.165.21" "country" "Philippines" "country_code" "PH" "city" "Kiupo" "longitude" "124.2404727" "latitude" "7.2149367" "last_login" "1579470547" +HSET "user:5591" "first_name" "Frederica" "last_name" "Playdon" "email" "fplaydongi@cocolog-nifty.com" "gender" "female" "ip_address" "127.59.175.218" "country" "Nigeria" "country_code" "NG" "city" "Matsena" "longitude" "10.0499523" "latitude" "13.1353074" "last_login" "1583344407" +HSET "user:5592" "first_name" "Julie" "last_name" "Wornham" "email" "jwornhamgj@dot.gov" "gender" "male" "ip_address" "189.165.118.118" "country" "Indonesia" "country_code" "ID" "city" "Lajarik" "longitude" "120.4083" "latitude" "-9.9755" "last_login" "1582263774" +HSET "user:5593" "first_name" "Port" "last_name" "Coumbe" "email" "pcoumbegk@weather.com" "gender" "male" "ip_address" "4.132.219.145" "country" "Portugal" "country_code" "PT" "city" "Odrinhas" "longitude" "-9.3711123" "latitude" "38.8828903" "last_login" "1585732805" +HSET "user:5594" "first_name" "Reg" "last_name" "Sarjant" "email" "rsarjantgl@blogspot.com" "gender" "male" "ip_address" "80.121.209.110" "country" "Indonesia" "country_code" "ID" "city" "Lukrejo" "longitude" "112.3963638" "latitude" "-7.0206795" "last_login" "1591773027" +HSET "user:5595" "first_name" "Berte" "last_name" "Jeens" "email" "bjeensgm@nhs.uk" "gender" "female" "ip_address" "39.191.241.11" "country" "Nigeria" "country_code" "NG" "city" "Igarra" "longitude" "6.107645" "latitude" "7.2754704" "last_login" "1583748175" +HSET "user:5596" "first_name" "Tobit" "last_name" "Oosthout de Vree" "email" "toosthoutdevreegn@businesswire.com" "gender" "male" "ip_address" "249.239.207.11" "country" "Poland" "country_code" "PL" "city" "Świnna" "longitude" "19.2774975" "latitude" "49.666675" "last_login" "1571278753" +HSET "user:5597" "first_name" "Chere" "last_name" "Deelay" "email" "cdeelaygo@goo.ne.jp" "gender" "female" "ip_address" "18.94.135.97" "country" "China" "country_code" "CN" "city" "Longhuashan" "longitude" "126.6028353" "latitude" "43.8384389" "last_login" "1580441558" +HSET "user:5598" "first_name" "Kettie" "last_name" "Harriskine" "email" "kharriskinegp@xinhuanet.com" "gender" "female" "ip_address" "21.249.110.27" "country" "Vietnam" "country_code" "VN" "city" "Đắk Hà" "longitude" "108.0005933" "latitude" "14.641214" "last_login" "1586185669" +HSET "user:5599" "first_name" "Adeline" "last_name" "Wardell" "email" "awardellgq@sbwire.com" "gender" "female" "ip_address" "171.245.59.210" "country" "Bhutan" "country_code" "BT" "city" "Samdrup Jongkhar" "longitude" "91.5039207" "latitude" "26.8035682" "last_login" "1584869966" +HSET "user:5600" "first_name" "Archambault" "last_name" "Armistead" "email" "aarmisteadgr@theglobeandmail.com" "gender" "male" "ip_address" "164.107.104.253" "country" "China" "country_code" "CN" "city" "Zhongzhai" "longitude" "113.625328" "latitude" "34.746611" "last_login" "1581853903" +HSET "user:5601" "first_name" "Orelee" "last_name" "Balch" "email" "obalchgs@smugmug.com" "gender" "female" "ip_address" "10.114.176.44" "country" "New Zealand" "country_code" "NZ" "city" "Takaka" "longitude" "172.89648" "latitude" "-40.864985" "last_login" "1571581542" +HSET "user:5602" "first_name" "Marthena" "last_name" "Tither" "email" "mtithergt@ameblo.jp" "gender" "female" "ip_address" "170.32.185.11" "country" "Portugal" "country_code" "PT" "city" "Seixas do Douro" "longitude" "-7.2496625" "latitude" "41.112986" "last_login" "1577806094" +HSET "user:5603" "first_name" "Eldin" "last_name" "Hadwick" "email" "ehadwickgu@xinhuanet.com" "gender" "male" "ip_address" "57.105.126.88" "country" "Serbia" "country_code" "RS" "city" "Taraš" "longitude" "20.2087875" "latitude" "45.4648322" "last_login" "1596758716" +HSET "user:5604" "first_name" "Hynda" "last_name" "Potteridge" "email" "hpotteridgegv@businesswire.com" "gender" "female" "ip_address" "46.173.73.239" "country" "China" "country_code" "CN" "city" "Jiulian" "longitude" "118.184993" "latitude" "31.642397" "last_login" "1598392783" +HSET "user:5605" "first_name" "Dode" "last_name" "Lounds" "email" "dloundsgw@thetimes.co.uk" "gender" "female" "ip_address" "127.220.132.72" "country" "Colombia" "country_code" "CO" "city" "Medellín" "longitude" "-75.5858886" "latitude" "6.3833462" "last_login" "1598064103" +HSET "user:5606" "first_name" "Barnaby" "last_name" "Benning" "email" "bbenninggx@ustream.tv" "gender" "male" "ip_address" "128.132.165.157" "country" "Costa Rica" "country_code" "CR" "city" "Naranjo" "longitude" "-84.405668" "latitude" "10.098232" "last_login" "1576708698" +HSET "user:5607" "first_name" "Mel" "last_name" "Darrell" "email" "mdarrellgy@google.ca" "gender" "male" "ip_address" "255.231.44.159" "country" "Bolivia" "country_code" "BO" "city" "San Borja" "longitude" "-66.7486446" "latitude" "-14.8518869" "last_login" "1575408333" +HSET "user:5608" "first_name" "Kizzie" "last_name" "Knok" "email" "kknokgz@gizmodo.com" "gender" "female" "ip_address" "120.133.184.138" "country" "Ukraine" "country_code" "UA" "city" "Velikiye Borki" "longitude" "25.7558517" "latitude" "49.5236512" "last_login" "1590453590" +HSET "user:5609" "first_name" "Olav" "last_name" "Crummay" "email" "ocrummayh0@washingtonpost.com" "gender" "male" "ip_address" "69.205.113.132" "country" "Indonesia" "country_code" "ID" "city" "Rancamaya" "longitude" "106.8266873" "latitude" "-6.6710208" "last_login" "1588873329" +HSET "user:5610" "first_name" "Lisette" "last_name" "Rookes" "email" "lrookesh1@simplemachines.org" "gender" "female" "ip_address" "171.189.40.30" "country" "Brazil" "country_code" "BR" "city" "Guarulhos" "longitude" "-46.5336521" "latitude" "-23.4543148" "last_login" "1593475221" +HSET "user:5611" "first_name" "Zilvia" "last_name" "Carluccio" "email" "zcarluccioh2@narod.ru" "gender" "female" "ip_address" "232.194.105.70" "country" "Sweden" "country_code" "SE" "city" "Skövde" "longitude" "13.8583744" "latitude" "58.4755075" "last_login" "1590806981" +HSET "user:5612" "first_name" "Sonnie" "last_name" "Raffon" "email" "sraffonh3@linkedin.com" "gender" "male" "ip_address" "248.203.41.157" "country" "Portugal" "country_code" "PT" "city" "Vila Ribeiro" "longitude" "-9.017701" "latitude" "38.5908192" "last_login" "1579097233" +HSET "user:5613" "first_name" "Jo" "last_name" "Drayson" "email" "jdraysonh4@google.cn" "gender" "male" "ip_address" "180.121.31.181" "country" "Brazil" "country_code" "BR" "city" "Várzea Paulista" "longitude" "-46.8238911" "latitude" "-23.2140719" "last_login" "1583716559" +HSET "user:5614" "first_name" "Hedvig" "last_name" "Malin" "email" "hmalinh5@wisc.edu" "gender" "female" "ip_address" "185.116.92.106" "country" "Brazil" "country_code" "BR" "city" "Piúma" "longitude" "-40.7357215" "latitude" "-20.8420055" "last_login" "1599080428" +HSET "user:5615" "first_name" "Willetta" "last_name" "Jandak" "email" "wjandakh6@spotify.com" "gender" "female" "ip_address" "195.70.194.207" "country" "Indonesia" "country_code" "ID" "city" "Sekampung" "longitude" "105.4302383" "latitude" "-5.1804211" "last_login" "1577707132" +HSET "user:5616" "first_name" "Tasha" "last_name" "McMeekin" "email" "tmcmeekinh7@baidu.com" "gender" "female" "ip_address" "220.199.9.161" "country" "Canada" "country_code" "CA" "city" "Neebing" "longitude" "-89.4810715" "latitude" "48.1735351" "last_login" "1594270591" +HSET "user:5617" "first_name" "Meagan" "last_name" "Janak" "email" "mjanakh8@bizjournals.com" "gender" "female" "ip_address" "68.98.27.6" "country" "China" "country_code" "CN" "city" "Xianyi" "longitude" "110.947043" "latitude" "22.354385" "last_login" "1594834060" +HSET "user:5618" "first_name" "Terry" "last_name" "Marns" "email" "tmarnsh9@dion.ne.jp" "gender" "male" "ip_address" "164.9.208.164" "country" "Peru" "country_code" "PE" "city" "Changuillo" "longitude" "-75.225304" "latitude" "-14.67278" "last_login" "1570816945" +HSET "user:5619" "first_name" "Farr" "last_name" "Roden" "email" "frodenha@hatena.ne.jp" "gender" "male" "ip_address" "172.131.179.233" "country" "Honduras" "country_code" "HN" "city" "Azacualpa" "longitude" "-88.0876336" "latitude" "14.7121689" "last_login" "1598701727" +HSET "user:5620" "first_name" "Darelle" "last_name" "Titley" "email" "dtitleyhb@sciencedirect.com" "gender" "female" "ip_address" "245.166.34.191" "country" "Honduras" "country_code" "HN" "city" "Paujiles" "longitude" "-87.6112325" "latitude" "15.6019543" "last_login" "1576856617" +HSET "user:5621" "first_name" "Carroll" "last_name" "Dudden" "email" "cduddenhc@toplist.cz" "gender" "male" "ip_address" "86.64.218.181" "country" "Brazil" "country_code" "BR" "city" "Buritizeiro" "longitude" "-45.1494505" "latitude" "-17.1885187" "last_login" "1574701792" +HSET "user:5622" "first_name" "Luciano" "last_name" "Martinet" "email" "lmartinethd@eventbrite.com" "gender" "male" "ip_address" "20.47.163.214" "country" "Iran" "country_code" "IR" "city" "Shahr-e Qods" "longitude" "51.1062824" "latitude" "35.70265" "last_login" "1582518758" +HSET "user:5623" "first_name" "Nataniel" "last_name" "Dakin" "email" "ndakinhe@prlog.org" "gender" "male" "ip_address" "215.129.132.246" "country" "China" "country_code" "CN" "city" "Taihe" "longitude" "114.908872" "latitude" "26.789958" "last_login" "1577263571" +HSET "user:5624" "first_name" "Sibella" "last_name" "Troy" "email" "stroyhf@oracle.com" "gender" "female" "ip_address" "227.234.2.124" "country" "China" "country_code" "CN" "city" "Wenlin" "longitude" "-0.1549619" "latitude" "51.444601" "last_login" "1572974735" +HSET "user:5625" "first_name" "Lucho" "last_name" "Neissen" "email" "lneissenhg@surveymonkey.com" "gender" "male" "ip_address" "228.33.134.23" "country" "Azerbaijan" "country_code" "AZ" "city" "Nardaran" "longitude" "49.9881435" "latitude" "40.5738701" "last_login" "1590689968" +HSET "user:5626" "first_name" "Aristotle" "last_name" "Deathridge" "email" "adeathridgehh@about.me" "gender" "male" "ip_address" "165.200.11.8" "country" "Kiribati" "country_code" "KI" "city" "Ambo Village" "longitude" "173.04259" "latitude" "1.35317" "last_login" "1576241560" +HSET "user:5627" "first_name" "Mala" "last_name" "Simenon" "email" "msimenonhi@sohu.com" "gender" "female" "ip_address" "70.6.66.244" "country" "South Korea" "country_code" "KR" "city" "Hwacheon" "longitude" "127.7080492" "latitude" "38.1056484" "last_login" "1598125031" +HSET "user:5628" "first_name" "Emmy" "last_name" "Pallaske" "email" "epallaskehj@slate.com" "gender" "male" "ip_address" "176.145.159.154" "country" "Philippines" "country_code" "PH" "city" "Inicbulan" "longitude" "120.9814426" "latitude" "13.8206796" "last_login" "1599568941" +HSET "user:5629" "first_name" "Jody" "last_name" "Nisco" "email" "jniscohk@google.pl" "gender" "female" "ip_address" "73.10.232.210" "country" "China" "country_code" "CN" "city" "Chengdong" "longitude" "101.803717" "latitude" "36.599744" "last_login" "1592526232" +HSET "user:5630" "first_name" "Fairleigh" "last_name" "Scammonden" "email" "fscammondenhl@hubpages.com" "gender" "male" "ip_address" "80.103.43.154" "country" "Ukraine" "country_code" "UA" "city" "Rozkishne" "longitude" "39.2712224" "latitude" "48.4902808" "last_login" "1592131784" +HSET "user:5631" "first_name" "Darb" "last_name" "Culwen" "email" "dculwenhm@tripadvisor.com" "gender" "male" "ip_address" "11.206.64.206" "country" "Hungary" "country_code" "HU" "city" "Nyíregyháza" "longitude" "21.6927245" "latitude" "47.9527415" "last_login" "1584070369" +HSET "user:5632" "first_name" "Felic" "last_name" "Valentelli" "email" "fvalentellihn@infoseek.co.jp" "gender" "male" "ip_address" "114.166.215.137" "country" "Indonesia" "country_code" "ID" "city" "Bontang Baru" "longitude" "117.4938098" "latitude" "0.1429969" "last_login" "1585666196" +HSET "user:5633" "first_name" "Harmonie" "last_name" "Lalevee" "email" "hlaleveeho@dailymail.co.uk" "gender" "female" "ip_address" "190.217.75.108" "country" "France" "country_code" "FR" "city" "Arpajon" "longitude" "2.2458778" "latitude" "48.589056" "last_login" "1599144841" +HSET "user:5634" "first_name" "Stanleigh" "last_name" "Blaschek" "email" "sblaschekhp@stumbleupon.com" "gender" "male" "ip_address" "204.64.84.137" "country" "China" "country_code" "CN" "city" "Huanshan" "longitude" "118.337521" "latitude" "29.714699" "last_login" "1597965690" +HSET "user:5635" "first_name" "Diana" "last_name" "Sherburn" "email" "dsherburnhq@addthis.com" "gender" "female" "ip_address" "242.43.74.40" "country" "Philippines" "country_code" "PH" "city" "Aliaga" "longitude" "120.7990105" "latitude" "15.5754812" "last_login" "1589460483" +HSET "user:5636" "first_name" "Regine" "last_name" "Reinbeck" "email" "rreinbeckhr@squarespace.com" "gender" "female" "ip_address" "204.38.129.8" "country" "China" "country_code" "CN" "city" "Huangliu" "longitude" "108.79313" "latitude" "18.504589" "last_login" "1578626384" +HSET "user:5637" "first_name" "Olivie" "last_name" "Logan" "email" "ologanhs@flavors.me" "gender" "female" "ip_address" "106.255.2.196" "country" "Ukraine" "country_code" "UA" "city" "Bolekhiv" "longitude" "23.8543141" "latitude" "49.0702518" "last_login" "1599451403" +HSET "user:5638" "first_name" "Tamra" "last_name" "Soutter" "email" "tsoutterht@cnn.com" "gender" "female" "ip_address" "116.163.249.105" "country" "China" "country_code" "CN" "city" "Yongdeng Chengguanzhen" "longitude" "103.262152" "latitude" "36.733165" "last_login" "1592858602" +HSET "user:5639" "first_name" "Elladine" "last_name" "Sparrowe" "email" "esparrowehu@weebly.com" "gender" "female" "ip_address" "215.90.15.243" "country" "Brazil" "country_code" "BR" "city" "Açu" "longitude" "-36.9147407" "latitude" "-5.5774536" "last_login" "1578673514" +HSET "user:5640" "first_name" "Jaquenette" "last_name" "Linnemann" "email" "jlinnemannhv@telegraph.co.uk" "gender" "female" "ip_address" "92.84.156.38" "country" "China" "country_code" "CN" "city" "Jingping" "longitude" "116.70345" "latitude" "23.365556" "last_login" "1585182283" +HSET "user:5641" "first_name" "Axel" "last_name" "Sowerby" "email" "asowerbyhw@sfgate.com" "gender" "male" "ip_address" "114.105.243.249" "country" "Indonesia" "country_code" "ID" "city" "Ledok" "longitude" "111.2219041" "latitude" "-6.8857846" "last_login" "1586864867" +HSET "user:5642" "first_name" "Geoff" "last_name" "Renac" "email" "grenachx@google.ca" "gender" "male" "ip_address" "110.137.110.232" "country" "Brazil" "country_code" "BR" "city" "Ribeirópolis" "longitude" "-37.4467952" "latitude" "-10.5086496" "last_login" "1584774864" +HSET "user:5643" "first_name" "Orson" "last_name" "Grafham" "email" "ografhamhy@buzzfeed.com" "gender" "male" "ip_address" "84.240.224.169" "country" "South Korea" "country_code" "KR" "city" "Fuyo" "longitude" "126.0278163" "latitude" "44.9857216" "last_login" "1598006300" +HSET "user:5644" "first_name" "Jehu" "last_name" "Langworthy" "email" "jlangworthyhz@admin.ch" "gender" "male" "ip_address" "111.6.133.58" "country" "Cuba" "country_code" "CU" "city" "La Habana Vieja" "longitude" "-82.3533266" "latitude" "23.1343601" "last_login" "1599004833" +HSET "user:5645" "first_name" "Hendrika" "last_name" "Clewett" "email" "hclewetti0@cnbc.com" "gender" "female" "ip_address" "236.238.209.168" "country" "Indonesia" "country_code" "ID" "city" "Margoyoso" "longitude" "111.0579632" "latitude" "-6.6134916" "last_login" "1587683868" +HSET "user:5646" "first_name" "Frederico" "last_name" "Greeson" "email" "fgreesoni1@usnews.com" "gender" "male" "ip_address" "21.57.157.144" "country" "Brazil" "country_code" "BR" "city" "São José de Ribamar" "longitude" "-44.070196" "latitude" "-2.5503853" "last_login" "1569731540" +HSET "user:5647" "first_name" "Emlen" "last_name" "Marden" "email" "emardeni2@smh.com.au" "gender" "male" "ip_address" "136.62.123.198" "country" "Russia" "country_code" "RU" "city" "Svetogorsk" "longitude" "28.8780526" "latitude" "61.0962323" "last_login" "1596238629" +HSET "user:5648" "first_name" "Clement" "last_name" "Ritchman" "email" "critchmani3@netlog.com" "gender" "male" "ip_address" "27.65.183.91" "country" "San Marino" "country_code" "SM" "city" "Poggio di Chiesanuova" "longitude" "12.4208642" "latitude" "43.9142905" "last_login" "1595835372" +HSET "user:5649" "first_name" "Sharity" "last_name" "Sneezum" "email" "ssneezumi4@independent.co.uk" "gender" "female" "ip_address" "204.210.228.195" "country" "Indonesia" "country_code" "ID" "city" "Ancol" "longitude" "106.8377497" "latitude" "-6.125044" "last_login" "1571598428" +HSET "user:5650" "first_name" "Yorgos" "last_name" "Sykes" "email" "ysykesi5@yale.edu" "gender" "male" "ip_address" "91.200.164.47" "country" "China" "country_code" "CN" "city" "Hatu Buh" "longitude" "84.30713" "latitude" "44.41113" "last_login" "1587624086" +HSET "user:5651" "first_name" "Perren" "last_name" "Hiorn" "email" "phiorni6@dailymotion.com" "gender" "male" "ip_address" "178.125.13.107" "country" "Argentina" "country_code" "AR" "city" "Venado Tuerto" "longitude" "-61.961036" "latitude" "-33.745727" "last_login" "1580603396" +HSET "user:5652" "first_name" "Shanna" "last_name" "Collisson" "email" "scollissoni7@reference.com" "gender" "female" "ip_address" "59.190.151.131" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0930966" "latitude" "59.3366653" "last_login" "1592486296" +HSET "user:5653" "first_name" "Ugo" "last_name" "Birtles" "email" "ubirtlesi8@narod.ru" "gender" "male" "ip_address" "114.62.68.49" "country" "China" "country_code" "CN" "city" "Huanfeng" "longitude" "118.1084793" "latitude" "31.7244854" "last_login" "1584564010" +HSET "user:5654" "first_name" "Nappy" "last_name" "Pattlel" "email" "npattleli9@accuweather.com" "gender" "male" "ip_address" "49.97.148.45" "country" "United States" "country_code" "US" "city" "South Bend" "longitude" "-86.3754398" "latitude" "41.6919638" "last_login" "1593460993" +HSET "user:5655" "first_name" "Goldarina" "last_name" "Bruford" "email" "gbrufordia@rakuten.co.jp" "gender" "female" "ip_address" "241.213.113.136" "country" "China" "country_code" "CN" "city" "Da’an" "longitude" "124.292626" "latitude" "45.506995" "last_login" "1581713762" +HSET "user:5656" "first_name" "Belicia" "last_name" "Britten" "email" "bbrittenib@e-recht24.de" "gender" "female" "ip_address" "98.13.37.127" "country" "Indonesia" "country_code" "ID" "city" "Krajan Baru" "longitude" "110.2579036" "latitude" "-6.9484206" "last_login" "1569144126" +HSET "user:5657" "first_name" "Mateo" "last_name" "Boundey" "email" "mboundeyic@biblegateway.com" "gender" "male" "ip_address" "115.93.21.77" "country" "Portugal" "country_code" "PT" "city" "Vila Chã" "longitude" "-8.7353479" "latitude" "41.303548" "last_login" "1576472433" +HSET "user:5658" "first_name" "Kristo" "last_name" "Longstreeth" "email" "klongstreethid@dion.ne.jp" "gender" "male" "ip_address" "110.78.118.21" "country" "Philippines" "country_code" "PH" "city" "Mapaniqui" "longitude" "120.9216776" "latitude" "15.1048617" "last_login" "1576711218" +HSET "user:5659" "first_name" "Minne" "last_name" "Mathis" "email" "mmathisie@acquirethisname.com" "gender" "female" "ip_address" "143.198.176.248" "country" "Brazil" "country_code" "BR" "city" "Currais Novos" "longitude" "-36.4797126" "latitude" "-6.238218" "last_login" "1572359506" +HSET "user:5660" "first_name" "Dalston" "last_name" "MacClenan" "email" "dmacclenanif@webs.com" "gender" "male" "ip_address" "137.153.142.186" "country" "China" "country_code" "CN" "city" "Shangyu" "longitude" "120.868122" "latitude" "30.03312" "last_login" "1574241181" +HSET "user:5661" "first_name" "Dermot" "last_name" "Rispen" "email" "drispenig@51.la" "gender" "male" "ip_address" "144.65.186.83" "country" "Philippines" "country_code" "PH" "city" "Alibago" "longitude" "121.8608082" "latitude" "17.1013958" "last_login" "1589038665" +HSET "user:5662" "first_name" "Ferdinand" "last_name" "Nockles" "email" "fnocklesih@icq.com" "gender" "male" "ip_address" "184.53.4.73" "country" "Vietnam" "country_code" "VN" "city" "Một Ngàn" "longitude" "105.6236585" "latitude" "9.9372776" "last_login" "1579748412" +HSET "user:5663" "first_name" "Puff" "last_name" "Canellas" "email" "pcanellasii@hhs.gov" "gender" "male" "ip_address" "219.89.36.127" "country" "Indonesia" "country_code" "ID" "city" "Padangbatung" "longitude" "115.3074646" "latitude" "-2.8553432" "last_login" "1582227415" +HSET "user:5664" "first_name" "Brina" "last_name" "Malkie" "email" "bmalkieij@dedecms.com" "gender" "female" "ip_address" "106.197.157.155" "country" "Sweden" "country_code" "SE" "city" "Horred" "longitude" "12.4765885" "latitude" "57.3550131" "last_login" "1574106582" +HSET "user:5665" "first_name" "Luz" "last_name" "Hernik" "email" "lhernikik@kickstarter.com" "gender" "female" "ip_address" "56.162.189.130" "country" "Bulgaria" "country_code" "BG" "city" "Dupnitsa" "longitude" "23.0548108" "latitude" "42.2497494" "last_login" "1585905245" +HSET "user:5666" "first_name" "Dallas" "last_name" "Maydwell" "email" "dmaydwellil@mapy.cz" "gender" "female" "ip_address" "113.22.129.164" "country" "France" "country_code" "FR" "city" "Plérin" "longitude" "-2.7586364" "latitude" "48.529165" "last_login" "1597231986" +HSET "user:5667" "first_name" "Fanchette" "last_name" "Tarbett" "email" "ftarbettim@posterous.com" "gender" "female" "ip_address" "127.122.168.177" "country" "Russia" "country_code" "RU" "city" "Sedkyrkeshch" "longitude" "50.9507271" "latitude" "61.7242142" "last_login" "1574632485" +HSET "user:5668" "first_name" "Zelda" "last_name" "Fronek" "email" "zfronekin@creativecommons.org" "gender" "female" "ip_address" "229.252.247.109" "country" "China" "country_code" "CN" "city" "Wangjiahe" "longitude" "116.196278" "latitude" "31.282291" "last_login" "1579679902" +HSET "user:5669" "first_name" "Roma" "last_name" "Crich" "email" "rcrichio@webmd.com" "gender" "male" "ip_address" "197.215.137.141" "country" "Portugal" "country_code" "PT" "city" "Carrascal" "longitude" "-7.9808794" "latitude" "39.7213971" "last_login" "1592175300" +HSET "user:5670" "first_name" "Hortense" "last_name" "Hembrow" "email" "hhembrowip@google.es" "gender" "female" "ip_address" "149.87.193.246" "country" "Mauritius" "country_code" "MU" "city" "Saint Hubert" "longitude" "57.6424881" "latitude" "-20.3656796" "last_login" "1587398363" +HSET "user:5671" "first_name" "Junette" "last_name" "Bergin" "email" "jberginiq@delicious.com" "gender" "female" "ip_address" "41.10.80.209" "country" "China" "country_code" "CN" "city" "Guiyang" "longitude" "106.630153" "latitude" "26.647661" "last_login" "1591169553" +HSET "user:5672" "first_name" "Jethro" "last_name" "Linkleter" "email" "jlinkleterir@illinois.edu" "gender" "male" "ip_address" "169.201.224.30" "country" "Lithuania" "country_code" "LT" "city" "Venta" "longitude" "22.3459251" "latitude" "56.3121599" "last_login" "1577406097" +HSET "user:5673" "first_name" "Melamie" "last_name" "Ledger" "email" "mledgeris@senate.gov" "gender" "female" "ip_address" "229.119.154.215" "country" "Afghanistan" "country_code" "AF" "city" "Khānaqāh" "longitude" "69.53695" "latitude" "36.62587" "last_login" "1579014357" +HSET "user:5674" "first_name" "Abby" "last_name" "Olsson" "email" "aolssonit@indiegogo.com" "gender" "female" "ip_address" "14.117.212.103" "country" "Indonesia" "country_code" "ID" "city" "Tanahmerah" "longitude" "140.276147" "latitude" "-6.080007" "last_login" "1591319460" +HSET "user:5675" "first_name" "Yorker" "last_name" "Grollmann" "email" "ygrollmanniu@ed.gov" "gender" "male" "ip_address" "63.80.146.6" "country" "Mali" "country_code" "ML" "city" "Kidal" "longitude" "1.4096535" "latitude" "18.4520713" "last_login" "1595944768" +HSET "user:5676" "first_name" "Hermia" "last_name" "Marke" "email" "hmarkeiv@squarespace.com" "gender" "female" "ip_address" "93.164.16.209" "country" "Poland" "country_code" "PL" "city" "Grojec" "longitude" "19.234704" "latitude" "49.9800949" "last_login" "1598370569" +HSET "user:5677" "first_name" "Araldo" "last_name" "Lief" "email" "aliefiw@weebly.com" "gender" "male" "ip_address" "249.41.230.121" "country" "Malaysia" "country_code" "MY" "city" "Kota Kinabalu" "longitude" "116.0761121" "latitude" "5.9840985" "last_login" "1591251709" +HSET "user:5678" "first_name" "Ellynn" "last_name" "Playford" "email" "eplayfordix@indiatimes.com" "gender" "female" "ip_address" "41.112.182.222" "country" "Tanzania" "country_code" "TZ" "city" "Malya" "longitude" "33.5140043" "latitude" "-2.9765098" "last_login" "1599369825" +HSET "user:5679" "first_name" "Odell" "last_name" "Harradine" "email" "oharradineiy@wix.com" "gender" "male" "ip_address" "122.230.214.233" "country" "Zambia" "country_code" "ZM" "city" "Mbala" "longitude" "31.3655989" "latitude" "-8.8536444" "last_login" "1584224843" +HSET "user:5680" "first_name" "Nappie" "last_name" "Upstone" "email" "nupstoneiz@nymag.com" "gender" "male" "ip_address" "139.126.2.63" "country" "Slovenia" "country_code" "SI" "city" "Mlaka pri Kranju" "longitude" "14.349659" "latitude" "46.2840425" "last_login" "1582798402" +HSET "user:5681" "first_name" "Rriocard" "last_name" "Pollins" "email" "rpollinsj0@samsung.com" "gender" "male" "ip_address" "84.53.78.93" "country" "Mauritius" "country_code" "MU" "city" "Ecroignard" "longitude" "57.741701" "latitude" "-20.227929" "last_login" "1579522084" +HSET "user:5682" "first_name" "Harlin" "last_name" "MacFaell" "email" "hmacfaellj1@jigsy.com" "gender" "male" "ip_address" "107.112.46.108" "country" "Brazil" "country_code" "BR" "city" "Costa Rica" "longitude" "-51.3429885" "latitude" "-18.7643566" "last_login" "1592682533" +HSET "user:5683" "first_name" "Clifford" "last_name" "Monument" "email" "cmonumentj2@mit.edu" "gender" "male" "ip_address" "99.115.109.79" "country" "France" "country_code" "FR" "city" "Trélazé" "longitude" "1.7314818" "latitude" "49.6488646" "last_login" "1587363645" +HSET "user:5684" "first_name" "Kahaleel" "last_name" "Rigg" "email" "kriggj3@google.pl" "gender" "male" "ip_address" "46.213.57.39" "country" "Mauritius" "country_code" "MU" "city" "Bel Air Rivière Sèche" "longitude" "57.7544636" "latitude" "-20.2582305" "last_login" "1595339382" +HSET "user:5685" "first_name" "Job" "last_name" "Ondra" "email" "jondraj4@technorati.com" "gender" "male" "ip_address" "138.68.233.108" "country" "Lithuania" "country_code" "LT" "city" "Jieznas" "longitude" "24.16667" "latitude" "54.6" "last_login" "1571948976" +HSET "user:5686" "first_name" "Teddie" "last_name" "Forseith" "email" "tforseithj5@who.int" "gender" "female" "ip_address" "137.74.99.140" "country" "Russia" "country_code" "RU" "city" "Poykovskiy" "longitude" "71.8982957" "latitude" "60.994897" "last_login" "1590139928" +HSET "user:5687" "first_name" "Allianora" "last_name" "Noury" "email" "anouryj6@epa.gov" "gender" "female" "ip_address" "130.126.243.173" "country" "Mexico" "country_code" "MX" "city" "Benito Juarez" "longitude" "-93.6001191" "latitude" "17.9719887" "last_login" "1592271296" +HSET "user:5688" "first_name" "Dacie" "last_name" "Bannester" "email" "dbannesterj7@plala.or.jp" "gender" "female" "ip_address" "144.210.170.124" "country" "Nepal" "country_code" "NP" "city" "Lahān" "longitude" "86.4794359" "latitude" "26.7297141" "last_login" "1598685855" +HSET "user:5689" "first_name" "Lana" "last_name" "Burchall" "email" "lburchallj8@icq.com" "gender" "female" "ip_address" "75.138.133.142" "country" "Greece" "country_code" "GR" "city" "Emporeío" "longitude" "25.4459308" "latitude" "36.3573462" "last_login" "1593155227" +HSET "user:5690" "first_name" "Bertram" "last_name" "Saiz" "email" "bsaizj9@tripadvisor.com" "gender" "male" "ip_address" "56.229.175.178" "country" "China" "country_code" "CN" "city" "Chengfeng" "longitude" "118.963532" "latitude" "25.867277" "last_login" "1576574661" +HSET "user:5691" "first_name" "Jill" "last_name" "Mattioni" "email" "jmattionija@shutterfly.com" "gender" "female" "ip_address" "102.127.12.246" "country" "China" "country_code" "CN" "city" "Chendong" "longitude" "117.9249002" "latitude" "35.8939566" "last_login" "1590684070" +HSET "user:5692" "first_name" "Bartolomeo" "last_name" "Etoile" "email" "betoilejb@archive.org" "gender" "male" "ip_address" "164.153.25.110" "country" "Sweden" "country_code" "SE" "city" "Helsingborg" "longitude" "12.6933337" "latitude" "56.0485726" "last_login" "1580911557" +HSET "user:5693" "first_name" "Fin" "last_name" "Snoad" "email" "fsnoadjc@wp.com" "gender" "male" "ip_address" "62.138.4.9" "country" "Philippines" "country_code" "PH" "city" "Lawa-an" "longitude" "121.0108932" "latitude" "14.5659717" "last_login" "1595877930" +HSET "user:5694" "first_name" "Natasha" "last_name" "Beincken" "email" "nbeinckenjd@creativecommons.org" "gender" "female" "ip_address" "173.228.223.104" "country" "France" "country_code" "FR" "city" "Andrézieux-Bouthéon" "longitude" "4.2552114" "latitude" "45.521777" "last_login" "1569970684" +HSET "user:5695" "first_name" "Addie" "last_name" "Dizlie" "email" "adizlieje@cargocollective.com" "gender" "female" "ip_address" "69.64.119.173" "country" "Philippines" "country_code" "PH" "city" "Maria Aurora" "longitude" "121.4816411" "latitude" "15.7967076" "last_login" "1599536920" +HSET "user:5696" "first_name" "Alf" "last_name" "Fortey" "email" "aforteyjf@sina.com.cn" "gender" "male" "ip_address" "146.242.93.20" "country" "Peru" "country_code" "PE" "city" "Aco" "longitude" "-77.553344" "latitude" "-9.3601019" "last_login" "1583555480" +HSET "user:5697" "first_name" "Emmalynne" "last_name" "Kikke" "email" "ekikkejg@macromedia.com" "gender" "female" "ip_address" "241.102.232.111" "country" "China" "country_code" "CN" "city" "Liupai" "longitude" "116.363671" "latitude" "39.957737" "last_login" "1598980425" +HSET "user:5698" "first_name" "Carmella" "last_name" "Beevor" "email" "cbeevorjh@issuu.com" "gender" "female" "ip_address" "207.31.141.104" "country" "Russia" "country_code" "RU" "city" "Temryuk" "longitude" "37.3986836" "latitude" "45.294498" "last_login" "1579159273" +HSET "user:5699" "first_name" "Phebe" "last_name" "Saladine" "email" "psaladineji@wikispaces.com" "gender" "female" "ip_address" "102.23.37.159" "country" "Poland" "country_code" "PL" "city" "Regnów" "longitude" "20.3872239" "latitude" "51.7480675" "last_login" "1591108487" +HSET "user:5700" "first_name" "Jemie" "last_name" "Nestle" "email" "jnestlejj@census.gov" "gender" "female" "ip_address" "144.194.92.1" "country" "Indonesia" "country_code" "ID" "city" "Rundeng" "longitude" "97.8503951" "latitude" "2.6928351" "last_login" "1592627605" +HSET "user:5701" "first_name" "Morry" "last_name" "Alvarado" "email" "malvaradojk@mit.edu" "gender" "male" "ip_address" "182.242.228.102" "country" "Costa Rica" "country_code" "CR" "city" "Fortuna" "longitude" "-85.2017554" "latitude" "10.5943971" "last_login" "1579092240" +HSET "user:5702" "first_name" "Port" "last_name" "Barcke" "email" "pbarckejl@pagesperso-orange.fr" "gender" "male" "ip_address" "104.52.2.6" "country" "France" "country_code" "FR" "city" "Pantin" "longitude" "4.26286" "latitude" "45.7608815" "last_login" "1597375128" +HSET "user:5703" "first_name" "Cristi" "last_name" "Edsall" "email" "cedsalljm@wikia.com" "gender" "female" "ip_address" "218.69.57.124" "country" "Chad" "country_code" "TD" "city" "Ngama" "longitude" "17.1632224" "latitude" "11.7931418" "last_login" "1582011386" +HSET "user:5704" "first_name" "Mark" "last_name" "Huitt" "email" "mhuittjn@rediff.com" "gender" "male" "ip_address" "224.204.112.38" "country" "China" "country_code" "CN" "city" "Zhangyang" "longitude" "110.359368" "latitude" "21.270702" "last_login" "1569627343" +HSET "user:5705" "first_name" "Lawton" "last_name" "Vedyashkin" "email" "lvedyashkinjo@skype.com" "gender" "male" "ip_address" "187.40.48.135" "country" "New Zealand" "country_code" "NZ" "city" "Papatowai" "longitude" "169.4690405" "latitude" "-46.5603901" "last_login" "1571451112" +HSET "user:5706" "first_name" "Mignon" "last_name" "Bonniface" "email" "mbonnifacejp@blogspot.com" "gender" "female" "ip_address" "39.51.17.92" "country" "Mongolia" "country_code" "MN" "city" "Suugaant" "longitude" "107.04546" "latitude" "45.53257" "last_login" "1591339877" +HSET "user:5707" "first_name" "Hadrian" "last_name" "Applebee" "email" "happlebeejq@cdc.gov" "gender" "male" "ip_address" "223.23.186.137" "country" "Poland" "country_code" "PL" "city" "Goworowo" "longitude" "21.5301636" "latitude" "52.8779171" "last_login" "1579871334" +HSET "user:5708" "first_name" "Donaugh" "last_name" "Reuss" "email" "dreussjr@gizmodo.com" "gender" "male" "ip_address" "21.146.246.57" "country" "China" "country_code" "CN" "city" "Lichengdao" "longitude" "114.926498" "latitude" "38.240395" "last_login" "1595805528" +HSET "user:5709" "first_name" "Orren" "last_name" "Morriss" "email" "omorrissjs@examiner.com" "gender" "male" "ip_address" "73.48.113.121" "country" "Cyprus" "country_code" "CY" "city" "Ayia Napa" "longitude" "34.0140113" "latitude" "34.9922836" "last_login" "1569502375" +HSET "user:5710" "first_name" "Boot" "last_name" "Miquelet" "email" "bmiqueletjt@loc.gov" "gender" "male" "ip_address" "193.24.4.231" "country" "South Africa" "country_code" "ZA" "city" "Carolina" "longitude" "30.1069594" "latitude" "-26.0730802" "last_login" "1579522473" +HSET "user:5711" "first_name" "Elmira" "last_name" "Bewlie" "email" "ebewlieju@un.org" "gender" "female" "ip_address" "60.226.71.110" "country" "Argentina" "country_code" "AR" "city" "Gualeguaychú" "longitude" "-58.5069115" "latitude" "-34.6093426" "last_login" "1596286716" +HSET "user:5712" "first_name" "Willabella" "last_name" "Kinnen" "email" "wkinnenjv@acquirethisname.com" "gender" "female" "ip_address" "78.52.58.198" "country" "China" "country_code" "CN" "city" "Lanzhong" "longitude" "106.005046" "latitude" "31.558356" "last_login" "1583436655" +HSET "user:5713" "first_name" "Alva" "last_name" "Ferraraccio" "email" "aferraracciojw@tuttocitta.it" "gender" "male" "ip_address" "105.181.70.135" "country" "Estonia" "country_code" "EE" "city" "Jõhvi" "longitude" "27.4136645" "latitude" "59.3573116" "last_login" "1575038204" +HSET "user:5714" "first_name" "Shanda" "last_name" "Tarr" "email" "starrjx@eventbrite.com" "gender" "female" "ip_address" "213.132.219.63" "country" "Thailand" "country_code" "TH" "city" "Ban Fang" "longitude" "102.6402895" "latitude" "16.4504042" "last_login" "1595990068" +HSET "user:5715" "first_name" "Yoshiko" "last_name" "Aspinell" "email" "yaspinelljy@clickbank.net" "gender" "female" "ip_address" "154.106.50.95" "country" "Malaysia" "country_code" "MY" "city" "Pulau Pinang" "longitude" "100.343645" "latitude" "5.419092" "last_login" "1575951364" +HSET "user:5716" "first_name" "Cletis" "last_name" "Chiddy" "email" "cchiddyjz@so-net.ne.jp" "gender" "male" "ip_address" "165.48.162.61" "country" "China" "country_code" "CN" "city" "Golug" "longitude" "91.622728" "latitude" "30.823526" "last_login" "1591378421" +HSET "user:5717" "first_name" "Venita" "last_name" "Shalliker" "email" "vshallikerk0@blog.com" "gender" "female" "ip_address" "142.115.236.134" "country" "Colombia" "country_code" "CO" "city" "San Jacinto" "longitude" "-75.120521" "latitude" "9.834832" "last_login" "1570074087" +HSET "user:5718" "first_name" "Kim" "last_name" "Dissman" "email" "kdissmank1@live.com" "gender" "female" "ip_address" "173.28.225.34" "country" "Indonesia" "country_code" "ID" "city" "Sumberan" "longitude" "111.885002" "latitude" "-6.898384" "last_login" "1586890733" +HSET "user:5719" "first_name" "Kylie" "last_name" "Hazard" "email" "khazardk2@ifeng.com" "gender" "female" "ip_address" "66.158.91.127" "country" "Czech Republic" "country_code" "CZ" "city" "Ostrov" "longitude" "16.2794136" "latitude" "49.373136" "last_login" "1598977727" +HSET "user:5720" "first_name" "Early" "last_name" "Leehane" "email" "eleehanek3@gov.uk" "gender" "male" "ip_address" "130.27.75.18" "country" "Indonesia" "country_code" "ID" "city" "Warung Wetan" "longitude" "112.47478" "latitude" "-6.98493" "last_login" "1582527500" +HSET "user:5721" "first_name" "Aylmer" "last_name" "Andrassy" "email" "aandrassyk4@etsy.com" "gender" "male" "ip_address" "104.34.222.151" "country" "Russia" "country_code" "RU" "city" "Gorelovo" "longitude" "30.2984767" "latitude" "59.9959635" "last_login" "1574876667" +HSET "user:5722" "first_name" "Karlen" "last_name" "Scarlet" "email" "kscarletk5@about.com" "gender" "female" "ip_address" "213.190.154.184" "country" "Russia" "country_code" "RU" "city" "Lakinsk" "longitude" "39.9476278" "latitude" "56.0160374" "last_login" "1575657765" +HSET "user:5723" "first_name" "Donna" "last_name" "Craiker" "email" "dcraikerk6@ezinearticles.com" "gender" "female" "ip_address" "81.184.207.82" "country" "Brazil" "country_code" "BR" "city" "Timbaúba" "longitude" "-35.3126181" "latitude" "-7.5085719" "last_login" "1585376342" +HSET "user:5724" "first_name" "Tam" "last_name" "Simic" "email" "tsimick7@sbwire.com" "gender" "male" "ip_address" "211.123.191.38" "country" "China" "country_code" "CN" "city" "Wuquan" "longitude" "110.778411" "latitude" "21.441808" "last_login" "1568706686" +HSET "user:5725" "first_name" "Pren" "last_name" "Zywicki" "email" "pzywickik8@squarespace.com" "gender" "male" "ip_address" "254.12.67.226" "country" "China" "country_code" "CN" "city" "Yanghe" "longitude" "110.70434" "latitude" "29.26008" "last_login" "1584420305" +HSET "user:5726" "first_name" "Corby" "last_name" "Walne" "email" "cwalnek9@archive.org" "gender" "male" "ip_address" "142.218.18.42" "country" "Guatemala" "country_code" "GT" "city" "Ipala" "longitude" "-89.6618378" "latitude" "14.5482727" "last_login" "1571943004" +HSET "user:5727" "first_name" "Abdul" "last_name" "Turnbull" "email" "aturnbullka@tinyurl.com" "gender" "male" "ip_address" "249.236.248.37" "country" "Indonesia" "country_code" "ID" "city" "Glagahdowo" "longitude" "112.7355813" "latitude" "-8.0199814" "last_login" "1582925387" +HSET "user:5728" "first_name" "Carlin" "last_name" "Bulled" "email" "cbulledkb@artisteer.com" "gender" "male" "ip_address" "39.76.190.32" "country" "Thailand" "country_code" "TH" "city" "Mae Fa Luang" "longitude" "99.8913421" "latitude" "20.0450379" "last_login" "1582749274" +HSET "user:5729" "first_name" "Manny" "last_name" "Guthrum" "email" "mguthrumkc@sohu.com" "gender" "male" "ip_address" "149.110.183.240" "country" "Brazil" "country_code" "BR" "city" "Pindaré Mirim" "longitude" "-46.434476" "latitude" "-23.5000092" "last_login" "1584499414" +HSET "user:5730" "first_name" "Ade" "last_name" "Jandl" "email" "ajandlkd@google.es" "gender" "male" "ip_address" "42.2.201.103" "country" "Turkmenistan" "country_code" "TM" "city" "Gowurdak" "longitude" "66.0285106" "latitude" "37.8163881" "last_login" "1587502387" +HSET "user:5731" "first_name" "Jeremias" "last_name" "Videneev" "email" "jvideneevke@flickr.com" "gender" "male" "ip_address" "41.30.135.160" "country" "Ukraine" "country_code" "UA" "city" "Borodino" "longitude" "29.2402612" "latitude" "46.3039325" "last_login" "1583930227" +HSET "user:5732" "first_name" "Pearla" "last_name" "Gunning" "email" "pgunningkf@rediff.com" "gender" "female" "ip_address" "115.214.222.208" "country" "Peru" "country_code" "PE" "city" "Obas" "longitude" "-76.6613239" "latitude" "-9.771006" "last_login" "1599662103" +HSET "user:5733" "first_name" "Pierre" "last_name" "De Ferrari" "email" "pdeferrarikg@printfriendly.com" "gender" "male" "ip_address" "89.116.163.76" "country" "China" "country_code" "CN" "city" "Rendian" "longitude" "113.1029629" "latitude" "39.8116909" "last_login" "1593629213" +HSET "user:5734" "first_name" "Tanny" "last_name" "Zarfati" "email" "tzarfatikh@google.pl" "gender" "male" "ip_address" "192.95.223.130" "country" "Russia" "country_code" "RU" "city" "Lazarevskoye" "longitude" "39.3467" "latitude" "43.8986" "last_login" "1589908635" +HSET "user:5735" "first_name" "Karen" "last_name" "Hawkswood" "email" "khawkswoodki@youtu.be" "gender" "female" "ip_address" "192.220.118.28" "country" "Russia" "country_code" "RU" "city" "Pushkino" "longitude" "46.9776352" "latitude" "51.2291266" "last_login" "1590331337" +HSET "user:5736" "first_name" "Jehu" "last_name" "Naisby" "email" "jnaisbykj@pcworld.com" "gender" "male" "ip_address" "12.249.94.18" "country" "Germany" "country_code" "DE" "city" "Osnabrück" "longitude" "8.0495294" "latitude" "52.2415583" "last_login" "1585558760" +HSET "user:5737" "first_name" "Mallissa" "last_name" "Woollett" "email" "mwoollettkk@about.me" "gender" "female" "ip_address" "109.206.163.2" "country" "France" "country_code" "FR" "city" "Saint-Quentin-en-Yvelines" "longitude" "2.0425663" "latitude" "48.7855359" "last_login" "1583282034" +HSET "user:5738" "first_name" "Myriam" "last_name" "MacGauhy" "email" "mmacgauhykl@tinypic.com" "gender" "female" "ip_address" "226.111.120.209" "country" "Indonesia" "country_code" "ID" "city" "Simpang Ulim" "longitude" "97.5788975" "latitude" "5.1088508" "last_login" "1576487596" +HSET "user:5739" "first_name" "Jimmie" "last_name" "Dobson" "email" "jdobsonkm@prweb.com" "gender" "male" "ip_address" "128.164.176.88" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0922798" "latitude" "59.3429221" "last_login" "1587003392" +HSET "user:5740" "first_name" "Nani" "last_name" "MacHarg" "email" "nmachargkn@go.com" "gender" "female" "ip_address" "3.189.29.227" "country" "Peru" "country_code" "PE" "city" "Curpahuasi" "longitude" "-72.676201" "latitude" "-14.07109" "last_login" "1576109197" +HSET "user:5741" "first_name" "Rhiamon" "last_name" "Cockill" "email" "rcockillko@oakley.com" "gender" "female" "ip_address" "251.9.37.47" "country" "Macedonia" "country_code" "MK" "city" "Радовиш" "longitude" "22.4665446" "latitude" "41.634449" "last_login" "1579246018" +HSET "user:5742" "first_name" "Emilee" "last_name" "Dodell" "email" "edodellkp@sina.com.cn" "gender" "female" "ip_address" "233.81.81.67" "country" "China" "country_code" "CN" "city" "Guhua" "longitude" "108.972883" "latitude" "34.258826" "last_login" "1591067901" +HSET "user:5743" "first_name" "Langston" "last_name" "Dinkin" "email" "ldinkinkq@ibm.com" "gender" "male" "ip_address" "160.164.253.80" "country" "Finland" "country_code" "FI" "city" "Kaskinen" "longitude" "21.2277852" "latitude" "62.3822834" "last_login" "1586239415" +HSET "user:5744" "first_name" "Fiorenze" "last_name" "Kenealy" "email" "fkenealykr@51.la" "gender" "female" "ip_address" "130.233.14.95" "country" "Philippines" "country_code" "PH" "city" "Bungabon" "longitude" "121.1703921" "latitude" "14.2139963" "last_login" "1579744838" +HSET "user:5745" "first_name" "Eugenia" "last_name" "Meneer" "email" "emeneerks@examiner.com" "gender" "female" "ip_address" "53.83.136.238" "country" "Philippines" "country_code" "PH" "city" "Santa Ignacia" "longitude" "120.438477" "latitude" "15.613097" "last_login" "1585746507" +HSET "user:5746" "first_name" "Rollin" "last_name" "Auchinleck" "email" "rauchinleckkt@army.mil" "gender" "male" "ip_address" "217.217.168.4" "country" "Syria" "country_code" "SY" "city" "Dārayyā" "longitude" "36.2359629" "latitude" "33.456443" "last_login" "1568701619" +HSET "user:5747" "first_name" "Dickie" "last_name" "Stean" "email" "dsteanku@list-manage.com" "gender" "male" "ip_address" "183.165.2.132" "country" "Russia" "country_code" "RU" "city" "Severomorsk" "longitude" "33.4168559" "latitude" "69.0603424" "last_login" "1594455991" +HSET "user:5748" "first_name" "Kelbee" "last_name" "Paolo" "email" "kpaolokv@theguardian.com" "gender" "male" "ip_address" "19.58.93.91" "country" "China" "country_code" "CN" "city" "Jinchuan" "longitude" "102.194089" "latitude" "38.521085" "last_login" "1572230559" +HSET "user:5749" "first_name" "Bogart" "last_name" "Eggers" "email" "beggerskw@ebay.co.uk" "gender" "male" "ip_address" "238.34.9.107" "country" "Brazil" "country_code" "BR" "city" "Quirinópolis" "longitude" "-50.4551598" "latitude" "-18.4476442" "last_login" "1586409013" +HSET "user:5750" "first_name" "Dolli" "last_name" "Jeannaud" "email" "djeannaudkx@answers.com" "gender" "female" "ip_address" "220.108.96.196" "country" "Vietnam" "country_code" "VN" "city" "Sơn Tây" "longitude" "105.4969964" "latitude" "21.1032279" "last_login" "1571565750" +HSET "user:5751" "first_name" "Tristan" "last_name" "Skeat" "email" "tskeatky@craigslist.org" "gender" "male" "ip_address" "29.123.96.216" "country" "Czech Republic" "country_code" "CZ" "city" "Meziměstí" "longitude" "16.2483966" "latitude" "50.6261687" "last_login" "1590612832" +HSET "user:5752" "first_name" "Drucy" "last_name" "Vass" "email" "dvasskz@macromedia.com" "gender" "female" "ip_address" "191.7.76.30" "country" "Canada" "country_code" "CA" "city" "Sechelt" "longitude" "-123.75903" "latitude" "49.47512" "last_login" "1596520191" +HSET "user:5753" "first_name" "Sig" "last_name" "Mattacks" "email" "smattacksl0@sina.com.cn" "gender" "male" "ip_address" "222.48.89.66" "country" "Peru" "country_code" "PE" "city" "Chalcos" "longitude" "-73.758263" "latitude" "-13.8556" "last_login" "1589931636" +HSET "user:5754" "first_name" "Tobe" "last_name" "Shurman" "email" "tshurmanl1@stumbleupon.com" "gender" "male" "ip_address" "96.2.119.122" "country" "Zimbabwe" "country_code" "ZW" "city" "Mvuma" "longitude" "30.525031" "latitude" "-19.2773694" "last_login" "1590478901" +HSET "user:5755" "first_name" "Alexandros" "last_name" "Marsay" "email" "amarsayl2@craigslist.org" "gender" "male" "ip_address" "12.129.250.226" "country" "Syria" "country_code" "SY" "city" "Bāniyās" "longitude" "35.9533322" "latitude" "35.1852624" "last_login" "1584849977" +HSET "user:5756" "first_name" "Hillery" "last_name" "Heck" "email" "hheckl3@dmoz.org" "gender" "male" "ip_address" "139.115.253.164" "country" "China" "country_code" "CN" "city" "Jiangkou" "longitude" "108.839557" "latitude" "27.69965" "last_login" "1586305400" +HSET "user:5757" "first_name" "Lindsey" "last_name" "Room" "email" "lrooml4@purevolume.com" "gender" "male" "ip_address" "122.228.131.36" "country" "Indonesia" "country_code" "ID" "city" "Kebunkelapa" "longitude" "98.478759" "latitude" "3.8788254" "last_login" "1575315983" +HSET "user:5758" "first_name" "Letisha" "last_name" "Batcock" "email" "lbatcockl5@census.gov" "gender" "female" "ip_address" "98.79.98.119" "country" "United States" "country_code" "US" "city" "Albany" "longitude" "-73.8301437" "latitude" "42.722661" "last_login" "1587391172" +HSET "user:5759" "first_name" "Corbet" "last_name" "Annis" "email" "cannisl6@github.io" "gender" "male" "ip_address" "101.74.120.249" "country" "Honduras" "country_code" "HN" "city" "Buenos Aires" "longitude" "-58.4297385" "latitude" "-34.5890239" "last_login" "1592686817" +HSET "user:5760" "first_name" "Allard" "last_name" "Atmore" "email" "aatmorel7@bandcamp.com" "gender" "male" "ip_address" "59.220.211.88" "country" "Germany" "country_code" "DE" "city" "Düsseldorf" "longitude" "6.7825598" "latitude" "51.2149435" "last_login" "1583764193" +HSET "user:5761" "first_name" "Kendrick" "last_name" "Whieldon" "email" "kwhieldonl8@51.la" "gender" "male" "ip_address" "62.121.175.114" "country" "Malaysia" "country_code" "MY" "city" "Kuala Lumpur" "longitude" "101.7178316" "latitude" "3.1523104" "last_login" "1595352209" +HSET "user:5762" "first_name" "Barret" "last_name" "Larn" "email" "blarnl9@paginegialle.it" "gender" "male" "ip_address" "144.23.53.10" "country" "Canada" "country_code" "CA" "city" "Lacolle" "longitude" "-73.36585" "latitude" "45.08338" "last_login" "1592864373" +HSET "user:5763" "first_name" "Vinny" "last_name" "Thorneloe" "email" "vthorneloela@studiopress.com" "gender" "female" "ip_address" "212.187.209.199" "country" "Sweden" "country_code" "SE" "city" "Ljungby" "longitude" "12.9321834" "latitude" "56.67925" "last_login" "1590827365" +HSET "user:5764" "first_name" "Olvan" "last_name" "Guillond" "email" "oguillondlb@dell.com" "gender" "male" "ip_address" "150.106.173.51" "country" "France" "country_code" "FR" "city" "Villejuif" "longitude" "2.368326" "latitude" "48.7823921" "last_login" "1570250392" +HSET "user:5765" "first_name" "Hazel" "last_name" "Gretham" "email" "hgrethamlc@drupal.org" "gender" "male" "ip_address" "216.40.208.176" "country" "Indonesia" "country_code" "ID" "city" "Matangpayang" "longitude" "97.3705639" "latitude" "5.191484" "last_login" "1581821527" +HSET "user:5766" "first_name" "Erica" "last_name" "Pirrie" "email" "epirrield@google.com" "gender" "female" "ip_address" "111.59.9.204" "country" "Yemen" "country_code" "YE" "city" "Ad Dīs ash Sharqīyah" "longitude" "49.94778" "latitude" "14.90806" "last_login" "1598337953" +HSET "user:5767" "first_name" "Andras" "last_name" "O'Henecan" "email" "aohenecanle@walmart.com" "gender" "male" "ip_address" "107.39.158.64" "country" "Indonesia" "country_code" "ID" "city" "Bojongbenteng" "longitude" "108.2102" "latitude" "-7.1278" "last_login" "1584178452" +HSET "user:5768" "first_name" "Papagena" "last_name" "Dougill" "email" "pdougilllf@stumbleupon.com" "gender" "female" "ip_address" "2.131.145.204" "country" "Brazil" "country_code" "BR" "city" "Itatuba" "longitude" "-35.5876697" "latitude" "-7.4043939" "last_login" "1587353511" +HSET "user:5769" "first_name" "Fredra" "last_name" "Capeling" "email" "fcapelinglg@t-online.de" "gender" "female" "ip_address" "28.73.251.163" "country" "Russia" "country_code" "RU" "city" "Amga" "longitude" "30.3209555" "latitude" "59.924735" "last_login" "1589877781" +HSET "user:5770" "first_name" "Ali" "last_name" "De Santos" "email" "adesantoslh@desdev.cn" "gender" "male" "ip_address" "96.91.136.118" "country" "Italy" "country_code" "IT" "city" "Napoli" "longitude" "14.2657584" "latitude" "40.8782107" "last_login" "1598803029" +HSET "user:5771" "first_name" "Terri-jo" "last_name" "Gerler" "email" "tgerlerli@nymag.com" "gender" "female" "ip_address" "231.100.198.212" "country" "Japan" "country_code" "JP" "city" "Moriyama" "longitude" "136.9552596" "latitude" "35.1973352" "last_login" "1595858239" +HSET "user:5772" "first_name" "Sascha" "last_name" "Royds" "email" "sroydslj@cpanel.net" "gender" "male" "ip_address" "12.54.28.57" "country" "Thailand" "country_code" "TH" "city" "Ban Bueng" "longitude" "101.1015323" "latitude" "13.3200851" "last_login" "1579726283" +HSET "user:5773" "first_name" "Kym" "last_name" "Leggs" "email" "kleggslk@buzzfeed.com" "gender" "female" "ip_address" "18.72.41.232" "country" "Vietnam" "country_code" "VN" "city" "Ninh Giang" "longitude" "106.3699271" "latitude" "20.7491091" "last_login" "1599962915" +HSET "user:5774" "first_name" "Earle" "last_name" "Mayers" "email" "emayersll@forbes.com" "gender" "male" "ip_address" "12.238.84.169" "country" "Poland" "country_code" "PL" "city" "Jabłonica Polska" "longitude" "20.7626339" "latitude" "51.310421" "last_login" "1579338693" +HSET "user:5775" "first_name" "Kendre" "last_name" "Milch" "email" "kmilchlm@posterous.com" "gender" "female" "ip_address" "198.220.193.117" "country" "China" "country_code" "CN" "city" "Shuanghe" "longitude" "82.353656" "latitude" "44.840524" "last_login" "1587382623" +HSET "user:5776" "first_name" "Donalt" "last_name" "Helliwell" "email" "dhelliwellln@xing.com" "gender" "male" "ip_address" "179.156.124.191" "country" "Russia" "country_code" "RU" "city" "Ten’gushevo" "longitude" "-47.4073665" "latitude" "-22.6091889" "last_login" "1569965659" +HSET "user:5777" "first_name" "Patrizio" "last_name" "Flattman" "email" "pflattmanlo@seesaa.net" "gender" "male" "ip_address" "54.165.17.65" "country" "Cuba" "country_code" "CU" "city" "Palmira" "longitude" "-80.3936994" "latitude" "22.2455315" "last_login" "1593665547" +HSET "user:5778" "first_name" "Silvia" "last_name" "Stedell" "email" "sstedelllp@psu.edu" "gender" "female" "ip_address" "7.4.141.235" "country" "Russia" "country_code" "RU" "city" "Chirkey" "longitude" "46.9788288" "latitude" "42.9612827" "last_login" "1572516274" +HSET "user:5779" "first_name" "Stephanie" "last_name" "Segges" "email" "sseggeslq@indiegogo.com" "gender" "female" "ip_address" "46.194.195.35" "country" "Croatia" "country_code" "HR" "city" "Vuka" "longitude" "18.492549" "latitude" "45.4340688" "last_login" "1582647626" +HSET "user:5780" "first_name" "Gale" "last_name" "Bauld" "email" "gbauldlr@soundcloud.com" "gender" "female" "ip_address" "42.73.115.126" "country" "Guatemala" "country_code" "GT" "city" "San Felipe" "longitude" "-91.578904" "latitude" "14.63441" "last_login" "1599757003" +HSET "user:5781" "first_name" "Alberto" "last_name" "Hannon" "email" "ahannonls@delicious.com" "gender" "male" "ip_address" "244.206.115.143" "country" "Philippines" "country_code" "PH" "city" "Santa Paz" "longitude" "124.798851" "latitude" "10.2515803" "last_login" "1584517196" +HSET "user:5782" "first_name" "Rosemaria" "last_name" "Ciardo" "email" "rciardolt@dailymotion.com" "gender" "female" "ip_address" "51.178.225.119" "country" "France" "country_code" "FR" "city" "Cergy-Pontoise" "longitude" "2.0362602" "latitude" "49.1025395" "last_login" "1579176539" +HSET "user:5783" "first_name" "Flemming" "last_name" "Benoist" "email" "fbenoistlu@reference.com" "gender" "male" "ip_address" "108.161.206.189" "country" "China" "country_code" "CN" "city" "Lushan" "longitude" "115.9942491" "latitude" "29.5792603" "last_login" "1591217275" +HSET "user:5784" "first_name" "Keelby" "last_name" "Opdenort" "email" "kopdenortlv@xrea.com" "gender" "male" "ip_address" "162.25.93.28" "country" "Venezuela" "country_code" "VE" "city" "El Sombrero" "longitude" "-67.0613528" "latitude" "9.3887516" "last_login" "1593033119" +HSET "user:5785" "first_name" "Manon" "last_name" "Legister" "email" "mlegisterlw@engadget.com" "gender" "female" "ip_address" "184.64.159.250" "country" "Saudi Arabia" "country_code" "SA" "city" "Al Qurayn" "longitude" "43.3584284" "latitude" "26.0172503" "last_login" "1592760459" +HSET "user:5786" "first_name" "Neile" "last_name" "Scandrite" "email" "nscandritelx@google.nl" "gender" "female" "ip_address" "230.142.85.4" "country" "Dominican Republic" "country_code" "DO" "city" "Bonao" "longitude" "-70.41976" "latitude" "18.9364797" "last_login" "1584357539" +HSET "user:5787" "first_name" "Nickey" "last_name" "Poley" "email" "npoleyly@sina.com.cn" "gender" "male" "ip_address" "191.196.120.232" "country" "Portugal" "country_code" "PT" "city" "Vilar do Monte" "longitude" "-8.6714665" "latitude" "41.558895" "last_login" "1575942727" +HSET "user:5788" "first_name" "Lillian" "last_name" "Lecointe" "email" "llecointelz@who.int" "gender" "female" "ip_address" "163.137.201.197" "country" "Paraguay" "country_code" "PY" "city" "Piribebuy" "longitude" "-57.0421483" "latitude" "-25.4648258" "last_login" "1598122117" +HSET "user:5789" "first_name" "Belvia" "last_name" "Bogays" "email" "bbogaysm0@umich.edu" "gender" "female" "ip_address" "254.110.36.178" "country" "Indonesia" "country_code" "ID" "city" "Watodei" "longitude" "123.2254725" "latitude" "-8.2919428" "last_login" "1583380974" +HSET "user:5790" "first_name" "Erik" "last_name" "Godbald" "email" "egodbaldm1@usgs.gov" "gender" "male" "ip_address" "5.251.207.146" "country" "Brazil" "country_code" "BR" "city" "Jardim do Seridó" "longitude" "-36.7731681" "latitude" "-6.5843262" "last_login" "1578706950" +HSET "user:5791" "first_name" "Gard" "last_name" "O'Neary" "email" "gonearym2@typepad.com" "gender" "male" "ip_address" "247.234.208.63" "country" "Colombia" "country_code" "CO" "city" "Dos Quebradas" "longitude" "-75.6499025" "latitude" "4.8271607" "last_login" "1576048902" +HSET "user:5792" "first_name" "Prudy" "last_name" "Kohneke" "email" "pkohnekem3@vimeo.com" "gender" "female" "ip_address" "199.147.109.48" "country" "Brazil" "country_code" "BR" "city" "Benevides" "longitude" "-48.2592606" "latitude" "-1.3524989" "last_login" "1569612362" +HSET "user:5793" "first_name" "Fenelia" "last_name" "Atcheson" "email" "fatchesonm4@businesswire.com" "gender" "female" "ip_address" "185.197.49.29" "country" "China" "country_code" "CN" "city" "Yanglin" "longitude" "112.497228" "latitude" "27.955261" "last_login" "1600134935" +HSET "user:5794" "first_name" "Horace" "last_name" "Phant" "email" "hphantm5@pinterest.com" "gender" "male" "ip_address" "24.65.165.147" "country" "China" "country_code" "CN" "city" "Ershilipu" "longitude" "109.5533333" "latitude" "36.6366667" "last_login" "1586687371" +HSET "user:5795" "first_name" "Ody" "last_name" "Weinberg" "email" "oweinbergm6@umn.edu" "gender" "male" "ip_address" "50.184.156.132" "country" "Indonesia" "country_code" "ID" "city" "Sasar" "longitude" "119.9357066" "latitude" "-9.2759427" "last_login" "1583484491" +HSET "user:5796" "first_name" "Phip" "last_name" "McBoyle" "email" "pmcboylem7@squarespace.com" "gender" "male" "ip_address" "225.48.89.134" "country" "Bangladesh" "country_code" "BD" "city" "Mādārīpur" "longitude" "90.1869644" "latitude" "23.2393346" "last_login" "1592286976" +HSET "user:5797" "first_name" "Stuart" "last_name" "Johantges" "email" "sjohantgesm8@patch.com" "gender" "male" "ip_address" "36.47.161.74" "country" "North Korea" "country_code" "KP" "city" "Ongjin" "longitude" "125.3575974" "latitude" "37.9360433" "last_login" "1576048133" +HSET "user:5798" "first_name" "Reinhold" "last_name" "Shotter" "email" "rshotterm9@chron.com" "gender" "male" "ip_address" "196.230.254.30" "country" "Greece" "country_code" "GR" "city" "Gómfoi" "longitude" "21.6928339" "latitude" "39.4643574" "last_login" "1590245693" +HSET "user:5799" "first_name" "Celestine" "last_name" "Macon" "email" "cmaconma@nba.com" "gender" "female" "ip_address" "144.217.255.211" "country" "Yemen" "country_code" "YE" "city" "‘Ubāl" "longitude" "43.54444" "latitude" "14.98808" "last_login" "1571825734" +HSET "user:5800" "first_name" "Gregorio" "last_name" "Stonnell" "email" "gstonnellmb@typepad.com" "gender" "male" "ip_address" "108.247.46.126" "country" "Mauritania" "country_code" "MR" "city" "Atar" "longitude" "-13.052978" "latitude" "20.5072923" "last_login" "1584314280" +HSET "user:5801" "first_name" "Lonnie" "last_name" "Szymanek" "email" "lszymanekmc@eventbrite.com" "gender" "male" "ip_address" "247.158.129.170" "country" "Croatia" "country_code" "HR" "city" "Tenja" "longitude" "18.7768698" "latitude" "45.4835641" "last_login" "1576545850" +HSET "user:5802" "first_name" "Pernell" "last_name" "Rodolf" "email" "prodolfmd@google.fr" "gender" "male" "ip_address" "227.205.58.233" "country" "Sweden" "country_code" "SE" "city" "Färjestaden" "longitude" "16.6880656" "latitude" "56.7155821" "last_login" "1583142502" +HSET "user:5803" "first_name" "Julio" "last_name" "Hurne" "email" "jhurneme@scribd.com" "gender" "male" "ip_address" "102.182.107.170" "country" "China" "country_code" "CN" "city" "Jianshe" "longitude" "119.9742793" "latitude" "31.7711077" "last_login" "1600260788" +HSET "user:5804" "first_name" "Rube" "last_name" "Dell 'Orto" "email" "rdellortomf@berkeley.edu" "gender" "male" "ip_address" "195.143.127.204" "country" "Tunisia" "country_code" "TN" "city" "Banī Khaddāsh" "longitude" "10.2" "latitude" "33.25" "last_login" "1585329373" +HSET "user:5805" "first_name" "Claus" "last_name" "O'Nowlan" "email" "conowlanmg@purevolume.com" "gender" "male" "ip_address" "229.178.178.55" "country" "Indonesia" "country_code" "ID" "city" "Ringinagung" "longitude" "111.3158022" "latitude" "-7.6645385" "last_login" "1587742292" +HSET "user:5806" "first_name" "Sidnee" "last_name" "Lasseter" "email" "slassetermh@va.gov" "gender" "male" "ip_address" "44.224.33.154" "country" "Russia" "country_code" "RU" "city" "Leninogorsk" "longitude" "52.4387134" "latitude" "54.6001467" "last_login" "1595219673" +HSET "user:5807" "first_name" "Kay" "last_name" "Godsell" "email" "kgodsellmi@imdb.com" "gender" "female" "ip_address" "252.212.139.44" "country" "Indonesia" "country_code" "ID" "city" "Karanganyar" "longitude" "111.0460407" "latitude" "-7.6387228" "last_login" "1594706943" +HSET "user:5808" "first_name" "Alvy" "last_name" "Bettison" "email" "abettisonmj@archive.org" "gender" "male" "ip_address" "12.128.48.202" "country" "Sweden" "country_code" "SE" "city" "Solna" "longitude" "17.9843165" "latitude" "59.3514599" "last_login" "1592140261" +HSET "user:5809" "first_name" "Job" "last_name" "Bean" "email" "jbeanmk@intel.com" "gender" "male" "ip_address" "114.219.118.2" "country" "France" "country_code" "FR" "city" "La Chapelle-sur-Erdre" "longitude" "-1.5349069" "latitude" "47.3362701" "last_login" "1591765477" +HSET "user:5810" "first_name" "Leslie" "last_name" "Bloxsome" "email" "lbloxsomeml@stanford.edu" "gender" "male" "ip_address" "113.114.216.242" "country" "Russia" "country_code" "RU" "city" "Solotcha" "longitude" "39.833505" "latitude" "54.789029" "last_login" "1576722200" +HSET "user:5811" "first_name" "Clo" "last_name" "Brisco" "email" "cbriscomm@youku.com" "gender" "female" "ip_address" "206.202.221.246" "country" "Sweden" "country_code" "SE" "city" "Västerås" "longitude" "16.4764129" "latitude" "59.3754793" "last_login" "1590063768" +HSET "user:5812" "first_name" "Wes" "last_name" "Casillis" "email" "wcasillismn@instagram.com" "gender" "male" "ip_address" "60.169.111.128" "country" "France" "country_code" "FR" "city" "Villeneuve-sur-Lot" "longitude" "0.7060015" "latitude" "44.4103234" "last_login" "1583837988" +HSET "user:5813" "first_name" "Ursuline" "last_name" "Decayette" "email" "udecayettemo@spotify.com" "gender" "female" "ip_address" "207.168.106.29" "country" "Russia" "country_code" "RU" "city" "Tsotsin-Yurt" "longitude" "45.9860099" "latitude" "43.2496743" "last_login" "1587265678" +HSET "user:5814" "first_name" "Gweneth" "last_name" "Dottridge" "email" "gdottridgemp@google.it" "gender" "female" "ip_address" "96.56.1.177" "country" "France" "country_code" "FR" "city" "Fosses" "longitude" "0.057855" "latitude" "44.5943255" "last_login" "1589312504" +HSET "user:5815" "first_name" "Leroi" "last_name" "Mathely" "email" "lmathelymq@ted.com" "gender" "male" "ip_address" "94.63.124.198" "country" "Kyrgyzstan" "country_code" "KG" "city" "Kyzyl-Kyya" "longitude" "72.1297653" "latitude" "40.2487413" "last_login" "1580549014" +HSET "user:5816" "first_name" "Delcina" "last_name" "Goard" "email" "dgoardmr@cbslocal.com" "gender" "female" "ip_address" "178.32.138.200" "country" "China" "country_code" "CN" "city" "Gengma" "longitude" "99.397126" "latitude" "23.538092" "last_login" "1573585910" +HSET "user:5817" "first_name" "Sharon" "last_name" "Camelli" "email" "scamellims@instagram.com" "gender" "female" "ip_address" "30.111.113.75" "country" "France" "country_code" "FR" "city" "Saint-Julien-en-Genevois" "longitude" "6.0796844" "latitude" "46.1468572" "last_login" "1587733075" +HSET "user:5818" "first_name" "Frazier" "last_name" "Leipoldt" "email" "fleipoldtmt@sourceforge.net" "gender" "male" "ip_address" "22.253.11.223" "country" "Egypt" "country_code" "EG" "city" "Banī Suwayf" "longitude" "31.0993845" "latitude" "29.0661274" "last_login" "1572835486" +HSET "user:5819" "first_name" "Gisella" "last_name" "Attawell" "email" "gattawellmu@booking.com" "gender" "female" "ip_address" "247.178.182.154" "country" "China" "country_code" "CN" "city" "Beiping" "longitude" "116.4073963" "latitude" "39.9041999" "last_login" "1579799006" +HSET "user:5820" "first_name" "Elvira" "last_name" "Rickett" "email" "erickettmv@amazon.com" "gender" "female" "ip_address" "150.154.205.97" "country" "Poland" "country_code" "PL" "city" "Wrocław" "longitude" "17.0225772" "latitude" "51.1173534" "last_login" "1594591966" +HSET "user:5821" "first_name" "Patrizius" "last_name" "Matzen" "email" "pmatzenmw@auda.org.au" "gender" "male" "ip_address" "33.53.131.59" "country" "Mexico" "country_code" "MX" "city" "Lazaro Cardenas" "longitude" "-102.1943485" "latitude" "17.9567646" "last_login" "1582863507" +HSET "user:5822" "first_name" "Aron" "last_name" "Milbourn" "email" "amilbournmx@scientificamerican.com" "gender" "male" "ip_address" "109.129.167.252" "country" "Russia" "country_code" "RU" "city" "Shchigry" "longitude" "36.9137821" "latitude" "51.9777094" "last_login" "1598682201" +HSET "user:5823" "first_name" "Kelcy" "last_name" "Alesio" "email" "kalesiomy@youtu.be" "gender" "female" "ip_address" "245.137.166.138" "country" "Uzbekistan" "country_code" "UZ" "city" "Yaypan" "longitude" "70.8001028" "latitude" "40.3643523" "last_login" "1590256076" +HSET "user:5824" "first_name" "Shep" "last_name" "Faier" "email" "sfaiermz@hud.gov" "gender" "male" "ip_address" "21.146.88.135" "country" "France" "country_code" "FR" "city" "Fontainebleau" "longitude" "2.6949635" "latitude" "48.4057628" "last_login" "1583811545" +HSET "user:5825" "first_name" "Engracia" "last_name" "Scroggie" "email" "escroggien0@digg.com" "gender" "female" "ip_address" "177.225.153.131" "country" "Japan" "country_code" "JP" "city" "Aioi" "longitude" "140.2770274" "latitude" "38.1265094" "last_login" "1573163455" +HSET "user:5826" "first_name" "Amby" "last_name" "Fellos" "email" "afellosn1@parallels.com" "gender" "male" "ip_address" "188.71.229.94" "country" "Nigeria" "country_code" "NG" "city" "Shanga" "longitude" "4.579209" "latitude" "11.2131346" "last_login" "1587249749" +HSET "user:5827" "first_name" "Rhoda" "last_name" "MacAllen" "email" "rmacallenn2@japanpost.jp" "gender" "female" "ip_address" "66.163.29.67" "country" "Yemen" "country_code" "YE" "city" "Khawrah" "longitude" "46.15435" "latitude" "14.43201" "last_login" "1570295651" +HSET "user:5828" "first_name" "Shirleen" "last_name" "Losebie" "email" "slosebien3@tripod.com" "gender" "female" "ip_address" "88.232.128.217" "country" "Indonesia" "country_code" "ID" "city" "Tolotangga" "longitude" "118.6323132" "latitude" "-8.765095" "last_login" "1587062304" +HSET "user:5829" "first_name" "Walton" "last_name" "Almeida" "email" "walmeidan4@linkedin.com" "gender" "male" "ip_address" "132.96.63.71" "country" "China" "country_code" "CN" "city" "Mudian" "longitude" "90.451789" "latitude" "47.011607" "last_login" "1595012617" +HSET "user:5830" "first_name" "Uriel" "last_name" "Bould" "email" "ubouldn5@icio.us" "gender" "male" "ip_address" "126.73.212.28" "country" "Brazil" "country_code" "BR" "city" "Cascavel" "longitude" "-53.4392535" "latitude" "-24.9288708" "last_login" "1573485480" +HSET "user:5831" "first_name" "Roze" "last_name" "Pitford" "email" "rpitfordn6@artisteer.com" "gender" "female" "ip_address" "91.55.16.144" "country" "Equatorial Guinea" "country_code" "GQ" "city" "Bitica" "longitude" "9.6216084" "latitude" "1.4243635" "last_login" "1590668047" +HSET "user:5832" "first_name" "Nickie" "last_name" "Sleicht" "email" "nsleichtn7@ebay.co.uk" "gender" "male" "ip_address" "211.206.21.37" "country" "Brazil" "country_code" "BR" "city" "Itacorubi" "longitude" "-48.4939886" "latitude" "-27.5918875" "last_login" "1571712891" +HSET "user:5833" "first_name" "Alecia" "last_name" "Pratchett" "email" "apratchettn8@hibu.com" "gender" "female" "ip_address" "158.118.206.36" "country" "Guinea" "country_code" "GN" "city" "Koundara" "longitude" "-13.3067562" "latitude" "12.4894021" "last_login" "1576166934" +HSET "user:5834" "first_name" "Toddie" "last_name" "Rowsel" "email" "trowseln9@jugem.jp" "gender" "male" "ip_address" "242.75.241.90" "country" "China" "country_code" "CN" "city" "Xiaozhi" "longitude" "116.454574" "latitude" "36.112722" "last_login" "1578207207" +HSET "user:5835" "first_name" "Ignatius" "last_name" "Gillio" "email" "igilliona@redcross.org" "gender" "male" "ip_address" "196.40.220.146" "country" "China" "country_code" "CN" "city" "Sangba" "longitude" "94.122434" "latitude" "30.0565" "last_login" "1582611253" +HSET "user:5836" "first_name" "Em" "last_name" "Bayman" "email" "ebaymannb@newsvine.com" "gender" "female" "ip_address" "45.111.195.100" "country" "Tanzania" "country_code" "TZ" "city" "Kisesa" "longitude" "34.108189" "latitude" "-3.097" "last_login" "1573765267" +HSET "user:5837" "first_name" "Hallie" "last_name" "Cliss" "email" "hclissnc@dell.com" "gender" "female" "ip_address" "240.151.181.95" "country" "Madagascar" "country_code" "MG" "city" "Marovoay" "longitude" "46.6463975" "latitude" "-16.1073563" "last_login" "1593352437" +HSET "user:5838" "first_name" "Kane" "last_name" "Durbyn" "email" "kdurbynnd@japanpost.jp" "gender" "male" "ip_address" "69.96.254.252" "country" "Indonesia" "country_code" "ID" "city" "Karangwungu Lor" "longitude" "112.3650707" "latitude" "-6.9933556" "last_login" "1587123917" +HSET "user:5839" "first_name" "Rodolfo" "last_name" "Haggath" "email" "rhaggathne@biblegateway.com" "gender" "male" "ip_address" "85.255.55.248" "country" "Indonesia" "country_code" "ID" "city" "Jetak" "longitude" "111.245751" "latitude" "-8.2416877" "last_login" "1575627278" +HSET "user:5840" "first_name" "Cornell" "last_name" "Lushey" "email" "clusheynf@angelfire.com" "gender" "male" "ip_address" "66.8.193.90" "country" "Indonesia" "country_code" "ID" "city" "Essang" "longitude" "126.7496264" "latitude" "4.4529473" "last_login" "1576883684" +HSET "user:5841" "first_name" "Minni" "last_name" "Robilart" "email" "mrobilartng@devhub.com" "gender" "female" "ip_address" "94.244.152.218" "country" "China" "country_code" "CN" "city" "Shaheying" "longitude" "120.769905" "latitude" "40.828411" "last_login" "1595275888" +HSET "user:5842" "first_name" "Ashton" "last_name" "Deaconson" "email" "adeaconsonnh@nydailynews.com" "gender" "male" "ip_address" "198.176.123.89" "country" "Nigeria" "country_code" "NG" "city" "Konduga" "longitude" "13.4193903" "latitude" "11.6485321" "last_login" "1599634096" +HSET "user:5843" "first_name" "Maddy" "last_name" "Labbett" "email" "mlabbettni@mapy.cz" "gender" "male" "ip_address" "242.2.242.251" "country" "Indonesia" "country_code" "ID" "city" "Pangansalan" "longitude" "108.4988269" "latitude" "-7.6150611" "last_login" "1585248508" +HSET "user:5844" "first_name" "Jolene" "last_name" "McGinnis" "email" "jmcginnisnj@friendfeed.com" "gender" "female" "ip_address" "95.35.61.157" "country" "Russia" "country_code" "RU" "city" "Kultayevo" "longitude" "55.9378" "latitude" "57.8948" "last_login" "1575885815" +HSET "user:5845" "first_name" "Ardyce" "last_name" "Toby" "email" "atobynk@issuu.com" "gender" "female" "ip_address" "208.129.137.1" "country" "Poland" "country_code" "PL" "city" "Zielona Góra" "longitude" "15.4768834" "latitude" "51.9210929" "last_login" "1595240605" +HSET "user:5846" "first_name" "Robinette" "last_name" "Husband" "email" "rhusbandnl@list-manage.com" "gender" "female" "ip_address" "223.173.231.122" "country" "Greece" "country_code" "GR" "city" "Lakkíon" "longitude" "26.8529432" "latitude" "37.1321706" "last_login" "1596451114" +HSET "user:5847" "first_name" "Lorraine" "last_name" "Trudgeon" "email" "ltrudgeonnm@kickstarter.com" "gender" "female" "ip_address" "79.15.110.4" "country" "Indonesia" "country_code" "ID" "city" "Karanganyar" "longitude" "111.0460407" "latitude" "-7.6387228" "last_login" "1591630580" +HSET "user:5848" "first_name" "Aleece" "last_name" "Pannett" "email" "apannettnn@loc.gov" "gender" "female" "ip_address" "174.207.36.127" "country" "Cuba" "country_code" "CU" "city" "Jimaguayú" "longitude" "-77.8267218" "latitude" "21.241735" "last_login" "1573926495" +HSET "user:5849" "first_name" "Kristin" "last_name" "Westcar" "email" "kwestcarno@eepurl.com" "gender" "female" "ip_address" "40.96.41.99" "country" "Russia" "country_code" "RU" "city" "Volovo" "longitude" "30.3842343" "latitude" "59.9344779" "last_login" "1590687711" +HSET "user:5850" "first_name" "Tuckie" "last_name" "Beefon" "email" "tbeefonnp@artisteer.com" "gender" "male" "ip_address" "234.219.131.169" "country" "Egypt" "country_code" "EG" "city" "Ḩalwān" "longitude" "31.3368529" "latitude" "29.8483192" "last_login" "1580875461" +HSET "user:5851" "first_name" "Alexandre" "last_name" "Neat" "email" "aneatnq@opera.com" "gender" "male" "ip_address" "131.24.150.65" "country" "Indonesia" "country_code" "ID" "city" "Mangli" "longitude" "113.6472457" "latitude" "-8.1883096" "last_login" "1575930867" +HSET "user:5852" "first_name" "Maje" "last_name" "Ashment" "email" "mashmentnr@angelfire.com" "gender" "male" "ip_address" "83.203.250.53" "country" "Sweden" "country_code" "SE" "city" "Solna" "longitude" "18.0104218" "latitude" "59.3771328" "last_login" "1574208804" +HSET "user:5853" "first_name" "Caddric" "last_name" "Drewes" "email" "cdrewesns@wired.com" "gender" "male" "ip_address" "105.156.25.212" "country" "Croatia" "country_code" "HR" "city" "Pregrada" "longitude" "15.7509093" "latitude" "46.1649072" "last_login" "1588699786" +HSET "user:5854" "first_name" "Clarie" "last_name" "Surphliss" "email" "csurphlissnt@geocities.jp" "gender" "female" "ip_address" "252.43.71.210" "country" "China" "country_code" "CN" "city" "Yanglong" "longitude" "108.084731" "latitude" "34.272117" "last_login" "1598747540" +HSET "user:5855" "first_name" "Correy" "last_name" "Elliss" "email" "cellissnu@theglobeandmail.com" "gender" "female" "ip_address" "133.39.171.234" "country" "Azerbaijan" "country_code" "AZ" "city" "Yuxarı Aran" "longitude" "47.6541468" "latitude" "39.7291573" "last_login" "1577090825" +HSET "user:5856" "first_name" "Merry" "last_name" "Stourton" "email" "mstourtonnv@yolasite.com" "gender" "male" "ip_address" "17.142.102.155" "country" "Greece" "country_code" "GR" "city" "Lýkeio" "longitude" "25.6858475" "latitude" "41.0640026" "last_login" "1568752527" +HSET "user:5857" "first_name" "Vera" "last_name" "Drivers" "email" "vdriversnw@jiathis.com" "gender" "female" "ip_address" "235.7.238.89" "country" "Georgia" "country_code" "GE" "city" "Batumi" "longitude" "41.6367455" "latitude" "41.6167547" "last_login" "1586400624" +HSET "user:5858" "first_name" "Brennan" "last_name" "Liepins" "email" "bliepinsnx@livejournal.com" "gender" "male" "ip_address" "183.224.53.83" "country" "Colombia" "country_code" "CO" "city" "Málaga" "longitude" "-72.7628653" "latitude" "6.6763591" "last_login" "1585406255" +HSET "user:5859" "first_name" "Fleur" "last_name" "Chasles" "email" "fchaslesny@opera.com" "gender" "female" "ip_address" "140.250.4.202" "country" "China" "country_code" "CN" "city" "Changxuanling" "longitude" "114.3515079" "latitude" "31.1032736" "last_login" "1583563724" +HSET "user:5860" "first_name" "Gloria" "last_name" "Olliff" "email" "golliffnz@webmd.com" "gender" "female" "ip_address" "34.245.213.142" "country" "Papua New Guinea" "country_code" "PG" "city" "Kokopo" "longitude" "152.2714594" "latitude" "-4.3499796" "last_login" "1588605533" +HSET "user:5861" "first_name" "Hewitt" "last_name" "Karlolak" "email" "hkarlolako0@arizona.edu" "gender" "male" "ip_address" "202.161.204.6" "country" "Canada" "country_code" "CA" "city" "Prince Albert" "longitude" "-105.7514651" "latitude" "53.1762084" "last_login" "1581603091" +HSET "user:5862" "first_name" "Alina" "last_name" "Hiley" "email" "ahileyo1@plala.or.jp" "gender" "female" "ip_address" "115.94.43.150" "country" "United States" "country_code" "US" "city" "Boulder" "longitude" "-105.248737" "latitude" "39.9799992" "last_login" "1582117512" +HSET "user:5863" "first_name" "Maybelle" "last_name" "Cotman" "email" "mcotmano2@geocities.com" "gender" "female" "ip_address" "39.138.103.224" "country" "Poland" "country_code" "PL" "city" "Lubniewice" "longitude" "15.2372386" "latitude" "52.5187305" "last_login" "1582518540" +HSET "user:5864" "first_name" "Barbe" "last_name" "Eite" "email" "beiteo3@intel.com" "gender" "female" "ip_address" "176.222.18.204" "country" "Peru" "country_code" "PE" "city" "Lloque" "longitude" "-78.1546617" "latitude" "-8.2641378" "last_login" "1599134141" +HSET "user:5865" "first_name" "Hammad" "last_name" "Prinnett" "email" "hprinnetto4@ted.com" "gender" "male" "ip_address" "46.250.94.215" "country" "China" "country_code" "CN" "city" "Jingpeng" "longitude" "117.54141" "latitude" "43.258497" "last_login" "1584845642" +HSET "user:5866" "first_name" "Gianni" "last_name" "Brodley" "email" "gbrodleyo5@meetup.com" "gender" "male" "ip_address" "121.163.188.197" "country" "Kazakhstan" "country_code" "KZ" "city" "Taraz" "longitude" "71.3979891" "latitude" "42.8983715" "last_login" "1592163953" +HSET "user:5867" "first_name" "Karrah" "last_name" "Gronauer" "email" "kgronauero6@shop-pro.jp" "gender" "female" "ip_address" "209.79.140.43" "country" "Sweden" "country_code" "SE" "city" "Arboga" "longitude" "15.7718467" "latitude" "59.4547192" "last_login" "1581193019" +HSET "user:5868" "first_name" "Kelila" "last_name" "Fellibrand" "email" "kfellibrando7@mayoclinic.com" "gender" "female" "ip_address" "108.70.184.73" "country" "China" "country_code" "CN" "city" "Baita" "longitude" "123.174325" "latitude" "41.270347" "last_login" "1595065367" +HSET "user:5869" "first_name" "Worthy" "last_name" "Weymouth" "email" "wweymoutho8@bravesites.com" "gender" "male" "ip_address" "234.151.243.134" "country" "Macedonia" "country_code" "MK" "city" "Kumanovo" "longitude" "21.688555" "latitude" "42.142214" "last_login" "1588756585" +HSET "user:5870" "first_name" "Berton" "last_name" "Shimwell" "email" "bshimwello9@bloglovin.com" "gender" "male" "ip_address" "247.169.36.35" "country" "Mexico" "country_code" "MX" "city" "Las Americas" "longitude" "-101.694732" "latitude" "21.1078535" "last_login" "1596347285" +HSET "user:5871" "first_name" "Lillian" "last_name" "Rabl" "email" "lrabloa@sciencedaily.com" "gender" "female" "ip_address" "110.31.175.178" "country" "Nigeria" "country_code" "NG" "city" "Abeokuta" "longitude" "3.3590446" "latitude" "7.1453088" "last_login" "1593204615" +HSET "user:5872" "first_name" "Ellery" "last_name" "Le Maitre" "email" "elemaitreob@instagram.com" "gender" "male" "ip_address" "215.34.34.152" "country" "United States" "country_code" "US" "city" "Arlington" "longitude" "-77.1086041" "latitude" "38.8807023" "last_login" "1593962319" +HSET "user:5873" "first_name" "Jard" "last_name" "Layus" "email" "jlayusoc@phoca.cz" "gender" "male" "ip_address" "240.7.227.181" "country" "Japan" "country_code" "JP" "city" "Muramatsu" "longitude" "137.1581462" "latitude" "34.6322209" "last_login" "1580718620" +HSET "user:5874" "first_name" "Brit" "last_name" "Mattea" "email" "bmatteaod@mapy.cz" "gender" "male" "ip_address" "40.93.132.123" "country" "Palestinian Territory" "country_code" "PS" "city" "Bayt Ūlā" "longitude" "35.026375" "latitude" "31.598422" "last_login" "1573763108" +HSET "user:5875" "first_name" "Fancie" "last_name" "Costell" "email" "fcostelloe@java.com" "gender" "female" "ip_address" "235.232.189.252" "country" "China" "country_code" "CN" "city" "Ning’an" "longitude" "129.4828511" "latitude" "44.34072" "last_login" "1584746809" +HSET "user:5876" "first_name" "Gilburt" "last_name" "Chorlton" "email" "gchorltonof@usa.gov" "gender" "male" "ip_address" "237.249.92.194" "country" "Indonesia" "country_code" "ID" "city" "Watuagung" "longitude" "110.9417222" "latitude" "-7.9954685" "last_login" "1591612296" +HSET "user:5877" "first_name" "Guillema" "last_name" "Stathor" "email" "gstathorog@blogspot.com" "gender" "female" "ip_address" "42.41.222.88" "country" "Italy" "country_code" "IT" "city" "Milano" "longitude" "9.1855974" "latitude" "45.4476447" "last_login" "1592412234" +HSET "user:5878" "first_name" "Sydney" "last_name" "Voysey" "email" "svoyseyoh@goo.gl" "gender" "female" "ip_address" "113.217.131.132" "country" "Japan" "country_code" "JP" "city" "Saitama" "longitude" "139.7492367" "latitude" "35.9227705" "last_login" "1581724180" +HSET "user:5879" "first_name" "Blake" "last_name" "Shimony" "email" "bshimonyoi@wikispaces.com" "gender" "female" "ip_address" "156.93.214.48" "country" "France" "country_code" "FR" "city" "Guingamp" "longitude" "-4.1927331" "latitude" "47.9103088" "last_login" "1577154739" +HSET "user:5880" "first_name" "Sofia" "last_name" "Bavridge" "email" "sbavridgeoj@google.it" "gender" "female" "ip_address" "0.78.40.156" "country" "Indonesia" "country_code" "ID" "city" "Waepana" "longitude" "121.0507098" "latitude" "-8.6841275" "last_login" "1593060138" +HSET "user:5881" "first_name" "Alexei" "last_name" "Easeman" "email" "aeasemanok@dyndns.org" "gender" "male" "ip_address" "190.41.58.75" "country" "Poland" "country_code" "PL" "city" "Olszyna" "longitude" "15.37221" "latitude" "51.06681" "last_login" "1599823037" +HSET "user:5882" "first_name" "Hayes" "last_name" "Ioannou" "email" "hioannouol@parallels.com" "gender" "male" "ip_address" "139.19.75.64" "country" "Indonesia" "country_code" "ID" "city" "Rowotengah" "longitude" "113.400216" "latitude" "-8.1450324" "last_login" "1578489175" +HSET "user:5883" "first_name" "Marlee" "last_name" "Cunradi" "email" "mcunradiom@edublogs.org" "gender" "female" "ip_address" "126.89.150.31" "country" "Poland" "country_code" "PL" "city" "Pępowo" "longitude" "17.1196937" "latitude" "51.7597721" "last_login" "1589177840" +HSET "user:5884" "first_name" "Sam" "last_name" "Flea" "email" "sfleaon@furl.net" "gender" "female" "ip_address" "57.133.150.126" "country" "Uruguay" "country_code" "UY" "city" "Cardal" "longitude" "-56.3964126" "latitude" "-34.2899021" "last_login" "1595191652" +HSET "user:5885" "first_name" "Marmaduke" "last_name" "Late" "email" "mlateoo@nbcnews.com" "gender" "male" "ip_address" "166.32.239.107" "country" "Spain" "country_code" "ES" "city" "Murcia" "longitude" "-1.1424989" "latitude" "37.970285" "last_login" "1584825444" +HSET "user:5886" "first_name" "Kylen" "last_name" "Gally" "email" "kgallyop@yelp.com" "gender" "female" "ip_address" "63.104.88.25" "country" "Indonesia" "country_code" "ID" "city" "Mangkon Daja" "longitude" "107.9739244" "latitude" "-7.5002292" "last_login" "1589589651" +HSET "user:5887" "first_name" "Marlane" "last_name" "Rodrigo" "email" "mrodrigooq@adobe.com" "gender" "female" "ip_address" "97.81.114.60" "country" "Poland" "country_code" "PL" "city" "Oborniki Śląskie" "longitude" "16.9148091" "latitude" "51.3009866" "last_login" "1592242282" +HSET "user:5888" "first_name" "Gregorio" "last_name" "Sketch" "email" "gsketchor@free.fr" "gender" "male" "ip_address" "78.48.19.52" "country" "Colombia" "country_code" "CO" "city" "Medellín" "longitude" "-75.5858886" "latitude" "6.3833462" "last_login" "1573467522" +HSET "user:5889" "first_name" "Brod" "last_name" "Faill" "email" "bfaillos@google.es" "gender" "male" "ip_address" "54.244.106.1" "country" "Spain" "country_code" "ES" "city" "Pontevedra" "longitude" "-8.6325611" "latitude" "42.4556093" "last_login" "1582132921" +HSET "user:5890" "first_name" "Mace" "last_name" "Ewells" "email" "mewellsot@freewebs.com" "gender" "male" "ip_address" "19.232.50.148" "country" "China" "country_code" "CN" "city" "Zuhu" "longitude" "112.040028" "latitude" "39.732646" "last_login" "1595701090" +HSET "user:5891" "first_name" "Parnell" "last_name" "Hugenin" "email" "phugeninou@smugmug.com" "gender" "male" "ip_address" "56.217.133.217" "country" "France" "country_code" "FR" "city" "Nantes" "longitude" "-1.5401497" "latitude" "47.2550409" "last_login" "1599394989" +HSET "user:5892" "first_name" "Amby" "last_name" "Houlworth" "email" "ahoulworthov@google.com" "gender" "male" "ip_address" "228.203.70.90" "country" "Equatorial Guinea" "country_code" "GQ" "city" "Bicurga" "longitude" "10.4705682" "latitude" "1.5837191" "last_login" "1598489587" +HSET "user:5893" "first_name" "Jehanna" "last_name" "Labell" "email" "jlabellow@list-manage.com" "gender" "female" "ip_address" "20.33.174.74" "country" "Russia" "country_code" "RU" "city" "Znamenka" "longitude" "41.4278531" "latitude" "52.4159683" "last_login" "1591302074" +HSET "user:5894" "first_name" "Giffer" "last_name" "Issakov" "email" "gissakovox@ameblo.jp" "gender" "male" "ip_address" "95.76.94.132" "country" "Greece" "country_code" "GR" "city" "Keratéa" "longitude" "23.9763412" "latitude" "37.8071796" "last_login" "1576694222" +HSET "user:5895" "first_name" "Mile" "last_name" "De Cristoforo" "email" "mdecristoforooy@gnu.org" "gender" "male" "ip_address" "215.210.28.51" "country" "Malta" "country_code" "MT" "city" "Imġarr" "longitude" "14.439284" "latitude" "35.878762" "last_login" "1575279818" +HSET "user:5896" "first_name" "Marieann" "last_name" "Christophersen" "email" "mchristophersenoz@51.la" "gender" "female" "ip_address" "96.29.169.219" "country" "Philippines" "country_code" "PH" "city" "Bigaa" "longitude" "121.0758172" "latitude" "14.7512576" "last_login" "1584738713" +HSET "user:5897" "first_name" "Georgia" "last_name" "Timmins" "email" "gtimminsp0@virginia.edu" "gender" "female" "ip_address" "188.81.231.236" "country" "Philippines" "country_code" "PH" "city" "Bantogon" "longitude" "124.03333" "latitude" "6.53333" "last_login" "1577104700" +HSET "user:5898" "first_name" "Delcina" "last_name" "Toulmin" "email" "dtoulminp1@nature.com" "gender" "female" "ip_address" "118.154.34.134" "country" "Philippines" "country_code" "PH" "city" "Jarigue" "longitude" "121.44041" "latitude" "11.86538" "last_login" "1582618743" +HSET "user:5899" "first_name" "Erica" "last_name" "Fetter" "email" "efetterp2@who.int" "gender" "female" "ip_address" "116.113.161.36" "country" "Egypt" "country_code" "EG" "city" "Awsīm" "longitude" "31.1366715" "latitude" "30.1321408" "last_login" "1571001512" +HSET "user:5900" "first_name" "Maxwell" "last_name" "Girardetti" "email" "mgirardettip3@mail.ru" "gender" "male" "ip_address" "204.227.77.12" "country" "Sweden" "country_code" "SE" "city" "Ljungskile" "longitude" "11.9182903" "latitude" "58.222051" "last_login" "1598928039" +HSET "user:5901" "first_name" "Blythe" "last_name" "McIlwreath" "email" "bmcilwreathp4@google.com.hk" "gender" "female" "ip_address" "239.77.113.73" "country" "China" "country_code" "CN" "city" "Meishan" "longitude" "103.848396" "latitude" "30.07728" "last_login" "1572938740" +HSET "user:5902" "first_name" "Falkner" "last_name" "Sulland" "email" "fsullandp5@paginegialle.it" "gender" "male" "ip_address" "89.180.37.45" "country" "United Kingdom" "country_code" "GB" "city" "Kingston" "longitude" "-2.355369" "latitude" "50.887101" "last_login" "1594201725" +HSET "user:5903" "first_name" "Merle" "last_name" "Lomen" "email" "mlomenp6@flickr.com" "gender" "female" "ip_address" "177.253.166.197" "country" "China" "country_code" "CN" "city" "Bajing" "longitude" "116.4073963" "latitude" "39.9041999" "last_login" "1569018677" +HSET "user:5904" "first_name" "Ignacius" "last_name" "Longfut" "email" "ilongfutp7@123-reg.co.uk" "gender" "male" "ip_address" "156.161.143.171" "country" "Portugal" "country_code" "PT" "city" "Santa Bárbara de Padrões" "longitude" "-7.984789" "latitude" "37.6364006" "last_login" "1584268171" +HSET "user:5905" "first_name" "Cosme" "last_name" "Pendle" "email" "cpendlep8@wired.com" "gender" "male" "ip_address" "165.234.203.239" "country" "Panama" "country_code" "PA" "city" "Bejuco" "longitude" "-79.8884819" "latitude" "8.606157" "last_login" "1599854436" +HSET "user:5906" "first_name" "Manny" "last_name" "Sudworth" "email" "msudworthp9@fema.gov" "gender" "male" "ip_address" "157.68.114.195" "country" "Philippines" "country_code" "PH" "city" "Maigo" "longitude" "123.9864049" "latitude" "8.1180013" "last_login" "1594033783" +HSET "user:5907" "first_name" "Carry" "last_name" "Jaine" "email" "cjainepa@wisc.edu" "gender" "female" "ip_address" "223.180.183.132" "country" "Poland" "country_code" "PL" "city" "Malczyce" "longitude" "16.4883489" "latitude" "51.1811979" "last_login" "1597399706" +HSET "user:5908" "first_name" "Spence" "last_name" "Ryman" "email" "srymanpb@accuweather.com" "gender" "male" "ip_address" "160.102.143.145" "country" "China" "country_code" "CN" "city" "Zhongnan" "longitude" "120.5852005" "latitude" "31.2988237" "last_login" "1588948089" +HSET "user:5909" "first_name" "Happy" "last_name" "Trenchard" "email" "htrenchardpc@last.fm" "gender" "female" "ip_address" "244.135.95.251" "country" "China" "country_code" "CN" "city" "Xiawuqi" "longitude" "105.026271" "latitude" "25.842011" "last_login" "1586829439" +HSET "user:5910" "first_name" "Cassandry" "last_name" "Hartland" "email" "chartlandpd@howstuffworks.com" "gender" "female" "ip_address" "235.166.35.166" "country" "Argentina" "country_code" "AR" "city" "Tintina" "longitude" "-62.7087197" "latitude" "-27.0307058" "last_login" "1581618124" +HSET "user:5911" "first_name" "Karoly" "last_name" "Koppke" "email" "kkoppkepe@time.com" "gender" "male" "ip_address" "86.8.200.81" "country" "Brazil" "country_code" "BR" "city" "Pitangui" "longitude" "-44.890204" "latitude" "-19.6824436" "last_login" "1589395805" +HSET "user:5912" "first_name" "Vivienne" "last_name" "Dolan" "email" "vdolanpf@rediff.com" "gender" "female" "ip_address" "110.22.72.70" "country" "Vietnam" "country_code" "VN" "city" "Cam Lộ" "longitude" "106.9830865" "latitude" "16.783695" "last_login" "1578084063" +HSET "user:5913" "first_name" "Pembroke" "last_name" "Juris" "email" "pjurispg@businesswire.com" "gender" "male" "ip_address" "153.202.63.57" "country" "Honduras" "country_code" "HN" "city" "El Paraíso" "longitude" "-86.4187308" "latitude" "14.0736932" "last_login" "1591972655" +HSET "user:5914" "first_name" "Kathryn" "last_name" "McPartlin" "email" "kmcpartlinph@newyorker.com" "gender" "female" "ip_address" "106.214.157.83" "country" "Brazil" "country_code" "BR" "city" "Itaúna" "longitude" "-44.5789542" "latitude" "-20.0879862" "last_login" "1570298557" +HSET "user:5915" "first_name" "Kearney" "last_name" "Cockshutt" "email" "kcockshuttpi@dmoz.org" "gender" "male" "ip_address" "243.138.31.59" "country" "China" "country_code" "CN" "city" "Xiashitai" "longitude" "113.4221" "latitude" "24.02009" "last_login" "1598357324" +HSET "user:5916" "first_name" "Margarette" "last_name" "Tomaszkiewicz" "email" "mtomaszkiewiczpj@furl.net" "gender" "female" "ip_address" "185.67.153.11" "country" "Russia" "country_code" "RU" "city" "Suzdal’" "longitude" "40.4536153" "latitude" "56.4191591" "last_login" "1579656230" +HSET "user:5917" "first_name" "Bjorn" "last_name" "Mustin" "email" "bmustinpk@hc360.com" "gender" "male" "ip_address" "242.133.243.65" "country" "Philippines" "country_code" "PH" "city" "Santa Maria" "longitude" "121.0036417" "latitude" "14.5806413" "last_login" "1598303456" +HSET "user:5918" "first_name" "Emalee" "last_name" "Spittall" "email" "espittallpl@yolasite.com" "gender" "female" "ip_address" "23.245.57.153" "country" "Iran" "country_code" "IR" "city" "Gorgān" "longitude" "54.4393363" "latitude" "36.8456427" "last_login" "1576415941" +HSET "user:5919" "first_name" "Axe" "last_name" "Lemoir" "email" "alemoirpm@nymag.com" "gender" "male" "ip_address" "110.180.73.46" "country" "China" "country_code" "CN" "city" "Qinjia" "longitude" "121.41794" "latitude" "31.237906" "last_login" "1577539019" +HSET "user:5920" "first_name" "Cicely" "last_name" "Dollen" "email" "cdollenpn@godaddy.com" "gender" "female" "ip_address" "179.223.119.31" "country" "Russia" "country_code" "RU" "city" "Novonikol’sk" "longitude" "131.8648449" "latitude" "43.8507498" "last_login" "1594043119" +HSET "user:5921" "first_name" "Diego" "last_name" "Peasgood" "email" "dpeasgoodpo@auda.org.au" "gender" "male" "ip_address" "78.37.36.204" "country" "Poland" "country_code" "PL" "city" "Wapno" "longitude" "17.4718232" "latitude" "52.9109049" "last_login" "1578413340" +HSET "user:5922" "first_name" "Flinn" "last_name" "Butchart" "email" "fbutchartpp@woothemes.com" "gender" "male" "ip_address" "19.82.23.196" "country" "Colombia" "country_code" "CO" "city" "Risaralda" "longitude" "-75.7255192" "latitude" "5.096528" "last_login" "1573923397" +HSET "user:5923" "first_name" "Clay" "last_name" "Srutton" "email" "csruttonpq@usa.gov" "gender" "male" "ip_address" "65.39.148.200" "country" "Pakistan" "country_code" "PK" "city" "Shabqadar" "longitude" "71.6276159" "latitude" "34.2211097" "last_login" "1572755814" +HSET "user:5924" "first_name" "Osmund" "last_name" "Longhorne" "email" "olonghornepr@java.com" "gender" "male" "ip_address" "152.37.19.49" "country" "Portugal" "country_code" "PT" "city" "Paço" "longitude" "-8.8458421" "latitude" "41.80088" "last_login" "1569784235" +HSET "user:5925" "first_name" "Anastasie" "last_name" "Overpool" "email" "aoverpoolps@imgur.com" "gender" "female" "ip_address" "235.139.216.195" "country" "Colombia" "country_code" "CO" "city" "Puerto Nariño" "longitude" "-70.38306" "latitude" "-3.7702" "last_login" "1590917803" +HSET "user:5926" "first_name" "Gayla" "last_name" "Kampshell" "email" "gkampshellpt@reverbnation.com" "gender" "female" "ip_address" "61.76.113.9" "country" "Colombia" "country_code" "CO" "city" "Montelíbano" "longitude" "-75.3594016" "latitude" "7.9500846" "last_login" "1569339000" +HSET "user:5927" "first_name" "Lenette" "last_name" "Satyford" "email" "lsatyfordpu@networkadvertising.org" "gender" "female" "ip_address" "21.53.246.185" "country" "China" "country_code" "CN" "city" "Beidu" "longitude" "100.874336" "latitude" "26.235575" "last_login" "1579382157" +HSET "user:5928" "first_name" "Rebekah" "last_name" "Paprotny" "email" "rpaprotnypv@multiply.com" "gender" "female" "ip_address" "155.189.39.4" "country" "Indonesia" "country_code" "ID" "city" "Cimara" "longitude" "108.7066398" "latitude" "-7.1057357" "last_login" "1568712220" +HSET "user:5929" "first_name" "Nial" "last_name" "Haime" "email" "nhaimepw@instagram.com" "gender" "male" "ip_address" "88.131.43.11" "country" "Philippines" "country_code" "PH" "city" "Padre Burgos" "longitude" "125.0259763" "latitude" "10.049147" "last_login" "1588657262" +HSET "user:5930" "first_name" "Max" "last_name" "Philot" "email" "mphilotpx@surveymonkey.com" "gender" "male" "ip_address" "109.28.137.18" "country" "Sweden" "country_code" "SE" "city" "Stockholm" "longitude" "18.0669843" "latitude" "59.3409629" "last_login" "1590312478" +HSET "user:5931" "first_name" "Homere" "last_name" "Choke" "email" "hchokepy@paginegialle.it" "gender" "male" "ip_address" "40.100.12.26" "country" "Russia" "country_code" "RU" "city" "Bryansk" "longitude" "34.374358" "latitude" "53.3249623" "last_login" "1584867695" +HSET "user:5932" "first_name" "Tami" "last_name" "Pratten" "email" "tprattenpz@amazon.com" "gender" "female" "ip_address" "12.94.63.226" "country" "Paraguay" "country_code" "PY" "city" "Nueva Italia" "longitude" "-57.4655544" "latitude" "-25.6127554" "last_login" "1572865624" +HSET "user:5933" "first_name" "Dredi" "last_name" "Hinsche" "email" "dhinscheq0@bing.com" "gender" "female" "ip_address" "43.193.29.179" "country" "China" "country_code" "CN" "city" "Fuding" "longitude" "120.216978" "latitude" "27.324479" "last_login" "1574365846" +HSET "user:5934" "first_name" "Ketti" "last_name" "Alker" "email" "kalkerq1@irs.gov" "gender" "female" "ip_address" "181.204.127.59" "country" "Sweden" "country_code" "SE" "city" "Mariefred" "longitude" "17.2093329" "latitude" "59.3549627" "last_login" "1571989642" +HSET "user:5935" "first_name" "Merill" "last_name" "Sommerlie" "email" "msommerlieq2@ask.com" "gender" "male" "ip_address" "210.187.241.197" "country" "Indonesia" "country_code" "ID" "city" "Leloboko" "longitude" "123.9136675" "latitude" "-9.6759995" "last_login" "1595616609" +HSET "user:5936" "first_name" "Harrietta" "last_name" "McLellan" "email" "hmclellanq3@nytimes.com" "gender" "female" "ip_address" "103.164.247.82" "country" "Portugal" "country_code" "PT" "city" "Agualva" "longitude" "-27.168076" "latitude" "38.777855" "last_login" "1580612388" +HSET "user:5937" "first_name" "Adriena" "last_name" "Attrie" "email" "aattrieq4@yellowbook.com" "gender" "female" "ip_address" "201.176.246.117" "country" "China" "country_code" "CN" "city" "Shuidun" "longitude" "115.420204" "latitude" "23.534915" "last_login" "1579346955" +HSET "user:5938" "first_name" "Reube" "last_name" "Peer" "email" "rpeerq5@sakura.ne.jp" "gender" "male" "ip_address" "38.28.118.72" "country" "Russia" "country_code" "RU" "city" "Gornyy" "longitude" "30.2307225" "latitude" "59.9420078" "last_login" "1597767894" +HSET "user:5939" "first_name" "Emmit" "last_name" "Avramchik" "email" "eavramchikq6@cnn.com" "gender" "male" "ip_address" "70.181.222.53" "country" "Pakistan" "country_code" "PK" "city" "Jām Sāhib" "longitude" "68.6359692" "latitude" "26.2958582" "last_login" "1576944074" +HSET "user:5940" "first_name" "Simonne" "last_name" "Niche" "email" "snicheq7@bbb.org" "gender" "female" "ip_address" "247.43.175.30" "country" "Indonesia" "country_code" "ID" "city" "Patenongan" "longitude" "113.8811" "latitude" "-7.0009" "last_login" "1577827255" +HSET "user:5941" "first_name" "Jack" "last_name" "Jefford" "email" "jjeffordq8@accuweather.com" "gender" "male" "ip_address" "230.44.147.121" "country" "Macedonia" "country_code" "MK" "city" "Gorno Orizari" "longitude" "21.3607894" "latitude" "41.0423985" "last_login" "1591987305" +HSET "user:5942" "first_name" "Leonelle" "last_name" "Cloughton" "email" "lcloughtonq9@prnewswire.com" "gender" "female" "ip_address" "150.188.130.189" "country" "Brazil" "country_code" "BR" "city" "Santa Luzia" "longitude" "-36.9111057" "latitude" "-6.9078713" "last_login" "1594348186" +HSET "user:5943" "first_name" "Duffie" "last_name" "Heads" "email" "dheadsqa@nifty.com" "gender" "male" "ip_address" "8.39.20.166" "country" "Philippines" "country_code" "PH" "city" "Mondragon" "longitude" "124.7689819" "latitude" "12.4035699" "last_login" "1576482765" +HSET "user:5944" "first_name" "Odette" "last_name" "Creeboe" "email" "ocreeboeqb@cyberchimps.com" "gender" "female" "ip_address" "208.210.207.251" "country" "Indonesia" "country_code" "ID" "city" "Jetis" "longitude" "110.363649" "latitude" "-7.783297" "last_login" "1588618697" +HSET "user:5945" "first_name" "Rollo" "last_name" "Coard" "email" "rcoardqc@list-manage.com" "gender" "male" "ip_address" "108.26.180.216" "country" "China" "country_code" "CN" "city" "Nanbin" "longitude" "108.398" "latitude" "30.802718" "last_login" "1585143472" +HSET "user:5946" "first_name" "Nap" "last_name" "Collett" "email" "ncollettqd@ebay.com" "gender" "male" "ip_address" "217.10.42.165" "country" "Russia" "country_code" "RU" "city" "Monchegorsk" "longitude" "43.8367278" "latitude" "56.232836" "last_login" "1591638466" +HSET "user:5947" "first_name" "Hardy" "last_name" "McArthur" "email" "hmcarthurqe@bizjournals.com" "gender" "male" "ip_address" "105.21.142.128" "country" "Greece" "country_code" "GR" "city" "Koutsopódi" "longitude" "22.7120308" "latitude" "37.6883607" "last_login" "1591532120" +HSET "user:5948" "first_name" "Clemmy" "last_name" "Pettifor" "email" "cpettiforqf@wp.com" "gender" "male" "ip_address" "165.244.196.18" "country" "Indonesia" "country_code" "ID" "city" "Cikuray" "longitude" "107.86" "latitude" "-7.3225" "last_login" "1571172769" +HSET "user:5949" "first_name" "Garland" "last_name" "Meadowcroft" "email" "gmeadowcroftqg@smh.com.au" "gender" "female" "ip_address" "77.67.92.74" "country" "Portugal" "country_code" "PT" "city" "Linhares" "longitude" "-8.3332193" "latitude" "41.2592586" "last_login" "1576887502" +HSET "user:5950" "first_name" "Waldo" "last_name" "Snepp" "email" "wsneppqh@unesco.org" "gender" "male" "ip_address" "226.169.11.197" "country" "Argentina" "country_code" "AR" "city" "Villa Urquiza" "longitude" "-58.2558295" "latitude" "-34.7507886" "last_login" "1583987746" +HSET "user:5951" "first_name" "Cesaro" "last_name" "Rechert" "email" "crechertqi@ocn.ne.jp" "gender" "male" "ip_address" "126.107.206.25" "country" "Spain" "country_code" "ES" "city" "Granada" "longitude" "-3.664859" "latitude" "37.1952335" "last_login" "1575813743" +HSET "user:5952" "first_name" "Irena" "last_name" "Blakeborough" "email" "iblakeboroughqj@drupal.org" "gender" "female" "ip_address" "56.112.187.109" "country" "China" "country_code" "CN" "city" "Kuilehe" "longitude" "124.364153" "latitude" "49.548202" "last_login" "1590045713" +HSET "user:5953" "first_name" "Earvin" "last_name" "Ozelton" "email" "eozeltonqk@newyorker.com" "gender" "male" "ip_address" "222.5.149.196" "country" "Mongolia" "country_code" "MN" "city" "Buyant" "longitude" "91.7678144" "latitude" "48.1735752" "last_login" "1594514453" +HSET "user:5954" "first_name" "Elbertine" "last_name" "Huot" "email" "ehuotql@mac.com" "gender" "female" "ip_address" "67.13.133.155" "country" "Cameroon" "country_code" "CM" "city" "Bafia" "longitude" "11.2240441" "latitude" "4.7546039" "last_login" "1576686020" +HSET "user:5955" "first_name" "Barrie" "last_name" "Hackford" "email" "bhackfordqm@adobe.com" "gender" "male" "ip_address" "237.255.106.108" "country" "Indonesia" "country_code" "ID" "city" "Krajan Caluk" "longitude" "111.4007597" "latitude" "-8.037728" "last_login" "1581387352" +HSET "user:5956" "first_name" "Odie" "last_name" "Levensky" "email" "olevenskyqn@youtu.be" "gender" "male" "ip_address" "202.85.194.134" "country" "Malawi" "country_code" "MW" "city" "Blantyre" "longitude" "35.0167866" "latitude" "-15.7666707" "last_login" "1598593654" +HSET "user:5957" "first_name" "Vergil" "last_name" "Bodiam" "email" "vbodiamqo@theguardian.com" "gender" "male" "ip_address" "222.146.137.130" "country" "China" "country_code" "CN" "city" "Ma’an" "longitude" "120.589457" "latitude" "30.145729" "last_login" "1577041762" +HSET "user:5958" "first_name" "Jazmin" "last_name" "Elion" "email" "jelionqp@weebly.com" "gender" "female" "ip_address" "255.44.39.186" "country" "Tajikistan" "country_code" "TJ" "city" "Sarband" "longitude" "68.9241529" "latitude" "37.8741378" "last_login" "1596393512" +HSET "user:5959" "first_name" "Elwood" "last_name" "Stollery" "email" "estolleryqq@eepurl.com" "gender" "male" "ip_address" "23.101.156.0" "country" "United States" "country_code" "US" "city" "Montgomery" "longitude" "-86.3224638" "latitude" "32.3989318" "last_login" "1572099831" +HSET "user:5960" "first_name" "Orsa" "last_name" "Sothcott" "email" "osothcottqr@abc.net.au" "gender" "female" "ip_address" "2.206.108.9" "country" "Ukraine" "country_code" "UA" "city" "Energodar" "longitude" "34.6341859" "latitude" "47.5015067" "last_login" "1591710556" +HSET "user:5961" "first_name" "Findley" "last_name" "Hildred" "email" "fhildredqs@businessinsider.com" "gender" "male" "ip_address" "145.112.156.45" "country" "Tunisia" "country_code" "TN" "city" "Manouba" "longitude" "10.0863269" "latitude" "36.8093284" "last_login" "1600139390" +HSET "user:5962" "first_name" "Tabbitha" "last_name" "Guiver" "email" "tguiverqt@mayoclinic.com" "gender" "female" "ip_address" "239.43.214.238" "country" "China" "country_code" "CN" "city" "Shuanghekou" "longitude" "105.190522" "latitude" "30.975286" "last_login" "1581513506" +HSET "user:5963" "first_name" "Dare" "last_name" "Dungate" "email" "ddungatequ@printfriendly.com" "gender" "male" "ip_address" "188.140.88.230" "country" "Mexico" "country_code" "MX" "city" "Emiliano Zapata" "longitude" "-91.7660525" "latitude" "17.7409147" "last_login" "1571237124" +HSET "user:5964" "first_name" "Reine" "last_name" "Clampin" "email" "rclampinqv@latimes.com" "gender" "female" "ip_address" "228.76.116.162" "country" "Indonesia" "country_code" "ID" "city" "Sudimoro" "longitude" "111.3679689" "latitude" "-8.2272033" "last_login" "1597387644" +HSET "user:5965" "first_name" "Percival" "last_name" "O'Shavlan" "email" "poshavlanqw@intel.com" "gender" "male" "ip_address" "174.162.197.0" "country" "Brazil" "country_code" "BR" "city" "Sena Madureira" "longitude" "-69.2877535" "latitude" "-9.6096717" "last_login" "1582341198" +HSET "user:5966" "first_name" "Oralee" "last_name" "Kelway" "email" "okelwayqx@domainmarket.com" "gender" "female" "ip_address" "178.144.105.33" "country" "Poland" "country_code" "PL" "city" "Jedlińsk" "longitude" "21.1235461" "latitude" "51.5144022" "last_login" "1574004572" +HSET "user:5967" "first_name" "Laird" "last_name" "Ivory" "email" "livoryqy@npr.org" "gender" "male" "ip_address" "179.57.170.56" "country" "Slovenia" "country_code" "SI" "city" "Ruše" "longitude" "15.5073987" "latitude" "46.5399962" "last_login" "1586608896" +HSET "user:5968" "first_name" "Anallese" "last_name" "Darlington" "email" "adarlingtonqz@cmu.edu" "gender" "female" "ip_address" "117.237.55.137" "country" "Philippines" "country_code" "PH" "city" "Ibabang Tayuman" "longitude" "121.8952135" "latitude" "14.0023717" "last_login" "1588008860" +HSET "user:5969" "first_name" "Zackariah" "last_name" "Angrave" "email" "zangraver0@furl.net" "gender" "male" "ip_address" "76.164.52.177" "country" "France" "country_code" "FR" "city" "Rungis" "longitude" "2.3536083" "latitude" "48.7381259" "last_login" "1591234049" +HSET "user:5970" "first_name" "Jethro" "last_name" "Caught" "email" "jcaughtr1@moonfruit.com" "gender" "male" "ip_address" "137.45.104.194" "country" "Germany" "country_code" "DE" "city" "Freiburg im Breisgau" "longitude" "7.8107621" "latitude" "47.9963155" "last_login" "1581534947" +HSET "user:5971" "first_name" "Terrance" "last_name" "Loosely" "email" "tlooselyr2@live.com" "gender" "male" "ip_address" "80.197.40.12" "country" "China" "country_code" "CN" "city" "Wuyang" "longitude" "113.609286" "latitude" "33.437877" "last_login" "1578521432" +HSET "user:5972" "first_name" "Katharine" "last_name" "St. Quintin" "email" "kstquintinr3@netscape.com" "gender" "female" "ip_address" "143.198.85.22" "country" "China" "country_code" "CN" "city" "Zhapu" "longitude" "121.095594" "latitude" "30.603546" "last_login" "1580241170" +HSET "user:5973" "first_name" "Maggee" "last_name" "Waylett" "email" "mwaylettr4@gravatar.com" "gender" "female" "ip_address" "210.248.165.159" "country" "Russia" "country_code" "RU" "city" "Tungor" "longitude" "142.9582995" "latitude" "53.3914918" "last_login" "1576113777" +HSET "user:5974" "first_name" "Daisey" "last_name" "Caley" "email" "dcaleyr5@comsenz.com" "gender" "female" "ip_address" "59.60.125.8" "country" "Brazil" "country_code" "BR" "city" "Piquete" "longitude" "-45.168166" "latitude" "-22.601206" "last_login" "1579407816" +HSET "user:5975" "first_name" "Sharity" "last_name" "Kille" "email" "skiller6@ucoz.ru" "gender" "female" "ip_address" "29.37.162.53" "country" "Indonesia" "country_code" "ID" "city" "Hegarmanah" "longitude" "107.5993373" "latitude" "-6.8732784" "last_login" "1584261683" +HSET "user:5976" "first_name" "Robb" "last_name" "Musso" "email" "rmussor7@gov.uk" "gender" "male" "ip_address" "191.130.200.65" "country" "United States" "country_code" "US" "city" "Washington" "longitude" "-77.0262531" "latitude" "38.8974019" "last_login" "1587080894" +HSET "user:5977" "first_name" "Lyndell" "last_name" "Reder" "email" "lrederr8@hc360.com" "gender" "female" "ip_address" "237.176.14.121" "country" "Russia" "country_code" "RU" "city" "Pyatigorsk" "longitude" "43.1270513" "latitude" "44.0300904" "last_login" "1575450005" +HSET "user:5978" "first_name" "Bel" "last_name" "Sowood" "email" "bsowoodr9@about.me" "gender" "female" "ip_address" "16.139.224.29" "country" "Indonesia" "country_code" "ID" "city" "Baturinggit Kaja" "longitude" "115.5631" "latitude" "-8.2464" "last_login" "1569423153" +HSET "user:5979" "first_name" "Franky" "last_name" "Le Brum" "email" "flebrumra@nasa.gov" "gender" "female" "ip_address" "36.219.51.207" "country" "Germany" "country_code" "DE" "city" "Offenbach" "longitude" "8.8107219" "latitude" "50.0809432" "last_login" "1582795277" +HSET "user:5980" "first_name" "Keith" "last_name" "Hansana" "email" "khansanarb@google.cn" "gender" "male" "ip_address" "91.71.152.180" "country" "Sweden" "country_code" "SE" "city" "Hägersten" "longitude" "17.9928445" "latitude" "59.2873947" "last_login" "1575277404" +HSET "user:5981" "first_name" "Randie" "last_name" "Hallibone" "email" "rhallibonerc@edublogs.org" "gender" "female" "ip_address" "125.209.213.193" "country" "Colombia" "country_code" "CO" "city" "Manzanares" "longitude" "-75.1538939" "latitude" "5.255906" "last_login" "1590082825" +HSET "user:5982" "first_name" "Clevie" "last_name" "MacKeever" "email" "cmackeeverrd@wunderground.com" "gender" "male" "ip_address" "200.179.72.98" "country" "Iran" "country_code" "IR" "city" "Behbahān" "longitude" "50.234745" "latitude" "30.5911589" "last_login" "1583909962" +HSET "user:5983" "first_name" "Bibbie" "last_name" "Davidovici" "email" "bdavidovicire@mapquest.com" "gender" "female" "ip_address" "92.203.243.239" "country" "Indonesia" "country_code" "ID" "city" "Nempel" "longitude" "106.7181959" "latitude" "-6.8467723" "last_login" "1589397170" +HSET "user:5984" "first_name" "Xena" "last_name" "Corteis" "email" "xcorteisrf@diigo.com" "gender" "female" "ip_address" "152.12.18.131" "country" "Brazil" "country_code" "BR" "city" "Três Lagoas" "longitude" "-51.8287077" "latitude" "-20.6121259" "last_login" "1595319856" +HSET "user:5985" "first_name" "Hermon" "last_name" "Searston" "email" "hsearstonrg@mysql.com" "gender" "male" "ip_address" "36.94.143.10" "country" "Poland" "country_code" "PL" "city" "Kiernozia" "longitude" "19.8684556" "latitude" "52.2552455" "last_login" "1573310658" +HSET "user:5986" "first_name" "Alice" "last_name" "Ivins" "email" "aivinsrh@harvard.edu" "gender" "female" "ip_address" "20.51.141.251" "country" "China" "country_code" "CN" "city" "Beima" "longitude" "120.395988" "latitude" "37.617937" "last_login" "1597475130" +HSET "user:5987" "first_name" "Rosalynd" "last_name" "Clifft" "email" "rclifftri@nih.gov" "gender" "female" "ip_address" "155.100.152.213" "country" "Estonia" "country_code" "EE" "city" "Tallinn" "longitude" "24.7535747" "latitude" "59.4369608" "last_login" "1592261304" +HSET "user:5988" "first_name" "Sterling" "last_name" "Plaister" "email" "splaisterrj@upenn.edu" "gender" "male" "ip_address" "34.222.165.192" "country" "China" "country_code" "CN" "city" "Honghualiangzi" "longitude" "118.799497" "latitude" "41.21966" "last_login" "1572018903" +HSET "user:5989" "first_name" "Llywellyn" "last_name" "Sey" "email" "lseyrk@myspace.com" "gender" "male" "ip_address" "208.109.135.29" "country" "Iran" "country_code" "IR" "city" "Oshnavīyeh" "longitude" "45.0971372" "latitude" "37.0364358" "last_login" "1580793250" +HSET "user:5990" "first_name" "Eartha" "last_name" "Tolan" "email" "etolanrl@yolasite.com" "gender" "female" "ip_address" "183.148.228.183" "country" "Sweden" "country_code" "SE" "city" "Kristianstad" "longitude" "14.162184" "latitude" "56.0247998" "last_login" "1593301377" +HSET "user:5991" "first_name" "Abdul" "last_name" "Ciccone" "email" "acicconerm@ibm.com" "gender" "male" "ip_address" "131.76.34.252" "country" "Philippines" "country_code" "PH" "city" "Manacsac" "longitude" "120.7914484" "latitude" "15.5946516" "last_login" "1585366233" +HSET "user:5992" "first_name" "Zaria" "last_name" "Elsey" "email" "zelseyrn@bizjournals.com" "gender" "female" "ip_address" "40.84.110.107" "country" "Indonesia" "country_code" "ID" "city" "Kadugede" "longitude" "108.4572788" "latitude" "-7.0029794" "last_login" "1583970409" +HSET "user:5993" "first_name" "Angela" "last_name" "Rawdales" "email" "arawdalesro@scientificamerican.com" "gender" "female" "ip_address" "220.125.223.167" "country" "Indonesia" "country_code" "ID" "city" "Bunirasa" "longitude" "108.1966055" "latitude" "-7.2578125" "last_login" "1594583295" +HSET "user:5994" "first_name" "Bastian" "last_name" "Meadows" "email" "bmeadowsrp@usda.gov" "gender" "male" "ip_address" "20.118.161.166" "country" "Indonesia" "country_code" "ID" "city" "Pabuaran" "longitude" "106.8502879" "latitude" "-6.4544294" "last_login" "1579064666" +HSET "user:5995" "first_name" "Corny" "last_name" "Izon" "email" "cizonrq@va.gov" "gender" "male" "ip_address" "198.170.234.120" "country" "China" "country_code" "CN" "city" "Houmen" "longitude" "114.702652" "latitude" "27.246947" "last_login" "1586283262" +HSET "user:5996" "first_name" "Marillin" "last_name" "Auger" "email" "maugerrr@bing.com" "gender" "female" "ip_address" "71.77.24.124" "country" "Philippines" "country_code" "PH" "city" "Marihatag" "longitude" "126.3020575" "latitude" "8.7833709" "last_login" "1600007536" +PING "5996 Users Created" \ No newline at end of file diff --git a/e2e-tests/data/rivers-jsonl/CountryInfo.jsonl b/e2e-tests/data/rivers-jsonl/CountryInfo.jsonl new file mode 100644 index 000000000..a283ca1fb --- /dev/null +++ b/e2e-tests/data/rivers-jsonl/CountryInfo.jsonl @@ -0,0 +1,8 @@ +{"_id":{"$oid":"679c75a41afa677c91ed7f32"},"country":"Austria","countryCode":"AT","riverCount":123} +{"_id":{"$oid":"679c75a41afa677c91ed7f33"},"country":"Czechia","countryCode":"CZ","riverCount":307} +{"_id":{"$oid":"679c75a41afa677c91ed7f34"},"country":"France","countryCode":"FR","riverCount":197} +{"_id":{"$oid":"679c75a41afa677c91ed7f35"},"country":"Germany","countryCode":"DE","riverCount":466} +{"_id":{"$oid":"679c75a41afa677c91ed7f36"},"country":"Italy","countryCode":"IT","riverCount":181} +{"_id":{"$oid":"679c75a41afa677c91ed7f37"},"country":"Slovenia","countryCode":"SI","riverCount":103} +{"_id":{"$oid":"679c75a41afa677c91ed7f38"},"country":"Spain","countryCode":"ES","riverCount":33} +{"_id":{"$oid":"679c75a41afa677c91ed7f39"},"country":"Switzerland","countryCode":"CH","riverCount":109} diff --git a/e2e-tests/data/rivers-jsonl/GlobalSectionInfo.jsonl b/e2e-tests/data/rivers-jsonl/GlobalSectionInfo.jsonl new file mode 100644 index 000000000..28795a7d1 --- /dev/null +++ b/e2e-tests/data/rivers-jsonl/GlobalSectionInfo.jsonl @@ -0,0 +1,362 @@ +{"_id":{"$oid":"5bd76b702a2751001a07a8f9"},"sectionId":"02ac93d0-dbb8-11e8-b6e4-47b537827acc","river":"Oetztaler Ache","section":"Koeffels","originSectionIds":["3c52d1d6-5e7a-45c3-a742-7ad3d6c5279b"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"difficulty":"WW IV","diaryItemCount":0,"country":"Austria","enjoyLevel":4,"isObsolete":true} +{"_id":{"$oid":"5bd76b702a2751001a07a8fa"},"sectionId":"02b74230-dbb8-11e8-b6e4-47b537827acc","river":"Venter Ache","section":"Lower Venter","originSectionIds":["7868610e-bdc3-4e88-b9ae-3eeb1d971a72","007c210b-40ae-4092-98c5-ca3fc79ec4c3","9a4eadc5-196b-4af9-b0c6-be18a67ad535","12371288-c0e1-4aba-8291-07fcfaf79ea0","d0e31230-35c4-452f-81ca-de5808ca8749","b320669b-af3e-475b-9248-815320a3e84c"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Vent (altes Feuerwehrhaus)","gaugeEngine":"tirol.gv.at","river":"Venter Ache"},{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"difficulty":"WW IV","diaryItemCount":7,"country":"Austria","enjoyLevel":5,"isObsolete":false} +{"_id":{"$oid":"5bd76b702a2751001a07a8fb"},"sectionId":"02b79050-dbb8-11e8-b6e4-47b537827acc","river":"Oetztaler Ache","section":"Soelden","originSectionIds":["da20e67f-7c52-4354-a4a2-1cf227e81faa","396fde17-591c-4a44-94dc-6d29570cffd8","452180c1-b092-4430-a0b3-b90590e34620","1efe7678-1f4d-4a9d-a18b-ac277f4e3749"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Soelden","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"},{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"difficulty":"WW IV","diaryItemCount":5,"country":"Austria","enjoyLevel":4,"isObsolete":false} +{"_id":{"$oid":"5bd76b702a2751001a07a8fc"},"sectionId":"02b7de70-dbb8-11e8-b6e4-47b537827acc","river":"Oetztaler Ache","section":"Lower Oetz","originSectionIds":["0bf45ec9-c83e-4f07-85b7-38c776908256","28d6ca6f-3256-4912-879b-e551bdcb3745","c5ca4ba4-1be0-4c9c-9531-82509d58892c","a0f8fafe-2fe4-4d48-ac9d-c4ce95c1ffb5"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Brunau","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"},{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"difficulty":"WW III+","diaryItemCount":2,"country":"Austria","enjoyLevel":2,"isObsolete":false} +{"_id":{"$oid":"5bd76b702a2751001a07a8fd"},"sectionId":"02b82c90-dbb8-11e8-b6e4-47b537827acc","river":"Vltava","section":"Certovy proudy","originSectionIds":["f775bd16-aeac-43cc-bfc9-f4964830bc44","98b3fa30-a5bb-11e9-b634-0741355ade94","ac3340f3-0975-4643-869f-91c54094f0b2"],"description":"Certaky klasika","putIn":"dghyt","takeOut":"Certova stena","gauges":[{"gaugeEngine":"pvl.cz-dams","river":"Vltava","gauge":"VD Vrané"}],"difficulty":"WW IV/V","diaryItemCount":2,"country":"Czechia","enjoyLevel":5,"isObsolete":false} +{"_id":{"$oid":"5be753b46dd31b0019fabc6c"},"sectionId":"451cd390-e533-11e8-ac5d-dd5cedf2315b","river":"","section":"","originSectionIds":["39fbb887-246d-4d59-a6fb-396d557e765d","a15ad4c5-5cb7-470a-a493-874e05f4bed6","a28d8c19-036d-44cf-a39f-cf2e34b27117","a4ccca6c-1a9e-4207-818d-ec2f24742725","ad35268d-3177-4f00-a7cc-f1de8521c34e","8d6b1eb1-ff45-4d63-b5a5-b958a8d03743"],"description":"","putIn":"text","takeOut":"text","gauges":[],"country":"germany","difficulty":null,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5bedc35cee70190019a7d72e"},"sectionId":"59873210-e909-11e8-b968-d1c301b54b27","river":"Oetztaler Ache","section":"Wellerbrucke","originSectionIds":["b2fe2adf-485d-4b9d-b6ae-402382b26a40"],"description":"jgdcbnh c","putIn":"bfcc n","takeOut":"vhhfccb","gauges":[{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"country":"Austria","difficulty":"WW V+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5bf1b6b045cbd900196e7e7e"},"sectionId":"25f01c70-eb64-11e8-81f4-634a860f343a","river":"","section":"text","originSectionIds":["0e47b91f-49a4-49fd-8434-b16c209cde6f","a83ffa6c-d3ab-4a1c-be58-b5bef32f151d"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Průhonice","gaugeEngine":"hydro.chmi.cz","river":"Botič"}],"country":"","difficulty":null,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5bfc2708773f6f0019aa4e75"},"sectionId":"fd459c70-f19c-11e8-b45f-0d68d651c64e","river":"text","section":"text","originSectionIds":["bb94d694-67e5-4db8-b6c5-c2c1d68be483"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"text","difficulty":null,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5bfd7888773f6f0019aa4e76"},"sectionId":"27a87ea0-f266-11e8-b45f-0d68d651c64e","river":"fghbvf","section":"vvcxxdd","originSectionIds":["fdc9ade2-36fe-4f25-9c3d-ca5b63223f9a"],"description":"vhgdcvh","putIn":"","takeOut":"","gauges":[],"country":"czech republic","difficulty":"WW II-","enjoyLevel":2,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5c010a9860e39900196dc4a7"},"sectionId":"fa849cb0-f486-11e8-bb73-3b716120561b","river":"Doubrava","section":"Pařížov Ronov","originSectionIds":["7d593aee-e46d-43a9-bb48-6a46f4135ec9","388da2ec-281c-4ff2-8338-849c32c8912f"],"description":"","putIn":"Pařížov","takeOut":"Ronov","gauges":[{"gauge":"Pařížov","gaugeEngine":"hydro.chmi.cz","river":"Doubrava"}],"country":"Czechia","difficulty":"WW II","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c010a9860e39900196dc4a8"},"sectionId":"fa881f20-f486-11e8-bb73-3b716120561b","river":"Kamenice","section":"Plavy Kamenice","originSectionIds":["eca5ae3a-720c-479d-82c8-28a2328ce9dd"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"","difficulty":null,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5c0118a860e39900196dc4b3"},"sectionId":"5c464590-f48f-11e8-bb73-3b716120561b","river":"Kamenice","section":"Plavy Bohuňovsko","originSectionIds":["eca5ae3a-720c-479d-82c8-28a2328ce9dd","284649fe-2810-4d37-95e2-87ec2ae0ff94","80b07018-a96b-40d2-9243-4f706df9c9ed"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Bohuňovsko-Jesenný","gaugeEngine":"hydro.chmi.cz","river":"Kamenice"}],"country":"Czechia","difficulty":"WW III","enjoyLevel":5,"diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5c0118a860e39900196dc4b4"},"sectionId":"5c4708e0-f48f-11e8-bb73-3b716120561b","river":"Jizera","section":"Nový Svět - Vilémov","originSectionIds":["9e98b828-6204-472d-aa48-6a19ba70f5fe","5a47604e-4d9d-4981-8333-02fcc5275abe","8ba0896b-4731-4cd8-a538-fbf65d2fab16"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Dolní Sytová","gaugeEngine":"hydro.chmi.cz","river":"Jizera"}],"country":"Czechia","difficulty":"WW II/III","enjoyLevel":5,"diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5c026a289259f9001976d86f"},"sectionId":"86b5f900-f558-11e8-887e-6793ba283c48","river":"Sanna","section":"","originSectionIds":["883a9ae1-ec67-4c5b-a966-f9ab29af43bc"],"description":"v zatacce ve meste ww4. zavisi na prutoku","putIn":"","takeOut":"","gauges":[],"country":"Austria","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":1,"isObsolete":true} +{"_id":{"$oid":"5c0bb2b86c7ef8001bfdd59b"},"sectionId":"115922c0-fae1-11e8-8163-271293fc9713","river":"Vltava","section":"TEST","originSectionIds":["93f05db8-51a1-47ed-a2cc-1f08dda2f85d"],"description":"my desc 1\nline 2x","putIn":"","takeOut":"","gauges":[{"gauge":"Praha - Chuchle","gaugeEngine":"hydro.chmi.cz","river":"Vltava"},{"gauge":"VD Vrané","gaugeEngine":"hydro.chmi.cz","river":"Vltava"},{"gauge":"Vyšší Brod","gaugeEngine":"hydro.chmi.cz","river":"Vltava"}],"country":"Czechia","difficulty":"WW II-","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5c0bb2b86c7ef8001bfdd59c"},"sectionId":"115be1e0-fae1-11e8-8163-271293fc9713","river":"text","section":"","originSectionIds":["4f4bb1a8-b248-4831-8fe4-e774c36d1401"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"","difficulty":null,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5c0c0718c71a51001b1f26bd"},"sectionId":"5bf93810-fb13-11e8-9e25-1d0a19ffb107","river":"Vltava","section":"Troja-Žalov","originSectionIds":["04e3e844-1dd4-4ba4-b14c-989fd90f0ef8"],"description":"Spektakularni zimni vylet. Lepsi alternativa k padlovani z troji nastvanici. jez prenest pres pruh mezi plavebni komorou a hlavnim recistem.","putIn":"Pod kanalem","takeOut":"Na levem brehu. Naproti privozu. u schodu.","gauges":[{"gauge":"Praha - Chuchle","gaugeEngine":"hydro.chmi.cz","river":"Vltava"}],"country":"Czechia","difficulty":"ZW","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5c1e6e087db5df001b12a186"},"sectionId":"4bfd5010-060b-11e9-8faa-5bd141aad581","river":"Jizera","section":"Mýto - Vilémov","originSectionIds":["22dde442-aedd-41cb-b813-a6fb7edd5229","dffe75b5-f9a8-438d-8034-bab70c2e326f","393f74be-818c-4bdd-9517-4ce4793e78d4","23b3e4bd-aa5a-4a1a-bea1-d829852b60ee","70dc5dee-73b0-4b87-bf96-d3b6ef521388","b42d0c0e-102f-4769-a2ee-4550c8e387ba","4d74d6f1-844c-4f1f-9b68-c330bb415a33","4a5625e3-afd7-11e9-bb38-61c23b92b63e","2c8badf7-8870-4d30-92c7-0b722eb57e14"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Jablonec nad Jizerou","gaugeEngine":"hydro.chmi.cz","river":"Jizera"}],"country":"Czechia","difficulty":"WW III/IV","enjoyLevel":5,"diaryItemCount":15,"isObsolete":false} +{"_id":{"$oid":"5c3e4a48501e60001b658ae9"},"sectionId":"ccfc4b70-1908-11e9-97f1-c5336c40861e","river":"Rosanna","section":"","originSectionIds":["66affe84-2938-4b1b-96c2-71ea27b6713b","672ba42a-19fa-4c46-b47c-b6d13d7d7ed3","3e7e5000-e2c7-41aa-9051-3498a200c000"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"St Anton am Arlberg-Moos","gaugeEngine":"tirol.gv.at","river":"Rosanna"}],"country":"Austria","difficulty":"WW II+","diaryItemCount":3,"isObsolete":true,"enjoyLevel":3} +{"_id":{"$oid":"5c3e4a48501e60001b658aea"},"sectionId":"ccfebc70-1908-11e9-97f1-c5336c40861e","river":"Inn","section":"test","originSectionIds":["5aff3571-b743-4120-8cb1-7438ebc5c21a"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Martina","gaugeEngine":"hydrodaten.admin.ch","river":"Inn"}],"country":"Switzerland, Austria","difficulty":"WW II+","diaryItemCount":0,"enjoyLevel":1,"isObsolete":true} +{"_id":{"$oid":"5c3f4768501e60001b686e9c"},"sectionId":"acccace0-199f-11e9-97f1-c5336c40861e","river":"Sázava","section":"Stvořidla","originSectionIds":["4a57d392-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"river":"Sázava","gauge":"Světlá nad Sázavou","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":60}],"country":"Czechia","difficulty":"WW II","enjoyLevel":3,"diaryItemCount":10,"isObsolete":false} +{"_id":{"$oid":"5c40ed48501e60001b6d57f9"},"sectionId":"21cc9720-1a9b-11e9-97f1-c5336c40861e","river":"Sázava","section":"Srvořidla ","originSectionIds":["e74bfe9c-0ec1-45cb-a8b7-1d6589c7b626"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Světlá nad Sázavou","gaugeEngine":"hydro.chmi.cz","river":"Sázava"}],"country":"Czechia","difficulty":"WW II+","enjoyLevel":3,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5c589a3873cb52001b95b876"},"sectionId":"bb769db0-28b7-11e9-a752-c7b0494eb880","river":"Kamenice","section":"Plavy - Jesenný","originSectionIds":["0a55177d-fb8e-4c5f-8fa2-efbb23ea7a48","567312a2-9a76-467b-bc27-3d79a33dc148","cd8f700c-5d44-4713-90de-c01191f14290","162e1128-0ef0-4b7a-b353-dd5dd698c823","1eb1a869-6e24-411a-9b90-a5c9830582c8","9ecc8126-2e5e-4f80-9b53-e312ff9c7105","df8494f7-25d8-49b5-90bf-de55a95f1313","52d2ffe9-7db6-4a00-b5cc-ebae40119626","4a5625e2-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Bohuňovsko-Jesenný","gaugeEngine":"hydro.chmi.cz","river":"Kamenice"}],"country":"Czechia","difficulty":"WW III","diaryItemCount":26,"isObsolete":false} +{"_id":{"$oid":"5c589a3873cb52001b95b877"},"sectionId":"bb77af20-28b7-11e9-a752-c7b0494eb880","river":"Vltava","section":"Čertovy proudy","originSectionIds":["8ce9b31d-028c-4549-85c1-22bfab45e76b","72e876c7-496e-496a-abc9-f7c597932dad","158f9dd7-d96c-4758-b24a-c1a142ada680"],"description":"Spodní težší úsek. Začíná jezem Okno, pak následuje asi 1 km rychlých peřejí zakončených válcem. Po chvilkovém zklidnění přichází Škvíra (alias Bloody findgers), nejtěžsí peřej, kterou většina lidí přenáší. Asi 500 metru pod Škvírou je peřej Schody, hezká a relativně těžká peřej, jezdí se na ní finále kajakcrossu, doporučuji prohlédnout. Pod Schodama se to postupně zjednodušuje.","putIn":"Pod Papirnou","takeOut":"Zastavka Certova Stena","gauges":[{"gauge":"VD Lipno 1","river":"Vltava","gaugeEngine":"pvl.cz-dams","unit":"m3/s","lw":7,"mw":20,"hw":35}],"country":"Czechia","difficulty":"WW IV+","diaryItemCount":14,"isObsolete":false,"enjoyLevel":5} +{"_id":{"$oid":"5c5ae8d807dd0d001bbbc463"},"sectionId":"c5b81220-2a17-11e9-b128-835450b8c2f1","river":"Sázava","section":"Stvořidla ","originSectionIds":["e74bfe9c-0ec1-45cb-a8b7-1d6589c7b626","472538b7-e448-4deb-84fb-452a775aaa2c","574e24dc-458f-44dc-b78a-c15863fcbf2b","c1989a84-14f8-48e6-bb75-1f09ffd502ef"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Světlá nad Sázavou","gaugeEngine":"hydro.chmi.cz","river":"Sázava"}],"country":"Czechia","difficulty":"WW I/II","enjoyLevel":3,"diaryItemCount":8,"isObsolete":false} +{"_id":{"$oid":"5c67eda8b4e957001b40fb64"},"sectionId":"4883a790-31da-11e9-8799-cb204292fe2d","river":"Große Laber","section":"76","originSectionIds":["19503f2a-76aa-4f02-bc60-8502750408a7"],"description":"co","putIn":"what","takeOut":"that","gauges":[{"gauge":"S.Piero a Sieve-Carza","gaugeEngine":"riverzone.eu","river":"Sieve"},{"gauge":"Kružberk pod n��drží","gaugeEngine":"hydro.chmi.cz","river":"Moravice"},{"gauge":"Brandýs nad Labem","gaugeEngine":"hydro.chmi.cz","river":"Labe"}],"country":"Germany","difficulty":"WW V/VI","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c708d781793f2001b23abe9"},"sectionId":"3df9e090-36fe-11e9-b2dd-1f6eedd0e1d7","river":"Doubrava","section":"Bílek","originSectionIds":["0ee42142-ec8f-4c54-aed7-bb45b75326fe","1069cca0-a5ba-11e9-b634-0741355ade94"],"description":"","putIn":"Bílek ","takeOut":"Hodní Sokolovec","gauges":[{"gauge":"Bílek","gaugeEngine":"hydro.chmi.cz","river":"Doubrava"}],"country":"Czechia","difficulty":"WW III/IV","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c8e53588e682b001ba1e15a"},"sectionId":"3bd0a8a0-48bd-11e9-9dc0-df8d4c614ea2","river":"Rolava","section":"Nejdek-Nova Role","originSectionIds":["bb0f4ca1-69a6-4f3a-b6c1-400265029d63","8b53afed-f0de-4555-90fe-ff0e62cc6413"],"description":"Kontinualni WW3, uprostred rozbity stupen s vyvarem","putIn":"Nejdek-Sucha","takeOut":"Nova Role","gauges":[{"gauge":"Stará Role","gaugeEngine":"hydro.chmi.cz","river":"Rolava"}],"country":"Czechia","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c8e61688e682b001ba22609"},"sectionId":"9d933be0-48c5-11e9-9dc0-df8d4c614ea2","river":"Rolava","section":"Nejdek - Nova Role","originSectionIds":["0046c601-45b7-4b7d-b5b1-313cc158a81c","221099f5-dd57-49df-b235-da0df9318ef5"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Stará Role","gaugeEngine":"hydro.chmi.cz","river":"Rolava"}],"country":"Czechia","difficulty":null,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c9bba988e682b001be22f5a"},"sectionId":"6b02b730-50ba-11e9-9dc0-df8d4c614ea2","river":"Naarn","section":"od soutesky k mlynu","originSectionIds":["1c1a3a8b-5b00-4f95-a9d8-623d568d196c","da0fc842-0a6d-4056-8c9b-20b73e3f310f"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Haid","gaugeEngine":"riverzone.eu","river":"Naarn"}],"country":"Rakousko","difficulty":"WW IV","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c9dfb288e682b001bed3568"},"sectionId":"137d2b90-5212-11e9-9dc0-df8d4c614ea2","river":"Jizera ","section":"Mýto - Vilemov","originSectionIds":["2d9e9c66-4111-44f3-bca1-2b557f29e021","c9cb23ae-6dc8-4fa0-ad5c-847f8b56e6b4","5e2a5238-88bd-4ff0-aa48-4a6af448dc67"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Czech republic ","difficulty":"WW III/IV","enjoyLevel":4,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5c9fa1088e682b001bf53e11"},"sectionId":"888923c0-530d-11e9-9dc0-df8d4c614ea2","river":"Ostravice","section":"Šance - Frýdlant nad Ostravicí ","originSectionIds":["abfa7f6d-76fd-4a63-9310-42c789d7a766","35152b59-b1ad-4d4f-8b20-7a2716d99101"],"description":"Obtizne misto - Kaskáda WW V","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":"WW II","enjoyLevel":3,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5c9fbd288e682b001bf5baa7"},"sectionId":"4c0dfc20-531e-11e9-9dc0-df8d4c614ea2","river":"Sázava","section":"Týnec - Pikovice","originSectionIds":["80e910f6-d861-4ab0-b4b3-eca86714c671","352ecb2c-122e-46bc-b615-91674d0e86a2","5d67ecc5-0d0d-42dd-bc6a-8a105e86cc15","3942a2b5-09a0-4020-990b-3e967dfe342a"],"description":"","putIn":"Týnec nad Sázavou ","takeOut":"Pikovice","gauges":[{"gauge":"Nespeky","gaugeEngine":"hydro.chmi.cz","river":"Sázava"}],"country":"Czechia","difficulty":"WW I/II","enjoyLevel":3,"diaryItemCount":5,"isObsolete":false} +{"_id":{"$oid":"5ca0c8588e682b001bfb3096"},"sectionId":"8da2eca0-53bd-11e9-9dc0-df8d4c614ea2","river":"Želivka","section":"Éčko - Vřesník - most Miletín","originSectionIds":["f5635be4-06f4-492f-8576-1421a4599149"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Želiv","gaugeEngine":"hydro.chmi.cz","river":"Želivka (Hejlovka)"}],"country":"Czechia","difficulty":"WW I","enjoyLevel":1,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5ca53b688e682b001b138206"},"sectionId":"7cf685c0-5664-11e9-9dc0-df8d4c614ea2","river":"Divoká Orlice","section":"","originSectionIds":["121cacfc-14e4-45cf-9873-cfc28680a028"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":null,"diaryItemCount":1,"isObsolete":true} +{"_id":{"$oid":"5ca662b88e682b001b19c4b8"},"sectionId":"82029300-5714-11e9-9dc0-df8d4c614ea2","river":"Mumlava","section":"Classic section","originSectionIds":["4cf69345-a930-4a7e-a325-c30aa22dd899","cd633960-912e-4301-b54a-34528662bef1","d8625a40-c1cc-4a3b-ad84-4018befb018a","ea229c65-c920-4b14-aa6b-bf9cb06c1806","38e8dba3-0061-4ac2-818b-aa2fb5a09e34","94f6fdc2-e54c-4b45-8a22-8df44311246d","af993adf-ced7-4f2e-b4ff-26cc02432dec","22ff0269-b3eb-4029-bcbf-8d83a44aa892"],"description":"obtiznost: jde to 😁 ","putIn":"","takeOut":"","gauges":[{"gauge":"Janov - Harrachov","gaugeEngine":"hydro.chmi.cz","river":"Mumlava"}],"country":"Czechia","difficulty":"WW IV","diaryItemCount":16,"isObsolete":false,"enjoyLevel":4} +{"_id":{"$oid":"5ca8cd788e682b001b26d4a9"},"sectionId":"4fd080f0-5885-11e9-9dc0-df8d4c614ea2","river":"Vydra","section":"Modrava-Antygl","originSectionIds":["e39fe77b-2563-4f13-b660-ecb2afe98fef","83b64415-dd63-4c49-b0bd-4ba9ab46bece"],"description":"","putIn":"soutok","takeOut":"antygl, u mostu","gauges":[{"gauge":"Modrava","gaugeEngine":"hydro.chmi.cz","river":"Vydra"}],"country":"Czechia","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5ca8db888e682b001b27232e"},"sectionId":"b1850a70-588d-11e9-9dc0-df8d4c614ea2","river":"Otava","section":"Cenkova pila- Radesov","originSectionIds":["74b88da7-8ee5-436b-b32a-9faa90d49a78"],"description":"","putIn":"cenkova pila","takeOut":"kemp Radesov","gauges":[{"gauge":"Rejštejn","gaugeEngine":"hydro.chmi.cz","river":"Otava"}],"country":"Czechia","difficulty":"WW III-","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5ca8e9988e682b001b27708b"},"sectionId":"13994020-5896-11e9-9dc0-df8d4c614ea2","river":"Jizera","section":"Cutisin","originSectionIds":["98bfc642-3452-4925-9458-11e252ee1af1","9745b62a-48d0-4c7a-b831-7dce929a90bc","19334ec6-3aeb-489d-bc58-78c0b1c05cae","ebd786cc-4b72-4b48-bd06-1a03e7c6d398","4a57acb5-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"Mezi jezy na pravem brehu v Korenove","takeOut":"Myto","gauges":[{"gauge":"Jablonec nad Jizerou","gaugeEngine":"riverzone.eu","river":"Jizera"}],"country":"Czechia","difficulty":"WW IV+","diaryItemCount":4,"isObsolete":false,"enjoyLevel":4} +{"_id":{"$oid":"5caa3b198e682b001b2eb2dc"},"sectionId":"3e2b48a0-595f-11e9-9dc0-df8d4c614ea2","river":"Labe","section":"Labska-Vrchlabi","originSectionIds":["f05cc7c7-46d9-4f3a-b6ff-5570cc445d1b","1f582d4a-4e29-46fe-917c-e7bb51bcd597"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Labská","gaugeEngine":"pla.cz-dams","river":"Labe"}],"country":"Czechia","difficulty":"WW III/IV","enjoyLevel":3,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5caa57388e682b001b2f49b8"},"sectionId":"0160ef90-5970-11e9-9dc0-df8d4c614ea2","river":"Labe","section":"přehrada - Vrchlabí","originSectionIds":["77f15f91-13af-42f1-be31-59afa9528cae","df0b613b-f7ca-4227-9f02-7ff1ab097e36","f05c3c04-dd53-4596-ad50-781675f452a5"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Labská","gaugeEngine":"riverzone.eu","river":"Labe"}],"country":"Czechia","difficulty":null,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5cba0d1877dd45001b0a976e"},"sectionId":"3a8a7140-62cd-11e9-b923-4560cee3ea94","river":"Soča","section":"Srpenica","originSectionIds":["b24b7a8c-b769-47df-b075-55b6e636e25f","c419dc70-787b-43ff-8e5b-e13c770cdb76"],"description":"","putIn":"Srpenica 1","takeOut":"Trnovo","gauges":[{"gauge":"Log Čezsoški","gaugeEngine":"riverzone.eu","river":"Soča"}],"country":"Slovenia","difficulty":"WW II/III","enjoyLevel":4,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5cba0d1877dd45001b0a976f"},"sectionId":"3a8bf7e0-62cd-11e9-b923-4560cee3ea94","river":"Koritnica","section":"Koritnica","originSectionIds":["04571640-efb3-458c-a705-2ae33fb6164d","bd7bc21b-7edc-4702-9a9a-795598848979"],"description":"","putIn":"Kluže","takeOut":"Soča confluence","gauges":[],"country":"Slovenia","difficulty":"WW II+","enjoyLevel":3,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5cbb0a3877dd45001b0f6fa5"},"sectionId":"1a594c10-6364-11e9-b923-4560cee3ea94","river":"Soča","section":"Otona","originSectionIds":["8c985104-8958-4d22-801a-ae19c1077346","d80bacbf-1564-4542-b8c2-97ffa48dbfd4"],"description":"","putIn":"Otona","takeOut":"Kobarid","gauges":[{"gauge":"Kobarid","gaugeEngine":"riverzone.eu","river":"Soča"}],"country":"Slovenia","difficulty":"WW III/IV","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5cbb427877dd45001b10550f"},"sectionId":"a16d5d10-6385-11e9-b923-4560cee3ea94","river":"Soča","section":"Slalomstrecke","originSectionIds":["577c0420-9a02-4258-a8ce-47f4f4a7aff5","2b31948c-2dd8-4f42-a370-80e551d6211c"],"description":"","putIn":"Trnovo 1","takeOut":"Trnovo 2","gauges":[{"gauge":"Log Čezsoški","gaugeEngine":"riverzone.eu","river":"Soča"}],"country":"Slovenia","difficulty":"WW III/IV","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5cbb88c877dd45001b117780"},"sectionId":"8a42a1c0-63af-11e9-b923-4560cee3ea94","river":"Cijevna","section":"-","originSectionIds":["26053920-35ab-4715-b2c6-11a378013faf"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Montenegro","difficulty":"WW II/III","enjoyLevel":4,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cbc156877dd45001b13c12b"},"sectionId":"5bf25b40-6403-11e9-b923-4560cee3ea94","river":"Kamenice","section":"Jesenny-Zelezny brod","originSectionIds":["aab1b4d5-db26-43ec-a969-c98dfbd26072","99d20bff-4d8e-4f43-9c14-c8b90d4b4486"],"description":"Hezky usek pro lidi, co jeste nezvladaj Trojsky kanal. Asi 3 perefe obtiznosti skoro WW1-2","putIn":"Jesenny u mostu","takeOut":"Zelezny brod","gauges":[{"gauge":"Bohuňovsko-Jesenný","gaugeEngine":"riverzone.eu","river":"Kamenice"}],"country":"Czechia","difficulty":"WW I/II","enjoyLevel":3,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5cbc3f9877dd45001b147712"},"sectionId":"8178f2c0-641c-11e9-b923-4560cee3ea94","river":"Kamenice","section":"Lidl section","originSectionIds":["ccbfa479-032a-4560-b675-7fc356a3534b","547b5e79-1f33-4863-abad-a2d54d662bc6"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Josefův Důl","gaugeEngine":"pla.cz-dams","river":"Kamenice"}],"country":"Czechia","difficulty":null,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5cbd66e877dd45001b1945e1"},"sectionId":"869d6a00-64cc-11e9-b923-4560cee3ea94","river":"Lim","section":"Plavske jezero - Murino","originSectionIds":["c1d148ef-c666-428c-830b-95a94f022f3a"],"description":"Za vyzsi vody tezsi","putIn":"Jezero","takeOut":"V murinu hned napravo za mostem","gauges":[],"country":"Montenegro","difficulty":"WW II/III","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cc33988e4c582001b8745c7"},"sectionId":"01ace150-6845-11e9-ae79-7d58ecb59fa9","river":"Lieser","section":"","originSectionIds":["1453da9e-f004-46e1-bd6f-a96d1078d565"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Spittal (Fasan)","gaugeEngine":"info.ktn.gv.at","river":"Lieser"}],"country":"Austria","difficulty":"WW III","enjoyLevel":5,"diaryItemCount":1,"isObsolete":true} +{"_id":{"$oid":"5cc460d8e4c582001b8e2e14"},"sectionId":"06d8f9b0-68f5-11e9-ae79-7d58ecb59fa9","river":"Gail","section":"Aigen - Kötschach","originSectionIds":["2f5c9b9d-ae4b-4d7b-ad0f-49eec33ede85"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Maria Luggau (Moos)","gaugeEngine":"riverzone.eu","river":"Gail"}],"country":"Austria","difficulty":"WW II","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cc49918e4c582001b8f8a2e"},"sectionId":"8de54280-6916-11e9-ae79-7d58ecb59fa9","river":"Salza","section":"Wildalpen","originSectionIds":["8fa2805a-7d8c-4a1d-abaf-1dd827a9e675","f0b064c9-fa8b-4638-95ff-93255267e1ce"],"description":"","putIn":"Wildalpen","takeOut":"Palfau","gauges":[{"gauge":"Wildalpen","gaugeEngine":"riverzone.eu","river":"Salza"}],"country":"Rakousko ","difficulty":"WW II+","enjoyLevel":2,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5ccbe7687889b1001bc6162c"},"sectionId":"58ecd980-6d71-11e9-b8a0-edf026327294","river":"Loisach","section":"Griesenschlucht","originSectionIds":["fed1cc8e-dfd1-4cca-8e47-749af2817c13","e5931ef4-1836-473b-b128-691b394fbb0c","ded1aae1-3791-4e65-9c72-3ea262896e24","347515f3-a317-4269-bc93-0083aa854e38","439a603f-b329-4dbe-b532-4d1d2f6361ae","47e6657b-cd33-41ff-a290-8cc1732f79a0","30f6285a-ee4c-4c92-b1b7-e447012adeb1","ba1f9979-cca9-4918-b83a-a83c41af87b6","44bfae25-37c0-4fc9-9b85-8a1d70d4f816","4a50599f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Garmisch o. d. Partnachmündung","gaugeEngine":"bayern.de","river":"Loisach"}],"country":"Germany","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":30,"isObsolete":false} +{"_id":{"$oid":"5cd2fd78bc648f001b036f3f"},"sectionId":"9ce652f0-71aa-11e9-a657-330aa0b2b77b","river":"Rissbach","section":"Standardstrecke","originSectionIds":["d893d9cc-331b-4a26-aea9-b26112fd1b8b","8cc0b434-9e21-41b8-a95c-b4b2c6c103ce","41efa43e-2f7f-4fef-ad38-2700ab49d4db","8e498501-41ae-46a1-9d94-50af9e72ba5b","65f70088-e382-4d08-9557-d00877670072","a99672f7-7c91-42e4-b582-3dde7f578e2a","7dff4228-e68e-4c1b-b358-444d29d385cd","0afeb24e-8e70-419d-a847-efb267f78438","7cd820ba-d20f-4d1a-b878-904362a8c4c2"],"description":"WW2, 2 pekne pereje skoro WW4, konec nad souteskou WW3","putIn":"","takeOut":"Nad Rissbachklammem. Nasleduje WW6-X souteska, nutno prohludniut vystipni musto","gauges":[{"gauge":"Rissbachklamm","gaugeEngine":"tirol.gv.at","river":"Rissbach"}],"country":"Austria","difficulty":"WW III/IV","enjoyLevel":3,"diaryItemCount":9,"isObsolete":false} +{"_id":{"$oid":"5cd48738bc648f001b0c93cb"},"sectionId":"4e631280-7295-11e9-a657-330aa0b2b77b","river":"Brandenberger Ache","section":"Pinnegger strecke","originSectionIds":["33b0ffb6-0c07-4ada-a4c0-dd17ae6d9063","b936cfed-cf87-4248-a4e6-e53232b61f0f","de17ad16-4e17-4c9e-8c29-128181574f24","b3f55cf3-4986-47af-8824-eda1afdfa257","543cebb6-a4ab-4112-bf56-699d1d46972e","d2122717-75b2-4254-b688-a43718cf554f","2256811c-fb20-44a4-ba17-7b719b0f8d18","5a1028d0-f9bb-40e0-a24c-c67bc37116d1","7e7428a5-cd07-4ad4-af3a-221ba80f09a2","cf0c5cb2-2095-4df8-ae09-8493c8419c4b"],"description":"uprostred sekce asi 1.5m vysoky skalni stypen s valcem","putIn":"Parkoviste u Kauserklammu","takeOut":"","gauges":[{"gauge":"Mariathal","gaugeEngine":"riverzone.eu","river":"Brandenberger Ache"}],"country":"Austria","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":11,"isObsolete":false} +{"_id":{"$oid":"5cd48738bc648f001b0c93cc"},"sectionId":"4e6423f0-7295-11e9-a657-330aa0b2b77b","river":"Brandenberger Ache","section":"Tiefenbachklamm","originSectionIds":["f1dcc4ea-3eca-440c-8972-cacd67a24d67","40395b0c-a7d0-4331-b8b2-cc169d1b0fae","90ac8dfa-9570-4587-a842-075deb872091","838aebc7-c2f0-4c89-ad3f-c7b1e5073657","2ef68156-3aab-4b7f-b7b1-93e0096657de","b45d8250-07a5-48d4-9d58-1df38d715f68","d7c45a94-d977-42d9-804b-2c520f7ac791","5398aa96-3e79-4b9c-ab24-941dc67c6a81","c3a50f0a-10bf-4a52-a6d4-cc2ccaa15795","7cc7475c-26ed-430a-a969-206b912c3946","4a516af5-afd7-11e9-bb38-61c23b92b63e"],"description":"2 prenaseci mista-skok paprsek- prenest urcite a samotna souteska Tiefenbachklamm. mezitim IV+ pereje","putIn":"","takeOut":"","gauges":[{"gauge":"Mariathal","gaugeEngine":"tirol.gv.at","river":"Brandenberger Ache"}],"country":"Austria","difficulty":"WW IV+","enjoyLevel":4,"diaryItemCount":11,"isObsolete":false} +{"_id":{"$oid":"5cd48738bc648f001b0c93cd"},"sectionId":"4e653560-7295-11e9-a657-330aa0b2b77b","river":"Brandenberger Ache","section":"Unterlauf","originSectionIds":["5fac9a1e-b8b9-44af-a15d-3110c6e54dd5","77b26fe1-b042-4098-ac39-a626d5cd0f4b","c63db7b4-d734-49ae-bf9e-44b689608ae6","b2a4a9ba-2e6a-4ce2-9f4e-b9cb0814b2fc","b33b513c-595a-4d6d-b81e-be8e3725089a","7759b6cf-a656-470e-96ea-5e0219ea8156","c4bf9689-5bdc-4b3b-bced-ce8d88b0f252","8c5bae87-7ebb-470d-8106-f6418b8b187f","98ed6d5f-fb1a-40b4-a5b3-94d43f603339","4701a3d4-b148-4a65-961b-671b93203a12","f8f0c2c9-6cfe-4438-913a-bd0c3f5ed030","7ddea6f8-c701-41d7-90de-1a6b2f038435","4a516af6-afd7-11e9-bb38-61c23b92b63e"],"description":"Ke konci je tam pekna perej skoro WW IV","putIn":"","takeOut":"","gauges":[{"gauge":"Mariathal","gaugeEngine":"tirol.gv.at","river":"Brandenberger Ache"}],"country":"Austria","difficulty":"WW III/IV","enjoyLevel":5,"diaryItemCount":13,"isObsolete":false} +{"_id":{"$oid":"5cd5e6c8bc648f001b14e87b"},"sectionId":"da930f40-7366-11e9-a657-330aa0b2b77b","river":"Saalach","section":"Obsthum-Lofer","originSectionIds":["0559e355-62d0-42ad-bfb5-d1b2c1477d30","e2443d96-d016-43ec-b18a-4c0ef0929001","9de28d27-8a14-486f-a75f-fd663385da0c","7bb4bbe6-15f4-4966-a26d-b3f2e2b716bd","d97fb734-8342-4563-b54d-bef11a9b93fe","96f00e04-542a-4edf-a553-5d77366c1624","cd4db551-2651-45fd-b337-edd80750e8a4","163e1012-4785-4924-8a37-9805d09052b4","16063270-b848-4c8e-aa8f-509da4fa95bf","19c8ad42-657d-49ba-897e-02d492b4aa0f","d6889cd6-9578-430a-b224-a934f780afdd"],"description":"Zacatek mezi velkymi sutry, uprostred vysoky jez se super slajsnou, na konci slalomka, jinak moving flat","putIn":"Obsthum","takeOut":"Most na slalomce v Loferu","gauges":[{"gauge":"Unterjettenberg","gaugeEngine":"bayern.de","river":"Saalach"}],"country":"Austria","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":11,"isObsolete":false} +{"_id":{"$oid":"5cd5e6c8bc648f001b14e87c"},"sectionId":"da9420b0-7366-11e9-a657-330aa0b2b77b","river":"Loferbach","section":"Standardstrecke","originSectionIds":["1ea80519-3b8d-4000-9036-75d2ba3b2692","8010e3dd-7331-4f06-b047-f4c979a2880e","dca5c1da-69da-48f8-9f44-3cc53d59980d","7d4b3927-6766-42b1-baf1-8f7880ee90b6","eec63b3f-0993-41e4-94d7-afa408a32d38","c947774e-4a1c-4e1e-b8de-6042067bdb01","6dccb56b-71fb-49be-977c-a8a1765a6e71","65d480f1-d84b-4ff6-b09b-606f3fc4ae24","9d22e98d-6c1a-47b1-a6de-c46d9a88e8d3"],"description":"Uprostred jez-prenaset. nad jezem jednodussi, pod jezem souvisly tezsi usek","putIn":"","takeOut":"","gauges":[{"gauge":"Lofer","gaugeEngine":"riverzone.eu","river":"Loferbach"}],"country":"Austria, Germany","difficulty":"WW IV","enjoyLevel":4,"diaryItemCount":9,"isObsolete":false} +{"_id":{"$oid":"5cd6e3e8bc648f001b1acbad"},"sectionId":"ba6ee260-73fd-11e9-a657-330aa0b2b77b","river":"Koppentraun","section":"Koppentraun","originSectionIds":["e36c902c-ef24-4aa5-a4df-18097f547973","8852506d-50fb-40f9-bcc9-1fec18e690b8","3543afc1-ea6a-4c3d-b22d-caa8a0cfdeab","37b4dab8-2256-42fe-9a51-90792a7f3168","6580553d-9545-44ef-8cfe-2df7d5a53c71","5da40d02-e0fb-4170-991c-efd30ceee8c3","55d48c01-95bd-47ef-996b-1f859dacdffd","ec1edcd0-b7fe-48a7-90dc-1a9555516acf","b84cb9df-5850-494a-a75e-5b444a50623b","56cc2a23-52ad-4092-b8ae-fb8187108a25","5eb2b773-c73c-4269-a87a-23ef6cb63669"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Obertraun","gaugeEngine":"riverzone.eu","river":"Traun"}],"country":"Austria","difficulty":"WW IV","enjoyLevel":5,"diaryItemCount":13,"isObsolete":false} +{"_id":{"$oid":"5cd72a38bc648f001b1c7a92"},"sectionId":"a350f850-7427-11e9-a657-330aa0b2b77b","river":"Úhlava","section":"celý","originSectionIds":["c25c840e-2aa5-4676-85b9-40617778c70a"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":"WW II+","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cd72a38bc648f001b1c7a93"},"sectionId":"a35209c0-7427-11e9-a657-330aa0b2b77b","river":"Výrovka","section":"celý","originSectionIds":["3f550a3f-0358-4043-86bf-5c6fbbf23200"],"description":"skvělý ","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":"WW II/III","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cd72a38bc648f001b1c7a94"},"sectionId":"a3531b30-7427-11e9-a657-330aa0b2b77b","river":"Teplá","section":"celý","originSectionIds":["38a72f10-b8f6-4c0f-b47d-48a5e6569d0b"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":"WW II+","diaryItemCount":1,"isObsolete":false,"enjoyLevel":4} +{"_id":{"$oid":"5cd72a38bc648f001b1c7a95"},"sectionId":"a3542ca0-7427-11e9-a657-330aa0b2b77b","river":"Lomnický potok","section":"","originSectionIds":["b7256911-8692-4b18-957f-3837690fd025"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Czechia","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5cd7fd28bc648f001b21871b"},"sectionId":"5dbe01b0-74a5-11e9-a657-330aa0b2b77b","river":"Lammer","section":"","originSectionIds":["b8f79063-af80-4a62-83c5-303f1c32fb44"],"description":"","putIn":"","takeOut":"","gauges":[],"country":"Austria, Germany","difficulty":"WW III","enjoyLevel":5,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5cd80b39bc648f001b21da5a"},"sectionId":"c0113c30-74ad-11e9-a657-330aa0b2b77b","river":"Lammer","section":"Obere Lammer","originSectionIds":["41713a73-6443-49f4-86ba-4f3774dc9fb9","d4652228-e2bc-4822-aa32-55fe2ab7211b"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Obergäu","gaugeEngine":"bayern.de","river":"Lammer"}],"country":"Austria, Germany","difficulty":"WW II/III","diaryItemCount":2,"isObsolete":false,"enjoyLevel":5} +{"_id":{"$oid":"5cd80b39bc648f001b21da5b"},"sectionId":"c0122690-74ad-11e9-a657-330aa0b2b77b","river":"Lammer","section":"Lindental-Voglau","originSectionIds":["40ba8474-53c0-42f4-a6d7-65c92d728a57","b6897c6f-3590-41de-ae85-760b267be8a4","8efcb9fa-db10-4930-ba3f-23e9c0308295","9a98f219-9314-41ac-87e1-b45b6d5c6147","3cb15638-2091-4a84-ab0b-4afd2003e89c"],"description":"","putIn":"Bridge on road B166","takeOut":"Voglau","gauges":[{"gauge":"Obergäu","gaugeEngine":"salzburg.gv.at","river":"Lammer"}],"country":"Austria, Germany","difficulty":"WW II/III","enjoyLevel":2,"diaryItemCount":5,"isObsolete":false} +{"_id":{"$oid":"5cd80b39bc648f001b21da5c"},"sectionId":"c012e9e0-74ad-11e9-a657-330aa0b2b77b","river":"Lammer","section":"Voglauer Klamm","originSectionIds":["e22382fb-2576-4fee-936b-eb8bd5a766c1","08c4b347-9cdc-4943-bd8a-03e9cadf6ff4"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Obergäu","gaugeEngine":"salzburg.gv.at","river":"Lammer"}],"country":"Austria","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cd80b39bc648f001b21da5d"},"sectionId":"c013fb50-74ad-11e9-a657-330aa0b2b77b","river":"Lammer","section":"Voglauer klamm","originSectionIds":["7eb1fd38-9543-4858-aafd-c3e51ebbd04d","1728c247-dd8b-4b2f-9015-1969465bd344","af59b471-615f-476b-80b8-409539837421","5ebb5626-72e8-4339-a57e-d53223931837","86413ac3-fd19-448c-9816-680a2b9ab127","040fe7c9-c66d-4990-8a96-f4e39a231551","7a81c8a4-4403-41dd-9b66-419303d1781a"],"description":"","putIn":"","takeOut":"pred souteskou Lammeröfen","gauges":[{"gauge":"Obergäu","gaugeEngine":"salzburg.gv.at","river":"Lammer"}],"country":"Austria, Germany","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":7,"isObsolete":false} +{"_id":{"$oid":"5ce6d209b3514d001b3d5cdb"},"sectionId":"7bd42c30-7d7c-11e9-b366-ed49c8cbdd5a","river":"Svratka","section":"Horní Svratka","originSectionIds":["85d3b70b-a889-4dca-b86c-5554603ec902"],"description":"","putIn":"České Milovy","takeOut":"Jimramov","gauges":[{"gauge":"Borovnice","gaugeEngine":"hydro.chmi.cz","river":"Svratka"}],"country":"Czechia","difficulty":"WW I/II","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5ce7a4f8b3514d001b4166b2"},"sectionId":"35d3cdc0-7dfa-11e9-b366-ed49c8cbdd5a","river":"Saalach","section":"Teufelschlucht","originSectionIds":["b27f8cf0-018b-4e3d-9a93-dd3e895257e7","30c46ab4-e084-4d37-a437-62c38ee09266"],"description":"Pohodový vodní stav, všechno jetelne ","putIn":"","takeOut":"","gauges":[{"gauge":"Unterjettenberg","gaugeEngine":"bayern.de","river":"Saalach"}],"country":"Austria, Germany","difficulty":"WW V","enjoyLevel":5,"diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5ce7a4f9b3514d001b4166b3"},"sectionId":"35d665d0-7dfa-11e9-b366-ed49c8cbdd5a","river":"Brandenberger Ache","section":"Kaiserklamm","originSectionIds":["d7da0a2f-8c25-4211-b048-37d5eb259873","4dc3a94a-f4d4-45b4-ba6e-2f206c9a95a6","4a516af3-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Mariathal","gaugeEngine":"tirol.gv.at","river":"Brandenberger Ache"}],"country":"Austria","difficulty":"WW V-","enjoyLevel":5,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5ce7a4f9b3514d001b4166b4"},"sectionId":"35d8afc0-7dfa-11e9-b366-ed49c8cbdd5a","river":"Oetztaler Ache","section":"Middle Oetz","originSectionIds":["028a40ae-a96a-41ba-b25a-5c0273e218d8"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"country":"Austria","difficulty":"WW IV/V","enjoyLevel":5,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5ce7a4f9b3514d001b4166b5"},"sectionId":"35dad2a0-7dfa-11e9-b366-ed49c8cbdd5a","river":"Oetztaler Ache","section":"Wellerbrücke","originSectionIds":["d74e0664-3b90-4603-9e88-66470643aac4"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Tumpen","gaugeEngine":"tirol.gv.at","river":"Oetztaler Ache"}],"country":"Austria","difficulty":"WW V/VI","enjoyLevel":5,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5ce7a4f9b3514d001b4166b6"},"sectionId":"35dcce70-7dfa-11e9-b366-ed49c8cbdd5a","river":"Lužnice","section":"Suchdol - Majdalena","originSectionIds":["c1afc7ba-5ff3-4c69-b35b-326abf86a053"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Pilař","gaugeEngine":"hydro.chmi.cz","river":"Lužnice"}],"country":"Czechia","difficulty":"ZW","enjoyLevel":4,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cf27748b3514d001b7bc091"},"sectionId":"71c246d0-846d-11e9-b366-ed49c8cbdd5a","river":"Untertalbach","section":"","originSectionIds":["300ed605-7e95-49d1-990d-761f63d5288b"],"description":"Austrian creeking gem","putIn":"","takeOut":"","gauges":[],"country":"Austria","difficulty":"WW IV+","enjoyLevel":5,"diaryItemCount":1,"isObsolete":true} +{"_id":{"$oid":"5cf2a179b3514d001b7cc310"},"sectionId":"976d5640-8486-11e9-b366-ed49c8cbdd5a","river":"Verzasca","section":"Lower Verzasca","originSectionIds":["61ed646a-3392-42be-b005-6d729eeaf279"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","river":"Verzasca"}],"country":"Switzerland","difficulty":"WW V","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5cf3e4e9b3514d001b847cfd"},"sectionId":"600281a0-8547-11e9-b366-ed49c8cbdd5a","river":"Lammer","section":"Lammeröfen","originSectionIds":["e8061b3b-dceb-41dd-a1cf-42706e1cd65f","75c9cbba-e07c-47f5-a71e-ce5bd771dcc6","b06e7e6d-1570-4963-9e5f-f99033eed80f","9cbb9ebb-3d9d-4d70-bee6-42cb7c4ee9e8","4a516b0f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Obergäu","gaugeEngine":"salzburg.gv.at","river":"Lammer"}],"country":"Austria, Germany","difficulty":"WW IV/V","enjoyLevel":4,"diaryItemCount":7,"isObsolete":false} +{"_id":{"$oid":"5cf3f2f8b3514d001b84d1e6"},"sectionId":"c196d8f0-854f-11e9-b366-ed49c8cbdd5a","river":"Salza","section":"Wildalpen-Palfau","originSectionIds":["cf9b5b27-2cdb-45fc-97e7-a9ab1f919878","b9dfbb21-d59a-481d-84bb-d6c0ad3e830a","01605f72-2462-4585-b8d6-39712d97932b","1ae83125-8d70-46af-8de4-fedb6e2e32d8","6cbd0733-fa77-48f4-952a-7ef429bae238","2dc01322-bd5c-4445-8617-11724939fb3e","e50dd53d-b98f-4937-99a1-6ab0b5a8fedf"],"description":"","putIn":"Wildalpen","takeOut":"Palfau","gauges":[{"gauge":"Wildalpen","gaugeEngine":"riverzone.eu","river":"Salza"}],"country":"Rakousko ","difficulty":"WW II/III","enjoyLevel":3,"diaryItemCount":9,"isObsolete":false} +{"_id":{"$oid":"5cf3f2f8b3514d001b84d1e7"},"sectionId":"c1981170-854f-11e9-b366-ed49c8cbdd5a","river":"Hinterwildalpenbach","section":"Wildalpen","originSectionIds":["531c4a51-ea1f-4086-aa34-a8c04501fbc2","c76b182d-57d2-40cb-b21f-d8d486d53809","80384318-17ab-42ae-a014-59e37d0c544f"],"description":"Asi 40 stupnu ruzne vysky s vyvaristem, jeden za druhym. super trening boofovani","putIn":"","takeOut":"","gauges":[{"gauge":"Wildalpen","gaugeEngine":"riverzone.eu","river":"Salza"}],"country":"Austria","difficulty":"WW III/IV","enjoyLevel":5,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5cf44758b3514d001b86d08d"},"sectionId":"0bdaeb90-8582-11e9-b366-ed49c8cbdd5a","river":"Salza","section":"Lassing - Palfau","originSectionIds":["38e075e1-fd96-4b0b-931a-291773a90959","02b9afed-14a6-468b-88b8-cdb86c3723cf"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Wildalpen","gaugeEngine":"riverzone.eu","river":"Salza"}],"country":"Austria","difficulty":"WW II/III","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5cf90ec8b3514d001ba3f68e"},"sectionId":"45e83c80-885b-11e9-b366-ed49c8cbdd5a","river":"Passirio/Passer","section":"Quellenhof - Rifiano","originSectionIds":["6558844b-1a9f-40f2-b702-c9a351472661"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Merano/Meran","gaugeEngine":"riverzone.eu","river":"Passirio/Passer"}],"country":"Italy","difficulty":null,"diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5d11e308156d8b001be32d7b"},"sectionId":"e4c5d580-9727-11e9-b2de-a9f70e3de4bd","river":"Berounka","section":"Liblín - Hlince","originSectionIds":["b574e3f8-f5fd-455d-b0a6-41092e908164"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"LG Liblín","gaugeEngine":"pvl.cz","river":"Berounka"}],"country":"Czechia","difficulty":"ZW","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d178b78dba0ee001bb0ec11"},"sectionId":"3a911580-9a87-11e9-975f-b58de586e996","river":"Mur","section":"Tamsweg - Predlitz","originSectionIds":["7c14382c-1394-440a-9a9f-6f3d4b3365bc","ce8bceb6-e0d8-452c-aea9-b7c52455e084"],"description":"","putIn":"Tamsweg","takeOut":"Predlitz","gauges":[{"gauge":"Kendlbruck","gaugeEngine":"salzburg.gv.at","river":"Mur"}],"country":"Austria","difficulty":"WW II/III","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d17a798dba0ee001bb19376"},"sectionId":"fe052500-9a97-11e9-975f-b58de586e996","river":"Moesa","section":"Standardstrecke","originSectionIds":["20d44e60-9a95-11e9-ae27-59852986c05a","03f4aa8f-509f-4194-a8ce-9f037388191f","1c5c7374-f1aa-4bde-9fff-ba7fddb414a7","c877a348-46ed-41f6-9088-b0f5f1f73b31","96aa1bb8-bb44-4d74-8a59-87f688a2640a","bba19636-86cf-491b-bf9c-f5d9288b87af","d5554c17-a768-4572-a241-e691a07f1ea0","2dc209c5-6815-49ec-95bf-b0bd5207b9e6"],"description":"Nejtezsi perej asi 300m po startu, da se prohlednout z cesty po levem brehu. Silny valec vpravo, konci asi 2m skokem. I dale jsou zajimave pereje WW4-","putIn":"","takeOut":"","gauges":[{"gauge":"Lumino, Sassello","gaugeEngine":"hydrodaten.admin.ch","river":"Moesa"}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":8,"isObsolete":false} +{"_id":{"$oid":"5d17a798dba0ee001bb19377"},"sectionId":"fe076ef0-9a97-11e9-975f-b58de586e996","river":"Moesa","section":"Cama-Lumino","originSectionIds":["3dad8f60-9a95-11e9-ae27-59852986c05a","d0f2a3c5-9300-4691-95ab-9a57d4b2999a","1a7af78f-c204-480c-b4a2-d119d4ddeb5f","0dd3f5ef-d836-483c-8cfb-99a562c91c21","bdc55e86-dcb5-4ad5-ad24-f775bb1f10b2","d01604f9-25fc-4992-966c-5a9958114a28","bd3a170d-f210-4ae4-8eab-ff9c782b8807","0e77e186-de26-4a34-a0f1-22594fa39174","49aea30e-b557-4d6e-95c3-ad7ac4f7a274","a4f2e880-a019-11e9-8459-2f6b5f53a18d","c78d7f51-8cbb-4173-8932-d3e6bc925980","d6d08573-d62c-45da-b1ef-79eb27234fc1"],"description":"Je hned pod standardstrecke. Jsou tam rozlivy s melcinami, ke konci jsou pereje 2-3","putIn":"","takeOut":"","gauges":[{"gauge":"Lumino, Sassello","gaugeEngine":"hydrodaten.admin.ch","river":"Moesa"}],"country":"Switzerland","difficulty":"WW II/III","enjoyLevel":3,"diaryItemCount":12,"isObsolete":false} +{"_id":{"$oid":"5d18eb09dba0ee001bb9490b"},"sectionId":"c74fbdb0-9b58-11e9-975f-b58de586e996","river":"Ubaye","section":"Les thuiles","originSectionIds":["f6e48ddf-0bd3-4df5-b85d-cf8283e6e2cf","feeb61f2-9345-43fa-98a7-98decd69a6f9","b5c04928-75af-4c82-99b9-c546e0e513c1","6fad13d4-6c89-45c3-a054-ec4e2c73ba38","a1c073f3-cc18-459e-80ee-73ff918e41e1"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Le Lauzet-Ubaye [Roche-Rousse]","gaugeEngine":"riverzone.eu","river":"Ubaye"}],"country":"France","difficulty":"WW II+","diaryItemCount":5,"isObsolete":false,"enjoyLevel":3} +{"_id":{"$oid":"5d18eb09dba0ee001bb9490c"},"sectionId":"c7519270-9b58-11e9-975f-b58de586e996","river":"Ubaye","section":"Martinet-Le Lauzet","originSectionIds":["28427440-9b55-11e9-a049-37048a442b5d","b80c6aa9-5bc1-41e9-b0ae-f96faf331127","483fdb69-e463-40be-9509-34f388602dc8","7e58f000-62a9-4a23-a794-4a22b7556d68","95f0624b-10d0-4382-9979-313b8783b96b","c6b6686c-84fb-4a84-8ba9-9b193d87c198","dee20a7e-7744-48fe-a650-286497079c28","0dd1fc10-a01a-11e9-8e7c-113899c61182","1e3ddd8c-8d5c-4f32-89fc-0a25a1899a33","7556cbdb-2d02-457e-bf26-b0d561a8f7b7"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Roche Rousse","gaugeEngine":"riverzone.eu","river":"Ubaye"}],"country":"France","difficulty":"WW III/IV","enjoyLevel":4,"diaryItemCount":12,"isObsolete":false} +{"_id":{"$oid":"5d18eb09dba0ee001bb9490d"},"sectionId":"c7534020-9b58-11e9-975f-b58de586e996","river":"Ubaye","section":"Les ex-infrans du haut","originSectionIds":["4dc7dc87-9a53-4fc3-9cbd-e173c99904d6","c8966415-25fb-4b78-b281-628a25579fa2","ce45a08c-ef32-49c0-8a69-0472082f808b","4527f070-a01a-11e9-8e7c-113899c61182","52a898ba-ad80-43a2-9614-ab31beff986b"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Roche Rousse","gaugeEngine":"riverzone.eu","river":"Ubaye"}],"country":"France","difficulty":"WW IV/V","enjoyLevel":5,"diaryItemCount":5,"isObsolete":false} +{"_id":{"$oid":"5d190728dba0ee001bb9f048"},"sectionId":"8a6ab0b0-9b69-11e9-975f-b58de586e996","river":"Lieser","section":"Slalomstrecke","originSectionIds":["93952e94-6329-446b-9b17-9278f60ee09d","12e6bb06-37bf-445b-a6ec-8650357a85aa"],"description":"","putIn":"Lieserbrücke","takeOut":"Spittal pegel","gauges":[{"gauge":"Spittal (Fasan)","gaugeEngine":"info.ktn.gv.at","river":"Lieser"}],"country":"Austria","difficulty":"WW III","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d1a2068dba0ee001bc081fc"},"sectionId":"2d97a200-9c11-11e9-975f-b58de586e996","river":"Isel","section":"Huben - Ainet","originSectionIds":["5d489248-5761-47df-92de-ac7370487bbb","2481605d-047c-423c-8dcf-fb4a98177544"],"description":"","putIn":"Huben","takeOut":"Ainet","gauges":[{"gauge":"St Johann im Walde (Brücke)","gaugeEngine":"tirol.gv.at","river":"Isel"},{"gauge":"Lienz","gaugeEngine":"tirol.gv.at","river":"Isel"}],"country":"Austria","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d1b0f78dba0ee001bc61d75"},"sectionId":"abc3cda0-9c9f-11e9-975f-b58de586e996","river":"Guil","section":"","originSectionIds":["c6f1648c-c5f7-40d9-9e11-c0f3efbae00f"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW III-","enjoyLevel":4,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d1b7ff8dba0ee001bc8ce6f"},"sectionId":"b9dab190-9ce2-11e9-975f-b58de586e996","river":"Guil","section":"Horni Guil","originSectionIds":["1019cadb-f57b-4e1f-84d8-55d5e7ff3b8e","37d255b7-ee37-42ba-af51-ce6b638efbff","ad869774-9cb4-4ca3-9be1-304279d38935","b02a3d08-25b4-4c5a-8730-be9b8bacc325","8a7266c6-b232-4dac-a989-49ecc1a27136","b60a9b3b-b25f-496c-ba0c-d7f21548ffd6","1cee0b3a-5935-4fca-a46e-34a1f055bea7","3d2a34b0-a01e-11e9-951f-ef3c2fce861e","fba56e2f-986a-4763-8424-22ef1ca7e79e"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":10,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc92089"},"sectionId":"1bf528d0-9ceb-11e9-975f-b58de586e996","river":"Lomnický potok","section":"Pod přehradou ","originSectionIds":["b7256911-8692-4b18-957f-3837690fd025"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Pila","gaugeEngine":"hydro.chmi.cz","river":"Lomnický potok"}],"country":"Czechia","difficulty":"WW II/III","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc9208a"},"sectionId":"1c05f1b0-9ceb-11e9-975f-b58de586e996","river":"Guil","section":"Guil","originSectionIds":["b4b8ef2b-8097-4a17-94af-0dd202f1e620"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"},{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"},{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW III-","enjoyLevel":4,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc9208b"},"sectionId":"1c092600-9ceb-11e9-975f-b58de586e996","river":"Guil","section":"Hradni souteska","originSectionIds":["3ca5735f-d1c8-46d8-837b-88dd30b91022","562719d5-5c65-4800-b3f6-1d8c10dc3296","cf795e8e-3143-4a69-acce-8cd407feb0e9","a6649a15-7543-4857-8659-ef1f2abe43fd","d16276f5-15ec-49bd-be4c-3bbd2b806499","faae22d0-a01e-11e9-951f-ef3c2fce861e","67bb449e-66ab-4c3d-927a-1cfcedc2abae","02891fb5-5567-4491-9175-d42c13d5466b"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW IV/V","enjoyLevel":4,"diaryItemCount":10,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc9208c"},"sectionId":"1c0a1060-9ceb-11e9-975f-b58de586e996","river":"Guil","section":"Triplestep-prehrada","originSectionIds":["ad5fafc8-ffba-4305-bf68-c55eb510c0cd","deb9c7c4-4f14-479b-89ff-6c830bd4e49a","86ba2b0b-ae0f-40a1-b9d2-e38deb2257fc","712a5bc6-41df-4d04-9d91-71aeec4f00fa","764e79b6-3722-426b-bfd1-66356bcfabd3","066e2fc9-4b45-4f59-bb28-db938310ba75","20316850-a01f-11e9-951f-ef3c2fce861e","d1b2628c-d513-4545-9e10-82c4671f3ee9","eff1afd4-efc4-41ad-b663-cd9d309a1178","c78fdec8-6ed5-4131-9be0-7870568a0f08"],"description":"B tym muze nasednout pod tripple stepem a jet nad staircase. (viz rozdeleni useku na rivermap)","putIn":"tripple step","takeOut":"zacatek vzduti prehrady","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW IV+","enjoyLevel":5,"diaryItemCount":14,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc9208d"},"sectionId":"1c0b21d0-9ceb-11e9-975f-b58de586e996","river":"Guisane","section":"Upper Guisane","originSectionIds":["51842a7e-8c0b-4d63-ac58-af24f0d2999e","78e37bb8-9fae-449b-a537-8ef739f84b16","9c3a5b5f-09c5-49b3-995d-88a9f359899d","020bdf05-8f29-4994-929e-0cc448d4d4a8","2d35a4eb-c503-4089-b59f-962d0f6769c5","915a5d8b-d8f0-40db-8979-4b7221769e44","dbf63a9c-ac9d-408c-bc18-6a0a5f673dd6","12c93a89-d0e4-41ed-bca2-f793db901c9e","13a5da1a-ff1e-4ddc-bd1d-381f747c6445","9df63720-a01f-11e9-951f-ef3c2fce861e","b4a42215-0ebd-4685-94ed-c99a65eb7721","5c731246-d36c-4c68-a3b5-4d3388a57bd1","dedc227e-9d31-41f0-b9f7-9d1e37861012"],"description":"ve druhe casti je jedna perej ww3+. Jinak kontinuelni sypacka ww3-. Za nizke vody je to hoblovani padel. Krasna krajinovka","putIn":"","takeOut":"","gauges":[{"gauge":"Monetier-les-Bains (Pisciculture)","gaugeEngine":"riverzone.eu","river":"Guisane"}],"country":"France","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":13,"isObsolete":false} +{"_id":{"$oid":"5d1b8e09dba0ee001bc9208e"},"sectionId":"1c0c0c30-9ceb-11e9-975f-b58de586e996","river":"Guisane","section":"Lower Guisane","originSectionIds":["6854279d-965e-4a8d-a2b1-6f0dbcb96839","88dc9445-ecb8-4018-b9c1-df8921c9b4a7","0cf5e893-a086-44e5-8451-133abbbf7452","b5d536c5-3be3-4410-b437-63c922b8bca0","d59c8849-79d7-4784-bbbc-1b0599203a77","ea4940df-e1d0-4fa1-affd-309186311ec6","5bc4ebf4-79ec-4278-952a-89d012b7e4d4","d131d660-a021-11e9-951f-ef3c2fce861e","68445f25-74e0-4fdb-a322-dc16fd8a76e4","516d36aa-f244-46cf-ba76-c21027fdafd6","dbfbfcc5-5faa-4bb2-9182-ed9c2737bd0b"],"description":"Na zacatku jsou 2 jezy, minimalne jeden nutne prenaset. Pred jezama jsou varovne cedule. Da se alternativne nasednout pod druhym jezem! Pred tim skoro nic neni, takze o nic neprijdes.","putIn":"","takeOut":"","gauges":[{"gauge":"Monetier-les-Bains (Pisciculture)","gaugeEngine":"riverzone.eu","river":"Guisane"}],"country":"France","difficulty":"WW IV","enjoyLevel":4,"diaryItemCount":18,"isObsolete":false} +{"_id":{"$oid":"5d1cdf88dba0ee001bd11ed3"},"sectionId":"46107ab0-9db4-11e9-975f-b58de586e996","river":"Sesia","section":"Otra-Molia (alpin sprint) ","originSectionIds":["57f31eb9-73b7-4fab-b8af-847fbe1aa0d6"],"description":"15 minutes run,\nAll clear","putIn":"","takeOut":"","gauges":[{"gauge":"Campertogno","gaugeEngine":"riverzone.eu","river":"Sesia"}],"country":"Italy","difficulty":"WW IV+","enjoyLevel":5,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d1cfba8dba0ee001bd1cb1d"},"sectionId":"099c57f0-9dc5-11e9-975f-b58de586e996","river":"Durance","section":"Upper durance gorge","originSectionIds":["1f85a7c6-c24d-4be4-9d1b-9f4c51f8e157"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"La Clapière","gaugeEngine":"riverzone.eu","river":"Durance"}],"country":"France","difficulty":"WW III+","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d1dc088dba0ee001bd65234"},"sectionId":"6279ec00-9e3a-11e9-975f-b58de586e996","river":"Durance","section":"Briancon Gorge","originSectionIds":["0c2ef211-bc53-4a61-bf0e-024e4f0c85d3","6b185691-a8cc-45a6-bfff-0a58fa7ff425","3521dac5-cf30-48e2-aa4a-19d6dedb45a3","94e0e650-a022-11e9-951f-ef3c2fce861e","2d6b8cba-9c57-4351-8394-e5fe82729c55","fb91c0ef-cfa2-495b-8463-d65bdee310c7","a8fc744d-d759-4c74-ac98-81eea125e2ad","e3dbc4a9-f887-4f10-ad6e-1820308dde65","07b4b108-f486-424d-8141-92770b9c1e2f"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"La Clapière","gaugeEngine":"riverzone.eu","river":"Durance"}],"country":"France","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":9,"isObsolete":false} +{"_id":{"$oid":"5d1df8c8dba0ee001bd7a7ff"},"sectionId":"e96fc6a0-9e5b-11e9-975f-b58de586e996","river":"Durance","section":"Guil ->Eygleis","originSectionIds":["d0e8698f-d883-4f93-9ab9-847c98e7a992","b239f2ce-b0cb-4038-85d8-f12191595daf","0556b52a-5ffe-449d-b231-ca1c8ae91dba","4c177f44-0358-45a4-8a3c-e8e46c60b350"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"La Clapière","gaugeEngine":"riverzone.eu","river":"Durance"}],"country":"France","difficulty":"WW III","enjoyLevel":2,"diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5d1e5b38dba0ee001bda053d"},"sectionId":"959cb930-9e96-11e9-975f-b58de586e996","river":"Gyronde","section":"Lower Gyronde","originSectionIds":["c599a8a9-2a5e-401b-8c38-1a85e0643c7b","6ddad083-f0f2-4fc2-930d-f58052ada3da","1db261c0-a023-11e9-951f-ef3c2fce861e","4efd0079-b60b-4cca-bf8e-7b8362fa7f11","5c7c627d-1555-4533-8ea6-f668eced0efd","87257ebd-c657-4563-b0fa-f0dbe0ea13dd","70247f75-2967-4394-960b-1b4813cdc087"],"description":"Zacatek WW3+, postupne se zjednodusuje. Po 2 km jez s valcem, prohlednout z praveho brehu","putIn":"Pod usekem WW4+","takeOut":"Slalomka na Durance","gauges":[],"country":"France","difficulty":"WW III+","enjoyLevel":4,"diaryItemCount":7,"isObsolete":false} +{"_id":{"$oid":"5d1f3c38dba0ee001bdf5518"},"sectionId":"b1f03180-9f1c-11e9-975f-b58de586e996","river":"Romanche","section":"La Grave - tunel","originSectionIds":["fb094af5-9227-4ecd-a027-df5464e15614"],"description":"Fast section with few eddies, one class 4 rapid ","putIn":"","takeOut":"","gauges":[{"gauge":"Livet-et-Gavet [Champeau] [DREAL]","gaugeEngine":"riverzone.eu","river":"Romanche"}],"country":"France","difficulty":"WW III/IV","enjoyLevel":3,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d1f9098dba0ee001be152e9"},"sectionId":"fcc69910-9f4e-11e9-975f-b58de586e996","river":"Guil","section":"Middle guil","originSectionIds":["f6460b5c-b330-42f7-888f-71aed1c854f4","1468b934-2126-492a-a0ca-e2e2a9e7c208","5f1699dd-1f60-4d30-bcc5-26c6572b4888","32e383e8-ef26-4026-acb1-5fc59523d069"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"},{"gauge":"Echelle, pont de la D902 à Montbardon","gaugeEngine":"riverzone.eu","river":"Guil"}],"country":"France","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5d209bc8dba0ee001be7b63d"},"sectionId":"3e2696e0-9fee-11e9-975f-b58de586e996","river":"Landquart","section":"Küblis - schiers","originSectionIds":["17c2e2bf-5f18-44bc-bec4-6b8dde381688"],"description":"Runnable during hw, one tricky rapid with big hole at the end","putIn":"Küblis ","takeOut":"Schiers ","gauges":[{"gauge":"Felsenbach","gaugeEngine":"hydrodaten.admin.ch","river":"Landquart"}],"country":"Switzerland","difficulty":"WW III/IV","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d20f02adba0ee001be9ab62"},"sectionId":"89a4b020-a020-11e9-975f-b58de586e996","river":"Sesia","section":"Middle Sesia","originSectionIds":["57fa21f4-b210-480e-8588-b73f486f2b6e","d2475db0-a024-11e9-bb0e-bf1af39ef0ff","0a063bbe-6605-4c15-8609-6cc892961e64","bafe3221-671b-4587-b7f3-df57e5710dea","790726c2-f23f-45cf-a713-49ff45001c06","092e5007-587d-48a8-8fa0-bb0eaaf375c9","bf72e49b-b190-4ccf-af0e-fca2bb4a0252","55c9bc5e-f4fe-4c0c-b09e-8851fe6eb5ec"],"description":"Naseda se pod mistem WW6. Po ceste 2 vodopady, druhy se da po prohlednuti jet. Hezke izolovane pereje do WW4, mezitim spousta casu na odloveni.","putIn":"","takeOut":"","gauges":[{"gauge":"Campertogno","gaugeEngine":"riverzone.eu","river":"Sesia"}],"country":"Italy","difficulty":"WW IV","enjoyLevel":4,"diaryItemCount":8,"isObsolete":false} +{"_id":{"$oid":"5d20f02adba0ee001be9ab63"},"sectionId":"89a59a80-a020-11e9-975f-b58de586e996","river":"Sesia","section":"Lower Sesia","originSectionIds":["55fbcebb-ba54-4c70-ab72-beb0285b7f87","1b25b180-a025-11e9-bb0e-bf1af39ef0ff","9c3347a7-cafd-48c6-9d87-be6cd49c173c","da316af1-e5a8-40e2-8129-11c76691f5e9","a0dd8c98-75f3-4346-a272-ec5eb13fea6f","c5fb12f0-658f-4f26-9e0b-b65641d4f10c","a472ffbe-c040-488e-afb9-7bfd8a776937","27fd93a1-4ffd-43f7-a30d-9ba12c7857af","026e8a60-a0be-11e9-b0cf-4716f4a3aaac","c74e04ec-07c4-4569-8e74-4caf87a99a7e","542a9980-a306-11e9-b39f-7badd167d4f1"],"description":"Asi po 1km perej WW3/4","putIn":"","takeOut":"","gauges":[{"gauge":"Campertogno","gaugeEngine":"riverzone.eu","river":"Sesia"}],"country":"Italy","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":12,"isObsolete":false} +{"_id":{"$oid":"5d20fe38dba0ee001bea010b"},"sectionId":"eabd95e0-a028-11e9-975f-b58de586e996","river":"Inn","section":"Imsterschlucht","originSectionIds":["0adc26a5-9351-40d1-b7f0-4bc7e5f340c3"],"description":"","putIn":"Imst","takeOut":"Magerbach","gauges":[{"gauge":"Magerbach","gaugeEngine":"bayern.de","river":"Inn"}],"country":"Switzerland, Austria, Germany","difficulty":"WW III","enjoyLevel":4,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d21c318dba0ee001beea6e1"},"sectionId":"43503e40-a09e-11e9-975f-b58de586e996","river":"Inn","section":"Scuol trecke","originSectionIds":["a22af3bb-6be9-4525-8d39-f19ad951b075","f2f7c3f8-8a02-4cb3-9bf9-39f56e19381b","b29846b6-d415-43e3-b12b-eb648033fca3","fe940714-9855-4b9b-9fa2-d8b8021a5109","cbf7fea7-52a9-46c0-92af-8343fdef2950","b09ad890-a0ba-11e9-9ad3-5fb9956c3d70","723e16bd-2585-4d86-99e8-4eae6f477ed6","ccdcb7ef-d381-4251-9915-6d88132ae9c7","4234b478-f596-4108-a925-73d6a3aee934","6e2ba505-2728-40f3-ba33-bf7bb7830e48","842d66d0-a306-11e9-b39f-7badd167d4f1","7274bc4c-6a1a-48af-b070-7186267c6741"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Tarasp","gaugeEngine":"hydrodaten.admin.ch","river":"Inn"}],"country":"Switzerland","difficulty":"WW III/IV","enjoyLevel":4,"diaryItemCount":12,"isObsolete":false} +{"_id":{"$oid":"5d21fb59dba0ee001bf00415"},"sectionId":"cb00dd60-a0bf-11e9-975f-b58de586e996","river":"Sesia","section":"Upper Sesia - Alpine sprint","originSectionIds":["aad71c6f-8c2b-4cb0-b798-218c1b329512"],"description":"Za nizsi vody paradni technicka narocna jizda. Mene casu na reakce. Nutne zastavovat v malych vracacich. Po narocnejsi pasazi vetsinou nasleduje lehci usek na vydejchani a pripadnou rychlou zachranu. Pozor na nasedacku. ","putIn":"U starsiho mostu, na kterem je ted cyklostezka. Silnicni most je vedle. po cca 800m je nesjizdne misto! Nad tim je sjizdny slajd, ten ale radeji nejezdit! Da se nasedat i nekde pod timto mistem.","takeOut":"Tesne nad nejakym nesjizdnym mistem","gauges":[{"gauge":"Campertogno","gaugeEngine":"riverzone.eu","river":"Sesia"}],"country":"Italy","difficulty":"WW IV+","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d21fb59dba0ee001bf00416"},"sectionId":"cb01c7c0-a0bf-11e9-975f-b58de586e996","river":"Sesia","section":"Upper Sesia","originSectionIds":["f229cb51-0879-4ade-8a01-9b5e2b349d09","b8cd10d0-a0c1-11e9-9ad3-5fb9956c3d70"],"description":"","putIn":"Isolello","takeOut":"Mollia","gauges":[{"gauge":"Campertogno","gaugeEngine":"riverzone.eu","river":"Sesia"}],"country":"Italy","difficulty":"WW IV","enjoyLevel":3,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d257148ace07b001bc63e93"},"sectionId":"d9976b20-a2cf-11e9-a47b-c94919d3b511","river":"Inn","section":"Giarsun","originSectionIds":["4a4f210f-afd7-11e9-bb38-61c23b92b63e"],"gauges":[{"river":"Inn","gauge":"Tarasp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":33,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW IV","enjoyLevel":5,"diaryItemCount":12,"isObsolete":false,"description":"Imported from Rivermap"} +{"_id":{"$oid":"5d9a3a29a8b4b5001c357ad7"},"sectionId":"c75c4b10-e86b-11e9-8c96-85c363923362","river":"Saalach","section":"Teufelsschlucht","originSectionIds":["644a4a76-ccd0-4bad-a9e7-e4d260c2f7cf"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Unterjettenberg","gaugeEngine":"bayern.de","river":"Saalach"}],"country":"Austria","difficulty":null,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ad8"},"sectionId":"c7d04290-e86b-11e9-8c96-85c363923362","river":"Zlorečica","section":"","originSectionIds":["e07645b4-9065-48dd-8b50-a0cedec5764e","7821cd4d-8726-4073-9bb5-95b1fc04fcaf"],"description":"Velmi neprijemne prenaseni sifonu pres celou reku.","putIn":"","takeOut":"","gauges":[],"country":"","difficulty":"WW III","enjoyLevel":3,"diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ad9"},"sectionId":"c7d2b390-e86b-11e9-8c96-85c363923362","river":"Labe","section":"kanál Roudnice ","originSectionIds":["f93ee70c-8178-4ba8-ac62-3b77519db298"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Mělník","gaugeEngine":"hydro.chmi.cz","river":"Labe"}],"country":"Czechia","difficulty":"WW III+","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ada"},"sectionId":"c7d4d670-e86b-11e9-8c96-85c363923362","river":"Jizera","section":"Mýto - Ostrov ","originSectionIds":["3df77213-6ba9-4d7f-baa8-f09897d20eec"],"description":"","putIn":"Mýto ","takeOut":"Ostrov hrůzy ","gauges":[{"gauge":"Jablonec nad Jizerou","gaugeEngine":"hydro.chmi.cz","river":"Jizera"}],"country":"Czechia","difficulty":"WW III/IV","enjoyLevel":3,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357adb"},"sectionId":"c7d72060-e86b-11e9-8c96-85c363923362","river":"Berounka","section":"Beroun - Karlštejn ","originSectionIds":["312fd1dd-8c6e-471e-bba2-0ec75b16abce"],"description":"","putIn":"Beroun","takeOut":"Karlštejn","gauges":[{"gauge":"Beroun","gaugeEngine":"hydro.chmi.cz","river":"Berounka"}],"country":"Czechia","difficulty":"ZW","enjoyLevel":2,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357adc"},"sectionId":"c7d96a50-e86b-11e9-8c96-85c363923362","river":"Isel","section":"Hintere Isel","originSectionIds":["de541ce7-f885-4e8a-81ab-e294291d6d06","4a52a37a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Hinterbichl","gaugeEngine":"riverzone.eu","river":"Isel"}],"country":"Austria","difficulty":"WW III/IV","diaryItemCount":11,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357add"},"sectionId":"c7dbdb50-e86b-11e9-8c96-85c363923362","river":"Koppentraun","section":"Bad Aussee - Koppenrast","originSectionIds":["d348dd62-921d-4c22-b19e-24c7e3a01023","4a516b0e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","putIn":"","takeOut":"","gauges":[{"gauge":"Obertraun","gaugeEngine":"riverzone.eu","river":"Traun"}],"country":"Austria","difficulty":"WW IV","diaryItemCount":4,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ade"},"sectionId":"c7dfd2f0-e86b-11e9-8c96-85c363923362","river":"Arkansas","section":"Brown's Canyon","originSectionIds":["11610040-ccd7-45c0-a144-96dfd4110c0c"],"description":"","putIn":"fishermans","takeOut":"heckla","gauges":[],"country":"usa","difficulty":"WW III","enjoyLevel":5,"diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357adf"},"sectionId":"c7e243f0-e86b-11e9-8c96-85c363923362","river":"Defereggenbach","section":"Waterfall section","originSectionIds":["74ef7223-abd3-4178-b5c6-b0bbcabcce7e","63c99938-6684-4296-913a-383f893cae8d"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Hopfgarten iDefereggen-Zwenewald","gaugeEngine":"tirol.gv.at","river":"Schwarzach"}],"country":"Rakousko ","difficulty":"WW IV/V","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae0"},"sectionId":"c7e466d0-e86b-11e9-8c96-85c363923362","river":"Kalserbach","section":"Standart","originSectionIds":["11051ee9-7f57-4211-a5db-de370be2cae6","3861ccd4-8f49-410a-876a-9fe0af3882cc"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"Staniska","gaugeEngine":"riverzone.eu","river":"Kalserbach"}],"country":"Austria","difficulty":"WW IV/V","enjoyLevel":5,"diaryItemCount":2,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae1"},"sectionId":"c7e689b0-e86b-11e9-8c96-85c363923362","river":"Aurino/Ahr","section":"Schloss","originSectionIds":["d0ff3747-7ef7-4e8f-a0de-ad39db3ff568","d77537d2-804a-43c0-b9c1-ba0891fe7411","c4f022fa-a089-4441-bd9f-15fb3520d036"],"description":"","putIn":"","takeOut":"","gauges":[{"gauge":"S.Giorgio/St.Georgen","gaugeEngine":"riverzone.eu","river":"Aurino/Ahr"}],"country":"Italy","difficulty":"WW IV","enjoyLevel":4,"diaryItemCount":3,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae2"},"sectionId":"c7e88580-e86b-11e9-8c96-85c363923362","river":"Thur","section":"Oberste (Stein - Neu St.Johann)","originSectionIds":["4a4f2100-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Thur","gauge":"Stein [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":12,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae3"},"sectionId":"c7eacf70-e86b-11e9-8c96-85c363923362","river":"Thur","section":"Rohrerbrücke - Ellikon","originSectionIds":["4a4f2101-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Thur","gauge":"Andelfingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":18,"mwMin":null,"mw":60,"mwMax":null,"hw":120}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae4"},"sectionId":"c7ecf250-e86b-11e9-8c96-85c363923362","river":"Sitter","section":"Obere Sitterschlucht (Appenzell - Haslen)","originSectionIds":["4a4f2102-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sitter","gauge":"Appenzell","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":10,"mwMax":null,"hw":18}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae5"},"sectionId":"c7eeee20-e86b-11e9-8c96-85c363923362","river":"Sitter","section":"Untere Sitterschlucht (Haslen - St. Gallen)","originSectionIds":["4a4f2103-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sitter","gauge":"Appenzell","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":16,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae6"},"sectionId":"c7f11100-e86b-11e9-8c96-85c363923362","river":"Necker","section":"Oberer (Schwanzbrugg - St. Peterzell)","originSectionIds":["4a4f2104-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Necker","gauge":"Mogelsberg, Aachsäge","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":23,"mwMax":null,"hw":35}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae7"},"sectionId":"c7f44550-e86b-11e9-8c96-85c363923362","river":"Necker","section":"Mittlerer (St. Peterzell - Anzenwil)","originSectionIds":["4a4f2105-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Necker","gauge":"Mogelsberg, Aachsäge","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":20,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae8"},"sectionId":"c7f64120-e86b-11e9-8c96-85c363923362","river":"Urnäsch","section":"Obere Urnäschschlucht (Zürchersmühle - Hundwiler Brücke)","originSectionIds":["4a4f2106-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Urnäsch","gauge":"Hundwil, Aeschentobel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":10,"mwMax":null,"hw":14}],"country":"Switzerland","difficulty":"WW IV-","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357ae9"},"sectionId":"c7f86400-e86b-11e9-8c96-85c363923362","river":"Murg","section":"Münchwilen - Aumühle","originSectionIds":["4a4f2107-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Murg","gauge":"Wängi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":10,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aea"},"sectionId":"c7fbbf60-e86b-11e9-8c96-85c363923362","river":"Landquart","section":"Küblis - Schiers","originSectionIds":["4a4f2108-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Landquart","gauge":"Felsenbach","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":11,"mwMin":null,"mw":30,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aeb"},"sectionId":"c7ffde10-e86b-11e9-8c96-85c363923362","river":"Albula","section":"Bellaluna - Filisur","originSectionIds":["4a4f2109-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Albula","gauge":"Tiefencastel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":35,"mwMin":null,"mw":55,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW III+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aec"},"sectionId":"c8029d30-e86b-11e9-8c96-85c363923362","river":"Verzasca","section":"Untere (Lavertezzo - Staustufe)","originSectionIds":["4a4f210a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":14,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW V-","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aed"},"sectionId":"c804e720-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Cumpadials - Trun","originSectionIds":["4a4f210b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Ilanz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":25,"mwMin":null,"mw":50,"mwMax":null,"hw":100}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aee"},"sectionId":"c8075820-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Madernal - Cumpadials","originSectionIds":["4a4f210c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Ilanz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":60,"mwMin":null,"mw":80,"mwMax":null,"hw":120}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aef"},"sectionId":"c809a210-e86b-11e9-8c96-85c363923362","river":"Somvixer Rhein","section":"Brücke - Stausee","originSectionIds":["4a4f210d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rein da Sumvitg","gauge":"Sumvitg, Encardens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":8,"mwMax":null,"hw":12}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af0"},"sectionId":"c80c1310-e86b-11e9-8c96-85c363923362","river":"Furkareuss","section":"Realp - Andermatt","originSectionIds":["4a4f210e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Reuss","gauge":"Andermatt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":18,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af1"},"sectionId":"c8111c20-e86b-11e9-8c96-85c363923362","river":"Inn","section":"Scuoler Strecke","originSectionIds":["4a4f2110-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Tarasp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":9,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af2"},"sectionId":"c813b430-e86b-11e9-8c96-85c363923362","river":"Inn","section":"Finstermünzer (Martina - Kajetansbrücke)","originSectionIds":["4a4f2111-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Martina","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":40,"mwMin":null,"mw":90,"mwMax":null,"hw":120}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af3"},"sectionId":"c8162530-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Thun - Bern","originSectionIds":["4a4f2112-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Aare","gauge":"Thun","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":50,"mwMin":null,"mw":200,"mwMax":null,"hw":280}],"country":"Switzerland","difficulty":"WW I","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af4"},"sectionId":"c8190b60-e86b-11e9-8c96-85c363923362","river":"Sense","section":"Plaffeien Guggersbachbrücke - Restaurant Sense Beach","originSectionIds":["4a4f2113-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sense","gauge":"Thörishaus, Sensematt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":30,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af5"},"sectionId":"c81ba370-e86b-11e9-8c96-85c363923362","river":"Doubs","section":"Goumois - St.Ursanne","originSectionIds":["4a4f2114-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Doubs","gauge":"Ocourt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":40,"mwMax":null,"hw":150}],"country":"Switzerland","difficulty":"WW I","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af6"},"sectionId":"c81ded60-e86b-11e9-8c96-85c363923362","river":"Saane","section":"Schiffenen - Wehr Niederried in der Aare","originSectionIds":["4a4f2115-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Saane","gauge":"Laupen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":150,"mwMax":null,"hw":250}],"country":"Switzerland","difficulty":"WW I","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af7"},"sectionId":"c8205e60-e86b-11e9-8c96-85c363923362","river":"Saane","section":"Hauterive - Pont de Perolles","originSectionIds":["4a4f2116-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sarine","gauge":"Fribourg","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":50,"mwMax":null,"hw":200}],"country":"Switzerland","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af8"},"sectionId":"c823b9c0-e86b-11e9-8c96-85c363923362","river":"Inn","section":"Suscher Strecke","originSectionIds":["4a4f2117-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Tarasp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":30,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357af9"},"sectionId":"c8262ac0-e86b-11e9-8c96-85c363923362","river":"Inn","section":"Ardez","originSectionIds":["4a4f2118-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Tarasp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":30,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW IV+","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357afa"},"sectionId":"c82874b0-e86b-11e9-8c96-85c363923362","river":"Inn","section":"S-chanf Schlucht","originSectionIds":["4a4f2119-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Cinuos","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":18,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357afb"},"sectionId":"c82b81f0-e86b-11e9-8c96-85c363923362","river":"Inn","section":"Brail Schlucht","originSectionIds":["4a4f211a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Inn","gauge":"Cinuos","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":15,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357afc"},"sectionId":"c82df2f0-e86b-11e9-8c96-85c363923362","river":"Moesa","section":"Sorte - Cama","originSectionIds":["4a4f211b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Moesa","gauge":"Lumino, Sassello","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":35,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357afd"},"sectionId":"c83211a0-e86b-11e9-8c96-85c363923362","river":"Moesa","section":"Cama - Roveredo","originSectionIds":["4a4f211c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Moesa","gauge":"Lumino, Sassello","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357afe"},"sectionId":"c834f7d0-e86b-11e9-8c96-85c363923362","river":"Rotbach","section":"Bühler - Mündung in Sitter","originSectionIds":["4a4f211d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rotbach","gauge":"Bühler, Au","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":5,"mwMax":null,"hw":8}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2aa8b4b5001c357aff"},"sectionId":"c83741c0-e86b-11e9-8c96-85c363923362","river":"Simme","section":"Garstatt - Heideweidli","originSectionIds":["4a4f211e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Simme","gauge":"Oberwil","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":11,"mwMin":null,"mw":22,"mwMax":null,"hw":35}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b00"},"sectionId":"c83a00e0-e86b-11e9-8c96-85c363923362","river":"Verzasca","section":"Mittlere (Brione - Aquino)","originSectionIds":["4a4f4810-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Chiesa di Santa Maria [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b01"},"sectionId":"c83d5c40-e86b-11e9-8c96-85c363923362","river":"Engelberger Aa","section":"Wolfenschiessen - Buochs","originSectionIds":["4a4f4811-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Engelberger Aa","gauge":"Buochs, Flugplatz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":25,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b02"},"sectionId":"c83ff450-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Amsteg Autobahnrastplatz - Seedorf","originSectionIds":["4a4f4812-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Reuss","gauge":"Seedorf","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":35,"mwMin":null,"mw":65,"mwMax":null,"hw":220}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b03"},"sectionId":"c8428c60-e86b-11e9-8c96-85c363923362","river":"Muota","section":"Muotathal, Fussballplatz - Illgau, Holzlagerplatz","originSectionIds":["4a4f4813-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Muota","gauge":"Selgis","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":35,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b04"},"sectionId":"c844d650-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Tavanasa - Ruein","originSectionIds":["4a4f4814-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Ilanz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":40,"mwMin":null,"mw":70,"mwMax":null,"hw":130}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b05"},"sectionId":"c8474750-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Ruein - Ilanz","originSectionIds":["4a4f4815-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Ilanz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":25,"mwMin":null,"mw":50,"mwMax":null,"hw":120}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b06"},"sectionId":"c8499140-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Ilanz - Versam","originSectionIds":["4a4f4816-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Rheinschlucht [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":80,"mwMax":null,"hw":200}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b07"},"sectionId":"c84c2950-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Versam - Reichenau","originSectionIds":["4a4f4817-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Rheinschlucht [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":80,"mwMax":null,"hw":200}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b08"},"sectionId":"c84ec160-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Schöllenen Schlucht","originSectionIds":["4a4f4818-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Reuss","gauge":"Andermatt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":16,"mwMin":null,"mw":18,"mwMax":null,"hw":22}],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b09"},"sectionId":"c8515970-e86b-11e9-8c96-85c363923362","river":"Thur","section":"Obere (Bütschwil - Mühlau)","originSectionIds":["4a4f4819-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Thur","gauge":"Jonschwil, Mühlau","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0a"},"sectionId":"c8543fa0-e86b-11e9-8c96-85c363923362","river":"Thur","section":"Obere (Mühlau - Schwarzenbach)","originSectionIds":["4a4f481a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Thur","gauge":"Jonschwil, Mühlau","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0b"},"sectionId":"c8579b00-e86b-11e9-8c96-85c363923362","river":"Vorderrhein","section":"Trun - Tavanasa","originSectionIds":["4a4f481b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vorderrhein","gauge":"Ilanz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":60,"mwMin":null,"mw":80,"mwMax":null,"hw":120}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0c"},"sectionId":"c85b6b90-e86b-11e9-8c96-85c363923362","river":"Hinterrhein","section":"Hinterrhein - Splügen","originSectionIds":["4a4f481c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hinterrhein","gauge":"Hinterrhein, Schiessplatz","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":20,"mwMax":null,"hw":40}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0d"},"sectionId":"c85ddc90-e86b-11e9-8c96-85c363923362","river":"Hinterrhein","section":"Albulamündung - Reichenau","originSectionIds":["4a4f481d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hinterrhein","gauge":"Fürstenau","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":80,"mwMax":null,"hw":150}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0e"},"sectionId":"c86110e0-e86b-11e9-8c96-85c363923362","river":"Plessur","section":"Langwies - Molinis","originSectionIds":["4a4f481e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Plessur","gauge":"Chur","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":10,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b0f"},"sectionId":"c8635ad0-e86b-11e9-8c96-85c363923362","river":"Valser Rhein","section":"Oberer (Brücke - Lunschania)","originSectionIds":["4a4f481f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":17,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b10"},"sectionId":"c86619f0-e86b-11e9-8c96-85c363923362","river":"Valser Rhein","section":"Unterer (Lunschania - Uors)","originSectionIds":["4a4f4820-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":17,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b11"},"sectionId":"c86863e0-e86b-11e9-8c96-85c363923362","river":"Glenner","section":"Oberster (Vrin - Surin)","originSectionIds":["4a4f4821-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":20,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b12"},"sectionId":"c86d9400-e86b-11e9-8c96-85c363923362","river":"Glenner","section":"Lumbreiner Schlucht (Surin - Vignon)","originSectionIds":["4a4f4822-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":14,"mwMax":null,"hw":18}],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b13"},"sectionId":"c870c850-e86b-11e9-8c96-85c363923362","river":"Glenner","section":"Vignon - Uors","originSectionIds":["4a4f4823-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":20,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b14"},"sectionId":"c873fca0-e86b-11e9-8c96-85c363923362","river":"Glenner","section":"Uors - Peiden","originSectionIds":["4a4f4824-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":20,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b15"},"sectionId":"c87709e0-e86b-11e9-8c96-85c363923362","river":"Glenner","section":"Peiden - Ilanz","originSectionIds":["4a4f4825-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glenner","gauge":"Castrisch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":20,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b16"},"sectionId":"c87a8c50-e86b-11e9-8c96-85c363923362","river":"Albula","section":"Waldschlucht","originSectionIds":["4a4f4826-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Albula","gauge":"Tiefencastel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":40}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b17"},"sectionId":"c87dc0a0-e86b-11e9-8c96-85c363923362","river":"Albula","section":"Schynschlucht","originSectionIds":["4a4f4827-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Albula","gauge":"Tiefencastel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":40,"mwMin":null,"mw":55,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b18"},"sectionId":"c880a6d0-e86b-11e9-8c96-85c363923362","river":"Ribo","section":"Vergeletto - 300m vor Brücke Strasse Onsemone-Spruga","originSectionIds":["4a4f4828-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":25,"mwMax":null,"hw":45}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b19"},"sectionId":"c88317d0-e86b-11e9-8c96-85c363923362","river":"Magliasina","section":"Novaggio - Magliaso","originSectionIds":["4a4f4829-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Magliasina","gauge":"Magliaso, Ponte","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":6,"mwMax":null,"hw":9}],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1a"},"sectionId":"c88588d0-e86b-11e9-8c96-85c363923362","river":"Calancasca","section":"Aquino - Buseno","originSectionIds":["4a4f482a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Calancasca","gauge":"Buseno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":12,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1b"},"sectionId":"c887f9d0-e86b-11e9-8c96-85c363923362","river":"Ticino","section":"Oberer 2 (Fontana - Airolo)","originSectionIds":["4a4f482b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Reuss","gauge":"Andermatt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":15,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1c"},"sectionId":"c88ab8f0-e86b-11e9-8c96-85c363923362","river":"Ribo","section":"Oberer (Steg - Vergeletto)","originSectionIds":["4a4f482c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":35,"mwMin":null,"mw":50,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1d"},"sectionId":"c88d29f0-e86b-11e9-8c96-85c363923362","river":"Rovana di Campo","section":"Niva - Collinasca","originSectionIds":["4a4f482d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":8,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1e"},"sectionId":"c88fe910-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Serpentinen - Gletsch-Oberwald","originSectionIds":["4a4f482e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Gletsch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":1.5,"mwMin":null,"mw":2.5,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b1f"},"sectionId":"c8934470-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Oberwald - Reckingen","originSectionIds":["4a4f482f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Gletsch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":10,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b20"},"sectionId":"c895b570-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Reckingen - Steinhaus","originSectionIds":["4a4f4830-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Reckingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":25,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b21"},"sectionId":"c897d850-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Obere Rhoneschlucht","originSectionIds":["4a4f4831-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Reckingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":12,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b22"},"sectionId":"c89cba50-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Untere Rhoneschlucht","originSectionIds":["4a4f4832-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Reckingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":16,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b23"},"sectionId":"c89f7970-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Grengiols - Filet","originSectionIds":["4a4f4833-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Reckingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":20,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b24"},"sectionId":"c8a1ea70-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Filet - Brig","originSectionIds":["4a4f9630-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Reckingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":22,"mwMax":null,"hw":35}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b25"},"sectionId":"c8a5e210-e86b-11e9-8c96-85c363923362","river":"Rhône / Rotten","section":"Susten - Sierre","originSectionIds":["4a4f9631-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rhône","gauge":"Sion","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":120,"mwMin":null,"mw":250,"mwMax":null,"hw":400}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b26"},"sectionId":"c8a98b90-e86b-11e9-8c96-85c363923362","river":"Lonza","section":"Fafleralp - Kühmad","originSectionIds":["4a4f9632-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lonza","gauge":"Blatten","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":8,"mwMax":null,"hw":9}],"country":"Switzerland","difficulty":"WW VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b27"},"sectionId":"c8ac23a0-e86b-11e9-8c96-85c363923362","river":"Lonza","section":"Kühmad - Minigolf Wiler","originSectionIds":["4a4f9633-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lonza","gauge":"Blatten","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":10,"mwMax":null,"hw":12}],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b28"},"sectionId":"c8ae6d90-e86b-11e9-8c96-85c363923362","river":"Lonza","section":"Minigolf Wiler - Stausee","originSectionIds":["4a4f9634-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lonza","gauge":"Blatten","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":11,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b29"},"sectionId":"c8b2da60-e86b-11e9-8c96-85c363923362","river":"Vispa","section":"KW Ackersand - Visp","originSectionIds":["4a4f9635-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vispa","gauge":"Visp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":30,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2a"},"sectionId":"c8b4d630-e86b-11e9-8c96-85c363923362","river":"Mattervisp","section":"Mattsand - ARA St.Niklaus","originSectionIds":["4a4f9636-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vispa","gauge":"Visp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":35,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2b"},"sectionId":"c8b635c0-e86b-11e9-8c96-85c363923362","river":"Mattervisp","section":"ARA St.Niklaus - Kalpetran","originSectionIds":["4a4f9637-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vispa","gauge":"Visp","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":35,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2c"},"sectionId":"c8b87fb0-e86b-11e9-8c96-85c363923362","river":"Mattervisp","section":"Kalpetran - KW Ackersand","originSectionIds":["4a4f9638-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2d"},"sectionId":"c8ba0650-e86b-11e9-8c96-85c363923362","river":"Drance","section":"Sembrancher - Martigny-Croix","originSectionIds":["4a4f9639-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Drance","gauge":"Martigny, Pont de Rossettan","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":17,"mwMin":null,"mw":22,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2e"},"sectionId":"c8bb8cf0-e86b-11e9-8c96-85c363923362","river":"Vièze","section":"Champery - Troistorrents","originSectionIds":["4a4f963a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Grande Eau","gauge":"Aigle","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":8,"mwMax":null,"hw":10}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b2f"},"sectionId":"c8bdafd0-e86b-11e9-8c96-85c363923362","river":"Melezza","section":"unterhalb Stausee","originSectionIds":["4a4f963b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b30"},"sectionId":"c8bf0f60-e86b-11e9-8c96-85c363923362","river":"Alp/Sihl","section":"Biberbrugg - Schindellegi","originSectionIds":["4a4f963c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Alp","gauge":"Biberbrugg [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW III+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b31"},"sectionId":"c8c09600-e86b-11e9-8c96-85c363923362","river":"Jona","section":"Rüti - Jona","originSectionIds":["4a4f963d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Jona","gauge":"Rüti","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":8,"mwMax":null,"hw":12}],"country":"Switzerland","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b32"},"sectionId":"c8c2dff0-e86b-11e9-8c96-85c363923362","river":"Sihl","section":"Kraftwerk Waldhalde - Sihlbrugg","originSectionIds":["4a4f963e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sihl","gauge":"Blattwag, Radaraufz.","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b33"},"sectionId":"c8c550f0-e86b-11e9-8c96-85c363923362","river":"Chirel","section":"Horboden - Oey","originSectionIds":["4a4f963f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Chirel","gauge":"Horboden [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":null,"mwMin":null,"mw":null,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b34"},"sectionId":"c8c7c1f0-e86b-11e9-8c96-85c363923362","river":"Goldach","section":"Zweibrückenstrecke","originSectionIds":["4a4f9640-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Goldach","gauge":"Goldach, Bleiche","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":9,"mwMax":null,"hw":11}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b35"},"sectionId":"c8ca0be0-e86b-11e9-8c96-85c363923362","river":"Goldach","section":"Martinsschlucht","originSectionIds":["4a4f9641-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Goldach","gauge":"Goldach, Bleiche","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":8,"mwMax":null,"hw":10}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b36"},"sectionId":"c8cc7ce0-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Pfaffensprung - Meitschligen","originSectionIds":["4a4f9642-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b37"},"sectionId":"c8ceede0-e86b-11e9-8c96-85c363923362","river":"Medelser Rhein","section":"Parde - Baselgia","originSectionIds":["4a4f9643-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ba8b4b5001c357b38"},"sectionId":"c8d185f0-e86b-11e9-8c96-85c363923362","river":"Glatt","section":"Oberglatt - Oberbüren","originSectionIds":["4a4f9644-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Glatt","gauge":"Herisau, Zellersmühle","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":12,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW I","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b39"},"sectionId":"c8d46c20-e86b-11e9-8c96-85c363923362","river":"Entschlige","section":"Achseten - Frutigen","originSectionIds":["4a4f9645-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Entschlige","gauge":"Frutigen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":12,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3a"},"sectionId":"c8d75250-e86b-11e9-8c96-85c363923362","river":"Saane","section":"Saanen - Camping Le Berceau","originSectionIds":["4a4f9646-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Louibach","gauge":"Gstaad","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":6.5,"mwMax":null,"hw":10}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3b"},"sectionId":"c8daadb0-e86b-11e9-8c96-85c363923362","river":"Kander","section":"Kandergrund - Frutigen","originSectionIds":["4a4f9647-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kander","gauge":"Frutigen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":18,"mwMax":null,"hw":34}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3c"},"sectionId":"c8decc60-e86b-11e9-8c96-85c363923362","river":"Kiene","section":"Kiental - Kien","originSectionIds":["4a4f9648-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3d"},"sectionId":"c8e13d60-e86b-11e9-8c96-85c363923362","river":"Weisse Lütschine","section":"Lauterbrunnen - Zweilütschinen","originSectionIds":["4a4fbd40-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Weisse Lütschine","gauge":"Zweilütschinen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":10,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3e"},"sectionId":"c8e3fc80-e86b-11e9-8c96-85c363923362","river":"Schwarze Lütschine","section":"Lütschental - Zweilütschinen","originSectionIds":["4a4fbd41-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Schwarze Lütschine","gauge":"Zweilütsch. [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":15,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b3f"},"sectionId":"c8e6bba0-e86b-11e9-8c96-85c363923362","river":"Lütschine","section":"Zweilütschinen - Bönigen","originSectionIds":["4a4fbd42-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lütschine","gauge":"Gsteig","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":12,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b40"},"sectionId":"c8e953b0-e86b-11e9-8c96-85c363923362","river":"Fildrich","section":"Schwenden - Zwischenflüh","originSectionIds":["4a4fbd43-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Fildrich","gauge":"Diemtigen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":8,"mwMax":null,"hw":11}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b41"},"sectionId":"c8ebebc0-e86b-11e9-8c96-85c363923362","river":"Grosse Emme","section":"Bumbach - Eggiwil","originSectionIds":["4a4fbd44-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Emme","gauge":"Eggiwil, Heidbüel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":12,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b42"},"sectionId":"c8ee83d0-e86b-11e9-8c96-85c363923362","river":"Kander","section":"Reutigen - Einigen","originSectionIds":["4a4fbd45-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b43"},"sectionId":"c8f16a00-e86b-11e9-8c96-85c363923362","river":"Sernf","section":"Elm Steinibach - Elm Schwändi","originSectionIds":["4a4fbd46-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b44"},"sectionId":"c8f3b3f0-e86b-11e9-8c96-85c363923362","river":"Urnäsch","section":"Untere Urnäschschlucht (Hundwiler Brücke - St. Gallen)","originSectionIds":["4a4fbd47-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Urnäsch","gauge":"Hundwil, Aeschentobel","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":15,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b45"},"sectionId":"c8f5fde0-e86b-11e9-8c96-85c363923362","river":"Sernf","section":"Striit (ab Elm Schwändi)","originSectionIds":["4a4fbd48-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b46"},"sectionId":"c8f820c0-e86b-11e9-8c96-85c363923362","river":"Sernf","section":"Elm - Engi","originSectionIds":["4a4fbd49-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sernf","gauge":"Matt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":12,"mwMax":null,"hw":18}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b47"},"sectionId":"c8fadfe0-e86b-11e9-8c96-85c363923362","river":"Sernf","section":"Obere Sernfschlucht","originSectionIds":["4a4fbd4a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b48"},"sectionId":"c8fcb4a0-e86b-11e9-8c96-85c363923362","river":"Sernf","section":"Untere Sernfschlucht","originSectionIds":["4a4fbd4b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b49"},"sectionId":"c8feb070-e86b-11e9-8c96-85c363923362","river":"Linth","section":"Schwanden - Ennenda","originSectionIds":["4a4fbd4c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Linth","gauge":"SBB Schwanden","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":30,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4a"},"sectionId":"c900ac40-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Guttannen - Boden","originSectionIds":["4a4fbd4d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4b"},"sectionId":"c902a810-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Boden - Innertkirchen","originSectionIds":["4a4fbd4e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4c"},"sectionId":"c904a3e0-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Aareschlucht","originSectionIds":["4a4fbd4f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Aare","gauge":"Brienzwiler","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":10,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4d"},"sectionId":"c909fb10-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Meiringen - Brienzer See","originSectionIds":["4a4fbd50-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Aare","gauge":"Brienzwiler","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":25,"mwMin":null,"mw":80,"mwMax":null,"hw":140}],"country":"Switzerland","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4e"},"sectionId":"c90bcfd0-e86b-11e9-8c96-85c363923362","river":"Gadmenwasser","section":"Gentlenwassermündung - Wyler","originSectionIds":["4a4fbd51-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b4f"},"sectionId":"c90d2f60-e86b-11e9-8c96-85c363923362","river":"Göschener Reuss","section":"Mündung Voralpreuss - Abfrutt","originSectionIds":["4a4fbd52-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b50"},"sectionId":"c90edd10-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Göschenen - Wassen","originSectionIds":["4a4fbd53-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b51"},"sectionId":"c91063b0-e86b-11e9-8c96-85c363923362","river":"Meienreuss","section":"Meien - kleines Rückstaubecken","originSectionIds":["4a4fbd54-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b52"},"sectionId":"c911c340-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Meitschlingen - Amsteg","originSectionIds":["4a4fbd55-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b53"},"sectionId":"c91349e0-e86b-11e9-8c96-85c363923362","river":"Reuss","section":"Bremgarten - Mellingen","originSectionIds":["4a4fbd56-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Reuss","gauge":"Mellingen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":70,"mwMin":null,"mw":250,"mwMax":null,"hw":400}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b54"},"sectionId":"c914a970-e86b-11e9-8c96-85c363923362","river":"Sorne","section":"Courfaivre - Delémont","originSectionIds":["4a4fbd57-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sorne","gauge":"Delémont","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":6,"mwMax":null,"hw":13}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b55"},"sectionId":"c9163010-e86b-11e9-8c96-85c363923362","river":"Maggia","section":"Cevio - Aurigeno","originSectionIds":["4a4fbd58-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Maggia","gauge":"Bignasco, Ponte nuovo","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":40,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b56"},"sectionId":"c91804d0-e86b-11e9-8c96-85c363923362","river":"Maggia","section":"Aurigeno - Avegno","originSectionIds":["4a4fbd59-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Maggia","gauge":"Locarno, Solduno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":35,"mwMin":null,"mw":50,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b57"},"sectionId":"c9193d50-e86b-11e9-8c96-85c363923362","river":"Brenno","section":"Aquarossa - Motto","originSectionIds":["4a4fbd5a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Brenno","gauge":"Loderio","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":25,"mwMax":null,"hw":35}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b58"},"sectionId":"c91a9ce0-e86b-11e9-8c96-85c363923362","river":"Tresa","section":"PonteTresa - Fornasette","originSectionIds":["4a4fbd5b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Tresa","gauge":"Ponte Tresa, Rocchetta","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":25,"mwMax":null,"hw":45}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b59"},"sectionId":"c91bfc70-e86b-11e9-8c96-85c363923362","river":"Melezza","section":"Golino - Losone","originSectionIds":["4a4fbd5c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Maggia","gauge":"Locarno, Solduno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":40,"mwMin":null,"mw":90,"mwMax":null,"hw":200}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5a"},"sectionId":"c91d5c00-e86b-11e9-8c96-85c363923362","river":"Verzasca","section":"Obere 2 (Croce - Brione)","originSectionIds":["4a4fbd5d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Chiesa di Santa Maria [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":22,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW III/IV","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5b"},"sectionId":"c91e9480-e86b-11e9-8c96-85c363923362","river":"Ossola","section":"Bolastro - Brione","originSectionIds":["4a4fbd5e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":30,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5c"},"sectionId":"c91ff410-e86b-11e9-8c96-85c363923362","river":"Moesa","section":"Roveredo - Bellinzona","originSectionIds":["4a4fbd5f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Moesa","gauge":"Lumino, Sassello","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":25,"mwMin":null,"mw":45,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5d"},"sectionId":"c92153a0-e86b-11e9-8c96-85c363923362","river":"Moesa","section":"Castello di Mesocco - Arabella","originSectionIds":["4a4fbd60-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Moesa","gauge":"Al Pont, Soazza","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":10,"mwMax":null,"hw":15}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5e"},"sectionId":"c92487f0-e86b-11e9-8c96-85c363923362","river":"Ticino","section":"Claro - Bellinzona","originSectionIds":["4a4fbd61-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Ticino","gauge":"Bellinzona","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":40,"mwMin":null,"mw":90,"mwMax":null,"hw":160}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b5f"},"sectionId":"c926aad0-e86b-11e9-8c96-85c363923362","river":"Isorno","section":"Loco - Golino","originSectionIds":["4a4fbd62-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b60"},"sectionId":"c92a5450-e86b-11e9-8c96-85c363923362","river":"Landwasser","section":"Bahnhof Wiesen - Strassenbrücke","originSectionIds":["4a4fbd63-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Landwasser","gauge":"Davos, Frauenkirch","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":19,"mwMin":null,"mw":24,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b61"},"sectionId":"c92bdaf0-e86b-11e9-8c96-85c363923362","river":"Entlen","section":"Finsterwald - Entlebuch","originSectionIds":["4a4fbd64-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kleine Emme","gauge":"Werthenstein, Chappelboden","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":40,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b62"},"sectionId":"c92d6190-e86b-11e9-8c96-85c363923362","river":"Kleine Emme","section":"Entlebuch - Fontannenmündung","originSectionIds":["4a4fbd65-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kleine Emme","gauge":"Werthenstein, Chappelboden","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b63"},"sectionId":"c92ec120-e86b-11e9-8c96-85c363923362","river":"Kleine Emme","section":"Schüpfheim - Entlebuch","originSectionIds":["4a4fbd66-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kleine Emme","gauge":"Werthenstein, Chappelboden","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":50,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b64"},"sectionId":"c93020b0-e86b-11e9-8c96-85c363923362","river":"Waldemme","section":"Lammschlucht","originSectionIds":["4a4fbd67-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kleine Emme","gauge":"Werthenstein, Chappelboden","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":30,"mwMax":null,"hw":40}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b65"},"sectionId":"c931a750-e86b-11e9-8c96-85c363923362","river":"Rümlig","section":"Schwarzenberg - Schachen","originSectionIds":["4a4fbd68-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b66"},"sectionId":"c933ca30-e86b-11e9-8c96-85c363923362","river":"Wehra","section":"Todtmoos - Au (Sägewerk)","originSectionIds":["4a4fbd69-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":90,"mwMin":null,"mw":100,"mwMax":null,"hw":110}],"country":"Germany","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b67"},"sectionId":"c93577e0-e86b-11e9-8c96-85c363923362","river":"Wehra","section":"Au (Sägewerk) - Stausee vor Wehr","originSectionIds":["4a4fbd6a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":90,"mwMin":null,"mw":100,"mwMax":null,"hw":110}],"country":"Germany","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b68"},"sectionId":"c936d770-e86b-11e9-8c96-85c363923362","river":"Wiese","section":"Wolfsschlucht (Rothausbahn - Schlectnau)","originSectionIds":["4a4fbd6b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":80,"mwMin":null,"mw":100,"mwMax":null,"hw":null}],"country":"Germany","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b69"},"sectionId":"c9383700-e86b-11e9-8c96-85c363923362","river":"Wiese","section":"Utzenfeld - Atzenbach","originSectionIds":["4a4fbd6c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":60,"mwMin":null,"mw":110,"mwMax":null,"hw":150}],"country":"Germany","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6a"},"sectionId":"c93a59e0-e86b-11e9-8c96-85c363923362","river":"Prägbach","section":"Wasserfall - Rest. Sonnenhof, Präg","originSectionIds":["4a4fbd6d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":90,"mwMin":null,"mw":110,"mwMax":null,"hw":140}],"country":"Germany","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6b"},"sectionId":"c93db540-e86b-11e9-8c96-85c363923362","river":"Prägbach","section":"Rest. Sonnenhof, Präg - Utzenfeld","originSectionIds":["4a4fbd6e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wiese","gauge":"Zell","gaugeEngine":"riverzone.eu","unit":"cm","lw":70,"mwMin":null,"mw":100,"mwMax":null,"hw":130}],"country":"Germany","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6c"},"sectionId":"c93f8a00-e86b-11e9-8c96-85c363923362","river":"Alb","section":"Niedermühle - Ibachmündung","originSectionIds":["4a4fbd6f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hauensteiner Alb","gauge":"St. Blasien","gaugeEngine":"riverzone.eu","unit":"cm","lw":110,"mwMin":null,"mw":130,"mwMax":null,"hw":170}],"country":"Germany","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6d"},"sectionId":"c942e560-e86b-11e9-8c96-85c363923362","river":"Alb","section":"Ibachmündung - Tiefenstein","originSectionIds":["4a4fbd70-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hauensteiner Alb","gauge":"St. Blasien","gaugeEngine":"riverzone.eu","unit":"cm","lw":110,"mwMin":null,"mw":130,"mwMax":null,"hw":170}],"country":"Germany","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6e"},"sectionId":"c944e130-e86b-11e9-8c96-85c363923362","river":"Alb","section":"Tiefenstein - Albbruck","originSectionIds":["4a4fe450-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hauensteiner Alb","gauge":"St. Blasien","gaugeEngine":"riverzone.eu","unit":"cm","lw":100,"mwMin":null,"mw":120,"mwMax":null,"hw":140}],"country":"Germany","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b6f"},"sectionId":"c94667d0-e86b-11e9-8c96-85c363923362","river":"Ibach","section":"Kleinkraftwerk - Albmündung","originSectionIds":["4a4fe451-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Hauensteiner Alb","gauge":"St. Blasien","gaugeEngine":"riverzone.eu","unit":"cm","lw":110,"mwMin":null,"mw":130,"mwMax":null,"hw":170}],"country":"Germany","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b70"},"sectionId":"c947ee70-e86b-11e9-8c96-85c363923362","river":"Steina","section":"Bonndorf - Tiengen","originSectionIds":["4a4fe452-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wutach","gauge":"Eberfingen","gaugeEngine":"riverzone.eu","unit":"cm","lw":80,"mwMin":null,"mw":120,"mwMax":null,"hw":160}],"country":"Germany","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b71"},"sectionId":"c9497510-e86b-11e9-8c96-85c363923362","river":"Wutach","section":"Gutach - Schattenmühle","originSectionIds":["4a4fe453-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wutach","gauge":"Ewattingen","gaugeEngine":"riverzone.eu","unit":"cm","lw":90,"mwMin":null,"mw":115,"mwMax":null,"hw":150}],"country":"Germany","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b72"},"sectionId":"c94afbb0-e86b-11e9-8c96-85c363923362","river":"Sihl","section":"Schindellegi - Hütten","originSectionIds":["4a4fe454-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sihl","gauge":"Blattwag, Radaraufz.","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW III+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b73"},"sectionId":"c94d1e90-e86b-11e9-8c96-85c363923362","river":"Sihl","section":"Hütten - Kraftwerk Waldhalde","originSectionIds":["4a4fe455-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sihl","gauge":"Blattwag, Radaraufz.","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":60}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b74"},"sectionId":"c94e5710-e86b-11e9-8c96-85c363923362","river":"Aare","section":"Altstadt Play Run (Badi Brugg - Clubhaus KCBr)","originSectionIds":["4a4fe456-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Aare","gauge":"Brugg","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":350,"mwMin":null,"mw":500,"mwMax":null,"hw":900}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b75"},"sectionId":"c950c810-e86b-11e9-8c96-85c363923362","river":"Cristallina","section":"Stall - 15m-Fall","originSectionIds":["4a4fe457-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b76"},"sectionId":"c9529cd0-e86b-11e9-8c96-85c363923362","river":"Medelser Rhein","section":"Oberer (15m-Fall - Parde)","originSectionIds":["4a4fe458-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b77"},"sectionId":"c9542370-e86b-11e9-8c96-85c363923362","river":"Birs","section":"Untere (Dornach - Birskopf)","originSectionIds":["4a4fe459-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Birs","gauge":"Münchenstein, Hofmatt","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":20,"mwMax":null,"hw":50}],"country":"Switzerland","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b78"},"sectionId":"c955d120-e86b-11e9-8c96-85c363923362","river":"Dreisam","section":"Kirchzarten - Sandfangwehr","originSectionIds":["4a4fe45a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Dreisam","gauge":"Ebnet","gaugeEngine":"riverzone.eu","unit":"cm","lw":60,"mwMin":null,"mw":80,"mwMax":null,"hw":140}],"country":"Germany","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b79"},"sectionId":"c957a5e0-e86b-11e9-8c96-85c363923362","river":"Dreisam","section":"Sandfangwehr - Lehner Brücke","originSectionIds":["4a4fe45b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Dreisam","gauge":"Ebnet","gaugeEngine":"riverzone.eu","unit":"cm","lw":50,"mwMin":null,"mw":80,"mwMax":null,"hw":140}],"country":"Germany","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7a"},"sectionId":"c9595390-e86b-11e9-8c96-85c363923362","river":"Wutach","section":"Mittlere Wutach / Wanderstrecke (Schattenmühle - Wutachmühle)","originSectionIds":["4a4fe45c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wutach","gauge":"Ewattingen","gaugeEngine":"riverzone.eu","unit":"cm","lw":90,"mwMin":null,"mw":125,"mwMax":null,"hw":160}],"country":"Germany","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7b"},"sectionId":"c95ab320-e86b-11e9-8c96-85c363923362","river":"Wilde Gutach","section":"Obere (Waldschlucht: Hexenlochmühle - Kraftwerk)","originSectionIds":["4a4fe45d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wilde Gutach","gauge":"Simonswald","gaugeEngine":"riverzone.eu","unit":"cm","lw":80,"mwMin":null,"mw":100,"mwMax":null,"hw":120}],"country":"Germany","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7c"},"sectionId":"c95beba0-e86b-11e9-8c96-85c363923362","river":"Wilde Gutach","section":"Untere (Kraftwerk - Simonswald)","originSectionIds":["4a4fe45e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Wilde Gutach","gauge":"Simonswald","gaugeEngine":"riverzone.eu","unit":"cm","lw":70,"mwMin":null,"mw":100,"mwMax":null,"hw":120}],"country":"Germany","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7d"},"sectionId":"c95d9950-e86b-11e9-8c96-85c363923362","river":"Weißach","section":"Golfparkstrecke (Aach - Brunnenau)","originSectionIds":["4a4fe45f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Weißach","gauge":"Krumbach-Zwing","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":13,"mwMax":null,"hw":20}],"country":"Austria","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7e"},"sectionId":"c95f6e10-e86b-11e9-8c96-85c363923362","river":"Weißach","section":"Kleine Weißachschlucht (Brunnenau - Weißach Talbrücke)","originSectionIds":["4a4fe460-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Weißach","gauge":"Krumbach-Zwing","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":13,"mwMax":null,"hw":20}],"country":"Austria","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b7f"},"sectionId":"c96169e0-e86b-11e9-8c96-85c363923362","river":"Weißach","section":"Große Weißachschlucht (Weißach Talbrücke - Bozenau)","originSectionIds":["4a4fe461-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Weißach","gauge":"Krumbach-Zwing","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":13,"mwMax":null,"hw":20}],"country":"Austria","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b80"},"sectionId":"c963b3d0-e86b-11e9-8c96-85c363923362","river":"Rotach","section":"Rotachschlucht","originSectionIds":["4a4fe462-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Rotach","gauge":"Thal (Martinsbrücke)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":10,"mwMax":null,"hw":13}],"country":"Austria","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b81"},"sectionId":"c9653a70-e86b-11e9-8c96-85c363923362","river":"Obere Argen","section":"Eistobel","originSectionIds":["4a4fe463-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Obere Argen","gauge":"Zwirkenberg","gaugeEngine":"riverzone.eu","unit":"cm","lw":85,"mwMin":null,"mw":95,"mwMax":null,"hw":105}],"country":"Germany","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b82"},"sectionId":"c9669a00-e86b-11e9-8c96-85c363923362","river":"Argen","section":"Rennstrecke","originSectionIds":["4a4fe464-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Argen","gauge":"Gießen","gaugeEngine":"riverzone.eu","unit":"cm","lw":60,"mwMin":null,"mw":90,"mwMax":null,"hw":120}],"country":"Germany","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b83"},"sectionId":"c96820a0-e86b-11e9-8c96-85c363923362","river":"Frutz","section":"Eingangschlucht","originSectionIds":["4a4fe465-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Frutz","gauge":"Laterns","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":5.5,"mwMax":null,"hw":7.5}],"country":"Austria","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b84"},"sectionId":"c9698030-e86b-11e9-8c96-85c363923362","river":"Frutz","section":"Kernschlucht","originSectionIds":["4a4fe466-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Frutz","gauge":"Laterns","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":5,"mwMax":null,"hw":6.5}],"country":"Austria","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2ca8b4b5001c357b85"},"sectionId":"c96b2de0-e86b-11e9-8c96-85c363923362","river":"Weißach","section":"Steibisschlucht (Lanzenbach - Weißach)","originSectionIds":["4a4fe467-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Weißach","gauge":"Oberstaufen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":8,"mwMax":null,"hw":10}],"country":"Austria","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b86"},"sectionId":"c96f9ab0-e86b-11e9-8c96-85c363923362","river":"Subersach","section":"Wasserhölzer (Sibratsgfäll - Lingenau)","originSectionIds":["4a4fe468-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Subersach","gauge":"Unterhalb Stausee [geschätzt]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":11,"mwMax":null,"hw":15}],"country":"Austria","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b87"},"sectionId":"c971e4a0-e86b-11e9-8c96-85c363923362","river":"Bregenzerach","section":"Obere","originSectionIds":["4a4fe469-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bregenzerach","gauge":"Hopfreben","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":6,"mwMin":null,"mw":13,"mwMax":null,"hw":20}],"country":"Austria","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b88"},"sectionId":"c97518f0-e86b-11e9-8c96-85c363923362","river":"Bregenzerach","section":"Schwarzenbergschlucht (Hof - Wehr Egg)","originSectionIds":["4a4fe46a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bregenzerach","gauge":"Egg (Wehr)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":35,"mwMax":null,"hw":55}],"country":"Austria","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b89"},"sectionId":"c9773bd0-e86b-11e9-8c96-85c363923362","river":"Bregenzerach","section":"Egger Schlucht (Wehr Egg - Müselbach)","originSectionIds":["4a4fe46b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bregenzerach","gauge":"Egg (Wehr)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":30,"mwMax":null,"hw":50}],"country":"Austria","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8a"},"sectionId":"c978c270-e86b-11e9-8c96-85c363923362","river":"Bregenzerach","section":"Dorener (Müselbach - Bozenau)","originSectionIds":["4a4fe46c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bregenzerach","gauge":"Egg (Wehr)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":30,"mwMax":null,"hw":50}],"country":"Austria","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8b"},"sectionId":"c97a2200-e86b-11e9-8c96-85c363923362","river":"Bregenzerach","section":"Kennelbacher (Bozenau - Kennelbach)","originSectionIds":["4a4fe46d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bregenzerach","gauge":"Kennelbach","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":80,"mwMax":null,"hw":150}],"country":"Austria","difficulty":"WW I/II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8c"},"sectionId":"c97ba8a0-e86b-11e9-8c96-85c363923362","river":"Bolgenach","section":"Engenlochschlucht & Kommatobel (Reute - Stausee)","originSectionIds":["4a4fe46e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bolgenach","gauge":"Hittisau (VKW)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":15,"mwMin":null,"mw":22,"mwMax":null,"hw":28}],"country":"Austria","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8d"},"sectionId":"c97d2f40-e86b-11e9-8c96-85c363923362","river":"Bolgenach","section":"Untere (Bolgenachstausee - Weißach Talbrücke)","originSectionIds":["4a4fe46f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bolgenach","gauge":"Mündung [estimated]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":11,"mwMax":null,"hw":15}],"country":"Austria","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8e"},"sectionId":"c97eb5e0-e86b-11e9-8c96-85c363923362","river":"Lutzbach","section":"Oberer","originSectionIds":["4a4fe470-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lutz","gauge":"Garsella","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":9,"mwMin":null,"mw":13,"mwMax":null,"hw":17}],"country":"Austria","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b8f"},"sectionId":"c9803c80-e86b-11e9-8c96-85c363923362","river":"Lutzbach","section":"Mittlerer","originSectionIds":["4a4fe471-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lutz","gauge":"Garsella","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":9,"mwMin":null,"mw":14,"mwMax":null,"hw":19}],"country":"Austria","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b90"},"sectionId":"c9819c10-e86b-11e9-8c96-85c363923362","river":"Breitach","section":"Obere (Riezlern, Camping Zwerwald – Grenze A/D)","originSectionIds":["4a4fe472-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Breitach","gauge":"Tiefenbach","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":"13","mwMin":null,"mw":"19","mwMax":null,"hw":"25"}],"country":"Austria","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b91"},"sectionId":"c983e600-e86b-11e9-8c96-85c363923362","river":"Lech","section":"Lechschlucht (Lech - Warth)","originSectionIds":["4a4fe473-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lech","gauge":"Lech (Tannbergbrücke)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4.5,"mwMin":null,"mw":8.5,"mwMax":null,"hw":12}],"country":"Austria","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b92"},"sectionId":"c98593b0-e86b-11e9-8c96-85c363923362","river":"Lech","section":"Warther Schlucht","originSectionIds":["4a4fe474-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Lech","gauge":"Lech (Tannbergbrücke)","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4.5,"mwMin":null,"mw":8.5,"mwMax":null,"hw":12}],"country":"Austria","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b93"},"sectionId":"c9871a50-e86b-11e9-8c96-85c363923362","river":"Cassarate","section":"Piano la Stampa - Cornaredo","originSectionIds":["4a4fe475-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Cassarate","gauge":"Pregassona","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":15,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b94"},"sectionId":"c988a0f0-e86b-11e9-8c96-85c363923362","river":"Moesa","section":"Arabella - Sorte","originSectionIds":["4a4fe476-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Moesa","gauge":"Lumino, Sassello","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":35,"mwMin":null,"mw":50,"mwMax":null,"hw":100}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b95"},"sectionId":"c98a9cc0-e86b-11e9-8c96-85c363923362","river":"Vedeggio","section":"Camignolo - Lamone","originSectionIds":["4a4fe477-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vedeggio","gauge":"Agno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":9,"mwMin":null,"mw":18,"mwMax":null,"hw":27}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b96"},"sectionId":"c98c2360-e86b-11e9-8c96-85c363923362","river":"Valserine","section":"Le Boulu - Niaizet","originSectionIds":["4a4fe478-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Valserine","gauge":"Chézery-Forens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":14,"mwMax":null,"hw":20}],"country":"France","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b97"},"sectionId":"c98df820-e86b-11e9-8c96-85c363923362","river":"Valserine","section":"Niaizet - 300m plus bas","originSectionIds":["4a4fe479-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Valserine","gauge":"Chézery-Forens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":14,"mwMax":null,"hw":20}],"country":"France","difficulty":"WW IV+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b98"},"sectionId":"c98ff3f0-e86b-11e9-8c96-85c363923362","river":"Valserine","section":"Sous Niaizet - La Rivière","originSectionIds":["4a4fe47a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Valserine","gauge":"Chézery-Forens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":12,"mwMax":null,"hw":20}],"country":"France","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b99"},"sectionId":"c99216d0-e86b-11e9-8c96-85c363923362","river":"Valserine","section":"La Rivière - Chézery","originSectionIds":["4a4fe47b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Valserine","gauge":"Chézery-Forens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":14,"mwMax":null,"hw":20}],"country":"France","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9a"},"sectionId":"c9934f50-e86b-11e9-8c96-85c363923362","river":"Valserine","section":"Chézery - Pont du Dragon","originSectionIds":["4a4fe47c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Valserine","gauge":"Chézery-Forens","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":7,"mwMin":null,"mw":14,"mwMax":null,"hw":null}],"country":"France","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9b"},"sectionId":"c994aee0-e86b-11e9-8c96-85c363923362","river":"Semine","section":"Orvaz - Le Martinet","originSectionIds":["4a4fe47d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Semine","gauge":"Châtillon-en-Michaille [Coz]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":20,"mwMin":null,"mw":55,"mwMax":null,"hw":null}],"country":"France","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9c"},"sectionId":"c995e760-e86b-11e9-8c96-85c363923362","river":"Semine","section":"Le Martinet - Saint-Germain-de-Joux","originSectionIds":["4a4fe47e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Semine","gauge":"Châtillon-en-Michaille [Coz]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":null,"mwMin":null,"mw":null,"mwMax":null,"hw":null}],"country":"France","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9d"},"sectionId":"c9971fe0-e86b-11e9-8c96-85c363923362","river":"Semine","section":"Saint-Germain-de-Joux - Châtillon en Michaille","originSectionIds":["4a500b60-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Semine","gauge":"Châtillon-en-Michaille [Coz]","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":25,"mwMax":null,"hw":40}],"country":"France","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9e"},"sectionId":"c99969d0-e86b-11e9-8c96-85c363923362","river":"Bienne","section":"Usine hydroélectrique de Tancua - La Rixouse","originSectionIds":["4a500b61-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bienne","gauge":"Morez","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":2,"mwMin":null,"mw":8,"mwMax":null,"hw":14}],"country":"France","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357b9f"},"sectionId":"c99ac960-e86b-11e9-8c96-85c363923362","river":"Bienne","section":"La Rixouse - St. Claude","originSectionIds":["4a500b62-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Bienne","gauge":"Jeurre","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":45,"mwMin":null,"mw":100,"mwMax":null,"hw":250}],"country":"France","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba0"},"sectionId":"c99c7710-e86b-11e9-8c96-85c363923362","river":"Saine","section":"Source - Foncine le Bas (pont D437)","originSectionIds":["4a500b63-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Saine","gauge":"Syam","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":10,"mwMax":null,"hw":null}],"country":"France","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba1"},"sectionId":"c99dd6a0-e86b-11e9-8c96-85c363923362","river":"Saine","section":"Foncine le Bas - Les Planches en Montagne","originSectionIds":["4a500b64-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Saine","gauge":"Syam","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":21.5,"mwMax":null,"hw":35}],"country":"France","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba2"},"sectionId":"c9a0e3e0-e86b-11e9-8c96-85c363923362","river":"Saine","section":"Montliboz - Syam","originSectionIds":["4a500b65-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Saine","gauge":"Syam","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":8,"mwMin":null,"mw":21.5,"mwMax":null,"hw":35}],"country":"France","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba3"},"sectionId":"c9a24370-e86b-11e9-8c96-85c363923362","river":"Valouse","section":"Santonna-Thoirette","originSectionIds":["4a500b66-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"France","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba4"},"sectionId":"c9a37bf0-e86b-11e9-8c96-85c363923362","river":"Ain","section":"Source de l'Ain - Sirod","originSectionIds":["4a500b67-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Ain","gauge":"Bourg-de-Sirod","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":40,"mwMax":null,"hw":80}],"country":"France","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba5"},"sectionId":"c9a4b470-e86b-11e9-8c96-85c363923362","river":"Orbe","section":"Bois d Amont - le Cenif","originSectionIds":["4a500b68-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Orbe","gauge":"Le Chenit, Frontière","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":6,"mwMax":null,"hw":10}],"country":"France","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba6"},"sectionId":"c9a5ecf0-e86b-11e9-8c96-85c363923362","river":"Areuse","section":"Mitte Schlucht - Boudry","originSectionIds":["4a500b69-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Areuse","gauge":"Boudry","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":16,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba7"},"sectionId":"c9a6fe60-e86b-11e9-8c96-85c363923362","river":"Aubonne","section":"Brücke ob Saubraz - Aubonne","originSectionIds":["4a500b6a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Aubonne","gauge":"Allaman, Le Coulet","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":18,"mwMin":null,"mw":21,"mwMax":null,"hw":25}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba8"},"sectionId":"c9a85df0-e86b-11e9-8c96-85c363923362","river":"Versoix","section":"Sauverny - La Bätie","originSectionIds":["4a500b6b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Allondon","gauge":"Dardagny, Les Granges","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":10,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357ba9"},"sectionId":"c9a99670-e86b-11e9-8c96-85c363923362","river":"Allondon","section":"Choully - Russin","originSectionIds":["4a500b6c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Allondon","gauge":"Dardagny, Les Granges","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":3,"mwMin":null,"mw":10,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357baa"},"sectionId":"c9aacef0-e86b-11e9-8c96-85c363923362","river":"Broye","section":"Palezieux - Bressonnaz","originSectionIds":["4a500b6d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Broye","gauge":"Payerne, Caserne d'aviation","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":15,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW II/III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bab"},"sectionId":"c9ac0770-e86b-11e9-8c96-85c363923362","river":"Scheulte","section":"Courchapoix - Courroux","originSectionIds":["4a500b6e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Scheulte","gauge":"Vicques","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":2.5,"mwMin":null,"mw":4.5,"mwMax":null,"hw":6.5}],"country":"Switzerland","difficulty":"WW II","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bac"},"sectionId":"c9ad6700-e86b-11e9-8c96-85c363923362","river":"Gabiare","section":"Envelier - Mündung in die Scheulte","originSectionIds":["4a500b6f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Scheulte","gauge":"Vicques","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":6,"mwMax":null,"hw":8}],"country":"Switzerland","difficulty":"WW III","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bad"},"sectionId":"c9ae9f80-e86b-11e9-8c96-85c363923362","river":"Melezza","section":"Meis - Stausee von Camedo","originSectionIds":["4a500b70-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bae"},"sectionId":"c9b02620-e86b-11e9-8c96-85c363923362","river":"Loana","section":"Le Fomaci - Malesco","originSectionIds":["4a500b71-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357baf"},"sectionId":"c9b185b0-e86b-11e9-8c96-85c363923362","river":"Basso","section":"Alpe Basso - Zusammenfluss Loana","originSectionIds":["4a500b72-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb0"},"sectionId":"c9b3a890-e86b-11e9-8c96-85c363923362","river":"Vedeggio","section":"Isone - Schluchtausgang","originSectionIds":["4a500b73-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Vedeggio","gauge":"Agno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":4,"mwMin":null,"mw":7,"mwMax":null,"hw":null}],"country":"Switzerland","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb1"},"sectionId":"c9b5f280-e86b-11e9-8c96-85c363923362","river":"Rovana di Bosco","section":"Uberab - Corino","originSectionIds":["4a500b74-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Switzerland","difficulty":"WW VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb2"},"sectionId":"c9b75210-e86b-11e9-8c96-85c363923362","river":"Cannobino","section":"Socraggio - Kirche S. Anna","originSectionIds":["4a500b75-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb3"},"sectionId":"c9b88a90-e86b-11e9-8c96-85c363923362","river":"Orino","section":"Dandrio - Stausee","originSectionIds":["4a500b76-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Calancasca","gauge":"Buseno","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":5,"mwMin":null,"mw":15,"mwMax":null,"hw":30}],"country":"Switzerland","difficulty":"WW V+","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb4"},"sectionId":"c9b9ea20-e86b-11e9-8c96-85c363923362","river":"Isorno","section":"Bagni di Cravegia - Steg bei Comologno","originSectionIds":["4a500b77-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Verzasca","gauge":"Lavertezzo, Campiöi","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":12,"mwMin":null,"mw":20,"mwMax":null,"hw":40}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb5"},"sectionId":"c9bb70c0-e86b-11e9-8c96-85c363923362","river":"Maggia","section":"Peccia - Klamm von Brontallo","originSectionIds":["4a500b78-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Maggia","gauge":"Bignasco, Ponte nuovo","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":30,"mwMin":null,"mw":55,"mwMax":null,"hw":70}],"country":"Switzerland","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb6"},"sectionId":"c9bcd050-e86b-11e9-8c96-85c363923362","river":"Kander","section":"Blausee - Kandergrund","originSectionIds":["4a500b79-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Kander","gauge":"Frutigen","gaugeEngine":"riverzone.eu","unit":"m3/s","lw":10,"mwMin":null,"mw":15,"mwMax":null,"hw":20}],"country":"Switzerland","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb7"},"sectionId":"c9be08d0-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Alagna - Balma","originSectionIds":["4a500b7a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":60,"mwMin":null,"mw":85,"mwMax":100,"hw":110}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb8"},"sectionId":"c9bf6860-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Balma - Buzzo","originSectionIds":["4a500b7b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":60,"mwMin":null,"mw":95,"mwMax":110,"hw":130}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bb9"},"sectionId":"c9c0ef00-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Buzzo - Mollia","originSectionIds":["4a500b7c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"55","mwMin":null,"mw":"80","mwMax":null,"hw":"105"}],"country":"Italy","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bba"},"sectionId":"c9c275a0-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Mollia-Klamm","originSectionIds":["4a500b7d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"45","mwMin":null,"mw":"75","mwMax":null,"hw":"100"}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bbb"},"sectionId":"c9c3d530-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Mollia - Piode","originSectionIds":["4a500b7e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":40,"mwMin":55,"mw":85,"mwMax":100,"hw":120}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bbc"},"sectionId":"c9c534c0-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Piode - Scopetta","originSectionIds":["4a500b7f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"50","mwMin":null,"mw":"85","mwMax":null,"hw":"120"}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bbd"},"sectionId":"c9c6bb60-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Scopetta - Balmuccia","originSectionIds":["4a500b80-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"25","mwMin":null,"mw":"60","mwMax":null,"hw":"80"}],"country":"Italy","difficulty":"WW IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bbe"},"sectionId":"c9c81af0-e86b-11e9-8c96-85c363923362","river":"Sesia","section":"Balmuccia - Varallo","originSectionIds":["4a500b81-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":45,"mwMin":70,"mw":90,"mwMax":110,"hw":145}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bbf"},"sectionId":"c9c9a190-e86b-11e9-8c96-85c363923362","river":"Vogna","section":"Sant Antonio - Riva Valdobbia","originSectionIds":["4a500b82-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc0"},"sectionId":"c9cb0120-e86b-11e9-8c96-85c363923362","river":"Sorba","section":"Rassa - Steinbrücke","originSectionIds":["4a500b83-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"85","mwMin":null,"mw":"95","mwMax":null,"hw":"110"}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc1"},"sectionId":"c9cc87c0-e86b-11e9-8c96-85c363923362","river":"Sorba","section":"Steinbrücke - Mündung Sesia","originSectionIds":["4a500b84-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"60","mwMin":null,"mw":"75","mwMax":null,"hw":"90"}],"country":"Italy","difficulty":"WW VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc2"},"sectionId":"c9ce3570-e86b-11e9-8c96-85c363923362","river":"Gronda","section":"1 km bis Rassa","originSectionIds":["4a500b85-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"75","mwMin":null,"mw":"85","mwMax":null,"hw":"100"}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":1,"isObsolete":false} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc3"},"sectionId":"c9cfbc10-e86b-11e9-8c96-85c363923362","river":"Sermenza","section":"San Giuseppe - Rimasco (Stausee)","originSectionIds":["4a500b86-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"85","mwMin":null,"mw":"95","mwMax":null,"hw":"105"}],"country":"Italy","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc4"},"sectionId":"c9d142b0-e86b-11e9-8c96-85c363923362","river":"Sermenza","section":"Diza - Fervento","originSectionIds":["4a500b87-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V/VI","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc5"},"sectionId":"c9d2c950-e86b-11e9-8c96-85c363923362","river":"Sermenza","section":"Fervento - Boccioleto","originSectionIds":["4a500b88-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":50,"mwMin":null,"mw":70,"mwMax":null,"hw":90}],"country":"Italy","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc6"},"sectionId":"c9d428e0-e86b-11e9-8c96-85c363923362","river":"Sermenza","section":"Boccioleto - vor Balmuccia-Klamm","originSectionIds":["4a500b89-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"55","mwMin":null,"mw":"80","mwMax":null,"hw":"130"}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc7"},"sectionId":"c9d5af80-e86b-11e9-8c96-85c363923362","river":"Sermenza","section":"Balmuccia-Klamm","originSectionIds":["4a500b8a-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"50","mwMin":null,"mw":"75","mwMax":null,"hw":"110"}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc8"},"sectionId":"c9d73620-e86b-11e9-8c96-85c363923362","river":"Egua","section":"Ferrate - Molino","originSectionIds":["4a500b8b-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":50,"mwMin":60,"mw":75,"mwMax":90,"hw":105}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bc9"},"sectionId":"c9d9a720-e86b-11e9-8c96-85c363923362","river":"Egua","section":"Molino - Stausee","originSectionIds":["4a500b8c-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Sesia","gauge":"Campertogno","gaugeEngine":"riverzone.eu","unit":"cm","lw":"90","mwMin":null,"mw":"100","mwMax":null,"hw":null}],"country":"Italy","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bca"},"sectionId":"c9db2dc0-e86b-11e9-8c96-85c363923362","river":"Mastallone","section":"Fabello - Grassura","originSectionIds":["4a500b8d-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Mastallone","gauge":"Varallo","gaugeEngine":"riverzone.eu","unit":"cm","lw":"50","mwMin":null,"mw":"75","mwMax":null,"hw":"90"}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bcb"},"sectionId":"c9dcdb70-e86b-11e9-8c96-85c363923362","river":"Mastallone","section":"Grassura - Bocciolaro","originSectionIds":["4a500b8e-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Mastallone","gauge":"Varallo","gaugeEngine":"riverzone.eu","unit":"cm","lw":45,"mwMin":60,"mw":85,"mwMax":110,"hw":null}],"country":"Italy","difficulty":"WW III/IV","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bcc"},"sectionId":"c9defe50-e86b-11e9-8c96-85c363923362","river":"Mastallone","section":"Bocciolaro - Varallo","originSectionIds":["4a500b8f-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[{"river":"Mastallone","gauge":"Varallo","gaugeEngine":"riverzone.eu","unit":"cm","lw":45,"mwMin":50,"mw":75,"mwMax":100,"hw":null}],"country":"Italy","difficulty":"WW IV/V","diaryItemCount":0,"isObsolete":true} +{"_id":{"$oid":"5d9a3a2da8b4b5001c357bcd"},"sectionId":"c9e0ac00-e86b-11e9-8c96-85c363923362","river":"Landwasser","section":"unterhalb Grondo - Ponte due Acque","originSectionIds":["4a500b90-afd7-11e9-bb38-61c23b92b63e"],"description":"Imported from Rivermap","gauges":[],"country":"Italy","difficulty":"WW V","diaryItemCount":0,"isObsolete":true} diff --git a/e2e-tests/data/rivers-jsonl/RiverInfo.jsonl b/e2e-tests/data/rivers-jsonl/RiverInfo.jsonl new file mode 100644 index 000000000..cfa45751d --- /dev/null +++ b/e2e-tests/data/rivers-jsonl/RiverInfo.jsonl @@ -0,0 +1,420 @@ +{"_id":{"$oid":"679c75e222b74f001c4b46aa"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"","gaugeCount":5,"sectionCount":0,"__fulltext":"","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b46ab"},"countries":["Germany"],"countryCodes":["DE"],"river":" Isar-Seitenkanal ","gaugeCount":1,"sectionCount":0,"__fulltext":" isar-seitenkanal ","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ac"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Aachbach","gaugeCount":1,"sectionCount":0,"__fulltext":"aachbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ad"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aalbach","gaugeCount":1,"sectionCount":0,"__fulltext":"aalbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ae"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Aare","gaugeCount":6,"sectionCount":8,"__fulltext":"aare","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46af"},"countries":["Germany"],"countryCodes":["DE"],"river":"Abens","gaugeCount":4,"sectionCount":0,"__fulltext":"abens","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b0"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ach","gaugeCount":2,"sectionCount":0,"__fulltext":"ach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Acher","gaugeCount":1,"sectionCount":2,"__fulltext":"acher","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b2"},"countries":["Italy"],"countryCodes":["IT"],"river":"Adda","gaugeCount":3,"sectionCount":3,"__fulltext":"adda","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b46b3"},"countries":["Italy"],"countryCodes":["IT"],"river":"Adige","gaugeCount":1,"sectionCount":0,"__fulltext":"adige","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b4"},"countries":["Italy"],"countryCodes":["IT"],"river":"Adige/Etch","gaugeCount":3,"sectionCount":1,"__fulltext":"adige/etch","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b5"},"countries":["France"],"countryCodes":["FR"],"river":"Adour","gaugeCount":1,"sectionCount":2,"__fulltext":"adour","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b6"},"countries":["France"],"countryCodes":["FR"],"river":"Agly","gaugeCount":1,"sectionCount":0,"__fulltext":"agly","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b7"},"countries":["Italy"],"countryCodes":["IT"],"river":"Agogna","gaugeCount":1,"sectionCount":1,"__fulltext":"agogna","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b8"},"countries":["France"],"countryCodes":["FR"],"river":"Aigue","gaugeCount":1,"sectionCount":0,"__fulltext":"aigue","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46b9"},"countries":["France"],"countryCodes":["FR"],"river":"Ain","gaugeCount":3,"sectionCount":2,"__fulltext":"ain","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ba"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aisch","gaugeCount":6,"sectionCount":0,"__fulltext":"aisch","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46bb"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aiterach","gaugeCount":1,"sectionCount":0,"__fulltext":"aiterach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46bc"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aitnach","gaugeCount":1,"sectionCount":0,"__fulltext":"aitnach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46bd"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aitrach","gaugeCount":1,"sectionCount":0,"__fulltext":"aitrach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46be"},"countries":["France"],"countryCodes":["FR"],"river":"Aix","gaugeCount":1,"sectionCount":1,"__fulltext":"aix","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46bf"},"countries":["France"],"countryCodes":["FR"],"river":"Alagnon","gaugeCount":3,"sectionCount":2,"__fulltext":"alagnon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c0"},"countries":["France"],"countryCodes":["FR"],"river":"Albarine","gaugeCount":1,"sectionCount":1,"__fulltext":"albarine","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c1"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Albrechtický potok","gaugeCount":1,"sectionCount":0,"__fulltext":"albrechticky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c2"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Albula","gaugeCount":1,"sectionCount":6,"__fulltext":"albula","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b46c3"},"countries":["France"],"countryCodes":["FR"],"river":"Allanche","gaugeCount":1,"sectionCount":1,"__fulltext":"allanche","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c4"},"countries":["France"],"countryCodes":["FR"],"river":"Allier","gaugeCount":8,"sectionCount":5,"__fulltext":"allier","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c5"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Allondon","gaugeCount":1,"sectionCount":1,"__fulltext":"allondon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c6"},"countries":["Austria"],"countryCodes":["AT"],"river":"Alm","gaugeCount":2,"sectionCount":0,"__fulltext":"alm","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c7"},"countries":["Austria","Germany"],"countryCodes":["AT","DE"],"river":"Almbach","gaugeCount":2,"sectionCount":1,"__fulltext":"almbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c8"},"countries":["Germany"],"countryCodes":["DE"],"river":"Almosbach","gaugeCount":1,"sectionCount":0,"__fulltext":"almosbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46c9"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Alp","gaugeCount":2,"sectionCount":1,"__fulltext":"alp","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ca"},"countries":["Germany"],"countryCodes":["DE"],"river":"Altbach","gaugeCount":1,"sectionCount":0,"__fulltext":"altbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46cb"},"countries":["Austria"],"countryCodes":["AT"],"river":"Alterbach","gaugeCount":1,"sectionCount":0,"__fulltext":"alterbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46cc"},"countries":["France"],"countryCodes":["FR"],"river":"Altier","gaugeCount":2,"sectionCount":1,"__fulltext":"altier","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46cd"},"countries":["Germany"],"countryCodes":["DE"],"river":"Altkollbach","gaugeCount":1,"sectionCount":0,"__fulltext":"altkollbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ce"},"countries":["Germany"],"countryCodes":["DE"],"river":"Altmühl","gaugeCount":11,"sectionCount":0,"__fulltext":"altmuhl","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46cf"},"countries":["Germany"],"countryCodes":["DE"],"river":"Altmühlsee","gaugeCount":1,"sectionCount":0,"__fulltext":"altmuhlsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d0"},"countries":["Germany"],"countryCodes":["DE"],"river":"Altmühlüberleiter","gaugeCount":1,"sectionCount":0,"__fulltext":"altmuhluberleiter","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Alz","gaugeCount":4,"sectionCount":0,"__fulltext":"alz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d2"},"countries":["Germany"],"countryCodes":["DE"],"river":"Alzkanal","gaugeCount":2,"sectionCount":0,"__fulltext":"alzkanal","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d3"},"countries":["France"],"countryCodes":["FR"],"river":"Alzou","gaugeCount":1,"sectionCount":1,"__fulltext":"alzou","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d4"},"countries":["Italy"],"countryCodes":["IT"],"river":"Ambra","gaugeCount":1,"sectionCount":1,"__fulltext":"ambra","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d5"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ammer","gaugeCount":3,"sectionCount":2,"__fulltext":"ammer","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b46d6"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ammersee","gaugeCount":1,"sectionCount":0,"__fulltext":"ammersee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d7"},"countries":["Germany"],"countryCodes":["DE"],"river":"Amper","gaugeCount":8,"sectionCount":0,"__fulltext":"amper","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d8"},"countries":["France"],"countryCodes":["FR"],"river":"Ance","gaugeCount":1,"sectionCount":1,"__fulltext":"ance","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46d9"},"countries":["France"],"countryCodes":["FR"],"river":"Angillon","gaugeCount":1,"sectionCount":2,"__fulltext":"angillon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46da"},"countries":["Italy"],"countryCodes":["IT"],"river":"Aniene","gaugeCount":1,"sectionCount":3,"__fulltext":"aniene","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46db"},"countries":["Germany"],"countryCodes":["DE"],"river":"Anlauter","gaugeCount":2,"sectionCount":0,"__fulltext":"anlauter","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46dc"},"countries":["Germany"],"countryCodes":["DE"],"river":"Antersdorfer Bach","gaugeCount":1,"sectionCount":0,"__fulltext":"antersdorfer bach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46dd"},"countries":["Italy"],"countryCodes":["IT"],"river":"Anza","gaugeCount":1,"sectionCount":1,"__fulltext":"anza","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46de"},"countries":["Spain"],"countryCodes":["ES"],"river":"Ara","gaugeCount":1,"sectionCount":6,"__fulltext":"ara","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46df"},"countries":["France"],"countryCodes":["FR"],"river":"Arac","gaugeCount":2,"sectionCount":1,"__fulltext":"arac","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e0"},"countries":["Spain"],"countryCodes":["ES"],"river":"Aragón","gaugeCount":3,"sectionCount":0,"__fulltext":"aragon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e1"},"countries":["France"],"countryCodes":["FR"],"river":"Arc","gaugeCount":4,"sectionCount":7,"__fulltext":"arc","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e2"},"countries":["France"],"countryCodes":["FR"],"river":"Ardèche","gaugeCount":4,"sectionCount":8,"__fulltext":"ardeche","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e3"},"countries":["France"],"countryCodes":["FR"],"river":"Ardèche [Ardèche]","gaugeCount":1,"sectionCount":0,"__fulltext":"ardeche [ardeche]","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e4"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Areuse","gaugeCount":1,"sectionCount":1,"__fulltext":"areuse","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e5"},"countries":["Spain"],"countryCodes":["ES"],"river":"Arga","gaugeCount":1,"sectionCount":1,"__fulltext":"arga","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e6"},"countries":["Germany"],"countryCodes":["DE"],"river":"Argen","gaugeCount":1,"sectionCount":3,"__fulltext":"argen","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e7"},"countries":["Austria"],"countryCodes":["AT"],"river":"Argenbach","gaugeCount":1,"sectionCount":1,"__fulltext":"argenbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e8"},"countries":["Italy"],"countryCodes":["IT"],"river":"Argentina","gaugeCount":1,"sectionCount":1,"__fulltext":"argentina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46e9"},"countries":["France"],"countryCodes":["FR"],"river":"Ariège","gaugeCount":3,"sectionCount":4,"__fulltext":"ariege","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ea"},"countries":["Italy"],"countryCodes":["IT"],"river":"Arno","gaugeCount":3,"sectionCount":5,"__fulltext":"arno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46eb"},"countries":["Italy"],"countryCodes":["IT"],"river":"Arnò","gaugeCount":1,"sectionCount":1,"__fulltext":"arno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ec"},"countries":["France"],"countryCodes":["FR"],"river":"Arros","gaugeCount":1,"sectionCount":2,"__fulltext":"arros","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ed"},"countries":["Italy"],"countryCodes":["IT"],"river":"Artanavaz","gaugeCount":1,"sectionCount":0,"__fulltext":"artanavaz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ee"},"countries":["Switzerland","France"],"countryCodes":["CH","FR"],"river":"Arve","gaugeCount":3,"sectionCount":2,"__fulltext":"arve","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ef"},"countries":["Germany"],"countryCodes":["DE"],"river":"Arzbach","gaugeCount":2,"sectionCount":0,"__fulltext":"arzbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f0"},"countries":["Italy"],"countryCodes":["IT"],"river":"Arzino","gaugeCount":1,"sectionCount":2,"__fulltext":"arzino","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Asbach","gaugeCount":1,"sectionCount":1,"__fulltext":"asbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f2"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ascha","gaugeCount":1,"sectionCount":0,"__fulltext":"ascha","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f3"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aschaff","gaugeCount":1,"sectionCount":0,"__fulltext":"aschaff","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f4"},"countries":["Austria"],"countryCodes":["AT"],"river":"Aschauer Ache","gaugeCount":1,"sectionCount":0,"__fulltext":"aschauer ache","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f5"},"countries":["France"],"countryCodes":["FR"],"river":"Asco","gaugeCount":1,"sectionCount":2,"__fulltext":"asco","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f6"},"countries":["Italy"],"countryCodes":["IT"],"river":"Astico","gaugeCount":2,"sectionCount":2,"__fulltext":"astico","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f7"},"countries":["Spain"],"countryCodes":["ES"],"river":"Asón","gaugeCount":1,"sectionCount":0,"__fulltext":"ason","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f8"},"countries":["Italy"],"countryCodes":["IT"],"river":"Aterno","gaugeCount":1,"sectionCount":0,"__fulltext":"aterno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46f9"},"countries":["Germany"],"countryCodes":["DE"],"river":"Attel","gaugeCount":2,"sectionCount":0,"__fulltext":"attel","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46fa"},"countries":["Austria"],"countryCodes":["AT"],"river":"Attersee","gaugeCount":1,"sectionCount":0,"__fulltext":"attersee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46fb"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aubach","gaugeCount":1,"sectionCount":1,"__fulltext":"aubach","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b46fc"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Aubonne","gaugeCount":1,"sectionCount":2,"__fulltext":"aubonne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46fd"},"countries":["France"],"countryCodes":["FR"],"river":"Aude","gaugeCount":1,"sectionCount":0,"__fulltext":"aude","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46fe"},"countries":["Germany"],"countryCodes":["DE"],"river":"Auerbach","gaugeCount":1,"sectionCount":1,"__fulltext":"auerbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b46ff"},"countries":["Italy"],"countryCodes":["IT"],"river":"Aulella","gaugeCount":1,"sectionCount":1,"__fulltext":"aulella","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4700"},"countries":["Germany"],"countryCodes":["DE"],"river":"Aurach","gaugeCount":3,"sectionCount":0,"__fulltext":"aurach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4701"},"countries":["Italy"],"countryCodes":["IT"],"river":"Aurino/Ahr","gaugeCount":2,"sectionCount":6,"__fulltext":"aurino/ahr","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4702"},"countries":["France"],"countryCodes":["FR"],"river":"Auvézère","gaugeCount":1,"sectionCount":1,"__fulltext":"auvezere","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4703"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Averser Rhein","gaugeCount":1,"sectionCount":9,"__fulltext":"averser rhein","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4704"},"countries":["Italy"],"countryCodes":["IT"],"river":"Aveto","gaugeCount":2,"sectionCount":2,"__fulltext":"aveto","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4705"},"countries":["France"],"countryCodes":["FR"],"river":"Aveyron","gaugeCount":2,"sectionCount":3,"__fulltext":"aveyron","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4706"},"countries":["Italy"],"countryCodes":["IT"],"river":"Avisio","gaugeCount":4,"sectionCount":5,"__fulltext":"avisio","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4707"},"countries":["France"],"countryCodes":["FR"],"river":"Ay","gaugeCount":2,"sectionCount":0,"__fulltext":"ay","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4708"},"countries":["Italy"],"countryCodes":["IT"],"river":"Ayasse","gaugeCount":2,"sectionCount":3,"__fulltext":"ayasse","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4709"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Badaševica","gaugeCount":1,"sectionCount":0,"__fulltext":"badasevica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b470a"},"countries":["Italy"],"countryCodes":["IT"],"river":"Baganza","gaugeCount":1,"sectionCount":1,"__fulltext":"baganza","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b470b"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bagnone","gaugeCount":1,"sectionCount":2,"__fulltext":"bagnone","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b470c"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bahra","gaugeCount":1,"sectionCount":1,"__fulltext":"bahra","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b470d"},"countries":["Germany"],"countryCodes":["DE"],"river":"Baierzer Rot","gaugeCount":1,"sectionCount":0,"__fulltext":"baierzer rot","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b470e"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bakovský potok","gaugeCount":2,"sectionCount":0,"__fulltext":"bakovsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b470f"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Balinka","gaugeCount":1,"sectionCount":0,"__fulltext":"balinka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4710"},"countries":["Italy"],"countryCodes":["IT"],"river":"Basento","gaugeCount":2,"sectionCount":3,"__fulltext":"basento","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4711"},"countries":["France"],"countryCodes":["FR"],"river":"Baume","gaugeCount":1,"sectionCount":3,"__fulltext":"baume","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4712"},"countries":["Germany"],"countryCodes":["DE"],"river":"Baunach","gaugeCount":2,"sectionCount":0,"__fulltext":"baunach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4713"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bayerische Schwarzach","gaugeCount":2,"sectionCount":0,"__fulltext":"bayerische schwarzach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4714"},"countries":["Spain"],"countryCodes":["ES"],"river":"Baztan","gaugeCount":1,"sectionCount":0,"__fulltext":"baztan","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4715"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Bača","gaugeCount":1,"sectionCount":0,"__fulltext":"baca","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4716"},"countries":["Germany"],"countryCodes":["DE"],"river":"Berchtesgadener Ache","gaugeCount":1,"sectionCount":0,"__fulltext":"berchtesgadener ache","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4717"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bernauer Ache","gaugeCount":1,"sectionCount":0,"__fulltext":"bernauer ache","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4718"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Berninabach","gaugeCount":1,"sectionCount":2,"__fulltext":"berninabach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4719"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Berounka","gaugeCount":10,"sectionCount":3,"__fulltext":"berounka","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b471a"},"countries":["Germany"],"countryCodes":["DE"],"river":"Beurerbach","gaugeCount":1,"sectionCount":0,"__fulltext":"beurerbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b471b"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bevera","gaugeCount":1,"sectionCount":1,"__fulltext":"bevera","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b471c"},"countries":["France"],"countryCodes":["FR"],"river":"Bez","gaugeCount":1,"sectionCount":0,"__fulltext":"bez","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b471d"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bezdrevský potok","gaugeCount":2,"sectionCount":0,"__fulltext":"bezdrevsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b471e"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bečva","gaugeCount":2,"sectionCount":0,"__fulltext":"becva","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b471f"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Biber","gaugeCount":1,"sectionCount":0,"__fulltext":"biber","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4720"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bibert","gaugeCount":2,"sectionCount":0,"__fulltext":"bibert","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4721"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bidente di Ridracoli","gaugeCount":1,"sectionCount":1,"__fulltext":"bidente di ridracoli","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4722"},"countries":["Germany"],"countryCodes":["DE"],"river":"Biela","gaugeCount":1,"sectionCount":2,"__fulltext":"biela","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4723"},"countries":["France"],"countryCodes":["FR"],"river":"Bienne","gaugeCount":2,"sectionCount":3,"__fulltext":"bienne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4724"},"countries":["Germany"],"countryCodes":["DE"],"river":"Billbach","gaugeCount":1,"sectionCount":0,"__fulltext":"billbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4725"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bina","gaugeCount":1,"sectionCount":0,"__fulltext":"bina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4726"},"countries":["Germany"],"countryCodes":["DE"],"river":"Binnengraben","gaugeCount":1,"sectionCount":0,"__fulltext":"binnengraben","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4727"},"countries":["Italy"],"countryCodes":["IT"],"river":"Biois","gaugeCount":1,"sectionCount":1,"__fulltext":"biois","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4728"},"countries":["Germany"],"countryCodes":["DE"],"river":"Birkenmoosgraben","gaugeCount":1,"sectionCount":0,"__fulltext":"birkenmoosgraben","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4729"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Birs","gaugeCount":2,"sectionCount":5,"__fulltext":"birs","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472a"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Birse","gaugeCount":2,"sectionCount":1,"__fulltext":"birse","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472b"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bisagno","gaugeCount":1,"sectionCount":0,"__fulltext":"bisagno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472c"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bischofswieser Ache","gaugeCount":2,"sectionCount":0,"__fulltext":"bischofswieser ache","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472d"},"countries":["Italy"],"countryCodes":["IT"],"river":"Biscubio","gaugeCount":1,"sectionCount":0,"__fulltext":"biscubio","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472e"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bisenzio","gaugeCount":1,"sectionCount":1,"__fulltext":"bisenzio","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b472f"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Bistra","gaugeCount":1,"sectionCount":0,"__fulltext":"bistra","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4730"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Bistrica","gaugeCount":5,"sectionCount":0,"__fulltext":"bistrica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4731"},"countries":["Austria"],"countryCodes":["AT"],"river":"Bizauerbach","gaugeCount":1,"sectionCount":0,"__fulltext":"bizauerbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4732"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blanice","gaugeCount":7,"sectionCount":2,"__fulltext":"blanice","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4733"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blanice (BN)","gaugeCount":2,"sectionCount":0,"__fulltext":"blanice (bn)","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4734"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blanice (PI)","gaugeCount":6,"sectionCount":0,"__fulltext":"blanice (pi)","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4735"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blata","gaugeCount":1,"sectionCount":0,"__fulltext":"blata","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4736"},"countries":["Germany"],"countryCodes":["DE"],"river":"Blau","gaugeCount":1,"sectionCount":0,"__fulltext":"blau","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4737"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blažejovický potok","gaugeCount":1,"sectionCount":0,"__fulltext":"blazejovicky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4738"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Blšanka","gaugeCount":4,"sectionCount":0,"__fulltext":"blsanka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4739"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Boberský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"bobersky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b473a"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bobrůvka","gaugeCount":2,"sectionCount":0,"__fulltext":"bobruvka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b473b"},"countries":["Germany"],"countryCodes":["DE"],"river":"Bodensee","gaugeCount":2,"sectionCount":0,"__fulltext":"bodensee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b473c"},"countries":["Italy"],"countryCodes":["IT"],"river":"Boite","gaugeCount":3,"sectionCount":3,"__fulltext":"boite","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b473d"},"countries":["Austria"],"countryCodes":["AT"],"river":"Bolgenach","gaugeCount":2,"sectionCount":4,"__fulltext":"bolgenach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b473e"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Bolska","gaugeCount":1,"sectionCount":0,"__fulltext":"bolska","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b473f"},"countries":["France"],"countryCodes":["FR"],"river":"Bonne","gaugeCount":1,"sectionCount":0,"__fulltext":"bonne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4740"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bormida","gaugeCount":1,"sectionCount":0,"__fulltext":"bormida","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4741"},"countries":["France"],"countryCodes":["FR"],"river":"Borne","gaugeCount":2,"sectionCount":3,"__fulltext":"borne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4742"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Borovniščica","gaugeCount":1,"sectionCount":0,"__fulltext":"borovniscica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4743"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Borovský potok","gaugeCount":2,"sectionCount":0,"__fulltext":"borovsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4744"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bosso","gaugeCount":1,"sectionCount":1,"__fulltext":"bosso","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4745"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Botič","gaugeCount":6,"sectionCount":1,"__fulltext":"botic","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4746"},"countries":["France"],"countryCodes":["FR"],"river":"Bourne","gaugeCount":1,"sectionCount":2,"__fulltext":"bourne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4747"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bouřlivec","gaugeCount":1,"sectionCount":1,"__fulltext":"bourlivec","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4748"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bradava","gaugeCount":1,"sectionCount":2,"__fulltext":"bradava","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4749"},"countries":["France"],"countryCodes":["FR"],"river":"Brame","gaugeCount":1,"sectionCount":1,"__fulltext":"brame","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b474a"},"countries":["Austria"],"countryCodes":["AT"],"river":"Brandenberger Ache","gaugeCount":1,"sectionCount":4,"__fulltext":"brandenberger ache","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b474b"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Branica","gaugeCount":1,"sectionCount":0,"__fulltext":"branica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b474c"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Branná","gaugeCount":1,"sectionCount":0,"__fulltext":"branna","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b474d"},"countries":["Austria"],"countryCodes":["AT"],"river":"Braunaubach","gaugeCount":1,"sectionCount":1,"__fulltext":"braunaubach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b474e"},"countries":["Germany"],"countryCodes":["DE"],"river":"Brautlach","gaugeCount":1,"sectionCount":0,"__fulltext":"brautlach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b474f"},"countries":["Germany"],"countryCodes":["DE"],"river":"Breg","gaugeCount":1,"sectionCount":1,"__fulltext":"breg","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4750"},"countries":["Austria"],"countryCodes":["AT"],"river":"Bregenzerach","gaugeCount":5,"sectionCount":7,"__fulltext":"bregenzerach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4751"},"countries":["Germany"],"countryCodes":["DE"],"river":"Breitach","gaugeCount":1,"sectionCount":5,"__fulltext":"breitach","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4752"},"countries":["Germany"],"countryCodes":["DE"],"river":"Breitbach","gaugeCount":1,"sectionCount":0,"__fulltext":"breitbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4753"},"countries":["Germany"],"countryCodes":["DE"],"river":"Breitenbach (Blatenský potok)","gaugeCount":1,"sectionCount":0,"__fulltext":"breitenbach (blatensky potok)","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4754"},"countries":["Italy"],"countryCodes":["IT"],"river":"Brembo","gaugeCount":1,"sectionCount":3,"__fulltext":"brembo","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4755"},"countries":["Germany"],"countryCodes":["DE"],"river":"Brend","gaugeCount":2,"sectionCount":0,"__fulltext":"brend","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4756"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Brenno","gaugeCount":1,"sectionCount":2,"__fulltext":"brenno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4757"},"countries":["Italy"],"countryCodes":["IT"],"river":"Brenta","gaugeCount":1,"sectionCount":4,"__fulltext":"brenta","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4758"},"countries":["Germany"],"countryCodes":["DE"],"river":"Brenz","gaugeCount":2,"sectionCount":0,"__fulltext":"brenz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4759"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Brodečka","gaugeCount":1,"sectionCount":0,"__fulltext":"brodecka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475a"},"countries":["Germany"],"countryCodes":["DE"],"river":"Brombachsee","gaugeCount":2,"sectionCount":0,"__fulltext":"brombachsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475b"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Broye","gaugeCount":1,"sectionCount":1,"__fulltext":"broye","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475c"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Brtnice","gaugeCount":1,"sectionCount":0,"__fulltext":"brtnice","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475d"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Brumovka","gaugeCount":1,"sectionCount":0,"__fulltext":"brumovka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475e"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Brzina","gaugeCount":1,"sectionCount":0,"__fulltext":"brzina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b475f"},"countries":["France"],"countryCodes":["FR"],"river":"Bréda","gaugeCount":1,"sectionCount":2,"__fulltext":"breda","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4760"},"countries":["Germany"],"countryCodes":["DE"],"river":"Buchbach","gaugeCount":1,"sectionCount":0,"__fulltext":"buchbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4761"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Budišovka","gaugeCount":1,"sectionCount":0,"__fulltext":"budisovka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4762"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bulovský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"bulovsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4763"},"countries":["France"],"countryCodes":["FR"],"river":"Burande","gaugeCount":2,"sectionCount":1,"__fulltext":"burande","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4764"},"countries":["Italy"],"countryCodes":["IT"],"river":"Burano","gaugeCount":1,"sectionCount":0,"__fulltext":"burano","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4765"},"countries":["Italy"],"countryCodes":["IT"],"river":"Bussento","gaugeCount":1,"sectionCount":1,"__fulltext":"bussento","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4766"},"countries":["Italy"],"countryCodes":["IT"],"river":"But","gaugeCount":1,"sectionCount":0,"__fulltext":"but","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4767"},"countries":["Italy"],"countryCodes":["IT"],"river":"Buthier","gaugeCount":1,"sectionCount":1,"__fulltext":"buthier","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4768"},"countries":["France"],"countryCodes":["FR"],"river":"Buëch","gaugeCount":1,"sectionCount":0,"__fulltext":"buech","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4769"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bystřice","gaugeCount":6,"sectionCount":2,"__fulltext":"bystrice","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b476a"},"countries":["France"],"countryCodes":["FR"],"river":"Bès","gaugeCount":1,"sectionCount":2,"__fulltext":"bes","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b476b"},"countries":["France"],"countryCodes":["FR"],"river":"Bévéra","gaugeCount":2,"sectionCount":0,"__fulltext":"bevera","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b476c"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bílina","gaugeCount":6,"sectionCount":0,"__fulltext":"bilina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b476d"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bílovka","gaugeCount":1,"sectionCount":0,"__fulltext":"bilovka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b476e"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bílá Smědá","gaugeCount":1,"sectionCount":0,"__fulltext":"bila smeda","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b476f"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bílý potok","gaugeCount":1,"sectionCount":0,"__fulltext":"bily potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4770"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bělokamenný potok","gaugeCount":1,"sectionCount":0,"__fulltext":"belokamenny potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4771"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bělá","gaugeCount":8,"sectionCount":1,"__fulltext":"bela","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4772"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Bělá (PE)","gaugeCount":1,"sectionCount":0,"__fulltext":"bela (pe)","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4773"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Březná","gaugeCount":1,"sectionCount":0,"__fulltext":"brezna","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4774"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Březový potok","gaugeCount":1,"sectionCount":0,"__fulltext":"brezovy potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4775"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Calancasca","gaugeCount":1,"sectionCount":2,"__fulltext":"calancasca","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4776"},"countries":["Italy"],"countryCodes":["IT"],"river":"Calore","gaugeCount":1,"sectionCount":0,"__fulltext":"calore","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4777"},"countries":["France"],"countryCodes":["FR"],"river":"Cance","gaugeCount":1,"sectionCount":1,"__fulltext":"cance","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4778"},"countries":["Italy"],"countryCodes":["IT"],"river":"Candigliano","gaugeCount":1,"sectionCount":2,"__fulltext":"candigliano","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4779"},"countries":["Italy"],"countryCodes":["IT"],"river":"Caorame","gaugeCount":1,"sectionCount":1,"__fulltext":"caorame","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477a"},"countries":["France"],"countryCodes":["FR"],"river":"Carol","gaugeCount":1,"sectionCount":0,"__fulltext":"carol","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477b"},"countries":["Italy"],"countryCodes":["IT"],"river":"Carza","gaugeCount":1,"sectionCount":2,"__fulltext":"carza","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477c"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Cassarate","gaugeCount":1,"sectionCount":1,"__fulltext":"cassarate","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477d"},"countries":["France"],"countryCodes":["FR"],"river":"Castellane","gaugeCount":1,"sectionCount":0,"__fulltext":"castellane","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477e"},"countries":["Germany"],"countryCodes":["DE"],"river":"Castellbach","gaugeCount":1,"sectionCount":0,"__fulltext":"castellbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b477f"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Castione","gaugeCount":1,"sectionCount":0,"__fulltext":"castione","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4780"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cecina","gaugeCount":1,"sectionCount":1,"__fulltext":"cecina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4781"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cedra","gaugeCount":1,"sectionCount":1,"__fulltext":"cedra","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4782"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cellina","gaugeCount":2,"sectionCount":3,"__fulltext":"cellina","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4783"},"countries":["Italy"],"countryCodes":["IT"],"river":"Ceno","gaugeCount":2,"sectionCount":1,"__fulltext":"ceno","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4784"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Cerknica","gaugeCount":1,"sectionCount":0,"__fulltext":"cerknica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4785"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Cerkniščica","gaugeCount":1,"sectionCount":0,"__fulltext":"cerkniscica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4786"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cervo","gaugeCount":1,"sectionCount":4,"__fulltext":"cervo","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4787"},"countries":["Germany"],"countryCodes":["DE"],"river":"Chamb","gaugeCount":6,"sectionCount":0,"__fulltext":"chamb","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4788"},"countries":["France"],"countryCodes":["FR"],"river":"Chapeauroux","gaugeCount":1,"sectionCount":2,"__fulltext":"chapeauroux","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4789"},"countries":["Germany"],"countryCodes":["DE"],"river":"Chemnitz","gaugeCount":2,"sectionCount":1,"__fulltext":"chemnitz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478a"},"countries":["Italy"],"countryCodes":["IT"],"river":"Chiarsò","gaugeCount":2,"sectionCount":1,"__fulltext":"chiarso","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478b"},"countries":["Germany"],"countryCodes":["DE"],"river":"Chiemsee","gaugeCount":1,"sectionCount":0,"__fulltext":"chiemsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478c"},"countries":["Italy"],"countryCodes":["IT"],"river":"Chiese","gaugeCount":1,"sectionCount":2,"__fulltext":"chiese","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478d"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Chirel","gaugeCount":2,"sectionCount":1,"__fulltext":"chirel","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478e"},"countries":["Italy"],"countryCodes":["IT"],"river":"Chisone","gaugeCount":1,"sectionCount":2,"__fulltext":"chisone","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b478f"},"countries":["Italy"],"countryCodes":["IT"],"river":"Chiusella","gaugeCount":1,"sectionCount":3,"__fulltext":"chiusella","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4790"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chodovský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"chodovsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4791"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chomutovka","gaugeCount":3,"sectionCount":1,"__fulltext":"chomutovka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4792"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chotovinský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"chotovinsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4793"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chotýšanka","gaugeCount":2,"sectionCount":0,"__fulltext":"chotysanka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4794"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chrudimka","gaugeCount":8,"sectionCount":1,"__fulltext":"chrudimka","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4795"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chvalšinský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"chvalsinsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4796"},"countries":["France"],"countryCodes":["FR"],"river":"Chéran","gaugeCount":2,"sectionCount":3,"__fulltext":"cheran","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4797"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Chřibská Kamenice","gaugeCount":2,"sectionCount":0,"__fulltext":"chribska kamenice","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4798"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Cidlina","gaugeCount":4,"sectionCount":0,"__fulltext":"cidlina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4799"},"countries":["Spain"],"countryCodes":["ES"],"river":"Cinca","gaugeCount":3,"sectionCount":3,"__fulltext":"cinca","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b479a"},"countries":["Spain"],"countryCodes":["ES"],"river":"Cinqueta","gaugeCount":1,"sectionCount":4,"__fulltext":"cinqueta","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b479b"},"countries":["Italy"],"countryCodes":["IT"],"river":"Ciufenna","gaugeCount":1,"sectionCount":0,"__fulltext":"ciufenna","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b479c"},"countries":["France"],"countryCodes":["FR"],"river":"Cleurie","gaugeCount":1,"sectionCount":1,"__fulltext":"cleurie","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b479d"},"countries":["France"],"countryCodes":["FR"],"river":"Coise","gaugeCount":1,"sectionCount":1,"__fulltext":"coise","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b479e"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cordevole","gaugeCount":4,"sectionCount":4,"__fulltext":"cordevole","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b479f"},"countries":["Italy"],"countryCodes":["IT"],"river":"Cornappo","gaugeCount":2,"sectionCount":1,"__fulltext":"cornappo","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a0"},"countries":["France"],"countryCodes":["FR"],"river":"Corrèze","gaugeCount":3,"sectionCount":7,"__fulltext":"correze","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a1"},"countries":["Italy"],"countryCodes":["IT"],"river":"Corsaglia","gaugeCount":1,"sectionCount":0,"__fulltext":"corsaglia","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a2"},"countries":["France"],"countryCodes":["FR"],"river":"Couze Chambon","gaugeCount":2,"sectionCount":0,"__fulltext":"couze chambon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a3"},"countries":["France"],"countryCodes":["FR"],"river":"Couze Pavin","gaugeCount":1,"sectionCount":1,"__fulltext":"couze pavin","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a4"},"countries":["Germany"],"countryCodes":["DE"],"river":"Creußen","gaugeCount":1,"sectionCount":0,"__fulltext":"creussen","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a5"},"countries":["France"],"countryCodes":["FR"],"river":"Cure","gaugeCount":1,"sectionCount":0,"__fulltext":"cure","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a6"},"countries":["France"],"countryCodes":["FR"],"river":"Cusancin","gaugeCount":2,"sectionCount":1,"__fulltext":"cusancin","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a7"},"countries":["France"],"countryCodes":["FR"],"river":"Cère","gaugeCount":1,"sectionCount":4,"__fulltext":"cere","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a8"},"countries":["France"],"countryCodes":["FR"],"river":"Céor","gaugeCount":1,"sectionCount":1,"__fulltext":"ceor","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47a9"},"countries":["France"],"countryCodes":["FR"],"river":"Dadou","gaugeCount":1,"sectionCount":1,"__fulltext":"dadou","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47aa"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dalejský potok","gaugeCount":1,"sectionCount":0,"__fulltext":"dalejsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ab"},"countries":["Germany"],"countryCodes":["DE"],"river":"Danglesbach","gaugeCount":1,"sectionCount":0,"__fulltext":"danglesbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ac"},"countries":["Italy"],"countryCodes":["IT"],"river":"Degano","gaugeCount":1,"sectionCount":1,"__fulltext":"degano","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ad"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Desná","gaugeCount":5,"sectionCount":0,"__fulltext":"desna","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ae"},"countries":["France"],"countryCodes":["FR"],"river":"Dessoubre","gaugeCount":3,"sectionCount":1,"__fulltext":"dessoubre","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47af"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Divoká Orlice","gaugeCount":5,"sectionCount":2,"__fulltext":"divoka orlice","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47b0"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dobřejovický potok","gaugeCount":1,"sectionCount":0,"__fulltext":"dobrejovicky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b1"},"countries":["Italy"],"countryCodes":["IT"],"river":"Dolo","gaugeCount":1,"sectionCount":2,"__fulltext":"dolo","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b2"},"countries":["Germany"],"countryCodes":["DE"],"river":"Donau","gaugeCount":29,"sectionCount":1,"__fulltext":"donau","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b3"},"countries":["Germany"],"countryCodes":["DE"],"river":"Donaumoos Ach","gaugeCount":3,"sectionCount":0,"__fulltext":"donaumoos ach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b4"},"countries":["Italy"],"countryCodes":["IT"],"river":"Dora Baltea","gaugeCount":4,"sectionCount":8,"__fulltext":"dora baltea","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47b5"},"countries":["Italy"],"countryCodes":["IT"],"river":"Dora Riparia","gaugeCount":1,"sectionCount":1,"__fulltext":"dora riparia","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b6"},"countries":["Italy"],"countryCodes":["IT"],"river":"Dora di La Thuile","gaugeCount":1,"sectionCount":0,"__fulltext":"dora di la thuile","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b7"},"countries":["France"],"countryCodes":["FR"],"river":"Dordogne","gaugeCount":3,"sectionCount":4,"__fulltext":"dordogne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b8"},"countries":["France"],"countryCodes":["FR"],"river":"Dore","gaugeCount":3,"sectionCount":1,"__fulltext":"dore","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47b9"},"countries":["Germany"],"countryCodes":["DE"],"river":"Dorfen","gaugeCount":1,"sectionCount":0,"__fulltext":"dorfen","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ba"},"countries":["France"],"countryCodes":["FR"],"river":"Doron de Termignon","gaugeCount":1,"sectionCount":1,"__fulltext":"doron de termignon","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47bb"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Doubrava","gaugeCount":5,"sectionCount":3,"__fulltext":"doubrava","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47bc"},"countries":["Switzerland","France"],"countryCodes":["CH","FR"],"river":"Doubs","gaugeCount":9,"sectionCount":9,"__fulltext":"doubs","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47bd"},"countries":["France"],"countryCodes":["FR"],"river":"Dourbie","gaugeCount":1,"sectionCount":2,"__fulltext":"dourbie","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47be"},"countries":["France"],"countryCodes":["FR"],"river":"Dourdou","gaugeCount":1,"sectionCount":1,"__fulltext":"dourdou","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47bf"},"countries":["France"],"countryCodes":["FR"],"river":"Doux","gaugeCount":5,"sectionCount":2,"__fulltext":"doux","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c0"},"countries":["France"],"countryCodes":["FR"],"river":"Drac","gaugeCount":1,"sectionCount":2,"__fulltext":"drac","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Drachensee","gaugeCount":1,"sectionCount":0,"__fulltext":"drachensee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c2"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Dragonja","gaugeCount":1,"sectionCount":0,"__fulltext":"dragonja","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c3"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Drance","gaugeCount":1,"sectionCount":0,"__fulltext":"drance","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c4"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Drance de Bagnes","gaugeCount":1,"sectionCount":0,"__fulltext":"drance de bagnes","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c5"},"countries":["France"],"countryCodes":["FR"],"river":"Dranse","gaugeCount":3,"sectionCount":3,"__fulltext":"dranse","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47c6"},"countries":["France"],"countryCodes":["FR"],"river":"Dranse d'Abondance","gaugeCount":1,"sectionCount":3,"__fulltext":"dranse d'abondance","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c7"},"countries":["France"],"countryCodes":["FR"],"river":"Dranse de Morzine","gaugeCount":2,"sectionCount":2,"__fulltext":"dranse de morzine","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47c8"},"countries":["Austria"],"countryCodes":["AT"],"river":"Drau","gaugeCount":3,"sectionCount":3,"__fulltext":"drau","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47c9"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Drava","gaugeCount":4,"sectionCount":0,"__fulltext":"drava","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ca"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Dravinja","gaugeCount":4,"sectionCount":0,"__fulltext":"dravinja","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47cb"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dračice","gaugeCount":1,"sectionCount":0,"__fulltext":"dracice","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47cc"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dračice (Reißbach)","gaugeCount":1,"sectionCount":0,"__fulltext":"dracice (reissbach)","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47cd"},"countries":["Germany"],"countryCodes":["DE"],"river":"Dreisam","gaugeCount":1,"sectionCount":2,"__fulltext":"dreisam","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ce"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Dreta","gaugeCount":1,"sectionCount":0,"__fulltext":"dreta","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47cf"},"countries":["Slovenia"],"countryCodes":["SI"],"river":"Drnica","gaugeCount":1,"sectionCount":0,"__fulltext":"drnica","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d0"},"countries":["France"],"countryCodes":["FR"],"river":"Drôme","gaugeCount":1,"sectionCount":5,"__fulltext":"drome","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d1"},"countries":["France"],"countryCodes":["FR"],"river":"Dunières","gaugeCount":1,"sectionCount":1,"__fulltext":"dunieres","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d2"},"countries":["Germany"],"countryCodes":["DE"],"river":"Durach","gaugeCount":1,"sectionCount":0,"__fulltext":"durach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d3"},"countries":["France"],"countryCodes":["FR"],"river":"Durance","gaugeCount":9,"sectionCount":16,"__fulltext":"durance","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47d4"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dyje","gaugeCount":8,"sectionCount":0,"__fulltext":"dyje","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d5"},"countries":["Germany"],"countryCodes":["DE"],"river":"Dürnach","gaugeCount":1,"sectionCount":0,"__fulltext":"durnach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d6"},"countries":["Germany"],"countryCodes":["DE"],"river":"Dürrach","gaugeCount":1,"sectionCount":1,"__fulltext":"durrach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d7"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dědina","gaugeCount":2,"sectionCount":0,"__fulltext":"dedina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d8"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Dřevnice","gaugeCount":3,"sectionCount":0,"__fulltext":"drevnice","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47d9"},"countries":["Austria"],"countryCodes":["AT"],"river":"Ebriachbach","gaugeCount":1,"sectionCount":0,"__fulltext":"ebriachbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47da"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ecknach","gaugeCount":1,"sectionCount":0,"__fulltext":"ecknach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47db"},"countries":["Germany"],"countryCodes":["DE"],"river":"Effelder","gaugeCount":1,"sectionCount":0,"__fulltext":"effelder","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47dc"},"countries":["Germany"],"countryCodes":["DE"],"river":"Egau","gaugeCount":1,"sectionCount":0,"__fulltext":"egau","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47dd"},"countries":["Germany"],"countryCodes":["DE"],"river":"Eger","gaugeCount":4,"sectionCount":0,"__fulltext":"eger","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47de"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ehenbach","gaugeCount":1,"sectionCount":0,"__fulltext":"ehenbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47df"},"countries":["Austria","Germany"],"countryCodes":["AT","DE"],"river":"Eisbach","gaugeCount":2,"sectionCount":0,"__fulltext":"eisbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e0"},"countries":["Germany"],"countryCodes":["DE"],"river":"Eixendorfer See","gaugeCount":1,"sectionCount":0,"__fulltext":"eixendorfer see","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ellbach","gaugeCount":1,"sectionCount":0,"__fulltext":"ellbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e2"},"countries":["Italy"],"countryCodes":["IT"],"river":"Ellero","gaugeCount":1,"sectionCount":1,"__fulltext":"ellero","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e3"},"countries":["Germany"],"countryCodes":["DE"],"river":"Ellertshäuser See","gaugeCount":1,"sectionCount":0,"__fulltext":"ellertshauser see","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e4"},"countries":["Germany"],"countryCodes":["DE"],"river":"Els","gaugeCount":1,"sectionCount":0,"__fulltext":"els","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e5"},"countries":["Italy"],"countryCodes":["IT"],"river":"Elsa","gaugeCount":1,"sectionCount":1,"__fulltext":"elsa","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e6"},"countries":["Germany"],"countryCodes":["DE"],"river":"Elsava","gaugeCount":2,"sectionCount":0,"__fulltext":"elsava","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e7"},"countries":["Germany"],"countryCodes":["DE"],"river":"Elz","gaugeCount":1,"sectionCount":4,"__fulltext":"elz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e8"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Emme","gaugeCount":1,"sectionCount":0,"__fulltext":"emme","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47e9"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Engelberger Aa","gaugeCount":1,"sectionCount":3,"__fulltext":"engelberger aa","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ea"},"countries":["Austria"],"countryCodes":["AT"],"river":"Enns","gaugeCount":5,"sectionCount":4,"__fulltext":"enns","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47eb"},"countries":["Italy"],"countryCodes":["IT"],"river":"Entella","gaugeCount":3,"sectionCount":1,"__fulltext":"entella","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ec"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Entschlige","gaugeCount":1,"sectionCount":2,"__fulltext":"entschlige","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b47ed"},"countries":["Italy"],"countryCodes":["IT"],"river":"Enza","gaugeCount":1,"sectionCount":3,"__fulltext":"enza","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ee"},"countries":["Germany"],"countryCodes":["DE"],"river":"Erf","gaugeCount":1,"sectionCount":0,"__fulltext":"erf","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ef"},"countries":["Germany"],"countryCodes":["DE"],"river":"Erfa","gaugeCount":1,"sectionCount":0,"__fulltext":"erfa","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f0"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Ergolz","gaugeCount":1,"sectionCount":0,"__fulltext":"ergolz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f1"},"countries":["Germany"],"countryCodes":["DE"],"river":"Erlau","gaugeCount":2,"sectionCount":2,"__fulltext":"erlau","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f2"},"countries":["Italy"],"countryCodes":["IT"],"river":"Erro","gaugeCount":1,"sectionCount":1,"__fulltext":"erro","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f3"},"countries":["Germany"],"countryCodes":["DE"],"river":"Eschach","gaugeCount":1,"sectionCount":0,"__fulltext":"eschach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f4"},"countries":["Germany"],"countryCodes":["DE"],"river":"Eschenlaine","gaugeCount":1,"sectionCount":0,"__fulltext":"eschenlaine","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f5"},"countries":["Spain"],"countryCodes":["ES"],"river":"Escá","gaugeCount":2,"sectionCount":0,"__fulltext":"esca","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f6"},"countries":["Spain"],"countryCodes":["ES"],"river":"Esera","gaugeCount":2,"sectionCount":4,"__fulltext":"esera","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f7"},"countries":["Italy"],"countryCodes":["IT"],"river":"Esino","gaugeCount":2,"sectionCount":1,"__fulltext":"esino","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f8"},"countries":["France"],"countryCodes":["FR"],"river":"Esteron","gaugeCount":5,"sectionCount":3,"__fulltext":"esteron","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47f9"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Etzgerbach","gaugeCount":1,"sectionCount":1,"__fulltext":"etzgerbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47fa"},"countries":["Germany"],"countryCodes":["DE"],"river":"Euzenauer Bach","gaugeCount":1,"sectionCount":0,"__fulltext":"euzenauer bach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47fb"},"countries":["Germany"],"countryCodes":["DE"],"river":"Eybach","gaugeCount":1,"sectionCount":0,"__fulltext":"eybach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47fc"},"countries":["France"],"countryCodes":["FR"],"river":"Eyrieux","gaugeCount":4,"sectionCount":7,"__fulltext":"eyrieux","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47fd"},"countries":["Spain"],"countryCodes":["ES"],"river":"Ezkurra","gaugeCount":1,"sectionCount":0,"__fulltext":"ezkurra","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47fe"},"countries":["France"],"countryCodes":["FR"],"river":"Fango","gaugeCount":1,"sectionCount":1,"__fulltext":"fango","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b47ff"},"countries":["Italy"],"countryCodes":["IT"],"river":"Farma","gaugeCount":1,"sectionCount":1,"__fulltext":"farma","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4800"},"countries":["Germany"],"countryCodes":["DE"],"river":"Farrnbach","gaugeCount":1,"sectionCount":0,"__fulltext":"farrnbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4801"},"countries":["France"],"countryCodes":["FR"],"river":"Fecht","gaugeCount":2,"sectionCount":1,"__fulltext":"fecht","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4802"},"countries":["Germany"],"countryCodes":["DE"],"river":"Felchbach","gaugeCount":1,"sectionCount":0,"__fulltext":"felchbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4803"},"countries":["Austria"],"countryCodes":["AT"],"river":"Feldaist","gaugeCount":1,"sectionCount":1,"__fulltext":"feldaist","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4804"},"countries":["Italy"],"countryCodes":["IT"],"river":"Fella","gaugeCount":3,"sectionCount":3,"__fulltext":"fella","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4805"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fensterbach","gaugeCount":1,"sectionCount":0,"__fulltext":"fensterbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4806"},"countries":["Italy"],"countryCodes":["IT"],"river":"Fersina","gaugeCount":1,"sectionCount":1,"__fulltext":"fersina","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4807"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fichtelnaab","gaugeCount":1,"sectionCount":0,"__fulltext":"fichtelnaab","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4808"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fichtenohe","gaugeCount":1,"sectionCount":0,"__fulltext":"fichtenohe","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4809"},"countries":["Austria"],"countryCodes":["AT"],"river":"Fieberbrunner Ache","gaugeCount":1,"sectionCount":1,"__fulltext":"fieberbrunner ache","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b480a"},"countries":["France"],"countryCodes":["FR"],"river":"Fier","gaugeCount":2,"sectionCount":1,"__fulltext":"fier","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b480b"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Fildrich","gaugeCount":1,"sectionCount":1,"__fulltext":"fildrich","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b480c"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fimbach","gaugeCount":1,"sectionCount":0,"__fulltext":"fimbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b480d"},"countries":["Italy"],"countryCodes":["IT"],"river":"Fiora","gaugeCount":2,"sectionCount":2,"__fulltext":"fiora","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b480e"},"countries":["Austria"],"countryCodes":["AT"],"river":"Fischach","gaugeCount":2,"sectionCount":0,"__fulltext":"fischach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b480f"},"countries":["Italy"],"countryCodes":["IT"],"river":"Fiumi Uniti Montone","gaugeCount":1,"sectionCount":0,"__fulltext":"fiumi uniti montone","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4810"},"countries":["Italy"],"countryCodes":["IT"],"river":"Fiumi Uniti Ronco","gaugeCount":1,"sectionCount":0,"__fulltext":"fiumi uniti ronco","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4811"},"countries":["Spain"],"countryCodes":["ES"],"river":"Flamisell","gaugeCount":1,"sectionCount":0,"__fulltext":"flamisell","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4812"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Flaz","gaugeCount":1,"sectionCount":1,"__fulltext":"flaz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4813"},"countries":["Germany"],"countryCodes":["DE"],"river":"Flossach","gaugeCount":1,"sectionCount":0,"__fulltext":"flossach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4814"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Flájský potok","gaugeCount":2,"sectionCount":0,"__fulltext":"flajsky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4815"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Flájský potok-HVT č. 152, 153, 163","gaugeCount":1,"sectionCount":0,"__fulltext":"flajsky potok-hvt c. 152, 153, 163","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4816"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Fojtka","gaugeCount":1,"sectionCount":0,"__fulltext":"fojtka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4817"},"countries":["Germany"],"countryCodes":["DE"],"river":"Forggensee","gaugeCount":2,"sectionCount":0,"__fulltext":"forggensee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4818"},"countries":["Germany"],"countryCodes":["DE"],"river":"Frankenohe","gaugeCount":1,"sectionCount":0,"__fulltext":"frankenohe","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4819"},"countries":["Germany"],"countryCodes":["DE"],"river":"Freybach","gaugeCount":1,"sectionCount":0,"__fulltext":"freybach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481a"},"countries":["Italy"],"countryCodes":["IT"],"river":"Frigido","gaugeCount":1,"sectionCount":1,"__fulltext":"frigido","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481b"},"countries":["Germany"],"countryCodes":["DE"],"river":"Froschgrundsee","gaugeCount":1,"sectionCount":0,"__fulltext":"froschgrundsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481c"},"countries":["Austria"],"countryCodes":["AT"],"river":"Frutz","gaugeCount":1,"sectionCount":4,"__fulltext":"frutz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481d"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Fryštácký potok","gaugeCount":1,"sectionCount":0,"__fulltext":"frystacky potok","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481e"},"countries":["Czechia"],"countryCodes":["CZ"],"river":"Fryšávka","gaugeCount":1,"sectionCount":0,"__fulltext":"frysavka","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b481f"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fränkische Rezat","gaugeCount":4,"sectionCount":0,"__fulltext":"frankische rezat","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4820"},"countries":["Germany"],"countryCodes":["DE"],"river":"Fränkische Saale","gaugeCount":5,"sectionCount":0,"__fulltext":"frankische saale","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4821"},"countries":["Austria"],"countryCodes":["AT"],"river":"Fuschlsee","gaugeCount":1,"sectionCount":0,"__fulltext":"fuschlsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4822"},"countries":["Germany"],"countryCodes":["DE"],"river":"Förmitz","gaugeCount":2,"sectionCount":0,"__fulltext":"formitz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4823"},"countries":["Germany"],"countryCodes":["DE"],"river":"Förmitztalsperre","gaugeCount":1,"sectionCount":0,"__fulltext":"formitztalsperre","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4824"},"countries":["Germany"],"countryCodes":["DE"],"river":"Füssener Achen","gaugeCount":1,"sectionCount":0,"__fulltext":"fussener achen","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4825"},"countries":["Italy"],"countryCodes":["IT"],"river":"Gadera/Gader","gaugeCount":1,"sectionCount":3,"__fulltext":"gadera/gader","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4826"},"countries":["Austria"],"countryCodes":["AT"],"river":"Gail","gaugeCount":2,"sectionCount":3,"__fulltext":"gail","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4827"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gailach","gaugeCount":1,"sectionCount":0,"__fulltext":"gailach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4828"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gaißa","gaugeCount":1,"sectionCount":0,"__fulltext":"gaissa","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4829"},"countries":["France"],"countryCodes":["FR"],"river":"Galaure","gaugeCount":2,"sectionCount":2,"__fulltext":"galaure","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482a"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gambach","gaugeCount":1,"sectionCount":0,"__fulltext":"gambach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482b"},"countries":["France"],"countryCodes":["FR"],"river":"Gard","gaugeCount":1,"sectionCount":0,"__fulltext":"gard","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482c"},"countries":["France"],"countryCodes":["FR"],"river":"Gardon de Saint-Jean","gaugeCount":3,"sectionCount":1,"__fulltext":"gardon de saint-jean","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482d"},"countries":["France"],"countryCodes":["FR"],"river":"Gardon de Sainte-Croix","gaugeCount":3,"sectionCount":0,"__fulltext":"gardon de sainte-croix","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482e"},"countries":["Spain"],"countryCodes":["ES"],"river":"Garona","gaugeCount":2,"sectionCount":0,"__fulltext":"garona","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b482f"},"countries":["France"],"countryCodes":["FR"],"river":"Garonne","gaugeCount":1,"sectionCount":0,"__fulltext":"garonne","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4830"},"countries":["Austria"],"countryCodes":["AT"],"river":"Gasteiner Ache","gaugeCount":1,"sectionCount":0,"__fulltext":"gasteiner ache","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4831"},"countries":["France"],"countryCodes":["FR"],"river":"Gave d'Aspe","gaugeCount":3,"sectionCount":2,"__fulltext":"gave d'aspe","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4832"},"countries":["France"],"countryCodes":["FR"],"river":"Gave d'Oloron","gaugeCount":1,"sectionCount":4,"__fulltext":"gave d'oloron","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4833"},"countries":["France"],"countryCodes":["FR"],"river":"Gave d'Oloron [Le Gave d'Ossau]","gaugeCount":2,"sectionCount":0,"__fulltext":"gave d'oloron [le gave d'ossau]","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4834"},"countries":["France"],"countryCodes":["FR"],"river":"Gave de Cauterets","gaugeCount":1,"sectionCount":3,"__fulltext":"gave de cauterets","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4835"},"countries":["France"],"countryCodes":["FR"],"river":"Gave de Pau","gaugeCount":6,"sectionCount":9,"__fulltext":"gave de pau","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4836"},"countries":["France"],"countryCodes":["FR"],"river":"Gazeille","gaugeCount":2,"sectionCount":1,"__fulltext":"gazeille","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4837"},"countries":["Germany"],"countryCodes":["DE"],"river":"Geisbach","gaugeCount":1,"sectionCount":0,"__fulltext":"geisbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4838"},"countries":["Germany"],"countryCodes":["DE"],"river":"Geltnach","gaugeCount":1,"sectionCount":0,"__fulltext":"geltnach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4839"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gennach","gaugeCount":1,"sectionCount":0,"__fulltext":"gennach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483a"},"countries":["Germany"],"countryCodes":["DE"],"river":"Georgenbach","gaugeCount":1,"sectionCount":0,"__fulltext":"georgenbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483b"},"countries":["France"],"countryCodes":["FR"],"river":"Ger","gaugeCount":1,"sectionCount":0,"__fulltext":"ger","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483c"},"countries":["Italy"],"countryCodes":["IT"],"river":"Germanasca","gaugeCount":1,"sectionCount":4,"__fulltext":"germanasca","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483d"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gerolsbach","gaugeCount":1,"sectionCount":0,"__fulltext":"gerolsbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483e"},"countries":["Austria"],"countryCodes":["AT"],"river":"Gersbach","gaugeCount":1,"sectionCount":0,"__fulltext":"gersbach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b483f"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gersprenz","gaugeCount":1,"sectionCount":0,"__fulltext":"gersprenz","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4840"},"countries":["Italy"],"countryCodes":["IT"],"river":"Gesso di Valletta","gaugeCount":1,"sectionCount":4,"__fulltext":"gesso di valletta","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4841"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gfällach","gaugeCount":1,"sectionCount":0,"__fulltext":"gfallach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4842"},"countries":["France"],"countryCodes":["FR"],"river":"Giessen","gaugeCount":1,"sectionCount":1,"__fulltext":"giessen","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4843"},"countries":["France"],"countryCodes":["FR"],"river":"Giffre","gaugeCount":3,"sectionCount":5,"__fulltext":"giffre","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4844"},"countries":["Austria"],"countryCodes":["AT"],"river":"Glan","gaugeCount":1,"sectionCount":0,"__fulltext":"glan","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4845"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Glatt","gaugeCount":2,"sectionCount":2,"__fulltext":"glatt","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4846"},"countries":["Switzerland"],"countryCodes":["CH"],"river":"Glenner","gaugeCount":5,"sectionCount":5,"__fulltext":"glenner","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b4847"},"countries":["Germany"],"countryCodes":["DE"],"river":"Glonn","gaugeCount":6,"sectionCount":0,"__fulltext":"glonn","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4848"},"countries":["France"],"countryCodes":["FR"],"river":"Glueyre","gaugeCount":2,"sectionCount":2,"__fulltext":"glueyre","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b4849"},"countries":["Switzerland","Germany"],"countryCodes":["CH","DE"],"river":"Goldach","gaugeCount":2,"sectionCount":2,"__fulltext":"goldach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b484a"},"countries":["Germany"],"countryCodes":["DE"],"river":"Goldbergsee","gaugeCount":1,"sectionCount":0,"__fulltext":"goldbergsee","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b484b"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gollach","gaugeCount":1,"sectionCount":0,"__fulltext":"gollach","diaryItemCount":0} +{"_id":{"$oid":"679c75e222b74f001c4b484c"},"countries":["France"],"countryCodes":["FR"],"river":"Golo","gaugeCount":3,"sectionCount":11,"__fulltext":"golo","diaryItemCount":1} +{"_id":{"$oid":"679c75e222b74f001c4b484d"},"countries":["Germany"],"countryCodes":["DE"],"river":"Gottleuba","gaugeCount":2,"sectionCount":2,"__fulltext":"gottleuba","diaryItemCount":1} diff --git a/e2e-tests/data/sakila-mysql.sql b/e2e-tests/data/sakila-mysql.sql new file mode 100644 index 000000000..b4d65bb79 --- /dev/null +++ b/e2e-tests/data/sakila-mysql.sql @@ -0,0 +1,47126 @@ +-- Sakila Sample Database Schema +-- Version 1.2 + +-- Copyright (c) 2006, 2019, Oracle and/or its affiliates. + +-- Redistribution and use in source and binary forms, with or without +-- modification, are permitted provided that the following conditions are +-- met: + +-- * Redistributions of source code must retain the above copyright notice, +-- this list of conditions and the following disclaimer. +-- * Redistributions in binary form must reproduce the above copyright +-- notice, this list of conditions and the following disclaimer in the +-- documentation and/or other materials provided with the distribution. +-- * Neither the name of Oracle nor the names of its contributors may be used +-- to endorse or promote products derived from this software without +-- specific prior written permission. + +-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +-- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +-- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +SET NAMES utf8mb4; +SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; +SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; +SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; + +-- +-- Table structure for table `actor` +-- + +CREATE TABLE actor ( + actor_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (actor_id), + KEY idx_actor_last_name (last_name) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `address` +-- + +CREATE TABLE address ( + address_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + address VARCHAR(50) NOT NULL, + address2 VARCHAR(50) DEFAULT NULL, + district VARCHAR(20) NOT NULL, + city_id SMALLINT UNSIGNED NOT NULL, + postal_code VARCHAR(10) DEFAULT NULL, + phone VARCHAR(20) NOT NULL, + -- Add GEOMETRY column for MySQL 5.7.5 and higher + -- Also include SRID attribute for MySQL 8.0.3 and higher + /*!50705 location GEOMETRY */ /*!80003 SRID 0 */ /*!50705 NOT NULL,*/ + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (address_id), + KEY idx_fk_city_id (city_id), + /*!50705 SPATIAL KEY `idx_location` (location),*/ + CONSTRAINT `fk_address_city` FOREIGN KEY (city_id) REFERENCES city (city_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `category` +-- + +CREATE TABLE category ( + category_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + name VARCHAR(25) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (category_id) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `city` +-- + +CREATE TABLE city ( + city_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + city VARCHAR(50) NOT NULL, + country_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (city_id), + KEY idx_fk_country_id (country_id), + CONSTRAINT `fk_city_country` FOREIGN KEY (country_id) REFERENCES country (country_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `country` +-- + +CREATE TABLE country ( + country_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + country VARCHAR(50) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (country_id) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `customer` +-- + +CREATE TABLE customer ( + customer_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + store_id TINYINT UNSIGNED NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + email VARCHAR(50) DEFAULT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + active BOOLEAN NOT NULL DEFAULT TRUE, + create_date DATETIME NOT NULL, + last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (customer_id), + KEY idx_fk_store_id (store_id), + KEY idx_fk_address_id (address_id), + KEY idx_last_name (last_name), + CONSTRAINT fk_customer_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_customer_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `film` +-- + +CREATE TABLE film ( + film_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + title VARCHAR(128) NOT NULL, + description TEXT DEFAULT NULL, + release_year YEAR DEFAULT NULL, + language_id TINYINT UNSIGNED NOT NULL, + original_language_id TINYINT UNSIGNED DEFAULT NULL, + rental_duration TINYINT UNSIGNED NOT NULL DEFAULT 3, + rental_rate DECIMAL(4,2) NOT NULL DEFAULT 4.99, + length SMALLINT UNSIGNED DEFAULT NULL, + replacement_cost DECIMAL(5,2) NOT NULL DEFAULT 19.99, + rating ENUM('G','PG','PG-13','R','NC-17') DEFAULT 'G', + special_features SET('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') DEFAULT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (film_id), + KEY idx_title (title), + KEY idx_fk_language_id (language_id), + KEY idx_fk_original_language_id (original_language_id), + CONSTRAINT fk_film_language FOREIGN KEY (language_id) REFERENCES language (language_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_film_language_original FOREIGN KEY (original_language_id) REFERENCES language (language_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `film_actor` +-- + +CREATE TABLE film_actor ( + actor_id SMALLINT UNSIGNED NOT NULL, + film_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (actor_id,film_id), + KEY idx_fk_film_id (`film_id`), + CONSTRAINT fk_film_actor_actor FOREIGN KEY (actor_id) REFERENCES actor (actor_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_film_actor_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `film_category` +-- + +CREATE TABLE film_category ( + film_id SMALLINT UNSIGNED NOT NULL, + category_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (film_id, category_id), + CONSTRAINT fk_film_category_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_film_category_category FOREIGN KEY (category_id) REFERENCES category (category_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `film_text` +-- +-- InnoDB added FULLTEXT support in 5.6.10. If you use an +-- earlier version, then consider upgrading (recommended) or +-- changing InnoDB to MyISAM as the film_text engine +-- + +-- Use InnoDB for film_text as of 5.6.10, MyISAM prior to 5.6.10. +SET @old_default_storage_engine = @@default_storage_engine; +SET @@default_storage_engine = 'MyISAM'; +/*!50610 SET @@default_storage_engine = 'InnoDB'*/; + +CREATE TABLE film_text ( + film_id SMALLINT NOT NULL, + title VARCHAR(255) NOT NULL, + description TEXT, + PRIMARY KEY (film_id), + FULLTEXT KEY idx_title_description (title,description) +) DEFAULT CHARSET=utf8mb4; + +SET @@default_storage_engine = @old_default_storage_engine; + +-- +-- Triggers for loading film_text from film +-- + +DELIMITER ;; +CREATE TRIGGER `ins_film` AFTER INSERT ON `film` FOR EACH ROW BEGIN + INSERT INTO film_text (film_id, title, description) + VALUES (new.film_id, new.title, new.description); + END;; + + +CREATE TRIGGER `upd_film` AFTER UPDATE ON `film` FOR EACH ROW BEGIN + IF (old.title != new.title) OR (old.description != new.description) OR (old.film_id != new.film_id) + THEN + UPDATE film_text + SET title=new.title, + description=new.description, + film_id=new.film_id + WHERE film_id=old.film_id; + END IF; + END;; + + +CREATE TRIGGER `del_film` AFTER DELETE ON `film` FOR EACH ROW BEGIN + DELETE FROM film_text WHERE film_id = old.film_id; + END;; + +DELIMITER ; + +-- +-- Table structure for table `inventory` +-- + +CREATE TABLE inventory ( + inventory_id MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT, + film_id SMALLINT UNSIGNED NOT NULL, + store_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (inventory_id), + KEY idx_fk_film_id (film_id), + KEY idx_store_id_film_id (store_id,film_id), + CONSTRAINT fk_inventory_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_inventory_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `language` +-- + +CREATE TABLE language ( + language_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + name CHAR(20) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (language_id) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `payment` +-- + +CREATE TABLE payment ( + payment_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + customer_id SMALLINT UNSIGNED NOT NULL, + staff_id TINYINT UNSIGNED NOT NULL, + rental_id INT DEFAULT NULL, + amount DECIMAL(5,2) NOT NULL, + payment_date DATETIME NOT NULL, + last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (payment_id), + KEY idx_fk_staff_id (staff_id), + KEY idx_fk_customer_id (customer_id), + CONSTRAINT fk_payment_rental FOREIGN KEY (rental_id) REFERENCES rental (rental_id) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT fk_payment_customer FOREIGN KEY (customer_id) REFERENCES customer (customer_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_payment_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + + +-- +-- Table structure for table `rental` +-- + +CREATE TABLE rental ( + rental_id INT NOT NULL AUTO_INCREMENT, + rental_date DATETIME NOT NULL, + inventory_id MEDIUMINT UNSIGNED NOT NULL, + customer_id SMALLINT UNSIGNED NOT NULL, + return_date DATETIME DEFAULT NULL, + staff_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (rental_id), + UNIQUE KEY (rental_date,inventory_id,customer_id), + KEY idx_fk_inventory_id (inventory_id), + KEY idx_fk_customer_id (customer_id), + KEY idx_fk_staff_id (staff_id), + CONSTRAINT fk_rental_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_rental_inventory FOREIGN KEY (inventory_id) REFERENCES inventory (inventory_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_rental_customer FOREIGN KEY (customer_id) REFERENCES customer (customer_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `staff` +-- + +CREATE TABLE staff ( + staff_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + picture BLOB DEFAULT NULL, + email VARCHAR(50) DEFAULT NULL, + store_id TINYINT UNSIGNED NOT NULL, + active BOOLEAN NOT NULL DEFAULT TRUE, + username VARCHAR(16) NOT NULL, + password VARCHAR(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (staff_id), + KEY idx_fk_store_id (store_id), + KEY idx_fk_address_id (address_id), + CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_staff_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Table structure for table `store` +-- + +CREATE TABLE store ( + store_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + manager_staff_id TINYINT UNSIGNED NOT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (store_id), + UNIQUE KEY idx_unique_manager (manager_staff_id), + KEY idx_fk_address_id (address_id), + CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id) ON DELETE RESTRICT ON UPDATE CASCADE, + CONSTRAINT fk_store_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE RESTRICT ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- View structure for view `customer_list` +-- + +CREATE VIEW customer_list +AS +SELECT cu.customer_id AS ID, CONCAT(cu.first_name, _utf8mb4' ', cu.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, + a.phone AS phone, city.city AS city, country.country AS country, IF(cu.active, _utf8mb4'active',_utf8mb4'') AS notes, cu.store_id AS SID +FROM customer AS cu JOIN address AS a ON cu.address_id = a.address_id JOIN city ON a.city_id = city.city_id + JOIN country ON city.country_id = country.country_id; + +-- +-- View structure for view `film_list` +-- + +CREATE VIEW film_list +AS +SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, + film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(actor.first_name, _utf8mb4' ', actor.last_name) SEPARATOR ', ') AS actors +FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id + JOIN film_actor ON film.film_id = film_actor.film_id + JOIN actor ON film_actor.actor_id = actor.actor_id +GROUP BY film.film_id, category.name; + +-- +-- View structure for view `nicer_but_slower_film_list` +-- + +CREATE VIEW nicer_but_slower_film_list +AS +SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, + film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(CONCAT(UCASE(SUBSTR(actor.first_name,1,1)), + LCASE(SUBSTR(actor.first_name,2,LENGTH(actor.first_name))),_utf8mb4' ',CONCAT(UCASE(SUBSTR(actor.last_name,1,1)), + LCASE(SUBSTR(actor.last_name,2,LENGTH(actor.last_name)))))) SEPARATOR ', ') AS actors +FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id + JOIN film_actor ON film.film_id = film_actor.film_id + JOIN actor ON film_actor.actor_id = actor.actor_id +GROUP BY film.film_id, category.name; + +-- +-- View structure for view `staff_list` +-- + +CREATE VIEW staff_list +AS +SELECT s.staff_id AS ID, CONCAT(s.first_name, _utf8mb4' ', s.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, a.phone AS phone, + city.city AS city, country.country AS country, s.store_id AS SID +FROM staff AS s JOIN address AS a ON s.address_id = a.address_id JOIN city ON a.city_id = city.city_id + JOIN country ON city.country_id = country.country_id; + +-- +-- View structure for view `sales_by_store` +-- + +CREATE VIEW sales_by_store +AS +SELECT +CONCAT(c.city, _utf8mb4',', cy.country) AS store +, CONCAT(m.first_name, _utf8mb4' ', m.last_name) AS manager +, SUM(p.amount) AS total_sales +FROM payment AS p +INNER JOIN rental AS r ON p.rental_id = r.rental_id +INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id +INNER JOIN store AS s ON i.store_id = s.store_id +INNER JOIN address AS a ON s.address_id = a.address_id +INNER JOIN city AS c ON a.city_id = c.city_id +INNER JOIN country AS cy ON c.country_id = cy.country_id +INNER JOIN staff AS m ON s.manager_staff_id = m.staff_id +GROUP BY s.store_id +ORDER BY cy.country, c.city; + +-- +-- View structure for view `sales_by_film_category` +-- +-- Note that total sales will add up to >100% because +-- some titles belong to more than 1 category +-- + +CREATE VIEW sales_by_film_category +AS +SELECT +c.name AS category +, SUM(p.amount) AS total_sales +FROM payment AS p +INNER JOIN rental AS r ON p.rental_id = r.rental_id +INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id +INNER JOIN film AS f ON i.film_id = f.film_id +INNER JOIN film_category AS fc ON f.film_id = fc.film_id +INNER JOIN category AS c ON fc.category_id = c.category_id +GROUP BY c.name +ORDER BY total_sales DESC; + +-- +-- View structure for view `actor_info` +-- + +CREATE DEFINER=CURRENT_USER SQL SECURITY INVOKER VIEW actor_info +AS +SELECT +a.actor_id, +a.first_name, +a.last_name, +GROUP_CONCAT(DISTINCT CONCAT(c.name, ': ', + (SELECT GROUP_CONCAT(f.title ORDER BY f.title SEPARATOR ', ') + FROM sakila.film f + INNER JOIN sakila.film_category fc + ON f.film_id = fc.film_id + INNER JOIN sakila.film_actor fa + ON f.film_id = fa.film_id + WHERE fc.category_id = c.category_id + AND fa.actor_id = a.actor_id + ) + ) + ORDER BY c.name SEPARATOR '; ') +AS film_info +FROM sakila.actor a +LEFT JOIN sakila.film_actor fa + ON a.actor_id = fa.actor_id +LEFT JOIN sakila.film_category fc + ON fa.film_id = fc.film_id +LEFT JOIN sakila.category c + ON fc.category_id = c.category_id +GROUP BY a.actor_id, a.first_name, a.last_name; + +-- +-- Procedure structure for procedure `rewards_report` +-- + +DELIMITER // + +CREATE PROCEDURE rewards_report ( + IN min_monthly_purchases TINYINT UNSIGNED + , IN min_dollar_amount_purchased DECIMAL(10,2) + , OUT count_rewardees INT +) +LANGUAGE SQL +NOT DETERMINISTIC +READS SQL DATA +SQL SECURITY DEFINER +COMMENT 'Provides a customizable report on best customers' +proc: BEGIN + + DECLARE last_month_start DATE; + DECLARE last_month_end DATE; + + /* Some sanity checks... */ + IF min_monthly_purchases = 0 THEN + SELECT 'Minimum monthly purchases parameter must be > 0'; + LEAVE proc; + END IF; + IF min_dollar_amount_purchased = 0.00 THEN + SELECT 'Minimum monthly dollar amount purchased parameter must be > $0.00'; + LEAVE proc; + END IF; + + /* Determine start and end time periods */ + SET last_month_start = DATE_SUB(CURRENT_DATE(), INTERVAL 1 MONTH); + SET last_month_start = STR_TO_DATE(CONCAT(YEAR(last_month_start),'-',MONTH(last_month_start),'-01'),'%Y-%m-%d'); + SET last_month_end = LAST_DAY(last_month_start); + + /* + Create a temporary storage area for + Customer IDs. + */ + CREATE TEMPORARY TABLE tmpCustomer (customer_id SMALLINT UNSIGNED NOT NULL PRIMARY KEY); + + /* + Find all customers meeting the + monthly purchase requirements + */ + INSERT INTO tmpCustomer (customer_id) + SELECT p.customer_id + FROM payment AS p + WHERE DATE(p.payment_date) BETWEEN last_month_start AND last_month_end + GROUP BY customer_id + HAVING SUM(p.amount) > min_dollar_amount_purchased + AND COUNT(customer_id) > min_monthly_purchases; + + /* Populate OUT parameter with count of found customers */ + SELECT COUNT(*) FROM tmpCustomer INTO count_rewardees; + + /* + Output ALL customer information of matching rewardees. + Customize output as needed. + */ + SELECT c.* + FROM tmpCustomer AS t + INNER JOIN customer AS c ON t.customer_id = c.customer_id; + + /* Clean up */ + DROP TABLE tmpCustomer; +END // + +DELIMITER ; + +DELIMITER $$ + +CREATE FUNCTION get_customer_balance(p_customer_id INT, p_effective_date DATETIME) RETURNS DECIMAL(5,2) + DETERMINISTIC + READS SQL DATA +BEGIN + + #OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE + #THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS: + # 1) RENTAL FEES FOR ALL PREVIOUS RENTALS + # 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE + # 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST + # 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED + + DECLARE v_rentfees DECIMAL(5,2); #FEES PAID TO RENT THE VIDEOS INITIALLY + DECLARE v_overfees INTEGER; #LATE FEES FOR PRIOR RENTALS + DECLARE v_payments DECIMAL(5,2); #SUM OF PAYMENTS MADE PREVIOUSLY + + SELECT IFNULL(SUM(film.rental_rate),0) INTO v_rentfees + FROM film, inventory, rental + WHERE film.film_id = inventory.film_id + AND inventory.inventory_id = rental.inventory_id + AND rental.rental_date <= p_effective_date + AND rental.customer_id = p_customer_id; + + SELECT IFNULL(SUM(IF((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) > film.rental_duration, + ((TO_DAYS(rental.return_date) - TO_DAYS(rental.rental_date)) - film.rental_duration),0)),0) INTO v_overfees + FROM rental, inventory, film + WHERE film.film_id = inventory.film_id + AND inventory.inventory_id = rental.inventory_id + AND rental.rental_date <= p_effective_date + AND rental.customer_id = p_customer_id; + + + SELECT IFNULL(SUM(payment.amount),0) INTO v_payments + FROM payment + + WHERE payment.payment_date <= p_effective_date + AND payment.customer_id = p_customer_id; + + RETURN v_rentfees + v_overfees - v_payments; +END $$ + +DELIMITER ; + +DELIMITER $$ + +CREATE PROCEDURE film_in_stock(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) +READS SQL DATA +BEGIN + SELECT inventory_id + FROM inventory + WHERE film_id = p_film_id + AND store_id = p_store_id + AND inventory_in_stock(inventory_id); + + SELECT COUNT(*) + FROM inventory + WHERE film_id = p_film_id + AND store_id = p_store_id + AND inventory_in_stock(inventory_id) + INTO p_film_count; +END $$ + +DELIMITER ; + +DELIMITER $$ + +CREATE PROCEDURE film_not_in_stock(IN p_film_id INT, IN p_store_id INT, OUT p_film_count INT) +READS SQL DATA +BEGIN + SELECT inventory_id + FROM inventory + WHERE film_id = p_film_id + AND store_id = p_store_id + AND NOT inventory_in_stock(inventory_id); + + SELECT COUNT(*) + FROM inventory + WHERE film_id = p_film_id + AND store_id = p_store_id + AND NOT inventory_in_stock(inventory_id) + INTO p_film_count; +END $$ + +DELIMITER ; + +DELIMITER $$ + +CREATE FUNCTION inventory_held_by_customer(p_inventory_id INT) RETURNS INT +READS SQL DATA +BEGIN + DECLARE v_customer_id INT; + DECLARE EXIT HANDLER FOR NOT FOUND RETURN NULL; + + SELECT customer_id INTO v_customer_id + FROM rental + WHERE return_date IS NULL + AND inventory_id = p_inventory_id; + + RETURN v_customer_id; +END $$ + +DELIMITER ; + +DELIMITER $$ + +CREATE FUNCTION inventory_in_stock(p_inventory_id INT) RETURNS BOOLEAN +READS SQL DATA +BEGIN + DECLARE v_rentals INT; + DECLARE v_out INT; + + #AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE + #FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED + + SELECT COUNT(*) INTO v_rentals + FROM rental + WHERE inventory_id = p_inventory_id; + + IF v_rentals = 0 THEN + RETURN TRUE; + END IF; + + SELECT COUNT(rental_id) INTO v_out + FROM inventory LEFT JOIN rental USING(inventory_id) + WHERE inventory.inventory_id = p_inventory_id + AND rental.return_date IS NULL; + + IF v_out > 0 THEN + RETURN FALSE; + ELSE + RETURN TRUE; + END IF; +END $$ + +DELIMITER ; + +SET SQL_MODE=@OLD_SQL_MODE; +SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; +SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; + + +-- Sakila Sample Database Data +-- Version 1.2 + +-- Copyright (c) 2006, 2019, Oracle and/or its affiliates. + +-- Redistribution and use in source and binary forms, with or without +-- modification, are permitted provided that the following conditions are +-- met: + +-- * Redistributions of source code must retain the above copyright notice, +-- this list of conditions and the following disclaimer. +-- * Redistributions in binary form must reproduce the above copyright +-- notice, this list of conditions and the following disclaimer in the +-- documentation and/or other materials provided with the distribution. +-- * Neither the name of Oracle nor the names of its contributors may be used +-- to endorse or promote products derived from this software without +-- specific prior written permission. + +-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +-- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +-- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +SET NAMES utf8mb4; +SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; +SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; +SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; +SET @old_autocommit=@@autocommit; + +-- +-- Dumping data for table actor +-- + +SET AUTOCOMMIT=0; +INSERT INTO actor VALUES (1,'PENELOPE','GUINESS','2006-02-15 04:34:33'), +(2,'NICK','WAHLBERG','2006-02-15 04:34:33'), +(3,'ED','CHASE','2006-02-15 04:34:33'), +(4,'JENNIFER','DAVIS','2006-02-15 04:34:33'), +(5,'JOHNNY','LOLLOBRIGIDA','2006-02-15 04:34:33'), +(6,'BETTE','NICHOLSON','2006-02-15 04:34:33'), +(7,'GRACE','MOSTEL','2006-02-15 04:34:33'), +(8,'MATTHEW','JOHANSSON','2006-02-15 04:34:33'), +(9,'JOE','SWANK','2006-02-15 04:34:33'), +(10,'CHRISTIAN','GABLE','2006-02-15 04:34:33'), +(11,'ZERO','CAGE','2006-02-15 04:34:33'), +(12,'KARL','BERRY','2006-02-15 04:34:33'), +(13,'UMA','WOOD','2006-02-15 04:34:33'), +(14,'VIVIEN','BERGEN','2006-02-15 04:34:33'), +(15,'CUBA','OLIVIER','2006-02-15 04:34:33'), +(16,'FRED','COSTNER','2006-02-15 04:34:33'), +(17,'HELEN','VOIGHT','2006-02-15 04:34:33'), +(18,'DAN','TORN','2006-02-15 04:34:33'), +(19,'BOB','FAWCETT','2006-02-15 04:34:33'), +(20,'LUCILLE','TRACY','2006-02-15 04:34:33'), +(21,'KIRSTEN','PALTROW','2006-02-15 04:34:33'), +(22,'ELVIS','MARX','2006-02-15 04:34:33'), +(23,'SANDRA','KILMER','2006-02-15 04:34:33'), +(24,'CAMERON','STREEP','2006-02-15 04:34:33'), +(25,'KEVIN','BLOOM','2006-02-15 04:34:33'), +(26,'RIP','CRAWFORD','2006-02-15 04:34:33'), +(27,'JULIA','MCQUEEN','2006-02-15 04:34:33'), +(28,'WOODY','HOFFMAN','2006-02-15 04:34:33'), +(29,'ALEC','WAYNE','2006-02-15 04:34:33'), +(30,'SANDRA','PECK','2006-02-15 04:34:33'), +(31,'SISSY','SOBIESKI','2006-02-15 04:34:33'), +(32,'TIM','HACKMAN','2006-02-15 04:34:33'), +(33,'MILLA','PECK','2006-02-15 04:34:33'), +(34,'AUDREY','OLIVIER','2006-02-15 04:34:33'), +(35,'JUDY','DEAN','2006-02-15 04:34:33'), +(36,'BURT','DUKAKIS','2006-02-15 04:34:33'), +(37,'VAL','BOLGER','2006-02-15 04:34:33'), +(38,'TOM','MCKELLEN','2006-02-15 04:34:33'), +(39,'GOLDIE','BRODY','2006-02-15 04:34:33'), +(40,'JOHNNY','CAGE','2006-02-15 04:34:33'), +(41,'JODIE','DEGENERES','2006-02-15 04:34:33'), +(42,'TOM','MIRANDA','2006-02-15 04:34:33'), +(43,'KIRK','JOVOVICH','2006-02-15 04:34:33'), +(44,'NICK','STALLONE','2006-02-15 04:34:33'), +(45,'REESE','KILMER','2006-02-15 04:34:33'), +(46,'PARKER','GOLDBERG','2006-02-15 04:34:33'), +(47,'JULIA','BARRYMORE','2006-02-15 04:34:33'), +(48,'FRANCES','DAY-LEWIS','2006-02-15 04:34:33'), +(49,'ANNE','CRONYN','2006-02-15 04:34:33'), +(50,'NATALIE','HOPKINS','2006-02-15 04:34:33'), +(51,'GARY','PHOENIX','2006-02-15 04:34:33'), +(52,'CARMEN','HUNT','2006-02-15 04:34:33'), +(53,'MENA','TEMPLE','2006-02-15 04:34:33'), +(54,'PENELOPE','PINKETT','2006-02-15 04:34:33'), +(55,'FAY','KILMER','2006-02-15 04:34:33'), +(56,'DAN','HARRIS','2006-02-15 04:34:33'), +(57,'JUDE','CRUISE','2006-02-15 04:34:33'), +(58,'CHRISTIAN','AKROYD','2006-02-15 04:34:33'), +(59,'DUSTIN','TAUTOU','2006-02-15 04:34:33'), +(60,'HENRY','BERRY','2006-02-15 04:34:33'), +(61,'CHRISTIAN','NEESON','2006-02-15 04:34:33'), +(62,'JAYNE','NEESON','2006-02-15 04:34:33'), +(63,'CAMERON','WRAY','2006-02-15 04:34:33'), +(64,'RAY','JOHANSSON','2006-02-15 04:34:33'), +(65,'ANGELA','HUDSON','2006-02-15 04:34:33'), +(66,'MARY','TANDY','2006-02-15 04:34:33'), +(67,'JESSICA','BAILEY','2006-02-15 04:34:33'), +(68,'RIP','WINSLET','2006-02-15 04:34:33'), +(69,'KENNETH','PALTROW','2006-02-15 04:34:33'), +(70,'MICHELLE','MCCONAUGHEY','2006-02-15 04:34:33'), +(71,'ADAM','GRANT','2006-02-15 04:34:33'), +(72,'SEAN','WILLIAMS','2006-02-15 04:34:33'), +(73,'GARY','PENN','2006-02-15 04:34:33'), +(74,'MILLA','KEITEL','2006-02-15 04:34:33'), +(75,'BURT','POSEY','2006-02-15 04:34:33'), +(76,'ANGELINA','ASTAIRE','2006-02-15 04:34:33'), +(77,'CARY','MCCONAUGHEY','2006-02-15 04:34:33'), +(78,'GROUCHO','SINATRA','2006-02-15 04:34:33'), +(79,'MAE','HOFFMAN','2006-02-15 04:34:33'), +(80,'RALPH','CRUZ','2006-02-15 04:34:33'), +(81,'SCARLETT','DAMON','2006-02-15 04:34:33'), +(82,'WOODY','JOLIE','2006-02-15 04:34:33'), +(83,'BEN','WILLIS','2006-02-15 04:34:33'), +(84,'JAMES','PITT','2006-02-15 04:34:33'), +(85,'MINNIE','ZELLWEGER','2006-02-15 04:34:33'), +(86,'GREG','CHAPLIN','2006-02-15 04:34:33'), +(87,'SPENCER','PECK','2006-02-15 04:34:33'), +(88,'KENNETH','PESCI','2006-02-15 04:34:33'), +(89,'CHARLIZE','DENCH','2006-02-15 04:34:33'), +(90,'SEAN','GUINESS','2006-02-15 04:34:33'), +(91,'CHRISTOPHER','BERRY','2006-02-15 04:34:33'), +(92,'KIRSTEN','AKROYD','2006-02-15 04:34:33'), +(93,'ELLEN','PRESLEY','2006-02-15 04:34:33'), +(94,'KENNETH','TORN','2006-02-15 04:34:33'), +(95,'DARYL','WAHLBERG','2006-02-15 04:34:33'), +(96,'GENE','WILLIS','2006-02-15 04:34:33'), +(97,'MEG','HAWKE','2006-02-15 04:34:33'), +(98,'CHRIS','BRIDGES','2006-02-15 04:34:33'), +(99,'JIM','MOSTEL','2006-02-15 04:34:33'), +(100,'SPENCER','DEPP','2006-02-15 04:34:33'), +(101,'SUSAN','DAVIS','2006-02-15 04:34:33'), +(102,'WALTER','TORN','2006-02-15 04:34:33'), +(103,'MATTHEW','LEIGH','2006-02-15 04:34:33'), +(104,'PENELOPE','CRONYN','2006-02-15 04:34:33'), +(105,'SIDNEY','CROWE','2006-02-15 04:34:33'), +(106,'GROUCHO','DUNST','2006-02-15 04:34:33'), +(107,'GINA','DEGENERES','2006-02-15 04:34:33'), +(108,'WARREN','NOLTE','2006-02-15 04:34:33'), +(109,'SYLVESTER','DERN','2006-02-15 04:34:33'), +(110,'SUSAN','DAVIS','2006-02-15 04:34:33'), +(111,'CAMERON','ZELLWEGER','2006-02-15 04:34:33'), +(112,'RUSSELL','BACALL','2006-02-15 04:34:33'), +(113,'MORGAN','HOPKINS','2006-02-15 04:34:33'), +(114,'MORGAN','MCDORMAND','2006-02-15 04:34:33'), +(115,'HARRISON','BALE','2006-02-15 04:34:33'), +(116,'DAN','STREEP','2006-02-15 04:34:33'), +(117,'RENEE','TRACY','2006-02-15 04:34:33'), +(118,'CUBA','ALLEN','2006-02-15 04:34:33'), +(119,'WARREN','JACKMAN','2006-02-15 04:34:33'), +(120,'PENELOPE','MONROE','2006-02-15 04:34:33'), +(121,'LIZA','BERGMAN','2006-02-15 04:34:33'), +(122,'SALMA','NOLTE','2006-02-15 04:34:33'), +(123,'JULIANNE','DENCH','2006-02-15 04:34:33'), +(124,'SCARLETT','BENING','2006-02-15 04:34:33'), +(125,'ALBERT','NOLTE','2006-02-15 04:34:33'), +(126,'FRANCES','TOMEI','2006-02-15 04:34:33'), +(127,'KEVIN','GARLAND','2006-02-15 04:34:33'), +(128,'CATE','MCQUEEN','2006-02-15 04:34:33'), +(129,'DARYL','CRAWFORD','2006-02-15 04:34:33'), +(130,'GRETA','KEITEL','2006-02-15 04:34:33'), +(131,'JANE','JACKMAN','2006-02-15 04:34:33'), +(132,'ADAM','HOPPER','2006-02-15 04:34:33'), +(133,'RICHARD','PENN','2006-02-15 04:34:33'), +(134,'GENE','HOPKINS','2006-02-15 04:34:33'), +(135,'RITA','REYNOLDS','2006-02-15 04:34:33'), +(136,'ED','MANSFIELD','2006-02-15 04:34:33'), +(137,'MORGAN','WILLIAMS','2006-02-15 04:34:33'), +(138,'LUCILLE','DEE','2006-02-15 04:34:33'), +(139,'EWAN','GOODING','2006-02-15 04:34:33'), +(140,'WHOOPI','HURT','2006-02-15 04:34:33'), +(141,'CATE','HARRIS','2006-02-15 04:34:33'), +(142,'JADA','RYDER','2006-02-15 04:34:33'), +(143,'RIVER','DEAN','2006-02-15 04:34:33'), +(144,'ANGELA','WITHERSPOON','2006-02-15 04:34:33'), +(145,'KIM','ALLEN','2006-02-15 04:34:33'), +(146,'ALBERT','JOHANSSON','2006-02-15 04:34:33'), +(147,'FAY','WINSLET','2006-02-15 04:34:33'), +(148,'EMILY','DEE','2006-02-15 04:34:33'), +(149,'RUSSELL','TEMPLE','2006-02-15 04:34:33'), +(150,'JAYNE','NOLTE','2006-02-15 04:34:33'), +(151,'GEOFFREY','HESTON','2006-02-15 04:34:33'), +(152,'BEN','HARRIS','2006-02-15 04:34:33'), +(153,'MINNIE','KILMER','2006-02-15 04:34:33'), +(154,'MERYL','GIBSON','2006-02-15 04:34:33'), +(155,'IAN','TANDY','2006-02-15 04:34:33'), +(156,'FAY','WOOD','2006-02-15 04:34:33'), +(157,'GRETA','MALDEN','2006-02-15 04:34:33'), +(158,'VIVIEN','BASINGER','2006-02-15 04:34:33'), +(159,'LAURA','BRODY','2006-02-15 04:34:33'), +(160,'CHRIS','DEPP','2006-02-15 04:34:33'), +(161,'HARVEY','HOPE','2006-02-15 04:34:33'), +(162,'OPRAH','KILMER','2006-02-15 04:34:33'), +(163,'CHRISTOPHER','WEST','2006-02-15 04:34:33'), +(164,'HUMPHREY','WILLIS','2006-02-15 04:34:33'), +(165,'AL','GARLAND','2006-02-15 04:34:33'), +(166,'NICK','DEGENERES','2006-02-15 04:34:33'), +(167,'LAURENCE','BULLOCK','2006-02-15 04:34:33'), +(168,'WILL','WILSON','2006-02-15 04:34:33'), +(169,'KENNETH','HOFFMAN','2006-02-15 04:34:33'), +(170,'MENA','HOPPER','2006-02-15 04:34:33'), +(171,'OLYMPIA','PFEIFFER','2006-02-15 04:34:33'), +(172,'GROUCHO','WILLIAMS','2006-02-15 04:34:33'), +(173,'ALAN','DREYFUSS','2006-02-15 04:34:33'), +(174,'MICHAEL','BENING','2006-02-15 04:34:33'), +(175,'WILLIAM','HACKMAN','2006-02-15 04:34:33'), +(176,'JON','CHASE','2006-02-15 04:34:33'), +(177,'GENE','MCKELLEN','2006-02-15 04:34:33'), +(178,'LISA','MONROE','2006-02-15 04:34:33'), +(179,'ED','GUINESS','2006-02-15 04:34:33'), +(180,'JEFF','SILVERSTONE','2006-02-15 04:34:33'), +(181,'MATTHEW','CARREY','2006-02-15 04:34:33'), +(182,'DEBBIE','AKROYD','2006-02-15 04:34:33'), +(183,'RUSSELL','CLOSE','2006-02-15 04:34:33'), +(184,'HUMPHREY','GARLAND','2006-02-15 04:34:33'), +(185,'MICHAEL','BOLGER','2006-02-15 04:34:33'), +(186,'JULIA','ZELLWEGER','2006-02-15 04:34:33'), +(187,'RENEE','BALL','2006-02-15 04:34:33'), +(188,'ROCK','DUKAKIS','2006-02-15 04:34:33'), +(189,'CUBA','BIRCH','2006-02-15 04:34:33'), +(190,'AUDREY','BAILEY','2006-02-15 04:34:33'), +(191,'GREGORY','GOODING','2006-02-15 04:34:33'), +(192,'JOHN','SUVARI','2006-02-15 04:34:33'), +(193,'BURT','TEMPLE','2006-02-15 04:34:33'), +(194,'MERYL','ALLEN','2006-02-15 04:34:33'), +(195,'JAYNE','SILVERSTONE','2006-02-15 04:34:33'), +(196,'BELA','WALKEN','2006-02-15 04:34:33'), +(197,'REESE','WEST','2006-02-15 04:34:33'), +(198,'MARY','KEITEL','2006-02-15 04:34:33'), +(199,'JULIA','FAWCETT','2006-02-15 04:34:33'), +(200,'THORA','TEMPLE','2006-02-15 04:34:33'); +COMMIT; + +-- +-- Dumping data for table address +-- + +SET AUTOCOMMIT=0; +INSERT INTO `address` VALUES (1,'47 MySakila Drive',NULL,'Alberta',300,'','',/*!50705 0x0000000001010000003E0A325D63345CC0761FDB8D99D94840,*/'2014-09-25 22:30:27'), +(2,'28 MySQL Boulevard',NULL,'QLD',576,'','',/*!50705 0x0000000001010000008E10D4DF812463404EE08C5022A23BC0,*/'2014-09-25 22:30:09'), +(3,'23 Workhaven Lane',NULL,'Alberta',300,'','14033335568',/*!50705 0x000000000101000000CDC4196863345CC01DEE7E7099D94840,*/'2014-09-25 22:30:27'), +(4,'1411 Lillydale Drive',NULL,'QLD',576,'','6172235589',/*!50705 0x0000000001010000005B0DE4341F26634042D6AE6422A23BC0,*/'2014-09-25 22:30:09'), +(5,'1913 Hanoi Way','','Nagasaki',463,'35200','28303384290',/*!50705 0x00000000010100000028D1370E21376040ABB58BC45F944040,*/'2014-09-25 22:31:53'), +(6,'1121 Loja Avenue','','California',449,'17886','838635286649',/*!50705 0x0000000001010000003C94579D8B525DC0E860472DDE0D4140,*/'2014-09-25 22:34:01'), +(7,'692 Joliet Street','','Attika',38,'83579','448477190408',/*!50705 0x000000000101000000076F59CF5AB737404105D1A45EFD4240,*/'2014-09-25 22:31:07'), +(8,'1566 Inegl Manor','','Mandalay',349,'53561','705814003527',/*!50705 0x00000000010100000006240626DCD857403C45B357C4753540,*/'2014-09-25 22:32:18'), +(9,'53 Idfu Parkway','','Nantou',361,'42399','10655648674',/*!50705 0x0000000001010000001F813FFC7C2A5E40357A354069EA3740,*/'2014-09-25 22:33:16'), +(10,'1795 Santiago de Compostela Way','','Texas',295,'18743','860452626434',/*!50705 0x00000000010100000050502F9D7BE058C0D0CF7932A4813B40,*/'2014-09-25 22:33:55'), +(11,'900 Santiago de Compostela Parkway','','Central Serbia',280,'93896','716571220373',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:11'), +(12,'478 Joliet Way','','Hamilton',200,'77948','657282285970',/*!50705 0x000000000101000000DC84D61E11E9654072B7353344E442C0,*/'2014-09-25 22:32:22'), +(13,'613 Korolev Drive','','Masqat',329,'45844','380657522649',/*!50705 0x00000000010100000001023164D04B4D40CEAC003A279D3740,*/'2014-09-25 22:32:29'), +(14,'1531 Sal Drive','','Esfahan',162,'53628','648856936185',/*!50705 0x000000000101000000DE0951195AD64940635A400D84534040,*/'2014-09-25 22:31:36'), +(15,'1542 Tarlac Parkway','','Kanagawa',440,'1027','635297277345',/*!50705 0x000000000101000000B4CDE8A27C6B61406B7D361724C74140,*/'2014-09-25 22:31:53'), +(16,'808 Bhopal Manor','','Haryana',582,'10672','465887807014',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:30'), +(17,'270 Amroha Parkway','','Osmaniye',384,'29610','695479687538',/*!50705 0x0000000001010000001F436C55B71F4240A11408967E894240,*/'2014-09-25 22:33:27'), +(18,'770 Bydgoszcz Avenue','','California',120,'16266','517338314235',/*!50705 0x0000000001010000006D63A2F7FC515EC04C040539835A4340,*/'2014-09-25 22:33:47'), +(19,'419 Iligan Lane','','Madhya Pradesh',76,'72878','990911107354',/*!50705 0x000000000101000000B7B01303C9595340E6F10FB633413740,*/'2014-09-25 22:31:13'), +(20,'360 Toulouse Parkway','','England',495,'54308','949312333307',/*!50705 0x000000000101000000860FDBCCD7DBE63FFDCFAB4BD7C44940,*/'2014-09-25 22:33:40'), +(21,'270 Toulon Boulevard','','Kalmykia',156,'81766','407752414682',/*!50705 0x000000000101000000FD0BA947BF204640316D495865274740,*/'2014-09-25 22:32:48'), +(22,'320 Brest Avenue','','Kaduna',252,'43331','747791594069',/*!50705 0x0000000001010000006D3425FECDC01D40623FD532630B2540,*/'2014-09-25 22:32:25'), +(23,'1417 Lancaster Avenue','','Northern Cape',267,'72192','272572357893',/*!50705 0x000000000101000000FEE8E5C127C338404DED56E075BB3CC0,*/'2014-09-25 22:33:03'), +(24,'1688 Okara Way','','Nothwest Border Prov',327,'21954','144453869132',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:30'), +(25,'262 A Corua (La Corua) Parkway','','Dhaka',525,'34418','892775750063',/*!50705 0x000000000101000000F13790E4A87A5640E7F6370DF63F3840,*/'2014-09-25 22:30:12'), +(26,'28 Charlotte Amalie Street','','Rabat-Sal-Zammour-Z',443,'37551','161968374323',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:16'), +(27,'1780 Hino Boulevard','','Liepaja',303,'7716','902731229323',/*!50705 0x000000000101000000360F1604450435403CA3AD4A22424C40,*/'2014-09-25 22:31:58'), +(28,'96 Tafuna Way','','Crdoba',128,'99865','934730187245',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:05'), +(29,'934 San Felipe de Puerto Plata Street','','Sind',472,'99780','196495945706',/*!50705 0x0000000001010000008E6B8D52D3285140D58E876302F53B40,*/'2014-09-25 22:32:31'), +(30,'18 Duisburg Boulevard','','',121,'58327','998009777982',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:08'), +(31,'217 Botshabelo Place','','Southern Mindanao',138,'49521','665356572025',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:36'), +(32,'1425 Shikarpur Manor','','Bihar',346,'65599','678220867005',/*!50705 0x0000000001010000007F9F16284E9E55408201840F25603940,*/'2014-09-25 22:31:20'), +(33,'786 Aurora Avenue','','Yamaguchi',474,'65750','18461860151',/*!50705 0x000000000101000000E712584AA05E6040D15735ADB9FA4040,*/'2014-09-25 22:31:53'), +(34,'1668 Anpolis Street','','Taipei',316,'50199','525255540978',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), +(35,'33 Gorontalo Way','','West Bengali',257,'30348','745994947458',/*!50705 0x0000000001010000001A828879FB17564061585936CEAB3640,*/'2014-09-25 22:31:18'), +(36,'176 Mandaluyong Place','','Uttar Pradesh',239,'65213','627705991774',/*!50705 0x00000000010100000073309B0043A553409E3AA0B657743940,*/'2014-09-25 22:31:17'), +(37,'127 Purnea (Purnia) Manor','','Piemonte',17,'79388','911872220378',/*!50705 0x0000000001010000002A2B97D75B382140F2892B1D62744640,*/'2014-09-25 22:31:42'), +(38,'61 Tama Street','','Okayama',284,'94065','708403338270',/*!50705 0x0000000001010000001F7013A488B86040670696C8AA4A4140,*/'2014-09-25 22:31:49'), +(39,'391 Callao Drive','','Midi-Pyrnes',544,'34021','440512153169',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:01'), +(40,'334 Munger (Monghyr) Lane','','Markazi',31,'38145','481183273622',/*!50705 0x000000000101000000737275B636D848404B958334BE0B4140,*/'2014-09-25 22:31:36'), +(41,'1440 Fukuyama Loop','','Henan',362,'47929','912257250465',/*!50705 0x0000000001010000005E3CCD1319225C405886DD1C537F4040,*/'2014-09-25 22:30:40'), +(42,'269 Cam Ranh Parkway','','Chisinau',115,'34689','489783829737',/*!50705 0x000000000101000000AD97F0958ADB3C40CCD47F31B6804740,*/'2014-09-25 22:32:15'), +(43,'306 Antofagasta Place','','Esprito Santo',569,'3989','378318851631',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:23'), +(44,'671 Graz Street','','Oriental',353,'94399','680768868518',/*!50705 0x00000000010100000083F7FAFFDD7707C0F7B7BA5285954140,*/'2014-09-25 22:32:16'), +(45,'42 Brindisi Place','','Yerevan',586,'16744','42384721397',/*!50705 0x000000000101000000281BC528BE4146403BD400EF2E174440,*/'2014-09-25 22:30:08'), +(46,'1632 Bislig Avenue','','Nonthaburi',394,'61117','471675840679',/*!50705 0x000000000101000000935C59FDEC1F5940D5D0611976D32B40,*/'2014-09-25 22:33:20'), +(47,'1447 Imus Way','','Tahiti',167,'48942','539758313890',/*!50705 0x00000000010100000090CE0A56E6B562C059BB9289008E31C0,*/'2014-09-25 22:31:02'), +(48,'1998 Halifax Drive','','Lipetsk',308,'76022','177727722820',/*!50705 0x00000000010100000087985CD60EC943409F1738EA324D4A40,*/'2014-09-25 22:32:54'), +(49,'1718 Valencia Street','','Antofagasta',27,'37359','675292816413',/*!50705 0x0000000001010000007E82D5A24F9951C0C46B4DA901A737C0,*/'2014-09-25 22:30:29'), +(50,'46 Pjatigorsk Lane','','Moscow (City)',343,'23616','262076994845',/*!50705 0x0000000001010000009C51F355F2C4424002E3CFA6D9DF4B40,*/'2014-09-25 22:32:55'), +(51,'686 Garland Manor','','Cear',247,'52535','69493378813',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:19'), +(52,'909 Garland Manor','','Tatarstan',367,'69367','705800322606',/*!50705 0x000000000101000000376DC66988E949402CA85E6D7BD14B40,*/'2014-09-25 22:32:55'), +(53,'725 Isesaki Place','','Mekka',237,'74428','876295323994',/*!50705 0x000000000101000000213361455799434061EB0896D98A3540,*/'2014-09-25 22:33:00'), +(54,'115 Hidalgo Parkway','','Khartum',379,'80168','307703950263',/*!50705 0x00000000010100000004503173263D40404D0DD9E5004A2F40,*/'2014-09-25 22:33:11'), +(55,'1135 Izumisano Parkway','','California',171,'48150','171822533480',/*!50705 0x0000000001010000009763C3E4D75B5DC0799A2732CE0B4140,*/'2014-09-25 22:33:50'), +(56,'939 Probolinggo Loop','','Galicia',1,'4166','680428310138',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), +(57,'17 Kabul Boulevard','','Chiba',355,'38594','697760867968',/*!50705 0x000000000101000000EB257CA5E27C61406F70D86C9BED4140,*/'2014-09-25 22:31:51'), +(58,'1964 Allappuzha (Alleppey) Street','','Yamaguchi',227,'48980','920811325222',/*!50705 0x000000000101000000C2572A5E1B876040D19A7A38DC144140,*/'2014-09-25 22:31:47'), +(59,'1697 Kowloon and New Kowloon Loop','','Moskova',49,'57807','499352017190',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), +(60,'1668 Saint Louis Place','','Tahiti',397,'39072','347487831378',/*!50705 0x0000000001010000006FF3C64921B262C0F8F47DDD8E8931C0,*/'2014-09-25 22:31:02'), +(61,'943 Tokat Street','','Vaduz',560,'45428','889318963672',/*!50705 0x0000000001010000007F784C93080B23400341800C1D924740,*/'2014-09-25 22:31:58'), +(62,'1114 Liepaja Street','','Sarawak',282,'69226','212869228936',/*!50705 0x000000000101000000047FAE6C55955B408285DDC199E9F83F,*/'2014-09-25 22:32:00'), +(63,'1213 Ranchi Parkway','','Karnataka',350,'94352','800024380485',/*!50705 0x000000000101000000000080279AD7C641AA21BB1CC0202B40,*/'2014-09-25 22:31:21'), +(64,'81 Hodeida Way','','Rajasthan',231,'55561','250767749542',/*!50705 0x0000000001010000000A09BDA36BF25240F8B138526CEB3A40,*/'2014-09-25 22:31:17'), +(65,'915 Ponce Place','','Basel-Stadt',56,'83980','1395251317',/*!50705 0x0000000001010000000D6146C2084B1E40E58B07A579C74740,*/'2014-09-25 22:33:12'), +(66,'1717 Guadalajara Lane','','Missouri',441,'85505','914090181665',/*!50705 0x000000000101000000A926D247AA8C56C0A456F3774A504340,*/'2014-09-25 22:33:59'), +(67,'1214 Hanoi Way','','Nebraska',306,'67055','491001136577',/*!50705 0x000000000101000000D6671888AF2A58C0C0E2152DE5684440,*/'2014-09-25 22:33:56'), +(68,'1966 Amroha Avenue','','Sichuan',139,'70385','333489324603',/*!50705 0x0000000001010000000A7778190FE05A402F6013E346373F40,*/'2014-09-25 22:30:32'), +(69,'698 Otsu Street','','Cayenne',105,'71110','409983924481',/*!50705 0x000000000101000000D879C0E1AA2A4AC0D57EC6E0BCBB1340,*/'2014-09-25 22:31:02'), +(70,'1150 Kimchon Manor','','Skne ln',321,'96109','663449333709',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:11'), +(71,'1586 Guaruj Place','','Hunan',579,'5135','947233365992',/*!50705 0x000000000101000000AD3A06BFE83F5C4083047B0217DA3B40,*/'2014-09-25 22:30:46'), +(72,'57 Arlington Manor','','Madhya Pradesh',475,'48960','990214419142',/*!50705 0x0000000001010000008E6D63FDB069534027D9EA724A6E3940,*/'2014-09-25 22:31:27'), +(73,'1031 Daugavpils Parkway','','Bchar',63,'59025','107137400143',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:29:59'), +(74,'1124 Buenaventura Drive','','Mekka',13,'6856','407733804223',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:59'), +(75,'492 Cam Ranh Street','','Eastern Visayas',61,'50805','565018274456',/*!50705 0x0000000001010000007500C45D3D335F40B90265AE675B2540,*/'2014-09-25 22:32:34'), +(76,'89 Allappuzha (Alleppey) Manor','','National Capital Reg',517,'75444','255800440636',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:39'), +(77,'1947 Poos de Caldas Boulevard','','Chiayi',114,'60951','427454485876',/*!50705 0x0000000001010000002F06C54524195E40B4475E8C37763740,*/'2014-09-25 22:33:14'), +(78,'1206 Dos Quebradas Place','','So Paulo',431,'20207','241832790687',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), +(79,'1551 Rampur Lane','','Changhwa',108,'72394','251164340471',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:14'), +(80,'602 Paarl Street','','Pavlodar',402,'98889','896314772871',/*!50705 0x000000000101000000359078C34740534032D010E912234A40,*/'2014-09-25 22:31:55'), +(81,'1692 Ede Loop','','So Paulo',30,'9223','918711376618',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:16'), +(82,'936 Salzburg Lane','','Uttar Pradesh',425,'96709','875756771675',/*!50705 0x0000000001010000000C0EE5FAAD4F5440CBF8F71917383A40,*/'2014-09-25 22:31:24'), +(83,'586 Tete Way','','Kanagawa',256,'1079','18581624103',/*!50705 0x000000000101000000783B0CF79B716140E96D22E989A74140,*/'2014-09-25 22:31:48'), +(84,'1888 Kabul Drive','','Oyo & Osun',217,'20936','701457319790',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:24'), +(85,'320 Baiyin Parkway','','Mahajanga',319,'37307','223664661973',/*!50705 0x000000000101000000EAFD90C888284740CDC75AE8EF6E2FC0,*/'2014-09-25 22:31:59'), +(86,'927 Baha Blanca Parkway','','Krim',479,'9495','821972242086',/*!50705 0x000000000101000000417DCB9C2E0E4140BC29406F857A4640,*/'2014-09-25 22:33:33'), +(87,'929 Tallahassee Loop','','Gauteng',497,'74671','800716535041',/*!50705 0x000000000101000000647F8FB05E6B3C407F60D8ABD9403AC0,*/'2014-09-25 22:33:06'), +(88,'125 Citt del Vaticano Boulevard','','Puebla',40,'67912','48417642933',/*!50705 0x000000000101000000536232B0E99B58C03D0D18247DE83240,*/'2014-09-25 22:32:02'), +(89,'1557 Ktahya Boulevard','','England',88,'88002','720998247660',/*!50705 0x0000000001010000001B43A5B67908FCBF439D03159FE54A40,*/'2014-09-25 22:33:36'), +(90,'870 Ashqelon Loop','','Songkhla',489,'84931','135117278909',/*!50705 0x000000000101000000E82510C017265940115A6A1899CB1C40,*/'2014-09-25 22:33:20'), +(91,'1740 Portoviejo Avenue','','Sucre',480,'29932','198123170793',/*!50705 0x000000000101000000C4AD275F75D952C07A51BB5F059C2240,*/'2014-09-25 22:30:53'), +(92,'1942 Ciparay Parkway','','Cheju',113,'82624','978987363654',/*!50705 0x00000000010100000048F13B97F3A25F40358EA2186AB34040,*/'2014-09-25 22:33:06'), +(93,'1926 El Alto Avenue','','Buenos Aires',289,'75543','846225459260',/*!50705 0x000000000101000000AD05AC0B2EFA4CC0C5D0A057F27541C0,*/'2014-09-25 22:30:05'), +(94,'1952 Chatsworth Drive','','Guangdong',332,'25958','991562402283',/*!50705 0x000000000101000000A5F386A08F085D406DF65157885A3840,*/'2014-09-25 22:30:40'), +(95,'1370 Le Mans Avenue','','Brunei and Muara',53,'52163','345679835036',/*!50705 0x00000000010100000013E85D06ADBC5C402A0E5652DDC21340,*/'2014-09-25 22:30:23'), +(96,'984 Effon-Alaiye Avenue','','Gois',183,'17119','132986892228',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:17'), +(97,'832 Nakhon Sawan Manor','','Inner Mongolia',592,'49021','275595571388',/*!50705 0x000000000101000000535C55F6DDAD5E400000001D69FABC41,*/'2014-09-25 22:30:50'), +(98,'152 Kitwe Parkway','','Caraga',82,'53182','835433605312',/*!50705 0x000000000101000000DF652BD43F945F4006CAB788396E2040,*/'2014-09-25 22:32:35'), +(99,'1697 Tanauan Lane','','Punjab',399,'22870','4764773857',/*!50705 0x000000000101000000CA97063447E95240B933B852742A4040,*/'2014-09-25 22:31:22'), +(100,'1308 Arecibo Way','','Georgia',41,'30695','6171054059',/*!50705 0x000000000101000000FC00FFEF637E54C0BD9EF9E648BC4040,*/'2014-09-25 22:33:43'), +(101,'1599 Plock Drive','','Tete',534,'71986','817248913162',/*!50705 0x000000000101000000DC77561C18CB4040B443577D092830C0,*/'2014-09-25 22:32:18'), +(102,'669 Firozabad Loop','','Abu Dhabi',12,'92265','412903167998',/*!50705 0x0000000001010000009C76E73F5AE14B404AD05FE811313840,*/'2014-09-25 22:33:35'), +(103,'588 Vila Velha Manor','','Kyongsangbuk',268,'51540','333339908719',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), +(104,'1913 Kamakura Place','','Lipetsk',238,'97287','942570536750',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:49'), +(105,'733 Mandaluyong Place','','Asir',2,'77459','196568435814',/*!50705 0x0000000001010000007823980FAD404540798FD89365373240,*/'2014-09-25 22:32:59'), +(106,'659 Vaduz Drive','','Ha Darom',34,'49708','709935135487',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:40'), +(107,'1177 Jelets Way','','Kwara & Kogi',220,'3305','484292626944',/*!50705 0x0000000001010000001767672CF53712407E3E25427E192140,*/'2014-09-25 22:32:24'), +(108,'1386 Yangor Avenue','','Provence-Alpes-Cte',543,'80720','449216226468',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:01'), +(109,'454 Nakhon Sawan Boulevard','','Funafuti',173,'76383','963887147572',/*!50705 0x0000000001010000005822ABB636666640FF74A84B6B0C21C0,*/'2014-09-25 22:33:31'), +(110,'1867 San Juan Bautista Tuxtepec Avenue','','Ivanovo',225,'78311','547003310357',/*!50705 0x000000000101000000BC6DF0CF567C4440E2B034F0A37F4C40,*/'2014-09-25 22:32:48'), +(111,'1532 Dzerzinsk Way','','Buenos Aires',334,'9599','330838016880',/*!50705 0x000000000101000000BF93BB74385D4DC0E207420D3A5541C0,*/'2014-09-25 22:30:06'), +(112,'1002 Ahmadnagar Manor','','Mxico',213,'93026','371490777743',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:07'), +(113,'682 Junan Way','','North West',273,'30418','622255216127',/*!50705 0x000000000101000000714683CAAEAA3A406AEDC73725DA3AC0,*/'2014-09-25 22:33:04'), +(114,'804 Elista Drive','','Hubei',159,'61069','379804592943',/*!50705 0x0000000001010000009E013FF4EE5E5B40E7E099D0245F3E40,*/'2014-09-25 22:30:33'), +(115,'1378 Alvorada Avenue','','Distrito Federal',102,'75834','272234298332',/*!50705 0x0000000001010000000C3444BA44B850C047B1378CDDF92440,*/'2014-09-25 22:34:03'), +(116,'793 Cam Ranh Avenue','','California',292,'87057','824370924746',/*!50705 0x00000000010100000003AF3B82C0885DC0610212A859594140,*/'2014-09-25 22:33:55'), +(117,'1079 Tel Aviv-Jaffa Boulevard','','Sucre',132,'10885','358178933857',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:04'), +(118,'442 Rae Bareli Place','','Nordrhein-Westfalen',148,'24321','886636413768',/*!50705 0x000000000101000000C19EC085860F1B40E37ED12F5BB74940,*/'2014-09-25 22:31:04'), +(119,'1107 Nakhon Sawan Avenue','','Mxico',365,'75149','867546627903',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:11'), +(120,'544 Malm Parkway','','Central Java',403,'63502','386759646229',/*!50705 0x0000000001010000003AEF5A9D77575B4026F103A106C51BC0,*/'2014-09-25 22:31:34'), +(121,'1967 Sincelejo Place','','Gujarat',176,'73644','577812616052',/*!50705 0x00000000010100000059912CBBBB2B52408DBC074378373740,*/'2014-09-25 22:31:16'), +(122,'333 Goinia Way','','Texas',185,'78625','909029256431',/*!50705 0x0000000001010000002AE67BA1DB3F58C0E46B2AE67B5F4040,*/'2014-09-25 22:33:51'), +(123,'1987 Coacalco de Berriozbal Loop','','al-Qalyubiya',476,'96065','787654415858',/*!50705 0x000000000101000000595AFC5C23403F40AFBA698E07203E40,*/'2014-09-25 22:30:58'), +(124,'241 Mosul Lane','','Risaralda',147,'76157','765345144779',/*!50705 0x000000000101000000983A23A5B4EA52C06155BDFC4E5B1340,*/'2014-09-25 22:30:52'), +(125,'211 Chiayi Drive','','Uttar Pradesh',164,'58186','665993880048',/*!50705 0x000000000101000000A44BA4D961C1534007F247AC20C73A40,*/'2014-09-25 22:31:15'), +(126,'1175 Tanauan Way','','Lima',305,'64615','937222955822',/*!50705 0x000000000101000000848A60D2CE4153C0E5417A8A1C1628C0,*/'2014-09-25 22:32:33'), +(127,'117 Boa Vista Way','','Uttar Pradesh',566,'6804','677976133614',/*!50705 0x00000000010100000085364AA8AAC0544086BAFE1312513940,*/'2014-09-25 22:31:29'), +(128,'848 Tafuna Manor','','Ktahya',281,'45142','614935229095',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:27'), +(129,'569 Baicheng Lane','','Gauteng',85,'60304','490211944645',/*!50705 0x000000000101000000D71E51FC73423C4048AE51C543363AC0,*/'2014-09-25 22:33:02'), +(130,'1666 Qomsheh Drive','','So Paulo',410,'66255','582835362905',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), +(131,'801 Hagonoy Drive','','Smolensk',484,'8439','237426099212',/*!50705 0x0000000001010000001EB814A122054040BB8509FE12644B40,*/'2014-09-25 22:32:57'), +(132,'1050 Garden Grove Avenue','','Slaskie',236,'4999','973047364353',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:42'), +(133,'1854 Tieli Street','','Shandong',302,'15819','509492324775',/*!50705 0x0000000001010000007A820E0492FE5C408F0475255D3A4240,*/'2014-09-25 22:30:39'), +(134,'758 Junan Lane','','Gois',190,'82639','935448624185',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), +(135,'1752 So Leopoldo Parkway','','Taka-Karpatia',345,'14014','252265130067',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:32'), +(136,'898 Belm Manor','','Free State',87,'49757','707169393853',/*!50705 0x000000000101000000ED4CFCAC8DB43A409EAC623B29453DC0,*/'2014-09-25 22:33:02'), +(137,'261 Saint Louis Way','','Coahuila de Zaragoza',541,'83401','321944036800',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:13'), +(138,'765 Southampton Drive','','al-Qalyubiya',421,'4285','23712411567',/*!50705 0x0000000001010000001BEB877DA7343F409FBC7E77E12D3E40,*/'2014-09-25 22:30:57'), +(139,'943 Johannesburg Avenue','','Maharashtra',417,'5892','90921003005',/*!50705 0x000000000101000000F27A3029BE7652405E2ADB2C03853240,*/'2014-09-25 22:31:24'), +(140,'788 Atinsk Street','','Karnataka',211,'81691','146497509724',/*!50705 0x0000000001010000000000801B1998C64157A945E977E62E40,*/'2014-09-25 22:31:17'), +(141,'1749 Daxian Place','','Gelderland',29,'11044','963369996279',/*!50705 0x000000000101000000E4CE96BDB6E0174000B0952B171C4A40,*/'2014-09-25 22:32:20'), +(142,'1587 Sullana Lane','','Inner Mongolia',207,'85769','468060467018',/*!50705 0x000000000101000000870CF505BEE95B407422669BC0674440,*/'2014-09-25 22:30:35'), +(143,'1029 Dzerzinsk Manor','','Ynlin',542,'57519','33173584456',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:16'), +(144,'1666 Beni-Mellal Place','','Tennessee',123,'13377','9099941466',/*!50705 0x00000000010100000005D1A45E01D755C084CCDFCECF434240,*/'2014-09-25 22:33:48'), +(145,'928 Jaffna Loop','','Hiroshima',172,'93762','581852137991',/*!50705 0x0000000001010000002F2988CBBBAB6040E2FF33EFDD3D4140,*/'2014-09-25 22:31:45'), +(146,'483 Ljubertsy Parkway','','Scotland',149,'60562','581174211853',/*!50705 0x000000000101000000C53E5CCD95CC07C0FAFD518A0C3C4C40,*/'2014-09-25 22:33:36'), +(147,'374 Bat Yam Boulevard','','Kilis',266,'97700','923261616249',/*!50705 0x000000000101000000184FF344C68E4240FD55DBA8A95B4240,*/'2014-09-25 22:33:26'), +(148,'1027 Songkhla Manor','','Minsk',340,'30861','563660187896',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:13'), +(149,'999 Sanaa Loop','','Gauteng',491,'3439','918032330119',/*!50705 0x0000000001010000000E0D309864193C40F234AA1D0F7939C0,*/'2014-09-25 22:33:05'), +(150,'879 Newcastle Way','','Michigan',499,'90732','206841104594',/*!50705 0x000000000101000000916A8E62EFC154C08244C99A474A4540,*/'2014-09-25 22:34:01'), +(151,'1337 Lincoln Parkway','','Saitama',555,'99457','597815221267',/*!50705 0x0000000001010000005E0E6036A6746140456227614BEE4140,*/'2014-09-25 22:31:55'), +(152,'1952 Pune Lane','','Saint-Denis',442,'92150','354615066969',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:46'), +(153,'782 Mosul Street','','Massachusetts',94,'25545','885899703621',/*!50705 0x000000000101000000E9C4D44C2DC151C0D1686105AE0A4540,*/'2014-09-25 22:33:46'), +(154,'781 Shimonoseki Drive','','Michoacn de Ocampo',202,'95444','632316273199',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:06'), +(155,'1560 Jelets Boulevard','','Shandong',291,'77777','189446090264',/*!50705 0x00000000010100000018D57D5B0B6A5D40ADDA3521AD184240,*/'2014-09-25 22:30:38'), +(156,'1963 Moscow Place','','Assam',354,'64863','761379480249',/*!50705 0x000000000101000000203BB9F04D2C57405D595826B2593A40,*/'2014-09-25 22:31:21'), +(157,'456 Escobar Way','','Jakarta Raya',232,'36061','719202533520',/*!50705 0x000000000101000000DDC2A9C516B65A4095CCFB49C6DB18C0,*/'2014-09-25 22:31:33'), +(158,'798 Cianjur Avenue','','Shanxi',590,'76990','499408708580',/*!50705 0x00000000010100000013D6C6D889BF5B409B4BBBE2F3824140,*/'2014-09-25 22:30:49'), +(159,'185 Novi Sad Place','','Bern',72,'41778','904253967161',/*!50705 0x00000000010100000000D0BC772FCA1D40377D2C335B794740,*/'2014-09-25 22:33:13'), +(160,'1367 Yantai Manor','','Ondo & Ekiti',381,'21294','889538496300',/*!50705 0x000000000101000000C25E72ED555514408A7A1C61ACAA1C40,*/'2014-09-25 22:32:26'), +(161,'1386 Nakhon Sawan Boulevard','','Pyongyang-si',420,'53502','368899174225',/*!50705 0x000000000101000000F4BA8FED46705F40A55F6C6B55844340,*/'2014-09-25 22:32:28'), +(162,'369 Papeete Way','','North Carolina',187,'66639','170117068815',/*!50705 0x000000000101000000C49D66DCAFF253C07A2D324B4C094240,*/'2014-09-25 22:33:52'), +(163,'1440 Compton Place','','North Austria',307,'81037','931059836497',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:10'), +(164,'1623 Baha Blanca Manor','','Moskova',310,'81511','149981248346',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:54'), +(165,'97 Shimoga Avenue','','Tel Aviv',533,'44660','177167004331',/*!50705 0x0000000001010000009A56AFC7E96341403192E2885A0A4040,*/'2014-09-25 22:31:41'), +(166,'1740 Le Mans Loop','','Pays de la Loire',297,'22853','168476538960',/*!50705 0x000000000101000000452A8C2D04B9D23F0000006AB82DBD41,*/'2014-09-25 22:31:01'), +(167,'1287 Xiangfan Boulevard','','Gifu',253,'57844','819416131190',/*!50705 0x0000000001010000006AE514D3BB1B61408141D2A755B54140,*/'2014-09-25 22:31:48'), +(168,'842 Salzburg Lane','','Adana',529,'3313','697151428760',/*!50705 0x0000000001010000007207A0072DD5414093228D6555A64240,*/'2014-09-25 22:33:29'), +(169,'154 Tallahassee Loop','','Xinxiang',199,'62250','935508855935',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:34'), +(170,'710 San Felipe del Progreso Avenue','','Lilongwe',304,'76901','843801144113',/*!50705 0x00000000010100000089C855D1C4E44040501D064E11EF2BC0,*/'2014-09-25 22:31:59'), +(171,'1540 Wroclaw Drive','','Maharashtra',107,'62686','182363341674',/*!50705 0x0000000001010000004E10D0D8F2D253407CFB294476F23340,*/'2014-09-25 22:31:14'), +(172,'475 Atinsk Way','','Gansu',240,'59571','201705577290',/*!50705 0x0000000001010000007872970E678C59405544978114404340,*/'2014-09-25 22:30:36'), +(173,'1294 Firozabad Drive','','Jiangxi',407,'70618','161801569569',/*!50705 0x000000000101000000EED7F8A7AF775C402332079C00943B40,*/'2014-09-25 22:30:40'), +(174,'1877 Ezhou Lane','','Rajasthan',550,'63337','264541743403',/*!50705 0x00000000010100000029722DFF466C52401969F34938923840,*/'2014-09-25 22:31:28'), +(175,'316 Uruapan Street','','Perak',223,'58194','275788967899',/*!50705 0x0000000001010000005A3629BB4F4559400AC5B18927561240,*/'2014-09-25 22:31:59'), +(176,'29 Pyongyang Loop','','Batman',58,'47753','734780743462',/*!50705 0x0000000001010000001C430070EC9044403C8963B895F14240,*/'2014-09-25 22:33:23'), +(177,'1010 Klerksdorp Way','','Steiermark',186,'6802','493008546874',/*!50705 0x000000000101000000CFEE35A90DE72E409C0425BB88884740,*/'2014-09-25 22:30:10'), +(178,'1848 Salala Boulevard','','Miranda',373,'25220','48265851133',/*!50705 0x0000000001010000006D08E984ABB150C02F90FBB1A43B2440,*/'2014-09-25 22:34:04'), +(179,'431 Xiangtan Avenue','','Kerala',18,'4854','230250973122',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:10'), +(180,'757 Rustenburg Avenue','','Skikda',483,'89668','506134035434',/*!50705 0x000000000101000000BFD76BD509A31B4063867C8626704240,*/'2014-09-25 22:30:01'), +(181,'146 Johannesburg Way','','Tamaulipas',330,'54132','953689007081',/*!50705 0x0000000001010000003C45B357446058C0EAD621ED35E13940,*/'2014-09-25 22:32:09'), +(182,'1891 Rizhao Boulevard','','So Paulo',456,'47288','391065549876',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), +(183,'1089 Iwatsuki Avenue','','Kirov',270,'35109','866092335135',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:50'), +(184,'1410 Benin City Parkway','','Risaralda',405,'29747','104150372603',/*!50705 0x0000000001010000007C4F9B278DEC52C0795BE9B5D9401340,*/'2014-09-25 22:30:52'), +(185,'682 Garden Grove Place','','Tennessee',333,'67497','72136330362',/*!50705 0x0000000001010000004204C188228356C06B4F24F323934140,*/'2014-09-25 22:33:57'), +(186,'533 al-Ayn Boulevard','','California',126,'8862','662227486184',/*!50705 0x000000000101000000BF2264C5158E5DC08533AE6EABF24040,*/'2014-09-25 22:33:48'), +(187,'1839 Szkesfehrvr Parkway','','Gois',317,'55709','947468818183',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), +(188,'741 Ambattur Manor','','Noord-Brabant',438,'43310','302590383819',/*!50705 0x000000000101000000699E6D7F78371540EF0D74A37ED94940,*/'2014-09-25 22:32:21'), +(189,'927 Barcelona Street','','Chaharmahal va Bakht',467,'65121','951486492670',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:38'), +(190,'435 0 Way','','West Bengali',195,'74750','760171523969',/*!50705 0x000000000101000000D9846A3906075640037168DB7A0F3640,*/'2014-09-25 22:31:16'), +(191,'140 Chiayi Parkway','','Sumy',506,'38982','855863906434',/*!50705 0x0000000001010000002C43C1317066414051BB5F05F8754940,*/'2014-09-25 22:33:34'), +(192,'1166 Changhwa Street','','Caraga',62,'58852','650752094490',/*!50705 0x0000000001010000009DB756201F715F40F53E9F1221832140,*/'2014-09-25 22:32:34'), +(193,'891 Novi Sad Manor','','Ontario',383,'5379','247646995453',/*!50705 0x0000000001010000005E49F25C5FB653C0DE6AE74537F34540,*/'2014-09-25 22:30:28'), +(194,'605 Rio Claro Parkway','','Tabora',513,'49348','352469351088',/*!50705 0x0000000001010000004E8B0B51CF694040DF67017F9D1014C0,*/'2014-09-25 22:33:18'), +(195,'1077 San Felipe de Puerto Plata Place','','Rostov-na-Donu',369,'65387','812824036424',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:56'), +(196,'9 San Miguel de Tucumn Manor','','Uttar Pradesh',169,'90845','956188728558',/*!50705 0x00000000010100000067DBC424B7995340A461E75C40263B40,*/'2014-09-25 22:31:15'), +(197,'447 Surakarta Loop','','Nyanza',271,'10428','940830176580',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:56'), +(198,'345 Oshawa Boulevard','','Tokyo-to',204,'32114','104491201771',/*!50705 0x000000000101000000FB5E9E29CF6C61404BFCF61A27D64140,*/'2014-09-25 22:31:45'), +(199,'1792 Valle de la Pascua Place','','Nordrhein-Westfalen',477,'15540','419419591240',/*!50705 0x000000000101000000E9BD8CBD720C204056725F18FA6F4940,*/'2014-09-25 22:31:06'), +(200,'1074 Binzhou Manor','','Baden-Wrttemberg',325,'36490','331132568928',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:05'), +(201,'817 Bradford Loop','','Jiangsu',109,'89459','264286442804',/*!50705 0x000000000101000000C3E1BB830EFD5D4006B243A10AC63F40,*/'2014-09-25 22:30:31'), +(202,'955 Bamenda Way','','Ondo & Ekiti',218,'1545','768481779568',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:24'), +(203,'1149 A Corua (La Corua) Boulevard','','Haiphong',194,'95824','470884141195',/*!50705 0x0000000001010000007573F1B7BDAB5A4050A0997164DD3440,*/'2014-09-25 22:34:06'), +(204,'387 Mwene-Ditu Drive','','Ahal',35,'8073','764477681869',/*!50705 0x000000000101000000B0253F3D11314D40A538A2D68FFA4240,*/'2014-09-25 22:33:30'), +(205,'68 Molodetno Manor','','Nordrhein-Westfalen',575,'4662','146640639760',/*!50705 0x000000000101000000EEF3739E0C691D40FE486CD2C8B84940,*/'2014-09-25 22:31:06'), +(206,'642 Nador Drive','','Maharashtra',77,'3924','369050085652',/*!50705 0x000000000101000000559D7A4908F25240E010AAD4EC0B3540,*/'2014-09-25 22:31:13'), +(207,'1688 Nador Lane','','Sulawesi Utara',184,'61613','652218196731',/*!50705 0x000000000101000000E358727044945E4093F139C148B9E83F,*/'2014-09-25 22:31:32'), +(208,'1215 Pyongyang Parkway','','Usak',557,'25238','646237101779',/*!50705 0x000000000101000000019E59B7E6673D40735E08DE35564340,*/'2014-09-25 22:33:30'), +(209,'1679 Antofagasta Street','','Alto Paran',122,'86599','905903574913',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:32'), +(210,'1304 s-Hertogenbosch Way','','Santa Catarina',83,'10925','90336226227',/*!50705 0x000000000101000000BDEAB765768848C05755D40561EB3AC0,*/'2014-09-25 22:30:16'), +(211,'850 Salala Loop','','Kitaa',371,'10800','403404780639',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:07'), +(212,'624 Oshawa Boulevard','','West Bengali',51,'89959','49677664184',/*!50705 0x0000000001010000000FBCB5A7BF315640EA7CD34F93383940,*/'2014-09-25 22:31:11'), +(213,'43 Dadu Avenue','','Rajasthan',74,'4855','95666951770',/*!50705 0x000000000101000000BCF957A0A7A852404046E5CBB0583940,*/'2014-09-25 22:31:12'), +(214,'751 Lima Loop','','Aden',7,'99405','756460337785',/*!50705 0x0000000001010000005ECF21BAB1844640A9007388138F2940,*/'2014-09-25 22:34:08'), +(215,'1333 Haldia Street','','Jilin',174,'82161','408304391718',/*!50705 0x00000000010100000007A51E5844345F404CE71E6D77974640,*/'2014-09-25 22:30:33'), +(216,'660 Jedda Boulevard','','Washington',65,'25053','168758068397',/*!50705 0x00000000010100000009EEF60FD88C5EC03C331C2A21CE4740,*/'2014-09-25 22:33:45'), +(217,'1001 Miyakonojo Lane','','Taizz',518,'67924','584316724815',/*!50705 0x0000000001010000006642DD51AD024640782C1103B8282B40,*/'2014-09-25 22:34:11'), +(218,'226 Brest Manor','','California',508,'2299','785881412500',/*!50705 0x000000000101000000CF9F36AA53825EC0B54D96FF35AF4240,*/'2014-09-25 22:34:02'), +(219,'1229 Valencia Parkway','','Haskovo',498,'99124','352679173732',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:24'), +(220,'1201 Qomsheh Manor','','Gois',28,'21464','873492228462',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:15'), +(221,'866 Shivapuri Manor','','Uttar Pradesh',448,'22474','778502731092',/*!50705 0x000000000101000000940BDF0C48A4534072648ADE4E953C40,*/'2014-09-25 22:31:26'), +(222,'1168 Najafabad Parkway','','Kabol',251,'40301','886649065861',/*!50705 0x0000000001010000009173AC9C074B51408EBDCDD199434140,*/'2014-09-25 22:29:59'), +(223,'1244 Allappuzha (Alleppey) Place','','Buenos Aires',567,'20657','991802825778',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:08'), +(224,'1842 Luzinia Boulevard','','Zanzibar West',593,'94420','706878974831',/*!50705 0x00000000010100000045E169E855994340B62C5F97E1A718C0,*/'2014-09-25 22:33:19'), +(225,'1926 Gingoog Street','','Sisilia',511,'22824','469738825391',/*!50705 0x0000000001010000004DD9E907758D2E40719AF4ADC58A4240,*/'2014-09-25 22:31:44'), +(226,'810 Palghat (Palakkad) Boulevard','','Jaroslavl',235,'73431','516331171356',/*!50705 0x00000000010100000069D48DC1D4EF43400294D0A79FD04C40,*/'2014-09-25 22:32:49'), +(227,'1820 Maring Parkway','','Punjab',324,'88307','99760893676',/*!50705 0x0000000001010000001E053EF5FE5E52406C617193AC4A4040,*/'2014-09-25 22:32:30'), +(228,'60 Poos de Caldas Street','','Rajasthan',243,'82338','963063788669',/*!50705 0x00000000010100000069EED7536140524079605B9AB6443A40,*/'2014-09-25 22:31:18'), +(229,'1014 Loja Manor','','Tamil Nadu',22,'66851','460795526514',/*!50705 0x000000000101000000803E366E560A5440A1212DDF44322A40,*/'2014-09-25 22:31:10'), +(230,'201 Effon-Alaiye Way','','Asuncin',37,'64344','684192903087',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:31'), +(231,'430 Alessandria Loop','','Saarland',439,'47446','669828224459',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:06'), +(232,'754 Valencia Place','','Phnom Penh',406,'87911','594319417514',/*!50705 0x0000000001010000009093D3E89F3A5A40AACCDE63FA1F2740,*/'2014-09-25 22:30:25'), +(233,'356 Olomouc Manor','','Gois',26,'93323','22326410776',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:15'), +(234,'1256 Bislig Boulevard','','Botosani',86,'50598','479007229460',/*!50705 0x00000000010100000085059C4AABAA3A408DAC46C032E04740,*/'2014-09-25 22:32:46'), +(235,'954 Kimchon Place','','West Bengali',559,'42420','541327526474',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:28'), +(236,'885 Yingkou Manor','','Kaduna',596,'31390','588964509072',/*!50705 0x00000000010100000006CF296D16E41E4038E3EAB6FA382640,*/'2014-09-25 22:32:28'), +(237,'1736 Cavite Place','','Qina',216,'98775','431770603551',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), +(238,'346 Skikda Parkway','','Hawalli',233,'90628','630424482919',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:57'), +(239,'98 Stara Zagora Boulevard','','Valle',96,'76448','610173756082',/*!50705 0x00000000010100000084CD4AA4FE4153C0DB9953138E0A0F40,*/'2014-09-25 22:30:51'), +(240,'1479 Rustenburg Boulevard','','Southern Tagalog',527,'18727','727785483194',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:40'), +(241,'647 A Corua (La Corua) Street','','Chollanam',357,'36971','792557457753',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), +(242,'1964 Gijn Manor','','Karnataka',473,'14408','918119601885',/*!50705 0x000000000101000000BBC3DCA458E45240DA4246F6F7DC2B40,*/'2014-09-25 22:31:26'), +(243,'47 Syktyvkar Lane','','West Java',118,'22236','63937119031',/*!50705 0x000000000101000000EDABBC2E8DB05A40C3C1397E037E1AC0,*/'2014-09-25 22:31:31'), +(244,'1148 Saarbrcken Parkway','','Fukushima',226,'1921','137773001988',/*!50705 0x000000000101000000AD8ACB4C449C614053F8229001874240,*/'2014-09-25 22:31:47'), +(245,'1103 Bilbays Parkway','','Hubei',578,'87660','279979529227',/*!50705 0x000000000101000000A76ED34444095C401234C1CB67054040,*/'2014-09-25 22:30:45'), +(246,'1246 Boksburg Parkway','','Hebei',422,'28349','890283544295',/*!50705 0x000000000101000000B66A323EA7E55D40E508BE0E41F74340,*/'2014-09-25 22:30:41'), +(247,'1483 Pathankot Street','','Tucumn',454,'37288','686015532180',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:06'), +(248,'582 Papeete Loop','','Central Visayas',294,'27722','569868543137',/*!50705 0x0000000001010000001F189BB1C3FC5E407DC4F9E5DD9E2440,*/'2014-09-25 22:32:38'), +(249,'300 Junan Street','','Kyonggi',553,'81314','890289150158',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), +(250,'829 Grand Prairie Way','','Paran',328,'6461','741070712873',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:20'), +(251,'1473 Changhwa Parkway','','Mxico',124,'75933','266798132374',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:03'), +(252,'1309 Weifang Street','','Florida',520,'57338','435785045362',/*!50705 0x000000000101000000EC0CF8A1F71155C0995A006432703E40,*/'2014-09-25 22:34:02'), +(253,'1760 Oshawa Manor','','Tianjin',535,'38140','56257502250',/*!50705 0x000000000101000000FBBD5EAB4E4B5D40EB0A6C8434924340,*/'2014-09-25 22:30:43'), +(254,'786 Stara Zagora Way','','Oyo & Osun',390,'98332','716256596301',/*!50705 0x000000000101000000DB45E22F77770F4073C8BC44AB691F40,*/'2014-09-25 22:32:27'), +(255,'1966 Tonghae Street','','Anhalt Sachsen',198,'36481','567359279425',/*!50705 0x0000000001010000000000009825D59D41450A0A2879C84940,*/'2014-09-25 22:31:05'), +(256,'1497 Yuzhou Drive','','England',312,'3433','246810237916',/*!50705 0x000000000101000000CC4642B68718C0BFCA822E8617C14940,*/'2014-09-25 22:33:37'), +(258,'752 Ondo Loop','','Miyazaki',338,'32474','134673576619',/*!50705 0x00000000010100000048AD8B36226260408871EDFABBBB3F40,*/'2014-09-25 22:31:50'), +(259,'1338 Zalantun Lane','','Minas Gerais',413,'45403','840522972766',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), +(260,'127 Iwakuni Boulevard','','Central Luzon',192,'20777','987442542471',/*!50705 0x0000000001010000000E6954E0E42E5E40AF05627E13AB2D40,*/'2014-09-25 22:32:37'), +(261,'51 Laredo Avenue','','Sagaing',342,'68146','884536620568',/*!50705 0x0000000001010000008720BD97B1C85740D4D7F335CB1B3640,*/'2014-09-25 22:32:18'), +(262,'771 Yaound Manor','','Sofala',64,'86768','245477603573',/*!50705 0x000000000101000000103345CA606B414046CB2665F7D733C0,*/'2014-09-25 22:32:17'), +(263,'532 Toulon Street','','Santiago',460,'69517','46871694740',/*!50705 0x000000000101000000ECD33B269CAC51C09AB67F65A5733340,*/'2014-09-25 22:30:55'), +(264,'1027 Banjul Place','','West Bengali',197,'50390','538241037443',/*!50705 0x000000000101000000FE14223BCA1A5640AC6F6072A3EE3640,*/'2014-09-25 22:31:16'), +(265,'1158 Mandi Bahauddin Parkway','','Shanxi',136,'98484','276555730211',/*!50705 0x000000000101000000ECC84741A6525C40A93C7084FB0B4440,*/'2014-09-25 22:30:32'), +(266,'862 Xintai Lane','','Cagayan Valley',548,'30065','265153400632',/*!50705 0x00000000010100000015580053866E5E408A5CCBBFF19C3140,*/'2014-09-25 22:32:41'), +(267,'816 Cayenne Parkway','','Manab',414,'93629','282874611748',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), +(268,'1831 Nam Dinh Loop','','National Capital Reg',323,'51990','322888976727',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:38'), +(269,'446 Kirovo-Tepetsk Lane','','Osaka',203,'19428','303967439816',/*!50705 0x0000000001010000008D94D2D8C3F36040608CED5AE7554140,*/'2014-09-25 22:31:45'), +(270,'682 Halisahar Place','','Severn Morava',378,'20536','475553436330',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:54'), +(271,'1587 Loja Manor','','Salzburg',447,'5410','621625204422',/*!50705 0x0000000001010000002C83C53C86162A405886DD1C53E64740,*/'2014-09-25 22:30:10'), +(272,'1762 Paarl Parkway','','Hunan',298,'53928','192459639410',/*!50705 0x00000000010100000067333D177CDB5B40DBA8A9C024B03B40,*/'2014-09-25 22:30:39'), +(273,'1519 Ilorin Place','','Kerala',395,'49298','357445645426',/*!50705 0x0000000001010000000C4FF921002A5340BD772F52838C2540,*/'2014-09-25 22:31:21'), +(274,'920 Kumbakonam Loop','','California',446,'75090','685010736240',/*!50705 0x00000000010100000012EF4ADCF4695EC01B95E535C0564240,*/'2014-09-25 22:34:00'), +(275,'906 Goinia Way','','Wielkopolskie',255,'83565','701767622697',/*!50705 0x0000000001010000007FA2B2614D1732404064366D6BE14940,*/'2014-09-25 22:32:42'), +(276,'1675 Xiangfan Manor','','Tamil Nadu',283,'11763','271149517630',/*!50705 0x00000000010100000042B687180AD95340EE4108C897EC2540,*/'2014-09-25 22:31:20'), +(277,'85 San Felipe de Puerto Plata Drive','','Shandong',584,'46063','170739645687',/*!50705 0x000000000101000000EA605859365C5E40EF1010DDFDBC4240,*/'2014-09-25 22:30:48'), +(278,'144 South Hill Loop','','Guanajuato',445,'2012','45387294817',/*!50705 0x0000000001010000002B84D558424C59C0699B2CFF6B923440,*/'2014-09-25 22:32:11'), +(279,'1884 Shikarpur Avenue','','Haryana',263,'85548','959949395183',/*!50705 0x0000000001010000002CE395DA413F5340EB460EC7A9B03D40,*/'2014-09-25 22:31:19'), +(280,'1980 Kamjanets-Podilskyi Street','','Illinois',404,'89502','874337098891',/*!50705 0x000000000101000000167CE420B26556C0B7966EB7C9584440,*/'2014-09-25 22:33:57'), +(281,'1944 Bamenda Way','','Michigan',573,'24645','75975221996',/*!50705 0x000000000101000000B8B64B76C7C154C0EF254344203D4540,*/'2014-09-25 22:34:03'), +(282,'556 Baybay Manor','','Oyo & Osun',374,'55802','363982224739',/*!50705 0x000000000101000000F5C6FFD3C30E1140FC30E7BE41502040,*/'2014-09-25 22:32:25'), +(283,'457 Tongliao Loop','','Bursa',222,'56254','880756161823',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:25'), +(284,'600 Bradford Street','','East Azerbaidzan',514,'96204','117592274996',/*!50705 0x000000000101000000EE4E2D115E25474044FF5FD09D0A4340,*/'2014-09-25 22:31:40'), +(285,'1006 Santa Brbara dOeste Manor','','Ondo & Ekiti',389,'36229','85059738746',/*!50705 0x000000000101000000FBC67CE5E6581640531A7B40EAC81C40,*/'2014-09-25 22:32:26'), +(286,'1308 Sumy Loop','','Fujian',175,'30657','583021225407',/*!50705 0x000000000101000000DC7AF25597D35D409617AAACB70F3A40,*/'2014-09-25 22:30:34'), +(287,'1405 Chisinau Place','','Ponce',411,'8160','62781725285',/*!50705 0x000000000101000000974341DF4CA750C03F219628D6023240,*/'2014-09-25 22:32:45'), +(288,'226 Halifax Street','','Xinxiang',277,'58492','790651020929',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:38'), +(289,'1279 Udine Parkway','','Edo & Delta',69,'75860','195003555232',/*!50705 0x000000000101000000FFB7EDD68D8216408FF4B3A217571940,*/'2014-09-25 22:32:23'), +(290,'1336 Benin City Drive','','Shiga',386,'46044','341242939532',/*!50705 0x000000000101000000D5810761C9FB60401B07A8BA91804140,*/'2014-09-25 22:31:53'), +(291,'1155 Liaocheng Place','','Oyo & Osun',152,'22650','558236142492',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:23'), +(292,'1993 Tabuk Lane','','Tamil Nadu',522,'64221','648482415405',/*!50705 0x0000000001010000002AF3A0EA210854407F94C78965D92940,*/'2014-09-25 22:31:27'), +(293,'86 Higashiosaka Lane','','Guanajuato',563,'33768','957128697225',/*!50705 0x0000000001010000002DAF5C6F1B4C59C07F34F7EBA9643440,*/'2014-09-25 22:32:14'), +(294,'1912 Allende Manor','','Kowloon and New Kowl',279,'58124','172262454487',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:09'), +(295,'544 Tarsus Boulevard','','Gurico',562,'53145','892523334',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:05'), +(296,'1936 Cuman Avenue','','Virginia',433,'61195','976798660411',/*!50705 0x000000000101000000FD7B3A6840FC53C065F4ED6EAFA24240,*/'2014-09-25 22:33:58'), +(297,'1192 Tongliao Street','','Sharja',470,'19065','350970907017',/*!50705 0x000000000101000000AA27F38FBEB44B4053E68B625E563940,*/'2014-09-25 22:33:35'), +(298,'44 Najafabad Way','','Baskimaa',146,'61391','96604821070',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:08'), +(299,'32 Pudukkottai Lane','','Ohio',140,'38834','967274728547',/*!50705 0x000000000101000000077AA86D430C55C0409C2C5A25E14340,*/'2014-09-25 22:33:49'), +(300,'661 Chisinau Lane','','Pietari',274,'8856','816436065431',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:51'), +(301,'951 Stara Zagora Manor','','Punjab',400,'98573','429925609431',/*!50705 0x0000000001010000001E296C50C51953405651723DC0533E40,*/'2014-09-25 22:31:22'), +(302,'922 Vila Velha Loop','','Maharashtra',9,'4085','510737228015',/*!50705 0x000000000101000000738F5B8242AF5240612129D835183340,*/'2014-09-25 22:31:10'), +(303,'898 Jining Lane','','Pohjois-Pohjanmaa',387,'40070','161643343536',/*!50705 0x0000000001010000003DFB80F6D9773940C8D0B183CA405040,*/'2014-09-25 22:31:00'), +(304,'1635 Kuwana Boulevard','','Hiroshima',205,'52137','710603868323',/*!50705 0x000000000101000000AA944330B38E6040247035FCB8324140,*/'2014-09-25 22:31:46'), +(305,'41 El Alto Parkway','','Maharashtra',398,'56883','51917807050',/*!50705 0x000000000101000000D487E41A55315340BC3088FEBF443340,*/'2014-09-25 22:31:22'), +(306,'1883 Maikop Lane','','Kaliningrad',254,'68469','96110042435',/*!50705 0x00000000010100000020DF94A8CD82344015D918856E5A4B40,*/'2014-09-25 22:32:50'), +(307,'1908 Gaziantep Place','','Liaoning',536,'58979','108053751300',/*!50705 0x0000000001010000004DAA6C0EC6E65E408E9F7C30DF344540,*/'2014-09-25 22:30:43'), +(308,'687 Alessandria Parkway','','Sanaa',455,'57587','407218522294',/*!50705 0x0000000001010000000C60257A741A4640854A123A9EB52E40,*/'2014-09-25 22:34:10'), +(309,'827 Yuncheng Drive','','Callao',99,'79047','504434452842',/*!50705 0x000000000101000000C2514DA48F4753C0271CD544FA1C28C0,*/'2014-09-25 22:32:32'), +(310,'913 Coacalco de Berriozbal Loop','','Texas',33,'42141','262088367001',/*!50705 0x00000000010100000023371EC7EA4658C0A86851442B5E4040,*/'2014-09-25 22:33:43'), +(311,'715 So Bernardo do Campo Lane','','Kedah',507,'84804','181179321332',/*!50705 0x000000000101000000D8DBC1E3361F5940520DFB3DB1961640,*/'2014-09-25 22:32:00'), +(312,'1354 Siegen Street','','Rio de Janeiro',25,'80184','573441801529',/*!50705 0x0000000001010000009146054EB62846C0FCA0D398B50137C0,*/'2014-09-25 22:30:15'), +(313,'1191 Sungai Petani Boulevard','','Missouri',262,'9668','983259819766',/*!50705 0x00000000010100000055890D7107A557C0CB7564F6C38C4340,*/'2014-09-25 22:33:54'), +(314,'1224 Huejutla de Reyes Boulevard','','Lombardia',91,'70923','806016930576',/*!50705 0x000000000101000000D85B6F40F06D24405EEE38EA8DC44640,*/'2014-09-25 22:31:43'), +(315,'543 Bergamo Avenue','','Minas Gerais',215,'59686','103602195112',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), +(316,'746 Joliet Lane','','Kursk',286,'94878','688485191923',/*!50705 0x00000000010100000085949F54FB174240E0DCBAF660DE4940,*/'2014-09-25 22:32:52'), +(317,'780 Kimberley Way','','Tabuk',515,'17032','824396883951',/*!50705 0x0000000001010000001BD47E6B274942408B53AD8559663C40,*/'2014-09-25 22:33:00'), +(318,'1774 Yaound Place','','Hubei',166,'91400','613124286867',/*!50705 0x0000000001010000002A00C633E8B15C404C63C5BA027D3E40,*/'2014-09-25 22:30:33'), +(319,'1957 Yantai Lane','','So Paulo',490,'59255','704948322302',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), +(320,'1542 Lubumbashi Boulevard','','Tel Aviv',57,'62472','508800331065',/*!50705 0x000000000101000000765F84DF3C6041403CAB60AF0B034040,*/'2014-09-25 22:31:41'), +(321,'651 Pathankot Loop','','Maharashtra',336,'59811','139378397418',/*!50705 0x0000000001010000002198FE8062A952408AC168FBFCD23040,*/'2014-09-25 22:31:20'), +(322,'1359 Zhoushan Parkway','','Streymoyar',545,'29763','46568045367',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:59'), +(323,'1769 Iwaki Lane','','Kujawsko-Pomorskie',97,'25787','556100547674',/*!50705 0x000000000101000000487B7203F4013240837EF0EBD18F4A40,*/'2014-09-25 22:32:41'), +(324,'1145 Vilnius Manor','','Mxico',451,'73170','674805712553',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:12'), +(325,'1892 Nabereznyje Telny Lane','','Tutuila',516,'28396','478229987054',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:02'), +(326,'470 Boksburg Street','','Central',81,'97960','908029859266',/*!50705 0x000000000101000000DAE78C83263855405BE21291AB023B40,*/'2014-09-25 22:32:19'), +(327,'1427 A Corua (La Corua) Place','','Buenos Aires',45,'85799','972574862516',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:04'), +(328,'479 San Felipe del Progreso Avenue','','Morelos',130,'54949','869051782691',/*!50705 0x000000000101000000C87E710484BC58C039FD8F02FACD3240,*/'2014-09-25 22:32:04'), +(329,'867 Benin City Avenue','','Henan',591,'78543','168884817145',/*!50705 0x000000000101000000A0F2F972B05D5C405D68531AD6144140,*/'2014-09-25 22:30:50'), +(330,'981 Kumbakonam Place','','Distrito Federal',89,'87611','829116184079',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:17'), +(331,'1016 Iwakuni Street','','St George',269,'49833','961370847344',/*!50705 0x000000000101000000A1DC11A9C49C4EC0D11B936A44512A40,*/'2014-09-25 22:32:59'), +(332,'663 Baha Blanca Parkway','','Adana',5,'33463','834418779292',/*!50705 0x000000000101000000BE72182719AA4140CCD1E3F736804240,*/'2014-09-25 22:33:22'), +(333,'1860 Taguig Loop','','West Java',119,'59550','38158430589',/*!50705 0x00000000010100000042ACA34FD0E55A40D698C6E52ED81BC0,*/'2014-09-25 22:31:32'), +(334,'1816 Bydgoszcz Loop','','Dhaka',234,'64308','965273813662',/*!50705 0x000000000101000000A717C627AE7C564080BD1D3C6EEB3840,*/'2014-09-25 22:30:12'), +(335,'587 Benguela Manor','','Illinois',42,'91590','165450987037',/*!50705 0x00000000010100000097CEE2207C1456C0DDEFABCD5AE14440,*/'2014-09-25 22:33:44'), +(336,'430 Kumbakonam Drive','','Santa F',457,'28814','105470691550',/*!50705 0x00000000010100000004C1882249304DC055DF54FF7B4E41C0,*/'2014-09-25 22:30:07'), +(337,'1838 Tabriz Lane','','Dhaka',143,'1195','38988715447',/*!50705 0x0000000001010000001A5D948F139A5640C4D21B49DDB53740,*/'2014-09-25 22:30:12'), +(338,'431 Szkesfehrvr Avenue','','Baki',48,'57828','119501405123',/*!50705 0x000000000101000000A77686A92DF248400FAECACF57304440,*/'2014-09-25 22:30:11'), +(339,'503 Sogamoso Loop','','Sumqayit',505,'49812','834626715837',/*!50705 0x0000000001010000006C83C94395D548402C8EB9217C4B4440,*/'2014-09-25 22:30:11'), +(340,'507 Smolensk Loop','','Sousse',492,'22971','80303246192',/*!50705 0x000000000101000000298EA8F52346254075DA649EA6E94140,*/'2014-09-25 22:33:21'), +(341,'1920 Weifang Avenue','','Uttar Pradesh',427,'15643','869507847714',/*!50705 0x0000000001010000001F3EFA70DAC153407410CF6D1DCF3C40,*/'2014-09-25 22:31:25'), +(342,'124 al-Manama Way','','Hiroshima',382,'52368','647899404952',/*!50705 0x0000000001010000004BE07B244AA760407B0ED18D55354140,*/'2014-09-25 22:31:52'), +(343,'1443 Mardan Street','','Western Cape',392,'31483','231383037471',/*!50705 0x000000000101000000FB6074D42CF73240B0B03B3833DA40C0,*/'2014-09-25 22:33:05'), +(344,'1909 Benguela Lane','','Henan',581,'19913','624138001031',/*!50705 0x000000000101000000F4AD6AA480775C4066EB2AEE89A74140,*/'2014-09-25 22:30:47'), +(345,'68 Ponce Parkway','','Hanoi',201,'85926','870635127812',/*!50705 0x0000000001010000005DF525C0D5755A4000F61B3746063540,*/'2014-09-25 22:34:06'), +(346,'1217 Konotop Avenue','','Gelderland',151,'504','718917251754',/*!50705 0x000000000101000000F438679F22A2164019B4EB3944044A40,*/'2014-09-25 22:32:20'), +(347,'1293 Nam Dinh Way','','Roraima',84,'71583','697656479977',/*!50705 0x0000000001010000008EE6C8CA2F564EC0D9C23DE0CB8E0640,*/'2014-09-25 22:30:17'), +(348,'785 Vaduz Street','','Baja California',335,'36170','895616862749',/*!50705 0x0000000001010000000D61EB0816DD5CC07DB328475C504040,*/'2014-09-25 22:32:10'), +(349,'1516 Escobar Drive','','Tongatapu',370,'46069','64536069371',/*!50705 0x0000000001010000009132987575E665C0BE11DDB3AE2335C0,*/'2014-09-25 22:33:20'), +(350,'1628 Nagareyama Lane','','Central',453,'60079','20064292617',/*!50705 0x00000000010100000019A5F04520C14CC029006B7AF55639C0,*/'2014-09-25 22:32:32'), +(351,'1157 Nyeri Loop','','Adygea',320,'56380','262744791493',/*!50705 0x000000000101000000AC91B8228C0D4440EBD10AC2CB4D4640,*/'2014-09-25 22:32:55'), +(352,'1673 Tangail Drive','','Daugavpils',137,'26857','627924259271',/*!50705 0x0000000001010000004377A45588883A40E580B80611F14B40,*/'2014-09-25 22:31:57'), +(353,'381 Kabul Way','','Taipei',209,'87272','55477302294',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), +(354,'953 Hodeida Street','','Southern Tagalog',221,'18841','53912826864',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:37'), +(355,'469 Nakhon Sawan Street','','Tuvassia',531,'58866','689199636560',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:58'), +(356,'1378 Beira Loop','','Krasnojarsk',597,'40792','840957664136',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:58'), +(357,'1641 Changhwa Place','','Nord-Ouest',52,'37636','256546485220',/*!50705 0x000000000101000000103B53E8BC4A2440A4C0A7DEBFD61740,*/'2014-09-25 22:30:25'), +(358,'1698 Southport Loop','','Hidalgo',393,'49009','754358349853',/*!50705 0x0000000001010000007AB82E46EEAE58C03DED951EF21D3440,*/'2014-09-25 22:32:11'), +(359,'519 Nyeri Manor','','So Paulo',461,'37650','764680915323',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:21'), +(360,'619 Hunuco Avenue','','Shimane',331,'81508','142596392389',/*!50705 0x000000000101000000A09ADC399EA160405B1D4AFE71BC4140,*/'2014-09-25 22:31:50'), +(361,'45 Aparecida de Goinia Place','','Madhya Pradesh',464,'7431','650496654258',/*!50705 0x0000000001010000009E0CE94BCA345440C9FDB38B0E953840,*/'2014-09-25 22:31:26'), +(362,'482 Kowloon and New Kowloon Manor','','Bratislava',90,'97056','738968474939',/*!50705 0x00000000010100000070DC18F1531B3140BDB90908F7124840,*/'2014-09-25 22:33:02'), +(363,'604 Bern Place','','Jharkhand',429,'5373','620719383725',/*!50705 0x000000000101000000799F9916AB55554037CC86EB07593740,*/'2014-09-25 22:31:25'), +(364,'1623 Kingstown Drive','','Buenos Aires',20,'91299','296394569728',/*!50705 0x000000000101000000791563AAAA2A4DC0E4839ECDAA6A41C0,*/'2014-09-25 22:30:04'), +(365,'1009 Zanzibar Lane','','Arecibo',32,'64875','102396298916',/*!50705 0x000000000101000000FBBD5EABCEAD50C0E9787187F2783240,*/'2014-09-25 22:32:45'), +(366,'114 Jalib al-Shuyukh Manor','','Centre',585,'60440','845378657301',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:25'), +(367,'1163 London Parkway','','Par',66,'6066','675120358494',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:16'), +(368,'1658 Jastrzebie-Zdrj Loop','','Central',372,'96584','568367775448',/*!50705 0x0000000001010000002B73A900CEEF4240660811BA956FB9BF,*/'2014-09-25 22:31:56'), +(369,'817 Laredo Avenue','','Jalisco',188,'77449','151249681135',/*!50705 0x000000000101000000F00BF9B113D959C03E4EE2BDB4AA3440,*/'2014-09-25 22:32:06'), +(370,'1565 Tangail Manor','','Okinawa',377,'45750','634445428822',/*!50705 0x000000000101000000D94C744CCCAA5F4045A1C096B2C53940,*/'2014-09-25 22:31:52'), +(371,'1912 Emeishan Drive','','Balikesir',50,'33050','99883471275',/*!50705 0x000000000101000000F1074D5CD8E23B400B2A053818D34340,*/'2014-09-25 22:33:22'), +(372,'230 Urawa Drive','','Andhra Pradesh',8,'2738','166898395731',/*!50705 0x0000000001010000008B04AE869F515340B2930BDF0C402F40,*/'2014-09-25 22:31:09'), +(373,'1922 Miraj Way','','Esfahan',356,'13203','320471479776',/*!50705 0x00000000010100000017050B71F6AE494026231DD434514040,*/'2014-09-25 22:31:37'), +(374,'433 Florencia Street','','Chihuahua',250,'91330','561729882725',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:08'), +(375,'1049 Matamoros Parkway','','Karnataka',191,'69640','960505250340',/*!50705 0x0000000001010000007923F3C89F355340386744696F563140,*/'2014-09-25 22:31:16'), +(376,'1061 Ede Avenue','','Southern Tagalog',98,'57810','333390595558',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:35'), +(377,'154 Oshawa Manor','','East Java',415,'72771','440365973660',/*!50705 0x00000000010100000005B93077D24D5C4065074B2B74041FC0,*/'2014-09-25 22:31:34'), +(378,'1191 Tandil Drive','','Southern Tagalog',523,'6362','45554316010',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:40'), +(379,'1133 Rizhao Avenue','','Pernambuco',572,'2800','600264533987',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:23'), +(380,'1519 Santiago de los Caballeros Loop','','East Kasai',348,'22025','409315295763',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), +(381,'1618 Olomouc Manor','','Kurgan',285,'26385','96846695220',/*!50705 0x000000000101000000B1694A5755555040EA8FD552E5B94B40,*/'2014-09-25 22:32:51'), +(382,'220 Hidalgo Drive','','Kermanshah',265,'45298','342720754566',/*!50705 0x0000000001010000004E7A843F6888474008605EDB36284140,*/'2014-09-25 22:31:37'), +(383,'686 Donostia-San Sebastin Lane','','Guangdong',471,'97390','71857599858',/*!50705 0x000000000101000000F90A1C1A60845C400FDB711EA98B3640,*/'2014-09-25 22:30:42'), +(384,'97 Mogiljov Lane','','Gujarat',73,'89294','924815207181',/*!50705 0x000000000101000000B4F116FEC209524097DB076A42C63540,*/'2014-09-25 22:31:11'), +(385,'1642 Charlotte Amalie Drive','','Slaskie',549,'75442','821476736117',/*!50705 0x000000000101000000DDC4DA2967F73240D5D6E3198F114940,*/'2014-09-25 22:32:44'), +(386,'1368 Maracabo Boulevard','','',493,'32716','934352415130',/*!50705 0x000000000101000000731074B4AA8A4FC050920953EF2E3240,*/'2014-09-25 22:30:03'), +(387,'401 Sucre Boulevard','','New Hampshire',322,'25007','486395999608',/*!50705 0x000000000101000000817FA54E1BDD51C013718456717F4540,*/'2014-09-25 22:33:56'), +(388,'368 Hunuco Boulevard','','Namibe',360,'17165','106439158941',/*!50705 0x000000000101000000B5858CECEF4D28404D8EF11769642EC0,*/'2014-09-25 22:30:03'), +(389,'500 Lincoln Parkway','','Jiangsu',210,'95509','550306965159',/*!50705 0x0000000001010000003C399E2A3AC15D404409449957CB4040,*/'2014-09-25 22:30:35'), +(390,'102 Chapra Drive','','Ibaragi',521,'14073','776031833752',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:54'), +(391,'1793 Meixian Place','','Hmelnytskyi',258,'33535','619966287415',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:31'), +(392,'514 Ife Way','','Shaba',315,'69973','900235712074',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), +(393,'717 Changzhou Lane','','Southern Tagalog',104,'21615','426255288071',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:36'), +(394,'753 Ilorin Avenue','','Sichuan',157,'3656','464511145118',/*!50705 0x0000000001010000008531D8C3CDD8594059D70D805D883D40,*/'2014-09-25 22:30:32'), +(395,'1337 Mit Ghamr Avenue','','Nakhon Sawan',358,'29810','175283210378',/*!50705 0x0000000001010000009A588572C70859404D237722D2682F40,*/'2014-09-25 22:33:19'), +(396,'767 Pyongyang Drive','','Osaka',229,'83536','667736124769',/*!50705 0x000000000101000000149A7F4FC7EA6040A02413A6DE2F4140,*/'2014-09-25 22:31:48'), +(397,'614 Pak Kret Street','','Addis Abeba',6,'27796','47808359842',/*!50705 0x0000000001010000009F84E3439A5F43402233BCFEC90C2240,*/'2014-09-25 22:30:59'), +(398,'954 Lapu-Lapu Way','','Moskova',278,'8816','737229003916',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:51'), +(399,'331 Bydgoszcz Parkway','','Asturia',181,'966','537374465982',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:09'), +(400,'1152 Citrus Heights Manor','','al-Qadarif',15,'5239','765957414528',/*!50705 0x00000000010100000084F6459D14B14140AA36EE83E2112C40,*/'2014-09-25 22:33:11'), +(401,'168 Cianjur Manor','','Saitama',228,'73824','679095087143',/*!50705 0x000000000101000000DEA925C2EB75614032005471E3F94140,*/'2014-09-25 22:31:48'), +(402,'616 Hagonoy Avenue','','Krasnojarsk',39,'46043','604177838256',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), +(403,'1190 0 Place','','Rio Grande do Sul',44,'10417','841876514789',/*!50705 0x0000000001010000002347DF49B00D4BC086151340D6543FC0,*/'2014-09-25 22:30:16'), +(404,'734 Bchar Place','','Punjab',375,'30586','280578750435',/*!50705 0x0000000001010000006D3B6D8D885C5240C4A40925DDCE3E40,*/'2014-09-25 22:32:31'), +(405,'530 Lausanne Lane','','Texas',135,'11067','775235029633',/*!50705 0x0000000001010000009C830C89A03358C0E2D3F7753B644040,*/'2014-09-25 22:33:49'), +(406,'454 Patiala Lane','','Fukushima',276,'13496','794553031307',/*!50705 0x000000000101000000EC3D4B46448C614091306711E5BB4240,*/'2014-09-25 22:31:49'), +(407,'1346 Mysore Drive','','Bretagne',92,'61507','516647474029',/*!50705 0x0000000001010000004474BE8EEEEE11C070010DDBBB3F4840,*/'2014-09-25 22:31:00'), +(408,'990 Etawah Loop','','Tamil Nadu',564,'79940','206169448769',/*!50705 0x000000000101000000D54B42D8DF3C5340FE518A0C61A72440,*/'2014-09-25 22:31:29'), +(409,'1266 Laredo Parkway','','Saitama',380,'7664','1483365694',/*!50705 0x000000000101000000FBD97EE8F87361403BA5283C0DF44140,*/'2014-09-25 22:31:52'), +(410,'88 Nagaon Manor','','Buenos Aires',524,'86868','779461480495',/*!50705 0x000000000101000000CA3736960B914DC0D78A91802CA942C0,*/'2014-09-25 22:30:07'), +(411,'264 Bhimavaram Manor','','St Thomas',111,'54749','302526949177',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:08'), +(412,'1639 Saarbrcken Drive','','North West',437,'9827','328494873422',/*!50705 0x00000000010100000015CB8866F93D3B40E48AE65CE5AA39C0,*/'2014-09-25 22:33:05'), +(413,'692 Amroha Drive','','Northern',230,'35575','359478883004',/*!50705 0x00000000010100000027648CB47900544098E777503F562340,*/'2014-09-25 22:33:10'), +(414,'1936 Lapu-Lapu Parkway','','Bauchi & Gombe',141,'7122','653436985797',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:23'), +(415,'432 Garden Grove Street','','Ontario',430,'65630','615964523510',/*!50705 0x0000000001010000003E867DF1FBDB53C05900AEBF80EF4540,*/'2014-09-25 22:30:28'), +(416,'1445 Carmen Parkway','','West Java',117,'70809','598912394463',/*!50705 0x000000000101000000957950F550C55A40B3BFA21122171BC0,*/'2014-09-25 22:31:30'), +(417,'791 Salinas Street','','Punjab',208,'40509','129953030512',/*!50705 0x000000000101000000579E9B911CFA524075D256804A883F40,*/'2014-09-25 22:31:17'), +(418,'126 Acua Parkway','','West Bengali',71,'58888','480039662421',/*!50705 0x000000000101000000C3013E89191056404E9F7829D01A3840,*/'2014-09-25 22:31:11'), +(419,'397 Sunnyvale Avenue','','Guanajuato',19,'55566','680851640676',/*!50705 0x000000000101000000754419059C2F59C02409C21550EA3440,*/'2014-09-25 22:32:01'), +(420,'992 Klerksdorp Loop','','Utrecht',23,'33711','855290087237',/*!50705 0x000000000101000000C1DFD4ACD88C15404FDC3BB4D9134A40,*/'2014-09-25 22:32:19'), +(421,'966 Arecibo Loop','','Sind',134,'94018','15273765306',/*!50705 0x000000000101000000BE9B1320AFF15040D93400659DBB3A40,*/'2014-09-25 22:32:30'), +(422,'289 Santo Andr Manor','','al-Sharqiya',16,'72410','214976066017',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:59'), +(423,'437 Chungho Drive','','Puerto Plata',450,'59489','491271355190',/*!50705 0x000000000101000000225A86930FAC51C0082692431FCB3340,*/'2014-09-25 22:30:55'), +(424,'1948 Bayugan Parkway','','Bihar',264,'60622','987306329957',/*!50705 0x0000000001010000007613211A82E45540D685C4E2DC893940,*/'2014-09-25 22:31:19'), +(425,'1866 al-Qatif Avenue','','California',155,'89420','546793516940',/*!50705 0x000000000101000000B4EE7AC4C3815DC0165D28AAC8084140,*/'2014-09-25 22:33:50'), +(426,'1661 Abha Drive','','Tamil Nadu',416,'14400','270456873752',/*!50705 0x000000000101000000D3B36A2192B45340FBC5111038C32440,*/'2014-09-25 22:31:23'), +(427,'1557 Cape Coral Parkway','','Hubei',293,'46875','368284120423',/*!50705 0x00000000010100000034CC1A06BDEA5B402D5A25FD62314040,*/'2014-09-25 22:30:38'), +(428,'1727 Matamoros Place','','Sawhaj',465,'78813','129673677866',/*!50705 0x00000000010100000083E38D27DDB13F40555BA093948E3A40,*/'2014-09-25 22:30:57'), +(429,'1269 Botosani Manor','','Guangdong',468,'47394','736517327853',/*!50705 0x000000000101000000C8E1DDDB3ED65C40281B20E230C83640,*/'2014-09-25 22:30:42'), +(430,'355 Vitria de Santo Anto Way','','Oaxaca',452,'81758','548003849552',/*!50705 0x0000000001010000000363D8BC050858C0503750E09D163240,*/'2014-09-25 22:32:13'), +(431,'1596 Acua Parkway','','Jharkhand',418,'70425','157133457169',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:24'), +(432,'259 Ipoh Drive','','So Paulo',189,'64964','419009857119',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:18'), +(433,'1823 Hoshiarpur Lane','','Komi',510,'33191','307133768620',/*!50705 0x000000000101000000C6DA8420AC674940DD9ACF1495D64E40,*/'2014-09-25 22:32:57'), +(434,'1404 Taguig Drive','','Okayama',547,'87212','572068624538',/*!50705 0x000000000101000000205D11A1F6BF6040BFE90203AD864140,*/'2014-09-25 22:31:54'), +(435,'740 Udaipur Lane','','Nizni Novgorod',150,'33505','497288595103',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:47'), +(436,'287 Cuautla Boulevard','','Chuquisaca',501,'72736','82619513349',/*!50705 0x0000000001010000002A0B15D2D05050C049C44ABB870833C0,*/'2014-09-25 22:30:14'), +(437,'1766 Almirante Brown Street','','KwaZulu-Natal',364,'63104','617567598243',/*!50705 0x000000000101000000FDAB7DF090EE3D40488D64EA09C23BC0,*/'2014-09-25 22:33:04'), +(438,'596 Huixquilucan Place','','Nampula',351,'65892','342709348083',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:17'), +(439,'1351 Aparecida de Goinia Parkway','','Northern Mindanao',391,'41775','959834530529',/*!50705 0x000000000101000000DAFF006B55F55E40898C58D5DC4F2040,*/'2014-09-25 22:32:38'), +(440,'722 Bradford Lane','','Shandong',249,'90920','746251338300',/*!50705 0x000000000101000000653E7B890CB55D4078A0A932E7954140,*/'2014-09-25 22:30:37'), +(441,'983 Santa F Way','','British Colombia',565,'47472','145720452260',/*!50705 0x000000000101000000719CCA58A3C75EC0EEE7B92AF59F4840,*/'2014-09-25 22:30:28'), +(442,'1245 Ibirit Way','','La Romana',290,'40926','331888642162',/*!50705 0x0000000001010000006D59BE2E433E51C04FC87322666D3240,*/'2014-09-25 22:30:54'), +(443,'1836 Korla Parkway','','Copperbelt',272,'55405','689681677428',/*!50705 0x000000000101000000064257C796363C40BB7EC16ED89A29C0,*/'2014-09-25 22:34:11'), +(444,'231 Kaliningrad Place','','Lombardia',70,'57833','575081026569',/*!50705 0x0000000001010000007A185A9D9C552340A77E390E17D94640,*/'2014-09-25 22:31:42'), +(445,'495 Bhimavaram Lane','','Maharashtra',144,'3','82088937724',/*!50705 0x0000000001010000003EE1911DC0B15240B39943520BE73440,*/'2014-09-25 22:31:15'), +(446,'1924 Shimonoseki Drive','','Batna',59,'52625','406784385440',/*!50705 0x000000000101000000347CB03154B21840DF814B112AC74140,*/'2014-09-25 22:29:59'), +(447,'105 Dzerzinsk Manor','','Inner Mongolia',540,'48570','240776414296',/*!50705 0x000000000101000000F1C05B7BFA905E40F5EC03DA67CE4540,*/'2014-09-25 22:30:44'), +(448,'614 Denizli Parkway','','Rio Grande do Sul',486,'29444','876491807547',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), +(449,'1289 Belm Boulevard','','Tartumaa',530,'88306','237368926031',/*!50705 0x00000000010100000079680EFF9FB93A406C7E575FB8304D40,*/'2014-09-25 22:30:58'), +(450,'203 Tambaram Street','','Buenos Aires',161,'73942','411549550611',/*!50705 0x000000000101000000E753C72AA5604DC0438CD7BCAA2A41C0,*/'2014-09-25 22:30:05'), +(451,'1704 Tambaram Manor','','West Bengali',554,'2834','39463554936',/*!50705 0x000000000101000000A4E9A2D755065640F598EDAFC3793640,*/'2014-09-25 22:31:28'), +(452,'207 Cuernavaca Loop','','Tatarstan',352,'52671','782900030287',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:55'), +(453,'319 Springs Loop','','Baijeri',160,'99552','72524459905',/*!50705 0x0000000001010000006A62CB3C0304264081FEE7D5A5CB4840,*/'2014-09-25 22:31:05'), +(454,'956 Nam Dinh Manor','','Kerman',481,'21872','474047727727',/*!50705 0x000000000101000000F16206CF29D74B40CFA91A738D733D40,*/'2014-09-25 22:31:39'), +(455,'1947 Paarl Way','','Central Java',509,'23636','834061016202',/*!50705 0x000000000101000000C4D78D2D3AB55B40AC996B8775391EC0,*/'2014-09-25 22:31:35'), +(456,'814 Simferopol Loop','','Sinaloa',154,'48745','524567129902',/*!50705 0x000000000101000000954330B3F42F5BC090CCD9F115313A40,*/'2014-09-25 22:32:05'), +(457,'535 Ahmadnagar Manor','','Abu Dhabi',3,'41136','985109775584',/*!50705 0x000000000101000000D3E6EE29EF2E4B4099C6E52E78773840,*/'2014-09-25 22:33:34'), +(458,'138 Caracas Boulevard','','Zulia',326,'16790','974433019532',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:04'), +(459,'251 Florencia Drive','','Michoacn de Ocampo',556,'16119','118011831565',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:13'), +(460,'659 Gatineau Boulevard','','La Paz',153,'28587','205524798287',/*!50705 0x00000000010100000017E7B9CFBB0B51C0A029858ABB7B30C0,*/'2014-09-25 22:30:13'), +(461,'1889 Valparai Way','','Ziguinchor',600,'75559','670370974122',/*!50705 0x00000000010100000020E1C50C9E4530C0FC219111AB2A2940,*/'2014-09-25 22:33:01'), +(462,'1485 Bratislava Place','','Illinois',435,'83183','924663855568',/*!50705 0x000000000101000000A081A2C30D4656C04453D1B3B4224540,*/'2014-09-25 22:33:59'), +(463,'935 Aden Boulevard','','Central Java',532,'64709','335052544020',/*!50705 0x000000000101000000C7139C55FA485B40BEE435655D7A1BC0,*/'2014-09-25 22:31:35'), +(464,'76 Kermanshah Manor','','Esfahan',423,'23343','762361821578',/*!50705 0x000000000101000000FF66182DF6EE4940A60BB1FA23014040,*/'2014-09-25 22:31:37'), +(465,'734 Tanshui Avenue','','Caquet',170,'70664','366776723320',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:52'), +(466,'118 Jaffna Loop','','Northern Mindanao',182,'10447','325526730021',/*!50705 0x00000000010100000028B27B9777475F40BAEA4B80ABAA2140,*/'2014-09-25 22:32:36'), +(467,'1621 Tongliao Avenue','','Irkutsk',558,'22173','209342540247',/*!50705 0x000000000101000000C7269E584CE95940E56A1ACA3F604A40,*/'2014-09-25 22:32:58'), +(468,'1844 Usak Avenue','','Nova Scotia',196,'84461','164414772677',/*!50705 0x0000000001010000004205871744C94FC0162B0F779A524640,*/'2014-09-25 22:30:27'), +(469,'1872 Toulon Loop','','OHiggins',428,'7939','928809465153',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:30'), +(470,'1088 Ibirit Place','','Jalisco',595,'88502','49084281333',/*!50705 0x0000000001010000007820578FA0D859C06AE514D33BB93440,*/'2014-09-25 22:32:15'), +(471,'1322 Mosul Parkway','','Shandong',145,'95400','268053970382',/*!50705 0x0000000001010000002856574F779F5D402425E2523ABB4240,*/'2014-09-25 22:30:32'), +(472,'1447 Chatsworth Place','','Chihuahua',129,'41545','769370126331',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:04'), +(473,'1257 Guadalajara Street','','Karnataka',78,'33599','195337700615',/*!50705 0x000000000101000000052049A4C8ED5240E702F2800DD33040,*/'2014-09-25 22:31:14'), +(474,'1469 Plock Lane','','Galicia',388,'95835','622884741180',/*!50705 0x000000000101000000FB44F9DDCF741FC0ED9A90D6182B4540,*/'2014-09-25 22:33:09'), +(475,'434 Ourense (Orense) Manor','','Hodeida',206,'14122','562370137426',/*!50705 0x000000000101000000F56FF2B62D7A4540DF80E03B7B982D40,*/'2014-09-25 22:34:10'), +(476,'270 Tambaram Parkway','','Gauteng',244,'9668','248446668735',/*!50705 0x0000000001010000005B5540EB2B0B3C4082412D61C8333AC0,*/'2014-09-25 22:33:03'), +(477,'1786 Salinas Place','','Nam Ha',359,'66546','206060652238',/*!50705 0x00000000010100000044BD851A2A7E5A40C2DB8310908D3440,*/'2014-09-25 22:34:07'), +(478,'1078 Stara Zagora Drive','','Aceh',301,'69221','932992626595',/*!50705 0x00000000010100000034057CC8A5495840D2C9ADA470B81440,*/'2014-09-25 22:31:33'), +(479,'1854 Okara Boulevard','','Drenthe',158,'42123','131912793873',/*!50705 0x0000000001010000006E8AC745B5A01B40947BCBE6BB634A40,*/'2014-09-25 22:32:21'), +(480,'421 Yaound Street','','Sumy',385,'11363','726875628268',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:33'), +(481,'1153 Allende Way','','Qubec',179,'20336','856872225376',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:26'), +(482,'808 Naala-Porto Parkway','','England',500,'41060','553452430707',/*!50705 0x0000000001010000000E6036A6CC4201C0B9D7930A74B44A40,*/'2014-09-25 22:33:41'), +(483,'632 Usolje-Sibirskoje Parkway','','Ha Darom',36,'73085','667648979883',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:41'), +(484,'98 Pyongyang Boulevard','','Ohio',11,'88749','191958435142',/*!50705 0x0000000001010000008AB1A778376154C0990524AB6C8A4440,*/'2014-09-25 22:33:42'), +(485,'984 Novoterkassk Loop','','Gaziantep',180,'28165','435118527255',/*!50705 0x000000000101000000CAAF7A1BF6B04240AA8889BC9B874240,*/'2014-09-25 22:33:25'), +(486,'64 Korla Street','','Mwanza',347,'25145','510383179153',/*!50705 0x0000000001010000002A28FB9DDC7B40402EBB719C252204C0,*/'2014-09-25 22:33:17'), +(487,'1785 So Bernardo do Campo Street','','Veracruz',125,'71182','684529463244',/*!50705 0x000000000101000000A1551CBD509C57C0141F44D72A223240,*/'2014-09-25 22:32:04'), +(488,'698 Jelets Boulevard','','Denizli',142,'2596','975185523021',/*!50705 0x000000000101000000EECD6F9868163D40B226BB3E18E34240,*/'2014-09-25 22:33:24'), +(489,'1297 Alvorada Parkway','','Ningxia',587,'11839','508348602835',/*!50705 0x0000000001010000001583D1F679915A4029876066E93B4340,*/'2014-09-25 22:30:49'), +(490,'1909 Dayton Avenue','','Guangdong',469,'88513','702955450528',/*!50705 0x0000000001010000007BE0BE6955655C405457998466E43840,*/'2014-09-25 22:30:42'), +(491,'1789 Saint-Denis Parkway','','Coahuila de Zaragoza',4,'8268','936806643983',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:01'), +(492,'185 Mannheim Lane','','Stavropol',408,'23661','589377568313',/*!50705 0x000000000101000000333E82D19B87454024592CEA38064640,*/'2014-09-25 22:32:56'), +(493,'184 Mandaluyong Street','','Baja California Sur',288,'94239','488425406814',/*!50705 0x000000000101000000173B2BB3D2935BC078F6F0C05B233840,*/'2014-09-25 22:32:09'), +(494,'591 Sungai Petani Drive','','Okayama',376,'46400','37247325001',/*!50705 0x0000000001010000001966B2C9EBBD60404CC054D8B1544140,*/'2014-09-25 22:31:51'), +(495,'656 Matamoros Drive','','Boyac',487,'19489','17305839123',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:53'), +(496,'775 ostka Drive','','al-Daqahliya',337,'22358','171973024401',/*!50705 0x000000000101000000FC4DCD8A4D423F403EDF60B9EFB63E40,*/'2014-09-25 22:30:57'), +(497,'1013 Tabuk Boulevard','','West Bengali',261,'96203','158399646978',/*!50705 0x0000000001010000005D1B857F6C1B5640793BC269C1F53640,*/'2014-09-25 22:31:19'), +(498,'319 Plock Parkway','','Istanbul',504,'26101','854259976812',/*!50705 0x000000000101000000B6EFF6C54A453D40277E3100F97A4440,*/'2014-09-25 22:33:28'), +(499,'1954 Kowloon and New Kowloon Way','','Chimborazo',434,'63667','898559280434',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), +(500,'362 Rajkot Lane','','Gansu',47,'98030','962020153680',/*!50705 0x0000000001010000004F6FEB13E50A5A4028733D1B03464240,*/'2014-09-25 22:30:31'), +(501,'1060 Tandil Lane','','Shandong',432,'72349','211256301880',/*!50705 0x000000000101000000CAB61D6423DD5D40ADF1E379BAB64140,*/'2014-09-25 22:30:41'), +(502,'1515 Korla Way','','England',589,'57197','959467760895',/*!50705 0x0000000001010000004C42D8DFC852F1BFBA826DC493FA4A40,*/'2014-09-25 22:33:42'), +(503,'1416 San Juan Bautista Tuxtepec Avenue','','Zufar',444,'50592','144206758053',/*!50705 0x000000000101000000A6684018D30B4B40078662E1DA033140,*/'2014-09-25 22:32:29'), +(504,'1 Valle de Santiago Avenue','','Apulia',93,'86208','465897838272',/*!50705 0x000000000101000000CAFED4D3A2EF3140584D7C5AEA504440,*/'2014-09-25 22:31:43'), +(505,'519 Brescia Parkway','','East Java',318,'69504','793996678771',/*!50705 0x000000000101000000A3C794B487E15B400A230736F8841EC0,*/'2014-09-25 22:31:33'), +(506,'414 Mandaluyong Street','','Lubelskie',314,'16370','52709222667',/*!50705 0x0000000001010000000FE6C0BC1191364020F0C000C2A04940,*/'2014-09-25 22:32:43'), +(507,'1197 Sokoto Boulevard','','West Bengali',478,'87687','868602816371',/*!50705 0x000000000101000000109546CC6C1B56408F0FC4C3C5B53A40,*/'2014-09-25 22:31:27'), +(508,'496 Celaya Drive','','Nagano',552,'90797','759586584889',/*!50705 0x000000000101000000254E3805034961402486D3388A334240,*/'2014-09-25 22:31:54'), +(509,'786 Matsue Way','','Illinois',245,'37469','111177206479',/*!50705 0x0000000001010000000F3B9D75570556C0FA91C77839C34440,*/'2014-09-25 22:33:54'), +(510,'48 Maracabo Place','','Central Luzon',519,'1570','82671830126',/*!50705 0x000000000101000000223999B8D53A5E408D87AD8F3D2D2F40,*/'2014-09-25 22:32:39'), +(511,'1152 al-Qatif Lane','','Kalimantan Barat',412,'44816','131370665218',/*!50705 0x000000000101000000107FA88F9B545B4021037976F9D69FBF,*/'2014-09-25 22:31:34'), +(512,'1269 Ipoh Avenue','','Eskisehir',163,'54674','402630109080',/*!50705 0x000000000101000000E9D32AFA43853E40767D303A6AE34340,*/'2014-09-25 22:33:24'), +(513,'758 Korolev Parkway','','Andhra Pradesh',568,'75474','441628280920',/*!50705 0x00000000010100000031DA99F859285440AF528BD2EF843040,*/'2014-09-25 22:31:29'), +(514,'1747 Rustenburg Place','','Bihar',110,'51369','442673923363',/*!50705 0x0000000001010000000BFD5DE9C62E554041C4BC7D0CC83940,*/'2014-09-25 22:31:14'), +(515,'886 Tonghae Place','','Volgograd',259,'19450','711928348157',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:50'), +(516,'1574 Goinia Boulevard','','Heilongjiang',502,'39529','59634255214',/*!50705 0x00000000010100000017128B73AFBF5F40C5ECC094DC514740,*/'2014-09-25 22:30:43'), +(517,'548 Uruapan Street','','Ontario',312,'35653','879347453467',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:38'), +(519,'962 Tama Loop','','',583,'65952','282667506728',/*!50705 0x000000000101000000FA545FA722DD6440AA7A9EE4B321E1BF,*/'2014-09-25 22:32:19'), +(520,'1778 Gijn Manor','','Hubei',594,'35156','288910576761',/*!50705 0x000000000101000000E358727044305C40A58A3D0F49104040,*/'2014-09-25 22:30:50'), +(521,'568 Dhule (Dhulia) Loop','','Coquimbo',127,'92568','602101369463',/*!50705 0x0000000001010000000000804A296FC5C1DDA85F330AC13EC0,*/'2014-09-25 22:30:30'), +(522,'1768 Udine Loop','','Battambang',60,'32347','448876499197',/*!50705 0x000000000101000000708802C7AFCC59402ABC15D396342A40,*/'2014-09-25 22:30:24'), +(523,'608 Birgunj Parkway','','Taipei',116,'400','627425618482',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:14'), +(524,'680 A Corua (La Corua) Manor','','Sivas',482,'49806','158326114853',/*!50705 0x000000000101000000936EF02A10824240F2F6D676C9DF4340,*/'2014-09-25 22:33:28'), +(525,'1949 Sanya Street','','Gumma',224,'61244','132100972047',/*!50705 0x000000000101000000943F29A406696140E4CA8FAE88284240,*/'2014-09-25 22:31:47'), +(526,'617 Klerksdorp Place','','Khanh Hoa',366,'94707','574973479129',/*!50705 0x0000000001010000004A1751C96F4C5B4032F504D37A7D2840,*/'2014-09-25 22:34:07'), +(527,'1993 0 Loop','','Liaoning',588,'41214','25865528181',/*!50705 0x000000000101000000B65E1D119D8E5E40171A3ED818554440,*/'2014-09-25 22:30:49'), +(528,'1176 Southend-on-Sea Manor','','Southern Tagalog',458,'81651','236679267178',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:39'), +(529,'600 Purnea (Purnia) Avenue','','Nghe An',571,'18043','638409958875',/*!50705 0x000000000101000000962364204F6C5A407A6D365662AC3240,*/'2014-09-25 22:34:07'), +(530,'1003 Qinhuangdao Street','','West Java',419,'25972','35533115997',/*!50705 0x0000000001010000005EA516A55FDC5A40A21639FA4E3A1AC0,*/'2014-09-25 22:31:35'), +(531,'1986 Sivas Place','','Friuli-Venezia Giuli',551,'95775','182059202712',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:44'), +(532,'1427 Tabuk Place','','Florida',101,'31342','214756839122',/*!50705 0x0000000001010000003C702942C57C54C02A5D555117903A40,*/'2014-09-25 22:33:47'), +(533,'556 Asuncin Way','','Mogiljov',339,'35364','338244023543',/*!50705 0x0000000001010000006B6DD04D51583E40673513C259F54A40,*/'2014-09-25 22:30:13'), +(534,'486 Ondo Parkway','','Benguela',67,'35202','105882218332',/*!50705 0x000000000101000000BD83E9C59ACF2A40B9FA56900B2729C0,*/'2014-09-25 22:30:02'), +(535,'635 Brest Manor','','Andhra Pradesh',75,'40899','80593242951',/*!50705 0x00000000010100000079FA52897C615440D2C9ADA4708A3040,*/'2014-09-25 22:31:13'), +(536,'166 Jinchang Street','','Buenos Aires',165,'86760','717566026669',/*!50705 0x0000000001010000003EB896242A434DC0E0771DBB556D41C0,*/'2014-09-25 22:30:05'), +(537,'958 Sagamihara Lane','','Mie',287,'88408','427274926505',/*!50705 0x000000000101000000BED29E37BA1761409B5F837467884140,*/'2014-09-25 22:31:50'), +(538,'1817 Livorno Way','','Khanh Hoa',100,'79401','478380208348',/*!50705 0x000000000101000000944A78422F4A5B40236D3E09C7D72740,*/'2014-09-25 22:34:05'), +(539,'1332 Gaziantep Lane','','Shandong',80,'22813','383353187467',/*!50705 0x000000000101000000BC2F1D2911815D4074B0A316EFAE4240,*/'2014-09-25 22:30:31'), +(540,'949 Allende Lane','','Uttar Pradesh',24,'67521','122981120653',/*!50705 0x0000000001010000008C91DBE5119E534039A8B34934E73C40,*/'2014-09-25 22:31:11'), +(541,'195 Ilorin Street','','Chari-Baguirmi',363,'49250','8912935608',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:29'), +(542,'193 Bhusawal Place','','Kang-won',539,'9750','745267607502',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:07'), +(543,'43 Vilnius Manor','','Colorado',42,'79814','484500282381',/*!50705 0x0000000001010000009389004C3E355AC0D03582435EDD4340,*/'2014-09-25 22:33:44'), +(544,'183 Haiphong Street','','Jilin',46,'69953','488600270038',/*!50705 0x000000000101000000AFA3607C87B45E4038A85890C1CD4640,*/'2014-09-25 22:30:30'), +(545,'163 Augusta-Richmond County Loop','','Carabobo',561,'33030','754579047924',/*!50705 0x000000000101000000CC0C1B657D0051C06B7F677BF4522440,*/'2014-09-25 22:34:05'), +(546,'191 Jos Azueta Parkway','','Ruse',436,'13629','932156667696',/*!50705 0x00000000010100000067A9ABF188F83940CD6CA1759EED4540,*/'2014-09-25 22:30:23'), +(547,'379 Lublin Parkway','','Toscana',309,'74568','921960450089',/*!50705 0x00000000010100000090920D5AFEA62440CC13BEADAAC54540,*/'2014-09-25 22:31:44'), +(548,'1658 Cuman Loop','','Sumatera Selatan',396,'51309','784907335610',/*!50705 0x00000000010100000018D75306E9885A40E8209EDB3A4E01C0,*/'2014-09-25 22:31:34'), +(549,'454 Qinhuangdao Drive','','Tadla-Azilal',68,'25866','786270036240',/*!50705 0x000000000101000000419479F53B6619C04F09E3022B2B4040,*/'2014-09-25 22:32:16'), +(550,'1715 Okayama Street','','So Paulo',485,'55676','169352919175',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:22'), +(551,'182 Nukualofa Drive','','Sumy',275,'15414','426346224043',/*!50705 0x00000000010100000079F71109F099404055BBCBEAC29E4940,*/'2014-09-25 22:33:32'), +(552,'390 Wroclaw Way','','Hainan',462,'5753','357593328658',/*!50705 0x000000000101000000F70FD88B57605B40364E5480393E3240,*/'2014-09-25 22:30:41'), +(553,'1421 Quilmes Lane','','Ishikawa',260,'19151','135407755975',/*!50705 0x0000000001010000008F9F32A30414614053AEF02E174C4240,*/'2014-09-25 22:31:49'), +(554,'947 Trshavn Place','','Central Luzon',528,'841','50898428626',/*!50705 0x000000000101000000C56DD9C644265E4002B5BD82D9F52E40,*/'2014-09-25 22:32:40'), +(555,'1764 Jalib al-Shuyukh Parkway','','Galicia',459,'77642','84794532510',/*!50705 0x00000000010100000090FFB8B3651721C09DB23FF5B4704540,*/'2014-09-25 22:33:10'), +(556,'346 Cam Ranh Avenue','','Zhejiang',599,'39976','978430786151',/*!50705 0x000000000101000000A0E63FFF188D5E4056DBA8A9C0023E40,*/'2014-09-25 22:30:51'), +(557,'1407 Pachuca de Soto Place','','Rio Grande do Sul',21,'26284','380077794770',/*!50705 0x000000000101000000A3CEDC43C28449C0608209922DFD3DC0,*/'2014-09-25 22:30:14'), +(558,'904 Clarksville Drive','','Zhejiang',193,'52234','955349440539',/*!50705 0x000000000101000000E5886B6BFA2A5E4038E04E7D7B7A3E40,*/'2014-09-25 22:30:34'), +(559,'1917 Kumbakonam Parkway','','Vojvodina',368,'11892','698182547686',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:11'), +(560,'1447 Imus Place','','Gujarat',426,'12905','62127829280',/*!50705 0x000000000101000000667F4523C4B25140819C8B1AA74A3640,*/'2014-09-25 22:31:25'), +(561,'1497 Fengshan Drive','','KwaZulu-Natal',112,'63022','368738360376',/*!50705 0x000000000101000000938FDD054AE43E402AF97DA42DEB3DC0,*/'2014-09-25 22:33:03'), +(562,'869 Shikarpur Way','','England',496,'57380','590764256785',/*!50705 0x000000000101000000894FF003460D08C0828472ECEAD24A40,*/'2014-09-25 22:33:40'), +(563,'1059 Yuncheng Avenue','','Vilna',570,'47498','107092893983',/*!50705 0x00000000010100000046B82462A5473940BA0ACE8536584B40,*/'2014-09-25 22:31:58'), +(564,'505 Madiun Boulevard','','Dolnoslaskie',577,'97271','970638808606',/*!50705 0x000000000101000000F0D46D9A8808314023A93B05AF914940,*/'2014-09-25 22:32:44'), +(565,'1741 Hoshiarpur Boulevard','','al-Sharqiya',79,'22372','855066328617',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:30:56'), +(566,'1229 Varanasi (Benares) Manor','','Buenos Aires',43,'40195','817740355461',/*!50705 0x00000000010100000014DA28A1AA2A4DC02E156580555541C0,*/'2014-09-25 22:30:04'), +(567,'1894 Boa Vista Way','','Texas',178,'77464','239357986667',/*!50705 0x000000000101000000C1D1448EE32858C0AD8D0CCDD0744040,*/'2014-09-25 22:33:51'), +(568,'1342 Sharja Way','','Sokoto & Kebbi & Zam',488,'93655','946114054231',/*!50705 0x0000000001010000005B087250C2F41440E711ED74311F2A40,*/'2014-09-25 22:32:27'), +(569,'1342 Abha Boulevard','','Bukarest',95,'10714','997453607116',/*!50705 0x000000000101000000924FD9FA331B3A40B1CBA61254374640,*/'2014-09-25 22:32:46'), +(570,'415 Pune Avenue','','Shandong',580,'44274','203202500108',/*!50705 0x000000000101000000CC3857DE1F705D408F26CDD545F34140,*/'2014-09-25 22:30:47'), +(571,'1746 Faaa Way','','Huanuco',214,'32515','863080561151',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:33'), +(572,'539 Hami Way','','Tokat',538,'52196','525518075499',/*!50705 0x0000000001010000006F302F1BF8464240AD7B759F2D284440,*/'2014-09-25 22:33:29'), +(573,'1407 Surakarta Manor','','Moskova',466,'33224','324346485054',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:56'), +(574,'502 Mandi Bahauddin Parkway','','Anzotegui',55,'15992','618156722572',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:34:03'), +(575,'1052 Pathankot Avenue','','Sichuan',299,'77397','128499386727',/*!50705 0x000000000101000000AA054026E3F05940CCC12275F18F3D40,*/'2014-09-25 22:30:39'), +(576,'1351 Sousse Lane','','Coahuila de Zaragoza',341,'37815','203804046132',/*!50705 0x0000000001010000006AB86D84EA5A59C027AA12C028E83A40,*/'2014-09-25 22:32:10'), +(577,'1501 Pangkal Pinang Avenue','','Mazowieckie',409,'943','770864062795',/*!50705 0x0000000001010000001646C4DED5B43340308AD46AFE454A40,*/'2014-09-25 22:32:43'), +(578,'1405 Hagonoy Avenue','','Slaskie',133,'86587','867287719310',/*!50705 0x0000000001010000002431F77FC41F3340F5B06197F2654940,*/'2014-09-25 22:32:42'), +(579,'521 San Juan Bautista Tuxtepec Place','','Qaraghandy',598,'95093','844018348565',/*!50705 0x0000000001010000006848CB3711F15040E32A604C44E44740,*/'2014-09-25 22:31:56'), +(580,'923 Tangail Boulevard','','Tokyo-to',10,'33384','315528269898',/*!50705 0x00000000010100000078E5C468A76B6140C3A27D079ADA4140,*/'2014-09-25 22:31:45'), +(581,'186 Skikda Lane','','Morelos',131,'89422','14465669789',/*!50705 0x00000000010100000048C2BE9DC4CE58C0DA3DD4111BED3240,*/'2014-09-25 22:32:05'), +(582,'1568 Celaya Parkway','','Kaohsiung',168,'34750','278669994384',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:15'), +(583,'1489 Kakamigahara Lane','','Taipei',526,'98883','29341849811',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:16'), +(584,'1819 Alessandria Loop','','Campeche',103,'53829','377633994405',/*!50705 0x0000000001010000008636A5611DF556C0374F1A0F5BA53240,*/'2014-09-25 22:32:02'), +(585,'1208 Tama Loop','','Ninawa',344,'73605','954786054144',/*!50705 0x000000000101000000314F9DFD378F4540961EF23BF22A4240,*/'2014-09-25 22:31:40'), +(586,'951 Springs Lane','','Central Mindanao',219,'96115','165164761435',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:37'), +(587,'760 Miyakonojo Drive','','Guerrero',246,'64682','294449058179',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:32:08'), +(588,'966 Asuncin Way','','Hidalgo',212,'62703','995527378381',/*!50705 0x000000000101000000EBBD4230D89A58C0E30632F1FD233540,*/'2014-09-25 22:32:07'), +(589,'1584 Ljubertsy Lane','','England',494,'22954','285710089439',/*!50705 0x00000000010100000035385B8AF577F6BF8C7560EFB4734940,*/'2014-09-25 22:33:38'), +(590,'247 Jining Parkway','','Banjul',54,'53446','170115379190',/*!50705 0x0000000001010000001BE4E434FA9330C08A8F4FC8CEE72A40,*/'2014-09-25 22:31:04'), +(591,'773 Dallas Manor','','Buenos Aires',424,'12664','914466027044',/*!50705 0x00000000010100000009C3802557204DC0B75CA21FB25C41C0,*/'2014-09-25 22:30:06'), +(592,'1923 Stara Zagora Lane','','Nantou',546,'95179','182178609211',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:33:17'), +(593,'1402 Zanzibar Boulevard','','Guanajuato',106,'71102','387448063440',/*!50705 0x000000000101000000FCB7DCAA353459C05CA8A1B206863440,*/'2014-09-25 22:32:03'), +(594,'1464 Kursk Parkway','','Shandong',574,'17381','338758048786',/*!50705 0x0000000001010000008CA2073E86C65D40055669E6245B4240,*/'2014-09-25 22:30:44'), +(595,'1074 Sanaa Parkway','','Loja',311,'22474','154124128457',/*!50705 0x00000000010100000092DBE51112CD53C00EF96706F1F10FC0,*/'2014-09-25 22:30:55'), +(596,'1759 Niznekamsk Avenue','','al-Manama',14,'39414','864392582257',/*!50705 0x000000000101000000044D9539A74A49401224004922373A40,*/'2014-09-25 22:30:11'), +(597,'32 Liaocheng Way','','Minas Gerais',248,'1944','410877354933',/*!50705 0x000000000101000000C2757BFFD5AC45C0424F1432A1C335C0,*/'2014-09-25 22:30:19'), +(598,'42 Fontana Avenue','','Fejr',512,'14684','437829801725',/*!50705 0x00000000010100000000000000000000000000000000000000,*/'2014-09-25 22:31:09'), +(599,'1895 Zhezqazghan Drive','','California',177,'36693','137809746111',/*!50705 0x0000000001010000003EC7ECD1407C5DC057FA1A930FE34040,*/'2014-09-25 22:33:51'), +(600,'1837 Kaduna Parkway','','Inner Mongolia',241,'82580','640843562301',/*!50705 0x000000000101000000D61A4AEDC5465C400E64E2FB87834440,*/'2014-09-25 22:30:37'), +(601,'844 Bucuresti Place','','Liaoning',242,'36603','935952366111',/*!50705 0x000000000101000000B88086EDDD6D5E407CED9925018D4340,*/'2014-09-25 22:30:37'), +(602,'1101 Bucuresti Boulevard','','West Greece',401,'97661','199514580428',/*!50705 0x000000000101000000AAC1EA7E04BC3540E65F26E5491F4340,*/'2014-09-25 22:31:07'), +(603,'1103 Quilmes Boulevard','','Piura',503,'52137','644021380889',/*!50705 0x000000000101000000AD9685C0DB2B54C09B012EC8969D13C0,*/'2014-09-25 22:32:34'), +(604,'1331 Usak Boulevard','','Vaud',296,'61960','145308717464',/*!50705 0x000000000101000000CE273CB203881A40205734E72A424740,*/'2014-09-25 22:33:14'), +(605,'1325 Fukuyama Street','','Heilongjiang',537,'27107','288241215394',/*!50705 0x00000000010100000017540A70700160401E1C47077F7D4740,*/'2014-09-25 22:30:44'); +COMMIT; + +-- +-- Dumping data for table category +-- + +SET AUTOCOMMIT=0; +INSERT INTO category VALUES (1,'Action','2006-02-15 04:46:27'), +(2,'Animation','2006-02-15 04:46:27'), +(3,'Children','2006-02-15 04:46:27'), +(4,'Classics','2006-02-15 04:46:27'), +(5,'Comedy','2006-02-15 04:46:27'), +(6,'Documentary','2006-02-15 04:46:27'), +(7,'Drama','2006-02-15 04:46:27'), +(8,'Family','2006-02-15 04:46:27'), +(9,'Foreign','2006-02-15 04:46:27'), +(10,'Games','2006-02-15 04:46:27'), +(11,'Horror','2006-02-15 04:46:27'), +(12,'Music','2006-02-15 04:46:27'), +(13,'New','2006-02-15 04:46:27'), +(14,'Sci-Fi','2006-02-15 04:46:27'), +(15,'Sports','2006-02-15 04:46:27'), +(16,'Travel','2006-02-15 04:46:27'); +COMMIT; + +-- +-- Dumping data for table city +-- + +SET AUTOCOMMIT=0; +INSERT INTO city VALUES (1,'A Corua (La Corua)',87,'2006-02-15 04:45:25'), +(2,'Abha',82,'2006-02-15 04:45:25'), +(3,'Abu Dhabi',101,'2006-02-15 04:45:25'), +(4,'Acua',60,'2006-02-15 04:45:25'), +(5,'Adana',97,'2006-02-15 04:45:25'), +(6,'Addis Abeba',31,'2006-02-15 04:45:25'), +(7,'Aden',107,'2006-02-15 04:45:25'), +(8,'Adoni',44,'2006-02-15 04:45:25'), +(9,'Ahmadnagar',44,'2006-02-15 04:45:25'), +(10,'Akishima',50,'2006-02-15 04:45:25'), +(11,'Akron',103,'2006-02-15 04:45:25'), +(12,'al-Ayn',101,'2006-02-15 04:45:25'), +(13,'al-Hawiya',82,'2006-02-15 04:45:25'), +(14,'al-Manama',11,'2006-02-15 04:45:25'), +(15,'al-Qadarif',89,'2006-02-15 04:45:25'), +(16,'al-Qatif',82,'2006-02-15 04:45:25'), +(17,'Alessandria',49,'2006-02-15 04:45:25'), +(18,'Allappuzha (Alleppey)',44,'2006-02-15 04:45:25'), +(19,'Allende',60,'2006-02-15 04:45:25'), +(20,'Almirante Brown',6,'2006-02-15 04:45:25'), +(21,'Alvorada',15,'2006-02-15 04:45:25'), +(22,'Ambattur',44,'2006-02-15 04:45:25'), +(23,'Amersfoort',67,'2006-02-15 04:45:25'), +(24,'Amroha',44,'2006-02-15 04:45:25'), +(25,'Angra dos Reis',15,'2006-02-15 04:45:25'), +(26,'Anpolis',15,'2006-02-15 04:45:25'), +(27,'Antofagasta',22,'2006-02-15 04:45:25'), +(28,'Aparecida de Goinia',15,'2006-02-15 04:45:25'), +(29,'Apeldoorn',67,'2006-02-15 04:45:25'), +(30,'Araatuba',15,'2006-02-15 04:45:25'), +(31,'Arak',46,'2006-02-15 04:45:25'), +(32,'Arecibo',77,'2006-02-15 04:45:25'), +(33,'Arlington',103,'2006-02-15 04:45:25'), +(34,'Ashdod',48,'2006-02-15 04:45:25'), +(35,'Ashgabat',98,'2006-02-15 04:45:25'), +(36,'Ashqelon',48,'2006-02-15 04:45:25'), +(37,'Asuncin',73,'2006-02-15 04:45:25'), +(38,'Athenai',39,'2006-02-15 04:45:25'), +(39,'Atinsk',80,'2006-02-15 04:45:25'), +(40,'Atlixco',60,'2006-02-15 04:45:25'), +(41,'Augusta-Richmond County',103,'2006-02-15 04:45:25'), +(42,'Aurora',103,'2006-02-15 04:45:25'), +(43,'Avellaneda',6,'2006-02-15 04:45:25'), +(44,'Bag',15,'2006-02-15 04:45:25'), +(45,'Baha Blanca',6,'2006-02-15 04:45:25'), +(46,'Baicheng',23,'2006-02-15 04:45:25'), +(47,'Baiyin',23,'2006-02-15 04:45:25'), +(48,'Baku',10,'2006-02-15 04:45:25'), +(49,'Balaiha',80,'2006-02-15 04:45:25'), +(50,'Balikesir',97,'2006-02-15 04:45:25'), +(51,'Balurghat',44,'2006-02-15 04:45:25'), +(52,'Bamenda',19,'2006-02-15 04:45:25'), +(53,'Bandar Seri Begawan',16,'2006-02-15 04:45:25'), +(54,'Banjul',37,'2006-02-15 04:45:25'), +(55,'Barcelona',104,'2006-02-15 04:45:25'), +(56,'Basel',91,'2006-02-15 04:45:25'), +(57,'Bat Yam',48,'2006-02-15 04:45:25'), +(58,'Batman',97,'2006-02-15 04:45:25'), +(59,'Batna',2,'2006-02-15 04:45:25'), +(60,'Battambang',18,'2006-02-15 04:45:25'), +(61,'Baybay',75,'2006-02-15 04:45:25'), +(62,'Bayugan',75,'2006-02-15 04:45:25'), +(63,'Bchar',2,'2006-02-15 04:45:25'), +(64,'Beira',63,'2006-02-15 04:45:25'), +(65,'Bellevue',103,'2006-02-15 04:45:25'), +(66,'Belm',15,'2006-02-15 04:45:25'), +(67,'Benguela',4,'2006-02-15 04:45:25'), +(68,'Beni-Mellal',62,'2006-02-15 04:45:25'), +(69,'Benin City',69,'2006-02-15 04:45:25'), +(70,'Bergamo',49,'2006-02-15 04:45:25'), +(71,'Berhampore (Baharampur)',44,'2006-02-15 04:45:25'), +(72,'Bern',91,'2006-02-15 04:45:25'), +(73,'Bhavnagar',44,'2006-02-15 04:45:25'), +(74,'Bhilwara',44,'2006-02-15 04:45:25'), +(75,'Bhimavaram',44,'2006-02-15 04:45:25'), +(76,'Bhopal',44,'2006-02-15 04:45:25'), +(77,'Bhusawal',44,'2006-02-15 04:45:25'), +(78,'Bijapur',44,'2006-02-15 04:45:25'), +(79,'Bilbays',29,'2006-02-15 04:45:25'), +(80,'Binzhou',23,'2006-02-15 04:45:25'), +(81,'Birgunj',66,'2006-02-15 04:45:25'), +(82,'Bislig',75,'2006-02-15 04:45:25'), +(83,'Blumenau',15,'2006-02-15 04:45:25'), +(84,'Boa Vista',15,'2006-02-15 04:45:25'), +(85,'Boksburg',85,'2006-02-15 04:45:25'), +(86,'Botosani',78,'2006-02-15 04:45:25'), +(87,'Botshabelo',85,'2006-02-15 04:45:25'), +(88,'Bradford',102,'2006-02-15 04:45:25'), +(89,'Braslia',15,'2006-02-15 04:45:25'), +(90,'Bratislava',84,'2006-02-15 04:45:25'), +(91,'Brescia',49,'2006-02-15 04:45:25'), +(92,'Brest',34,'2006-02-15 04:45:25'), +(93,'Brindisi',49,'2006-02-15 04:45:25'), +(94,'Brockton',103,'2006-02-15 04:45:25'), +(95,'Bucuresti',78,'2006-02-15 04:45:25'), +(96,'Buenaventura',24,'2006-02-15 04:45:25'), +(97,'Bydgoszcz',76,'2006-02-15 04:45:25'), +(98,'Cabuyao',75,'2006-02-15 04:45:25'), +(99,'Callao',74,'2006-02-15 04:45:25'), +(100,'Cam Ranh',105,'2006-02-15 04:45:25'), +(101,'Cape Coral',103,'2006-02-15 04:45:25'), +(102,'Caracas',104,'2006-02-15 04:45:25'), +(103,'Carmen',60,'2006-02-15 04:45:25'), +(104,'Cavite',75,'2006-02-15 04:45:25'), +(105,'Cayenne',35,'2006-02-15 04:45:25'), +(106,'Celaya',60,'2006-02-15 04:45:25'), +(107,'Chandrapur',44,'2006-02-15 04:45:25'), +(108,'Changhwa',92,'2006-02-15 04:45:25'), +(109,'Changzhou',23,'2006-02-15 04:45:25'), +(110,'Chapra',44,'2006-02-15 04:45:25'), +(111,'Charlotte Amalie',106,'2006-02-15 04:45:25'), +(112,'Chatsworth',85,'2006-02-15 04:45:25'), +(113,'Cheju',86,'2006-02-15 04:45:25'), +(114,'Chiayi',92,'2006-02-15 04:45:25'), +(115,'Chisinau',61,'2006-02-15 04:45:25'), +(116,'Chungho',92,'2006-02-15 04:45:25'), +(117,'Cianjur',45,'2006-02-15 04:45:25'), +(118,'Ciomas',45,'2006-02-15 04:45:25'), +(119,'Ciparay',45,'2006-02-15 04:45:25'), +(120,'Citrus Heights',103,'2006-02-15 04:45:25'), +(121,'Citt del Vaticano',41,'2006-02-15 04:45:25'), +(122,'Ciudad del Este',73,'2006-02-15 04:45:25'), +(123,'Clarksville',103,'2006-02-15 04:45:25'), +(124,'Coacalco de Berriozbal',60,'2006-02-15 04:45:25'), +(125,'Coatzacoalcos',60,'2006-02-15 04:45:25'), +(126,'Compton',103,'2006-02-15 04:45:25'), +(127,'Coquimbo',22,'2006-02-15 04:45:25'), +(128,'Crdoba',6,'2006-02-15 04:45:25'), +(129,'Cuauhtmoc',60,'2006-02-15 04:45:25'), +(130,'Cuautla',60,'2006-02-15 04:45:25'), +(131,'Cuernavaca',60,'2006-02-15 04:45:25'), +(132,'Cuman',104,'2006-02-15 04:45:25'), +(133,'Czestochowa',76,'2006-02-15 04:45:25'), +(134,'Dadu',72,'2006-02-15 04:45:25'), +(135,'Dallas',103,'2006-02-15 04:45:25'), +(136,'Datong',23,'2006-02-15 04:45:25'), +(137,'Daugavpils',54,'2006-02-15 04:45:25'), +(138,'Davao',75,'2006-02-15 04:45:25'), +(139,'Daxian',23,'2006-02-15 04:45:25'), +(140,'Dayton',103,'2006-02-15 04:45:25'), +(141,'Deba Habe',69,'2006-02-15 04:45:25'), +(142,'Denizli',97,'2006-02-15 04:45:25'), +(143,'Dhaka',12,'2006-02-15 04:45:25'), +(144,'Dhule (Dhulia)',44,'2006-02-15 04:45:25'), +(145,'Dongying',23,'2006-02-15 04:45:25'), +(146,'Donostia-San Sebastin',87,'2006-02-15 04:45:25'), +(147,'Dos Quebradas',24,'2006-02-15 04:45:25'), +(148,'Duisburg',38,'2006-02-15 04:45:25'), +(149,'Dundee',102,'2006-02-15 04:45:25'), +(150,'Dzerzinsk',80,'2006-02-15 04:45:25'), +(151,'Ede',67,'2006-02-15 04:45:25'), +(152,'Effon-Alaiye',69,'2006-02-15 04:45:25'), +(153,'El Alto',14,'2006-02-15 04:45:25'), +(154,'El Fuerte',60,'2006-02-15 04:45:25'), +(155,'El Monte',103,'2006-02-15 04:45:25'), +(156,'Elista',80,'2006-02-15 04:45:25'), +(157,'Emeishan',23,'2006-02-15 04:45:25'), +(158,'Emmen',67,'2006-02-15 04:45:25'), +(159,'Enshi',23,'2006-02-15 04:45:25'), +(160,'Erlangen',38,'2006-02-15 04:45:25'), +(161,'Escobar',6,'2006-02-15 04:45:25'), +(162,'Esfahan',46,'2006-02-15 04:45:25'), +(163,'Eskisehir',97,'2006-02-15 04:45:25'), +(164,'Etawah',44,'2006-02-15 04:45:25'), +(165,'Ezeiza',6,'2006-02-15 04:45:25'), +(166,'Ezhou',23,'2006-02-15 04:45:25'), +(167,'Faaa',36,'2006-02-15 04:45:25'), +(168,'Fengshan',92,'2006-02-15 04:45:25'), +(169,'Firozabad',44,'2006-02-15 04:45:25'), +(170,'Florencia',24,'2006-02-15 04:45:25'), +(171,'Fontana',103,'2006-02-15 04:45:25'), +(172,'Fukuyama',50,'2006-02-15 04:45:25'), +(173,'Funafuti',99,'2006-02-15 04:45:25'), +(174,'Fuyu',23,'2006-02-15 04:45:25'), +(175,'Fuzhou',23,'2006-02-15 04:45:25'), +(176,'Gandhinagar',44,'2006-02-15 04:45:25'), +(177,'Garden Grove',103,'2006-02-15 04:45:25'), +(178,'Garland',103,'2006-02-15 04:45:25'), +(179,'Gatineau',20,'2006-02-15 04:45:25'), +(180,'Gaziantep',97,'2006-02-15 04:45:25'), +(181,'Gijn',87,'2006-02-15 04:45:25'), +(182,'Gingoog',75,'2006-02-15 04:45:25'), +(183,'Goinia',15,'2006-02-15 04:45:25'), +(184,'Gorontalo',45,'2006-02-15 04:45:25'), +(185,'Grand Prairie',103,'2006-02-15 04:45:25'), +(186,'Graz',9,'2006-02-15 04:45:25'), +(187,'Greensboro',103,'2006-02-15 04:45:25'), +(188,'Guadalajara',60,'2006-02-15 04:45:25'), +(189,'Guaruj',15,'2006-02-15 04:45:25'), +(190,'guas Lindas de Gois',15,'2006-02-15 04:45:25'), +(191,'Gulbarga',44,'2006-02-15 04:45:25'), +(192,'Hagonoy',75,'2006-02-15 04:45:25'), +(193,'Haining',23,'2006-02-15 04:45:25'), +(194,'Haiphong',105,'2006-02-15 04:45:25'), +(195,'Haldia',44,'2006-02-15 04:45:25'), +(196,'Halifax',20,'2006-02-15 04:45:25'), +(197,'Halisahar',44,'2006-02-15 04:45:25'), +(198,'Halle/Saale',38,'2006-02-15 04:45:25'), +(199,'Hami',23,'2006-02-15 04:45:25'), +(200,'Hamilton',68,'2006-02-15 04:45:25'), +(201,'Hanoi',105,'2006-02-15 04:45:25'), +(202,'Hidalgo',60,'2006-02-15 04:45:25'), +(203,'Higashiosaka',50,'2006-02-15 04:45:25'), +(204,'Hino',50,'2006-02-15 04:45:25'), +(205,'Hiroshima',50,'2006-02-15 04:45:25'), +(206,'Hodeida',107,'2006-02-15 04:45:25'), +(207,'Hohhot',23,'2006-02-15 04:45:25'), +(208,'Hoshiarpur',44,'2006-02-15 04:45:25'), +(209,'Hsichuh',92,'2006-02-15 04:45:25'), +(210,'Huaian',23,'2006-02-15 04:45:25'), +(211,'Hubli-Dharwad',44,'2006-02-15 04:45:25'), +(212,'Huejutla de Reyes',60,'2006-02-15 04:45:25'), +(213,'Huixquilucan',60,'2006-02-15 04:45:25'), +(214,'Hunuco',74,'2006-02-15 04:45:25'), +(215,'Ibirit',15,'2006-02-15 04:45:25'), +(216,'Idfu',29,'2006-02-15 04:45:25'), +(217,'Ife',69,'2006-02-15 04:45:25'), +(218,'Ikerre',69,'2006-02-15 04:45:25'), +(219,'Iligan',75,'2006-02-15 04:45:25'), +(220,'Ilorin',69,'2006-02-15 04:45:25'), +(221,'Imus',75,'2006-02-15 04:45:25'), +(222,'Inegl',97,'2006-02-15 04:45:25'), +(223,'Ipoh',59,'2006-02-15 04:45:25'), +(224,'Isesaki',50,'2006-02-15 04:45:25'), +(225,'Ivanovo',80,'2006-02-15 04:45:25'), +(226,'Iwaki',50,'2006-02-15 04:45:25'), +(227,'Iwakuni',50,'2006-02-15 04:45:25'), +(228,'Iwatsuki',50,'2006-02-15 04:45:25'), +(229,'Izumisano',50,'2006-02-15 04:45:25'), +(230,'Jaffna',88,'2006-02-15 04:45:25'), +(231,'Jaipur',44,'2006-02-15 04:45:25'), +(232,'Jakarta',45,'2006-02-15 04:45:25'), +(233,'Jalib al-Shuyukh',53,'2006-02-15 04:45:25'), +(234,'Jamalpur',12,'2006-02-15 04:45:25'), +(235,'Jaroslavl',80,'2006-02-15 04:45:25'), +(236,'Jastrzebie-Zdrj',76,'2006-02-15 04:45:25'), +(237,'Jedda',82,'2006-02-15 04:45:25'), +(238,'Jelets',80,'2006-02-15 04:45:25'), +(239,'Jhansi',44,'2006-02-15 04:45:25'), +(240,'Jinchang',23,'2006-02-15 04:45:25'), +(241,'Jining',23,'2006-02-15 04:45:25'), +(242,'Jinzhou',23,'2006-02-15 04:45:25'), +(243,'Jodhpur',44,'2006-02-15 04:45:25'), +(244,'Johannesburg',85,'2006-02-15 04:45:25'), +(245,'Joliet',103,'2006-02-15 04:45:25'), +(246,'Jos Azueta',60,'2006-02-15 04:45:25'), +(247,'Juazeiro do Norte',15,'2006-02-15 04:45:25'), +(248,'Juiz de Fora',15,'2006-02-15 04:45:25'), +(249,'Junan',23,'2006-02-15 04:45:25'), +(250,'Jurez',60,'2006-02-15 04:45:25'), +(251,'Kabul',1,'2006-02-15 04:45:25'), +(252,'Kaduna',69,'2006-02-15 04:45:25'), +(253,'Kakamigahara',50,'2006-02-15 04:45:25'), +(254,'Kaliningrad',80,'2006-02-15 04:45:25'), +(255,'Kalisz',76,'2006-02-15 04:45:25'), +(256,'Kamakura',50,'2006-02-15 04:45:25'), +(257,'Kamarhati',44,'2006-02-15 04:45:25'), +(258,'Kamjanets-Podilskyi',100,'2006-02-15 04:45:25'), +(259,'Kamyin',80,'2006-02-15 04:45:25'), +(260,'Kanazawa',50,'2006-02-15 04:45:25'), +(261,'Kanchrapara',44,'2006-02-15 04:45:25'), +(262,'Kansas City',103,'2006-02-15 04:45:25'), +(263,'Karnal',44,'2006-02-15 04:45:25'), +(264,'Katihar',44,'2006-02-15 04:45:25'), +(265,'Kermanshah',46,'2006-02-15 04:45:25'), +(266,'Kilis',97,'2006-02-15 04:45:25'), +(267,'Kimberley',85,'2006-02-15 04:45:25'), +(268,'Kimchon',86,'2006-02-15 04:45:25'), +(269,'Kingstown',81,'2006-02-15 04:45:25'), +(270,'Kirovo-Tepetsk',80,'2006-02-15 04:45:25'), +(271,'Kisumu',52,'2006-02-15 04:45:25'), +(272,'Kitwe',109,'2006-02-15 04:45:25'), +(273,'Klerksdorp',85,'2006-02-15 04:45:25'), +(274,'Kolpino',80,'2006-02-15 04:45:25'), +(275,'Konotop',100,'2006-02-15 04:45:25'), +(276,'Koriyama',50,'2006-02-15 04:45:25'), +(277,'Korla',23,'2006-02-15 04:45:25'), +(278,'Korolev',80,'2006-02-15 04:45:25'), +(279,'Kowloon and New Kowloon',42,'2006-02-15 04:45:25'), +(280,'Kragujevac',108,'2006-02-15 04:45:25'), +(281,'Ktahya',97,'2006-02-15 04:45:25'), +(282,'Kuching',59,'2006-02-15 04:45:25'), +(283,'Kumbakonam',44,'2006-02-15 04:45:25'), +(284,'Kurashiki',50,'2006-02-15 04:45:25'), +(285,'Kurgan',80,'2006-02-15 04:45:25'), +(286,'Kursk',80,'2006-02-15 04:45:25'), +(287,'Kuwana',50,'2006-02-15 04:45:25'), +(288,'La Paz',60,'2006-02-15 04:45:25'), +(289,'La Plata',6,'2006-02-15 04:45:25'), +(290,'La Romana',27,'2006-02-15 04:45:25'), +(291,'Laiwu',23,'2006-02-15 04:45:25'), +(292,'Lancaster',103,'2006-02-15 04:45:25'), +(293,'Laohekou',23,'2006-02-15 04:45:25'), +(294,'Lapu-Lapu',75,'2006-02-15 04:45:25'), +(295,'Laredo',103,'2006-02-15 04:45:25'), +(296,'Lausanne',91,'2006-02-15 04:45:25'), +(297,'Le Mans',34,'2006-02-15 04:45:25'), +(298,'Lengshuijiang',23,'2006-02-15 04:45:25'), +(299,'Leshan',23,'2006-02-15 04:45:25'), +(300,'Lethbridge',20,'2006-02-15 04:45:25'), +(301,'Lhokseumawe',45,'2006-02-15 04:45:25'), +(302,'Liaocheng',23,'2006-02-15 04:45:25'), +(303,'Liepaja',54,'2006-02-15 04:45:25'), +(304,'Lilongwe',58,'2006-02-15 04:45:25'), +(305,'Lima',74,'2006-02-15 04:45:25'), +(306,'Lincoln',103,'2006-02-15 04:45:25'), +(307,'Linz',9,'2006-02-15 04:45:25'), +(308,'Lipetsk',80,'2006-02-15 04:45:25'), +(309,'Livorno',49,'2006-02-15 04:45:25'), +(310,'Ljubertsy',80,'2006-02-15 04:45:25'), +(311,'Loja',28,'2006-02-15 04:45:25'), +(312,'London',102,'2006-02-15 04:45:25'), +(313,'London',20,'2006-02-15 04:45:25'), +(314,'Lublin',76,'2006-02-15 04:45:25'), +(315,'Lubumbashi',25,'2006-02-15 04:45:25'), +(316,'Lungtan',92,'2006-02-15 04:45:25'), +(317,'Luzinia',15,'2006-02-15 04:45:25'), +(318,'Madiun',45,'2006-02-15 04:45:25'), +(319,'Mahajanga',57,'2006-02-15 04:45:25'), +(320,'Maikop',80,'2006-02-15 04:45:25'), +(321,'Malm',90,'2006-02-15 04:45:25'), +(322,'Manchester',103,'2006-02-15 04:45:25'), +(323,'Mandaluyong',75,'2006-02-15 04:45:25'), +(324,'Mandi Bahauddin',72,'2006-02-15 04:45:25'), +(325,'Mannheim',38,'2006-02-15 04:45:25'), +(326,'Maracabo',104,'2006-02-15 04:45:25'), +(327,'Mardan',72,'2006-02-15 04:45:25'), +(328,'Maring',15,'2006-02-15 04:45:25'), +(329,'Masqat',71,'2006-02-15 04:45:25'), +(330,'Matamoros',60,'2006-02-15 04:45:25'), +(331,'Matsue',50,'2006-02-15 04:45:25'), +(332,'Meixian',23,'2006-02-15 04:45:25'), +(333,'Memphis',103,'2006-02-15 04:45:25'), +(334,'Merlo',6,'2006-02-15 04:45:25'), +(335,'Mexicali',60,'2006-02-15 04:45:25'), +(336,'Miraj',44,'2006-02-15 04:45:25'), +(337,'Mit Ghamr',29,'2006-02-15 04:45:25'), +(338,'Miyakonojo',50,'2006-02-15 04:45:25'), +(339,'Mogiljov',13,'2006-02-15 04:45:25'), +(340,'Molodetno',13,'2006-02-15 04:45:25'), +(341,'Monclova',60,'2006-02-15 04:45:25'), +(342,'Monywa',64,'2006-02-15 04:45:25'), +(343,'Moscow',80,'2006-02-15 04:45:25'), +(344,'Mosul',47,'2006-02-15 04:45:25'), +(345,'Mukateve',100,'2006-02-15 04:45:25'), +(346,'Munger (Monghyr)',44,'2006-02-15 04:45:25'), +(347,'Mwanza',93,'2006-02-15 04:45:25'), +(348,'Mwene-Ditu',25,'2006-02-15 04:45:25'), +(349,'Myingyan',64,'2006-02-15 04:45:25'), +(350,'Mysore',44,'2006-02-15 04:45:25'), +(351,'Naala-Porto',63,'2006-02-15 04:45:25'), +(352,'Nabereznyje Telny',80,'2006-02-15 04:45:25'), +(353,'Nador',62,'2006-02-15 04:45:25'), +(354,'Nagaon',44,'2006-02-15 04:45:25'), +(355,'Nagareyama',50,'2006-02-15 04:45:25'), +(356,'Najafabad',46,'2006-02-15 04:45:25'), +(357,'Naju',86,'2006-02-15 04:45:25'), +(358,'Nakhon Sawan',94,'2006-02-15 04:45:25'), +(359,'Nam Dinh',105,'2006-02-15 04:45:25'), +(360,'Namibe',4,'2006-02-15 04:45:25'), +(361,'Nantou',92,'2006-02-15 04:45:25'), +(362,'Nanyang',23,'2006-02-15 04:45:25'), +(363,'NDjamna',21,'2006-02-15 04:45:25'), +(364,'Newcastle',85,'2006-02-15 04:45:25'), +(365,'Nezahualcyotl',60,'2006-02-15 04:45:25'), +(366,'Nha Trang',105,'2006-02-15 04:45:25'), +(367,'Niznekamsk',80,'2006-02-15 04:45:25'), +(368,'Novi Sad',108,'2006-02-15 04:45:25'), +(369,'Novoterkassk',80,'2006-02-15 04:45:25'), +(370,'Nukualofa',95,'2006-02-15 04:45:25'), +(371,'Nuuk',40,'2006-02-15 04:45:25'), +(372,'Nyeri',52,'2006-02-15 04:45:25'), +(373,'Ocumare del Tuy',104,'2006-02-15 04:45:25'), +(374,'Ogbomosho',69,'2006-02-15 04:45:25'), +(375,'Okara',72,'2006-02-15 04:45:25'), +(376,'Okayama',50,'2006-02-15 04:45:25'), +(377,'Okinawa',50,'2006-02-15 04:45:25'), +(378,'Olomouc',26,'2006-02-15 04:45:25'), +(379,'Omdurman',89,'2006-02-15 04:45:25'), +(380,'Omiya',50,'2006-02-15 04:45:25'), +(381,'Ondo',69,'2006-02-15 04:45:25'), +(382,'Onomichi',50,'2006-02-15 04:45:25'), +(383,'Oshawa',20,'2006-02-15 04:45:25'), +(384,'Osmaniye',97,'2006-02-15 04:45:25'), +(385,'ostka',100,'2006-02-15 04:45:25'), +(386,'Otsu',50,'2006-02-15 04:45:25'), +(387,'Oulu',33,'2006-02-15 04:45:25'), +(388,'Ourense (Orense)',87,'2006-02-15 04:45:25'), +(389,'Owo',69,'2006-02-15 04:45:25'), +(390,'Oyo',69,'2006-02-15 04:45:25'), +(391,'Ozamis',75,'2006-02-15 04:45:25'), +(392,'Paarl',85,'2006-02-15 04:45:25'), +(393,'Pachuca de Soto',60,'2006-02-15 04:45:25'), +(394,'Pak Kret',94,'2006-02-15 04:45:25'), +(395,'Palghat (Palakkad)',44,'2006-02-15 04:45:25'), +(396,'Pangkal Pinang',45,'2006-02-15 04:45:25'), +(397,'Papeete',36,'2006-02-15 04:45:25'), +(398,'Parbhani',44,'2006-02-15 04:45:25'), +(399,'Pathankot',44,'2006-02-15 04:45:25'), +(400,'Patiala',44,'2006-02-15 04:45:25'), +(401,'Patras',39,'2006-02-15 04:45:25'), +(402,'Pavlodar',51,'2006-02-15 04:45:25'), +(403,'Pemalang',45,'2006-02-15 04:45:25'), +(404,'Peoria',103,'2006-02-15 04:45:25'), +(405,'Pereira',24,'2006-02-15 04:45:25'), +(406,'Phnom Penh',18,'2006-02-15 04:45:25'), +(407,'Pingxiang',23,'2006-02-15 04:45:25'), +(408,'Pjatigorsk',80,'2006-02-15 04:45:25'), +(409,'Plock',76,'2006-02-15 04:45:25'), +(410,'Po',15,'2006-02-15 04:45:25'), +(411,'Ponce',77,'2006-02-15 04:45:25'), +(412,'Pontianak',45,'2006-02-15 04:45:25'), +(413,'Poos de Caldas',15,'2006-02-15 04:45:25'), +(414,'Portoviejo',28,'2006-02-15 04:45:25'), +(415,'Probolinggo',45,'2006-02-15 04:45:25'), +(416,'Pudukkottai',44,'2006-02-15 04:45:25'), +(417,'Pune',44,'2006-02-15 04:45:25'), +(418,'Purnea (Purnia)',44,'2006-02-15 04:45:25'), +(419,'Purwakarta',45,'2006-02-15 04:45:25'), +(420,'Pyongyang',70,'2006-02-15 04:45:25'), +(421,'Qalyub',29,'2006-02-15 04:45:25'), +(422,'Qinhuangdao',23,'2006-02-15 04:45:25'), +(423,'Qomsheh',46,'2006-02-15 04:45:25'), +(424,'Quilmes',6,'2006-02-15 04:45:25'), +(425,'Rae Bareli',44,'2006-02-15 04:45:25'), +(426,'Rajkot',44,'2006-02-15 04:45:25'), +(427,'Rampur',44,'2006-02-15 04:45:25'), +(428,'Rancagua',22,'2006-02-15 04:45:25'), +(429,'Ranchi',44,'2006-02-15 04:45:25'), +(430,'Richmond Hill',20,'2006-02-15 04:45:25'), +(431,'Rio Claro',15,'2006-02-15 04:45:25'), +(432,'Rizhao',23,'2006-02-15 04:45:25'), +(433,'Roanoke',103,'2006-02-15 04:45:25'), +(434,'Robamba',28,'2006-02-15 04:45:25'), +(435,'Rockford',103,'2006-02-15 04:45:25'), +(436,'Ruse',17,'2006-02-15 04:45:25'), +(437,'Rustenburg',85,'2006-02-15 04:45:25'), +(438,'s-Hertogenbosch',67,'2006-02-15 04:45:25'), +(439,'Saarbrcken',38,'2006-02-15 04:45:25'), +(440,'Sagamihara',50,'2006-02-15 04:45:25'), +(441,'Saint Louis',103,'2006-02-15 04:45:25'), +(442,'Saint-Denis',79,'2006-02-15 04:45:25'), +(443,'Sal',62,'2006-02-15 04:45:25'), +(444,'Salala',71,'2006-02-15 04:45:25'), +(445,'Salamanca',60,'2006-02-15 04:45:25'), +(446,'Salinas',103,'2006-02-15 04:45:25'), +(447,'Salzburg',9,'2006-02-15 04:45:25'), +(448,'Sambhal',44,'2006-02-15 04:45:25'), +(449,'San Bernardino',103,'2006-02-15 04:45:25'), +(450,'San Felipe de Puerto Plata',27,'2006-02-15 04:45:25'), +(451,'San Felipe del Progreso',60,'2006-02-15 04:45:25'), +(452,'San Juan Bautista Tuxtepec',60,'2006-02-15 04:45:25'), +(453,'San Lorenzo',73,'2006-02-15 04:45:25'), +(454,'San Miguel de Tucumn',6,'2006-02-15 04:45:25'), +(455,'Sanaa',107,'2006-02-15 04:45:25'), +(456,'Santa Brbara dOeste',15,'2006-02-15 04:45:25'), +(457,'Santa F',6,'2006-02-15 04:45:25'), +(458,'Santa Rosa',75,'2006-02-15 04:45:25'), +(459,'Santiago de Compostela',87,'2006-02-15 04:45:25'), +(460,'Santiago de los Caballeros',27,'2006-02-15 04:45:25'), +(461,'Santo Andr',15,'2006-02-15 04:45:25'), +(462,'Sanya',23,'2006-02-15 04:45:25'), +(463,'Sasebo',50,'2006-02-15 04:45:25'), +(464,'Satna',44,'2006-02-15 04:45:25'), +(465,'Sawhaj',29,'2006-02-15 04:45:25'), +(466,'Serpuhov',80,'2006-02-15 04:45:25'), +(467,'Shahr-e Kord',46,'2006-02-15 04:45:25'), +(468,'Shanwei',23,'2006-02-15 04:45:25'), +(469,'Shaoguan',23,'2006-02-15 04:45:25'), +(470,'Sharja',101,'2006-02-15 04:45:25'), +(471,'Shenzhen',23,'2006-02-15 04:45:25'), +(472,'Shikarpur',72,'2006-02-15 04:45:25'), +(473,'Shimoga',44,'2006-02-15 04:45:25'), +(474,'Shimonoseki',50,'2006-02-15 04:45:25'), +(475,'Shivapuri',44,'2006-02-15 04:45:25'), +(476,'Shubra al-Khayma',29,'2006-02-15 04:45:25'), +(477,'Siegen',38,'2006-02-15 04:45:25'), +(478,'Siliguri (Shiliguri)',44,'2006-02-15 04:45:25'), +(479,'Simferopol',100,'2006-02-15 04:45:25'), +(480,'Sincelejo',24,'2006-02-15 04:45:25'), +(481,'Sirjan',46,'2006-02-15 04:45:25'), +(482,'Sivas',97,'2006-02-15 04:45:25'), +(483,'Skikda',2,'2006-02-15 04:45:25'), +(484,'Smolensk',80,'2006-02-15 04:45:25'), +(485,'So Bernardo do Campo',15,'2006-02-15 04:45:25'), +(486,'So Leopoldo',15,'2006-02-15 04:45:25'), +(487,'Sogamoso',24,'2006-02-15 04:45:25'), +(488,'Sokoto',69,'2006-02-15 04:45:25'), +(489,'Songkhla',94,'2006-02-15 04:45:25'), +(490,'Sorocaba',15,'2006-02-15 04:45:25'), +(491,'Soshanguve',85,'2006-02-15 04:45:25'), +(492,'Sousse',96,'2006-02-15 04:45:25'), +(493,'South Hill',5,'2006-02-15 04:45:25'), +(494,'Southampton',102,'2006-02-15 04:45:25'), +(495,'Southend-on-Sea',102,'2006-02-15 04:45:25'), +(496,'Southport',102,'2006-02-15 04:45:25'), +(497,'Springs',85,'2006-02-15 04:45:25'), +(498,'Stara Zagora',17,'2006-02-15 04:45:25'), +(499,'Sterling Heights',103,'2006-02-15 04:45:25'), +(500,'Stockport',102,'2006-02-15 04:45:25'), +(501,'Sucre',14,'2006-02-15 04:45:25'), +(502,'Suihua',23,'2006-02-15 04:45:25'), +(503,'Sullana',74,'2006-02-15 04:45:25'), +(504,'Sultanbeyli',97,'2006-02-15 04:45:25'), +(505,'Sumqayit',10,'2006-02-15 04:45:25'), +(506,'Sumy',100,'2006-02-15 04:45:25'), +(507,'Sungai Petani',59,'2006-02-15 04:45:25'), +(508,'Sunnyvale',103,'2006-02-15 04:45:25'), +(509,'Surakarta',45,'2006-02-15 04:45:25'), +(510,'Syktyvkar',80,'2006-02-15 04:45:25'), +(511,'Syrakusa',49,'2006-02-15 04:45:25'), +(512,'Szkesfehrvr',43,'2006-02-15 04:45:25'), +(513,'Tabora',93,'2006-02-15 04:45:25'), +(514,'Tabriz',46,'2006-02-15 04:45:25'), +(515,'Tabuk',82,'2006-02-15 04:45:25'), +(516,'Tafuna',3,'2006-02-15 04:45:25'), +(517,'Taguig',75,'2006-02-15 04:45:25'), +(518,'Taizz',107,'2006-02-15 04:45:25'), +(519,'Talavera',75,'2006-02-15 04:45:25'), +(520,'Tallahassee',103,'2006-02-15 04:45:25'), +(521,'Tama',50,'2006-02-15 04:45:25'), +(522,'Tambaram',44,'2006-02-15 04:45:25'), +(523,'Tanauan',75,'2006-02-15 04:45:25'), +(524,'Tandil',6,'2006-02-15 04:45:25'), +(525,'Tangail',12,'2006-02-15 04:45:25'), +(526,'Tanshui',92,'2006-02-15 04:45:25'), +(527,'Tanza',75,'2006-02-15 04:45:25'), +(528,'Tarlac',75,'2006-02-15 04:45:25'), +(529,'Tarsus',97,'2006-02-15 04:45:25'), +(530,'Tartu',30,'2006-02-15 04:45:25'), +(531,'Teboksary',80,'2006-02-15 04:45:25'), +(532,'Tegal',45,'2006-02-15 04:45:25'), +(533,'Tel Aviv-Jaffa',48,'2006-02-15 04:45:25'), +(534,'Tete',63,'2006-02-15 04:45:25'), +(535,'Tianjin',23,'2006-02-15 04:45:25'), +(536,'Tiefa',23,'2006-02-15 04:45:25'), +(537,'Tieli',23,'2006-02-15 04:45:25'), +(538,'Tokat',97,'2006-02-15 04:45:25'), +(539,'Tonghae',86,'2006-02-15 04:45:25'), +(540,'Tongliao',23,'2006-02-15 04:45:25'), +(541,'Torren',60,'2006-02-15 04:45:25'), +(542,'Touliu',92,'2006-02-15 04:45:25'), +(543,'Toulon',34,'2006-02-15 04:45:25'), +(544,'Toulouse',34,'2006-02-15 04:45:25'), +(545,'Trshavn',32,'2006-02-15 04:45:25'), +(546,'Tsaotun',92,'2006-02-15 04:45:25'), +(547,'Tsuyama',50,'2006-02-15 04:45:25'), +(548,'Tuguegarao',75,'2006-02-15 04:45:25'), +(549,'Tychy',76,'2006-02-15 04:45:25'), +(550,'Udaipur',44,'2006-02-15 04:45:25'), +(551,'Udine',49,'2006-02-15 04:45:25'), +(552,'Ueda',50,'2006-02-15 04:45:25'), +(553,'Uijongbu',86,'2006-02-15 04:45:25'), +(554,'Uluberia',44,'2006-02-15 04:45:25'), +(555,'Urawa',50,'2006-02-15 04:45:25'), +(556,'Uruapan',60,'2006-02-15 04:45:25'), +(557,'Usak',97,'2006-02-15 04:45:25'), +(558,'Usolje-Sibirskoje',80,'2006-02-15 04:45:25'), +(559,'Uttarpara-Kotrung',44,'2006-02-15 04:45:25'), +(560,'Vaduz',55,'2006-02-15 04:45:25'), +(561,'Valencia',104,'2006-02-15 04:45:25'), +(562,'Valle de la Pascua',104,'2006-02-15 04:45:25'), +(563,'Valle de Santiago',60,'2006-02-15 04:45:25'), +(564,'Valparai',44,'2006-02-15 04:45:25'), +(565,'Vancouver',20,'2006-02-15 04:45:25'), +(566,'Varanasi (Benares)',44,'2006-02-15 04:45:25'), +(567,'Vicente Lpez',6,'2006-02-15 04:45:25'), +(568,'Vijayawada',44,'2006-02-15 04:45:25'), +(569,'Vila Velha',15,'2006-02-15 04:45:25'), +(570,'Vilnius',56,'2006-02-15 04:45:25'), +(571,'Vinh',105,'2006-02-15 04:45:25'), +(572,'Vitria de Santo Anto',15,'2006-02-15 04:45:25'), +(573,'Warren',103,'2006-02-15 04:45:25'), +(574,'Weifang',23,'2006-02-15 04:45:25'), +(575,'Witten',38,'2006-02-15 04:45:25'), +(576,'Woodridge',8,'2006-02-15 04:45:25'), +(577,'Wroclaw',76,'2006-02-15 04:45:25'), +(578,'Xiangfan',23,'2006-02-15 04:45:25'), +(579,'Xiangtan',23,'2006-02-15 04:45:25'), +(580,'Xintai',23,'2006-02-15 04:45:25'), +(581,'Xinxiang',23,'2006-02-15 04:45:25'), +(582,'Yamuna Nagar',44,'2006-02-15 04:45:25'), +(583,'Yangor',65,'2006-02-15 04:45:25'), +(584,'Yantai',23,'2006-02-15 04:45:25'), +(585,'Yaound',19,'2006-02-15 04:45:25'), +(586,'Yerevan',7,'2006-02-15 04:45:25'), +(587,'Yinchuan',23,'2006-02-15 04:45:25'), +(588,'Yingkou',23,'2006-02-15 04:45:25'), +(589,'York',102,'2006-02-15 04:45:25'), +(590,'Yuncheng',23,'2006-02-15 04:45:25'), +(591,'Yuzhou',23,'2006-02-15 04:45:25'), +(592,'Zalantun',23,'2006-02-15 04:45:25'), +(593,'Zanzibar',93,'2006-02-15 04:45:25'), +(594,'Zaoyang',23,'2006-02-15 04:45:25'), +(595,'Zapopan',60,'2006-02-15 04:45:25'), +(596,'Zaria',69,'2006-02-15 04:45:25'), +(597,'Zeleznogorsk',80,'2006-02-15 04:45:25'), +(598,'Zhezqazghan',51,'2006-02-15 04:45:25'), +(599,'Zhoushan',23,'2006-02-15 04:45:25'), +(600,'Ziguinchor',83,'2006-02-15 04:45:25'); +COMMIT; + +-- +-- Dumping data for table country +-- + +SET AUTOCOMMIT=0; +INSERT INTO country VALUES (1,'Afghanistan','2006-02-15 04:44:00'), +(2,'Algeria','2006-02-15 04:44:00'), +(3,'American Samoa','2006-02-15 04:44:00'), +(4,'Angola','2006-02-15 04:44:00'), +(5,'Anguilla','2006-02-15 04:44:00'), +(6,'Argentina','2006-02-15 04:44:00'), +(7,'Armenia','2006-02-15 04:44:00'), +(8,'Australia','2006-02-15 04:44:00'), +(9,'Austria','2006-02-15 04:44:00'), +(10,'Azerbaijan','2006-02-15 04:44:00'), +(11,'Bahrain','2006-02-15 04:44:00'), +(12,'Bangladesh','2006-02-15 04:44:00'), +(13,'Belarus','2006-02-15 04:44:00'), +(14,'Bolivia','2006-02-15 04:44:00'), +(15,'Brazil','2006-02-15 04:44:00'), +(16,'Brunei','2006-02-15 04:44:00'), +(17,'Bulgaria','2006-02-15 04:44:00'), +(18,'Cambodia','2006-02-15 04:44:00'), +(19,'Cameroon','2006-02-15 04:44:00'), +(20,'Canada','2006-02-15 04:44:00'), +(21,'Chad','2006-02-15 04:44:00'), +(22,'Chile','2006-02-15 04:44:00'), +(23,'China','2006-02-15 04:44:00'), +(24,'Colombia','2006-02-15 04:44:00'), +(25,'Congo, The Democratic Republic of the','2006-02-15 04:44:00'), +(26,'Czech Republic','2006-02-15 04:44:00'), +(27,'Dominican Republic','2006-02-15 04:44:00'), +(28,'Ecuador','2006-02-15 04:44:00'), +(29,'Egypt','2006-02-15 04:44:00'), +(30,'Estonia','2006-02-15 04:44:00'), +(31,'Ethiopia','2006-02-15 04:44:00'), +(32,'Faroe Islands','2006-02-15 04:44:00'), +(33,'Finland','2006-02-15 04:44:00'), +(34,'France','2006-02-15 04:44:00'), +(35,'French Guiana','2006-02-15 04:44:00'), +(36,'French Polynesia','2006-02-15 04:44:00'), +(37,'Gambia','2006-02-15 04:44:00'), +(38,'Germany','2006-02-15 04:44:00'), +(39,'Greece','2006-02-15 04:44:00'), +(40,'Greenland','2006-02-15 04:44:00'), +(41,'Holy See (Vatican City State)','2006-02-15 04:44:00'), +(42,'Hong Kong','2006-02-15 04:44:00'), +(43,'Hungary','2006-02-15 04:44:00'), +(44,'India','2006-02-15 04:44:00'), +(45,'Indonesia','2006-02-15 04:44:00'), +(46,'Iran','2006-02-15 04:44:00'), +(47,'Iraq','2006-02-15 04:44:00'), +(48,'Israel','2006-02-15 04:44:00'), +(49,'Italy','2006-02-15 04:44:00'), +(50,'Japan','2006-02-15 04:44:00'), +(51,'Kazakstan','2006-02-15 04:44:00'), +(52,'Kenya','2006-02-15 04:44:00'), +(53,'Kuwait','2006-02-15 04:44:00'), +(54,'Latvia','2006-02-15 04:44:00'), +(55,'Liechtenstein','2006-02-15 04:44:00'), +(56,'Lithuania','2006-02-15 04:44:00'), +(57,'Madagascar','2006-02-15 04:44:00'), +(58,'Malawi','2006-02-15 04:44:00'), +(59,'Malaysia','2006-02-15 04:44:00'), +(60,'Mexico','2006-02-15 04:44:00'), +(61,'Moldova','2006-02-15 04:44:00'), +(62,'Morocco','2006-02-15 04:44:00'), +(63,'Mozambique','2006-02-15 04:44:00'), +(64,'Myanmar','2006-02-15 04:44:00'), +(65,'Nauru','2006-02-15 04:44:00'), +(66,'Nepal','2006-02-15 04:44:00'), +(67,'Netherlands','2006-02-15 04:44:00'), +(68,'New Zealand','2006-02-15 04:44:00'), +(69,'Nigeria','2006-02-15 04:44:00'), +(70,'North Korea','2006-02-15 04:44:00'), +(71,'Oman','2006-02-15 04:44:00'), +(72,'Pakistan','2006-02-15 04:44:00'), +(73,'Paraguay','2006-02-15 04:44:00'), +(74,'Peru','2006-02-15 04:44:00'), +(75,'Philippines','2006-02-15 04:44:00'), +(76,'Poland','2006-02-15 04:44:00'), +(77,'Puerto Rico','2006-02-15 04:44:00'), +(78,'Romania','2006-02-15 04:44:00'), +(79,'Runion','2006-02-15 04:44:00'), +(80,'Russian Federation','2006-02-15 04:44:00'), +(81,'Saint Vincent and the Grenadines','2006-02-15 04:44:00'), +(82,'Saudi Arabia','2006-02-15 04:44:00'), +(83,'Senegal','2006-02-15 04:44:00'), +(84,'Slovakia','2006-02-15 04:44:00'), +(85,'South Africa','2006-02-15 04:44:00'), +(86,'South Korea','2006-02-15 04:44:00'), +(87,'Spain','2006-02-15 04:44:00'), +(88,'Sri Lanka','2006-02-15 04:44:00'), +(89,'Sudan','2006-02-15 04:44:00'), +(90,'Sweden','2006-02-15 04:44:00'), +(91,'Switzerland','2006-02-15 04:44:00'), +(92,'Taiwan','2006-02-15 04:44:00'), +(93,'Tanzania','2006-02-15 04:44:00'), +(94,'Thailand','2006-02-15 04:44:00'), +(95,'Tonga','2006-02-15 04:44:00'), +(96,'Tunisia','2006-02-15 04:44:00'), +(97,'Turkey','2006-02-15 04:44:00'), +(98,'Turkmenistan','2006-02-15 04:44:00'), +(99,'Tuvalu','2006-02-15 04:44:00'), +(100,'Ukraine','2006-02-15 04:44:00'), +(101,'United Arab Emirates','2006-02-15 04:44:00'), +(102,'United Kingdom','2006-02-15 04:44:00'), +(103,'United States','2006-02-15 04:44:00'), +(104,'Venezuela','2006-02-15 04:44:00'), +(105,'Vietnam','2006-02-15 04:44:00'), +(106,'Virgin Islands, U.S.','2006-02-15 04:44:00'), +(107,'Yemen','2006-02-15 04:44:00'), +(108,'Yugoslavia','2006-02-15 04:44:00'), +(109,'Zambia','2006-02-15 04:44:00'); +COMMIT; + +-- +-- Dumping data for table customer +-- + +SET AUTOCOMMIT=0; +INSERT INTO customer VALUES (1,1,'MARY','SMITH','MARY.SMITH@sakilacustomer.org',5,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(2,1,'PATRICIA','JOHNSON','PATRICIA.JOHNSON@sakilacustomer.org',6,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(3,1,'LINDA','WILLIAMS','LINDA.WILLIAMS@sakilacustomer.org',7,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(4,2,'BARBARA','JONES','BARBARA.JONES@sakilacustomer.org',8,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(5,1,'ELIZABETH','BROWN','ELIZABETH.BROWN@sakilacustomer.org',9,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(6,2,'JENNIFER','DAVIS','JENNIFER.DAVIS@sakilacustomer.org',10,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(7,1,'MARIA','MILLER','MARIA.MILLER@sakilacustomer.org',11,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(8,2,'SUSAN','WILSON','SUSAN.WILSON@sakilacustomer.org',12,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(9,2,'MARGARET','MOORE','MARGARET.MOORE@sakilacustomer.org',13,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(10,1,'DOROTHY','TAYLOR','DOROTHY.TAYLOR@sakilacustomer.org',14,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(11,2,'LISA','ANDERSON','LISA.ANDERSON@sakilacustomer.org',15,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(12,1,'NANCY','THOMAS','NANCY.THOMAS@sakilacustomer.org',16,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(13,2,'KAREN','JACKSON','KAREN.JACKSON@sakilacustomer.org',17,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(14,2,'BETTY','WHITE','BETTY.WHITE@sakilacustomer.org',18,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(15,1,'HELEN','HARRIS','HELEN.HARRIS@sakilacustomer.org',19,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(16,2,'SANDRA','MARTIN','SANDRA.MARTIN@sakilacustomer.org',20,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(17,1,'DONNA','THOMPSON','DONNA.THOMPSON@sakilacustomer.org',21,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(18,2,'CAROL','GARCIA','CAROL.GARCIA@sakilacustomer.org',22,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(19,1,'RUTH','MARTINEZ','RUTH.MARTINEZ@sakilacustomer.org',23,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(20,2,'SHARON','ROBINSON','SHARON.ROBINSON@sakilacustomer.org',24,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(21,1,'MICHELLE','CLARK','MICHELLE.CLARK@sakilacustomer.org',25,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(22,1,'LAURA','RODRIGUEZ','LAURA.RODRIGUEZ@sakilacustomer.org',26,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(23,2,'SARAH','LEWIS','SARAH.LEWIS@sakilacustomer.org',27,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(24,2,'KIMBERLY','LEE','KIMBERLY.LEE@sakilacustomer.org',28,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(25,1,'DEBORAH','WALKER','DEBORAH.WALKER@sakilacustomer.org',29,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(26,2,'JESSICA','HALL','JESSICA.HALL@sakilacustomer.org',30,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(27,2,'SHIRLEY','ALLEN','SHIRLEY.ALLEN@sakilacustomer.org',31,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(28,1,'CYNTHIA','YOUNG','CYNTHIA.YOUNG@sakilacustomer.org',32,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(29,2,'ANGELA','HERNANDEZ','ANGELA.HERNANDEZ@sakilacustomer.org',33,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(30,1,'MELISSA','KING','MELISSA.KING@sakilacustomer.org',34,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(31,2,'BRENDA','WRIGHT','BRENDA.WRIGHT@sakilacustomer.org',35,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(32,1,'AMY','LOPEZ','AMY.LOPEZ@sakilacustomer.org',36,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(33,2,'ANNA','HILL','ANNA.HILL@sakilacustomer.org',37,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(34,2,'REBECCA','SCOTT','REBECCA.SCOTT@sakilacustomer.org',38,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(35,2,'VIRGINIA','GREEN','VIRGINIA.GREEN@sakilacustomer.org',39,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(36,2,'KATHLEEN','ADAMS','KATHLEEN.ADAMS@sakilacustomer.org',40,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(37,1,'PAMELA','BAKER','PAMELA.BAKER@sakilacustomer.org',41,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(38,1,'MARTHA','GONZALEZ','MARTHA.GONZALEZ@sakilacustomer.org',42,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(39,1,'DEBRA','NELSON','DEBRA.NELSON@sakilacustomer.org',43,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(40,2,'AMANDA','CARTER','AMANDA.CARTER@sakilacustomer.org',44,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(41,1,'STEPHANIE','MITCHELL','STEPHANIE.MITCHELL@sakilacustomer.org',45,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(42,2,'CAROLYN','PEREZ','CAROLYN.PEREZ@sakilacustomer.org',46,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(43,2,'CHRISTINE','ROBERTS','CHRISTINE.ROBERTS@sakilacustomer.org',47,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(44,1,'MARIE','TURNER','MARIE.TURNER@sakilacustomer.org',48,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(45,1,'JANET','PHILLIPS','JANET.PHILLIPS@sakilacustomer.org',49,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(46,2,'CATHERINE','CAMPBELL','CATHERINE.CAMPBELL@sakilacustomer.org',50,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(47,1,'FRANCES','PARKER','FRANCES.PARKER@sakilacustomer.org',51,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(48,1,'ANN','EVANS','ANN.EVANS@sakilacustomer.org',52,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(49,2,'JOYCE','EDWARDS','JOYCE.EDWARDS@sakilacustomer.org',53,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(50,1,'DIANE','COLLINS','DIANE.COLLINS@sakilacustomer.org',54,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(51,1,'ALICE','STEWART','ALICE.STEWART@sakilacustomer.org',55,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(52,1,'JULIE','SANCHEZ','JULIE.SANCHEZ@sakilacustomer.org',56,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(53,1,'HEATHER','MORRIS','HEATHER.MORRIS@sakilacustomer.org',57,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(54,1,'TERESA','ROGERS','TERESA.ROGERS@sakilacustomer.org',58,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(55,2,'DORIS','REED','DORIS.REED@sakilacustomer.org',59,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(56,1,'GLORIA','COOK','GLORIA.COOK@sakilacustomer.org',60,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(57,2,'EVELYN','MORGAN','EVELYN.MORGAN@sakilacustomer.org',61,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(58,1,'JEAN','BELL','JEAN.BELL@sakilacustomer.org',62,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(59,1,'CHERYL','MURPHY','CHERYL.MURPHY@sakilacustomer.org',63,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(60,1,'MILDRED','BAILEY','MILDRED.BAILEY@sakilacustomer.org',64,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(61,2,'KATHERINE','RIVERA','KATHERINE.RIVERA@sakilacustomer.org',65,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(62,1,'JOAN','COOPER','JOAN.COOPER@sakilacustomer.org',66,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(63,1,'ASHLEY','RICHARDSON','ASHLEY.RICHARDSON@sakilacustomer.org',67,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(64,2,'JUDITH','COX','JUDITH.COX@sakilacustomer.org',68,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(65,2,'ROSE','HOWARD','ROSE.HOWARD@sakilacustomer.org',69,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(66,2,'JANICE','WARD','JANICE.WARD@sakilacustomer.org',70,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(67,1,'KELLY','TORRES','KELLY.TORRES@sakilacustomer.org',71,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(68,1,'NICOLE','PETERSON','NICOLE.PETERSON@sakilacustomer.org',72,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(69,2,'JUDY','GRAY','JUDY.GRAY@sakilacustomer.org',73,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(70,2,'CHRISTINA','RAMIREZ','CHRISTINA.RAMIREZ@sakilacustomer.org',74,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(71,1,'KATHY','JAMES','KATHY.JAMES@sakilacustomer.org',75,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(72,2,'THERESA','WATSON','THERESA.WATSON@sakilacustomer.org',76,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(73,2,'BEVERLY','BROOKS','BEVERLY.BROOKS@sakilacustomer.org',77,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(74,1,'DENISE','KELLY','DENISE.KELLY@sakilacustomer.org',78,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(75,2,'TAMMY','SANDERS','TAMMY.SANDERS@sakilacustomer.org',79,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(76,2,'IRENE','PRICE','IRENE.PRICE@sakilacustomer.org',80,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(77,2,'JANE','BENNETT','JANE.BENNETT@sakilacustomer.org',81,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(78,1,'LORI','WOOD','LORI.WOOD@sakilacustomer.org',82,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(79,1,'RACHEL','BARNES','RACHEL.BARNES@sakilacustomer.org',83,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(80,1,'MARILYN','ROSS','MARILYN.ROSS@sakilacustomer.org',84,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(81,1,'ANDREA','HENDERSON','ANDREA.HENDERSON@sakilacustomer.org',85,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(82,1,'KATHRYN','COLEMAN','KATHRYN.COLEMAN@sakilacustomer.org',86,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(83,1,'LOUISE','JENKINS','LOUISE.JENKINS@sakilacustomer.org',87,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(84,2,'SARA','PERRY','SARA.PERRY@sakilacustomer.org',88,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(85,2,'ANNE','POWELL','ANNE.POWELL@sakilacustomer.org',89,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(86,2,'JACQUELINE','LONG','JACQUELINE.LONG@sakilacustomer.org',90,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(87,1,'WANDA','PATTERSON','WANDA.PATTERSON@sakilacustomer.org',91,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(88,2,'BONNIE','HUGHES','BONNIE.HUGHES@sakilacustomer.org',92,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(89,1,'JULIA','FLORES','JULIA.FLORES@sakilacustomer.org',93,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(90,2,'RUBY','WASHINGTON','RUBY.WASHINGTON@sakilacustomer.org',94,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(91,2,'LOIS','BUTLER','LOIS.BUTLER@sakilacustomer.org',95,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(92,2,'TINA','SIMMONS','TINA.SIMMONS@sakilacustomer.org',96,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(93,1,'PHYLLIS','FOSTER','PHYLLIS.FOSTER@sakilacustomer.org',97,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(94,1,'NORMA','GONZALES','NORMA.GONZALES@sakilacustomer.org',98,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(95,2,'PAULA','BRYANT','PAULA.BRYANT@sakilacustomer.org',99,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(96,1,'DIANA','ALEXANDER','DIANA.ALEXANDER@sakilacustomer.org',100,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(97,2,'ANNIE','RUSSELL','ANNIE.RUSSELL@sakilacustomer.org',101,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(98,1,'LILLIAN','GRIFFIN','LILLIAN.GRIFFIN@sakilacustomer.org',102,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(99,2,'EMILY','DIAZ','EMILY.DIAZ@sakilacustomer.org',103,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(100,1,'ROBIN','HAYES','ROBIN.HAYES@sakilacustomer.org',104,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(101,1,'PEGGY','MYERS','PEGGY.MYERS@sakilacustomer.org',105,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(102,1,'CRYSTAL','FORD','CRYSTAL.FORD@sakilacustomer.org',106,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(103,1,'GLADYS','HAMILTON','GLADYS.HAMILTON@sakilacustomer.org',107,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(104,1,'RITA','GRAHAM','RITA.GRAHAM@sakilacustomer.org',108,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(105,1,'DAWN','SULLIVAN','DAWN.SULLIVAN@sakilacustomer.org',109,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(106,1,'CONNIE','WALLACE','CONNIE.WALLACE@sakilacustomer.org',110,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(107,1,'FLORENCE','WOODS','FLORENCE.WOODS@sakilacustomer.org',111,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(108,1,'TRACY','COLE','TRACY.COLE@sakilacustomer.org',112,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(109,2,'EDNA','WEST','EDNA.WEST@sakilacustomer.org',113,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(110,2,'TIFFANY','JORDAN','TIFFANY.JORDAN@sakilacustomer.org',114,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(111,1,'CARMEN','OWENS','CARMEN.OWENS@sakilacustomer.org',115,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(112,2,'ROSA','REYNOLDS','ROSA.REYNOLDS@sakilacustomer.org',116,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(113,2,'CINDY','FISHER','CINDY.FISHER@sakilacustomer.org',117,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(114,2,'GRACE','ELLIS','GRACE.ELLIS@sakilacustomer.org',118,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(115,1,'WENDY','HARRISON','WENDY.HARRISON@sakilacustomer.org',119,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(116,1,'VICTORIA','GIBSON','VICTORIA.GIBSON@sakilacustomer.org',120,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(117,1,'EDITH','MCDONALD','EDITH.MCDONALD@sakilacustomer.org',121,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(118,1,'KIM','CRUZ','KIM.CRUZ@sakilacustomer.org',122,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(119,1,'SHERRY','MARSHALL','SHERRY.MARSHALL@sakilacustomer.org',123,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(120,2,'SYLVIA','ORTIZ','SYLVIA.ORTIZ@sakilacustomer.org',124,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(121,1,'JOSEPHINE','GOMEZ','JOSEPHINE.GOMEZ@sakilacustomer.org',125,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(122,1,'THELMA','MURRAY','THELMA.MURRAY@sakilacustomer.org',126,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(123,2,'SHANNON','FREEMAN','SHANNON.FREEMAN@sakilacustomer.org',127,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(124,1,'SHEILA','WELLS','SHEILA.WELLS@sakilacustomer.org',128,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(125,1,'ETHEL','WEBB','ETHEL.WEBB@sakilacustomer.org',129,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(126,1,'ELLEN','SIMPSON','ELLEN.SIMPSON@sakilacustomer.org',130,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(127,2,'ELAINE','STEVENS','ELAINE.STEVENS@sakilacustomer.org',131,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(128,1,'MARJORIE','TUCKER','MARJORIE.TUCKER@sakilacustomer.org',132,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(129,1,'CARRIE','PORTER','CARRIE.PORTER@sakilacustomer.org',133,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(130,1,'CHARLOTTE','HUNTER','CHARLOTTE.HUNTER@sakilacustomer.org',134,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(131,2,'MONICA','HICKS','MONICA.HICKS@sakilacustomer.org',135,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(132,2,'ESTHER','CRAWFORD','ESTHER.CRAWFORD@sakilacustomer.org',136,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(133,1,'PAULINE','HENRY','PAULINE.HENRY@sakilacustomer.org',137,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(134,1,'EMMA','BOYD','EMMA.BOYD@sakilacustomer.org',138,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(135,2,'JUANITA','MASON','JUANITA.MASON@sakilacustomer.org',139,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(136,2,'ANITA','MORALES','ANITA.MORALES@sakilacustomer.org',140,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(137,2,'RHONDA','KENNEDY','RHONDA.KENNEDY@sakilacustomer.org',141,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(138,1,'HAZEL','WARREN','HAZEL.WARREN@sakilacustomer.org',142,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(139,1,'AMBER','DIXON','AMBER.DIXON@sakilacustomer.org',143,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(140,1,'EVA','RAMOS','EVA.RAMOS@sakilacustomer.org',144,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(141,1,'DEBBIE','REYES','DEBBIE.REYES@sakilacustomer.org',145,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(142,1,'APRIL','BURNS','APRIL.BURNS@sakilacustomer.org',146,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(143,1,'LESLIE','GORDON','LESLIE.GORDON@sakilacustomer.org',147,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(144,1,'CLARA','SHAW','CLARA.SHAW@sakilacustomer.org',148,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(145,1,'LUCILLE','HOLMES','LUCILLE.HOLMES@sakilacustomer.org',149,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(146,1,'JAMIE','RICE','JAMIE.RICE@sakilacustomer.org',150,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(147,2,'JOANNE','ROBERTSON','JOANNE.ROBERTSON@sakilacustomer.org',151,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(148,1,'ELEANOR','HUNT','ELEANOR.HUNT@sakilacustomer.org',152,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(149,1,'VALERIE','BLACK','VALERIE.BLACK@sakilacustomer.org',153,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(150,2,'DANIELLE','DANIELS','DANIELLE.DANIELS@sakilacustomer.org',154,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(151,2,'MEGAN','PALMER','MEGAN.PALMER@sakilacustomer.org',155,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(152,1,'ALICIA','MILLS','ALICIA.MILLS@sakilacustomer.org',156,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(153,2,'SUZANNE','NICHOLS','SUZANNE.NICHOLS@sakilacustomer.org',157,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(154,2,'MICHELE','GRANT','MICHELE.GRANT@sakilacustomer.org',158,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(155,1,'GAIL','KNIGHT','GAIL.KNIGHT@sakilacustomer.org',159,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(156,1,'BERTHA','FERGUSON','BERTHA.FERGUSON@sakilacustomer.org',160,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(157,2,'DARLENE','ROSE','DARLENE.ROSE@sakilacustomer.org',161,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(158,1,'VERONICA','STONE','VERONICA.STONE@sakilacustomer.org',162,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(159,1,'JILL','HAWKINS','JILL.HAWKINS@sakilacustomer.org',163,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(160,2,'ERIN','DUNN','ERIN.DUNN@sakilacustomer.org',164,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(161,1,'GERALDINE','PERKINS','GERALDINE.PERKINS@sakilacustomer.org',165,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(162,2,'LAUREN','HUDSON','LAUREN.HUDSON@sakilacustomer.org',166,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(163,1,'CATHY','SPENCER','CATHY.SPENCER@sakilacustomer.org',167,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(164,2,'JOANN','GARDNER','JOANN.GARDNER@sakilacustomer.org',168,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(165,2,'LORRAINE','STEPHENS','LORRAINE.STEPHENS@sakilacustomer.org',169,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(166,1,'LYNN','PAYNE','LYNN.PAYNE@sakilacustomer.org',170,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(167,2,'SALLY','PIERCE','SALLY.PIERCE@sakilacustomer.org',171,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(168,1,'REGINA','BERRY','REGINA.BERRY@sakilacustomer.org',172,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(169,2,'ERICA','MATTHEWS','ERICA.MATTHEWS@sakilacustomer.org',173,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(170,1,'BEATRICE','ARNOLD','BEATRICE.ARNOLD@sakilacustomer.org',174,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(171,2,'DOLORES','WAGNER','DOLORES.WAGNER@sakilacustomer.org',175,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(172,1,'BERNICE','WILLIS','BERNICE.WILLIS@sakilacustomer.org',176,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(173,1,'AUDREY','RAY','AUDREY.RAY@sakilacustomer.org',177,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(174,2,'YVONNE','WATKINS','YVONNE.WATKINS@sakilacustomer.org',178,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(175,1,'ANNETTE','OLSON','ANNETTE.OLSON@sakilacustomer.org',179,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(176,1,'JUNE','CARROLL','JUNE.CARROLL@sakilacustomer.org',180,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(177,2,'SAMANTHA','DUNCAN','SAMANTHA.DUNCAN@sakilacustomer.org',181,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(178,2,'MARION','SNYDER','MARION.SNYDER@sakilacustomer.org',182,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(179,1,'DANA','HART','DANA.HART@sakilacustomer.org',183,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(180,2,'STACY','CUNNINGHAM','STACY.CUNNINGHAM@sakilacustomer.org',184,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(181,2,'ANA','BRADLEY','ANA.BRADLEY@sakilacustomer.org',185,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(182,1,'RENEE','LANE','RENEE.LANE@sakilacustomer.org',186,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(183,2,'IDA','ANDREWS','IDA.ANDREWS@sakilacustomer.org',187,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(184,1,'VIVIAN','RUIZ','VIVIAN.RUIZ@sakilacustomer.org',188,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(185,1,'ROBERTA','HARPER','ROBERTA.HARPER@sakilacustomer.org',189,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(186,2,'HOLLY','FOX','HOLLY.FOX@sakilacustomer.org',190,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(187,2,'BRITTANY','RILEY','BRITTANY.RILEY@sakilacustomer.org',191,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(188,1,'MELANIE','ARMSTRONG','MELANIE.ARMSTRONG@sakilacustomer.org',192,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(189,1,'LORETTA','CARPENTER','LORETTA.CARPENTER@sakilacustomer.org',193,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(190,2,'YOLANDA','WEAVER','YOLANDA.WEAVER@sakilacustomer.org',194,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(191,1,'JEANETTE','GREENE','JEANETTE.GREENE@sakilacustomer.org',195,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(192,1,'LAURIE','LAWRENCE','LAURIE.LAWRENCE@sakilacustomer.org',196,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(193,2,'KATIE','ELLIOTT','KATIE.ELLIOTT@sakilacustomer.org',197,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(194,2,'KRISTEN','CHAVEZ','KRISTEN.CHAVEZ@sakilacustomer.org',198,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(195,1,'VANESSA','SIMS','VANESSA.SIMS@sakilacustomer.org',199,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(196,1,'ALMA','AUSTIN','ALMA.AUSTIN@sakilacustomer.org',200,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(197,2,'SUE','PETERS','SUE.PETERS@sakilacustomer.org',201,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(198,2,'ELSIE','KELLEY','ELSIE.KELLEY@sakilacustomer.org',202,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(199,2,'BETH','FRANKLIN','BETH.FRANKLIN@sakilacustomer.org',203,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(200,2,'JEANNE','LAWSON','JEANNE.LAWSON@sakilacustomer.org',204,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(201,1,'VICKI','FIELDS','VICKI.FIELDS@sakilacustomer.org',205,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(202,2,'CARLA','GUTIERREZ','CARLA.GUTIERREZ@sakilacustomer.org',206,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(203,1,'TARA','RYAN','TARA.RYAN@sakilacustomer.org',207,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(204,1,'ROSEMARY','SCHMIDT','ROSEMARY.SCHMIDT@sakilacustomer.org',208,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(205,2,'EILEEN','CARR','EILEEN.CARR@sakilacustomer.org',209,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(206,1,'TERRI','VASQUEZ','TERRI.VASQUEZ@sakilacustomer.org',210,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(207,1,'GERTRUDE','CASTILLO','GERTRUDE.CASTILLO@sakilacustomer.org',211,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(208,1,'LUCY','WHEELER','LUCY.WHEELER@sakilacustomer.org',212,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(209,2,'TONYA','CHAPMAN','TONYA.CHAPMAN@sakilacustomer.org',213,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(210,2,'ELLA','OLIVER','ELLA.OLIVER@sakilacustomer.org',214,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(211,1,'STACEY','MONTGOMERY','STACEY.MONTGOMERY@sakilacustomer.org',215,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(212,2,'WILMA','RICHARDS','WILMA.RICHARDS@sakilacustomer.org',216,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(213,1,'GINA','WILLIAMSON','GINA.WILLIAMSON@sakilacustomer.org',217,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(214,1,'KRISTIN','JOHNSTON','KRISTIN.JOHNSTON@sakilacustomer.org',218,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(215,2,'JESSIE','BANKS','JESSIE.BANKS@sakilacustomer.org',219,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(216,1,'NATALIE','MEYER','NATALIE.MEYER@sakilacustomer.org',220,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(217,2,'AGNES','BISHOP','AGNES.BISHOP@sakilacustomer.org',221,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(218,1,'VERA','MCCOY','VERA.MCCOY@sakilacustomer.org',222,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(219,2,'WILLIE','HOWELL','WILLIE.HOWELL@sakilacustomer.org',223,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(220,2,'CHARLENE','ALVAREZ','CHARLENE.ALVAREZ@sakilacustomer.org',224,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(221,1,'BESSIE','MORRISON','BESSIE.MORRISON@sakilacustomer.org',225,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(222,2,'DELORES','HANSEN','DELORES.HANSEN@sakilacustomer.org',226,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(223,1,'MELINDA','FERNANDEZ','MELINDA.FERNANDEZ@sakilacustomer.org',227,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(224,2,'PEARL','GARZA','PEARL.GARZA@sakilacustomer.org',228,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(225,1,'ARLENE','HARVEY','ARLENE.HARVEY@sakilacustomer.org',229,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(226,2,'MAUREEN','LITTLE','MAUREEN.LITTLE@sakilacustomer.org',230,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(227,1,'COLLEEN','BURTON','COLLEEN.BURTON@sakilacustomer.org',231,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(228,2,'ALLISON','STANLEY','ALLISON.STANLEY@sakilacustomer.org',232,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(229,1,'TAMARA','NGUYEN','TAMARA.NGUYEN@sakilacustomer.org',233,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(230,2,'JOY','GEORGE','JOY.GEORGE@sakilacustomer.org',234,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(231,1,'GEORGIA','JACOBS','GEORGIA.JACOBS@sakilacustomer.org',235,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(232,2,'CONSTANCE','REID','CONSTANCE.REID@sakilacustomer.org',236,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(233,2,'LILLIE','KIM','LILLIE.KIM@sakilacustomer.org',237,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(234,1,'CLAUDIA','FULLER','CLAUDIA.FULLER@sakilacustomer.org',238,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(235,1,'JACKIE','LYNCH','JACKIE.LYNCH@sakilacustomer.org',239,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(236,1,'MARCIA','DEAN','MARCIA.DEAN@sakilacustomer.org',240,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(237,1,'TANYA','GILBERT','TANYA.GILBERT@sakilacustomer.org',241,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(238,1,'NELLIE','GARRETT','NELLIE.GARRETT@sakilacustomer.org',242,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(239,2,'MINNIE','ROMERO','MINNIE.ROMERO@sakilacustomer.org',243,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(240,1,'MARLENE','WELCH','MARLENE.WELCH@sakilacustomer.org',244,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(241,2,'HEIDI','LARSON','HEIDI.LARSON@sakilacustomer.org',245,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(242,1,'GLENDA','FRAZIER','GLENDA.FRAZIER@sakilacustomer.org',246,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(243,1,'LYDIA','BURKE','LYDIA.BURKE@sakilacustomer.org',247,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(244,2,'VIOLA','HANSON','VIOLA.HANSON@sakilacustomer.org',248,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(245,1,'COURTNEY','DAY','COURTNEY.DAY@sakilacustomer.org',249,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(246,1,'MARIAN','MENDOZA','MARIAN.MENDOZA@sakilacustomer.org',250,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(247,1,'STELLA','MORENO','STELLA.MORENO@sakilacustomer.org',251,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(248,1,'CAROLINE','BOWMAN','CAROLINE.BOWMAN@sakilacustomer.org',252,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(249,2,'DORA','MEDINA','DORA.MEDINA@sakilacustomer.org',253,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(250,2,'JO','FOWLER','JO.FOWLER@sakilacustomer.org',254,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(251,2,'VICKIE','BREWER','VICKIE.BREWER@sakilacustomer.org',255,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(252,2,'MATTIE','HOFFMAN','MATTIE.HOFFMAN@sakilacustomer.org',256,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(253,1,'TERRY','CARLSON','TERRY.CARLSON@sakilacustomer.org',258,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(254,2,'MAXINE','SILVA','MAXINE.SILVA@sakilacustomer.org',259,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(255,2,'IRMA','PEARSON','IRMA.PEARSON@sakilacustomer.org',260,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(256,2,'MABEL','HOLLAND','MABEL.HOLLAND@sakilacustomer.org',261,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(257,2,'MARSHA','DOUGLAS','MARSHA.DOUGLAS@sakilacustomer.org',262,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(258,1,'MYRTLE','FLEMING','MYRTLE.FLEMING@sakilacustomer.org',263,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(259,2,'LENA','JENSEN','LENA.JENSEN@sakilacustomer.org',264,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(260,1,'CHRISTY','VARGAS','CHRISTY.VARGAS@sakilacustomer.org',265,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(261,1,'DEANNA','BYRD','DEANNA.BYRD@sakilacustomer.org',266,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(262,2,'PATSY','DAVIDSON','PATSY.DAVIDSON@sakilacustomer.org',267,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(263,1,'HILDA','HOPKINS','HILDA.HOPKINS@sakilacustomer.org',268,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(264,1,'GWENDOLYN','MAY','GWENDOLYN.MAY@sakilacustomer.org',269,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(265,2,'JENNIE','TERRY','JENNIE.TERRY@sakilacustomer.org',270,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(266,2,'NORA','HERRERA','NORA.HERRERA@sakilacustomer.org',271,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(267,1,'MARGIE','WADE','MARGIE.WADE@sakilacustomer.org',272,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(268,1,'NINA','SOTO','NINA.SOTO@sakilacustomer.org',273,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(269,1,'CASSANDRA','WALTERS','CASSANDRA.WALTERS@sakilacustomer.org',274,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(270,1,'LEAH','CURTIS','LEAH.CURTIS@sakilacustomer.org',275,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(271,1,'PENNY','NEAL','PENNY.NEAL@sakilacustomer.org',276,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'), +(272,1,'KAY','CALDWELL','KAY.CALDWELL@sakilacustomer.org',277,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(273,2,'PRISCILLA','LOWE','PRISCILLA.LOWE@sakilacustomer.org',278,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(274,1,'NAOMI','JENNINGS','NAOMI.JENNINGS@sakilacustomer.org',279,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(275,2,'CAROLE','BARNETT','CAROLE.BARNETT@sakilacustomer.org',280,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(276,1,'BRANDY','GRAVES','BRANDY.GRAVES@sakilacustomer.org',281,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(277,2,'OLGA','JIMENEZ','OLGA.JIMENEZ@sakilacustomer.org',282,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(278,2,'BILLIE','HORTON','BILLIE.HORTON@sakilacustomer.org',283,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(279,2,'DIANNE','SHELTON','DIANNE.SHELTON@sakilacustomer.org',284,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(280,2,'TRACEY','BARRETT','TRACEY.BARRETT@sakilacustomer.org',285,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(281,2,'LEONA','OBRIEN','LEONA.OBRIEN@sakilacustomer.org',286,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(282,2,'JENNY','CASTRO','JENNY.CASTRO@sakilacustomer.org',287,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(283,1,'FELICIA','SUTTON','FELICIA.SUTTON@sakilacustomer.org',288,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(284,1,'SONIA','GREGORY','SONIA.GREGORY@sakilacustomer.org',289,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(285,1,'MIRIAM','MCKINNEY','MIRIAM.MCKINNEY@sakilacustomer.org',290,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(286,1,'VELMA','LUCAS','VELMA.LUCAS@sakilacustomer.org',291,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(287,2,'BECKY','MILES','BECKY.MILES@sakilacustomer.org',292,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(288,1,'BOBBIE','CRAIG','BOBBIE.CRAIG@sakilacustomer.org',293,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(289,1,'VIOLET','RODRIQUEZ','VIOLET.RODRIQUEZ@sakilacustomer.org',294,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(290,1,'KRISTINA','CHAMBERS','KRISTINA.CHAMBERS@sakilacustomer.org',295,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(291,1,'TONI','HOLT','TONI.HOLT@sakilacustomer.org',296,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(292,2,'MISTY','LAMBERT','MISTY.LAMBERT@sakilacustomer.org',297,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(293,2,'MAE','FLETCHER','MAE.FLETCHER@sakilacustomer.org',298,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(294,2,'SHELLY','WATTS','SHELLY.WATTS@sakilacustomer.org',299,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(295,1,'DAISY','BATES','DAISY.BATES@sakilacustomer.org',300,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(296,2,'RAMONA','HALE','RAMONA.HALE@sakilacustomer.org',301,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(297,1,'SHERRI','RHODES','SHERRI.RHODES@sakilacustomer.org',302,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(298,1,'ERIKA','PENA','ERIKA.PENA@sakilacustomer.org',303,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(299,2,'JAMES','GANNON','JAMES.GANNON@sakilacustomer.org',304,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(300,1,'JOHN','FARNSWORTH','JOHN.FARNSWORTH@sakilacustomer.org',305,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(301,2,'ROBERT','BAUGHMAN','ROBERT.BAUGHMAN@sakilacustomer.org',306,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(302,1,'MICHAEL','SILVERMAN','MICHAEL.SILVERMAN@sakilacustomer.org',307,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(303,2,'WILLIAM','SATTERFIELD','WILLIAM.SATTERFIELD@sakilacustomer.org',308,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(304,2,'DAVID','ROYAL','DAVID.ROYAL@sakilacustomer.org',309,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(305,1,'RICHARD','MCCRARY','RICHARD.MCCRARY@sakilacustomer.org',310,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(306,1,'CHARLES','KOWALSKI','CHARLES.KOWALSKI@sakilacustomer.org',311,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(307,2,'JOSEPH','JOY','JOSEPH.JOY@sakilacustomer.org',312,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(308,1,'THOMAS','GRIGSBY','THOMAS.GRIGSBY@sakilacustomer.org',313,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(309,1,'CHRISTOPHER','GRECO','CHRISTOPHER.GRECO@sakilacustomer.org',314,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(310,2,'DANIEL','CABRAL','DANIEL.CABRAL@sakilacustomer.org',315,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(311,2,'PAUL','TROUT','PAUL.TROUT@sakilacustomer.org',316,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(312,2,'MARK','RINEHART','MARK.RINEHART@sakilacustomer.org',317,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(313,2,'DONALD','MAHON','DONALD.MAHON@sakilacustomer.org',318,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(314,1,'GEORGE','LINTON','GEORGE.LINTON@sakilacustomer.org',319,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(315,2,'KENNETH','GOODEN','KENNETH.GOODEN@sakilacustomer.org',320,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(316,1,'STEVEN','CURLEY','STEVEN.CURLEY@sakilacustomer.org',321,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(317,2,'EDWARD','BAUGH','EDWARD.BAUGH@sakilacustomer.org',322,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(318,1,'BRIAN','WYMAN','BRIAN.WYMAN@sakilacustomer.org',323,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(319,2,'RONALD','WEINER','RONALD.WEINER@sakilacustomer.org',324,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(320,2,'ANTHONY','SCHWAB','ANTHONY.SCHWAB@sakilacustomer.org',325,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(321,1,'KEVIN','SCHULER','KEVIN.SCHULER@sakilacustomer.org',326,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(322,1,'JASON','MORRISSEY','JASON.MORRISSEY@sakilacustomer.org',327,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(323,2,'MATTHEW','MAHAN','MATTHEW.MAHAN@sakilacustomer.org',328,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(324,2,'GARY','COY','GARY.COY@sakilacustomer.org',329,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(325,1,'TIMOTHY','BUNN','TIMOTHY.BUNN@sakilacustomer.org',330,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(326,1,'JOSE','ANDREW','JOSE.ANDREW@sakilacustomer.org',331,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(327,2,'LARRY','THRASHER','LARRY.THRASHER@sakilacustomer.org',332,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(328,2,'JEFFREY','SPEAR','JEFFREY.SPEAR@sakilacustomer.org',333,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(329,2,'FRANK','WAGGONER','FRANK.WAGGONER@sakilacustomer.org',334,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(330,1,'SCOTT','SHELLEY','SCOTT.SHELLEY@sakilacustomer.org',335,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(331,1,'ERIC','ROBERT','ERIC.ROBERT@sakilacustomer.org',336,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(332,1,'STEPHEN','QUALLS','STEPHEN.QUALLS@sakilacustomer.org',337,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(333,2,'ANDREW','PURDY','ANDREW.PURDY@sakilacustomer.org',338,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(334,2,'RAYMOND','MCWHORTER','RAYMOND.MCWHORTER@sakilacustomer.org',339,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(335,1,'GREGORY','MAULDIN','GREGORY.MAULDIN@sakilacustomer.org',340,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(336,1,'JOSHUA','MARK','JOSHUA.MARK@sakilacustomer.org',341,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(337,1,'JERRY','JORDON','JERRY.JORDON@sakilacustomer.org',342,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(338,1,'DENNIS','GILMAN','DENNIS.GILMAN@sakilacustomer.org',343,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(339,2,'WALTER','PERRYMAN','WALTER.PERRYMAN@sakilacustomer.org',344,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(340,1,'PATRICK','NEWSOM','PATRICK.NEWSOM@sakilacustomer.org',345,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(341,1,'PETER','MENARD','PETER.MENARD@sakilacustomer.org',346,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(342,1,'HAROLD','MARTINO','HAROLD.MARTINO@sakilacustomer.org',347,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(343,1,'DOUGLAS','GRAF','DOUGLAS.GRAF@sakilacustomer.org',348,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(344,1,'HENRY','BILLINGSLEY','HENRY.BILLINGSLEY@sakilacustomer.org',349,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(345,1,'CARL','ARTIS','CARL.ARTIS@sakilacustomer.org',350,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(346,1,'ARTHUR','SIMPKINS','ARTHUR.SIMPKINS@sakilacustomer.org',351,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(347,2,'RYAN','SALISBURY','RYAN.SALISBURY@sakilacustomer.org',352,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(348,2,'ROGER','QUINTANILLA','ROGER.QUINTANILLA@sakilacustomer.org',353,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(349,2,'JOE','GILLILAND','JOE.GILLILAND@sakilacustomer.org',354,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(350,1,'JUAN','FRALEY','JUAN.FRALEY@sakilacustomer.org',355,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(351,1,'JACK','FOUST','JACK.FOUST@sakilacustomer.org',356,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(352,1,'ALBERT','CROUSE','ALBERT.CROUSE@sakilacustomer.org',357,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(353,1,'JONATHAN','SCARBOROUGH','JONATHAN.SCARBOROUGH@sakilacustomer.org',358,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(354,2,'JUSTIN','NGO','JUSTIN.NGO@sakilacustomer.org',359,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(355,2,'TERRY','GRISSOM','TERRY.GRISSOM@sakilacustomer.org',360,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(356,2,'GERALD','FULTZ','GERALD.FULTZ@sakilacustomer.org',361,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(357,1,'KEITH','RICO','KEITH.RICO@sakilacustomer.org',362,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(358,2,'SAMUEL','MARLOW','SAMUEL.MARLOW@sakilacustomer.org',363,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(359,2,'WILLIE','MARKHAM','WILLIE.MARKHAM@sakilacustomer.org',364,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(360,2,'RALPH','MADRIGAL','RALPH.MADRIGAL@sakilacustomer.org',365,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(361,2,'LAWRENCE','LAWTON','LAWRENCE.LAWTON@sakilacustomer.org',366,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(362,1,'NICHOLAS','BARFIELD','NICHOLAS.BARFIELD@sakilacustomer.org',367,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(363,2,'ROY','WHITING','ROY.WHITING@sakilacustomer.org',368,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(364,1,'BENJAMIN','VARNEY','BENJAMIN.VARNEY@sakilacustomer.org',369,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(365,2,'BRUCE','SCHWARZ','BRUCE.SCHWARZ@sakilacustomer.org',370,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(366,1,'BRANDON','HUEY','BRANDON.HUEY@sakilacustomer.org',371,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(367,1,'ADAM','GOOCH','ADAM.GOOCH@sakilacustomer.org',372,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(368,1,'HARRY','ARCE','HARRY.ARCE@sakilacustomer.org',373,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(369,2,'FRED','WHEAT','FRED.WHEAT@sakilacustomer.org',374,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(370,2,'WAYNE','TRUONG','WAYNE.TRUONG@sakilacustomer.org',375,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(371,1,'BILLY','POULIN','BILLY.POULIN@sakilacustomer.org',376,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(372,2,'STEVE','MACKENZIE','STEVE.MACKENZIE@sakilacustomer.org',377,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(373,1,'LOUIS','LEONE','LOUIS.LEONE@sakilacustomer.org',378,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(374,2,'JEREMY','HURTADO','JEREMY.HURTADO@sakilacustomer.org',379,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(375,2,'AARON','SELBY','AARON.SELBY@sakilacustomer.org',380,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(376,1,'RANDY','GAITHER','RANDY.GAITHER@sakilacustomer.org',381,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(377,1,'HOWARD','FORTNER','HOWARD.FORTNER@sakilacustomer.org',382,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(378,1,'EUGENE','CULPEPPER','EUGENE.CULPEPPER@sakilacustomer.org',383,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(379,1,'CARLOS','COUGHLIN','CARLOS.COUGHLIN@sakilacustomer.org',384,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(380,1,'RUSSELL','BRINSON','RUSSELL.BRINSON@sakilacustomer.org',385,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(381,2,'BOBBY','BOUDREAU','BOBBY.BOUDREAU@sakilacustomer.org',386,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(382,2,'VICTOR','BARKLEY','VICTOR.BARKLEY@sakilacustomer.org',387,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(383,1,'MARTIN','BALES','MARTIN.BALES@sakilacustomer.org',388,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(384,2,'ERNEST','STEPP','ERNEST.STEPP@sakilacustomer.org',389,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(385,1,'PHILLIP','HOLM','PHILLIP.HOLM@sakilacustomer.org',390,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(386,1,'TODD','TAN','TODD.TAN@sakilacustomer.org',391,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(387,2,'JESSE','SCHILLING','JESSE.SCHILLING@sakilacustomer.org',392,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(388,2,'CRAIG','MORRELL','CRAIG.MORRELL@sakilacustomer.org',393,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(389,1,'ALAN','KAHN','ALAN.KAHN@sakilacustomer.org',394,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(390,1,'SHAWN','HEATON','SHAWN.HEATON@sakilacustomer.org',395,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(391,1,'CLARENCE','GAMEZ','CLARENCE.GAMEZ@sakilacustomer.org',396,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(392,2,'SEAN','DOUGLASS','SEAN.DOUGLASS@sakilacustomer.org',397,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(393,1,'PHILIP','CAUSEY','PHILIP.CAUSEY@sakilacustomer.org',398,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(394,2,'CHRIS','BROTHERS','CHRIS.BROTHERS@sakilacustomer.org',399,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(395,2,'JOHNNY','TURPIN','JOHNNY.TURPIN@sakilacustomer.org',400,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(396,1,'EARL','SHANKS','EARL.SHANKS@sakilacustomer.org',401,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(397,1,'JIMMY','SCHRADER','JIMMY.SCHRADER@sakilacustomer.org',402,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(398,1,'ANTONIO','MEEK','ANTONIO.MEEK@sakilacustomer.org',403,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(399,1,'DANNY','ISOM','DANNY.ISOM@sakilacustomer.org',404,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(400,2,'BRYAN','HARDISON','BRYAN.HARDISON@sakilacustomer.org',405,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(401,2,'TONY','CARRANZA','TONY.CARRANZA@sakilacustomer.org',406,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(402,1,'LUIS','YANEZ','LUIS.YANEZ@sakilacustomer.org',407,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(403,1,'MIKE','WAY','MIKE.WAY@sakilacustomer.org',408,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(404,2,'STANLEY','SCROGGINS','STANLEY.SCROGGINS@sakilacustomer.org',409,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(405,1,'LEONARD','SCHOFIELD','LEONARD.SCHOFIELD@sakilacustomer.org',410,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(406,1,'NATHAN','RUNYON','NATHAN.RUNYON@sakilacustomer.org',411,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(407,1,'DALE','RATCLIFF','DALE.RATCLIFF@sakilacustomer.org',412,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(408,1,'MANUEL','MURRELL','MANUEL.MURRELL@sakilacustomer.org',413,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(409,2,'RODNEY','MOELLER','RODNEY.MOELLER@sakilacustomer.org',414,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(410,2,'CURTIS','IRBY','CURTIS.IRBY@sakilacustomer.org',415,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(411,1,'NORMAN','CURRIER','NORMAN.CURRIER@sakilacustomer.org',416,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(412,2,'ALLEN','BUTTERFIELD','ALLEN.BUTTERFIELD@sakilacustomer.org',417,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(413,2,'MARVIN','YEE','MARVIN.YEE@sakilacustomer.org',418,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(414,1,'VINCENT','RALSTON','VINCENT.RALSTON@sakilacustomer.org',419,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(415,1,'GLENN','PULLEN','GLENN.PULLEN@sakilacustomer.org',420,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(416,2,'JEFFERY','PINSON','JEFFERY.PINSON@sakilacustomer.org',421,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(417,1,'TRAVIS','ESTEP','TRAVIS.ESTEP@sakilacustomer.org',422,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(418,2,'JEFF','EAST','JEFF.EAST@sakilacustomer.org',423,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(419,1,'CHAD','CARBONE','CHAD.CARBONE@sakilacustomer.org',424,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(420,1,'JACOB','LANCE','JACOB.LANCE@sakilacustomer.org',425,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(421,1,'LEE','HAWKS','LEE.HAWKS@sakilacustomer.org',426,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(422,1,'MELVIN','ELLINGTON','MELVIN.ELLINGTON@sakilacustomer.org',427,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(423,2,'ALFRED','CASILLAS','ALFRED.CASILLAS@sakilacustomer.org',428,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(424,2,'KYLE','SPURLOCK','KYLE.SPURLOCK@sakilacustomer.org',429,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(425,2,'FRANCIS','SIKES','FRANCIS.SIKES@sakilacustomer.org',430,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(426,1,'BRADLEY','MOTLEY','BRADLEY.MOTLEY@sakilacustomer.org',431,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(427,2,'JESUS','MCCARTNEY','JESUS.MCCARTNEY@sakilacustomer.org',432,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(428,2,'HERBERT','KRUGER','HERBERT.KRUGER@sakilacustomer.org',433,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(429,2,'FREDERICK','ISBELL','FREDERICK.ISBELL@sakilacustomer.org',434,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(430,1,'RAY','HOULE','RAY.HOULE@sakilacustomer.org',435,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(431,2,'JOEL','FRANCISCO','JOEL.FRANCISCO@sakilacustomer.org',436,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(432,1,'EDWIN','BURK','EDWIN.BURK@sakilacustomer.org',437,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(433,1,'DON','BONE','DON.BONE@sakilacustomer.org',438,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(434,1,'EDDIE','TOMLIN','EDDIE.TOMLIN@sakilacustomer.org',439,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(435,2,'RICKY','SHELBY','RICKY.SHELBY@sakilacustomer.org',440,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(436,1,'TROY','QUIGLEY','TROY.QUIGLEY@sakilacustomer.org',441,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(437,2,'RANDALL','NEUMANN','RANDALL.NEUMANN@sakilacustomer.org',442,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(438,1,'BARRY','LOVELACE','BARRY.LOVELACE@sakilacustomer.org',443,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(439,2,'ALEXANDER','FENNELL','ALEXANDER.FENNELL@sakilacustomer.org',444,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(440,1,'BERNARD','COLBY','BERNARD.COLBY@sakilacustomer.org',445,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(441,1,'MARIO','CHEATHAM','MARIO.CHEATHAM@sakilacustomer.org',446,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(442,1,'LEROY','BUSTAMANTE','LEROY.BUSTAMANTE@sakilacustomer.org',447,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(443,2,'FRANCISCO','SKIDMORE','FRANCISCO.SKIDMORE@sakilacustomer.org',448,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(444,2,'MARCUS','HIDALGO','MARCUS.HIDALGO@sakilacustomer.org',449,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(445,1,'MICHEAL','FORMAN','MICHEAL.FORMAN@sakilacustomer.org',450,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(446,2,'THEODORE','CULP','THEODORE.CULP@sakilacustomer.org',451,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(447,1,'CLIFFORD','BOWENS','CLIFFORD.BOWENS@sakilacustomer.org',452,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(448,1,'MIGUEL','BETANCOURT','MIGUEL.BETANCOURT@sakilacustomer.org',453,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(449,2,'OSCAR','AQUINO','OSCAR.AQUINO@sakilacustomer.org',454,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(450,1,'JAY','ROBB','JAY.ROBB@sakilacustomer.org',455,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(451,1,'JIM','REA','JIM.REA@sakilacustomer.org',456,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(452,1,'TOM','MILNER','TOM.MILNER@sakilacustomer.org',457,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(453,1,'CALVIN','MARTEL','CALVIN.MARTEL@sakilacustomer.org',458,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(454,2,'ALEX','GRESHAM','ALEX.GRESHAM@sakilacustomer.org',459,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(455,2,'JON','WILES','JON.WILES@sakilacustomer.org',460,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(456,2,'RONNIE','RICKETTS','RONNIE.RICKETTS@sakilacustomer.org',461,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(457,2,'BILL','GAVIN','BILL.GAVIN@sakilacustomer.org',462,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(458,1,'LLOYD','DOWD','LLOYD.DOWD@sakilacustomer.org',463,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(459,1,'TOMMY','COLLAZO','TOMMY.COLLAZO@sakilacustomer.org',464,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(460,1,'LEON','BOSTIC','LEON.BOSTIC@sakilacustomer.org',465,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(461,1,'DEREK','BLAKELY','DEREK.BLAKELY@sakilacustomer.org',466,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(462,2,'WARREN','SHERROD','WARREN.SHERROD@sakilacustomer.org',467,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(463,2,'DARRELL','POWER','DARRELL.POWER@sakilacustomer.org',468,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(464,1,'JEROME','KENYON','JEROME.KENYON@sakilacustomer.org',469,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(465,1,'FLOYD','GANDY','FLOYD.GANDY@sakilacustomer.org',470,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(466,1,'LEO','EBERT','LEO.EBERT@sakilacustomer.org',471,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(467,2,'ALVIN','DELOACH','ALVIN.DELOACH@sakilacustomer.org',472,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(468,1,'TIM','CARY','TIM.CARY@sakilacustomer.org',473,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(469,2,'WESLEY','BULL','WESLEY.BULL@sakilacustomer.org',474,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(470,1,'GORDON','ALLARD','GORDON.ALLARD@sakilacustomer.org',475,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(471,1,'DEAN','SAUER','DEAN.SAUER@sakilacustomer.org',476,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(472,1,'GREG','ROBINS','GREG.ROBINS@sakilacustomer.org',477,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(473,2,'JORGE','OLIVARES','JORGE.OLIVARES@sakilacustomer.org',478,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(474,2,'DUSTIN','GILLETTE','DUSTIN.GILLETTE@sakilacustomer.org',479,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(475,2,'PEDRO','CHESTNUT','PEDRO.CHESTNUT@sakilacustomer.org',480,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(476,1,'DERRICK','BOURQUE','DERRICK.BOURQUE@sakilacustomer.org',481,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(477,1,'DAN','PAINE','DAN.PAINE@sakilacustomer.org',482,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(478,1,'LEWIS','LYMAN','LEWIS.LYMAN@sakilacustomer.org',483,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(479,1,'ZACHARY','HITE','ZACHARY.HITE@sakilacustomer.org',484,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(480,1,'COREY','HAUSER','COREY.HAUSER@sakilacustomer.org',485,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(481,1,'HERMAN','DEVORE','HERMAN.DEVORE@sakilacustomer.org',486,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(482,1,'MAURICE','CRAWLEY','MAURICE.CRAWLEY@sakilacustomer.org',487,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(483,2,'VERNON','CHAPA','VERNON.CHAPA@sakilacustomer.org',488,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(484,1,'ROBERTO','VU','ROBERTO.VU@sakilacustomer.org',489,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(485,1,'CLYDE','TOBIAS','CLYDE.TOBIAS@sakilacustomer.org',490,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(486,1,'GLEN','TALBERT','GLEN.TALBERT@sakilacustomer.org',491,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(487,2,'HECTOR','POINDEXTER','HECTOR.POINDEXTER@sakilacustomer.org',492,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(488,2,'SHANE','MILLARD','SHANE.MILLARD@sakilacustomer.org',493,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(489,1,'RICARDO','MEADOR','RICARDO.MEADOR@sakilacustomer.org',494,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(490,1,'SAM','MCDUFFIE','SAM.MCDUFFIE@sakilacustomer.org',495,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(491,2,'RICK','MATTOX','RICK.MATTOX@sakilacustomer.org',496,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(492,2,'LESTER','KRAUS','LESTER.KRAUS@sakilacustomer.org',497,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(493,1,'BRENT','HARKINS','BRENT.HARKINS@sakilacustomer.org',498,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(494,2,'RAMON','CHOATE','RAMON.CHOATE@sakilacustomer.org',499,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(495,2,'CHARLIE','BESS','CHARLIE.BESS@sakilacustomer.org',500,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(496,2,'TYLER','WREN','TYLER.WREN@sakilacustomer.org',501,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(497,2,'GILBERT','SLEDGE','GILBERT.SLEDGE@sakilacustomer.org',502,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(498,1,'GENE','SANBORN','GENE.SANBORN@sakilacustomer.org',503,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(499,2,'MARC','OUTLAW','MARC.OUTLAW@sakilacustomer.org',504,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(500,1,'REGINALD','KINDER','REGINALD.KINDER@sakilacustomer.org',505,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(501,1,'RUBEN','GEARY','RUBEN.GEARY@sakilacustomer.org',506,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(502,1,'BRETT','CORNWELL','BRETT.CORNWELL@sakilacustomer.org',507,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(503,1,'ANGEL','BARCLAY','ANGEL.BARCLAY@sakilacustomer.org',508,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(504,1,'NATHANIEL','ADAM','NATHANIEL.ADAM@sakilacustomer.org',509,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(505,1,'RAFAEL','ABNEY','RAFAEL.ABNEY@sakilacustomer.org',510,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(506,2,'LESLIE','SEWARD','LESLIE.SEWARD@sakilacustomer.org',511,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(507,2,'EDGAR','RHOADS','EDGAR.RHOADS@sakilacustomer.org',512,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(508,2,'MILTON','HOWLAND','MILTON.HOWLAND@sakilacustomer.org',513,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(509,1,'RAUL','FORTIER','RAUL.FORTIER@sakilacustomer.org',514,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(510,2,'BEN','EASTER','BEN.EASTER@sakilacustomer.org',515,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(511,1,'CHESTER','BENNER','CHESTER.BENNER@sakilacustomer.org',516,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(512,1,'CECIL','VINES','CECIL.VINES@sakilacustomer.org',517,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(513,2,'DUANE','TUBBS','DUANE.TUBBS@sakilacustomer.org',519,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(514,2,'FRANKLIN','TROUTMAN','FRANKLIN.TROUTMAN@sakilacustomer.org',520,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(515,1,'ANDRE','RAPP','ANDRE.RAPP@sakilacustomer.org',521,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(516,2,'ELMER','NOE','ELMER.NOE@sakilacustomer.org',522,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(517,2,'BRAD','MCCURDY','BRAD.MCCURDY@sakilacustomer.org',523,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(518,1,'GABRIEL','HARDER','GABRIEL.HARDER@sakilacustomer.org',524,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(519,2,'RON','DELUCA','RON.DELUCA@sakilacustomer.org',525,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(520,2,'MITCHELL','WESTMORELAND','MITCHELL.WESTMORELAND@sakilacustomer.org',526,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(521,2,'ROLAND','SOUTH','ROLAND.SOUTH@sakilacustomer.org',527,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(522,2,'ARNOLD','HAVENS','ARNOLD.HAVENS@sakilacustomer.org',528,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(523,1,'HARVEY','GUAJARDO','HARVEY.GUAJARDO@sakilacustomer.org',529,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(524,1,'JARED','ELY','JARED.ELY@sakilacustomer.org',530,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(525,2,'ADRIAN','CLARY','ADRIAN.CLARY@sakilacustomer.org',531,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(526,2,'KARL','SEAL','KARL.SEAL@sakilacustomer.org',532,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(527,1,'CORY','MEEHAN','CORY.MEEHAN@sakilacustomer.org',533,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(528,1,'CLAUDE','HERZOG','CLAUDE.HERZOG@sakilacustomer.org',534,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(529,2,'ERIK','GUILLEN','ERIK.GUILLEN@sakilacustomer.org',535,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(530,2,'DARRYL','ASHCRAFT','DARRYL.ASHCRAFT@sakilacustomer.org',536,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(531,2,'JAMIE','WAUGH','JAMIE.WAUGH@sakilacustomer.org',537,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(532,2,'NEIL','RENNER','NEIL.RENNER@sakilacustomer.org',538,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(533,1,'JESSIE','MILAM','JESSIE.MILAM@sakilacustomer.org',539,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(534,1,'CHRISTIAN','JUNG','CHRISTIAN.JUNG@sakilacustomer.org',540,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(535,1,'JAVIER','ELROD','JAVIER.ELROD@sakilacustomer.org',541,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(536,2,'FERNANDO','CHURCHILL','FERNANDO.CHURCHILL@sakilacustomer.org',542,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(537,2,'CLINTON','BUFORD','CLINTON.BUFORD@sakilacustomer.org',543,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(538,2,'TED','BREAUX','TED.BREAUX@sakilacustomer.org',544,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(539,1,'MATHEW','BOLIN','MATHEW.BOLIN@sakilacustomer.org',545,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(540,1,'TYRONE','ASHER','TYRONE.ASHER@sakilacustomer.org',546,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(541,2,'DARREN','WINDHAM','DARREN.WINDHAM@sakilacustomer.org',547,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(542,2,'LONNIE','TIRADO','LONNIE.TIRADO@sakilacustomer.org',548,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(543,1,'LANCE','PEMBERTON','LANCE.PEMBERTON@sakilacustomer.org',549,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(544,2,'CODY','NOLEN','CODY.NOLEN@sakilacustomer.org',550,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(545,2,'JULIO','NOLAND','JULIO.NOLAND@sakilacustomer.org',551,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(546,1,'KELLY','KNOTT','KELLY.KNOTT@sakilacustomer.org',552,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(547,1,'KURT','EMMONS','KURT.EMMONS@sakilacustomer.org',553,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(548,1,'ALLAN','CORNISH','ALLAN.CORNISH@sakilacustomer.org',554,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(549,1,'NELSON','CHRISTENSON','NELSON.CHRISTENSON@sakilacustomer.org',555,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(550,2,'GUY','BROWNLEE','GUY.BROWNLEE@sakilacustomer.org',556,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(551,2,'CLAYTON','BARBEE','CLAYTON.BARBEE@sakilacustomer.org',557,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(552,2,'HUGH','WALDROP','HUGH.WALDROP@sakilacustomer.org',558,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(553,1,'MAX','PITT','MAX.PITT@sakilacustomer.org',559,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(554,1,'DWAYNE','OLVERA','DWAYNE.OLVERA@sakilacustomer.org',560,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(555,1,'DWIGHT','LOMBARDI','DWIGHT.LOMBARDI@sakilacustomer.org',561,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(556,2,'ARMANDO','GRUBER','ARMANDO.GRUBER@sakilacustomer.org',562,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(557,1,'FELIX','GAFFNEY','FELIX.GAFFNEY@sakilacustomer.org',563,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(558,1,'JIMMIE','EGGLESTON','JIMMIE.EGGLESTON@sakilacustomer.org',564,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(559,2,'EVERETT','BANDA','EVERETT.BANDA@sakilacustomer.org',565,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(560,1,'JORDAN','ARCHULETA','JORDAN.ARCHULETA@sakilacustomer.org',566,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(561,2,'IAN','STILL','IAN.STILL@sakilacustomer.org',567,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(562,1,'WALLACE','SLONE','WALLACE.SLONE@sakilacustomer.org',568,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(563,2,'KEN','PREWITT','KEN.PREWITT@sakilacustomer.org',569,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(564,2,'BOB','PFEIFFER','BOB.PFEIFFER@sakilacustomer.org',570,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(565,2,'JAIME','NETTLES','JAIME.NETTLES@sakilacustomer.org',571,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(566,1,'CASEY','MENA','CASEY.MENA@sakilacustomer.org',572,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(567,2,'ALFREDO','MCADAMS','ALFREDO.MCADAMS@sakilacustomer.org',573,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(568,2,'ALBERTO','HENNING','ALBERTO.HENNING@sakilacustomer.org',574,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(569,2,'DAVE','GARDINER','DAVE.GARDINER@sakilacustomer.org',575,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(570,2,'IVAN','CROMWELL','IVAN.CROMWELL@sakilacustomer.org',576,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(571,2,'JOHNNIE','CHISHOLM','JOHNNIE.CHISHOLM@sakilacustomer.org',577,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(572,1,'SIDNEY','BURLESON','SIDNEY.BURLESON@sakilacustomer.org',578,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(573,1,'BYRON','BOX','BYRON.BOX@sakilacustomer.org',579,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(574,2,'JULIAN','VEST','JULIAN.VEST@sakilacustomer.org',580,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(575,2,'ISAAC','OGLESBY','ISAAC.OGLESBY@sakilacustomer.org',581,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(576,2,'MORRIS','MCCARTER','MORRIS.MCCARTER@sakilacustomer.org',582,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(577,2,'CLIFTON','MALCOLM','CLIFTON.MALCOLM@sakilacustomer.org',583,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(578,2,'WILLARD','LUMPKIN','WILLARD.LUMPKIN@sakilacustomer.org',584,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(579,2,'DARYL','LARUE','DARYL.LARUE@sakilacustomer.org',585,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(580,1,'ROSS','GREY','ROSS.GREY@sakilacustomer.org',586,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(581,1,'VIRGIL','WOFFORD','VIRGIL.WOFFORD@sakilacustomer.org',587,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(582,2,'ANDY','VANHORN','ANDY.VANHORN@sakilacustomer.org',588,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(583,1,'MARSHALL','THORN','MARSHALL.THORN@sakilacustomer.org',589,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(584,2,'SALVADOR','TEEL','SALVADOR.TEEL@sakilacustomer.org',590,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(585,1,'PERRY','SWAFFORD','PERRY.SWAFFORD@sakilacustomer.org',591,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(586,1,'KIRK','STCLAIR','KIRK.STCLAIR@sakilacustomer.org',592,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(587,1,'SERGIO','STANFIELD','SERGIO.STANFIELD@sakilacustomer.org',593,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(588,1,'MARION','OCAMPO','MARION.OCAMPO@sakilacustomer.org',594,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(589,1,'TRACY','HERRMANN','TRACY.HERRMANN@sakilacustomer.org',595,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(590,2,'SETH','HANNON','SETH.HANNON@sakilacustomer.org',596,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(591,1,'KENT','ARSENAULT','KENT.ARSENAULT@sakilacustomer.org',597,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(592,1,'TERRANCE','ROUSH','TERRANCE.ROUSH@sakilacustomer.org',598,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(593,2,'RENE','MCALISTER','RENE.MCALISTER@sakilacustomer.org',599,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(594,1,'EDUARDO','HIATT','EDUARDO.HIATT@sakilacustomer.org',600,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(595,1,'TERRENCE','GUNDERSON','TERRENCE.GUNDERSON@sakilacustomer.org',601,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(596,1,'ENRIQUE','FORSYTHE','ENRIQUE.FORSYTHE@sakilacustomer.org',602,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(597,1,'FREDDIE','DUGGAN','FREDDIE.DUGGAN@sakilacustomer.org',603,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(598,1,'WADE','DELVALLE','WADE.DELVALLE@sakilacustomer.org',604,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'), +(599,2,'AUSTIN','CINTRON','AUSTIN.CINTRON@sakilacustomer.org',605,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'); +COMMIT; + +-- +-- Trigger to enforce create dates on INSERT +-- + +CREATE TRIGGER customer_create_date BEFORE INSERT ON customer + FOR EACH ROW SET NEW.create_date = NOW(); + +-- +-- Dumping data for table film +-- + +SET AUTOCOMMIT=0; +INSERT INTO film VALUES (1,'ACADEMY DINOSAUR','A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies',2006,1,NULL,6,'0.99',86,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(2,'ACE GOLDFINGER','A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China',2006,1,NULL,3,'4.99',48,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(3,'ADAPTATION HOLES','A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory',2006,1,NULL,7,'2.99',50,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(4,'AFFAIR PREJUDICE','A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank',2006,1,NULL,5,'2.99',117,'26.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(5,'AFRICAN EGG','A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico',2006,1,NULL,6,'2.99',130,'22.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(6,'AGENT TRUMAN','A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China',2006,1,NULL,3,'2.99',169,'17.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(7,'AIRPLANE SIERRA','A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat',2006,1,NULL,6,'4.99',62,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(8,'AIRPORT POLLOCK','A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India',2006,1,NULL,6,'4.99',54,'15.99','R','Trailers','2006-02-15 05:03:42'), +(9,'ALABAMA DEVIL','A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat',2006,1,NULL,3,'2.99',114,'21.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(10,'ALADDIN CALENDAR','A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China',2006,1,NULL,6,'4.99',63,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(11,'ALAMO VIDEOTAPE','A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention',2006,1,NULL,6,'0.99',126,'16.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(12,'ALASKA PHANTOM','A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia',2006,1,NULL,6,'0.99',136,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(13,'ALI FOREVER','A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies',2006,1,NULL,4,'4.99',150,'21.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(14,'ALICE FANTASIA','A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia',2006,1,NULL,6,'0.99',94,'23.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(15,'ALIEN CENTER','A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention',2006,1,NULL,5,'2.99',46,'10.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(16,'ALLEY EVOLUTION','A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans',2006,1,NULL,6,'2.99',180,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(17,'ALONE TRIP','A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House',2006,1,NULL,3,'0.99',82,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(18,'ALTER VICTORY','A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies',2006,1,NULL,6,'0.99',57,'27.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(19,'AMADEUS HOLY','A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon',2006,1,NULL,6,'0.99',113,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(20,'AMELIE HELLFIGHTERS','A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon',2006,1,NULL,4,'4.99',79,'23.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(21,'AMERICAN CIRCUS','A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank',2006,1,NULL,3,'4.99',129,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(22,'AMISTAD MIDSUMMER','A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California',2006,1,NULL,6,'2.99',85,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(23,'ANACONDA CONFESSIONS','A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia',2006,1,NULL,3,'0.99',92,'9.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(24,'ANALYZE HOOSIERS','A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert',2006,1,NULL,6,'2.99',181,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(25,'ANGELS LIFE','A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin',2006,1,NULL,3,'2.99',74,'15.99','G','Trailers','2006-02-15 05:03:42'), +(26,'ANNIE IDENTITY','A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',86,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(27,'ANONYMOUS HUMAN','A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank',2006,1,NULL,7,'0.99',179,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(28,'ANTHEM LUKE','A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park',2006,1,NULL,5,'4.99',91,'16.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(29,'ANTITRUST TOMATOES','A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India',2006,1,NULL,5,'2.99',168,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(30,'ANYTHING SAVANNAH','A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House',2006,1,NULL,4,'2.99',82,'27.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(31,'APACHE DIVINE','A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat',2006,1,NULL,5,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(32,'APOCALYPSE FLAMINGOS','A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',119,'11.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(33,'APOLLO TEEN','A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,5,'2.99',153,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(34,'ARABIA DOGMA','A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria',2006,1,NULL,6,'0.99',62,'29.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(35,'ARACHNOPHOBIA ROLLERCOASTER','A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station',2006,1,NULL,4,'2.99',147,'24.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(36,'ARGONAUTS TOWN','A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',127,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(37,'ARIZONA BANG','A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery',2006,1,NULL,3,'2.99',121,'28.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(38,'ARK RIDGEMONT','A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert',2006,1,NULL,6,'0.99',68,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(39,'ARMAGEDDON LOST','A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft',2006,1,NULL,5,'0.99',99,'10.99','G','Trailers','2006-02-15 05:03:42'), +(40,'ARMY FLINTSTONES','A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria',2006,1,NULL,4,'0.99',148,'22.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(41,'ARSENIC INDEPENDENCE','A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin',2006,1,NULL,4,'0.99',137,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(42,'ARTIST COLDBLOODED','A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California',2006,1,NULL,5,'2.99',170,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(43,'ATLANTIS CAUSE','A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank',2006,1,NULL,6,'2.99',170,'15.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(44,'ATTACKS HATE','A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',113,'21.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(45,'ATTRACTION NEWTON','A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan',2006,1,NULL,5,'4.99',83,'14.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(46,'AUTUMN CROW','A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert',2006,1,NULL,3,'4.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(47,'BABY HALL','A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',153,'23.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(48,'BACKLASH UNDEFEATED','A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery',2006,1,NULL,3,'4.99',118,'24.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(49,'BADMAN DAWN','A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat',2006,1,NULL,6,'2.99',162,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(50,'BAKED CLEOPATRA','A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery',2006,1,NULL,3,'2.99',182,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(51,'BALLOON HOMEWARD','A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station',2006,1,NULL,5,'2.99',75,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(52,'BALLROOM MOCKINGBIRD','A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California',2006,1,NULL,6,'0.99',173,'29.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(53,'BANG KWAI','A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park',2006,1,NULL,5,'2.99',87,'25.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(54,'BANGER PINOCCHIO','A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station',2006,1,NULL,5,'0.99',113,'15.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(55,'BARBARELLA STREETCAR','A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery',2006,1,NULL,6,'2.99',65,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(56,'BAREFOOT MANCHURIAN','A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park',2006,1,NULL,6,'2.99',129,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(57,'BASIC EASY','A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat',2006,1,NULL,4,'2.99',90,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(58,'BEACH HEARTBREAKERS','A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia',2006,1,NULL,6,'2.99',122,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(59,'BEAR GRACELAND','A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station',2006,1,NULL,4,'2.99',160,'20.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(60,'BEAST HUNCHBACK','A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China',2006,1,NULL,3,'4.99',89,'22.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(61,'BEAUTY GREASE','A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',175,'28.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(62,'BED HIGHBALL','A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House',2006,1,NULL,5,'2.99',106,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(63,'BEDAZZLED MARRIED','A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House',2006,1,NULL,6,'0.99',73,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(64,'BEETHOVEN EXORCIST','A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico',2006,1,NULL,6,'0.99',151,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(65,'BEHAVIOR RUNAWAY','A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'4.99',100,'20.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(66,'BENEATH RUSH','A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station',2006,1,NULL,6,'0.99',53,'27.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(67,'BERETS AGENT','A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China',2006,1,NULL,5,'2.99',77,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(68,'BETRAYED REAR','A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank',2006,1,NULL,5,'4.99',122,'26.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(69,'BEVERLY OUTLAW','A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station',2006,1,NULL,3,'2.99',85,'21.99','R','Trailers','2006-02-15 05:03:42'), +(70,'BIKINI BORROWERS','A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station',2006,1,NULL,7,'4.99',142,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(71,'BILKO ANONYMOUS','A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station',2006,1,NULL,3,'4.99',100,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(72,'BILL OTHERS','A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention',2006,1,NULL,6,'2.99',93,'12.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(73,'BINGO TALENTED','A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria',2006,1,NULL,5,'2.99',150,'22.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(74,'BIRCH ANTITRUST','A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon',2006,1,NULL,4,'4.99',162,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(75,'BIRD INDEPENDENCE','A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies',2006,1,NULL,6,'4.99',163,'14.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(76,'BIRDCAGE CASPER','A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India',2006,1,NULL,4,'0.99',103,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(77,'BIRDS PERDITION','A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California',2006,1,NULL,5,'4.99',61,'15.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(78,'BLACKOUT PRIVATE','A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan',2006,1,NULL,7,'2.99',85,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(79,'BLADE POLISH','A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station',2006,1,NULL,5,'0.99',114,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(80,'BLANKET BEVERLY','A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria',2006,1,NULL,7,'2.99',148,'21.99','G','Trailers','2006-02-15 05:03:42'), +(81,'BLINDNESS GUN','A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat',2006,1,NULL,6,'4.99',103,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(82,'BLOOD ARGONAUTS','A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse',2006,1,NULL,3,'0.99',71,'13.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(83,'BLUES INSTINCT','A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House',2006,1,NULL,5,'2.99',50,'18.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(84,'BOILED DARES','A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan',2006,1,NULL,7,'4.99',102,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(85,'BONNIE HOLOCAUST','A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan',2006,1,NULL,4,'0.99',63,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(86,'BOOGIE AMELIE','A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico',2006,1,NULL,6,'4.99',121,'11.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(87,'BOONDOCK BALLROOM','A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico',2006,1,NULL,7,'0.99',76,'14.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(88,'BORN SPINAL','A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria',2006,1,NULL,7,'4.99',179,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(89,'BORROWERS BEDAZZLED','A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House',2006,1,NULL,7,'0.99',63,'22.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(90,'BOULEVARD MOB','A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China',2006,1,NULL,3,'0.99',63,'11.99','R','Trailers','2006-02-15 05:03:42'), +(91,'BOUND CHEAPER','A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon',2006,1,NULL,5,'0.99',98,'17.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(92,'BOWFINGER GABLES','A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California',2006,1,NULL,7,'4.99',72,'19.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(93,'BRANNIGAN SUNRISE','A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin',2006,1,NULL,4,'4.99',121,'27.99','PG','Trailers','2006-02-15 05:03:42'), +(94,'BRAVEHEART HUMAN','A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin',2006,1,NULL,7,'2.99',176,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(95,'BREAKFAST GOLDFINGER','A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin',2006,1,NULL,5,'4.99',123,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(96,'BREAKING HOME','A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',169,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(97,'BRIDE INTRIGUE','A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans',2006,1,NULL,7,'0.99',56,'24.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(98,'BRIGHT ENCOUNTERS','A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat',2006,1,NULL,4,'4.99',73,'12.99','PG-13','Trailers','2006-02-15 05:03:42'), +(99,'BRINGING HYSTERICAL','A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat',2006,1,NULL,7,'2.99',136,'14.99','PG','Trailers','2006-02-15 05:03:42'), +(100,'BROOKLYN DESERT','A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station',2006,1,NULL,7,'4.99',161,'21.99','R','Commentaries','2006-02-15 05:03:42'), +(101,'BROTHERHOOD BLANKET','A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan',2006,1,NULL,3,'0.99',73,'26.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(102,'BUBBLE GROSSE','A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon',2006,1,NULL,4,'4.99',60,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(103,'BUCKET BROTHERHOOD','A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory',2006,1,NULL,7,'4.99',133,'27.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(104,'BUGSY SONG','A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station',2006,1,NULL,4,'2.99',119,'17.99','G','Commentaries','2006-02-15 05:03:42'), +(105,'BULL SHAWSHANK','A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies',2006,1,NULL,6,'0.99',125,'21.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(106,'BULWORTH COMMANDMENTS','A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback',2006,1,NULL,4,'2.99',61,'14.99','G','Trailers','2006-02-15 05:03:42'), +(107,'BUNCH MINDS','A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention',2006,1,NULL,4,'2.99',63,'13.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(108,'BUTCH PANTHER','A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans',2006,1,NULL,6,'0.99',67,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(109,'BUTTERFLY CHOCOLAT','A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank',2006,1,NULL,3,'0.99',89,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(110,'CABIN FLASH','A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory',2006,1,NULL,4,'0.99',53,'25.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(111,'CADDYSHACK JEDI','A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia',2006,1,NULL,3,'0.99',52,'17.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(112,'CALENDAR GUNFIGHT','A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria',2006,1,NULL,4,'4.99',120,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(113,'CALIFORNIA BIRDS','A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India',2006,1,NULL,4,'4.99',75,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(114,'CAMELOT VACATION','A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention',2006,1,NULL,3,'0.99',61,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(115,'CAMPUS REMEMBER','A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat',2006,1,NULL,5,'2.99',167,'27.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(116,'CANDIDATE PERDITION','A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station',2006,1,NULL,4,'2.99',70,'10.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(117,'CANDLES GRAPES','A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House',2006,1,NULL,6,'4.99',135,'15.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(118,'CANYON STOCK','A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse',2006,1,NULL,7,'0.99',85,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(119,'CAPER MOTIONS','A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention',2006,1,NULL,6,'0.99',176,'22.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(120,'CARIBBEAN LIBERTY','A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank',2006,1,NULL,3,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(121,'CAROL TEXAS','A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery',2006,1,NULL,4,'2.99',151,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(122,'CARRIE BUNCH','A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies',2006,1,NULL,7,'0.99',114,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(123,'CASABLANCA SUPER','A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station',2006,1,NULL,6,'4.99',85,'22.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(124,'CASPER DRAGONFLY','A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert',2006,1,NULL,3,'4.99',163,'16.99','PG-13','Trailers','2006-02-15 05:03:42'), +(125,'CASSIDY WYOMING','A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans',2006,1,NULL,5,'2.99',61,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(126,'CASUALTIES ENCINO','A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery',2006,1,NULL,3,'4.99',179,'16.99','G','Trailers','2006-02-15 05:03:42'), +(127,'CAT CONEHEADS','A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India',2006,1,NULL,5,'4.99',112,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(128,'CATCH AMISTAD','A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria',2006,1,NULL,7,'0.99',183,'10.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(129,'CAUSE DATE','A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention',2006,1,NULL,3,'2.99',179,'16.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(130,'CELEBRITY HORN','A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank',2006,1,NULL,7,'0.99',110,'24.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(131,'CENTER DINOSAUR','A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California',2006,1,NULL,5,'4.99',152,'12.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(132,'CHAINSAW UPTOWN','A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia',2006,1,NULL,6,'0.99',114,'25.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(133,'CHAMBER ITALIAN','A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria',2006,1,NULL,7,'4.99',117,'14.99','NC-17','Trailers','2006-02-15 05:03:42'), +(134,'CHAMPION FLATLINERS','A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery',2006,1,NULL,4,'4.99',51,'21.99','PG','Trailers','2006-02-15 05:03:42'), +(135,'CHANCE RESURRECTION','A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China',2006,1,NULL,3,'2.99',70,'22.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(136,'CHAPLIN LICENSE','A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India',2006,1,NULL,7,'2.99',146,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(137,'CHARADE DUFFEL','A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention',2006,1,NULL,3,'2.99',66,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(138,'CHARIOTS CONSPIRACY','A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station',2006,1,NULL,5,'2.99',71,'29.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(139,'CHASING FIGHT','A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank',2006,1,NULL,7,'4.99',114,'21.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(140,'CHEAPER CLYDE','A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan',2006,1,NULL,6,'0.99',87,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(141,'CHICAGO NORTH','A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California',2006,1,NULL,6,'4.99',185,'11.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(142,'CHICKEN HELLFIGHTERS','A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia',2006,1,NULL,3,'0.99',122,'24.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(143,'CHILL LUCK','A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies',2006,1,NULL,6,'0.99',142,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(144,'CHINATOWN GLADIATOR','A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India',2006,1,NULL,7,'4.99',61,'24.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(145,'CHISUM BEHAVIOR','A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India',2006,1,NULL,5,'4.99',124,'25.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(146,'CHITTY LOCK','A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station',2006,1,NULL,6,'2.99',107,'24.99','G','Commentaries','2006-02-15 05:03:42'), +(147,'CHOCOLAT HARRY','A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan',2006,1,NULL,5,'0.99',101,'16.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(148,'CHOCOLATE DUCK','A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China',2006,1,NULL,3,'2.99',132,'13.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(149,'CHRISTMAS MOONSHINE','A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse',2006,1,NULL,7,'0.99',150,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(150,'CIDER DESIRE','A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia',2006,1,NULL,7,'2.99',101,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(151,'CINCINATTI WHISPERER','A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin',2006,1,NULL,5,'4.99',143,'26.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(152,'CIRCUS YOUTH','A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon',2006,1,NULL,5,'2.99',90,'13.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(153,'CITIZEN SHREK','A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback',2006,1,NULL,7,'0.99',165,'18.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(154,'CLASH FREDDY','A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia',2006,1,NULL,6,'2.99',81,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(155,'CLEOPATRA DEVIL','A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon',2006,1,NULL,6,'0.99',150,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(156,'CLERKS ANGELS','A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon',2006,1,NULL,3,'4.99',164,'15.99','G','Commentaries','2006-02-15 05:03:42'), +(157,'CLOCKWORK PARADISE','A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon',2006,1,NULL,7,'0.99',143,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(158,'CLONES PINOCCHIO','A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans',2006,1,NULL,6,'2.99',124,'16.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(159,'CLOSER BANG','A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India',2006,1,NULL,5,'4.99',58,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(160,'CLUB GRAFFITI','A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat',2006,1,NULL,4,'0.99',65,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(161,'CLUE GRAIL','A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China',2006,1,NULL,6,'4.99',70,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(162,'CLUELESS BUCKET','A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House',2006,1,NULL,4,'2.99',95,'13.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(163,'CLYDE THEORY','A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat',2006,1,NULL,4,'0.99',139,'29.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(164,'COAST RAINBOW','A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert',2006,1,NULL,4,'0.99',55,'20.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(165,'COLDBLOODED DARLING','A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico',2006,1,NULL,7,'4.99',70,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(166,'COLOR PHILADELPHIA','A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert',2006,1,NULL,6,'2.99',149,'19.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(167,'COMA HEAD','A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California',2006,1,NULL,6,'4.99',109,'10.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(168,'COMANCHEROS ENEMY','A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico',2006,1,NULL,5,'0.99',67,'23.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(169,'COMFORTS RUSH','A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft',2006,1,NULL,3,'2.99',76,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(170,'COMMAND DARLING','A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan',2006,1,NULL,5,'4.99',120,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(171,'COMMANDMENTS EXPRESS','A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',59,'13.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(172,'CONEHEADS SMOOCHY','A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria',2006,1,NULL,7,'4.99',112,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(173,'CONFESSIONS MAGUIRE','A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon',2006,1,NULL,7,'4.99',65,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(174,'CONFIDENTIAL INTERVIEW','A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan',2006,1,NULL,6,'4.99',180,'13.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(175,'CONFUSED CANDLES','A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon',2006,1,NULL,3,'2.99',122,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(176,'CONGENIALITY QUEST','A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon',2006,1,NULL,6,'0.99',87,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(177,'CONNECTICUT TRAMP','A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank',2006,1,NULL,4,'4.99',172,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(178,'CONNECTION MICROCOSMOS','A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station',2006,1,NULL,6,'0.99',115,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(179,'CONQUERER NUTS','A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft',2006,1,NULL,4,'4.99',173,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(180,'CONSPIRACY SPIRIT','A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',184,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(181,'CONTACT ANONYMOUS','A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India',2006,1,NULL,7,'2.99',166,'10.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(182,'CONTROL ANTHEM','A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery',2006,1,NULL,7,'4.99',185,'9.99','G','Commentaries','2006-02-15 05:03:42'), +(183,'CONVERSATION DOWNHILL','A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention',2006,1,NULL,4,'4.99',112,'14.99','R','Commentaries','2006-02-15 05:03:42'), +(184,'CORE SUIT','A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse',2006,1,NULL,3,'2.99',92,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(185,'COWBOY DOOM','A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon',2006,1,NULL,3,'2.99',146,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(186,'CRAFT OUTFIELD','A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory',2006,1,NULL,6,'0.99',64,'17.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(187,'CRANES RESERVOIR','A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory',2006,1,NULL,5,'2.99',57,'12.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(188,'CRAZY HOME','A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback',2006,1,NULL,7,'2.99',136,'24.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(189,'CREATURES SHAKESPEARE','A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India',2006,1,NULL,3,'0.99',139,'23.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(190,'CREEPERS KANE','A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat',2006,1,NULL,5,'4.99',172,'23.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(191,'CROOKED FROGMEN','A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park',2006,1,NULL,6,'0.99',143,'27.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(192,'CROSSING DIVORCE','A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin',2006,1,NULL,4,'4.99',50,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(193,'CROSSROADS CASUALTIES','A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback',2006,1,NULL,5,'2.99',153,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(194,'CROW GREASE','A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station',2006,1,NULL,6,'0.99',104,'22.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(195,'CROWDS TELEMARK','A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House',2006,1,NULL,3,'4.99',112,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(196,'CRUELTY UNFORGIVEN','A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria',2006,1,NULL,7,'0.99',69,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(197,'CRUSADE HONEY','A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',112,'27.99','R','Commentaries','2006-02-15 05:03:42'), +(198,'CRYSTAL BREAKING','A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan',2006,1,NULL,6,'2.99',184,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(199,'CUPBOARD SINNERS','A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',56,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(200,'CURTAIN VIDEOTAPE','A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank',2006,1,NULL,7,'0.99',133,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(201,'CYCLONE FAMILY','A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention',2006,1,NULL,7,'2.99',176,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(202,'DADDY PITTSBURGH','A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico',2006,1,NULL,5,'4.99',161,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(203,'DAISY MENAGERIE','A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India',2006,1,NULL,5,'4.99',84,'9.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(204,'DALMATIONS SWEDEN','A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse',2006,1,NULL,4,'0.99',106,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(205,'DANCES NONE','A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',58,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(206,'DANCING FEVER','A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank',2006,1,NULL,6,'0.99',144,'25.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(207,'DANGEROUS UPTOWN','A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California',2006,1,NULL,7,'4.99',121,'26.99','PG','Commentaries','2006-02-15 05:03:42'), +(208,'DARES PLUTO','A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans',2006,1,NULL,7,'2.99',89,'16.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(209,'DARKNESS WAR','A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert',2006,1,NULL,6,'2.99',99,'24.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(210,'DARKO DORADO','A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans',2006,1,NULL,3,'4.99',130,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(211,'DARLING BREAKING','A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico',2006,1,NULL,7,'4.99',165,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(212,'DARN FORRESTER','A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat',2006,1,NULL,7,'4.99',185,'14.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(213,'DATE SPEED','A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention',2006,1,NULL,4,'0.99',104,'19.99','R','Commentaries','2006-02-15 05:03:42'), +(214,'DAUGHTER MADIGAN','A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station',2006,1,NULL,3,'4.99',59,'13.99','PG-13','Trailers','2006-02-15 05:03:42'), +(215,'DAWN POND','A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin',2006,1,NULL,4,'4.99',57,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(216,'DAY UNFAITHFUL','A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat',2006,1,NULL,3,'4.99',113,'16.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(217,'DAZED PUNK','A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',120,'20.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(218,'DECEIVER BETRAYED','A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India',2006,1,NULL,7,'0.99',122,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(219,'DEEP CRUSADE','A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia',2006,1,NULL,6,'4.99',51,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(220,'DEER VIRGINIAN','A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia',2006,1,NULL,7,'2.99',106,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(221,'DELIVERANCE MULHOLLAND','A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank',2006,1,NULL,4,'0.99',100,'9.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(222,'DESERT POSEIDON','A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans',2006,1,NULL,4,'4.99',64,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(223,'DESIRE ALIEN','A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station',2006,1,NULL,7,'2.99',76,'24.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(224,'DESPERATE TRAINSPOTTING','A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California',2006,1,NULL,7,'4.99',81,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(225,'DESTINATION JERK','A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat',2006,1,NULL,3,'0.99',76,'19.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(226,'DESTINY SATURDAY','A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia',2006,1,NULL,4,'4.99',56,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(227,'DETAILS PACKER','A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat',2006,1,NULL,4,'4.99',88,'17.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(228,'DETECTIVE VISION','A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan',2006,1,NULL,4,'0.99',143,'16.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(229,'DEVIL DESIRE','A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan',2006,1,NULL,6,'4.99',87,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(230,'DIARY PANIC','A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India',2006,1,NULL,7,'2.99',107,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(231,'DINOSAUR SECRETARY','A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies',2006,1,NULL,7,'2.99',63,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(232,'DIRTY ACE','A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback',2006,1,NULL,7,'2.99',147,'29.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(233,'DISCIPLE MOTHER','A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank',2006,1,NULL,3,'0.99',141,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(234,'DISTURBING SCARFACE','A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat',2006,1,NULL,6,'2.99',94,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(235,'DIVIDE MONSTER','A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery',2006,1,NULL,6,'2.99',68,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(236,'DIVINE RESURRECTION','A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',100,'19.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(237,'DIVORCE SHINING','A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India',2006,1,NULL,3,'2.99',47,'21.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(238,'DOCTOR GRAIL','A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback',2006,1,NULL,4,'2.99',57,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(239,'DOGMA FAMILY','A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans',2006,1,NULL,5,'4.99',122,'16.99','G','Commentaries','2006-02-15 05:03:42'), +(240,'DOLLS RAGE','A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback',2006,1,NULL,7,'2.99',120,'10.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(241,'DONNIE ALLEY','A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan',2006,1,NULL,4,'0.99',125,'20.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(242,'DOOM DANCING','A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention',2006,1,NULL,4,'0.99',68,'13.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(243,'DOORS PRESIDENT','A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico',2006,1,NULL,3,'4.99',49,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(244,'DORADO NOTTING','A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California',2006,1,NULL,5,'4.99',139,'26.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(245,'DOUBLE WRATH','A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico',2006,1,NULL,4,'0.99',177,'28.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(246,'DOUBTFIRE LABYRINTH','A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert',2006,1,NULL,5,'4.99',154,'16.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(247,'DOWNHILL ENOUGH','A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert',2006,1,NULL,3,'0.99',47,'19.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(248,'DOZEN LION','A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies',2006,1,NULL,6,'4.99',177,'20.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(249,'DRACULA CRYSTAL','A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House',2006,1,NULL,7,'0.99',176,'26.99','G','Commentaries','2006-02-15 05:03:42'), +(250,'DRAGON SQUAD','A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China',2006,1,NULL,4,'0.99',170,'26.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(251,'DRAGONFLY STRANGERS','A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria',2006,1,NULL,6,'4.99',133,'19.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(252,'DREAM PICKUP','A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico',2006,1,NULL,6,'2.99',135,'18.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(253,'DRIFTER COMMANDMENTS','A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat',2006,1,NULL,5,'4.99',61,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(254,'DRIVER ANNIE','A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House',2006,1,NULL,4,'2.99',159,'11.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(255,'DRIVING POLISH','A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',175,'21.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(256,'DROP WATERFRONT','A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China',2006,1,NULL,6,'4.99',178,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(257,'DRUMLINE CYCLONE','A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies',2006,1,NULL,3,'0.99',110,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(258,'DRUMS DYNAMITE','A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park',2006,1,NULL,6,'0.99',96,'11.99','PG','Trailers','2006-02-15 05:03:42'), +(259,'DUCK RACER','A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank',2006,1,NULL,4,'2.99',116,'15.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(260,'DUDE BLINDNESS','A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House',2006,1,NULL,3,'4.99',132,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(261,'DUFFEL APOCALYPSE','A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention',2006,1,NULL,5,'0.99',171,'13.99','G','Commentaries','2006-02-15 05:03:42'), +(262,'DUMBO LUST','A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico',2006,1,NULL,5,'0.99',119,'17.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(263,'DURHAM PANKY','A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',154,'14.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(264,'DWARFS ALTER','A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan',2006,1,NULL,6,'2.99',101,'13.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(265,'DYING MAKER','A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California',2006,1,NULL,5,'4.99',168,'28.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(266,'DYNAMITE TARZAN','A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat',2006,1,NULL,4,'0.99',141,'27.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(267,'EAGLES PANKY','A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert',2006,1,NULL,4,'4.99',140,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(268,'EARLY HOME','A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback',2006,1,NULL,6,'4.99',96,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(269,'EARRING INSTINCT','A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria',2006,1,NULL,3,'0.99',98,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(270,'EARTH VISION','A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India',2006,1,NULL,7,'0.99',85,'29.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(271,'EASY GLADIATOR','A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India',2006,1,NULL,5,'4.99',148,'12.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(272,'EDGE KISSING','A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat',2006,1,NULL,5,'4.99',153,'9.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(273,'EFFECT GLADIATOR','A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse',2006,1,NULL,6,'0.99',107,'14.99','PG','Commentaries','2006-02-15 05:03:42'), +(274,'EGG IGBY','A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station',2006,1,NULL,4,'2.99',67,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(275,'EGYPT TENENBAUMS','A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',85,'11.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(276,'ELEMENT FREDDY','A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat',2006,1,NULL,6,'4.99',115,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(277,'ELEPHANT TROJAN','A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon',2006,1,NULL,4,'4.99',126,'24.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(278,'ELF MURDER','A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft',2006,1,NULL,4,'4.99',155,'19.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(279,'ELIZABETH SHANE','A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan',2006,1,NULL,7,'4.99',152,'11.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(280,'EMPIRE MALKOVICH','A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House',2006,1,NULL,7,'0.99',177,'26.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(281,'ENCINO ELF','A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon',2006,1,NULL,6,'0.99',143,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(282,'ENCOUNTERS CURTAIN','A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans',2006,1,NULL,5,'0.99',92,'20.99','NC-17','Trailers','2006-02-15 05:03:42'), +(283,'ENDING CROWDS','A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin',2006,1,NULL,6,'0.99',85,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(284,'ENEMY ODDS','A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India',2006,1,NULL,5,'4.99',77,'23.99','NC-17','Trailers','2006-02-15 05:03:42'), +(285,'ENGLISH BULWORTH','A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China',2006,1,NULL,3,'0.99',51,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(286,'ENOUGH RAGING','A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert',2006,1,NULL,7,'2.99',158,'16.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(287,'ENTRAPMENT SATISFACTION','A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat',2006,1,NULL,5,'0.99',176,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(288,'ESCAPE METROPOLIS','A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans',2006,1,NULL,7,'2.99',167,'20.99','R','Trailers','2006-02-15 05:03:42'), +(289,'EVE RESURRECTION','A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon',2006,1,NULL,5,'4.99',66,'25.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(290,'EVERYONE CRAFT','A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria',2006,1,NULL,4,'0.99',163,'29.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(291,'EVOLUTION ALTER','A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory',2006,1,NULL,5,'0.99',174,'10.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(292,'EXCITEMENT EVE','A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank',2006,1,NULL,3,'0.99',51,'20.99','G','Commentaries','2006-02-15 05:03:42'), +(293,'EXORCIST STING','A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin',2006,1,NULL,6,'2.99',167,'17.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(294,'EXPECATIONS NATURAL','A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat',2006,1,NULL,5,'4.99',138,'26.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(295,'EXPENDABLE STALLION','A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat',2006,1,NULL,3,'0.99',97,'14.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(296,'EXPRESS LONELY','A Boring Drama of a Astronaut And a Boat who must Face a Boat in California',2006,1,NULL,5,'2.99',178,'23.99','R','Trailers','2006-02-15 05:03:42'), +(297,'EXTRAORDINARY CONQUERER','A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin',2006,1,NULL,6,'2.99',122,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(298,'EYES DRIVING','A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback',2006,1,NULL,4,'2.99',172,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(299,'FACTORY DRAGON','A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert',2006,1,NULL,4,'0.99',144,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(300,'FALCON VOLUME','A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans',2006,1,NULL,5,'4.99',102,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(301,'FAMILY SWEET','A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin',2006,1,NULL,4,'0.99',155,'24.99','R','Trailers','2006-02-15 05:03:42'), +(302,'FANTASIA PARK','A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia',2006,1,NULL,5,'2.99',131,'29.99','G','Commentaries','2006-02-15 05:03:42'), +(303,'FANTASY TROOPERS','A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention',2006,1,NULL,6,'0.99',58,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(304,'FARGO GANDHI','A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback',2006,1,NULL,3,'2.99',130,'28.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(305,'FATAL HAUNTED','A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan',2006,1,NULL,6,'2.99',91,'24.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(306,'FEATHERS METAL','A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia',2006,1,NULL,3,'0.99',104,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(307,'FELLOWSHIP AUTUMN','A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon',2006,1,NULL,6,'4.99',77,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(308,'FERRIS MOTHER','A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico',2006,1,NULL,3,'2.99',142,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(309,'FEUD FROGMEN','A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies',2006,1,NULL,6,'0.99',98,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(310,'FEVER EMPIRE','A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico',2006,1,NULL,5,'4.99',158,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(311,'FICTION CHRISTMAS','A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',72,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(312,'FIDDLER LOST','A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico',2006,1,NULL,4,'4.99',75,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(313,'FIDELITY DEVIL','A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat',2006,1,NULL,5,'4.99',118,'11.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(314,'FIGHT JAWBREAKER','A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse',2006,1,NULL,3,'0.99',91,'13.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(315,'FINDING ANACONDA','A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans',2006,1,NULL,4,'0.99',156,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(316,'FIRE WOLVES','A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria',2006,1,NULL,5,'4.99',173,'18.99','R','Trailers','2006-02-15 05:03:42'), +(317,'FIREBALL PHILADELPHIA','A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',148,'25.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(318,'FIREHOUSE VIETNAM','A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert',2006,1,NULL,7,'0.99',103,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(319,'FISH OPUS','A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia',2006,1,NULL,4,'2.99',125,'22.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(320,'FLAMINGOS CONNECTICUT','A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert',2006,1,NULL,4,'4.99',80,'28.99','PG-13','Trailers','2006-02-15 05:03:42'), +(321,'FLASH WARS','A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico',2006,1,NULL,3,'4.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(322,'FLATLINERS KILLER','A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft',2006,1,NULL,5,'2.99',100,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(323,'FLIGHT LIES','A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans',2006,1,NULL,7,'4.99',179,'22.99','R','Trailers','2006-02-15 05:03:42'), +(324,'FLINTSTONES HAPPINESS','A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California',2006,1,NULL,3,'4.99',148,'11.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(325,'FLOATS GARDEN','A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan',2006,1,NULL,6,'2.99',145,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(326,'FLYING HOOK','A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria',2006,1,NULL,6,'2.99',69,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(327,'FOOL MOCKINGBIRD','A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat',2006,1,NULL,3,'4.99',158,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(328,'FOREVER CANDIDATE','A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat',2006,1,NULL,7,'2.99',131,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(329,'FORREST SONS','A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat',2006,1,NULL,4,'2.99',63,'15.99','R','Commentaries','2006-02-15 05:03:42'), +(330,'FORRESTER COMANCHEROS','A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria',2006,1,NULL,7,'4.99',112,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(331,'FORWARD TEMPLE','A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans',2006,1,NULL,6,'2.99',90,'25.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(332,'FRANKENSTEIN STRANGER','A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria',2006,1,NULL,7,'0.99',159,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(333,'FREAKY POCUS','A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico',2006,1,NULL,7,'2.99',126,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(334,'FREDDY STORM','A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback',2006,1,NULL,6,'4.99',65,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(335,'FREEDOM CLEOPATRA','A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon',2006,1,NULL,5,'0.99',133,'23.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(336,'FRENCH HOLIDAY','A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin',2006,1,NULL,5,'4.99',99,'22.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(337,'FRIDA SLIPPER','A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',73,'11.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(338,'FRISCO FORREST','A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank',2006,1,NULL,6,'4.99',51,'23.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(339,'FROGMEN BREAKING','A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia',2006,1,NULL,5,'0.99',111,'17.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(340,'FRONTIER CABIN','A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House',2006,1,NULL,6,'4.99',183,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(341,'FROST HEAD','A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention',2006,1,NULL,5,'0.99',82,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(342,'FUGITIVE MAGUIRE','A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia',2006,1,NULL,7,'4.99',83,'28.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(343,'FULL FLATLINERS','A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank',2006,1,NULL,6,'2.99',94,'14.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(344,'FURY MURDER','A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery',2006,1,NULL,3,'0.99',178,'28.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(345,'GABLES METROPOLIS','A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory',2006,1,NULL,3,'0.99',161,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(346,'GALAXY SWEETHEARTS','A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin',2006,1,NULL,4,'4.99',128,'13.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(347,'GAMES BOWFINGER','A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery',2006,1,NULL,7,'4.99',119,'17.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(348,'GANDHI KWAI','A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin',2006,1,NULL,7,'0.99',86,'9.99','PG-13','Trailers','2006-02-15 05:03:42'), +(349,'GANGS PRIDE','A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin',2006,1,NULL,4,'2.99',185,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(350,'GARDEN ISLAND','A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback',2006,1,NULL,3,'4.99',80,'21.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(351,'GASLIGHT CRUSADE','A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico',2006,1,NULL,4,'2.99',106,'10.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(352,'GATHERING CALENDAR','A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention',2006,1,NULL,4,'0.99',176,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(353,'GENTLEMEN STAGE','A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station',2006,1,NULL,6,'2.99',125,'22.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(354,'GHOST GROUNDHOG','A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India',2006,1,NULL,6,'4.99',85,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(355,'GHOSTBUSTERS ELF','A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin',2006,1,NULL,7,'0.99',101,'18.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(356,'GIANT TROOPERS','A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies',2006,1,NULL,5,'2.99',102,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(357,'GILBERT PELICAN','A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse',2006,1,NULL,7,'0.99',114,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(358,'GILMORE BOILED','A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat',2006,1,NULL,5,'0.99',163,'29.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(359,'GLADIATOR WESTWARD','A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan',2006,1,NULL,6,'4.99',173,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(360,'GLASS DYING','A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan',2006,1,NULL,4,'0.99',103,'24.99','G','Trailers','2006-02-15 05:03:42'), +(361,'GLEAMING JAWBREAKER','A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies',2006,1,NULL,5,'2.99',89,'25.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(362,'GLORY TRACY','A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station',2006,1,NULL,7,'2.99',115,'13.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(363,'GO PURPLE','A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon',2006,1,NULL,3,'0.99',54,'12.99','R','Trailers','2006-02-15 05:03:42'), +(364,'GODFATHER DIARY','A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback',2006,1,NULL,3,'2.99',73,'14.99','NC-17','Trailers','2006-02-15 05:03:42'), +(365,'GOLD RIVER','A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory',2006,1,NULL,4,'4.99',154,'21.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(366,'GOLDFINGER SENSIBILITY','A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans',2006,1,NULL,3,'0.99',93,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(367,'GOLDMINE TYCOON','A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback',2006,1,NULL,6,'0.99',153,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(368,'GONE TROUBLE','A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse',2006,1,NULL,7,'2.99',84,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(369,'GOODFELLAS SALUTE','A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory',2006,1,NULL,4,'4.99',56,'22.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(370,'GORGEOUS BINGO','A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory',2006,1,NULL,4,'2.99',108,'26.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(371,'GOSFORD DONNIE','A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin',2006,1,NULL,5,'4.99',129,'17.99','G','Commentaries','2006-02-15 05:03:42'), +(372,'GRACELAND DYNAMITE','A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans',2006,1,NULL,5,'4.99',140,'26.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(373,'GRADUATE LORD','A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China',2006,1,NULL,7,'2.99',156,'14.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(374,'GRAFFITI LOVE','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin',2006,1,NULL,3,'0.99',117,'29.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(375,'GRAIL FRANKENSTEIN','A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',85,'17.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(376,'GRAPES FURY','A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia',2006,1,NULL,4,'0.99',155,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(377,'GREASE YOUTH','A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia',2006,1,NULL,7,'0.99',135,'20.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(378,'GREATEST NORTH','A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin',2006,1,NULL,5,'2.99',93,'24.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(379,'GREEDY ROOTS','A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies',2006,1,NULL,7,'0.99',166,'14.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(380,'GREEK EVERYONE','A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station',2006,1,NULL,7,'2.99',176,'11.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(381,'GRINCH MASSAGE','A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station',2006,1,NULL,7,'4.99',150,'25.99','R','Trailers','2006-02-15 05:03:42'), +(382,'GRIT CLOCKWORK','A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',137,'21.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(383,'GROOVE FICTION','A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',111,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(384,'GROSSE WONDERFUL','A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia',2006,1,NULL,5,'4.99',49,'19.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(385,'GROUNDHOG UNCUT','A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse',2006,1,NULL,6,'4.99',139,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(386,'GUMP DATE','A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft',2006,1,NULL,3,'4.99',53,'12.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(387,'GUN BONNIE','A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico',2006,1,NULL,7,'0.99',100,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(388,'GUNFIGHT MOON','A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert',2006,1,NULL,5,'0.99',70,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(389,'GUNFIGHTER MUSSOLINI','A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan',2006,1,NULL,3,'2.99',127,'9.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(390,'GUYS FALCON','A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat',2006,1,NULL,4,'4.99',84,'20.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(391,'HALF OUTFIELD','A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat',2006,1,NULL,6,'2.99',146,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(392,'HALL CASSIDY','A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia',2006,1,NULL,5,'4.99',51,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(393,'HALLOWEEN NUTS','A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat',2006,1,NULL,6,'2.99',47,'19.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(394,'HAMLET WISDOM','A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback',2006,1,NULL,7,'2.99',146,'21.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(395,'HANDICAP BOONDOCK','A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia',2006,1,NULL,4,'0.99',108,'28.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(396,'HANGING DEEP','A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin',2006,1,NULL,5,'4.99',62,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(397,'HANKY OCTOBER','A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia',2006,1,NULL,5,'2.99',107,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(398,'HANOVER GALAXY','A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention',2006,1,NULL,5,'4.99',47,'21.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(399,'HAPPINESS UNITED','A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan',2006,1,NULL,6,'2.99',100,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(400,'HARDLY ROBBERS','A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin',2006,1,NULL,7,'2.99',72,'15.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(401,'HAROLD FRENCH','A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert',2006,1,NULL,6,'0.99',168,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(402,'HARPER DYING','A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert',2006,1,NULL,3,'0.99',52,'15.99','G','Trailers','2006-02-15 05:03:42'), +(403,'HARRY IDAHO','A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California',2006,1,NULL,5,'4.99',121,'18.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(404,'HATE HANDICAP','A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station',2006,1,NULL,4,'0.99',107,'26.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(405,'HAUNTED ANTITRUST','A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India',2006,1,NULL,6,'4.99',76,'13.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(406,'HAUNTING PIANIST','A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',181,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(407,'HAWK CHILL','A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia',2006,1,NULL,5,'0.99',47,'12.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(408,'HEAD STRANGER','A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico',2006,1,NULL,4,'4.99',69,'28.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(409,'HEARTBREAKERS BRIGHT','A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies',2006,1,NULL,3,'4.99',59,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(410,'HEAVEN FREEDOM','A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans',2006,1,NULL,7,'2.99',48,'19.99','PG','Commentaries','2006-02-15 05:03:42'), +(411,'HEAVENLY GUN','A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat',2006,1,NULL,5,'4.99',49,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(412,'HEAVYWEIGHTS BEAST','A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',102,'25.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(413,'HEDWIG ALTER','A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery',2006,1,NULL,7,'2.99',169,'16.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(414,'HELLFIGHTERS SIERRA','A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia',2006,1,NULL,3,'2.99',75,'23.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(415,'HIGH ENCINO','A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia',2006,1,NULL,3,'2.99',84,'23.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(416,'HIGHBALL POTTER','A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert',2006,1,NULL,6,'0.99',110,'10.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(417,'HILLS NEIGHBORS','A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat',2006,1,NULL,5,'0.99',93,'29.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(418,'HOBBIT ALIEN','A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station',2006,1,NULL,5,'0.99',157,'27.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(419,'HOCUS FRIDA','A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank',2006,1,NULL,4,'2.99',141,'19.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(420,'HOLES BRANNIGAN','A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies',2006,1,NULL,7,'4.99',128,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(421,'HOLIDAY GAMES','A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan',2006,1,NULL,7,'4.99',78,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(422,'HOLLOW JEOPARDY','A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery',2006,1,NULL,7,'4.99',136,'25.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(423,'HOLLYWOOD ANONYMOUS','A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat',2006,1,NULL,7,'0.99',69,'29.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(424,'HOLOCAUST HIGHBALL','A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia',2006,1,NULL,6,'0.99',149,'12.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(425,'HOLY TADPOLE','A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory',2006,1,NULL,6,'0.99',88,'20.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(426,'HOME PITY','A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention',2006,1,NULL,7,'4.99',185,'15.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(427,'HOMEWARD CIDER','A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse',2006,1,NULL,5,'0.99',103,'19.99','R','Trailers','2006-02-15 05:03:42'), +(428,'HOMICIDE PEACH','A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention',2006,1,NULL,6,'2.99',141,'21.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(429,'HONEY TIES','A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(430,'HOOK CHARIOTS','A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia',2006,1,NULL,7,'0.99',49,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(431,'HOOSIERS BIRDCAGE','A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station',2006,1,NULL,3,'2.99',176,'12.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(432,'HOPE TOOTSIE','A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank',2006,1,NULL,4,'2.99',139,'22.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(433,'HORN WORKING','A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank',2006,1,NULL,4,'2.99',95,'23.99','PG','Trailers','2006-02-15 05:03:42'), +(434,'HORROR REIGN','A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria',2006,1,NULL,3,'0.99',139,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(435,'HOTEL HAPPINESS','A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback',2006,1,NULL,6,'4.99',181,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(436,'HOURS RAGE','A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia',2006,1,NULL,4,'0.99',122,'14.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(437,'HOUSE DYNAMITE','A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia',2006,1,NULL,7,'2.99',109,'13.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(438,'HUMAN GRAFFITI','A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico',2006,1,NULL,3,'2.99',68,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(439,'HUNCHBACK IMPOSSIBLE','A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan',2006,1,NULL,4,'4.99',151,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(440,'HUNGER ROOF','A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',105,'21.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(441,'HUNTER ALTER','A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank',2006,1,NULL,5,'2.99',125,'21.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(442,'HUNTING MUSKETEERS','A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',65,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(443,'HURRICANE AFFAIR','A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',49,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(444,'HUSTLER PARTY','A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert',2006,1,NULL,3,'4.99',83,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(445,'HYDE DOCTOR','A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat',2006,1,NULL,5,'2.99',100,'11.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(446,'HYSTERICAL GRAIL','A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse',2006,1,NULL,5,'4.99',150,'19.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(447,'ICE CROSSING','A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',131,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(448,'IDAHO LOVE','A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback',2006,1,NULL,3,'2.99',172,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(449,'IDENTITY LOVER','A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback',2006,1,NULL,4,'2.99',119,'12.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(450,'IDOLS SNATCHERS','A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery',2006,1,NULL,5,'2.99',84,'29.99','NC-17','Trailers','2006-02-15 05:03:42'), +(451,'IGBY MAKER','A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory',2006,1,NULL,7,'4.99',160,'12.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(452,'ILLUSION AMELIE','A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',122,'15.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(453,'IMAGE PRINCESS','A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies',2006,1,NULL,3,'2.99',178,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(454,'IMPACT ALADDIN','A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank',2006,1,NULL,6,'0.99',180,'20.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(455,'IMPOSSIBLE PREJUDICE','A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China',2006,1,NULL,7,'4.99',103,'11.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(456,'INCH JET','A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery',2006,1,NULL,6,'4.99',167,'18.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(457,'INDEPENDENCE HOTEL','A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery',2006,1,NULL,5,'0.99',157,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(458,'INDIAN LOVE','A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House',2006,1,NULL,4,'0.99',135,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(459,'INFORMER DOUBLE','A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies',2006,1,NULL,4,'4.99',74,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(460,'INNOCENT USUAL','A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback',2006,1,NULL,3,'4.99',178,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(461,'INSECTS STONE','A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'0.99',123,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(462,'INSIDER ARIZONA','A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory',2006,1,NULL,5,'2.99',78,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(463,'INSTINCT AIRPORT','A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse',2006,1,NULL,4,'2.99',116,'21.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(464,'INTENTIONS EMPIRE','A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat',2006,1,NULL,3,'2.99',107,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(465,'INTERVIEW LIAISONS','A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse',2006,1,NULL,4,'4.99',59,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(466,'INTOLERABLE INTENTIONS','A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention',2006,1,NULL,6,'4.99',63,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(467,'INTRIGUE WORST','A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat',2006,1,NULL,6,'0.99',181,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(468,'INVASION CYCLONE','A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery',2006,1,NULL,5,'2.99',97,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(469,'IRON MOON','A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon',2006,1,NULL,7,'4.99',46,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(470,'ISHTAR ROCKETEER','A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House',2006,1,NULL,4,'4.99',79,'24.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(471,'ISLAND EXORCIST','A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House',2006,1,NULL,7,'2.99',84,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(472,'ITALIAN AFRICAN','A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat',2006,1,NULL,3,'4.99',174,'24.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(473,'JACKET FRISCO','A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon',2006,1,NULL,5,'2.99',181,'16.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(474,'JADE BUNCH','A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station',2006,1,NULL,6,'2.99',174,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(475,'JAPANESE RUN','A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback',2006,1,NULL,6,'0.99',135,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(476,'JASON TRAP','A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery',2006,1,NULL,5,'2.99',130,'9.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(477,'JAWBREAKER BROOKLYN','A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat',2006,1,NULL,5,'0.99',118,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(478,'JAWS HARRY','A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House',2006,1,NULL,4,'2.99',112,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(479,'JEDI BENEATH','A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria',2006,1,NULL,7,'0.99',128,'12.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(480,'JEEPERS WEDDING','A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia',2006,1,NULL,3,'2.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(481,'JEKYLL FROGMEN','A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank',2006,1,NULL,4,'2.99',58,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(482,'JEOPARDY ENCINO','A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India',2006,1,NULL,3,'0.99',102,'12.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(483,'JERICHO MULAN','A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat',2006,1,NULL,3,'2.99',171,'29.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(484,'JERK PAYCHECK','A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan',2006,1,NULL,3,'2.99',172,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(485,'JERSEY SASSY','A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan',2006,1,NULL,6,'4.99',60,'16.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(486,'JET NEIGHBORS','A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat',2006,1,NULL,7,'4.99',59,'14.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(487,'JINGLE SAGEBRUSH','A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon',2006,1,NULL,6,'4.99',124,'29.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(488,'JOON NORTHWEST','A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank',2006,1,NULL,3,'0.99',105,'23.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(489,'JUGGLER HARDLY','A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California',2006,1,NULL,4,'0.99',54,'14.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(490,'JUMANJI BLADE','A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans',2006,1,NULL,4,'2.99',121,'13.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(491,'JUMPING WRATH','A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin',2006,1,NULL,4,'0.99',74,'18.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(492,'JUNGLE CLOSER','A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia',2006,1,NULL,6,'0.99',134,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(493,'KANE EXORCIST','A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin',2006,1,NULL,5,'0.99',92,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(494,'KARATE MOON','A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention',2006,1,NULL,4,'0.99',120,'21.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(495,'KENTUCKIAN GIANT','A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat',2006,1,NULL,5,'2.99',169,'10.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(496,'KICK SAVANNAH','A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans',2006,1,NULL,3,'0.99',179,'10.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(497,'KILL BROTHERHOOD','A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback',2006,1,NULL,4,'0.99',54,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(498,'KILLER INNOCENT','A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',161,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(499,'KING EVOLUTION','A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon',2006,1,NULL,3,'4.99',184,'24.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(500,'KISS GLORY','A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies',2006,1,NULL,5,'4.99',163,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(501,'KISSING DOLLS','A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station',2006,1,NULL,3,'4.99',141,'9.99','R','Trailers','2006-02-15 05:03:42'), +(502,'KNOCK WARLOCK','A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon',2006,1,NULL,4,'2.99',71,'21.99','PG-13','Trailers','2006-02-15 05:03:42'), +(503,'KRAMER CHOCOLATE','A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback',2006,1,NULL,3,'2.99',171,'24.99','R','Trailers','2006-02-15 05:03:42'), +(504,'KWAI HOMEWARD','A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia',2006,1,NULL,5,'0.99',46,'25.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(505,'LABYRINTH LEAGUE','A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert',2006,1,NULL,6,'2.99',46,'24.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(506,'LADY STAGE','A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat',2006,1,NULL,4,'4.99',67,'14.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(507,'LADYBUGS ARMAGEDDON','A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans',2006,1,NULL,4,'0.99',113,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(508,'LAMBS CINCINATTI','A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia',2006,1,NULL,6,'4.99',144,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(509,'LANGUAGE COWBOY','A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',78,'26.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(510,'LAWLESS VISION','A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback',2006,1,NULL,6,'4.99',181,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(511,'LAWRENCE LOVE','A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin',2006,1,NULL,7,'0.99',175,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(512,'LEAGUE HELLFIGHTERS','A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China',2006,1,NULL,5,'4.99',110,'25.99','PG-13','Trailers','2006-02-15 05:03:42'), +(513,'LEATHERNECKS DWARFS','A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',153,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(514,'LEBOWSKI SOLDIERS','A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China',2006,1,NULL,6,'2.99',69,'17.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(515,'LEGALLY SECRETARY','A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert',2006,1,NULL,7,'4.99',113,'14.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(516,'LEGEND JEDI','A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback',2006,1,NULL,7,'0.99',59,'18.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(517,'LESSON CLEOPATRA','A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse',2006,1,NULL,3,'0.99',167,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(518,'LIAISONS SWEET','A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies',2006,1,NULL,5,'4.99',140,'15.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(519,'LIBERTY MAGNIFICENT','A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon',2006,1,NULL,3,'2.99',138,'27.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(520,'LICENSE WEEKEND','A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery',2006,1,NULL,7,'2.99',91,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(521,'LIES TREATMENT','A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station',2006,1,NULL,7,'4.99',147,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(522,'LIFE TWISTED','A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station',2006,1,NULL,4,'2.99',137,'9.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(523,'LIGHTS DEER','A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico',2006,1,NULL,7,'0.99',174,'21.99','R','Commentaries','2006-02-15 05:03:42'), +(524,'LION UNCUT','A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China',2006,1,NULL,6,'0.99',50,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(525,'LOATHING LEGALLY','A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico',2006,1,NULL,4,'0.99',140,'29.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(526,'LOCK REAR','A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan',2006,1,NULL,7,'2.99',120,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(527,'LOLA AGENT','A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan',2006,1,NULL,4,'4.99',85,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(528,'LOLITA WORLD','A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',155,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(529,'LONELY ELEPHANT','A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia',2006,1,NULL,3,'2.99',67,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(530,'LORD ARIZONA','A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat',2006,1,NULL,5,'2.99',108,'27.99','PG-13','Trailers','2006-02-15 05:03:42'), +(531,'LOSE INCH','A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station',2006,1,NULL,3,'0.99',137,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(532,'LOSER HUSTLER','A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria',2006,1,NULL,5,'4.99',80,'28.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(533,'LOST BIRD','A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse',2006,1,NULL,4,'2.99',98,'21.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(534,'LOUISIANA HARRY','A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank',2006,1,NULL,5,'0.99',70,'18.99','PG-13','Trailers','2006-02-15 05:03:42'), +(535,'LOVE SUICIDES','A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House',2006,1,NULL,6,'0.99',181,'21.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(536,'LOVELY JINGLE','A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback',2006,1,NULL,3,'2.99',65,'18.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(537,'LOVER TRUMAN','A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat',2006,1,NULL,3,'2.99',75,'29.99','G','Trailers','2006-02-15 05:03:42'), +(538,'LOVERBOY ATTACKS','A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia',2006,1,NULL,7,'0.99',162,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(539,'LUCK OPUS','A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank',2006,1,NULL,7,'2.99',152,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(540,'LUCKY FLYING','A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat',2006,1,NULL,7,'2.99',97,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(541,'LUKE MUMMY','A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India',2006,1,NULL,5,'2.99',74,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(542,'LUST LOCK','A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert',2006,1,NULL,3,'2.99',52,'28.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(543,'MADIGAN DORADO','A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback',2006,1,NULL,5,'4.99',116,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(544,'MADISON TRAP','A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat',2006,1,NULL,4,'2.99',147,'11.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(545,'MADNESS ATTACKS','A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico',2006,1,NULL,4,'0.99',178,'14.99','PG-13','Trailers','2006-02-15 05:03:42'), +(546,'MADRE GABLES','A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station',2006,1,NULL,7,'2.99',98,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(547,'MAGIC MALLRATS','A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California',2006,1,NULL,3,'0.99',117,'19.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(548,'MAGNIFICENT CHITTY','A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California',2006,1,NULL,3,'2.99',53,'27.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(549,'MAGNOLIA FORRESTER','A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans',2006,1,NULL,4,'0.99',171,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(550,'MAGUIRE APACHE','A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon',2006,1,NULL,6,'2.99',74,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(551,'MAIDEN HOME','A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention',2006,1,NULL,3,'4.99',138,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(552,'MAJESTIC FLOATS','A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station',2006,1,NULL,5,'0.99',130,'15.99','PG','Trailers','2006-02-15 05:03:42'), +(553,'MAKER GABLES','A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat',2006,1,NULL,4,'0.99',136,'12.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(554,'MALKOVICH PET','A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback',2006,1,NULL,6,'2.99',159,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(555,'MALLRATS UNITED','A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery',2006,1,NULL,4,'0.99',133,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(556,'MALTESE HOPE','A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California',2006,1,NULL,6,'4.99',127,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(557,'MANCHURIAN CURTAIN','A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin',2006,1,NULL,5,'2.99',177,'27.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(558,'MANNEQUIN WORST','A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India',2006,1,NULL,3,'2.99',71,'18.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(559,'MARRIED GO','A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert',2006,1,NULL,7,'2.99',114,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(560,'MARS ROMAN','A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia',2006,1,NULL,6,'0.99',62,'21.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(561,'MASK PEACH','A Boring Character Study of a Student And a Robot who must Meet a Woman in California',2006,1,NULL,6,'2.99',123,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(562,'MASKED BUBBLE','A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',151,'12.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(563,'MASSACRE USUAL','A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California',2006,1,NULL,6,'4.99',165,'16.99','R','Commentaries','2006-02-15 05:03:42'), +(564,'MASSAGE IMAGE','A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station',2006,1,NULL,4,'2.99',161,'11.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(565,'MATRIX SNOWMAN','A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California',2006,1,NULL,6,'4.99',56,'9.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(566,'MAUDE MOD','A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria',2006,1,NULL,6,'0.99',72,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(567,'MEET CHOCOLATE','A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention',2006,1,NULL,3,'2.99',80,'26.99','G','Trailers','2006-02-15 05:03:42'), +(568,'MEMENTO ZOOLANDER','A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert',2006,1,NULL,4,'4.99',77,'11.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(569,'MENAGERIE RUSHMORE','A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station',2006,1,NULL,7,'2.99',147,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(570,'MERMAID INSECTS','A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California',2006,1,NULL,5,'4.99',104,'20.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(571,'METAL ARMAGEDDON','A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory',2006,1,NULL,6,'2.99',161,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(572,'METROPOLIS COMA','A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory',2006,1,NULL,4,'2.99',64,'9.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(573,'MICROCOSMOS PARADISE','A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria',2006,1,NULL,6,'2.99',105,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(574,'MIDNIGHT WESTWARD','A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery',2006,1,NULL,3,'0.99',86,'19.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(575,'MIDSUMMER GROUNDHOG','A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan',2006,1,NULL,3,'4.99',48,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(576,'MIGHTY LUCK','A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention',2006,1,NULL,7,'2.99',122,'13.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(577,'MILE MULAN','A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention',2006,1,NULL,4,'0.99',64,'10.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(578,'MILLION ACE','A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert',2006,1,NULL,4,'4.99',142,'16.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(579,'MINDS TRUMAN','A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery',2006,1,NULL,3,'4.99',149,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(580,'MINE TITANS','A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin',2006,1,NULL,3,'4.99',166,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(581,'MINORITY KISS','A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback',2006,1,NULL,4,'0.99',59,'16.99','G','Trailers','2006-02-15 05:03:42'), +(582,'MIRACLE VIRTUAL','A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert',2006,1,NULL,3,'2.99',162,'19.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(583,'MISSION ZOOLANDER','A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House',2006,1,NULL,3,'4.99',164,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(584,'MIXED DOORS','A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India',2006,1,NULL,6,'2.99',180,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(585,'MOB DUFFEL','A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies',2006,1,NULL,4,'0.99',105,'25.99','G','Trailers','2006-02-15 05:03:42'), +(586,'MOCKINGBIRD HOLLYWOOD','A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin',2006,1,NULL,4,'0.99',60,'27.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(587,'MOD SECRETARY','A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans',2006,1,NULL,6,'4.99',77,'20.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(588,'MODEL FISH','A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia',2006,1,NULL,4,'4.99',175,'11.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(589,'MODERN DORADO','A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans',2006,1,NULL,3,'0.99',74,'20.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(590,'MONEY HAROLD','A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia',2006,1,NULL,3,'2.99',135,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(591,'MONSOON CAUSE','A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat',2006,1,NULL,6,'4.99',182,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(592,'MONSTER SPARTACUS','A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia',2006,1,NULL,6,'2.99',107,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(593,'MONTEREY LABYRINTH','A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat',2006,1,NULL,6,'0.99',158,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(594,'MONTEZUMA COMMAND','A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat',2006,1,NULL,6,'0.99',126,'22.99','NC-17','Trailers','2006-02-15 05:03:42'), +(595,'MOON BUNCH','A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory',2006,1,NULL,7,'0.99',83,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(596,'MOONSHINE CABIN','A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat',2006,1,NULL,4,'4.99',171,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(597,'MOONWALKER FOOL','A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans',2006,1,NULL,5,'4.99',184,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(598,'MOSQUITO ARMAGEDDON','A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan',2006,1,NULL,6,'0.99',57,'22.99','G','Trailers','2006-02-15 05:03:42'), +(599,'MOTHER OLEANDER','A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China',2006,1,NULL,3,'0.99',103,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(600,'MOTIONS DETAILS','A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House',2006,1,NULL,5,'0.99',166,'16.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(601,'MOULIN WAKE','A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',79,'20.99','PG-13','Trailers','2006-02-15 05:03:42'), +(602,'MOURNING PURPLE','A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans',2006,1,NULL,5,'0.99',146,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(603,'MOVIE SHAKESPEARE','A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin',2006,1,NULL,6,'4.99',53,'27.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(604,'MULAN MOON','A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon',2006,1,NULL,4,'0.99',160,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(605,'MULHOLLAND BEAST','A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat',2006,1,NULL,7,'2.99',157,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(606,'MUMMY CREATURES','A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia',2006,1,NULL,3,'0.99',160,'15.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(607,'MUPPET MILE','A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico',2006,1,NULL,5,'4.99',50,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(608,'MURDER ANTITRUST','A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention',2006,1,NULL,6,'2.99',166,'11.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(609,'MUSCLE BRIGHT','A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India',2006,1,NULL,7,'2.99',185,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(610,'MUSIC BOONDOCK','A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station',2006,1,NULL,7,'0.99',129,'17.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(611,'MUSKETEERS WAIT','A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia',2006,1,NULL,7,'4.99',73,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(612,'MUSSOLINI SPOILERS','A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China',2006,1,NULL,6,'2.99',180,'10.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(613,'MYSTIC TRUMAN','A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia',2006,1,NULL,5,'0.99',92,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(614,'NAME DETECTIVE','A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria',2006,1,NULL,5,'4.99',178,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(615,'NASH CHOCOLAT','A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',180,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(616,'NATIONAL STORY','A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California',2006,1,NULL,4,'2.99',92,'19.99','NC-17','Trailers','2006-02-15 05:03:42'), +(617,'NATURAL STOCK','A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory',2006,1,NULL,4,'0.99',50,'24.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(618,'NECKLACE OUTBREAK','A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California',2006,1,NULL,3,'0.99',132,'21.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(619,'NEIGHBORS CHARADE','A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',161,'20.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(620,'NEMO CAMPUS','A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',131,'23.99','NC-17','Trailers','2006-02-15 05:03:42'), +(621,'NETWORK PEAK','A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California',2006,1,NULL,5,'2.99',75,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(622,'NEWSIES STORY','A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico',2006,1,NULL,4,'0.99',159,'25.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(623,'NEWTON LABYRINTH','A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India',2006,1,NULL,4,'0.99',75,'9.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(624,'NIGHTMARE CHILL','A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft',2006,1,NULL,3,'4.99',149,'25.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(625,'NONE SPIKING','A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse',2006,1,NULL,3,'0.99',83,'18.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(626,'NOON PAPI','A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',57,'12.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(627,'NORTH TEQUILA','A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans',2006,1,NULL,4,'4.99',67,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(628,'NORTHWEST POLISH','A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback',2006,1,NULL,5,'2.99',172,'24.99','PG','Trailers','2006-02-15 05:03:42'), +(629,'NOTORIOUS REUNION','A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon',2006,1,NULL,7,'0.99',128,'9.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(630,'NOTTING SPEAKEASY','A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies',2006,1,NULL,7,'0.99',48,'19.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(631,'NOVOCAINE FLIGHT','A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria',2006,1,NULL,4,'0.99',64,'11.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(632,'NUTS TIES','A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California',2006,1,NULL,5,'4.99',145,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(633,'OCTOBER SUBMARINE','A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat',2006,1,NULL,6,'4.99',54,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(634,'ODDS BOOGIE','A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin',2006,1,NULL,6,'0.99',48,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(635,'OKLAHOMA JUMANJI','A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert',2006,1,NULL,7,'0.99',58,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(636,'OLEANDER CLUE','A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat',2006,1,NULL,5,'0.99',161,'12.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(637,'OPEN AFRICAN','A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat',2006,1,NULL,7,'4.99',131,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(638,'OPERATION OPERATION','A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China',2006,1,NULL,7,'2.99',156,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(639,'OPPOSITE NECKLACE','A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria',2006,1,NULL,7,'4.99',92,'9.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(640,'OPUS ICE','A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert',2006,1,NULL,5,'4.99',102,'21.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(641,'ORANGE GRAPES','A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat',2006,1,NULL,4,'0.99',76,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(642,'ORDER BETRAYED','A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert',2006,1,NULL,7,'2.99',120,'13.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(643,'ORIENT CLOSER','A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert',2006,1,NULL,3,'2.99',118,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(644,'OSCAR GOLD','A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia',2006,1,NULL,7,'2.99',115,'29.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(645,'OTHERS SOUP','A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico',2006,1,NULL,7,'2.99',118,'18.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(646,'OUTBREAK DIVINE','A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat',2006,1,NULL,6,'0.99',169,'12.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(647,'OUTFIELD MASSACRE','A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India',2006,1,NULL,4,'0.99',129,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(648,'OUTLAW HANKY','A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert',2006,1,NULL,7,'4.99',148,'17.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(649,'OZ LIAISONS','A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory',2006,1,NULL,4,'2.99',85,'14.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(650,'PACIFIC AMISTAD','A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse',2006,1,NULL,3,'0.99',144,'27.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(651,'PACKER MADIGAN','A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',84,'20.99','PG-13','Trailers','2006-02-15 05:03:42'), +(652,'PAJAMA JAWBREAKER','A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California',2006,1,NULL,3,'0.99',126,'14.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(653,'PANIC CLUB','A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon',2006,1,NULL,3,'4.99',102,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(654,'PANKY SUBMARINE','A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico',2006,1,NULL,4,'4.99',93,'19.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(655,'PANTHER REDS','A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico',2006,1,NULL,5,'4.99',109,'22.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(656,'PAPI NECKLACE','A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan',2006,1,NULL,3,'0.99',128,'9.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(657,'PARADISE SABRINA','A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse',2006,1,NULL,5,'2.99',48,'12.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(658,'PARIS WEEKEND','A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback',2006,1,NULL,7,'2.99',121,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(659,'PARK CITIZEN','A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan',2006,1,NULL,3,'4.99',109,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(660,'PARTY KNOCK','A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',107,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(661,'PAST SUICIDES','A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery',2006,1,NULL,5,'4.99',157,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(662,'PATHS CONTROL','A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China',2006,1,NULL,3,'4.99',118,'9.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(663,'PATIENT SISTER','A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia',2006,1,NULL,7,'0.99',99,'29.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(664,'PATRIOT ROMAN','A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California',2006,1,NULL,6,'2.99',65,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(665,'PATTON INTERVIEW','A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin',2006,1,NULL,4,'2.99',175,'22.99','PG','Commentaries','2006-02-15 05:03:42'), +(666,'PAYCHECK WAIT','A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert',2006,1,NULL,4,'4.99',145,'27.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(667,'PEACH INNOCENT','A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin',2006,1,NULL,3,'2.99',160,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(668,'PEAK FOREVER','A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft',2006,1,NULL,7,'4.99',80,'25.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(669,'PEARL DESTINY','A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat',2006,1,NULL,3,'2.99',74,'10.99','NC-17','Trailers','2006-02-15 05:03:42'), +(670,'PELICAN COMFORTS','A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin',2006,1,NULL,4,'4.99',48,'17.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(671,'PERDITION FARGO','A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin',2006,1,NULL,7,'4.99',99,'27.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(672,'PERFECT GROOVE','A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon',2006,1,NULL,7,'2.99',82,'17.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(673,'PERSONAL LADYBUGS','A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan',2006,1,NULL,3,'0.99',118,'19.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(674,'PET HAUNTING','A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California',2006,1,NULL,3,'0.99',99,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(675,'PHANTOM GLORY','A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery',2006,1,NULL,6,'2.99',60,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(676,'PHILADELPHIA WIFE','A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert',2006,1,NULL,7,'4.99',137,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(677,'PIANIST OUTFIELD','A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery',2006,1,NULL,6,'0.99',136,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(678,'PICKUP DRIVING','A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory',2006,1,NULL,3,'2.99',77,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(679,'PILOT HOOSIERS','A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',50,'17.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(680,'PINOCCHIO SIMON','A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California',2006,1,NULL,4,'4.99',103,'21.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(681,'PIRATES ROXANNE','A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies',2006,1,NULL,4,'0.99',100,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(682,'PITTSBURGH HUNCHBACK','A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia',2006,1,NULL,4,'4.99',134,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(683,'PITY BOUND','A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria',2006,1,NULL,5,'4.99',60,'19.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(684,'PIZZA JUMANJI','A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat',2006,1,NULL,4,'2.99',173,'11.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(685,'PLATOON INSTINCT','A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia',2006,1,NULL,6,'4.99',132,'10.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(686,'PLUTO OLEANDER','A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank',2006,1,NULL,5,'4.99',84,'9.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(687,'POCUS PULP','A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory',2006,1,NULL,6,'0.99',138,'15.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(688,'POLISH BROOKLYN','A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback',2006,1,NULL,6,'0.99',61,'12.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(689,'POLLOCK DELIVERANCE','A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert',2006,1,NULL,5,'2.99',137,'14.99','PG','Commentaries','2006-02-15 05:03:42'), +(690,'POND SEATTLE','A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China',2006,1,NULL,7,'2.99',185,'25.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(691,'POSEIDON FOREVER','A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery',2006,1,NULL,6,'4.99',159,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(692,'POTLUCK MIXED','A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon',2006,1,NULL,3,'2.99',179,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(693,'POTTER CONNECTICUT','A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin',2006,1,NULL,5,'2.99',115,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(694,'PREJUDICE OLEANDER','A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat',2006,1,NULL,6,'4.99',98,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(695,'PRESIDENT BANG','A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia',2006,1,NULL,6,'4.99',144,'12.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(696,'PRIDE ALAMO','A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India',2006,1,NULL,6,'0.99',114,'20.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(697,'PRIMARY GLASS','A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies',2006,1,NULL,7,'0.99',53,'16.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(698,'PRINCESS GIANT','A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank',2006,1,NULL,3,'2.99',71,'29.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(699,'PRIVATE DROP','A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon',2006,1,NULL,7,'4.99',106,'26.99','PG','Trailers','2006-02-15 05:03:42'), +(700,'PRIX UNDEFEATED','A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China',2006,1,NULL,4,'2.99',115,'13.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(701,'PSYCHO SHRUNK','A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria',2006,1,NULL,5,'2.99',155,'11.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(702,'PULP BEVERLY','A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria',2006,1,NULL,4,'2.99',89,'12.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(703,'PUNK DIVORCE','A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies',2006,1,NULL,6,'4.99',100,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(704,'PURE RUNNER','A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse',2006,1,NULL,3,'2.99',121,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(705,'PURPLE MOVIE','A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',88,'9.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(706,'QUEEN LUKE','A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans',2006,1,NULL,5,'4.99',163,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(707,'QUEST MUSSOLINI','A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory',2006,1,NULL,5,'2.99',177,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(708,'QUILLS BULL','A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia',2006,1,NULL,4,'4.99',112,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(709,'RACER EGG','A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California',2006,1,NULL,7,'2.99',147,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(710,'RAGE GAMES','A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park',2006,1,NULL,4,'4.99',120,'18.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(711,'RAGING AIRPLANE','A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat',2006,1,NULL,4,'4.99',154,'18.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(712,'RAIDERS ANTITRUST','A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station',2006,1,NULL,4,'0.99',82,'11.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(713,'RAINBOW SHOCK','A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India',2006,1,NULL,3,'4.99',74,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(714,'RANDOM GO','A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank',2006,1,NULL,6,'2.99',73,'29.99','NC-17','Trailers','2006-02-15 05:03:42'), +(715,'RANGE MOONWALKER','A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon',2006,1,NULL,3,'4.99',147,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(716,'REAP UNFAITHFUL','A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention',2006,1,NULL,6,'2.99',136,'26.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(717,'REAR TRADING','A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia',2006,1,NULL,6,'0.99',97,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(718,'REBEL AIRPORT','A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India',2006,1,NULL,7,'0.99',73,'24.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(719,'RECORDS ZORRO','A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback',2006,1,NULL,7,'4.99',182,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(720,'REDEMPTION COMFORTS','A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China',2006,1,NULL,3,'2.99',179,'20.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(721,'REDS POCUS','A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia',2006,1,NULL,7,'4.99',182,'23.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(722,'REEF SALUTE','A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon',2006,1,NULL,5,'0.99',123,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(723,'REIGN GENTLEMEN','A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico',2006,1,NULL,3,'2.99',82,'29.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(724,'REMEMBER DIARY','A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India',2006,1,NULL,5,'2.99',110,'15.99','R','Trailers,Commentaries','2006-02-15 05:03:42'), +(725,'REQUIEM TYCOON','A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery',2006,1,NULL,6,'4.99',167,'25.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(726,'RESERVOIR ADAPTATION','A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California',2006,1,NULL,7,'2.99',61,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(727,'RESURRECTION SILVERADO','A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention',2006,1,NULL,6,'0.99',117,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(728,'REUNION WITCHES','A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory',2006,1,NULL,3,'0.99',63,'26.99','R','Commentaries','2006-02-15 05:03:42'), +(729,'RIDER CADDYSHACK','A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria',2006,1,NULL,5,'2.99',177,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(730,'RIDGEMONT SUBMARINE','A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan',2006,1,NULL,3,'0.99',46,'28.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(731,'RIGHT CRANES','A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat',2006,1,NULL,7,'4.99',153,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(732,'RINGS HEARTBREAKERS','A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans',2006,1,NULL,5,'0.99',58,'17.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(733,'RIVER OUTLAW','A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention',2006,1,NULL,4,'0.99',149,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(734,'ROAD ROXANNE','A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan',2006,1,NULL,4,'4.99',158,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(735,'ROBBERS JOON','A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia',2006,1,NULL,7,'2.99',102,'26.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(736,'ROBBERY BRIGHT','A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan',2006,1,NULL,4,'0.99',134,'21.99','R','Trailers','2006-02-15 05:03:42'), +(737,'ROCK INSTINCT','A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India',2006,1,NULL,4,'0.99',102,'28.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(738,'ROCKETEER MOTHER','A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank',2006,1,NULL,3,'0.99',178,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(739,'ROCKY WAR','A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria',2006,1,NULL,4,'4.99',145,'17.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(740,'ROLLERCOASTER BRINGING','A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank',2006,1,NULL,5,'2.99',153,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(741,'ROMAN PUNK','A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin',2006,1,NULL,7,'0.99',81,'28.99','NC-17','Trailers','2006-02-15 05:03:42'), +(742,'ROOF CHAMPION','A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon',2006,1,NULL,7,'0.99',101,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(743,'ROOM ROMAN','A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank',2006,1,NULL,7,'0.99',60,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(744,'ROOTS REMEMBER','A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin',2006,1,NULL,4,'0.99',89,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(745,'ROSES TREASURE','A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station',2006,1,NULL,5,'4.99',162,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(746,'ROUGE SQUAD','A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia',2006,1,NULL,3,'0.99',118,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(747,'ROXANNE REBEL','A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback',2006,1,NULL,5,'0.99',171,'9.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(748,'RUGRATS SHAKESPEARE','A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria',2006,1,NULL,4,'0.99',109,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(749,'RULES HUMAN','A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House',2006,1,NULL,6,'4.99',153,'19.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(750,'RUN PACIFIC','A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention',2006,1,NULL,3,'0.99',145,'25.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(751,'RUNAWAY TENENBAUMS','A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House',2006,1,NULL,6,'0.99',181,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(752,'RUNNER MADIGAN','A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback',2006,1,NULL,6,'0.99',101,'27.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(753,'RUSH GOODFELLAS','A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia',2006,1,NULL,3,'0.99',48,'20.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(754,'RUSHMORE MERMAID','A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank',2006,1,NULL,6,'2.99',150,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(755,'SABRINA MIDNIGHT','A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert',2006,1,NULL,5,'4.99',99,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(756,'SADDLE ANTITRUST','A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House',2006,1,NULL,7,'2.99',80,'10.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(757,'SAGEBRUSH CLUELESS','A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan',2006,1,NULL,4,'2.99',106,'28.99','G','Trailers','2006-02-15 05:03:42'), +(758,'SAINTS BRIDE','A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico',2006,1,NULL,5,'2.99',125,'11.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(759,'SALUTE APOLLO','A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China',2006,1,NULL,4,'2.99',73,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(760,'SAMURAI LION','A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon',2006,1,NULL,5,'2.99',110,'21.99','G','Commentaries','2006-02-15 05:03:42'), +(761,'SANTA PARIS','A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory',2006,1,NULL,7,'2.99',154,'23.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(762,'SASSY PACKER','A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse',2006,1,NULL,6,'0.99',154,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(763,'SATISFACTION CONFIDENTIAL','A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China',2006,1,NULL,3,'4.99',75,'26.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(764,'SATURDAY LAMBS','A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon',2006,1,NULL,3,'4.99',150,'28.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(765,'SATURN NAME','A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin',2006,1,NULL,7,'4.99',182,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(766,'SAVANNAH TOWN','A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico',2006,1,NULL,5,'0.99',84,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(767,'SCALAWAG DUCK','A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery',2006,1,NULL,6,'4.99',183,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(768,'SCARFACE BANG','A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory',2006,1,NULL,3,'4.99',102,'11.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(769,'SCHOOL JACKET','A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse',2006,1,NULL,5,'4.99',151,'21.99','PG-13','Trailers','2006-02-15 05:03:42'), +(770,'SCISSORHANDS SLUMS','A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies',2006,1,NULL,5,'2.99',147,'13.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(771,'SCORPION APOLLO','A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House',2006,1,NULL,3,'4.99',137,'23.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(772,'SEA VIRGIN','A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat',2006,1,NULL,4,'2.99',80,'24.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(773,'SEABISCUIT PUNK','A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention',2006,1,NULL,6,'2.99',112,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(774,'SEARCHERS WAIT','A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan',2006,1,NULL,3,'2.99',182,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(775,'SEATTLE EXPECATIONS','A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert',2006,1,NULL,4,'4.99',110,'18.99','PG-13','Trailers','2006-02-15 05:03:42'), +(776,'SECRET GROUNDHOG','A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans',2006,1,NULL,6,'4.99',90,'11.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(777,'SECRETARY ROUGE','A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory',2006,1,NULL,5,'4.99',158,'10.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(778,'SECRETS PARADISE','A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse',2006,1,NULL,3,'4.99',109,'24.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(779,'SENSE GREEK','A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House',2006,1,NULL,4,'4.99',54,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(780,'SENSIBILITY REAR','A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory',2006,1,NULL,7,'4.99',98,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(781,'SEVEN SWARM','A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin',2006,1,NULL,4,'4.99',127,'15.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(782,'SHAKESPEARE SADDLE','A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention',2006,1,NULL,6,'2.99',60,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(783,'SHANE DARKNESS','A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin',2006,1,NULL,5,'2.99',93,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(784,'SHANGHAI TYCOON','A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House',2006,1,NULL,7,'2.99',47,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(785,'SHAWSHANK BUBBLE','A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',80,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(786,'SHEPHERD MIDSUMMER','A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon',2006,1,NULL,7,'0.99',113,'14.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(787,'SHINING ROSES','A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India',2006,1,NULL,4,'0.99',125,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(788,'SHIP WONDERLAND','A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback',2006,1,NULL,5,'2.99',104,'15.99','R','Commentaries','2006-02-15 05:03:42'), +(789,'SHOCK CABIN','A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans',2006,1,NULL,7,'2.99',79,'15.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(790,'SHOOTIST SUPERFLY','A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin',2006,1,NULL,6,'0.99',67,'22.99','PG-13','Trailers','2006-02-15 05:03:42'), +(791,'SHOW LORD','A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan',2006,1,NULL,3,'4.99',167,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(792,'SHREK LICENSE','A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat',2006,1,NULL,7,'2.99',154,'15.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(793,'SHRUNK DIVINE','A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon',2006,1,NULL,6,'2.99',139,'14.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(794,'SIDE ARK','A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies',2006,1,NULL,5,'0.99',52,'28.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(795,'SIEGE MADRE','A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',111,'23.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(796,'SIERRA DIVIDE','A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California',2006,1,NULL,3,'0.99',135,'12.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(797,'SILENCE KANE','A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon',2006,1,NULL,7,'0.99',67,'23.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(798,'SILVERADO GOLDFINGER','A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India',2006,1,NULL,4,'4.99',74,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(799,'SIMON NORTH','A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank',2006,1,NULL,3,'0.99',51,'26.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(800,'SINNERS ATLANTIS','A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',126,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(801,'SISTER FREDDY','A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia',2006,1,NULL,5,'4.99',152,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(802,'SKY MIRACLE','A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House',2006,1,NULL,7,'2.99',132,'15.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(803,'SLACKER LIAISONS','A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China',2006,1,NULL,7,'4.99',179,'29.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(804,'SLEEPING SUSPECTS','A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention',2006,1,NULL,7,'4.99',129,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(805,'SLEEPLESS MONSOON','A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia',2006,1,NULL,5,'4.99',64,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(806,'SLEEPY JAPANESE','A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback',2006,1,NULL,4,'2.99',137,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(807,'SLEUTH ORIENT','A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India',2006,1,NULL,4,'0.99',87,'25.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(808,'SLING LUKE','A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',84,'10.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(809,'SLIPPER FIDELITY','A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention',2006,1,NULL,5,'0.99',156,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(810,'SLUMS DUCK','A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat',2006,1,NULL,5,'0.99',147,'21.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(811,'SMILE EARRING','A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin',2006,1,NULL,4,'2.99',60,'29.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(812,'SMOKING BARBARELLA','A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention',2006,1,NULL,7,'0.99',50,'13.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(813,'SMOOCHY CONTROL','A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China',2006,1,NULL,7,'0.99',184,'18.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(814,'SNATCH SLIPPER','A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin',2006,1,NULL,6,'4.99',110,'15.99','PG','Commentaries','2006-02-15 05:03:42'), +(815,'SNATCHERS MONTEZUMA','A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies',2006,1,NULL,4,'2.99',74,'14.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(816,'SNOWMAN ROLLERCOASTER','A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse',2006,1,NULL,3,'0.99',62,'27.99','G','Trailers','2006-02-15 05:03:42'), +(817,'SOLDIERS EVOLUTION','A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station',2006,1,NULL,7,'4.99',185,'27.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(818,'SOMETHING DUCK','A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station',2006,1,NULL,4,'4.99',180,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(819,'SONG HEDWIG','A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention',2006,1,NULL,3,'0.99',165,'29.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(820,'SONS INTERVIEW','A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China',2006,1,NULL,3,'2.99',184,'11.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(821,'SORORITY QUEEN','A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat',2006,1,NULL,6,'0.99',184,'17.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(822,'SOUP WISDOM','A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention',2006,1,NULL,6,'0.99',169,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(823,'SOUTH WAIT','A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',143,'21.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(824,'SPARTACUS CHEAPER','A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse',2006,1,NULL,4,'4.99',52,'19.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(825,'SPEAKEASY DATE','A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse',2006,1,NULL,6,'2.99',165,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(826,'SPEED SUIT','A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China',2006,1,NULL,7,'4.99',124,'19.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(827,'SPICE SORORITY','A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',141,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(828,'SPIKING ELEMENT','A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery',2006,1,NULL,7,'2.99',79,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(829,'SPINAL ROCKY','A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California',2006,1,NULL,7,'2.99',138,'12.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(830,'SPIRIT FLINTSTONES','A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan',2006,1,NULL,7,'0.99',149,'23.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(831,'SPIRITED CASUALTIES','A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory',2006,1,NULL,5,'0.99',138,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(832,'SPLASH GUMP','A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank',2006,1,NULL,5,'0.99',175,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(833,'SPLENDOR PATTON','A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin',2006,1,NULL,5,'0.99',134,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(834,'SPOILERS HELLFIGHTERS','A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico',2006,1,NULL,4,'0.99',151,'26.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(835,'SPY MILE','A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon',2006,1,NULL,6,'2.99',112,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(836,'SQUAD FISH','A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin',2006,1,NULL,3,'2.99',136,'14.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(837,'STAGE WORLD','A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat',2006,1,NULL,4,'2.99',85,'19.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(838,'STAGECOACH ARMAGEDDON','A Touching Display of a Pioneer And a Butler who must Chase a Car in California',2006,1,NULL,5,'4.99',112,'25.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(839,'STALLION SUNDANCE','A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia',2006,1,NULL,5,'0.99',130,'23.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(840,'STAMPEDE DISTURBING','A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat',2006,1,NULL,5,'0.99',75,'26.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(841,'STAR OPERATION','A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank',2006,1,NULL,5,'2.99',181,'9.99','PG','Commentaries','2006-02-15 05:03:42'), +(842,'STATE WASTELAND','A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat',2006,1,NULL,4,'2.99',113,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(843,'STEEL SANTA','A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria',2006,1,NULL,4,'4.99',143,'15.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(844,'STEERS ARMAGEDDON','A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention',2006,1,NULL,6,'4.99',140,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(845,'STEPMOM DREAM','A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention',2006,1,NULL,7,'4.99',48,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(846,'STING PERSONAL','A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat',2006,1,NULL,3,'4.99',93,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(847,'STOCK GLASS','A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China',2006,1,NULL,7,'2.99',160,'10.99','PG','Commentaries','2006-02-15 05:03:42'), +(848,'STONE FIRE','A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia',2006,1,NULL,3,'0.99',94,'19.99','G','Trailers','2006-02-15 05:03:42'), +(849,'STORM HAPPINESS','A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank',2006,1,NULL,6,'0.99',57,'28.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(850,'STORY SIDE','A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',163,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(851,'STRAIGHT HOURS','A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback',2006,1,NULL,3,'0.99',151,'19.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(852,'STRANGELOVE DESIRE','A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park',2006,1,NULL,4,'0.99',103,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(853,'STRANGER STRANGERS','A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station',2006,1,NULL,3,'4.99',139,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(854,'STRANGERS GRAFFITI','A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico',2006,1,NULL,4,'4.99',119,'22.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(855,'STREAK RIDGEMONT','A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans',2006,1,NULL,7,'0.99',132,'28.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(856,'STREETCAR INTENTIONS','A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico',2006,1,NULL,5,'4.99',73,'11.99','R','Commentaries','2006-02-15 05:03:42'), +(857,'STRICTLY SCARFACE','A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House',2006,1,NULL,3,'2.99',144,'24.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(858,'SUBMARINE BED','A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia',2006,1,NULL,5,'4.99',127,'21.99','R','Trailers','2006-02-15 05:03:42'), +(859,'SUGAR WONKA','A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park',2006,1,NULL,3,'4.99',114,'20.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(860,'SUICIDES SILENCE','A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat',2006,1,NULL,4,'4.99',93,'13.99','G','Deleted Scenes','2006-02-15 05:03:42'), +(861,'SUIT WALLS','A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia',2006,1,NULL,3,'4.99',111,'12.99','R','Commentaries','2006-02-15 05:03:42'), +(862,'SUMMER SCARFACE','A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank',2006,1,NULL,5,'0.99',53,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(863,'SUN CONFESSIONS','A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',141,'9.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(864,'SUNDANCE INVASION','A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory',2006,1,NULL,5,'0.99',92,'21.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(865,'SUNRISE LEAGUE','A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'4.99',135,'19.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(866,'SUNSET RACER','A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California',2006,1,NULL,6,'0.99',48,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(867,'SUPER WYOMING','A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback',2006,1,NULL,5,'4.99',58,'10.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(868,'SUPERFLY TRIP','A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House',2006,1,NULL,5,'0.99',114,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(869,'SUSPECTS QUILLS','A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse',2006,1,NULL,4,'2.99',47,'22.99','PG','Trailers','2006-02-15 05:03:42'), +(870,'SWARM GOLD','A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention',2006,1,NULL,4,'0.99',123,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(871,'SWEDEN SHINING','A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies',2006,1,NULL,6,'4.99',176,'19.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(872,'SWEET BROTHERHOOD','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon',2006,1,NULL,3,'2.99',185,'27.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(873,'SWEETHEARTS SUSPECTS','A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico',2006,1,NULL,3,'0.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(874,'TADPOLE PARK','A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park',2006,1,NULL,6,'2.99',155,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'), +(875,'TALENTED HOMICIDE','A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat',2006,1,NULL,6,'0.99',173,'9.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(876,'TARZAN VIDEOTAPE','A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert',2006,1,NULL,3,'2.99',91,'11.99','PG-13','Trailers','2006-02-15 05:03:42'), +(877,'TAXI KICK','A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia',2006,1,NULL,4,'0.99',64,'23.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(878,'TEEN APOLLO','A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank',2006,1,NULL,3,'4.99',74,'25.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(879,'TELEGRAPH VOYAGE','A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat',2006,1,NULL,3,'4.99',148,'20.99','PG','Commentaries','2006-02-15 05:03:42'), +(880,'TELEMARK HEARTBREAKERS','A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse',2006,1,NULL,6,'2.99',152,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(881,'TEMPLE ATTRACTION','A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia',2006,1,NULL,5,'4.99',71,'13.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(882,'TENENBAUMS COMMAND','A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico',2006,1,NULL,4,'0.99',99,'24.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(883,'TEQUILA PAST','A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria',2006,1,NULL,6,'4.99',53,'17.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(884,'TERMINATOR CLUB','A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico',2006,1,NULL,5,'4.99',88,'11.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(885,'TEXAS WATCH','A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park',2006,1,NULL,7,'0.99',179,'22.99','NC-17','Trailers','2006-02-15 05:03:42'), +(886,'THEORY MERMAID','A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station',2006,1,NULL,5,'0.99',184,'9.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(887,'THIEF PELICAN','A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',135,'28.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(888,'THIN SAGEBRUSH','A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India',2006,1,NULL,5,'4.99',53,'9.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'), +(889,'TIES HUNGER','A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat',2006,1,NULL,3,'4.99',111,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(890,'TIGHTS DAWN','A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon',2006,1,NULL,5,'0.99',172,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(891,'TIMBERLAND SKY','A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat',2006,1,NULL,3,'0.99',69,'13.99','G','Commentaries','2006-02-15 05:03:42'), +(892,'TITANIC BOONDOCK','A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory',2006,1,NULL,3,'4.99',104,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(893,'TITANS JERK','A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China',2006,1,NULL,4,'4.99',91,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(894,'TOMATOES HELLFIGHTERS','A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank',2006,1,NULL,6,'0.99',68,'23.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(895,'TOMORROW HUSTLER','A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert',2006,1,NULL,3,'2.99',142,'21.99','R','Commentaries','2006-02-15 05:03:42'), +(896,'TOOTSIE PILOT','A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin',2006,1,NULL,3,'0.99',157,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(897,'TORQUE BOUND','A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan',2006,1,NULL,3,'4.99',179,'27.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(898,'TOURIST PELICAN','A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia',2006,1,NULL,4,'4.99',152,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(899,'TOWERS HURRICANE','A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention',2006,1,NULL,7,'0.99',144,'14.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(900,'TOWN ARK','A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',136,'17.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(901,'TRACY CIDER','A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria',2006,1,NULL,3,'0.99',142,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(902,'TRADING PINOCCHIO','A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station',2006,1,NULL,6,'4.99',170,'22.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(903,'TRAFFIC HOBBIT','A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat',2006,1,NULL,5,'4.99',139,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(904,'TRAIN BUNCH','A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India',2006,1,NULL,3,'4.99',71,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(905,'TRAINSPOTTING STRANGERS','A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan',2006,1,NULL,7,'4.99',132,'10.99','PG-13','Trailers','2006-02-15 05:03:42'), +(906,'TRAMP OTHERS','A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India',2006,1,NULL,4,'0.99',171,'27.99','PG','Deleted Scenes','2006-02-15 05:03:42'), +(907,'TRANSLATION SUMMER','A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention',2006,1,NULL,4,'0.99',168,'10.99','PG-13','Trailers','2006-02-15 05:03:42'), +(908,'TRAP GUYS','A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert',2006,1,NULL,3,'4.99',110,'11.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(909,'TREASURE COMMAND','A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California',2006,1,NULL,3,'0.99',102,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(910,'TREATMENT JEKYLL','A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft',2006,1,NULL,3,'0.99',87,'19.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(911,'TRIP NEWTON','A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park',2006,1,NULL,7,'4.99',64,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(912,'TROJAN TOMORROW','A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India',2006,1,NULL,3,'2.99',52,'9.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(913,'TROOPERS METAL','A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin',2006,1,NULL,3,'0.99',115,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(914,'TROUBLE DATE','A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan',2006,1,NULL,6,'2.99',61,'13.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(915,'TRUMAN CRAZY','A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery',2006,1,NULL,7,'4.99',92,'9.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(916,'TURN STAR','A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans',2006,1,NULL,3,'2.99',80,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(917,'TUXEDO MILE','A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India',2006,1,NULL,3,'2.99',152,'24.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(918,'TWISTED PIRATES','A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention',2006,1,NULL,4,'4.99',152,'23.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(919,'TYCOON GATHERING','A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse',2006,1,NULL,3,'4.99',82,'17.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(920,'UNBREAKABLE KARATE','A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia',2006,1,NULL,3,'0.99',62,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(921,'UNCUT SUICIDES','A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat',2006,1,NULL,7,'2.99',172,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(922,'UNDEFEATED DALMATIONS','A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park',2006,1,NULL,7,'4.99',107,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'), +(923,'UNFAITHFUL KILL','A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans',2006,1,NULL,7,'2.99',78,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(924,'UNFORGIVEN ZOOLANDER','A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory',2006,1,NULL,7,'0.99',129,'15.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(925,'UNITED PILOT','A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert',2006,1,NULL,3,'0.99',164,'27.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(926,'UNTOUCHABLES SUNRISE','A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House',2006,1,NULL,5,'2.99',120,'11.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(927,'UPRISING UPTOWN','A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin',2006,1,NULL,6,'2.99',174,'16.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(928,'UPTOWN YOUNG','A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park',2006,1,NULL,5,'2.99',84,'16.99','PG','Commentaries','2006-02-15 05:03:42'), +(929,'USUAL UNTOUCHABLES','A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank',2006,1,NULL,5,'4.99',128,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(930,'VACATION BOONDOCK','A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia',2006,1,NULL,4,'2.99',145,'23.99','R','Commentaries','2006-02-15 05:03:42'), +(931,'VALENTINE VANISHING','A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California',2006,1,NULL,7,'0.99',48,'9.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(932,'VALLEY PACKER','A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'0.99',73,'21.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(933,'VAMPIRE WHALE','A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention',2006,1,NULL,4,'4.99',126,'11.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(934,'VANILLA DAY','A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria',2006,1,NULL,7,'4.99',122,'20.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(935,'VANISHED GARDEN','A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California',2006,1,NULL,5,'0.99',142,'17.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(936,'VANISHING ROCKY','A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention',2006,1,NULL,3,'2.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(937,'VARSITY TRIP','A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention',2006,1,NULL,7,'2.99',85,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(938,'VELVET TERMINATOR','A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park',2006,1,NULL,3,'4.99',173,'14.99','R','Behind the Scenes','2006-02-15 05:03:42'), +(939,'VERTIGO NORTHWEST','A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan',2006,1,NULL,4,'2.99',90,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(940,'VICTORY ACADEMY','A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert',2006,1,NULL,6,'0.99',64,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(941,'VIDEOTAPE ARSENIC','A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia',2006,1,NULL,4,'4.99',145,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(942,'VIETNAM SMOOCHY','A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia',2006,1,NULL,7,'0.99',174,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(943,'VILLAIN DESPERATE','A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park',2006,1,NULL,4,'4.99',76,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'), +(944,'VIRGIN DAISY','A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank',2006,1,NULL,6,'4.99',179,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(945,'VIRGINIAN PLUTO','A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin',2006,1,NULL,5,'0.99',164,'22.99','R','Deleted Scenes','2006-02-15 05:03:42'), +(946,'VIRTUAL SPOILERS','A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia',2006,1,NULL,3,'4.99',144,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(947,'VISION TORQUE','A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank',2006,1,NULL,5,'0.99',59,'16.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(948,'VOICE PEACH','A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse',2006,1,NULL,6,'0.99',139,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(949,'VOLCANO TEXAS','A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback',2006,1,NULL,6,'0.99',157,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(950,'VOLUME HOUSE','A Boring Tale of a Dog And a Woman who must Meet a Dentist in California',2006,1,NULL,7,'4.99',132,'12.99','PG','Commentaries','2006-02-15 05:03:42'), +(951,'VOYAGE LEGALLY','A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',78,'28.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(952,'WAGON JAWS','A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse',2006,1,NULL,7,'2.99',152,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(953,'WAIT CIDER','A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse',2006,1,NULL,3,'0.99',112,'9.99','PG-13','Trailers','2006-02-15 05:03:42'), +(954,'WAKE JAWS','A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin',2006,1,NULL,7,'4.99',73,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(955,'WALLS ARTIST','A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House',2006,1,NULL,7,'4.99',135,'19.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(956,'WANDA CHAMBER','A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback',2006,1,NULL,7,'4.99',107,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(957,'WAR NOTTING','A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies',2006,1,NULL,7,'4.99',80,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(958,'WARDROBE PHANTOM','A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India',2006,1,NULL,6,'2.99',178,'19.99','G','Trailers,Commentaries','2006-02-15 05:03:42'), +(959,'WARLOCK WEREWOLF','A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback',2006,1,NULL,6,'2.99',83,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(960,'WARS PLUTO','A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert',2006,1,NULL,5,'2.99',128,'15.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(961,'WASH HEAVENLY','A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China',2006,1,NULL,7,'4.99',161,'22.99','R','Commentaries','2006-02-15 05:03:42'), +(962,'WASTELAND DIVINE','A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China',2006,1,NULL,7,'2.99',85,'18.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(963,'WATCH TRACY','A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria',2006,1,NULL,5,'0.99',78,'12.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(964,'WATERFRONT DELIVERANCE','A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria',2006,1,NULL,4,'4.99',61,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'), +(965,'WATERSHIP FRONTIER','A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia',2006,1,NULL,6,'0.99',112,'28.99','G','Commentaries','2006-02-15 05:03:42'), +(966,'WEDDING APOLLO','A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft',2006,1,NULL,3,'0.99',70,'14.99','PG','Trailers','2006-02-15 05:03:42'), +(967,'WEEKEND PERSONAL','A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat',2006,1,NULL,5,'2.99',134,'26.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(968,'WEREWOLF LOLA','A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery',2006,1,NULL,6,'4.99',79,'19.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(969,'WEST LION','A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse',2006,1,NULL,4,'4.99',159,'29.99','G','Trailers','2006-02-15 05:03:42'), +(970,'WESTWARD SEABISCUIT','A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China',2006,1,NULL,7,'0.99',52,'11.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(971,'WHALE BIKINI','A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention',2006,1,NULL,4,'4.99',109,'11.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(972,'WHISPERER GIANT','A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan',2006,1,NULL,4,'4.99',59,'24.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(973,'WIFE TURN','A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan',2006,1,NULL,3,'4.99',183,'27.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(974,'WILD APOLLO','A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention',2006,1,NULL,4,'0.99',181,'24.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(975,'WILLOW TRACY','A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse',2006,1,NULL,6,'2.99',137,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(976,'WIND PHANTOM','A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',111,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(977,'WINDOW SIDE','A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery',2006,1,NULL,3,'2.99',85,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(978,'WISDOM WORKER','A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station',2006,1,NULL,3,'0.99',98,'12.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(979,'WITCHES PANIC','A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria',2006,1,NULL,6,'4.99',100,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(980,'WIZARD COLDBLOODED','A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention',2006,1,NULL,4,'4.99',75,'12.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(981,'WOLVES DESIRE','A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse',2006,1,NULL,7,'0.99',55,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'), +(982,'WOMEN DORADO','A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia',2006,1,NULL,4,'0.99',126,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(983,'WON DARES','A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat',2006,1,NULL,7,'2.99',105,'18.99','PG','Behind the Scenes','2006-02-15 05:03:42'), +(984,'WONDERFUL DROP','A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat',2006,1,NULL,3,'2.99',126,'20.99','NC-17','Commentaries','2006-02-15 05:03:42'), +(985,'WONDERLAND CHRISTMAS','A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station',2006,1,NULL,4,'4.99',111,'19.99','PG','Commentaries','2006-02-15 05:03:42'), +(986,'WONKA SEA','A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India',2006,1,NULL,6,'2.99',85,'24.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(987,'WORDS HUNTER','A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention',2006,1,NULL,3,'2.99',116,'13.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(988,'WORKER TARZAN','A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station',2006,1,NULL,7,'2.99',139,'26.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'), +(989,'WORKING MICROCOSMOS','A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China',2006,1,NULL,4,'4.99',74,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(990,'WORLD LEATHERNECKS','A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',171,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(991,'WORST BANGER','A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback',2006,1,NULL,4,'2.99',185,'26.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'), +(992,'WRATH MILE','A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery',2006,1,NULL,5,'0.99',176,'17.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'), +(993,'WRONG BEHAVIOR','A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans',2006,1,NULL,6,'2.99',178,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(994,'WYOMING STORM','A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat',2006,1,NULL,6,'4.99',100,'29.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'), +(995,'YENTL IDAHO','A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin',2006,1,NULL,5,'4.99',86,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'), +(996,'YOUNG LANGUAGE','A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station',2006,1,NULL,6,'0.99',183,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(997,'YOUTH KICK','A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat',2006,1,NULL,4,'0.99',179,'14.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'), +(998,'ZHIVAGO CORE','A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies',2006,1,NULL,6,'0.99',105,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'), +(999,'ZOOLANDER FICTION','A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China',2006,1,NULL,5,'2.99',101,'28.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'), +(1000,'ZORRO ARK','A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery',2006,1,NULL,3,'4.99',50,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'); +COMMIT; + +-- +-- Dumping data for table film_actor +-- + +SET AUTOCOMMIT=0; +INSERT INTO film_actor VALUES (1,1,'2006-02-15 05:05:03'), +(1,23,'2006-02-15 05:05:03'), +(1,25,'2006-02-15 05:05:03'), +(1,106,'2006-02-15 05:05:03'), +(1,140,'2006-02-15 05:05:03'), +(1,166,'2006-02-15 05:05:03'), +(1,277,'2006-02-15 05:05:03'), +(1,361,'2006-02-15 05:05:03'), +(1,438,'2006-02-15 05:05:03'), +(1,499,'2006-02-15 05:05:03'), +(1,506,'2006-02-15 05:05:03'), +(1,509,'2006-02-15 05:05:03'), +(1,605,'2006-02-15 05:05:03'), +(1,635,'2006-02-15 05:05:03'), +(1,749,'2006-02-15 05:05:03'), +(1,832,'2006-02-15 05:05:03'), +(1,939,'2006-02-15 05:05:03'), +(1,970,'2006-02-15 05:05:03'), +(1,980,'2006-02-15 05:05:03'), +(2,3,'2006-02-15 05:05:03'), +(2,31,'2006-02-15 05:05:03'), +(2,47,'2006-02-15 05:05:03'), +(2,105,'2006-02-15 05:05:03'), +(2,132,'2006-02-15 05:05:03'), +(2,145,'2006-02-15 05:05:03'), +(2,226,'2006-02-15 05:05:03'), +(2,249,'2006-02-15 05:05:03'), +(2,314,'2006-02-15 05:05:03'), +(2,321,'2006-02-15 05:05:03'), +(2,357,'2006-02-15 05:05:03'), +(2,369,'2006-02-15 05:05:03'), +(2,399,'2006-02-15 05:05:03'), +(2,458,'2006-02-15 05:05:03'), +(2,481,'2006-02-15 05:05:03'), +(2,485,'2006-02-15 05:05:03'), +(2,518,'2006-02-15 05:05:03'), +(2,540,'2006-02-15 05:05:03'), +(2,550,'2006-02-15 05:05:03'), +(2,555,'2006-02-15 05:05:03'), +(2,561,'2006-02-15 05:05:03'), +(2,742,'2006-02-15 05:05:03'), +(2,754,'2006-02-15 05:05:03'), +(2,811,'2006-02-15 05:05:03'), +(2,958,'2006-02-15 05:05:03'), +(3,17,'2006-02-15 05:05:03'), +(3,40,'2006-02-15 05:05:03'), +(3,42,'2006-02-15 05:05:03'), +(3,87,'2006-02-15 05:05:03'), +(3,111,'2006-02-15 05:05:03'), +(3,185,'2006-02-15 05:05:03'), +(3,289,'2006-02-15 05:05:03'), +(3,329,'2006-02-15 05:05:03'), +(3,336,'2006-02-15 05:05:03'), +(3,341,'2006-02-15 05:05:03'), +(3,393,'2006-02-15 05:05:03'), +(3,441,'2006-02-15 05:05:03'), +(3,453,'2006-02-15 05:05:03'), +(3,480,'2006-02-15 05:05:03'), +(3,539,'2006-02-15 05:05:03'), +(3,618,'2006-02-15 05:05:03'), +(3,685,'2006-02-15 05:05:03'), +(3,827,'2006-02-15 05:05:03'), +(3,966,'2006-02-15 05:05:03'), +(3,967,'2006-02-15 05:05:03'), +(3,971,'2006-02-15 05:05:03'), +(3,996,'2006-02-15 05:05:03'), +(4,23,'2006-02-15 05:05:03'), +(4,25,'2006-02-15 05:05:03'), +(4,56,'2006-02-15 05:05:03'), +(4,62,'2006-02-15 05:05:03'), +(4,79,'2006-02-15 05:05:03'), +(4,87,'2006-02-15 05:05:03'), +(4,355,'2006-02-15 05:05:03'), +(4,379,'2006-02-15 05:05:03'), +(4,398,'2006-02-15 05:05:03'), +(4,463,'2006-02-15 05:05:03'), +(4,490,'2006-02-15 05:05:03'), +(4,616,'2006-02-15 05:05:03'), +(4,635,'2006-02-15 05:05:03'), +(4,691,'2006-02-15 05:05:03'), +(4,712,'2006-02-15 05:05:03'), +(4,714,'2006-02-15 05:05:03'), +(4,721,'2006-02-15 05:05:03'), +(4,798,'2006-02-15 05:05:03'), +(4,832,'2006-02-15 05:05:03'), +(4,858,'2006-02-15 05:05:03'), +(4,909,'2006-02-15 05:05:03'), +(4,924,'2006-02-15 05:05:03'), +(5,19,'2006-02-15 05:05:03'), +(5,54,'2006-02-15 05:05:03'), +(5,85,'2006-02-15 05:05:03'), +(5,146,'2006-02-15 05:05:03'), +(5,171,'2006-02-15 05:05:03'), +(5,172,'2006-02-15 05:05:03'), +(5,202,'2006-02-15 05:05:03'), +(5,203,'2006-02-15 05:05:03'), +(5,286,'2006-02-15 05:05:03'), +(5,288,'2006-02-15 05:05:03'), +(5,316,'2006-02-15 05:05:03'), +(5,340,'2006-02-15 05:05:03'), +(5,369,'2006-02-15 05:05:03'), +(5,375,'2006-02-15 05:05:03'), +(5,383,'2006-02-15 05:05:03'), +(5,392,'2006-02-15 05:05:03'), +(5,411,'2006-02-15 05:05:03'), +(5,503,'2006-02-15 05:05:03'), +(5,535,'2006-02-15 05:05:03'), +(5,571,'2006-02-15 05:05:03'), +(5,650,'2006-02-15 05:05:03'), +(5,665,'2006-02-15 05:05:03'), +(5,687,'2006-02-15 05:05:03'), +(5,730,'2006-02-15 05:05:03'), +(5,732,'2006-02-15 05:05:03'), +(5,811,'2006-02-15 05:05:03'), +(5,817,'2006-02-15 05:05:03'), +(5,841,'2006-02-15 05:05:03'), +(5,865,'2006-02-15 05:05:03'), +(6,29,'2006-02-15 05:05:03'), +(6,53,'2006-02-15 05:05:03'), +(6,60,'2006-02-15 05:05:03'), +(6,70,'2006-02-15 05:05:03'), +(6,112,'2006-02-15 05:05:03'), +(6,164,'2006-02-15 05:05:03'), +(6,165,'2006-02-15 05:05:03'), +(6,193,'2006-02-15 05:05:03'), +(6,256,'2006-02-15 05:05:03'), +(6,451,'2006-02-15 05:05:03'), +(6,503,'2006-02-15 05:05:03'), +(6,509,'2006-02-15 05:05:03'), +(6,517,'2006-02-15 05:05:03'), +(6,519,'2006-02-15 05:05:03'), +(6,605,'2006-02-15 05:05:03'), +(6,692,'2006-02-15 05:05:03'), +(6,826,'2006-02-15 05:05:03'), +(6,892,'2006-02-15 05:05:03'), +(6,902,'2006-02-15 05:05:03'), +(6,994,'2006-02-15 05:05:03'), +(7,25,'2006-02-15 05:05:03'), +(7,27,'2006-02-15 05:05:03'), +(7,35,'2006-02-15 05:05:03'), +(7,67,'2006-02-15 05:05:03'), +(7,96,'2006-02-15 05:05:03'), +(7,170,'2006-02-15 05:05:03'), +(7,173,'2006-02-15 05:05:03'), +(7,217,'2006-02-15 05:05:03'), +(7,218,'2006-02-15 05:05:03'), +(7,225,'2006-02-15 05:05:03'), +(7,292,'2006-02-15 05:05:03'), +(7,351,'2006-02-15 05:05:03'), +(7,414,'2006-02-15 05:05:03'), +(7,463,'2006-02-15 05:05:03'), +(7,554,'2006-02-15 05:05:03'), +(7,618,'2006-02-15 05:05:03'), +(7,633,'2006-02-15 05:05:03'), +(7,637,'2006-02-15 05:05:03'), +(7,691,'2006-02-15 05:05:03'), +(7,758,'2006-02-15 05:05:03'), +(7,766,'2006-02-15 05:05:03'), +(7,770,'2006-02-15 05:05:03'), +(7,805,'2006-02-15 05:05:03'), +(7,806,'2006-02-15 05:05:03'), +(7,846,'2006-02-15 05:05:03'), +(7,900,'2006-02-15 05:05:03'), +(7,901,'2006-02-15 05:05:03'), +(7,910,'2006-02-15 05:05:03'), +(7,957,'2006-02-15 05:05:03'), +(7,959,'2006-02-15 05:05:03'), +(8,47,'2006-02-15 05:05:03'), +(8,115,'2006-02-15 05:05:03'), +(8,158,'2006-02-15 05:05:03'), +(8,179,'2006-02-15 05:05:03'), +(8,195,'2006-02-15 05:05:03'), +(8,205,'2006-02-15 05:05:03'), +(8,255,'2006-02-15 05:05:03'), +(8,263,'2006-02-15 05:05:03'), +(8,321,'2006-02-15 05:05:03'), +(8,396,'2006-02-15 05:05:03'), +(8,458,'2006-02-15 05:05:03'), +(8,523,'2006-02-15 05:05:03'), +(8,532,'2006-02-15 05:05:03'), +(8,554,'2006-02-15 05:05:03'), +(8,752,'2006-02-15 05:05:03'), +(8,769,'2006-02-15 05:05:03'), +(8,771,'2006-02-15 05:05:03'), +(8,859,'2006-02-15 05:05:03'), +(8,895,'2006-02-15 05:05:03'), +(8,936,'2006-02-15 05:05:03'), +(9,30,'2006-02-15 05:05:03'), +(9,74,'2006-02-15 05:05:03'), +(9,147,'2006-02-15 05:05:03'), +(9,148,'2006-02-15 05:05:03'), +(9,191,'2006-02-15 05:05:03'), +(9,200,'2006-02-15 05:05:03'), +(9,204,'2006-02-15 05:05:03'), +(9,434,'2006-02-15 05:05:03'), +(9,510,'2006-02-15 05:05:03'), +(9,514,'2006-02-15 05:05:03'), +(9,552,'2006-02-15 05:05:03'), +(9,650,'2006-02-15 05:05:03'), +(9,671,'2006-02-15 05:05:03'), +(9,697,'2006-02-15 05:05:03'), +(9,722,'2006-02-15 05:05:03'), +(9,752,'2006-02-15 05:05:03'), +(9,811,'2006-02-15 05:05:03'), +(9,815,'2006-02-15 05:05:03'), +(9,865,'2006-02-15 05:05:03'), +(9,873,'2006-02-15 05:05:03'), +(9,889,'2006-02-15 05:05:03'), +(9,903,'2006-02-15 05:05:03'), +(9,926,'2006-02-15 05:05:03'), +(9,964,'2006-02-15 05:05:03'), +(9,974,'2006-02-15 05:05:03'), +(10,1,'2006-02-15 05:05:03'), +(10,9,'2006-02-15 05:05:03'), +(10,191,'2006-02-15 05:05:03'), +(10,236,'2006-02-15 05:05:03'), +(10,251,'2006-02-15 05:05:03'), +(10,366,'2006-02-15 05:05:03'), +(10,477,'2006-02-15 05:05:03'), +(10,480,'2006-02-15 05:05:03'), +(10,522,'2006-02-15 05:05:03'), +(10,530,'2006-02-15 05:05:03'), +(10,587,'2006-02-15 05:05:03'), +(10,694,'2006-02-15 05:05:03'), +(10,703,'2006-02-15 05:05:03'), +(10,716,'2006-02-15 05:05:03'), +(10,782,'2006-02-15 05:05:03'), +(10,914,'2006-02-15 05:05:03'), +(10,929,'2006-02-15 05:05:03'), +(10,930,'2006-02-15 05:05:03'), +(10,964,'2006-02-15 05:05:03'), +(10,966,'2006-02-15 05:05:03'), +(10,980,'2006-02-15 05:05:03'), +(10,983,'2006-02-15 05:05:03'), +(11,118,'2006-02-15 05:05:03'), +(11,205,'2006-02-15 05:05:03'), +(11,281,'2006-02-15 05:05:03'), +(11,283,'2006-02-15 05:05:03'), +(11,348,'2006-02-15 05:05:03'), +(11,364,'2006-02-15 05:05:03'), +(11,395,'2006-02-15 05:05:03'), +(11,429,'2006-02-15 05:05:03'), +(11,433,'2006-02-15 05:05:03'), +(11,453,'2006-02-15 05:05:03'), +(11,485,'2006-02-15 05:05:03'), +(11,532,'2006-02-15 05:05:03'), +(11,567,'2006-02-15 05:05:03'), +(11,587,'2006-02-15 05:05:03'), +(11,597,'2006-02-15 05:05:03'), +(11,636,'2006-02-15 05:05:03'), +(11,709,'2006-02-15 05:05:03'), +(11,850,'2006-02-15 05:05:03'), +(11,854,'2006-02-15 05:05:03'), +(11,888,'2006-02-15 05:05:03'), +(11,896,'2006-02-15 05:05:03'), +(11,928,'2006-02-15 05:05:03'), +(11,938,'2006-02-15 05:05:03'), +(11,969,'2006-02-15 05:05:03'), +(11,988,'2006-02-15 05:05:03'), +(12,16,'2006-02-15 05:05:03'), +(12,17,'2006-02-15 05:05:03'), +(12,34,'2006-02-15 05:05:03'), +(12,37,'2006-02-15 05:05:03'), +(12,91,'2006-02-15 05:05:03'), +(12,92,'2006-02-15 05:05:03'), +(12,107,'2006-02-15 05:05:03'), +(12,155,'2006-02-15 05:05:03'), +(12,177,'2006-02-15 05:05:03'), +(12,208,'2006-02-15 05:05:03'), +(12,213,'2006-02-15 05:05:03'), +(12,216,'2006-02-15 05:05:03'), +(12,243,'2006-02-15 05:05:03'), +(12,344,'2006-02-15 05:05:03'), +(12,400,'2006-02-15 05:05:03'), +(12,416,'2006-02-15 05:05:03'), +(12,420,'2006-02-15 05:05:03'), +(12,457,'2006-02-15 05:05:03'), +(12,513,'2006-02-15 05:05:03'), +(12,540,'2006-02-15 05:05:03'), +(12,593,'2006-02-15 05:05:03'), +(12,631,'2006-02-15 05:05:03'), +(12,635,'2006-02-15 05:05:03'), +(12,672,'2006-02-15 05:05:03'), +(12,716,'2006-02-15 05:05:03'), +(12,728,'2006-02-15 05:05:03'), +(12,812,'2006-02-15 05:05:03'), +(12,838,'2006-02-15 05:05:03'), +(12,871,'2006-02-15 05:05:03'), +(12,880,'2006-02-15 05:05:03'), +(12,945,'2006-02-15 05:05:03'), +(13,17,'2006-02-15 05:05:03'), +(13,29,'2006-02-15 05:05:03'), +(13,45,'2006-02-15 05:05:03'), +(13,87,'2006-02-15 05:05:03'), +(13,110,'2006-02-15 05:05:03'), +(13,144,'2006-02-15 05:05:03'), +(13,154,'2006-02-15 05:05:03'), +(13,162,'2006-02-15 05:05:03'), +(13,203,'2006-02-15 05:05:03'), +(13,254,'2006-02-15 05:05:03'), +(13,337,'2006-02-15 05:05:03'), +(13,346,'2006-02-15 05:05:03'), +(13,381,'2006-02-15 05:05:03'), +(13,385,'2006-02-15 05:05:03'), +(13,427,'2006-02-15 05:05:03'), +(13,456,'2006-02-15 05:05:03'), +(13,513,'2006-02-15 05:05:03'), +(13,515,'2006-02-15 05:05:03'), +(13,522,'2006-02-15 05:05:03'), +(13,524,'2006-02-15 05:05:03'), +(13,528,'2006-02-15 05:05:03'), +(13,571,'2006-02-15 05:05:03'), +(13,588,'2006-02-15 05:05:03'), +(13,597,'2006-02-15 05:05:03'), +(13,600,'2006-02-15 05:05:03'), +(13,718,'2006-02-15 05:05:03'), +(13,729,'2006-02-15 05:05:03'), +(13,816,'2006-02-15 05:05:03'), +(13,817,'2006-02-15 05:05:03'), +(13,832,'2006-02-15 05:05:03'), +(13,833,'2006-02-15 05:05:03'), +(13,843,'2006-02-15 05:05:03'), +(13,897,'2006-02-15 05:05:03'), +(13,966,'2006-02-15 05:05:03'), +(13,998,'2006-02-15 05:05:03'), +(14,154,'2006-02-15 05:05:03'), +(14,187,'2006-02-15 05:05:03'), +(14,232,'2006-02-15 05:05:03'), +(14,241,'2006-02-15 05:05:03'), +(14,253,'2006-02-15 05:05:03'), +(14,255,'2006-02-15 05:05:03'), +(14,258,'2006-02-15 05:05:03'), +(14,284,'2006-02-15 05:05:03'), +(14,292,'2006-02-15 05:05:03'), +(14,370,'2006-02-15 05:05:03'), +(14,415,'2006-02-15 05:05:03'), +(14,417,'2006-02-15 05:05:03'), +(14,418,'2006-02-15 05:05:03'), +(14,454,'2006-02-15 05:05:03'), +(14,472,'2006-02-15 05:05:03'), +(14,475,'2006-02-15 05:05:03'), +(14,495,'2006-02-15 05:05:03'), +(14,536,'2006-02-15 05:05:03'), +(14,537,'2006-02-15 05:05:03'), +(14,612,'2006-02-15 05:05:03'), +(14,688,'2006-02-15 05:05:03'), +(14,759,'2006-02-15 05:05:03'), +(14,764,'2006-02-15 05:05:03'), +(14,847,'2006-02-15 05:05:03'), +(14,856,'2006-02-15 05:05:03'), +(14,890,'2006-02-15 05:05:03'), +(14,908,'2006-02-15 05:05:03'), +(14,919,'2006-02-15 05:05:03'), +(14,948,'2006-02-15 05:05:03'), +(14,970,'2006-02-15 05:05:03'), +(15,31,'2006-02-15 05:05:03'), +(15,89,'2006-02-15 05:05:03'), +(15,91,'2006-02-15 05:05:03'), +(15,108,'2006-02-15 05:05:03'), +(15,125,'2006-02-15 05:05:03'), +(15,236,'2006-02-15 05:05:03'), +(15,275,'2006-02-15 05:05:03'), +(15,280,'2006-02-15 05:05:03'), +(15,326,'2006-02-15 05:05:03'), +(15,342,'2006-02-15 05:05:03'), +(15,414,'2006-02-15 05:05:03'), +(15,445,'2006-02-15 05:05:03'), +(15,500,'2006-02-15 05:05:03'), +(15,502,'2006-02-15 05:05:03'), +(15,541,'2006-02-15 05:05:03'), +(15,553,'2006-02-15 05:05:03'), +(15,594,'2006-02-15 05:05:03'), +(15,626,'2006-02-15 05:05:03'), +(15,635,'2006-02-15 05:05:03'), +(15,745,'2006-02-15 05:05:03'), +(15,783,'2006-02-15 05:05:03'), +(15,795,'2006-02-15 05:05:03'), +(15,817,'2006-02-15 05:05:03'), +(15,886,'2006-02-15 05:05:03'), +(15,924,'2006-02-15 05:05:03'), +(15,949,'2006-02-15 05:05:03'), +(15,968,'2006-02-15 05:05:03'), +(15,985,'2006-02-15 05:05:03'), +(16,80,'2006-02-15 05:05:03'), +(16,87,'2006-02-15 05:05:03'), +(16,101,'2006-02-15 05:05:03'), +(16,121,'2006-02-15 05:05:03'), +(16,155,'2006-02-15 05:05:03'), +(16,177,'2006-02-15 05:05:03'), +(16,218,'2006-02-15 05:05:03'), +(16,221,'2006-02-15 05:05:03'), +(16,267,'2006-02-15 05:05:03'), +(16,269,'2006-02-15 05:05:03'), +(16,271,'2006-02-15 05:05:03'), +(16,280,'2006-02-15 05:05:03'), +(16,287,'2006-02-15 05:05:03'), +(16,345,'2006-02-15 05:05:03'), +(16,438,'2006-02-15 05:05:03'), +(16,453,'2006-02-15 05:05:03'), +(16,455,'2006-02-15 05:05:03'), +(16,456,'2006-02-15 05:05:03'), +(16,503,'2006-02-15 05:05:03'), +(16,548,'2006-02-15 05:05:03'), +(16,582,'2006-02-15 05:05:03'), +(16,583,'2006-02-15 05:05:03'), +(16,717,'2006-02-15 05:05:03'), +(16,758,'2006-02-15 05:05:03'), +(16,779,'2006-02-15 05:05:03'), +(16,886,'2006-02-15 05:05:03'), +(16,967,'2006-02-15 05:05:03'), +(17,96,'2006-02-15 05:05:03'), +(17,119,'2006-02-15 05:05:03'), +(17,124,'2006-02-15 05:05:03'), +(17,127,'2006-02-15 05:05:03'), +(17,154,'2006-02-15 05:05:03'), +(17,199,'2006-02-15 05:05:03'), +(17,201,'2006-02-15 05:05:03'), +(17,236,'2006-02-15 05:05:03'), +(17,280,'2006-02-15 05:05:03'), +(17,310,'2006-02-15 05:05:03'), +(17,313,'2006-02-15 05:05:03'), +(17,378,'2006-02-15 05:05:03'), +(17,457,'2006-02-15 05:05:03'), +(17,469,'2006-02-15 05:05:03'), +(17,478,'2006-02-15 05:05:03'), +(17,500,'2006-02-15 05:05:03'), +(17,515,'2006-02-15 05:05:03'), +(17,521,'2006-02-15 05:05:03'), +(17,573,'2006-02-15 05:05:03'), +(17,603,'2006-02-15 05:05:03'), +(17,606,'2006-02-15 05:05:03'), +(17,734,'2006-02-15 05:05:03'), +(17,770,'2006-02-15 05:05:03'), +(17,794,'2006-02-15 05:05:03'), +(17,800,'2006-02-15 05:05:03'), +(17,853,'2006-02-15 05:05:03'), +(17,873,'2006-02-15 05:05:03'), +(17,874,'2006-02-15 05:05:03'), +(17,880,'2006-02-15 05:05:03'), +(17,948,'2006-02-15 05:05:03'), +(17,957,'2006-02-15 05:05:03'), +(17,959,'2006-02-15 05:05:03'), +(18,44,'2006-02-15 05:05:03'), +(18,84,'2006-02-15 05:05:03'), +(18,144,'2006-02-15 05:05:03'), +(18,172,'2006-02-15 05:05:03'), +(18,268,'2006-02-15 05:05:03'), +(18,279,'2006-02-15 05:05:03'), +(18,280,'2006-02-15 05:05:03'), +(18,321,'2006-02-15 05:05:03'), +(18,386,'2006-02-15 05:05:03'), +(18,460,'2006-02-15 05:05:03'), +(18,462,'2006-02-15 05:05:03'), +(18,484,'2006-02-15 05:05:03'), +(18,536,'2006-02-15 05:05:03'), +(18,561,'2006-02-15 05:05:03'), +(18,612,'2006-02-15 05:05:03'), +(18,717,'2006-02-15 05:05:03'), +(18,808,'2006-02-15 05:05:03'), +(18,842,'2006-02-15 05:05:03'), +(18,863,'2006-02-15 05:05:03'), +(18,883,'2006-02-15 05:05:03'), +(18,917,'2006-02-15 05:05:03'), +(18,944,'2006-02-15 05:05:03'), +(19,2,'2006-02-15 05:05:03'), +(19,3,'2006-02-15 05:05:03'), +(19,144,'2006-02-15 05:05:03'), +(19,152,'2006-02-15 05:05:03'), +(19,182,'2006-02-15 05:05:03'), +(19,208,'2006-02-15 05:05:03'), +(19,212,'2006-02-15 05:05:03'), +(19,217,'2006-02-15 05:05:03'), +(19,266,'2006-02-15 05:05:03'), +(19,404,'2006-02-15 05:05:03'), +(19,428,'2006-02-15 05:05:03'), +(19,473,'2006-02-15 05:05:03'), +(19,490,'2006-02-15 05:05:03'), +(19,510,'2006-02-15 05:05:03'), +(19,513,'2006-02-15 05:05:03'), +(19,644,'2006-02-15 05:05:03'), +(19,670,'2006-02-15 05:05:03'), +(19,673,'2006-02-15 05:05:03'), +(19,711,'2006-02-15 05:05:03'), +(19,750,'2006-02-15 05:05:03'), +(19,752,'2006-02-15 05:05:03'), +(19,756,'2006-02-15 05:05:03'), +(19,771,'2006-02-15 05:05:03'), +(19,785,'2006-02-15 05:05:03'), +(19,877,'2006-02-15 05:05:03'), +(20,1,'2006-02-15 05:05:03'), +(20,54,'2006-02-15 05:05:03'), +(20,63,'2006-02-15 05:05:03'), +(20,140,'2006-02-15 05:05:03'), +(20,146,'2006-02-15 05:05:03'), +(20,165,'2006-02-15 05:05:03'), +(20,231,'2006-02-15 05:05:03'), +(20,243,'2006-02-15 05:05:03'), +(20,269,'2006-02-15 05:05:03'), +(20,274,'2006-02-15 05:05:03'), +(20,348,'2006-02-15 05:05:03'), +(20,366,'2006-02-15 05:05:03'), +(20,445,'2006-02-15 05:05:03'), +(20,478,'2006-02-15 05:05:03'), +(20,492,'2006-02-15 05:05:03'), +(20,499,'2006-02-15 05:05:03'), +(20,527,'2006-02-15 05:05:03'), +(20,531,'2006-02-15 05:05:03'), +(20,538,'2006-02-15 05:05:03'), +(20,589,'2006-02-15 05:05:03'), +(20,643,'2006-02-15 05:05:03'), +(20,652,'2006-02-15 05:05:03'), +(20,663,'2006-02-15 05:05:03'), +(20,714,'2006-02-15 05:05:03'), +(20,717,'2006-02-15 05:05:03'), +(20,757,'2006-02-15 05:05:03'), +(20,784,'2006-02-15 05:05:03'), +(20,863,'2006-02-15 05:05:03'), +(20,962,'2006-02-15 05:05:03'), +(20,977,'2006-02-15 05:05:03'), +(21,6,'2006-02-15 05:05:03'), +(21,87,'2006-02-15 05:05:03'), +(21,88,'2006-02-15 05:05:03'), +(21,142,'2006-02-15 05:05:03'), +(21,159,'2006-02-15 05:05:03'), +(21,179,'2006-02-15 05:05:03'), +(21,253,'2006-02-15 05:05:03'), +(21,281,'2006-02-15 05:05:03'), +(21,321,'2006-02-15 05:05:03'), +(21,398,'2006-02-15 05:05:03'), +(21,426,'2006-02-15 05:05:03'), +(21,429,'2006-02-15 05:05:03'), +(21,497,'2006-02-15 05:05:03'), +(21,507,'2006-02-15 05:05:03'), +(21,530,'2006-02-15 05:05:03'), +(21,680,'2006-02-15 05:05:03'), +(21,686,'2006-02-15 05:05:03'), +(21,700,'2006-02-15 05:05:03'), +(21,702,'2006-02-15 05:05:03'), +(21,733,'2006-02-15 05:05:03'), +(21,734,'2006-02-15 05:05:03'), +(21,798,'2006-02-15 05:05:03'), +(21,804,'2006-02-15 05:05:03'), +(21,887,'2006-02-15 05:05:03'), +(21,893,'2006-02-15 05:05:03'), +(21,920,'2006-02-15 05:05:03'), +(21,983,'2006-02-15 05:05:03'), +(22,9,'2006-02-15 05:05:03'), +(22,23,'2006-02-15 05:05:03'), +(22,56,'2006-02-15 05:05:03'), +(22,89,'2006-02-15 05:05:03'), +(22,111,'2006-02-15 05:05:03'), +(22,146,'2006-02-15 05:05:03'), +(22,291,'2006-02-15 05:05:03'), +(22,294,'2006-02-15 05:05:03'), +(22,349,'2006-02-15 05:05:03'), +(22,369,'2006-02-15 05:05:03'), +(22,418,'2006-02-15 05:05:03'), +(22,430,'2006-02-15 05:05:03'), +(22,483,'2006-02-15 05:05:03'), +(22,491,'2006-02-15 05:05:03'), +(22,495,'2006-02-15 05:05:03'), +(22,536,'2006-02-15 05:05:03'), +(22,600,'2006-02-15 05:05:03'), +(22,634,'2006-02-15 05:05:03'), +(22,648,'2006-02-15 05:05:03'), +(22,688,'2006-02-15 05:05:03'), +(22,731,'2006-02-15 05:05:03'), +(22,742,'2006-02-15 05:05:03'), +(22,775,'2006-02-15 05:05:03'), +(22,802,'2006-02-15 05:05:03'), +(22,912,'2006-02-15 05:05:03'), +(22,964,'2006-02-15 05:05:03'), +(23,6,'2006-02-15 05:05:03'), +(23,42,'2006-02-15 05:05:03'), +(23,78,'2006-02-15 05:05:03'), +(23,105,'2006-02-15 05:05:03'), +(23,116,'2006-02-15 05:05:03'), +(23,117,'2006-02-15 05:05:03'), +(23,125,'2006-02-15 05:05:03'), +(23,212,'2006-02-15 05:05:03'), +(23,226,'2006-02-15 05:05:03'), +(23,235,'2006-02-15 05:05:03'), +(23,254,'2006-02-15 05:05:03'), +(23,367,'2006-02-15 05:05:03'), +(23,370,'2006-02-15 05:05:03'), +(23,414,'2006-02-15 05:05:03'), +(23,419,'2006-02-15 05:05:03'), +(23,435,'2006-02-15 05:05:03'), +(23,449,'2006-02-15 05:05:03'), +(23,491,'2006-02-15 05:05:03'), +(23,536,'2006-02-15 05:05:03'), +(23,549,'2006-02-15 05:05:03'), +(23,636,'2006-02-15 05:05:03'), +(23,649,'2006-02-15 05:05:03'), +(23,673,'2006-02-15 05:05:03'), +(23,691,'2006-02-15 05:05:03'), +(23,766,'2006-02-15 05:05:03'), +(23,782,'2006-02-15 05:05:03'), +(23,804,'2006-02-15 05:05:03'), +(23,820,'2006-02-15 05:05:03'), +(23,826,'2006-02-15 05:05:03'), +(23,833,'2006-02-15 05:05:03'), +(23,842,'2006-02-15 05:05:03'), +(23,853,'2006-02-15 05:05:03'), +(23,855,'2006-02-15 05:05:03'), +(23,856,'2006-02-15 05:05:03'), +(23,935,'2006-02-15 05:05:03'), +(23,981,'2006-02-15 05:05:03'), +(23,997,'2006-02-15 05:05:03'), +(24,3,'2006-02-15 05:05:03'), +(24,83,'2006-02-15 05:05:03'), +(24,112,'2006-02-15 05:05:03'), +(24,126,'2006-02-15 05:05:03'), +(24,148,'2006-02-15 05:05:03'), +(24,164,'2006-02-15 05:05:03'), +(24,178,'2006-02-15 05:05:03'), +(24,194,'2006-02-15 05:05:03'), +(24,199,'2006-02-15 05:05:03'), +(24,242,'2006-02-15 05:05:03'), +(24,256,'2006-02-15 05:05:03'), +(24,277,'2006-02-15 05:05:03'), +(24,335,'2006-02-15 05:05:03'), +(24,405,'2006-02-15 05:05:03'), +(24,463,'2006-02-15 05:05:03'), +(24,515,'2006-02-15 05:05:03'), +(24,585,'2006-02-15 05:05:03'), +(24,603,'2006-02-15 05:05:03'), +(24,653,'2006-02-15 05:05:03'), +(24,704,'2006-02-15 05:05:03'), +(24,781,'2006-02-15 05:05:03'), +(24,829,'2006-02-15 05:05:03'), +(24,832,'2006-02-15 05:05:03'), +(24,969,'2006-02-15 05:05:03'), +(25,21,'2006-02-15 05:05:03'), +(25,86,'2006-02-15 05:05:03'), +(25,153,'2006-02-15 05:05:03'), +(25,179,'2006-02-15 05:05:03'), +(25,204,'2006-02-15 05:05:03'), +(25,213,'2006-02-15 05:05:03'), +(25,226,'2006-02-15 05:05:03'), +(25,245,'2006-02-15 05:05:03'), +(25,311,'2006-02-15 05:05:03'), +(25,404,'2006-02-15 05:05:03'), +(25,411,'2006-02-15 05:05:03'), +(25,420,'2006-02-15 05:05:03'), +(25,538,'2006-02-15 05:05:03'), +(25,564,'2006-02-15 05:05:03'), +(25,583,'2006-02-15 05:05:03'), +(25,606,'2006-02-15 05:05:03'), +(25,688,'2006-02-15 05:05:03'), +(25,697,'2006-02-15 05:05:03'), +(25,755,'2006-02-15 05:05:03'), +(25,871,'2006-02-15 05:05:03'), +(25,914,'2006-02-15 05:05:03'), +(26,9,'2006-02-15 05:05:03'), +(26,21,'2006-02-15 05:05:03'), +(26,34,'2006-02-15 05:05:03'), +(26,90,'2006-02-15 05:05:03'), +(26,93,'2006-02-15 05:05:03'), +(26,103,'2006-02-15 05:05:03'), +(26,147,'2006-02-15 05:05:03'), +(26,186,'2006-02-15 05:05:03'), +(26,201,'2006-02-15 05:05:03'), +(26,225,'2006-02-15 05:05:03'), +(26,241,'2006-02-15 05:05:03'), +(26,327,'2006-02-15 05:05:03'), +(26,329,'2006-02-15 05:05:03'), +(26,340,'2006-02-15 05:05:03'), +(26,345,'2006-02-15 05:05:03'), +(26,390,'2006-02-15 05:05:03'), +(26,392,'2006-02-15 05:05:03'), +(26,529,'2006-02-15 05:05:03'), +(26,544,'2006-02-15 05:05:03'), +(26,564,'2006-02-15 05:05:03'), +(26,635,'2006-02-15 05:05:03'), +(26,644,'2006-02-15 05:05:03'), +(26,682,'2006-02-15 05:05:03'), +(26,688,'2006-02-15 05:05:03'), +(26,715,'2006-02-15 05:05:03'), +(26,732,'2006-02-15 05:05:03'), +(26,758,'2006-02-15 05:05:03'), +(26,764,'2006-02-15 05:05:03'), +(26,795,'2006-02-15 05:05:03'), +(26,821,'2006-02-15 05:05:03'), +(26,885,'2006-02-15 05:05:03'), +(26,904,'2006-02-15 05:05:03'), +(26,906,'2006-02-15 05:05:03'), +(27,19,'2006-02-15 05:05:03'), +(27,34,'2006-02-15 05:05:03'), +(27,85,'2006-02-15 05:05:03'), +(27,150,'2006-02-15 05:05:03'), +(27,172,'2006-02-15 05:05:03'), +(27,273,'2006-02-15 05:05:03'), +(27,334,'2006-02-15 05:05:03'), +(27,347,'2006-02-15 05:05:03'), +(27,359,'2006-02-15 05:05:03'), +(27,398,'2006-02-15 05:05:03'), +(27,415,'2006-02-15 05:05:03'), +(27,462,'2006-02-15 05:05:03'), +(27,477,'2006-02-15 05:05:03'), +(27,500,'2006-02-15 05:05:03'), +(27,503,'2006-02-15 05:05:03'), +(27,540,'2006-02-15 05:05:03'), +(27,586,'2006-02-15 05:05:03'), +(27,593,'2006-02-15 05:05:03'), +(27,637,'2006-02-15 05:05:03'), +(27,679,'2006-02-15 05:05:03'), +(27,682,'2006-02-15 05:05:03'), +(27,695,'2006-02-15 05:05:03'), +(27,771,'2006-02-15 05:05:03'), +(27,805,'2006-02-15 05:05:03'), +(27,830,'2006-02-15 05:05:03'), +(27,854,'2006-02-15 05:05:03'), +(27,873,'2006-02-15 05:05:03'), +(27,880,'2006-02-15 05:05:03'), +(27,889,'2006-02-15 05:05:03'), +(27,904,'2006-02-15 05:05:03'), +(27,967,'2006-02-15 05:05:03'), +(27,986,'2006-02-15 05:05:03'), +(27,996,'2006-02-15 05:05:03'), +(28,14,'2006-02-15 05:05:03'), +(28,43,'2006-02-15 05:05:03'), +(28,58,'2006-02-15 05:05:03'), +(28,74,'2006-02-15 05:05:03'), +(28,96,'2006-02-15 05:05:03'), +(28,107,'2006-02-15 05:05:03'), +(28,259,'2006-02-15 05:05:03'), +(28,263,'2006-02-15 05:05:03'), +(28,287,'2006-02-15 05:05:03'), +(28,358,'2006-02-15 05:05:03'), +(28,502,'2006-02-15 05:05:03'), +(28,508,'2006-02-15 05:05:03'), +(28,532,'2006-02-15 05:05:03'), +(28,551,'2006-02-15 05:05:03'), +(28,574,'2006-02-15 05:05:03'), +(28,597,'2006-02-15 05:05:03'), +(28,619,'2006-02-15 05:05:03'), +(28,625,'2006-02-15 05:05:03'), +(28,652,'2006-02-15 05:05:03'), +(28,679,'2006-02-15 05:05:03'), +(28,743,'2006-02-15 05:05:03'), +(28,790,'2006-02-15 05:05:03'), +(28,793,'2006-02-15 05:05:03'), +(28,816,'2006-02-15 05:05:03'), +(28,827,'2006-02-15 05:05:03'), +(28,835,'2006-02-15 05:05:03'), +(28,879,'2006-02-15 05:05:03'), +(28,908,'2006-02-15 05:05:03'), +(28,953,'2006-02-15 05:05:03'), +(28,973,'2006-02-15 05:05:03'), +(28,994,'2006-02-15 05:05:03'), +(29,10,'2006-02-15 05:05:03'), +(29,79,'2006-02-15 05:05:03'), +(29,105,'2006-02-15 05:05:03'), +(29,110,'2006-02-15 05:05:03'), +(29,131,'2006-02-15 05:05:03'), +(29,133,'2006-02-15 05:05:03'), +(29,172,'2006-02-15 05:05:03'), +(29,226,'2006-02-15 05:05:03'), +(29,273,'2006-02-15 05:05:03'), +(29,282,'2006-02-15 05:05:03'), +(29,296,'2006-02-15 05:05:03'), +(29,311,'2006-02-15 05:05:03'), +(29,335,'2006-02-15 05:05:03'), +(29,342,'2006-02-15 05:05:03'), +(29,436,'2006-02-15 05:05:03'), +(29,444,'2006-02-15 05:05:03'), +(29,449,'2006-02-15 05:05:03'), +(29,462,'2006-02-15 05:05:03'), +(29,482,'2006-02-15 05:05:03'), +(29,488,'2006-02-15 05:05:03'), +(29,519,'2006-02-15 05:05:03'), +(29,547,'2006-02-15 05:05:03'), +(29,590,'2006-02-15 05:05:03'), +(29,646,'2006-02-15 05:05:03'), +(29,723,'2006-02-15 05:05:03'), +(29,812,'2006-02-15 05:05:03'), +(29,862,'2006-02-15 05:05:03'), +(29,928,'2006-02-15 05:05:03'), +(29,944,'2006-02-15 05:05:03'), +(30,1,'2006-02-15 05:05:03'), +(30,53,'2006-02-15 05:05:03'), +(30,64,'2006-02-15 05:05:03'), +(30,69,'2006-02-15 05:05:03'), +(30,77,'2006-02-15 05:05:03'), +(30,87,'2006-02-15 05:05:03'), +(30,260,'2006-02-15 05:05:03'), +(30,262,'2006-02-15 05:05:03'), +(30,286,'2006-02-15 05:05:03'), +(30,292,'2006-02-15 05:05:03'), +(30,301,'2006-02-15 05:05:03'), +(30,318,'2006-02-15 05:05:03'), +(30,321,'2006-02-15 05:05:03'), +(30,357,'2006-02-15 05:05:03'), +(30,565,'2006-02-15 05:05:03'), +(30,732,'2006-02-15 05:05:03'), +(30,797,'2006-02-15 05:05:03'), +(30,838,'2006-02-15 05:05:03'), +(30,945,'2006-02-15 05:05:03'), +(31,88,'2006-02-15 05:05:03'), +(31,146,'2006-02-15 05:05:03'), +(31,163,'2006-02-15 05:05:03'), +(31,164,'2006-02-15 05:05:03'), +(31,188,'2006-02-15 05:05:03'), +(31,299,'2006-02-15 05:05:03'), +(31,308,'2006-02-15 05:05:03'), +(31,368,'2006-02-15 05:05:03'), +(31,380,'2006-02-15 05:05:03'), +(31,431,'2006-02-15 05:05:03'), +(31,585,'2006-02-15 05:05:03'), +(31,637,'2006-02-15 05:05:03'), +(31,700,'2006-02-15 05:05:03'), +(31,739,'2006-02-15 05:05:03'), +(31,793,'2006-02-15 05:05:03'), +(31,802,'2006-02-15 05:05:03'), +(31,880,'2006-02-15 05:05:03'), +(31,978,'2006-02-15 05:05:03'), +(32,65,'2006-02-15 05:05:03'), +(32,84,'2006-02-15 05:05:03'), +(32,103,'2006-02-15 05:05:03'), +(32,112,'2006-02-15 05:05:03'), +(32,136,'2006-02-15 05:05:03'), +(32,197,'2006-02-15 05:05:03'), +(32,199,'2006-02-15 05:05:03'), +(32,219,'2006-02-15 05:05:03'), +(32,309,'2006-02-15 05:05:03'), +(32,312,'2006-02-15 05:05:03'), +(32,401,'2006-02-15 05:05:03'), +(32,427,'2006-02-15 05:05:03'), +(32,431,'2006-02-15 05:05:03'), +(32,523,'2006-02-15 05:05:03'), +(32,567,'2006-02-15 05:05:03'), +(32,585,'2006-02-15 05:05:03'), +(32,606,'2006-02-15 05:05:03'), +(32,651,'2006-02-15 05:05:03'), +(32,667,'2006-02-15 05:05:03'), +(32,669,'2006-02-15 05:05:03'), +(32,815,'2006-02-15 05:05:03'), +(32,928,'2006-02-15 05:05:03'), +(32,980,'2006-02-15 05:05:03'), +(33,56,'2006-02-15 05:05:03'), +(33,112,'2006-02-15 05:05:03'), +(33,135,'2006-02-15 05:05:03'), +(33,154,'2006-02-15 05:05:03'), +(33,214,'2006-02-15 05:05:03'), +(33,252,'2006-02-15 05:05:03'), +(33,305,'2006-02-15 05:05:03'), +(33,306,'2006-02-15 05:05:03'), +(33,473,'2006-02-15 05:05:03'), +(33,489,'2006-02-15 05:05:03'), +(33,574,'2006-02-15 05:05:03'), +(33,618,'2006-02-15 05:05:03'), +(33,667,'2006-02-15 05:05:03'), +(33,694,'2006-02-15 05:05:03'), +(33,712,'2006-02-15 05:05:03'), +(33,735,'2006-02-15 05:05:03'), +(33,737,'2006-02-15 05:05:03'), +(33,754,'2006-02-15 05:05:03'), +(33,775,'2006-02-15 05:05:03'), +(33,878,'2006-02-15 05:05:03'), +(33,881,'2006-02-15 05:05:03'), +(33,965,'2006-02-15 05:05:03'), +(33,972,'2006-02-15 05:05:03'), +(33,993,'2006-02-15 05:05:03'), +(34,43,'2006-02-15 05:05:03'), +(34,90,'2006-02-15 05:05:03'), +(34,119,'2006-02-15 05:05:03'), +(34,125,'2006-02-15 05:05:03'), +(34,172,'2006-02-15 05:05:03'), +(34,182,'2006-02-15 05:05:03'), +(34,244,'2006-02-15 05:05:03'), +(34,336,'2006-02-15 05:05:03'), +(34,389,'2006-02-15 05:05:03'), +(34,393,'2006-02-15 05:05:03'), +(34,438,'2006-02-15 05:05:03'), +(34,493,'2006-02-15 05:05:03'), +(34,502,'2006-02-15 05:05:03'), +(34,525,'2006-02-15 05:05:03'), +(34,668,'2006-02-15 05:05:03'), +(34,720,'2006-02-15 05:05:03'), +(34,779,'2006-02-15 05:05:03'), +(34,788,'2006-02-15 05:05:03'), +(34,794,'2006-02-15 05:05:03'), +(34,836,'2006-02-15 05:05:03'), +(34,846,'2006-02-15 05:05:03'), +(34,853,'2006-02-15 05:05:03'), +(34,929,'2006-02-15 05:05:03'), +(34,950,'2006-02-15 05:05:03'), +(34,971,'2006-02-15 05:05:03'), +(35,10,'2006-02-15 05:05:03'), +(35,35,'2006-02-15 05:05:03'), +(35,52,'2006-02-15 05:05:03'), +(35,201,'2006-02-15 05:05:03'), +(35,256,'2006-02-15 05:05:03'), +(35,389,'2006-02-15 05:05:03'), +(35,589,'2006-02-15 05:05:03'), +(35,612,'2006-02-15 05:05:03'), +(35,615,'2006-02-15 05:05:03'), +(35,707,'2006-02-15 05:05:03'), +(35,732,'2006-02-15 05:05:03'), +(35,738,'2006-02-15 05:05:03'), +(35,748,'2006-02-15 05:05:03'), +(35,817,'2006-02-15 05:05:03'), +(35,914,'2006-02-15 05:05:03'), +(36,15,'2006-02-15 05:05:03'), +(36,81,'2006-02-15 05:05:03'), +(36,171,'2006-02-15 05:05:03'), +(36,231,'2006-02-15 05:05:03'), +(36,245,'2006-02-15 05:05:03'), +(36,283,'2006-02-15 05:05:03'), +(36,380,'2006-02-15 05:05:03'), +(36,381,'2006-02-15 05:05:03'), +(36,387,'2006-02-15 05:05:03'), +(36,390,'2006-02-15 05:05:03'), +(36,410,'2006-02-15 05:05:03'), +(36,426,'2006-02-15 05:05:03'), +(36,427,'2006-02-15 05:05:03'), +(36,453,'2006-02-15 05:05:03'), +(36,466,'2006-02-15 05:05:03'), +(36,484,'2006-02-15 05:05:03'), +(36,493,'2006-02-15 05:05:03'), +(36,499,'2006-02-15 05:05:03'), +(36,569,'2006-02-15 05:05:03'), +(36,590,'2006-02-15 05:05:03'), +(36,600,'2006-02-15 05:05:03'), +(36,714,'2006-02-15 05:05:03'), +(36,715,'2006-02-15 05:05:03'), +(36,716,'2006-02-15 05:05:03'), +(36,731,'2006-02-15 05:05:03'), +(36,875,'2006-02-15 05:05:03'), +(36,915,'2006-02-15 05:05:03'), +(36,931,'2006-02-15 05:05:03'), +(36,956,'2006-02-15 05:05:03'), +(37,10,'2006-02-15 05:05:03'), +(37,12,'2006-02-15 05:05:03'), +(37,19,'2006-02-15 05:05:03'), +(37,118,'2006-02-15 05:05:03'), +(37,119,'2006-02-15 05:05:03'), +(37,122,'2006-02-15 05:05:03'), +(37,146,'2006-02-15 05:05:03'), +(37,204,'2006-02-15 05:05:03'), +(37,253,'2006-02-15 05:05:03'), +(37,260,'2006-02-15 05:05:03'), +(37,277,'2006-02-15 05:05:03'), +(37,317,'2006-02-15 05:05:03'), +(37,467,'2006-02-15 05:05:03'), +(37,477,'2006-02-15 05:05:03'), +(37,485,'2006-02-15 05:05:03'), +(37,508,'2006-02-15 05:05:03'), +(37,529,'2006-02-15 05:05:03'), +(37,553,'2006-02-15 05:05:03'), +(37,555,'2006-02-15 05:05:03'), +(37,572,'2006-02-15 05:05:03'), +(37,588,'2006-02-15 05:05:03'), +(37,662,'2006-02-15 05:05:03'), +(37,663,'2006-02-15 05:05:03'), +(37,694,'2006-02-15 05:05:03'), +(37,697,'2006-02-15 05:05:03'), +(37,785,'2006-02-15 05:05:03'), +(37,839,'2006-02-15 05:05:03'), +(37,840,'2006-02-15 05:05:03'), +(37,853,'2006-02-15 05:05:03'), +(37,900,'2006-02-15 05:05:03'), +(37,925,'2006-02-15 05:05:03'), +(37,963,'2006-02-15 05:05:03'), +(37,966,'2006-02-15 05:05:03'), +(37,989,'2006-02-15 05:05:03'), +(37,997,'2006-02-15 05:05:03'), +(38,24,'2006-02-15 05:05:03'), +(38,111,'2006-02-15 05:05:03'), +(38,160,'2006-02-15 05:05:03'), +(38,176,'2006-02-15 05:05:03'), +(38,223,'2006-02-15 05:05:03'), +(38,241,'2006-02-15 05:05:03'), +(38,274,'2006-02-15 05:05:03'), +(38,335,'2006-02-15 05:05:03'), +(38,338,'2006-02-15 05:05:03'), +(38,353,'2006-02-15 05:05:03'), +(38,448,'2006-02-15 05:05:03'), +(38,450,'2006-02-15 05:05:03'), +(38,458,'2006-02-15 05:05:03'), +(38,501,'2006-02-15 05:05:03'), +(38,516,'2006-02-15 05:05:03'), +(38,547,'2006-02-15 05:05:03'), +(38,583,'2006-02-15 05:05:03'), +(38,618,'2006-02-15 05:05:03'), +(38,619,'2006-02-15 05:05:03'), +(38,705,'2006-02-15 05:05:03'), +(38,793,'2006-02-15 05:05:03'), +(38,827,'2006-02-15 05:05:03'), +(38,839,'2006-02-15 05:05:03'), +(38,853,'2006-02-15 05:05:03'), +(38,876,'2006-02-15 05:05:03'), +(39,71,'2006-02-15 05:05:03'), +(39,73,'2006-02-15 05:05:03'), +(39,168,'2006-02-15 05:05:03'), +(39,203,'2006-02-15 05:05:03'), +(39,222,'2006-02-15 05:05:03'), +(39,290,'2006-02-15 05:05:03'), +(39,293,'2006-02-15 05:05:03'), +(39,320,'2006-02-15 05:05:03'), +(39,415,'2006-02-15 05:05:03'), +(39,425,'2006-02-15 05:05:03'), +(39,431,'2006-02-15 05:05:03'), +(39,456,'2006-02-15 05:05:03'), +(39,476,'2006-02-15 05:05:03'), +(39,559,'2006-02-15 05:05:03'), +(39,587,'2006-02-15 05:05:03'), +(39,598,'2006-02-15 05:05:03'), +(39,606,'2006-02-15 05:05:03'), +(39,648,'2006-02-15 05:05:03'), +(39,683,'2006-02-15 05:05:03'), +(39,689,'2006-02-15 05:05:03'), +(39,696,'2006-02-15 05:05:03'), +(39,700,'2006-02-15 05:05:03'), +(39,703,'2006-02-15 05:05:03'), +(39,736,'2006-02-15 05:05:03'), +(39,772,'2006-02-15 05:05:03'), +(39,815,'2006-02-15 05:05:03'), +(39,831,'2006-02-15 05:05:03'), +(39,920,'2006-02-15 05:05:03'), +(40,1,'2006-02-15 05:05:03'), +(40,11,'2006-02-15 05:05:03'), +(40,34,'2006-02-15 05:05:03'), +(40,107,'2006-02-15 05:05:03'), +(40,128,'2006-02-15 05:05:03'), +(40,163,'2006-02-15 05:05:03'), +(40,177,'2006-02-15 05:05:03'), +(40,223,'2006-02-15 05:05:03'), +(40,233,'2006-02-15 05:05:03'), +(40,326,'2006-02-15 05:05:03'), +(40,374,'2006-02-15 05:05:03'), +(40,394,'2006-02-15 05:05:03'), +(40,396,'2006-02-15 05:05:03'), +(40,463,'2006-02-15 05:05:03'), +(40,466,'2006-02-15 05:05:03'), +(40,494,'2006-02-15 05:05:03'), +(40,521,'2006-02-15 05:05:03'), +(40,723,'2006-02-15 05:05:03'), +(40,737,'2006-02-15 05:05:03'), +(40,744,'2006-02-15 05:05:03'), +(40,747,'2006-02-15 05:05:03'), +(40,754,'2006-02-15 05:05:03'), +(40,799,'2006-02-15 05:05:03'), +(40,835,'2006-02-15 05:05:03'), +(40,868,'2006-02-15 05:05:03'), +(40,869,'2006-02-15 05:05:03'), +(40,887,'2006-02-15 05:05:03'), +(40,933,'2006-02-15 05:05:03'), +(40,938,'2006-02-15 05:05:03'), +(41,4,'2006-02-15 05:05:03'), +(41,60,'2006-02-15 05:05:03'), +(41,69,'2006-02-15 05:05:03'), +(41,86,'2006-02-15 05:05:03'), +(41,100,'2006-02-15 05:05:03'), +(41,150,'2006-02-15 05:05:03'), +(41,159,'2006-02-15 05:05:03'), +(41,194,'2006-02-15 05:05:03'), +(41,203,'2006-02-15 05:05:03'), +(41,212,'2006-02-15 05:05:03'), +(41,230,'2006-02-15 05:05:03'), +(41,249,'2006-02-15 05:05:03'), +(41,252,'2006-02-15 05:05:03'), +(41,305,'2006-02-15 05:05:03'), +(41,336,'2006-02-15 05:05:03'), +(41,383,'2006-02-15 05:05:03'), +(41,544,'2006-02-15 05:05:03'), +(41,596,'2006-02-15 05:05:03'), +(41,657,'2006-02-15 05:05:03'), +(41,674,'2006-02-15 05:05:03'), +(41,678,'2006-02-15 05:05:03'), +(41,721,'2006-02-15 05:05:03'), +(41,724,'2006-02-15 05:05:03'), +(41,779,'2006-02-15 05:05:03'), +(41,784,'2006-02-15 05:05:03'), +(41,799,'2006-02-15 05:05:03'), +(41,894,'2006-02-15 05:05:03'), +(41,912,'2006-02-15 05:05:03'), +(41,942,'2006-02-15 05:05:03'), +(42,24,'2006-02-15 05:05:03'), +(42,139,'2006-02-15 05:05:03'), +(42,309,'2006-02-15 05:05:03'), +(42,320,'2006-02-15 05:05:03'), +(42,333,'2006-02-15 05:05:03'), +(42,500,'2006-02-15 05:05:03'), +(42,502,'2006-02-15 05:05:03'), +(42,505,'2006-02-15 05:05:03'), +(42,527,'2006-02-15 05:05:03'), +(42,535,'2006-02-15 05:05:03'), +(42,546,'2006-02-15 05:05:03'), +(42,568,'2006-02-15 05:05:03'), +(42,648,'2006-02-15 05:05:03'), +(42,665,'2006-02-15 05:05:03'), +(42,673,'2006-02-15 05:05:03'), +(42,687,'2006-02-15 05:05:03'), +(42,713,'2006-02-15 05:05:03'), +(42,738,'2006-02-15 05:05:03'), +(42,798,'2006-02-15 05:05:03'), +(42,861,'2006-02-15 05:05:03'), +(42,865,'2006-02-15 05:05:03'), +(42,867,'2006-02-15 05:05:03'), +(42,876,'2006-02-15 05:05:03'), +(42,890,'2006-02-15 05:05:03'), +(42,907,'2006-02-15 05:05:03'), +(42,922,'2006-02-15 05:05:03'), +(42,932,'2006-02-15 05:05:03'), +(43,19,'2006-02-15 05:05:03'), +(43,42,'2006-02-15 05:05:03'), +(43,56,'2006-02-15 05:05:03'), +(43,89,'2006-02-15 05:05:03'), +(43,105,'2006-02-15 05:05:03'), +(43,147,'2006-02-15 05:05:03'), +(43,161,'2006-02-15 05:05:03'), +(43,180,'2006-02-15 05:05:03'), +(43,239,'2006-02-15 05:05:03'), +(43,276,'2006-02-15 05:05:03'), +(43,330,'2006-02-15 05:05:03'), +(43,344,'2006-02-15 05:05:03'), +(43,359,'2006-02-15 05:05:03'), +(43,377,'2006-02-15 05:05:03'), +(43,410,'2006-02-15 05:05:03'), +(43,462,'2006-02-15 05:05:03'), +(43,533,'2006-02-15 05:05:03'), +(43,598,'2006-02-15 05:05:03'), +(43,605,'2006-02-15 05:05:03'), +(43,608,'2006-02-15 05:05:03'), +(43,621,'2006-02-15 05:05:03'), +(43,753,'2006-02-15 05:05:03'), +(43,827,'2006-02-15 05:05:03'), +(43,833,'2006-02-15 05:05:03'), +(43,917,'2006-02-15 05:05:03'), +(43,958,'2006-02-15 05:05:03'), +(44,58,'2006-02-15 05:05:03'), +(44,84,'2006-02-15 05:05:03'), +(44,88,'2006-02-15 05:05:03'), +(44,94,'2006-02-15 05:05:03'), +(44,109,'2006-02-15 05:05:03'), +(44,176,'2006-02-15 05:05:03'), +(44,242,'2006-02-15 05:05:03'), +(44,273,'2006-02-15 05:05:03'), +(44,322,'2006-02-15 05:05:03'), +(44,420,'2006-02-15 05:05:03'), +(44,434,'2006-02-15 05:05:03'), +(44,490,'2006-02-15 05:05:03'), +(44,591,'2006-02-15 05:05:03'), +(44,598,'2006-02-15 05:05:03'), +(44,604,'2006-02-15 05:05:03'), +(44,699,'2006-02-15 05:05:03'), +(44,751,'2006-02-15 05:05:03'), +(44,784,'2006-02-15 05:05:03'), +(44,825,'2006-02-15 05:05:03'), +(44,854,'2006-02-15 05:05:03'), +(44,875,'2006-02-15 05:05:03'), +(44,878,'2006-02-15 05:05:03'), +(44,883,'2006-02-15 05:05:03'), +(44,896,'2006-02-15 05:05:03'), +(44,902,'2006-02-15 05:05:03'), +(44,937,'2006-02-15 05:05:03'), +(44,944,'2006-02-15 05:05:03'), +(44,952,'2006-02-15 05:05:03'), +(44,982,'2006-02-15 05:05:03'), +(44,998,'2006-02-15 05:05:03'), +(45,18,'2006-02-15 05:05:03'), +(45,65,'2006-02-15 05:05:03'), +(45,66,'2006-02-15 05:05:03'), +(45,115,'2006-02-15 05:05:03'), +(45,117,'2006-02-15 05:05:03'), +(45,164,'2006-02-15 05:05:03'), +(45,187,'2006-02-15 05:05:03'), +(45,198,'2006-02-15 05:05:03'), +(45,219,'2006-02-15 05:05:03'), +(45,330,'2006-02-15 05:05:03'), +(45,407,'2006-02-15 05:05:03'), +(45,416,'2006-02-15 05:05:03'), +(45,463,'2006-02-15 05:05:03'), +(45,467,'2006-02-15 05:05:03'), +(45,484,'2006-02-15 05:05:03'), +(45,502,'2006-02-15 05:05:03'), +(45,503,'2006-02-15 05:05:03'), +(45,508,'2006-02-15 05:05:03'), +(45,537,'2006-02-15 05:05:03'), +(45,680,'2006-02-15 05:05:03'), +(45,714,'2006-02-15 05:05:03'), +(45,767,'2006-02-15 05:05:03'), +(45,778,'2006-02-15 05:05:03'), +(45,797,'2006-02-15 05:05:03'), +(45,810,'2006-02-15 05:05:03'), +(45,895,'2006-02-15 05:05:03'), +(45,900,'2006-02-15 05:05:03'), +(45,901,'2006-02-15 05:05:03'), +(45,920,'2006-02-15 05:05:03'), +(45,925,'2006-02-15 05:05:03'), +(45,975,'2006-02-15 05:05:03'), +(45,978,'2006-02-15 05:05:03'), +(46,38,'2006-02-15 05:05:03'), +(46,51,'2006-02-15 05:05:03'), +(46,174,'2006-02-15 05:05:03'), +(46,254,'2006-02-15 05:05:03'), +(46,296,'2006-02-15 05:05:03'), +(46,319,'2006-02-15 05:05:03'), +(46,407,'2006-02-15 05:05:03'), +(46,448,'2006-02-15 05:05:03'), +(46,456,'2006-02-15 05:05:03'), +(46,463,'2006-02-15 05:05:03'), +(46,478,'2006-02-15 05:05:03'), +(46,538,'2006-02-15 05:05:03'), +(46,540,'2006-02-15 05:05:03'), +(46,567,'2006-02-15 05:05:03'), +(46,731,'2006-02-15 05:05:03'), +(46,766,'2006-02-15 05:05:03'), +(46,768,'2006-02-15 05:05:03'), +(46,820,'2006-02-15 05:05:03'), +(46,829,'2006-02-15 05:05:03'), +(46,830,'2006-02-15 05:05:03'), +(46,836,'2006-02-15 05:05:03'), +(46,889,'2006-02-15 05:05:03'), +(46,980,'2006-02-15 05:05:03'), +(46,991,'2006-02-15 05:05:03'), +(47,25,'2006-02-15 05:05:03'), +(47,36,'2006-02-15 05:05:03'), +(47,53,'2006-02-15 05:05:03'), +(47,67,'2006-02-15 05:05:03'), +(47,172,'2006-02-15 05:05:03'), +(47,233,'2006-02-15 05:05:03'), +(47,273,'2006-02-15 05:05:03'), +(47,351,'2006-02-15 05:05:03'), +(47,385,'2006-02-15 05:05:03'), +(47,484,'2006-02-15 05:05:03'), +(47,508,'2006-02-15 05:05:03'), +(47,576,'2006-02-15 05:05:03'), +(47,670,'2006-02-15 05:05:03'), +(47,734,'2006-02-15 05:05:03'), +(47,737,'2006-02-15 05:05:03'), +(47,770,'2006-02-15 05:05:03'), +(47,777,'2006-02-15 05:05:03'), +(47,787,'2006-02-15 05:05:03'), +(47,790,'2006-02-15 05:05:03'), +(47,913,'2006-02-15 05:05:03'), +(47,923,'2006-02-15 05:05:03'), +(47,924,'2006-02-15 05:05:03'), +(47,944,'2006-02-15 05:05:03'), +(47,973,'2006-02-15 05:05:03'), +(48,99,'2006-02-15 05:05:03'), +(48,101,'2006-02-15 05:05:03'), +(48,134,'2006-02-15 05:05:03'), +(48,150,'2006-02-15 05:05:03'), +(48,164,'2006-02-15 05:05:03'), +(48,211,'2006-02-15 05:05:03'), +(48,245,'2006-02-15 05:05:03'), +(48,267,'2006-02-15 05:05:03'), +(48,287,'2006-02-15 05:05:03'), +(48,295,'2006-02-15 05:05:03'), +(48,312,'2006-02-15 05:05:03'), +(48,315,'2006-02-15 05:05:03'), +(48,345,'2006-02-15 05:05:03'), +(48,349,'2006-02-15 05:05:03'), +(48,428,'2006-02-15 05:05:03'), +(48,506,'2006-02-15 05:05:03'), +(48,545,'2006-02-15 05:05:03'), +(48,559,'2006-02-15 05:05:03'), +(48,570,'2006-02-15 05:05:03'), +(48,599,'2006-02-15 05:05:03'), +(48,645,'2006-02-15 05:05:03'), +(48,705,'2006-02-15 05:05:03'), +(48,757,'2006-02-15 05:05:03'), +(48,792,'2006-02-15 05:05:03'), +(48,922,'2006-02-15 05:05:03'), +(48,926,'2006-02-15 05:05:03'), +(49,31,'2006-02-15 05:05:03'), +(49,151,'2006-02-15 05:05:03'), +(49,195,'2006-02-15 05:05:03'), +(49,207,'2006-02-15 05:05:03'), +(49,250,'2006-02-15 05:05:03'), +(49,282,'2006-02-15 05:05:03'), +(49,348,'2006-02-15 05:05:03'), +(49,391,'2006-02-15 05:05:03'), +(49,400,'2006-02-15 05:05:03'), +(49,407,'2006-02-15 05:05:03'), +(49,423,'2006-02-15 05:05:03'), +(49,433,'2006-02-15 05:05:03'), +(49,469,'2006-02-15 05:05:03'), +(49,506,'2006-02-15 05:05:03'), +(49,542,'2006-02-15 05:05:03'), +(49,558,'2006-02-15 05:05:03'), +(49,579,'2006-02-15 05:05:03'), +(49,595,'2006-02-15 05:05:03'), +(49,662,'2006-02-15 05:05:03'), +(49,709,'2006-02-15 05:05:03'), +(49,716,'2006-02-15 05:05:03'), +(49,725,'2006-02-15 05:05:03'), +(49,729,'2006-02-15 05:05:03'), +(49,811,'2006-02-15 05:05:03'), +(49,927,'2006-02-15 05:05:03'), +(49,977,'2006-02-15 05:05:03'), +(49,980,'2006-02-15 05:05:03'), +(50,111,'2006-02-15 05:05:03'), +(50,178,'2006-02-15 05:05:03'), +(50,243,'2006-02-15 05:05:03'), +(50,248,'2006-02-15 05:05:03'), +(50,274,'2006-02-15 05:05:03'), +(50,288,'2006-02-15 05:05:03'), +(50,303,'2006-02-15 05:05:03'), +(50,306,'2006-02-15 05:05:03'), +(50,327,'2006-02-15 05:05:03'), +(50,372,'2006-02-15 05:05:03'), +(50,401,'2006-02-15 05:05:03'), +(50,417,'2006-02-15 05:05:03'), +(50,420,'2006-02-15 05:05:03'), +(50,437,'2006-02-15 05:05:03'), +(50,476,'2006-02-15 05:05:03'), +(50,504,'2006-02-15 05:05:03'), +(50,520,'2006-02-15 05:05:03'), +(50,552,'2006-02-15 05:05:03'), +(50,591,'2006-02-15 05:05:03'), +(50,621,'2006-02-15 05:05:03'), +(50,632,'2006-02-15 05:05:03'), +(50,645,'2006-02-15 05:05:03'), +(50,672,'2006-02-15 05:05:03'), +(50,717,'2006-02-15 05:05:03'), +(50,732,'2006-02-15 05:05:03'), +(50,795,'2006-02-15 05:05:03'), +(50,829,'2006-02-15 05:05:03'), +(50,840,'2006-02-15 05:05:03'), +(50,897,'2006-02-15 05:05:03'), +(50,918,'2006-02-15 05:05:03'), +(50,924,'2006-02-15 05:05:03'), +(50,957,'2006-02-15 05:05:03'), +(51,5,'2006-02-15 05:05:03'), +(51,63,'2006-02-15 05:05:03'), +(51,103,'2006-02-15 05:05:03'), +(51,112,'2006-02-15 05:05:03'), +(51,121,'2006-02-15 05:05:03'), +(51,153,'2006-02-15 05:05:03'), +(51,395,'2006-02-15 05:05:03'), +(51,408,'2006-02-15 05:05:03'), +(51,420,'2006-02-15 05:05:03'), +(51,461,'2006-02-15 05:05:03'), +(51,490,'2006-02-15 05:05:03'), +(51,525,'2006-02-15 05:05:03'), +(51,627,'2006-02-15 05:05:03'), +(51,678,'2006-02-15 05:05:03'), +(51,733,'2006-02-15 05:05:03'), +(51,734,'2006-02-15 05:05:03'), +(51,737,'2006-02-15 05:05:03'), +(51,750,'2006-02-15 05:05:03'), +(51,847,'2006-02-15 05:05:03'), +(51,891,'2006-02-15 05:05:03'), +(51,895,'2006-02-15 05:05:03'), +(51,940,'2006-02-15 05:05:03'), +(51,974,'2006-02-15 05:05:03'), +(51,990,'2006-02-15 05:05:03'), +(51,993,'2006-02-15 05:05:03'), +(52,20,'2006-02-15 05:05:03'), +(52,92,'2006-02-15 05:05:03'), +(52,96,'2006-02-15 05:05:03'), +(52,108,'2006-02-15 05:05:03'), +(52,203,'2006-02-15 05:05:03'), +(52,249,'2006-02-15 05:05:03'), +(52,341,'2006-02-15 05:05:03'), +(52,376,'2006-02-15 05:05:03'), +(52,388,'2006-02-15 05:05:03'), +(52,407,'2006-02-15 05:05:03'), +(52,424,'2006-02-15 05:05:03'), +(52,474,'2006-02-15 05:05:03'), +(52,515,'2006-02-15 05:05:03'), +(52,517,'2006-02-15 05:05:03'), +(52,584,'2006-02-15 05:05:03'), +(52,596,'2006-02-15 05:05:03'), +(52,664,'2006-02-15 05:05:03'), +(52,675,'2006-02-15 05:05:03'), +(52,689,'2006-02-15 05:05:03'), +(52,714,'2006-02-15 05:05:03'), +(52,812,'2006-02-15 05:05:03'), +(52,878,'2006-02-15 05:05:03'), +(52,879,'2006-02-15 05:05:03'), +(52,915,'2006-02-15 05:05:03'), +(52,951,'2006-02-15 05:05:03'), +(52,999,'2006-02-15 05:05:03'), +(53,1,'2006-02-15 05:05:03'), +(53,9,'2006-02-15 05:05:03'), +(53,51,'2006-02-15 05:05:03'), +(53,58,'2006-02-15 05:05:03'), +(53,109,'2006-02-15 05:05:03'), +(53,122,'2006-02-15 05:05:03'), +(53,126,'2006-02-15 05:05:03'), +(53,181,'2006-02-15 05:05:03'), +(53,256,'2006-02-15 05:05:03'), +(53,268,'2006-02-15 05:05:03'), +(53,285,'2006-02-15 05:05:03'), +(53,307,'2006-02-15 05:05:03'), +(53,358,'2006-02-15 05:05:03'), +(53,386,'2006-02-15 05:05:03'), +(53,447,'2006-02-15 05:05:03'), +(53,465,'2006-02-15 05:05:03'), +(53,490,'2006-02-15 05:05:03'), +(53,492,'2006-02-15 05:05:03'), +(53,508,'2006-02-15 05:05:03'), +(53,518,'2006-02-15 05:05:03'), +(53,573,'2006-02-15 05:05:03'), +(53,576,'2006-02-15 05:05:03'), +(53,577,'2006-02-15 05:05:03'), +(53,697,'2006-02-15 05:05:03'), +(53,725,'2006-02-15 05:05:03'), +(53,727,'2006-02-15 05:05:03'), +(53,937,'2006-02-15 05:05:03'), +(53,947,'2006-02-15 05:05:03'), +(53,961,'2006-02-15 05:05:03'), +(53,980,'2006-02-15 05:05:03'), +(54,84,'2006-02-15 05:05:03'), +(54,129,'2006-02-15 05:05:03'), +(54,150,'2006-02-15 05:05:03'), +(54,184,'2006-02-15 05:05:03'), +(54,285,'2006-02-15 05:05:03'), +(54,292,'2006-02-15 05:05:03'), +(54,301,'2006-02-15 05:05:03'), +(54,348,'2006-02-15 05:05:03'), +(54,489,'2006-02-15 05:05:03'), +(54,510,'2006-02-15 05:05:03'), +(54,524,'2006-02-15 05:05:03'), +(54,546,'2006-02-15 05:05:03'), +(54,600,'2006-02-15 05:05:03'), +(54,636,'2006-02-15 05:05:03'), +(54,649,'2006-02-15 05:05:03'), +(54,658,'2006-02-15 05:05:03'), +(54,754,'2006-02-15 05:05:03'), +(54,764,'2006-02-15 05:05:03'), +(54,842,'2006-02-15 05:05:03'), +(54,858,'2006-02-15 05:05:03'), +(54,861,'2006-02-15 05:05:03'), +(54,913,'2006-02-15 05:05:03'), +(54,970,'2006-02-15 05:05:03'), +(54,988,'2006-02-15 05:05:03'), +(54,990,'2006-02-15 05:05:03'), +(55,8,'2006-02-15 05:05:03'), +(55,27,'2006-02-15 05:05:03'), +(55,75,'2006-02-15 05:05:03'), +(55,197,'2006-02-15 05:05:03'), +(55,307,'2006-02-15 05:05:03'), +(55,320,'2006-02-15 05:05:03'), +(55,340,'2006-02-15 05:05:03'), +(55,403,'2006-02-15 05:05:03'), +(55,485,'2006-02-15 05:05:03'), +(55,486,'2006-02-15 05:05:03'), +(55,603,'2006-02-15 05:05:03'), +(55,612,'2006-02-15 05:05:03'), +(55,620,'2006-02-15 05:05:03'), +(55,709,'2006-02-15 05:05:03'), +(55,776,'2006-02-15 05:05:03'), +(55,790,'2006-02-15 05:05:03'), +(55,815,'2006-02-15 05:05:03'), +(55,827,'2006-02-15 05:05:03'), +(55,930,'2006-02-15 05:05:03'), +(55,963,'2006-02-15 05:05:03'), +(56,63,'2006-02-15 05:05:03'), +(56,87,'2006-02-15 05:05:03'), +(56,226,'2006-02-15 05:05:03'), +(56,236,'2006-02-15 05:05:03'), +(56,298,'2006-02-15 05:05:03'), +(56,307,'2006-02-15 05:05:03'), +(56,354,'2006-02-15 05:05:03'), +(56,383,'2006-02-15 05:05:03'), +(56,417,'2006-02-15 05:05:03'), +(56,421,'2006-02-15 05:05:03'), +(56,457,'2006-02-15 05:05:03'), +(56,462,'2006-02-15 05:05:03'), +(56,474,'2006-02-15 05:05:03'), +(56,521,'2006-02-15 05:05:03'), +(56,593,'2006-02-15 05:05:03'), +(56,728,'2006-02-15 05:05:03'), +(56,750,'2006-02-15 05:05:03'), +(56,769,'2006-02-15 05:05:03'), +(56,781,'2006-02-15 05:05:03'), +(56,795,'2006-02-15 05:05:03'), +(56,844,'2006-02-15 05:05:03'), +(56,851,'2006-02-15 05:05:03'), +(56,862,'2006-02-15 05:05:03'), +(56,868,'2006-02-15 05:05:03'), +(56,892,'2006-02-15 05:05:03'), +(56,893,'2006-02-15 05:05:03'), +(56,936,'2006-02-15 05:05:03'), +(56,965,'2006-02-15 05:05:03'), +(57,16,'2006-02-15 05:05:03'), +(57,34,'2006-02-15 05:05:03'), +(57,101,'2006-02-15 05:05:03'), +(57,114,'2006-02-15 05:05:03'), +(57,122,'2006-02-15 05:05:03'), +(57,134,'2006-02-15 05:05:03'), +(57,144,'2006-02-15 05:05:03'), +(57,153,'2006-02-15 05:05:03'), +(57,192,'2006-02-15 05:05:03'), +(57,213,'2006-02-15 05:05:03'), +(57,258,'2006-02-15 05:05:03'), +(57,267,'2006-02-15 05:05:03'), +(57,317,'2006-02-15 05:05:03'), +(57,340,'2006-02-15 05:05:03'), +(57,393,'2006-02-15 05:05:03'), +(57,437,'2006-02-15 05:05:03'), +(57,447,'2006-02-15 05:05:03'), +(57,502,'2006-02-15 05:05:03'), +(57,592,'2006-02-15 05:05:03'), +(57,605,'2006-02-15 05:05:03'), +(57,637,'2006-02-15 05:05:03'), +(57,685,'2006-02-15 05:05:03'), +(57,707,'2006-02-15 05:05:03'), +(57,714,'2006-02-15 05:05:03'), +(57,717,'2006-02-15 05:05:03'), +(57,737,'2006-02-15 05:05:03'), +(57,767,'2006-02-15 05:05:03'), +(57,852,'2006-02-15 05:05:03'), +(57,891,'2006-02-15 05:05:03'), +(57,918,'2006-02-15 05:05:03'), +(58,48,'2006-02-15 05:05:03'), +(58,68,'2006-02-15 05:05:03'), +(58,119,'2006-02-15 05:05:03'), +(58,128,'2006-02-15 05:05:03'), +(58,135,'2006-02-15 05:05:03'), +(58,175,'2006-02-15 05:05:03'), +(58,199,'2006-02-15 05:05:03'), +(58,235,'2006-02-15 05:05:03'), +(58,242,'2006-02-15 05:05:03'), +(58,243,'2006-02-15 05:05:03'), +(58,254,'2006-02-15 05:05:03'), +(58,306,'2006-02-15 05:05:03'), +(58,316,'2006-02-15 05:05:03'), +(58,417,'2006-02-15 05:05:03'), +(58,426,'2006-02-15 05:05:03'), +(58,460,'2006-02-15 05:05:03'), +(58,477,'2006-02-15 05:05:03'), +(58,541,'2006-02-15 05:05:03'), +(58,549,'2006-02-15 05:05:03'), +(58,551,'2006-02-15 05:05:03'), +(58,553,'2006-02-15 05:05:03'), +(58,578,'2006-02-15 05:05:03'), +(58,602,'2006-02-15 05:05:03'), +(58,632,'2006-02-15 05:05:03'), +(58,635,'2006-02-15 05:05:03'), +(58,638,'2006-02-15 05:05:03'), +(58,698,'2006-02-15 05:05:03'), +(58,726,'2006-02-15 05:05:03'), +(58,755,'2006-02-15 05:05:03'), +(58,800,'2006-02-15 05:05:03'), +(58,856,'2006-02-15 05:05:03'), +(58,858,'2006-02-15 05:05:03'), +(59,5,'2006-02-15 05:05:03'), +(59,46,'2006-02-15 05:05:03'), +(59,54,'2006-02-15 05:05:03'), +(59,72,'2006-02-15 05:05:03'), +(59,88,'2006-02-15 05:05:03'), +(59,121,'2006-02-15 05:05:03'), +(59,129,'2006-02-15 05:05:03'), +(59,130,'2006-02-15 05:05:03'), +(59,183,'2006-02-15 05:05:03'), +(59,210,'2006-02-15 05:05:03'), +(59,241,'2006-02-15 05:05:03'), +(59,295,'2006-02-15 05:05:03'), +(59,418,'2006-02-15 05:05:03'), +(59,572,'2006-02-15 05:05:03'), +(59,644,'2006-02-15 05:05:03'), +(59,650,'2006-02-15 05:05:03'), +(59,689,'2006-02-15 05:05:03'), +(59,694,'2006-02-15 05:05:03'), +(59,702,'2006-02-15 05:05:03'), +(59,713,'2006-02-15 05:05:03'), +(59,749,'2006-02-15 05:05:03'), +(59,772,'2006-02-15 05:05:03'), +(59,853,'2006-02-15 05:05:03'), +(59,862,'2006-02-15 05:05:03'), +(59,943,'2006-02-15 05:05:03'), +(59,946,'2006-02-15 05:05:03'), +(59,984,'2006-02-15 05:05:03'), +(60,31,'2006-02-15 05:05:03'), +(60,85,'2006-02-15 05:05:03'), +(60,133,'2006-02-15 05:05:03'), +(60,142,'2006-02-15 05:05:03'), +(60,177,'2006-02-15 05:05:03'), +(60,179,'2006-02-15 05:05:03'), +(60,186,'2006-02-15 05:05:03'), +(60,222,'2006-02-15 05:05:03'), +(60,235,'2006-02-15 05:05:03'), +(60,239,'2006-02-15 05:05:03'), +(60,253,'2006-02-15 05:05:03'), +(60,262,'2006-02-15 05:05:03'), +(60,297,'2006-02-15 05:05:03'), +(60,299,'2006-02-15 05:05:03'), +(60,334,'2006-02-15 05:05:03'), +(60,376,'2006-02-15 05:05:03'), +(60,423,'2006-02-15 05:05:03'), +(60,436,'2006-02-15 05:05:03'), +(60,493,'2006-02-15 05:05:03'), +(60,534,'2006-02-15 05:05:03'), +(60,551,'2006-02-15 05:05:03'), +(60,658,'2006-02-15 05:05:03'), +(60,665,'2006-02-15 05:05:03'), +(60,679,'2006-02-15 05:05:03'), +(60,754,'2006-02-15 05:05:03'), +(60,771,'2006-02-15 05:05:03'), +(60,783,'2006-02-15 05:05:03'), +(60,784,'2006-02-15 05:05:03'), +(60,805,'2006-02-15 05:05:03'), +(60,830,'2006-02-15 05:05:03'), +(60,835,'2006-02-15 05:05:03'), +(60,928,'2006-02-15 05:05:03'), +(60,952,'2006-02-15 05:05:03'), +(60,971,'2006-02-15 05:05:03'), +(60,986,'2006-02-15 05:05:03'), +(61,235,'2006-02-15 05:05:03'), +(61,237,'2006-02-15 05:05:03'), +(61,307,'2006-02-15 05:05:03'), +(61,362,'2006-02-15 05:05:03'), +(61,372,'2006-02-15 05:05:03'), +(61,374,'2006-02-15 05:05:03'), +(61,423,'2006-02-15 05:05:03'), +(61,433,'2006-02-15 05:05:03'), +(61,508,'2006-02-15 05:05:03'), +(61,518,'2006-02-15 05:05:03'), +(61,519,'2006-02-15 05:05:03'), +(61,535,'2006-02-15 05:05:03'), +(61,537,'2006-02-15 05:05:03'), +(61,585,'2006-02-15 05:05:03'), +(61,639,'2006-02-15 05:05:03'), +(61,648,'2006-02-15 05:05:03'), +(61,649,'2006-02-15 05:05:03'), +(61,703,'2006-02-15 05:05:03'), +(61,752,'2006-02-15 05:05:03'), +(61,766,'2006-02-15 05:05:03'), +(61,767,'2006-02-15 05:05:03'), +(61,780,'2006-02-15 05:05:03'), +(61,831,'2006-02-15 05:05:03'), +(61,832,'2006-02-15 05:05:03'), +(61,990,'2006-02-15 05:05:03'), +(62,6,'2006-02-15 05:05:03'), +(62,42,'2006-02-15 05:05:03'), +(62,54,'2006-02-15 05:05:03'), +(62,100,'2006-02-15 05:05:03'), +(62,101,'2006-02-15 05:05:03'), +(62,129,'2006-02-15 05:05:03'), +(62,198,'2006-02-15 05:05:03'), +(62,211,'2006-02-15 05:05:03'), +(62,231,'2006-02-15 05:05:03'), +(62,272,'2006-02-15 05:05:03'), +(62,295,'2006-02-15 05:05:03'), +(62,337,'2006-02-15 05:05:03'), +(62,375,'2006-02-15 05:05:03'), +(62,385,'2006-02-15 05:05:03'), +(62,393,'2006-02-15 05:05:03'), +(62,398,'2006-02-15 05:05:03'), +(62,406,'2006-02-15 05:05:03'), +(62,413,'2006-02-15 05:05:03'), +(62,428,'2006-02-15 05:05:03'), +(62,445,'2006-02-15 05:05:03'), +(62,457,'2006-02-15 05:05:03'), +(62,465,'2006-02-15 05:05:03'), +(62,688,'2006-02-15 05:05:03'), +(62,707,'2006-02-15 05:05:03'), +(62,719,'2006-02-15 05:05:03'), +(62,951,'2006-02-15 05:05:03'), +(62,981,'2006-02-15 05:05:03'), +(62,988,'2006-02-15 05:05:03'), +(62,990,'2006-02-15 05:05:03'), +(63,73,'2006-02-15 05:05:03'), +(63,134,'2006-02-15 05:05:03'), +(63,167,'2006-02-15 05:05:03'), +(63,208,'2006-02-15 05:05:03'), +(63,225,'2006-02-15 05:05:03'), +(63,248,'2006-02-15 05:05:03'), +(63,249,'2006-02-15 05:05:03'), +(63,278,'2006-02-15 05:05:03'), +(63,392,'2006-02-15 05:05:03'), +(63,517,'2006-02-15 05:05:03'), +(63,633,'2006-02-15 05:05:03'), +(63,763,'2006-02-15 05:05:03'), +(63,781,'2006-02-15 05:05:03'), +(63,809,'2006-02-15 05:05:03'), +(63,893,'2006-02-15 05:05:03'), +(63,932,'2006-02-15 05:05:03'), +(63,944,'2006-02-15 05:05:03'), +(63,945,'2006-02-15 05:05:03'), +(63,981,'2006-02-15 05:05:03'), +(64,3,'2006-02-15 05:05:03'), +(64,10,'2006-02-15 05:05:03'), +(64,37,'2006-02-15 05:05:03'), +(64,87,'2006-02-15 05:05:03'), +(64,88,'2006-02-15 05:05:03'), +(64,124,'2006-02-15 05:05:03'), +(64,197,'2006-02-15 05:05:03'), +(64,280,'2006-02-15 05:05:03'), +(64,291,'2006-02-15 05:05:03'), +(64,307,'2006-02-15 05:05:03'), +(64,335,'2006-02-15 05:05:03'), +(64,345,'2006-02-15 05:05:03'), +(64,448,'2006-02-15 05:05:03'), +(64,469,'2006-02-15 05:05:03'), +(64,471,'2006-02-15 05:05:03'), +(64,506,'2006-02-15 05:05:03'), +(64,543,'2006-02-15 05:05:03'), +(64,557,'2006-02-15 05:05:03'), +(64,569,'2006-02-15 05:05:03'), +(64,572,'2006-02-15 05:05:03'), +(64,597,'2006-02-15 05:05:03'), +(64,616,'2006-02-15 05:05:03'), +(64,646,'2006-02-15 05:05:03'), +(64,694,'2006-02-15 05:05:03'), +(64,832,'2006-02-15 05:05:03'), +(64,852,'2006-02-15 05:05:03'), +(64,860,'2006-02-15 05:05:03'), +(64,921,'2006-02-15 05:05:03'), +(64,925,'2006-02-15 05:05:03'), +(64,980,'2006-02-15 05:05:03'), +(65,39,'2006-02-15 05:05:03'), +(65,46,'2006-02-15 05:05:03'), +(65,97,'2006-02-15 05:05:03'), +(65,106,'2006-02-15 05:05:03'), +(65,117,'2006-02-15 05:05:03'), +(65,125,'2006-02-15 05:05:03'), +(65,158,'2006-02-15 05:05:03'), +(65,276,'2006-02-15 05:05:03'), +(65,305,'2006-02-15 05:05:03'), +(65,338,'2006-02-15 05:05:03'), +(65,347,'2006-02-15 05:05:03'), +(65,371,'2006-02-15 05:05:03'), +(65,398,'2006-02-15 05:05:03'), +(65,471,'2006-02-15 05:05:03'), +(65,475,'2006-02-15 05:05:03'), +(65,476,'2006-02-15 05:05:03'), +(65,491,'2006-02-15 05:05:03'), +(65,496,'2006-02-15 05:05:03'), +(65,516,'2006-02-15 05:05:03'), +(65,517,'2006-02-15 05:05:03'), +(65,541,'2006-02-15 05:05:03'), +(65,556,'2006-02-15 05:05:03'), +(65,571,'2006-02-15 05:05:03'), +(65,577,'2006-02-15 05:05:03'), +(65,615,'2006-02-15 05:05:03'), +(65,658,'2006-02-15 05:05:03'), +(65,683,'2006-02-15 05:05:03'), +(65,694,'2006-02-15 05:05:03'), +(65,714,'2006-02-15 05:05:03'), +(65,735,'2006-02-15 05:05:03'), +(65,852,'2006-02-15 05:05:03'), +(65,938,'2006-02-15 05:05:03'), +(65,951,'2006-02-15 05:05:03'), +(65,965,'2006-02-15 05:05:03'), +(66,55,'2006-02-15 05:05:03'), +(66,143,'2006-02-15 05:05:03'), +(66,207,'2006-02-15 05:05:03'), +(66,226,'2006-02-15 05:05:03'), +(66,229,'2006-02-15 05:05:03'), +(66,230,'2006-02-15 05:05:03'), +(66,283,'2006-02-15 05:05:03'), +(66,300,'2006-02-15 05:05:03'), +(66,342,'2006-02-15 05:05:03'), +(66,350,'2006-02-15 05:05:03'), +(66,361,'2006-02-15 05:05:03'), +(66,376,'2006-02-15 05:05:03'), +(66,424,'2006-02-15 05:05:03'), +(66,434,'2006-02-15 05:05:03'), +(66,553,'2006-02-15 05:05:03'), +(66,608,'2006-02-15 05:05:03'), +(66,676,'2006-02-15 05:05:03'), +(66,697,'2006-02-15 05:05:03'), +(66,706,'2006-02-15 05:05:03'), +(66,725,'2006-02-15 05:05:03'), +(66,769,'2006-02-15 05:05:03'), +(66,793,'2006-02-15 05:05:03'), +(66,829,'2006-02-15 05:05:03'), +(66,871,'2006-02-15 05:05:03'), +(66,909,'2006-02-15 05:05:03'), +(66,915,'2006-02-15 05:05:03'), +(66,928,'2006-02-15 05:05:03'), +(66,951,'2006-02-15 05:05:03'), +(66,957,'2006-02-15 05:05:03'), +(66,960,'2006-02-15 05:05:03'), +(66,999,'2006-02-15 05:05:03'), +(67,24,'2006-02-15 05:05:03'), +(67,57,'2006-02-15 05:05:03'), +(67,67,'2006-02-15 05:05:03'), +(67,144,'2006-02-15 05:05:03'), +(67,242,'2006-02-15 05:05:03'), +(67,244,'2006-02-15 05:05:03'), +(67,256,'2006-02-15 05:05:03'), +(67,408,'2006-02-15 05:05:03'), +(67,477,'2006-02-15 05:05:03'), +(67,496,'2006-02-15 05:05:03'), +(67,512,'2006-02-15 05:05:03'), +(67,576,'2006-02-15 05:05:03'), +(67,601,'2006-02-15 05:05:03'), +(67,725,'2006-02-15 05:05:03'), +(67,726,'2006-02-15 05:05:03'), +(67,731,'2006-02-15 05:05:03'), +(67,766,'2006-02-15 05:05:03'), +(67,861,'2006-02-15 05:05:03'), +(67,870,'2006-02-15 05:05:03'), +(67,915,'2006-02-15 05:05:03'), +(67,945,'2006-02-15 05:05:03'), +(67,972,'2006-02-15 05:05:03'), +(67,981,'2006-02-15 05:05:03'), +(68,9,'2006-02-15 05:05:03'), +(68,45,'2006-02-15 05:05:03'), +(68,133,'2006-02-15 05:05:03'), +(68,161,'2006-02-15 05:05:03'), +(68,205,'2006-02-15 05:05:03'), +(68,213,'2006-02-15 05:05:03'), +(68,215,'2006-02-15 05:05:03'), +(68,255,'2006-02-15 05:05:03'), +(68,296,'2006-02-15 05:05:03'), +(68,315,'2006-02-15 05:05:03'), +(68,325,'2006-02-15 05:05:03'), +(68,331,'2006-02-15 05:05:03'), +(68,347,'2006-02-15 05:05:03'), +(68,357,'2006-02-15 05:05:03'), +(68,378,'2006-02-15 05:05:03'), +(68,380,'2006-02-15 05:05:03'), +(68,386,'2006-02-15 05:05:03'), +(68,396,'2006-02-15 05:05:03'), +(68,435,'2006-02-15 05:05:03'), +(68,497,'2006-02-15 05:05:03'), +(68,607,'2006-02-15 05:05:03'), +(68,654,'2006-02-15 05:05:03'), +(68,665,'2006-02-15 05:05:03'), +(68,671,'2006-02-15 05:05:03'), +(68,706,'2006-02-15 05:05:03'), +(68,747,'2006-02-15 05:05:03'), +(68,834,'2006-02-15 05:05:03'), +(68,839,'2006-02-15 05:05:03'), +(68,840,'2006-02-15 05:05:03'), +(68,971,'2006-02-15 05:05:03'), +(69,15,'2006-02-15 05:05:03'), +(69,88,'2006-02-15 05:05:03'), +(69,111,'2006-02-15 05:05:03'), +(69,202,'2006-02-15 05:05:03'), +(69,236,'2006-02-15 05:05:03'), +(69,292,'2006-02-15 05:05:03'), +(69,300,'2006-02-15 05:05:03'), +(69,306,'2006-02-15 05:05:03'), +(69,374,'2006-02-15 05:05:03'), +(69,396,'2006-02-15 05:05:03'), +(69,452,'2006-02-15 05:05:03'), +(69,466,'2006-02-15 05:05:03'), +(69,529,'2006-02-15 05:05:03'), +(69,612,'2006-02-15 05:05:03'), +(69,720,'2006-02-15 05:05:03'), +(69,722,'2006-02-15 05:05:03'), +(69,761,'2006-02-15 05:05:03'), +(69,791,'2006-02-15 05:05:03'), +(69,864,'2006-02-15 05:05:03'), +(69,877,'2006-02-15 05:05:03'), +(69,914,'2006-02-15 05:05:03'), +(70,50,'2006-02-15 05:05:03'), +(70,53,'2006-02-15 05:05:03'), +(70,92,'2006-02-15 05:05:03'), +(70,202,'2006-02-15 05:05:03'), +(70,227,'2006-02-15 05:05:03'), +(70,249,'2006-02-15 05:05:03'), +(70,290,'2006-02-15 05:05:03'), +(70,304,'2006-02-15 05:05:03'), +(70,343,'2006-02-15 05:05:03'), +(70,414,'2006-02-15 05:05:03'), +(70,453,'2006-02-15 05:05:03'), +(70,466,'2006-02-15 05:05:03'), +(70,504,'2006-02-15 05:05:03'), +(70,584,'2006-02-15 05:05:03'), +(70,628,'2006-02-15 05:05:03'), +(70,654,'2006-02-15 05:05:03'), +(70,725,'2006-02-15 05:05:03'), +(70,823,'2006-02-15 05:05:03'), +(70,834,'2006-02-15 05:05:03'), +(70,856,'2006-02-15 05:05:03'), +(70,869,'2006-02-15 05:05:03'), +(70,953,'2006-02-15 05:05:03'), +(70,964,'2006-02-15 05:05:03'), +(71,26,'2006-02-15 05:05:03'), +(71,52,'2006-02-15 05:05:03'), +(71,233,'2006-02-15 05:05:03'), +(71,317,'2006-02-15 05:05:03'), +(71,359,'2006-02-15 05:05:03'), +(71,362,'2006-02-15 05:05:03'), +(71,385,'2006-02-15 05:05:03'), +(71,399,'2006-02-15 05:05:03'), +(71,450,'2006-02-15 05:05:03'), +(71,532,'2006-02-15 05:05:03'), +(71,560,'2006-02-15 05:05:03'), +(71,574,'2006-02-15 05:05:03'), +(71,638,'2006-02-15 05:05:03'), +(71,773,'2006-02-15 05:05:03'), +(71,833,'2006-02-15 05:05:03'), +(71,874,'2006-02-15 05:05:03'), +(71,918,'2006-02-15 05:05:03'), +(71,956,'2006-02-15 05:05:03'), +(72,34,'2006-02-15 05:05:03'), +(72,144,'2006-02-15 05:05:03'), +(72,237,'2006-02-15 05:05:03'), +(72,249,'2006-02-15 05:05:03'), +(72,286,'2006-02-15 05:05:03'), +(72,296,'2006-02-15 05:05:03'), +(72,325,'2006-02-15 05:05:03'), +(72,331,'2006-02-15 05:05:03'), +(72,405,'2006-02-15 05:05:03'), +(72,450,'2006-02-15 05:05:03'), +(72,550,'2006-02-15 05:05:03'), +(72,609,'2006-02-15 05:05:03'), +(72,623,'2006-02-15 05:05:03'), +(72,636,'2006-02-15 05:05:03'), +(72,640,'2006-02-15 05:05:03'), +(72,665,'2006-02-15 05:05:03'), +(72,718,'2006-02-15 05:05:03'), +(72,743,'2006-02-15 05:05:03'), +(72,757,'2006-02-15 05:05:03'), +(72,773,'2006-02-15 05:05:03'), +(72,854,'2006-02-15 05:05:03'), +(72,865,'2006-02-15 05:05:03'), +(72,938,'2006-02-15 05:05:03'), +(72,956,'2006-02-15 05:05:03'), +(72,964,'2006-02-15 05:05:03'), +(72,969,'2006-02-15 05:05:03'), +(73,36,'2006-02-15 05:05:03'), +(73,45,'2006-02-15 05:05:03'), +(73,51,'2006-02-15 05:05:03'), +(73,77,'2006-02-15 05:05:03'), +(73,148,'2006-02-15 05:05:03'), +(73,245,'2006-02-15 05:05:03'), +(73,275,'2006-02-15 05:05:03'), +(73,322,'2006-02-15 05:05:03'), +(73,374,'2006-02-15 05:05:03'), +(73,379,'2006-02-15 05:05:03'), +(73,467,'2006-02-15 05:05:03'), +(73,548,'2006-02-15 05:05:03'), +(73,561,'2006-02-15 05:05:03'), +(73,562,'2006-02-15 05:05:03'), +(73,565,'2006-02-15 05:05:03'), +(73,627,'2006-02-15 05:05:03'), +(73,666,'2006-02-15 05:05:03'), +(73,667,'2006-02-15 05:05:03'), +(73,707,'2006-02-15 05:05:03'), +(73,748,'2006-02-15 05:05:03'), +(73,772,'2006-02-15 05:05:03'), +(73,823,'2006-02-15 05:05:03'), +(73,936,'2006-02-15 05:05:03'), +(73,946,'2006-02-15 05:05:03'), +(73,950,'2006-02-15 05:05:03'), +(73,998,'2006-02-15 05:05:03'), +(74,28,'2006-02-15 05:05:03'), +(74,44,'2006-02-15 05:05:03'), +(74,117,'2006-02-15 05:05:03'), +(74,185,'2006-02-15 05:05:03'), +(74,192,'2006-02-15 05:05:03'), +(74,203,'2006-02-15 05:05:03'), +(74,263,'2006-02-15 05:05:03'), +(74,321,'2006-02-15 05:05:03'), +(74,415,'2006-02-15 05:05:03'), +(74,484,'2006-02-15 05:05:03'), +(74,503,'2006-02-15 05:05:03'), +(74,537,'2006-02-15 05:05:03'), +(74,543,'2006-02-15 05:05:03'), +(74,617,'2006-02-15 05:05:03'), +(74,626,'2006-02-15 05:05:03'), +(74,637,'2006-02-15 05:05:03'), +(74,663,'2006-02-15 05:05:03'), +(74,704,'2006-02-15 05:05:03'), +(74,720,'2006-02-15 05:05:03'), +(74,747,'2006-02-15 05:05:03'), +(74,780,'2006-02-15 05:05:03'), +(74,804,'2006-02-15 05:05:03'), +(74,834,'2006-02-15 05:05:03'), +(74,836,'2006-02-15 05:05:03'), +(74,848,'2006-02-15 05:05:03'), +(74,872,'2006-02-15 05:05:03'), +(74,902,'2006-02-15 05:05:03'), +(74,956,'2006-02-15 05:05:03'), +(75,12,'2006-02-15 05:05:03'), +(75,34,'2006-02-15 05:05:03'), +(75,143,'2006-02-15 05:05:03'), +(75,170,'2006-02-15 05:05:03'), +(75,222,'2006-02-15 05:05:03'), +(75,301,'2006-02-15 05:05:03'), +(75,347,'2006-02-15 05:05:03'), +(75,372,'2006-02-15 05:05:03'), +(75,436,'2006-02-15 05:05:03'), +(75,445,'2006-02-15 05:05:03'), +(75,446,'2006-02-15 05:05:03'), +(75,492,'2006-02-15 05:05:03'), +(75,498,'2006-02-15 05:05:03'), +(75,508,'2006-02-15 05:05:03'), +(75,541,'2006-02-15 05:05:03'), +(75,547,'2006-02-15 05:05:03'), +(75,579,'2006-02-15 05:05:03'), +(75,645,'2006-02-15 05:05:03'), +(75,667,'2006-02-15 05:05:03'), +(75,744,'2006-02-15 05:05:03'), +(75,764,'2006-02-15 05:05:03'), +(75,780,'2006-02-15 05:05:03'), +(75,870,'2006-02-15 05:05:03'), +(75,920,'2006-02-15 05:05:03'), +(76,60,'2006-02-15 05:05:03'), +(76,66,'2006-02-15 05:05:03'), +(76,68,'2006-02-15 05:05:03'), +(76,95,'2006-02-15 05:05:03'), +(76,122,'2006-02-15 05:05:03'), +(76,187,'2006-02-15 05:05:03'), +(76,223,'2006-02-15 05:05:03'), +(76,234,'2006-02-15 05:05:03'), +(76,251,'2006-02-15 05:05:03'), +(76,348,'2006-02-15 05:05:03'), +(76,444,'2006-02-15 05:05:03'), +(76,464,'2006-02-15 05:05:03'), +(76,474,'2006-02-15 05:05:03'), +(76,498,'2006-02-15 05:05:03'), +(76,568,'2006-02-15 05:05:03'), +(76,604,'2006-02-15 05:05:03'), +(76,606,'2006-02-15 05:05:03'), +(76,642,'2006-02-15 05:05:03'), +(76,648,'2006-02-15 05:05:03'), +(76,650,'2006-02-15 05:05:03'), +(76,709,'2006-02-15 05:05:03'), +(76,760,'2006-02-15 05:05:03'), +(76,765,'2006-02-15 05:05:03'), +(76,781,'2006-02-15 05:05:03'), +(76,850,'2006-02-15 05:05:03'), +(76,862,'2006-02-15 05:05:03'), +(76,866,'2006-02-15 05:05:03'), +(76,870,'2006-02-15 05:05:03'), +(76,912,'2006-02-15 05:05:03'), +(76,935,'2006-02-15 05:05:03'), +(76,958,'2006-02-15 05:05:03'), +(77,13,'2006-02-15 05:05:03'), +(77,22,'2006-02-15 05:05:03'), +(77,40,'2006-02-15 05:05:03'), +(77,73,'2006-02-15 05:05:03'), +(77,78,'2006-02-15 05:05:03'), +(77,153,'2006-02-15 05:05:03'), +(77,224,'2006-02-15 05:05:03'), +(77,240,'2006-02-15 05:05:03'), +(77,245,'2006-02-15 05:05:03'), +(77,261,'2006-02-15 05:05:03'), +(77,343,'2006-02-15 05:05:03'), +(77,442,'2006-02-15 05:05:03'), +(77,458,'2006-02-15 05:05:03'), +(77,538,'2006-02-15 05:05:03'), +(77,566,'2006-02-15 05:05:03'), +(77,612,'2006-02-15 05:05:03'), +(77,635,'2006-02-15 05:05:03'), +(77,694,'2006-02-15 05:05:03'), +(77,749,'2006-02-15 05:05:03'), +(77,938,'2006-02-15 05:05:03'), +(77,943,'2006-02-15 05:05:03'), +(77,963,'2006-02-15 05:05:03'), +(77,969,'2006-02-15 05:05:03'), +(77,993,'2006-02-15 05:05:03'), +(78,86,'2006-02-15 05:05:03'), +(78,239,'2006-02-15 05:05:03'), +(78,260,'2006-02-15 05:05:03'), +(78,261,'2006-02-15 05:05:03'), +(78,265,'2006-02-15 05:05:03'), +(78,301,'2006-02-15 05:05:03'), +(78,387,'2006-02-15 05:05:03'), +(78,393,'2006-02-15 05:05:03'), +(78,428,'2006-02-15 05:05:03'), +(78,457,'2006-02-15 05:05:03'), +(78,505,'2006-02-15 05:05:03'), +(78,520,'2006-02-15 05:05:03'), +(78,530,'2006-02-15 05:05:03'), +(78,549,'2006-02-15 05:05:03'), +(78,552,'2006-02-15 05:05:03'), +(78,599,'2006-02-15 05:05:03'), +(78,670,'2006-02-15 05:05:03'), +(78,674,'2006-02-15 05:05:03'), +(78,689,'2006-02-15 05:05:03'), +(78,762,'2006-02-15 05:05:03'), +(78,767,'2006-02-15 05:05:03'), +(78,811,'2006-02-15 05:05:03'), +(78,852,'2006-02-15 05:05:03'), +(78,880,'2006-02-15 05:05:03'), +(78,963,'2006-02-15 05:05:03'), +(78,968,'2006-02-15 05:05:03'), +(79,32,'2006-02-15 05:05:03'), +(79,33,'2006-02-15 05:05:03'), +(79,40,'2006-02-15 05:05:03'), +(79,141,'2006-02-15 05:05:03'), +(79,205,'2006-02-15 05:05:03'), +(79,230,'2006-02-15 05:05:03'), +(79,242,'2006-02-15 05:05:03'), +(79,262,'2006-02-15 05:05:03'), +(79,267,'2006-02-15 05:05:03'), +(79,269,'2006-02-15 05:05:03'), +(79,299,'2006-02-15 05:05:03'), +(79,367,'2006-02-15 05:05:03'), +(79,428,'2006-02-15 05:05:03'), +(79,430,'2006-02-15 05:05:03'), +(79,473,'2006-02-15 05:05:03'), +(79,607,'2006-02-15 05:05:03'), +(79,628,'2006-02-15 05:05:03'), +(79,634,'2006-02-15 05:05:03'), +(79,646,'2006-02-15 05:05:03'), +(79,727,'2006-02-15 05:05:03'), +(79,750,'2006-02-15 05:05:03'), +(79,753,'2006-02-15 05:05:03'), +(79,769,'2006-02-15 05:05:03'), +(79,776,'2006-02-15 05:05:03'), +(79,788,'2006-02-15 05:05:03'), +(79,840,'2006-02-15 05:05:03'), +(79,853,'2006-02-15 05:05:03'), +(79,916,'2006-02-15 05:05:03'), +(80,69,'2006-02-15 05:05:03'), +(80,118,'2006-02-15 05:05:03'), +(80,124,'2006-02-15 05:05:03'), +(80,175,'2006-02-15 05:05:03'), +(80,207,'2006-02-15 05:05:03'), +(80,212,'2006-02-15 05:05:03'), +(80,260,'2006-02-15 05:05:03'), +(80,262,'2006-02-15 05:05:03'), +(80,280,'2006-02-15 05:05:03'), +(80,341,'2006-02-15 05:05:03'), +(80,342,'2006-02-15 05:05:03'), +(80,343,'2006-02-15 05:05:03'), +(80,362,'2006-02-15 05:05:03'), +(80,436,'2006-02-15 05:05:03'), +(80,475,'2006-02-15 05:05:03'), +(80,553,'2006-02-15 05:05:03'), +(80,619,'2006-02-15 05:05:03'), +(80,622,'2006-02-15 05:05:03'), +(80,680,'2006-02-15 05:05:03'), +(80,687,'2006-02-15 05:05:03'), +(80,688,'2006-02-15 05:05:03'), +(80,709,'2006-02-15 05:05:03'), +(80,788,'2006-02-15 05:05:03'), +(80,807,'2006-02-15 05:05:03'), +(80,858,'2006-02-15 05:05:03'), +(80,888,'2006-02-15 05:05:03'), +(80,941,'2006-02-15 05:05:03'), +(80,979,'2006-02-15 05:05:03'), +(81,4,'2006-02-15 05:05:03'), +(81,11,'2006-02-15 05:05:03'), +(81,59,'2006-02-15 05:05:03'), +(81,89,'2006-02-15 05:05:03'), +(81,178,'2006-02-15 05:05:03'), +(81,186,'2006-02-15 05:05:03'), +(81,194,'2006-02-15 05:05:03'), +(81,215,'2006-02-15 05:05:03'), +(81,219,'2006-02-15 05:05:03'), +(81,232,'2006-02-15 05:05:03'), +(81,260,'2006-02-15 05:05:03'), +(81,267,'2006-02-15 05:05:03'), +(81,268,'2006-02-15 05:05:03'), +(81,304,'2006-02-15 05:05:03'), +(81,332,'2006-02-15 05:05:03'), +(81,389,'2006-02-15 05:05:03'), +(81,398,'2006-02-15 05:05:03'), +(81,453,'2006-02-15 05:05:03'), +(81,458,'2006-02-15 05:05:03'), +(81,465,'2006-02-15 05:05:03'), +(81,505,'2006-02-15 05:05:03'), +(81,508,'2006-02-15 05:05:03'), +(81,527,'2006-02-15 05:05:03'), +(81,545,'2006-02-15 05:05:03'), +(81,564,'2006-02-15 05:05:03'), +(81,578,'2006-02-15 05:05:03'), +(81,579,'2006-02-15 05:05:03'), +(81,613,'2006-02-15 05:05:03'), +(81,619,'2006-02-15 05:05:03'), +(81,643,'2006-02-15 05:05:03'), +(81,692,'2006-02-15 05:05:03'), +(81,710,'2006-02-15 05:05:03'), +(81,729,'2006-02-15 05:05:03'), +(81,761,'2006-02-15 05:05:03'), +(81,827,'2006-02-15 05:05:03'), +(81,910,'2006-02-15 05:05:03'), +(82,17,'2006-02-15 05:05:03'), +(82,33,'2006-02-15 05:05:03'), +(82,104,'2006-02-15 05:05:03'), +(82,143,'2006-02-15 05:05:03'), +(82,188,'2006-02-15 05:05:03'), +(82,242,'2006-02-15 05:05:03'), +(82,247,'2006-02-15 05:05:03'), +(82,290,'2006-02-15 05:05:03'), +(82,306,'2006-02-15 05:05:03'), +(82,316,'2006-02-15 05:05:03'), +(82,344,'2006-02-15 05:05:03'), +(82,453,'2006-02-15 05:05:03'), +(82,468,'2006-02-15 05:05:03'), +(82,480,'2006-02-15 05:05:03'), +(82,497,'2006-02-15 05:05:03'), +(82,503,'2006-02-15 05:05:03'), +(82,527,'2006-02-15 05:05:03'), +(82,551,'2006-02-15 05:05:03'), +(82,561,'2006-02-15 05:05:03'), +(82,750,'2006-02-15 05:05:03'), +(82,787,'2006-02-15 05:05:03'), +(82,802,'2006-02-15 05:05:03'), +(82,838,'2006-02-15 05:05:03'), +(82,839,'2006-02-15 05:05:03'), +(82,870,'2006-02-15 05:05:03'), +(82,877,'2006-02-15 05:05:03'), +(82,893,'2006-02-15 05:05:03'), +(82,911,'2006-02-15 05:05:03'), +(82,954,'2006-02-15 05:05:03'), +(82,978,'2006-02-15 05:05:03'), +(82,985,'2006-02-15 05:05:03'), +(83,49,'2006-02-15 05:05:03'), +(83,52,'2006-02-15 05:05:03'), +(83,58,'2006-02-15 05:05:03'), +(83,110,'2006-02-15 05:05:03'), +(83,120,'2006-02-15 05:05:03'), +(83,121,'2006-02-15 05:05:03'), +(83,135,'2006-02-15 05:05:03'), +(83,165,'2006-02-15 05:05:03'), +(83,217,'2006-02-15 05:05:03'), +(83,247,'2006-02-15 05:05:03'), +(83,249,'2006-02-15 05:05:03'), +(83,263,'2006-02-15 05:05:03'), +(83,268,'2006-02-15 05:05:03'), +(83,279,'2006-02-15 05:05:03'), +(83,281,'2006-02-15 05:05:03'), +(83,339,'2006-02-15 05:05:03'), +(83,340,'2006-02-15 05:05:03'), +(83,369,'2006-02-15 05:05:03'), +(83,412,'2006-02-15 05:05:03'), +(83,519,'2006-02-15 05:05:03'), +(83,529,'2006-02-15 05:05:03'), +(83,615,'2006-02-15 05:05:03'), +(83,631,'2006-02-15 05:05:03'), +(83,655,'2006-02-15 05:05:03'), +(83,672,'2006-02-15 05:05:03'), +(83,686,'2006-02-15 05:05:03'), +(83,719,'2006-02-15 05:05:03'), +(83,764,'2006-02-15 05:05:03'), +(83,777,'2006-02-15 05:05:03'), +(83,784,'2006-02-15 05:05:03'), +(83,833,'2006-02-15 05:05:03'), +(83,873,'2006-02-15 05:05:03'), +(83,932,'2006-02-15 05:05:03'), +(84,19,'2006-02-15 05:05:03'), +(84,39,'2006-02-15 05:05:03'), +(84,46,'2006-02-15 05:05:03'), +(84,175,'2006-02-15 05:05:03'), +(84,238,'2006-02-15 05:05:03'), +(84,281,'2006-02-15 05:05:03'), +(84,290,'2006-02-15 05:05:03'), +(84,312,'2006-02-15 05:05:03'), +(84,317,'2006-02-15 05:05:03'), +(84,413,'2006-02-15 05:05:03'), +(84,414,'2006-02-15 05:05:03'), +(84,460,'2006-02-15 05:05:03'), +(84,479,'2006-02-15 05:05:03'), +(84,491,'2006-02-15 05:05:03'), +(84,529,'2006-02-15 05:05:03'), +(84,540,'2006-02-15 05:05:03'), +(84,566,'2006-02-15 05:05:03'), +(84,574,'2006-02-15 05:05:03'), +(84,589,'2006-02-15 05:05:03'), +(84,616,'2006-02-15 05:05:03'), +(84,646,'2006-02-15 05:05:03'), +(84,703,'2006-02-15 05:05:03'), +(84,729,'2006-02-15 05:05:03'), +(84,764,'2006-02-15 05:05:03'), +(84,782,'2006-02-15 05:05:03'), +(84,809,'2006-02-15 05:05:03'), +(84,830,'2006-02-15 05:05:03'), +(84,843,'2006-02-15 05:05:03'), +(84,887,'2006-02-15 05:05:03'), +(84,975,'2006-02-15 05:05:03'), +(84,996,'2006-02-15 05:05:03'), +(85,2,'2006-02-15 05:05:03'), +(85,14,'2006-02-15 05:05:03'), +(85,72,'2006-02-15 05:05:03'), +(85,85,'2006-02-15 05:05:03'), +(85,92,'2006-02-15 05:05:03'), +(85,148,'2006-02-15 05:05:03'), +(85,216,'2006-02-15 05:05:03'), +(85,290,'2006-02-15 05:05:03'), +(85,296,'2006-02-15 05:05:03'), +(85,297,'2006-02-15 05:05:03'), +(85,337,'2006-02-15 05:05:03'), +(85,383,'2006-02-15 05:05:03'), +(85,421,'2006-02-15 05:05:03'), +(85,446,'2006-02-15 05:05:03'), +(85,461,'2006-02-15 05:05:03'), +(85,475,'2006-02-15 05:05:03'), +(85,478,'2006-02-15 05:05:03'), +(85,522,'2006-02-15 05:05:03'), +(85,543,'2006-02-15 05:05:03'), +(85,558,'2006-02-15 05:05:03'), +(85,591,'2006-02-15 05:05:03'), +(85,630,'2006-02-15 05:05:03'), +(85,678,'2006-02-15 05:05:03'), +(85,711,'2006-02-15 05:05:03'), +(85,761,'2006-02-15 05:05:03'), +(85,812,'2006-02-15 05:05:03'), +(85,869,'2006-02-15 05:05:03'), +(85,875,'2006-02-15 05:05:03'), +(85,895,'2006-02-15 05:05:03'), +(85,957,'2006-02-15 05:05:03'), +(85,960,'2006-02-15 05:05:03'), +(86,137,'2006-02-15 05:05:03'), +(86,163,'2006-02-15 05:05:03'), +(86,196,'2006-02-15 05:05:03'), +(86,216,'2006-02-15 05:05:03'), +(86,249,'2006-02-15 05:05:03'), +(86,303,'2006-02-15 05:05:03'), +(86,331,'2006-02-15 05:05:03'), +(86,364,'2006-02-15 05:05:03'), +(86,391,'2006-02-15 05:05:03'), +(86,432,'2006-02-15 05:05:03'), +(86,482,'2006-02-15 05:05:03'), +(86,486,'2006-02-15 05:05:03'), +(86,519,'2006-02-15 05:05:03'), +(86,520,'2006-02-15 05:05:03'), +(86,548,'2006-02-15 05:05:03'), +(86,623,'2006-02-15 05:05:03'), +(86,631,'2006-02-15 05:05:03'), +(86,636,'2006-02-15 05:05:03'), +(86,752,'2006-02-15 05:05:03'), +(86,760,'2006-02-15 05:05:03'), +(86,808,'2006-02-15 05:05:03'), +(86,857,'2006-02-15 05:05:03'), +(86,878,'2006-02-15 05:05:03'), +(86,893,'2006-02-15 05:05:03'), +(86,905,'2006-02-15 05:05:03'), +(86,923,'2006-02-15 05:05:03'), +(86,929,'2006-02-15 05:05:03'), +(87,48,'2006-02-15 05:05:03'), +(87,157,'2006-02-15 05:05:03'), +(87,161,'2006-02-15 05:05:03'), +(87,199,'2006-02-15 05:05:03'), +(87,207,'2006-02-15 05:05:03'), +(87,250,'2006-02-15 05:05:03'), +(87,253,'2006-02-15 05:05:03'), +(87,312,'2006-02-15 05:05:03'), +(87,421,'2006-02-15 05:05:03'), +(87,570,'2006-02-15 05:05:03'), +(87,599,'2006-02-15 05:05:03'), +(87,606,'2006-02-15 05:05:03'), +(87,654,'2006-02-15 05:05:03'), +(87,679,'2006-02-15 05:05:03'), +(87,706,'2006-02-15 05:05:03'), +(87,718,'2006-02-15 05:05:03'), +(87,721,'2006-02-15 05:05:03'), +(87,830,'2006-02-15 05:05:03'), +(87,870,'2006-02-15 05:05:03'), +(87,952,'2006-02-15 05:05:03'), +(87,961,'2006-02-15 05:05:03'), +(88,4,'2006-02-15 05:05:03'), +(88,76,'2006-02-15 05:05:03'), +(88,87,'2006-02-15 05:05:03'), +(88,128,'2006-02-15 05:05:03'), +(88,170,'2006-02-15 05:05:03'), +(88,193,'2006-02-15 05:05:03'), +(88,234,'2006-02-15 05:05:03'), +(88,304,'2006-02-15 05:05:03'), +(88,602,'2006-02-15 05:05:03'), +(88,620,'2006-02-15 05:05:03'), +(88,668,'2006-02-15 05:05:03'), +(88,717,'2006-02-15 05:05:03'), +(88,785,'2006-02-15 05:05:03'), +(88,819,'2006-02-15 05:05:03'), +(88,839,'2006-02-15 05:05:03'), +(88,881,'2006-02-15 05:05:03'), +(88,908,'2006-02-15 05:05:03'), +(88,929,'2006-02-15 05:05:03'), +(88,940,'2006-02-15 05:05:03'), +(88,968,'2006-02-15 05:05:03'), +(89,47,'2006-02-15 05:05:03'), +(89,103,'2006-02-15 05:05:03'), +(89,117,'2006-02-15 05:05:03'), +(89,162,'2006-02-15 05:05:03'), +(89,182,'2006-02-15 05:05:03'), +(89,187,'2006-02-15 05:05:03'), +(89,212,'2006-02-15 05:05:03'), +(89,254,'2006-02-15 05:05:03'), +(89,266,'2006-02-15 05:05:03'), +(89,306,'2006-02-15 05:05:03'), +(89,342,'2006-02-15 05:05:03'), +(89,406,'2006-02-15 05:05:03'), +(89,410,'2006-02-15 05:05:03'), +(89,446,'2006-02-15 05:05:03'), +(89,473,'2006-02-15 05:05:03'), +(89,488,'2006-02-15 05:05:03'), +(89,529,'2006-02-15 05:05:03'), +(89,542,'2006-02-15 05:05:03'), +(89,564,'2006-02-15 05:05:03'), +(89,697,'2006-02-15 05:05:03'), +(89,833,'2006-02-15 05:05:03'), +(89,864,'2006-02-15 05:05:03'), +(89,970,'2006-02-15 05:05:03'), +(89,976,'2006-02-15 05:05:03'), +(90,2,'2006-02-15 05:05:03'), +(90,11,'2006-02-15 05:05:03'), +(90,100,'2006-02-15 05:05:03'), +(90,197,'2006-02-15 05:05:03'), +(90,212,'2006-02-15 05:05:03'), +(90,262,'2006-02-15 05:05:03'), +(90,303,'2006-02-15 05:05:03'), +(90,330,'2006-02-15 05:05:03'), +(90,363,'2006-02-15 05:05:03'), +(90,374,'2006-02-15 05:05:03'), +(90,384,'2006-02-15 05:05:03'), +(90,385,'2006-02-15 05:05:03'), +(90,391,'2006-02-15 05:05:03'), +(90,406,'2006-02-15 05:05:03'), +(90,433,'2006-02-15 05:05:03'), +(90,442,'2006-02-15 05:05:03'), +(90,451,'2006-02-15 05:05:03'), +(90,520,'2006-02-15 05:05:03'), +(90,529,'2006-02-15 05:05:03'), +(90,542,'2006-02-15 05:05:03'), +(90,586,'2006-02-15 05:05:03'), +(90,633,'2006-02-15 05:05:03'), +(90,663,'2006-02-15 05:05:03'), +(90,676,'2006-02-15 05:05:03'), +(90,771,'2006-02-15 05:05:03'), +(90,817,'2006-02-15 05:05:03'), +(90,838,'2006-02-15 05:05:03'), +(90,855,'2006-02-15 05:05:03'), +(90,858,'2006-02-15 05:05:03'), +(90,868,'2006-02-15 05:05:03'), +(90,880,'2006-02-15 05:05:03'), +(90,901,'2006-02-15 05:05:03'), +(90,925,'2006-02-15 05:05:03'), +(91,13,'2006-02-15 05:05:03'), +(91,25,'2006-02-15 05:05:03'), +(91,48,'2006-02-15 05:05:03'), +(91,176,'2006-02-15 05:05:03'), +(91,181,'2006-02-15 05:05:03'), +(91,190,'2006-02-15 05:05:03'), +(91,335,'2006-02-15 05:05:03'), +(91,416,'2006-02-15 05:05:03'), +(91,447,'2006-02-15 05:05:03'), +(91,480,'2006-02-15 05:05:03'), +(91,493,'2006-02-15 05:05:03'), +(91,509,'2006-02-15 05:05:03'), +(91,511,'2006-02-15 05:05:03'), +(91,608,'2006-02-15 05:05:03'), +(91,807,'2006-02-15 05:05:03'), +(91,829,'2006-02-15 05:05:03'), +(91,849,'2006-02-15 05:05:03'), +(91,859,'2006-02-15 05:05:03'), +(91,941,'2006-02-15 05:05:03'), +(91,982,'2006-02-15 05:05:03'), +(92,90,'2006-02-15 05:05:03'), +(92,94,'2006-02-15 05:05:03'), +(92,103,'2006-02-15 05:05:03'), +(92,104,'2006-02-15 05:05:03'), +(92,123,'2006-02-15 05:05:03'), +(92,137,'2006-02-15 05:05:03'), +(92,207,'2006-02-15 05:05:03'), +(92,229,'2006-02-15 05:05:03'), +(92,338,'2006-02-15 05:05:03'), +(92,381,'2006-02-15 05:05:03'), +(92,436,'2006-02-15 05:05:03'), +(92,443,'2006-02-15 05:05:03'), +(92,453,'2006-02-15 05:05:03'), +(92,470,'2006-02-15 05:05:03'), +(92,505,'2006-02-15 05:05:03'), +(92,512,'2006-02-15 05:05:03'), +(92,543,'2006-02-15 05:05:03'), +(92,545,'2006-02-15 05:05:03'), +(92,547,'2006-02-15 05:05:03'), +(92,553,'2006-02-15 05:05:03'), +(92,564,'2006-02-15 05:05:03'), +(92,568,'2006-02-15 05:05:03'), +(92,618,'2006-02-15 05:05:03'), +(92,662,'2006-02-15 05:05:03'), +(92,686,'2006-02-15 05:05:03'), +(92,699,'2006-02-15 05:05:03'), +(92,712,'2006-02-15 05:05:03'), +(92,728,'2006-02-15 05:05:03'), +(92,802,'2006-02-15 05:05:03'), +(92,825,'2006-02-15 05:05:03'), +(92,838,'2006-02-15 05:05:03'), +(92,889,'2006-02-15 05:05:03'), +(92,929,'2006-02-15 05:05:03'), +(92,991,'2006-02-15 05:05:03'), +(93,71,'2006-02-15 05:05:03'), +(93,120,'2006-02-15 05:05:03'), +(93,124,'2006-02-15 05:05:03'), +(93,280,'2006-02-15 05:05:03'), +(93,325,'2006-02-15 05:05:03'), +(93,339,'2006-02-15 05:05:03'), +(93,427,'2006-02-15 05:05:03'), +(93,445,'2006-02-15 05:05:03'), +(93,453,'2006-02-15 05:05:03'), +(93,473,'2006-02-15 05:05:03'), +(93,573,'2006-02-15 05:05:03'), +(93,621,'2006-02-15 05:05:03'), +(93,644,'2006-02-15 05:05:03'), +(93,678,'2006-02-15 05:05:03'), +(93,680,'2006-02-15 05:05:03'), +(93,699,'2006-02-15 05:05:03'), +(93,744,'2006-02-15 05:05:03'), +(93,768,'2006-02-15 05:05:03'), +(93,777,'2006-02-15 05:05:03'), +(93,835,'2006-02-15 05:05:03'), +(93,856,'2006-02-15 05:05:03'), +(93,874,'2006-02-15 05:05:03'), +(93,909,'2006-02-15 05:05:03'), +(93,916,'2006-02-15 05:05:03'), +(93,982,'2006-02-15 05:05:03'), +(94,13,'2006-02-15 05:05:03'), +(94,60,'2006-02-15 05:05:03'), +(94,76,'2006-02-15 05:05:03'), +(94,122,'2006-02-15 05:05:03'), +(94,153,'2006-02-15 05:05:03'), +(94,193,'2006-02-15 05:05:03'), +(94,206,'2006-02-15 05:05:03'), +(94,228,'2006-02-15 05:05:03'), +(94,270,'2006-02-15 05:05:03'), +(94,275,'2006-02-15 05:05:03'), +(94,320,'2006-02-15 05:05:03'), +(94,322,'2006-02-15 05:05:03'), +(94,337,'2006-02-15 05:05:03'), +(94,354,'2006-02-15 05:05:03'), +(94,402,'2006-02-15 05:05:03'), +(94,428,'2006-02-15 05:05:03'), +(94,457,'2006-02-15 05:05:03'), +(94,473,'2006-02-15 05:05:03'), +(94,475,'2006-02-15 05:05:03'), +(94,512,'2006-02-15 05:05:03'), +(94,517,'2006-02-15 05:05:03'), +(94,521,'2006-02-15 05:05:03'), +(94,533,'2006-02-15 05:05:03'), +(94,540,'2006-02-15 05:05:03'), +(94,548,'2006-02-15 05:05:03'), +(94,551,'2006-02-15 05:05:03'), +(94,712,'2006-02-15 05:05:03'), +(94,713,'2006-02-15 05:05:03'), +(94,724,'2006-02-15 05:05:03'), +(94,775,'2006-02-15 05:05:03'), +(94,788,'2006-02-15 05:05:03'), +(94,950,'2006-02-15 05:05:03'), +(94,989,'2006-02-15 05:05:03'), +(95,22,'2006-02-15 05:05:03'), +(95,35,'2006-02-15 05:05:03'), +(95,47,'2006-02-15 05:05:03'), +(95,52,'2006-02-15 05:05:03'), +(95,65,'2006-02-15 05:05:03'), +(95,74,'2006-02-15 05:05:03'), +(95,126,'2006-02-15 05:05:03'), +(95,207,'2006-02-15 05:05:03'), +(95,245,'2006-02-15 05:05:03'), +(95,294,'2006-02-15 05:05:03'), +(95,301,'2006-02-15 05:05:03'), +(95,312,'2006-02-15 05:05:03'), +(95,329,'2006-02-15 05:05:03'), +(95,353,'2006-02-15 05:05:03'), +(95,375,'2006-02-15 05:05:03'), +(95,420,'2006-02-15 05:05:03'), +(95,424,'2006-02-15 05:05:03'), +(95,431,'2006-02-15 05:05:03'), +(95,498,'2006-02-15 05:05:03'), +(95,522,'2006-02-15 05:05:03'), +(95,546,'2006-02-15 05:05:03'), +(95,551,'2006-02-15 05:05:03'), +(95,619,'2006-02-15 05:05:03'), +(95,627,'2006-02-15 05:05:03'), +(95,690,'2006-02-15 05:05:03'), +(95,748,'2006-02-15 05:05:03'), +(95,813,'2006-02-15 05:05:03'), +(95,828,'2006-02-15 05:05:03'), +(95,855,'2006-02-15 05:05:03'), +(95,903,'2006-02-15 05:05:03'), +(95,923,'2006-02-15 05:05:03'), +(96,8,'2006-02-15 05:05:03'), +(96,36,'2006-02-15 05:05:03'), +(96,40,'2006-02-15 05:05:03'), +(96,54,'2006-02-15 05:05:03'), +(96,58,'2006-02-15 05:05:03'), +(96,66,'2006-02-15 05:05:03'), +(96,134,'2006-02-15 05:05:03'), +(96,209,'2006-02-15 05:05:03'), +(96,244,'2006-02-15 05:05:03'), +(96,320,'2006-02-15 05:05:03'), +(96,430,'2006-02-15 05:05:03'), +(96,452,'2006-02-15 05:05:03'), +(96,486,'2006-02-15 05:05:03'), +(96,572,'2006-02-15 05:05:03'), +(96,590,'2006-02-15 05:05:03'), +(96,661,'2006-02-15 05:05:03'), +(96,778,'2006-02-15 05:05:03'), +(96,832,'2006-02-15 05:05:03'), +(96,846,'2006-02-15 05:05:03'), +(96,874,'2006-02-15 05:05:03'), +(96,945,'2006-02-15 05:05:03'), +(96,968,'2006-02-15 05:05:03'), +(96,987,'2006-02-15 05:05:03'), +(97,143,'2006-02-15 05:05:03'), +(97,177,'2006-02-15 05:05:03'), +(97,188,'2006-02-15 05:05:03'), +(97,197,'2006-02-15 05:05:03'), +(97,256,'2006-02-15 05:05:03'), +(97,312,'2006-02-15 05:05:03'), +(97,342,'2006-02-15 05:05:03'), +(97,348,'2006-02-15 05:05:03'), +(97,358,'2006-02-15 05:05:03'), +(97,370,'2006-02-15 05:05:03'), +(97,437,'2006-02-15 05:05:03'), +(97,446,'2006-02-15 05:05:03'), +(97,466,'2006-02-15 05:05:03'), +(97,518,'2006-02-15 05:05:03'), +(97,553,'2006-02-15 05:05:03'), +(97,561,'2006-02-15 05:05:03'), +(97,641,'2006-02-15 05:05:03'), +(97,656,'2006-02-15 05:05:03'), +(97,728,'2006-02-15 05:05:03'), +(97,755,'2006-02-15 05:05:03'), +(97,757,'2006-02-15 05:05:03'), +(97,826,'2006-02-15 05:05:03'), +(97,862,'2006-02-15 05:05:03'), +(97,930,'2006-02-15 05:05:03'), +(97,933,'2006-02-15 05:05:03'), +(97,947,'2006-02-15 05:05:03'), +(97,951,'2006-02-15 05:05:03'), +(98,66,'2006-02-15 05:05:03'), +(98,72,'2006-02-15 05:05:03'), +(98,81,'2006-02-15 05:05:03'), +(98,87,'2006-02-15 05:05:03'), +(98,107,'2006-02-15 05:05:03'), +(98,120,'2006-02-15 05:05:03'), +(98,183,'2006-02-15 05:05:03'), +(98,194,'2006-02-15 05:05:03'), +(98,212,'2006-02-15 05:05:03'), +(98,297,'2006-02-15 05:05:03'), +(98,607,'2006-02-15 05:05:03'), +(98,634,'2006-02-15 05:05:03'), +(98,686,'2006-02-15 05:05:03'), +(98,705,'2006-02-15 05:05:03'), +(98,710,'2006-02-15 05:05:03'), +(98,721,'2006-02-15 05:05:03'), +(98,725,'2006-02-15 05:05:03'), +(98,734,'2006-02-15 05:05:03'), +(98,738,'2006-02-15 05:05:03'), +(98,765,'2006-02-15 05:05:03'), +(98,782,'2006-02-15 05:05:03'), +(98,824,'2006-02-15 05:05:03'), +(98,829,'2006-02-15 05:05:03'), +(98,912,'2006-02-15 05:05:03'), +(98,955,'2006-02-15 05:05:03'), +(98,985,'2006-02-15 05:05:03'), +(98,990,'2006-02-15 05:05:03'), +(99,7,'2006-02-15 05:05:03'), +(99,27,'2006-02-15 05:05:03'), +(99,84,'2006-02-15 05:05:03'), +(99,250,'2006-02-15 05:05:03'), +(99,322,'2006-02-15 05:05:03'), +(99,325,'2006-02-15 05:05:03'), +(99,381,'2006-02-15 05:05:03'), +(99,414,'2006-02-15 05:05:03'), +(99,475,'2006-02-15 05:05:03'), +(99,490,'2006-02-15 05:05:03'), +(99,512,'2006-02-15 05:05:03'), +(99,540,'2006-02-15 05:05:03'), +(99,572,'2006-02-15 05:05:03'), +(99,600,'2006-02-15 05:05:03'), +(99,618,'2006-02-15 05:05:03'), +(99,620,'2006-02-15 05:05:03'), +(99,622,'2006-02-15 05:05:03'), +(99,636,'2006-02-15 05:05:03'), +(99,672,'2006-02-15 05:05:03'), +(99,726,'2006-02-15 05:05:03'), +(99,741,'2006-02-15 05:05:03'), +(99,796,'2006-02-15 05:05:03'), +(99,835,'2006-02-15 05:05:03'), +(99,967,'2006-02-15 05:05:03'), +(99,978,'2006-02-15 05:05:03'), +(99,982,'2006-02-15 05:05:03'), +(100,17,'2006-02-15 05:05:03'), +(100,118,'2006-02-15 05:05:03'), +(100,250,'2006-02-15 05:05:03'), +(100,411,'2006-02-15 05:05:03'), +(100,414,'2006-02-15 05:05:03'), +(100,513,'2006-02-15 05:05:03'), +(100,563,'2006-02-15 05:05:03'), +(100,642,'2006-02-15 05:05:03'), +(100,714,'2006-02-15 05:05:03'), +(100,718,'2006-02-15 05:05:03'), +(100,759,'2006-02-15 05:05:03'), +(100,779,'2006-02-15 05:05:03'), +(100,815,'2006-02-15 05:05:03'), +(100,846,'2006-02-15 05:05:03'), +(100,850,'2006-02-15 05:05:03'), +(100,872,'2006-02-15 05:05:03'), +(100,877,'2006-02-15 05:05:03'), +(100,909,'2006-02-15 05:05:03'), +(100,919,'2006-02-15 05:05:03'), +(100,944,'2006-02-15 05:05:03'), +(100,967,'2006-02-15 05:05:03'), +(100,979,'2006-02-15 05:05:03'), +(100,991,'2006-02-15 05:05:03'), +(100,992,'2006-02-15 05:05:03'), +(101,60,'2006-02-15 05:05:03'), +(101,66,'2006-02-15 05:05:03'), +(101,85,'2006-02-15 05:05:03'), +(101,146,'2006-02-15 05:05:03'), +(101,189,'2006-02-15 05:05:03'), +(101,250,'2006-02-15 05:05:03'), +(101,255,'2006-02-15 05:05:03'), +(101,263,'2006-02-15 05:05:03'), +(101,275,'2006-02-15 05:05:03'), +(101,289,'2006-02-15 05:05:03'), +(101,491,'2006-02-15 05:05:03'), +(101,494,'2006-02-15 05:05:03'), +(101,511,'2006-02-15 05:05:03'), +(101,568,'2006-02-15 05:05:03'), +(101,608,'2006-02-15 05:05:03'), +(101,617,'2006-02-15 05:05:03'), +(101,655,'2006-02-15 05:05:03'), +(101,662,'2006-02-15 05:05:03'), +(101,700,'2006-02-15 05:05:03'), +(101,702,'2006-02-15 05:05:03'), +(101,758,'2006-02-15 05:05:03'), +(101,774,'2006-02-15 05:05:03'), +(101,787,'2006-02-15 05:05:03'), +(101,828,'2006-02-15 05:05:03'), +(101,841,'2006-02-15 05:05:03'), +(101,928,'2006-02-15 05:05:03'), +(101,932,'2006-02-15 05:05:03'), +(101,936,'2006-02-15 05:05:03'), +(101,941,'2006-02-15 05:05:03'), +(101,978,'2006-02-15 05:05:03'), +(101,980,'2006-02-15 05:05:03'), +(101,984,'2006-02-15 05:05:03'), +(101,988,'2006-02-15 05:05:03'), +(102,20,'2006-02-15 05:05:03'), +(102,34,'2006-02-15 05:05:03'), +(102,53,'2006-02-15 05:05:03'), +(102,123,'2006-02-15 05:05:03'), +(102,124,'2006-02-15 05:05:03'), +(102,194,'2006-02-15 05:05:03'), +(102,200,'2006-02-15 05:05:03'), +(102,205,'2006-02-15 05:05:03'), +(102,268,'2006-02-15 05:05:03'), +(102,326,'2006-02-15 05:05:03'), +(102,329,'2006-02-15 05:05:03'), +(102,334,'2006-02-15 05:05:03'), +(102,351,'2006-02-15 05:05:03'), +(102,418,'2006-02-15 05:05:03'), +(102,431,'2006-02-15 05:05:03'), +(102,446,'2006-02-15 05:05:03'), +(102,485,'2006-02-15 05:05:03'), +(102,508,'2006-02-15 05:05:03'), +(102,517,'2006-02-15 05:05:03'), +(102,521,'2006-02-15 05:05:03'), +(102,526,'2006-02-15 05:05:03'), +(102,529,'2006-02-15 05:05:03'), +(102,544,'2006-02-15 05:05:03'), +(102,600,'2006-02-15 05:05:03'), +(102,605,'2006-02-15 05:05:03'), +(102,606,'2006-02-15 05:05:03'), +(102,624,'2006-02-15 05:05:03'), +(102,631,'2006-02-15 05:05:03'), +(102,712,'2006-02-15 05:05:03'), +(102,728,'2006-02-15 05:05:03'), +(102,744,'2006-02-15 05:05:03'), +(102,796,'2006-02-15 05:05:03'), +(102,802,'2006-02-15 05:05:03'), +(102,810,'2006-02-15 05:05:03'), +(102,828,'2006-02-15 05:05:03'), +(102,837,'2006-02-15 05:05:03'), +(102,845,'2006-02-15 05:05:03'), +(102,852,'2006-02-15 05:05:03'), +(102,958,'2006-02-15 05:05:03'), +(102,979,'2006-02-15 05:05:03'), +(102,980,'2006-02-15 05:05:03'), +(103,5,'2006-02-15 05:05:03'), +(103,118,'2006-02-15 05:05:03'), +(103,130,'2006-02-15 05:05:03'), +(103,197,'2006-02-15 05:05:03'), +(103,199,'2006-02-15 05:05:03'), +(103,206,'2006-02-15 05:05:03'), +(103,215,'2006-02-15 05:05:03'), +(103,221,'2006-02-15 05:05:03'), +(103,271,'2006-02-15 05:05:03'), +(103,285,'2006-02-15 05:05:03'), +(103,315,'2006-02-15 05:05:03'), +(103,318,'2006-02-15 05:05:03'), +(103,333,'2006-02-15 05:05:03'), +(103,347,'2006-02-15 05:05:03'), +(103,356,'2006-02-15 05:05:03'), +(103,360,'2006-02-15 05:05:03'), +(103,378,'2006-02-15 05:05:03'), +(103,437,'2006-02-15 05:05:03'), +(103,585,'2006-02-15 05:05:03'), +(103,609,'2006-02-15 05:05:03'), +(103,639,'2006-02-15 05:05:03'), +(103,643,'2006-02-15 05:05:03'), +(103,692,'2006-02-15 05:05:03'), +(103,735,'2006-02-15 05:05:03'), +(103,822,'2006-02-15 05:05:03'), +(103,895,'2006-02-15 05:05:03'), +(103,903,'2006-02-15 05:05:03'), +(103,912,'2006-02-15 05:05:03'), +(103,942,'2006-02-15 05:05:03'), +(103,956,'2006-02-15 05:05:03'), +(104,19,'2006-02-15 05:05:03'), +(104,39,'2006-02-15 05:05:03'), +(104,40,'2006-02-15 05:05:03'), +(104,59,'2006-02-15 05:05:03'), +(104,70,'2006-02-15 05:05:03'), +(104,136,'2006-02-15 05:05:03'), +(104,156,'2006-02-15 05:05:03'), +(104,184,'2006-02-15 05:05:03'), +(104,198,'2006-02-15 05:05:03'), +(104,233,'2006-02-15 05:05:03'), +(104,259,'2006-02-15 05:05:03'), +(104,287,'2006-02-15 05:05:03'), +(104,309,'2006-02-15 05:05:03'), +(104,313,'2006-02-15 05:05:03'), +(104,394,'2006-02-15 05:05:03'), +(104,401,'2006-02-15 05:05:03'), +(104,463,'2006-02-15 05:05:03'), +(104,506,'2006-02-15 05:05:03'), +(104,516,'2006-02-15 05:05:03'), +(104,583,'2006-02-15 05:05:03'), +(104,600,'2006-02-15 05:05:03'), +(104,607,'2006-02-15 05:05:03'), +(104,657,'2006-02-15 05:05:03'), +(104,677,'2006-02-15 05:05:03'), +(104,739,'2006-02-15 05:05:03'), +(104,892,'2006-02-15 05:05:03'), +(104,904,'2006-02-15 05:05:03'), +(104,926,'2006-02-15 05:05:03'), +(104,945,'2006-02-15 05:05:03'), +(104,984,'2006-02-15 05:05:03'), +(104,999,'2006-02-15 05:05:03'), +(105,12,'2006-02-15 05:05:03'), +(105,15,'2006-02-15 05:05:03'), +(105,21,'2006-02-15 05:05:03'), +(105,29,'2006-02-15 05:05:03'), +(105,42,'2006-02-15 05:05:03'), +(105,116,'2006-02-15 05:05:03'), +(105,158,'2006-02-15 05:05:03'), +(105,239,'2006-02-15 05:05:03'), +(105,280,'2006-02-15 05:05:03'), +(105,283,'2006-02-15 05:05:03'), +(105,315,'2006-02-15 05:05:03'), +(105,333,'2006-02-15 05:05:03'), +(105,372,'2006-02-15 05:05:03'), +(105,377,'2006-02-15 05:05:03'), +(105,530,'2006-02-15 05:05:03'), +(105,558,'2006-02-15 05:05:03'), +(105,561,'2006-02-15 05:05:03'), +(105,606,'2006-02-15 05:05:03'), +(105,649,'2006-02-15 05:05:03'), +(105,686,'2006-02-15 05:05:03'), +(105,750,'2006-02-15 05:05:03'), +(105,795,'2006-02-15 05:05:03'), +(105,831,'2006-02-15 05:05:03'), +(105,835,'2006-02-15 05:05:03'), +(105,858,'2006-02-15 05:05:03'), +(105,864,'2006-02-15 05:05:03'), +(105,893,'2006-02-15 05:05:03'), +(105,906,'2006-02-15 05:05:03'), +(105,910,'2006-02-15 05:05:03'), +(105,915,'2006-02-15 05:05:03'), +(105,954,'2006-02-15 05:05:03'), +(105,990,'2006-02-15 05:05:03'), +(105,993,'2006-02-15 05:05:03'), +(105,994,'2006-02-15 05:05:03'), +(106,44,'2006-02-15 05:05:03'), +(106,83,'2006-02-15 05:05:03'), +(106,108,'2006-02-15 05:05:03'), +(106,126,'2006-02-15 05:05:03'), +(106,136,'2006-02-15 05:05:03'), +(106,166,'2006-02-15 05:05:03'), +(106,189,'2006-02-15 05:05:03'), +(106,194,'2006-02-15 05:05:03'), +(106,204,'2006-02-15 05:05:03'), +(106,229,'2006-02-15 05:05:03'), +(106,241,'2006-02-15 05:05:03'), +(106,345,'2006-02-15 05:05:03'), +(106,365,'2006-02-15 05:05:03'), +(106,399,'2006-02-15 05:05:03'), +(106,439,'2006-02-15 05:05:03'), +(106,457,'2006-02-15 05:05:03'), +(106,469,'2006-02-15 05:05:03'), +(106,500,'2006-02-15 05:05:03'), +(106,505,'2006-02-15 05:05:03'), +(106,559,'2006-02-15 05:05:03'), +(106,566,'2006-02-15 05:05:03'), +(106,585,'2006-02-15 05:05:03'), +(106,639,'2006-02-15 05:05:03'), +(106,654,'2006-02-15 05:05:03'), +(106,659,'2006-02-15 05:05:03'), +(106,675,'2006-02-15 05:05:03'), +(106,687,'2006-02-15 05:05:03'), +(106,752,'2006-02-15 05:05:03'), +(106,763,'2006-02-15 05:05:03'), +(106,780,'2006-02-15 05:05:03'), +(106,858,'2006-02-15 05:05:03'), +(106,866,'2006-02-15 05:05:03'), +(106,881,'2006-02-15 05:05:03'), +(106,894,'2006-02-15 05:05:03'), +(106,934,'2006-02-15 05:05:03'), +(107,62,'2006-02-15 05:05:03'), +(107,112,'2006-02-15 05:05:03'), +(107,133,'2006-02-15 05:05:03'), +(107,136,'2006-02-15 05:05:03'), +(107,138,'2006-02-15 05:05:03'), +(107,162,'2006-02-15 05:05:03'), +(107,165,'2006-02-15 05:05:03'), +(107,172,'2006-02-15 05:05:03'), +(107,209,'2006-02-15 05:05:03'), +(107,220,'2006-02-15 05:05:03'), +(107,239,'2006-02-15 05:05:03'), +(107,277,'2006-02-15 05:05:03'), +(107,292,'2006-02-15 05:05:03'), +(107,338,'2006-02-15 05:05:03'), +(107,348,'2006-02-15 05:05:03'), +(107,369,'2006-02-15 05:05:03'), +(107,388,'2006-02-15 05:05:03'), +(107,392,'2006-02-15 05:05:03'), +(107,409,'2006-02-15 05:05:03'), +(107,430,'2006-02-15 05:05:03'), +(107,445,'2006-02-15 05:05:03'), +(107,454,'2006-02-15 05:05:03'), +(107,458,'2006-02-15 05:05:03'), +(107,467,'2006-02-15 05:05:03'), +(107,520,'2006-02-15 05:05:03'), +(107,534,'2006-02-15 05:05:03'), +(107,548,'2006-02-15 05:05:03'), +(107,571,'2006-02-15 05:05:03'), +(107,574,'2006-02-15 05:05:03'), +(107,603,'2006-02-15 05:05:03'), +(107,606,'2006-02-15 05:05:03'), +(107,637,'2006-02-15 05:05:03'), +(107,774,'2006-02-15 05:05:03'), +(107,781,'2006-02-15 05:05:03'), +(107,796,'2006-02-15 05:05:03'), +(107,831,'2006-02-15 05:05:03'), +(107,849,'2006-02-15 05:05:03'), +(107,859,'2006-02-15 05:05:03'), +(107,879,'2006-02-15 05:05:03'), +(107,905,'2006-02-15 05:05:03'), +(107,973,'2006-02-15 05:05:03'), +(107,977,'2006-02-15 05:05:03'), +(108,1,'2006-02-15 05:05:03'), +(108,6,'2006-02-15 05:05:03'), +(108,9,'2006-02-15 05:05:03'), +(108,137,'2006-02-15 05:05:03'), +(108,208,'2006-02-15 05:05:03'), +(108,219,'2006-02-15 05:05:03'), +(108,242,'2006-02-15 05:05:03'), +(108,278,'2006-02-15 05:05:03'), +(108,302,'2006-02-15 05:05:03'), +(108,350,'2006-02-15 05:05:03'), +(108,378,'2006-02-15 05:05:03'), +(108,379,'2006-02-15 05:05:03'), +(108,495,'2006-02-15 05:05:03'), +(108,507,'2006-02-15 05:05:03'), +(108,517,'2006-02-15 05:05:03'), +(108,561,'2006-02-15 05:05:03'), +(108,567,'2006-02-15 05:05:03'), +(108,648,'2006-02-15 05:05:03'), +(108,652,'2006-02-15 05:05:03'), +(108,655,'2006-02-15 05:05:03'), +(108,673,'2006-02-15 05:05:03'), +(108,693,'2006-02-15 05:05:03'), +(108,696,'2006-02-15 05:05:03'), +(108,702,'2006-02-15 05:05:03'), +(108,721,'2006-02-15 05:05:03'), +(108,733,'2006-02-15 05:05:03'), +(108,741,'2006-02-15 05:05:03'), +(108,744,'2006-02-15 05:05:03'), +(108,887,'2006-02-15 05:05:03'), +(108,892,'2006-02-15 05:05:03'), +(108,894,'2006-02-15 05:05:03'), +(108,920,'2006-02-15 05:05:03'), +(108,958,'2006-02-15 05:05:03'), +(108,966,'2006-02-15 05:05:03'), +(109,12,'2006-02-15 05:05:03'), +(109,48,'2006-02-15 05:05:03'), +(109,77,'2006-02-15 05:05:03'), +(109,157,'2006-02-15 05:05:03'), +(109,174,'2006-02-15 05:05:03'), +(109,190,'2006-02-15 05:05:03'), +(109,243,'2006-02-15 05:05:03'), +(109,281,'2006-02-15 05:05:03'), +(109,393,'2006-02-15 05:05:03'), +(109,463,'2006-02-15 05:05:03'), +(109,622,'2006-02-15 05:05:03'), +(109,657,'2006-02-15 05:05:03'), +(109,694,'2006-02-15 05:05:03'), +(109,700,'2006-02-15 05:05:03'), +(109,732,'2006-02-15 05:05:03'), +(109,753,'2006-02-15 05:05:03'), +(109,785,'2006-02-15 05:05:03'), +(109,786,'2006-02-15 05:05:03'), +(109,863,'2006-02-15 05:05:03'), +(109,885,'2006-02-15 05:05:03'), +(109,955,'2006-02-15 05:05:03'), +(109,967,'2006-02-15 05:05:03'), +(110,8,'2006-02-15 05:05:03'), +(110,27,'2006-02-15 05:05:03'), +(110,62,'2006-02-15 05:05:03'), +(110,120,'2006-02-15 05:05:03'), +(110,126,'2006-02-15 05:05:03'), +(110,156,'2006-02-15 05:05:03'), +(110,292,'2006-02-15 05:05:03'), +(110,343,'2006-02-15 05:05:03'), +(110,360,'2006-02-15 05:05:03'), +(110,369,'2006-02-15 05:05:03'), +(110,435,'2006-02-15 05:05:03'), +(110,513,'2006-02-15 05:05:03'), +(110,525,'2006-02-15 05:05:03'), +(110,539,'2006-02-15 05:05:03'), +(110,545,'2006-02-15 05:05:03'), +(110,625,'2006-02-15 05:05:03'), +(110,650,'2006-02-15 05:05:03'), +(110,801,'2006-02-15 05:05:03'), +(110,912,'2006-02-15 05:05:03'), +(110,961,'2006-02-15 05:05:03'), +(110,987,'2006-02-15 05:05:03'), +(111,61,'2006-02-15 05:05:03'), +(111,78,'2006-02-15 05:05:03'), +(111,98,'2006-02-15 05:05:03'), +(111,162,'2006-02-15 05:05:03'), +(111,179,'2006-02-15 05:05:03'), +(111,194,'2006-02-15 05:05:03'), +(111,325,'2006-02-15 05:05:03'), +(111,359,'2006-02-15 05:05:03'), +(111,382,'2006-02-15 05:05:03'), +(111,403,'2006-02-15 05:05:03'), +(111,407,'2006-02-15 05:05:03'), +(111,414,'2006-02-15 05:05:03'), +(111,474,'2006-02-15 05:05:03'), +(111,489,'2006-02-15 05:05:03'), +(111,508,'2006-02-15 05:05:03'), +(111,555,'2006-02-15 05:05:03'), +(111,603,'2006-02-15 05:05:03'), +(111,608,'2006-02-15 05:05:03'), +(111,643,'2006-02-15 05:05:03'), +(111,669,'2006-02-15 05:05:03'), +(111,679,'2006-02-15 05:05:03'), +(111,680,'2006-02-15 05:05:03'), +(111,699,'2006-02-15 05:05:03'), +(111,731,'2006-02-15 05:05:03'), +(111,732,'2006-02-15 05:05:03'), +(111,737,'2006-02-15 05:05:03'), +(111,744,'2006-02-15 05:05:03'), +(111,777,'2006-02-15 05:05:03'), +(111,847,'2006-02-15 05:05:03'), +(111,894,'2006-02-15 05:05:03'), +(111,919,'2006-02-15 05:05:03'), +(111,962,'2006-02-15 05:05:03'), +(111,973,'2006-02-15 05:05:03'), +(112,34,'2006-02-15 05:05:03'), +(112,37,'2006-02-15 05:05:03'), +(112,151,'2006-02-15 05:05:03'), +(112,173,'2006-02-15 05:05:03'), +(112,188,'2006-02-15 05:05:03'), +(112,231,'2006-02-15 05:05:03'), +(112,312,'2006-02-15 05:05:03'), +(112,322,'2006-02-15 05:05:03'), +(112,443,'2006-02-15 05:05:03'), +(112,450,'2006-02-15 05:05:03'), +(112,565,'2006-02-15 05:05:03'), +(112,603,'2006-02-15 05:05:03'), +(112,606,'2006-02-15 05:05:03'), +(112,654,'2006-02-15 05:05:03'), +(112,666,'2006-02-15 05:05:03'), +(112,700,'2006-02-15 05:05:03'), +(112,728,'2006-02-15 05:05:03'), +(112,772,'2006-02-15 05:05:03'), +(112,796,'2006-02-15 05:05:03'), +(112,817,'2006-02-15 05:05:03'), +(112,829,'2006-02-15 05:05:03'), +(112,856,'2006-02-15 05:05:03'), +(112,865,'2006-02-15 05:05:03'), +(112,869,'2006-02-15 05:05:03'), +(112,988,'2006-02-15 05:05:03'), +(113,35,'2006-02-15 05:05:03'), +(113,84,'2006-02-15 05:05:03'), +(113,116,'2006-02-15 05:05:03'), +(113,181,'2006-02-15 05:05:03'), +(113,218,'2006-02-15 05:05:03'), +(113,249,'2006-02-15 05:05:03'), +(113,258,'2006-02-15 05:05:03'), +(113,292,'2006-02-15 05:05:03'), +(113,322,'2006-02-15 05:05:03'), +(113,353,'2006-02-15 05:05:03'), +(113,403,'2006-02-15 05:05:03'), +(113,525,'2006-02-15 05:05:03'), +(113,642,'2006-02-15 05:05:03'), +(113,656,'2006-02-15 05:05:03'), +(113,674,'2006-02-15 05:05:03'), +(113,680,'2006-02-15 05:05:03'), +(113,700,'2006-02-15 05:05:03'), +(113,719,'2006-02-15 05:05:03'), +(113,723,'2006-02-15 05:05:03'), +(113,726,'2006-02-15 05:05:03'), +(113,732,'2006-02-15 05:05:03'), +(113,748,'2006-02-15 05:05:03'), +(113,838,'2006-02-15 05:05:03'), +(113,890,'2006-02-15 05:05:03'), +(113,921,'2006-02-15 05:05:03'), +(113,969,'2006-02-15 05:05:03'), +(113,981,'2006-02-15 05:05:03'), +(114,13,'2006-02-15 05:05:03'), +(114,68,'2006-02-15 05:05:03'), +(114,90,'2006-02-15 05:05:03'), +(114,162,'2006-02-15 05:05:03'), +(114,188,'2006-02-15 05:05:03'), +(114,194,'2006-02-15 05:05:03'), +(114,210,'2006-02-15 05:05:03'), +(114,237,'2006-02-15 05:05:03'), +(114,254,'2006-02-15 05:05:03'), +(114,305,'2006-02-15 05:05:03'), +(114,339,'2006-02-15 05:05:03'), +(114,420,'2006-02-15 05:05:03'), +(114,425,'2006-02-15 05:05:03'), +(114,452,'2006-02-15 05:05:03'), +(114,538,'2006-02-15 05:05:03'), +(114,619,'2006-02-15 05:05:03'), +(114,757,'2006-02-15 05:05:03'), +(114,807,'2006-02-15 05:05:03'), +(114,827,'2006-02-15 05:05:03'), +(114,841,'2006-02-15 05:05:03'), +(114,861,'2006-02-15 05:05:03'), +(114,866,'2006-02-15 05:05:03'), +(114,913,'2006-02-15 05:05:03'), +(114,961,'2006-02-15 05:05:03'), +(114,993,'2006-02-15 05:05:03'), +(115,49,'2006-02-15 05:05:03'), +(115,52,'2006-02-15 05:05:03'), +(115,245,'2006-02-15 05:05:03'), +(115,246,'2006-02-15 05:05:03'), +(115,277,'2006-02-15 05:05:03'), +(115,302,'2006-02-15 05:05:03'), +(115,379,'2006-02-15 05:05:03'), +(115,383,'2006-02-15 05:05:03'), +(115,391,'2006-02-15 05:05:03'), +(115,428,'2006-02-15 05:05:03'), +(115,506,'2006-02-15 05:05:03'), +(115,531,'2006-02-15 05:05:03'), +(115,607,'2006-02-15 05:05:03'), +(115,615,'2006-02-15 05:05:03'), +(115,661,'2006-02-15 05:05:03'), +(115,671,'2006-02-15 05:05:03'), +(115,686,'2006-02-15 05:05:03'), +(115,703,'2006-02-15 05:05:03'), +(115,714,'2006-02-15 05:05:03'), +(115,740,'2006-02-15 05:05:03'), +(115,754,'2006-02-15 05:05:03'), +(115,846,'2006-02-15 05:05:03'), +(115,887,'2006-02-15 05:05:03'), +(115,952,'2006-02-15 05:05:03'), +(115,955,'2006-02-15 05:05:03'), +(115,966,'2006-02-15 05:05:03'), +(115,985,'2006-02-15 05:05:03'), +(115,994,'2006-02-15 05:05:03'), +(116,36,'2006-02-15 05:05:03'), +(116,48,'2006-02-15 05:05:03'), +(116,88,'2006-02-15 05:05:03'), +(116,90,'2006-02-15 05:05:03'), +(116,105,'2006-02-15 05:05:03'), +(116,128,'2006-02-15 05:05:03'), +(116,336,'2006-02-15 05:05:03'), +(116,338,'2006-02-15 05:05:03'), +(116,384,'2006-02-15 05:05:03'), +(116,412,'2006-02-15 05:05:03'), +(116,420,'2006-02-15 05:05:03'), +(116,451,'2006-02-15 05:05:03'), +(116,481,'2006-02-15 05:05:03'), +(116,492,'2006-02-15 05:05:03'), +(116,584,'2006-02-15 05:05:03'), +(116,606,'2006-02-15 05:05:03'), +(116,622,'2006-02-15 05:05:03'), +(116,647,'2006-02-15 05:05:03'), +(116,653,'2006-02-15 05:05:03'), +(116,742,'2006-02-15 05:05:03'), +(116,784,'2006-02-15 05:05:03'), +(116,844,'2006-02-15 05:05:03'), +(116,939,'2006-02-15 05:05:03'), +(116,956,'2006-02-15 05:05:03'), +(117,10,'2006-02-15 05:05:03'), +(117,15,'2006-02-15 05:05:03'), +(117,42,'2006-02-15 05:05:03'), +(117,167,'2006-02-15 05:05:03'), +(117,178,'2006-02-15 05:05:03'), +(117,190,'2006-02-15 05:05:03'), +(117,197,'2006-02-15 05:05:03'), +(117,224,'2006-02-15 05:05:03'), +(117,246,'2006-02-15 05:05:03'), +(117,273,'2006-02-15 05:05:03'), +(117,298,'2006-02-15 05:05:03'), +(117,316,'2006-02-15 05:05:03'), +(117,337,'2006-02-15 05:05:03'), +(117,395,'2006-02-15 05:05:03'), +(117,423,'2006-02-15 05:05:03'), +(117,432,'2006-02-15 05:05:03'), +(117,459,'2006-02-15 05:05:03'), +(117,468,'2006-02-15 05:05:03'), +(117,550,'2006-02-15 05:05:03'), +(117,578,'2006-02-15 05:05:03'), +(117,707,'2006-02-15 05:05:03'), +(117,710,'2006-02-15 05:05:03'), +(117,738,'2006-02-15 05:05:03'), +(117,739,'2006-02-15 05:05:03'), +(117,778,'2006-02-15 05:05:03'), +(117,783,'2006-02-15 05:05:03'), +(117,785,'2006-02-15 05:05:03'), +(117,797,'2006-02-15 05:05:03'), +(117,812,'2006-02-15 05:05:03'), +(117,831,'2006-02-15 05:05:03'), +(117,864,'2006-02-15 05:05:03'), +(117,887,'2006-02-15 05:05:03'), +(117,926,'2006-02-15 05:05:03'), +(118,35,'2006-02-15 05:05:03'), +(118,39,'2006-02-15 05:05:03'), +(118,41,'2006-02-15 05:05:03'), +(118,49,'2006-02-15 05:05:03'), +(118,55,'2006-02-15 05:05:03'), +(118,136,'2006-02-15 05:05:03'), +(118,141,'2006-02-15 05:05:03'), +(118,151,'2006-02-15 05:05:03'), +(118,311,'2006-02-15 05:05:03'), +(118,384,'2006-02-15 05:05:03'), +(118,399,'2006-02-15 05:05:03'), +(118,499,'2006-02-15 05:05:03'), +(118,517,'2006-02-15 05:05:03'), +(118,553,'2006-02-15 05:05:03'), +(118,558,'2006-02-15 05:05:03'), +(118,572,'2006-02-15 05:05:03'), +(118,641,'2006-02-15 05:05:03'), +(118,656,'2006-02-15 05:05:03'), +(118,695,'2006-02-15 05:05:03'), +(118,735,'2006-02-15 05:05:03'), +(118,788,'2006-02-15 05:05:03'), +(118,852,'2006-02-15 05:05:03'), +(118,938,'2006-02-15 05:05:03'), +(118,957,'2006-02-15 05:05:03'), +(118,969,'2006-02-15 05:05:03'), +(119,21,'2006-02-15 05:05:03'), +(119,49,'2006-02-15 05:05:03'), +(119,64,'2006-02-15 05:05:03'), +(119,87,'2006-02-15 05:05:03'), +(119,143,'2006-02-15 05:05:03'), +(119,171,'2006-02-15 05:05:03'), +(119,172,'2006-02-15 05:05:03'), +(119,173,'2006-02-15 05:05:03'), +(119,381,'2006-02-15 05:05:03'), +(119,394,'2006-02-15 05:05:03'), +(119,412,'2006-02-15 05:05:03'), +(119,418,'2006-02-15 05:05:03'), +(119,454,'2006-02-15 05:05:03'), +(119,509,'2006-02-15 05:05:03'), +(119,521,'2006-02-15 05:05:03'), +(119,567,'2006-02-15 05:05:03'), +(119,570,'2006-02-15 05:05:03'), +(119,592,'2006-02-15 05:05:03'), +(119,614,'2006-02-15 05:05:03'), +(119,636,'2006-02-15 05:05:03'), +(119,649,'2006-02-15 05:05:03'), +(119,693,'2006-02-15 05:05:03'), +(119,738,'2006-02-15 05:05:03'), +(119,751,'2006-02-15 05:05:03'), +(119,782,'2006-02-15 05:05:03'), +(119,786,'2006-02-15 05:05:03'), +(119,788,'2006-02-15 05:05:03'), +(119,802,'2006-02-15 05:05:03'), +(119,858,'2006-02-15 05:05:03'), +(119,868,'2006-02-15 05:05:03'), +(119,900,'2006-02-15 05:05:03'), +(119,939,'2006-02-15 05:05:03'), +(120,57,'2006-02-15 05:05:03'), +(120,63,'2006-02-15 05:05:03'), +(120,144,'2006-02-15 05:05:03'), +(120,149,'2006-02-15 05:05:03'), +(120,208,'2006-02-15 05:05:03'), +(120,231,'2006-02-15 05:05:03'), +(120,238,'2006-02-15 05:05:03'), +(120,255,'2006-02-15 05:05:03'), +(120,414,'2006-02-15 05:05:03'), +(120,424,'2006-02-15 05:05:03'), +(120,489,'2006-02-15 05:05:03'), +(120,513,'2006-02-15 05:05:03'), +(120,590,'2006-02-15 05:05:03'), +(120,641,'2006-02-15 05:05:03'), +(120,642,'2006-02-15 05:05:03'), +(120,659,'2006-02-15 05:05:03'), +(120,682,'2006-02-15 05:05:03'), +(120,691,'2006-02-15 05:05:03'), +(120,715,'2006-02-15 05:05:03'), +(120,717,'2006-02-15 05:05:03'), +(120,722,'2006-02-15 05:05:03'), +(120,746,'2006-02-15 05:05:03'), +(120,830,'2006-02-15 05:05:03'), +(120,894,'2006-02-15 05:05:03'), +(120,898,'2006-02-15 05:05:03'), +(120,911,'2006-02-15 05:05:03'), +(120,994,'2006-02-15 05:05:03'), +(121,141,'2006-02-15 05:05:03'), +(121,154,'2006-02-15 05:05:03'), +(121,161,'2006-02-15 05:05:03'), +(121,170,'2006-02-15 05:05:03'), +(121,186,'2006-02-15 05:05:03'), +(121,198,'2006-02-15 05:05:03'), +(121,220,'2006-02-15 05:05:03'), +(121,222,'2006-02-15 05:05:03'), +(121,284,'2006-02-15 05:05:03'), +(121,297,'2006-02-15 05:05:03'), +(121,338,'2006-02-15 05:05:03'), +(121,353,'2006-02-15 05:05:03'), +(121,449,'2006-02-15 05:05:03'), +(121,479,'2006-02-15 05:05:03'), +(121,517,'2006-02-15 05:05:03'), +(121,633,'2006-02-15 05:05:03'), +(121,654,'2006-02-15 05:05:03'), +(121,658,'2006-02-15 05:05:03'), +(121,666,'2006-02-15 05:05:03'), +(121,771,'2006-02-15 05:05:03'), +(121,780,'2006-02-15 05:05:03'), +(121,847,'2006-02-15 05:05:03'), +(121,884,'2006-02-15 05:05:03'), +(121,885,'2006-02-15 05:05:03'), +(121,966,'2006-02-15 05:05:03'), +(122,22,'2006-02-15 05:05:03'), +(122,29,'2006-02-15 05:05:03'), +(122,76,'2006-02-15 05:05:03'), +(122,83,'2006-02-15 05:05:03'), +(122,157,'2006-02-15 05:05:03'), +(122,158,'2006-02-15 05:05:03'), +(122,166,'2006-02-15 05:05:03'), +(122,227,'2006-02-15 05:05:03'), +(122,238,'2006-02-15 05:05:03'), +(122,300,'2006-02-15 05:05:03'), +(122,307,'2006-02-15 05:05:03'), +(122,363,'2006-02-15 05:05:03'), +(122,470,'2006-02-15 05:05:03'), +(122,489,'2006-02-15 05:05:03'), +(122,491,'2006-02-15 05:05:03'), +(122,542,'2006-02-15 05:05:03'), +(122,620,'2006-02-15 05:05:03'), +(122,649,'2006-02-15 05:05:03'), +(122,654,'2006-02-15 05:05:03'), +(122,673,'2006-02-15 05:05:03'), +(122,718,'2006-02-15 05:05:03'), +(122,795,'2006-02-15 05:05:03'), +(122,957,'2006-02-15 05:05:03'), +(122,961,'2006-02-15 05:05:03'), +(122,998,'2006-02-15 05:05:03'), +(123,3,'2006-02-15 05:05:03'), +(123,43,'2006-02-15 05:05:03'), +(123,67,'2006-02-15 05:05:03'), +(123,105,'2006-02-15 05:05:03'), +(123,148,'2006-02-15 05:05:03'), +(123,151,'2006-02-15 05:05:03'), +(123,185,'2006-02-15 05:05:03'), +(123,223,'2006-02-15 05:05:03'), +(123,234,'2006-02-15 05:05:03'), +(123,245,'2006-02-15 05:05:03'), +(123,246,'2006-02-15 05:05:03'), +(123,266,'2006-02-15 05:05:03'), +(123,286,'2006-02-15 05:05:03'), +(123,429,'2006-02-15 05:05:03'), +(123,442,'2006-02-15 05:05:03'), +(123,446,'2006-02-15 05:05:03'), +(123,479,'2006-02-15 05:05:03'), +(123,480,'2006-02-15 05:05:03'), +(123,494,'2006-02-15 05:05:03'), +(123,503,'2006-02-15 05:05:03'), +(123,530,'2006-02-15 05:05:03'), +(123,576,'2006-02-15 05:05:03'), +(123,577,'2006-02-15 05:05:03'), +(123,589,'2006-02-15 05:05:03'), +(123,593,'2006-02-15 05:05:03'), +(123,725,'2006-02-15 05:05:03'), +(123,730,'2006-02-15 05:05:03'), +(123,786,'2006-02-15 05:05:03'), +(123,860,'2006-02-15 05:05:03'), +(123,892,'2006-02-15 05:05:03'), +(123,926,'2006-02-15 05:05:03'), +(123,988,'2006-02-15 05:05:03'), +(124,22,'2006-02-15 05:05:03'), +(124,64,'2006-02-15 05:05:03'), +(124,106,'2006-02-15 05:05:03'), +(124,113,'2006-02-15 05:05:03'), +(124,190,'2006-02-15 05:05:03'), +(124,246,'2006-02-15 05:05:03'), +(124,260,'2006-02-15 05:05:03'), +(124,263,'2006-02-15 05:05:03'), +(124,289,'2006-02-15 05:05:03'), +(124,306,'2006-02-15 05:05:03'), +(124,312,'2006-02-15 05:05:03'), +(124,322,'2006-02-15 05:05:03'), +(124,343,'2006-02-15 05:05:03'), +(124,449,'2006-02-15 05:05:03'), +(124,468,'2006-02-15 05:05:03'), +(124,539,'2006-02-15 05:05:03'), +(124,601,'2006-02-15 05:05:03'), +(124,726,'2006-02-15 05:05:03'), +(124,742,'2006-02-15 05:05:03'), +(124,775,'2006-02-15 05:05:03'), +(124,785,'2006-02-15 05:05:03'), +(124,814,'2006-02-15 05:05:03'), +(124,858,'2006-02-15 05:05:03'), +(124,882,'2006-02-15 05:05:03'), +(124,987,'2006-02-15 05:05:03'), +(124,997,'2006-02-15 05:05:03'), +(125,62,'2006-02-15 05:05:03'), +(125,98,'2006-02-15 05:05:03'), +(125,100,'2006-02-15 05:05:03'), +(125,114,'2006-02-15 05:05:03'), +(125,175,'2006-02-15 05:05:03'), +(125,188,'2006-02-15 05:05:03'), +(125,204,'2006-02-15 05:05:03'), +(125,238,'2006-02-15 05:05:03'), +(125,250,'2006-02-15 05:05:03'), +(125,324,'2006-02-15 05:05:03'), +(125,338,'2006-02-15 05:05:03'), +(125,361,'2006-02-15 05:05:03'), +(125,367,'2006-02-15 05:05:03'), +(125,395,'2006-02-15 05:05:03'), +(125,414,'2006-02-15 05:05:03'), +(125,428,'2006-02-15 05:05:03'), +(125,429,'2006-02-15 05:05:03'), +(125,450,'2006-02-15 05:05:03'), +(125,497,'2006-02-15 05:05:03'), +(125,557,'2006-02-15 05:05:03'), +(125,568,'2006-02-15 05:05:03'), +(125,584,'2006-02-15 05:05:03'), +(125,602,'2006-02-15 05:05:03'), +(125,623,'2006-02-15 05:05:03'), +(125,664,'2006-02-15 05:05:03'), +(125,683,'2006-02-15 05:05:03'), +(125,710,'2006-02-15 05:05:03'), +(125,877,'2006-02-15 05:05:03'), +(125,908,'2006-02-15 05:05:03'), +(125,949,'2006-02-15 05:05:03'), +(125,965,'2006-02-15 05:05:03'), +(126,21,'2006-02-15 05:05:03'), +(126,34,'2006-02-15 05:05:03'), +(126,43,'2006-02-15 05:05:03'), +(126,58,'2006-02-15 05:05:03'), +(126,85,'2006-02-15 05:05:03'), +(126,96,'2006-02-15 05:05:03'), +(126,193,'2006-02-15 05:05:03'), +(126,194,'2006-02-15 05:05:03'), +(126,199,'2006-02-15 05:05:03'), +(126,256,'2006-02-15 05:05:03'), +(126,263,'2006-02-15 05:05:03'), +(126,288,'2006-02-15 05:05:03'), +(126,317,'2006-02-15 05:05:03'), +(126,347,'2006-02-15 05:05:03'), +(126,369,'2006-02-15 05:05:03'), +(126,370,'2006-02-15 05:05:03'), +(126,419,'2006-02-15 05:05:03'), +(126,468,'2006-02-15 05:05:03'), +(126,469,'2006-02-15 05:05:03'), +(126,545,'2006-02-15 05:05:03'), +(126,685,'2006-02-15 05:05:03'), +(126,836,'2006-02-15 05:05:03'), +(126,860,'2006-02-15 05:05:03'), +(127,36,'2006-02-15 05:05:03'), +(127,47,'2006-02-15 05:05:03'), +(127,48,'2006-02-15 05:05:03'), +(127,79,'2006-02-15 05:05:03'), +(127,119,'2006-02-15 05:05:03'), +(127,141,'2006-02-15 05:05:03'), +(127,157,'2006-02-15 05:05:03'), +(127,202,'2006-02-15 05:05:03'), +(127,286,'2006-02-15 05:05:03'), +(127,333,'2006-02-15 05:05:03'), +(127,354,'2006-02-15 05:05:03'), +(127,366,'2006-02-15 05:05:03'), +(127,382,'2006-02-15 05:05:03'), +(127,388,'2006-02-15 05:05:03'), +(127,411,'2006-02-15 05:05:03'), +(127,459,'2006-02-15 05:05:03'), +(127,553,'2006-02-15 05:05:03'), +(127,573,'2006-02-15 05:05:03'), +(127,613,'2006-02-15 05:05:03'), +(127,617,'2006-02-15 05:05:03'), +(127,641,'2006-02-15 05:05:03'), +(127,710,'2006-02-15 05:05:03'), +(127,727,'2006-02-15 05:05:03'), +(127,749,'2006-02-15 05:05:03'), +(127,763,'2006-02-15 05:05:03'), +(127,771,'2006-02-15 05:05:03'), +(127,791,'2006-02-15 05:05:03'), +(127,819,'2006-02-15 05:05:03'), +(127,839,'2006-02-15 05:05:03'), +(127,846,'2006-02-15 05:05:03'), +(127,911,'2006-02-15 05:05:03'), +(127,953,'2006-02-15 05:05:03'), +(127,970,'2006-02-15 05:05:03'), +(128,26,'2006-02-15 05:05:03'), +(128,82,'2006-02-15 05:05:03'), +(128,119,'2006-02-15 05:05:03'), +(128,168,'2006-02-15 05:05:03'), +(128,212,'2006-02-15 05:05:03'), +(128,238,'2006-02-15 05:05:03'), +(128,299,'2006-02-15 05:05:03'), +(128,312,'2006-02-15 05:05:03'), +(128,326,'2006-02-15 05:05:03'), +(128,336,'2006-02-15 05:05:03'), +(128,345,'2006-02-15 05:05:03'), +(128,407,'2006-02-15 05:05:03'), +(128,462,'2006-02-15 05:05:03'), +(128,485,'2006-02-15 05:05:03'), +(128,516,'2006-02-15 05:05:03'), +(128,564,'2006-02-15 05:05:03'), +(128,614,'2006-02-15 05:05:03'), +(128,650,'2006-02-15 05:05:03'), +(128,665,'2006-02-15 05:05:03'), +(128,671,'2006-02-15 05:05:03'), +(128,693,'2006-02-15 05:05:03'), +(128,696,'2006-02-15 05:05:03'), +(128,759,'2006-02-15 05:05:03'), +(128,774,'2006-02-15 05:05:03'), +(128,814,'2006-02-15 05:05:03'), +(128,899,'2006-02-15 05:05:03'), +(128,912,'2006-02-15 05:05:03'), +(128,944,'2006-02-15 05:05:03'), +(128,949,'2006-02-15 05:05:03'), +(128,965,'2006-02-15 05:05:03'), +(129,56,'2006-02-15 05:05:03'), +(129,89,'2006-02-15 05:05:03'), +(129,101,'2006-02-15 05:05:03'), +(129,166,'2006-02-15 05:05:03'), +(129,202,'2006-02-15 05:05:03'), +(129,230,'2006-02-15 05:05:03'), +(129,247,'2006-02-15 05:05:03'), +(129,249,'2006-02-15 05:05:03'), +(129,348,'2006-02-15 05:05:03'), +(129,367,'2006-02-15 05:05:03'), +(129,391,'2006-02-15 05:05:03'), +(129,418,'2006-02-15 05:05:03'), +(129,431,'2006-02-15 05:05:03'), +(129,452,'2006-02-15 05:05:03'), +(129,471,'2006-02-15 05:05:03'), +(129,520,'2006-02-15 05:05:03'), +(129,597,'2006-02-15 05:05:03'), +(129,602,'2006-02-15 05:05:03'), +(129,640,'2006-02-15 05:05:03'), +(129,669,'2006-02-15 05:05:03'), +(129,684,'2006-02-15 05:05:03'), +(129,705,'2006-02-15 05:05:03'), +(129,805,'2006-02-15 05:05:03'), +(129,826,'2006-02-15 05:05:03'), +(129,834,'2006-02-15 05:05:03'), +(129,857,'2006-02-15 05:05:03'), +(129,910,'2006-02-15 05:05:03'), +(129,920,'2006-02-15 05:05:03'), +(129,938,'2006-02-15 05:05:03'), +(129,962,'2006-02-15 05:05:03'), +(130,9,'2006-02-15 05:05:03'), +(130,26,'2006-02-15 05:05:03'), +(130,37,'2006-02-15 05:05:03'), +(130,43,'2006-02-15 05:05:03'), +(130,49,'2006-02-15 05:05:03'), +(130,57,'2006-02-15 05:05:03'), +(130,107,'2006-02-15 05:05:03'), +(130,112,'2006-02-15 05:05:03'), +(130,208,'2006-02-15 05:05:03'), +(130,326,'2006-02-15 05:05:03'), +(130,375,'2006-02-15 05:05:03'), +(130,416,'2006-02-15 05:05:03'), +(130,431,'2006-02-15 05:05:03'), +(130,452,'2006-02-15 05:05:03'), +(130,453,'2006-02-15 05:05:03'), +(130,478,'2006-02-15 05:05:03'), +(130,507,'2006-02-15 05:05:03'), +(130,525,'2006-02-15 05:05:03'), +(130,549,'2006-02-15 05:05:03'), +(130,592,'2006-02-15 05:05:03'), +(130,702,'2006-02-15 05:05:03'), +(130,725,'2006-02-15 05:05:03'), +(130,764,'2006-02-15 05:05:03'), +(130,809,'2006-02-15 05:05:03'), +(130,869,'2006-02-15 05:05:03'), +(130,930,'2006-02-15 05:05:03'), +(130,981,'2006-02-15 05:05:03'), +(131,48,'2006-02-15 05:05:03'), +(131,66,'2006-02-15 05:05:03'), +(131,94,'2006-02-15 05:05:03'), +(131,120,'2006-02-15 05:05:03'), +(131,147,'2006-02-15 05:05:03'), +(131,206,'2006-02-15 05:05:03'), +(131,320,'2006-02-15 05:05:03'), +(131,383,'2006-02-15 05:05:03'), +(131,432,'2006-02-15 05:05:03'), +(131,436,'2006-02-15 05:05:03'), +(131,450,'2006-02-15 05:05:03'), +(131,479,'2006-02-15 05:05:03'), +(131,494,'2006-02-15 05:05:03'), +(131,515,'2006-02-15 05:05:03'), +(131,539,'2006-02-15 05:05:03'), +(131,590,'2006-02-15 05:05:03'), +(131,647,'2006-02-15 05:05:03'), +(131,693,'2006-02-15 05:05:03'), +(131,713,'2006-02-15 05:05:03'), +(131,770,'2006-02-15 05:05:03'), +(131,798,'2006-02-15 05:05:03'), +(131,809,'2006-02-15 05:05:03'), +(131,875,'2006-02-15 05:05:03'), +(131,881,'2006-02-15 05:05:03'), +(131,921,'2006-02-15 05:05:03'), +(132,81,'2006-02-15 05:05:03'), +(132,82,'2006-02-15 05:05:03'), +(132,133,'2006-02-15 05:05:03'), +(132,156,'2006-02-15 05:05:03'), +(132,162,'2006-02-15 05:05:03'), +(132,311,'2006-02-15 05:05:03'), +(132,345,'2006-02-15 05:05:03'), +(132,377,'2006-02-15 05:05:03'), +(132,410,'2006-02-15 05:05:03'), +(132,538,'2006-02-15 05:05:03'), +(132,562,'2006-02-15 05:05:03'), +(132,586,'2006-02-15 05:05:03'), +(132,626,'2006-02-15 05:05:03'), +(132,637,'2006-02-15 05:05:03'), +(132,698,'2006-02-15 05:05:03'), +(132,756,'2006-02-15 05:05:03'), +(132,806,'2006-02-15 05:05:03'), +(132,897,'2006-02-15 05:05:03'), +(132,899,'2006-02-15 05:05:03'), +(132,904,'2006-02-15 05:05:03'), +(132,930,'2006-02-15 05:05:03'), +(132,987,'2006-02-15 05:05:03'), +(133,7,'2006-02-15 05:05:03'), +(133,51,'2006-02-15 05:05:03'), +(133,133,'2006-02-15 05:05:03'), +(133,172,'2006-02-15 05:05:03'), +(133,210,'2006-02-15 05:05:03'), +(133,270,'2006-02-15 05:05:03'), +(133,280,'2006-02-15 05:05:03'), +(133,286,'2006-02-15 05:05:03'), +(133,338,'2006-02-15 05:05:03'), +(133,342,'2006-02-15 05:05:03'), +(133,351,'2006-02-15 05:05:03'), +(133,368,'2006-02-15 05:05:03'), +(133,385,'2006-02-15 05:05:03'), +(133,390,'2006-02-15 05:05:03'), +(133,397,'2006-02-15 05:05:03'), +(133,410,'2006-02-15 05:05:03'), +(133,452,'2006-02-15 05:05:03'), +(133,463,'2006-02-15 05:05:03'), +(133,514,'2006-02-15 05:05:03'), +(133,588,'2006-02-15 05:05:03'), +(133,594,'2006-02-15 05:05:03'), +(133,635,'2006-02-15 05:05:03'), +(133,652,'2006-02-15 05:05:03'), +(133,727,'2006-02-15 05:05:03'), +(133,806,'2006-02-15 05:05:03'), +(133,868,'2006-02-15 05:05:03'), +(133,882,'2006-02-15 05:05:03'), +(133,894,'2006-02-15 05:05:03'), +(133,933,'2006-02-15 05:05:03'), +(133,952,'2006-02-15 05:05:03'), +(134,132,'2006-02-15 05:05:03'), +(134,145,'2006-02-15 05:05:03'), +(134,161,'2006-02-15 05:05:03'), +(134,219,'2006-02-15 05:05:03'), +(134,243,'2006-02-15 05:05:03'), +(134,250,'2006-02-15 05:05:03'), +(134,278,'2006-02-15 05:05:03'), +(134,341,'2006-02-15 05:05:03'), +(134,386,'2006-02-15 05:05:03'), +(134,413,'2006-02-15 05:05:03'), +(134,558,'2006-02-15 05:05:03'), +(134,588,'2006-02-15 05:05:03'), +(134,624,'2006-02-15 05:05:03'), +(134,655,'2006-02-15 05:05:03'), +(134,683,'2006-02-15 05:05:03'), +(134,690,'2006-02-15 05:05:03'), +(134,861,'2006-02-15 05:05:03'), +(134,896,'2006-02-15 05:05:03'), +(134,897,'2006-02-15 05:05:03'), +(134,915,'2006-02-15 05:05:03'), +(134,927,'2006-02-15 05:05:03'), +(134,936,'2006-02-15 05:05:03'), +(135,35,'2006-02-15 05:05:03'), +(135,41,'2006-02-15 05:05:03'), +(135,65,'2006-02-15 05:05:03'), +(135,88,'2006-02-15 05:05:03'), +(135,170,'2006-02-15 05:05:03'), +(135,269,'2006-02-15 05:05:03'), +(135,320,'2006-02-15 05:05:03'), +(135,353,'2006-02-15 05:05:03'), +(135,357,'2006-02-15 05:05:03'), +(135,364,'2006-02-15 05:05:03'), +(135,455,'2006-02-15 05:05:03'), +(135,458,'2006-02-15 05:05:03'), +(135,484,'2006-02-15 05:05:03'), +(135,541,'2006-02-15 05:05:03'), +(135,553,'2006-02-15 05:05:03'), +(135,616,'2006-02-15 05:05:03'), +(135,628,'2006-02-15 05:05:03'), +(135,719,'2006-02-15 05:05:03'), +(135,814,'2006-02-15 05:05:03'), +(135,905,'2006-02-15 05:05:03'), +(136,20,'2006-02-15 05:05:03'), +(136,25,'2006-02-15 05:05:03'), +(136,33,'2006-02-15 05:05:03'), +(136,56,'2006-02-15 05:05:03'), +(136,61,'2006-02-15 05:05:03'), +(136,193,'2006-02-15 05:05:03'), +(136,214,'2006-02-15 05:05:03'), +(136,229,'2006-02-15 05:05:03'), +(136,243,'2006-02-15 05:05:03'), +(136,256,'2006-02-15 05:05:03'), +(136,262,'2006-02-15 05:05:03'), +(136,271,'2006-02-15 05:05:03'), +(136,288,'2006-02-15 05:05:03'), +(136,300,'2006-02-15 05:05:03'), +(136,364,'2006-02-15 05:05:03'), +(136,401,'2006-02-15 05:05:03'), +(136,414,'2006-02-15 05:05:03'), +(136,420,'2006-02-15 05:05:03'), +(136,474,'2006-02-15 05:05:03'), +(136,485,'2006-02-15 05:05:03'), +(136,542,'2006-02-15 05:05:03'), +(136,552,'2006-02-15 05:05:03'), +(136,620,'2006-02-15 05:05:03'), +(136,649,'2006-02-15 05:05:03'), +(136,686,'2006-02-15 05:05:03'), +(136,781,'2006-02-15 05:05:03'), +(136,806,'2006-02-15 05:05:03'), +(136,808,'2006-02-15 05:05:03'), +(136,818,'2006-02-15 05:05:03'), +(136,842,'2006-02-15 05:05:03'), +(136,933,'2006-02-15 05:05:03'), +(136,993,'2006-02-15 05:05:03'), +(137,6,'2006-02-15 05:05:03'), +(137,14,'2006-02-15 05:05:03'), +(137,56,'2006-02-15 05:05:03'), +(137,96,'2006-02-15 05:05:03'), +(137,160,'2006-02-15 05:05:03'), +(137,224,'2006-02-15 05:05:03'), +(137,249,'2006-02-15 05:05:03'), +(137,254,'2006-02-15 05:05:03'), +(137,263,'2006-02-15 05:05:03'), +(137,268,'2006-02-15 05:05:03'), +(137,304,'2006-02-15 05:05:03'), +(137,390,'2006-02-15 05:05:03'), +(137,410,'2006-02-15 05:05:03'), +(137,433,'2006-02-15 05:05:03'), +(137,446,'2006-02-15 05:05:03'), +(137,489,'2006-02-15 05:05:03'), +(137,530,'2006-02-15 05:05:03'), +(137,564,'2006-02-15 05:05:03'), +(137,603,'2006-02-15 05:05:03'), +(137,610,'2006-02-15 05:05:03'), +(137,688,'2006-02-15 05:05:03'), +(137,703,'2006-02-15 05:05:03'), +(137,745,'2006-02-15 05:05:03'), +(137,758,'2006-02-15 05:05:03'), +(137,832,'2006-02-15 05:05:03'), +(137,841,'2006-02-15 05:05:03'), +(137,917,'2006-02-15 05:05:03'), +(138,8,'2006-02-15 05:05:03'), +(138,52,'2006-02-15 05:05:03'), +(138,61,'2006-02-15 05:05:03'), +(138,125,'2006-02-15 05:05:03'), +(138,157,'2006-02-15 05:05:03'), +(138,214,'2006-02-15 05:05:03'), +(138,258,'2006-02-15 05:05:03'), +(138,376,'2006-02-15 05:05:03'), +(138,403,'2006-02-15 05:05:03'), +(138,446,'2006-02-15 05:05:03'), +(138,453,'2006-02-15 05:05:03'), +(138,508,'2006-02-15 05:05:03'), +(138,553,'2006-02-15 05:05:03'), +(138,561,'2006-02-15 05:05:03'), +(138,583,'2006-02-15 05:05:03'), +(138,627,'2006-02-15 05:05:03'), +(138,639,'2006-02-15 05:05:03'), +(138,695,'2006-02-15 05:05:03'), +(138,747,'2006-02-15 05:05:03'), +(138,879,'2006-02-15 05:05:03'), +(138,885,'2006-02-15 05:05:03'), +(138,923,'2006-02-15 05:05:03'), +(138,970,'2006-02-15 05:05:03'), +(138,989,'2006-02-15 05:05:03'), +(139,20,'2006-02-15 05:05:03'), +(139,35,'2006-02-15 05:05:03'), +(139,57,'2006-02-15 05:05:03'), +(139,74,'2006-02-15 05:05:03'), +(139,90,'2006-02-15 05:05:03'), +(139,107,'2006-02-15 05:05:03'), +(139,155,'2006-02-15 05:05:03'), +(139,170,'2006-02-15 05:05:03'), +(139,181,'2006-02-15 05:05:03'), +(139,200,'2006-02-15 05:05:03'), +(139,229,'2006-02-15 05:05:03'), +(139,233,'2006-02-15 05:05:03'), +(139,261,'2006-02-15 05:05:03'), +(139,262,'2006-02-15 05:05:03'), +(139,266,'2006-02-15 05:05:03'), +(139,282,'2006-02-15 05:05:03'), +(139,284,'2006-02-15 05:05:03'), +(139,373,'2006-02-15 05:05:03'), +(139,447,'2006-02-15 05:05:03'), +(139,489,'2006-02-15 05:05:03'), +(139,529,'2006-02-15 05:05:03'), +(139,540,'2006-02-15 05:05:03'), +(139,570,'2006-02-15 05:05:03'), +(139,602,'2006-02-15 05:05:03'), +(139,605,'2006-02-15 05:05:03'), +(139,636,'2006-02-15 05:05:03'), +(139,691,'2006-02-15 05:05:03'), +(139,706,'2006-02-15 05:05:03'), +(139,719,'2006-02-15 05:05:03'), +(139,744,'2006-02-15 05:05:03'), +(139,746,'2006-02-15 05:05:03'), +(139,862,'2006-02-15 05:05:03'), +(139,892,'2006-02-15 05:05:03'), +(140,27,'2006-02-15 05:05:03'), +(140,77,'2006-02-15 05:05:03'), +(140,112,'2006-02-15 05:05:03'), +(140,135,'2006-02-15 05:05:03'), +(140,185,'2006-02-15 05:05:03'), +(140,258,'2006-02-15 05:05:03'), +(140,370,'2006-02-15 05:05:03'), +(140,373,'2006-02-15 05:05:03'), +(140,498,'2006-02-15 05:05:03'), +(140,509,'2006-02-15 05:05:03'), +(140,576,'2006-02-15 05:05:03'), +(140,587,'2006-02-15 05:05:03'), +(140,599,'2006-02-15 05:05:03'), +(140,608,'2006-02-15 05:05:03'), +(140,647,'2006-02-15 05:05:03'), +(140,665,'2006-02-15 05:05:03'), +(140,670,'2006-02-15 05:05:03'), +(140,693,'2006-02-15 05:05:03'), +(140,702,'2006-02-15 05:05:03'), +(140,729,'2006-02-15 05:05:03'), +(140,730,'2006-02-15 05:05:03'), +(140,731,'2006-02-15 05:05:03'), +(140,736,'2006-02-15 05:05:03'), +(140,742,'2006-02-15 05:05:03'), +(140,778,'2006-02-15 05:05:03'), +(140,820,'2006-02-15 05:05:03'), +(140,830,'2006-02-15 05:05:03'), +(140,835,'2006-02-15 05:05:03'), +(140,857,'2006-02-15 05:05:03'), +(140,923,'2006-02-15 05:05:03'), +(140,934,'2006-02-15 05:05:03'), +(140,999,'2006-02-15 05:05:03'), +(141,43,'2006-02-15 05:05:03'), +(141,67,'2006-02-15 05:05:03'), +(141,188,'2006-02-15 05:05:03'), +(141,191,'2006-02-15 05:05:03'), +(141,207,'2006-02-15 05:05:03'), +(141,223,'2006-02-15 05:05:03'), +(141,341,'2006-02-15 05:05:03'), +(141,358,'2006-02-15 05:05:03'), +(141,380,'2006-02-15 05:05:03'), +(141,395,'2006-02-15 05:05:03'), +(141,467,'2006-02-15 05:05:03'), +(141,491,'2006-02-15 05:05:03'), +(141,589,'2006-02-15 05:05:03'), +(141,607,'2006-02-15 05:05:03'), +(141,673,'2006-02-15 05:05:03'), +(141,740,'2006-02-15 05:05:03'), +(141,752,'2006-02-15 05:05:03'), +(141,768,'2006-02-15 05:05:03'), +(141,772,'2006-02-15 05:05:03'), +(141,787,'2006-02-15 05:05:03'), +(141,821,'2006-02-15 05:05:03'), +(141,829,'2006-02-15 05:05:03'), +(141,840,'2006-02-15 05:05:03'), +(141,849,'2006-02-15 05:05:03'), +(141,862,'2006-02-15 05:05:03'), +(141,863,'2006-02-15 05:05:03'), +(141,909,'2006-02-15 05:05:03'), +(141,992,'2006-02-15 05:05:03'), +(142,10,'2006-02-15 05:05:03'), +(142,18,'2006-02-15 05:05:03'), +(142,107,'2006-02-15 05:05:03'), +(142,139,'2006-02-15 05:05:03'), +(142,186,'2006-02-15 05:05:03'), +(142,199,'2006-02-15 05:05:03'), +(142,248,'2006-02-15 05:05:03'), +(142,328,'2006-02-15 05:05:03'), +(142,350,'2006-02-15 05:05:03'), +(142,371,'2006-02-15 05:05:03'), +(142,470,'2006-02-15 05:05:03'), +(142,481,'2006-02-15 05:05:03'), +(142,494,'2006-02-15 05:05:03'), +(142,501,'2006-02-15 05:05:03'), +(142,504,'2006-02-15 05:05:03'), +(142,540,'2006-02-15 05:05:03'), +(142,554,'2006-02-15 05:05:03'), +(142,575,'2006-02-15 05:05:03'), +(142,608,'2006-02-15 05:05:03'), +(142,710,'2006-02-15 05:05:03'), +(142,712,'2006-02-15 05:05:03'), +(142,735,'2006-02-15 05:05:03'), +(142,759,'2006-02-15 05:05:03'), +(142,794,'2006-02-15 05:05:03'), +(142,842,'2006-02-15 05:05:03'), +(142,859,'2006-02-15 05:05:03'), +(142,863,'2006-02-15 05:05:03'), +(142,875,'2006-02-15 05:05:03'), +(142,906,'2006-02-15 05:05:03'), +(142,914,'2006-02-15 05:05:03'), +(142,999,'2006-02-15 05:05:03'), +(143,47,'2006-02-15 05:05:03'), +(143,79,'2006-02-15 05:05:03'), +(143,141,'2006-02-15 05:05:03'), +(143,175,'2006-02-15 05:05:03'), +(143,232,'2006-02-15 05:05:03'), +(143,239,'2006-02-15 05:05:03'), +(143,316,'2006-02-15 05:05:03'), +(143,339,'2006-02-15 05:05:03'), +(143,361,'2006-02-15 05:05:03'), +(143,386,'2006-02-15 05:05:03'), +(143,404,'2006-02-15 05:05:03'), +(143,457,'2006-02-15 05:05:03'), +(143,485,'2006-02-15 05:05:03'), +(143,497,'2006-02-15 05:05:03'), +(143,560,'2006-02-15 05:05:03'), +(143,576,'2006-02-15 05:05:03'), +(143,603,'2006-02-15 05:05:03'), +(143,613,'2006-02-15 05:05:03'), +(143,659,'2006-02-15 05:05:03'), +(143,660,'2006-02-15 05:05:03'), +(143,680,'2006-02-15 05:05:03'), +(143,687,'2006-02-15 05:05:03'), +(143,690,'2006-02-15 05:05:03'), +(143,706,'2006-02-15 05:05:03'), +(143,792,'2006-02-15 05:05:03'), +(143,821,'2006-02-15 05:05:03'), +(143,830,'2006-02-15 05:05:03'), +(143,872,'2006-02-15 05:05:03'), +(143,878,'2006-02-15 05:05:03'), +(143,906,'2006-02-15 05:05:03'), +(143,958,'2006-02-15 05:05:03'), +(144,18,'2006-02-15 05:05:03'), +(144,67,'2006-02-15 05:05:03'), +(144,79,'2006-02-15 05:05:03'), +(144,90,'2006-02-15 05:05:03'), +(144,99,'2006-02-15 05:05:03'), +(144,105,'2006-02-15 05:05:03'), +(144,123,'2006-02-15 05:05:03'), +(144,125,'2006-02-15 05:05:03'), +(144,127,'2006-02-15 05:05:03'), +(144,130,'2006-02-15 05:05:03'), +(144,135,'2006-02-15 05:05:03'), +(144,164,'2006-02-15 05:05:03'), +(144,184,'2006-02-15 05:05:03'), +(144,216,'2006-02-15 05:05:03'), +(144,228,'2006-02-15 05:05:03'), +(144,260,'2006-02-15 05:05:03'), +(144,272,'2006-02-15 05:05:03'), +(144,291,'2006-02-15 05:05:03'), +(144,293,'2006-02-15 05:05:03'), +(144,312,'2006-02-15 05:05:03'), +(144,393,'2006-02-15 05:05:03'), +(144,396,'2006-02-15 05:05:03'), +(144,473,'2006-02-15 05:05:03'), +(144,504,'2006-02-15 05:05:03'), +(144,540,'2006-02-15 05:05:03'), +(144,599,'2006-02-15 05:05:03'), +(144,668,'2006-02-15 05:05:03'), +(144,702,'2006-02-15 05:05:03'), +(144,753,'2006-02-15 05:05:03'), +(144,762,'2006-02-15 05:05:03'), +(144,776,'2006-02-15 05:05:03'), +(144,785,'2006-02-15 05:05:03'), +(144,845,'2006-02-15 05:05:03'), +(144,894,'2006-02-15 05:05:03'), +(144,953,'2006-02-15 05:05:03'), +(145,39,'2006-02-15 05:05:03'), +(145,109,'2006-02-15 05:05:03'), +(145,120,'2006-02-15 05:05:03'), +(145,154,'2006-02-15 05:05:03'), +(145,155,'2006-02-15 05:05:03'), +(145,243,'2006-02-15 05:05:03'), +(145,293,'2006-02-15 05:05:03'), +(145,402,'2006-02-15 05:05:03'), +(145,409,'2006-02-15 05:05:03'), +(145,457,'2006-02-15 05:05:03'), +(145,475,'2006-02-15 05:05:03'), +(145,487,'2006-02-15 05:05:03'), +(145,494,'2006-02-15 05:05:03'), +(145,527,'2006-02-15 05:05:03'), +(145,592,'2006-02-15 05:05:03'), +(145,625,'2006-02-15 05:05:03'), +(145,629,'2006-02-15 05:05:03'), +(145,641,'2006-02-15 05:05:03'), +(145,661,'2006-02-15 05:05:03'), +(145,664,'2006-02-15 05:05:03'), +(145,692,'2006-02-15 05:05:03'), +(145,713,'2006-02-15 05:05:03'), +(145,726,'2006-02-15 05:05:03'), +(145,748,'2006-02-15 05:05:03'), +(145,822,'2006-02-15 05:05:03'), +(145,893,'2006-02-15 05:05:03'), +(145,923,'2006-02-15 05:05:03'), +(145,953,'2006-02-15 05:05:03'), +(146,12,'2006-02-15 05:05:03'), +(146,16,'2006-02-15 05:05:03'), +(146,33,'2006-02-15 05:05:03'), +(146,117,'2006-02-15 05:05:03'), +(146,177,'2006-02-15 05:05:03'), +(146,191,'2006-02-15 05:05:03'), +(146,197,'2006-02-15 05:05:03'), +(146,207,'2006-02-15 05:05:03'), +(146,218,'2006-02-15 05:05:03'), +(146,278,'2006-02-15 05:05:03'), +(146,296,'2006-02-15 05:05:03'), +(146,314,'2006-02-15 05:05:03'), +(146,320,'2006-02-15 05:05:03'), +(146,372,'2006-02-15 05:05:03'), +(146,384,'2006-02-15 05:05:03'), +(146,402,'2006-02-15 05:05:03'), +(146,410,'2006-02-15 05:05:03'), +(146,427,'2006-02-15 05:05:03'), +(146,429,'2006-02-15 05:05:03'), +(146,512,'2006-02-15 05:05:03'), +(146,514,'2006-02-15 05:05:03'), +(146,571,'2006-02-15 05:05:03'), +(146,591,'2006-02-15 05:05:03'), +(146,720,'2006-02-15 05:05:03'), +(146,731,'2006-02-15 05:05:03'), +(146,734,'2006-02-15 05:05:03'), +(146,871,'2006-02-15 05:05:03'), +(146,909,'2006-02-15 05:05:03'), +(146,922,'2006-02-15 05:05:03'), +(146,945,'2006-02-15 05:05:03'), +(146,955,'2006-02-15 05:05:03'), +(146,966,'2006-02-15 05:05:03'), +(146,969,'2006-02-15 05:05:03'), +(147,4,'2006-02-15 05:05:03'), +(147,85,'2006-02-15 05:05:03'), +(147,131,'2006-02-15 05:05:03'), +(147,139,'2006-02-15 05:05:03'), +(147,145,'2006-02-15 05:05:03'), +(147,178,'2006-02-15 05:05:03'), +(147,251,'2006-02-15 05:05:03'), +(147,254,'2006-02-15 05:05:03'), +(147,295,'2006-02-15 05:05:03'), +(147,298,'2006-02-15 05:05:03'), +(147,305,'2006-02-15 05:05:03'), +(147,310,'2006-02-15 05:05:03'), +(147,318,'2006-02-15 05:05:03'), +(147,333,'2006-02-15 05:05:03'), +(147,341,'2006-02-15 05:05:03'), +(147,351,'2006-02-15 05:05:03'), +(147,394,'2006-02-15 05:05:03'), +(147,402,'2006-02-15 05:05:03'), +(147,405,'2006-02-15 05:05:03'), +(147,410,'2006-02-15 05:05:03'), +(147,431,'2006-02-15 05:05:03'), +(147,443,'2006-02-15 05:05:03'), +(147,508,'2006-02-15 05:05:03'), +(147,554,'2006-02-15 05:05:03'), +(147,563,'2006-02-15 05:05:03'), +(147,649,'2006-02-15 05:05:03'), +(147,688,'2006-02-15 05:05:03'), +(147,708,'2006-02-15 05:05:03'), +(147,864,'2006-02-15 05:05:03'), +(147,957,'2006-02-15 05:05:03'), +(147,987,'2006-02-15 05:05:03'), +(148,27,'2006-02-15 05:05:03'), +(148,57,'2006-02-15 05:05:03'), +(148,133,'2006-02-15 05:05:03'), +(148,149,'2006-02-15 05:05:03'), +(148,226,'2006-02-15 05:05:03'), +(148,342,'2006-02-15 05:05:03'), +(148,368,'2006-02-15 05:05:03'), +(148,422,'2006-02-15 05:05:03'), +(148,468,'2006-02-15 05:05:03'), +(148,633,'2006-02-15 05:05:03'), +(148,718,'2006-02-15 05:05:03'), +(148,768,'2006-02-15 05:05:03'), +(148,772,'2006-02-15 05:05:03'), +(148,792,'2006-02-15 05:05:03'), +(149,53,'2006-02-15 05:05:03'), +(149,72,'2006-02-15 05:05:03'), +(149,95,'2006-02-15 05:05:03'), +(149,118,'2006-02-15 05:05:03'), +(149,139,'2006-02-15 05:05:03'), +(149,146,'2006-02-15 05:05:03'), +(149,153,'2006-02-15 05:05:03'), +(149,159,'2006-02-15 05:05:03'), +(149,169,'2006-02-15 05:05:03'), +(149,178,'2006-02-15 05:05:03'), +(149,188,'2006-02-15 05:05:03'), +(149,193,'2006-02-15 05:05:03'), +(149,339,'2006-02-15 05:05:03'), +(149,354,'2006-02-15 05:05:03'), +(149,362,'2006-02-15 05:05:03'), +(149,365,'2006-02-15 05:05:03'), +(149,458,'2006-02-15 05:05:03'), +(149,631,'2006-02-15 05:05:03'), +(149,670,'2006-02-15 05:05:03'), +(149,685,'2006-02-15 05:05:03'), +(149,761,'2006-02-15 05:05:03'), +(149,782,'2006-02-15 05:05:03'), +(149,810,'2006-02-15 05:05:03'), +(149,811,'2006-02-15 05:05:03'), +(149,899,'2006-02-15 05:05:03'), +(149,905,'2006-02-15 05:05:03'), +(149,913,'2006-02-15 05:05:03'), +(149,921,'2006-02-15 05:05:03'), +(149,947,'2006-02-15 05:05:03'), +(149,949,'2006-02-15 05:05:03'), +(149,992,'2006-02-15 05:05:03'), +(150,23,'2006-02-15 05:05:03'), +(150,63,'2006-02-15 05:05:03'), +(150,75,'2006-02-15 05:05:03'), +(150,94,'2006-02-15 05:05:03'), +(150,105,'2006-02-15 05:05:03'), +(150,168,'2006-02-15 05:05:03'), +(150,190,'2006-02-15 05:05:03'), +(150,206,'2006-02-15 05:05:03'), +(150,233,'2006-02-15 05:05:03'), +(150,270,'2006-02-15 05:05:03'), +(150,285,'2006-02-15 05:05:03'), +(150,306,'2006-02-15 05:05:03'), +(150,386,'2006-02-15 05:05:03'), +(150,433,'2006-02-15 05:05:03'), +(150,446,'2006-02-15 05:05:03'), +(150,447,'2006-02-15 05:05:03'), +(150,468,'2006-02-15 05:05:03'), +(150,508,'2006-02-15 05:05:03'), +(150,542,'2006-02-15 05:05:03'), +(150,551,'2006-02-15 05:05:03'), +(150,629,'2006-02-15 05:05:03'), +(150,647,'2006-02-15 05:05:03'), +(150,672,'2006-02-15 05:05:03'), +(150,697,'2006-02-15 05:05:03'), +(150,728,'2006-02-15 05:05:03'), +(150,777,'2006-02-15 05:05:03'), +(150,854,'2006-02-15 05:05:03'), +(150,873,'2006-02-15 05:05:03'), +(150,880,'2006-02-15 05:05:03'), +(150,887,'2006-02-15 05:05:03'), +(150,889,'2006-02-15 05:05:03'), +(150,892,'2006-02-15 05:05:03'), +(150,953,'2006-02-15 05:05:03'), +(150,962,'2006-02-15 05:05:03'), +(151,131,'2006-02-15 05:05:03'), +(151,144,'2006-02-15 05:05:03'), +(151,167,'2006-02-15 05:05:03'), +(151,170,'2006-02-15 05:05:03'), +(151,217,'2006-02-15 05:05:03'), +(151,232,'2006-02-15 05:05:03'), +(151,342,'2006-02-15 05:05:03'), +(151,367,'2006-02-15 05:05:03'), +(151,370,'2006-02-15 05:05:03'), +(151,382,'2006-02-15 05:05:03'), +(151,451,'2006-02-15 05:05:03'), +(151,463,'2006-02-15 05:05:03'), +(151,482,'2006-02-15 05:05:03'), +(151,501,'2006-02-15 05:05:03'), +(151,527,'2006-02-15 05:05:03'), +(151,539,'2006-02-15 05:05:03'), +(151,570,'2006-02-15 05:05:03'), +(151,574,'2006-02-15 05:05:03'), +(151,634,'2006-02-15 05:05:03'), +(151,658,'2006-02-15 05:05:03'), +(151,665,'2006-02-15 05:05:03'), +(151,703,'2006-02-15 05:05:03'), +(151,880,'2006-02-15 05:05:03'), +(151,892,'2006-02-15 05:05:03'), +(151,895,'2006-02-15 05:05:03'), +(151,989,'2006-02-15 05:05:03'), +(152,59,'2006-02-15 05:05:03'), +(152,153,'2006-02-15 05:05:03'), +(152,217,'2006-02-15 05:05:03'), +(152,248,'2006-02-15 05:05:03'), +(152,318,'2006-02-15 05:05:03'), +(152,332,'2006-02-15 05:05:03'), +(152,475,'2006-02-15 05:05:03'), +(152,476,'2006-02-15 05:05:03'), +(152,578,'2006-02-15 05:05:03'), +(152,607,'2006-02-15 05:05:03'), +(152,611,'2006-02-15 05:05:03'), +(152,615,'2006-02-15 05:05:03'), +(152,674,'2006-02-15 05:05:03'), +(152,680,'2006-02-15 05:05:03'), +(152,729,'2006-02-15 05:05:03'), +(152,768,'2006-02-15 05:05:03'), +(152,821,'2006-02-15 05:05:03'), +(152,846,'2006-02-15 05:05:03'), +(152,891,'2006-02-15 05:05:03'), +(152,898,'2006-02-15 05:05:03'), +(152,927,'2006-02-15 05:05:03'), +(152,964,'2006-02-15 05:05:03'), +(152,968,'2006-02-15 05:05:03'), +(153,47,'2006-02-15 05:05:03'), +(153,64,'2006-02-15 05:05:03'), +(153,136,'2006-02-15 05:05:03'), +(153,180,'2006-02-15 05:05:03'), +(153,203,'2006-02-15 05:05:03'), +(153,231,'2006-02-15 05:05:03'), +(153,444,'2006-02-15 05:05:03'), +(153,476,'2006-02-15 05:05:03'), +(153,480,'2006-02-15 05:05:03'), +(153,486,'2006-02-15 05:05:03'), +(153,536,'2006-02-15 05:05:03'), +(153,627,'2006-02-15 05:05:03'), +(153,732,'2006-02-15 05:05:03'), +(153,756,'2006-02-15 05:05:03'), +(153,766,'2006-02-15 05:05:03'), +(153,817,'2006-02-15 05:05:03'), +(153,847,'2006-02-15 05:05:03'), +(153,919,'2006-02-15 05:05:03'), +(153,938,'2006-02-15 05:05:03'), +(153,988,'2006-02-15 05:05:03'), +(154,27,'2006-02-15 05:05:03'), +(154,111,'2006-02-15 05:05:03'), +(154,141,'2006-02-15 05:05:03'), +(154,158,'2006-02-15 05:05:03'), +(154,169,'2006-02-15 05:05:03'), +(154,170,'2006-02-15 05:05:03'), +(154,193,'2006-02-15 05:05:03'), +(154,208,'2006-02-15 05:05:03'), +(154,274,'2006-02-15 05:05:03'), +(154,276,'2006-02-15 05:05:03'), +(154,282,'2006-02-15 05:05:03'), +(154,299,'2006-02-15 05:05:03'), +(154,314,'2006-02-15 05:05:03'), +(154,396,'2006-02-15 05:05:03'), +(154,399,'2006-02-15 05:05:03'), +(154,421,'2006-02-15 05:05:03'), +(154,440,'2006-02-15 05:05:03'), +(154,467,'2006-02-15 05:05:03'), +(154,474,'2006-02-15 05:05:03'), +(154,489,'2006-02-15 05:05:03'), +(154,588,'2006-02-15 05:05:03'), +(154,602,'2006-02-15 05:05:03'), +(154,680,'2006-02-15 05:05:03'), +(154,698,'2006-02-15 05:05:03'), +(154,802,'2006-02-15 05:05:03'), +(154,842,'2006-02-15 05:05:03'), +(154,954,'2006-02-15 05:05:03'), +(154,988,'2006-02-15 05:05:03'), +(155,20,'2006-02-15 05:05:03'), +(155,67,'2006-02-15 05:05:03'), +(155,128,'2006-02-15 05:05:03'), +(155,153,'2006-02-15 05:05:03'), +(155,220,'2006-02-15 05:05:03'), +(155,249,'2006-02-15 05:05:03'), +(155,303,'2006-02-15 05:05:03'), +(155,312,'2006-02-15 05:05:03'), +(155,359,'2006-02-15 05:05:03'), +(155,361,'2006-02-15 05:05:03'), +(155,383,'2006-02-15 05:05:03'), +(155,387,'2006-02-15 05:05:03'), +(155,407,'2006-02-15 05:05:03'), +(155,427,'2006-02-15 05:05:03'), +(155,459,'2006-02-15 05:05:03'), +(155,513,'2006-02-15 05:05:03'), +(155,584,'2006-02-15 05:05:03'), +(155,590,'2006-02-15 05:05:03'), +(155,630,'2006-02-15 05:05:03'), +(155,688,'2006-02-15 05:05:03'), +(155,757,'2006-02-15 05:05:03'), +(155,768,'2006-02-15 05:05:03'), +(155,785,'2006-02-15 05:05:03'), +(155,849,'2006-02-15 05:05:03'), +(155,885,'2006-02-15 05:05:03'), +(155,890,'2006-02-15 05:05:03'), +(155,941,'2006-02-15 05:05:03'), +(155,966,'2006-02-15 05:05:03'), +(155,987,'2006-02-15 05:05:03'), +(155,997,'2006-02-15 05:05:03'), +(155,1000,'2006-02-15 05:05:03'), +(156,53,'2006-02-15 05:05:03'), +(156,155,'2006-02-15 05:05:03'), +(156,198,'2006-02-15 05:05:03'), +(156,244,'2006-02-15 05:05:03'), +(156,262,'2006-02-15 05:05:03'), +(156,263,'2006-02-15 05:05:03'), +(156,285,'2006-02-15 05:05:03'), +(156,297,'2006-02-15 05:05:03'), +(156,301,'2006-02-15 05:05:03'), +(156,349,'2006-02-15 05:05:03'), +(156,379,'2006-02-15 05:05:03'), +(156,448,'2006-02-15 05:05:03'), +(156,462,'2006-02-15 05:05:03'), +(156,467,'2006-02-15 05:05:03'), +(156,504,'2006-02-15 05:05:03'), +(156,518,'2006-02-15 05:05:03'), +(156,593,'2006-02-15 05:05:03'), +(156,646,'2006-02-15 05:05:03'), +(156,705,'2006-02-15 05:05:03'), +(156,754,'2006-02-15 05:05:03'), +(156,775,'2006-02-15 05:05:03'), +(156,844,'2006-02-15 05:05:03'), +(157,10,'2006-02-15 05:05:03'), +(157,24,'2006-02-15 05:05:03'), +(157,34,'2006-02-15 05:05:03'), +(157,122,'2006-02-15 05:05:03'), +(157,159,'2006-02-15 05:05:03'), +(157,183,'2006-02-15 05:05:03'), +(157,210,'2006-02-15 05:05:03'), +(157,217,'2006-02-15 05:05:03'), +(157,291,'2006-02-15 05:05:03'), +(157,303,'2006-02-15 05:05:03'), +(157,321,'2006-02-15 05:05:03'), +(157,326,'2006-02-15 05:05:03'), +(157,353,'2006-02-15 05:05:03'), +(157,400,'2006-02-15 05:05:03'), +(157,406,'2006-02-15 05:05:03'), +(157,431,'2006-02-15 05:05:03'), +(157,496,'2006-02-15 05:05:03'), +(157,535,'2006-02-15 05:05:03'), +(157,573,'2006-02-15 05:05:03'), +(157,574,'2006-02-15 05:05:03'), +(157,604,'2006-02-15 05:05:03'), +(157,616,'2006-02-15 05:05:03'), +(157,642,'2006-02-15 05:05:03'), +(157,661,'2006-02-15 05:05:03'), +(157,696,'2006-02-15 05:05:03'), +(157,713,'2006-02-15 05:05:03'), +(157,802,'2006-02-15 05:05:03'), +(157,835,'2006-02-15 05:05:03'), +(157,874,'2006-02-15 05:05:03'), +(157,913,'2006-02-15 05:05:03'), +(157,967,'2006-02-15 05:05:03'), +(157,973,'2006-02-15 05:05:03'), +(158,32,'2006-02-15 05:05:03'), +(158,47,'2006-02-15 05:05:03'), +(158,64,'2006-02-15 05:05:03'), +(158,66,'2006-02-15 05:05:03'), +(158,102,'2006-02-15 05:05:03'), +(158,121,'2006-02-15 05:05:03'), +(158,177,'2006-02-15 05:05:03'), +(158,178,'2006-02-15 05:05:03'), +(158,188,'2006-02-15 05:05:03'), +(158,215,'2006-02-15 05:05:03'), +(158,241,'2006-02-15 05:05:03'), +(158,293,'2006-02-15 05:05:03'), +(158,437,'2006-02-15 05:05:03'), +(158,473,'2006-02-15 05:05:03'), +(158,483,'2006-02-15 05:05:03'), +(158,532,'2006-02-15 05:05:03'), +(158,555,'2006-02-15 05:05:03'), +(158,581,'2006-02-15 05:05:03'), +(158,601,'2006-02-15 05:05:03'), +(158,616,'2006-02-15 05:05:03'), +(158,626,'2006-02-15 05:05:03'), +(158,637,'2006-02-15 05:05:03'), +(158,799,'2006-02-15 05:05:03'), +(158,812,'2006-02-15 05:05:03'), +(158,824,'2006-02-15 05:05:03'), +(158,830,'2006-02-15 05:05:03'), +(158,840,'2006-02-15 05:05:03'), +(158,869,'2006-02-15 05:05:03'), +(158,879,'2006-02-15 05:05:03'), +(158,880,'2006-02-15 05:05:03'), +(158,894,'2006-02-15 05:05:03'), +(158,896,'2006-02-15 05:05:03'), +(158,967,'2006-02-15 05:05:03'), +(158,968,'2006-02-15 05:05:03'), +(158,990,'2006-02-15 05:05:03'), +(159,20,'2006-02-15 05:05:03'), +(159,82,'2006-02-15 05:05:03'), +(159,127,'2006-02-15 05:05:03'), +(159,187,'2006-02-15 05:05:03'), +(159,206,'2006-02-15 05:05:03'), +(159,208,'2006-02-15 05:05:03'), +(159,223,'2006-02-15 05:05:03'), +(159,248,'2006-02-15 05:05:03'), +(159,342,'2006-02-15 05:05:03'), +(159,343,'2006-02-15 05:05:03'), +(159,344,'2006-02-15 05:05:03'), +(159,364,'2006-02-15 05:05:03'), +(159,418,'2006-02-15 05:05:03'), +(159,549,'2006-02-15 05:05:03'), +(159,561,'2006-02-15 05:05:03'), +(159,600,'2006-02-15 05:05:03'), +(159,674,'2006-02-15 05:05:03'), +(159,680,'2006-02-15 05:05:03'), +(159,784,'2006-02-15 05:05:03'), +(159,789,'2006-02-15 05:05:03'), +(159,800,'2006-02-15 05:05:03'), +(159,802,'2006-02-15 05:05:03'), +(159,818,'2006-02-15 05:05:03'), +(159,876,'2006-02-15 05:05:03'), +(159,907,'2006-02-15 05:05:03'), +(159,978,'2006-02-15 05:05:03'), +(160,2,'2006-02-15 05:05:03'), +(160,17,'2006-02-15 05:05:03'), +(160,43,'2006-02-15 05:05:03'), +(160,242,'2006-02-15 05:05:03'), +(160,267,'2006-02-15 05:05:03'), +(160,275,'2006-02-15 05:05:03'), +(160,368,'2006-02-15 05:05:03'), +(160,455,'2006-02-15 05:05:03'), +(160,469,'2006-02-15 05:05:03'), +(160,484,'2006-02-15 05:05:03'), +(160,579,'2006-02-15 05:05:03'), +(160,660,'2006-02-15 05:05:03'), +(160,755,'2006-02-15 05:05:03'), +(160,767,'2006-02-15 05:05:03'), +(160,769,'2006-02-15 05:05:03'), +(160,794,'2006-02-15 05:05:03'), +(160,826,'2006-02-15 05:05:03'), +(160,883,'2006-02-15 05:05:03'), +(160,950,'2006-02-15 05:05:03'), +(160,954,'2006-02-15 05:05:03'), +(161,43,'2006-02-15 05:05:03'), +(161,58,'2006-02-15 05:05:03'), +(161,89,'2006-02-15 05:05:03'), +(161,90,'2006-02-15 05:05:03'), +(161,120,'2006-02-15 05:05:03'), +(161,188,'2006-02-15 05:05:03'), +(161,247,'2006-02-15 05:05:03'), +(161,269,'2006-02-15 05:05:03'), +(161,281,'2006-02-15 05:05:03'), +(161,340,'2006-02-15 05:05:03'), +(161,353,'2006-02-15 05:05:03'), +(161,401,'2006-02-15 05:05:03'), +(161,414,'2006-02-15 05:05:03'), +(161,425,'2006-02-15 05:05:03'), +(161,469,'2006-02-15 05:05:03'), +(161,526,'2006-02-15 05:05:03'), +(161,588,'2006-02-15 05:05:03'), +(161,644,'2006-02-15 05:05:03'), +(161,653,'2006-02-15 05:05:03'), +(161,655,'2006-02-15 05:05:03'), +(161,669,'2006-02-15 05:05:03'), +(161,684,'2006-02-15 05:05:03'), +(161,714,'2006-02-15 05:05:03'), +(161,749,'2006-02-15 05:05:03'), +(161,807,'2006-02-15 05:05:03'), +(161,825,'2006-02-15 05:05:03'), +(161,850,'2006-02-15 05:05:03'), +(161,880,'2006-02-15 05:05:03'), +(161,920,'2006-02-15 05:05:03'), +(161,921,'2006-02-15 05:05:03'), +(161,924,'2006-02-15 05:05:03'), +(161,927,'2006-02-15 05:05:03'), +(162,1,'2006-02-15 05:05:03'), +(162,4,'2006-02-15 05:05:03'), +(162,7,'2006-02-15 05:05:03'), +(162,18,'2006-02-15 05:05:03'), +(162,28,'2006-02-15 05:05:03'), +(162,32,'2006-02-15 05:05:03'), +(162,33,'2006-02-15 05:05:03'), +(162,41,'2006-02-15 05:05:03'), +(162,85,'2006-02-15 05:05:03'), +(162,121,'2006-02-15 05:05:03'), +(162,164,'2006-02-15 05:05:03'), +(162,274,'2006-02-15 05:05:03'), +(162,279,'2006-02-15 05:05:03'), +(162,409,'2006-02-15 05:05:03'), +(162,410,'2006-02-15 05:05:03'), +(162,415,'2006-02-15 05:05:03'), +(162,500,'2006-02-15 05:05:03'), +(162,574,'2006-02-15 05:05:03'), +(162,612,'2006-02-15 05:05:03'), +(162,636,'2006-02-15 05:05:03'), +(162,659,'2006-02-15 05:05:03'), +(162,786,'2006-02-15 05:05:03'), +(162,844,'2006-02-15 05:05:03'), +(162,909,'2006-02-15 05:05:03'), +(162,968,'2006-02-15 05:05:03'), +(163,30,'2006-02-15 05:05:03'), +(163,45,'2006-02-15 05:05:03'), +(163,166,'2006-02-15 05:05:03'), +(163,180,'2006-02-15 05:05:03'), +(163,239,'2006-02-15 05:05:03'), +(163,283,'2006-02-15 05:05:03'), +(163,303,'2006-02-15 05:05:03'), +(163,304,'2006-02-15 05:05:03'), +(163,307,'2006-02-15 05:05:03'), +(163,394,'2006-02-15 05:05:03'), +(163,409,'2006-02-15 05:05:03'), +(163,434,'2006-02-15 05:05:03'), +(163,444,'2006-02-15 05:05:03'), +(163,522,'2006-02-15 05:05:03'), +(163,719,'2006-02-15 05:05:03'), +(163,785,'2006-02-15 05:05:03'), +(163,833,'2006-02-15 05:05:03'), +(163,881,'2006-02-15 05:05:03'), +(163,891,'2006-02-15 05:05:03'), +(163,947,'2006-02-15 05:05:03'), +(163,996,'2006-02-15 05:05:03'), +(164,15,'2006-02-15 05:05:03'), +(164,23,'2006-02-15 05:05:03'), +(164,148,'2006-02-15 05:05:03'), +(164,169,'2006-02-15 05:05:03'), +(164,252,'2006-02-15 05:05:03'), +(164,324,'2006-02-15 05:05:03'), +(164,347,'2006-02-15 05:05:03'), +(164,367,'2006-02-15 05:05:03'), +(164,431,'2006-02-15 05:05:03'), +(164,448,'2006-02-15 05:05:03'), +(164,469,'2006-02-15 05:05:03'), +(164,545,'2006-02-15 05:05:03'), +(164,610,'2006-02-15 05:05:03'), +(164,613,'2006-02-15 05:05:03'), +(164,673,'2006-02-15 05:05:03'), +(164,681,'2006-02-15 05:05:03'), +(164,698,'2006-02-15 05:05:03'), +(164,801,'2006-02-15 05:05:03'), +(164,820,'2006-02-15 05:05:03'), +(164,832,'2006-02-15 05:05:03'), +(164,834,'2006-02-15 05:05:03'), +(164,851,'2006-02-15 05:05:03'), +(164,884,'2006-02-15 05:05:03'), +(164,908,'2006-02-15 05:05:03'), +(164,957,'2006-02-15 05:05:03'), +(164,984,'2006-02-15 05:05:03'), +(165,72,'2006-02-15 05:05:03'), +(165,95,'2006-02-15 05:05:03'), +(165,146,'2006-02-15 05:05:03'), +(165,204,'2006-02-15 05:05:03'), +(165,253,'2006-02-15 05:05:03'), +(165,286,'2006-02-15 05:05:03'), +(165,360,'2006-02-15 05:05:03'), +(165,375,'2006-02-15 05:05:03'), +(165,395,'2006-02-15 05:05:03'), +(165,421,'2006-02-15 05:05:03'), +(165,437,'2006-02-15 05:05:03'), +(165,473,'2006-02-15 05:05:03'), +(165,607,'2006-02-15 05:05:03'), +(165,644,'2006-02-15 05:05:03'), +(165,659,'2006-02-15 05:05:03'), +(165,693,'2006-02-15 05:05:03'), +(165,737,'2006-02-15 05:05:03'), +(165,779,'2006-02-15 05:05:03'), +(165,798,'2006-02-15 05:05:03'), +(165,807,'2006-02-15 05:05:03'), +(165,809,'2006-02-15 05:05:03'), +(165,832,'2006-02-15 05:05:03'), +(165,833,'2006-02-15 05:05:03'), +(165,947,'2006-02-15 05:05:03'), +(165,948,'2006-02-15 05:05:03'), +(165,962,'2006-02-15 05:05:03'), +(166,25,'2006-02-15 05:05:03'), +(166,38,'2006-02-15 05:05:03'), +(166,55,'2006-02-15 05:05:03'), +(166,61,'2006-02-15 05:05:03'), +(166,68,'2006-02-15 05:05:03'), +(166,86,'2006-02-15 05:05:03'), +(166,146,'2006-02-15 05:05:03'), +(166,255,'2006-02-15 05:05:03'), +(166,297,'2006-02-15 05:05:03'), +(166,306,'2006-02-15 05:05:03'), +(166,326,'2006-02-15 05:05:03'), +(166,361,'2006-02-15 05:05:03'), +(166,366,'2006-02-15 05:05:03'), +(166,426,'2006-02-15 05:05:03'), +(166,580,'2006-02-15 05:05:03'), +(166,622,'2006-02-15 05:05:03'), +(166,674,'2006-02-15 05:05:03'), +(166,714,'2006-02-15 05:05:03'), +(166,788,'2006-02-15 05:05:03'), +(166,867,'2006-02-15 05:05:03'), +(166,944,'2006-02-15 05:05:03'), +(166,1000,'2006-02-15 05:05:03'), +(167,17,'2006-02-15 05:05:03'), +(167,25,'2006-02-15 05:05:03'), +(167,63,'2006-02-15 05:05:03'), +(167,72,'2006-02-15 05:05:03'), +(167,107,'2006-02-15 05:05:03'), +(167,120,'2006-02-15 05:05:03'), +(167,191,'2006-02-15 05:05:03'), +(167,294,'2006-02-15 05:05:03'), +(167,319,'2006-02-15 05:05:03'), +(167,339,'2006-02-15 05:05:03'), +(167,341,'2006-02-15 05:05:03'), +(167,496,'2006-02-15 05:05:03'), +(167,554,'2006-02-15 05:05:03'), +(167,626,'2006-02-15 05:05:03'), +(167,628,'2006-02-15 05:05:03'), +(167,672,'2006-02-15 05:05:03'), +(167,692,'2006-02-15 05:05:03'), +(167,717,'2006-02-15 05:05:03'), +(167,734,'2006-02-15 05:05:03'), +(167,794,'2006-02-15 05:05:03'), +(167,800,'2006-02-15 05:05:03'), +(167,802,'2006-02-15 05:05:03'), +(167,856,'2006-02-15 05:05:03'), +(167,864,'2006-02-15 05:05:03'), +(167,882,'2006-02-15 05:05:03'), +(167,923,'2006-02-15 05:05:03'), +(168,32,'2006-02-15 05:05:03'), +(168,56,'2006-02-15 05:05:03'), +(168,92,'2006-02-15 05:05:03'), +(168,115,'2006-02-15 05:05:03'), +(168,188,'2006-02-15 05:05:03'), +(168,196,'2006-02-15 05:05:03'), +(168,208,'2006-02-15 05:05:03'), +(168,237,'2006-02-15 05:05:03'), +(168,241,'2006-02-15 05:05:03'), +(168,255,'2006-02-15 05:05:03'), +(168,305,'2006-02-15 05:05:03'), +(168,336,'2006-02-15 05:05:03'), +(168,387,'2006-02-15 05:05:03'), +(168,433,'2006-02-15 05:05:03'), +(168,438,'2006-02-15 05:05:03'), +(168,519,'2006-02-15 05:05:03'), +(168,602,'2006-02-15 05:05:03'), +(168,619,'2006-02-15 05:05:03'), +(168,626,'2006-02-15 05:05:03'), +(168,652,'2006-02-15 05:05:03'), +(168,678,'2006-02-15 05:05:03'), +(168,685,'2006-02-15 05:05:03'), +(168,804,'2006-02-15 05:05:03'), +(168,807,'2006-02-15 05:05:03'), +(168,826,'2006-02-15 05:05:03'), +(168,841,'2006-02-15 05:05:03'), +(168,886,'2006-02-15 05:05:03'), +(168,889,'2006-02-15 05:05:03'), +(168,892,'2006-02-15 05:05:03'), +(168,927,'2006-02-15 05:05:03'), +(168,959,'2006-02-15 05:05:03'), +(169,6,'2006-02-15 05:05:03'), +(169,78,'2006-02-15 05:05:03'), +(169,93,'2006-02-15 05:05:03'), +(169,246,'2006-02-15 05:05:03'), +(169,248,'2006-02-15 05:05:03'), +(169,289,'2006-02-15 05:05:03'), +(169,301,'2006-02-15 05:05:03'), +(169,326,'2006-02-15 05:05:03'), +(169,349,'2006-02-15 05:05:03'), +(169,372,'2006-02-15 05:05:03'), +(169,398,'2006-02-15 05:05:03'), +(169,434,'2006-02-15 05:05:03'), +(169,505,'2006-02-15 05:05:03'), +(169,564,'2006-02-15 05:05:03'), +(169,571,'2006-02-15 05:05:03'), +(169,634,'2006-02-15 05:05:03'), +(169,642,'2006-02-15 05:05:03'), +(169,673,'2006-02-15 05:05:03'), +(169,694,'2006-02-15 05:05:03'), +(169,727,'2006-02-15 05:05:03'), +(169,778,'2006-02-15 05:05:03'), +(169,815,'2006-02-15 05:05:03'), +(169,847,'2006-02-15 05:05:03'), +(169,849,'2006-02-15 05:05:03'), +(169,894,'2006-02-15 05:05:03'), +(169,897,'2006-02-15 05:05:03'), +(169,954,'2006-02-15 05:05:03'), +(169,992,'2006-02-15 05:05:03'), +(169,998,'2006-02-15 05:05:03'), +(170,7,'2006-02-15 05:05:03'), +(170,15,'2006-02-15 05:05:03'), +(170,27,'2006-02-15 05:05:03'), +(170,33,'2006-02-15 05:05:03'), +(170,102,'2006-02-15 05:05:03'), +(170,139,'2006-02-15 05:05:03'), +(170,180,'2006-02-15 05:05:03'), +(170,184,'2006-02-15 05:05:03'), +(170,212,'2006-02-15 05:05:03'), +(170,299,'2006-02-15 05:05:03'), +(170,322,'2006-02-15 05:05:03'), +(170,358,'2006-02-15 05:05:03'), +(170,416,'2006-02-15 05:05:03'), +(170,508,'2006-02-15 05:05:03'), +(170,537,'2006-02-15 05:05:03'), +(170,705,'2006-02-15 05:05:03'), +(170,758,'2006-02-15 05:05:03'), +(170,764,'2006-02-15 05:05:03'), +(170,868,'2006-02-15 05:05:03'), +(170,877,'2006-02-15 05:05:03'), +(170,886,'2006-02-15 05:05:03'), +(170,925,'2006-02-15 05:05:03'), +(170,993,'2006-02-15 05:05:03'), +(170,996,'2006-02-15 05:05:03'), +(171,49,'2006-02-15 05:05:03'), +(171,146,'2006-02-15 05:05:03'), +(171,166,'2006-02-15 05:05:03'), +(171,181,'2006-02-15 05:05:03'), +(171,219,'2006-02-15 05:05:03'), +(171,273,'2006-02-15 05:05:03'), +(171,296,'2006-02-15 05:05:03'), +(171,318,'2006-02-15 05:05:03'), +(171,342,'2006-02-15 05:05:03'), +(171,397,'2006-02-15 05:05:03'), +(171,447,'2006-02-15 05:05:03'), +(171,450,'2006-02-15 05:05:03'), +(171,466,'2006-02-15 05:05:03'), +(171,549,'2006-02-15 05:05:03'), +(171,560,'2006-02-15 05:05:03'), +(171,566,'2006-02-15 05:05:03'), +(171,608,'2006-02-15 05:05:03'), +(171,625,'2006-02-15 05:05:03'), +(171,645,'2006-02-15 05:05:03'), +(171,701,'2006-02-15 05:05:03'), +(171,761,'2006-02-15 05:05:03'), +(171,779,'2006-02-15 05:05:03'), +(171,849,'2006-02-15 05:05:03'), +(171,872,'2006-02-15 05:05:03'), +(171,892,'2006-02-15 05:05:03'), +(171,898,'2006-02-15 05:05:03'), +(171,903,'2006-02-15 05:05:03'), +(171,953,'2006-02-15 05:05:03'), +(172,57,'2006-02-15 05:05:03'), +(172,100,'2006-02-15 05:05:03'), +(172,148,'2006-02-15 05:05:03'), +(172,215,'2006-02-15 05:05:03'), +(172,302,'2006-02-15 05:05:03'), +(172,345,'2006-02-15 05:05:03'), +(172,368,'2006-02-15 05:05:03'), +(172,385,'2006-02-15 05:05:03'), +(172,423,'2006-02-15 05:05:03'), +(172,487,'2006-02-15 05:05:03'), +(172,493,'2006-02-15 05:05:03'), +(172,529,'2006-02-15 05:05:03'), +(172,538,'2006-02-15 05:05:03'), +(172,567,'2006-02-15 05:05:03'), +(172,609,'2006-02-15 05:05:03'), +(172,639,'2006-02-15 05:05:03'), +(172,649,'2006-02-15 05:05:03'), +(172,661,'2006-02-15 05:05:03'), +(172,667,'2006-02-15 05:05:03'), +(172,710,'2006-02-15 05:05:03'), +(172,744,'2006-02-15 05:05:03'), +(172,758,'2006-02-15 05:05:03'), +(172,771,'2006-02-15 05:05:03'), +(172,833,'2006-02-15 05:05:03'), +(172,959,'2006-02-15 05:05:03'), +(173,49,'2006-02-15 05:05:03'), +(173,55,'2006-02-15 05:05:03'), +(173,74,'2006-02-15 05:05:03'), +(173,80,'2006-02-15 05:05:03'), +(173,106,'2006-02-15 05:05:03'), +(173,154,'2006-02-15 05:05:03'), +(173,162,'2006-02-15 05:05:03'), +(173,188,'2006-02-15 05:05:03'), +(173,235,'2006-02-15 05:05:03'), +(173,313,'2006-02-15 05:05:03'), +(173,379,'2006-02-15 05:05:03'), +(173,405,'2006-02-15 05:05:03'), +(173,491,'2006-02-15 05:05:03'), +(173,496,'2006-02-15 05:05:03'), +(173,529,'2006-02-15 05:05:03'), +(173,550,'2006-02-15 05:05:03'), +(173,564,'2006-02-15 05:05:03'), +(173,571,'2006-02-15 05:05:03'), +(173,592,'2006-02-15 05:05:03'), +(173,688,'2006-02-15 05:05:03'), +(173,753,'2006-02-15 05:05:03'), +(173,757,'2006-02-15 05:05:03'), +(173,852,'2006-02-15 05:05:03'), +(173,857,'2006-02-15 05:05:03'), +(173,921,'2006-02-15 05:05:03'), +(173,928,'2006-02-15 05:05:03'), +(173,933,'2006-02-15 05:05:03'), +(174,11,'2006-02-15 05:05:03'), +(174,61,'2006-02-15 05:05:03'), +(174,168,'2006-02-15 05:05:03'), +(174,298,'2006-02-15 05:05:03'), +(174,352,'2006-02-15 05:05:03'), +(174,442,'2006-02-15 05:05:03'), +(174,451,'2006-02-15 05:05:03'), +(174,496,'2006-02-15 05:05:03'), +(174,610,'2006-02-15 05:05:03'), +(174,618,'2006-02-15 05:05:03'), +(174,622,'2006-02-15 05:05:03'), +(174,659,'2006-02-15 05:05:03'), +(174,677,'2006-02-15 05:05:03'), +(174,705,'2006-02-15 05:05:03'), +(174,722,'2006-02-15 05:05:03'), +(174,780,'2006-02-15 05:05:03'), +(174,797,'2006-02-15 05:05:03'), +(174,809,'2006-02-15 05:05:03'), +(174,827,'2006-02-15 05:05:03'), +(174,830,'2006-02-15 05:05:03'), +(174,852,'2006-02-15 05:05:03'), +(174,853,'2006-02-15 05:05:03'), +(174,879,'2006-02-15 05:05:03'), +(174,982,'2006-02-15 05:05:03'), +(175,9,'2006-02-15 05:05:03'), +(175,29,'2006-02-15 05:05:03'), +(175,67,'2006-02-15 05:05:03'), +(175,129,'2006-02-15 05:05:03'), +(175,155,'2006-02-15 05:05:03'), +(175,190,'2006-02-15 05:05:03'), +(175,191,'2006-02-15 05:05:03'), +(175,362,'2006-02-15 05:05:03'), +(175,405,'2006-02-15 05:05:03'), +(175,424,'2006-02-15 05:05:03'), +(175,439,'2006-02-15 05:05:03'), +(175,442,'2006-02-15 05:05:03'), +(175,483,'2006-02-15 05:05:03'), +(175,591,'2006-02-15 05:05:03'), +(175,596,'2006-02-15 05:05:03'), +(175,616,'2006-02-15 05:05:03'), +(175,719,'2006-02-15 05:05:03'), +(175,729,'2006-02-15 05:05:03'), +(175,772,'2006-02-15 05:05:03'), +(175,778,'2006-02-15 05:05:03'), +(175,828,'2006-02-15 05:05:03'), +(175,842,'2006-02-15 05:05:03'), +(175,890,'2006-02-15 05:05:03'), +(175,908,'2006-02-15 05:05:03'), +(175,977,'2006-02-15 05:05:03'), +(175,978,'2006-02-15 05:05:03'), +(175,998,'2006-02-15 05:05:03'), +(176,13,'2006-02-15 05:05:03'), +(176,73,'2006-02-15 05:05:03'), +(176,89,'2006-02-15 05:05:03'), +(176,150,'2006-02-15 05:05:03'), +(176,162,'2006-02-15 05:05:03'), +(176,238,'2006-02-15 05:05:03'), +(176,252,'2006-02-15 05:05:03'), +(176,303,'2006-02-15 05:05:03'), +(176,320,'2006-02-15 05:05:03'), +(176,401,'2006-02-15 05:05:03'), +(176,417,'2006-02-15 05:05:03'), +(176,441,'2006-02-15 05:05:03'), +(176,458,'2006-02-15 05:05:03'), +(176,461,'2006-02-15 05:05:03'), +(176,517,'2006-02-15 05:05:03'), +(176,521,'2006-02-15 05:05:03'), +(176,543,'2006-02-15 05:05:03'), +(176,573,'2006-02-15 05:05:03'), +(176,699,'2006-02-15 05:05:03'), +(176,726,'2006-02-15 05:05:03'), +(176,740,'2006-02-15 05:05:03'), +(176,746,'2006-02-15 05:05:03'), +(176,758,'2006-02-15 05:05:03'), +(176,802,'2006-02-15 05:05:03'), +(176,827,'2006-02-15 05:05:03'), +(176,839,'2006-02-15 05:05:03'), +(176,859,'2006-02-15 05:05:03'), +(176,872,'2006-02-15 05:05:03'), +(176,946,'2006-02-15 05:05:03'), +(177,12,'2006-02-15 05:05:03'), +(177,39,'2006-02-15 05:05:03'), +(177,52,'2006-02-15 05:05:03'), +(177,55,'2006-02-15 05:05:03'), +(177,86,'2006-02-15 05:05:03'), +(177,175,'2006-02-15 05:05:03'), +(177,188,'2006-02-15 05:05:03'), +(177,235,'2006-02-15 05:05:03'), +(177,237,'2006-02-15 05:05:03'), +(177,289,'2006-02-15 05:05:03'), +(177,363,'2006-02-15 05:05:03'), +(177,401,'2006-02-15 05:05:03'), +(177,433,'2006-02-15 05:05:03'), +(177,458,'2006-02-15 05:05:03'), +(177,522,'2006-02-15 05:05:03'), +(177,543,'2006-02-15 05:05:03'), +(177,563,'2006-02-15 05:05:03'), +(177,649,'2006-02-15 05:05:03'), +(177,683,'2006-02-15 05:05:03'), +(177,684,'2006-02-15 05:05:03'), +(177,726,'2006-02-15 05:05:03'), +(177,751,'2006-02-15 05:05:03'), +(177,763,'2006-02-15 05:05:03'), +(177,764,'2006-02-15 05:05:03'), +(177,827,'2006-02-15 05:05:03'), +(177,910,'2006-02-15 05:05:03'), +(177,956,'2006-02-15 05:05:03'), +(178,30,'2006-02-15 05:05:03'), +(178,34,'2006-02-15 05:05:03'), +(178,109,'2006-02-15 05:05:03'), +(178,146,'2006-02-15 05:05:03'), +(178,160,'2006-02-15 05:05:03'), +(178,164,'2006-02-15 05:05:03'), +(178,194,'2006-02-15 05:05:03'), +(178,197,'2006-02-15 05:05:03'), +(178,273,'2006-02-15 05:05:03'), +(178,311,'2006-02-15 05:05:03'), +(178,397,'2006-02-15 05:05:03'), +(178,483,'2006-02-15 05:05:03'), +(178,517,'2006-02-15 05:05:03'), +(178,537,'2006-02-15 05:05:03'), +(178,587,'2006-02-15 05:05:03'), +(178,708,'2006-02-15 05:05:03'), +(178,733,'2006-02-15 05:05:03'), +(178,744,'2006-02-15 05:05:03'), +(178,762,'2006-02-15 05:05:03'), +(178,930,'2006-02-15 05:05:03'), +(178,974,'2006-02-15 05:05:03'), +(178,983,'2006-02-15 05:05:03'), +(178,1000,'2006-02-15 05:05:03'), +(179,24,'2006-02-15 05:05:03'), +(179,27,'2006-02-15 05:05:03'), +(179,65,'2006-02-15 05:05:03'), +(179,85,'2006-02-15 05:05:03'), +(179,109,'2006-02-15 05:05:03'), +(179,131,'2006-02-15 05:05:03'), +(179,159,'2006-02-15 05:05:03'), +(179,193,'2006-02-15 05:05:03'), +(179,250,'2006-02-15 05:05:03'), +(179,291,'2006-02-15 05:05:03'), +(179,353,'2006-02-15 05:05:03'), +(179,415,'2006-02-15 05:05:03'), +(179,463,'2006-02-15 05:05:03'), +(179,468,'2006-02-15 05:05:03'), +(179,489,'2006-02-15 05:05:03'), +(179,566,'2006-02-15 05:05:03'), +(179,588,'2006-02-15 05:05:03'), +(179,650,'2006-02-15 05:05:03'), +(179,698,'2006-02-15 05:05:03'), +(179,732,'2006-02-15 05:05:03'), +(179,737,'2006-02-15 05:05:03'), +(179,769,'2006-02-15 05:05:03'), +(179,811,'2006-02-15 05:05:03'), +(179,817,'2006-02-15 05:05:03'), +(179,852,'2006-02-15 05:05:03'), +(179,924,'2006-02-15 05:05:03'), +(179,931,'2006-02-15 05:05:03'), +(179,960,'2006-02-15 05:05:03'), +(179,976,'2006-02-15 05:05:03'), +(180,12,'2006-02-15 05:05:03'), +(180,33,'2006-02-15 05:05:03'), +(180,144,'2006-02-15 05:05:03'), +(180,195,'2006-02-15 05:05:03'), +(180,258,'2006-02-15 05:05:03'), +(180,441,'2006-02-15 05:05:03'), +(180,506,'2006-02-15 05:05:03'), +(180,561,'2006-02-15 05:05:03'), +(180,609,'2006-02-15 05:05:03'), +(180,622,'2006-02-15 05:05:03'), +(180,628,'2006-02-15 05:05:03'), +(180,657,'2006-02-15 05:05:03'), +(180,724,'2006-02-15 05:05:03'), +(180,729,'2006-02-15 05:05:03'), +(180,732,'2006-02-15 05:05:03'), +(180,777,'2006-02-15 05:05:03'), +(180,809,'2006-02-15 05:05:03'), +(180,811,'2006-02-15 05:05:03'), +(180,820,'2006-02-15 05:05:03'), +(180,824,'2006-02-15 05:05:03'), +(180,847,'2006-02-15 05:05:03'), +(180,869,'2006-02-15 05:05:03'), +(180,874,'2006-02-15 05:05:03'), +(180,955,'2006-02-15 05:05:03'), +(180,963,'2006-02-15 05:05:03'), +(181,5,'2006-02-15 05:05:03'), +(181,40,'2006-02-15 05:05:03'), +(181,74,'2006-02-15 05:05:03'), +(181,78,'2006-02-15 05:05:03'), +(181,83,'2006-02-15 05:05:03'), +(181,152,'2006-02-15 05:05:03'), +(181,195,'2006-02-15 05:05:03'), +(181,233,'2006-02-15 05:05:03'), +(181,286,'2006-02-15 05:05:03'), +(181,301,'2006-02-15 05:05:03'), +(181,311,'2006-02-15 05:05:03'), +(181,381,'2006-02-15 05:05:03'), +(181,387,'2006-02-15 05:05:03'), +(181,403,'2006-02-15 05:05:03'), +(181,409,'2006-02-15 05:05:03'), +(181,420,'2006-02-15 05:05:03'), +(181,437,'2006-02-15 05:05:03'), +(181,456,'2006-02-15 05:05:03'), +(181,507,'2006-02-15 05:05:03'), +(181,522,'2006-02-15 05:05:03'), +(181,539,'2006-02-15 05:05:03'), +(181,542,'2006-02-15 05:05:03'), +(181,546,'2006-02-15 05:05:03'), +(181,579,'2006-02-15 05:05:03'), +(181,596,'2006-02-15 05:05:03'), +(181,604,'2006-02-15 05:05:03'), +(181,609,'2006-02-15 05:05:03'), +(181,625,'2006-02-15 05:05:03'), +(181,744,'2006-02-15 05:05:03'), +(181,816,'2006-02-15 05:05:03'), +(181,836,'2006-02-15 05:05:03'), +(181,868,'2006-02-15 05:05:03'), +(181,870,'2006-02-15 05:05:03'), +(181,874,'2006-02-15 05:05:03'), +(181,892,'2006-02-15 05:05:03'), +(181,907,'2006-02-15 05:05:03'), +(181,911,'2006-02-15 05:05:03'), +(181,921,'2006-02-15 05:05:03'), +(181,991,'2006-02-15 05:05:03'), +(182,33,'2006-02-15 05:05:03'), +(182,160,'2006-02-15 05:05:03'), +(182,301,'2006-02-15 05:05:03'), +(182,324,'2006-02-15 05:05:03'), +(182,346,'2006-02-15 05:05:03'), +(182,362,'2006-02-15 05:05:03'), +(182,391,'2006-02-15 05:05:03'), +(182,413,'2006-02-15 05:05:03'), +(182,421,'2006-02-15 05:05:03'), +(182,437,'2006-02-15 05:05:03'), +(182,590,'2006-02-15 05:05:03'), +(182,639,'2006-02-15 05:05:03'), +(182,668,'2006-02-15 05:05:03'), +(182,677,'2006-02-15 05:05:03'), +(182,679,'2006-02-15 05:05:03'), +(182,695,'2006-02-15 05:05:03'), +(182,714,'2006-02-15 05:05:03'), +(182,720,'2006-02-15 05:05:03'), +(182,819,'2006-02-15 05:05:03'), +(182,828,'2006-02-15 05:05:03'), +(182,845,'2006-02-15 05:05:03'), +(182,864,'2006-02-15 05:05:03'), +(182,940,'2006-02-15 05:05:03'), +(182,990,'2006-02-15 05:05:03'), +(183,32,'2006-02-15 05:05:03'), +(183,40,'2006-02-15 05:05:03'), +(183,71,'2006-02-15 05:05:03'), +(183,113,'2006-02-15 05:05:03'), +(183,313,'2006-02-15 05:05:03'), +(183,388,'2006-02-15 05:05:03'), +(183,389,'2006-02-15 05:05:03'), +(183,390,'2006-02-15 05:05:03'), +(183,495,'2006-02-15 05:05:03'), +(183,520,'2006-02-15 05:05:03'), +(183,576,'2006-02-15 05:05:03'), +(183,636,'2006-02-15 05:05:03'), +(183,715,'2006-02-15 05:05:03'), +(183,850,'2006-02-15 05:05:03'), +(183,862,'2006-02-15 05:05:03'), +(183,914,'2006-02-15 05:05:03'), +(183,941,'2006-02-15 05:05:03'), +(183,949,'2006-02-15 05:05:03'), +(183,983,'2006-02-15 05:05:03'), +(184,35,'2006-02-15 05:05:03'), +(184,87,'2006-02-15 05:05:03'), +(184,146,'2006-02-15 05:05:03'), +(184,169,'2006-02-15 05:05:03'), +(184,221,'2006-02-15 05:05:03'), +(184,336,'2006-02-15 05:05:03'), +(184,371,'2006-02-15 05:05:03'), +(184,452,'2006-02-15 05:05:03'), +(184,486,'2006-02-15 05:05:03'), +(184,492,'2006-02-15 05:05:03'), +(184,500,'2006-02-15 05:05:03'), +(184,574,'2006-02-15 05:05:03'), +(184,580,'2006-02-15 05:05:03'), +(184,597,'2006-02-15 05:05:03'), +(184,615,'2006-02-15 05:05:03'), +(184,640,'2006-02-15 05:05:03'), +(184,642,'2006-02-15 05:05:03'), +(184,650,'2006-02-15 05:05:03'), +(184,661,'2006-02-15 05:05:03'), +(184,684,'2006-02-15 05:05:03'), +(184,745,'2006-02-15 05:05:03'), +(184,772,'2006-02-15 05:05:03'), +(184,787,'2006-02-15 05:05:03'), +(184,867,'2006-02-15 05:05:03'), +(184,959,'2006-02-15 05:05:03'), +(184,966,'2006-02-15 05:05:03'), +(184,967,'2006-02-15 05:05:03'), +(184,969,'2006-02-15 05:05:03'), +(184,985,'2006-02-15 05:05:03'), +(185,7,'2006-02-15 05:05:03'), +(185,95,'2006-02-15 05:05:03'), +(185,138,'2006-02-15 05:05:03'), +(185,265,'2006-02-15 05:05:03'), +(185,286,'2006-02-15 05:05:03'), +(185,360,'2006-02-15 05:05:03'), +(185,411,'2006-02-15 05:05:03'), +(185,427,'2006-02-15 05:05:03'), +(185,437,'2006-02-15 05:05:03'), +(185,448,'2006-02-15 05:05:03'), +(185,494,'2006-02-15 05:05:03'), +(185,510,'2006-02-15 05:05:03'), +(185,518,'2006-02-15 05:05:03'), +(185,554,'2006-02-15 05:05:03'), +(185,560,'2006-02-15 05:05:03'), +(185,571,'2006-02-15 05:05:03'), +(185,584,'2006-02-15 05:05:03'), +(185,631,'2006-02-15 05:05:03'), +(185,665,'2006-02-15 05:05:03'), +(185,694,'2006-02-15 05:05:03'), +(185,730,'2006-02-15 05:05:03'), +(185,761,'2006-02-15 05:05:03'), +(185,818,'2006-02-15 05:05:03'), +(185,845,'2006-02-15 05:05:03'), +(185,880,'2006-02-15 05:05:03'), +(185,882,'2006-02-15 05:05:03'), +(185,919,'2006-02-15 05:05:03'), +(185,920,'2006-02-15 05:05:03'), +(185,965,'2006-02-15 05:05:03'), +(185,973,'2006-02-15 05:05:03'), +(186,95,'2006-02-15 05:05:03'), +(186,187,'2006-02-15 05:05:03'), +(186,208,'2006-02-15 05:05:03'), +(186,228,'2006-02-15 05:05:03'), +(186,237,'2006-02-15 05:05:03'), +(186,422,'2006-02-15 05:05:03'), +(186,482,'2006-02-15 05:05:03'), +(186,508,'2006-02-15 05:05:03'), +(186,552,'2006-02-15 05:05:03'), +(186,579,'2006-02-15 05:05:03'), +(186,637,'2006-02-15 05:05:03'), +(186,648,'2006-02-15 05:05:03'), +(186,654,'2006-02-15 05:05:03'), +(186,729,'2006-02-15 05:05:03'), +(186,983,'2006-02-15 05:05:03'), +(186,994,'2006-02-15 05:05:03'), +(187,17,'2006-02-15 05:05:03'), +(187,25,'2006-02-15 05:05:03'), +(187,29,'2006-02-15 05:05:03'), +(187,51,'2006-02-15 05:05:03'), +(187,73,'2006-02-15 05:05:03'), +(187,76,'2006-02-15 05:05:03'), +(187,98,'2006-02-15 05:05:03'), +(187,110,'2006-02-15 05:05:03'), +(187,127,'2006-02-15 05:05:03'), +(187,168,'2006-02-15 05:05:03'), +(187,222,'2006-02-15 05:05:03'), +(187,224,'2006-02-15 05:05:03'), +(187,297,'2006-02-15 05:05:03'), +(187,354,'2006-02-15 05:05:03'), +(187,379,'2006-02-15 05:05:03'), +(187,417,'2006-02-15 05:05:03'), +(187,435,'2006-02-15 05:05:03'), +(187,441,'2006-02-15 05:05:03'), +(187,474,'2006-02-15 05:05:03'), +(187,499,'2006-02-15 05:05:03'), +(187,538,'2006-02-15 05:05:03'), +(187,548,'2006-02-15 05:05:03'), +(187,561,'2006-02-15 05:05:03'), +(187,617,'2006-02-15 05:05:03'), +(187,625,'2006-02-15 05:05:03'), +(187,664,'2006-02-15 05:05:03'), +(187,671,'2006-02-15 05:05:03'), +(187,768,'2006-02-15 05:05:03'), +(187,779,'2006-02-15 05:05:03'), +(187,906,'2006-02-15 05:05:03'), +(187,914,'2006-02-15 05:05:03'), +(187,923,'2006-02-15 05:05:03'), +(187,976,'2006-02-15 05:05:03'), +(188,1,'2006-02-15 05:05:03'), +(188,10,'2006-02-15 05:05:03'), +(188,14,'2006-02-15 05:05:03'), +(188,51,'2006-02-15 05:05:03'), +(188,102,'2006-02-15 05:05:03'), +(188,111,'2006-02-15 05:05:03'), +(188,146,'2006-02-15 05:05:03'), +(188,206,'2006-02-15 05:05:03'), +(188,223,'2006-02-15 05:05:03'), +(188,289,'2006-02-15 05:05:03'), +(188,311,'2006-02-15 05:05:03'), +(188,322,'2006-02-15 05:05:03'), +(188,338,'2006-02-15 05:05:03'), +(188,396,'2006-02-15 05:05:03'), +(188,412,'2006-02-15 05:05:03'), +(188,506,'2006-02-15 05:05:03'), +(188,517,'2006-02-15 05:05:03'), +(188,529,'2006-02-15 05:05:03'), +(188,566,'2006-02-15 05:05:03'), +(188,593,'2006-02-15 05:05:03'), +(188,606,'2006-02-15 05:05:03'), +(188,662,'2006-02-15 05:05:03'), +(188,770,'2006-02-15 05:05:03'), +(188,773,'2006-02-15 05:05:03'), +(188,774,'2006-02-15 05:05:03'), +(188,815,'2006-02-15 05:05:03'), +(188,849,'2006-02-15 05:05:03'), +(188,925,'2006-02-15 05:05:03'), +(188,988,'2006-02-15 05:05:03'), +(188,989,'2006-02-15 05:05:03'), +(189,43,'2006-02-15 05:05:03'), +(189,82,'2006-02-15 05:05:03'), +(189,171,'2006-02-15 05:05:03'), +(189,266,'2006-02-15 05:05:03'), +(189,272,'2006-02-15 05:05:03'), +(189,315,'2006-02-15 05:05:03'), +(189,378,'2006-02-15 05:05:03'), +(189,492,'2006-02-15 05:05:03'), +(189,509,'2006-02-15 05:05:03'), +(189,512,'2006-02-15 05:05:03'), +(189,519,'2006-02-15 05:05:03'), +(189,533,'2006-02-15 05:05:03'), +(189,548,'2006-02-15 05:05:03'), +(189,560,'2006-02-15 05:05:03'), +(189,628,'2006-02-15 05:05:03'), +(189,734,'2006-02-15 05:05:03'), +(189,748,'2006-02-15 05:05:03'), +(189,788,'2006-02-15 05:05:03'), +(189,820,'2006-02-15 05:05:03'), +(189,853,'2006-02-15 05:05:03'), +(189,882,'2006-02-15 05:05:03'), +(189,896,'2006-02-15 05:05:03'), +(189,899,'2006-02-15 05:05:03'), +(189,940,'2006-02-15 05:05:03'), +(190,38,'2006-02-15 05:05:03'), +(190,54,'2006-02-15 05:05:03'), +(190,62,'2006-02-15 05:05:03'), +(190,87,'2006-02-15 05:05:03'), +(190,173,'2006-02-15 05:05:03'), +(190,234,'2006-02-15 05:05:03'), +(190,253,'2006-02-15 05:05:03'), +(190,278,'2006-02-15 05:05:03'), +(190,310,'2006-02-15 05:05:03'), +(190,374,'2006-02-15 05:05:03'), +(190,411,'2006-02-15 05:05:03'), +(190,426,'2006-02-15 05:05:03'), +(190,472,'2006-02-15 05:05:03'), +(190,549,'2006-02-15 05:05:03'), +(190,562,'2006-02-15 05:05:03'), +(190,606,'2006-02-15 05:05:03'), +(190,623,'2006-02-15 05:05:03'), +(190,679,'2006-02-15 05:05:03'), +(190,682,'2006-02-15 05:05:03'), +(190,693,'2006-02-15 05:05:03'), +(190,695,'2006-02-15 05:05:03'), +(190,705,'2006-02-15 05:05:03'), +(190,708,'2006-02-15 05:05:03'), +(190,802,'2006-02-15 05:05:03'), +(190,806,'2006-02-15 05:05:03'), +(190,874,'2006-02-15 05:05:03'), +(190,959,'2006-02-15 05:05:03'), +(191,16,'2006-02-15 05:05:03'), +(191,39,'2006-02-15 05:05:03'), +(191,84,'2006-02-15 05:05:03'), +(191,185,'2006-02-15 05:05:03'), +(191,219,'2006-02-15 05:05:03'), +(191,293,'2006-02-15 05:05:03'), +(191,296,'2006-02-15 05:05:03'), +(191,378,'2006-02-15 05:05:03'), +(191,410,'2006-02-15 05:05:03'), +(191,420,'2006-02-15 05:05:03'), +(191,461,'2006-02-15 05:05:03'), +(191,544,'2006-02-15 05:05:03'), +(191,551,'2006-02-15 05:05:03'), +(191,596,'2006-02-15 05:05:03'), +(191,638,'2006-02-15 05:05:03'), +(191,668,'2006-02-15 05:05:03'), +(191,692,'2006-02-15 05:05:03'), +(191,775,'2006-02-15 05:05:03'), +(191,801,'2006-02-15 05:05:03'), +(191,819,'2006-02-15 05:05:03'), +(191,827,'2006-02-15 05:05:03'), +(191,830,'2006-02-15 05:05:03'), +(191,834,'2006-02-15 05:05:03'), +(191,849,'2006-02-15 05:05:03'), +(191,858,'2006-02-15 05:05:03'), +(191,914,'2006-02-15 05:05:03'), +(191,958,'2006-02-15 05:05:03'), +(191,969,'2006-02-15 05:05:03'), +(191,971,'2006-02-15 05:05:03'), +(191,993,'2006-02-15 05:05:03'), +(192,16,'2006-02-15 05:05:03'), +(192,69,'2006-02-15 05:05:03'), +(192,117,'2006-02-15 05:05:03'), +(192,155,'2006-02-15 05:05:03'), +(192,166,'2006-02-15 05:05:03'), +(192,179,'2006-02-15 05:05:03'), +(192,214,'2006-02-15 05:05:03'), +(192,361,'2006-02-15 05:05:03'), +(192,367,'2006-02-15 05:05:03'), +(192,426,'2006-02-15 05:05:03'), +(192,465,'2006-02-15 05:05:03'), +(192,470,'2006-02-15 05:05:03'), +(192,475,'2006-02-15 05:05:03'), +(192,485,'2006-02-15 05:05:03'), +(192,541,'2006-02-15 05:05:03'), +(192,578,'2006-02-15 05:05:03'), +(192,592,'2006-02-15 05:05:03'), +(192,614,'2006-02-15 05:05:03'), +(192,618,'2006-02-15 05:05:03'), +(192,622,'2006-02-15 05:05:03'), +(192,674,'2006-02-15 05:05:03'), +(192,677,'2006-02-15 05:05:03'), +(192,680,'2006-02-15 05:05:03'), +(192,682,'2006-02-15 05:05:03'), +(192,708,'2006-02-15 05:05:03'), +(192,711,'2006-02-15 05:05:03'), +(192,747,'2006-02-15 05:05:03'), +(192,763,'2006-02-15 05:05:03'), +(192,819,'2006-02-15 05:05:03'), +(193,44,'2006-02-15 05:05:03'), +(193,80,'2006-02-15 05:05:03'), +(193,103,'2006-02-15 05:05:03'), +(193,109,'2006-02-15 05:05:03'), +(193,119,'2006-02-15 05:05:03'), +(193,141,'2006-02-15 05:05:03'), +(193,164,'2006-02-15 05:05:03'), +(193,291,'2006-02-15 05:05:03'), +(193,352,'2006-02-15 05:05:03'), +(193,358,'2006-02-15 05:05:03'), +(193,376,'2006-02-15 05:05:03'), +(193,412,'2006-02-15 05:05:03'), +(193,462,'2006-02-15 05:05:03'), +(193,689,'2006-02-15 05:05:03'), +(193,709,'2006-02-15 05:05:03'), +(193,745,'2006-02-15 05:05:03'), +(193,807,'2006-02-15 05:05:03'), +(193,828,'2006-02-15 05:05:03'), +(193,834,'2006-02-15 05:05:03'), +(193,851,'2006-02-15 05:05:03'), +(193,937,'2006-02-15 05:05:03'), +(193,953,'2006-02-15 05:05:03'), +(193,960,'2006-02-15 05:05:03'), +(194,9,'2006-02-15 05:05:03'), +(194,42,'2006-02-15 05:05:03'), +(194,67,'2006-02-15 05:05:03'), +(194,86,'2006-02-15 05:05:03'), +(194,88,'2006-02-15 05:05:03'), +(194,98,'2006-02-15 05:05:03'), +(194,135,'2006-02-15 05:05:03'), +(194,161,'2006-02-15 05:05:03'), +(194,163,'2006-02-15 05:05:03'), +(194,215,'2006-02-15 05:05:03'), +(194,232,'2006-02-15 05:05:03'), +(194,352,'2006-02-15 05:05:03'), +(194,415,'2006-02-15 05:05:03'), +(194,486,'2006-02-15 05:05:03'), +(194,498,'2006-02-15 05:05:03'), +(194,531,'2006-02-15 05:05:03'), +(194,719,'2006-02-15 05:05:03'), +(194,738,'2006-02-15 05:05:03'), +(194,786,'2006-02-15 05:05:03'), +(194,872,'2006-02-15 05:05:03'), +(194,938,'2006-02-15 05:05:03'), +(194,940,'2006-02-15 05:05:03'), +(195,129,'2006-02-15 05:05:03'), +(195,130,'2006-02-15 05:05:03'), +(195,141,'2006-02-15 05:05:03'), +(195,144,'2006-02-15 05:05:03'), +(195,298,'2006-02-15 05:05:03'), +(195,359,'2006-02-15 05:05:03'), +(195,361,'2006-02-15 05:05:03'), +(195,392,'2006-02-15 05:05:03'), +(195,403,'2006-02-15 05:05:03'), +(195,494,'2006-02-15 05:05:03'), +(195,520,'2006-02-15 05:05:03'), +(195,534,'2006-02-15 05:05:03'), +(195,560,'2006-02-15 05:05:03'), +(195,592,'2006-02-15 05:05:03'), +(195,649,'2006-02-15 05:05:03'), +(195,658,'2006-02-15 05:05:03'), +(195,673,'2006-02-15 05:05:03'), +(195,677,'2006-02-15 05:05:03'), +(195,706,'2006-02-15 05:05:03'), +(195,738,'2006-02-15 05:05:03'), +(195,769,'2006-02-15 05:05:03'), +(195,781,'2006-02-15 05:05:03'), +(195,794,'2006-02-15 05:05:03'), +(195,813,'2006-02-15 05:05:03'), +(195,869,'2006-02-15 05:05:03'), +(195,885,'2006-02-15 05:05:03'), +(195,962,'2006-02-15 05:05:03'), +(196,64,'2006-02-15 05:05:03'), +(196,122,'2006-02-15 05:05:03'), +(196,156,'2006-02-15 05:05:03'), +(196,169,'2006-02-15 05:05:03'), +(196,276,'2006-02-15 05:05:03'), +(196,284,'2006-02-15 05:05:03'), +(196,303,'2006-02-15 05:05:03'), +(196,324,'2006-02-15 05:05:03'), +(196,423,'2006-02-15 05:05:03'), +(196,473,'2006-02-15 05:05:03'), +(196,484,'2006-02-15 05:05:03'), +(196,515,'2006-02-15 05:05:03'), +(196,524,'2006-02-15 05:05:03'), +(196,541,'2006-02-15 05:05:03'), +(196,560,'2006-02-15 05:05:03'), +(196,575,'2006-02-15 05:05:03'), +(196,576,'2006-02-15 05:05:03'), +(196,587,'2006-02-15 05:05:03'), +(196,615,'2006-02-15 05:05:03'), +(196,635,'2006-02-15 05:05:03'), +(196,684,'2006-02-15 05:05:03'), +(196,795,'2006-02-15 05:05:03'), +(196,815,'2006-02-15 05:05:03'), +(196,833,'2006-02-15 05:05:03'), +(196,837,'2006-02-15 05:05:03'), +(196,906,'2006-02-15 05:05:03'), +(196,908,'2006-02-15 05:05:03'), +(196,919,'2006-02-15 05:05:03'), +(196,939,'2006-02-15 05:05:03'), +(196,972,'2006-02-15 05:05:03'), +(197,6,'2006-02-15 05:05:03'), +(197,29,'2006-02-15 05:05:03'), +(197,63,'2006-02-15 05:05:03'), +(197,123,'2006-02-15 05:05:03'), +(197,129,'2006-02-15 05:05:03'), +(197,147,'2006-02-15 05:05:03'), +(197,164,'2006-02-15 05:05:03'), +(197,189,'2006-02-15 05:05:03'), +(197,243,'2006-02-15 05:05:03'), +(197,249,'2006-02-15 05:05:03'), +(197,258,'2006-02-15 05:05:03'), +(197,364,'2006-02-15 05:05:03'), +(197,369,'2006-02-15 05:05:03'), +(197,370,'2006-02-15 05:05:03'), +(197,418,'2006-02-15 05:05:03'), +(197,522,'2006-02-15 05:05:03'), +(197,531,'2006-02-15 05:05:03'), +(197,554,'2006-02-15 05:05:03'), +(197,598,'2006-02-15 05:05:03'), +(197,628,'2006-02-15 05:05:03'), +(197,691,'2006-02-15 05:05:03'), +(197,724,'2006-02-15 05:05:03'), +(197,746,'2006-02-15 05:05:03'), +(197,752,'2006-02-15 05:05:03'), +(197,758,'2006-02-15 05:05:03'), +(197,769,'2006-02-15 05:05:03'), +(197,815,'2006-02-15 05:05:03'), +(197,916,'2006-02-15 05:05:03'), +(197,950,'2006-02-15 05:05:03'), +(197,967,'2006-02-15 05:05:03'), +(197,974,'2006-02-15 05:05:03'), +(197,979,'2006-02-15 05:05:03'), +(197,995,'2006-02-15 05:05:03'), +(198,1,'2006-02-15 05:05:03'), +(198,109,'2006-02-15 05:05:03'), +(198,125,'2006-02-15 05:05:03'), +(198,186,'2006-02-15 05:05:03'), +(198,262,'2006-02-15 05:05:03'), +(198,264,'2006-02-15 05:05:03'), +(198,303,'2006-02-15 05:05:03'), +(198,309,'2006-02-15 05:05:03'), +(198,311,'2006-02-15 05:05:03'), +(198,329,'2006-02-15 05:05:03'), +(198,347,'2006-02-15 05:05:03'), +(198,379,'2006-02-15 05:05:03'), +(198,395,'2006-02-15 05:05:03'), +(198,406,'2006-02-15 05:05:03'), +(198,450,'2006-02-15 05:05:03'), +(198,464,'2006-02-15 05:05:03'), +(198,482,'2006-02-15 05:05:03'), +(198,499,'2006-02-15 05:05:03'), +(198,536,'2006-02-15 05:05:03'), +(198,541,'2006-02-15 05:05:03'), +(198,545,'2006-02-15 05:05:03'), +(198,555,'2006-02-15 05:05:03'), +(198,568,'2006-02-15 05:05:03'), +(198,570,'2006-02-15 05:05:03'), +(198,588,'2006-02-15 05:05:03'), +(198,597,'2006-02-15 05:05:03'), +(198,628,'2006-02-15 05:05:03'), +(198,745,'2006-02-15 05:05:03'), +(198,758,'2006-02-15 05:05:03'), +(198,796,'2006-02-15 05:05:03'), +(198,806,'2006-02-15 05:05:03'), +(198,817,'2006-02-15 05:05:03'), +(198,843,'2006-02-15 05:05:03'), +(198,858,'2006-02-15 05:05:03'), +(198,871,'2006-02-15 05:05:03'), +(198,886,'2006-02-15 05:05:03'), +(198,892,'2006-02-15 05:05:03'), +(198,924,'2006-02-15 05:05:03'), +(198,952,'2006-02-15 05:05:03'), +(198,997,'2006-02-15 05:05:03'), +(199,67,'2006-02-15 05:05:03'), +(199,84,'2006-02-15 05:05:03'), +(199,145,'2006-02-15 05:05:03'), +(199,159,'2006-02-15 05:05:03'), +(199,216,'2006-02-15 05:05:03'), +(199,432,'2006-02-15 05:05:03'), +(199,541,'2006-02-15 05:05:03'), +(199,604,'2006-02-15 05:05:03'), +(199,640,'2006-02-15 05:05:03'), +(199,689,'2006-02-15 05:05:03'), +(199,730,'2006-02-15 05:05:03'), +(199,784,'2006-02-15 05:05:03'), +(199,785,'2006-02-15 05:05:03'), +(199,886,'2006-02-15 05:05:03'), +(199,953,'2006-02-15 05:05:03'), +(200,5,'2006-02-15 05:05:03'), +(200,49,'2006-02-15 05:05:03'), +(200,80,'2006-02-15 05:05:03'), +(200,116,'2006-02-15 05:05:03'), +(200,121,'2006-02-15 05:05:03'), +(200,149,'2006-02-15 05:05:03'), +(200,346,'2006-02-15 05:05:03'), +(200,419,'2006-02-15 05:05:03'), +(200,462,'2006-02-15 05:05:03'), +(200,465,'2006-02-15 05:05:03'), +(200,474,'2006-02-15 05:05:03'), +(200,537,'2006-02-15 05:05:03'), +(200,538,'2006-02-15 05:05:03'), +(200,544,'2006-02-15 05:05:03'), +(200,714,'2006-02-15 05:05:03'), +(200,879,'2006-02-15 05:05:03'), +(200,912,'2006-02-15 05:05:03'), +(200,945,'2006-02-15 05:05:03'), +(200,958,'2006-02-15 05:05:03'), +(200,993,'2006-02-15 05:05:03'); +COMMIT; + +-- +-- Dumping data for table film_category +-- + +SET AUTOCOMMIT=0; +INSERT INTO film_category VALUES (1,6,'2006-02-15 05:07:09'), +(2,11,'2006-02-15 05:07:09'), +(3,6,'2006-02-15 05:07:09'), +(4,11,'2006-02-15 05:07:09'), +(5,8,'2006-02-15 05:07:09'), +(6,9,'2006-02-15 05:07:09'), +(7,5,'2006-02-15 05:07:09'), +(8,11,'2006-02-15 05:07:09'), +(9,11,'2006-02-15 05:07:09'), +(10,15,'2006-02-15 05:07:09'), +(11,9,'2006-02-15 05:07:09'), +(12,12,'2006-02-15 05:07:09'), +(13,11,'2006-02-15 05:07:09'), +(14,4,'2006-02-15 05:07:09'), +(15,9,'2006-02-15 05:07:09'), +(16,9,'2006-02-15 05:07:09'), +(17,12,'2006-02-15 05:07:09'), +(18,2,'2006-02-15 05:07:09'), +(19,1,'2006-02-15 05:07:09'), +(20,12,'2006-02-15 05:07:09'), +(21,1,'2006-02-15 05:07:09'), +(22,13,'2006-02-15 05:07:09'), +(23,2,'2006-02-15 05:07:09'), +(24,11,'2006-02-15 05:07:09'), +(25,13,'2006-02-15 05:07:09'), +(26,14,'2006-02-15 05:07:09'), +(27,15,'2006-02-15 05:07:09'), +(28,5,'2006-02-15 05:07:09'), +(29,1,'2006-02-15 05:07:09'), +(30,11,'2006-02-15 05:07:09'), +(31,8,'2006-02-15 05:07:09'), +(32,13,'2006-02-15 05:07:09'), +(33,7,'2006-02-15 05:07:09'), +(34,11,'2006-02-15 05:07:09'), +(35,11,'2006-02-15 05:07:09'), +(36,2,'2006-02-15 05:07:09'), +(37,4,'2006-02-15 05:07:09'), +(38,1,'2006-02-15 05:07:09'), +(39,14,'2006-02-15 05:07:09'), +(40,6,'2006-02-15 05:07:09'), +(41,16,'2006-02-15 05:07:09'), +(42,15,'2006-02-15 05:07:09'), +(43,8,'2006-02-15 05:07:09'), +(44,14,'2006-02-15 05:07:09'), +(45,13,'2006-02-15 05:07:09'), +(46,10,'2006-02-15 05:07:09'), +(47,9,'2006-02-15 05:07:09'), +(48,3,'2006-02-15 05:07:09'), +(49,14,'2006-02-15 05:07:09'), +(50,8,'2006-02-15 05:07:09'), +(51,12,'2006-02-15 05:07:09'), +(52,9,'2006-02-15 05:07:09'), +(53,8,'2006-02-15 05:07:09'), +(54,12,'2006-02-15 05:07:09'), +(55,14,'2006-02-15 05:07:09'), +(56,1,'2006-02-15 05:07:09'), +(57,16,'2006-02-15 05:07:09'), +(58,6,'2006-02-15 05:07:09'), +(59,3,'2006-02-15 05:07:09'), +(60,4,'2006-02-15 05:07:09'), +(61,7,'2006-02-15 05:07:09'), +(62,6,'2006-02-15 05:07:09'), +(63,8,'2006-02-15 05:07:09'), +(64,7,'2006-02-15 05:07:09'), +(65,11,'2006-02-15 05:07:09'), +(66,3,'2006-02-15 05:07:09'), +(67,1,'2006-02-15 05:07:09'), +(68,3,'2006-02-15 05:07:09'), +(69,14,'2006-02-15 05:07:09'), +(70,2,'2006-02-15 05:07:09'), +(71,8,'2006-02-15 05:07:09'), +(72,6,'2006-02-15 05:07:09'), +(73,14,'2006-02-15 05:07:09'), +(74,12,'2006-02-15 05:07:09'), +(75,16,'2006-02-15 05:07:09'), +(76,12,'2006-02-15 05:07:09'), +(77,13,'2006-02-15 05:07:09'), +(78,2,'2006-02-15 05:07:09'), +(79,7,'2006-02-15 05:07:09'), +(80,8,'2006-02-15 05:07:09'), +(81,14,'2006-02-15 05:07:09'), +(82,8,'2006-02-15 05:07:09'), +(83,8,'2006-02-15 05:07:09'), +(84,16,'2006-02-15 05:07:09'), +(85,6,'2006-02-15 05:07:09'), +(86,12,'2006-02-15 05:07:09'), +(87,16,'2006-02-15 05:07:09'), +(88,16,'2006-02-15 05:07:09'), +(89,2,'2006-02-15 05:07:09'), +(90,13,'2006-02-15 05:07:09'), +(91,4,'2006-02-15 05:07:09'), +(92,11,'2006-02-15 05:07:09'), +(93,13,'2006-02-15 05:07:09'), +(94,8,'2006-02-15 05:07:09'), +(95,13,'2006-02-15 05:07:09'), +(96,13,'2006-02-15 05:07:09'), +(97,1,'2006-02-15 05:07:09'), +(98,7,'2006-02-15 05:07:09'), +(99,5,'2006-02-15 05:07:09'), +(100,9,'2006-02-15 05:07:09'), +(101,6,'2006-02-15 05:07:09'), +(102,15,'2006-02-15 05:07:09'), +(103,16,'2006-02-15 05:07:09'), +(104,9,'2006-02-15 05:07:09'), +(105,1,'2006-02-15 05:07:09'), +(106,10,'2006-02-15 05:07:09'), +(107,7,'2006-02-15 05:07:09'), +(108,13,'2006-02-15 05:07:09'), +(109,13,'2006-02-15 05:07:09'), +(110,3,'2006-02-15 05:07:09'), +(111,1,'2006-02-15 05:07:09'), +(112,9,'2006-02-15 05:07:09'), +(113,15,'2006-02-15 05:07:09'), +(114,14,'2006-02-15 05:07:09'), +(115,1,'2006-02-15 05:07:09'), +(116,4,'2006-02-15 05:07:09'), +(117,10,'2006-02-15 05:07:09'), +(118,2,'2006-02-15 05:07:09'), +(119,5,'2006-02-15 05:07:09'), +(120,15,'2006-02-15 05:07:09'), +(121,2,'2006-02-15 05:07:09'), +(122,11,'2006-02-15 05:07:09'), +(123,16,'2006-02-15 05:07:09'), +(124,3,'2006-02-15 05:07:09'), +(125,16,'2006-02-15 05:07:09'), +(126,1,'2006-02-15 05:07:09'), +(127,5,'2006-02-15 05:07:09'), +(128,9,'2006-02-15 05:07:09'), +(129,6,'2006-02-15 05:07:09'), +(130,1,'2006-02-15 05:07:09'), +(131,4,'2006-02-15 05:07:09'), +(132,14,'2006-02-15 05:07:09'), +(133,12,'2006-02-15 05:07:09'), +(134,2,'2006-02-15 05:07:09'), +(135,15,'2006-02-15 05:07:09'), +(136,13,'2006-02-15 05:07:09'), +(137,14,'2006-02-15 05:07:09'), +(138,14,'2006-02-15 05:07:09'), +(139,8,'2006-02-15 05:07:09'), +(140,14,'2006-02-15 05:07:09'), +(141,10,'2006-02-15 05:07:09'), +(142,6,'2006-02-15 05:07:09'), +(143,7,'2006-02-15 05:07:09'), +(144,13,'2006-02-15 05:07:09'), +(145,8,'2006-02-15 05:07:09'), +(146,7,'2006-02-15 05:07:09'), +(147,8,'2006-02-15 05:07:09'), +(148,9,'2006-02-15 05:07:09'), +(149,3,'2006-02-15 05:07:09'), +(150,6,'2006-02-15 05:07:09'), +(151,14,'2006-02-15 05:07:09'), +(152,3,'2006-02-15 05:07:09'), +(153,14,'2006-02-15 05:07:09'), +(154,2,'2006-02-15 05:07:09'), +(155,13,'2006-02-15 05:07:09'), +(156,6,'2006-02-15 05:07:09'), +(157,3,'2006-02-15 05:07:09'), +(158,12,'2006-02-15 05:07:09'), +(159,5,'2006-02-15 05:07:09'), +(160,2,'2006-02-15 05:07:09'), +(161,12,'2006-02-15 05:07:09'), +(162,1,'2006-02-15 05:07:09'), +(163,13,'2006-02-15 05:07:09'), +(164,6,'2006-02-15 05:07:09'), +(165,14,'2006-02-15 05:07:09'), +(166,4,'2006-02-15 05:07:09'), +(167,16,'2006-02-15 05:07:09'), +(168,3,'2006-02-15 05:07:09'), +(169,16,'2006-02-15 05:07:09'), +(170,9,'2006-02-15 05:07:09'), +(171,11,'2006-02-15 05:07:09'), +(172,7,'2006-02-15 05:07:09'), +(173,7,'2006-02-15 05:07:09'), +(174,12,'2006-02-15 05:07:09'), +(175,8,'2006-02-15 05:07:09'), +(176,15,'2006-02-15 05:07:09'), +(177,14,'2006-02-15 05:07:09'), +(178,5,'2006-02-15 05:07:09'), +(179,7,'2006-02-15 05:07:09'), +(180,4,'2006-02-15 05:07:09'), +(181,16,'2006-02-15 05:07:09'), +(182,5,'2006-02-15 05:07:09'), +(183,8,'2006-02-15 05:07:09'), +(184,4,'2006-02-15 05:07:09'), +(185,9,'2006-02-15 05:07:09'), +(186,7,'2006-02-15 05:07:09'), +(187,15,'2006-02-15 05:07:09'), +(188,5,'2006-02-15 05:07:09'), +(189,10,'2006-02-15 05:07:09'), +(190,4,'2006-02-15 05:07:09'), +(191,3,'2006-02-15 05:07:09'), +(192,9,'2006-02-15 05:07:09'), +(193,2,'2006-02-15 05:07:09'), +(194,1,'2006-02-15 05:07:09'), +(195,14,'2006-02-15 05:07:09'), +(196,4,'2006-02-15 05:07:09'), +(197,15,'2006-02-15 05:07:09'), +(198,9,'2006-02-15 05:07:09'), +(199,6,'2006-02-15 05:07:09'), +(200,10,'2006-02-15 05:07:09'), +(201,9,'2006-02-15 05:07:09'), +(202,5,'2006-02-15 05:07:09'), +(203,14,'2006-02-15 05:07:09'), +(204,7,'2006-02-15 05:07:09'), +(205,1,'2006-02-15 05:07:09'), +(206,6,'2006-02-15 05:07:09'), +(207,9,'2006-02-15 05:07:09'), +(208,2,'2006-02-15 05:07:09'), +(209,7,'2006-02-15 05:07:09'), +(210,1,'2006-02-15 05:07:09'), +(211,10,'2006-02-15 05:07:09'), +(212,1,'2006-02-15 05:07:09'), +(213,8,'2006-02-15 05:07:09'), +(214,3,'2006-02-15 05:07:09'), +(215,10,'2006-02-15 05:07:09'), +(216,13,'2006-02-15 05:07:09'), +(217,10,'2006-02-15 05:07:09'), +(218,7,'2006-02-15 05:07:09'), +(219,6,'2006-02-15 05:07:09'), +(220,12,'2006-02-15 05:07:09'), +(221,6,'2006-02-15 05:07:09'), +(222,11,'2006-02-15 05:07:09'), +(223,2,'2006-02-15 05:07:09'), +(224,16,'2006-02-15 05:07:09'), +(225,7,'2006-02-15 05:07:09'), +(226,13,'2006-02-15 05:07:09'), +(227,10,'2006-02-15 05:07:09'), +(228,4,'2006-02-15 05:07:09'), +(229,1,'2006-02-15 05:07:09'), +(230,7,'2006-02-15 05:07:09'), +(231,8,'2006-02-15 05:07:09'), +(232,10,'2006-02-15 05:07:09'), +(233,16,'2006-02-15 05:07:09'), +(234,14,'2006-02-15 05:07:09'), +(235,14,'2006-02-15 05:07:09'), +(236,10,'2006-02-15 05:07:09'), +(237,15,'2006-02-15 05:07:09'), +(238,3,'2006-02-15 05:07:09'), +(239,2,'2006-02-15 05:07:09'), +(240,14,'2006-02-15 05:07:09'), +(241,2,'2006-02-15 05:07:09'), +(242,5,'2006-02-15 05:07:09'), +(243,2,'2006-02-15 05:07:09'), +(244,12,'2006-02-15 05:07:09'), +(245,2,'2006-02-15 05:07:09'), +(246,9,'2006-02-15 05:07:09'), +(247,5,'2006-02-15 05:07:09'), +(248,6,'2006-02-15 05:07:09'), +(249,4,'2006-02-15 05:07:09'), +(250,1,'2006-02-15 05:07:09'), +(251,13,'2006-02-15 05:07:09'), +(252,1,'2006-02-15 05:07:09'), +(253,1,'2006-02-15 05:07:09'), +(254,15,'2006-02-15 05:07:09'), +(255,12,'2006-02-15 05:07:09'), +(256,15,'2006-02-15 05:07:09'), +(257,16,'2006-02-15 05:07:09'), +(258,11,'2006-02-15 05:07:09'), +(259,2,'2006-02-15 05:07:09'), +(260,15,'2006-02-15 05:07:09'), +(261,6,'2006-02-15 05:07:09'), +(262,8,'2006-02-15 05:07:09'), +(263,15,'2006-02-15 05:07:09'), +(264,10,'2006-02-15 05:07:09'), +(265,5,'2006-02-15 05:07:09'), +(266,4,'2006-02-15 05:07:09'), +(267,13,'2006-02-15 05:07:09'), +(268,2,'2006-02-15 05:07:09'), +(269,8,'2006-02-15 05:07:09'), +(270,13,'2006-02-15 05:07:09'), +(271,1,'2006-02-15 05:07:09'), +(272,7,'2006-02-15 05:07:09'), +(273,8,'2006-02-15 05:07:09'), +(274,6,'2006-02-15 05:07:09'), +(275,11,'2006-02-15 05:07:09'), +(276,5,'2006-02-15 05:07:09'), +(277,11,'2006-02-15 05:07:09'), +(278,12,'2006-02-15 05:07:09'), +(279,15,'2006-02-15 05:07:09'), +(280,3,'2006-02-15 05:07:09'), +(281,10,'2006-02-15 05:07:09'), +(282,7,'2006-02-15 05:07:09'), +(283,13,'2006-02-15 05:07:09'), +(284,12,'2006-02-15 05:07:09'), +(285,14,'2006-02-15 05:07:09'), +(286,16,'2006-02-15 05:07:09'), +(287,1,'2006-02-15 05:07:09'), +(288,16,'2006-02-15 05:07:09'), +(289,13,'2006-02-15 05:07:09'), +(290,9,'2006-02-15 05:07:09'), +(291,15,'2006-02-15 05:07:09'), +(292,1,'2006-02-15 05:07:09'), +(293,15,'2006-02-15 05:07:09'), +(294,16,'2006-02-15 05:07:09'), +(295,6,'2006-02-15 05:07:09'), +(296,14,'2006-02-15 05:07:09'), +(297,4,'2006-02-15 05:07:09'), +(298,14,'2006-02-15 05:07:09'), +(299,16,'2006-02-15 05:07:09'), +(300,2,'2006-02-15 05:07:09'), +(301,11,'2006-02-15 05:07:09'), +(302,10,'2006-02-15 05:07:09'), +(303,1,'2006-02-15 05:07:09'), +(304,3,'2006-02-15 05:07:09'), +(305,13,'2006-02-15 05:07:09'), +(306,10,'2006-02-15 05:07:09'), +(307,16,'2006-02-15 05:07:09'), +(308,5,'2006-02-15 05:07:09'), +(309,8,'2006-02-15 05:07:09'), +(310,10,'2006-02-15 05:07:09'), +(311,9,'2006-02-15 05:07:09'), +(312,14,'2006-02-15 05:07:09'), +(313,11,'2006-02-15 05:07:09'), +(314,2,'2006-02-15 05:07:09'), +(315,8,'2006-02-15 05:07:09'), +(316,10,'2006-02-15 05:07:09'), +(317,5,'2006-02-15 05:07:09'), +(318,1,'2006-02-15 05:07:09'), +(319,14,'2006-02-15 05:07:09'), +(320,13,'2006-02-15 05:07:09'), +(321,13,'2006-02-15 05:07:09'), +(322,15,'2006-02-15 05:07:09'), +(323,15,'2006-02-15 05:07:09'), +(324,5,'2006-02-15 05:07:09'), +(325,2,'2006-02-15 05:07:09'), +(326,2,'2006-02-15 05:07:09'), +(327,1,'2006-02-15 05:07:09'), +(328,3,'2006-02-15 05:07:09'), +(329,1,'2006-02-15 05:07:09'), +(330,2,'2006-02-15 05:07:09'), +(331,10,'2006-02-15 05:07:09'), +(332,5,'2006-02-15 05:07:09'), +(333,12,'2006-02-15 05:07:09'), +(334,11,'2006-02-15 05:07:09'), +(335,5,'2006-02-15 05:07:09'), +(336,6,'2006-02-15 05:07:09'), +(337,9,'2006-02-15 05:07:09'), +(338,14,'2006-02-15 05:07:09'), +(339,16,'2006-02-15 05:07:09'), +(340,13,'2006-02-15 05:07:09'), +(341,4,'2006-02-15 05:07:09'), +(342,16,'2006-02-15 05:07:09'), +(343,3,'2006-02-15 05:07:09'), +(344,3,'2006-02-15 05:07:09'), +(345,8,'2006-02-15 05:07:09'), +(346,4,'2006-02-15 05:07:09'), +(347,16,'2006-02-15 05:07:09'), +(348,8,'2006-02-15 05:07:09'), +(349,2,'2006-02-15 05:07:09'), +(350,14,'2006-02-15 05:07:09'), +(351,11,'2006-02-15 05:07:09'), +(352,10,'2006-02-15 05:07:09'), +(353,9,'2006-02-15 05:07:09'), +(354,3,'2006-02-15 05:07:09'), +(355,2,'2006-02-15 05:07:09'), +(356,3,'2006-02-15 05:07:09'), +(357,4,'2006-02-15 05:07:09'), +(358,4,'2006-02-15 05:07:09'), +(359,8,'2006-02-15 05:07:09'), +(360,1,'2006-02-15 05:07:09'), +(361,15,'2006-02-15 05:07:09'), +(362,10,'2006-02-15 05:07:09'), +(363,12,'2006-02-15 05:07:09'), +(364,13,'2006-02-15 05:07:09'), +(365,5,'2006-02-15 05:07:09'), +(366,7,'2006-02-15 05:07:09'), +(367,14,'2006-02-15 05:07:09'), +(368,7,'2006-02-15 05:07:09'), +(369,14,'2006-02-15 05:07:09'), +(370,3,'2006-02-15 05:07:09'), +(371,1,'2006-02-15 05:07:09'), +(372,15,'2006-02-15 05:07:09'), +(373,3,'2006-02-15 05:07:09'), +(374,14,'2006-02-15 05:07:09'), +(375,1,'2006-02-15 05:07:09'), +(376,9,'2006-02-15 05:07:09'), +(377,8,'2006-02-15 05:07:09'), +(378,12,'2006-02-15 05:07:09'), +(379,7,'2006-02-15 05:07:09'), +(380,9,'2006-02-15 05:07:09'), +(381,10,'2006-02-15 05:07:09'), +(382,10,'2006-02-15 05:07:09'), +(383,15,'2006-02-15 05:07:09'), +(384,12,'2006-02-15 05:07:09'), +(385,5,'2006-02-15 05:07:09'), +(386,16,'2006-02-15 05:07:09'), +(387,10,'2006-02-15 05:07:09'), +(388,5,'2006-02-15 05:07:09'), +(389,15,'2006-02-15 05:07:09'), +(390,14,'2006-02-15 05:07:09'), +(391,8,'2006-02-15 05:07:09'), +(392,3,'2006-02-15 05:07:09'), +(393,6,'2006-02-15 05:07:09'), +(394,14,'2006-02-15 05:07:09'), +(395,1,'2006-02-15 05:07:09'), +(396,7,'2006-02-15 05:07:09'), +(397,14,'2006-02-15 05:07:09'), +(398,12,'2006-02-15 05:07:09'), +(399,9,'2006-02-15 05:07:09'), +(400,6,'2006-02-15 05:07:09'), +(401,7,'2006-02-15 05:07:09'), +(402,2,'2006-02-15 05:07:09'), +(403,7,'2006-02-15 05:07:09'), +(404,5,'2006-02-15 05:07:09'), +(405,16,'2006-02-15 05:07:09'), +(406,10,'2006-02-15 05:07:09'), +(407,6,'2006-02-15 05:07:09'), +(408,10,'2006-02-15 05:07:09'), +(409,3,'2006-02-15 05:07:09'), +(410,5,'2006-02-15 05:07:09'), +(411,12,'2006-02-15 05:07:09'), +(412,6,'2006-02-15 05:07:09'), +(413,5,'2006-02-15 05:07:09'), +(414,9,'2006-02-15 05:07:09'), +(415,11,'2006-02-15 05:07:09'), +(416,9,'2006-02-15 05:07:09'), +(417,1,'2006-02-15 05:07:09'), +(418,7,'2006-02-15 05:07:09'), +(419,8,'2006-02-15 05:07:09'), +(420,15,'2006-02-15 05:07:09'), +(421,9,'2006-02-15 05:07:09'), +(422,14,'2006-02-15 05:07:09'), +(423,3,'2006-02-15 05:07:09'), +(424,3,'2006-02-15 05:07:09'), +(425,4,'2006-02-15 05:07:09'), +(426,12,'2006-02-15 05:07:09'), +(427,6,'2006-02-15 05:07:09'), +(428,8,'2006-02-15 05:07:09'), +(429,15,'2006-02-15 05:07:09'), +(430,2,'2006-02-15 05:07:09'), +(431,9,'2006-02-15 05:07:09'), +(432,4,'2006-02-15 05:07:09'), +(433,2,'2006-02-15 05:07:09'), +(434,16,'2006-02-15 05:07:09'), +(435,9,'2006-02-15 05:07:09'), +(436,13,'2006-02-15 05:07:09'), +(437,8,'2006-02-15 05:07:09'), +(438,10,'2006-02-15 05:07:09'), +(439,7,'2006-02-15 05:07:09'), +(440,9,'2006-02-15 05:07:09'), +(441,6,'2006-02-15 05:07:09'), +(442,8,'2006-02-15 05:07:09'), +(443,5,'2006-02-15 05:07:09'), +(444,5,'2006-02-15 05:07:09'), +(445,4,'2006-02-15 05:07:09'), +(446,15,'2006-02-15 05:07:09'), +(447,10,'2006-02-15 05:07:09'), +(448,13,'2006-02-15 05:07:09'), +(449,14,'2006-02-15 05:07:09'), +(450,3,'2006-02-15 05:07:09'), +(451,16,'2006-02-15 05:07:09'), +(452,9,'2006-02-15 05:07:09'), +(453,15,'2006-02-15 05:07:09'), +(454,12,'2006-02-15 05:07:09'), +(455,9,'2006-02-15 05:07:09'), +(456,2,'2006-02-15 05:07:09'), +(457,6,'2006-02-15 05:07:09'), +(458,8,'2006-02-15 05:07:09'), +(459,9,'2006-02-15 05:07:09'), +(460,9,'2006-02-15 05:07:09'), +(461,2,'2006-02-15 05:07:09'), +(462,12,'2006-02-15 05:07:09'), +(463,15,'2006-02-15 05:07:09'), +(464,2,'2006-02-15 05:07:09'), +(465,13,'2006-02-15 05:07:09'), +(466,6,'2006-02-15 05:07:09'), +(467,9,'2006-02-15 05:07:09'), +(468,3,'2006-02-15 05:07:09'), +(469,4,'2006-02-15 05:07:09'), +(470,2,'2006-02-15 05:07:09'), +(471,4,'2006-02-15 05:07:09'), +(472,16,'2006-02-15 05:07:09'), +(473,7,'2006-02-15 05:07:09'), +(474,15,'2006-02-15 05:07:09'), +(475,11,'2006-02-15 05:07:09'), +(476,8,'2006-02-15 05:07:09'), +(477,12,'2006-02-15 05:07:09'), +(478,5,'2006-02-15 05:07:09'), +(479,8,'2006-02-15 05:07:09'), +(480,4,'2006-02-15 05:07:09'), +(481,13,'2006-02-15 05:07:09'), +(482,4,'2006-02-15 05:07:09'), +(483,10,'2006-02-15 05:07:09'), +(484,4,'2006-02-15 05:07:09'), +(485,3,'2006-02-15 05:07:09'), +(486,9,'2006-02-15 05:07:09'), +(487,4,'2006-02-15 05:07:09'), +(488,15,'2006-02-15 05:07:09'), +(489,2,'2006-02-15 05:07:09'), +(490,13,'2006-02-15 05:07:09'), +(491,3,'2006-02-15 05:07:09'), +(492,13,'2006-02-15 05:07:09'), +(493,9,'2006-02-15 05:07:09'), +(494,11,'2006-02-15 05:07:09'), +(495,11,'2006-02-15 05:07:09'), +(496,16,'2006-02-15 05:07:09'), +(497,6,'2006-02-15 05:07:09'), +(498,8,'2006-02-15 05:07:09'), +(499,8,'2006-02-15 05:07:09'), +(500,9,'2006-02-15 05:07:09'), +(501,1,'2006-02-15 05:07:09'), +(502,5,'2006-02-15 05:07:09'), +(503,15,'2006-02-15 05:07:09'), +(504,7,'2006-02-15 05:07:09'), +(505,3,'2006-02-15 05:07:09'), +(506,11,'2006-02-15 05:07:09'), +(507,10,'2006-02-15 05:07:09'), +(508,10,'2006-02-15 05:07:09'), +(509,3,'2006-02-15 05:07:09'), +(510,2,'2006-02-15 05:07:09'), +(511,1,'2006-02-15 05:07:09'), +(512,4,'2006-02-15 05:07:09'), +(513,16,'2006-02-15 05:07:09'), +(514,7,'2006-02-15 05:07:09'), +(515,3,'2006-02-15 05:07:09'), +(516,12,'2006-02-15 05:07:09'), +(517,15,'2006-02-15 05:07:09'), +(518,16,'2006-02-15 05:07:09'), +(519,15,'2006-02-15 05:07:09'), +(520,14,'2006-02-15 05:07:09'), +(521,7,'2006-02-15 05:07:09'), +(522,5,'2006-02-15 05:07:09'), +(523,4,'2006-02-15 05:07:09'), +(524,5,'2006-02-15 05:07:09'), +(525,4,'2006-02-15 05:07:09'), +(526,16,'2006-02-15 05:07:09'), +(527,11,'2006-02-15 05:07:09'), +(528,8,'2006-02-15 05:07:09'), +(529,5,'2006-02-15 05:07:09'), +(530,1,'2006-02-15 05:07:09'), +(531,9,'2006-02-15 05:07:09'), +(532,15,'2006-02-15 05:07:09'), +(533,9,'2006-02-15 05:07:09'), +(534,8,'2006-02-15 05:07:09'), +(535,11,'2006-02-15 05:07:09'), +(536,4,'2006-02-15 05:07:09'), +(537,4,'2006-02-15 05:07:09'), +(538,13,'2006-02-15 05:07:09'), +(539,7,'2006-02-15 05:07:09'), +(540,12,'2006-02-15 05:07:09'), +(541,2,'2006-02-15 05:07:09'), +(542,1,'2006-02-15 05:07:09'), +(543,16,'2006-02-15 05:07:09'), +(544,6,'2006-02-15 05:07:09'), +(545,9,'2006-02-15 05:07:09'), +(546,10,'2006-02-15 05:07:09'), +(547,3,'2006-02-15 05:07:09'), +(548,4,'2006-02-15 05:07:09'), +(549,1,'2006-02-15 05:07:09'), +(550,8,'2006-02-15 05:07:09'), +(551,13,'2006-02-15 05:07:09'), +(552,6,'2006-02-15 05:07:09'), +(553,3,'2006-02-15 05:07:09'), +(554,4,'2006-02-15 05:07:09'), +(555,5,'2006-02-15 05:07:09'), +(556,10,'2006-02-15 05:07:09'), +(557,8,'2006-02-15 05:07:09'), +(558,13,'2006-02-15 05:07:09'), +(559,14,'2006-02-15 05:07:09'), +(560,10,'2006-02-15 05:07:09'), +(561,13,'2006-02-15 05:07:09'), +(562,12,'2006-02-15 05:07:09'), +(563,10,'2006-02-15 05:07:09'), +(564,2,'2006-02-15 05:07:09'), +(565,9,'2006-02-15 05:07:09'), +(566,9,'2006-02-15 05:07:09'), +(567,9,'2006-02-15 05:07:09'), +(568,5,'2006-02-15 05:07:09'), +(569,2,'2006-02-15 05:07:09'), +(570,15,'2006-02-15 05:07:09'), +(571,6,'2006-02-15 05:07:09'), +(572,14,'2006-02-15 05:07:09'), +(573,3,'2006-02-15 05:07:09'), +(574,1,'2006-02-15 05:07:09'), +(575,6,'2006-02-15 05:07:09'), +(576,6,'2006-02-15 05:07:09'), +(577,15,'2006-02-15 05:07:09'), +(578,4,'2006-02-15 05:07:09'), +(579,1,'2006-02-15 05:07:09'), +(580,13,'2006-02-15 05:07:09'), +(581,12,'2006-02-15 05:07:09'), +(582,2,'2006-02-15 05:07:09'), +(583,2,'2006-02-15 05:07:09'), +(584,9,'2006-02-15 05:07:09'), +(585,7,'2006-02-15 05:07:09'), +(586,1,'2006-02-15 05:07:09'), +(587,6,'2006-02-15 05:07:09'), +(588,3,'2006-02-15 05:07:09'), +(589,6,'2006-02-15 05:07:09'), +(590,13,'2006-02-15 05:07:09'), +(591,10,'2006-02-15 05:07:09'), +(592,12,'2006-02-15 05:07:09'), +(593,11,'2006-02-15 05:07:09'), +(594,1,'2006-02-15 05:07:09'), +(595,9,'2006-02-15 05:07:09'), +(596,10,'2006-02-15 05:07:09'), +(597,10,'2006-02-15 05:07:09'), +(598,15,'2006-02-15 05:07:09'), +(599,15,'2006-02-15 05:07:09'), +(600,11,'2006-02-15 05:07:09'), +(601,16,'2006-02-15 05:07:09'), +(602,14,'2006-02-15 05:07:09'), +(603,8,'2006-02-15 05:07:09'), +(604,5,'2006-02-15 05:07:09'), +(605,9,'2006-02-15 05:07:09'), +(606,15,'2006-02-15 05:07:09'), +(607,9,'2006-02-15 05:07:09'), +(608,3,'2006-02-15 05:07:09'), +(609,16,'2006-02-15 05:07:09'), +(610,8,'2006-02-15 05:07:09'), +(611,4,'2006-02-15 05:07:09'), +(612,15,'2006-02-15 05:07:09'), +(613,5,'2006-02-15 05:07:09'), +(614,10,'2006-02-15 05:07:09'), +(615,2,'2006-02-15 05:07:09'), +(616,6,'2006-02-15 05:07:09'), +(617,8,'2006-02-15 05:07:09'), +(618,7,'2006-02-15 05:07:09'), +(619,15,'2006-02-15 05:07:09'), +(620,14,'2006-02-15 05:07:09'), +(621,8,'2006-02-15 05:07:09'), +(622,6,'2006-02-15 05:07:09'), +(623,9,'2006-02-15 05:07:09'), +(624,10,'2006-02-15 05:07:09'), +(625,14,'2006-02-15 05:07:09'), +(626,3,'2006-02-15 05:07:09'), +(627,6,'2006-02-15 05:07:09'), +(628,15,'2006-02-15 05:07:09'), +(629,6,'2006-02-15 05:07:09'), +(630,7,'2006-02-15 05:07:09'), +(631,15,'2006-02-15 05:07:09'), +(632,13,'2006-02-15 05:07:09'), +(633,4,'2006-02-15 05:07:09'), +(634,8,'2006-02-15 05:07:09'), +(635,13,'2006-02-15 05:07:09'), +(636,12,'2006-02-15 05:07:09'), +(637,14,'2006-02-15 05:07:09'), +(638,5,'2006-02-15 05:07:09'), +(639,8,'2006-02-15 05:07:09'), +(640,9,'2006-02-15 05:07:09'), +(641,9,'2006-02-15 05:07:09'), +(642,16,'2006-02-15 05:07:09'), +(643,7,'2006-02-15 05:07:09'), +(644,2,'2006-02-15 05:07:09'), +(645,16,'2006-02-15 05:07:09'), +(646,10,'2006-02-15 05:07:09'), +(647,12,'2006-02-15 05:07:09'), +(648,16,'2006-02-15 05:07:09'), +(649,2,'2006-02-15 05:07:09'), +(650,6,'2006-02-15 05:07:09'), +(651,2,'2006-02-15 05:07:09'), +(652,4,'2006-02-15 05:07:09'), +(653,11,'2006-02-15 05:07:09'), +(654,10,'2006-02-15 05:07:09'), +(655,14,'2006-02-15 05:07:09'), +(656,16,'2006-02-15 05:07:09'), +(657,5,'2006-02-15 05:07:09'), +(658,11,'2006-02-15 05:07:09'), +(659,1,'2006-02-15 05:07:09'), +(660,5,'2006-02-15 05:07:09'), +(661,9,'2006-02-15 05:07:09'), +(662,7,'2006-02-15 05:07:09'), +(663,4,'2006-02-15 05:07:09'), +(664,1,'2006-02-15 05:07:09'), +(665,11,'2006-02-15 05:07:09'), +(666,7,'2006-02-15 05:07:09'), +(667,15,'2006-02-15 05:07:09'), +(668,15,'2006-02-15 05:07:09'), +(669,9,'2006-02-15 05:07:09'), +(670,6,'2006-02-15 05:07:09'), +(671,15,'2006-02-15 05:07:09'), +(672,5,'2006-02-15 05:07:09'), +(673,12,'2006-02-15 05:07:09'), +(674,9,'2006-02-15 05:07:09'), +(675,13,'2006-02-15 05:07:09'), +(676,15,'2006-02-15 05:07:09'), +(677,13,'2006-02-15 05:07:09'), +(678,15,'2006-02-15 05:07:09'), +(679,8,'2006-02-15 05:07:09'), +(680,5,'2006-02-15 05:07:09'), +(681,15,'2006-02-15 05:07:09'), +(682,8,'2006-02-15 05:07:09'), +(683,7,'2006-02-15 05:07:09'), +(684,10,'2006-02-15 05:07:09'), +(685,13,'2006-02-15 05:07:09'), +(686,13,'2006-02-15 05:07:09'), +(687,6,'2006-02-15 05:07:09'), +(688,3,'2006-02-15 05:07:09'), +(689,9,'2006-02-15 05:07:09'), +(690,2,'2006-02-15 05:07:09'), +(691,15,'2006-02-15 05:07:09'), +(692,2,'2006-02-15 05:07:09'), +(693,2,'2006-02-15 05:07:09'), +(694,4,'2006-02-15 05:07:09'), +(695,8,'2006-02-15 05:07:09'), +(696,2,'2006-02-15 05:07:09'), +(697,1,'2006-02-15 05:07:09'), +(698,6,'2006-02-15 05:07:09'), +(699,10,'2006-02-15 05:07:09'), +(700,8,'2006-02-15 05:07:09'), +(701,10,'2006-02-15 05:07:09'), +(702,11,'2006-02-15 05:07:09'), +(703,2,'2006-02-15 05:07:09'), +(704,5,'2006-02-15 05:07:09'), +(705,9,'2006-02-15 05:07:09'), +(706,7,'2006-02-15 05:07:09'), +(707,1,'2006-02-15 05:07:09'), +(708,6,'2006-02-15 05:07:09'), +(709,7,'2006-02-15 05:07:09'), +(710,8,'2006-02-15 05:07:09'), +(711,14,'2006-02-15 05:07:09'), +(712,6,'2006-02-15 05:07:09'), +(713,6,'2006-02-15 05:07:09'), +(714,14,'2006-02-15 05:07:09'), +(715,8,'2006-02-15 05:07:09'), +(716,11,'2006-02-15 05:07:09'), +(717,1,'2006-02-15 05:07:09'), +(718,12,'2006-02-15 05:07:09'), +(719,15,'2006-02-15 05:07:09'), +(720,13,'2006-02-15 05:07:09'), +(721,12,'2006-02-15 05:07:09'), +(722,11,'2006-02-15 05:07:09'), +(723,14,'2006-02-15 05:07:09'), +(724,8,'2006-02-15 05:07:09'), +(725,4,'2006-02-15 05:07:09'), +(726,9,'2006-02-15 05:07:09'), +(727,8,'2006-02-15 05:07:09'), +(728,7,'2006-02-15 05:07:09'), +(729,15,'2006-02-15 05:07:09'), +(730,13,'2006-02-15 05:07:09'), +(731,4,'2006-02-15 05:07:09'), +(732,1,'2006-02-15 05:07:09'), +(733,15,'2006-02-15 05:07:09'), +(734,6,'2006-02-15 05:07:09'), +(735,3,'2006-02-15 05:07:09'), +(736,8,'2006-02-15 05:07:09'), +(737,11,'2006-02-15 05:07:09'), +(738,9,'2006-02-15 05:07:09'), +(739,7,'2006-02-15 05:07:09'), +(740,11,'2006-02-15 05:07:09'), +(741,12,'2006-02-15 05:07:09'), +(742,10,'2006-02-15 05:07:09'), +(743,2,'2006-02-15 05:07:09'), +(744,4,'2006-02-15 05:07:09'), +(745,15,'2006-02-15 05:07:09'), +(746,10,'2006-02-15 05:07:09'), +(747,10,'2006-02-15 05:07:09'), +(748,1,'2006-02-15 05:07:09'), +(749,11,'2006-02-15 05:07:09'), +(750,13,'2006-02-15 05:07:09'), +(751,13,'2006-02-15 05:07:09'), +(752,12,'2006-02-15 05:07:09'), +(753,8,'2006-02-15 05:07:09'), +(754,5,'2006-02-15 05:07:09'), +(755,3,'2006-02-15 05:07:09'), +(756,5,'2006-02-15 05:07:09'), +(757,6,'2006-02-15 05:07:09'), +(758,7,'2006-02-15 05:07:09'), +(759,13,'2006-02-15 05:07:09'), +(760,13,'2006-02-15 05:07:09'), +(761,3,'2006-02-15 05:07:09'), +(762,10,'2006-02-15 05:07:09'), +(763,15,'2006-02-15 05:07:09'), +(764,15,'2006-02-15 05:07:09'), +(765,5,'2006-02-15 05:07:09'), +(766,7,'2006-02-15 05:07:09'), +(767,12,'2006-02-15 05:07:09'), +(768,3,'2006-02-15 05:07:09'), +(769,9,'2006-02-15 05:07:09'), +(770,9,'2006-02-15 05:07:09'), +(771,7,'2006-02-15 05:07:09'), +(772,7,'2006-02-15 05:07:09'), +(773,15,'2006-02-15 05:07:09'), +(774,5,'2006-02-15 05:07:09'), +(775,7,'2006-02-15 05:07:09'), +(776,6,'2006-02-15 05:07:09'), +(777,15,'2006-02-15 05:07:09'), +(778,8,'2006-02-15 05:07:09'), +(779,15,'2006-02-15 05:07:09'), +(780,8,'2006-02-15 05:07:09'), +(781,10,'2006-02-15 05:07:09'), +(782,15,'2006-02-15 05:07:09'), +(783,16,'2006-02-15 05:07:09'), +(784,16,'2006-02-15 05:07:09'), +(785,16,'2006-02-15 05:07:09'), +(786,3,'2006-02-15 05:07:09'), +(787,16,'2006-02-15 05:07:09'), +(788,6,'2006-02-15 05:07:09'), +(789,9,'2006-02-15 05:07:09'), +(790,7,'2006-02-15 05:07:09'), +(791,6,'2006-02-15 05:07:09'), +(792,9,'2006-02-15 05:07:09'), +(793,1,'2006-02-15 05:07:09'), +(794,1,'2006-02-15 05:07:09'), +(795,8,'2006-02-15 05:07:09'), +(796,15,'2006-02-15 05:07:09'), +(797,12,'2006-02-15 05:07:09'), +(798,14,'2006-02-15 05:07:09'), +(799,11,'2006-02-15 05:07:09'), +(800,11,'2006-02-15 05:07:09'), +(801,3,'2006-02-15 05:07:09'), +(802,1,'2006-02-15 05:07:09'), +(803,7,'2006-02-15 05:07:09'), +(804,11,'2006-02-15 05:07:09'), +(805,2,'2006-02-15 05:07:09'), +(806,13,'2006-02-15 05:07:09'), +(807,10,'2006-02-15 05:07:09'), +(808,4,'2006-02-15 05:07:09'), +(809,15,'2006-02-15 05:07:09'), +(810,8,'2006-02-15 05:07:09'), +(811,16,'2006-02-15 05:07:09'), +(812,6,'2006-02-15 05:07:09'), +(813,15,'2006-02-15 05:07:09'), +(814,5,'2006-02-15 05:07:09'), +(815,4,'2006-02-15 05:07:09'), +(816,2,'2006-02-15 05:07:09'), +(817,14,'2006-02-15 05:07:09'), +(818,7,'2006-02-15 05:07:09'), +(819,12,'2006-02-15 05:07:09'), +(820,2,'2006-02-15 05:07:09'), +(821,9,'2006-02-15 05:07:09'), +(822,8,'2006-02-15 05:07:09'), +(823,1,'2006-02-15 05:07:09'), +(824,8,'2006-02-15 05:07:09'), +(825,1,'2006-02-15 05:07:09'), +(826,16,'2006-02-15 05:07:09'), +(827,7,'2006-02-15 05:07:09'), +(828,4,'2006-02-15 05:07:09'), +(829,8,'2006-02-15 05:07:09'), +(830,11,'2006-02-15 05:07:09'), +(831,14,'2006-02-15 05:07:09'), +(832,8,'2006-02-15 05:07:09'), +(833,3,'2006-02-15 05:07:09'), +(834,6,'2006-02-15 05:07:09'), +(835,10,'2006-02-15 05:07:09'), +(836,15,'2006-02-15 05:07:09'), +(837,5,'2006-02-15 05:07:09'), +(838,1,'2006-02-15 05:07:09'), +(839,14,'2006-02-15 05:07:09'), +(840,10,'2006-02-15 05:07:09'), +(841,15,'2006-02-15 05:07:09'), +(842,10,'2006-02-15 05:07:09'), +(843,4,'2006-02-15 05:07:09'), +(844,15,'2006-02-15 05:07:09'), +(845,9,'2006-02-15 05:07:09'), +(846,13,'2006-02-15 05:07:09'), +(847,13,'2006-02-15 05:07:09'), +(848,16,'2006-02-15 05:07:09'), +(849,2,'2006-02-15 05:07:09'), +(850,1,'2006-02-15 05:07:09'), +(851,15,'2006-02-15 05:07:09'), +(852,3,'2006-02-15 05:07:09'), +(853,3,'2006-02-15 05:07:09'), +(854,11,'2006-02-15 05:07:09'), +(855,6,'2006-02-15 05:07:09'), +(856,11,'2006-02-15 05:07:09'), +(857,5,'2006-02-15 05:07:09'), +(858,5,'2006-02-15 05:07:09'), +(859,2,'2006-02-15 05:07:09'), +(860,14,'2006-02-15 05:07:09'), +(861,10,'2006-02-15 05:07:09'), +(862,4,'2006-02-15 05:07:09'), +(863,14,'2006-02-15 05:07:09'), +(864,3,'2006-02-15 05:07:09'), +(865,2,'2006-02-15 05:07:09'), +(866,8,'2006-02-15 05:07:09'), +(867,8,'2006-02-15 05:07:09'), +(868,16,'2006-02-15 05:07:09'), +(869,1,'2006-02-15 05:07:09'), +(870,11,'2006-02-15 05:07:09'), +(871,5,'2006-02-15 05:07:09'), +(872,16,'2006-02-15 05:07:09'), +(873,3,'2006-02-15 05:07:09'), +(874,4,'2006-02-15 05:07:09'), +(875,15,'2006-02-15 05:07:09'), +(876,11,'2006-02-15 05:07:09'), +(877,12,'2006-02-15 05:07:09'), +(878,16,'2006-02-15 05:07:09'), +(879,12,'2006-02-15 05:07:09'), +(880,2,'2006-02-15 05:07:09'), +(881,11,'2006-02-15 05:07:09'), +(882,7,'2006-02-15 05:07:09'), +(883,3,'2006-02-15 05:07:09'), +(884,12,'2006-02-15 05:07:09'), +(885,11,'2006-02-15 05:07:09'), +(886,2,'2006-02-15 05:07:09'), +(887,2,'2006-02-15 05:07:09'), +(888,6,'2006-02-15 05:07:09'), +(889,3,'2006-02-15 05:07:09'), +(890,15,'2006-02-15 05:07:09'), +(891,4,'2006-02-15 05:07:09'), +(892,2,'2006-02-15 05:07:09'), +(893,14,'2006-02-15 05:07:09'), +(894,16,'2006-02-15 05:07:09'), +(895,4,'2006-02-15 05:07:09'), +(896,3,'2006-02-15 05:07:09'), +(897,7,'2006-02-15 05:07:09'), +(898,15,'2006-02-15 05:07:09'), +(899,4,'2006-02-15 05:07:09'), +(900,9,'2006-02-15 05:07:09'), +(901,2,'2006-02-15 05:07:09'), +(902,15,'2006-02-15 05:07:09'), +(903,16,'2006-02-15 05:07:09'), +(904,11,'2006-02-15 05:07:09'), +(905,5,'2006-02-15 05:07:09'), +(906,5,'2006-02-15 05:07:09'), +(907,7,'2006-02-15 05:07:09'), +(908,9,'2006-02-15 05:07:09'), +(909,11,'2006-02-15 05:07:09'), +(910,7,'2006-02-15 05:07:09'), +(911,1,'2006-02-15 05:07:09'), +(912,14,'2006-02-15 05:07:09'), +(913,13,'2006-02-15 05:07:09'), +(914,16,'2006-02-15 05:07:09'), +(915,1,'2006-02-15 05:07:09'), +(916,2,'2006-02-15 05:07:09'), +(917,15,'2006-02-15 05:07:09'), +(918,3,'2006-02-15 05:07:09'), +(919,10,'2006-02-15 05:07:09'), +(920,13,'2006-02-15 05:07:09'), +(921,12,'2006-02-15 05:07:09'), +(922,11,'2006-02-15 05:07:09'), +(923,7,'2006-02-15 05:07:09'), +(924,14,'2006-02-15 05:07:09'), +(925,6,'2006-02-15 05:07:09'), +(926,6,'2006-02-15 05:07:09'), +(927,1,'2006-02-15 05:07:09'), +(928,3,'2006-02-15 05:07:09'), +(929,9,'2006-02-15 05:07:09'), +(930,14,'2006-02-15 05:07:09'), +(931,16,'2006-02-15 05:07:09'), +(932,5,'2006-02-15 05:07:09'), +(933,13,'2006-02-15 05:07:09'), +(934,10,'2006-02-15 05:07:09'), +(935,13,'2006-02-15 05:07:09'), +(936,12,'2006-02-15 05:07:09'), +(937,13,'2006-02-15 05:07:09'), +(938,5,'2006-02-15 05:07:09'), +(939,5,'2006-02-15 05:07:09'), +(940,15,'2006-02-15 05:07:09'), +(941,10,'2006-02-15 05:07:09'), +(942,7,'2006-02-15 05:07:09'), +(943,6,'2006-02-15 05:07:09'), +(944,7,'2006-02-15 05:07:09'), +(945,6,'2006-02-15 05:07:09'), +(946,8,'2006-02-15 05:07:09'), +(947,9,'2006-02-15 05:07:09'), +(948,13,'2006-02-15 05:07:09'), +(949,10,'2006-02-15 05:07:09'), +(950,4,'2006-02-15 05:07:09'), +(951,4,'2006-02-15 05:07:09'), +(952,6,'2006-02-15 05:07:09'), +(953,2,'2006-02-15 05:07:09'), +(954,13,'2006-02-15 05:07:09'), +(955,3,'2006-02-15 05:07:09'), +(956,10,'2006-02-15 05:07:09'), +(957,9,'2006-02-15 05:07:09'), +(958,7,'2006-02-15 05:07:09'), +(959,3,'2006-02-15 05:07:09'), +(960,6,'2006-02-15 05:07:09'), +(961,9,'2006-02-15 05:07:09'), +(962,4,'2006-02-15 05:07:09'), +(963,2,'2006-02-15 05:07:09'), +(964,1,'2006-02-15 05:07:09'), +(965,11,'2006-02-15 05:07:09'), +(966,6,'2006-02-15 05:07:09'), +(967,14,'2006-02-15 05:07:09'), +(968,1,'2006-02-15 05:07:09'), +(969,7,'2006-02-15 05:07:09'), +(970,4,'2006-02-15 05:07:09'), +(971,9,'2006-02-15 05:07:09'), +(972,14,'2006-02-15 05:07:09'), +(973,6,'2006-02-15 05:07:09'), +(974,13,'2006-02-15 05:07:09'), +(975,8,'2006-02-15 05:07:09'), +(976,10,'2006-02-15 05:07:09'), +(977,16,'2006-02-15 05:07:09'), +(978,5,'2006-02-15 05:07:09'), +(979,7,'2006-02-15 05:07:09'), +(980,12,'2006-02-15 05:07:09'), +(981,16,'2006-02-15 05:07:09'), +(982,1,'2006-02-15 05:07:09'), +(983,12,'2006-02-15 05:07:09'), +(984,9,'2006-02-15 05:07:09'), +(985,14,'2006-02-15 05:07:09'), +(986,2,'2006-02-15 05:07:09'), +(987,12,'2006-02-15 05:07:09'), +(988,16,'2006-02-15 05:07:09'), +(989,16,'2006-02-15 05:07:09'), +(990,11,'2006-02-15 05:07:09'), +(991,1,'2006-02-15 05:07:09'), +(992,6,'2006-02-15 05:07:09'), +(993,3,'2006-02-15 05:07:09'), +(994,13,'2006-02-15 05:07:09'), +(995,11,'2006-02-15 05:07:09'), +(996,6,'2006-02-15 05:07:09'), +(997,12,'2006-02-15 05:07:09'), +(998,11,'2006-02-15 05:07:09'), +(999,3,'2006-02-15 05:07:09'), +(1000,5,'2006-02-15 05:07:09'); +COMMIT; + +-- +-- Dumping data for table inventory +-- + +SET AUTOCOMMIT=0; +INSERT INTO inventory VALUES (1,1,1,'2006-02-15 05:09:17'), +(2,1,1,'2006-02-15 05:09:17'), +(3,1,1,'2006-02-15 05:09:17'), +(4,1,1,'2006-02-15 05:09:17'), +(5,1,2,'2006-02-15 05:09:17'), +(6,1,2,'2006-02-15 05:09:17'), +(7,1,2,'2006-02-15 05:09:17'), +(8,1,2,'2006-02-15 05:09:17'), +(9,2,2,'2006-02-15 05:09:17'), +(10,2,2,'2006-02-15 05:09:17'), +(11,2,2,'2006-02-15 05:09:17'), +(12,3,2,'2006-02-15 05:09:17'), +(13,3,2,'2006-02-15 05:09:17'), +(14,3,2,'2006-02-15 05:09:17'), +(15,3,2,'2006-02-15 05:09:17'), +(16,4,1,'2006-02-15 05:09:17'), +(17,4,1,'2006-02-15 05:09:17'), +(18,4,1,'2006-02-15 05:09:17'), +(19,4,1,'2006-02-15 05:09:17'), +(20,4,2,'2006-02-15 05:09:17'), +(21,4,2,'2006-02-15 05:09:17'), +(22,4,2,'2006-02-15 05:09:17'), +(23,5,2,'2006-02-15 05:09:17'), +(24,5,2,'2006-02-15 05:09:17'), +(25,5,2,'2006-02-15 05:09:17'), +(26,6,1,'2006-02-15 05:09:17'), +(27,6,1,'2006-02-15 05:09:17'), +(28,6,1,'2006-02-15 05:09:17'), +(29,6,2,'2006-02-15 05:09:17'), +(30,6,2,'2006-02-15 05:09:17'), +(31,6,2,'2006-02-15 05:09:17'), +(32,7,1,'2006-02-15 05:09:17'), +(33,7,1,'2006-02-15 05:09:17'), +(34,7,2,'2006-02-15 05:09:17'), +(35,7,2,'2006-02-15 05:09:17'), +(36,7,2,'2006-02-15 05:09:17'), +(37,8,2,'2006-02-15 05:09:17'), +(38,8,2,'2006-02-15 05:09:17'), +(39,8,2,'2006-02-15 05:09:17'), +(40,8,2,'2006-02-15 05:09:17'), +(41,9,1,'2006-02-15 05:09:17'), +(42,9,1,'2006-02-15 05:09:17'), +(43,9,1,'2006-02-15 05:09:17'), +(44,9,2,'2006-02-15 05:09:17'), +(45,9,2,'2006-02-15 05:09:17'), +(46,10,1,'2006-02-15 05:09:17'), +(47,10,1,'2006-02-15 05:09:17'), +(48,10,1,'2006-02-15 05:09:17'), +(49,10,1,'2006-02-15 05:09:17'), +(50,10,2,'2006-02-15 05:09:17'), +(51,10,2,'2006-02-15 05:09:17'), +(52,10,2,'2006-02-15 05:09:17'), +(53,11,1,'2006-02-15 05:09:17'), +(54,11,1,'2006-02-15 05:09:17'), +(55,11,1,'2006-02-15 05:09:17'), +(56,11,1,'2006-02-15 05:09:17'), +(57,11,2,'2006-02-15 05:09:17'), +(58,11,2,'2006-02-15 05:09:17'), +(59,11,2,'2006-02-15 05:09:17'), +(60,12,1,'2006-02-15 05:09:17'), +(61,12,1,'2006-02-15 05:09:17'), +(62,12,1,'2006-02-15 05:09:17'), +(63,12,2,'2006-02-15 05:09:17'), +(64,12,2,'2006-02-15 05:09:17'), +(65,12,2,'2006-02-15 05:09:17'), +(66,12,2,'2006-02-15 05:09:17'), +(67,13,2,'2006-02-15 05:09:17'), +(68,13,2,'2006-02-15 05:09:17'), +(69,13,2,'2006-02-15 05:09:17'), +(70,13,2,'2006-02-15 05:09:17'), +(71,15,1,'2006-02-15 05:09:17'), +(72,15,1,'2006-02-15 05:09:17'), +(73,15,2,'2006-02-15 05:09:17'), +(74,15,2,'2006-02-15 05:09:17'), +(75,15,2,'2006-02-15 05:09:17'), +(76,15,2,'2006-02-15 05:09:17'), +(77,16,1,'2006-02-15 05:09:17'), +(78,16,1,'2006-02-15 05:09:17'), +(79,16,2,'2006-02-15 05:09:17'), +(80,16,2,'2006-02-15 05:09:17'), +(81,17,1,'2006-02-15 05:09:17'), +(82,17,1,'2006-02-15 05:09:17'), +(83,17,1,'2006-02-15 05:09:17'), +(84,17,2,'2006-02-15 05:09:17'), +(85,17,2,'2006-02-15 05:09:17'), +(86,17,2,'2006-02-15 05:09:17'), +(87,18,1,'2006-02-15 05:09:17'), +(88,18,1,'2006-02-15 05:09:17'), +(89,18,1,'2006-02-15 05:09:17'), +(90,18,2,'2006-02-15 05:09:17'), +(91,18,2,'2006-02-15 05:09:17'), +(92,18,2,'2006-02-15 05:09:17'), +(93,19,1,'2006-02-15 05:09:17'), +(94,19,1,'2006-02-15 05:09:17'), +(95,19,1,'2006-02-15 05:09:17'), +(96,19,1,'2006-02-15 05:09:17'), +(97,19,2,'2006-02-15 05:09:17'), +(98,19,2,'2006-02-15 05:09:17'), +(99,20,1,'2006-02-15 05:09:17'), +(100,20,1,'2006-02-15 05:09:17'), +(101,20,1,'2006-02-15 05:09:17'), +(102,21,1,'2006-02-15 05:09:17'), +(103,21,1,'2006-02-15 05:09:17'), +(104,21,2,'2006-02-15 05:09:17'), +(105,21,2,'2006-02-15 05:09:17'), +(106,21,2,'2006-02-15 05:09:17'), +(107,21,2,'2006-02-15 05:09:17'), +(108,22,1,'2006-02-15 05:09:17'), +(109,22,1,'2006-02-15 05:09:17'), +(110,22,1,'2006-02-15 05:09:17'), +(111,22,1,'2006-02-15 05:09:17'), +(112,22,2,'2006-02-15 05:09:17'), +(113,22,2,'2006-02-15 05:09:17'), +(114,22,2,'2006-02-15 05:09:17'), +(115,23,1,'2006-02-15 05:09:17'), +(116,23,1,'2006-02-15 05:09:17'), +(117,23,1,'2006-02-15 05:09:17'), +(118,23,2,'2006-02-15 05:09:17'), +(119,23,2,'2006-02-15 05:09:17'), +(120,24,1,'2006-02-15 05:09:17'), +(121,24,1,'2006-02-15 05:09:17'), +(122,24,1,'2006-02-15 05:09:17'), +(123,24,1,'2006-02-15 05:09:17'), +(124,25,1,'2006-02-15 05:09:17'), +(125,25,1,'2006-02-15 05:09:17'), +(126,25,1,'2006-02-15 05:09:17'), +(127,25,1,'2006-02-15 05:09:17'), +(128,25,2,'2006-02-15 05:09:17'), +(129,25,2,'2006-02-15 05:09:17'), +(130,26,1,'2006-02-15 05:09:17'), +(131,26,1,'2006-02-15 05:09:17'), +(132,26,2,'2006-02-15 05:09:17'), +(133,26,2,'2006-02-15 05:09:17'), +(134,26,2,'2006-02-15 05:09:17'), +(135,27,1,'2006-02-15 05:09:17'), +(136,27,1,'2006-02-15 05:09:17'), +(137,27,1,'2006-02-15 05:09:17'), +(138,27,1,'2006-02-15 05:09:17'), +(139,28,1,'2006-02-15 05:09:17'), +(140,28,1,'2006-02-15 05:09:17'), +(141,28,1,'2006-02-15 05:09:17'), +(142,29,1,'2006-02-15 05:09:17'), +(143,29,1,'2006-02-15 05:09:17'), +(144,30,1,'2006-02-15 05:09:17'), +(145,30,1,'2006-02-15 05:09:17'), +(146,31,1,'2006-02-15 05:09:17'), +(147,31,1,'2006-02-15 05:09:17'), +(148,31,1,'2006-02-15 05:09:17'), +(149,31,1,'2006-02-15 05:09:17'), +(150,31,2,'2006-02-15 05:09:17'), +(151,31,2,'2006-02-15 05:09:17'), +(152,31,2,'2006-02-15 05:09:17'), +(153,31,2,'2006-02-15 05:09:17'), +(154,32,2,'2006-02-15 05:09:17'), +(155,32,2,'2006-02-15 05:09:17'), +(156,34,2,'2006-02-15 05:09:17'), +(157,34,2,'2006-02-15 05:09:17'), +(158,34,2,'2006-02-15 05:09:17'), +(159,34,2,'2006-02-15 05:09:17'), +(160,35,1,'2006-02-15 05:09:17'), +(161,35,1,'2006-02-15 05:09:17'), +(162,35,1,'2006-02-15 05:09:17'), +(163,35,1,'2006-02-15 05:09:17'), +(164,35,2,'2006-02-15 05:09:17'), +(165,35,2,'2006-02-15 05:09:17'), +(166,35,2,'2006-02-15 05:09:17'), +(167,37,1,'2006-02-15 05:09:17'), +(168,37,1,'2006-02-15 05:09:17'), +(169,37,1,'2006-02-15 05:09:17'), +(170,37,1,'2006-02-15 05:09:17'), +(171,37,2,'2006-02-15 05:09:17'), +(172,37,2,'2006-02-15 05:09:17'), +(173,37,2,'2006-02-15 05:09:17'), +(174,39,1,'2006-02-15 05:09:17'), +(175,39,1,'2006-02-15 05:09:17'), +(176,39,1,'2006-02-15 05:09:17'), +(177,39,2,'2006-02-15 05:09:17'), +(178,39,2,'2006-02-15 05:09:17'), +(179,39,2,'2006-02-15 05:09:17'), +(180,39,2,'2006-02-15 05:09:17'), +(181,40,2,'2006-02-15 05:09:17'), +(182,40,2,'2006-02-15 05:09:17'), +(183,40,2,'2006-02-15 05:09:17'), +(184,40,2,'2006-02-15 05:09:17'), +(185,42,2,'2006-02-15 05:09:17'), +(186,42,2,'2006-02-15 05:09:17'), +(187,42,2,'2006-02-15 05:09:17'), +(188,42,2,'2006-02-15 05:09:17'), +(189,43,1,'2006-02-15 05:09:17'), +(190,43,1,'2006-02-15 05:09:17'), +(191,43,1,'2006-02-15 05:09:17'), +(192,43,2,'2006-02-15 05:09:17'), +(193,43,2,'2006-02-15 05:09:17'), +(194,43,2,'2006-02-15 05:09:17'), +(195,43,2,'2006-02-15 05:09:17'), +(196,44,1,'2006-02-15 05:09:17'), +(197,44,1,'2006-02-15 05:09:17'), +(198,44,2,'2006-02-15 05:09:17'), +(199,44,2,'2006-02-15 05:09:17'), +(200,44,2,'2006-02-15 05:09:17'), +(201,45,1,'2006-02-15 05:09:17'), +(202,45,1,'2006-02-15 05:09:17'), +(203,45,1,'2006-02-15 05:09:17'), +(204,45,1,'2006-02-15 05:09:17'), +(205,45,2,'2006-02-15 05:09:17'), +(206,45,2,'2006-02-15 05:09:17'), +(207,46,2,'2006-02-15 05:09:17'), +(208,46,2,'2006-02-15 05:09:17'), +(209,46,2,'2006-02-15 05:09:17'), +(210,47,2,'2006-02-15 05:09:17'), +(211,47,2,'2006-02-15 05:09:17'), +(212,48,1,'2006-02-15 05:09:17'), +(213,48,1,'2006-02-15 05:09:17'), +(214,48,2,'2006-02-15 05:09:17'), +(215,48,2,'2006-02-15 05:09:17'), +(216,49,1,'2006-02-15 05:09:17'), +(217,49,1,'2006-02-15 05:09:17'), +(218,49,1,'2006-02-15 05:09:17'), +(219,49,2,'2006-02-15 05:09:17'), +(220,49,2,'2006-02-15 05:09:17'), +(221,49,2,'2006-02-15 05:09:17'), +(222,50,1,'2006-02-15 05:09:17'), +(223,50,1,'2006-02-15 05:09:17'), +(224,50,1,'2006-02-15 05:09:17'), +(225,50,2,'2006-02-15 05:09:17'), +(226,50,2,'2006-02-15 05:09:17'), +(227,51,1,'2006-02-15 05:09:17'), +(228,51,1,'2006-02-15 05:09:17'), +(229,51,2,'2006-02-15 05:09:17'), +(230,51,2,'2006-02-15 05:09:17'), +(231,51,2,'2006-02-15 05:09:17'), +(232,51,2,'2006-02-15 05:09:17'), +(233,52,2,'2006-02-15 05:09:17'), +(234,52,2,'2006-02-15 05:09:17'), +(235,53,1,'2006-02-15 05:09:17'), +(236,53,1,'2006-02-15 05:09:17'), +(237,54,1,'2006-02-15 05:09:17'), +(238,54,1,'2006-02-15 05:09:17'), +(239,54,1,'2006-02-15 05:09:17'), +(240,54,2,'2006-02-15 05:09:17'), +(241,54,2,'2006-02-15 05:09:17'), +(242,55,1,'2006-02-15 05:09:17'), +(243,55,1,'2006-02-15 05:09:17'), +(244,55,1,'2006-02-15 05:09:17'), +(245,55,1,'2006-02-15 05:09:17'), +(246,55,2,'2006-02-15 05:09:17'), +(247,55,2,'2006-02-15 05:09:17'), +(248,56,1,'2006-02-15 05:09:17'), +(249,56,1,'2006-02-15 05:09:17'), +(250,56,1,'2006-02-15 05:09:17'), +(251,56,2,'2006-02-15 05:09:17'), +(252,56,2,'2006-02-15 05:09:17'), +(253,57,1,'2006-02-15 05:09:17'), +(254,57,1,'2006-02-15 05:09:17'), +(255,57,1,'2006-02-15 05:09:17'), +(256,57,1,'2006-02-15 05:09:17'), +(257,57,2,'2006-02-15 05:09:17'), +(258,57,2,'2006-02-15 05:09:17'), +(259,57,2,'2006-02-15 05:09:17'), +(260,58,2,'2006-02-15 05:09:17'), +(261,58,2,'2006-02-15 05:09:17'), +(262,58,2,'2006-02-15 05:09:17'), +(263,58,2,'2006-02-15 05:09:17'), +(264,59,1,'2006-02-15 05:09:17'), +(265,59,1,'2006-02-15 05:09:17'), +(266,59,1,'2006-02-15 05:09:17'), +(267,59,2,'2006-02-15 05:09:17'), +(268,59,2,'2006-02-15 05:09:17'), +(269,60,1,'2006-02-15 05:09:17'), +(270,60,1,'2006-02-15 05:09:17'), +(271,60,1,'2006-02-15 05:09:17'), +(272,61,1,'2006-02-15 05:09:17'), +(273,61,1,'2006-02-15 05:09:17'), +(274,61,1,'2006-02-15 05:09:17'), +(275,61,1,'2006-02-15 05:09:17'), +(276,61,2,'2006-02-15 05:09:17'), +(277,61,2,'2006-02-15 05:09:17'), +(278,62,2,'2006-02-15 05:09:17'), +(279,62,2,'2006-02-15 05:09:17'), +(280,63,1,'2006-02-15 05:09:17'), +(281,63,1,'2006-02-15 05:09:17'), +(282,63,2,'2006-02-15 05:09:17'), +(283,63,2,'2006-02-15 05:09:17'), +(284,64,2,'2006-02-15 05:09:17'), +(285,64,2,'2006-02-15 05:09:17'), +(286,64,2,'2006-02-15 05:09:17'), +(287,65,2,'2006-02-15 05:09:17'), +(288,65,2,'2006-02-15 05:09:17'), +(289,65,2,'2006-02-15 05:09:17'), +(290,65,2,'2006-02-15 05:09:17'), +(291,66,1,'2006-02-15 05:09:17'), +(292,66,1,'2006-02-15 05:09:17'), +(293,66,1,'2006-02-15 05:09:17'), +(294,67,1,'2006-02-15 05:09:17'), +(295,67,1,'2006-02-15 05:09:17'), +(296,67,2,'2006-02-15 05:09:17'), +(297,67,2,'2006-02-15 05:09:17'), +(298,67,2,'2006-02-15 05:09:17'), +(299,67,2,'2006-02-15 05:09:17'), +(300,68,1,'2006-02-15 05:09:17'), +(301,68,1,'2006-02-15 05:09:17'), +(302,68,2,'2006-02-15 05:09:17'), +(303,68,2,'2006-02-15 05:09:17'), +(304,69,1,'2006-02-15 05:09:17'), +(305,69,1,'2006-02-15 05:09:17'), +(306,69,1,'2006-02-15 05:09:17'), +(307,69,1,'2006-02-15 05:09:17'), +(308,69,2,'2006-02-15 05:09:17'), +(309,69,2,'2006-02-15 05:09:17'), +(310,69,2,'2006-02-15 05:09:17'), +(311,69,2,'2006-02-15 05:09:17'), +(312,70,1,'2006-02-15 05:09:17'), +(313,70,1,'2006-02-15 05:09:17'), +(314,70,2,'2006-02-15 05:09:17'), +(315,70,2,'2006-02-15 05:09:17'), +(316,71,2,'2006-02-15 05:09:17'), +(317,71,2,'2006-02-15 05:09:17'), +(318,71,2,'2006-02-15 05:09:17'), +(319,71,2,'2006-02-15 05:09:17'), +(320,72,1,'2006-02-15 05:09:17'), +(321,72,1,'2006-02-15 05:09:17'), +(322,72,1,'2006-02-15 05:09:17'), +(323,72,1,'2006-02-15 05:09:17'), +(324,72,2,'2006-02-15 05:09:17'), +(325,72,2,'2006-02-15 05:09:17'), +(326,73,1,'2006-02-15 05:09:17'), +(327,73,1,'2006-02-15 05:09:17'), +(328,73,1,'2006-02-15 05:09:17'), +(329,73,1,'2006-02-15 05:09:17'), +(330,73,2,'2006-02-15 05:09:17'), +(331,73,2,'2006-02-15 05:09:17'), +(332,73,2,'2006-02-15 05:09:17'), +(333,73,2,'2006-02-15 05:09:17'), +(334,74,1,'2006-02-15 05:09:17'), +(335,74,1,'2006-02-15 05:09:17'), +(336,74,1,'2006-02-15 05:09:17'), +(337,74,2,'2006-02-15 05:09:17'), +(338,74,2,'2006-02-15 05:09:17'), +(339,75,2,'2006-02-15 05:09:17'), +(340,75,2,'2006-02-15 05:09:17'), +(341,75,2,'2006-02-15 05:09:17'), +(342,76,1,'2006-02-15 05:09:17'), +(343,76,1,'2006-02-15 05:09:17'), +(344,76,1,'2006-02-15 05:09:17'), +(345,77,1,'2006-02-15 05:09:17'), +(346,77,1,'2006-02-15 05:09:17'), +(347,77,1,'2006-02-15 05:09:17'), +(348,77,1,'2006-02-15 05:09:17'), +(349,77,2,'2006-02-15 05:09:17'), +(350,77,2,'2006-02-15 05:09:17'), +(351,78,1,'2006-02-15 05:09:17'), +(352,78,1,'2006-02-15 05:09:17'), +(353,78,1,'2006-02-15 05:09:17'), +(354,78,2,'2006-02-15 05:09:17'), +(355,78,2,'2006-02-15 05:09:17'), +(356,78,2,'2006-02-15 05:09:17'), +(357,78,2,'2006-02-15 05:09:17'), +(358,79,1,'2006-02-15 05:09:17'), +(359,79,1,'2006-02-15 05:09:17'), +(360,79,1,'2006-02-15 05:09:17'), +(361,79,2,'2006-02-15 05:09:17'), +(362,79,2,'2006-02-15 05:09:17'), +(363,79,2,'2006-02-15 05:09:17'), +(364,80,1,'2006-02-15 05:09:17'), +(365,80,1,'2006-02-15 05:09:17'), +(366,80,1,'2006-02-15 05:09:17'), +(367,80,1,'2006-02-15 05:09:17'), +(368,81,1,'2006-02-15 05:09:17'), +(369,81,1,'2006-02-15 05:09:17'), +(370,81,1,'2006-02-15 05:09:17'), +(371,81,1,'2006-02-15 05:09:17'), +(372,82,1,'2006-02-15 05:09:17'), +(373,82,1,'2006-02-15 05:09:17'), +(374,83,1,'2006-02-15 05:09:17'), +(375,83,1,'2006-02-15 05:09:17'), +(376,83,1,'2006-02-15 05:09:17'), +(377,83,2,'2006-02-15 05:09:17'), +(378,83,2,'2006-02-15 05:09:17'), +(379,84,1,'2006-02-15 05:09:17'), +(380,84,1,'2006-02-15 05:09:17'), +(381,84,1,'2006-02-15 05:09:17'), +(382,84,1,'2006-02-15 05:09:17'), +(383,85,2,'2006-02-15 05:09:17'), +(384,85,2,'2006-02-15 05:09:17'), +(385,85,2,'2006-02-15 05:09:17'), +(386,85,2,'2006-02-15 05:09:17'), +(387,86,1,'2006-02-15 05:09:17'), +(388,86,1,'2006-02-15 05:09:17'), +(389,86,1,'2006-02-15 05:09:17'), +(390,86,1,'2006-02-15 05:09:17'), +(391,86,2,'2006-02-15 05:09:17'), +(392,86,2,'2006-02-15 05:09:17'), +(393,86,2,'2006-02-15 05:09:17'), +(394,86,2,'2006-02-15 05:09:17'), +(395,88,2,'2006-02-15 05:09:17'), +(396,88,2,'2006-02-15 05:09:17'), +(397,88,2,'2006-02-15 05:09:17'), +(398,88,2,'2006-02-15 05:09:17'), +(399,89,1,'2006-02-15 05:09:17'), +(400,89,1,'2006-02-15 05:09:17'), +(401,89,1,'2006-02-15 05:09:17'), +(402,89,2,'2006-02-15 05:09:17'), +(403,89,2,'2006-02-15 05:09:17'), +(404,89,2,'2006-02-15 05:09:17'), +(405,90,1,'2006-02-15 05:09:17'), +(406,90,1,'2006-02-15 05:09:17'), +(407,90,1,'2006-02-15 05:09:17'), +(408,90,2,'2006-02-15 05:09:17'), +(409,90,2,'2006-02-15 05:09:17'), +(410,90,2,'2006-02-15 05:09:17'), +(411,91,1,'2006-02-15 05:09:17'), +(412,91,1,'2006-02-15 05:09:17'), +(413,91,1,'2006-02-15 05:09:17'), +(414,91,1,'2006-02-15 05:09:17'), +(415,91,2,'2006-02-15 05:09:17'), +(416,91,2,'2006-02-15 05:09:17'), +(417,91,2,'2006-02-15 05:09:17'), +(418,91,2,'2006-02-15 05:09:17'), +(419,92,1,'2006-02-15 05:09:17'), +(420,92,1,'2006-02-15 05:09:17'), +(421,92,2,'2006-02-15 05:09:17'), +(422,92,2,'2006-02-15 05:09:17'), +(423,93,2,'2006-02-15 05:09:17'), +(424,93,2,'2006-02-15 05:09:17'), +(425,93,2,'2006-02-15 05:09:17'), +(426,94,1,'2006-02-15 05:09:17'), +(427,94,1,'2006-02-15 05:09:17'), +(428,95,1,'2006-02-15 05:09:17'), +(429,95,1,'2006-02-15 05:09:17'), +(430,95,2,'2006-02-15 05:09:17'), +(431,95,2,'2006-02-15 05:09:17'), +(432,95,2,'2006-02-15 05:09:17'), +(433,96,1,'2006-02-15 05:09:17'), +(434,96,1,'2006-02-15 05:09:17'), +(435,96,1,'2006-02-15 05:09:17'), +(436,97,1,'2006-02-15 05:09:17'), +(437,97,1,'2006-02-15 05:09:17'), +(438,97,1,'2006-02-15 05:09:17'), +(439,97,1,'2006-02-15 05:09:17'), +(440,97,2,'2006-02-15 05:09:17'), +(441,97,2,'2006-02-15 05:09:17'), +(442,98,1,'2006-02-15 05:09:17'), +(443,98,1,'2006-02-15 05:09:17'), +(444,98,1,'2006-02-15 05:09:17'), +(445,99,1,'2006-02-15 05:09:17'), +(446,99,1,'2006-02-15 05:09:17'), +(447,99,1,'2006-02-15 05:09:17'), +(448,99,2,'2006-02-15 05:09:17'), +(449,99,2,'2006-02-15 05:09:17'), +(450,99,2,'2006-02-15 05:09:17'), +(451,100,1,'2006-02-15 05:09:17'), +(452,100,1,'2006-02-15 05:09:17'), +(453,100,1,'2006-02-15 05:09:17'), +(454,100,1,'2006-02-15 05:09:17'), +(455,100,2,'2006-02-15 05:09:17'), +(456,100,2,'2006-02-15 05:09:17'), +(457,101,1,'2006-02-15 05:09:17'), +(458,101,1,'2006-02-15 05:09:17'), +(459,101,1,'2006-02-15 05:09:17'), +(460,101,1,'2006-02-15 05:09:17'), +(461,101,2,'2006-02-15 05:09:17'), +(462,101,2,'2006-02-15 05:09:17'), +(463,102,2,'2006-02-15 05:09:17'), +(464,102,2,'2006-02-15 05:09:17'), +(465,103,1,'2006-02-15 05:09:17'), +(466,103,1,'2006-02-15 05:09:17'), +(467,103,1,'2006-02-15 05:09:17'), +(468,103,1,'2006-02-15 05:09:17'), +(469,103,2,'2006-02-15 05:09:17'), +(470,103,2,'2006-02-15 05:09:17'), +(471,103,2,'2006-02-15 05:09:17'), +(472,103,2,'2006-02-15 05:09:17'), +(473,104,2,'2006-02-15 05:09:17'), +(474,104,2,'2006-02-15 05:09:17'), +(475,104,2,'2006-02-15 05:09:17'), +(476,105,1,'2006-02-15 05:09:17'), +(477,105,1,'2006-02-15 05:09:17'), +(478,105,2,'2006-02-15 05:09:17'), +(479,105,2,'2006-02-15 05:09:17'), +(480,105,2,'2006-02-15 05:09:17'), +(481,106,1,'2006-02-15 05:09:17'), +(482,106,1,'2006-02-15 05:09:17'), +(483,107,2,'2006-02-15 05:09:17'), +(484,107,2,'2006-02-15 05:09:17'), +(485,109,1,'2006-02-15 05:09:17'), +(486,109,1,'2006-02-15 05:09:17'), +(487,109,1,'2006-02-15 05:09:17'), +(488,109,1,'2006-02-15 05:09:17'), +(489,109,2,'2006-02-15 05:09:17'), +(490,109,2,'2006-02-15 05:09:17'), +(491,109,2,'2006-02-15 05:09:17'), +(492,109,2,'2006-02-15 05:09:17'), +(493,110,1,'2006-02-15 05:09:17'), +(494,110,1,'2006-02-15 05:09:17'), +(495,110,1,'2006-02-15 05:09:17'), +(496,110,1,'2006-02-15 05:09:17'), +(497,111,2,'2006-02-15 05:09:17'), +(498,111,2,'2006-02-15 05:09:17'), +(499,111,2,'2006-02-15 05:09:17'), +(500,111,2,'2006-02-15 05:09:17'), +(501,112,1,'2006-02-15 05:09:17'), +(502,112,1,'2006-02-15 05:09:17'), +(503,112,1,'2006-02-15 05:09:17'), +(504,112,1,'2006-02-15 05:09:17'), +(505,112,2,'2006-02-15 05:09:17'), +(506,112,2,'2006-02-15 05:09:17'), +(507,112,2,'2006-02-15 05:09:17'), +(508,113,2,'2006-02-15 05:09:17'), +(509,113,2,'2006-02-15 05:09:17'), +(510,113,2,'2006-02-15 05:09:17'), +(511,113,2,'2006-02-15 05:09:17'), +(512,114,1,'2006-02-15 05:09:17'), +(513,114,1,'2006-02-15 05:09:17'), +(514,114,1,'2006-02-15 05:09:17'), +(515,114,1,'2006-02-15 05:09:17'), +(516,114,2,'2006-02-15 05:09:17'), +(517,114,2,'2006-02-15 05:09:17'), +(518,114,2,'2006-02-15 05:09:17'), +(519,115,1,'2006-02-15 05:09:17'), +(520,115,1,'2006-02-15 05:09:17'), +(521,115,1,'2006-02-15 05:09:17'), +(522,115,2,'2006-02-15 05:09:17'), +(523,115,2,'2006-02-15 05:09:17'), +(524,115,2,'2006-02-15 05:09:17'), +(525,115,2,'2006-02-15 05:09:17'), +(526,116,1,'2006-02-15 05:09:17'), +(527,116,1,'2006-02-15 05:09:17'), +(528,116,2,'2006-02-15 05:09:17'), +(529,116,2,'2006-02-15 05:09:17'), +(530,116,2,'2006-02-15 05:09:17'), +(531,116,2,'2006-02-15 05:09:17'), +(532,117,1,'2006-02-15 05:09:17'), +(533,117,1,'2006-02-15 05:09:17'), +(534,117,1,'2006-02-15 05:09:17'), +(535,117,1,'2006-02-15 05:09:17'), +(536,117,2,'2006-02-15 05:09:17'), +(537,117,2,'2006-02-15 05:09:17'), +(538,118,1,'2006-02-15 05:09:17'), +(539,118,1,'2006-02-15 05:09:17'), +(540,118,1,'2006-02-15 05:09:17'), +(541,118,1,'2006-02-15 05:09:17'), +(542,118,2,'2006-02-15 05:09:17'), +(543,118,2,'2006-02-15 05:09:17'), +(544,119,1,'2006-02-15 05:09:17'), +(545,119,1,'2006-02-15 05:09:17'), +(546,119,1,'2006-02-15 05:09:17'), +(547,119,2,'2006-02-15 05:09:17'), +(548,119,2,'2006-02-15 05:09:17'), +(549,119,2,'2006-02-15 05:09:17'), +(550,119,2,'2006-02-15 05:09:17'), +(551,120,1,'2006-02-15 05:09:17'), +(552,120,1,'2006-02-15 05:09:17'), +(553,120,1,'2006-02-15 05:09:17'), +(554,121,1,'2006-02-15 05:09:17'), +(555,121,1,'2006-02-15 05:09:17'), +(556,121,1,'2006-02-15 05:09:17'), +(557,121,2,'2006-02-15 05:09:17'), +(558,121,2,'2006-02-15 05:09:17'), +(559,121,2,'2006-02-15 05:09:17'), +(560,122,1,'2006-02-15 05:09:17'), +(561,122,1,'2006-02-15 05:09:17'), +(562,122,1,'2006-02-15 05:09:17'), +(563,122,1,'2006-02-15 05:09:17'), +(564,122,2,'2006-02-15 05:09:17'), +(565,122,2,'2006-02-15 05:09:17'), +(566,122,2,'2006-02-15 05:09:17'), +(567,123,1,'2006-02-15 05:09:17'), +(568,123,1,'2006-02-15 05:09:17'), +(569,123,2,'2006-02-15 05:09:17'), +(570,123,2,'2006-02-15 05:09:17'), +(571,123,2,'2006-02-15 05:09:17'), +(572,124,2,'2006-02-15 05:09:17'), +(573,124,2,'2006-02-15 05:09:17'), +(574,124,2,'2006-02-15 05:09:17'), +(575,125,2,'2006-02-15 05:09:17'), +(576,125,2,'2006-02-15 05:09:17'), +(577,126,2,'2006-02-15 05:09:17'), +(578,126,2,'2006-02-15 05:09:17'), +(579,126,2,'2006-02-15 05:09:17'), +(580,127,1,'2006-02-15 05:09:17'), +(581,127,1,'2006-02-15 05:09:17'), +(582,127,1,'2006-02-15 05:09:17'), +(583,127,1,'2006-02-15 05:09:17'), +(584,127,2,'2006-02-15 05:09:17'), +(585,127,2,'2006-02-15 05:09:17'), +(586,127,2,'2006-02-15 05:09:17'), +(587,127,2,'2006-02-15 05:09:17'), +(588,129,1,'2006-02-15 05:09:17'), +(589,129,1,'2006-02-15 05:09:17'), +(590,129,1,'2006-02-15 05:09:17'), +(591,129,2,'2006-02-15 05:09:17'), +(592,129,2,'2006-02-15 05:09:17'), +(593,129,2,'2006-02-15 05:09:17'), +(594,130,1,'2006-02-15 05:09:17'), +(595,130,1,'2006-02-15 05:09:17'), +(596,130,2,'2006-02-15 05:09:17'), +(597,130,2,'2006-02-15 05:09:17'), +(598,130,2,'2006-02-15 05:09:17'), +(599,130,2,'2006-02-15 05:09:17'), +(600,131,1,'2006-02-15 05:09:17'), +(601,131,1,'2006-02-15 05:09:17'), +(602,131,1,'2006-02-15 05:09:17'), +(603,131,1,'2006-02-15 05:09:17'), +(604,131,2,'2006-02-15 05:09:17'), +(605,131,2,'2006-02-15 05:09:17'), +(606,132,1,'2006-02-15 05:09:17'), +(607,132,1,'2006-02-15 05:09:17'), +(608,132,1,'2006-02-15 05:09:17'), +(609,132,1,'2006-02-15 05:09:17'), +(610,132,2,'2006-02-15 05:09:17'), +(611,132,2,'2006-02-15 05:09:17'), +(612,133,1,'2006-02-15 05:09:17'), +(613,133,1,'2006-02-15 05:09:17'), +(614,133,2,'2006-02-15 05:09:17'), +(615,133,2,'2006-02-15 05:09:17'), +(616,134,2,'2006-02-15 05:09:17'), +(617,134,2,'2006-02-15 05:09:17'), +(618,134,2,'2006-02-15 05:09:17'), +(619,135,1,'2006-02-15 05:09:17'), +(620,135,1,'2006-02-15 05:09:17'), +(621,135,1,'2006-02-15 05:09:17'), +(622,135,2,'2006-02-15 05:09:17'), +(623,135,2,'2006-02-15 05:09:17'), +(624,135,2,'2006-02-15 05:09:17'), +(625,135,2,'2006-02-15 05:09:17'), +(626,136,1,'2006-02-15 05:09:17'), +(627,136,1,'2006-02-15 05:09:17'), +(628,136,1,'2006-02-15 05:09:17'), +(629,137,2,'2006-02-15 05:09:17'), +(630,137,2,'2006-02-15 05:09:17'), +(631,137,2,'2006-02-15 05:09:17'), +(632,137,2,'2006-02-15 05:09:17'), +(633,138,1,'2006-02-15 05:09:17'), +(634,138,1,'2006-02-15 05:09:17'), +(635,138,2,'2006-02-15 05:09:17'), +(636,138,2,'2006-02-15 05:09:17'), +(637,138,2,'2006-02-15 05:09:17'), +(638,139,1,'2006-02-15 05:09:17'), +(639,139,1,'2006-02-15 05:09:17'), +(640,139,1,'2006-02-15 05:09:17'), +(641,139,1,'2006-02-15 05:09:17'), +(642,139,2,'2006-02-15 05:09:17'), +(643,139,2,'2006-02-15 05:09:17'), +(644,140,1,'2006-02-15 05:09:17'), +(645,140,1,'2006-02-15 05:09:17'), +(646,140,2,'2006-02-15 05:09:17'), +(647,140,2,'2006-02-15 05:09:17'), +(648,140,2,'2006-02-15 05:09:17'), +(649,141,1,'2006-02-15 05:09:17'), +(650,141,1,'2006-02-15 05:09:17'), +(651,141,1,'2006-02-15 05:09:17'), +(652,141,2,'2006-02-15 05:09:17'), +(653,141,2,'2006-02-15 05:09:17'), +(654,142,1,'2006-02-15 05:09:17'), +(655,142,1,'2006-02-15 05:09:17'), +(656,142,1,'2006-02-15 05:09:17'), +(657,142,2,'2006-02-15 05:09:17'), +(658,142,2,'2006-02-15 05:09:17'), +(659,143,1,'2006-02-15 05:09:17'), +(660,143,1,'2006-02-15 05:09:17'), +(661,143,1,'2006-02-15 05:09:17'), +(662,143,1,'2006-02-15 05:09:17'), +(663,143,2,'2006-02-15 05:09:17'), +(664,143,2,'2006-02-15 05:09:17'), +(665,143,2,'2006-02-15 05:09:17'), +(666,145,2,'2006-02-15 05:09:17'), +(667,145,2,'2006-02-15 05:09:17'), +(668,145,2,'2006-02-15 05:09:17'), +(669,146,1,'2006-02-15 05:09:17'), +(670,146,1,'2006-02-15 05:09:17'), +(671,146,1,'2006-02-15 05:09:17'), +(672,147,1,'2006-02-15 05:09:17'), +(673,147,1,'2006-02-15 05:09:17'), +(674,147,1,'2006-02-15 05:09:17'), +(675,147,2,'2006-02-15 05:09:17'), +(676,147,2,'2006-02-15 05:09:17'), +(677,147,2,'2006-02-15 05:09:17'), +(678,149,1,'2006-02-15 05:09:17'), +(679,149,1,'2006-02-15 05:09:17'), +(680,149,1,'2006-02-15 05:09:17'), +(681,149,2,'2006-02-15 05:09:17'), +(682,149,2,'2006-02-15 05:09:17'), +(683,149,2,'2006-02-15 05:09:17'), +(684,150,1,'2006-02-15 05:09:17'), +(685,150,1,'2006-02-15 05:09:17'), +(686,150,2,'2006-02-15 05:09:17'), +(687,150,2,'2006-02-15 05:09:17'), +(688,150,2,'2006-02-15 05:09:17'), +(689,150,2,'2006-02-15 05:09:17'), +(690,151,1,'2006-02-15 05:09:17'), +(691,151,1,'2006-02-15 05:09:17'), +(692,151,2,'2006-02-15 05:09:17'), +(693,151,2,'2006-02-15 05:09:17'), +(694,152,1,'2006-02-15 05:09:17'), +(695,152,1,'2006-02-15 05:09:17'), +(696,152,1,'2006-02-15 05:09:17'), +(697,152,1,'2006-02-15 05:09:17'), +(698,153,1,'2006-02-15 05:09:17'), +(699,153,1,'2006-02-15 05:09:17'), +(700,153,1,'2006-02-15 05:09:17'), +(701,153,1,'2006-02-15 05:09:17'), +(702,154,1,'2006-02-15 05:09:17'), +(703,154,1,'2006-02-15 05:09:17'), +(704,154,1,'2006-02-15 05:09:17'), +(705,154,2,'2006-02-15 05:09:17'), +(706,154,2,'2006-02-15 05:09:17'), +(707,154,2,'2006-02-15 05:09:17'), +(708,154,2,'2006-02-15 05:09:17'), +(709,155,1,'2006-02-15 05:09:17'), +(710,155,1,'2006-02-15 05:09:17'), +(711,155,2,'2006-02-15 05:09:17'), +(712,155,2,'2006-02-15 05:09:17'), +(713,155,2,'2006-02-15 05:09:17'), +(714,156,2,'2006-02-15 05:09:17'), +(715,156,2,'2006-02-15 05:09:17'), +(716,157,2,'2006-02-15 05:09:17'), +(717,157,2,'2006-02-15 05:09:17'), +(718,157,2,'2006-02-15 05:09:17'), +(719,158,1,'2006-02-15 05:09:17'), +(720,158,1,'2006-02-15 05:09:17'), +(721,158,2,'2006-02-15 05:09:17'), +(722,158,2,'2006-02-15 05:09:17'), +(723,158,2,'2006-02-15 05:09:17'), +(724,159,1,'2006-02-15 05:09:17'), +(725,159,1,'2006-02-15 05:09:17'), +(726,159,1,'2006-02-15 05:09:17'), +(727,159,1,'2006-02-15 05:09:17'), +(728,159,2,'2006-02-15 05:09:17'), +(729,159,2,'2006-02-15 05:09:17'), +(730,159,2,'2006-02-15 05:09:17'), +(731,160,1,'2006-02-15 05:09:17'), +(732,160,1,'2006-02-15 05:09:17'), +(733,160,2,'2006-02-15 05:09:17'), +(734,160,2,'2006-02-15 05:09:17'), +(735,160,2,'2006-02-15 05:09:17'), +(736,161,1,'2006-02-15 05:09:17'), +(737,161,1,'2006-02-15 05:09:17'), +(738,162,1,'2006-02-15 05:09:17'), +(739,162,1,'2006-02-15 05:09:17'), +(740,162,1,'2006-02-15 05:09:17'), +(741,162,2,'2006-02-15 05:09:17'), +(742,162,2,'2006-02-15 05:09:17'), +(743,162,2,'2006-02-15 05:09:17'), +(744,162,2,'2006-02-15 05:09:17'), +(745,163,2,'2006-02-15 05:09:17'), +(746,163,2,'2006-02-15 05:09:17'), +(747,163,2,'2006-02-15 05:09:17'), +(748,164,1,'2006-02-15 05:09:17'), +(749,164,1,'2006-02-15 05:09:17'), +(750,164,2,'2006-02-15 05:09:17'), +(751,164,2,'2006-02-15 05:09:17'), +(752,164,2,'2006-02-15 05:09:17'), +(753,165,1,'2006-02-15 05:09:17'), +(754,165,1,'2006-02-15 05:09:17'), +(755,165,1,'2006-02-15 05:09:17'), +(756,165,2,'2006-02-15 05:09:17'), +(757,165,2,'2006-02-15 05:09:17'), +(758,166,1,'2006-02-15 05:09:17'), +(759,166,1,'2006-02-15 05:09:17'), +(760,166,1,'2006-02-15 05:09:17'), +(761,166,1,'2006-02-15 05:09:17'), +(762,166,2,'2006-02-15 05:09:17'), +(763,166,2,'2006-02-15 05:09:17'), +(764,167,1,'2006-02-15 05:09:17'), +(765,167,1,'2006-02-15 05:09:17'), +(766,167,1,'2006-02-15 05:09:17'), +(767,167,1,'2006-02-15 05:09:17'), +(768,167,2,'2006-02-15 05:09:17'), +(769,167,2,'2006-02-15 05:09:17'), +(770,167,2,'2006-02-15 05:09:17'), +(771,168,1,'2006-02-15 05:09:17'), +(772,168,1,'2006-02-15 05:09:17'), +(773,169,1,'2006-02-15 05:09:17'), +(774,169,1,'2006-02-15 05:09:17'), +(775,169,2,'2006-02-15 05:09:17'), +(776,169,2,'2006-02-15 05:09:17'), +(777,170,1,'2006-02-15 05:09:17'), +(778,170,1,'2006-02-15 05:09:17'), +(779,170,2,'2006-02-15 05:09:17'), +(780,170,2,'2006-02-15 05:09:17'), +(781,170,2,'2006-02-15 05:09:17'), +(782,170,2,'2006-02-15 05:09:17'), +(783,172,1,'2006-02-15 05:09:17'), +(784,172,1,'2006-02-15 05:09:17'), +(785,172,1,'2006-02-15 05:09:17'), +(786,172,1,'2006-02-15 05:09:17'), +(787,172,2,'2006-02-15 05:09:17'), +(788,172,2,'2006-02-15 05:09:17'), +(789,172,2,'2006-02-15 05:09:17'), +(790,173,1,'2006-02-15 05:09:17'), +(791,173,1,'2006-02-15 05:09:17'), +(792,173,1,'2006-02-15 05:09:17'), +(793,173,2,'2006-02-15 05:09:17'), +(794,173,2,'2006-02-15 05:09:17'), +(795,174,1,'2006-02-15 05:09:17'), +(796,174,1,'2006-02-15 05:09:17'), +(797,174,1,'2006-02-15 05:09:17'), +(798,174,1,'2006-02-15 05:09:17'), +(799,174,2,'2006-02-15 05:09:17'), +(800,174,2,'2006-02-15 05:09:17'), +(801,174,2,'2006-02-15 05:09:17'), +(802,174,2,'2006-02-15 05:09:17'), +(803,175,1,'2006-02-15 05:09:17'), +(804,175,1,'2006-02-15 05:09:17'), +(805,175,2,'2006-02-15 05:09:17'), +(806,175,2,'2006-02-15 05:09:17'), +(807,175,2,'2006-02-15 05:09:17'), +(808,176,1,'2006-02-15 05:09:17'), +(809,176,1,'2006-02-15 05:09:17'), +(810,176,2,'2006-02-15 05:09:17'), +(811,176,2,'2006-02-15 05:09:17'), +(812,176,2,'2006-02-15 05:09:17'), +(813,176,2,'2006-02-15 05:09:17'), +(814,177,2,'2006-02-15 05:09:17'), +(815,177,2,'2006-02-15 05:09:17'), +(816,177,2,'2006-02-15 05:09:17'), +(817,178,1,'2006-02-15 05:09:17'), +(818,178,1,'2006-02-15 05:09:17'), +(819,179,1,'2006-02-15 05:09:17'), +(820,179,1,'2006-02-15 05:09:17'), +(821,179,1,'2006-02-15 05:09:17'), +(822,179,1,'2006-02-15 05:09:17'), +(823,180,2,'2006-02-15 05:09:17'), +(824,180,2,'2006-02-15 05:09:17'), +(825,181,1,'2006-02-15 05:09:17'), +(826,181,1,'2006-02-15 05:09:17'), +(827,181,1,'2006-02-15 05:09:17'), +(828,181,2,'2006-02-15 05:09:17'), +(829,181,2,'2006-02-15 05:09:17'), +(830,181,2,'2006-02-15 05:09:17'), +(831,181,2,'2006-02-15 05:09:17'), +(832,182,1,'2006-02-15 05:09:17'), +(833,182,1,'2006-02-15 05:09:17'), +(834,183,1,'2006-02-15 05:09:17'), +(835,183,1,'2006-02-15 05:09:17'), +(836,183,1,'2006-02-15 05:09:17'), +(837,183,2,'2006-02-15 05:09:17'), +(838,183,2,'2006-02-15 05:09:17'), +(839,183,2,'2006-02-15 05:09:17'), +(840,184,1,'2006-02-15 05:09:17'), +(841,184,1,'2006-02-15 05:09:17'), +(842,184,2,'2006-02-15 05:09:17'), +(843,184,2,'2006-02-15 05:09:17'), +(844,184,2,'2006-02-15 05:09:17'), +(845,185,1,'2006-02-15 05:09:17'), +(846,185,1,'2006-02-15 05:09:17'), +(847,186,1,'2006-02-15 05:09:17'), +(848,186,1,'2006-02-15 05:09:17'), +(849,186,2,'2006-02-15 05:09:17'), +(850,186,2,'2006-02-15 05:09:17'), +(851,187,2,'2006-02-15 05:09:17'), +(852,187,2,'2006-02-15 05:09:17'), +(853,187,2,'2006-02-15 05:09:17'), +(854,188,1,'2006-02-15 05:09:17'), +(855,188,1,'2006-02-15 05:09:17'), +(856,188,1,'2006-02-15 05:09:17'), +(857,189,1,'2006-02-15 05:09:17'), +(858,189,1,'2006-02-15 05:09:17'), +(859,189,2,'2006-02-15 05:09:17'), +(860,189,2,'2006-02-15 05:09:17'), +(861,189,2,'2006-02-15 05:09:17'), +(862,189,2,'2006-02-15 05:09:17'), +(863,190,2,'2006-02-15 05:09:17'), +(864,190,2,'2006-02-15 05:09:17'), +(865,190,2,'2006-02-15 05:09:17'), +(866,190,2,'2006-02-15 05:09:17'), +(867,191,1,'2006-02-15 05:09:17'), +(868,191,1,'2006-02-15 05:09:17'), +(869,191,1,'2006-02-15 05:09:17'), +(870,191,2,'2006-02-15 05:09:17'), +(871,191,2,'2006-02-15 05:09:17'), +(872,191,2,'2006-02-15 05:09:17'), +(873,193,1,'2006-02-15 05:09:17'), +(874,193,1,'2006-02-15 05:09:17'), +(875,193,1,'2006-02-15 05:09:17'), +(876,193,1,'2006-02-15 05:09:17'), +(877,193,2,'2006-02-15 05:09:17'), +(878,193,2,'2006-02-15 05:09:17'), +(879,193,2,'2006-02-15 05:09:17'), +(880,193,2,'2006-02-15 05:09:17'), +(881,194,1,'2006-02-15 05:09:17'), +(882,194,1,'2006-02-15 05:09:17'), +(883,194,2,'2006-02-15 05:09:17'), +(884,194,2,'2006-02-15 05:09:17'), +(885,196,1,'2006-02-15 05:09:17'), +(886,196,1,'2006-02-15 05:09:17'), +(887,197,1,'2006-02-15 05:09:17'), +(888,197,1,'2006-02-15 05:09:17'), +(889,199,1,'2006-02-15 05:09:17'), +(890,199,1,'2006-02-15 05:09:17'), +(891,199,1,'2006-02-15 05:09:17'), +(892,199,1,'2006-02-15 05:09:17'), +(893,199,2,'2006-02-15 05:09:17'), +(894,199,2,'2006-02-15 05:09:17'), +(895,199,2,'2006-02-15 05:09:17'), +(896,199,2,'2006-02-15 05:09:17'), +(897,200,1,'2006-02-15 05:09:17'), +(898,200,1,'2006-02-15 05:09:17'), +(899,200,1,'2006-02-15 05:09:17'), +(900,200,1,'2006-02-15 05:09:17'), +(901,200,2,'2006-02-15 05:09:17'), +(902,200,2,'2006-02-15 05:09:17'), +(903,200,2,'2006-02-15 05:09:17'), +(904,200,2,'2006-02-15 05:09:17'), +(905,201,1,'2006-02-15 05:09:17'), +(906,201,1,'2006-02-15 05:09:17'), +(907,201,1,'2006-02-15 05:09:17'), +(908,201,1,'2006-02-15 05:09:17'), +(909,202,1,'2006-02-15 05:09:17'), +(910,202,1,'2006-02-15 05:09:17'), +(911,202,1,'2006-02-15 05:09:17'), +(912,203,2,'2006-02-15 05:09:17'), +(913,203,2,'2006-02-15 05:09:17'), +(914,203,2,'2006-02-15 05:09:17'), +(915,203,2,'2006-02-15 05:09:17'), +(916,204,1,'2006-02-15 05:09:17'), +(917,204,1,'2006-02-15 05:09:17'), +(918,204,1,'2006-02-15 05:09:17'), +(919,204,1,'2006-02-15 05:09:17'), +(920,204,2,'2006-02-15 05:09:17'), +(921,204,2,'2006-02-15 05:09:17'), +(922,205,1,'2006-02-15 05:09:17'), +(923,205,1,'2006-02-15 05:09:17'), +(924,205,1,'2006-02-15 05:09:17'), +(925,205,1,'2006-02-15 05:09:17'), +(926,206,1,'2006-02-15 05:09:17'), +(927,206,1,'2006-02-15 05:09:17'), +(928,206,1,'2006-02-15 05:09:17'), +(929,206,1,'2006-02-15 05:09:17'), +(930,206,2,'2006-02-15 05:09:17'), +(931,206,2,'2006-02-15 05:09:17'), +(932,206,2,'2006-02-15 05:09:17'), +(933,206,2,'2006-02-15 05:09:17'), +(934,207,1,'2006-02-15 05:09:17'), +(935,207,1,'2006-02-15 05:09:17'), +(936,207,1,'2006-02-15 05:09:17'), +(937,207,1,'2006-02-15 05:09:17'), +(938,208,1,'2006-02-15 05:09:17'), +(939,208,1,'2006-02-15 05:09:17'), +(940,208,1,'2006-02-15 05:09:17'), +(941,209,1,'2006-02-15 05:09:17'), +(942,209,1,'2006-02-15 05:09:17'), +(943,209,1,'2006-02-15 05:09:17'), +(944,209,1,'2006-02-15 05:09:17'), +(945,210,2,'2006-02-15 05:09:17'), +(946,210,2,'2006-02-15 05:09:17'), +(947,210,2,'2006-02-15 05:09:17'), +(948,211,1,'2006-02-15 05:09:17'), +(949,211,1,'2006-02-15 05:09:17'), +(950,212,1,'2006-02-15 05:09:17'), +(951,212,1,'2006-02-15 05:09:17'), +(952,212,1,'2006-02-15 05:09:17'), +(953,212,2,'2006-02-15 05:09:17'), +(954,212,2,'2006-02-15 05:09:17'), +(955,213,1,'2006-02-15 05:09:17'), +(956,213,1,'2006-02-15 05:09:17'), +(957,213,1,'2006-02-15 05:09:17'), +(958,213,1,'2006-02-15 05:09:17'), +(959,214,2,'2006-02-15 05:09:17'), +(960,214,2,'2006-02-15 05:09:17'), +(961,214,2,'2006-02-15 05:09:17'), +(962,214,2,'2006-02-15 05:09:17'), +(963,215,1,'2006-02-15 05:09:17'), +(964,215,1,'2006-02-15 05:09:17'), +(965,215,1,'2006-02-15 05:09:17'), +(966,215,2,'2006-02-15 05:09:17'), +(967,215,2,'2006-02-15 05:09:17'), +(968,215,2,'2006-02-15 05:09:17'), +(969,216,1,'2006-02-15 05:09:17'), +(970,216,1,'2006-02-15 05:09:17'), +(971,216,2,'2006-02-15 05:09:17'), +(972,216,2,'2006-02-15 05:09:17'), +(973,216,2,'2006-02-15 05:09:17'), +(974,218,1,'2006-02-15 05:09:17'), +(975,218,1,'2006-02-15 05:09:17'), +(976,218,1,'2006-02-15 05:09:17'), +(977,218,1,'2006-02-15 05:09:17'), +(978,218,2,'2006-02-15 05:09:17'), +(979,218,2,'2006-02-15 05:09:17'), +(980,218,2,'2006-02-15 05:09:17'), +(981,219,1,'2006-02-15 05:09:17'), +(982,219,1,'2006-02-15 05:09:17'), +(983,219,1,'2006-02-15 05:09:17'), +(984,219,1,'2006-02-15 05:09:17'), +(985,220,1,'2006-02-15 05:09:17'), +(986,220,1,'2006-02-15 05:09:17'), +(987,220,1,'2006-02-15 05:09:17'), +(988,220,1,'2006-02-15 05:09:17'), +(989,220,2,'2006-02-15 05:09:17'), +(990,220,2,'2006-02-15 05:09:17'), +(991,220,2,'2006-02-15 05:09:17'), +(992,220,2,'2006-02-15 05:09:17'), +(993,222,1,'2006-02-15 05:09:17'), +(994,222,1,'2006-02-15 05:09:17'), +(995,222,2,'2006-02-15 05:09:17'), +(996,222,2,'2006-02-15 05:09:17'), +(997,222,2,'2006-02-15 05:09:17'), +(998,222,2,'2006-02-15 05:09:17'), +(999,223,2,'2006-02-15 05:09:17'), +(1000,223,2,'2006-02-15 05:09:17'), +(1001,224,1,'2006-02-15 05:09:17'), +(1002,224,1,'2006-02-15 05:09:17'), +(1003,225,1,'2006-02-15 05:09:17'), +(1004,225,1,'2006-02-15 05:09:17'), +(1005,225,1,'2006-02-15 05:09:17'), +(1006,226,1,'2006-02-15 05:09:17'), +(1007,226,1,'2006-02-15 05:09:17'), +(1008,226,2,'2006-02-15 05:09:17'), +(1009,226,2,'2006-02-15 05:09:17'), +(1010,226,2,'2006-02-15 05:09:17'), +(1011,227,1,'2006-02-15 05:09:17'), +(1012,227,1,'2006-02-15 05:09:17'), +(1013,227,1,'2006-02-15 05:09:17'), +(1014,227,2,'2006-02-15 05:09:17'), +(1015,227,2,'2006-02-15 05:09:17'), +(1016,228,1,'2006-02-15 05:09:17'), +(1017,228,1,'2006-02-15 05:09:17'), +(1018,228,1,'2006-02-15 05:09:17'), +(1019,228,2,'2006-02-15 05:09:17'), +(1020,228,2,'2006-02-15 05:09:17'), +(1021,228,2,'2006-02-15 05:09:17'), +(1022,228,2,'2006-02-15 05:09:17'), +(1023,229,1,'2006-02-15 05:09:17'), +(1024,229,1,'2006-02-15 05:09:17'), +(1025,229,2,'2006-02-15 05:09:17'), +(1026,229,2,'2006-02-15 05:09:17'), +(1027,230,1,'2006-02-15 05:09:17'), +(1028,230,1,'2006-02-15 05:09:17'), +(1029,231,1,'2006-02-15 05:09:17'), +(1030,231,1,'2006-02-15 05:09:17'), +(1031,231,1,'2006-02-15 05:09:17'), +(1032,231,1,'2006-02-15 05:09:17'), +(1033,231,2,'2006-02-15 05:09:17'), +(1034,231,2,'2006-02-15 05:09:17'), +(1035,231,2,'2006-02-15 05:09:17'), +(1036,231,2,'2006-02-15 05:09:17'), +(1037,232,1,'2006-02-15 05:09:17'), +(1038,232,1,'2006-02-15 05:09:17'), +(1039,232,1,'2006-02-15 05:09:17'), +(1040,232,2,'2006-02-15 05:09:17'), +(1041,232,2,'2006-02-15 05:09:17'), +(1042,233,1,'2006-02-15 05:09:17'), +(1043,233,1,'2006-02-15 05:09:17'), +(1044,233,1,'2006-02-15 05:09:17'), +(1045,233,1,'2006-02-15 05:09:17'), +(1046,233,2,'2006-02-15 05:09:17'), +(1047,233,2,'2006-02-15 05:09:17'), +(1048,234,1,'2006-02-15 05:09:17'), +(1049,234,1,'2006-02-15 05:09:17'), +(1050,234,1,'2006-02-15 05:09:17'), +(1051,234,1,'2006-02-15 05:09:17'), +(1052,234,2,'2006-02-15 05:09:17'), +(1053,234,2,'2006-02-15 05:09:17'), +(1054,234,2,'2006-02-15 05:09:17'), +(1055,235,1,'2006-02-15 05:09:17'), +(1056,235,1,'2006-02-15 05:09:17'), +(1057,235,2,'2006-02-15 05:09:17'), +(1058,235,2,'2006-02-15 05:09:17'), +(1059,235,2,'2006-02-15 05:09:17'), +(1060,235,2,'2006-02-15 05:09:17'), +(1061,236,2,'2006-02-15 05:09:17'), +(1062,236,2,'2006-02-15 05:09:17'), +(1063,236,2,'2006-02-15 05:09:17'), +(1064,236,2,'2006-02-15 05:09:17'), +(1065,237,1,'2006-02-15 05:09:17'), +(1066,237,1,'2006-02-15 05:09:17'), +(1067,238,1,'2006-02-15 05:09:17'), +(1068,238,1,'2006-02-15 05:09:17'), +(1069,239,1,'2006-02-15 05:09:17'), +(1070,239,1,'2006-02-15 05:09:17'), +(1071,239,1,'2006-02-15 05:09:17'), +(1072,239,1,'2006-02-15 05:09:17'), +(1073,239,2,'2006-02-15 05:09:17'), +(1074,239,2,'2006-02-15 05:09:17'), +(1075,239,2,'2006-02-15 05:09:17'), +(1076,239,2,'2006-02-15 05:09:17'), +(1077,240,2,'2006-02-15 05:09:17'), +(1078,240,2,'2006-02-15 05:09:17'), +(1079,240,2,'2006-02-15 05:09:17'), +(1080,241,1,'2006-02-15 05:09:17'), +(1081,241,1,'2006-02-15 05:09:17'), +(1082,241,1,'2006-02-15 05:09:17'), +(1083,241,1,'2006-02-15 05:09:17'), +(1084,242,1,'2006-02-15 05:09:17'), +(1085,242,1,'2006-02-15 05:09:17'), +(1086,242,2,'2006-02-15 05:09:17'), +(1087,242,2,'2006-02-15 05:09:17'), +(1088,242,2,'2006-02-15 05:09:17'), +(1089,243,1,'2006-02-15 05:09:17'), +(1090,243,1,'2006-02-15 05:09:17'), +(1091,243,2,'2006-02-15 05:09:17'), +(1092,243,2,'2006-02-15 05:09:17'), +(1093,243,2,'2006-02-15 05:09:17'), +(1094,243,2,'2006-02-15 05:09:17'), +(1095,244,1,'2006-02-15 05:09:17'), +(1096,244,1,'2006-02-15 05:09:17'), +(1097,244,1,'2006-02-15 05:09:17'), +(1098,244,1,'2006-02-15 05:09:17'), +(1099,244,2,'2006-02-15 05:09:17'), +(1100,244,2,'2006-02-15 05:09:17'), +(1101,244,2,'2006-02-15 05:09:17'), +(1102,245,1,'2006-02-15 05:09:17'), +(1103,245,1,'2006-02-15 05:09:17'), +(1104,245,1,'2006-02-15 05:09:17'), +(1105,245,2,'2006-02-15 05:09:17'), +(1106,245,2,'2006-02-15 05:09:17'), +(1107,245,2,'2006-02-15 05:09:17'), +(1108,245,2,'2006-02-15 05:09:17'), +(1109,246,2,'2006-02-15 05:09:17'), +(1110,246,2,'2006-02-15 05:09:17'), +(1111,246,2,'2006-02-15 05:09:17'), +(1112,247,1,'2006-02-15 05:09:17'), +(1113,247,1,'2006-02-15 05:09:17'), +(1114,247,1,'2006-02-15 05:09:17'), +(1115,247,2,'2006-02-15 05:09:17'), +(1116,247,2,'2006-02-15 05:09:17'), +(1117,247,2,'2006-02-15 05:09:17'), +(1118,247,2,'2006-02-15 05:09:17'), +(1119,248,2,'2006-02-15 05:09:17'), +(1120,248,2,'2006-02-15 05:09:17'), +(1121,249,1,'2006-02-15 05:09:17'), +(1122,249,1,'2006-02-15 05:09:17'), +(1123,249,2,'2006-02-15 05:09:17'), +(1124,249,2,'2006-02-15 05:09:17'), +(1125,249,2,'2006-02-15 05:09:17'), +(1126,249,2,'2006-02-15 05:09:17'), +(1127,250,2,'2006-02-15 05:09:17'), +(1128,250,2,'2006-02-15 05:09:17'), +(1129,250,2,'2006-02-15 05:09:17'), +(1130,250,2,'2006-02-15 05:09:17'), +(1131,251,1,'2006-02-15 05:09:17'), +(1132,251,1,'2006-02-15 05:09:17'), +(1133,251,2,'2006-02-15 05:09:17'), +(1134,251,2,'2006-02-15 05:09:17'), +(1135,251,2,'2006-02-15 05:09:17'), +(1136,252,1,'2006-02-15 05:09:17'), +(1137,252,1,'2006-02-15 05:09:17'), +(1138,252,1,'2006-02-15 05:09:17'), +(1139,252,2,'2006-02-15 05:09:17'), +(1140,252,2,'2006-02-15 05:09:17'), +(1141,252,2,'2006-02-15 05:09:17'), +(1142,253,1,'2006-02-15 05:09:17'), +(1143,253,1,'2006-02-15 05:09:17'), +(1144,253,1,'2006-02-15 05:09:17'), +(1145,253,1,'2006-02-15 05:09:17'), +(1146,253,2,'2006-02-15 05:09:17'), +(1147,253,2,'2006-02-15 05:09:17'), +(1148,254,1,'2006-02-15 05:09:17'), +(1149,254,1,'2006-02-15 05:09:17'), +(1150,254,2,'2006-02-15 05:09:17'), +(1151,254,2,'2006-02-15 05:09:17'), +(1152,254,2,'2006-02-15 05:09:17'), +(1153,255,1,'2006-02-15 05:09:17'), +(1154,255,1,'2006-02-15 05:09:17'), +(1155,255,1,'2006-02-15 05:09:17'), +(1156,255,1,'2006-02-15 05:09:17'), +(1157,255,2,'2006-02-15 05:09:17'), +(1158,255,2,'2006-02-15 05:09:17'), +(1159,256,2,'2006-02-15 05:09:17'), +(1160,256,2,'2006-02-15 05:09:17'), +(1161,256,2,'2006-02-15 05:09:17'), +(1162,257,2,'2006-02-15 05:09:17'), +(1163,257,2,'2006-02-15 05:09:17'), +(1164,257,2,'2006-02-15 05:09:17'), +(1165,258,2,'2006-02-15 05:09:17'), +(1166,258,2,'2006-02-15 05:09:17'), +(1167,258,2,'2006-02-15 05:09:17'), +(1168,258,2,'2006-02-15 05:09:17'), +(1169,259,1,'2006-02-15 05:09:17'), +(1170,259,1,'2006-02-15 05:09:17'), +(1171,260,2,'2006-02-15 05:09:17'), +(1172,260,2,'2006-02-15 05:09:17'), +(1173,260,2,'2006-02-15 05:09:17'), +(1174,260,2,'2006-02-15 05:09:17'), +(1175,261,1,'2006-02-15 05:09:17'), +(1176,261,1,'2006-02-15 05:09:17'), +(1177,262,2,'2006-02-15 05:09:17'), +(1178,262,2,'2006-02-15 05:09:17'), +(1179,263,1,'2006-02-15 05:09:17'), +(1180,263,1,'2006-02-15 05:09:17'), +(1181,263,1,'2006-02-15 05:09:17'), +(1182,263,1,'2006-02-15 05:09:17'), +(1183,263,2,'2006-02-15 05:09:17'), +(1184,263,2,'2006-02-15 05:09:17'), +(1185,263,2,'2006-02-15 05:09:17'), +(1186,264,2,'2006-02-15 05:09:17'), +(1187,264,2,'2006-02-15 05:09:17'), +(1188,265,1,'2006-02-15 05:09:17'), +(1189,265,1,'2006-02-15 05:09:17'), +(1190,265,1,'2006-02-15 05:09:17'), +(1191,265,1,'2006-02-15 05:09:17'), +(1192,266,1,'2006-02-15 05:09:17'), +(1193,266,1,'2006-02-15 05:09:17'), +(1194,266,1,'2006-02-15 05:09:17'), +(1195,266,1,'2006-02-15 05:09:17'), +(1196,266,2,'2006-02-15 05:09:17'), +(1197,266,2,'2006-02-15 05:09:17'), +(1198,266,2,'2006-02-15 05:09:17'), +(1199,266,2,'2006-02-15 05:09:17'), +(1200,267,1,'2006-02-15 05:09:17'), +(1201,267,1,'2006-02-15 05:09:17'), +(1202,267,1,'2006-02-15 05:09:17'), +(1203,267,1,'2006-02-15 05:09:17'), +(1204,267,2,'2006-02-15 05:09:17'), +(1205,267,2,'2006-02-15 05:09:17'), +(1206,268,2,'2006-02-15 05:09:17'), +(1207,268,2,'2006-02-15 05:09:17'), +(1208,269,1,'2006-02-15 05:09:17'), +(1209,269,1,'2006-02-15 05:09:17'), +(1210,269,2,'2006-02-15 05:09:17'), +(1211,269,2,'2006-02-15 05:09:17'), +(1212,269,2,'2006-02-15 05:09:17'), +(1213,269,2,'2006-02-15 05:09:17'), +(1214,270,1,'2006-02-15 05:09:17'), +(1215,270,1,'2006-02-15 05:09:17'), +(1216,270,1,'2006-02-15 05:09:17'), +(1217,270,2,'2006-02-15 05:09:17'), +(1218,270,2,'2006-02-15 05:09:17'), +(1219,270,2,'2006-02-15 05:09:17'), +(1220,270,2,'2006-02-15 05:09:17'), +(1221,271,1,'2006-02-15 05:09:17'), +(1222,271,1,'2006-02-15 05:09:17'), +(1223,271,1,'2006-02-15 05:09:17'), +(1224,271,2,'2006-02-15 05:09:17'), +(1225,271,2,'2006-02-15 05:09:17'), +(1226,272,1,'2006-02-15 05:09:17'), +(1227,272,1,'2006-02-15 05:09:17'), +(1228,272,1,'2006-02-15 05:09:17'), +(1229,272,1,'2006-02-15 05:09:17'), +(1230,273,1,'2006-02-15 05:09:17'), +(1231,273,1,'2006-02-15 05:09:17'), +(1232,273,1,'2006-02-15 05:09:17'), +(1233,273,1,'2006-02-15 05:09:17'), +(1234,273,2,'2006-02-15 05:09:17'), +(1235,273,2,'2006-02-15 05:09:17'), +(1236,273,2,'2006-02-15 05:09:17'), +(1237,274,1,'2006-02-15 05:09:17'), +(1238,274,1,'2006-02-15 05:09:17'), +(1239,274,1,'2006-02-15 05:09:17'), +(1240,274,2,'2006-02-15 05:09:17'), +(1241,274,2,'2006-02-15 05:09:17'), +(1242,274,2,'2006-02-15 05:09:17'), +(1243,274,2,'2006-02-15 05:09:17'), +(1244,275,1,'2006-02-15 05:09:17'), +(1245,275,1,'2006-02-15 05:09:17'), +(1246,275,1,'2006-02-15 05:09:17'), +(1247,275,2,'2006-02-15 05:09:17'), +(1248,275,2,'2006-02-15 05:09:17'), +(1249,276,1,'2006-02-15 05:09:17'), +(1250,276,1,'2006-02-15 05:09:17'), +(1251,276,1,'2006-02-15 05:09:17'), +(1252,276,1,'2006-02-15 05:09:17'), +(1253,277,1,'2006-02-15 05:09:17'), +(1254,277,1,'2006-02-15 05:09:17'), +(1255,277,1,'2006-02-15 05:09:17'), +(1256,278,1,'2006-02-15 05:09:17'), +(1257,278,1,'2006-02-15 05:09:17'), +(1258,279,1,'2006-02-15 05:09:17'), +(1259,279,1,'2006-02-15 05:09:17'), +(1260,280,1,'2006-02-15 05:09:17'), +(1261,280,1,'2006-02-15 05:09:17'), +(1262,280,1,'2006-02-15 05:09:17'), +(1263,280,1,'2006-02-15 05:09:17'), +(1264,280,2,'2006-02-15 05:09:17'), +(1265,280,2,'2006-02-15 05:09:17'), +(1266,281,1,'2006-02-15 05:09:17'), +(1267,281,1,'2006-02-15 05:09:17'), +(1268,281,2,'2006-02-15 05:09:17'), +(1269,281,2,'2006-02-15 05:09:17'), +(1270,281,2,'2006-02-15 05:09:17'), +(1271,281,2,'2006-02-15 05:09:17'), +(1272,282,1,'2006-02-15 05:09:17'), +(1273,282,1,'2006-02-15 05:09:17'), +(1274,282,1,'2006-02-15 05:09:17'), +(1275,282,2,'2006-02-15 05:09:17'), +(1276,282,2,'2006-02-15 05:09:17'), +(1277,282,2,'2006-02-15 05:09:17'), +(1278,283,1,'2006-02-15 05:09:17'), +(1279,283,1,'2006-02-15 05:09:17'), +(1280,283,1,'2006-02-15 05:09:17'), +(1281,284,1,'2006-02-15 05:09:17'), +(1282,284,1,'2006-02-15 05:09:17'), +(1283,284,1,'2006-02-15 05:09:17'), +(1284,284,2,'2006-02-15 05:09:17'), +(1285,284,2,'2006-02-15 05:09:17'), +(1286,284,2,'2006-02-15 05:09:17'), +(1287,284,2,'2006-02-15 05:09:17'), +(1288,285,1,'2006-02-15 05:09:17'), +(1289,285,1,'2006-02-15 05:09:17'), +(1290,285,1,'2006-02-15 05:09:17'), +(1291,285,2,'2006-02-15 05:09:17'), +(1292,285,2,'2006-02-15 05:09:17'), +(1293,285,2,'2006-02-15 05:09:17'), +(1294,285,2,'2006-02-15 05:09:17'), +(1295,286,1,'2006-02-15 05:09:17'), +(1296,286,1,'2006-02-15 05:09:17'), +(1297,286,2,'2006-02-15 05:09:17'), +(1298,286,2,'2006-02-15 05:09:17'), +(1299,286,2,'2006-02-15 05:09:17'), +(1300,287,1,'2006-02-15 05:09:17'), +(1301,287,1,'2006-02-15 05:09:17'), +(1302,287,2,'2006-02-15 05:09:17'), +(1303,287,2,'2006-02-15 05:09:17'), +(1304,288,1,'2006-02-15 05:09:17'), +(1305,288,1,'2006-02-15 05:09:17'), +(1306,288,2,'2006-02-15 05:09:17'), +(1307,288,2,'2006-02-15 05:09:17'), +(1308,288,2,'2006-02-15 05:09:17'), +(1309,288,2,'2006-02-15 05:09:17'), +(1310,289,1,'2006-02-15 05:09:17'), +(1311,289,1,'2006-02-15 05:09:17'), +(1312,290,1,'2006-02-15 05:09:17'), +(1313,290,1,'2006-02-15 05:09:17'), +(1314,290,1,'2006-02-15 05:09:17'), +(1315,291,1,'2006-02-15 05:09:17'), +(1316,291,1,'2006-02-15 05:09:17'), +(1317,291,1,'2006-02-15 05:09:17'), +(1318,291,1,'2006-02-15 05:09:17'), +(1319,292,1,'2006-02-15 05:09:17'), +(1320,292,1,'2006-02-15 05:09:17'), +(1321,292,1,'2006-02-15 05:09:17'), +(1322,292,2,'2006-02-15 05:09:17'), +(1323,292,2,'2006-02-15 05:09:17'), +(1324,292,2,'2006-02-15 05:09:17'), +(1325,293,1,'2006-02-15 05:09:17'), +(1326,293,1,'2006-02-15 05:09:17'), +(1327,293,2,'2006-02-15 05:09:17'), +(1328,293,2,'2006-02-15 05:09:17'), +(1329,293,2,'2006-02-15 05:09:17'), +(1330,294,1,'2006-02-15 05:09:17'), +(1331,294,1,'2006-02-15 05:09:17'), +(1332,294,2,'2006-02-15 05:09:17'), +(1333,294,2,'2006-02-15 05:09:17'), +(1334,294,2,'2006-02-15 05:09:17'), +(1335,295,1,'2006-02-15 05:09:17'), +(1336,295,1,'2006-02-15 05:09:17'), +(1337,295,1,'2006-02-15 05:09:17'), +(1338,295,1,'2006-02-15 05:09:17'), +(1339,295,2,'2006-02-15 05:09:17'), +(1340,295,2,'2006-02-15 05:09:17'), +(1341,295,2,'2006-02-15 05:09:17'), +(1342,295,2,'2006-02-15 05:09:17'), +(1343,296,1,'2006-02-15 05:09:17'), +(1344,296,1,'2006-02-15 05:09:17'), +(1345,296,1,'2006-02-15 05:09:17'), +(1346,296,1,'2006-02-15 05:09:17'), +(1347,297,2,'2006-02-15 05:09:17'), +(1348,297,2,'2006-02-15 05:09:17'), +(1349,298,1,'2006-02-15 05:09:17'), +(1350,298,1,'2006-02-15 05:09:17'), +(1351,298,2,'2006-02-15 05:09:17'), +(1352,298,2,'2006-02-15 05:09:17'), +(1353,298,2,'2006-02-15 05:09:17'), +(1354,299,1,'2006-02-15 05:09:17'), +(1355,299,1,'2006-02-15 05:09:17'), +(1356,299,1,'2006-02-15 05:09:17'), +(1357,299,1,'2006-02-15 05:09:17'), +(1358,300,1,'2006-02-15 05:09:17'), +(1359,300,1,'2006-02-15 05:09:17'), +(1360,300,2,'2006-02-15 05:09:17'), +(1361,300,2,'2006-02-15 05:09:17'), +(1362,300,2,'2006-02-15 05:09:17'), +(1363,300,2,'2006-02-15 05:09:17'), +(1364,301,1,'2006-02-15 05:09:17'), +(1365,301,1,'2006-02-15 05:09:17'), +(1366,301,1,'2006-02-15 05:09:17'), +(1367,301,1,'2006-02-15 05:09:17'), +(1368,301,2,'2006-02-15 05:09:17'), +(1369,301,2,'2006-02-15 05:09:17'), +(1370,301,2,'2006-02-15 05:09:17'), +(1371,301,2,'2006-02-15 05:09:17'), +(1372,302,1,'2006-02-15 05:09:17'), +(1373,302,1,'2006-02-15 05:09:17'), +(1374,302,2,'2006-02-15 05:09:17'), +(1375,302,2,'2006-02-15 05:09:17'), +(1376,302,2,'2006-02-15 05:09:17'), +(1377,302,2,'2006-02-15 05:09:17'), +(1378,303,1,'2006-02-15 05:09:17'), +(1379,303,1,'2006-02-15 05:09:17'), +(1380,303,1,'2006-02-15 05:09:17'), +(1381,303,1,'2006-02-15 05:09:17'), +(1382,303,2,'2006-02-15 05:09:17'), +(1383,303,2,'2006-02-15 05:09:17'), +(1384,304,1,'2006-02-15 05:09:17'), +(1385,304,1,'2006-02-15 05:09:17'), +(1386,304,1,'2006-02-15 05:09:17'), +(1387,304,1,'2006-02-15 05:09:17'), +(1388,304,2,'2006-02-15 05:09:17'), +(1389,304,2,'2006-02-15 05:09:17'), +(1390,305,1,'2006-02-15 05:09:17'), +(1391,305,1,'2006-02-15 05:09:17'), +(1392,305,1,'2006-02-15 05:09:17'), +(1393,305,1,'2006-02-15 05:09:17'), +(1394,305,2,'2006-02-15 05:09:17'), +(1395,305,2,'2006-02-15 05:09:17'), +(1396,305,2,'2006-02-15 05:09:17'), +(1397,306,1,'2006-02-15 05:09:17'), +(1398,306,1,'2006-02-15 05:09:17'), +(1399,306,1,'2006-02-15 05:09:17'), +(1400,307,1,'2006-02-15 05:09:17'), +(1401,307,1,'2006-02-15 05:09:17'), +(1402,307,1,'2006-02-15 05:09:17'), +(1403,307,2,'2006-02-15 05:09:17'), +(1404,307,2,'2006-02-15 05:09:17'), +(1405,307,2,'2006-02-15 05:09:17'), +(1406,308,1,'2006-02-15 05:09:17'), +(1407,308,1,'2006-02-15 05:09:17'), +(1408,308,2,'2006-02-15 05:09:17'), +(1409,308,2,'2006-02-15 05:09:17'), +(1410,309,1,'2006-02-15 05:09:17'), +(1411,309,1,'2006-02-15 05:09:17'), +(1412,309,2,'2006-02-15 05:09:17'), +(1413,309,2,'2006-02-15 05:09:17'), +(1414,309,2,'2006-02-15 05:09:17'), +(1415,309,2,'2006-02-15 05:09:17'), +(1416,310,1,'2006-02-15 05:09:17'), +(1417,310,1,'2006-02-15 05:09:17'), +(1418,311,1,'2006-02-15 05:09:17'), +(1419,311,1,'2006-02-15 05:09:17'), +(1420,311,1,'2006-02-15 05:09:17'), +(1421,311,2,'2006-02-15 05:09:17'), +(1422,311,2,'2006-02-15 05:09:17'), +(1423,311,2,'2006-02-15 05:09:17'), +(1424,311,2,'2006-02-15 05:09:17'), +(1425,312,2,'2006-02-15 05:09:17'), +(1426,312,2,'2006-02-15 05:09:17'), +(1427,312,2,'2006-02-15 05:09:17'), +(1428,313,1,'2006-02-15 05:09:17'), +(1429,313,1,'2006-02-15 05:09:17'), +(1430,313,1,'2006-02-15 05:09:17'), +(1431,313,1,'2006-02-15 05:09:17'), +(1432,313,2,'2006-02-15 05:09:17'), +(1433,313,2,'2006-02-15 05:09:17'), +(1434,314,1,'2006-02-15 05:09:17'), +(1435,314,1,'2006-02-15 05:09:17'), +(1436,314,2,'2006-02-15 05:09:17'), +(1437,314,2,'2006-02-15 05:09:17'), +(1438,314,2,'2006-02-15 05:09:17'), +(1439,314,2,'2006-02-15 05:09:17'), +(1440,315,2,'2006-02-15 05:09:17'), +(1441,315,2,'2006-02-15 05:09:17'), +(1442,315,2,'2006-02-15 05:09:17'), +(1443,316,2,'2006-02-15 05:09:17'), +(1444,316,2,'2006-02-15 05:09:17'), +(1445,317,1,'2006-02-15 05:09:17'), +(1446,317,1,'2006-02-15 05:09:17'), +(1447,317,1,'2006-02-15 05:09:17'), +(1448,317,1,'2006-02-15 05:09:17'), +(1449,317,2,'2006-02-15 05:09:17'), +(1450,317,2,'2006-02-15 05:09:17'), +(1451,317,2,'2006-02-15 05:09:17'), +(1452,319,1,'2006-02-15 05:09:17'), +(1453,319,1,'2006-02-15 05:09:17'), +(1454,319,1,'2006-02-15 05:09:17'), +(1455,319,2,'2006-02-15 05:09:17'), +(1456,319,2,'2006-02-15 05:09:17'), +(1457,319,2,'2006-02-15 05:09:17'), +(1458,319,2,'2006-02-15 05:09:17'), +(1459,320,1,'2006-02-15 05:09:17'), +(1460,320,1,'2006-02-15 05:09:17'), +(1461,320,1,'2006-02-15 05:09:17'), +(1462,320,2,'2006-02-15 05:09:17'), +(1463,320,2,'2006-02-15 05:09:17'), +(1464,320,2,'2006-02-15 05:09:17'), +(1465,320,2,'2006-02-15 05:09:17'), +(1466,321,1,'2006-02-15 05:09:17'), +(1467,321,1,'2006-02-15 05:09:17'), +(1468,321,1,'2006-02-15 05:09:17'), +(1469,321,1,'2006-02-15 05:09:17'), +(1470,322,1,'2006-02-15 05:09:17'), +(1471,322,1,'2006-02-15 05:09:17'), +(1472,322,1,'2006-02-15 05:09:17'), +(1473,322,1,'2006-02-15 05:09:17'), +(1474,322,2,'2006-02-15 05:09:17'), +(1475,322,2,'2006-02-15 05:09:17'), +(1476,323,2,'2006-02-15 05:09:17'), +(1477,323,2,'2006-02-15 05:09:17'), +(1478,323,2,'2006-02-15 05:09:17'), +(1479,323,2,'2006-02-15 05:09:17'), +(1480,324,1,'2006-02-15 05:09:17'), +(1481,324,1,'2006-02-15 05:09:17'), +(1482,324,1,'2006-02-15 05:09:17'), +(1483,324,2,'2006-02-15 05:09:17'), +(1484,324,2,'2006-02-15 05:09:17'), +(1485,326,1,'2006-02-15 05:09:17'), +(1486,326,1,'2006-02-15 05:09:17'), +(1487,326,2,'2006-02-15 05:09:17'), +(1488,326,2,'2006-02-15 05:09:17'), +(1489,326,2,'2006-02-15 05:09:17'), +(1490,326,2,'2006-02-15 05:09:17'), +(1491,327,1,'2006-02-15 05:09:17'), +(1492,327,1,'2006-02-15 05:09:17'), +(1493,327,1,'2006-02-15 05:09:17'), +(1494,327,1,'2006-02-15 05:09:17'), +(1495,327,2,'2006-02-15 05:09:17'), +(1496,327,2,'2006-02-15 05:09:17'), +(1497,328,2,'2006-02-15 05:09:17'), +(1498,328,2,'2006-02-15 05:09:17'), +(1499,328,2,'2006-02-15 05:09:17'), +(1500,328,2,'2006-02-15 05:09:17'), +(1501,329,1,'2006-02-15 05:09:17'), +(1502,329,1,'2006-02-15 05:09:17'), +(1503,329,1,'2006-02-15 05:09:17'), +(1504,329,2,'2006-02-15 05:09:17'), +(1505,329,2,'2006-02-15 05:09:17'), +(1506,329,2,'2006-02-15 05:09:17'), +(1507,330,1,'2006-02-15 05:09:17'), +(1508,330,1,'2006-02-15 05:09:17'), +(1509,330,1,'2006-02-15 05:09:17'), +(1510,330,1,'2006-02-15 05:09:17'), +(1511,330,2,'2006-02-15 05:09:17'), +(1512,330,2,'2006-02-15 05:09:17'), +(1513,330,2,'2006-02-15 05:09:17'), +(1514,331,1,'2006-02-15 05:09:17'), +(1515,331,1,'2006-02-15 05:09:17'), +(1516,331,1,'2006-02-15 05:09:17'), +(1517,331,1,'2006-02-15 05:09:17'), +(1518,331,2,'2006-02-15 05:09:17'), +(1519,331,2,'2006-02-15 05:09:17'), +(1520,331,2,'2006-02-15 05:09:17'), +(1521,331,2,'2006-02-15 05:09:17'), +(1522,333,1,'2006-02-15 05:09:17'), +(1523,333,1,'2006-02-15 05:09:17'), +(1524,333,2,'2006-02-15 05:09:17'), +(1525,333,2,'2006-02-15 05:09:17'), +(1526,334,1,'2006-02-15 05:09:17'), +(1527,334,1,'2006-02-15 05:09:17'), +(1528,334,2,'2006-02-15 05:09:17'), +(1529,334,2,'2006-02-15 05:09:17'), +(1530,334,2,'2006-02-15 05:09:17'), +(1531,334,2,'2006-02-15 05:09:17'), +(1532,335,1,'2006-02-15 05:09:17'), +(1533,335,1,'2006-02-15 05:09:17'), +(1534,336,1,'2006-02-15 05:09:17'), +(1535,336,1,'2006-02-15 05:09:17'), +(1536,336,1,'2006-02-15 05:09:17'), +(1537,336,2,'2006-02-15 05:09:17'), +(1538,336,2,'2006-02-15 05:09:17'), +(1539,337,1,'2006-02-15 05:09:17'), +(1540,337,1,'2006-02-15 05:09:17'), +(1541,337,2,'2006-02-15 05:09:17'), +(1542,337,2,'2006-02-15 05:09:17'), +(1543,338,2,'2006-02-15 05:09:17'), +(1544,338,2,'2006-02-15 05:09:17'), +(1545,338,2,'2006-02-15 05:09:17'), +(1546,339,2,'2006-02-15 05:09:17'), +(1547,339,2,'2006-02-15 05:09:17'), +(1548,339,2,'2006-02-15 05:09:17'), +(1549,340,1,'2006-02-15 05:09:17'), +(1550,340,1,'2006-02-15 05:09:17'), +(1551,341,1,'2006-02-15 05:09:17'), +(1552,341,1,'2006-02-15 05:09:17'), +(1553,341,1,'2006-02-15 05:09:17'), +(1554,341,1,'2006-02-15 05:09:17'), +(1555,341,2,'2006-02-15 05:09:17'), +(1556,341,2,'2006-02-15 05:09:17'), +(1557,341,2,'2006-02-15 05:09:17'), +(1558,341,2,'2006-02-15 05:09:17'), +(1559,342,1,'2006-02-15 05:09:17'), +(1560,342,1,'2006-02-15 05:09:17'), +(1561,342,1,'2006-02-15 05:09:17'), +(1562,342,1,'2006-02-15 05:09:17'), +(1563,343,1,'2006-02-15 05:09:17'), +(1564,343,1,'2006-02-15 05:09:17'), +(1565,344,1,'2006-02-15 05:09:17'), +(1566,344,1,'2006-02-15 05:09:17'), +(1567,344,1,'2006-02-15 05:09:17'), +(1568,344,2,'2006-02-15 05:09:17'), +(1569,344,2,'2006-02-15 05:09:17'), +(1570,345,1,'2006-02-15 05:09:17'), +(1571,345,1,'2006-02-15 05:09:17'), +(1572,345,1,'2006-02-15 05:09:17'), +(1573,345,2,'2006-02-15 05:09:17'), +(1574,345,2,'2006-02-15 05:09:17'), +(1575,346,1,'2006-02-15 05:09:17'), +(1576,346,1,'2006-02-15 05:09:17'), +(1577,346,2,'2006-02-15 05:09:17'), +(1578,346,2,'2006-02-15 05:09:17'), +(1579,346,2,'2006-02-15 05:09:17'), +(1580,346,2,'2006-02-15 05:09:17'), +(1581,347,1,'2006-02-15 05:09:17'), +(1582,347,1,'2006-02-15 05:09:17'), +(1583,347,1,'2006-02-15 05:09:17'), +(1584,347,1,'2006-02-15 05:09:17'), +(1585,348,2,'2006-02-15 05:09:17'), +(1586,348,2,'2006-02-15 05:09:17'), +(1587,348,2,'2006-02-15 05:09:17'), +(1588,348,2,'2006-02-15 05:09:17'), +(1589,349,1,'2006-02-15 05:09:17'), +(1590,349,1,'2006-02-15 05:09:17'), +(1591,349,1,'2006-02-15 05:09:17'), +(1592,349,1,'2006-02-15 05:09:17'), +(1593,349,2,'2006-02-15 05:09:17'), +(1594,349,2,'2006-02-15 05:09:17'), +(1595,349,2,'2006-02-15 05:09:17'), +(1596,350,1,'2006-02-15 05:09:17'), +(1597,350,1,'2006-02-15 05:09:17'), +(1598,350,1,'2006-02-15 05:09:17'), +(1599,350,1,'2006-02-15 05:09:17'), +(1600,350,2,'2006-02-15 05:09:17'), +(1601,350,2,'2006-02-15 05:09:17'), +(1602,350,2,'2006-02-15 05:09:17'), +(1603,350,2,'2006-02-15 05:09:17'), +(1604,351,1,'2006-02-15 05:09:17'), +(1605,351,1,'2006-02-15 05:09:17'), +(1606,351,1,'2006-02-15 05:09:17'), +(1607,351,2,'2006-02-15 05:09:17'), +(1608,351,2,'2006-02-15 05:09:17'), +(1609,351,2,'2006-02-15 05:09:17'), +(1610,352,2,'2006-02-15 05:09:17'), +(1611,352,2,'2006-02-15 05:09:17'), +(1612,352,2,'2006-02-15 05:09:17'), +(1613,352,2,'2006-02-15 05:09:17'), +(1614,353,1,'2006-02-15 05:09:17'), +(1615,353,1,'2006-02-15 05:09:17'), +(1616,353,2,'2006-02-15 05:09:17'), +(1617,353,2,'2006-02-15 05:09:17'), +(1618,353,2,'2006-02-15 05:09:17'), +(1619,353,2,'2006-02-15 05:09:17'), +(1620,354,1,'2006-02-15 05:09:17'), +(1621,354,1,'2006-02-15 05:09:17'), +(1622,354,1,'2006-02-15 05:09:17'), +(1623,354,2,'2006-02-15 05:09:17'), +(1624,354,2,'2006-02-15 05:09:17'), +(1625,355,2,'2006-02-15 05:09:17'), +(1626,355,2,'2006-02-15 05:09:17'), +(1627,356,1,'2006-02-15 05:09:17'), +(1628,356,1,'2006-02-15 05:09:17'), +(1629,356,1,'2006-02-15 05:09:17'), +(1630,356,1,'2006-02-15 05:09:17'), +(1631,356,2,'2006-02-15 05:09:17'), +(1632,356,2,'2006-02-15 05:09:17'), +(1633,356,2,'2006-02-15 05:09:17'), +(1634,356,2,'2006-02-15 05:09:17'), +(1635,357,2,'2006-02-15 05:09:17'), +(1636,357,2,'2006-02-15 05:09:17'), +(1637,357,2,'2006-02-15 05:09:17'), +(1638,357,2,'2006-02-15 05:09:17'), +(1639,358,1,'2006-02-15 05:09:17'), +(1640,358,1,'2006-02-15 05:09:17'), +(1641,358,1,'2006-02-15 05:09:17'), +(1642,358,1,'2006-02-15 05:09:17'), +(1643,358,2,'2006-02-15 05:09:17'), +(1644,358,2,'2006-02-15 05:09:17'), +(1645,358,2,'2006-02-15 05:09:17'), +(1646,358,2,'2006-02-15 05:09:17'), +(1647,360,1,'2006-02-15 05:09:17'), +(1648,360,1,'2006-02-15 05:09:17'), +(1649,360,1,'2006-02-15 05:09:17'), +(1650,360,1,'2006-02-15 05:09:17'), +(1651,361,1,'2006-02-15 05:09:17'), +(1652,361,1,'2006-02-15 05:09:17'), +(1653,361,1,'2006-02-15 05:09:17'), +(1654,361,1,'2006-02-15 05:09:17'), +(1655,361,2,'2006-02-15 05:09:17'), +(1656,361,2,'2006-02-15 05:09:17'), +(1657,361,2,'2006-02-15 05:09:17'), +(1658,361,2,'2006-02-15 05:09:17'), +(1659,362,1,'2006-02-15 05:09:17'), +(1660,362,1,'2006-02-15 05:09:17'), +(1661,363,1,'2006-02-15 05:09:17'), +(1662,363,1,'2006-02-15 05:09:17'), +(1663,363,1,'2006-02-15 05:09:17'), +(1664,363,2,'2006-02-15 05:09:17'), +(1665,363,2,'2006-02-15 05:09:17'), +(1666,363,2,'2006-02-15 05:09:17'), +(1667,364,1,'2006-02-15 05:09:17'), +(1668,364,1,'2006-02-15 05:09:17'), +(1669,364,1,'2006-02-15 05:09:17'), +(1670,365,1,'2006-02-15 05:09:17'), +(1671,365,1,'2006-02-15 05:09:17'), +(1672,365,2,'2006-02-15 05:09:17'), +(1673,365,2,'2006-02-15 05:09:17'), +(1674,366,1,'2006-02-15 05:09:17'), +(1675,366,1,'2006-02-15 05:09:17'), +(1676,366,1,'2006-02-15 05:09:17'), +(1677,366,1,'2006-02-15 05:09:17'), +(1678,366,2,'2006-02-15 05:09:17'), +(1679,366,2,'2006-02-15 05:09:17'), +(1680,366,2,'2006-02-15 05:09:17'), +(1681,367,1,'2006-02-15 05:09:17'), +(1682,367,1,'2006-02-15 05:09:17'), +(1683,367,1,'2006-02-15 05:09:17'), +(1684,367,1,'2006-02-15 05:09:17'), +(1685,367,2,'2006-02-15 05:09:17'), +(1686,367,2,'2006-02-15 05:09:17'), +(1687,367,2,'2006-02-15 05:09:17'), +(1688,368,1,'2006-02-15 05:09:17'), +(1689,368,1,'2006-02-15 05:09:17'), +(1690,369,1,'2006-02-15 05:09:17'), +(1691,369,1,'2006-02-15 05:09:17'), +(1692,369,1,'2006-02-15 05:09:17'), +(1693,369,1,'2006-02-15 05:09:17'), +(1694,369,2,'2006-02-15 05:09:17'), +(1695,369,2,'2006-02-15 05:09:17'), +(1696,369,2,'2006-02-15 05:09:17'), +(1697,369,2,'2006-02-15 05:09:17'), +(1698,370,1,'2006-02-15 05:09:17'), +(1699,370,1,'2006-02-15 05:09:17'), +(1700,370,1,'2006-02-15 05:09:17'), +(1701,370,2,'2006-02-15 05:09:17'), +(1702,370,2,'2006-02-15 05:09:17'), +(1703,371,1,'2006-02-15 05:09:17'), +(1704,371,1,'2006-02-15 05:09:17'), +(1705,371,1,'2006-02-15 05:09:17'), +(1706,372,1,'2006-02-15 05:09:17'), +(1707,372,1,'2006-02-15 05:09:17'), +(1708,373,1,'2006-02-15 05:09:17'), +(1709,373,1,'2006-02-15 05:09:17'), +(1710,373,1,'2006-02-15 05:09:17'), +(1711,373,2,'2006-02-15 05:09:17'), +(1712,373,2,'2006-02-15 05:09:17'), +(1713,374,1,'2006-02-15 05:09:17'), +(1714,374,1,'2006-02-15 05:09:17'), +(1715,374,1,'2006-02-15 05:09:17'), +(1716,374,2,'2006-02-15 05:09:17'), +(1717,374,2,'2006-02-15 05:09:17'), +(1718,374,2,'2006-02-15 05:09:17'), +(1719,374,2,'2006-02-15 05:09:17'), +(1720,375,1,'2006-02-15 05:09:17'), +(1721,375,1,'2006-02-15 05:09:17'), +(1722,376,1,'2006-02-15 05:09:17'), +(1723,376,1,'2006-02-15 05:09:17'), +(1724,376,1,'2006-02-15 05:09:17'), +(1725,376,1,'2006-02-15 05:09:17'), +(1726,376,2,'2006-02-15 05:09:17'), +(1727,376,2,'2006-02-15 05:09:17'), +(1728,376,2,'2006-02-15 05:09:17'), +(1729,377,1,'2006-02-15 05:09:17'), +(1730,377,1,'2006-02-15 05:09:17'), +(1731,377,1,'2006-02-15 05:09:17'), +(1732,377,2,'2006-02-15 05:09:17'), +(1733,377,2,'2006-02-15 05:09:17'), +(1734,377,2,'2006-02-15 05:09:17'), +(1735,378,1,'2006-02-15 05:09:17'), +(1736,378,1,'2006-02-15 05:09:17'), +(1737,378,1,'2006-02-15 05:09:17'), +(1738,378,1,'2006-02-15 05:09:17'), +(1739,378,2,'2006-02-15 05:09:17'), +(1740,378,2,'2006-02-15 05:09:17'), +(1741,378,2,'2006-02-15 05:09:17'), +(1742,378,2,'2006-02-15 05:09:17'), +(1743,379,2,'2006-02-15 05:09:17'), +(1744,379,2,'2006-02-15 05:09:17'), +(1745,379,2,'2006-02-15 05:09:17'), +(1746,379,2,'2006-02-15 05:09:17'), +(1747,380,1,'2006-02-15 05:09:17'), +(1748,380,1,'2006-02-15 05:09:17'), +(1749,380,2,'2006-02-15 05:09:17'), +(1750,380,2,'2006-02-15 05:09:17'), +(1751,380,2,'2006-02-15 05:09:17'), +(1752,381,1,'2006-02-15 05:09:17'), +(1753,381,1,'2006-02-15 05:09:17'), +(1754,381,2,'2006-02-15 05:09:17'), +(1755,381,2,'2006-02-15 05:09:17'), +(1756,381,2,'2006-02-15 05:09:17'), +(1757,382,1,'2006-02-15 05:09:17'), +(1758,382,1,'2006-02-15 05:09:17'), +(1759,382,1,'2006-02-15 05:09:17'), +(1760,382,1,'2006-02-15 05:09:17'), +(1761,382,2,'2006-02-15 05:09:17'), +(1762,382,2,'2006-02-15 05:09:17'), +(1763,382,2,'2006-02-15 05:09:17'), +(1764,382,2,'2006-02-15 05:09:17'), +(1765,383,1,'2006-02-15 05:09:17'), +(1766,383,1,'2006-02-15 05:09:17'), +(1767,383,1,'2006-02-15 05:09:17'), +(1768,383,2,'2006-02-15 05:09:17'), +(1769,383,2,'2006-02-15 05:09:17'), +(1770,384,2,'2006-02-15 05:09:17'), +(1771,384,2,'2006-02-15 05:09:17'), +(1772,384,2,'2006-02-15 05:09:17'), +(1773,385,1,'2006-02-15 05:09:17'), +(1774,385,1,'2006-02-15 05:09:17'), +(1775,385,2,'2006-02-15 05:09:17'), +(1776,385,2,'2006-02-15 05:09:17'), +(1777,385,2,'2006-02-15 05:09:17'), +(1778,387,1,'2006-02-15 05:09:17'), +(1779,387,1,'2006-02-15 05:09:17'), +(1780,387,1,'2006-02-15 05:09:17'), +(1781,387,2,'2006-02-15 05:09:17'), +(1782,387,2,'2006-02-15 05:09:17'), +(1783,387,2,'2006-02-15 05:09:17'), +(1784,388,1,'2006-02-15 05:09:17'), +(1785,388,1,'2006-02-15 05:09:17'), +(1786,388,1,'2006-02-15 05:09:17'), +(1787,388,2,'2006-02-15 05:09:17'), +(1788,388,2,'2006-02-15 05:09:17'), +(1789,388,2,'2006-02-15 05:09:17'), +(1790,389,1,'2006-02-15 05:09:17'), +(1791,389,1,'2006-02-15 05:09:17'), +(1792,389,2,'2006-02-15 05:09:17'), +(1793,389,2,'2006-02-15 05:09:17'), +(1794,390,1,'2006-02-15 05:09:17'), +(1795,390,1,'2006-02-15 05:09:17'), +(1796,390,1,'2006-02-15 05:09:17'), +(1797,391,1,'2006-02-15 05:09:17'), +(1798,391,1,'2006-02-15 05:09:17'), +(1799,391,1,'2006-02-15 05:09:17'), +(1800,391,1,'2006-02-15 05:09:17'), +(1801,391,2,'2006-02-15 05:09:17'), +(1802,391,2,'2006-02-15 05:09:17'), +(1803,391,2,'2006-02-15 05:09:17'), +(1804,392,1,'2006-02-15 05:09:17'), +(1805,392,1,'2006-02-15 05:09:17'), +(1806,392,1,'2006-02-15 05:09:17'), +(1807,392,1,'2006-02-15 05:09:17'), +(1808,392,2,'2006-02-15 05:09:17'), +(1809,392,2,'2006-02-15 05:09:17'), +(1810,393,1,'2006-02-15 05:09:17'), +(1811,393,1,'2006-02-15 05:09:17'), +(1812,394,1,'2006-02-15 05:09:17'), +(1813,394,1,'2006-02-15 05:09:17'), +(1814,394,1,'2006-02-15 05:09:17'), +(1815,394,1,'2006-02-15 05:09:17'), +(1816,395,1,'2006-02-15 05:09:17'), +(1817,395,1,'2006-02-15 05:09:17'), +(1818,395,1,'2006-02-15 05:09:17'), +(1819,395,2,'2006-02-15 05:09:17'), +(1820,395,2,'2006-02-15 05:09:17'), +(1821,395,2,'2006-02-15 05:09:17'), +(1822,396,2,'2006-02-15 05:09:17'), +(1823,396,2,'2006-02-15 05:09:17'), +(1824,396,2,'2006-02-15 05:09:17'), +(1825,396,2,'2006-02-15 05:09:17'), +(1826,397,1,'2006-02-15 05:09:17'), +(1827,397,1,'2006-02-15 05:09:17'), +(1828,397,1,'2006-02-15 05:09:17'), +(1829,397,2,'2006-02-15 05:09:17'), +(1830,397,2,'2006-02-15 05:09:17'), +(1831,397,2,'2006-02-15 05:09:17'), +(1832,397,2,'2006-02-15 05:09:17'), +(1833,398,2,'2006-02-15 05:09:17'), +(1834,398,2,'2006-02-15 05:09:17'), +(1835,398,2,'2006-02-15 05:09:17'), +(1836,398,2,'2006-02-15 05:09:17'), +(1837,399,2,'2006-02-15 05:09:17'), +(1838,399,2,'2006-02-15 05:09:17'), +(1839,400,1,'2006-02-15 05:09:17'), +(1840,400,1,'2006-02-15 05:09:17'), +(1841,401,1,'2006-02-15 05:09:17'), +(1842,401,1,'2006-02-15 05:09:17'), +(1843,402,1,'2006-02-15 05:09:17'), +(1844,402,1,'2006-02-15 05:09:17'), +(1845,402,1,'2006-02-15 05:09:17'), +(1846,402,2,'2006-02-15 05:09:17'), +(1847,402,2,'2006-02-15 05:09:17'), +(1848,402,2,'2006-02-15 05:09:17'), +(1849,403,1,'2006-02-15 05:09:17'), +(1850,403,1,'2006-02-15 05:09:17'), +(1851,403,1,'2006-02-15 05:09:17'), +(1852,403,1,'2006-02-15 05:09:17'), +(1853,403,2,'2006-02-15 05:09:17'), +(1854,403,2,'2006-02-15 05:09:17'), +(1855,403,2,'2006-02-15 05:09:17'), +(1856,403,2,'2006-02-15 05:09:17'), +(1857,405,2,'2006-02-15 05:09:17'), +(1858,405,2,'2006-02-15 05:09:17'), +(1859,406,1,'2006-02-15 05:09:17'), +(1860,406,1,'2006-02-15 05:09:17'), +(1861,406,2,'2006-02-15 05:09:17'), +(1862,406,2,'2006-02-15 05:09:17'), +(1863,406,2,'2006-02-15 05:09:17'), +(1864,406,2,'2006-02-15 05:09:17'), +(1865,407,1,'2006-02-15 05:09:17'), +(1866,407,1,'2006-02-15 05:09:17'), +(1867,408,1,'2006-02-15 05:09:17'), +(1868,408,1,'2006-02-15 05:09:17'), +(1869,408,1,'2006-02-15 05:09:17'), +(1870,408,1,'2006-02-15 05:09:17'), +(1871,408,2,'2006-02-15 05:09:17'), +(1872,408,2,'2006-02-15 05:09:17'), +(1873,408,2,'2006-02-15 05:09:17'), +(1874,409,1,'2006-02-15 05:09:17'), +(1875,409,1,'2006-02-15 05:09:17'), +(1876,409,1,'2006-02-15 05:09:17'), +(1877,409,1,'2006-02-15 05:09:17'), +(1878,409,2,'2006-02-15 05:09:17'), +(1879,409,2,'2006-02-15 05:09:17'), +(1880,409,2,'2006-02-15 05:09:17'), +(1881,410,1,'2006-02-15 05:09:17'), +(1882,410,1,'2006-02-15 05:09:17'), +(1883,410,1,'2006-02-15 05:09:17'), +(1884,410,2,'2006-02-15 05:09:17'), +(1885,410,2,'2006-02-15 05:09:17'), +(1886,411,1,'2006-02-15 05:09:17'), +(1887,411,1,'2006-02-15 05:09:17'), +(1888,412,1,'2006-02-15 05:09:17'), +(1889,412,1,'2006-02-15 05:09:17'), +(1890,412,1,'2006-02-15 05:09:17'), +(1891,412,1,'2006-02-15 05:09:17'), +(1892,412,2,'2006-02-15 05:09:17'), +(1893,412,2,'2006-02-15 05:09:17'), +(1894,412,2,'2006-02-15 05:09:17'), +(1895,412,2,'2006-02-15 05:09:17'), +(1896,413,1,'2006-02-15 05:09:17'), +(1897,413,1,'2006-02-15 05:09:17'), +(1898,413,1,'2006-02-15 05:09:17'), +(1899,414,1,'2006-02-15 05:09:17'), +(1900,414,1,'2006-02-15 05:09:17'), +(1901,414,1,'2006-02-15 05:09:17'), +(1902,414,2,'2006-02-15 05:09:17'), +(1903,414,2,'2006-02-15 05:09:17'), +(1904,414,2,'2006-02-15 05:09:17'), +(1905,415,1,'2006-02-15 05:09:17'), +(1906,415,1,'2006-02-15 05:09:17'), +(1907,415,1,'2006-02-15 05:09:17'), +(1908,415,2,'2006-02-15 05:09:17'), +(1909,415,2,'2006-02-15 05:09:17'), +(1910,415,2,'2006-02-15 05:09:17'), +(1911,416,1,'2006-02-15 05:09:17'), +(1912,416,1,'2006-02-15 05:09:17'), +(1913,416,2,'2006-02-15 05:09:17'), +(1914,416,2,'2006-02-15 05:09:17'), +(1915,416,2,'2006-02-15 05:09:17'), +(1916,416,2,'2006-02-15 05:09:17'), +(1917,417,1,'2006-02-15 05:09:17'), +(1918,417,1,'2006-02-15 05:09:17'), +(1919,417,1,'2006-02-15 05:09:17'), +(1920,417,1,'2006-02-15 05:09:17'), +(1921,417,2,'2006-02-15 05:09:17'), +(1922,417,2,'2006-02-15 05:09:17'), +(1923,418,1,'2006-02-15 05:09:17'), +(1924,418,1,'2006-02-15 05:09:17'), +(1925,418,1,'2006-02-15 05:09:17'), +(1926,418,1,'2006-02-15 05:09:17'), +(1927,418,2,'2006-02-15 05:09:17'), +(1928,418,2,'2006-02-15 05:09:17'), +(1929,418,2,'2006-02-15 05:09:17'), +(1930,418,2,'2006-02-15 05:09:17'), +(1931,420,1,'2006-02-15 05:09:17'), +(1932,420,1,'2006-02-15 05:09:17'), +(1933,420,2,'2006-02-15 05:09:17'), +(1934,420,2,'2006-02-15 05:09:17'), +(1935,420,2,'2006-02-15 05:09:17'), +(1936,421,2,'2006-02-15 05:09:17'), +(1937,421,2,'2006-02-15 05:09:17'), +(1938,421,2,'2006-02-15 05:09:17'), +(1939,421,2,'2006-02-15 05:09:17'), +(1940,422,2,'2006-02-15 05:09:17'), +(1941,422,2,'2006-02-15 05:09:17'), +(1942,423,1,'2006-02-15 05:09:17'), +(1943,423,1,'2006-02-15 05:09:17'), +(1944,423,2,'2006-02-15 05:09:17'), +(1945,423,2,'2006-02-15 05:09:17'), +(1946,424,1,'2006-02-15 05:09:17'), +(1947,424,1,'2006-02-15 05:09:17'), +(1948,424,1,'2006-02-15 05:09:17'), +(1949,424,2,'2006-02-15 05:09:17'), +(1950,424,2,'2006-02-15 05:09:17'), +(1951,425,2,'2006-02-15 05:09:17'), +(1952,425,2,'2006-02-15 05:09:17'), +(1953,426,2,'2006-02-15 05:09:17'), +(1954,426,2,'2006-02-15 05:09:17'), +(1955,426,2,'2006-02-15 05:09:17'), +(1956,427,1,'2006-02-15 05:09:17'), +(1957,427,1,'2006-02-15 05:09:17'), +(1958,427,1,'2006-02-15 05:09:17'), +(1959,427,1,'2006-02-15 05:09:17'), +(1960,428,1,'2006-02-15 05:09:17'), +(1961,428,1,'2006-02-15 05:09:17'), +(1962,428,1,'2006-02-15 05:09:17'), +(1963,428,1,'2006-02-15 05:09:17'), +(1964,428,2,'2006-02-15 05:09:17'), +(1965,428,2,'2006-02-15 05:09:17'), +(1966,429,1,'2006-02-15 05:09:17'), +(1967,429,1,'2006-02-15 05:09:17'), +(1968,429,2,'2006-02-15 05:09:17'), +(1969,429,2,'2006-02-15 05:09:17'), +(1970,429,2,'2006-02-15 05:09:17'), +(1971,429,2,'2006-02-15 05:09:17'), +(1972,430,2,'2006-02-15 05:09:17'), +(1973,430,2,'2006-02-15 05:09:17'), +(1974,430,2,'2006-02-15 05:09:17'), +(1975,430,2,'2006-02-15 05:09:17'), +(1976,431,2,'2006-02-15 05:09:17'), +(1977,431,2,'2006-02-15 05:09:17'), +(1978,431,2,'2006-02-15 05:09:17'), +(1979,432,1,'2006-02-15 05:09:17'), +(1980,432,1,'2006-02-15 05:09:17'), +(1981,432,1,'2006-02-15 05:09:17'), +(1982,432,2,'2006-02-15 05:09:17'), +(1983,432,2,'2006-02-15 05:09:17'), +(1984,433,1,'2006-02-15 05:09:17'), +(1985,433,1,'2006-02-15 05:09:17'), +(1986,433,1,'2006-02-15 05:09:17'), +(1987,433,1,'2006-02-15 05:09:17'), +(1988,433,2,'2006-02-15 05:09:17'), +(1989,433,2,'2006-02-15 05:09:17'), +(1990,434,1,'2006-02-15 05:09:17'), +(1991,434,1,'2006-02-15 05:09:17'), +(1992,434,1,'2006-02-15 05:09:17'), +(1993,434,1,'2006-02-15 05:09:17'), +(1994,434,2,'2006-02-15 05:09:17'), +(1995,434,2,'2006-02-15 05:09:17'), +(1996,434,2,'2006-02-15 05:09:17'), +(1997,434,2,'2006-02-15 05:09:17'), +(1998,435,1,'2006-02-15 05:09:17'), +(1999,435,1,'2006-02-15 05:09:17'), +(2000,436,1,'2006-02-15 05:09:17'), +(2001,436,1,'2006-02-15 05:09:17'), +(2002,436,1,'2006-02-15 05:09:17'), +(2003,436,2,'2006-02-15 05:09:17'), +(2004,436,2,'2006-02-15 05:09:17'), +(2005,436,2,'2006-02-15 05:09:17'), +(2006,437,1,'2006-02-15 05:09:17'), +(2007,437,1,'2006-02-15 05:09:17'), +(2008,437,2,'2006-02-15 05:09:17'), +(2009,437,2,'2006-02-15 05:09:17'), +(2010,437,2,'2006-02-15 05:09:17'), +(2011,437,2,'2006-02-15 05:09:17'), +(2012,438,1,'2006-02-15 05:09:17'), +(2013,438,1,'2006-02-15 05:09:17'), +(2014,438,2,'2006-02-15 05:09:17'), +(2015,438,2,'2006-02-15 05:09:17'), +(2016,438,2,'2006-02-15 05:09:17'), +(2017,439,1,'2006-02-15 05:09:17'), +(2018,439,1,'2006-02-15 05:09:17'), +(2019,439,1,'2006-02-15 05:09:17'), +(2020,439,1,'2006-02-15 05:09:17'), +(2021,439,2,'2006-02-15 05:09:17'), +(2022,439,2,'2006-02-15 05:09:17'), +(2023,440,1,'2006-02-15 05:09:17'), +(2024,440,1,'2006-02-15 05:09:17'), +(2025,440,2,'2006-02-15 05:09:17'), +(2026,440,2,'2006-02-15 05:09:17'), +(2027,441,1,'2006-02-15 05:09:17'), +(2028,441,1,'2006-02-15 05:09:17'), +(2029,442,1,'2006-02-15 05:09:17'), +(2030,442,1,'2006-02-15 05:09:17'), +(2031,442,1,'2006-02-15 05:09:17'), +(2032,443,1,'2006-02-15 05:09:17'), +(2033,443,1,'2006-02-15 05:09:17'), +(2034,443,1,'2006-02-15 05:09:17'), +(2035,443,2,'2006-02-15 05:09:17'), +(2036,443,2,'2006-02-15 05:09:17'), +(2037,443,2,'2006-02-15 05:09:17'), +(2038,443,2,'2006-02-15 05:09:17'), +(2039,444,1,'2006-02-15 05:09:17'), +(2040,444,1,'2006-02-15 05:09:17'), +(2041,444,1,'2006-02-15 05:09:17'), +(2042,444,1,'2006-02-15 05:09:17'), +(2043,444,2,'2006-02-15 05:09:17'), +(2044,444,2,'2006-02-15 05:09:17'), +(2045,444,2,'2006-02-15 05:09:17'), +(2046,444,2,'2006-02-15 05:09:17'), +(2047,445,1,'2006-02-15 05:09:17'), +(2048,445,1,'2006-02-15 05:09:17'), +(2049,445,1,'2006-02-15 05:09:17'), +(2050,445,2,'2006-02-15 05:09:17'), +(2051,445,2,'2006-02-15 05:09:17'), +(2052,445,2,'2006-02-15 05:09:17'), +(2053,446,1,'2006-02-15 05:09:17'), +(2054,446,1,'2006-02-15 05:09:17'), +(2055,446,2,'2006-02-15 05:09:17'), +(2056,446,2,'2006-02-15 05:09:17'), +(2057,447,1,'2006-02-15 05:09:17'), +(2058,447,1,'2006-02-15 05:09:17'), +(2059,447,1,'2006-02-15 05:09:17'), +(2060,447,1,'2006-02-15 05:09:17'), +(2061,447,2,'2006-02-15 05:09:17'), +(2062,447,2,'2006-02-15 05:09:17'), +(2063,447,2,'2006-02-15 05:09:17'), +(2064,448,1,'2006-02-15 05:09:17'), +(2065,448,1,'2006-02-15 05:09:17'), +(2066,448,2,'2006-02-15 05:09:17'), +(2067,448,2,'2006-02-15 05:09:17'), +(2068,448,2,'2006-02-15 05:09:17'), +(2069,449,2,'2006-02-15 05:09:17'), +(2070,449,2,'2006-02-15 05:09:17'), +(2071,449,2,'2006-02-15 05:09:17'), +(2072,449,2,'2006-02-15 05:09:17'), +(2073,450,1,'2006-02-15 05:09:17'), +(2074,450,1,'2006-02-15 05:09:17'), +(2075,450,1,'2006-02-15 05:09:17'), +(2076,450,2,'2006-02-15 05:09:17'), +(2077,450,2,'2006-02-15 05:09:17'), +(2078,450,2,'2006-02-15 05:09:17'), +(2079,450,2,'2006-02-15 05:09:17'), +(2080,451,1,'2006-02-15 05:09:17'), +(2081,451,1,'2006-02-15 05:09:17'), +(2082,451,2,'2006-02-15 05:09:17'), +(2083,451,2,'2006-02-15 05:09:17'), +(2084,451,2,'2006-02-15 05:09:17'), +(2085,452,2,'2006-02-15 05:09:17'), +(2086,452,2,'2006-02-15 05:09:17'), +(2087,452,2,'2006-02-15 05:09:17'), +(2088,452,2,'2006-02-15 05:09:17'), +(2089,453,1,'2006-02-15 05:09:17'), +(2090,453,1,'2006-02-15 05:09:17'), +(2091,453,1,'2006-02-15 05:09:17'), +(2092,453,2,'2006-02-15 05:09:17'), +(2093,453,2,'2006-02-15 05:09:17'), +(2094,454,1,'2006-02-15 05:09:17'), +(2095,454,1,'2006-02-15 05:09:17'), +(2096,455,1,'2006-02-15 05:09:17'), +(2097,455,1,'2006-02-15 05:09:17'), +(2098,455,1,'2006-02-15 05:09:17'), +(2099,455,1,'2006-02-15 05:09:17'), +(2100,456,1,'2006-02-15 05:09:17'), +(2101,456,1,'2006-02-15 05:09:17'), +(2102,456,2,'2006-02-15 05:09:17'), +(2103,456,2,'2006-02-15 05:09:17'), +(2104,456,2,'2006-02-15 05:09:17'), +(2105,456,2,'2006-02-15 05:09:17'), +(2106,457,1,'2006-02-15 05:09:17'), +(2107,457,1,'2006-02-15 05:09:17'), +(2108,457,2,'2006-02-15 05:09:17'), +(2109,457,2,'2006-02-15 05:09:17'), +(2110,457,2,'2006-02-15 05:09:17'), +(2111,457,2,'2006-02-15 05:09:17'), +(2112,458,1,'2006-02-15 05:09:17'), +(2113,458,1,'2006-02-15 05:09:17'), +(2114,458,2,'2006-02-15 05:09:17'), +(2115,458,2,'2006-02-15 05:09:17'), +(2116,458,2,'2006-02-15 05:09:17'), +(2117,458,2,'2006-02-15 05:09:17'), +(2118,459,2,'2006-02-15 05:09:17'), +(2119,459,2,'2006-02-15 05:09:17'), +(2120,460,1,'2006-02-15 05:09:17'), +(2121,460,1,'2006-02-15 05:09:17'), +(2122,460,1,'2006-02-15 05:09:17'), +(2123,460,1,'2006-02-15 05:09:17'), +(2124,460,2,'2006-02-15 05:09:17'), +(2125,460,2,'2006-02-15 05:09:17'), +(2126,460,2,'2006-02-15 05:09:17'), +(2127,460,2,'2006-02-15 05:09:17'), +(2128,461,1,'2006-02-15 05:09:17'), +(2129,461,1,'2006-02-15 05:09:17'), +(2130,461,2,'2006-02-15 05:09:17'), +(2131,461,2,'2006-02-15 05:09:17'), +(2132,461,2,'2006-02-15 05:09:17'), +(2133,461,2,'2006-02-15 05:09:17'), +(2134,462,1,'2006-02-15 05:09:17'), +(2135,462,1,'2006-02-15 05:09:17'), +(2136,462,2,'2006-02-15 05:09:17'), +(2137,462,2,'2006-02-15 05:09:17'), +(2138,462,2,'2006-02-15 05:09:17'), +(2139,463,1,'2006-02-15 05:09:17'), +(2140,463,1,'2006-02-15 05:09:17'), +(2141,463,1,'2006-02-15 05:09:17'), +(2142,463,2,'2006-02-15 05:09:17'), +(2143,463,2,'2006-02-15 05:09:17'), +(2144,464,1,'2006-02-15 05:09:17'), +(2145,464,1,'2006-02-15 05:09:17'), +(2146,464,1,'2006-02-15 05:09:17'), +(2147,464,1,'2006-02-15 05:09:17'), +(2148,464,2,'2006-02-15 05:09:17'), +(2149,464,2,'2006-02-15 05:09:17'), +(2150,464,2,'2006-02-15 05:09:17'), +(2151,465,1,'2006-02-15 05:09:17'), +(2152,465,1,'2006-02-15 05:09:17'), +(2153,465,2,'2006-02-15 05:09:17'), +(2154,465,2,'2006-02-15 05:09:17'), +(2155,465,2,'2006-02-15 05:09:17'), +(2156,466,1,'2006-02-15 05:09:17'), +(2157,466,1,'2006-02-15 05:09:17'), +(2158,467,1,'2006-02-15 05:09:17'), +(2159,467,1,'2006-02-15 05:09:17'), +(2160,467,1,'2006-02-15 05:09:17'), +(2161,467,1,'2006-02-15 05:09:17'), +(2162,467,2,'2006-02-15 05:09:17'), +(2163,467,2,'2006-02-15 05:09:17'), +(2164,467,2,'2006-02-15 05:09:17'), +(2165,468,1,'2006-02-15 05:09:17'), +(2166,468,1,'2006-02-15 05:09:17'), +(2167,468,1,'2006-02-15 05:09:17'), +(2168,468,1,'2006-02-15 05:09:17'), +(2169,468,2,'2006-02-15 05:09:17'), +(2170,468,2,'2006-02-15 05:09:17'), +(2171,468,2,'2006-02-15 05:09:17'), +(2172,468,2,'2006-02-15 05:09:17'), +(2173,469,2,'2006-02-15 05:09:17'), +(2174,469,2,'2006-02-15 05:09:17'), +(2175,469,2,'2006-02-15 05:09:17'), +(2176,470,1,'2006-02-15 05:09:17'), +(2177,470,1,'2006-02-15 05:09:17'), +(2178,471,1,'2006-02-15 05:09:17'), +(2179,471,1,'2006-02-15 05:09:17'), +(2180,471,1,'2006-02-15 05:09:17'), +(2181,471,2,'2006-02-15 05:09:17'), +(2182,471,2,'2006-02-15 05:09:17'), +(2183,471,2,'2006-02-15 05:09:17'), +(2184,471,2,'2006-02-15 05:09:17'), +(2185,472,2,'2006-02-15 05:09:17'), +(2186,472,2,'2006-02-15 05:09:17'), +(2187,473,1,'2006-02-15 05:09:17'), +(2188,473,1,'2006-02-15 05:09:17'), +(2189,473,2,'2006-02-15 05:09:17'), +(2190,473,2,'2006-02-15 05:09:17'), +(2191,473,2,'2006-02-15 05:09:17'), +(2192,474,2,'2006-02-15 05:09:17'), +(2193,474,2,'2006-02-15 05:09:17'), +(2194,474,2,'2006-02-15 05:09:17'), +(2195,474,2,'2006-02-15 05:09:17'), +(2196,475,2,'2006-02-15 05:09:17'), +(2197,475,2,'2006-02-15 05:09:17'), +(2198,476,1,'2006-02-15 05:09:17'), +(2199,476,1,'2006-02-15 05:09:17'), +(2200,476,1,'2006-02-15 05:09:17'), +(2201,476,2,'2006-02-15 05:09:17'), +(2202,476,2,'2006-02-15 05:09:17'), +(2203,476,2,'2006-02-15 05:09:17'), +(2204,476,2,'2006-02-15 05:09:17'), +(2205,477,2,'2006-02-15 05:09:17'), +(2206,477,2,'2006-02-15 05:09:17'), +(2207,477,2,'2006-02-15 05:09:17'), +(2208,478,1,'2006-02-15 05:09:17'), +(2209,478,1,'2006-02-15 05:09:17'), +(2210,478,2,'2006-02-15 05:09:17'), +(2211,478,2,'2006-02-15 05:09:17'), +(2212,478,2,'2006-02-15 05:09:17'), +(2213,479,1,'2006-02-15 05:09:17'), +(2214,479,1,'2006-02-15 05:09:17'), +(2215,479,2,'2006-02-15 05:09:17'), +(2216,479,2,'2006-02-15 05:09:17'), +(2217,479,2,'2006-02-15 05:09:17'), +(2218,480,1,'2006-02-15 05:09:17'), +(2219,480,1,'2006-02-15 05:09:17'), +(2220,480,2,'2006-02-15 05:09:17'), +(2221,480,2,'2006-02-15 05:09:17'), +(2222,481,1,'2006-02-15 05:09:17'), +(2223,481,1,'2006-02-15 05:09:17'), +(2224,481,1,'2006-02-15 05:09:17'), +(2225,481,2,'2006-02-15 05:09:17'), +(2226,481,2,'2006-02-15 05:09:17'), +(2227,481,2,'2006-02-15 05:09:17'), +(2228,482,1,'2006-02-15 05:09:17'), +(2229,482,1,'2006-02-15 05:09:17'), +(2230,482,1,'2006-02-15 05:09:17'), +(2231,483,1,'2006-02-15 05:09:17'), +(2232,483,1,'2006-02-15 05:09:17'), +(2233,483,1,'2006-02-15 05:09:17'), +(2234,483,2,'2006-02-15 05:09:17'), +(2235,483,2,'2006-02-15 05:09:17'), +(2236,484,1,'2006-02-15 05:09:17'), +(2237,484,1,'2006-02-15 05:09:17'), +(2238,484,1,'2006-02-15 05:09:17'), +(2239,484,1,'2006-02-15 05:09:17'), +(2240,484,2,'2006-02-15 05:09:17'), +(2241,484,2,'2006-02-15 05:09:17'), +(2242,484,2,'2006-02-15 05:09:17'), +(2243,485,2,'2006-02-15 05:09:17'), +(2244,485,2,'2006-02-15 05:09:17'), +(2245,485,2,'2006-02-15 05:09:17'), +(2246,486,1,'2006-02-15 05:09:17'), +(2247,486,1,'2006-02-15 05:09:17'), +(2248,486,1,'2006-02-15 05:09:17'), +(2249,486,1,'2006-02-15 05:09:17'), +(2250,486,2,'2006-02-15 05:09:17'), +(2251,486,2,'2006-02-15 05:09:17'), +(2252,487,2,'2006-02-15 05:09:17'), +(2253,487,2,'2006-02-15 05:09:17'), +(2254,487,2,'2006-02-15 05:09:17'), +(2255,488,1,'2006-02-15 05:09:17'), +(2256,488,1,'2006-02-15 05:09:17'), +(2257,488,2,'2006-02-15 05:09:17'), +(2258,488,2,'2006-02-15 05:09:17'), +(2259,488,2,'2006-02-15 05:09:17'), +(2260,489,1,'2006-02-15 05:09:17'), +(2261,489,1,'2006-02-15 05:09:17'), +(2262,489,1,'2006-02-15 05:09:17'), +(2263,489,1,'2006-02-15 05:09:17'), +(2264,489,2,'2006-02-15 05:09:17'), +(2265,489,2,'2006-02-15 05:09:17'), +(2266,489,2,'2006-02-15 05:09:17'), +(2267,489,2,'2006-02-15 05:09:17'), +(2268,490,1,'2006-02-15 05:09:17'), +(2269,490,1,'2006-02-15 05:09:17'), +(2270,491,1,'2006-02-15 05:09:17'), +(2271,491,1,'2006-02-15 05:09:17'), +(2272,491,2,'2006-02-15 05:09:17'), +(2273,491,2,'2006-02-15 05:09:17'), +(2274,491,2,'2006-02-15 05:09:17'), +(2275,491,2,'2006-02-15 05:09:17'), +(2276,492,1,'2006-02-15 05:09:17'), +(2277,492,1,'2006-02-15 05:09:17'), +(2278,493,2,'2006-02-15 05:09:17'), +(2279,493,2,'2006-02-15 05:09:17'), +(2280,493,2,'2006-02-15 05:09:17'), +(2281,494,1,'2006-02-15 05:09:17'), +(2282,494,1,'2006-02-15 05:09:17'), +(2283,494,1,'2006-02-15 05:09:17'), +(2284,494,1,'2006-02-15 05:09:17'), +(2285,494,2,'2006-02-15 05:09:17'), +(2286,494,2,'2006-02-15 05:09:17'), +(2287,496,1,'2006-02-15 05:09:17'), +(2288,496,1,'2006-02-15 05:09:17'), +(2289,496,2,'2006-02-15 05:09:17'), +(2290,496,2,'2006-02-15 05:09:17'), +(2291,496,2,'2006-02-15 05:09:17'), +(2292,498,1,'2006-02-15 05:09:17'), +(2293,498,1,'2006-02-15 05:09:17'), +(2294,499,1,'2006-02-15 05:09:17'), +(2295,499,1,'2006-02-15 05:09:17'), +(2296,500,1,'2006-02-15 05:09:17'), +(2297,500,1,'2006-02-15 05:09:17'), +(2298,500,1,'2006-02-15 05:09:17'), +(2299,500,1,'2006-02-15 05:09:17'), +(2300,500,2,'2006-02-15 05:09:17'), +(2301,500,2,'2006-02-15 05:09:17'), +(2302,500,2,'2006-02-15 05:09:17'), +(2303,500,2,'2006-02-15 05:09:17'), +(2304,501,1,'2006-02-15 05:09:17'), +(2305,501,1,'2006-02-15 05:09:17'), +(2306,501,1,'2006-02-15 05:09:17'), +(2307,501,2,'2006-02-15 05:09:17'), +(2308,501,2,'2006-02-15 05:09:17'), +(2309,502,1,'2006-02-15 05:09:17'), +(2310,502,1,'2006-02-15 05:09:17'), +(2311,502,1,'2006-02-15 05:09:17'), +(2312,502,1,'2006-02-15 05:09:17'), +(2313,502,2,'2006-02-15 05:09:17'), +(2314,502,2,'2006-02-15 05:09:17'), +(2315,502,2,'2006-02-15 05:09:17'), +(2316,503,1,'2006-02-15 05:09:17'), +(2317,503,1,'2006-02-15 05:09:17'), +(2318,503,1,'2006-02-15 05:09:17'), +(2319,504,1,'2006-02-15 05:09:17'), +(2320,504,1,'2006-02-15 05:09:17'), +(2321,504,1,'2006-02-15 05:09:17'), +(2322,504,1,'2006-02-15 05:09:17'), +(2323,504,2,'2006-02-15 05:09:17'), +(2324,504,2,'2006-02-15 05:09:17'), +(2325,505,2,'2006-02-15 05:09:17'), +(2326,505,2,'2006-02-15 05:09:17'), +(2327,505,2,'2006-02-15 05:09:17'), +(2328,505,2,'2006-02-15 05:09:17'), +(2329,506,1,'2006-02-15 05:09:17'), +(2330,506,1,'2006-02-15 05:09:17'), +(2331,506,1,'2006-02-15 05:09:17'), +(2332,506,1,'2006-02-15 05:09:17'), +(2333,506,2,'2006-02-15 05:09:17'), +(2334,506,2,'2006-02-15 05:09:17'), +(2335,507,2,'2006-02-15 05:09:17'), +(2336,507,2,'2006-02-15 05:09:17'), +(2337,508,2,'2006-02-15 05:09:17'), +(2338,508,2,'2006-02-15 05:09:17'), +(2339,508,2,'2006-02-15 05:09:17'), +(2340,509,2,'2006-02-15 05:09:17'), +(2341,509,2,'2006-02-15 05:09:17'), +(2342,509,2,'2006-02-15 05:09:17'), +(2343,510,1,'2006-02-15 05:09:17'), +(2344,510,1,'2006-02-15 05:09:17'), +(2345,510,1,'2006-02-15 05:09:17'), +(2346,510,1,'2006-02-15 05:09:17'), +(2347,511,1,'2006-02-15 05:09:17'), +(2348,511,1,'2006-02-15 05:09:17'), +(2349,511,2,'2006-02-15 05:09:17'), +(2350,511,2,'2006-02-15 05:09:17'), +(2351,511,2,'2006-02-15 05:09:17'), +(2352,512,1,'2006-02-15 05:09:17'), +(2353,512,1,'2006-02-15 05:09:17'), +(2354,512,2,'2006-02-15 05:09:17'), +(2355,512,2,'2006-02-15 05:09:17'), +(2356,512,2,'2006-02-15 05:09:17'), +(2357,512,2,'2006-02-15 05:09:17'), +(2358,513,2,'2006-02-15 05:09:17'), +(2359,513,2,'2006-02-15 05:09:17'), +(2360,514,1,'2006-02-15 05:09:17'), +(2361,514,1,'2006-02-15 05:09:17'), +(2362,514,2,'2006-02-15 05:09:17'), +(2363,514,2,'2006-02-15 05:09:17'), +(2364,514,2,'2006-02-15 05:09:17'), +(2365,514,2,'2006-02-15 05:09:17'), +(2366,515,2,'2006-02-15 05:09:17'), +(2367,515,2,'2006-02-15 05:09:17'), +(2368,516,2,'2006-02-15 05:09:17'), +(2369,516,2,'2006-02-15 05:09:17'), +(2370,516,2,'2006-02-15 05:09:17'), +(2371,517,2,'2006-02-15 05:09:17'), +(2372,517,2,'2006-02-15 05:09:17'), +(2373,518,1,'2006-02-15 05:09:17'), +(2374,518,1,'2006-02-15 05:09:17'), +(2375,518,2,'2006-02-15 05:09:17'), +(2376,518,2,'2006-02-15 05:09:17'), +(2377,518,2,'2006-02-15 05:09:17'), +(2378,518,2,'2006-02-15 05:09:17'), +(2379,519,2,'2006-02-15 05:09:17'), +(2380,519,2,'2006-02-15 05:09:17'), +(2381,519,2,'2006-02-15 05:09:17'), +(2382,519,2,'2006-02-15 05:09:17'), +(2383,520,1,'2006-02-15 05:09:17'), +(2384,520,1,'2006-02-15 05:09:17'), +(2385,521,1,'2006-02-15 05:09:17'), +(2386,521,1,'2006-02-15 05:09:17'), +(2387,521,1,'2006-02-15 05:09:17'), +(2388,521,1,'2006-02-15 05:09:17'), +(2389,521,2,'2006-02-15 05:09:17'), +(2390,521,2,'2006-02-15 05:09:17'), +(2391,521,2,'2006-02-15 05:09:17'), +(2392,522,2,'2006-02-15 05:09:17'), +(2393,522,2,'2006-02-15 05:09:17'), +(2394,523,1,'2006-02-15 05:09:17'), +(2395,523,1,'2006-02-15 05:09:17'), +(2396,524,1,'2006-02-15 05:09:17'), +(2397,524,1,'2006-02-15 05:09:17'), +(2398,524,2,'2006-02-15 05:09:17'), +(2399,524,2,'2006-02-15 05:09:17'), +(2400,524,2,'2006-02-15 05:09:17'), +(2401,524,2,'2006-02-15 05:09:17'), +(2402,525,1,'2006-02-15 05:09:17'), +(2403,525,1,'2006-02-15 05:09:17'), +(2404,525,1,'2006-02-15 05:09:17'), +(2405,525,1,'2006-02-15 05:09:17'), +(2406,525,2,'2006-02-15 05:09:17'), +(2407,525,2,'2006-02-15 05:09:17'), +(2408,525,2,'2006-02-15 05:09:17'), +(2409,525,2,'2006-02-15 05:09:17'), +(2410,526,2,'2006-02-15 05:09:17'), +(2411,526,2,'2006-02-15 05:09:17'), +(2412,526,2,'2006-02-15 05:09:17'), +(2413,526,2,'2006-02-15 05:09:17'), +(2414,527,1,'2006-02-15 05:09:17'), +(2415,527,1,'2006-02-15 05:09:17'), +(2416,527,2,'2006-02-15 05:09:17'), +(2417,527,2,'2006-02-15 05:09:17'), +(2418,527,2,'2006-02-15 05:09:17'), +(2419,527,2,'2006-02-15 05:09:17'), +(2420,528,1,'2006-02-15 05:09:17'), +(2421,528,1,'2006-02-15 05:09:17'), +(2422,528,1,'2006-02-15 05:09:17'), +(2423,529,1,'2006-02-15 05:09:17'), +(2424,529,1,'2006-02-15 05:09:17'), +(2425,529,1,'2006-02-15 05:09:17'), +(2426,529,1,'2006-02-15 05:09:17'), +(2427,530,1,'2006-02-15 05:09:17'), +(2428,530,1,'2006-02-15 05:09:17'), +(2429,530,1,'2006-02-15 05:09:17'), +(2430,531,1,'2006-02-15 05:09:17'), +(2431,531,1,'2006-02-15 05:09:17'), +(2432,531,1,'2006-02-15 05:09:17'), +(2433,531,1,'2006-02-15 05:09:17'), +(2434,531,2,'2006-02-15 05:09:17'), +(2435,531,2,'2006-02-15 05:09:17'), +(2436,531,2,'2006-02-15 05:09:17'), +(2437,531,2,'2006-02-15 05:09:17'), +(2438,532,2,'2006-02-15 05:09:17'), +(2439,532,2,'2006-02-15 05:09:17'), +(2440,532,2,'2006-02-15 05:09:17'), +(2441,532,2,'2006-02-15 05:09:17'), +(2442,533,1,'2006-02-15 05:09:17'), +(2443,533,1,'2006-02-15 05:09:17'), +(2444,533,1,'2006-02-15 05:09:17'), +(2445,534,1,'2006-02-15 05:09:17'), +(2446,534,1,'2006-02-15 05:09:17'), +(2447,534,2,'2006-02-15 05:09:17'), +(2448,534,2,'2006-02-15 05:09:17'), +(2449,534,2,'2006-02-15 05:09:17'), +(2450,535,1,'2006-02-15 05:09:17'), +(2451,535,1,'2006-02-15 05:09:17'), +(2452,535,1,'2006-02-15 05:09:17'), +(2453,535,1,'2006-02-15 05:09:17'), +(2454,536,1,'2006-02-15 05:09:17'), +(2455,536,1,'2006-02-15 05:09:17'), +(2456,536,1,'2006-02-15 05:09:17'), +(2457,536,2,'2006-02-15 05:09:17'), +(2458,536,2,'2006-02-15 05:09:17'), +(2459,537,2,'2006-02-15 05:09:17'), +(2460,537,2,'2006-02-15 05:09:17'), +(2461,537,2,'2006-02-15 05:09:17'), +(2462,538,2,'2006-02-15 05:09:17'), +(2463,538,2,'2006-02-15 05:09:17'), +(2464,538,2,'2006-02-15 05:09:17'), +(2465,539,1,'2006-02-15 05:09:17'), +(2466,539,1,'2006-02-15 05:09:17'), +(2467,540,1,'2006-02-15 05:09:17'), +(2468,540,1,'2006-02-15 05:09:17'), +(2469,540,1,'2006-02-15 05:09:17'), +(2470,541,2,'2006-02-15 05:09:17'), +(2471,541,2,'2006-02-15 05:09:17'), +(2472,542,1,'2006-02-15 05:09:17'), +(2473,542,1,'2006-02-15 05:09:17'), +(2474,542,1,'2006-02-15 05:09:17'), +(2475,542,1,'2006-02-15 05:09:17'), +(2476,542,2,'2006-02-15 05:09:17'), +(2477,542,2,'2006-02-15 05:09:17'), +(2478,543,1,'2006-02-15 05:09:17'), +(2479,543,1,'2006-02-15 05:09:17'), +(2480,544,1,'2006-02-15 05:09:17'), +(2481,544,1,'2006-02-15 05:09:17'), +(2482,544,2,'2006-02-15 05:09:17'), +(2483,544,2,'2006-02-15 05:09:17'), +(2484,545,1,'2006-02-15 05:09:17'), +(2485,545,1,'2006-02-15 05:09:17'), +(2486,545,1,'2006-02-15 05:09:17'), +(2487,545,1,'2006-02-15 05:09:17'), +(2488,545,2,'2006-02-15 05:09:17'), +(2489,545,2,'2006-02-15 05:09:17'), +(2490,546,2,'2006-02-15 05:09:17'), +(2491,546,2,'2006-02-15 05:09:17'), +(2492,546,2,'2006-02-15 05:09:17'), +(2493,546,2,'2006-02-15 05:09:17'), +(2494,547,2,'2006-02-15 05:09:17'), +(2495,547,2,'2006-02-15 05:09:17'), +(2496,548,1,'2006-02-15 05:09:17'), +(2497,548,1,'2006-02-15 05:09:17'), +(2498,549,1,'2006-02-15 05:09:17'), +(2499,549,1,'2006-02-15 05:09:17'), +(2500,549,2,'2006-02-15 05:09:17'), +(2501,549,2,'2006-02-15 05:09:17'), +(2502,550,1,'2006-02-15 05:09:17'), +(2503,550,1,'2006-02-15 05:09:17'), +(2504,550,1,'2006-02-15 05:09:17'), +(2505,551,1,'2006-02-15 05:09:17'), +(2506,551,1,'2006-02-15 05:09:17'), +(2507,551,1,'2006-02-15 05:09:17'), +(2508,551,2,'2006-02-15 05:09:17'), +(2509,551,2,'2006-02-15 05:09:17'), +(2510,551,2,'2006-02-15 05:09:17'), +(2511,552,2,'2006-02-15 05:09:17'), +(2512,552,2,'2006-02-15 05:09:17'), +(2513,552,2,'2006-02-15 05:09:17'), +(2514,552,2,'2006-02-15 05:09:17'), +(2515,553,2,'2006-02-15 05:09:17'), +(2516,553,2,'2006-02-15 05:09:17'), +(2517,553,2,'2006-02-15 05:09:17'), +(2518,554,1,'2006-02-15 05:09:17'), +(2519,554,1,'2006-02-15 05:09:17'), +(2520,554,1,'2006-02-15 05:09:17'), +(2521,554,1,'2006-02-15 05:09:17'), +(2522,554,2,'2006-02-15 05:09:17'), +(2523,554,2,'2006-02-15 05:09:17'), +(2524,554,2,'2006-02-15 05:09:17'), +(2525,555,1,'2006-02-15 05:09:17'), +(2526,555,1,'2006-02-15 05:09:17'), +(2527,555,1,'2006-02-15 05:09:17'), +(2528,555,2,'2006-02-15 05:09:17'), +(2529,555,2,'2006-02-15 05:09:17'), +(2530,555,2,'2006-02-15 05:09:17'), +(2531,555,2,'2006-02-15 05:09:17'), +(2532,556,1,'2006-02-15 05:09:17'), +(2533,556,1,'2006-02-15 05:09:17'), +(2534,556,1,'2006-02-15 05:09:17'), +(2535,556,2,'2006-02-15 05:09:17'), +(2536,556,2,'2006-02-15 05:09:17'), +(2537,556,2,'2006-02-15 05:09:17'), +(2538,556,2,'2006-02-15 05:09:17'), +(2539,557,1,'2006-02-15 05:09:17'), +(2540,557,1,'2006-02-15 05:09:17'), +(2541,557,2,'2006-02-15 05:09:17'), +(2542,557,2,'2006-02-15 05:09:17'), +(2543,557,2,'2006-02-15 05:09:17'), +(2544,558,2,'2006-02-15 05:09:17'), +(2545,558,2,'2006-02-15 05:09:17'), +(2546,559,1,'2006-02-15 05:09:17'), +(2547,559,1,'2006-02-15 05:09:17'), +(2548,559,1,'2006-02-15 05:09:17'), +(2549,559,1,'2006-02-15 05:09:17'), +(2550,559,2,'2006-02-15 05:09:17'), +(2551,559,2,'2006-02-15 05:09:17'), +(2552,559,2,'2006-02-15 05:09:17'), +(2553,559,2,'2006-02-15 05:09:17'), +(2554,560,1,'2006-02-15 05:09:17'), +(2555,560,1,'2006-02-15 05:09:17'), +(2556,560,1,'2006-02-15 05:09:17'), +(2557,560,2,'2006-02-15 05:09:17'), +(2558,560,2,'2006-02-15 05:09:17'), +(2559,561,1,'2006-02-15 05:09:17'), +(2560,561,1,'2006-02-15 05:09:17'), +(2561,561,1,'2006-02-15 05:09:17'), +(2562,561,1,'2006-02-15 05:09:17'), +(2563,562,1,'2006-02-15 05:09:17'), +(2564,562,1,'2006-02-15 05:09:17'), +(2565,562,1,'2006-02-15 05:09:17'), +(2566,562,1,'2006-02-15 05:09:17'), +(2567,562,2,'2006-02-15 05:09:17'), +(2568,562,2,'2006-02-15 05:09:17'), +(2569,563,1,'2006-02-15 05:09:17'), +(2570,563,1,'2006-02-15 05:09:17'), +(2571,563,1,'2006-02-15 05:09:17'), +(2572,563,1,'2006-02-15 05:09:17'), +(2573,563,2,'2006-02-15 05:09:17'), +(2574,563,2,'2006-02-15 05:09:17'), +(2575,563,2,'2006-02-15 05:09:17'), +(2576,564,2,'2006-02-15 05:09:17'), +(2577,564,2,'2006-02-15 05:09:17'), +(2578,564,2,'2006-02-15 05:09:17'), +(2579,565,1,'2006-02-15 05:09:17'), +(2580,565,1,'2006-02-15 05:09:17'), +(2581,566,1,'2006-02-15 05:09:17'), +(2582,566,1,'2006-02-15 05:09:17'), +(2583,567,1,'2006-02-15 05:09:17'), +(2584,567,1,'2006-02-15 05:09:17'), +(2585,567,2,'2006-02-15 05:09:17'), +(2586,567,2,'2006-02-15 05:09:17'), +(2587,568,1,'2006-02-15 05:09:17'), +(2588,568,1,'2006-02-15 05:09:17'), +(2589,568,2,'2006-02-15 05:09:17'), +(2590,568,2,'2006-02-15 05:09:17'), +(2591,569,1,'2006-02-15 05:09:17'), +(2592,569,1,'2006-02-15 05:09:17'), +(2593,570,1,'2006-02-15 05:09:17'), +(2594,570,1,'2006-02-15 05:09:17'), +(2595,570,2,'2006-02-15 05:09:17'), +(2596,570,2,'2006-02-15 05:09:17'), +(2597,570,2,'2006-02-15 05:09:17'), +(2598,571,1,'2006-02-15 05:09:17'), +(2599,571,1,'2006-02-15 05:09:17'), +(2600,571,2,'2006-02-15 05:09:17'), +(2601,571,2,'2006-02-15 05:09:17'), +(2602,571,2,'2006-02-15 05:09:17'), +(2603,571,2,'2006-02-15 05:09:17'), +(2604,572,1,'2006-02-15 05:09:17'), +(2605,572,1,'2006-02-15 05:09:17'), +(2606,572,1,'2006-02-15 05:09:17'), +(2607,572,1,'2006-02-15 05:09:17'), +(2608,572,2,'2006-02-15 05:09:17'), +(2609,572,2,'2006-02-15 05:09:17'), +(2610,572,2,'2006-02-15 05:09:17'), +(2611,572,2,'2006-02-15 05:09:17'), +(2612,573,1,'2006-02-15 05:09:17'), +(2613,573,1,'2006-02-15 05:09:17'), +(2614,573,1,'2006-02-15 05:09:17'), +(2615,573,1,'2006-02-15 05:09:17'), +(2616,574,1,'2006-02-15 05:09:17'), +(2617,574,1,'2006-02-15 05:09:17'), +(2618,574,2,'2006-02-15 05:09:17'), +(2619,574,2,'2006-02-15 05:09:17'), +(2620,574,2,'2006-02-15 05:09:17'), +(2621,575,1,'2006-02-15 05:09:17'), +(2622,575,1,'2006-02-15 05:09:17'), +(2623,575,2,'2006-02-15 05:09:17'), +(2624,575,2,'2006-02-15 05:09:17'), +(2625,575,2,'2006-02-15 05:09:17'), +(2626,575,2,'2006-02-15 05:09:17'), +(2627,576,2,'2006-02-15 05:09:17'), +(2628,576,2,'2006-02-15 05:09:17'), +(2629,576,2,'2006-02-15 05:09:17'), +(2630,577,1,'2006-02-15 05:09:17'), +(2631,577,1,'2006-02-15 05:09:17'), +(2632,577,1,'2006-02-15 05:09:17'), +(2633,578,1,'2006-02-15 05:09:17'), +(2634,578,1,'2006-02-15 05:09:17'), +(2635,578,2,'2006-02-15 05:09:17'), +(2636,578,2,'2006-02-15 05:09:17'), +(2637,578,2,'2006-02-15 05:09:17'), +(2638,579,1,'2006-02-15 05:09:17'), +(2639,579,1,'2006-02-15 05:09:17'), +(2640,579,1,'2006-02-15 05:09:17'), +(2641,579,1,'2006-02-15 05:09:17'), +(2642,579,2,'2006-02-15 05:09:17'), +(2643,579,2,'2006-02-15 05:09:17'), +(2644,579,2,'2006-02-15 05:09:17'), +(2645,580,1,'2006-02-15 05:09:17'), +(2646,580,1,'2006-02-15 05:09:17'), +(2647,580,1,'2006-02-15 05:09:17'), +(2648,580,1,'2006-02-15 05:09:17'), +(2649,580,2,'2006-02-15 05:09:17'), +(2650,580,2,'2006-02-15 05:09:17'), +(2651,581,1,'2006-02-15 05:09:17'), +(2652,581,1,'2006-02-15 05:09:17'), +(2653,581,1,'2006-02-15 05:09:17'), +(2654,582,2,'2006-02-15 05:09:17'), +(2655,582,2,'2006-02-15 05:09:17'), +(2656,583,1,'2006-02-15 05:09:17'), +(2657,583,1,'2006-02-15 05:09:17'), +(2658,583,1,'2006-02-15 05:09:17'), +(2659,583,2,'2006-02-15 05:09:17'), +(2660,583,2,'2006-02-15 05:09:17'), +(2661,584,1,'2006-02-15 05:09:17'), +(2662,584,1,'2006-02-15 05:09:17'), +(2663,585,2,'2006-02-15 05:09:17'), +(2664,585,2,'2006-02-15 05:09:17'), +(2665,585,2,'2006-02-15 05:09:17'), +(2666,585,2,'2006-02-15 05:09:17'), +(2667,586,1,'2006-02-15 05:09:17'), +(2668,586,1,'2006-02-15 05:09:17'), +(2669,586,1,'2006-02-15 05:09:17'), +(2670,586,1,'2006-02-15 05:09:17'), +(2671,586,2,'2006-02-15 05:09:17'), +(2672,586,2,'2006-02-15 05:09:17'), +(2673,586,2,'2006-02-15 05:09:17'), +(2674,586,2,'2006-02-15 05:09:17'), +(2675,587,1,'2006-02-15 05:09:17'), +(2676,587,1,'2006-02-15 05:09:17'), +(2677,587,1,'2006-02-15 05:09:17'), +(2678,588,2,'2006-02-15 05:09:17'), +(2679,588,2,'2006-02-15 05:09:17'), +(2680,588,2,'2006-02-15 05:09:17'), +(2681,588,2,'2006-02-15 05:09:17'), +(2682,589,2,'2006-02-15 05:09:17'), +(2683,589,2,'2006-02-15 05:09:17'), +(2684,589,2,'2006-02-15 05:09:17'), +(2685,589,2,'2006-02-15 05:09:17'), +(2686,590,1,'2006-02-15 05:09:17'), +(2687,590,1,'2006-02-15 05:09:17'), +(2688,590,1,'2006-02-15 05:09:17'), +(2689,590,2,'2006-02-15 05:09:17'), +(2690,590,2,'2006-02-15 05:09:17'), +(2691,590,2,'2006-02-15 05:09:17'), +(2692,590,2,'2006-02-15 05:09:17'), +(2693,591,2,'2006-02-15 05:09:17'), +(2694,591,2,'2006-02-15 05:09:17'), +(2695,591,2,'2006-02-15 05:09:17'), +(2696,592,1,'2006-02-15 05:09:17'), +(2697,592,1,'2006-02-15 05:09:17'), +(2698,592,2,'2006-02-15 05:09:17'), +(2699,592,2,'2006-02-15 05:09:17'), +(2700,593,2,'2006-02-15 05:09:17'), +(2701,593,2,'2006-02-15 05:09:17'), +(2702,593,2,'2006-02-15 05:09:17'), +(2703,593,2,'2006-02-15 05:09:17'), +(2704,594,1,'2006-02-15 05:09:17'), +(2705,594,1,'2006-02-15 05:09:17'), +(2706,594,1,'2006-02-15 05:09:17'), +(2707,595,1,'2006-02-15 05:09:17'), +(2708,595,1,'2006-02-15 05:09:17'), +(2709,595,1,'2006-02-15 05:09:17'), +(2710,595,1,'2006-02-15 05:09:17'), +(2711,595,2,'2006-02-15 05:09:17'), +(2712,595,2,'2006-02-15 05:09:17'), +(2713,595,2,'2006-02-15 05:09:17'), +(2714,595,2,'2006-02-15 05:09:17'), +(2715,596,1,'2006-02-15 05:09:17'), +(2716,596,1,'2006-02-15 05:09:17'), +(2717,596,2,'2006-02-15 05:09:17'), +(2718,596,2,'2006-02-15 05:09:17'), +(2719,596,2,'2006-02-15 05:09:17'), +(2720,596,2,'2006-02-15 05:09:17'), +(2721,597,2,'2006-02-15 05:09:17'), +(2722,597,2,'2006-02-15 05:09:17'), +(2723,597,2,'2006-02-15 05:09:17'), +(2724,597,2,'2006-02-15 05:09:17'), +(2725,598,1,'2006-02-15 05:09:17'), +(2726,598,1,'2006-02-15 05:09:17'), +(2727,598,1,'2006-02-15 05:09:17'), +(2728,598,1,'2006-02-15 05:09:17'), +(2729,599,1,'2006-02-15 05:09:17'), +(2730,599,1,'2006-02-15 05:09:17'), +(2731,599,1,'2006-02-15 05:09:17'), +(2732,599,2,'2006-02-15 05:09:17'), +(2733,599,2,'2006-02-15 05:09:17'), +(2734,600,1,'2006-02-15 05:09:17'), +(2735,600,1,'2006-02-15 05:09:17'), +(2736,600,2,'2006-02-15 05:09:17'), +(2737,600,2,'2006-02-15 05:09:17'), +(2738,601,1,'2006-02-15 05:09:17'), +(2739,601,1,'2006-02-15 05:09:17'), +(2740,601,1,'2006-02-15 05:09:17'), +(2741,601,2,'2006-02-15 05:09:17'), +(2742,601,2,'2006-02-15 05:09:17'), +(2743,602,1,'2006-02-15 05:09:17'), +(2744,602,1,'2006-02-15 05:09:17'), +(2745,602,2,'2006-02-15 05:09:17'), +(2746,602,2,'2006-02-15 05:09:17'), +(2747,602,2,'2006-02-15 05:09:17'), +(2748,603,1,'2006-02-15 05:09:17'), +(2749,603,1,'2006-02-15 05:09:17'), +(2750,603,1,'2006-02-15 05:09:17'), +(2751,603,1,'2006-02-15 05:09:17'), +(2752,603,2,'2006-02-15 05:09:17'), +(2753,603,2,'2006-02-15 05:09:17'), +(2754,604,2,'2006-02-15 05:09:17'), +(2755,604,2,'2006-02-15 05:09:17'), +(2756,604,2,'2006-02-15 05:09:17'), +(2757,605,2,'2006-02-15 05:09:17'), +(2758,605,2,'2006-02-15 05:09:17'), +(2759,606,1,'2006-02-15 05:09:17'), +(2760,606,1,'2006-02-15 05:09:17'), +(2761,606,2,'2006-02-15 05:09:17'), +(2762,606,2,'2006-02-15 05:09:17'), +(2763,606,2,'2006-02-15 05:09:17'), +(2764,606,2,'2006-02-15 05:09:17'), +(2765,608,1,'2006-02-15 05:09:17'), +(2766,608,1,'2006-02-15 05:09:17'), +(2767,608,2,'2006-02-15 05:09:17'), +(2768,608,2,'2006-02-15 05:09:17'), +(2769,608,2,'2006-02-15 05:09:17'), +(2770,608,2,'2006-02-15 05:09:17'), +(2771,609,1,'2006-02-15 05:09:17'), +(2772,609,1,'2006-02-15 05:09:17'), +(2773,609,1,'2006-02-15 05:09:17'), +(2774,609,1,'2006-02-15 05:09:17'), +(2775,609,2,'2006-02-15 05:09:17'), +(2776,609,2,'2006-02-15 05:09:17'), +(2777,609,2,'2006-02-15 05:09:17'), +(2778,609,2,'2006-02-15 05:09:17'), +(2779,610,1,'2006-02-15 05:09:17'), +(2780,610,1,'2006-02-15 05:09:17'), +(2781,610,2,'2006-02-15 05:09:17'), +(2782,610,2,'2006-02-15 05:09:17'), +(2783,610,2,'2006-02-15 05:09:17'), +(2784,611,1,'2006-02-15 05:09:17'), +(2785,611,1,'2006-02-15 05:09:17'), +(2786,611,1,'2006-02-15 05:09:17'), +(2787,611,1,'2006-02-15 05:09:17'), +(2788,611,2,'2006-02-15 05:09:17'), +(2789,611,2,'2006-02-15 05:09:17'), +(2790,612,2,'2006-02-15 05:09:17'), +(2791,612,2,'2006-02-15 05:09:17'), +(2792,613,1,'2006-02-15 05:09:17'), +(2793,613,1,'2006-02-15 05:09:17'), +(2794,614,1,'2006-02-15 05:09:17'), +(2795,614,1,'2006-02-15 05:09:17'), +(2796,614,1,'2006-02-15 05:09:17'), +(2797,614,2,'2006-02-15 05:09:17'), +(2798,614,2,'2006-02-15 05:09:17'), +(2799,614,2,'2006-02-15 05:09:17'), +(2800,615,2,'2006-02-15 05:09:17'), +(2801,615,2,'2006-02-15 05:09:17'), +(2802,615,2,'2006-02-15 05:09:17'), +(2803,615,2,'2006-02-15 05:09:17'), +(2804,616,1,'2006-02-15 05:09:17'), +(2805,616,1,'2006-02-15 05:09:17'), +(2806,616,2,'2006-02-15 05:09:17'), +(2807,616,2,'2006-02-15 05:09:17'), +(2808,616,2,'2006-02-15 05:09:17'), +(2809,616,2,'2006-02-15 05:09:17'), +(2810,617,1,'2006-02-15 05:09:17'), +(2811,617,1,'2006-02-15 05:09:17'), +(2812,617,1,'2006-02-15 05:09:17'), +(2813,618,2,'2006-02-15 05:09:17'), +(2814,618,2,'2006-02-15 05:09:17'), +(2815,618,2,'2006-02-15 05:09:17'), +(2816,618,2,'2006-02-15 05:09:17'), +(2817,619,1,'2006-02-15 05:09:17'), +(2818,619,1,'2006-02-15 05:09:17'), +(2819,619,2,'2006-02-15 05:09:17'), +(2820,619,2,'2006-02-15 05:09:17'), +(2821,619,2,'2006-02-15 05:09:17'), +(2822,619,2,'2006-02-15 05:09:17'), +(2823,620,1,'2006-02-15 05:09:17'), +(2824,620,1,'2006-02-15 05:09:17'), +(2825,620,2,'2006-02-15 05:09:17'), +(2826,620,2,'2006-02-15 05:09:17'), +(2827,620,2,'2006-02-15 05:09:17'), +(2828,621,1,'2006-02-15 05:09:17'), +(2829,621,1,'2006-02-15 05:09:17'), +(2830,621,1,'2006-02-15 05:09:17'), +(2831,621,1,'2006-02-15 05:09:17'), +(2832,621,2,'2006-02-15 05:09:17'), +(2833,621,2,'2006-02-15 05:09:17'), +(2834,621,2,'2006-02-15 05:09:17'), +(2835,621,2,'2006-02-15 05:09:17'), +(2836,622,2,'2006-02-15 05:09:17'), +(2837,622,2,'2006-02-15 05:09:17'), +(2838,623,1,'2006-02-15 05:09:17'), +(2839,623,1,'2006-02-15 05:09:17'), +(2840,623,2,'2006-02-15 05:09:17'), +(2841,623,2,'2006-02-15 05:09:17'), +(2842,623,2,'2006-02-15 05:09:17'), +(2843,624,1,'2006-02-15 05:09:17'), +(2844,624,1,'2006-02-15 05:09:17'), +(2845,624,1,'2006-02-15 05:09:17'), +(2846,624,2,'2006-02-15 05:09:17'), +(2847,624,2,'2006-02-15 05:09:17'), +(2848,624,2,'2006-02-15 05:09:17'), +(2849,624,2,'2006-02-15 05:09:17'), +(2850,625,1,'2006-02-15 05:09:17'), +(2851,625,1,'2006-02-15 05:09:17'), +(2852,625,1,'2006-02-15 05:09:17'), +(2853,625,2,'2006-02-15 05:09:17'), +(2854,625,2,'2006-02-15 05:09:17'), +(2855,625,2,'2006-02-15 05:09:17'), +(2856,625,2,'2006-02-15 05:09:17'), +(2857,626,2,'2006-02-15 05:09:17'), +(2858,626,2,'2006-02-15 05:09:17'), +(2859,626,2,'2006-02-15 05:09:17'), +(2860,626,2,'2006-02-15 05:09:17'), +(2861,627,2,'2006-02-15 05:09:17'), +(2862,627,2,'2006-02-15 05:09:17'), +(2863,627,2,'2006-02-15 05:09:17'), +(2864,628,1,'2006-02-15 05:09:17'), +(2865,628,1,'2006-02-15 05:09:17'), +(2866,628,1,'2006-02-15 05:09:17'), +(2867,628,2,'2006-02-15 05:09:17'), +(2868,628,2,'2006-02-15 05:09:17'), +(2869,629,2,'2006-02-15 05:09:17'), +(2870,629,2,'2006-02-15 05:09:17'), +(2871,629,2,'2006-02-15 05:09:17'), +(2872,629,2,'2006-02-15 05:09:17'), +(2873,630,2,'2006-02-15 05:09:17'), +(2874,630,2,'2006-02-15 05:09:17'), +(2875,630,2,'2006-02-15 05:09:17'), +(2876,631,1,'2006-02-15 05:09:17'), +(2877,631,1,'2006-02-15 05:09:17'), +(2878,631,1,'2006-02-15 05:09:17'), +(2879,631,2,'2006-02-15 05:09:17'), +(2880,631,2,'2006-02-15 05:09:17'), +(2881,632,1,'2006-02-15 05:09:17'), +(2882,632,1,'2006-02-15 05:09:17'), +(2883,632,1,'2006-02-15 05:09:17'), +(2884,633,2,'2006-02-15 05:09:17'), +(2885,633,2,'2006-02-15 05:09:17'), +(2886,633,2,'2006-02-15 05:09:17'), +(2887,634,2,'2006-02-15 05:09:17'), +(2888,634,2,'2006-02-15 05:09:17'), +(2889,634,2,'2006-02-15 05:09:17'), +(2890,634,2,'2006-02-15 05:09:17'), +(2891,635,2,'2006-02-15 05:09:17'), +(2892,635,2,'2006-02-15 05:09:17'), +(2893,636,1,'2006-02-15 05:09:17'), +(2894,636,1,'2006-02-15 05:09:17'), +(2895,636,1,'2006-02-15 05:09:17'), +(2896,637,1,'2006-02-15 05:09:17'), +(2897,637,1,'2006-02-15 05:09:17'), +(2898,637,2,'2006-02-15 05:09:17'), +(2899,637,2,'2006-02-15 05:09:17'), +(2900,637,2,'2006-02-15 05:09:17'), +(2901,638,1,'2006-02-15 05:09:17'), +(2902,638,1,'2006-02-15 05:09:17'), +(2903,638,1,'2006-02-15 05:09:17'), +(2904,638,1,'2006-02-15 05:09:17'), +(2905,638,2,'2006-02-15 05:09:17'), +(2906,638,2,'2006-02-15 05:09:17'), +(2907,638,2,'2006-02-15 05:09:17'), +(2908,638,2,'2006-02-15 05:09:17'), +(2909,639,2,'2006-02-15 05:09:17'), +(2910,639,2,'2006-02-15 05:09:17'), +(2911,639,2,'2006-02-15 05:09:17'), +(2912,640,2,'2006-02-15 05:09:17'), +(2913,640,2,'2006-02-15 05:09:17'), +(2914,640,2,'2006-02-15 05:09:17'), +(2915,641,1,'2006-02-15 05:09:17'), +(2916,641,1,'2006-02-15 05:09:17'), +(2917,641,1,'2006-02-15 05:09:17'), +(2918,641,2,'2006-02-15 05:09:17'), +(2919,641,2,'2006-02-15 05:09:17'), +(2920,641,2,'2006-02-15 05:09:17'), +(2921,641,2,'2006-02-15 05:09:17'), +(2922,643,1,'2006-02-15 05:09:17'), +(2923,643,1,'2006-02-15 05:09:17'), +(2924,643,1,'2006-02-15 05:09:17'), +(2925,643,2,'2006-02-15 05:09:17'), +(2926,643,2,'2006-02-15 05:09:17'), +(2927,643,2,'2006-02-15 05:09:17'), +(2928,644,1,'2006-02-15 05:09:17'), +(2929,644,1,'2006-02-15 05:09:17'), +(2930,644,1,'2006-02-15 05:09:17'), +(2931,644,2,'2006-02-15 05:09:17'), +(2932,644,2,'2006-02-15 05:09:17'), +(2933,644,2,'2006-02-15 05:09:17'), +(2934,644,2,'2006-02-15 05:09:17'), +(2935,645,1,'2006-02-15 05:09:17'), +(2936,645,1,'2006-02-15 05:09:17'), +(2937,645,1,'2006-02-15 05:09:17'), +(2938,645,2,'2006-02-15 05:09:17'), +(2939,645,2,'2006-02-15 05:09:17'), +(2940,645,2,'2006-02-15 05:09:17'), +(2941,646,1,'2006-02-15 05:09:17'), +(2942,646,1,'2006-02-15 05:09:17'), +(2943,646,1,'2006-02-15 05:09:17'), +(2944,646,2,'2006-02-15 05:09:17'), +(2945,646,2,'2006-02-15 05:09:17'), +(2946,647,1,'2006-02-15 05:09:17'), +(2947,647,1,'2006-02-15 05:09:17'), +(2948,647,1,'2006-02-15 05:09:17'), +(2949,647,2,'2006-02-15 05:09:17'), +(2950,647,2,'2006-02-15 05:09:17'), +(2951,647,2,'2006-02-15 05:09:17'), +(2952,648,1,'2006-02-15 05:09:17'), +(2953,648,1,'2006-02-15 05:09:17'), +(2954,648,1,'2006-02-15 05:09:17'), +(2955,648,1,'2006-02-15 05:09:17'), +(2956,648,2,'2006-02-15 05:09:17'), +(2957,648,2,'2006-02-15 05:09:17'), +(2958,649,1,'2006-02-15 05:09:17'), +(2959,649,1,'2006-02-15 05:09:17'), +(2960,649,2,'2006-02-15 05:09:17'), +(2961,649,2,'2006-02-15 05:09:17'), +(2962,649,2,'2006-02-15 05:09:17'), +(2963,649,2,'2006-02-15 05:09:17'), +(2964,650,1,'2006-02-15 05:09:17'), +(2965,650,1,'2006-02-15 05:09:17'), +(2966,650,2,'2006-02-15 05:09:17'), +(2967,650,2,'2006-02-15 05:09:17'), +(2968,650,2,'2006-02-15 05:09:17'), +(2969,650,2,'2006-02-15 05:09:17'), +(2970,651,1,'2006-02-15 05:09:17'), +(2971,651,1,'2006-02-15 05:09:17'), +(2972,651,2,'2006-02-15 05:09:17'), +(2973,651,2,'2006-02-15 05:09:17'), +(2974,651,2,'2006-02-15 05:09:17'), +(2975,651,2,'2006-02-15 05:09:17'), +(2976,652,1,'2006-02-15 05:09:17'), +(2977,652,1,'2006-02-15 05:09:17'), +(2978,652,1,'2006-02-15 05:09:17'), +(2979,652,1,'2006-02-15 05:09:17'), +(2980,653,1,'2006-02-15 05:09:17'), +(2981,653,1,'2006-02-15 05:09:17'), +(2982,654,1,'2006-02-15 05:09:17'), +(2983,654,1,'2006-02-15 05:09:17'), +(2984,654,2,'2006-02-15 05:09:17'), +(2985,654,2,'2006-02-15 05:09:17'), +(2986,655,1,'2006-02-15 05:09:17'), +(2987,655,1,'2006-02-15 05:09:17'), +(2988,655,1,'2006-02-15 05:09:17'), +(2989,655,2,'2006-02-15 05:09:17'), +(2990,655,2,'2006-02-15 05:09:17'), +(2991,655,2,'2006-02-15 05:09:17'), +(2992,656,2,'2006-02-15 05:09:17'), +(2993,656,2,'2006-02-15 05:09:17'), +(2994,657,1,'2006-02-15 05:09:17'), +(2995,657,1,'2006-02-15 05:09:17'), +(2996,657,1,'2006-02-15 05:09:17'), +(2997,657,1,'2006-02-15 05:09:17'), +(2998,657,2,'2006-02-15 05:09:17'), +(2999,657,2,'2006-02-15 05:09:17'), +(3000,658,2,'2006-02-15 05:09:17'), +(3001,658,2,'2006-02-15 05:09:17'), +(3002,658,2,'2006-02-15 05:09:17'), +(3003,658,2,'2006-02-15 05:09:17'), +(3004,659,2,'2006-02-15 05:09:17'), +(3005,659,2,'2006-02-15 05:09:17'), +(3006,660,1,'2006-02-15 05:09:17'), +(3007,660,1,'2006-02-15 05:09:17'), +(3008,660,2,'2006-02-15 05:09:17'), +(3009,660,2,'2006-02-15 05:09:17'), +(3010,661,1,'2006-02-15 05:09:17'), +(3011,661,1,'2006-02-15 05:09:17'), +(3012,661,1,'2006-02-15 05:09:17'), +(3013,661,1,'2006-02-15 05:09:17'), +(3014,662,1,'2006-02-15 05:09:17'), +(3015,662,1,'2006-02-15 05:09:17'), +(3016,662,2,'2006-02-15 05:09:17'), +(3017,662,2,'2006-02-15 05:09:17'), +(3018,663,1,'2006-02-15 05:09:17'), +(3019,663,1,'2006-02-15 05:09:17'), +(3020,663,1,'2006-02-15 05:09:17'), +(3021,663,2,'2006-02-15 05:09:17'), +(3022,663,2,'2006-02-15 05:09:17'), +(3023,664,1,'2006-02-15 05:09:17'), +(3024,664,1,'2006-02-15 05:09:17'), +(3025,664,2,'2006-02-15 05:09:17'), +(3026,664,2,'2006-02-15 05:09:17'), +(3027,664,2,'2006-02-15 05:09:17'), +(3028,665,1,'2006-02-15 05:09:17'), +(3029,665,1,'2006-02-15 05:09:17'), +(3030,665,1,'2006-02-15 05:09:17'), +(3031,665,1,'2006-02-15 05:09:17'), +(3032,665,2,'2006-02-15 05:09:17'), +(3033,665,2,'2006-02-15 05:09:17'), +(3034,665,2,'2006-02-15 05:09:17'), +(3035,666,1,'2006-02-15 05:09:17'), +(3036,666,1,'2006-02-15 05:09:17'), +(3037,666,1,'2006-02-15 05:09:17'), +(3038,666,2,'2006-02-15 05:09:17'), +(3039,666,2,'2006-02-15 05:09:17'), +(3040,667,1,'2006-02-15 05:09:17'), +(3041,667,1,'2006-02-15 05:09:17'), +(3042,667,2,'2006-02-15 05:09:17'), +(3043,667,2,'2006-02-15 05:09:17'), +(3044,668,1,'2006-02-15 05:09:17'), +(3045,668,1,'2006-02-15 05:09:17'), +(3046,668,2,'2006-02-15 05:09:17'), +(3047,668,2,'2006-02-15 05:09:17'), +(3048,668,2,'2006-02-15 05:09:17'), +(3049,670,1,'2006-02-15 05:09:17'), +(3050,670,1,'2006-02-15 05:09:17'), +(3051,670,1,'2006-02-15 05:09:17'), +(3052,670,1,'2006-02-15 05:09:17'), +(3053,670,2,'2006-02-15 05:09:17'), +(3054,670,2,'2006-02-15 05:09:17'), +(3055,670,2,'2006-02-15 05:09:17'), +(3056,672,1,'2006-02-15 05:09:17'), +(3057,672,1,'2006-02-15 05:09:17'), +(3058,672,2,'2006-02-15 05:09:17'), +(3059,672,2,'2006-02-15 05:09:17'), +(3060,672,2,'2006-02-15 05:09:17'), +(3061,672,2,'2006-02-15 05:09:17'), +(3062,673,1,'2006-02-15 05:09:17'), +(3063,673,1,'2006-02-15 05:09:17'), +(3064,673,2,'2006-02-15 05:09:17'), +(3065,673,2,'2006-02-15 05:09:17'), +(3066,674,1,'2006-02-15 05:09:17'), +(3067,674,1,'2006-02-15 05:09:17'), +(3068,674,1,'2006-02-15 05:09:17'), +(3069,675,1,'2006-02-15 05:09:17'), +(3070,675,1,'2006-02-15 05:09:17'), +(3071,676,1,'2006-02-15 05:09:17'), +(3072,676,1,'2006-02-15 05:09:17'), +(3073,676,2,'2006-02-15 05:09:17'), +(3074,676,2,'2006-02-15 05:09:17'), +(3075,676,2,'2006-02-15 05:09:17'), +(3076,676,2,'2006-02-15 05:09:17'), +(3077,677,1,'2006-02-15 05:09:17'), +(3078,677,1,'2006-02-15 05:09:17'), +(3079,677,1,'2006-02-15 05:09:17'), +(3080,677,2,'2006-02-15 05:09:17'), +(3081,677,2,'2006-02-15 05:09:17'), +(3082,677,2,'2006-02-15 05:09:17'), +(3083,677,2,'2006-02-15 05:09:17'), +(3084,678,1,'2006-02-15 05:09:17'), +(3085,678,1,'2006-02-15 05:09:17'), +(3086,678,1,'2006-02-15 05:09:17'), +(3087,678,1,'2006-02-15 05:09:17'), +(3088,679,1,'2006-02-15 05:09:17'), +(3089,679,1,'2006-02-15 05:09:17'), +(3090,679,2,'2006-02-15 05:09:17'), +(3091,679,2,'2006-02-15 05:09:17'), +(3092,680,1,'2006-02-15 05:09:17'), +(3093,680,1,'2006-02-15 05:09:17'), +(3094,680,2,'2006-02-15 05:09:17'), +(3095,680,2,'2006-02-15 05:09:17'), +(3096,680,2,'2006-02-15 05:09:17'), +(3097,680,2,'2006-02-15 05:09:17'), +(3098,681,1,'2006-02-15 05:09:17'), +(3099,681,1,'2006-02-15 05:09:17'), +(3100,681,1,'2006-02-15 05:09:17'), +(3101,681,2,'2006-02-15 05:09:17'), +(3102,681,2,'2006-02-15 05:09:17'), +(3103,681,2,'2006-02-15 05:09:17'), +(3104,682,1,'2006-02-15 05:09:17'), +(3105,682,1,'2006-02-15 05:09:17'), +(3106,682,1,'2006-02-15 05:09:17'), +(3107,683,1,'2006-02-15 05:09:17'), +(3108,683,1,'2006-02-15 05:09:17'), +(3109,683,1,'2006-02-15 05:09:17'), +(3110,683,1,'2006-02-15 05:09:17'), +(3111,683,2,'2006-02-15 05:09:17'), +(3112,683,2,'2006-02-15 05:09:17'), +(3113,683,2,'2006-02-15 05:09:17'), +(3114,683,2,'2006-02-15 05:09:17'), +(3115,684,2,'2006-02-15 05:09:17'), +(3116,684,2,'2006-02-15 05:09:17'), +(3117,685,2,'2006-02-15 05:09:17'), +(3118,685,2,'2006-02-15 05:09:17'), +(3119,686,1,'2006-02-15 05:09:17'), +(3120,686,1,'2006-02-15 05:09:17'), +(3121,686,1,'2006-02-15 05:09:17'), +(3122,686,1,'2006-02-15 05:09:17'), +(3123,687,1,'2006-02-15 05:09:17'), +(3124,687,1,'2006-02-15 05:09:17'), +(3125,687,1,'2006-02-15 05:09:17'), +(3126,687,2,'2006-02-15 05:09:17'), +(3127,687,2,'2006-02-15 05:09:17'), +(3128,687,2,'2006-02-15 05:09:17'), +(3129,687,2,'2006-02-15 05:09:17'), +(3130,688,2,'2006-02-15 05:09:17'), +(3131,688,2,'2006-02-15 05:09:17'), +(3132,688,2,'2006-02-15 05:09:17'), +(3133,688,2,'2006-02-15 05:09:17'), +(3134,689,1,'2006-02-15 05:09:17'), +(3135,689,1,'2006-02-15 05:09:17'), +(3136,689,1,'2006-02-15 05:09:17'), +(3137,689,1,'2006-02-15 05:09:17'), +(3138,689,2,'2006-02-15 05:09:17'), +(3139,689,2,'2006-02-15 05:09:17'), +(3140,690,1,'2006-02-15 05:09:17'), +(3141,690,1,'2006-02-15 05:09:17'), +(3142,690,1,'2006-02-15 05:09:17'), +(3143,690,1,'2006-02-15 05:09:17'), +(3144,690,2,'2006-02-15 05:09:17'), +(3145,690,2,'2006-02-15 05:09:17'), +(3146,691,1,'2006-02-15 05:09:17'), +(3147,691,1,'2006-02-15 05:09:17'), +(3148,691,1,'2006-02-15 05:09:17'), +(3149,691,2,'2006-02-15 05:09:17'), +(3150,691,2,'2006-02-15 05:09:17'), +(3151,692,2,'2006-02-15 05:09:17'), +(3152,692,2,'2006-02-15 05:09:17'), +(3153,692,2,'2006-02-15 05:09:17'), +(3154,693,1,'2006-02-15 05:09:17'), +(3155,693,1,'2006-02-15 05:09:17'), +(3156,693,2,'2006-02-15 05:09:17'), +(3157,693,2,'2006-02-15 05:09:17'), +(3158,693,2,'2006-02-15 05:09:17'), +(3159,694,1,'2006-02-15 05:09:17'), +(3160,694,1,'2006-02-15 05:09:17'), +(3161,694,1,'2006-02-15 05:09:17'), +(3162,694,1,'2006-02-15 05:09:17'), +(3163,694,2,'2006-02-15 05:09:17'), +(3164,694,2,'2006-02-15 05:09:17'), +(3165,695,1,'2006-02-15 05:09:17'), +(3166,695,1,'2006-02-15 05:09:17'), +(3167,696,1,'2006-02-15 05:09:17'), +(3168,696,1,'2006-02-15 05:09:17'), +(3169,696,2,'2006-02-15 05:09:17'), +(3170,696,2,'2006-02-15 05:09:17'), +(3171,696,2,'2006-02-15 05:09:17'), +(3172,697,1,'2006-02-15 05:09:17'), +(3173,697,1,'2006-02-15 05:09:17'), +(3174,697,1,'2006-02-15 05:09:17'), +(3175,697,1,'2006-02-15 05:09:17'), +(3176,697,2,'2006-02-15 05:09:17'), +(3177,697,2,'2006-02-15 05:09:17'), +(3178,697,2,'2006-02-15 05:09:17'), +(3179,697,2,'2006-02-15 05:09:17'), +(3180,698,1,'2006-02-15 05:09:17'), +(3181,698,1,'2006-02-15 05:09:17'), +(3182,698,1,'2006-02-15 05:09:17'), +(3183,698,1,'2006-02-15 05:09:17'), +(3184,698,2,'2006-02-15 05:09:17'), +(3185,698,2,'2006-02-15 05:09:17'), +(3186,698,2,'2006-02-15 05:09:17'), +(3187,699,1,'2006-02-15 05:09:17'), +(3188,699,1,'2006-02-15 05:09:17'), +(3189,700,2,'2006-02-15 05:09:17'), +(3190,700,2,'2006-02-15 05:09:17'), +(3191,700,2,'2006-02-15 05:09:17'), +(3192,702,1,'2006-02-15 05:09:17'), +(3193,702,1,'2006-02-15 05:09:17'), +(3194,702,1,'2006-02-15 05:09:17'), +(3195,702,1,'2006-02-15 05:09:17'), +(3196,702,2,'2006-02-15 05:09:17'), +(3197,702,2,'2006-02-15 05:09:17'), +(3198,702,2,'2006-02-15 05:09:17'), +(3199,702,2,'2006-02-15 05:09:17'), +(3200,703,2,'2006-02-15 05:09:17'), +(3201,703,2,'2006-02-15 05:09:17'), +(3202,704,1,'2006-02-15 05:09:17'), +(3203,704,1,'2006-02-15 05:09:17'), +(3204,704,2,'2006-02-15 05:09:17'), +(3205,704,2,'2006-02-15 05:09:17'), +(3206,704,2,'2006-02-15 05:09:17'), +(3207,705,1,'2006-02-15 05:09:17'), +(3208,705,1,'2006-02-15 05:09:17'), +(3209,705,1,'2006-02-15 05:09:17'), +(3210,705,1,'2006-02-15 05:09:17'), +(3211,706,1,'2006-02-15 05:09:17'), +(3212,706,1,'2006-02-15 05:09:17'), +(3213,706,2,'2006-02-15 05:09:17'), +(3214,706,2,'2006-02-15 05:09:17'), +(3215,706,2,'2006-02-15 05:09:17'), +(3216,706,2,'2006-02-15 05:09:17'), +(3217,707,1,'2006-02-15 05:09:17'), +(3218,707,1,'2006-02-15 05:09:17'), +(3219,707,2,'2006-02-15 05:09:17'), +(3220,707,2,'2006-02-15 05:09:17'), +(3221,707,2,'2006-02-15 05:09:17'), +(3222,707,2,'2006-02-15 05:09:17'), +(3223,708,1,'2006-02-15 05:09:17'), +(3224,708,1,'2006-02-15 05:09:17'), +(3225,708,2,'2006-02-15 05:09:17'), +(3226,708,2,'2006-02-15 05:09:17'), +(3227,709,1,'2006-02-15 05:09:17'), +(3228,709,1,'2006-02-15 05:09:17'), +(3229,709,2,'2006-02-15 05:09:17'), +(3230,709,2,'2006-02-15 05:09:17'), +(3231,709,2,'2006-02-15 05:09:17'), +(3232,709,2,'2006-02-15 05:09:17'), +(3233,710,1,'2006-02-15 05:09:17'), +(3234,710,1,'2006-02-15 05:09:17'), +(3235,710,1,'2006-02-15 05:09:17'), +(3236,710,1,'2006-02-15 05:09:17'), +(3237,710,2,'2006-02-15 05:09:17'), +(3238,710,2,'2006-02-15 05:09:17'), +(3239,711,2,'2006-02-15 05:09:17'), +(3240,711,2,'2006-02-15 05:09:17'), +(3241,711,2,'2006-02-15 05:09:17'), +(3242,711,2,'2006-02-15 05:09:17'), +(3243,714,2,'2006-02-15 05:09:17'), +(3244,714,2,'2006-02-15 05:09:17'), +(3245,714,2,'2006-02-15 05:09:17'), +(3246,715,1,'2006-02-15 05:09:17'), +(3247,715,1,'2006-02-15 05:09:17'), +(3248,715,1,'2006-02-15 05:09:17'), +(3249,715,1,'2006-02-15 05:09:17'), +(3250,715,2,'2006-02-15 05:09:17'), +(3251,715,2,'2006-02-15 05:09:17'), +(3252,715,2,'2006-02-15 05:09:17'), +(3253,716,1,'2006-02-15 05:09:17'), +(3254,716,1,'2006-02-15 05:09:17'), +(3255,716,2,'2006-02-15 05:09:17'), +(3256,716,2,'2006-02-15 05:09:17'), +(3257,716,2,'2006-02-15 05:09:17'), +(3258,717,1,'2006-02-15 05:09:17'), +(3259,717,1,'2006-02-15 05:09:17'), +(3260,717,2,'2006-02-15 05:09:17'), +(3261,717,2,'2006-02-15 05:09:17'), +(3262,718,2,'2006-02-15 05:09:17'), +(3263,718,2,'2006-02-15 05:09:17'), +(3264,719,1,'2006-02-15 05:09:17'), +(3265,719,1,'2006-02-15 05:09:17'), +(3266,720,1,'2006-02-15 05:09:17'), +(3267,720,1,'2006-02-15 05:09:17'), +(3268,720,1,'2006-02-15 05:09:17'), +(3269,720,2,'2006-02-15 05:09:17'), +(3270,720,2,'2006-02-15 05:09:17'), +(3271,720,2,'2006-02-15 05:09:17'), +(3272,720,2,'2006-02-15 05:09:17'), +(3273,721,1,'2006-02-15 05:09:17'), +(3274,721,1,'2006-02-15 05:09:17'), +(3275,722,1,'2006-02-15 05:09:17'), +(3276,722,1,'2006-02-15 05:09:17'), +(3277,722,2,'2006-02-15 05:09:17'), +(3278,722,2,'2006-02-15 05:09:17'), +(3279,723,1,'2006-02-15 05:09:17'), +(3280,723,1,'2006-02-15 05:09:17'), +(3281,723,1,'2006-02-15 05:09:17'), +(3282,723,1,'2006-02-15 05:09:17'), +(3283,723,2,'2006-02-15 05:09:17'), +(3284,723,2,'2006-02-15 05:09:17'), +(3285,723,2,'2006-02-15 05:09:17'), +(3286,724,1,'2006-02-15 05:09:17'), +(3287,724,1,'2006-02-15 05:09:17'), +(3288,724,2,'2006-02-15 05:09:17'), +(3289,724,2,'2006-02-15 05:09:17'), +(3290,724,2,'2006-02-15 05:09:17'), +(3291,724,2,'2006-02-15 05:09:17'), +(3292,725,1,'2006-02-15 05:09:17'), +(3293,725,1,'2006-02-15 05:09:17'), +(3294,725,1,'2006-02-15 05:09:17'), +(3295,725,2,'2006-02-15 05:09:17'), +(3296,725,2,'2006-02-15 05:09:17'), +(3297,725,2,'2006-02-15 05:09:17'), +(3298,726,2,'2006-02-15 05:09:17'), +(3299,726,2,'2006-02-15 05:09:17'), +(3300,726,2,'2006-02-15 05:09:17'), +(3301,727,1,'2006-02-15 05:09:17'), +(3302,727,1,'2006-02-15 05:09:17'), +(3303,727,2,'2006-02-15 05:09:17'), +(3304,727,2,'2006-02-15 05:09:17'), +(3305,727,2,'2006-02-15 05:09:17'), +(3306,728,1,'2006-02-15 05:09:17'), +(3307,728,1,'2006-02-15 05:09:17'), +(3308,728,1,'2006-02-15 05:09:17'), +(3309,728,2,'2006-02-15 05:09:17'), +(3310,728,2,'2006-02-15 05:09:17'), +(3311,729,2,'2006-02-15 05:09:17'), +(3312,729,2,'2006-02-15 05:09:17'), +(3313,729,2,'2006-02-15 05:09:17'), +(3314,729,2,'2006-02-15 05:09:17'), +(3315,730,1,'2006-02-15 05:09:17'), +(3316,730,1,'2006-02-15 05:09:17'), +(3317,730,1,'2006-02-15 05:09:17'), +(3318,730,1,'2006-02-15 05:09:17'), +(3319,730,2,'2006-02-15 05:09:17'), +(3320,730,2,'2006-02-15 05:09:17'), +(3321,730,2,'2006-02-15 05:09:17'), +(3322,730,2,'2006-02-15 05:09:17'), +(3323,731,2,'2006-02-15 05:09:17'), +(3324,731,2,'2006-02-15 05:09:17'), +(3325,731,2,'2006-02-15 05:09:17'), +(3326,732,1,'2006-02-15 05:09:17'), +(3327,732,1,'2006-02-15 05:09:17'), +(3328,732,1,'2006-02-15 05:09:17'), +(3329,732,1,'2006-02-15 05:09:17'), +(3330,733,1,'2006-02-15 05:09:17'), +(3331,733,1,'2006-02-15 05:09:17'), +(3332,733,1,'2006-02-15 05:09:17'), +(3333,733,1,'2006-02-15 05:09:17'), +(3334,733,2,'2006-02-15 05:09:17'), +(3335,733,2,'2006-02-15 05:09:17'), +(3336,733,2,'2006-02-15 05:09:17'), +(3337,734,1,'2006-02-15 05:09:17'), +(3338,734,1,'2006-02-15 05:09:17'), +(3339,734,2,'2006-02-15 05:09:17'), +(3340,734,2,'2006-02-15 05:09:17'), +(3341,734,2,'2006-02-15 05:09:17'), +(3342,734,2,'2006-02-15 05:09:17'), +(3343,735,1,'2006-02-15 05:09:17'), +(3344,735,1,'2006-02-15 05:09:17'), +(3345,735,1,'2006-02-15 05:09:17'), +(3346,735,2,'2006-02-15 05:09:17'), +(3347,735,2,'2006-02-15 05:09:17'), +(3348,735,2,'2006-02-15 05:09:17'), +(3349,735,2,'2006-02-15 05:09:17'), +(3350,736,1,'2006-02-15 05:09:17'), +(3351,736,1,'2006-02-15 05:09:17'), +(3352,736,1,'2006-02-15 05:09:17'), +(3353,736,1,'2006-02-15 05:09:17'), +(3354,737,1,'2006-02-15 05:09:17'), +(3355,737,1,'2006-02-15 05:09:17'), +(3356,737,2,'2006-02-15 05:09:17'), +(3357,737,2,'2006-02-15 05:09:17'), +(3358,737,2,'2006-02-15 05:09:17'), +(3359,737,2,'2006-02-15 05:09:17'), +(3360,738,1,'2006-02-15 05:09:17'), +(3361,738,1,'2006-02-15 05:09:17'), +(3362,738,1,'2006-02-15 05:09:17'), +(3363,738,1,'2006-02-15 05:09:17'), +(3364,738,2,'2006-02-15 05:09:17'), +(3365,738,2,'2006-02-15 05:09:17'), +(3366,738,2,'2006-02-15 05:09:17'), +(3367,738,2,'2006-02-15 05:09:17'), +(3368,739,1,'2006-02-15 05:09:17'), +(3369,739,1,'2006-02-15 05:09:17'), +(3370,739,2,'2006-02-15 05:09:17'), +(3371,739,2,'2006-02-15 05:09:17'), +(3372,739,2,'2006-02-15 05:09:17'), +(3373,740,2,'2006-02-15 05:09:17'), +(3374,740,2,'2006-02-15 05:09:17'), +(3375,740,2,'2006-02-15 05:09:17'), +(3376,741,1,'2006-02-15 05:09:17'), +(3377,741,1,'2006-02-15 05:09:17'), +(3378,741,1,'2006-02-15 05:09:17'), +(3379,741,1,'2006-02-15 05:09:17'), +(3380,741,2,'2006-02-15 05:09:17'), +(3381,741,2,'2006-02-15 05:09:17'), +(3382,743,1,'2006-02-15 05:09:17'), +(3383,743,1,'2006-02-15 05:09:17'), +(3384,743,2,'2006-02-15 05:09:17'), +(3385,743,2,'2006-02-15 05:09:17'), +(3386,743,2,'2006-02-15 05:09:17'), +(3387,743,2,'2006-02-15 05:09:17'), +(3388,744,1,'2006-02-15 05:09:17'), +(3389,744,1,'2006-02-15 05:09:17'), +(3390,744,2,'2006-02-15 05:09:17'), +(3391,744,2,'2006-02-15 05:09:17'), +(3392,744,2,'2006-02-15 05:09:17'), +(3393,745,1,'2006-02-15 05:09:17'), +(3394,745,1,'2006-02-15 05:09:17'), +(3395,745,1,'2006-02-15 05:09:17'), +(3396,745,1,'2006-02-15 05:09:17'), +(3397,745,2,'2006-02-15 05:09:17'), +(3398,745,2,'2006-02-15 05:09:17'), +(3399,745,2,'2006-02-15 05:09:17'), +(3400,745,2,'2006-02-15 05:09:17'), +(3401,746,1,'2006-02-15 05:09:17'), +(3402,746,1,'2006-02-15 05:09:17'), +(3403,746,2,'2006-02-15 05:09:17'), +(3404,746,2,'2006-02-15 05:09:17'), +(3405,746,2,'2006-02-15 05:09:17'), +(3406,747,1,'2006-02-15 05:09:17'), +(3407,747,1,'2006-02-15 05:09:17'), +(3408,747,2,'2006-02-15 05:09:17'), +(3409,747,2,'2006-02-15 05:09:17'), +(3410,747,2,'2006-02-15 05:09:17'), +(3411,748,1,'2006-02-15 05:09:17'), +(3412,748,1,'2006-02-15 05:09:17'), +(3413,748,1,'2006-02-15 05:09:17'), +(3414,748,1,'2006-02-15 05:09:17'), +(3415,748,2,'2006-02-15 05:09:17'), +(3416,748,2,'2006-02-15 05:09:17'), +(3417,748,2,'2006-02-15 05:09:17'), +(3418,748,2,'2006-02-15 05:09:17'), +(3419,749,1,'2006-02-15 05:09:17'), +(3420,749,1,'2006-02-15 05:09:17'), +(3421,749,2,'2006-02-15 05:09:17'), +(3422,749,2,'2006-02-15 05:09:17'), +(3423,750,1,'2006-02-15 05:09:17'), +(3424,750,1,'2006-02-15 05:09:17'), +(3425,750,1,'2006-02-15 05:09:17'), +(3426,751,2,'2006-02-15 05:09:17'), +(3427,751,2,'2006-02-15 05:09:17'), +(3428,752,2,'2006-02-15 05:09:17'), +(3429,752,2,'2006-02-15 05:09:17'), +(3430,752,2,'2006-02-15 05:09:17'), +(3431,753,1,'2006-02-15 05:09:17'), +(3432,753,1,'2006-02-15 05:09:17'), +(3433,753,1,'2006-02-15 05:09:17'), +(3434,753,1,'2006-02-15 05:09:17'), +(3435,753,2,'2006-02-15 05:09:17'), +(3436,753,2,'2006-02-15 05:09:17'), +(3437,753,2,'2006-02-15 05:09:17'), +(3438,753,2,'2006-02-15 05:09:17'), +(3439,754,2,'2006-02-15 05:09:17'), +(3440,754,2,'2006-02-15 05:09:17'), +(3441,755,1,'2006-02-15 05:09:17'), +(3442,755,1,'2006-02-15 05:09:17'), +(3443,755,1,'2006-02-15 05:09:17'), +(3444,755,1,'2006-02-15 05:09:17'), +(3445,755,2,'2006-02-15 05:09:17'), +(3446,755,2,'2006-02-15 05:09:17'), +(3447,755,2,'2006-02-15 05:09:17'), +(3448,756,2,'2006-02-15 05:09:17'), +(3449,756,2,'2006-02-15 05:09:17'), +(3450,756,2,'2006-02-15 05:09:17'), +(3451,757,1,'2006-02-15 05:09:17'), +(3452,757,1,'2006-02-15 05:09:17'), +(3453,757,1,'2006-02-15 05:09:17'), +(3454,757,2,'2006-02-15 05:09:17'), +(3455,757,2,'2006-02-15 05:09:17'), +(3456,758,2,'2006-02-15 05:09:17'), +(3457,758,2,'2006-02-15 05:09:17'), +(3458,758,2,'2006-02-15 05:09:17'), +(3459,759,1,'2006-02-15 05:09:17'), +(3460,759,1,'2006-02-15 05:09:17'), +(3461,759,2,'2006-02-15 05:09:17'), +(3462,759,2,'2006-02-15 05:09:17'), +(3463,759,2,'2006-02-15 05:09:17'), +(3464,759,2,'2006-02-15 05:09:17'), +(3465,760,1,'2006-02-15 05:09:17'), +(3466,760,1,'2006-02-15 05:09:17'), +(3467,760,1,'2006-02-15 05:09:17'), +(3468,760,2,'2006-02-15 05:09:17'), +(3469,760,2,'2006-02-15 05:09:17'), +(3470,760,2,'2006-02-15 05:09:17'), +(3471,760,2,'2006-02-15 05:09:17'), +(3472,761,2,'2006-02-15 05:09:17'), +(3473,761,2,'2006-02-15 05:09:17'), +(3474,761,2,'2006-02-15 05:09:17'), +(3475,762,2,'2006-02-15 05:09:17'), +(3476,762,2,'2006-02-15 05:09:17'), +(3477,762,2,'2006-02-15 05:09:17'), +(3478,762,2,'2006-02-15 05:09:17'), +(3479,763,1,'2006-02-15 05:09:17'), +(3480,763,1,'2006-02-15 05:09:17'), +(3481,763,1,'2006-02-15 05:09:17'), +(3482,763,2,'2006-02-15 05:09:17'), +(3483,763,2,'2006-02-15 05:09:17'), +(3484,764,1,'2006-02-15 05:09:17'), +(3485,764,1,'2006-02-15 05:09:17'), +(3486,764,1,'2006-02-15 05:09:17'), +(3487,764,1,'2006-02-15 05:09:17'), +(3488,764,2,'2006-02-15 05:09:17'), +(3489,764,2,'2006-02-15 05:09:17'), +(3490,764,2,'2006-02-15 05:09:17'), +(3491,764,2,'2006-02-15 05:09:17'), +(3492,765,1,'2006-02-15 05:09:17'), +(3493,765,1,'2006-02-15 05:09:17'), +(3494,765,1,'2006-02-15 05:09:17'), +(3495,765,1,'2006-02-15 05:09:17'), +(3496,766,1,'2006-02-15 05:09:17'), +(3497,766,1,'2006-02-15 05:09:17'), +(3498,766,1,'2006-02-15 05:09:17'), +(3499,767,1,'2006-02-15 05:09:17'), +(3500,767,1,'2006-02-15 05:09:17'), +(3501,767,1,'2006-02-15 05:09:17'), +(3502,767,1,'2006-02-15 05:09:17'), +(3503,767,2,'2006-02-15 05:09:17'), +(3504,767,2,'2006-02-15 05:09:17'), +(3505,767,2,'2006-02-15 05:09:17'), +(3506,767,2,'2006-02-15 05:09:17'), +(3507,768,1,'2006-02-15 05:09:17'), +(3508,768,1,'2006-02-15 05:09:17'), +(3509,768,1,'2006-02-15 05:09:17'), +(3510,768,2,'2006-02-15 05:09:17'), +(3511,768,2,'2006-02-15 05:09:17'), +(3512,768,2,'2006-02-15 05:09:17'), +(3513,769,2,'2006-02-15 05:09:17'), +(3514,769,2,'2006-02-15 05:09:17'), +(3515,770,2,'2006-02-15 05:09:17'), +(3516,770,2,'2006-02-15 05:09:17'), +(3517,770,2,'2006-02-15 05:09:17'), +(3518,771,1,'2006-02-15 05:09:17'), +(3519,771,1,'2006-02-15 05:09:17'), +(3520,771,1,'2006-02-15 05:09:17'), +(3521,771,2,'2006-02-15 05:09:17'), +(3522,771,2,'2006-02-15 05:09:17'), +(3523,771,2,'2006-02-15 05:09:17'), +(3524,771,2,'2006-02-15 05:09:17'), +(3525,772,1,'2006-02-15 05:09:17'), +(3526,772,1,'2006-02-15 05:09:17'), +(3527,772,1,'2006-02-15 05:09:17'), +(3528,772,1,'2006-02-15 05:09:17'), +(3529,772,2,'2006-02-15 05:09:17'), +(3530,772,2,'2006-02-15 05:09:17'), +(3531,773,1,'2006-02-15 05:09:17'), +(3532,773,1,'2006-02-15 05:09:17'), +(3533,773,1,'2006-02-15 05:09:17'), +(3534,773,1,'2006-02-15 05:09:17'), +(3535,773,2,'2006-02-15 05:09:17'), +(3536,773,2,'2006-02-15 05:09:17'), +(3537,773,2,'2006-02-15 05:09:17'), +(3538,773,2,'2006-02-15 05:09:17'), +(3539,774,1,'2006-02-15 05:09:17'), +(3540,774,1,'2006-02-15 05:09:17'), +(3541,774,1,'2006-02-15 05:09:17'), +(3542,774,1,'2006-02-15 05:09:17'), +(3543,775,1,'2006-02-15 05:09:17'), +(3544,775,1,'2006-02-15 05:09:17'), +(3545,775,1,'2006-02-15 05:09:17'), +(3546,775,2,'2006-02-15 05:09:17'), +(3547,775,2,'2006-02-15 05:09:17'), +(3548,776,1,'2006-02-15 05:09:17'), +(3549,776,1,'2006-02-15 05:09:17'), +(3550,776,2,'2006-02-15 05:09:17'), +(3551,776,2,'2006-02-15 05:09:17'), +(3552,776,2,'2006-02-15 05:09:17'), +(3553,777,1,'2006-02-15 05:09:17'), +(3554,777,1,'2006-02-15 05:09:17'), +(3555,777,1,'2006-02-15 05:09:17'), +(3556,777,2,'2006-02-15 05:09:17'), +(3557,777,2,'2006-02-15 05:09:17'), +(3558,777,2,'2006-02-15 05:09:17'), +(3559,778,1,'2006-02-15 05:09:17'), +(3560,778,1,'2006-02-15 05:09:17'), +(3561,778,1,'2006-02-15 05:09:17'), +(3562,778,1,'2006-02-15 05:09:17'), +(3563,778,2,'2006-02-15 05:09:17'), +(3564,778,2,'2006-02-15 05:09:17'), +(3565,779,2,'2006-02-15 05:09:17'), +(3566,779,2,'2006-02-15 05:09:17'), +(3567,780,2,'2006-02-15 05:09:17'), +(3568,780,2,'2006-02-15 05:09:17'), +(3569,780,2,'2006-02-15 05:09:17'), +(3570,781,2,'2006-02-15 05:09:17'), +(3571,781,2,'2006-02-15 05:09:17'), +(3572,782,1,'2006-02-15 05:09:17'), +(3573,782,1,'2006-02-15 05:09:17'), +(3574,782,1,'2006-02-15 05:09:17'), +(3575,782,2,'2006-02-15 05:09:17'), +(3576,782,2,'2006-02-15 05:09:17'), +(3577,782,2,'2006-02-15 05:09:17'), +(3578,783,1,'2006-02-15 05:09:17'), +(3579,783,1,'2006-02-15 05:09:17'), +(3580,783,1,'2006-02-15 05:09:17'), +(3581,783,1,'2006-02-15 05:09:17'), +(3582,784,1,'2006-02-15 05:09:17'), +(3583,784,1,'2006-02-15 05:09:17'), +(3584,784,1,'2006-02-15 05:09:17'), +(3585,784,2,'2006-02-15 05:09:17'), +(3586,784,2,'2006-02-15 05:09:17'), +(3587,784,2,'2006-02-15 05:09:17'), +(3588,785,1,'2006-02-15 05:09:17'), +(3589,785,1,'2006-02-15 05:09:17'), +(3590,785,1,'2006-02-15 05:09:17'), +(3591,785,1,'2006-02-15 05:09:17'), +(3592,785,2,'2006-02-15 05:09:17'), +(3593,785,2,'2006-02-15 05:09:17'), +(3594,786,1,'2006-02-15 05:09:17'), +(3595,786,1,'2006-02-15 05:09:17'), +(3596,786,1,'2006-02-15 05:09:17'), +(3597,786,2,'2006-02-15 05:09:17'), +(3598,786,2,'2006-02-15 05:09:17'), +(3599,786,2,'2006-02-15 05:09:17'), +(3600,786,2,'2006-02-15 05:09:17'), +(3601,787,1,'2006-02-15 05:09:17'), +(3602,787,1,'2006-02-15 05:09:17'), +(3603,787,1,'2006-02-15 05:09:17'), +(3604,788,1,'2006-02-15 05:09:17'), +(3605,788,1,'2006-02-15 05:09:17'), +(3606,788,2,'2006-02-15 05:09:17'), +(3607,788,2,'2006-02-15 05:09:17'), +(3608,789,1,'2006-02-15 05:09:17'), +(3609,789,1,'2006-02-15 05:09:17'), +(3610,789,1,'2006-02-15 05:09:17'), +(3611,789,1,'2006-02-15 05:09:17'), +(3612,789,2,'2006-02-15 05:09:17'), +(3613,789,2,'2006-02-15 05:09:17'), +(3614,789,2,'2006-02-15 05:09:17'), +(3615,789,2,'2006-02-15 05:09:17'), +(3616,790,1,'2006-02-15 05:09:17'), +(3617,790,1,'2006-02-15 05:09:17'), +(3618,790,1,'2006-02-15 05:09:17'), +(3619,790,1,'2006-02-15 05:09:17'), +(3620,790,2,'2006-02-15 05:09:17'), +(3621,790,2,'2006-02-15 05:09:17'), +(3622,790,2,'2006-02-15 05:09:17'), +(3623,791,1,'2006-02-15 05:09:17'), +(3624,791,1,'2006-02-15 05:09:17'), +(3625,791,2,'2006-02-15 05:09:17'), +(3626,791,2,'2006-02-15 05:09:17'), +(3627,791,2,'2006-02-15 05:09:17'), +(3628,791,2,'2006-02-15 05:09:17'), +(3629,792,2,'2006-02-15 05:09:17'), +(3630,792,2,'2006-02-15 05:09:17'), +(3631,792,2,'2006-02-15 05:09:17'), +(3632,793,1,'2006-02-15 05:09:17'), +(3633,793,1,'2006-02-15 05:09:17'), +(3634,793,1,'2006-02-15 05:09:17'), +(3635,793,1,'2006-02-15 05:09:17'), +(3636,794,1,'2006-02-15 05:09:17'), +(3637,794,1,'2006-02-15 05:09:17'), +(3638,794,2,'2006-02-15 05:09:17'), +(3639,794,2,'2006-02-15 05:09:17'), +(3640,795,1,'2006-02-15 05:09:17'), +(3641,795,1,'2006-02-15 05:09:17'), +(3642,795,1,'2006-02-15 05:09:17'), +(3643,795,1,'2006-02-15 05:09:17'), +(3644,796,1,'2006-02-15 05:09:17'), +(3645,796,1,'2006-02-15 05:09:17'), +(3646,796,2,'2006-02-15 05:09:17'), +(3647,796,2,'2006-02-15 05:09:17'), +(3648,796,2,'2006-02-15 05:09:17'), +(3649,797,1,'2006-02-15 05:09:17'), +(3650,797,1,'2006-02-15 05:09:17'), +(3651,797,2,'2006-02-15 05:09:17'), +(3652,797,2,'2006-02-15 05:09:17'), +(3653,797,2,'2006-02-15 05:09:17'), +(3654,798,1,'2006-02-15 05:09:17'), +(3655,798,1,'2006-02-15 05:09:17'), +(3656,798,2,'2006-02-15 05:09:17'), +(3657,798,2,'2006-02-15 05:09:17'), +(3658,799,1,'2006-02-15 05:09:17'), +(3659,799,1,'2006-02-15 05:09:17'), +(3660,800,1,'2006-02-15 05:09:17'), +(3661,800,1,'2006-02-15 05:09:17'), +(3662,800,2,'2006-02-15 05:09:17'), +(3663,800,2,'2006-02-15 05:09:17'), +(3664,800,2,'2006-02-15 05:09:17'), +(3665,800,2,'2006-02-15 05:09:17'), +(3666,803,1,'2006-02-15 05:09:17'), +(3667,803,1,'2006-02-15 05:09:17'), +(3668,803,1,'2006-02-15 05:09:17'), +(3669,803,1,'2006-02-15 05:09:17'), +(3670,803,2,'2006-02-15 05:09:17'), +(3671,803,2,'2006-02-15 05:09:17'), +(3672,804,1,'2006-02-15 05:09:17'), +(3673,804,1,'2006-02-15 05:09:17'), +(3674,804,1,'2006-02-15 05:09:17'), +(3675,804,1,'2006-02-15 05:09:17'), +(3676,804,2,'2006-02-15 05:09:17'), +(3677,804,2,'2006-02-15 05:09:17'), +(3678,804,2,'2006-02-15 05:09:17'), +(3679,805,1,'2006-02-15 05:09:17'), +(3680,805,1,'2006-02-15 05:09:17'), +(3681,805,2,'2006-02-15 05:09:17'), +(3682,805,2,'2006-02-15 05:09:17'), +(3683,805,2,'2006-02-15 05:09:17'), +(3684,806,1,'2006-02-15 05:09:17'), +(3685,806,1,'2006-02-15 05:09:17'), +(3686,806,1,'2006-02-15 05:09:17'), +(3687,806,2,'2006-02-15 05:09:17'), +(3688,806,2,'2006-02-15 05:09:17'), +(3689,807,1,'2006-02-15 05:09:17'), +(3690,807,1,'2006-02-15 05:09:17'), +(3691,807,1,'2006-02-15 05:09:17'), +(3692,807,2,'2006-02-15 05:09:17'), +(3693,807,2,'2006-02-15 05:09:17'), +(3694,808,2,'2006-02-15 05:09:17'), +(3695,808,2,'2006-02-15 05:09:17'), +(3696,809,2,'2006-02-15 05:09:17'), +(3697,809,2,'2006-02-15 05:09:17'), +(3698,809,2,'2006-02-15 05:09:17'), +(3699,809,2,'2006-02-15 05:09:17'), +(3700,810,1,'2006-02-15 05:09:17'), +(3701,810,1,'2006-02-15 05:09:17'), +(3702,810,1,'2006-02-15 05:09:17'), +(3703,810,1,'2006-02-15 05:09:17'), +(3704,810,2,'2006-02-15 05:09:17'), +(3705,810,2,'2006-02-15 05:09:17'), +(3706,810,2,'2006-02-15 05:09:17'), +(3707,811,1,'2006-02-15 05:09:17'), +(3708,811,1,'2006-02-15 05:09:17'), +(3709,811,1,'2006-02-15 05:09:17'), +(3710,812,1,'2006-02-15 05:09:17'), +(3711,812,1,'2006-02-15 05:09:17'), +(3712,812,1,'2006-02-15 05:09:17'), +(3713,812,2,'2006-02-15 05:09:17'), +(3714,812,2,'2006-02-15 05:09:17'), +(3715,812,2,'2006-02-15 05:09:17'), +(3716,813,2,'2006-02-15 05:09:17'), +(3717,813,2,'2006-02-15 05:09:17'), +(3718,813,2,'2006-02-15 05:09:17'), +(3719,813,2,'2006-02-15 05:09:17'), +(3720,814,1,'2006-02-15 05:09:17'), +(3721,814,1,'2006-02-15 05:09:17'), +(3722,814,1,'2006-02-15 05:09:17'), +(3723,814,2,'2006-02-15 05:09:17'), +(3724,814,2,'2006-02-15 05:09:17'), +(3725,814,2,'2006-02-15 05:09:17'), +(3726,814,2,'2006-02-15 05:09:17'), +(3727,815,1,'2006-02-15 05:09:17'), +(3728,815,1,'2006-02-15 05:09:17'), +(3729,815,1,'2006-02-15 05:09:17'), +(3730,816,1,'2006-02-15 05:09:17'), +(3731,816,1,'2006-02-15 05:09:17'), +(3732,816,1,'2006-02-15 05:09:17'), +(3733,816,1,'2006-02-15 05:09:17'), +(3734,816,2,'2006-02-15 05:09:17'), +(3735,816,2,'2006-02-15 05:09:17'), +(3736,816,2,'2006-02-15 05:09:17'), +(3737,817,1,'2006-02-15 05:09:17'), +(3738,817,1,'2006-02-15 05:09:17'), +(3739,818,1,'2006-02-15 05:09:17'), +(3740,818,1,'2006-02-15 05:09:17'), +(3741,818,1,'2006-02-15 05:09:17'), +(3742,818,2,'2006-02-15 05:09:17'), +(3743,818,2,'2006-02-15 05:09:17'), +(3744,819,1,'2006-02-15 05:09:17'), +(3745,819,1,'2006-02-15 05:09:17'), +(3746,819,1,'2006-02-15 05:09:17'), +(3747,820,1,'2006-02-15 05:09:17'), +(3748,820,1,'2006-02-15 05:09:17'), +(3749,820,1,'2006-02-15 05:09:17'), +(3750,820,1,'2006-02-15 05:09:17'), +(3751,820,2,'2006-02-15 05:09:17'), +(3752,820,2,'2006-02-15 05:09:17'), +(3753,821,2,'2006-02-15 05:09:17'), +(3754,821,2,'2006-02-15 05:09:17'), +(3755,821,2,'2006-02-15 05:09:17'), +(3756,821,2,'2006-02-15 05:09:17'), +(3757,822,2,'2006-02-15 05:09:17'), +(3758,822,2,'2006-02-15 05:09:17'), +(3759,823,1,'2006-02-15 05:09:17'), +(3760,823,1,'2006-02-15 05:09:17'), +(3761,823,1,'2006-02-15 05:09:17'), +(3762,823,2,'2006-02-15 05:09:17'), +(3763,823,2,'2006-02-15 05:09:17'), +(3764,823,2,'2006-02-15 05:09:17'), +(3765,823,2,'2006-02-15 05:09:17'), +(3766,824,2,'2006-02-15 05:09:17'), +(3767,824,2,'2006-02-15 05:09:17'), +(3768,824,2,'2006-02-15 05:09:17'), +(3769,824,2,'2006-02-15 05:09:17'), +(3770,825,1,'2006-02-15 05:09:17'), +(3771,825,1,'2006-02-15 05:09:17'), +(3772,825,1,'2006-02-15 05:09:17'), +(3773,826,2,'2006-02-15 05:09:17'), +(3774,826,2,'2006-02-15 05:09:17'), +(3775,827,1,'2006-02-15 05:09:17'), +(3776,827,1,'2006-02-15 05:09:17'), +(3777,827,2,'2006-02-15 05:09:17'), +(3778,827,2,'2006-02-15 05:09:17'), +(3779,827,2,'2006-02-15 05:09:17'), +(3780,827,2,'2006-02-15 05:09:17'), +(3781,828,2,'2006-02-15 05:09:17'), +(3782,828,2,'2006-02-15 05:09:17'), +(3783,828,2,'2006-02-15 05:09:17'), +(3784,828,2,'2006-02-15 05:09:17'), +(3785,829,1,'2006-02-15 05:09:17'), +(3786,829,1,'2006-02-15 05:09:17'), +(3787,829,2,'2006-02-15 05:09:17'), +(3788,829,2,'2006-02-15 05:09:17'), +(3789,829,2,'2006-02-15 05:09:17'), +(3790,830,2,'2006-02-15 05:09:17'), +(3791,830,2,'2006-02-15 05:09:17'), +(3792,830,2,'2006-02-15 05:09:17'), +(3793,830,2,'2006-02-15 05:09:17'), +(3794,831,1,'2006-02-15 05:09:17'), +(3795,831,1,'2006-02-15 05:09:17'), +(3796,831,1,'2006-02-15 05:09:17'), +(3797,832,1,'2006-02-15 05:09:17'), +(3798,832,1,'2006-02-15 05:09:17'), +(3799,832,1,'2006-02-15 05:09:17'), +(3800,832,1,'2006-02-15 05:09:17'), +(3801,833,1,'2006-02-15 05:09:17'), +(3802,833,1,'2006-02-15 05:09:17'), +(3803,833,1,'2006-02-15 05:09:17'), +(3804,833,2,'2006-02-15 05:09:17'), +(3805,833,2,'2006-02-15 05:09:17'), +(3806,833,2,'2006-02-15 05:09:17'), +(3807,833,2,'2006-02-15 05:09:17'), +(3808,834,2,'2006-02-15 05:09:17'), +(3809,834,2,'2006-02-15 05:09:17'), +(3810,834,2,'2006-02-15 05:09:17'), +(3811,835,1,'2006-02-15 05:09:17'), +(3812,835,1,'2006-02-15 05:09:17'), +(3813,835,1,'2006-02-15 05:09:17'), +(3814,835,1,'2006-02-15 05:09:17'), +(3815,835,2,'2006-02-15 05:09:17'), +(3816,835,2,'2006-02-15 05:09:17'), +(3817,835,2,'2006-02-15 05:09:17'), +(3818,835,2,'2006-02-15 05:09:17'), +(3819,836,1,'2006-02-15 05:09:17'), +(3820,836,1,'2006-02-15 05:09:17'), +(3821,836,1,'2006-02-15 05:09:17'), +(3822,837,2,'2006-02-15 05:09:17'), +(3823,837,2,'2006-02-15 05:09:17'), +(3824,837,2,'2006-02-15 05:09:17'), +(3825,838,1,'2006-02-15 05:09:17'), +(3826,838,1,'2006-02-15 05:09:17'), +(3827,838,2,'2006-02-15 05:09:17'), +(3828,838,2,'2006-02-15 05:09:17'), +(3829,838,2,'2006-02-15 05:09:17'), +(3830,838,2,'2006-02-15 05:09:17'), +(3831,839,2,'2006-02-15 05:09:17'), +(3832,839,2,'2006-02-15 05:09:17'), +(3833,840,1,'2006-02-15 05:09:17'), +(3834,840,1,'2006-02-15 05:09:17'), +(3835,840,1,'2006-02-15 05:09:17'), +(3836,840,1,'2006-02-15 05:09:17'), +(3837,841,1,'2006-02-15 05:09:17'), +(3838,841,1,'2006-02-15 05:09:17'), +(3839,841,1,'2006-02-15 05:09:17'), +(3840,841,2,'2006-02-15 05:09:17'), +(3841,841,2,'2006-02-15 05:09:17'), +(3842,841,2,'2006-02-15 05:09:17'), +(3843,841,2,'2006-02-15 05:09:17'), +(3844,842,1,'2006-02-15 05:09:17'), +(3845,842,1,'2006-02-15 05:09:17'), +(3846,842,2,'2006-02-15 05:09:17'), +(3847,842,2,'2006-02-15 05:09:17'), +(3848,843,1,'2006-02-15 05:09:17'), +(3849,843,1,'2006-02-15 05:09:17'), +(3850,843,1,'2006-02-15 05:09:17'), +(3851,843,1,'2006-02-15 05:09:17'), +(3852,843,2,'2006-02-15 05:09:17'), +(3853,843,2,'2006-02-15 05:09:17'), +(3854,843,2,'2006-02-15 05:09:17'), +(3855,844,1,'2006-02-15 05:09:17'), +(3856,844,1,'2006-02-15 05:09:17'), +(3857,844,2,'2006-02-15 05:09:17'), +(3858,844,2,'2006-02-15 05:09:17'), +(3859,845,1,'2006-02-15 05:09:17'), +(3860,845,1,'2006-02-15 05:09:17'), +(3861,845,1,'2006-02-15 05:09:17'), +(3862,845,1,'2006-02-15 05:09:17'), +(3863,845,2,'2006-02-15 05:09:17'), +(3864,845,2,'2006-02-15 05:09:17'), +(3865,845,2,'2006-02-15 05:09:17'), +(3866,846,1,'2006-02-15 05:09:17'), +(3867,846,1,'2006-02-15 05:09:17'), +(3868,846,1,'2006-02-15 05:09:17'), +(3869,846,1,'2006-02-15 05:09:17'), +(3870,846,2,'2006-02-15 05:09:17'), +(3871,846,2,'2006-02-15 05:09:17'), +(3872,846,2,'2006-02-15 05:09:17'), +(3873,846,2,'2006-02-15 05:09:17'), +(3874,847,2,'2006-02-15 05:09:17'), +(3875,847,2,'2006-02-15 05:09:17'), +(3876,847,2,'2006-02-15 05:09:17'), +(3877,847,2,'2006-02-15 05:09:17'), +(3878,848,1,'2006-02-15 05:09:17'), +(3879,848,1,'2006-02-15 05:09:17'), +(3880,848,1,'2006-02-15 05:09:17'), +(3881,849,1,'2006-02-15 05:09:17'), +(3882,849,1,'2006-02-15 05:09:17'), +(3883,849,1,'2006-02-15 05:09:17'), +(3884,849,1,'2006-02-15 05:09:17'), +(3885,849,2,'2006-02-15 05:09:17'), +(3886,849,2,'2006-02-15 05:09:17'), +(3887,849,2,'2006-02-15 05:09:17'), +(3888,849,2,'2006-02-15 05:09:17'), +(3889,850,1,'2006-02-15 05:09:17'), +(3890,850,1,'2006-02-15 05:09:17'), +(3891,850,1,'2006-02-15 05:09:17'), +(3892,850,2,'2006-02-15 05:09:17'), +(3893,850,2,'2006-02-15 05:09:17'), +(3894,850,2,'2006-02-15 05:09:17'), +(3895,850,2,'2006-02-15 05:09:17'), +(3896,851,1,'2006-02-15 05:09:17'), +(3897,851,1,'2006-02-15 05:09:17'), +(3898,851,1,'2006-02-15 05:09:17'), +(3899,851,2,'2006-02-15 05:09:17'), +(3900,851,2,'2006-02-15 05:09:17'), +(3901,851,2,'2006-02-15 05:09:17'), +(3902,852,1,'2006-02-15 05:09:17'), +(3903,852,1,'2006-02-15 05:09:17'), +(3904,852,1,'2006-02-15 05:09:17'), +(3905,852,1,'2006-02-15 05:09:17'), +(3906,852,2,'2006-02-15 05:09:17'), +(3907,852,2,'2006-02-15 05:09:17'), +(3908,852,2,'2006-02-15 05:09:17'), +(3909,853,1,'2006-02-15 05:09:17'), +(3910,853,1,'2006-02-15 05:09:17'), +(3911,853,1,'2006-02-15 05:09:17'), +(3912,854,2,'2006-02-15 05:09:17'), +(3913,854,2,'2006-02-15 05:09:17'), +(3914,854,2,'2006-02-15 05:09:17'), +(3915,854,2,'2006-02-15 05:09:17'), +(3916,855,1,'2006-02-15 05:09:17'), +(3917,855,1,'2006-02-15 05:09:17'), +(3918,855,2,'2006-02-15 05:09:17'), +(3919,855,2,'2006-02-15 05:09:17'), +(3920,856,1,'2006-02-15 05:09:17'), +(3921,856,1,'2006-02-15 05:09:17'), +(3922,856,1,'2006-02-15 05:09:17'), +(3923,856,1,'2006-02-15 05:09:17'), +(3924,856,2,'2006-02-15 05:09:17'), +(3925,856,2,'2006-02-15 05:09:17'), +(3926,856,2,'2006-02-15 05:09:17'), +(3927,856,2,'2006-02-15 05:09:17'), +(3928,857,1,'2006-02-15 05:09:17'), +(3929,857,1,'2006-02-15 05:09:17'), +(3930,857,1,'2006-02-15 05:09:17'), +(3931,857,2,'2006-02-15 05:09:17'), +(3932,857,2,'2006-02-15 05:09:17'), +(3933,857,2,'2006-02-15 05:09:17'), +(3934,857,2,'2006-02-15 05:09:17'), +(3935,858,2,'2006-02-15 05:09:17'), +(3936,858,2,'2006-02-15 05:09:17'), +(3937,858,2,'2006-02-15 05:09:17'), +(3938,858,2,'2006-02-15 05:09:17'), +(3939,859,1,'2006-02-15 05:09:17'), +(3940,859,1,'2006-02-15 05:09:17'), +(3941,859,1,'2006-02-15 05:09:17'), +(3942,859,2,'2006-02-15 05:09:17'), +(3943,859,2,'2006-02-15 05:09:17'), +(3944,859,2,'2006-02-15 05:09:17'), +(3945,861,1,'2006-02-15 05:09:17'), +(3946,861,1,'2006-02-15 05:09:17'), +(3947,861,1,'2006-02-15 05:09:17'), +(3948,861,2,'2006-02-15 05:09:17'), +(3949,861,2,'2006-02-15 05:09:17'), +(3950,861,2,'2006-02-15 05:09:17'), +(3951,862,1,'2006-02-15 05:09:17'), +(3952,862,1,'2006-02-15 05:09:17'), +(3953,862,1,'2006-02-15 05:09:17'), +(3954,862,2,'2006-02-15 05:09:17'), +(3955,862,2,'2006-02-15 05:09:17'), +(3956,863,1,'2006-02-15 05:09:17'), +(3957,863,1,'2006-02-15 05:09:17'), +(3958,863,1,'2006-02-15 05:09:17'), +(3959,863,1,'2006-02-15 05:09:17'), +(3960,863,2,'2006-02-15 05:09:17'), +(3961,863,2,'2006-02-15 05:09:17'), +(3962,863,2,'2006-02-15 05:09:17'), +(3963,864,1,'2006-02-15 05:09:17'), +(3964,864,1,'2006-02-15 05:09:17'), +(3965,864,1,'2006-02-15 05:09:17'), +(3966,864,1,'2006-02-15 05:09:17'), +(3967,864,2,'2006-02-15 05:09:17'), +(3968,864,2,'2006-02-15 05:09:17'), +(3969,865,1,'2006-02-15 05:09:17'), +(3970,865,1,'2006-02-15 05:09:17'), +(3971,865,1,'2006-02-15 05:09:17'), +(3972,865,1,'2006-02-15 05:09:17'), +(3973,865,2,'2006-02-15 05:09:17'), +(3974,865,2,'2006-02-15 05:09:17'), +(3975,866,2,'2006-02-15 05:09:17'), +(3976,866,2,'2006-02-15 05:09:17'), +(3977,867,1,'2006-02-15 05:09:17'), +(3978,867,1,'2006-02-15 05:09:17'), +(3979,867,1,'2006-02-15 05:09:17'), +(3980,867,1,'2006-02-15 05:09:17'), +(3981,868,1,'2006-02-15 05:09:17'), +(3982,868,1,'2006-02-15 05:09:17'), +(3983,868,1,'2006-02-15 05:09:17'), +(3984,869,1,'2006-02-15 05:09:17'), +(3985,869,1,'2006-02-15 05:09:17'), +(3986,869,1,'2006-02-15 05:09:17'), +(3987,869,1,'2006-02-15 05:09:17'), +(3988,869,2,'2006-02-15 05:09:17'), +(3989,869,2,'2006-02-15 05:09:17'), +(3990,869,2,'2006-02-15 05:09:17'), +(3991,870,1,'2006-02-15 05:09:17'), +(3992,870,1,'2006-02-15 05:09:17'), +(3993,870,1,'2006-02-15 05:09:17'), +(3994,870,1,'2006-02-15 05:09:17'), +(3995,870,2,'2006-02-15 05:09:17'), +(3996,870,2,'2006-02-15 05:09:17'), +(3997,870,2,'2006-02-15 05:09:17'), +(3998,870,2,'2006-02-15 05:09:17'), +(3999,871,1,'2006-02-15 05:09:17'), +(4000,871,1,'2006-02-15 05:09:17'), +(4001,871,2,'2006-02-15 05:09:17'), +(4002,871,2,'2006-02-15 05:09:17'), +(4003,871,2,'2006-02-15 05:09:17'), +(4004,872,2,'2006-02-15 05:09:17'), +(4005,872,2,'2006-02-15 05:09:17'), +(4006,872,2,'2006-02-15 05:09:17'), +(4007,873,1,'2006-02-15 05:09:17'), +(4008,873,1,'2006-02-15 05:09:17'), +(4009,873,1,'2006-02-15 05:09:17'), +(4010,873,1,'2006-02-15 05:09:17'), +(4011,873,2,'2006-02-15 05:09:17'), +(4012,873,2,'2006-02-15 05:09:17'), +(4013,873,2,'2006-02-15 05:09:17'), +(4014,873,2,'2006-02-15 05:09:17'), +(4015,875,1,'2006-02-15 05:09:17'), +(4016,875,1,'2006-02-15 05:09:17'), +(4017,875,1,'2006-02-15 05:09:17'), +(4018,875,2,'2006-02-15 05:09:17'), +(4019,875,2,'2006-02-15 05:09:17'), +(4020,875,2,'2006-02-15 05:09:17'), +(4021,875,2,'2006-02-15 05:09:17'), +(4022,876,1,'2006-02-15 05:09:17'), +(4023,876,1,'2006-02-15 05:09:17'), +(4024,877,1,'2006-02-15 05:09:17'), +(4025,877,1,'2006-02-15 05:09:17'), +(4026,877,1,'2006-02-15 05:09:17'), +(4027,877,2,'2006-02-15 05:09:17'), +(4028,877,2,'2006-02-15 05:09:17'), +(4029,878,2,'2006-02-15 05:09:17'), +(4030,878,2,'2006-02-15 05:09:17'), +(4031,878,2,'2006-02-15 05:09:17'), +(4032,878,2,'2006-02-15 05:09:17'), +(4033,879,1,'2006-02-15 05:09:17'), +(4034,879,1,'2006-02-15 05:09:17'), +(4035,879,1,'2006-02-15 05:09:17'), +(4036,879,1,'2006-02-15 05:09:17'), +(4037,879,2,'2006-02-15 05:09:17'), +(4038,879,2,'2006-02-15 05:09:17'), +(4039,879,2,'2006-02-15 05:09:17'), +(4040,880,1,'2006-02-15 05:09:17'), +(4041,880,1,'2006-02-15 05:09:17'), +(4042,880,1,'2006-02-15 05:09:17'), +(4043,880,1,'2006-02-15 05:09:17'), +(4044,880,2,'2006-02-15 05:09:17'), +(4045,880,2,'2006-02-15 05:09:17'), +(4046,880,2,'2006-02-15 05:09:17'), +(4047,880,2,'2006-02-15 05:09:17'), +(4048,881,2,'2006-02-15 05:09:17'), +(4049,881,2,'2006-02-15 05:09:17'), +(4050,881,2,'2006-02-15 05:09:17'), +(4051,881,2,'2006-02-15 05:09:17'), +(4052,882,1,'2006-02-15 05:09:17'), +(4053,882,1,'2006-02-15 05:09:17'), +(4054,882,1,'2006-02-15 05:09:17'), +(4055,882,1,'2006-02-15 05:09:17'), +(4056,883,2,'2006-02-15 05:09:17'), +(4057,883,2,'2006-02-15 05:09:17'), +(4058,884,2,'2006-02-15 05:09:17'), +(4059,884,2,'2006-02-15 05:09:17'), +(4060,884,2,'2006-02-15 05:09:17'), +(4061,885,1,'2006-02-15 05:09:17'), +(4062,885,1,'2006-02-15 05:09:17'), +(4063,886,1,'2006-02-15 05:09:17'), +(4064,886,1,'2006-02-15 05:09:17'), +(4065,886,1,'2006-02-15 05:09:17'), +(4066,886,1,'2006-02-15 05:09:17'), +(4067,887,1,'2006-02-15 05:09:17'), +(4068,887,1,'2006-02-15 05:09:17'), +(4069,887,1,'2006-02-15 05:09:17'), +(4070,887,1,'2006-02-15 05:09:17'), +(4071,887,2,'2006-02-15 05:09:17'), +(4072,887,2,'2006-02-15 05:09:17'), +(4073,888,1,'2006-02-15 05:09:17'), +(4074,888,1,'2006-02-15 05:09:17'), +(4075,888,1,'2006-02-15 05:09:17'), +(4076,888,1,'2006-02-15 05:09:17'), +(4077,889,1,'2006-02-15 05:09:17'), +(4078,889,1,'2006-02-15 05:09:17'), +(4079,889,1,'2006-02-15 05:09:17'), +(4080,890,1,'2006-02-15 05:09:17'), +(4081,890,1,'2006-02-15 05:09:17'), +(4082,890,1,'2006-02-15 05:09:17'), +(4083,890,2,'2006-02-15 05:09:17'), +(4084,890,2,'2006-02-15 05:09:17'), +(4085,890,2,'2006-02-15 05:09:17'), +(4086,890,2,'2006-02-15 05:09:17'), +(4087,891,1,'2006-02-15 05:09:17'), +(4088,891,1,'2006-02-15 05:09:17'), +(4089,891,1,'2006-02-15 05:09:17'), +(4090,891,2,'2006-02-15 05:09:17'), +(4091,891,2,'2006-02-15 05:09:17'), +(4092,891,2,'2006-02-15 05:09:17'), +(4093,891,2,'2006-02-15 05:09:17'), +(4094,892,1,'2006-02-15 05:09:17'), +(4095,892,1,'2006-02-15 05:09:17'), +(4096,892,1,'2006-02-15 05:09:17'), +(4097,892,2,'2006-02-15 05:09:17'), +(4098,892,2,'2006-02-15 05:09:17'), +(4099,892,2,'2006-02-15 05:09:17'), +(4100,892,2,'2006-02-15 05:09:17'), +(4101,893,1,'2006-02-15 05:09:17'), +(4102,893,1,'2006-02-15 05:09:17'), +(4103,893,1,'2006-02-15 05:09:17'), +(4104,893,1,'2006-02-15 05:09:17'), +(4105,893,2,'2006-02-15 05:09:17'), +(4106,893,2,'2006-02-15 05:09:17'), +(4107,893,2,'2006-02-15 05:09:17'), +(4108,893,2,'2006-02-15 05:09:17'), +(4109,894,1,'2006-02-15 05:09:17'), +(4110,894,1,'2006-02-15 05:09:17'), +(4111,894,1,'2006-02-15 05:09:17'), +(4112,894,2,'2006-02-15 05:09:17'), +(4113,894,2,'2006-02-15 05:09:17'), +(4114,895,1,'2006-02-15 05:09:17'), +(4115,895,1,'2006-02-15 05:09:17'), +(4116,895,1,'2006-02-15 05:09:17'), +(4117,895,1,'2006-02-15 05:09:17'), +(4118,895,2,'2006-02-15 05:09:17'), +(4119,895,2,'2006-02-15 05:09:17'), +(4120,895,2,'2006-02-15 05:09:17'), +(4121,896,1,'2006-02-15 05:09:17'), +(4122,896,1,'2006-02-15 05:09:17'), +(4123,896,2,'2006-02-15 05:09:17'), +(4124,896,2,'2006-02-15 05:09:17'), +(4125,897,1,'2006-02-15 05:09:17'), +(4126,897,1,'2006-02-15 05:09:17'), +(4127,897,1,'2006-02-15 05:09:17'), +(4128,897,1,'2006-02-15 05:09:17'), +(4129,897,2,'2006-02-15 05:09:17'), +(4130,897,2,'2006-02-15 05:09:17'), +(4131,897,2,'2006-02-15 05:09:17'), +(4132,897,2,'2006-02-15 05:09:17'), +(4133,898,1,'2006-02-15 05:09:17'), +(4134,898,1,'2006-02-15 05:09:17'), +(4135,898,1,'2006-02-15 05:09:17'), +(4136,898,2,'2006-02-15 05:09:17'), +(4137,898,2,'2006-02-15 05:09:17'), +(4138,899,1,'2006-02-15 05:09:17'), +(4139,899,1,'2006-02-15 05:09:17'), +(4140,899,1,'2006-02-15 05:09:17'), +(4141,900,1,'2006-02-15 05:09:17'), +(4142,900,1,'2006-02-15 05:09:17'), +(4143,900,2,'2006-02-15 05:09:17'), +(4144,900,2,'2006-02-15 05:09:17'), +(4145,901,1,'2006-02-15 05:09:17'), +(4146,901,1,'2006-02-15 05:09:17'), +(4147,901,1,'2006-02-15 05:09:17'), +(4148,901,1,'2006-02-15 05:09:17'), +(4149,901,2,'2006-02-15 05:09:17'), +(4150,901,2,'2006-02-15 05:09:17'), +(4151,901,2,'2006-02-15 05:09:17'), +(4152,902,1,'2006-02-15 05:09:17'), +(4153,902,1,'2006-02-15 05:09:17'), +(4154,902,1,'2006-02-15 05:09:17'), +(4155,902,1,'2006-02-15 05:09:17'), +(4156,902,2,'2006-02-15 05:09:17'), +(4157,902,2,'2006-02-15 05:09:17'), +(4158,902,2,'2006-02-15 05:09:17'), +(4159,903,2,'2006-02-15 05:09:17'), +(4160,903,2,'2006-02-15 05:09:17'), +(4161,904,1,'2006-02-15 05:09:17'), +(4162,904,1,'2006-02-15 05:09:17'), +(4163,905,1,'2006-02-15 05:09:17'), +(4164,905,1,'2006-02-15 05:09:17'), +(4165,905,1,'2006-02-15 05:09:17'), +(4166,906,1,'2006-02-15 05:09:17'), +(4167,906,1,'2006-02-15 05:09:17'), +(4168,906,2,'2006-02-15 05:09:17'), +(4169,906,2,'2006-02-15 05:09:17'), +(4170,906,2,'2006-02-15 05:09:17'), +(4171,907,1,'2006-02-15 05:09:17'), +(4172,907,1,'2006-02-15 05:09:17'), +(4173,907,1,'2006-02-15 05:09:17'), +(4174,907,1,'2006-02-15 05:09:17'), +(4175,908,1,'2006-02-15 05:09:17'), +(4176,908,1,'2006-02-15 05:09:17'), +(4177,908,2,'2006-02-15 05:09:17'), +(4178,908,2,'2006-02-15 05:09:17'), +(4179,910,2,'2006-02-15 05:09:17'), +(4180,910,2,'2006-02-15 05:09:17'), +(4181,911,1,'2006-02-15 05:09:17'), +(4182,911,1,'2006-02-15 05:09:17'), +(4183,911,1,'2006-02-15 05:09:17'), +(4184,911,1,'2006-02-15 05:09:17'), +(4185,911,2,'2006-02-15 05:09:17'), +(4186,911,2,'2006-02-15 05:09:17'), +(4187,911,2,'2006-02-15 05:09:17'), +(4188,911,2,'2006-02-15 05:09:17'), +(4189,912,1,'2006-02-15 05:09:17'), +(4190,912,1,'2006-02-15 05:09:17'), +(4191,912,1,'2006-02-15 05:09:17'), +(4192,912,2,'2006-02-15 05:09:17'), +(4193,912,2,'2006-02-15 05:09:17'), +(4194,912,2,'2006-02-15 05:09:17'), +(4195,913,1,'2006-02-15 05:09:17'), +(4196,913,1,'2006-02-15 05:09:17'), +(4197,913,1,'2006-02-15 05:09:17'), +(4198,913,1,'2006-02-15 05:09:17'), +(4199,913,2,'2006-02-15 05:09:17'), +(4200,913,2,'2006-02-15 05:09:17'), +(4201,914,1,'2006-02-15 05:09:17'), +(4202,914,1,'2006-02-15 05:09:17'), +(4203,914,2,'2006-02-15 05:09:17'), +(4204,914,2,'2006-02-15 05:09:17'), +(4205,914,2,'2006-02-15 05:09:17'), +(4206,914,2,'2006-02-15 05:09:17'), +(4207,915,1,'2006-02-15 05:09:17'), +(4208,915,1,'2006-02-15 05:09:17'), +(4209,915,1,'2006-02-15 05:09:17'), +(4210,915,1,'2006-02-15 05:09:17'), +(4211,915,2,'2006-02-15 05:09:17'), +(4212,915,2,'2006-02-15 05:09:17'), +(4213,916,1,'2006-02-15 05:09:17'), +(4214,916,1,'2006-02-15 05:09:17'), +(4215,916,2,'2006-02-15 05:09:17'), +(4216,916,2,'2006-02-15 05:09:17'), +(4217,917,1,'2006-02-15 05:09:17'), +(4218,917,1,'2006-02-15 05:09:17'), +(4219,917,1,'2006-02-15 05:09:17'), +(4220,917,2,'2006-02-15 05:09:17'), +(4221,917,2,'2006-02-15 05:09:17'), +(4222,918,2,'2006-02-15 05:09:17'), +(4223,918,2,'2006-02-15 05:09:17'), +(4224,918,2,'2006-02-15 05:09:17'), +(4225,918,2,'2006-02-15 05:09:17'), +(4226,919,1,'2006-02-15 05:09:17'), +(4227,919,1,'2006-02-15 05:09:17'), +(4228,919,1,'2006-02-15 05:09:17'), +(4229,919,1,'2006-02-15 05:09:17'), +(4230,920,1,'2006-02-15 05:09:17'), +(4231,920,1,'2006-02-15 05:09:17'), +(4232,920,1,'2006-02-15 05:09:17'), +(4233,920,2,'2006-02-15 05:09:17'), +(4234,920,2,'2006-02-15 05:09:17'), +(4235,921,1,'2006-02-15 05:09:17'), +(4236,921,1,'2006-02-15 05:09:17'), +(4237,921,2,'2006-02-15 05:09:17'), +(4238,921,2,'2006-02-15 05:09:17'), +(4239,922,1,'2006-02-15 05:09:17'), +(4240,922,1,'2006-02-15 05:09:17'), +(4241,922,1,'2006-02-15 05:09:17'), +(4242,922,2,'2006-02-15 05:09:17'), +(4243,922,2,'2006-02-15 05:09:17'), +(4244,922,2,'2006-02-15 05:09:17'), +(4245,922,2,'2006-02-15 05:09:17'), +(4246,923,2,'2006-02-15 05:09:17'), +(4247,923,2,'2006-02-15 05:09:17'), +(4248,923,2,'2006-02-15 05:09:17'), +(4249,924,1,'2006-02-15 05:09:17'), +(4250,924,1,'2006-02-15 05:09:17'), +(4251,924,2,'2006-02-15 05:09:17'), +(4252,924,2,'2006-02-15 05:09:17'), +(4253,924,2,'2006-02-15 05:09:17'), +(4254,925,1,'2006-02-15 05:09:17'), +(4255,925,1,'2006-02-15 05:09:17'), +(4256,925,1,'2006-02-15 05:09:17'), +(4257,925,2,'2006-02-15 05:09:17'), +(4258,925,2,'2006-02-15 05:09:17'), +(4259,926,2,'2006-02-15 05:09:17'), +(4260,926,2,'2006-02-15 05:09:17'), +(4261,927,1,'2006-02-15 05:09:17'), +(4262,927,1,'2006-02-15 05:09:17'), +(4263,927,1,'2006-02-15 05:09:17'), +(4264,927,1,'2006-02-15 05:09:17'), +(4265,928,1,'2006-02-15 05:09:17'), +(4266,928,1,'2006-02-15 05:09:17'), +(4267,928,1,'2006-02-15 05:09:17'), +(4268,929,1,'2006-02-15 05:09:17'), +(4269,929,1,'2006-02-15 05:09:17'), +(4270,929,1,'2006-02-15 05:09:17'), +(4271,929,1,'2006-02-15 05:09:17'), +(4272,930,1,'2006-02-15 05:09:17'), +(4273,930,1,'2006-02-15 05:09:17'), +(4274,930,1,'2006-02-15 05:09:17'), +(4275,930,2,'2006-02-15 05:09:17'), +(4276,930,2,'2006-02-15 05:09:17'), +(4277,930,2,'2006-02-15 05:09:17'), +(4278,931,2,'2006-02-15 05:09:17'), +(4279,931,2,'2006-02-15 05:09:17'), +(4280,931,2,'2006-02-15 05:09:17'), +(4281,932,1,'2006-02-15 05:09:17'), +(4282,932,1,'2006-02-15 05:09:17'), +(4283,932,2,'2006-02-15 05:09:17'), +(4284,932,2,'2006-02-15 05:09:17'), +(4285,933,1,'2006-02-15 05:09:17'), +(4286,933,1,'2006-02-15 05:09:17'), +(4287,933,1,'2006-02-15 05:09:17'), +(4288,934,2,'2006-02-15 05:09:17'), +(4289,934,2,'2006-02-15 05:09:17'), +(4290,934,2,'2006-02-15 05:09:17'), +(4291,935,2,'2006-02-15 05:09:17'), +(4292,935,2,'2006-02-15 05:09:17'), +(4293,936,1,'2006-02-15 05:09:17'), +(4294,936,1,'2006-02-15 05:09:17'), +(4295,936,2,'2006-02-15 05:09:17'), +(4296,936,2,'2006-02-15 05:09:17'), +(4297,936,2,'2006-02-15 05:09:17'), +(4298,936,2,'2006-02-15 05:09:17'), +(4299,937,1,'2006-02-15 05:09:17'), +(4300,937,1,'2006-02-15 05:09:17'), +(4301,937,2,'2006-02-15 05:09:17'), +(4302,937,2,'2006-02-15 05:09:17'), +(4303,937,2,'2006-02-15 05:09:17'), +(4304,938,1,'2006-02-15 05:09:17'), +(4305,938,1,'2006-02-15 05:09:17'), +(4306,938,1,'2006-02-15 05:09:17'), +(4307,938,1,'2006-02-15 05:09:17'), +(4308,938,2,'2006-02-15 05:09:17'), +(4309,938,2,'2006-02-15 05:09:17'), +(4310,939,2,'2006-02-15 05:09:17'), +(4311,939,2,'2006-02-15 05:09:17'), +(4312,939,2,'2006-02-15 05:09:17'), +(4313,939,2,'2006-02-15 05:09:17'), +(4314,940,1,'2006-02-15 05:09:17'), +(4315,940,1,'2006-02-15 05:09:17'), +(4316,940,1,'2006-02-15 05:09:17'), +(4317,941,1,'2006-02-15 05:09:17'), +(4318,941,1,'2006-02-15 05:09:17'), +(4319,941,1,'2006-02-15 05:09:17'), +(4320,941,1,'2006-02-15 05:09:17'), +(4321,941,2,'2006-02-15 05:09:17'), +(4322,941,2,'2006-02-15 05:09:17'), +(4323,941,2,'2006-02-15 05:09:17'), +(4324,942,1,'2006-02-15 05:09:17'), +(4325,942,1,'2006-02-15 05:09:17'), +(4326,942,2,'2006-02-15 05:09:17'), +(4327,942,2,'2006-02-15 05:09:17'), +(4328,944,1,'2006-02-15 05:09:17'), +(4329,944,1,'2006-02-15 05:09:17'), +(4330,944,2,'2006-02-15 05:09:17'), +(4331,944,2,'2006-02-15 05:09:17'), +(4332,944,2,'2006-02-15 05:09:17'), +(4333,945,1,'2006-02-15 05:09:17'), +(4334,945,1,'2006-02-15 05:09:17'), +(4335,945,1,'2006-02-15 05:09:17'), +(4336,945,1,'2006-02-15 05:09:17'), +(4337,945,2,'2006-02-15 05:09:17'), +(4338,945,2,'2006-02-15 05:09:17'), +(4339,945,2,'2006-02-15 05:09:17'), +(4340,945,2,'2006-02-15 05:09:17'), +(4341,946,2,'2006-02-15 05:09:17'), +(4342,946,2,'2006-02-15 05:09:17'), +(4343,946,2,'2006-02-15 05:09:17'), +(4344,946,2,'2006-02-15 05:09:17'), +(4345,947,1,'2006-02-15 05:09:17'), +(4346,947,1,'2006-02-15 05:09:17'), +(4347,948,1,'2006-02-15 05:09:17'), +(4348,948,1,'2006-02-15 05:09:17'), +(4349,948,2,'2006-02-15 05:09:17'), +(4350,948,2,'2006-02-15 05:09:17'), +(4351,948,2,'2006-02-15 05:09:17'), +(4352,948,2,'2006-02-15 05:09:17'), +(4353,949,1,'2006-02-15 05:09:17'), +(4354,949,1,'2006-02-15 05:09:17'), +(4355,949,1,'2006-02-15 05:09:17'), +(4356,949,1,'2006-02-15 05:09:17'), +(4357,949,2,'2006-02-15 05:09:17'), +(4358,949,2,'2006-02-15 05:09:17'), +(4359,951,1,'2006-02-15 05:09:17'), +(4360,951,1,'2006-02-15 05:09:17'), +(4361,951,1,'2006-02-15 05:09:17'), +(4362,951,2,'2006-02-15 05:09:17'), +(4363,951,2,'2006-02-15 05:09:17'), +(4364,951,2,'2006-02-15 05:09:17'), +(4365,951,2,'2006-02-15 05:09:17'), +(4366,952,1,'2006-02-15 05:09:17'), +(4367,952,1,'2006-02-15 05:09:17'), +(4368,952,1,'2006-02-15 05:09:17'), +(4369,953,1,'2006-02-15 05:09:17'), +(4370,953,1,'2006-02-15 05:09:17'), +(4371,953,1,'2006-02-15 05:09:17'), +(4372,953,1,'2006-02-15 05:09:17'), +(4373,953,2,'2006-02-15 05:09:17'), +(4374,953,2,'2006-02-15 05:09:17'), +(4375,956,1,'2006-02-15 05:09:17'), +(4376,956,1,'2006-02-15 05:09:17'), +(4377,956,1,'2006-02-15 05:09:17'), +(4378,956,1,'2006-02-15 05:09:17'), +(4379,957,1,'2006-02-15 05:09:17'), +(4380,957,1,'2006-02-15 05:09:17'), +(4381,957,1,'2006-02-15 05:09:17'), +(4382,957,2,'2006-02-15 05:09:17'), +(4383,957,2,'2006-02-15 05:09:17'), +(4384,958,1,'2006-02-15 05:09:17'), +(4385,958,1,'2006-02-15 05:09:17'), +(4386,958,1,'2006-02-15 05:09:17'), +(4387,958,2,'2006-02-15 05:09:17'), +(4388,958,2,'2006-02-15 05:09:17'), +(4389,958,2,'2006-02-15 05:09:17'), +(4390,959,1,'2006-02-15 05:09:17'), +(4391,959,1,'2006-02-15 05:09:17'), +(4392,960,2,'2006-02-15 05:09:17'), +(4393,960,2,'2006-02-15 05:09:17'), +(4394,960,2,'2006-02-15 05:09:17'), +(4395,961,1,'2006-02-15 05:09:17'), +(4396,961,1,'2006-02-15 05:09:17'), +(4397,961,1,'2006-02-15 05:09:17'), +(4398,961,2,'2006-02-15 05:09:17'), +(4399,961,2,'2006-02-15 05:09:17'), +(4400,962,1,'2006-02-15 05:09:17'), +(4401,962,1,'2006-02-15 05:09:17'), +(4402,962,1,'2006-02-15 05:09:17'), +(4403,962,1,'2006-02-15 05:09:17'), +(4404,963,1,'2006-02-15 05:09:17'), +(4405,963,1,'2006-02-15 05:09:17'), +(4406,963,2,'2006-02-15 05:09:17'), +(4407,963,2,'2006-02-15 05:09:17'), +(4408,963,2,'2006-02-15 05:09:17'), +(4409,964,1,'2006-02-15 05:09:17'), +(4410,964,1,'2006-02-15 05:09:17'), +(4411,964,1,'2006-02-15 05:09:17'), +(4412,964,2,'2006-02-15 05:09:17'), +(4413,964,2,'2006-02-15 05:09:17'), +(4414,965,1,'2006-02-15 05:09:17'), +(4415,965,1,'2006-02-15 05:09:17'), +(4416,966,1,'2006-02-15 05:09:17'), +(4417,966,1,'2006-02-15 05:09:17'), +(4418,966,2,'2006-02-15 05:09:17'), +(4419,966,2,'2006-02-15 05:09:17'), +(4420,966,2,'2006-02-15 05:09:17'), +(4421,966,2,'2006-02-15 05:09:17'), +(4422,967,1,'2006-02-15 05:09:17'), +(4423,967,1,'2006-02-15 05:09:17'), +(4424,967,1,'2006-02-15 05:09:17'), +(4425,967,2,'2006-02-15 05:09:17'), +(4426,967,2,'2006-02-15 05:09:17'), +(4427,968,1,'2006-02-15 05:09:17'), +(4428,968,1,'2006-02-15 05:09:17'), +(4429,968,1,'2006-02-15 05:09:17'), +(4430,969,1,'2006-02-15 05:09:17'), +(4431,969,1,'2006-02-15 05:09:17'), +(4432,969,1,'2006-02-15 05:09:17'), +(4433,969,1,'2006-02-15 05:09:17'), +(4434,970,1,'2006-02-15 05:09:17'), +(4435,970,1,'2006-02-15 05:09:17'), +(4436,970,1,'2006-02-15 05:09:17'), +(4437,970,2,'2006-02-15 05:09:17'), +(4438,970,2,'2006-02-15 05:09:17'), +(4439,970,2,'2006-02-15 05:09:17'), +(4440,970,2,'2006-02-15 05:09:17'), +(4441,971,1,'2006-02-15 05:09:17'), +(4442,971,1,'2006-02-15 05:09:17'), +(4443,971,1,'2006-02-15 05:09:17'), +(4444,971,1,'2006-02-15 05:09:17'), +(4445,972,1,'2006-02-15 05:09:17'), +(4446,972,1,'2006-02-15 05:09:17'), +(4447,972,1,'2006-02-15 05:09:17'), +(4448,972,2,'2006-02-15 05:09:17'), +(4449,972,2,'2006-02-15 05:09:17'), +(4450,972,2,'2006-02-15 05:09:17'), +(4451,973,1,'2006-02-15 05:09:17'), +(4452,973,1,'2006-02-15 05:09:17'), +(4453,973,1,'2006-02-15 05:09:17'), +(4454,973,1,'2006-02-15 05:09:17'), +(4455,973,2,'2006-02-15 05:09:17'), +(4456,973,2,'2006-02-15 05:09:17'), +(4457,973,2,'2006-02-15 05:09:17'), +(4458,973,2,'2006-02-15 05:09:17'), +(4459,974,1,'2006-02-15 05:09:17'), +(4460,974,1,'2006-02-15 05:09:17'), +(4461,975,1,'2006-02-15 05:09:17'), +(4462,975,1,'2006-02-15 05:09:17'), +(4463,975,2,'2006-02-15 05:09:17'), +(4464,975,2,'2006-02-15 05:09:17'), +(4465,975,2,'2006-02-15 05:09:17'), +(4466,976,1,'2006-02-15 05:09:17'), +(4467,976,1,'2006-02-15 05:09:17'), +(4468,976,2,'2006-02-15 05:09:17'), +(4469,976,2,'2006-02-15 05:09:17'), +(4470,976,2,'2006-02-15 05:09:17'), +(4471,976,2,'2006-02-15 05:09:17'), +(4472,977,2,'2006-02-15 05:09:17'), +(4473,977,2,'2006-02-15 05:09:17'), +(4474,977,2,'2006-02-15 05:09:17'), +(4475,978,1,'2006-02-15 05:09:17'), +(4476,978,1,'2006-02-15 05:09:17'), +(4477,978,1,'2006-02-15 05:09:17'), +(4478,979,1,'2006-02-15 05:09:17'), +(4479,979,1,'2006-02-15 05:09:17'), +(4480,979,1,'2006-02-15 05:09:17'), +(4481,979,1,'2006-02-15 05:09:17'), +(4482,979,2,'2006-02-15 05:09:17'), +(4483,979,2,'2006-02-15 05:09:17'), +(4484,979,2,'2006-02-15 05:09:17'), +(4485,980,1,'2006-02-15 05:09:17'), +(4486,980,1,'2006-02-15 05:09:17'), +(4487,980,1,'2006-02-15 05:09:17'), +(4488,980,2,'2006-02-15 05:09:17'), +(4489,980,2,'2006-02-15 05:09:17'), +(4490,981,1,'2006-02-15 05:09:17'), +(4491,981,1,'2006-02-15 05:09:17'), +(4492,981,1,'2006-02-15 05:09:17'), +(4493,981,2,'2006-02-15 05:09:17'), +(4494,981,2,'2006-02-15 05:09:17'), +(4495,981,2,'2006-02-15 05:09:17'), +(4496,982,1,'2006-02-15 05:09:17'), +(4497,982,1,'2006-02-15 05:09:17'), +(4498,982,1,'2006-02-15 05:09:17'), +(4499,982,2,'2006-02-15 05:09:17'), +(4500,982,2,'2006-02-15 05:09:17'), +(4501,982,2,'2006-02-15 05:09:17'), +(4502,982,2,'2006-02-15 05:09:17'), +(4503,983,1,'2006-02-15 05:09:17'), +(4504,983,1,'2006-02-15 05:09:17'), +(4505,983,1,'2006-02-15 05:09:17'), +(4506,984,1,'2006-02-15 05:09:17'), +(4507,984,1,'2006-02-15 05:09:17'), +(4508,985,1,'2006-02-15 05:09:17'), +(4509,985,1,'2006-02-15 05:09:17'), +(4510,985,1,'2006-02-15 05:09:17'), +(4511,985,1,'2006-02-15 05:09:17'), +(4512,985,2,'2006-02-15 05:09:17'), +(4513,985,2,'2006-02-15 05:09:17'), +(4514,985,2,'2006-02-15 05:09:17'), +(4515,986,1,'2006-02-15 05:09:17'), +(4516,986,1,'2006-02-15 05:09:17'), +(4517,986,1,'2006-02-15 05:09:17'), +(4518,986,1,'2006-02-15 05:09:17'), +(4519,986,2,'2006-02-15 05:09:17'), +(4520,986,2,'2006-02-15 05:09:17'), +(4521,987,1,'2006-02-15 05:09:17'), +(4522,987,1,'2006-02-15 05:09:17'), +(4523,987,2,'2006-02-15 05:09:17'), +(4524,987,2,'2006-02-15 05:09:17'), +(4525,988,1,'2006-02-15 05:09:17'), +(4526,988,1,'2006-02-15 05:09:17'), +(4527,988,1,'2006-02-15 05:09:17'), +(4528,988,2,'2006-02-15 05:09:17'), +(4529,988,2,'2006-02-15 05:09:17'), +(4530,989,1,'2006-02-15 05:09:17'), +(4531,989,1,'2006-02-15 05:09:17'), +(4532,989,1,'2006-02-15 05:09:17'), +(4533,989,1,'2006-02-15 05:09:17'), +(4534,989,2,'2006-02-15 05:09:17'), +(4535,989,2,'2006-02-15 05:09:17'), +(4536,990,2,'2006-02-15 05:09:17'), +(4537,990,2,'2006-02-15 05:09:17'), +(4538,991,1,'2006-02-15 05:09:17'), +(4539,991,1,'2006-02-15 05:09:17'), +(4540,991,2,'2006-02-15 05:09:17'), +(4541,991,2,'2006-02-15 05:09:17'), +(4542,991,2,'2006-02-15 05:09:17'), +(4543,992,2,'2006-02-15 05:09:17'), +(4544,992,2,'2006-02-15 05:09:17'), +(4545,992,2,'2006-02-15 05:09:17'), +(4546,992,2,'2006-02-15 05:09:17'), +(4547,993,1,'2006-02-15 05:09:17'), +(4548,993,1,'2006-02-15 05:09:17'), +(4549,993,1,'2006-02-15 05:09:17'), +(4550,993,1,'2006-02-15 05:09:17'), +(4551,993,2,'2006-02-15 05:09:17'), +(4552,993,2,'2006-02-15 05:09:17'), +(4553,993,2,'2006-02-15 05:09:17'), +(4554,994,1,'2006-02-15 05:09:17'), +(4555,994,1,'2006-02-15 05:09:17'), +(4556,994,1,'2006-02-15 05:09:17'), +(4557,995,1,'2006-02-15 05:09:17'), +(4558,995,1,'2006-02-15 05:09:17'), +(4559,995,1,'2006-02-15 05:09:17'), +(4560,995,1,'2006-02-15 05:09:17'), +(4561,995,2,'2006-02-15 05:09:17'), +(4562,995,2,'2006-02-15 05:09:17'), +(4563,996,1,'2006-02-15 05:09:17'), +(4564,996,1,'2006-02-15 05:09:17'), +(4565,997,1,'2006-02-15 05:09:17'), +(4566,997,1,'2006-02-15 05:09:17'), +(4567,998,2,'2006-02-15 05:09:17'), +(4568,998,2,'2006-02-15 05:09:17'), +(4569,999,1,'2006-02-15 05:09:17'), +(4570,999,1,'2006-02-15 05:09:17'), +(4571,999,2,'2006-02-15 05:09:17'), +(4572,999,2,'2006-02-15 05:09:17'), +(4573,999,2,'2006-02-15 05:09:17'), +(4574,1000,1,'2006-02-15 05:09:17'), +(4575,1000,1,'2006-02-15 05:09:17'), +(4576,1000,1,'2006-02-15 05:09:17'), +(4577,1000,1,'2006-02-15 05:09:17'), +(4578,1000,2,'2006-02-15 05:09:17'), +(4579,1000,2,'2006-02-15 05:09:17'), +(4580,1000,2,'2006-02-15 05:09:17'), +(4581,1000,2,'2006-02-15 05:09:17'); +COMMIT; + +-- +-- Dumping data for table language +-- + +SET AUTOCOMMIT=0; +INSERT INTO language VALUES (1,'English','2006-02-15 05:02:19'), +(2,'Italian','2006-02-15 05:02:19'), +(3,'Japanese','2006-02-15 05:02:19'), +(4,'Mandarin','2006-02-15 05:02:19'), +(5,'French','2006-02-15 05:02:19'), +(6,'German','2006-02-15 05:02:19'); +COMMIT; + +-- +-- Dumping data for table payment +-- + +SET AUTOCOMMIT=0; +INSERT INTO payment VALUES (1,1,1,76,'2.99','2005-05-25 11:30:37','2006-02-15 22:12:30'), +(2,1,1,573,'0.99','2005-05-28 10:35:23','2006-02-15 22:12:30'), +(3,1,1,1185,'5.99','2005-06-15 00:54:12','2006-02-15 22:12:30'), +(4,1,2,1422,'0.99','2005-06-15 18:02:53','2006-02-15 22:12:30'), +(5,1,2,1476,'9.99','2005-06-15 21:08:46','2006-02-15 22:12:30'), +(6,1,1,1725,'4.99','2005-06-16 15:18:57','2006-02-15 22:12:30'), +(7,1,1,2308,'4.99','2005-06-18 08:41:48','2006-02-15 22:12:30'), +(8,1,2,2363,'0.99','2005-06-18 13:33:59','2006-02-15 22:12:30'), +(9,1,1,3284,'3.99','2005-06-21 06:24:45','2006-02-15 22:12:30'), +(10,1,2,4526,'5.99','2005-07-08 03:17:05','2006-02-15 22:12:30'), +(11,1,1,4611,'5.99','2005-07-08 07:33:56','2006-02-15 22:12:30'), +(12,1,1,5244,'4.99','2005-07-09 13:24:07','2006-02-15 22:12:30'), +(13,1,1,5326,'4.99','2005-07-09 16:38:01','2006-02-15 22:12:30'), +(14,1,1,6163,'7.99','2005-07-11 10:13:46','2006-02-15 22:12:30'), +(15,1,2,7273,'2.99','2005-07-27 11:31:22','2006-02-15 22:12:30'), +(16,1,1,7841,'4.99','2005-07-28 09:04:45','2006-02-15 22:12:30'), +(17,1,2,8033,'4.99','2005-07-28 16:18:23','2006-02-15 22:12:30'), +(18,1,1,8074,'0.99','2005-07-28 17:33:39','2006-02-15 22:12:30'), +(19,1,2,8116,'0.99','2005-07-28 19:20:07','2006-02-15 22:12:30'), +(20,1,2,8326,'2.99','2005-07-29 03:58:49','2006-02-15 22:12:30'), +(21,1,2,9571,'2.99','2005-07-31 02:42:18','2006-02-15 22:12:30'), +(22,1,2,10437,'4.99','2005-08-01 08:51:04','2006-02-15 22:12:30'), +(23,1,2,11299,'3.99','2005-08-02 15:36:52','2006-02-15 22:12:30'), +(24,1,1,11367,'0.99','2005-08-02 18:01:38','2006-02-15 22:12:30'), +(25,1,2,11824,'4.99','2005-08-17 12:37:54','2006-02-15 22:12:30'), +(26,1,1,12250,'0.99','2005-08-18 03:57:29','2006-02-15 22:12:30'), +(27,1,2,13068,'0.99','2005-08-19 09:55:16','2006-02-15 22:12:30'), +(28,1,2,13176,'2.99','2005-08-19 13:56:54','2006-02-15 22:12:30'), +(29,1,1,14762,'0.99','2005-08-21 23:33:57','2006-02-15 22:12:30'), +(30,1,1,14825,'1.99','2005-08-22 01:27:57','2006-02-15 22:12:30'), +(31,1,2,15298,'2.99','2005-08-22 19:41:37','2006-02-15 22:12:30'), +(32,1,1,15315,'5.99','2005-08-22 20:03:46','2006-02-15 22:12:30'), +(33,2,1,320,'4.99','2005-05-27 00:09:24','2006-02-15 22:12:30'), +(34,2,1,2128,'2.99','2005-06-17 20:54:58','2006-02-15 22:12:30'), +(35,2,1,5636,'2.99','2005-07-10 06:31:24','2006-02-15 22:12:30'), +(36,2,1,5755,'6.99','2005-07-10 12:38:56','2006-02-15 22:12:30'), +(37,2,2,7346,'4.99','2005-07-27 14:30:42','2006-02-15 22:12:30'), +(38,2,1,7376,'5.99','2005-07-27 15:23:02','2006-02-15 22:12:30'), +(39,2,2,7459,'5.99','2005-07-27 18:40:20','2006-02-15 22:12:30'), +(40,2,2,8230,'5.99','2005-07-29 00:12:59','2006-02-15 22:12:30'), +(41,2,1,8598,'2.99','2005-07-29 12:56:59','2006-02-15 22:12:30'), +(42,2,2,8705,'5.99','2005-07-29 17:14:29','2006-02-15 22:12:30'), +(43,2,1,9031,'4.99','2005-07-30 06:06:10','2006-02-15 22:12:30'), +(44,2,2,9236,'10.99','2005-07-30 13:47:43','2006-02-15 22:12:30'), +(45,2,2,9248,'0.99','2005-07-30 14:14:11','2006-02-15 22:12:30'), +(46,2,2,9296,'6.99','2005-07-30 16:21:13','2006-02-15 22:12:30'), +(47,2,2,9465,'6.99','2005-07-30 22:39:53','2006-02-15 22:12:30'), +(48,2,1,10136,'2.99','2005-07-31 21:58:56','2006-02-15 22:12:30'), +(49,2,1,10466,'0.99','2005-08-01 09:45:26','2006-02-15 22:12:30'), +(50,2,1,10918,'0.99','2005-08-02 02:10:56','2006-02-15 22:12:30'), +(51,2,1,11087,'5.99','2005-08-02 07:41:41','2006-02-15 22:12:30'), +(52,2,1,11177,'6.99','2005-08-02 10:43:48','2006-02-15 22:12:30'), +(53,2,2,11256,'2.99','2005-08-02 13:44:53','2006-02-15 22:12:30'), +(54,2,1,11614,'2.99','2005-08-17 03:52:18','2006-02-15 22:12:30'), +(55,2,1,12963,'2.99','2005-08-19 06:26:04','2006-02-15 22:12:30'), +(56,2,1,14475,'4.99','2005-08-21 13:24:32','2006-02-15 22:12:30'), +(57,2,2,14743,'5.99','2005-08-21 22:41:56','2006-02-15 22:12:30'), +(58,2,2,15145,'4.99','2005-08-22 13:53:04','2006-02-15 22:12:30'), +(59,2,2,15907,'4.99','2005-08-23 17:39:35','2006-02-15 22:12:30'), +(60,3,1,435,'1.99','2005-05-27 17:17:09','2006-02-15 22:12:30'), +(61,3,1,830,'2.99','2005-05-29 22:43:55','2006-02-15 22:12:30'), +(62,3,1,1546,'8.99','2005-06-16 01:34:05','2006-02-15 22:12:30'), +(63,3,1,1726,'6.99','2005-06-16 15:19:10','2006-02-15 22:12:30'), +(64,3,2,1911,'6.99','2005-06-17 05:15:15','2006-02-15 22:12:30'), +(65,3,1,2628,'2.99','2005-06-19 08:34:53','2006-02-15 22:12:30'), +(66,3,1,4180,'4.99','2005-07-07 10:23:25','2006-02-15 22:12:30'), +(67,3,1,4725,'4.99','2005-07-08 12:47:11','2006-02-15 22:12:30'), +(68,3,1,7096,'5.99','2005-07-27 04:54:42','2006-02-15 22:12:30'), +(69,3,2,7503,'10.99','2005-07-27 20:23:12','2006-02-15 22:12:30'), +(70,3,2,7703,'7.99','2005-07-28 03:59:21','2006-02-15 22:12:30'), +(71,3,2,7724,'6.99','2005-07-28 04:46:30','2006-02-15 22:12:30'), +(72,3,1,7911,'4.99','2005-07-28 11:46:45','2006-02-15 22:12:30'), +(73,3,2,8086,'4.99','2005-07-28 18:17:14','2006-02-15 22:12:30'), +(74,3,1,8545,'2.99','2005-07-29 11:07:04','2006-02-15 22:12:30'), +(75,3,1,9226,'1.99','2005-07-30 13:31:20','2006-02-15 22:12:30'), +(76,3,2,9443,'3.99','2005-07-30 21:45:46','2006-02-15 22:12:30'), +(77,3,1,9595,'2.99','2005-07-31 03:27:58','2006-02-15 22:12:30'), +(78,3,2,9816,'4.99','2005-07-31 11:32:58','2006-02-15 22:12:30'), +(79,3,2,10597,'5.99','2005-08-01 14:19:48','2006-02-15 22:12:30'), +(80,3,2,12556,'4.99','2005-08-18 14:49:55','2006-02-15 22:12:30'), +(81,3,1,13403,'8.99','2005-08-19 22:18:07','2006-02-15 22:12:30'), +(82,3,2,13610,'2.99','2005-08-20 06:14:12','2006-02-15 22:12:30'), +(83,3,2,14699,'8.99','2005-08-21 20:50:48','2006-02-15 22:12:30'), +(84,3,2,15038,'0.99','2005-08-22 09:37:27','2006-02-15 22:12:30'), +(85,3,1,15619,'2.99','2005-08-23 07:10:14','2006-02-15 22:12:30'), +(86,4,1,1297,'4.99','2005-06-15 09:31:28','2006-02-15 22:12:30'), +(87,4,1,1633,'0.99','2005-06-16 08:08:40','2006-02-15 22:12:30'), +(88,4,2,1707,'2.99','2005-06-16 14:01:27','2006-02-15 22:12:30'), +(89,4,2,1735,'0.99','2005-06-16 15:51:52','2006-02-15 22:12:30'), +(90,4,2,2043,'0.99','2005-06-17 14:31:12','2006-02-15 22:12:30'), +(91,4,1,2642,'5.99','2005-06-19 09:39:01','2006-02-15 22:12:30'), +(92,4,1,7660,'2.99','2005-07-28 02:10:10','2006-02-15 22:12:30'), +(93,4,2,7718,'2.99','2005-07-28 04:37:59','2006-02-15 22:12:30'), +(94,4,1,8741,'3.99','2005-07-29 18:44:57','2006-02-15 22:12:30'), +(95,4,1,9100,'5.99','2005-07-30 08:46:09','2006-02-15 22:12:30'), +(96,4,1,9371,'5.99','2005-07-30 18:58:00','2006-02-15 22:12:30'), +(97,4,2,11069,'0.99','2005-08-02 07:09:34','2006-02-15 22:12:30'), +(98,4,1,11110,'2.99','2005-08-02 08:20:31','2006-02-15 22:12:30'), +(99,4,2,11529,'4.99','2005-08-17 00:28:01','2006-02-15 22:12:30'), +(100,4,1,12151,'2.99','2005-08-18 00:14:03','2006-02-15 22:12:30'), +(101,4,2,12294,'8.99','2005-08-18 05:14:44','2006-02-15 22:12:30'), +(102,4,2,12856,'1.99','2005-08-19 02:19:13','2006-02-15 22:12:30'), +(103,4,1,13704,'2.99','2005-08-20 09:32:04','2006-02-15 22:12:30'), +(104,4,1,13807,'6.99','2005-08-20 12:55:40','2006-02-15 22:12:30'), +(105,4,2,14225,'4.99','2005-08-21 04:53:37','2006-02-15 22:12:30'), +(106,4,1,15147,'2.99','2005-08-22 13:58:23','2006-02-15 22:12:30'), +(107,4,2,15635,'1.99','2005-08-23 07:43:00','2006-02-15 22:12:30'), +(108,5,1,731,'0.99','2005-05-29 07:25:16','2006-02-15 22:12:30'), +(109,5,1,1085,'6.99','2005-05-31 11:15:43','2006-02-15 22:12:30'), +(110,5,1,1142,'1.99','2005-05-31 19:46:38','2006-02-15 22:12:30'), +(111,5,1,1502,'3.99','2005-06-15 22:03:14','2006-02-15 22:12:30'), +(112,5,2,1631,'2.99','2005-06-16 08:01:02','2006-02-15 22:12:30'), +(113,5,2,2063,'4.99','2005-06-17 15:56:53','2006-02-15 22:12:30'), +(114,5,2,2570,'2.99','2005-06-19 04:20:13','2006-02-15 22:12:30'), +(115,5,2,3126,'4.99','2005-06-20 18:38:22','2006-02-15 22:12:30'), +(116,5,2,3677,'4.99','2005-07-06 09:11:58','2006-02-15 22:12:30'), +(117,5,2,4889,'2.99','2005-07-08 20:04:43','2006-02-15 22:12:30'), +(118,5,1,5016,'4.99','2005-07-09 01:57:57','2006-02-15 22:12:30'), +(119,5,2,5118,'5.99','2005-07-09 07:13:52','2006-02-15 22:12:30'), +(120,5,2,5156,'1.99','2005-07-09 08:51:42','2006-02-15 22:12:30'), +(121,5,2,5721,'0.99','2005-07-10 11:09:35','2006-02-15 22:12:30'), +(122,5,1,6042,'8.99','2005-07-11 03:17:04','2006-02-15 22:12:30'), +(123,5,1,6663,'3.99','2005-07-12 11:27:35','2006-02-15 22:12:30'), +(124,5,2,6685,'4.99','2005-07-12 12:16:28','2006-02-15 22:12:30'), +(125,5,2,7293,'0.99','2005-07-27 12:37:28','2006-02-15 22:12:30'), +(126,5,2,7652,'0.99','2005-07-28 01:50:29','2006-02-15 22:12:30'), +(127,5,2,7829,'3.99','2005-07-28 08:43:39','2006-02-15 22:12:30'), +(128,5,1,8263,'2.99','2005-07-29 01:11:23','2006-02-15 22:12:30'), +(129,5,1,8978,'1.99','2005-07-30 04:14:28','2006-02-15 22:12:30'), +(130,5,1,9493,'4.99','2005-07-30 23:52:30','2006-02-15 22:12:30'), +(131,5,1,9888,'3.99','2005-07-31 14:00:53','2006-02-15 22:12:30'), +(132,5,2,10609,'4.99','2005-08-01 14:48:45','2006-02-15 22:12:30'), +(133,5,1,10625,'0.99','2005-08-01 15:27:10','2006-02-15 22:12:30'), +(134,5,2,11001,'4.99','2005-08-02 04:56:45','2006-02-15 22:12:30'), +(135,5,1,11179,'4.99','2005-08-02 10:50:06','2006-02-15 22:12:30'), +(136,5,2,11930,'3.99','2005-08-17 16:28:53','2006-02-15 22:12:30'), +(137,5,1,12145,'9.99','2005-08-18 00:10:04','2006-02-15 22:12:30'), +(138,5,1,12797,'2.99','2005-08-19 00:24:08','2006-02-15 22:12:30'), +(139,5,1,13063,'1.99','2005-08-19 09:45:41','2006-02-15 22:12:30'), +(140,5,2,13877,'0.99','2005-08-20 15:16:18','2006-02-15 22:12:30'), +(141,5,2,14053,'6.99','2005-08-20 22:13:59','2006-02-15 22:12:30'), +(142,5,1,14430,'6.99','2005-08-21 11:31:11','2006-02-15 22:12:30'), +(143,5,2,14494,'2.99','2005-08-21 14:02:50','2006-02-15 22:12:30'), +(144,5,2,15232,'0.99','2005-08-22 17:37:02','2006-02-15 22:12:30'), +(145,5,2,13209,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:30'), +(146,6,2,57,'4.99','2005-05-25 08:43:32','2006-02-15 22:12:30'), +(147,6,1,577,'2.99','2005-05-28 11:09:14','2006-02-15 22:12:30'), +(148,6,2,916,'0.99','2005-05-30 11:25:01','2006-02-15 22:12:30'), +(149,6,1,1575,'3.99','2005-06-16 03:41:38','2006-02-15 22:12:30'), +(150,6,2,1841,'2.99','2005-06-16 23:44:13','2006-02-15 22:12:30'), +(151,6,1,1966,'0.99','2005-06-17 09:19:45','2006-02-15 22:12:30'), +(152,6,1,2345,'0.99','2005-06-18 12:03:23','2006-02-15 22:12:30'), +(153,6,2,3983,'0.99','2005-07-06 23:14:21','2006-02-15 22:12:30'), +(154,6,2,4278,'2.99','2005-07-07 14:53:24','2006-02-15 22:12:30'), +(155,6,1,5553,'0.99','2005-07-10 03:03:35','2006-02-15 22:12:30'), +(156,6,2,6211,'5.99','2005-07-11 12:39:01','2006-02-15 22:12:30'), +(157,6,1,6248,'7.99','2005-07-11 15:01:54','2006-02-15 22:12:30'), +(158,6,2,6686,'0.99','2005-07-12 12:18:38','2006-02-15 22:12:30'), +(159,6,2,7099,'2.99','2005-07-27 05:03:44','2006-02-15 22:12:30'), +(160,6,2,7136,'2.99','2005-07-27 06:38:25','2006-02-15 22:12:30'), +(161,6,1,8101,'0.99','2005-07-28 18:47:23','2006-02-15 22:12:30'), +(162,6,1,10271,'2.99','2005-08-01 03:13:39','2006-02-15 22:12:30'), +(163,6,1,11023,'2.99','2005-08-02 05:36:38','2006-02-15 22:12:30'), +(164,6,1,11398,'3.99','2005-08-02 18:55:15','2006-02-15 22:12:30'), +(165,6,1,11591,'6.99','2005-08-17 02:29:41','2006-02-15 22:12:30'), +(166,6,1,11727,'0.99','2005-08-17 08:12:20','2006-02-15 22:12:30'), +(167,6,1,11853,'0.99','2005-08-17 13:39:32','2006-02-15 22:12:30'), +(168,6,2,12254,'2.99','2005-08-18 04:05:29','2006-02-15 22:12:30'), +(169,6,2,13451,'6.99','2005-08-20 00:18:25','2006-02-15 22:12:30'), +(170,6,1,14329,'7.99','2005-08-21 08:22:56','2006-02-15 22:12:30'), +(171,6,1,14377,'4.99','2005-08-21 09:49:28','2006-02-15 22:12:30'), +(172,6,1,15509,'5.99','2005-08-23 02:51:24','2006-02-15 22:12:30'), +(173,6,2,15603,'0.99','2005-08-23 06:41:32','2006-02-15 22:12:30'), +(174,7,2,46,'5.99','2005-05-25 06:04:08','2006-02-15 22:12:30'), +(175,7,2,117,'0.99','2005-05-25 19:30:46','2006-02-15 22:12:30'), +(176,7,2,748,'2.99','2005-05-29 09:27:00','2006-02-15 22:12:30'), +(177,7,1,975,'4.99','2005-05-30 21:07:15','2006-02-15 22:12:30'), +(178,7,1,1063,'5.99','2005-05-31 08:44:29','2006-02-15 22:12:30'), +(179,7,2,1810,'0.99','2005-06-16 21:06:00','2006-02-15 22:12:30'), +(180,7,1,2250,'2.99','2005-06-18 05:03:36','2006-02-15 22:12:31'), +(181,7,1,2709,'0.99','2005-06-19 14:00:26','2006-02-15 22:12:31'), +(182,7,1,2888,'4.99','2005-06-20 01:50:56','2006-02-15 22:12:31'), +(183,7,1,3007,'0.99','2005-06-20 10:11:53','2006-02-15 22:12:31'), +(184,7,2,3639,'5.99','2005-07-06 07:09:17','2006-02-15 22:12:31'), +(185,7,2,4238,'2.99','2005-07-07 13:22:20','2006-02-15 22:12:31'), +(186,7,2,4787,'5.99','2005-07-08 16:16:04','2006-02-15 22:12:31'), +(187,7,1,4856,'4.99','2005-07-08 18:47:38','2006-02-15 22:12:31'), +(188,7,1,5441,'8.99','2005-07-09 21:52:05','2006-02-15 22:12:31'), +(189,7,1,5921,'7.99','2005-07-10 21:35:12','2006-02-15 22:12:31'), +(190,7,1,6174,'1.99','2005-07-11 10:36:28','2006-02-15 22:12:31'), +(191,7,1,6295,'2.99','2005-07-11 17:30:58','2006-02-15 22:12:31'), +(192,7,2,6761,'3.99','2005-07-12 15:17:42','2006-02-15 22:12:31'), +(193,7,2,8422,'5.99','2005-07-29 07:02:55','2006-02-15 22:12:31'), +(194,7,2,9624,'7.99','2005-07-31 04:30:03','2006-02-15 22:12:31'), +(195,7,2,10330,'6.99','2005-08-01 04:57:04','2006-02-15 22:12:31'), +(196,7,1,10423,'5.99','2005-08-01 08:19:53','2006-02-15 22:12:31'), +(197,7,1,10514,'4.99','2005-08-01 11:39:26','2006-02-15 22:12:31'), +(198,7,2,10644,'4.99','2005-08-01 15:52:00','2006-02-15 22:12:31'), +(199,7,2,10989,'3.99','2005-08-02 04:40:54','2006-02-15 22:12:31'), +(200,7,2,11542,'7.99','2005-08-17 00:51:32','2006-02-15 22:12:31'), +(201,7,1,12367,'8.99','2005-08-18 07:57:14','2006-02-15 22:12:31'), +(202,7,1,12730,'2.99','2005-08-18 21:55:01','2006-02-15 22:12:31'), +(203,7,2,13373,'2.99','2005-08-19 21:23:31','2006-02-15 22:12:31'), +(204,7,1,13476,'2.99','2005-08-20 01:06:04','2006-02-15 22:12:31'), +(205,7,1,13594,'0.99','2005-08-20 05:53:31','2006-02-15 22:12:31'), +(206,7,1,14222,'5.99','2005-08-21 04:49:48','2006-02-15 22:12:31'), +(207,8,2,866,'6.99','2005-05-30 03:43:54','2006-02-15 22:12:31'), +(208,8,2,1305,'2.99','2005-06-15 09:59:16','2006-02-15 22:12:31'), +(209,8,1,2095,'5.99','2005-06-17 18:21:35','2006-02-15 22:12:31'), +(210,8,2,3114,'4.99','2005-06-20 17:57:47','2006-02-15 22:12:31'), +(211,8,1,3475,'5.99','2005-07-05 23:01:21','2006-02-15 22:12:31'), +(212,8,1,4003,'0.99','2005-07-07 00:09:02','2006-02-15 22:12:31'), +(213,8,2,4175,'2.99','2005-07-07 10:02:03','2006-02-15 22:12:31'), +(214,8,2,4409,'3.99','2005-07-07 21:47:29','2006-02-15 22:12:31'), +(215,8,1,4503,'3.99','2005-07-08 02:17:12','2006-02-15 22:12:31'), +(216,8,1,5300,'2.99','2005-07-09 15:40:46','2006-02-15 22:12:31'), +(217,8,2,5341,'2.99','2005-07-09 17:13:23','2006-02-15 22:12:31'), +(218,8,1,6375,'4.99','2005-07-11 21:39:46','2006-02-15 22:12:31'), +(219,8,1,6647,'0.99','2005-07-12 10:43:53','2006-02-15 22:12:31'), +(220,8,1,8809,'1.99','2005-07-29 21:42:49','2006-02-15 22:12:31'), +(221,8,2,9629,'2.99','2005-07-31 04:54:43','2006-02-15 22:12:31'), +(222,8,2,10141,'0.99','2005-07-31 22:08:29','2006-02-15 22:12:31'), +(223,8,2,10561,'2.99','2005-08-01 13:05:35','2006-02-15 22:12:31'), +(224,8,1,11232,'9.99','2005-08-02 13:04:12','2006-02-15 22:12:31'), +(225,8,2,11284,'2.99','2005-08-02 14:42:45','2006-02-15 22:12:31'), +(226,8,1,12613,'2.99','2005-08-18 17:16:01','2006-02-15 22:12:31'), +(227,8,1,14114,'0.99','2005-08-21 01:07:11','2006-02-15 22:12:31'), +(228,8,1,15374,'7.99','2005-08-22 22:09:09','2006-02-15 22:12:31'), +(229,8,1,15764,'2.99','2005-08-23 13:05:10','2006-02-15 22:12:31'), +(230,8,1,15805,'4.99','2005-08-23 14:31:19','2006-02-15 22:12:31'), +(231,9,2,350,'4.99','2005-05-27 05:01:28','2006-02-15 22:12:31'), +(232,9,2,877,'0.99','2005-05-30 05:48:59','2006-02-15 22:12:31'), +(233,9,2,1075,'4.99','2005-05-31 10:13:34','2006-02-15 22:12:31'), +(234,9,2,3142,'7.99','2005-06-20 19:59:28','2006-02-15 22:12:31'), +(235,9,2,3262,'4.99','2005-06-21 04:08:43','2006-02-15 22:12:31'), +(236,9,1,4454,'2.99','2005-07-07 23:37:00','2006-02-15 22:12:31'), +(237,9,2,4748,'0.99','2005-07-08 13:59:38','2006-02-15 22:12:31'), +(238,9,1,4796,'1.99','2005-07-08 16:35:44','2006-02-15 22:12:31'), +(239,9,1,5659,'2.99','2005-07-10 07:45:40','2006-02-15 22:12:31'), +(240,9,2,6019,'4.99','2005-07-11 02:08:29','2006-02-15 22:12:31'), +(241,9,1,6165,'5.99','2005-07-11 10:17:29','2006-02-15 22:12:31'), +(242,9,2,7616,'0.99','2005-07-28 00:15:26','2006-02-15 22:12:31'), +(243,9,1,7801,'2.99','2005-07-28 07:51:56','2006-02-15 22:12:31'), +(244,9,1,9043,'4.99','2005-07-30 06:34:07','2006-02-15 22:12:31'), +(245,9,1,10451,'0.99','2005-08-01 09:11:25','2006-02-15 22:12:31'), +(246,9,1,10454,'4.99','2005-08-01 09:14:00','2006-02-15 22:12:31'), +(247,9,2,11400,'5.99','2005-08-02 19:00:52','2006-02-15 22:12:31'), +(248,9,1,11556,'0.99','2005-08-17 01:11:53','2006-02-15 22:12:31'), +(249,9,1,12228,'2.99','2005-08-18 03:08:10','2006-02-15 22:12:31'), +(250,9,1,12309,'2.99','2005-08-18 05:58:40','2006-02-15 22:12:31'), +(251,9,2,12652,'4.99','2005-08-18 18:48:58','2006-02-15 22:12:31'), +(252,9,2,14489,'7.99','2005-08-21 13:53:59','2006-02-15 22:12:31'), +(253,9,1,15813,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:31'), +(254,10,2,1140,'4.99','2005-05-31 19:36:30','2006-02-15 22:12:31'), +(255,10,1,1801,'4.99','2005-06-16 20:21:53','2006-02-15 22:12:31'), +(256,10,1,1995,'4.99','2005-06-17 11:11:14','2006-02-15 22:12:31'), +(257,10,2,2222,'3.99','2005-06-18 03:26:23','2006-02-15 22:12:31'), +(258,10,1,2814,'0.99','2005-06-19 20:01:59','2006-02-15 22:12:31'), +(259,10,1,2865,'0.99','2005-06-20 00:00:55','2006-02-15 22:12:31'), +(260,10,2,3790,'3.99','2005-07-06 14:13:45','2006-02-15 22:12:31'), +(261,10,2,4042,'4.99','2005-07-07 03:06:40','2006-02-15 22:12:31'), +(262,10,1,4255,'1.99','2005-07-07 14:14:13','2006-02-15 22:12:31'), +(263,10,1,5038,'7.99','2005-07-09 03:12:52','2006-02-15 22:12:31'), +(264,10,2,5068,'2.99','2005-07-09 04:53:18','2006-02-15 22:12:31'), +(265,10,1,5444,'0.99','2005-07-09 21:58:57','2006-02-15 22:12:31'), +(266,10,1,5905,'2.99','2005-07-10 20:41:09','2006-02-15 22:12:31'), +(267,10,1,7738,'2.99','2005-07-28 05:21:42','2006-02-15 22:12:31'), +(268,10,2,8001,'6.99','2005-07-28 15:10:55','2006-02-15 22:12:31'), +(269,10,2,8188,'4.99','2005-07-28 22:34:12','2006-02-15 22:12:31'), +(270,10,1,9935,'4.99','2005-07-31 15:27:07','2006-02-15 22:12:31'), +(271,10,2,10671,'8.99','2005-08-01 17:09:59','2006-02-15 22:12:31'), +(272,10,2,11289,'2.99','2005-08-02 14:55:00','2006-02-15 22:12:31'), +(273,10,1,11405,'0.99','2005-08-02 19:13:39','2006-02-15 22:12:31'), +(274,10,2,12031,'2.99','2005-08-17 20:11:35','2006-02-15 22:12:31'), +(275,10,2,12400,'2.99','2005-08-18 09:19:12','2006-02-15 22:12:31'), +(276,10,2,13316,'4.99','2005-08-19 19:23:30','2006-02-15 22:12:31'), +(277,10,2,13917,'2.99','2005-08-20 16:43:28','2006-02-15 22:12:31'), +(278,10,1,15370,'5.99','2005-08-22 21:59:29','2006-02-15 22:12:31'), +(279,11,1,987,'6.99','2005-05-30 22:59:12','2006-02-15 22:12:31'), +(280,11,1,1470,'6.99','2005-06-15 20:53:07','2006-02-15 22:12:31'), +(281,11,1,1939,'7.99','2005-06-17 07:26:45','2006-02-15 22:12:31'), +(282,11,1,3192,'0.99','2005-06-20 23:49:12','2006-02-15 22:12:31'), +(283,11,2,4608,'2.99','2005-07-08 07:19:11','2006-02-15 22:12:31'), +(284,11,1,4943,'4.99','2005-07-08 22:43:05','2006-02-15 22:12:31'), +(285,11,2,5835,'5.99','2005-07-10 16:44:58','2006-02-15 22:12:31'), +(286,11,2,6146,'6.99','2005-07-11 09:09:59','2006-02-15 22:12:31'), +(287,11,1,7314,'4.99','2005-07-27 13:13:32','2006-02-15 22:12:31'), +(288,11,1,8014,'4.99','2005-07-28 15:32:07','2006-02-15 22:12:31'), +(289,11,2,8100,'2.99','2005-07-28 18:43:11','2006-02-15 22:12:31'), +(290,11,2,8447,'1.99','2005-07-29 07:38:14','2006-02-15 22:12:31'), +(291,11,1,8715,'0.99','2005-07-29 17:33:45','2006-02-15 22:12:31'), +(292,11,1,8950,'9.99','2005-07-30 03:17:13','2006-02-15 22:12:31'), +(293,11,2,9292,'6.99','2005-07-30 16:08:21','2006-02-15 22:12:31'), +(294,11,1,10812,'4.99','2005-08-01 22:41:16','2006-02-15 22:12:31'), +(295,11,2,11166,'6.99','2005-08-02 10:14:58','2006-02-15 22:12:31'), +(296,11,2,11502,'0.99','2005-08-16 23:06:30','2006-02-15 22:12:31'), +(297,11,2,12015,'5.99','2005-08-17 19:32:44','2006-02-15 22:12:31'), +(298,11,2,13572,'0.99','2005-08-20 05:07:27','2006-02-15 22:12:31'), +(299,11,1,13790,'4.99','2005-08-20 12:17:27','2006-02-15 22:12:31'), +(300,11,1,15120,'0.99','2005-08-22 12:42:47','2006-02-15 22:12:31'), +(301,11,2,15240,'2.99','2005-08-22 17:46:41','2006-02-15 22:12:31'), +(302,11,1,11646,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:31'), +(303,12,1,988,'4.99','2005-05-30 23:08:03','2006-02-15 22:12:31'), +(304,12,1,1084,'4.99','2005-05-31 11:10:17','2006-02-15 22:12:31'), +(305,12,2,1752,'5.99','2005-06-16 17:02:55','2006-02-15 22:12:31'), +(306,12,2,2434,'5.99','2005-06-18 18:11:51','2006-02-15 22:12:31'), +(307,12,2,2500,'5.99','2005-06-18 23:07:12','2006-02-15 22:12:31'), +(308,12,2,2623,'4.99','2005-06-19 08:11:51','2006-02-15 22:12:31'), +(309,12,2,3135,'2.99','2005-06-20 19:33:52','2006-02-15 22:12:31'), +(310,12,1,3411,'0.99','2005-06-21 16:31:27','2006-02-15 22:12:31'), +(311,12,1,3870,'3.99','2005-07-06 17:57:54','2006-02-15 22:12:31'), +(312,12,1,5071,'0.99','2005-07-09 05:00:39','2006-02-15 22:12:31'), +(313,12,1,5074,'0.99','2005-07-09 05:06:24','2006-02-15 22:12:31'), +(314,12,2,5111,'0.99','2005-07-09 07:02:19','2006-02-15 22:12:31'), +(315,12,2,5242,'3.99','2005-07-09 13:20:25','2006-02-15 22:12:31'), +(316,12,1,6773,'2.99','2005-07-12 15:55:39','2006-02-15 22:12:31'), +(317,12,2,7008,'0.99','2005-07-27 01:44:03','2006-02-15 22:12:31'), +(318,12,2,7279,'0.99','2005-07-27 11:50:47','2006-02-15 22:12:31'), +(319,12,2,8985,'0.99','2005-07-30 04:34:51','2006-02-15 22:12:31'), +(320,12,2,9166,'4.99','2005-07-30 11:26:28','2006-02-15 22:12:31'), +(321,12,2,9238,'5.99','2005-07-30 13:49:43','2006-02-15 22:12:31'), +(322,12,1,9627,'5.99','2005-07-31 04:42:46','2006-02-15 22:12:31'), +(323,12,2,9708,'5.99','2005-07-31 07:45:33','2006-02-15 22:12:31'), +(324,12,2,10392,'10.99','2005-08-01 06:50:26','2006-02-15 22:12:31'), +(325,12,2,11497,'0.99','2005-08-16 22:52:30','2006-02-15 22:12:31'), +(326,12,1,12604,'4.99','2005-08-18 16:58:48','2006-02-15 22:12:31'), +(327,12,2,13519,'0.99','2005-08-20 02:37:07','2006-02-15 22:12:31'), +(328,12,2,13895,'2.99','2005-08-20 15:58:28','2006-02-15 22:12:31'), +(329,12,2,14240,'4.99','2005-08-21 05:19:39','2006-02-15 22:12:31'), +(330,12,1,15993,'0.99','2005-08-23 20:28:44','2006-02-15 22:12:31'), +(331,13,1,1933,'2.99','2005-06-17 06:54:42','2006-02-15 22:12:31'), +(332,13,1,2209,'4.99','2005-06-18 02:24:01','2006-02-15 22:12:31'), +(333,13,1,2952,'2.99','2005-06-20 06:26:57','2006-02-15 22:12:31'), +(334,13,1,3047,'8.99','2005-06-20 12:45:33','2006-02-15 22:12:31'), +(335,13,2,3946,'2.99','2005-07-06 21:39:24','2006-02-15 22:12:31'), +(336,13,1,6118,'8.99','2005-07-11 07:43:08','2006-02-15 22:12:31'), +(337,13,1,6568,'2.99','2005-07-12 05:45:47','2006-02-15 22:12:31'), +(338,13,1,6870,'0.99','2005-07-12 20:13:45','2006-02-15 22:12:31'), +(339,13,1,6897,'2.99','2005-07-12 21:30:41','2006-02-15 22:12:31'), +(340,13,1,7916,'2.99','2005-07-28 11:49:53','2006-02-15 22:12:31'), +(341,13,1,8277,'2.99','2005-07-29 01:38:53','2006-02-15 22:12:31'), +(342,13,2,8831,'11.99','2005-07-29 22:37:41','2006-02-15 22:12:31'), +(343,13,2,9260,'9.99','2005-07-30 14:38:22','2006-02-15 22:12:31'), +(344,13,2,9434,'0.99','2005-07-30 21:29:41','2006-02-15 22:12:32'), +(345,13,1,9664,'0.99','2005-07-31 06:12:08','2006-02-15 22:12:32'), +(346,13,1,9736,'7.99','2005-07-31 08:58:40','2006-02-15 22:12:32'), +(347,13,1,10003,'4.99','2005-07-31 17:48:51','2006-02-15 22:12:32'), +(348,13,1,11292,'4.99','2005-08-02 14:58:41','2006-02-15 22:12:32'), +(349,13,2,11315,'0.99','2005-08-02 16:05:17','2006-02-15 22:12:32'), +(350,13,2,11761,'5.99','2005-08-17 09:44:59','2006-02-15 22:12:32'), +(351,13,2,12918,'7.99','2005-08-19 04:31:36','2006-02-15 22:12:32'), +(352,13,2,13096,'4.99','2005-08-19 10:49:03','2006-02-15 22:12:32'), +(353,13,2,13213,'0.99','2005-08-19 15:25:48','2006-02-15 22:12:32'), +(354,13,1,13456,'0.99','2005-08-20 00:33:19','2006-02-15 22:12:32'), +(355,13,1,14252,'9.99','2005-08-21 05:44:07','2006-02-15 22:12:32'), +(356,13,2,14545,'7.99','2005-08-21 15:44:23','2006-02-15 22:12:32'), +(357,13,1,15338,'4.99','2005-08-22 20:51:24','2006-02-15 22:12:32'), +(358,14,1,151,'0.99','2005-05-26 00:37:28','2006-02-15 22:12:32'), +(359,14,1,346,'9.99','2005-05-27 04:34:41','2006-02-15 22:12:32'), +(360,14,1,525,'5.99','2005-05-28 04:25:33','2006-02-15 22:12:32'), +(361,14,1,671,'2.99','2005-05-28 22:04:30','2006-02-15 22:12:32'), +(362,14,2,815,'0.99','2005-05-29 20:24:28','2006-02-15 22:12:32'), +(363,14,2,1360,'4.99','2005-06-15 13:32:15','2006-02-15 22:12:32'), +(364,14,1,3707,'2.99','2005-07-06 10:21:49','2006-02-15 22:12:32'), +(365,14,1,4952,'0.99','2005-07-08 23:00:07','2006-02-15 22:12:32'), +(366,14,1,5104,'0.99','2005-07-09 06:37:07','2006-02-15 22:12:32'), +(367,14,2,5317,'7.99','2005-07-09 16:10:25','2006-02-15 22:12:32'), +(368,14,1,5383,'4.99','2005-07-09 19:14:32','2006-02-15 22:12:32'), +(369,14,1,5565,'7.99','2005-07-10 03:29:48','2006-02-15 22:12:32'), +(370,14,1,8035,'6.99','2005-07-28 16:23:01','2006-02-15 22:12:32'), +(371,14,1,8042,'0.99','2005-07-28 16:45:11','2006-02-15 22:12:32'), +(372,14,1,8548,'3.99','2005-07-29 11:11:33','2006-02-15 22:12:32'), +(373,14,2,8836,'4.99','2005-07-29 22:46:08','2006-02-15 22:12:32'), +(374,14,2,9438,'4.99','2005-07-30 21:36:15','2006-02-15 22:12:32'), +(375,14,1,9592,'2.99','2005-07-31 03:21:16','2006-02-15 22:12:32'), +(376,14,1,10348,'2.99','2005-08-01 05:23:00','2006-02-15 22:12:32'), +(377,14,2,10526,'6.99','2005-08-01 11:55:33','2006-02-15 22:12:32'), +(378,14,1,11480,'4.99','2005-08-02 22:18:24','2006-02-15 22:12:32'), +(379,14,2,11528,'3.99','2005-08-17 00:27:23','2006-02-15 22:12:32'), +(380,14,1,12668,'2.99','2005-08-18 19:16:47','2006-02-15 22:12:32'), +(381,14,1,13757,'4.99','2005-08-20 11:20:12','2006-02-15 22:12:32'), +(382,14,2,15015,'6.99','2005-08-22 08:43:50','2006-02-15 22:12:32'), +(383,14,1,15373,'0.99','2005-08-22 22:08:11','2006-02-15 22:12:32'), +(384,14,1,16045,'0.99','2005-08-23 22:25:26','2006-02-15 22:12:32'), +(385,14,1,13780,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:32'), +(386,15,1,2486,'2.99','2005-06-18 21:26:56','2006-02-15 22:12:32'), +(387,15,1,2937,'5.99','2005-06-20 05:15:37','2006-02-15 22:12:32'), +(388,15,2,3182,'0.99','2005-06-20 22:52:18','2006-02-15 22:12:32'), +(389,15,1,3550,'7.99','2005-07-06 02:29:21','2006-02-15 22:12:32'), +(390,15,1,4127,'5.99','2005-07-07 07:26:19','2006-02-15 22:12:32'), +(391,15,1,5717,'2.99','2005-07-10 11:02:03','2006-02-15 22:12:32'), +(392,15,2,5975,'2.99','2005-07-11 00:14:19','2006-02-15 22:12:32'), +(393,15,1,7105,'4.99','2005-07-27 05:15:37','2006-02-15 22:12:32'), +(394,15,1,8193,'0.99','2005-07-28 22:50:50','2006-02-15 22:12:32'), +(395,15,2,8615,'6.99','2005-07-29 13:36:01','2006-02-15 22:12:32'), +(396,15,2,8927,'4.99','2005-07-30 02:13:31','2006-02-15 22:12:32'), +(397,15,1,9987,'2.99','2005-07-31 17:22:35','2006-02-15 22:12:32'), +(398,15,1,11118,'2.99','2005-08-02 08:44:18','2006-02-15 22:12:32'), +(399,15,1,11141,'2.99','2005-08-02 09:29:11','2006-02-15 22:12:32'), +(400,15,2,11307,'2.99','2005-08-02 15:48:08','2006-02-15 22:12:32'), +(401,15,2,11341,'2.99','2005-08-02 17:09:24','2006-02-15 22:12:32'), +(402,15,1,11922,'7.99','2005-08-17 16:20:37','2006-02-15 22:12:32'), +(403,15,2,12272,'2.99','2005-08-18 04:39:10','2006-02-15 22:12:32'), +(404,15,2,12551,'2.99','2005-08-18 14:46:26','2006-02-15 22:12:32'), +(405,15,1,12635,'2.99','2005-08-18 18:00:23','2006-02-15 22:12:32'), +(406,15,2,13339,'8.99','2005-08-19 20:18:36','2006-02-15 22:12:32'), +(407,15,1,13393,'5.99','2005-08-19 22:03:46','2006-02-15 22:12:32'), +(408,15,2,13503,'5.99','2005-08-20 02:00:33','2006-02-15 22:12:32'), +(409,15,1,13541,'4.99','2005-08-20 03:41:41','2006-02-15 22:12:32'), +(410,15,2,13677,'3.99','2005-08-20 08:34:41','2006-02-15 22:12:32'), +(411,15,2,14569,'0.99','2005-08-21 16:31:22','2006-02-15 22:12:32'), +(412,15,2,14776,'4.99','2005-08-21 23:53:35','2006-02-15 22:12:32'), +(413,15,2,14872,'8.99','2005-08-22 03:23:41','2006-02-15 22:12:32'), +(414,15,1,15178,'0.99','2005-08-22 15:36:04','2006-02-15 22:12:32'), +(415,15,1,15897,'4.99','2005-08-23 17:12:31','2006-02-15 22:12:32'), +(416,15,1,13798,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:32'), +(417,15,2,13968,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:32'), +(418,16,1,335,'3.99','2005-05-27 03:07:10','2006-02-15 22:12:32'), +(419,16,1,593,'2.99','2005-05-28 13:33:23','2006-02-15 22:12:32'), +(420,16,2,887,'0.99','2005-05-30 07:10:00','2006-02-15 22:12:32'), +(421,16,1,1017,'2.99','2005-05-31 02:53:36','2006-02-15 22:12:32'), +(422,16,2,1934,'6.99','2005-06-17 07:04:57','2006-02-15 22:12:32'), +(423,16,1,1944,'7.99','2005-06-17 07:50:53','2006-02-15 22:12:32'), +(424,16,1,NULL,'1.99','2005-06-18 04:56:12','2006-02-15 22:12:32'), +(425,16,1,2960,'7.99','2005-06-20 07:10:09','2006-02-15 22:12:32'), +(426,16,2,3348,'0.99','2005-06-21 11:16:42','2006-02-15 22:12:32'), +(427,16,1,3548,'0.99','2005-07-06 02:23:39','2006-02-15 22:12:32'), +(428,16,2,4219,'2.99','2005-07-07 12:11:22','2006-02-15 22:12:32'), +(429,16,2,4263,'3.99','2005-07-07 14:24:44','2006-02-15 22:12:32'), +(430,16,2,4517,'4.99','2005-07-08 02:45:19','2006-02-15 22:12:32'), +(431,16,1,6100,'4.99','2005-07-11 06:40:31','2006-02-15 22:12:32'), +(432,16,2,7489,'0.99','2005-07-27 19:39:38','2006-02-15 22:12:32'), +(433,16,2,7552,'2.99','2005-07-27 22:03:41','2006-02-15 22:12:32'), +(434,16,2,8452,'5.99','2005-07-29 07:45:00','2006-02-15 22:12:32'), +(435,16,2,9158,'0.99','2005-07-30 11:12:03','2006-02-15 22:12:32'), +(436,16,2,9610,'5.99','2005-07-31 03:54:05','2006-02-15 22:12:32'), +(437,16,2,10687,'2.99','2005-08-01 17:53:02','2006-02-15 22:12:32'), +(438,16,2,10727,'2.99','2005-08-01 19:15:08','2006-02-15 22:12:32'), +(439,16,2,11308,'0.99','2005-08-02 15:50:44','2006-02-15 22:12:32'), +(440,16,2,12104,'2.99','2005-08-17 22:53:00','2006-02-15 22:12:32'), +(441,16,1,12358,'4.99','2005-08-18 07:41:43','2006-02-15 22:12:32'), +(442,16,1,12577,'7.99','2005-08-18 15:39:46','2006-02-15 22:12:32'), +(443,16,2,13151,'4.99','2005-08-19 13:08:23','2006-02-15 22:12:32'), +(444,16,1,13391,'4.99','2005-08-19 22:01:42','2006-02-15 22:12:32'), +(445,16,1,13480,'6.99','2005-08-20 01:10:27','2006-02-15 22:12:32'), +(446,16,1,14511,'8.99','2005-08-21 14:45:34','2006-02-15 22:12:32'), +(447,17,2,287,'2.99','2005-05-26 19:44:54','2006-02-15 22:12:32'), +(448,17,1,580,'2.99','2005-05-28 11:19:53','2006-02-15 22:12:32'), +(449,17,2,884,'4.99','2005-05-30 06:41:32','2006-02-15 22:12:32'), +(450,17,2,2175,'5.99','2005-06-18 00:17:58','2006-02-15 22:12:32'), +(451,17,1,2684,'8.99','2005-06-19 12:29:08','2006-02-15 22:12:32'), +(452,17,2,3269,'5.99','2005-06-21 05:06:30','2006-02-15 22:12:32'), +(453,17,1,5714,'3.99','2005-07-10 10:46:57','2006-02-15 22:12:32'), +(454,17,1,5883,'3.99','2005-07-10 19:25:21','2006-02-15 22:12:32'), +(455,17,2,6884,'1.99','2005-07-12 20:52:41','2006-02-15 22:12:32'), +(456,17,2,8076,'8.99','2005-07-28 17:45:58','2006-02-15 22:12:32'), +(457,17,1,8213,'2.99','2005-07-28 23:37:33','2006-02-15 22:12:32'), +(458,17,2,9092,'8.99','2005-07-30 08:30:56','2006-02-15 22:12:32'), +(459,17,1,9138,'2.99','2005-07-30 10:11:52','2006-02-15 22:12:32'), +(460,17,2,9382,'8.99','2005-07-30 19:23:44','2006-02-15 22:12:32'), +(461,17,1,9489,'0.99','2005-07-30 23:43:32','2006-02-15 22:12:32'), +(462,17,2,11990,'4.99','2005-08-17 18:26:22','2006-02-15 22:12:32'), +(463,17,1,13732,'2.99','2005-08-20 10:24:41','2006-02-15 22:12:32'), +(464,17,1,14040,'2.99','2005-08-20 21:43:44','2006-02-15 22:12:32'), +(465,17,2,14326,'2.99','2005-08-21 08:15:41','2006-02-15 22:12:32'), +(466,17,1,14346,'2.99','2005-08-21 08:42:26','2006-02-15 22:12:32'), +(467,17,2,15752,'5.99','2005-08-23 12:41:38','2006-02-15 22:12:32'), +(468,18,1,50,'2.99','2005-05-25 06:44:53','2006-02-15 22:12:32'), +(469,18,1,116,'4.99','2005-05-25 19:27:51','2006-02-15 22:12:32'), +(470,18,1,692,'4.99','2005-05-29 01:32:10','2006-02-15 22:12:32'), +(471,18,2,1451,'5.99','2005-06-15 19:30:18','2006-02-15 22:12:32'), +(472,18,2,1783,'4.99','2005-06-16 19:23:23','2006-02-15 22:12:32'), +(473,18,2,2112,'5.99','2005-06-17 19:52:42','2006-02-15 22:12:32'), +(474,18,1,2990,'8.99','2005-06-20 09:02:51','2006-02-15 22:12:32'), +(475,18,2,4672,'3.99','2005-07-08 10:15:38','2006-02-15 22:12:32'), +(476,18,2,4724,'3.99','2005-07-08 12:46:30','2006-02-15 22:12:32'), +(477,18,2,4923,'3.99','2005-07-08 21:44:39','2006-02-15 22:12:32'), +(478,18,2,6128,'2.99','2005-07-11 08:15:08','2006-02-15 22:12:32'), +(479,18,1,6846,'0.99','2005-07-12 19:20:45','2006-02-15 22:12:32'), +(480,18,2,8122,'2.99','2005-07-28 19:27:37','2006-02-15 22:12:32'), +(481,18,1,8555,'4.99','2005-07-29 11:18:01','2006-02-15 22:12:32'), +(482,18,1,9036,'4.99','2005-07-30 06:18:38','2006-02-15 22:12:32'), +(483,18,2,9114,'4.99','2005-07-30 09:13:21','2006-02-15 22:12:32'), +(484,18,1,10682,'4.99','2005-08-01 17:32:53','2006-02-15 22:12:32'), +(485,18,2,10721,'1.99','2005-08-01 19:05:18','2006-02-15 22:12:32'), +(486,18,2,11094,'4.99','2005-08-02 08:03:02','2006-02-15 22:12:33'), +(487,18,2,11439,'4.99','2005-08-02 20:22:45','2006-02-15 22:12:33'), +(488,18,2,12333,'0.99','2005-08-18 06:51:39','2006-02-15 22:12:33'), +(489,18,2,13490,'0.99','2005-08-20 01:29:29','2006-02-15 22:12:33'), +(490,19,2,18,'0.99','2005-05-25 01:10:47','2006-02-15 22:12:33'), +(491,19,2,110,'9.99','2005-05-25 18:43:49','2006-02-15 22:12:33'), +(492,19,1,179,'6.99','2005-05-26 04:26:06','2006-02-15 22:12:33'), +(493,19,1,337,'2.99','2005-05-27 03:22:30','2006-02-15 22:12:33'), +(494,19,2,591,'2.99','2005-05-28 13:11:04','2006-02-15 22:12:33'), +(495,19,2,696,'2.99','2005-05-29 01:59:10','2006-02-15 22:12:33'), +(496,19,1,2657,'2.99','2005-06-19 10:42:59','2006-02-15 22:12:33'), +(497,19,1,2848,'2.99','2005-06-19 22:55:37','2006-02-15 22:12:33'), +(498,19,2,3423,'2.99','2005-06-21 17:38:02','2006-02-15 22:12:33'), +(499,19,2,3549,'4.99','2005-07-06 02:24:55','2006-02-15 22:12:33'), +(500,19,2,6495,'4.99','2005-07-12 02:57:02','2006-02-15 22:12:33'), +(501,19,1,9157,'5.99','2005-07-30 11:06:23','2006-02-15 22:12:33'), +(502,19,1,9256,'0.99','2005-07-30 14:29:29','2006-02-15 22:12:33'), +(503,19,2,10077,'9.99','2005-07-31 20:01:06','2006-02-15 22:12:33'), +(504,19,1,10176,'7.99','2005-07-31 23:40:35','2006-02-15 22:12:33'), +(505,19,2,11508,'8.99','2005-08-16 23:27:36','2006-02-15 22:12:33'), +(506,19,1,11869,'5.99','2005-08-17 14:10:22','2006-02-15 22:12:33'), +(507,19,1,12211,'9.99','2005-08-18 02:31:18','2006-02-15 22:12:33'), +(508,19,2,12357,'2.99','2005-08-18 07:40:52','2006-02-15 22:12:33'), +(509,19,1,13718,'8.99','2005-08-20 09:53:44','2006-02-15 22:12:33'), +(510,19,2,13804,'8.99','2005-08-20 12:46:32','2006-02-15 22:12:33'), +(511,19,1,14101,'4.99','2005-08-21 00:33:03','2006-02-15 22:12:33'), +(512,19,1,15047,'2.99','2005-08-22 09:57:16','2006-02-15 22:12:33'), +(513,19,2,15529,'0.99','2005-08-23 03:46:47','2006-02-15 22:12:33'), +(514,20,2,202,'2.99','2005-05-26 07:27:36','2006-02-15 22:12:33'), +(515,20,2,497,'6.99','2005-05-28 00:54:39','2006-02-15 22:12:33'), +(516,20,2,546,'1.99','2005-05-28 07:16:25','2006-02-15 22:12:33'), +(517,20,2,1558,'0.99','2005-06-16 02:33:53','2006-02-15 22:12:33'), +(518,20,2,2136,'3.99','2005-06-17 21:16:41','2006-02-15 22:12:33'), +(519,20,2,2343,'4.99','2005-06-18 11:46:26','2006-02-15 22:12:33'), +(520,20,1,3350,'4.99','2005-06-21 11:21:38','2006-02-15 22:12:33'), +(521,20,2,4011,'3.99','2005-07-07 00:48:25','2006-02-15 22:12:33'), +(522,20,1,4407,'2.99','2005-07-07 21:39:45','2006-02-15 22:12:33'), +(523,20,1,5718,'2.99','2005-07-10 11:03:20','2006-02-15 22:12:33'), +(524,20,1,6254,'2.99','2005-07-11 15:10:18','2006-02-15 22:12:33'), +(525,20,2,6267,'6.99','2005-07-11 15:53:00','2006-02-15 22:12:33'), +(526,20,2,7217,'4.99','2005-07-27 09:31:44','2006-02-15 22:12:33'), +(527,20,2,7864,'5.99','2005-07-28 10:06:10','2006-02-15 22:12:33'), +(528,20,2,8127,'2.99','2005-07-28 19:45:19','2006-02-15 22:12:33'), +(529,20,2,9075,'4.99','2005-07-30 07:55:14','2006-02-15 22:12:33'), +(530,20,2,9468,'3.99','2005-07-30 22:53:52','2006-02-15 22:12:33'), +(531,20,2,10284,'4.99','2005-08-01 03:33:19','2006-02-15 22:12:33'), +(532,20,1,10616,'7.99','2005-08-01 14:59:50','2006-02-15 22:12:33'), +(533,20,1,10954,'1.99','2005-08-02 03:30:24','2006-02-15 22:12:33'), +(534,20,1,11821,'0.99','2005-08-17 12:27:55','2006-02-15 22:12:33'), +(535,20,1,12180,'0.99','2005-08-18 01:28:15','2006-02-15 22:12:33'), +(536,20,2,13036,'4.99','2005-08-19 08:48:37','2006-02-15 22:12:33'), +(537,20,1,13137,'4.99','2005-08-19 12:26:32','2006-02-15 22:12:33'), +(538,20,2,13317,'2.99','2005-08-19 19:25:42','2006-02-15 22:12:33'), +(539,20,2,14613,'2.99','2005-08-21 18:03:20','2006-02-15 22:12:33'), +(540,20,2,15057,'6.99','2005-08-22 10:19:58','2006-02-15 22:12:33'), +(541,20,1,15161,'1.99','2005-08-22 14:37:22','2006-02-15 22:12:33'), +(542,20,2,15248,'0.99','2005-08-22 17:53:06','2006-02-15 22:12:33'), +(543,20,1,15460,'2.99','2005-08-23 01:10:42','2006-02-15 22:12:33'), +(544,21,1,260,'3.99','2005-05-26 15:42:20','2006-02-15 22:12:33'), +(545,21,2,463,'3.99','2005-05-27 20:11:47','2006-02-15 22:12:33'), +(546,21,1,570,'0.99','2005-05-28 10:15:04','2006-02-15 22:12:33'), +(547,21,2,2235,'7.99','2005-06-18 04:08:50','2006-02-15 22:12:33'), +(548,21,1,2268,'4.99','2005-06-18 06:13:41','2006-02-15 22:12:33'), +(549,21,1,2393,'2.99','2005-06-18 15:37:55','2006-02-15 22:12:33'), +(550,21,2,2830,'4.99','2005-06-19 21:14:33','2006-02-15 22:12:33'), +(551,21,1,3212,'10.99','2005-06-21 01:04:35','2006-02-15 22:12:33'), +(552,21,2,5107,'4.99','2005-07-09 06:42:32','2006-02-15 22:12:33'), +(553,21,1,5772,'3.99','2005-07-10 13:27:40','2006-02-15 22:12:33'), +(554,21,1,5961,'2.99','2005-07-10 23:43:23','2006-02-15 22:12:33'), +(555,21,2,6943,'1.99','2005-07-26 23:28:13','2006-02-15 22:12:33'), +(556,21,1,7994,'0.99','2005-07-28 14:56:54','2006-02-15 22:12:33'), +(557,21,2,8196,'6.99','2005-07-28 22:56:11','2006-02-15 22:12:33'), +(558,21,2,8862,'2.99','2005-07-29 23:49:23','2006-02-15 22:12:33'), +(559,21,2,9149,'0.99','2005-07-30 10:45:12','2006-02-15 22:12:33'), +(560,21,1,9699,'5.99','2005-07-31 07:29:25','2006-02-15 22:12:33'), +(561,21,2,10570,'4.99','2005-08-01 13:23:06','2006-02-15 22:12:33'), +(562,21,1,10734,'0.99','2005-08-01 19:28:47','2006-02-15 22:12:33'), +(563,21,2,11072,'0.99','2005-08-02 07:10:57','2006-02-15 22:12:33'), +(564,21,2,11970,'0.99','2005-08-17 17:53:09','2006-02-15 22:12:33'), +(565,21,2,12131,'2.99','2005-08-17 23:34:16','2006-02-15 22:12:33'), +(566,21,2,12660,'4.99','2005-08-18 19:07:23','2006-02-15 22:12:33'), +(567,21,1,12774,'6.99','2005-08-18 23:34:22','2006-02-15 22:12:33'), +(568,21,1,13381,'2.99','2005-08-19 21:37:57','2006-02-15 22:12:33'), +(569,21,2,13399,'4.99','2005-08-19 22:09:28','2006-02-15 22:12:33'), +(570,21,1,13411,'4.99','2005-08-19 22:43:38','2006-02-15 22:12:33'), +(571,21,1,13463,'8.99','2005-08-20 00:50:54','2006-02-15 22:12:33'), +(572,21,1,13699,'9.99','2005-08-20 09:26:14','2006-02-15 22:12:33'), +(573,21,1,13740,'4.99','2005-08-20 10:48:43','2006-02-15 22:12:33'), +(574,21,2,14077,'8.99','2005-08-20 23:24:07','2006-02-15 22:12:33'), +(575,21,2,14161,'2.99','2005-08-21 02:51:59','2006-02-15 22:12:33'), +(576,21,2,14446,'2.99','2005-08-21 12:10:41','2006-02-15 22:12:33'), +(577,21,1,14869,'4.99','2005-08-22 03:20:26','2006-02-15 22:12:33'), +(578,21,1,14933,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:33'), +(579,22,1,370,'4.99','2005-05-27 07:49:43','2006-02-15 22:12:33'), +(580,22,1,556,'4.99','2005-05-28 08:31:36','2006-02-15 22:12:33'), +(581,22,2,820,'8.99','2005-05-29 21:07:22','2006-02-15 22:12:33'), +(582,22,1,3419,'2.99','2005-06-21 17:18:01','2006-02-15 22:12:33'), +(583,22,2,4215,'2.99','2005-07-07 12:00:52','2006-02-15 22:12:33'), +(584,22,1,5294,'6.99','2005-07-09 15:23:42','2006-02-15 22:12:33'), +(585,22,1,5815,'2.99','2005-07-10 15:48:19','2006-02-15 22:12:33'), +(586,22,1,7087,'4.99','2005-07-27 04:42:08','2006-02-15 22:12:33'), +(587,22,1,7705,'7.99','2005-07-28 04:02:58','2006-02-15 22:12:33'), +(588,22,2,9410,'0.99','2005-07-30 20:38:05','2006-02-15 22:12:33'), +(589,22,1,9580,'4.99','2005-07-31 03:01:11','2006-02-15 22:12:33'), +(590,22,1,12023,'5.99','2005-08-17 19:54:54','2006-02-15 22:12:33'), +(591,22,1,12124,'2.99','2005-08-17 23:22:46','2006-02-15 22:12:33'), +(592,22,2,12809,'0.99','2005-08-19 00:42:24','2006-02-15 22:12:33'), +(593,22,2,13060,'9.99','2005-08-19 09:43:25','2006-02-15 22:12:33'), +(594,22,1,14056,'2.99','2005-08-20 22:18:53','2006-02-15 22:12:33'), +(595,22,1,14564,'6.99','2005-08-21 16:24:43','2006-02-15 22:12:33'), +(596,22,1,15134,'7.99','2005-08-22 13:18:25','2006-02-15 22:12:33'), +(597,22,1,15589,'6.99','2005-08-23 06:03:31','2006-02-15 22:12:33'), +(598,22,1,15658,'4.99','2005-08-23 08:48:43','2006-02-15 22:12:33'), +(599,22,1,15793,'4.99','2005-08-23 14:06:19','2006-02-15 22:12:33'), +(600,22,1,12222,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:33'), +(601,23,1,129,'8.99','2005-05-25 21:20:03','2006-02-15 22:12:33'), +(602,23,1,654,'2.99','2005-05-28 20:15:30','2006-02-15 22:12:33'), +(603,23,2,1090,'0.99','2005-05-31 12:03:44','2006-02-15 22:12:33'), +(604,23,1,2753,'1.99','2005-06-19 16:44:35','2006-02-15 22:12:33'), +(605,23,1,2827,'0.99','2005-06-19 20:50:01','2006-02-15 22:12:33'), +(606,23,1,3015,'5.99','2005-06-20 10:48:56','2006-02-15 22:12:33'), +(607,23,1,3055,'4.99','2005-06-20 13:19:58','2006-02-15 22:12:33'), +(608,23,1,3461,'2.99','2005-06-21 21:49:18','2006-02-15 22:12:34'), +(609,23,2,3736,'3.99','2005-07-06 11:43:44','2006-02-15 22:12:34'), +(610,23,2,3781,'2.99','2005-07-06 13:53:41','2006-02-15 22:12:34'), +(611,23,2,4853,'2.99','2005-07-08 18:43:18','2006-02-15 22:12:34'), +(612,23,1,6213,'2.99','2005-07-11 12:43:07','2006-02-15 22:12:34'), +(613,23,1,6238,'2.99','2005-07-11 14:20:18','2006-02-15 22:12:34'), +(614,23,2,6917,'5.99','2005-07-12 22:30:15','2006-02-15 22:12:34'), +(615,23,1,7155,'7.99','2005-07-27 07:18:46','2006-02-15 22:12:34'), +(616,23,1,8015,'2.99','2005-07-28 15:33:03','2006-02-15 22:12:34'), +(617,23,2,8718,'0.99','2005-07-29 17:41:14','2006-02-15 22:12:34'), +(618,23,2,9209,'5.99','2005-07-30 12:55:36','2006-02-15 22:12:34'), +(619,23,2,9255,'9.99','2005-07-30 14:26:46','2006-02-15 22:12:34'), +(620,23,2,9718,'3.99','2005-07-31 08:25:03','2006-02-15 22:12:34'), +(621,23,1,10132,'6.99','2005-07-31 21:50:24','2006-02-15 22:12:34'), +(622,23,1,10898,'2.99','2005-08-02 01:29:57','2006-02-15 22:12:34'), +(623,23,2,11501,'2.99','2005-08-16 23:04:53','2006-02-15 22:12:34'), +(624,23,2,13290,'2.99','2005-08-19 18:31:50','2006-02-15 22:12:34'), +(625,23,2,13331,'4.99','2005-08-19 20:00:25','2006-02-15 22:12:34'), +(626,23,2,13429,'6.99','2005-08-19 23:25:37','2006-02-15 22:12:34'), +(627,23,2,13511,'0.99','2005-08-20 02:21:40','2006-02-15 22:12:34'), +(628,23,2,13557,'0.99','2005-08-20 04:12:41','2006-02-15 22:12:34'), +(629,23,2,14482,'2.99','2005-08-21 13:42:45','2006-02-15 22:12:34'), +(630,23,2,15532,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:34'), +(631,24,2,1007,'6.99','2005-05-31 01:02:28','2006-02-15 22:12:34'), +(632,24,2,1077,'2.99','2005-05-31 10:22:54','2006-02-15 22:12:34'), +(633,24,1,1716,'2.99','2005-06-16 14:39:31','2006-02-15 22:12:34'), +(634,24,1,2070,'2.99','2005-06-17 16:27:51','2006-02-15 22:12:34'), +(635,24,2,2116,'4.99','2005-06-17 20:16:12','2006-02-15 22:12:34'), +(636,24,1,2451,'5.99','2005-06-18 19:28:02','2006-02-15 22:12:34'), +(637,24,2,2963,'7.99','2005-06-20 07:33:09','2006-02-15 22:12:34'), +(638,24,2,3649,'7.99','2005-07-06 07:32:42','2006-02-15 22:12:34'), +(639,24,2,4378,'2.99','2005-07-07 20:29:08','2006-02-15 22:12:34'), +(640,24,1,5310,'0.99','2005-07-09 16:00:34','2006-02-15 22:12:34'), +(641,24,2,5648,'0.99','2005-07-10 07:09:21','2006-02-15 22:12:34'), +(642,24,1,6855,'4.99','2005-07-12 19:46:29','2006-02-15 22:12:34'), +(643,24,1,7266,'1.99','2005-07-27 11:22:17','2006-02-15 22:12:34'), +(644,24,1,8947,'4.99','2005-07-30 03:15:37','2006-02-15 22:12:34'), +(645,24,1,9723,'0.99','2005-07-31 08:31:18','2006-02-15 22:12:34'), +(646,24,2,9925,'0.99','2005-07-31 15:08:47','2006-02-15 22:12:34'), +(647,24,2,10491,'2.99','2005-08-01 10:38:27','2006-02-15 22:12:34'), +(648,24,1,11209,'2.99','2005-08-02 12:09:45','2006-02-15 22:12:34'), +(649,24,2,11546,'2.99','2005-08-17 00:57:36','2006-02-15 22:12:34'), +(650,24,2,12165,'8.99','2005-08-18 00:53:37','2006-02-15 22:12:34'), +(651,24,1,12745,'2.99','2005-08-18 22:22:45','2006-02-15 22:12:34'), +(652,24,1,12999,'1.99','2005-08-19 07:34:53','2006-02-15 22:12:34'), +(653,24,2,13058,'4.99','2005-08-19 09:40:53','2006-02-15 22:12:34'), +(654,24,1,13247,'0.99','2005-08-19 16:45:59','2006-02-15 22:12:34'), +(655,24,2,15357,'4.99','2005-08-22 21:28:59','2006-02-15 22:12:34'), +(656,25,1,90,'7.99','2005-05-25 14:31:25','2006-02-15 22:12:34'), +(657,25,2,1033,'2.99','2005-05-31 04:50:07','2006-02-15 22:12:34'), +(658,25,1,1338,'4.99','2005-06-15 12:17:34','2006-02-15 22:12:34'), +(659,25,1,1365,'2.99','2005-06-15 14:09:55','2006-02-15 22:12:34'), +(660,25,2,1754,'6.99','2005-06-16 17:13:23','2006-02-15 22:12:34'), +(661,25,2,2625,'8.99','2005-06-19 08:23:11','2006-02-15 22:12:34'), +(662,25,1,2901,'4.99','2005-06-20 02:41:28','2006-02-15 22:12:34'), +(663,25,1,3447,'4.99','2005-06-21 20:53:31','2006-02-15 22:12:34'), +(664,25,1,4282,'2.99','2005-07-07 15:26:31','2006-02-15 22:12:34'), +(665,25,1,4319,'0.99','2005-07-07 17:50:27','2006-02-15 22:12:34'), +(666,25,2,4404,'2.99','2005-07-07 21:31:53','2006-02-15 22:12:34'), +(667,25,1,5881,'2.99','2005-07-10 19:19:43','2006-02-15 22:12:34'), +(668,25,1,6653,'4.99','2005-07-12 11:06:17','2006-02-15 22:12:34'), +(669,25,2,6905,'2.99','2005-07-12 22:02:18','2006-02-15 22:12:34'), +(670,25,2,8667,'2.99','2005-07-29 15:40:57','2006-02-15 22:12:34'), +(671,25,2,8878,'0.99','2005-07-30 00:15:57','2006-02-15 22:12:34'), +(672,25,1,9140,'8.99','2005-07-30 10:12:01','2006-02-15 22:12:34'), +(673,25,2,9334,'2.99','2005-07-30 17:56:38','2006-02-15 22:12:34'), +(674,25,2,9922,'2.99','2005-07-31 14:59:37','2006-02-15 22:12:34'), +(675,25,2,10103,'2.99','2005-07-31 20:49:13','2006-02-15 22:12:34'), +(676,25,1,10324,'5.99','2005-08-01 04:49:06','2006-02-15 22:12:34'), +(677,25,2,10860,'2.99','2005-08-02 00:12:32','2006-02-15 22:12:34'), +(678,25,1,10916,'2.99','2005-08-02 02:05:59','2006-02-15 22:12:34'), +(679,25,1,11642,'0.99','2005-08-17 04:48:05','2006-02-15 22:12:34'), +(680,25,1,12922,'0.99','2005-08-19 04:48:48','2006-02-15 22:12:34'), +(681,25,1,14193,'4.99','2005-08-21 03:38:27','2006-02-15 22:12:34'), +(682,25,1,14236,'4.99','2005-08-21 05:13:16','2006-02-15 22:12:34'), +(683,25,1,15512,'0.99','2005-08-23 02:57:30','2006-02-15 22:12:34'), +(684,25,1,15972,'5.99','2005-08-23 20:00:30','2006-02-15 22:12:34'), +(685,26,1,796,'2.99','2005-05-29 16:59:44','2006-02-15 22:12:34'), +(686,26,2,1105,'2.99','2005-05-31 14:33:56','2006-02-15 22:12:34'), +(687,26,1,1440,'5.99','2005-06-15 18:53:14','2006-02-15 22:12:34'), +(688,26,2,1706,'4.99','2005-06-16 14:01:02','2006-02-15 22:12:34'), +(689,26,1,2093,'9.99','2005-06-17 18:14:08','2006-02-15 22:12:34'), +(690,26,2,2416,'3.99','2005-06-18 17:07:34','2006-02-15 22:12:34'), +(691,26,2,2421,'6.99','2005-06-18 17:25:05','2006-02-15 22:12:34'), +(692,26,1,2532,'4.99','2005-06-19 01:27:46','2006-02-15 22:12:34'), +(693,26,1,2745,'4.99','2005-06-19 16:21:19','2006-02-15 22:12:34'), +(694,26,1,4065,'2.99','2005-07-07 04:32:28','2006-02-15 22:12:34'), +(695,26,1,4274,'4.99','2005-07-07 14:42:04','2006-02-15 22:12:34'), +(696,26,1,4382,'4.99','2005-07-07 20:41:03','2006-02-15 22:12:34'), +(697,26,2,4402,'0.99','2005-07-07 21:28:46','2006-02-15 22:12:34'), +(698,26,1,4431,'6.99','2005-07-07 22:39:02','2006-02-15 22:12:34'), +(699,26,1,4536,'3.99','2005-07-08 03:43:22','2006-02-15 22:12:34'), +(700,26,1,4641,'6.99','2005-07-08 09:09:46','2006-02-15 22:12:34'), +(701,26,1,5437,'2.99','2005-07-09 21:32:29','2006-02-15 22:12:34'), +(702,26,1,6149,'1.99','2005-07-11 09:19:31','2006-02-15 22:12:34'), +(703,26,2,6243,'2.99','2005-07-11 14:53:25','2006-02-15 22:12:34'), +(704,26,2,7328,'0.99','2005-07-27 13:55:18','2006-02-15 22:12:34'), +(705,26,1,8241,'4.99','2005-07-29 00:33:36','2006-02-15 22:12:34'), +(706,26,1,9484,'0.99','2005-07-30 23:31:40','2006-02-15 22:12:34'), +(707,26,1,10386,'3.99','2005-08-01 06:42:20','2006-02-15 22:12:34'), +(708,26,1,10996,'3.99','2005-08-02 04:48:11','2006-02-15 22:12:34'), +(709,26,2,11314,'2.99','2005-08-02 16:04:08','2006-02-15 22:12:34'), +(710,26,1,11338,'0.99','2005-08-02 17:00:12','2006-02-15 22:12:34'), +(711,26,1,11744,'5.99','2005-08-17 08:54:30','2006-02-15 22:12:34'), +(712,26,2,13111,'4.99','2005-08-19 11:25:10','2006-02-15 22:12:34'), +(713,26,2,14183,'4.99','2005-08-21 03:24:29','2006-02-15 22:12:34'), +(714,26,2,14192,'8.99','2005-08-21 03:37:42','2006-02-15 22:12:34'), +(715,26,2,14603,'1.99','2005-08-21 17:51:06','2006-02-15 22:12:34'), +(716,26,1,14677,'7.99','2005-08-21 20:12:30','2006-02-15 22:12:34'), +(717,26,1,15384,'2.99','2005-08-22 22:34:44','2006-02-15 22:12:34'), +(718,26,1,15722,'7.99','2005-08-23 11:16:29','2006-02-15 22:12:34'), +(719,27,2,787,'2.99','2005-05-29 16:03:03','2006-02-15 22:12:34'), +(720,27,1,1310,'4.99','2005-06-15 10:11:42','2006-02-15 22:12:35'), +(721,27,2,1480,'4.99','2005-06-15 21:17:17','2006-02-15 22:12:35'), +(722,27,2,1699,'2.99','2005-06-16 13:05:09','2006-02-15 22:12:35'), +(723,27,2,1960,'3.99','2005-06-17 08:59:57','2006-02-15 22:12:35'), +(724,27,2,2512,'2.99','2005-06-18 23:48:47','2006-02-15 22:12:35'), +(725,27,1,2815,'4.99','2005-06-19 20:03:29','2006-02-15 22:12:35'), +(726,27,1,3038,'1.99','2005-06-20 12:28:59','2006-02-15 22:12:35'), +(727,27,2,3420,'3.99','2005-06-21 17:22:36','2006-02-15 22:12:35'), +(728,27,2,4038,'0.99','2005-07-07 02:52:53','2006-02-15 22:12:35'), +(729,27,1,4510,'5.99','2005-07-08 02:34:51','2006-02-15 22:12:35'), +(730,27,1,5552,'0.99','2005-07-10 03:01:19','2006-02-15 22:12:35'), +(731,27,1,5736,'4.99','2005-07-10 11:45:48','2006-02-15 22:12:35'), +(732,27,2,6115,'0.99','2005-07-11 07:36:50','2006-02-15 22:12:35'), +(733,27,2,6562,'5.99','2005-07-12 05:26:26','2006-02-15 22:12:35'), +(734,27,2,6658,'4.99','2005-07-12 11:13:21','2006-02-15 22:12:35'), +(735,27,1,7927,'1.99','2005-07-28 12:13:42','2006-02-15 22:12:35'), +(736,27,2,9244,'0.99','2005-07-30 14:06:53','2006-02-15 22:12:35'), +(737,27,2,9636,'5.99','2005-07-31 05:12:59','2006-02-15 22:12:35'), +(738,27,1,9673,'7.99','2005-07-31 06:34:55','2006-02-15 22:12:35'), +(739,27,1,9908,'4.99','2005-07-31 14:39:52','2006-02-15 22:12:35'), +(740,27,1,10794,'7.99','2005-08-01 21:51:15','2006-02-15 22:12:35'), +(741,27,1,10852,'4.99','2005-08-02 00:00:33','2006-02-15 22:12:35'), +(742,27,1,11234,'0.99','2005-08-02 13:12:17','2006-02-15 22:12:35'), +(743,27,1,11661,'8.99','2005-08-17 05:25:57','2006-02-15 22:12:35'), +(744,27,2,11740,'6.99','2005-08-17 08:48:31','2006-02-15 22:12:35'), +(745,27,2,12021,'5.99','2005-08-17 19:52:43','2006-02-15 22:12:35'), +(746,27,2,12461,'0.99','2005-08-18 11:28:14','2006-02-15 22:12:35'), +(747,27,1,12531,'2.99','2005-08-18 13:57:50','2006-02-15 22:12:35'), +(748,27,2,13816,'4.99','2005-08-20 13:13:56','2006-02-15 22:12:35'), +(749,27,1,15048,'0.99','2005-08-22 10:00:04','2006-02-15 22:12:35'), +(750,28,2,388,'2.99','2005-05-27 10:37:27','2006-02-15 22:12:35'), +(751,28,1,868,'2.99','2005-05-30 04:19:55','2006-02-15 22:12:35'), +(752,28,2,1240,'2.99','2005-06-15 04:58:07','2006-02-15 22:12:35'), +(753,28,1,1543,'4.99','2005-06-16 01:24:08','2006-02-15 22:12:35'), +(754,28,2,2299,'3.99','2005-06-18 08:18:52','2006-02-15 22:12:35'), +(755,28,2,2604,'0.99','2005-06-19 06:30:10','2006-02-15 22:12:35'), +(756,28,1,3231,'0.99','2005-06-21 02:25:00','2006-02-15 22:12:35'), +(757,28,1,3845,'0.99','2005-07-06 16:38:14','2006-02-15 22:12:35'), +(758,28,2,4704,'0.99','2005-07-08 11:45:35','2006-02-15 22:12:35'), +(759,28,2,4951,'4.99','2005-07-08 22:58:21','2006-02-15 22:12:35'), +(760,28,2,5653,'2.99','2005-07-10 07:21:27','2006-02-15 22:12:35'), +(761,28,1,5817,'5.99','2005-07-10 15:49:12','2006-02-15 22:12:35'), +(762,28,2,6032,'0.99','2005-07-11 02:49:01','2006-02-15 22:12:35'), +(763,28,2,6476,'0.99','2005-07-12 01:37:48','2006-02-15 22:12:35'), +(764,28,1,7580,'9.99','2005-07-27 23:07:40','2006-02-15 22:12:35'), +(765,28,1,8464,'4.99','2005-07-29 08:18:20','2006-02-15 22:12:35'), +(766,28,1,8901,'2.99','2005-07-30 01:07:12','2006-02-15 22:12:35'), +(767,28,2,9544,'2.99','2005-07-31 01:44:51','2006-02-15 22:12:35'), +(768,28,2,9593,'4.99','2005-07-31 03:22:30','2006-02-15 22:12:35'), +(769,28,2,9705,'4.99','2005-07-31 07:40:33','2006-02-15 22:12:35'), +(770,28,2,10116,'2.99','2005-07-31 21:14:02','2006-02-15 22:12:35'), +(771,28,2,10294,'6.99','2005-08-01 03:48:12','2006-02-15 22:12:35'), +(772,28,1,11444,'2.99','2005-08-02 20:32:55','2006-02-15 22:12:35'), +(773,28,1,11856,'3.99','2005-08-17 13:44:49','2006-02-15 22:12:35'), +(774,28,2,12190,'2.99','2005-08-18 01:54:44','2006-02-15 22:12:35'), +(775,28,1,12359,'0.99','2005-08-18 07:44:05','2006-02-15 22:12:35'), +(776,28,1,12708,'2.99','2005-08-18 20:59:17','2006-02-15 22:12:35'), +(777,28,2,13783,'4.99','2005-08-20 12:11:03','2006-02-15 22:12:35'), +(778,28,2,14540,'2.99','2005-08-21 15:34:23','2006-02-15 22:12:35'), +(779,28,1,15445,'4.99','2005-08-23 00:48:29','2006-02-15 22:12:35'), +(780,28,1,15491,'2.99','2005-08-23 02:08:40','2006-02-15 22:12:35'), +(781,28,2,12938,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:35'), +(782,29,2,194,'1.99','2005-05-26 06:52:33','2006-02-15 22:12:35'), +(783,29,1,2655,'0.99','2005-06-19 10:38:42','2006-02-15 22:12:35'), +(784,29,1,2673,'0.99','2005-06-19 11:42:20','2006-02-15 22:12:35'), +(785,29,1,2701,'7.99','2005-06-19 13:33:06','2006-02-15 22:12:35'), +(786,29,1,2735,'2.99','2005-06-19 15:42:07','2006-02-15 22:12:35'), +(787,29,2,2801,'2.99','2005-06-19 19:18:09','2006-02-15 22:12:35'), +(788,29,2,2923,'2.99','2005-06-20 04:16:07','2006-02-15 22:12:35'), +(789,29,1,3324,'2.99','2005-06-21 08:49:16','2006-02-15 22:12:35'), +(790,29,2,4262,'6.99','2005-07-07 14:24:30','2006-02-15 22:12:35'), +(791,29,1,4313,'0.99','2005-07-07 17:36:56','2006-02-15 22:12:35'), +(792,29,2,4535,'0.99','2005-07-08 03:40:46','2006-02-15 22:12:35'), +(793,29,2,5442,'10.99','2005-07-09 21:55:19','2006-02-15 22:12:35'), +(794,29,1,5857,'1.99','2005-07-10 17:59:29','2006-02-15 22:12:35'), +(795,29,2,7237,'3.99','2005-07-27 10:12:36','2006-02-15 22:12:35'), +(796,29,1,7451,'6.99','2005-07-27 18:18:41','2006-02-15 22:12:35'), +(797,29,1,7453,'0.99','2005-07-27 18:27:13','2006-02-15 22:12:35'), +(798,29,2,8673,'2.99','2005-07-29 15:50:14','2006-02-15 22:12:35'), +(799,29,2,9392,'4.99','2005-07-30 19:50:13','2006-02-15 22:12:35'), +(800,29,1,9946,'4.99','2005-07-31 15:48:54','2006-02-15 22:12:35'), +(801,29,1,10543,'5.99','2005-08-01 12:36:09','2006-02-15 22:12:35'), +(802,29,2,10899,'1.99','2005-08-02 01:30:21','2006-02-15 22:12:35'), +(803,29,1,11079,'4.99','2005-08-02 07:29:10','2006-02-15 22:12:35'), +(804,29,2,11962,'2.99','2005-08-17 17:34:38','2006-02-15 22:12:35'), +(805,29,1,12488,'4.99','2005-08-18 12:48:22','2006-02-15 22:12:35'), +(806,29,1,12508,'2.99','2005-08-18 13:20:13','2006-02-15 22:12:35'), +(807,29,2,12569,'6.99','2005-08-18 15:20:46','2006-02-15 22:12:35'), +(808,29,2,12615,'6.99','2005-08-18 17:16:07','2006-02-15 22:12:35'), +(809,29,2,13173,'2.99','2005-08-19 13:50:36','2006-02-15 22:12:35'), +(810,29,1,13436,'0.99','2005-08-19 23:36:25','2006-02-15 22:12:35'), +(811,29,2,13777,'2.99','2005-08-20 12:03:35','2006-02-15 22:12:35'), +(812,29,1,13832,'3.99','2005-08-20 14:00:25','2006-02-15 22:12:35'), +(813,29,1,14174,'0.99','2005-08-21 03:01:45','2006-02-15 22:12:35'), +(814,29,1,14703,'4.99','2005-08-21 21:01:19','2006-02-15 22:12:35'), +(815,29,1,14985,'7.99','2005-08-22 07:35:56','2006-02-15 22:12:35'), +(816,29,1,14997,'5.99','2005-08-22 07:53:00','2006-02-15 22:12:35'), +(817,29,2,15577,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:35'), +(818,30,2,1874,'1.99','2005-06-17 02:39:20','2006-02-15 22:12:35'), +(819,30,2,1895,'2.99','2005-06-17 04:25:12','2006-02-15 22:12:35'), +(820,30,2,2154,'4.99','2005-06-17 22:59:42','2006-02-15 22:12:35'), +(821,30,2,2730,'2.99','2005-06-19 15:10:09','2006-02-15 22:12:35'), +(822,30,1,3964,'4.99','2005-07-06 22:23:02','2006-02-15 22:12:35'), +(823,30,2,4471,'2.99','2005-07-08 00:21:29','2006-02-15 22:12:35'), +(824,30,2,4642,'2.99','2005-07-08 09:13:28','2006-02-15 22:12:35'), +(825,30,2,5028,'5.99','2005-07-09 02:34:45','2006-02-15 22:12:36'), +(826,30,1,5108,'9.99','2005-07-09 06:44:30','2006-02-15 22:12:36'), +(827,30,1,5289,'0.99','2005-07-09 15:14:08','2006-02-15 22:12:36'), +(828,30,2,5972,'7.99','2005-07-11 00:08:54','2006-02-15 22:12:36'), +(829,30,1,6249,'0.99','2005-07-11 15:02:02','2006-02-15 22:12:36'), +(830,30,2,6359,'2.99','2005-07-11 21:06:17','2006-02-15 22:12:36'), +(831,30,2,7394,'2.99','2005-07-27 16:03:08','2006-02-15 22:12:36'), +(832,30,2,7769,'4.99','2005-07-28 06:45:23','2006-02-15 22:12:36'), +(833,30,1,8030,'4.99','2005-07-28 16:12:53','2006-02-15 22:12:36'), +(834,30,2,8038,'4.99','2005-07-28 16:32:55','2006-02-15 22:12:36'), +(835,30,1,8083,'4.99','2005-07-28 18:09:48','2006-02-15 22:12:36'), +(836,30,1,8641,'2.99','2005-07-29 14:37:30','2006-02-15 22:12:36'), +(837,30,2,9309,'2.99','2005-07-30 16:55:53','2006-02-15 22:12:36'), +(838,30,2,9551,'0.99','2005-07-31 02:04:58','2006-02-15 22:12:36'), +(839,30,1,9641,'0.99','2005-07-31 05:33:48','2006-02-15 22:12:36'), +(840,30,1,9998,'2.99','2005-07-31 17:40:35','2006-02-15 22:12:36'), +(841,30,1,10235,'6.99','2005-08-01 01:57:48','2006-02-15 22:12:36'), +(842,30,1,12240,'2.99','2005-08-18 03:27:11','2006-02-15 22:12:36'), +(843,30,1,12546,'2.99','2005-08-18 14:29:37','2006-02-15 22:12:36'), +(844,30,2,12758,'0.99','2005-08-18 22:58:34','2006-02-15 22:12:36'), +(845,30,1,13435,'0.99','2005-08-19 23:35:44','2006-02-15 22:12:36'), +(846,30,1,13682,'4.99','2005-08-20 08:50:39','2006-02-15 22:12:36'), +(847,30,1,14339,'0.99','2005-08-21 08:37:15','2006-02-15 22:12:36'), +(848,30,1,14585,'2.99','2005-08-21 17:18:33','2006-02-15 22:12:36'), +(849,30,1,15063,'4.99','2005-08-22 10:39:51','2006-02-15 22:12:36'), +(850,30,1,15544,'4.99','2005-08-23 04:17:56','2006-02-15 22:12:36'), +(851,30,2,15829,'2.99','2005-08-23 15:17:14','2006-02-15 22:12:36'), +(852,31,2,1656,'4.99','2005-06-16 10:05:40','2006-02-15 22:12:36'), +(853,31,1,1838,'1.99','2005-06-16 23:20:16','2006-02-15 22:12:36'), +(854,31,1,2233,'0.99','2005-06-18 03:57:36','2006-02-15 22:12:36'), +(855,31,2,2341,'6.99','2005-06-18 11:35:30','2006-02-15 22:12:36'), +(856,31,1,2396,'7.99','2005-06-18 15:49:48','2006-02-15 22:12:36'), +(857,31,2,2438,'0.99','2005-06-18 18:34:21','2006-02-15 22:12:36'), +(858,31,1,2530,'0.99','2005-06-19 01:20:00','2006-02-15 22:12:36'), +(859,31,2,2648,'4.99','2005-06-19 10:06:20','2006-02-15 22:12:36'), +(860,31,2,3117,'2.99','2005-06-20 18:05:15','2006-02-15 22:12:36'), +(861,31,2,3172,'1.99','2005-06-20 22:19:25','2006-02-15 22:12:36'), +(862,31,1,3205,'0.99','2005-06-21 00:38:47','2006-02-15 22:12:36'), +(863,31,1,3701,'4.99','2005-07-06 10:12:45','2006-02-15 22:12:36'), +(864,31,2,3967,'4.99','2005-07-06 22:45:10','2006-02-15 22:12:36'), +(865,31,1,4122,'6.99','2005-07-07 07:15:35','2006-02-15 22:12:36'), +(866,31,2,4738,'9.99','2005-07-08 13:24:58','2006-02-15 22:12:36'), +(867,31,1,6208,'3.99','2005-07-11 12:34:56','2006-02-15 22:12:36'), +(868,31,2,6580,'4.99','2005-07-12 06:26:10','2006-02-15 22:12:36'), +(869,31,1,7000,'1.99','2005-07-27 01:23:24','2006-02-15 22:12:36'), +(870,31,2,7138,'3.99','2005-07-27 06:47:13','2006-02-15 22:12:36'), +(871,31,2,7178,'2.99','2005-07-27 08:09:25','2006-02-15 22:12:36'), +(872,31,2,7464,'2.99','2005-07-27 18:49:42','2006-02-15 22:12:36'), +(873,31,2,8997,'0.99','2005-07-30 04:53:56','2006-02-15 22:12:36'), +(874,31,2,12085,'4.99','2005-08-17 22:17:09','2006-02-15 22:12:36'), +(875,31,1,12377,'0.99','2005-08-18 08:26:05','2006-02-15 22:12:36'), +(876,31,2,15682,'6.99','2005-08-23 09:37:34','2006-02-15 22:12:36'), +(877,31,2,15816,'6.99','2005-08-23 14:58:06','2006-02-15 22:12:36'), +(878,32,2,483,'4.99','2005-05-27 23:00:25','2006-02-15 22:12:36'), +(879,32,2,803,'4.99','2005-05-29 17:52:30','2006-02-15 22:12:36'), +(880,32,2,1067,'4.99','2005-05-31 09:12:13','2006-02-15 22:12:36'), +(881,32,2,1887,'6.99','2005-06-17 03:53:18','2006-02-15 22:12:36'), +(882,32,2,2160,'0.99','2005-06-17 23:39:11','2006-02-15 22:12:36'), +(883,32,2,2624,'5.99','2005-06-19 08:22:09','2006-02-15 22:12:36'), +(884,32,2,2891,'1.99','2005-06-20 02:02:05','2006-02-15 22:12:36'), +(885,32,1,3500,'2.99','2005-07-06 00:11:13','2006-02-15 22:12:36'), +(886,32,1,4434,'2.99','2005-07-07 22:48:34','2006-02-15 22:12:36'), +(887,32,2,4771,'2.99','2005-07-08 15:33:32','2006-02-15 22:12:36'), +(888,32,2,4899,'0.99','2005-07-08 20:37:11','2006-02-15 22:12:36'), +(889,32,1,5307,'9.99','2005-07-09 15:57:15','2006-02-15 22:12:36'), +(890,32,1,5767,'0.99','2005-07-10 13:13:18','2006-02-15 22:12:36'), +(891,32,1,5954,'2.99','2005-07-10 23:22:01','2006-02-15 22:12:36'), +(892,32,1,6122,'3.99','2005-07-11 07:58:07','2006-02-15 22:12:36'), +(893,32,2,6450,'2.99','2005-07-12 00:49:05','2006-02-15 22:12:36'), +(894,32,1,7084,'6.99','2005-07-27 04:34:07','2006-02-15 22:12:36'), +(895,32,1,7589,'5.99','2005-07-27 23:23:36','2006-02-15 22:12:36'), +(896,32,1,7793,'2.99','2005-07-28 07:26:14','2006-02-15 22:12:36'), +(897,32,2,8390,'5.99','2005-07-29 05:52:26','2006-02-15 22:12:36'), +(898,32,2,8453,'2.99','2005-07-29 07:46:29','2006-02-15 22:12:36'), +(899,32,2,8914,'2.99','2005-07-30 01:42:03','2006-02-15 22:12:36'), +(900,32,1,11135,'4.99','2005-08-02 09:22:25','2006-02-15 22:12:36'), +(901,32,2,11831,'4.99','2005-08-17 12:54:47','2006-02-15 22:12:36'), +(902,32,2,12414,'9.99','2005-08-18 09:50:40','2006-02-15 22:12:36'), +(903,32,1,13736,'8.99','2005-08-20 10:31:23','2006-02-15 22:12:36'), +(904,32,1,13931,'1.99','2005-08-20 17:16:10','2006-02-15 22:12:36'), +(905,32,1,14075,'0.99','2005-08-20 23:18:54','2006-02-15 22:12:36'), +(906,32,2,14570,'5.99','2005-08-21 16:32:32','2006-02-15 22:12:36'), +(907,33,1,165,'2.99','2005-05-26 02:28:36','2006-02-15 22:12:36'), +(908,33,1,1301,'10.99','2005-06-15 09:46:33','2006-02-15 22:12:36'), +(909,33,2,3173,'8.99','2005-06-20 22:21:10','2006-02-15 22:12:36'), +(910,33,1,4095,'5.99','2005-07-07 06:01:48','2006-02-15 22:12:36'), +(911,33,1,5421,'0.99','2005-07-09 20:49:12','2006-02-15 22:12:36'), +(912,33,1,5723,'4.99','2005-07-10 11:14:48','2006-02-15 22:12:36'), +(913,33,2,6280,'0.99','2005-07-11 16:36:17','2006-02-15 22:12:36'), +(914,33,1,7992,'4.99','2005-07-28 14:53:06','2006-02-15 22:12:36'), +(915,33,1,9040,'4.99','2005-07-30 06:31:45','2006-02-15 22:12:36'), +(916,33,2,9085,'4.99','2005-07-30 08:17:24','2006-02-15 22:12:36'), +(917,33,1,9254,'1.99','2005-07-30 14:26:11','2006-02-15 22:12:36'), +(918,33,2,10335,'2.99','2005-08-01 04:59:30','2006-02-15 22:12:36'), +(919,33,1,10870,'4.99','2005-08-02 00:27:12','2006-02-15 22:12:36'), +(920,33,1,13241,'7.99','2005-08-19 16:25:00','2006-02-15 22:12:36'), +(921,33,1,13858,'2.99','2005-08-20 14:50:57','2006-02-15 22:12:36'), +(922,33,1,13958,'7.99','2005-08-20 18:11:44','2006-02-15 22:12:36'), +(923,33,1,14002,'0.99','2005-08-20 20:12:19','2006-02-15 22:12:36'), +(924,33,1,14623,'0.99','2005-08-21 18:29:13','2006-02-15 22:12:36'), +(925,33,1,15096,'5.99','2005-08-22 11:43:04','2006-02-15 22:12:36'), +(926,33,2,15115,'2.99','2005-08-22 12:28:01','2006-02-15 22:12:36'), +(927,33,1,12277,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:36'), +(928,34,1,1900,'4.99','2005-06-17 04:29:58','2006-02-15 22:12:36'), +(929,34,2,2257,'5.99','2005-06-18 05:29:52','2006-02-15 22:12:36'), +(930,34,1,3150,'0.99','2005-06-20 20:35:28','2006-02-15 22:12:36'), +(931,34,2,3508,'3.99','2005-07-06 00:24:25','2006-02-15 22:12:36'), +(932,34,1,3911,'2.99','2005-07-06 20:09:11','2006-02-15 22:12:36'), +(933,34,1,5188,'4.99','2005-07-09 10:22:31','2006-02-15 22:12:36'), +(934,34,2,5643,'4.99','2005-07-10 06:49:00','2006-02-15 22:12:36'), +(935,34,2,5918,'5.99','2005-07-10 21:32:06','2006-02-15 22:12:36'), +(936,34,2,7015,'2.99','2005-07-27 02:15:01','2006-02-15 22:12:36'), +(937,34,2,7124,'2.99','2005-07-27 06:09:30','2006-02-15 22:12:36'), +(938,34,1,7532,'0.99','2005-07-27 21:20:52','2006-02-15 22:12:36'), +(939,34,1,9160,'3.99','2005-07-30 11:17:33','2006-02-15 22:12:37'), +(940,34,1,10523,'0.99','2005-08-01 11:52:32','2006-02-15 22:12:37'), +(941,34,1,10615,'4.99','2005-08-01 14:58:14','2006-02-15 22:12:37'), +(942,34,2,11096,'0.99','2005-08-02 08:05:19','2006-02-15 22:12:37'), +(943,34,1,11505,'2.99','2005-08-16 23:18:47','2006-02-15 22:12:37'), +(944,34,2,11701,'4.99','2005-08-17 07:15:47','2006-02-15 22:12:37'), +(945,34,2,12286,'2.99','2005-08-18 04:57:59','2006-02-15 22:12:37'), +(946,34,1,12599,'2.99','2005-08-18 16:42:45','2006-02-15 22:12:37'), +(947,34,1,12651,'0.99','2005-08-18 18:36:16','2006-02-15 22:12:37'), +(948,34,1,13371,'4.99','2005-08-19 21:21:47','2006-02-15 22:12:37'), +(949,34,2,13949,'2.99','2005-08-20 17:55:13','2006-02-15 22:12:37'), +(950,34,1,14686,'5.99','2005-08-21 20:32:08','2006-02-15 22:12:37'), +(951,34,2,14701,'7.99','2005-08-21 20:54:32','2006-02-15 22:12:37'), +(952,35,2,47,'3.99','2005-05-25 06:05:20','2006-02-15 22:12:37'), +(953,35,1,424,'6.99','2005-05-27 15:34:01','2006-02-15 22:12:37'), +(954,35,1,1579,'0.99','2005-06-16 04:09:08','2006-02-15 22:12:37'), +(955,35,1,1989,'2.99','2005-06-17 10:47:24','2006-02-15 22:12:37'), +(956,35,1,2229,'4.99','2005-06-18 03:50:18','2006-02-15 22:12:37'), +(957,35,1,2231,'0.99','2005-06-18 03:52:14','2006-02-15 22:12:37'), +(958,35,1,2743,'2.99','2005-06-19 16:15:56','2006-02-15 22:12:37'), +(959,35,2,3112,'4.99','2005-06-20 17:53:30','2006-02-15 22:12:37'), +(960,35,2,3597,'2.99','2005-07-06 05:03:59','2006-02-15 22:12:37'), +(961,35,2,4098,'4.99','2005-07-07 06:14:51','2006-02-15 22:12:37'), +(962,35,2,4990,'0.99','2005-07-09 00:48:49','2006-02-15 22:12:37'), +(963,35,1,5013,'2.99','2005-07-09 01:46:45','2006-02-15 22:12:37'), +(964,35,2,5323,'0.99','2005-07-09 16:34:07','2006-02-15 22:12:37'), +(965,35,1,5916,'5.99','2005-07-10 21:26:31','2006-02-15 22:12:37'), +(966,35,1,5963,'0.99','2005-07-10 23:47:08','2006-02-15 22:12:37'), +(967,35,1,6147,'5.99','2005-07-11 09:13:08','2006-02-15 22:12:37'), +(968,35,1,6401,'4.99','2005-07-11 22:44:34','2006-02-15 22:12:37'), +(969,35,1,6565,'4.99','2005-07-12 05:39:50','2006-02-15 22:12:37'), +(970,35,1,6572,'4.99','2005-07-12 05:56:38','2006-02-15 22:12:37'), +(971,35,1,7140,'4.99','2005-07-27 06:54:12','2006-02-15 22:12:37'), +(972,35,1,8822,'6.99','2005-07-29 22:20:21','2006-02-15 22:12:37'), +(973,35,1,8971,'5.99','2005-07-30 04:03:58','2006-02-15 22:12:37'), +(974,35,2,9033,'2.99','2005-07-30 06:07:42','2006-02-15 22:12:37'), +(975,35,1,9579,'6.99','2005-07-31 02:59:20','2006-02-15 22:12:37'), +(976,35,1,11298,'1.99','2005-08-02 15:32:32','2006-02-15 22:12:37'), +(977,35,1,11452,'7.99','2005-08-02 20:59:52','2006-02-15 22:12:37'), +(978,35,1,11645,'4.99','2005-08-17 04:50:56','2006-02-15 22:12:37'), +(979,35,1,12055,'4.99','2005-08-17 21:02:19','2006-02-15 22:12:37'), +(980,35,1,13735,'2.99','2005-08-20 10:31:01','2006-02-15 22:12:37'), +(981,35,1,14110,'0.99','2005-08-21 00:53:09','2006-02-15 22:12:37'), +(982,35,2,14124,'2.99','2005-08-21 01:31:51','2006-02-15 22:12:37'), +(983,35,2,14735,'4.99','2005-08-21 22:25:09','2006-02-15 22:12:37'), +(984,36,1,349,'0.99','2005-05-27 04:53:11','2006-02-15 22:12:37'), +(985,36,1,716,'0.99','2005-05-29 04:35:29','2006-02-15 22:12:37'), +(986,36,2,2741,'0.99','2005-06-19 16:05:41','2006-02-15 22:12:37'), +(987,36,2,4135,'0.99','2005-07-07 08:15:03','2006-02-15 22:12:37'), +(988,36,2,4560,'4.99','2005-07-08 04:58:48','2006-02-15 22:12:37'), +(989,36,2,4762,'4.99','2005-07-08 14:54:42','2006-02-15 22:12:37'), +(990,36,1,5403,'0.99','2005-07-09 20:07:09','2006-02-15 22:12:37'), +(991,36,2,6030,'0.99','2005-07-11 02:37:51','2006-02-15 22:12:37'), +(992,36,1,7205,'6.99','2005-07-27 09:06:13','2006-02-15 22:12:37'), +(993,36,1,7647,'0.99','2005-07-28 01:35:17','2006-02-15 22:12:37'), +(994,36,2,7919,'6.99','2005-07-28 11:59:45','2006-02-15 22:12:37'), +(995,36,2,8099,'0.99','2005-07-28 18:35:12','2006-02-15 22:12:37'), +(996,36,1,8391,'2.99','2005-07-29 05:52:50','2006-02-15 22:12:37'), +(997,36,1,8952,'4.99','2005-07-30 03:20:38','2006-02-15 22:12:37'), +(998,36,1,9369,'2.99','2005-07-30 18:52:19','2006-02-15 22:12:37'), +(999,36,2,9805,'0.99','2005-07-31 11:11:10','2006-02-15 22:12:37'), +(1000,36,2,10525,'2.99','2005-08-01 11:53:17','2006-02-15 22:12:37'), +(1001,36,2,10761,'2.99','2005-08-01 20:25:35','2006-02-15 22:12:37'), +(1002,36,1,10963,'0.99','2005-08-02 03:48:17','2006-02-15 22:12:37'), +(1003,36,2,10964,'6.99','2005-08-02 03:56:23','2006-02-15 22:12:37'), +(1004,36,2,11616,'4.99','2005-08-17 04:00:01','2006-02-15 22:12:37'), +(1005,36,1,11813,'4.99','2005-08-17 12:06:54','2006-02-15 22:12:37'), +(1006,36,2,13562,'2.99','2005-08-20 04:31:45','2006-02-15 22:12:37'), +(1007,36,2,13564,'1.99','2005-08-20 04:34:46','2006-02-15 22:12:37'), +(1008,36,1,13674,'4.99','2005-08-20 08:30:54','2006-02-15 22:12:37'), +(1009,36,1,14647,'9.99','2005-08-21 19:15:33','2006-02-15 22:12:37'), +(1010,36,2,15657,'4.99','2005-08-23 08:42:40','2006-02-15 22:12:37'), +(1011,37,1,25,'0.99','2005-05-25 03:21:20','2006-02-15 22:12:37'), +(1012,37,1,923,'2.99','2005-05-30 11:58:50','2006-02-15 22:12:37'), +(1013,37,1,1583,'4.99','2005-06-16 04:44:23','2006-02-15 22:12:37'), +(1014,37,2,1812,'1.99','2005-06-16 21:08:46','2006-02-15 22:12:37'), +(1015,37,2,1854,'3.99','2005-06-17 00:43:57','2006-02-15 22:12:37'), +(1016,37,2,3472,'7.99','2005-07-05 22:56:33','2006-02-15 22:12:37'), +(1017,37,1,3734,'5.99','2005-07-06 11:40:27','2006-02-15 22:12:37'), +(1018,37,1,5425,'5.99','2005-07-09 21:02:26','2006-02-15 22:12:37'), +(1019,37,2,7939,'0.99','2005-07-28 12:45:47','2006-02-15 22:12:37'), +(1020,37,1,8419,'9.99','2005-07-29 06:54:48','2006-02-15 22:12:37'), +(1021,37,1,9567,'5.99','2005-07-31 02:36:11','2006-02-15 22:12:37'), +(1022,37,1,10538,'2.99','2005-08-01 12:22:41','2006-02-15 22:12:37'), +(1023,37,1,11176,'3.99','2005-08-02 10:39:43','2006-02-15 22:12:37'), +(1024,37,1,13046,'7.99','2005-08-19 09:21:10','2006-02-15 22:12:37'), +(1025,37,2,13147,'4.99','2005-08-19 12:55:09','2006-02-15 22:12:37'), +(1026,37,2,13444,'0.99','2005-08-20 00:00:24','2006-02-15 22:12:37'), +(1027,37,2,13493,'3.99','2005-08-20 01:33:36','2006-02-15 22:12:37'), +(1028,37,2,14025,'8.99','2005-08-20 21:19:36','2006-02-15 22:12:37'), +(1029,37,1,14084,'0.99','2005-08-20 23:42:46','2006-02-15 22:12:37'), +(1030,37,2,14532,'2.99','2005-08-21 15:15:03','2006-02-15 22:12:37'), +(1031,37,1,15028,'3.99','2005-08-22 09:03:44','2006-02-15 22:12:37'), +(1032,37,1,15904,'0.99','2005-08-23 17:32:19','2006-02-15 22:12:37'), +(1033,37,2,16035,'0.99','2005-08-23 22:08:04','2006-02-15 22:12:37'), +(1034,38,2,1250,'2.99','2005-06-15 05:55:40','2006-02-15 22:12:37'), +(1035,38,1,2550,'1.99','2005-06-19 02:49:55','2006-02-15 22:12:37'), +(1036,38,2,2605,'1.99','2005-06-19 06:48:01','2006-02-15 22:12:37'), +(1037,38,2,3003,'4.99','2005-06-20 10:00:51','2006-02-15 22:12:37'), +(1038,38,2,3392,'3.99','2005-06-21 15:12:44','2006-02-15 22:12:37'), +(1039,38,1,4202,'5.99','2005-07-07 11:23:48','2006-02-15 22:12:37'), +(1040,38,2,4228,'1.99','2005-07-07 12:42:02','2006-02-15 22:12:37'), +(1041,38,1,4300,'4.99','2005-07-07 16:36:16','2006-02-15 22:12:37'), +(1042,38,2,4644,'4.99','2005-07-08 09:14:29','2006-02-15 22:12:37'), +(1043,38,1,5273,'2.99','2005-07-09 14:31:24','2006-02-15 22:12:37'), +(1044,38,2,5460,'2.99','2005-07-09 22:46:14','2006-02-15 22:12:37'), +(1045,38,1,5822,'2.99','2005-07-10 16:10:39','2006-02-15 22:12:37'), +(1046,38,1,6864,'5.99','2005-07-12 19:59:25','2006-02-15 22:12:38'), +(1047,38,1,6961,'0.99','2005-07-27 00:10:49','2006-02-15 22:12:38'), +(1048,38,2,7158,'4.99','2005-07-27 07:23:58','2006-02-15 22:12:38'), +(1049,38,2,7163,'5.99','2005-07-27 07:36:11','2006-02-15 22:12:38'), +(1050,38,2,7321,'5.99','2005-07-27 13:33:38','2006-02-15 22:12:38'), +(1051,38,1,7795,'0.99','2005-07-28 07:28:16','2006-02-15 22:12:38'), +(1052,38,2,8924,'3.99','2005-07-30 02:08:58','2006-02-15 22:12:38'), +(1053,38,2,9216,'0.99','2005-07-30 13:11:19','2006-02-15 22:12:38'), +(1054,38,1,9284,'0.99','2005-07-30 15:25:19','2006-02-15 22:12:38'), +(1055,38,1,9621,'4.99','2005-07-31 04:21:08','2006-02-15 22:12:38'), +(1056,38,2,10111,'2.99','2005-07-31 21:08:33','2006-02-15 22:12:38'), +(1057,38,2,10524,'6.99','2005-08-01 11:53:12','2006-02-15 22:12:38'), +(1058,38,2,11049,'3.99','2005-08-02 06:15:40','2006-02-15 22:12:38'), +(1059,38,1,11344,'2.99','2005-08-02 17:13:26','2006-02-15 22:12:38'), +(1060,38,1,11817,'4.99','2005-08-17 12:20:01','2006-02-15 22:12:38'), +(1061,38,2,12092,'0.99','2005-08-17 22:28:15','2006-02-15 22:12:38'), +(1062,38,2,12187,'1.99','2005-08-18 01:45:50','2006-02-15 22:12:38'), +(1063,38,1,14554,'4.99','2005-08-21 16:03:01','2006-02-15 22:12:38'), +(1064,38,2,14632,'2.99','2005-08-21 18:48:06','2006-02-15 22:12:38'), +(1065,38,1,14787,'6.99','2005-08-22 00:25:59','2006-02-15 22:12:38'), +(1066,38,1,15668,'2.99','2005-08-23 09:02:04','2006-02-15 22:12:38'), +(1067,38,1,15738,'5.99','2005-08-23 11:55:50','2006-02-15 22:12:38'), +(1068,39,1,1625,'5.99','2005-06-16 07:49:08','2006-02-15 22:12:38'), +(1069,39,1,1905,'4.99','2005-06-17 04:51:43','2006-02-15 22:12:38'), +(1070,39,2,2135,'0.99','2005-06-17 21:14:02','2006-02-15 22:12:38'), +(1071,39,2,2439,'4.99','2005-06-18 18:35:04','2006-02-15 22:12:38'), +(1072,39,1,2631,'4.99','2005-06-19 08:49:53','2006-02-15 22:12:38'), +(1073,39,1,2876,'4.99','2005-06-20 01:06:34','2006-02-15 22:12:38'), +(1074,39,1,4419,'5.99','2005-07-07 22:06:24','2006-02-15 22:12:38'), +(1075,39,2,4695,'8.99','2005-07-08 11:07:59','2006-02-15 22:12:38'), +(1076,39,2,4712,'6.99','2005-07-08 12:10:50','2006-02-15 22:12:38'), +(1077,39,2,4727,'7.99','2005-07-08 12:54:15','2006-02-15 22:12:38'), +(1078,39,1,5451,'4.99','2005-07-09 22:22:10','2006-02-15 22:12:38'), +(1079,39,2,5515,'2.99','2005-07-10 01:12:44','2006-02-15 22:12:38'), +(1080,39,1,6045,'2.99','2005-07-11 03:21:05','2006-02-15 22:12:38'), +(1081,39,2,8307,'6.99','2005-07-29 03:18:34','2006-02-15 22:12:38'), +(1082,39,2,8366,'1.99','2005-07-29 05:11:14','2006-02-15 22:12:38'), +(1083,39,2,8723,'7.99','2005-07-29 18:03:47','2006-02-15 22:12:38'), +(1084,39,1,8805,'2.99','2005-07-29 21:29:58','2006-02-15 22:12:38'), +(1085,39,1,9431,'1.99','2005-07-30 21:24:22','2006-02-15 22:12:38'), +(1086,39,1,9656,'4.99','2005-07-31 06:00:21','2006-02-15 22:12:38'), +(1087,39,2,10052,'4.99','2005-07-31 19:15:13','2006-02-15 22:12:38'), +(1088,39,1,10126,'0.99','2005-07-31 21:36:07','2006-02-15 22:12:38'), +(1089,39,1,10251,'4.99','2005-08-01 02:39:12','2006-02-15 22:12:38'), +(1090,39,2,10269,'4.99','2005-08-01 03:09:26','2006-02-15 22:12:38'), +(1091,39,2,10630,'0.99','2005-08-01 15:34:46','2006-02-15 22:12:38'), +(1092,39,1,10639,'9.99','2005-08-01 15:44:43','2006-02-15 22:12:38'), +(1093,39,2,12268,'0.99','2005-08-18 04:26:54','2006-02-15 22:12:38'), +(1094,39,2,12459,'4.99','2005-08-18 11:25:11','2006-02-15 22:12:38'), +(1095,39,2,13101,'7.99','2005-08-19 11:01:54','2006-02-15 22:12:38'), +(1096,39,2,15124,'5.99','2005-08-22 12:51:38','2006-02-15 22:12:38'), +(1097,40,1,128,'4.99','2005-05-25 21:19:53','2006-02-15 22:12:38'), +(1098,40,2,2470,'7.99','2005-06-18 20:28:31','2006-02-15 22:12:38'), +(1099,40,2,2896,'2.99','2005-06-20 02:33:42','2006-02-15 22:12:38'), +(1100,40,1,2993,'4.99','2005-06-20 09:12:12','2006-02-15 22:12:38'), +(1101,40,1,3428,'0.99','2005-06-21 18:39:34','2006-02-15 22:12:38'), +(1102,40,2,5001,'1.99','2005-07-09 01:17:04','2006-02-15 22:12:38'), +(1103,40,2,5777,'2.99','2005-07-10 13:38:41','2006-02-15 22:12:38'), +(1104,40,1,5869,'5.99','2005-07-10 18:40:09','2006-02-15 22:12:38'), +(1105,40,1,6502,'0.99','2005-07-12 03:15:45','2006-02-15 22:12:38'), +(1106,40,2,7684,'0.99','2005-07-28 03:11:54','2006-02-15 22:12:38'), +(1107,40,2,8031,'0.99','2005-07-28 16:15:49','2006-02-15 22:12:38'), +(1108,40,2,8170,'3.99','2005-07-28 21:32:29','2006-02-15 22:12:38'), +(1109,40,1,9050,'8.99','2005-07-30 06:59:55','2006-02-15 22:12:38'), +(1110,40,2,9700,'4.99','2005-07-31 07:29:59','2006-02-15 22:12:38'), +(1111,40,2,9961,'6.99','2005-07-31 16:07:50','2006-02-15 22:12:38'), +(1112,40,1,9975,'1.99','2005-07-31 16:53:43','2006-02-15 22:12:38'), +(1113,40,1,10442,'2.99','2005-08-01 08:58:08','2006-02-15 22:12:38'), +(1114,40,2,11919,'0.99','2005-08-17 16:08:49','2006-02-15 22:12:38'), +(1115,40,2,11948,'3.99','2005-08-17 17:11:05','2006-02-15 22:12:38'), +(1116,40,2,12396,'9.99','2005-08-18 09:11:23','2006-02-15 22:12:38'), +(1117,40,2,12877,'2.99','2005-08-19 03:16:58','2006-02-15 22:12:38'), +(1118,40,1,13149,'6.99','2005-08-19 13:07:12','2006-02-15 22:12:38'), +(1119,40,1,13376,'0.99','2005-08-19 21:31:45','2006-02-15 22:12:38'), +(1120,40,1,13840,'5.99','2005-08-20 14:23:20','2006-02-15 22:12:38'), +(1121,40,1,13951,'2.99','2005-08-20 17:58:11','2006-02-15 22:12:38'), +(1122,40,1,14260,'6.99','2005-08-21 06:01:08','2006-02-15 22:12:38'), +(1123,40,1,15193,'2.99','2005-08-22 16:06:49','2006-02-15 22:12:38'), +(1124,41,1,2563,'4.99','2005-06-19 03:24:17','2006-02-15 22:12:38'), +(1125,41,2,3246,'7.99','2005-06-21 03:10:01','2006-02-15 22:12:38'), +(1126,41,2,3827,'2.99','2005-07-06 15:52:03','2006-02-15 22:12:38'), +(1127,41,2,4294,'9.99','2005-07-07 15:56:23','2006-02-15 22:12:38'), +(1128,41,1,4543,'4.99','2005-07-08 04:06:55','2006-02-15 22:12:38'), +(1129,41,1,4575,'2.99','2005-07-08 05:49:14','2006-02-15 22:12:38'), +(1130,41,1,6976,'4.99','2005-07-27 00:40:01','2006-02-15 22:12:38'), +(1131,41,2,7153,'4.99','2005-07-27 07:15:38','2006-02-15 22:12:38'), +(1132,41,1,7517,'1.99','2005-07-27 20:57:07','2006-02-15 22:12:38'), +(1133,41,2,8008,'6.99','2005-07-28 15:25:55','2006-02-15 22:12:38'), +(1134,41,1,8098,'0.99','2005-07-28 18:34:20','2006-02-15 22:12:38'), +(1135,41,1,8134,'6.99','2005-07-28 20:01:23','2006-02-15 22:12:38'), +(1136,41,2,8225,'2.99','2005-07-28 23:59:29','2006-02-15 22:12:38'), +(1137,41,1,8712,'2.99','2005-07-29 17:30:06','2006-02-15 22:12:38'), +(1138,41,2,9313,'5.99','2005-07-30 16:59:43','2006-02-15 22:12:38'), +(1139,41,1,10064,'2.99','2005-07-31 19:27:02','2006-02-15 22:12:38'), +(1140,41,1,10170,'7.99','2005-07-31 23:27:31','2006-02-15 22:12:38'), +(1141,41,2,10495,'4.99','2005-08-01 10:45:51','2006-02-15 22:12:38'), +(1142,41,1,10853,'5.99','2005-08-02 00:00:54','2006-02-15 22:12:38'), +(1143,41,2,12147,'2.99','2005-08-18 00:10:20','2006-02-15 22:12:38'), +(1144,41,2,12173,'3.99','2005-08-18 01:08:34','2006-02-15 22:12:38'), +(1145,41,2,12821,'0.99','2005-08-19 01:07:02','2006-02-15 22:12:38'), +(1146,41,2,14539,'7.99','2005-08-21 15:29:47','2006-02-15 22:12:38'), +(1147,41,2,15860,'4.99','2005-08-23 16:08:40','2006-02-15 22:12:38'), +(1148,41,1,15875,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1149,42,1,635,'5.99','2005-05-28 17:46:57','2006-02-15 22:12:39'), +(1150,42,2,1534,'0.99','2005-06-16 00:49:32','2006-02-15 22:12:39'), +(1151,42,2,2056,'2.99','2005-06-17 15:27:33','2006-02-15 22:12:39'), +(1152,42,1,2170,'3.99','2005-06-17 23:57:34','2006-02-15 22:12:39'), +(1153,42,1,2302,'4.99','2005-06-18 08:27:33','2006-02-15 22:12:39'), +(1154,42,2,4391,'2.99','2005-07-07 21:09:38','2006-02-15 22:12:39'), +(1155,42,2,5199,'4.99','2005-07-09 10:50:56','2006-02-15 22:12:39'), +(1156,42,2,5517,'5.99','2005-07-10 01:15:00','2006-02-15 22:12:39'), +(1157,42,2,5652,'3.99','2005-07-10 07:18:58','2006-02-15 22:12:39'), +(1158,42,1,6179,'2.99','2005-07-11 10:59:59','2006-02-15 22:12:39'), +(1159,42,1,6799,'2.99','2005-07-12 16:52:13','2006-02-15 22:12:39'), +(1160,42,1,6925,'0.99','2005-07-26 22:52:32','2006-02-15 22:12:39'), +(1161,42,1,7405,'3.99','2005-07-27 16:25:11','2006-02-15 22:12:39'), +(1162,42,1,8049,'0.99','2005-07-28 16:51:58','2006-02-15 22:12:39'), +(1163,42,1,8095,'6.99','2005-07-28 18:32:40','2006-02-15 22:12:39'), +(1164,42,1,8166,'2.99','2005-07-28 21:23:33','2006-02-15 22:12:39'), +(1165,42,1,8499,'3.99','2005-07-29 09:10:41','2006-02-15 22:12:39'), +(1166,42,2,8785,'2.99','2005-07-29 20:36:26','2006-02-15 22:12:39'), +(1167,42,2,8852,'3.99','2005-07-29 23:30:03','2006-02-15 22:12:39'), +(1168,42,2,8915,'3.99','2005-07-30 01:42:09','2006-02-15 22:12:39'), +(1169,42,2,10060,'6.99','2005-07-31 19:23:00','2006-02-15 22:12:39'), +(1170,42,2,10345,'2.99','2005-08-01 05:18:56','2006-02-15 22:12:39'), +(1171,42,2,10845,'2.99','2005-08-01 23:47:03','2006-02-15 22:12:39'), +(1172,42,1,10935,'5.99','2005-08-02 02:54:53','2006-02-15 22:12:39'), +(1173,42,1,12478,'4.99','2005-08-18 12:25:16','2006-02-15 22:12:39'), +(1174,42,2,12499,'2.99','2005-08-18 13:05:37','2006-02-15 22:12:39'), +(1175,42,1,14461,'7.99','2005-08-21 12:50:33','2006-02-15 22:12:39'), +(1176,42,1,15442,'2.99','2005-08-23 00:42:49','2006-02-15 22:12:39'), +(1177,42,1,13351,'5.98','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1178,42,1,15407,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1179,43,2,123,'4.99','2005-05-25 20:26:42','2006-02-15 22:12:39'), +(1180,43,1,652,'4.99','2005-05-28 20:08:47','2006-02-15 22:12:39'), +(1181,43,2,1544,'4.99','2005-06-16 01:28:22','2006-02-15 22:12:39'), +(1182,43,2,3683,'1.99','2005-07-06 09:25:56','2006-02-15 22:12:39'), +(1183,43,1,4498,'2.99','2005-07-08 02:07:50','2006-02-15 22:12:39'), +(1184,43,1,5162,'4.99','2005-07-09 09:00:11','2006-02-15 22:12:39'), +(1185,43,1,5401,'4.99','2005-07-09 19:59:10','2006-02-15 22:12:39'), +(1186,43,1,5831,'2.99','2005-07-10 16:34:02','2006-02-15 22:12:39'), +(1187,43,2,5941,'4.99','2005-07-10 22:40:47','2006-02-15 22:12:39'), +(1188,43,1,6474,'3.99','2005-07-12 01:36:46','2006-02-15 22:12:39'), +(1189,43,2,6680,'0.99','2005-07-12 12:01:56','2006-02-15 22:12:39'), +(1190,43,1,7348,'4.99','2005-07-27 14:32:32','2006-02-15 22:12:39'), +(1191,43,2,7868,'4.99','2005-07-28 10:08:55','2006-02-15 22:12:39'), +(1192,43,2,8376,'4.99','2005-07-29 05:25:32','2006-02-15 22:12:39'), +(1193,43,1,9204,'4.99','2005-07-30 12:43:58','2006-02-15 22:12:39'), +(1194,43,1,11753,'4.99','2005-08-17 09:11:52','2006-02-15 22:12:39'), +(1195,43,1,14244,'2.99','2005-08-21 05:29:55','2006-02-15 22:12:39'), +(1196,43,1,14649,'4.99','2005-08-21 19:19:21','2006-02-15 22:12:39'), +(1197,43,2,14837,'4.99','2005-08-22 01:54:52','2006-02-15 22:12:39'), +(1198,43,2,15155,'4.99','2005-08-22 14:27:46','2006-02-15 22:12:39'), +(1199,43,2,15800,'6.99','2005-08-23 14:23:44','2006-02-15 22:12:39'), +(1200,43,2,15945,'2.99','2005-08-23 18:51:41','2006-02-15 22:12:39'), +(1201,43,2,15644,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1202,43,1,15745,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1203,44,1,29,'0.99','2005-05-25 03:47:12','2006-02-15 22:12:39'), +(1204,44,1,99,'4.99','2005-05-25 16:50:20','2006-02-15 22:12:39'), +(1205,44,1,407,'2.99','2005-05-27 13:57:38','2006-02-15 22:12:39'), +(1206,44,2,721,'0.99','2005-05-29 05:28:47','2006-02-15 22:12:39'), +(1207,44,1,904,'2.99','2005-05-30 10:19:42','2006-02-15 22:12:39'), +(1208,44,1,1497,'3.99','2005-06-15 21:56:39','2006-02-15 22:12:39'), +(1209,44,1,2369,'2.99','2005-06-18 14:25:29','2006-02-15 22:12:39'), +(1210,44,1,2809,'3.99','2005-06-19 19:40:27','2006-02-15 22:12:39'), +(1211,44,2,2866,'4.99','2005-06-20 00:01:36','2006-02-15 22:12:39'), +(1212,44,2,4390,'0.99','2005-07-07 20:59:06','2006-02-15 22:12:39'), +(1213,44,2,4723,'9.99','2005-07-08 12:44:59','2006-02-15 22:12:39'), +(1214,44,1,5551,'3.99','2005-07-10 03:01:09','2006-02-15 22:12:39'), +(1215,44,1,5787,'8.99','2005-07-10 14:08:49','2006-02-15 22:12:39'), +(1216,44,2,5849,'6.99','2005-07-10 17:32:33','2006-02-15 22:12:39'), +(1217,44,2,5909,'4.99','2005-07-10 20:46:13','2006-02-15 22:12:39'), +(1218,44,1,7514,'0.99','2005-07-27 20:51:49','2006-02-15 22:12:39'), +(1219,44,2,7526,'6.99','2005-07-27 21:13:47','2006-02-15 22:12:39'), +(1220,44,2,8775,'4.99','2005-07-29 20:05:38','2006-02-15 22:12:39'), +(1221,44,1,8866,'4.99','2005-07-29 23:58:19','2006-02-15 22:12:39'), +(1222,44,1,11364,'2.99','2005-08-02 17:53:36','2006-02-15 22:12:39'), +(1223,44,2,12345,'3.99','2005-08-18 07:16:58','2006-02-15 22:12:39'), +(1224,44,1,12504,'4.99','2005-08-18 13:17:07','2006-02-15 22:12:39'), +(1225,44,1,12790,'6.99','2005-08-19 00:16:54','2006-02-15 22:12:39'), +(1226,44,2,12982,'4.99','2005-08-19 07:06:34','2006-02-15 22:12:39'), +(1227,44,2,15054,'2.99','2005-08-22 10:14:33','2006-02-15 22:12:39'), +(1228,44,2,13428,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:39'), +(1229,45,2,277,'2.99','2005-05-26 17:32:11','2006-02-15 22:12:39'), +(1230,45,1,1806,'4.99','2005-06-16 20:41:57','2006-02-15 22:12:39'), +(1231,45,2,1979,'2.99','2005-06-17 09:45:30','2006-02-15 22:12:39'), +(1232,45,2,2722,'4.99','2005-06-19 14:55:17','2006-02-15 22:12:39'), +(1233,45,1,3391,'3.99','2005-06-21 15:11:02','2006-02-15 22:12:39'), +(1234,45,2,3444,'0.99','2005-06-21 20:39:39','2006-02-15 22:12:39'), +(1235,45,1,4843,'0.99','2005-07-08 18:27:28','2006-02-15 22:12:39'), +(1236,45,1,5181,'6.99','2005-07-09 10:07:27','2006-02-15 22:12:39'), +(1237,45,1,5405,'7.99','2005-07-09 20:11:49','2006-02-15 22:12:39'), +(1238,45,1,5637,'0.99','2005-07-10 06:31:37','2006-02-15 22:12:39'), +(1239,45,2,6001,'0.99','2005-07-11 01:24:44','2006-02-15 22:12:39'), +(1240,45,2,6002,'2.99','2005-07-11 01:27:49','2006-02-15 22:12:39'), +(1241,45,1,6966,'9.99','2005-07-27 00:15:35','2006-02-15 22:12:39'), +(1242,45,1,7436,'2.99','2005-07-27 17:39:12','2006-02-15 22:12:39'), +(1243,45,1,7961,'3.99','2005-07-28 13:47:21','2006-02-15 22:12:39'), +(1244,45,1,10507,'2.99','2005-08-01 11:22:20','2006-02-15 22:12:39'), +(1245,45,2,10878,'6.99','2005-08-02 00:33:12','2006-02-15 22:12:39'), +(1246,45,1,11004,'8.99','2005-08-02 05:04:18','2006-02-15 22:12:39'), +(1247,45,1,11029,'4.99','2005-08-02 05:51:10','2006-02-15 22:12:40'), +(1248,45,2,11483,'2.99','2005-08-02 22:28:22','2006-02-15 22:12:40'), +(1249,45,2,11488,'3.99','2005-08-02 22:35:15','2006-02-15 22:12:40'), +(1250,45,1,11725,'2.99','2005-08-17 08:09:00','2006-02-15 22:12:40'), +(1251,45,1,13340,'3.99','2005-08-19 20:18:39','2006-02-15 22:12:40'), +(1252,45,2,13394,'4.99','2005-08-19 22:05:19','2006-02-15 22:12:40'), +(1253,45,1,14576,'6.99','2005-08-21 16:52:03','2006-02-15 22:12:40'), +(1254,45,1,15812,'10.99','2005-08-23 14:47:26','2006-02-15 22:12:40'), +(1255,45,2,16037,'7.99','2005-08-23 22:13:04','2006-02-15 22:12:40'), +(1256,46,2,401,'2.99','2005-05-27 12:57:55','2006-02-15 22:12:40'), +(1257,46,2,432,'4.99','2005-05-27 16:40:29','2006-02-15 22:12:40'), +(1258,46,1,938,'2.99','2005-05-30 14:47:31','2006-02-15 22:12:40'), +(1259,46,1,1166,'4.99','2005-06-14 23:17:03','2006-02-15 22:12:40'), +(1260,46,2,1214,'4.99','2005-06-15 03:18:40','2006-02-15 22:12:40'), +(1261,46,2,2144,'0.99','2005-06-17 22:05:40','2006-02-15 22:12:40'), +(1262,46,1,2203,'2.99','2005-06-18 02:10:42','2006-02-15 22:12:40'), +(1263,46,2,2965,'8.99','2005-06-20 07:33:38','2006-02-15 22:12:40'), +(1264,46,2,2975,'4.99','2005-06-20 08:06:18','2006-02-15 22:12:40'), +(1265,46,2,3439,'4.99','2005-06-21 19:36:15','2006-02-15 22:12:40'), +(1266,46,2,3855,'2.99','2005-07-06 17:03:48','2006-02-15 22:12:40'), +(1267,46,1,3916,'4.99','2005-07-06 20:18:50','2006-02-15 22:12:40'), +(1268,46,2,5698,'4.99','2005-07-10 09:47:00','2006-02-15 22:12:40'), +(1269,46,1,7336,'0.99','2005-07-27 14:11:45','2006-02-15 22:12:40'), +(1270,46,2,8152,'3.99','2005-07-28 20:53:05','2006-02-15 22:12:40'), +(1271,46,2,9045,'8.99','2005-07-30 06:36:57','2006-02-15 22:12:40'), +(1272,46,2,9806,'2.99','2005-07-31 11:13:49','2006-02-15 22:12:40'), +(1273,46,1,10088,'2.99','2005-07-31 20:16:21','2006-02-15 22:12:40'), +(1274,46,2,10428,'4.99','2005-08-01 08:30:11','2006-02-15 22:12:40'), +(1275,46,1,10803,'4.99','2005-08-01 22:22:07','2006-02-15 22:12:40'), +(1276,46,1,10827,'5.99','2005-08-01 23:13:00','2006-02-15 22:12:40'), +(1277,46,1,11721,'0.99','2005-08-17 07:49:17','2006-02-15 22:12:40'), +(1278,46,2,12095,'4.99','2005-08-17 22:32:37','2006-02-15 22:12:40'), +(1279,46,2,12238,'2.99','2005-08-18 03:25:08','2006-02-15 22:12:40'), +(1280,46,2,12280,'4.99','2005-08-18 04:49:27','2006-02-15 22:12:40'), +(1281,46,1,12298,'2.99','2005-08-18 05:30:31','2006-02-15 22:12:40'), +(1282,46,2,12455,'4.99','2005-08-18 11:19:47','2006-02-15 22:12:40'), +(1283,46,1,13226,'0.99','2005-08-19 16:05:36','2006-02-15 22:12:40'), +(1284,46,2,14144,'4.99','2005-08-21 02:10:57','2006-02-15 22:12:40'), +(1285,46,2,14528,'6.99','2005-08-21 15:08:05','2006-02-15 22:12:40'), +(1286,46,1,14940,'4.99','2005-08-22 05:54:03','2006-02-15 22:12:40'), +(1287,46,1,15438,'2.99','2005-08-23 00:31:57','2006-02-15 22:12:40'), +(1288,46,1,15708,'0.99','2005-08-23 10:35:51','2006-02-15 22:12:40'), +(1289,46,1,15758,'5.99','2005-08-23 12:47:26','2006-02-15 22:12:40'), +(1290,47,2,175,'3.99','2005-05-26 03:46:26','2006-02-15 22:12:40'), +(1291,47,2,207,'4.99','2005-05-26 08:04:38','2006-02-15 22:12:40'), +(1292,47,1,300,'6.99','2005-05-26 20:57:00','2006-02-15 22:12:40'), +(1293,47,1,1882,'4.99','2005-06-17 03:17:21','2006-02-15 22:12:40'), +(1294,47,1,2307,'6.99','2005-06-18 08:34:59','2006-02-15 22:12:40'), +(1295,47,2,3320,'5.99','2005-06-21 08:29:41','2006-02-15 22:12:40'), +(1296,47,1,3631,'4.99','2005-07-06 06:36:53','2006-02-15 22:12:40'), +(1297,47,2,4064,'5.99','2005-07-07 04:29:20','2006-02-15 22:12:40'), +(1298,47,1,5174,'0.99','2005-07-09 09:31:59','2006-02-15 22:12:40'), +(1299,47,2,6153,'9.99','2005-07-11 09:31:04','2006-02-15 22:12:40'), +(1300,47,2,6164,'0.99','2005-07-11 10:16:23','2006-02-15 22:12:40'), +(1301,47,1,6337,'3.99','2005-07-11 19:30:47','2006-02-15 22:12:40'), +(1302,47,2,8159,'4.99','2005-07-28 21:09:28','2006-02-15 22:12:40'), +(1303,47,2,8402,'6.99','2005-07-29 06:25:45','2006-02-15 22:12:40'), +(1304,47,1,8863,'3.99','2005-07-29 23:52:01','2006-02-15 22:12:40'), +(1305,47,2,9274,'4.99','2005-07-30 15:07:04','2006-02-15 22:12:40'), +(1306,47,1,11126,'0.99','2005-08-02 08:59:04','2006-02-15 22:12:40'), +(1307,47,2,11477,'5.99','2005-08-02 22:09:01','2006-02-15 22:12:40'), +(1308,47,1,12215,'7.99','2005-08-18 02:35:39','2006-02-15 22:12:40'), +(1309,47,2,12274,'7.99','2005-08-18 04:41:47','2006-02-15 22:12:40'), +(1310,47,1,14397,'0.99','2005-08-21 10:25:56','2006-02-15 22:12:40'), +(1311,47,2,15846,'2.99','2005-08-23 15:39:18','2006-02-15 22:12:40'), +(1312,48,2,72,'0.99','2005-05-25 10:52:13','2006-02-15 22:12:40'), +(1313,48,1,297,'2.99','2005-05-26 20:48:48','2006-02-15 22:12:40'), +(1314,48,1,390,'4.99','2005-05-27 11:02:26','2006-02-15 22:12:40'), +(1315,48,2,1689,'9.99','2005-06-16 12:18:41','2006-02-15 22:12:40'), +(1316,48,2,2822,'0.99','2005-06-19 20:29:24','2006-02-15 22:12:40'), +(1317,48,2,3758,'4.99','2005-07-06 12:43:11','2006-02-15 22:12:40'), +(1318,48,1,4367,'2.99','2005-07-07 19:52:01','2006-02-15 22:12:40'), +(1319,48,2,5148,'6.99','2005-07-09 08:22:46','2006-02-15 22:12:40'), +(1320,48,2,6498,'3.99','2005-07-12 03:05:38','2006-02-15 22:12:40'), +(1321,48,1,7920,'2.99','2005-07-28 12:01:19','2006-02-15 22:12:40'), +(1322,48,1,8716,'6.99','2005-07-29 17:39:09','2006-02-15 22:12:40'), +(1323,48,1,9402,'7.99','2005-07-30 20:18:27','2006-02-15 22:12:40'), +(1324,48,2,9742,'7.99','2005-07-31 09:10:20','2006-02-15 22:12:40'), +(1325,48,2,10276,'2.99','2005-08-01 03:22:23','2006-02-15 22:12:40'), +(1326,48,2,14450,'1.99','2005-08-21 12:21:25','2006-02-15 22:12:40'), +(1327,48,2,14536,'2.99','2005-08-21 15:22:50','2006-02-15 22:12:40'), +(1328,48,1,15228,'3.99','2005-08-22 17:27:23','2006-02-15 22:12:40'), +(1329,49,2,96,'1.99','2005-05-25 16:32:19','2006-02-15 22:12:40'), +(1330,49,1,239,'3.99','2005-05-26 12:30:26','2006-02-15 22:12:40'), +(1331,49,2,846,'2.99','2005-05-30 01:17:45','2006-02-15 22:12:40'), +(1332,49,2,1010,'4.99','2005-05-31 01:57:32','2006-02-15 22:12:40'), +(1333,49,1,1164,'0.99','2005-06-14 23:16:26','2006-02-15 22:12:40'), +(1334,49,2,1237,'9.99','2005-06-15 04:44:10','2006-02-15 22:12:40'), +(1335,49,2,1688,'0.99','2005-06-16 12:11:20','2006-02-15 22:12:40'), +(1336,49,2,1777,'6.99','2005-06-16 18:52:12','2006-02-15 22:12:40'), +(1337,49,2,3235,'4.99','2005-06-21 02:46:17','2006-02-15 22:12:40'), +(1338,49,2,3575,'4.99','2005-07-06 03:36:19','2006-02-15 22:12:40'), +(1339,49,2,3615,'0.99','2005-07-06 05:47:47','2006-02-15 22:12:40'), +(1340,49,1,5491,'2.99','2005-07-10 00:09:45','2006-02-15 22:12:41'), +(1341,49,1,6214,'4.99','2005-07-11 12:49:48','2006-02-15 22:12:41'), +(1342,49,1,6279,'6.99','2005-07-11 16:26:07','2006-02-15 22:12:41'), +(1343,49,1,6521,'7.99','2005-07-12 04:06:11','2006-02-15 22:12:41'), +(1344,49,2,6759,'4.99','2005-07-12 15:14:48','2006-02-15 22:12:41'), +(1345,49,2,7209,'4.99','2005-07-27 09:16:53','2006-02-15 22:12:41'), +(1346,49,2,7742,'8.99','2005-07-28 05:33:16','2006-02-15 22:12:41'), +(1347,49,2,8553,'10.99','2005-07-29 11:15:36','2006-02-15 22:12:41'), +(1348,49,2,9006,'0.99','2005-07-30 05:06:32','2006-02-15 22:12:41'), +(1349,49,1,9851,'4.99','2005-07-31 12:50:24','2006-02-15 22:12:41'), +(1350,49,1,10144,'4.99','2005-07-31 22:13:52','2006-02-15 22:12:41'), +(1351,49,1,10266,'0.99','2005-08-01 03:05:59','2006-02-15 22:12:41'), +(1352,49,1,10588,'2.99','2005-08-01 14:10:21','2006-02-15 22:12:41'), +(1353,49,1,10814,'2.99','2005-08-01 22:43:12','2006-02-15 22:12:41'), +(1354,49,2,14168,'5.99','2005-08-21 03:00:03','2006-02-15 22:12:41'), +(1355,49,1,14627,'6.99','2005-08-21 18:35:54','2006-02-15 22:12:41'), +(1356,49,1,14676,'2.99','2005-08-21 20:02:18','2006-02-15 22:12:41'), +(1357,50,1,763,'4.99','2005-05-29 11:32:15','2006-02-15 22:12:41'), +(1358,50,1,794,'4.99','2005-05-29 16:44:11','2006-02-15 22:12:41'), +(1359,50,1,905,'4.99','2005-05-30 10:25:00','2006-02-15 22:12:41'), +(1360,50,1,1029,'4.99','2005-05-31 03:52:02','2006-02-15 22:12:41'), +(1361,50,2,1136,'4.99','2005-05-31 19:19:36','2006-02-15 22:12:41'), +(1362,50,1,1223,'2.99','2005-06-15 03:38:53','2006-02-15 22:12:41'), +(1363,50,1,1785,'4.99','2005-06-16 19:27:12','2006-02-15 22:12:41'), +(1364,50,2,3000,'0.99','2005-06-20 09:32:33','2006-02-15 22:12:41'), +(1365,50,2,3169,'2.99','2005-06-20 21:55:54','2006-02-15 22:12:41'), +(1366,50,2,4149,'2.99','2005-07-07 08:40:17','2006-02-15 22:12:41'), +(1367,50,2,5290,'4.99','2005-07-09 15:14:47','2006-02-15 22:12:41'), +(1368,50,2,5641,'4.99','2005-07-10 06:43:43','2006-02-15 22:12:41'), +(1369,50,2,5681,'9.99','2005-07-10 08:48:39','2006-02-15 22:12:41'), +(1370,50,1,5928,'6.99','2005-07-10 21:58:30','2006-02-15 22:12:41'), +(1371,50,2,6634,'0.99','2005-07-12 09:37:18','2006-02-15 22:12:41'), +(1372,50,1,6667,'8.99','2005-07-12 11:36:22','2006-02-15 22:12:41'), +(1373,50,1,7383,'4.99','2005-07-27 15:46:53','2006-02-15 22:12:41'), +(1374,50,1,8089,'0.99','2005-07-28 18:26:47','2006-02-15 22:12:41'), +(1375,50,1,8261,'0.99','2005-07-29 01:11:05','2006-02-15 22:12:41'), +(1376,50,1,8619,'5.99','2005-07-29 13:50:08','2006-02-15 22:12:41'), +(1377,50,2,9179,'0.99','2005-07-30 12:02:41','2006-02-15 22:12:41'), +(1378,50,1,9615,'4.99','2005-07-31 03:59:56','2006-02-15 22:12:41'), +(1379,50,2,9691,'10.99','2005-07-31 07:09:55','2006-02-15 22:12:41'), +(1380,50,2,10046,'2.99','2005-07-31 19:07:11','2006-02-15 22:12:41'), +(1381,50,2,10165,'0.99','2005-07-31 23:21:23','2006-02-15 22:12:41'), +(1382,50,2,10180,'6.99','2005-07-31 23:57:43','2006-02-15 22:12:41'), +(1383,50,2,10261,'4.99','2005-08-01 02:58:27','2006-02-15 22:12:41'), +(1384,50,2,10485,'7.99','2005-08-01 10:20:34','2006-02-15 22:12:41'), +(1385,50,2,11053,'3.99','2005-08-02 06:27:13','2006-02-15 22:12:41'), +(1386,50,1,12766,'6.99','2005-08-18 23:25:20','2006-02-15 22:12:41'), +(1387,50,2,13136,'7.99','2005-08-19 12:24:23','2006-02-15 22:12:41'), +(1388,50,1,14054,'4.99','2005-08-20 22:17:01','2006-02-15 22:12:41'), +(1389,50,2,15138,'2.99','2005-08-22 13:36:30','2006-02-15 22:12:41'), +(1390,50,2,15388,'6.99','2005-08-22 22:49:23','2006-02-15 22:12:41'), +(1391,50,1,16015,'4.99','2005-08-23 21:25:03','2006-02-15 22:12:41'), +(1392,51,2,119,'4.99','2005-05-25 19:37:02','2006-02-15 22:12:41'), +(1393,51,1,661,'4.99','2005-05-28 21:01:25','2006-02-15 22:12:41'), +(1394,51,2,1028,'4.99','2005-05-31 03:48:05','2006-02-15 22:12:41'), +(1395,51,2,1373,'1.99','2005-06-15 14:48:04','2006-02-15 22:12:41'), +(1396,51,1,1477,'0.99','2005-06-15 21:11:18','2006-02-15 22:12:41'), +(1397,51,1,3525,'9.99','2005-07-06 01:02:39','2006-02-15 22:12:41'), +(1398,51,1,5230,'2.99','2005-07-09 12:30:23','2006-02-15 22:12:41'), +(1399,51,2,5304,'5.99','2005-07-09 15:48:06','2006-02-15 22:12:41'), +(1400,51,1,5473,'7.99','2005-07-09 23:19:11','2006-02-15 22:12:41'), +(1401,51,1,5606,'4.99','2005-07-10 05:07:55','2006-02-15 22:12:41'), +(1402,51,1,7207,'5.99','2005-07-27 09:13:26','2006-02-15 22:12:41'), +(1403,51,1,7398,'6.99','2005-07-27 16:07:22','2006-02-15 22:12:41'), +(1404,51,1,7636,'5.99','2005-07-28 01:08:36','2006-02-15 22:12:41'), +(1405,51,1,8495,'4.99','2005-07-29 09:05:06','2006-02-15 22:12:41'), +(1406,51,1,8693,'0.99','2005-07-29 16:44:13','2006-02-15 22:12:41'), +(1407,51,1,8880,'0.99','2005-07-30 00:16:55','2006-02-15 22:12:41'), +(1408,51,2,9649,'0.99','2005-07-31 05:46:54','2006-02-15 22:12:41'), +(1409,51,2,10244,'4.99','2005-08-01 02:20:01','2006-02-15 22:12:41'), +(1410,51,1,10780,'2.99','2005-08-01 21:14:24','2006-02-15 22:12:41'), +(1411,51,1,10894,'0.99','2005-08-02 01:12:35','2006-02-15 22:12:41'), +(1412,51,1,11302,'2.99','2005-08-02 15:38:03','2006-02-15 22:12:41'), +(1413,51,2,11685,'4.99','2005-08-17 06:39:16','2006-02-15 22:12:41'), +(1414,51,2,11751,'6.99','2005-08-17 09:07:56','2006-02-15 22:12:41'), +(1415,51,1,12184,'0.99','2005-08-18 01:36:00','2006-02-15 22:12:41'), +(1416,51,1,12725,'4.99','2005-08-18 21:43:09','2006-02-15 22:12:41'), +(1417,51,2,13098,'2.99','2005-08-19 10:51:59','2006-02-15 22:12:41'), +(1418,51,1,13302,'2.99','2005-08-19 18:54:26','2006-02-15 22:12:41'), +(1419,51,1,13868,'0.99','2005-08-20 15:06:26','2006-02-15 22:12:41'), +(1420,51,2,13882,'2.99','2005-08-20 15:23:26','2006-02-15 22:12:41'), +(1421,51,2,14221,'6.99','2005-08-21 04:49:41','2006-02-15 22:12:41'), +(1422,51,2,14512,'4.99','2005-08-21 14:47:09','2006-02-15 22:12:41'), +(1423,51,1,14617,'4.99','2005-08-21 18:07:40','2006-02-15 22:12:41'), +(1424,51,1,14903,'4.99','2005-08-22 04:31:50','2006-02-15 22:12:41'), +(1425,52,1,874,'0.99','2005-05-30 05:36:21','2006-02-15 22:12:41'), +(1426,52,1,1196,'4.99','2005-06-15 01:38:31','2006-02-15 22:12:41'), +(1427,52,2,2232,'0.99','2005-06-18 03:54:31','2006-02-15 22:12:41'), +(1428,52,1,2862,'2.99','2005-06-19 23:47:24','2006-02-15 22:12:41'), +(1429,52,2,3196,'4.99','2005-06-21 00:02:28','2006-02-15 22:12:42'), +(1430,52,1,3997,'1.99','2005-07-06 23:46:52','2006-02-15 22:12:42'), +(1431,52,1,5308,'0.99','2005-07-09 15:58:38','2006-02-15 22:12:42'), +(1432,52,2,5313,'3.99','2005-07-09 16:04:45','2006-02-15 22:12:42'), +(1433,52,1,5607,'2.99','2005-07-10 05:08:10','2006-02-15 22:12:42'), +(1434,52,1,6394,'7.99','2005-07-11 22:29:15','2006-02-15 22:12:42'), +(1435,52,2,7284,'0.99','2005-07-27 12:12:04','2006-02-15 22:12:42'), +(1436,52,2,7438,'5.99','2005-07-27 17:40:40','2006-02-15 22:12:42'), +(1437,52,2,7627,'4.99','2005-07-28 00:56:47','2006-02-15 22:12:42'), +(1438,52,1,8686,'4.99','2005-07-29 16:17:49','2006-02-15 22:12:42'), +(1439,52,1,9029,'4.99','2005-07-30 06:03:11','2006-02-15 22:12:42'), +(1440,52,2,9749,'3.99','2005-07-31 09:18:33','2006-02-15 22:12:42'), +(1441,52,2,9797,'4.99','2005-07-31 10:53:44','2006-02-15 22:12:42'), +(1442,52,2,10591,'0.99','2005-08-01 14:12:29','2006-02-15 22:12:42'), +(1443,52,1,10635,'0.99','2005-08-01 15:37:58','2006-02-15 22:12:42'), +(1444,52,1,11068,'0.99','2005-08-02 07:08:07','2006-02-15 22:12:42'), +(1445,52,1,11731,'3.99','2005-08-17 08:24:35','2006-02-15 22:12:42'), +(1446,52,2,12200,'2.99','2005-08-18 02:12:33','2006-02-15 22:12:42'), +(1447,52,2,12520,'0.99','2005-08-18 13:42:45','2006-02-15 22:12:42'), +(1448,52,2,13090,'5.99','2005-08-19 10:39:54','2006-02-15 22:12:42'), +(1449,52,2,14820,'2.99','2005-08-22 01:18:37','2006-02-15 22:12:42'), +(1450,52,1,14822,'5.99','2005-08-22 01:21:14','2006-02-15 22:12:42'), +(1451,52,2,14961,'6.99','2005-08-22 06:35:50','2006-02-15 22:12:42'), +(1452,52,2,15891,'5.99','2005-08-23 17:00:12','2006-02-15 22:12:42'), +(1453,52,1,12001,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:42'), +(1454,53,1,88,'3.99','2005-05-25 14:13:54','2006-02-15 22:12:42'), +(1455,53,1,378,'2.99','2005-05-27 09:23:22','2006-02-15 22:12:42'), +(1456,53,1,751,'0.99','2005-05-29 09:55:43','2006-02-15 22:12:42'), +(1457,53,2,783,'5.99','2005-05-29 14:41:18','2006-02-15 22:12:42'), +(1458,53,2,856,'9.99','2005-05-30 02:01:21','2006-02-15 22:12:42'), +(1459,53,1,1107,'2.99','2005-05-31 15:04:05','2006-02-15 22:12:42'), +(1460,53,1,1964,'0.99','2005-06-17 09:10:09','2006-02-15 22:12:42'), +(1461,53,1,2388,'2.99','2005-06-18 15:26:30','2006-02-15 22:12:42'), +(1462,53,1,2903,'2.99','2005-06-20 02:49:01','2006-02-15 22:12:42'), +(1463,53,2,3140,'2.99','2005-06-20 19:47:12','2006-02-15 22:12:42'), +(1464,53,2,3244,'0.99','2005-06-21 03:01:10','2006-02-15 22:12:42'), +(1465,53,2,3591,'2.99','2005-07-06 04:37:10','2006-02-15 22:12:42'), +(1466,53,2,3898,'4.99','2005-07-06 19:12:37','2006-02-15 22:12:42'), +(1467,53,2,5185,'2.99','2005-07-09 10:14:39','2006-02-15 22:12:42'), +(1468,53,2,7466,'2.99','2005-07-27 18:51:17','2006-02-15 22:12:42'), +(1469,53,1,7699,'4.99','2005-07-28 03:52:21','2006-02-15 22:12:42'), +(1470,53,1,9343,'4.99','2005-07-30 18:13:13','2006-02-15 22:12:42'), +(1471,53,1,9928,'7.99','2005-07-31 15:13:57','2006-02-15 22:12:42'), +(1472,53,1,10594,'3.99','2005-08-01 14:14:59','2006-02-15 22:12:42'), +(1473,53,1,12054,'5.99','2005-08-17 20:59:56','2006-02-15 22:12:42'), +(1474,53,1,12580,'2.99','2005-08-18 15:49:08','2006-02-15 22:12:42'), +(1475,53,1,13049,'5.99','2005-08-19 09:25:40','2006-02-15 22:12:42'), +(1476,53,2,13789,'2.99','2005-08-20 12:16:38','2006-02-15 22:12:42'), +(1477,53,1,14061,'2.99','2005-08-20 22:32:11','2006-02-15 22:12:42'), +(1478,53,2,14091,'0.99','2005-08-21 00:11:17','2006-02-15 22:12:42'), +(1479,53,2,14119,'5.99','2005-08-21 01:15:59','2006-02-15 22:12:42'), +(1480,53,1,14671,'4.99','2005-08-21 19:59:30','2006-02-15 22:12:42'), +(1481,53,2,14811,'0.99','2005-08-22 01:09:04','2006-02-15 22:12:42'), +(1482,53,2,11657,'7.98','2006-02-14 15:16:03','2006-02-15 22:12:42'), +(1483,53,1,14137,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:42'), +(1484,54,2,198,'4.99','2005-05-26 07:03:49','2006-02-15 22:12:42'), +(1485,54,2,441,'4.99','2005-05-27 18:11:05','2006-02-15 22:12:42'), +(1486,54,2,545,'3.99','2005-05-28 07:10:20','2006-02-15 22:12:42'), +(1487,54,1,1556,'4.99','2005-06-16 02:19:02','2006-02-15 22:12:42'), +(1488,54,1,1571,'2.99','2005-06-16 03:22:00','2006-02-15 22:12:42'), +(1489,54,2,2323,'6.99','2005-06-18 09:55:02','2006-02-15 22:12:42'), +(1490,54,1,2647,'4.99','2005-06-19 09:57:56','2006-02-15 22:12:42'), +(1491,54,2,4657,'4.99','2005-07-08 09:51:02','2006-02-15 22:12:42'), +(1492,54,2,5055,'1.99','2005-07-09 04:05:28','2006-02-15 22:12:42'), +(1493,54,1,5929,'2.99','2005-07-10 21:59:29','2006-02-15 22:12:42'), +(1494,54,1,5992,'2.99','2005-07-11 01:06:21','2006-02-15 22:12:42'), +(1495,54,1,6338,'7.99','2005-07-11 19:39:41','2006-02-15 22:12:42'), +(1496,54,2,6560,'2.99','2005-07-12 05:22:06','2006-02-15 22:12:42'), +(1497,54,1,6813,'0.99','2005-07-12 18:03:50','2006-02-15 22:12:42'), +(1498,54,2,8992,'4.99','2005-07-30 04:44:18','2006-02-15 22:12:42'), +(1499,54,2,10489,'5.99','2005-08-01 10:27:42','2006-02-15 22:12:42'), +(1500,54,2,10882,'5.99','2005-08-02 00:47:16','2006-02-15 22:12:42'), +(1501,54,1,10956,'4.99','2005-08-02 03:33:14','2006-02-15 22:12:42'), +(1502,54,1,11182,'4.99','2005-08-02 10:55:14','2006-02-15 22:12:42'), +(1503,54,2,11887,'2.99','2005-08-17 15:03:13','2006-02-15 22:12:42'), +(1504,54,1,12526,'2.99','2005-08-18 13:48:43','2006-02-15 22:12:42'), +(1505,54,2,12775,'5.99','2005-08-18 23:35:56','2006-02-15 22:12:43'), +(1506,54,1,12811,'4.99','2005-08-19 00:51:28','2006-02-15 22:12:43'), +(1507,54,2,12872,'0.99','2005-08-19 02:57:37','2006-02-15 22:12:43'), +(1508,54,2,13315,'2.99','2005-08-19 19:16:18','2006-02-15 22:12:43'), +(1509,54,1,13890,'0.99','2005-08-20 15:41:00','2006-02-15 22:12:43'), +(1510,54,1,14215,'4.99','2005-08-21 04:34:11','2006-02-15 22:12:43'), +(1511,54,1,15226,'10.99','2005-08-22 17:20:17','2006-02-15 22:12:43'), +(1512,54,1,15567,'4.99','2005-08-23 05:20:36','2006-02-15 22:12:43'), +(1513,55,1,555,'4.99','2005-05-28 08:31:14','2006-02-15 22:12:43'), +(1514,55,1,1027,'9.99','2005-05-31 03:46:19','2006-02-15 22:12:43'), +(1515,55,1,1048,'0.99','2005-05-31 06:49:53','2006-02-15 22:12:43'), +(1516,55,2,1825,'2.99','2005-06-16 21:53:05','2006-02-15 22:12:43'), +(1517,55,2,2062,'2.99','2005-06-17 15:56:43','2006-02-15 22:12:43'), +(1518,55,1,2904,'2.99','2005-06-20 02:54:06','2006-02-15 22:12:43'), +(1519,55,1,2976,'4.99','2005-06-20 08:09:11','2006-02-15 22:12:43'), +(1520,55,1,3149,'4.99','2005-06-20 20:34:55','2006-02-15 22:12:43'), +(1521,55,1,4671,'4.99','2005-07-08 10:15:32','2006-02-15 22:12:43'), +(1522,55,2,6314,'7.99','2005-07-11 18:32:44','2006-02-15 22:12:43'), +(1523,55,2,7050,'4.99','2005-07-27 03:33:17','2006-02-15 22:12:43'), +(1524,55,2,8288,'6.99','2005-07-29 02:04:22','2006-02-15 22:12:43'), +(1525,55,1,9302,'2.99','2005-07-30 16:34:57','2006-02-15 22:12:43'), +(1526,55,2,9596,'5.99','2005-07-31 03:28:47','2006-02-15 22:12:43'), +(1527,55,2,9798,'2.99','2005-07-31 10:55:18','2006-02-15 22:12:43'), +(1528,55,2,11287,'1.99','2005-08-02 14:49:51','2006-02-15 22:12:43'), +(1529,55,1,12776,'4.99','2005-08-18 23:37:33','2006-02-15 22:12:43'), +(1530,55,1,12808,'4.99','2005-08-19 00:40:41','2006-02-15 22:12:43'), +(1531,55,2,12972,'1.99','2005-08-19 06:43:28','2006-02-15 22:12:43'), +(1532,55,1,13345,'6.99','2005-08-19 20:25:24','2006-02-15 22:12:43'), +(1533,55,1,14667,'2.99','2005-08-21 19:51:11','2006-02-15 22:12:43'), +(1534,55,1,15296,'4.99','2005-08-22 19:37:20','2006-02-15 22:12:43'), +(1535,56,1,130,'3.99','2005-05-25 21:21:56','2006-02-15 22:12:43'), +(1536,56,1,341,'5.99','2005-05-27 04:01:42','2006-02-15 22:12:43'), +(1537,56,1,496,'2.99','2005-05-28 00:43:41','2006-02-15 22:12:43'), +(1538,56,1,569,'6.99','2005-05-28 10:12:41','2006-02-15 22:12:43'), +(1539,56,2,1795,'6.99','2005-06-16 20:09:01','2006-02-15 22:12:43'), +(1540,56,1,2140,'0.99','2005-06-17 21:40:29','2006-02-15 22:12:43'), +(1541,56,1,2485,'4.99','2005-06-18 21:26:03','2006-02-15 22:12:43'), +(1542,56,1,2989,'0.99','2005-06-20 08:59:37','2006-02-15 22:12:43'), +(1543,56,1,3718,'7.99','2005-07-06 10:57:56','2006-02-15 22:12:43'), +(1544,56,2,3771,'2.99','2005-07-06 13:19:34','2006-02-15 22:12:43'), +(1545,56,1,4097,'3.99','2005-07-07 06:10:55','2006-02-15 22:12:43'), +(1546,56,2,4702,'4.99','2005-07-08 11:41:36','2006-02-15 22:12:43'), +(1547,56,1,5142,'4.99','2005-07-09 08:05:23','2006-02-15 22:12:43'), +(1548,56,1,7385,'2.99','2005-07-27 15:49:46','2006-02-15 22:12:43'), +(1549,56,1,7696,'7.99','2005-07-28 03:41:35','2006-02-15 22:12:43'), +(1550,56,2,7942,'0.99','2005-07-28 12:49:44','2006-02-15 22:12:43'), +(1551,56,1,8285,'0.99','2005-07-29 02:00:18','2006-02-15 22:12:43'), +(1552,56,2,10356,'6.99','2005-08-01 05:49:17','2006-02-15 22:12:43'), +(1553,56,2,10678,'0.99','2005-08-01 17:26:24','2006-02-15 22:12:43'), +(1554,56,1,10946,'4.99','2005-08-02 03:20:39','2006-02-15 22:12:43'), +(1555,56,1,11358,'5.99','2005-08-02 17:45:02','2006-02-15 22:12:43'), +(1556,56,1,11656,'4.99','2005-08-17 05:11:09','2006-02-15 22:12:43'), +(1557,56,2,12537,'1.99','2005-08-18 14:06:39','2006-02-15 22:12:43'), +(1558,56,2,12713,'4.99','2005-08-18 21:07:28','2006-02-15 22:12:43'), +(1559,56,2,13560,'8.99','2005-08-20 04:17:16','2006-02-15 22:12:43'), +(1560,56,1,13769,'5.99','2005-08-20 11:43:52','2006-02-15 22:12:43'), +(1561,56,2,14291,'3.99','2005-08-21 07:03:05','2006-02-15 22:12:43'), +(1562,56,2,14534,'0.99','2005-08-21 15:16:29','2006-02-15 22:12:43'), +(1563,56,2,15702,'7.99','2005-08-23 10:23:28','2006-02-15 22:12:43'), +(1564,56,2,15714,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:43'), +(1565,57,2,152,'9.99','2005-05-26 00:41:10','2006-02-15 22:12:43'), +(1566,57,2,943,'4.99','2005-05-30 15:20:19','2006-02-15 22:12:43'), +(1567,57,1,2058,'5.99','2005-06-17 15:34:41','2006-02-15 22:12:43'), +(1568,57,1,2105,'0.99','2005-06-17 19:15:45','2006-02-15 22:12:43'), +(1569,57,1,2360,'4.99','2005-06-18 13:11:13','2006-02-15 22:12:43'), +(1570,57,2,2910,'7.99','2005-06-20 03:31:18','2006-02-15 22:12:43'), +(1571,57,1,3357,'0.99','2005-06-21 11:55:42','2006-02-15 22:12:43'), +(1572,57,1,3727,'4.99','2005-07-06 11:16:43','2006-02-15 22:12:43'), +(1573,57,2,4226,'4.99','2005-07-07 12:37:56','2006-02-15 22:12:43'), +(1574,57,1,5060,'4.99','2005-07-09 04:28:03','2006-02-15 22:12:43'), +(1575,57,1,5694,'0.99','2005-07-10 09:40:38','2006-02-15 22:12:43'), +(1576,57,2,5948,'2.99','2005-07-10 23:12:08','2006-02-15 22:12:43'), +(1577,57,2,6482,'4.99','2005-07-12 01:50:21','2006-02-15 22:12:43'), +(1578,57,1,6494,'1.99','2005-07-12 02:42:51','2006-02-15 22:12:43'), +(1579,57,2,6649,'4.99','2005-07-12 10:51:09','2006-02-15 22:12:43'), +(1580,57,2,8249,'5.99','2005-07-29 00:48:44','2006-02-15 22:12:43'), +(1581,57,1,9086,'0.99','2005-07-30 08:18:46','2006-02-15 22:12:43'), +(1582,57,2,9136,'0.99','2005-07-30 10:07:20','2006-02-15 22:12:43'), +(1583,57,1,9211,'1.99','2005-07-30 12:59:45','2006-02-15 22:12:43'), +(1584,57,1,9703,'0.99','2005-07-31 07:34:52','2006-02-15 22:12:43'), +(1585,57,2,9812,'2.99','2005-07-31 11:28:07','2006-02-15 22:12:43'), +(1586,57,2,10169,'4.99','2005-07-31 23:27:13','2006-02-15 22:12:43'), +(1587,57,2,12925,'5.99','2005-08-19 04:59:01','2006-02-15 22:12:43'), +(1588,57,2,13163,'0.99','2005-08-19 13:29:46','2006-02-15 22:12:43'), +(1589,57,2,13743,'0.99','2005-08-20 10:51:27','2006-02-15 22:12:44'), +(1590,57,2,13929,'9.99','2005-08-20 17:13:48','2006-02-15 22:12:44'), +(1591,57,2,15571,'0.99','2005-08-23 05:26:30','2006-02-15 22:12:44'), +(1592,57,2,15871,'9.99','2005-08-23 16:24:24','2006-02-15 22:12:44'), +(1593,58,1,230,'0.99','2005-05-26 11:31:50','2006-02-15 22:12:44'), +(1594,58,2,276,'7.99','2005-05-26 17:16:07','2006-02-15 22:12:44'), +(1595,58,2,761,'0.99','2005-05-29 11:09:01','2006-02-15 22:12:44'), +(1596,58,1,2191,'4.99','2005-06-18 01:33:09','2006-02-15 22:12:44'), +(1597,58,2,2543,'0.99','2005-06-19 02:14:11','2006-02-15 22:12:44'), +(1598,58,1,2906,'0.99','2005-06-20 03:04:56','2006-02-15 22:12:44'), +(1599,58,1,3685,'4.99','2005-07-06 09:30:45','2006-02-15 22:12:44'), +(1600,58,2,4131,'4.99','2005-07-07 07:53:18','2006-02-15 22:12:44'), +(1601,58,2,5439,'1.99','2005-07-09 21:39:35','2006-02-15 22:12:44'), +(1602,58,1,7063,'9.99','2005-07-27 03:52:27','2006-02-15 22:12:44'), +(1603,58,2,7487,'4.99','2005-07-27 19:32:45','2006-02-15 22:12:44'), +(1604,58,1,8853,'0.99','2005-07-29 23:34:21','2006-02-15 22:12:44'), +(1605,58,2,9561,'2.99','2005-07-31 02:22:13','2006-02-15 22:12:44'), +(1606,58,2,10037,'2.99','2005-07-31 18:48:08','2006-02-15 22:12:44'), +(1607,58,1,10068,'4.99','2005-07-31 19:39:38','2006-02-15 22:12:44'), +(1608,58,2,10256,'4.99','2005-08-01 02:47:11','2006-02-15 22:12:44'), +(1609,58,1,10668,'0.99','2005-08-01 17:00:27','2006-02-15 22:12:44'), +(1610,58,1,11416,'6.99','2005-08-02 19:44:04','2006-02-15 22:12:44'), +(1611,58,2,12292,'8.99','2005-08-18 05:08:54','2006-02-15 22:12:44'), +(1612,58,1,13194,'6.99','2005-08-19 14:34:12','2006-02-15 22:12:44'), +(1613,58,1,13207,'3.99','2005-08-19 15:14:38','2006-02-15 22:12:44'), +(1614,58,1,13930,'2.99','2005-08-20 17:15:06','2006-02-15 22:12:44'), +(1615,58,2,13973,'4.99','2005-08-20 18:52:43','2006-02-15 22:12:44'), +(1616,58,2,14305,'5.99','2005-08-21 07:29:05','2006-02-15 22:12:44'), +(1617,58,1,14665,'6.99','2005-08-21 19:49:46','2006-02-15 22:12:44'), +(1618,58,1,14989,'4.99','2005-08-22 07:47:07','2006-02-15 22:12:44'), +(1619,58,2,15326,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:44'), +(1620,59,2,212,'4.99','2005-05-26 08:34:41','2006-02-15 22:12:44'), +(1621,59,2,951,'2.99','2005-05-30 16:10:35','2006-02-15 22:12:44'), +(1622,59,1,1154,'5.99','2005-05-31 21:42:09','2006-02-15 22:12:44'), +(1623,59,1,1269,'2.99','2005-06-15 07:29:59','2006-02-15 22:12:44'), +(1624,59,1,1728,'3.99','2005-06-16 15:29:29','2006-02-15 22:12:44'), +(1625,59,1,2921,'3.99','2005-06-20 04:13:04','2006-02-15 22:12:44'), +(1626,59,2,4148,'2.99','2005-07-07 08:36:58','2006-02-15 22:12:44'), +(1627,59,1,4384,'4.99','2005-07-07 20:46:45','2006-02-15 22:12:44'), +(1628,59,1,4631,'4.99','2005-07-08 08:38:22','2006-02-15 22:12:44'), +(1629,59,1,4891,'3.99','2005-07-08 20:06:19','2006-02-15 22:12:44'), +(1630,59,2,5195,'8.99','2005-07-09 10:39:31','2006-02-15 22:12:44'), +(1631,59,1,5207,'3.99','2005-07-09 11:15:44','2006-02-15 22:12:44'), +(1632,59,1,5830,'4.99','2005-07-10 16:34:00','2006-02-15 22:12:44'), +(1633,59,1,7991,'4.99','2005-07-28 14:45:45','2006-02-15 22:12:44'), +(1634,59,2,8643,'4.99','2005-07-29 14:45:23','2006-02-15 22:12:44'), +(1635,59,1,9469,'8.99','2005-07-30 22:56:34','2006-02-15 22:12:44'), +(1636,59,2,9573,'6.99','2005-07-31 02:45:38','2006-02-15 22:12:44'), +(1637,59,2,11396,'4.99','2005-08-02 18:48:29','2006-02-15 22:12:44'), +(1638,59,1,12833,'5.99','2005-08-19 01:42:28','2006-02-15 22:12:44'), +(1639,59,2,13282,'2.99','2005-08-19 18:08:18','2006-02-15 22:12:44'), +(1640,59,1,13573,'2.99','2005-08-20 05:10:14','2006-02-15 22:12:44'), +(1641,59,2,13921,'4.99','2005-08-20 16:57:11','2006-02-15 22:12:44'), +(1642,59,1,14135,'5.99','2005-08-21 01:53:54','2006-02-15 22:12:44'), +(1643,59,1,14977,'5.99','2005-08-22 07:12:53','2006-02-15 22:12:44'), +(1644,59,2,15271,'5.99','2005-08-22 18:48:48','2006-02-15 22:12:44'), +(1645,59,2,15744,'4.99','2005-08-23 12:15:51','2006-02-15 22:12:44'), +(1646,59,2,15905,'2.99','2005-08-23 17:33:04','2006-02-15 22:12:44'), +(1647,60,1,318,'4.99','2005-05-26 23:37:39','2006-02-15 22:12:44'), +(1648,60,2,706,'1.99','2005-05-29 03:05:49','2006-02-15 22:12:44'), +(1649,60,2,934,'2.99','2005-05-30 13:24:46','2006-02-15 22:12:44'), +(1650,60,2,1482,'4.99','2005-06-15 21:18:16','2006-02-15 22:12:44'), +(1651,60,2,2394,'4.99','2005-06-18 15:42:30','2006-02-15 22:12:44'), +(1652,60,2,3473,'2.99','2005-07-05 22:57:34','2006-02-15 22:12:44'), +(1653,60,1,3849,'2.99','2005-07-06 16:49:43','2006-02-15 22:12:44'), +(1654,60,1,6282,'5.99','2005-07-11 16:46:22','2006-02-15 22:12:44'), +(1655,60,2,7067,'0.99','2005-07-27 03:55:10','2006-02-15 22:12:44'), +(1656,60,1,7331,'3.99','2005-07-27 13:57:50','2006-02-15 22:12:44'), +(1657,60,1,7494,'0.99','2005-07-27 19:56:31','2006-02-15 22:12:44'), +(1658,60,1,9356,'4.99','2005-07-30 18:36:24','2006-02-15 22:12:44'), +(1659,60,1,9761,'4.99','2005-07-31 09:31:54','2006-02-15 22:12:44'), +(1660,60,2,10680,'0.99','2005-08-01 17:28:05','2006-02-15 22:12:44'), +(1661,60,1,11092,'4.99','2005-08-02 07:58:50','2006-02-15 22:12:44'), +(1662,60,1,11404,'8.99','2005-08-02 19:12:40','2006-02-15 22:12:44'), +(1663,60,1,12084,'1.99','2005-08-17 22:16:49','2006-02-15 22:12:44'), +(1664,60,2,12614,'7.99','2005-08-18 17:16:03','2006-02-15 22:12:45'), +(1665,60,1,15093,'2.99','2005-08-22 11:39:03','2006-02-15 22:12:45'), +(1666,60,1,15318,'2.99','2005-08-22 20:15:16','2006-02-15 22:12:45'), +(1667,60,1,15618,'5.99','2005-08-23 07:07:58','2006-02-15 22:12:45'), +(1668,60,1,15632,'0.99','2005-08-23 07:30:26','2006-02-15 22:12:45'), +(1669,60,1,15649,'2.99','2005-08-23 08:28:03','2006-02-15 22:12:45'), +(1670,60,2,12489,'9.98','2006-02-14 15:16:03','2006-02-15 22:12:45'), +(1671,60,2,14741,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:45'), +(1672,61,1,1157,'0.99','2005-05-31 22:47:45','2006-02-15 22:12:45'), +(1673,61,1,7027,'7.99','2005-07-27 02:50:15','2006-02-15 22:12:45'), +(1674,61,2,7071,'1.99','2005-07-27 04:01:15','2006-02-15 22:12:45'), +(1675,61,2,8029,'6.99','2005-07-28 16:11:21','2006-02-15 22:12:45'), +(1676,61,2,8075,'4.99','2005-07-28 17:37:28','2006-02-15 22:12:45'), +(1677,61,1,8651,'3.99','2005-07-29 15:02:18','2006-02-15 22:12:45'), +(1678,61,2,9597,'6.99','2005-07-31 03:29:07','2006-02-15 22:12:45'), +(1679,61,2,10549,'0.99','2005-08-01 12:46:39','2006-02-15 22:12:45'), +(1680,61,2,11379,'2.99','2005-08-02 18:16:55','2006-02-15 22:12:45'), +(1681,61,1,12072,'9.99','2005-08-17 21:50:25','2006-02-15 22:12:45'), +(1682,61,1,13450,'0.99','2005-08-20 00:18:15','2006-02-15 22:12:45'), +(1683,61,1,13830,'0.99','2005-08-20 13:57:59','2006-02-15 22:12:45'), +(1684,61,2,15089,'6.99','2005-08-22 11:34:06','2006-02-15 22:12:45'), +(1685,61,1,15681,'1.99','2005-08-23 09:35:34','2006-02-15 22:12:45'), +(1686,62,2,885,'0.99','2005-05-30 06:54:28','2006-02-15 22:12:45'), +(1687,62,1,947,'4.99','2005-05-30 15:36:57','2006-02-15 22:12:45'), +(1688,62,2,1241,'6.99','2005-06-15 04:59:43','2006-02-15 22:12:45'), +(1689,62,1,1486,'0.99','2005-06-15 21:25:30','2006-02-15 22:12:45'), +(1690,62,1,1587,'0.99','2005-06-16 04:52:28','2006-02-15 22:12:45'), +(1691,62,2,3021,'4.99','2005-06-20 11:13:01','2006-02-15 22:12:45'), +(1692,62,1,3035,'5.99','2005-06-20 12:17:03','2006-02-15 22:12:45'), +(1693,62,1,3287,'0.99','2005-06-21 06:32:39','2006-02-15 22:12:45'), +(1694,62,1,3327,'3.99','2005-06-21 09:04:50','2006-02-15 22:12:45'), +(1695,62,2,3843,'2.99','2005-07-06 16:35:40','2006-02-15 22:12:45'), +(1696,62,2,4159,'4.99','2005-07-07 09:10:57','2006-02-15 22:12:45'), +(1697,62,2,5292,'2.99','2005-07-09 15:16:54','2006-02-15 22:12:45'), +(1698,62,2,8360,'4.99','2005-07-29 05:08:00','2006-02-15 22:12:45'), +(1699,62,2,10080,'0.99','2005-07-31 20:07:10','2006-02-15 22:12:45'), +(1700,62,1,10815,'2.99','2005-08-01 22:46:21','2006-02-15 22:12:45'), +(1701,62,1,11297,'5.99','2005-08-02 15:22:47','2006-02-15 22:12:45'), +(1702,62,1,11988,'0.99','2005-08-17 18:23:50','2006-02-15 22:12:45'), +(1703,62,2,13512,'8.99','2005-08-20 02:27:13','2006-02-15 22:12:45'), +(1704,62,2,14574,'1.99','2005-08-21 16:50:34','2006-02-15 22:12:45'), +(1705,62,2,14594,'2.99','2005-08-21 17:34:24','2006-02-15 22:12:45'), +(1706,62,2,14821,'4.99','2005-08-22 01:20:19','2006-02-15 22:12:45'), +(1707,62,1,15464,'6.99','2005-08-23 01:15:18','2006-02-15 22:12:45'), +(1708,62,1,15591,'0.99','2005-08-23 06:11:52','2006-02-15 22:12:45'), +(1709,63,2,1818,'0.99','2005-06-16 21:30:34','2006-02-15 22:12:45'), +(1710,63,2,3923,'8.99','2005-07-06 20:34:10','2006-02-15 22:12:45'), +(1711,63,1,4587,'4.99','2005-07-08 06:16:26','2006-02-15 22:12:45'), +(1712,63,1,5585,'6.99','2005-07-10 04:15:43','2006-02-15 22:12:45'), +(1713,63,2,5788,'4.99','2005-07-10 14:10:22','2006-02-15 22:12:45'), +(1714,63,2,5832,'4.99','2005-07-10 16:34:48','2006-02-15 22:12:45'), +(1715,63,2,6769,'3.99','2005-07-12 15:48:54','2006-02-15 22:12:45'), +(1716,63,2,6847,'8.99','2005-07-12 19:22:37','2006-02-15 22:12:45'), +(1717,63,2,8311,'5.99','2005-07-29 03:26:07','2006-02-15 22:12:45'), +(1718,63,2,9007,'0.99','2005-07-30 05:09:32','2006-02-15 22:12:45'), +(1719,63,1,9546,'4.99','2005-07-31 01:47:40','2006-02-15 22:12:45'), +(1720,63,2,9549,'3.99','2005-07-31 01:57:04','2006-02-15 22:12:45'), +(1721,63,1,9795,'0.99','2005-07-31 10:47:19','2006-02-15 22:12:45'), +(1722,63,2,9938,'2.99','2005-07-31 15:28:47','2006-02-15 22:12:45'), +(1723,63,2,10148,'0.99','2005-07-31 22:19:16','2006-02-15 22:12:45'), +(1724,63,1,10288,'6.99','2005-08-01 03:38:42','2006-02-15 22:12:45'), +(1725,63,1,11902,'4.99','2005-08-17 15:37:34','2006-02-15 22:12:45'), +(1726,63,2,12342,'2.99','2005-08-18 07:12:46','2006-02-15 22:12:45'), +(1727,63,2,12515,'0.99','2005-08-18 13:39:26','2006-02-15 22:12:45'), +(1728,63,1,12954,'7.99','2005-08-19 06:04:34','2006-02-15 22:12:45'), +(1729,63,1,13089,'0.99','2005-08-19 10:38:56','2006-02-15 22:12:45'), +(1730,63,1,13624,'8.99','2005-08-20 06:51:02','2006-02-15 22:12:45'), +(1731,63,1,14931,'3.99','2005-08-22 05:38:55','2006-02-15 22:12:45'), +(1732,63,1,15060,'5.99','2005-08-22 10:24:32','2006-02-15 22:12:45'), +(1733,63,1,15229,'2.99','2005-08-22 17:30:25','2006-02-15 22:12:45'), +(1734,64,1,494,'4.99','2005-05-28 00:39:31','2006-02-15 22:12:45'), +(1735,64,1,587,'0.99','2005-05-28 12:05:33','2006-02-15 22:12:45'), +(1736,64,1,1001,'2.99','2005-05-31 00:46:31','2006-02-15 22:12:45'), +(1737,64,2,1335,'0.99','2005-06-15 11:51:30','2006-02-15 22:12:45'), +(1738,64,1,2060,'2.99','2005-06-17 15:42:42','2006-02-15 22:12:45'), +(1739,64,2,3982,'0.99','2005-07-06 23:14:16','2006-02-15 22:12:45'), +(1740,64,1,4288,'4.99','2005-07-07 15:38:25','2006-02-15 22:12:45'), +(1741,64,1,4690,'1.99','2005-07-08 11:04:02','2006-02-15 22:12:45'), +(1742,64,2,4819,'5.99','2005-07-08 17:19:15','2006-02-15 22:12:45'), +(1743,64,2,4971,'5.99','2005-07-08 23:54:49','2006-02-15 22:12:45'), +(1744,64,1,5114,'3.99','2005-07-09 07:07:05','2006-02-15 22:12:46'), +(1745,64,2,5279,'2.99','2005-07-09 14:46:36','2006-02-15 22:12:46'), +(1746,64,1,5432,'0.99','2005-07-09 21:21:25','2006-02-15 22:12:46'), +(1747,64,2,6372,'2.99','2005-07-11 21:35:06','2006-02-15 22:12:46'), +(1748,64,2,6457,'0.99','2005-07-12 01:06:35','2006-02-15 22:12:46'), +(1749,64,2,6698,'1.99','2005-07-12 12:45:00','2006-02-15 22:12:46'), +(1750,64,2,6744,'0.99','2005-07-12 14:30:28','2006-02-15 22:12:46'), +(1751,64,2,7045,'0.99','2005-07-27 03:27:35','2006-02-15 22:12:46'), +(1752,64,1,7082,'2.99','2005-07-27 04:27:32','2006-02-15 22:12:46'), +(1753,64,1,7476,'1.99','2005-07-27 19:08:56','2006-02-15 22:12:46'), +(1754,64,2,8602,'4.99','2005-07-29 13:04:27','2006-02-15 22:12:46'), +(1755,64,1,9832,'2.99','2005-07-31 12:01:49','2006-02-15 22:12:46'), +(1756,64,1,9880,'6.99','2005-07-31 13:49:02','2006-02-15 22:12:46'), +(1757,64,1,9924,'3.99','2005-07-31 15:04:57','2006-02-15 22:12:46'), +(1758,64,2,10185,'0.99','2005-08-01 00:12:11','2006-02-15 22:12:46'), +(1759,64,2,10714,'4.99','2005-08-01 18:51:29','2006-02-15 22:12:46'), +(1760,64,1,10889,'4.99','2005-08-02 00:54:33','2006-02-15 22:12:46'), +(1761,64,1,12409,'0.99','2005-08-18 09:43:58','2006-02-15 22:12:46'), +(1762,64,1,13773,'2.99','2005-08-20 11:50:14','2006-02-15 22:12:46'), +(1763,64,1,13971,'0.99','2005-08-20 18:44:53','2006-02-15 22:12:46'), +(1764,64,1,14167,'5.99','2005-08-21 02:59:48','2006-02-15 22:12:46'), +(1765,64,2,14316,'0.99','2005-08-21 07:59:47','2006-02-15 22:12:46'), +(1766,64,2,13333,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:46'), +(1767,65,1,295,'4.99','2005-05-26 20:33:20','2006-02-15 22:12:46'), +(1768,65,2,657,'0.99','2005-05-28 20:23:09','2006-02-15 22:12:46'), +(1769,65,1,2173,'7.99','2005-06-18 00:08:20','2006-02-15 22:12:46'), +(1770,65,1,3051,'4.99','2005-06-20 13:06:52','2006-02-15 22:12:46'), +(1771,65,1,3535,'4.99','2005-07-06 01:32:46','2006-02-15 22:12:46'), +(1772,65,1,4240,'4.99','2005-07-07 13:33:12','2006-02-15 22:12:46'), +(1773,65,2,4635,'3.99','2005-07-08 08:42:40','2006-02-15 22:12:46'), +(1774,65,1,5735,'3.99','2005-07-10 11:39:15','2006-02-15 22:12:46'), +(1775,65,2,6527,'0.99','2005-07-12 04:23:06','2006-02-15 22:12:46'), +(1776,65,1,7877,'6.99','2005-07-28 10:25:36','2006-02-15 22:12:46'), +(1777,65,2,8392,'1.99','2005-07-29 06:00:27','2006-02-15 22:12:46'), +(1778,65,2,8404,'5.99','2005-07-29 06:27:01','2006-02-15 22:12:46'), +(1779,65,1,9293,'3.99','2005-07-30 16:12:28','2006-02-15 22:12:46'), +(1780,65,2,11100,'5.99','2005-08-02 08:08:00','2006-02-15 22:12:46'), +(1781,65,1,11227,'8.99','2005-08-02 12:48:05','2006-02-15 22:12:46'), +(1782,65,2,11461,'4.99','2005-08-02 21:35:00','2006-02-15 22:12:46'), +(1783,65,2,11845,'2.99','2005-08-17 13:16:38','2006-02-15 22:12:46'), +(1784,65,1,12114,'7.99','2005-08-17 23:02:00','2006-02-15 22:12:46'), +(1785,65,1,12688,'6.99','2005-08-18 19:59:54','2006-02-15 22:12:46'), +(1786,65,2,13692,'0.99','2005-08-20 09:07:52','2006-02-15 22:12:46'), +(1787,65,2,14140,'6.99','2005-08-21 02:04:57','2006-02-15 22:12:46'), +(1788,65,1,14356,'0.99','2005-08-21 09:08:51','2006-02-15 22:12:46'), +(1789,66,2,933,'4.99','2005-05-30 13:08:45','2006-02-15 22:12:46'), +(1790,66,1,1236,'2.99','2005-06-15 04:34:27','2006-02-15 22:12:46'), +(1791,66,1,1907,'2.99','2005-06-17 05:08:27','2006-02-15 22:12:46'), +(1792,66,1,2106,'4.99','2005-06-17 19:29:03','2006-02-15 22:12:46'), +(1793,66,2,2571,'2.99','2005-06-19 04:20:14','2006-02-15 22:12:46'), +(1794,66,1,2577,'4.99','2005-06-19 04:36:03','2006-02-15 22:12:46'), +(1795,66,1,3334,'3.99','2005-06-21 10:04:33','2006-02-15 22:12:46'), +(1796,66,2,3395,'6.99','2005-06-21 15:19:19','2006-02-15 22:12:46'), +(1797,66,1,3573,'4.99','2005-07-06 03:33:48','2006-02-15 22:12:46'), +(1798,66,2,3757,'2.99','2005-07-06 12:42:26','2006-02-15 22:12:46'), +(1799,66,2,4088,'2.99','2005-07-07 05:31:55','2006-02-15 22:12:46'), +(1800,66,1,4108,'4.99','2005-07-07 06:38:31','2006-02-15 22:12:46'), +(1801,66,2,4165,'6.99','2005-07-07 09:23:27','2006-02-15 22:12:46'), +(1802,66,2,4911,'5.99','2005-07-08 21:20:26','2006-02-15 22:12:46'), +(1803,66,2,5915,'0.99','2005-07-10 21:12:16','2006-02-15 22:12:46'), +(1804,66,1,6290,'8.99','2005-07-11 17:12:42','2006-02-15 22:12:46'), +(1805,66,2,6348,'5.99','2005-07-11 20:21:18','2006-02-15 22:12:46'), +(1806,66,1,6402,'3.99','2005-07-11 22:46:10','2006-02-15 22:12:46'), +(1807,66,1,6995,'2.99','2005-07-27 01:12:13','2006-02-15 22:12:46'), +(1808,66,1,7872,'2.99','2005-07-28 10:18:16','2006-02-15 22:12:46'), +(1809,66,1,9091,'5.99','2005-07-30 08:30:45','2006-02-15 22:12:46'), +(1810,66,1,10419,'0.99','2005-08-01 08:13:22','2006-02-15 22:12:46'), +(1811,66,2,11028,'5.99','2005-08-02 05:48:20','2006-02-15 22:12:46'), +(1812,66,2,11360,'2.99','2005-08-02 17:46:04','2006-02-15 22:12:46'), +(1813,66,1,11683,'5.99','2005-08-17 06:15:17','2006-02-15 22:12:46'), +(1814,66,1,11935,'0.99','2005-08-17 16:42:13','2006-02-15 22:12:46'), +(1815,66,1,12699,'0.99','2005-08-18 20:20:59','2006-02-15 22:12:46'), +(1816,66,1,13900,'2.99','2005-08-20 16:05:41','2006-02-15 22:12:46'), +(1817,66,2,14123,'2.99','2005-08-21 01:31:25','2006-02-15 22:12:46'), +(1818,66,1,14217,'6.99','2005-08-21 04:37:56','2006-02-15 22:12:46'), +(1819,66,2,14351,'2.99','2005-08-21 09:04:20','2006-02-15 22:12:46'), +(1820,66,2,14429,'0.99','2005-08-21 11:29:43','2006-02-15 22:12:46'), +(1821,66,2,15026,'4.99','2005-08-22 09:01:52','2006-02-15 22:12:47'), +(1822,66,1,15598,'8.99','2005-08-23 06:23:26','2006-02-15 22:12:47'), +(1823,67,2,331,'9.99','2005-05-27 02:22:26','2006-02-15 22:12:47'), +(1824,67,1,767,'2.99','2005-05-29 12:20:19','2006-02-15 22:12:47'), +(1825,67,1,2064,'3.99','2005-06-17 15:57:56','2006-02-15 22:12:47'), +(1826,67,1,2542,'3.99','2005-06-19 02:08:39','2006-02-15 22:12:47'), +(1827,67,2,2810,'0.99','2005-06-19 19:44:12','2006-02-15 22:12:47'), +(1828,67,1,3359,'4.99','2005-06-21 12:08:18','2006-02-15 22:12:47'), +(1829,67,2,4090,'4.99','2005-07-07 05:47:33','2006-02-15 22:12:47'), +(1830,67,2,5399,'2.99','2005-07-09 19:52:44','2006-02-15 22:12:47'), +(1831,67,2,5510,'2.99','2005-07-10 00:58:37','2006-02-15 22:12:47'), +(1832,67,1,6137,'2.99','2005-07-11 08:34:20','2006-02-15 22:12:47'), +(1833,67,2,7277,'5.99','2005-07-27 11:48:37','2006-02-15 22:12:47'), +(1834,67,2,7895,'0.99','2005-07-28 10:57:15','2006-02-15 22:12:47'), +(1835,67,2,8563,'1.99','2005-07-29 11:32:58','2006-02-15 22:12:47'), +(1836,67,1,9640,'7.99','2005-07-31 05:33:25','2006-02-15 22:12:47'), +(1837,67,1,11295,'8.99','2005-08-02 15:10:06','2006-02-15 22:12:47'), +(1838,67,1,11894,'8.99','2005-08-17 15:15:01','2006-02-15 22:12:47'), +(1839,67,2,13437,'4.99','2005-08-19 23:37:52','2006-02-15 22:12:47'), +(1840,67,1,13652,'2.99','2005-08-20 07:52:34','2006-02-15 22:12:47'), +(1841,67,2,13791,'4.99','2005-08-20 12:21:05','2006-02-15 22:12:47'), +(1842,67,2,13837,'2.99','2005-08-20 14:19:03','2006-02-15 22:12:47'), +(1843,67,2,14967,'4.99','2005-08-22 06:46:03','2006-02-15 22:12:47'), +(1844,67,2,15085,'2.99','2005-08-22 11:19:22','2006-02-15 22:12:47'), +(1845,68,2,1828,'5.99','2005-06-16 22:04:34','2006-02-15 22:12:47'), +(1846,68,2,1957,'8.99','2005-06-17 08:50:58','2006-02-15 22:12:47'), +(1847,68,2,2633,'2.99','2005-06-19 08:53:10','2006-02-15 22:12:47'), +(1848,68,2,2662,'4.99','2005-06-19 10:53:42','2006-02-15 22:12:47'), +(1849,68,1,2686,'2.99','2005-06-19 12:44:20','2006-02-15 22:12:47'), +(1850,68,1,3598,'0.99','2005-07-06 05:11:04','2006-02-15 22:12:47'), +(1851,68,2,3801,'4.99','2005-07-06 15:05:50','2006-02-15 22:12:47'), +(1852,68,1,3864,'0.99','2005-07-06 17:41:42','2006-02-15 22:12:47'), +(1853,68,2,4555,'6.99','2005-07-08 04:48:36','2006-02-15 22:12:47'), +(1854,68,1,4925,'3.99','2005-07-08 21:56:00','2006-02-15 22:12:47'), +(1855,68,1,6512,'4.99','2005-07-12 03:42:49','2006-02-15 22:12:47'), +(1856,68,2,9339,'3.99','2005-07-30 18:03:28','2006-02-15 22:12:47'), +(1857,68,1,9538,'3.99','2005-07-31 01:25:22','2006-02-15 22:12:47'), +(1858,68,2,9642,'4.99','2005-07-31 05:33:57','2006-02-15 22:12:47'), +(1859,68,1,10115,'7.99','2005-07-31 21:13:47','2006-02-15 22:12:47'), +(1860,68,1,11277,'2.99','2005-08-02 14:28:50','2006-02-15 22:12:47'), +(1861,68,2,12742,'2.99','2005-08-18 22:22:03','2006-02-15 22:12:47'), +(1862,68,2,13475,'4.99','2005-08-20 01:05:05','2006-02-15 22:12:47'), +(1863,68,2,14242,'0.99','2005-08-21 05:25:59','2006-02-15 22:12:47'), +(1864,68,2,14455,'5.99','2005-08-21 12:36:11','2006-02-15 22:12:47'), +(1865,68,1,14947,'1.99','2005-08-22 06:07:52','2006-02-15 22:12:47'), +(1866,68,1,15524,'4.99','2005-08-23 03:36:26','2006-02-15 22:12:47'), +(1867,69,2,584,'4.99','2005-05-28 11:49:00','2006-02-15 22:12:47'), +(1868,69,2,765,'1.99','2005-05-29 11:38:34','2006-02-15 22:12:47'), +(1869,69,1,1549,'2.99','2005-06-16 01:57:15','2006-02-15 22:12:47'), +(1870,69,1,3358,'4.99','2005-06-21 11:56:40','2006-02-15 22:12:47'), +(1871,69,1,3883,'8.99','2005-07-06 18:39:38','2006-02-15 22:12:47'), +(1872,69,1,4265,'0.99','2005-07-07 14:27:51','2006-02-15 22:12:47'), +(1873,69,1,4427,'0.99','2005-07-07 22:28:51','2006-02-15 22:12:47'), +(1874,69,2,5569,'3.99','2005-07-10 03:38:32','2006-02-15 22:12:47'), +(1875,69,2,6297,'4.99','2005-07-11 17:37:22','2006-02-15 22:12:47'), +(1876,69,1,6385,'6.99','2005-07-11 22:07:32','2006-02-15 22:12:47'), +(1877,69,2,6785,'6.99','2005-07-12 16:30:57','2006-02-15 22:12:47'), +(1878,69,2,8649,'6.99','2005-07-29 14:57:33','2006-02-15 22:12:47'), +(1879,69,2,9193,'2.99','2005-07-30 12:28:42','2006-02-15 22:12:47'), +(1880,69,1,9612,'2.99','2005-07-31 03:58:31','2006-02-15 22:12:47'), +(1881,69,2,10074,'0.99','2005-07-31 19:57:16','2006-02-15 22:12:47'), +(1882,69,1,11943,'3.99','2005-08-17 17:00:42','2006-02-15 22:12:47'), +(1883,69,1,12012,'2.99','2005-08-17 19:20:48','2006-02-15 22:12:47'), +(1884,69,1,12121,'2.99','2005-08-17 23:20:40','2006-02-15 22:12:47'), +(1885,69,1,12966,'5.99','2005-08-19 06:37:48','2006-02-15 22:12:47'), +(1886,69,1,13023,'5.99','2005-08-19 08:13:54','2006-02-15 22:12:47'), +(1887,69,2,14311,'3.99','2005-08-21 07:45:47','2006-02-15 22:12:47'), +(1888,69,2,14685,'0.99','2005-08-21 20:31:25','2006-02-15 22:12:47'), +(1889,69,2,14767,'2.99','2005-08-21 23:43:00','2006-02-15 22:12:47'), +(1890,69,1,15547,'2.99','2005-08-23 04:25:50','2006-02-15 22:12:47'), +(1891,69,2,11995,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:47'), +(1892,70,2,1044,'4.99','2005-05-31 06:24:44','2006-02-15 22:12:47'), +(1893,70,1,2472,'4.99','2005-06-18 20:32:40','2006-02-15 22:12:47'), +(1894,70,1,4061,'0.99','2005-07-07 04:13:35','2006-02-15 22:12:47'), +(1895,70,1,5927,'5.99','2005-07-10 21:57:14','2006-02-15 22:12:47'), +(1896,70,2,7036,'4.99','2005-07-27 03:06:12','2006-02-15 22:12:47'), +(1897,70,2,7421,'7.99','2005-07-27 17:10:05','2006-02-15 22:12:47'), +(1898,70,1,7714,'2.99','2005-07-28 04:32:30','2006-02-15 22:12:47'), +(1899,70,2,8550,'0.99','2005-07-29 11:12:37','2006-02-15 22:12:48'), +(1900,70,1,8747,'2.99','2005-07-29 19:07:57','2006-02-15 22:12:48'), +(1901,70,1,11274,'9.99','2005-08-02 14:24:08','2006-02-15 22:12:48'), +(1902,70,1,11901,'2.99','2005-08-17 15:35:47','2006-02-15 22:12:48'), +(1903,70,1,12003,'4.99','2005-08-17 18:56:05','2006-02-15 22:12:48'), +(1904,70,2,12218,'4.99','2005-08-18 02:48:14','2006-02-15 22:12:48'), +(1905,70,1,12581,'6.99','2005-08-18 15:49:15','2006-02-15 22:12:48'), +(1906,70,1,12951,'3.99','2005-08-19 05:56:44','2006-02-15 22:12:48'), +(1907,70,2,13680,'4.99','2005-08-20 08:44:06','2006-02-15 22:12:48'), +(1908,70,2,15238,'0.99','2005-08-22 17:46:12','2006-02-15 22:12:48'), +(1909,70,1,15616,'3.99','2005-08-23 07:06:38','2006-02-15 22:12:48'), +(1910,71,1,199,'2.99','2005-05-26 07:11:58','2006-02-15 22:12:48'), +(1911,71,1,272,'9.99','2005-05-26 16:27:11','2006-02-15 22:12:48'), +(1912,71,2,1873,'2.99','2005-06-17 02:38:28','2006-02-15 22:12:48'), +(1913,71,1,2374,'4.99','2005-06-18 14:44:06','2006-02-15 22:12:48'), +(1914,71,2,3345,'5.99','2005-06-21 11:05:07','2006-02-15 22:12:48'), +(1915,71,2,4614,'4.99','2005-07-08 07:45:17','2006-02-15 22:12:48'), +(1916,71,2,5281,'1.99','2005-07-09 14:55:07','2006-02-15 22:12:48'), +(1917,71,2,5358,'3.99','2005-07-09 18:09:21','2006-02-15 22:12:48'), +(1918,71,1,5543,'8.99','2005-07-10 02:48:03','2006-02-15 22:12:48'), +(1919,71,1,5770,'4.99','2005-07-10 13:21:28','2006-02-15 22:12:48'), +(1920,71,2,5814,'4.99','2005-07-10 15:46:50','2006-02-15 22:12:48'), +(1921,71,2,6020,'0.99','2005-07-11 02:08:55','2006-02-15 22:12:48'), +(1922,71,1,6739,'5.99','2005-07-12 14:22:08','2006-02-15 22:12:48'), +(1923,71,2,7160,'0.99','2005-07-27 07:26:06','2006-02-15 22:12:48'), +(1924,71,1,7550,'4.99','2005-07-27 21:55:07','2006-02-15 22:12:48'), +(1925,71,2,7982,'4.99','2005-07-28 14:19:59','2006-02-15 22:12:48'), +(1926,71,2,8128,'2.99','2005-07-28 19:46:06','2006-02-15 22:12:48'), +(1927,71,1,8293,'2.99','2005-07-29 02:30:50','2006-02-15 22:12:48'), +(1928,71,1,8574,'1.99','2005-07-29 11:51:53','2006-02-15 22:12:48'), +(1929,71,1,8668,'4.99','2005-07-29 15:41:31','2006-02-15 22:12:48'), +(1930,71,1,8783,'3.99','2005-07-29 20:31:28','2006-02-15 22:12:48'), +(1931,71,1,8789,'4.99','2005-07-29 20:47:27','2006-02-15 22:12:48'), +(1932,71,1,8956,'0.99','2005-07-30 03:32:29','2006-02-15 22:12:48'), +(1933,71,1,12417,'4.99','2005-08-18 09:57:00','2006-02-15 22:12:48'), +(1934,71,1,14105,'7.99','2005-08-21 00:44:34','2006-02-15 22:12:48'), +(1935,71,1,14228,'3.99','2005-08-21 04:57:08','2006-02-15 22:12:48'), +(1936,71,2,14781,'4.99','2005-08-22 00:15:12','2006-02-15 22:12:48'), +(1937,71,2,14904,'3.99','2005-08-22 04:32:01','2006-02-15 22:12:48'), +(1938,71,1,15704,'4.99','2005-08-23 10:25:45','2006-02-15 22:12:48'), +(1939,71,1,16000,'0.99','2005-08-23 20:44:36','2006-02-15 22:12:48'), +(1940,72,2,785,'4.99','2005-05-29 15:08:41','2006-02-15 22:12:48'), +(1941,72,2,845,'4.99','2005-05-30 01:17:25','2006-02-15 22:12:48'), +(1942,72,2,1047,'0.99','2005-05-31 06:45:57','2006-02-15 22:12:48'), +(1943,72,2,2294,'4.99','2005-06-18 07:46:34','2006-02-15 22:12:48'), +(1944,72,1,3700,'0.99','2005-07-06 10:12:19','2006-02-15 22:12:48'), +(1945,72,2,5223,'4.99','2005-07-09 12:06:03','2006-02-15 22:12:48'), +(1946,72,1,5302,'4.99','2005-07-09 15:42:36','2006-02-15 22:12:48'), +(1947,72,1,5424,'0.99','2005-07-09 20:59:09','2006-02-15 22:12:48'), +(1948,72,1,5840,'4.99','2005-07-10 17:09:09','2006-02-15 22:12:48'), +(1949,72,2,6081,'0.99','2005-07-11 05:11:09','2006-02-15 22:12:48'), +(1950,72,2,8228,'4.99','2005-07-29 00:08:58','2006-02-15 22:12:48'), +(1951,72,1,9027,'2.99','2005-07-30 05:58:27','2006-02-15 22:12:48'), +(1952,72,2,9420,'5.99','2005-07-30 21:05:18','2006-02-15 22:12:48'), +(1953,72,2,9648,'4.99','2005-07-31 05:46:03','2006-02-15 22:12:48'), +(1954,72,2,10267,'0.99','2005-08-01 03:07:26','2006-02-15 22:12:48'), +(1955,72,2,11206,'6.99','2005-08-02 11:58:03','2006-02-15 22:12:48'), +(1956,72,2,11422,'5.99','2005-08-02 19:52:08','2006-02-15 22:12:48'), +(1957,72,1,11630,'2.99','2005-08-17 04:27:46','2006-02-15 22:12:48'), +(1958,72,1,11679,'4.99','2005-08-17 06:08:54','2006-02-15 22:12:48'), +(1959,72,1,11923,'2.99','2005-08-17 16:21:47','2006-02-15 22:12:48'), +(1960,72,2,12020,'2.99','2005-08-17 19:50:33','2006-02-15 22:12:48'), +(1961,72,1,12448,'0.99','2005-08-18 10:59:04','2006-02-15 22:12:48'), +(1962,72,2,12593,'0.99','2005-08-18 16:17:54','2006-02-15 22:12:48'), +(1963,72,1,13145,'0.99','2005-08-19 12:53:53','2006-02-15 22:12:48'), +(1964,72,2,13327,'4.99','2005-08-19 19:55:45','2006-02-15 22:12:48'), +(1965,72,2,13597,'0.99','2005-08-20 05:59:05','2006-02-15 22:12:48'), +(1966,72,2,13660,'4.99','2005-08-20 08:05:56','2006-02-15 22:12:48'), +(1967,72,1,14020,'0.99','2005-08-20 20:59:43','2006-02-15 22:12:48'), +(1968,72,2,15110,'0.99','2005-08-22 12:16:46','2006-02-15 22:12:48'), +(1969,72,2,15146,'2.99','2005-08-22 13:57:55','2006-02-15 22:12:48'), +(1970,73,1,70,'2.99','2005-05-25 10:15:23','2006-02-15 22:12:48'), +(1971,73,2,1133,'4.99','2005-05-31 19:12:21','2006-02-15 22:12:48'), +(1972,73,1,1669,'0.99','2005-06-16 10:20:20','2006-02-15 22:12:48'), +(1973,73,2,2940,'4.99','2005-06-20 05:20:01','2006-02-15 22:12:48'), +(1974,73,2,4327,'2.99','2005-07-07 18:01:39','2006-02-15 22:12:48'), +(1975,73,1,4789,'4.99','2005-07-08 16:22:01','2006-02-15 22:12:49'), +(1976,73,2,5021,'4.99','2005-07-09 02:09:41','2006-02-15 22:12:49'), +(1977,73,1,6514,'9.99','2005-07-12 03:47:44','2006-02-15 22:12:49'), +(1978,73,1,6645,'2.99','2005-07-12 10:39:55','2006-02-15 22:12:49'), +(1979,73,1,7590,'4.99','2005-07-27 23:24:24','2006-02-15 22:12:49'), +(1980,73,1,7683,'4.99','2005-07-28 03:11:29','2006-02-15 22:12:49'), +(1981,73,1,8377,'4.99','2005-07-29 05:27:40','2006-02-15 22:12:49'), +(1982,73,1,9212,'2.99','2005-07-30 13:03:13','2006-02-15 22:12:49'), +(1983,73,1,9776,'2.99','2005-07-31 10:01:03','2006-02-15 22:12:49'), +(1984,73,2,10434,'4.99','2005-08-01 08:47:00','2006-02-15 22:12:49'), +(1985,73,1,11102,'4.99','2005-08-02 08:08:30','2006-02-15 22:12:49'), +(1986,73,2,11155,'0.99','2005-08-02 09:55:28','2006-02-15 22:12:49'), +(1987,73,2,11349,'4.99','2005-08-02 17:21:49','2006-02-15 22:12:49'), +(1988,73,2,11609,'3.99','2005-08-17 03:41:11','2006-02-15 22:12:49'), +(1989,73,2,12291,'4.99','2005-08-18 05:08:37','2006-02-15 22:12:49'), +(1990,73,1,13886,'4.99','2005-08-20 15:34:43','2006-02-15 22:12:49'), +(1991,73,1,15667,'0.99','2005-08-23 09:02:03','2006-02-15 22:12:49'), +(1992,73,2,16002,'2.99','2005-08-23 20:47:12','2006-02-15 22:12:49'), +(1993,73,2,13108,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:49'), +(1994,74,2,1121,'6.99','2005-05-31 16:37:36','2006-02-15 22:12:49'), +(1995,74,1,2498,'1.99','2005-06-18 22:56:26','2006-02-15 22:12:49'), +(1996,74,2,2517,'0.99','2005-06-19 00:11:26','2006-02-15 22:12:49'), +(1997,74,1,3020,'1.99','2005-06-20 11:12:04','2006-02-15 22:12:49'), +(1998,74,2,3445,'7.99','2005-06-21 20:40:28','2006-02-15 22:12:49'), +(1999,74,2,3819,'3.99','2005-07-06 15:35:06','2006-02-15 22:12:49'), +(2000,74,1,5530,'2.99','2005-07-10 02:13:49','2006-02-15 22:12:49'), +(2001,74,2,5603,'2.99','2005-07-10 05:04:54','2006-02-15 22:12:49'), +(2002,74,2,5917,'4.99','2005-07-10 21:30:22','2006-02-15 22:12:49'), +(2003,74,1,6241,'7.99','2005-07-11 14:40:48','2006-02-15 22:12:49'), +(2004,74,1,6475,'2.99','2005-07-12 01:36:57','2006-02-15 22:12:49'), +(2005,74,1,7304,'6.99','2005-07-27 12:56:56','2006-02-15 22:12:49'), +(2006,74,2,8796,'5.99','2005-07-29 21:09:11','2006-02-15 22:12:49'), +(2007,74,2,9112,'4.99','2005-07-30 09:06:31','2006-02-15 22:12:49'), +(2008,74,2,10051,'3.99','2005-07-31 19:14:20','2006-02-15 22:12:49'), +(2009,74,1,10624,'0.99','2005-08-01 15:27:05','2006-02-15 22:12:49'), +(2010,74,2,12374,'3.99','2005-08-18 08:07:45','2006-02-15 22:12:49'), +(2011,74,2,12477,'3.99','2005-08-18 12:25:01','2006-02-15 22:12:49'), +(2012,74,2,13335,'0.99','2005-08-19 20:03:18','2006-02-15 22:12:49'), +(2013,74,2,13520,'0.99','2005-08-20 02:41:46','2006-02-15 22:12:49'), +(2014,74,1,13583,'1.99','2005-08-20 05:29:45','2006-02-15 22:12:49'), +(2015,74,2,13747,'5.99','2005-08-20 10:56:06','2006-02-15 22:12:49'), +(2016,74,1,15286,'4.99','2005-08-22 19:17:56','2006-02-15 22:12:49'), +(2017,74,2,15325,'4.99','2005-08-22 20:27:38','2006-02-15 22:12:49'), +(2018,74,2,15500,'0.99','2005-08-23 02:39:37','2006-02-15 22:12:49'), +(2019,74,2,15739,'4.99','2005-08-23 11:56:22','2006-02-15 22:12:49'), +(2020,74,1,16046,'0.99','2005-08-23 22:26:47','2006-02-15 22:12:49'), +(2021,75,1,180,'4.99','2005-05-26 04:46:23','2006-02-15 22:12:49'), +(2022,75,2,268,'0.99','2005-05-26 16:19:08','2006-02-15 22:12:49'), +(2023,75,1,1920,'4.99','2005-06-17 06:00:23','2006-02-15 22:12:49'), +(2024,75,1,2161,'7.99','2005-06-17 23:39:50','2006-02-15 22:12:49'), +(2025,75,2,2738,'4.99','2005-06-19 15:56:30','2006-02-15 22:12:49'), +(2026,75,2,3062,'6.99','2005-06-20 13:50:00','2006-02-15 22:12:49'), +(2027,75,1,3210,'4.99','2005-06-21 01:00:25','2006-02-15 22:12:49'), +(2028,75,1,3711,'0.99','2005-07-06 10:46:15','2006-02-15 22:12:49'), +(2029,75,2,4179,'2.99','2005-07-07 10:17:15','2006-02-15 22:12:49'), +(2030,75,2,4511,'0.99','2005-07-08 02:36:21','2006-02-15 22:12:49'), +(2031,75,1,4639,'5.99','2005-07-08 08:57:21','2006-02-15 22:12:49'), +(2032,75,2,5260,'2.99','2005-07-09 14:05:45','2006-02-15 22:12:49'), +(2033,75,2,6052,'0.99','2005-07-11 03:51:27','2006-02-15 22:12:49'), +(2034,75,1,6092,'3.99','2005-07-11 05:51:31','2006-02-15 22:12:49'), +(2035,75,1,6486,'0.99','2005-07-12 02:09:36','2006-02-15 22:12:49'), +(2036,75,2,6530,'0.99','2005-07-12 04:33:19','2006-02-15 22:12:49'), +(2037,75,2,6852,'2.99','2005-07-12 19:33:49','2006-02-15 22:12:49'), +(2038,75,1,7052,'2.99','2005-07-27 03:36:38','2006-02-15 22:12:49'), +(2039,75,1,7454,'4.99','2005-07-27 18:27:26','2006-02-15 22:12:49'), +(2040,75,1,7843,'0.99','2005-07-28 09:10:22','2006-02-15 22:12:49'), +(2041,75,2,7897,'2.99','2005-07-28 11:01:51','2006-02-15 22:12:49'), +(2042,75,2,8202,'1.99','2005-07-28 23:11:45','2006-02-15 22:12:49'), +(2043,75,1,8823,'6.99','2005-07-29 22:22:12','2006-02-15 22:12:49'), +(2044,75,2,9168,'5.99','2005-07-30 11:31:17','2006-02-15 22:12:49'), +(2045,75,2,9442,'4.99','2005-07-30 21:44:31','2006-02-15 22:12:49'), +(2046,75,2,9501,'4.99','2005-07-30 23:59:21','2006-02-15 22:12:49'), +(2047,75,1,9783,'9.99','2005-07-31 10:15:46','2006-02-15 22:12:49'), +(2048,75,2,10653,'5.99','2005-08-01 16:28:07','2006-02-15 22:12:49'), +(2049,75,1,10726,'3.99','2005-08-01 19:14:53','2006-02-15 22:12:50'), +(2050,75,1,10871,'4.99','2005-08-02 00:27:24','2006-02-15 22:12:50'), +(2051,75,1,11330,'0.99','2005-08-02 16:45:33','2006-02-15 22:12:50'), +(2052,75,1,12002,'2.99','2005-08-17 18:56:02','2006-02-15 22:12:50'), +(2053,75,2,12239,'0.99','2005-08-18 03:26:42','2006-02-15 22:12:50'), +(2054,75,1,12336,'1.99','2005-08-18 06:59:41','2006-02-15 22:12:50'), +(2055,75,1,12412,'5.99','2005-08-18 09:49:52','2006-02-15 22:12:50'), +(2056,75,1,12426,'4.99','2005-08-18 10:24:11','2006-02-15 22:12:50'), +(2057,75,1,12662,'0.99','2005-08-18 19:10:41','2006-02-15 22:12:50'), +(2058,75,2,15928,'5.99','2005-08-23 18:23:24','2006-02-15 22:12:50'), +(2059,75,2,13534,'8.97','2006-02-14 15:16:03','2006-02-15 22:12:50'), +(2060,75,1,14488,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'), +(2061,75,2,15191,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'), +(2062,76,2,574,'1.99','2005-05-28 10:44:28','2006-02-15 22:12:50'), +(2063,76,1,926,'0.99','2005-05-30 12:15:54','2006-02-15 22:12:50'), +(2064,76,2,1487,'0.99','2005-06-15 21:27:42','2006-02-15 22:12:50'), +(2065,76,1,1791,'6.99','2005-06-16 20:04:28','2006-02-15 22:12:50'), +(2066,76,2,2111,'0.99','2005-06-17 19:47:21','2006-02-15 22:12:50'), +(2067,76,2,2397,'1.99','2005-06-18 15:51:25','2006-02-15 22:12:50'), +(2068,76,1,2894,'0.99','2005-06-20 02:22:42','2006-02-15 22:12:50'), +(2069,76,2,3416,'0.99','2005-06-21 17:05:29','2006-02-15 22:12:50'), +(2070,76,2,4099,'4.99','2005-07-07 06:20:33','2006-02-15 22:12:50'), +(2071,76,2,5571,'0.99','2005-07-10 03:48:20','2006-02-15 22:12:50'), +(2072,76,2,6789,'0.99','2005-07-12 16:34:40','2006-02-15 22:12:50'), +(2073,76,2,8253,'6.99','2005-07-29 00:57:06','2006-02-15 22:12:50'), +(2074,76,2,8357,'2.99','2005-07-29 04:59:44','2006-02-15 22:12:50'), +(2075,76,2,8405,'3.99','2005-07-29 06:28:19','2006-02-15 22:12:50'), +(2076,76,1,8935,'0.99','2005-07-30 02:38:45','2006-02-15 22:12:50'), +(2077,76,2,9312,'2.99','2005-07-30 16:59:17','2006-02-15 22:12:50'), +(2078,76,2,10082,'0.99','2005-07-31 20:09:32','2006-02-15 22:12:50'), +(2079,76,2,10795,'4.99','2005-08-01 21:56:37','2006-02-15 22:12:50'), +(2080,76,2,11172,'7.99','2005-08-02 10:27:52','2006-02-15 22:12:50'), +(2081,76,2,13697,'3.99','2005-08-20 09:21:08','2006-02-15 22:12:50'), +(2082,76,1,14637,'2.99','2005-08-21 19:01:00','2006-02-15 22:12:50'), +(2083,76,2,15169,'4.99','2005-08-22 15:21:56','2006-02-15 22:12:50'), +(2084,76,1,15566,'10.99','2005-08-23 05:17:23','2006-02-15 22:12:50'), +(2085,77,2,319,'2.99','2005-05-26 23:52:13','2006-02-15 22:12:50'), +(2086,77,1,419,'1.99','2005-05-27 15:15:11','2006-02-15 22:12:50'), +(2087,77,2,561,'2.99','2005-05-28 08:54:06','2006-02-15 22:12:50'), +(2088,77,1,586,'0.99','2005-05-28 12:03:00','2006-02-15 22:12:50'), +(2089,77,1,760,'5.99','2005-05-29 11:07:25','2006-02-15 22:12:50'), +(2090,77,1,1710,'4.99','2005-06-16 14:11:24','2006-02-15 22:12:50'), +(2091,77,1,2354,'3.99','2005-06-18 12:54:18','2006-02-15 22:12:50'), +(2092,77,2,2452,'8.99','2005-06-18 19:29:21','2006-02-15 22:12:50'), +(2093,77,1,3151,'2.99','2005-06-20 20:36:53','2006-02-15 22:12:50'), +(2094,77,2,3238,'0.99','2005-06-21 02:48:21','2006-02-15 22:12:50'), +(2095,77,2,4928,'0.99','2005-07-08 22:05:41','2006-02-15 22:12:50'), +(2096,77,2,6168,'0.99','2005-07-11 10:21:38','2006-02-15 22:12:50'), +(2097,77,2,6390,'2.99','2005-07-11 22:19:23','2006-02-15 22:12:50'), +(2098,77,1,7406,'3.99','2005-07-27 16:25:45','2006-02-15 22:12:50'), +(2099,77,1,7710,'0.99','2005-07-28 04:24:07','2006-02-15 22:12:50'), +(2100,77,2,8942,'4.99','2005-07-30 03:01:07','2006-02-15 22:12:50'), +(2101,77,1,9811,'0.99','2005-07-31 11:23:45','2006-02-15 22:12:50'), +(2102,77,2,10184,'4.99','2005-08-01 00:09:33','2006-02-15 22:12:50'), +(2103,77,1,10886,'2.99','2005-08-02 00:52:34','2006-02-15 22:12:50'), +(2104,77,1,10895,'0.99','2005-08-02 01:16:59','2006-02-15 22:12:50'), +(2105,77,2,10991,'0.99','2005-08-02 04:41:12','2006-02-15 22:12:50'), +(2106,77,1,11469,'2.99','2005-08-02 21:48:09','2006-02-15 22:12:50'), +(2107,77,2,11767,'7.99','2005-08-17 10:00:40','2006-02-15 22:12:50'), +(2108,77,1,12065,'6.99','2005-08-17 21:31:46','2006-02-15 22:12:50'), +(2109,77,2,12328,'1.99','2005-08-18 06:43:56','2006-02-15 22:12:50'), +(2110,77,2,13752,'9.99','2005-08-20 11:17:45','2006-02-15 22:12:50'), +(2111,77,2,14530,'4.99','2005-08-21 15:10:50','2006-02-15 22:12:50'), +(2112,77,2,15359,'2.99','2005-08-22 21:34:00','2006-02-15 22:12:50'), +(2113,78,1,2207,'2.99','2005-06-18 02:19:21','2006-02-15 22:12:50'), +(2114,78,2,2949,'6.99','2005-06-20 06:05:53','2006-02-15 22:12:50'), +(2115,78,2,3248,'7.99','2005-06-21 03:12:21','2006-02-15 22:12:50'), +(2116,78,1,3593,'4.99','2005-07-06 04:39:52','2006-02-15 22:12:50'), +(2117,78,2,4227,'5.99','2005-07-07 12:41:36','2006-02-15 22:12:50'), +(2118,78,2,4627,'2.99','2005-07-08 08:24:39','2006-02-15 22:12:50'), +(2119,78,2,4778,'0.99','2005-07-08 15:51:51','2006-02-15 22:12:50'), +(2120,78,1,5078,'1.99','2005-07-09 05:20:24','2006-02-15 22:12:50'), +(2121,78,2,5604,'0.99','2005-07-10 05:05:00','2006-02-15 22:12:51'), +(2122,78,1,6005,'0.99','2005-07-11 01:36:42','2006-02-15 22:12:51'), +(2123,78,1,6344,'4.99','2005-07-11 20:04:43','2006-02-15 22:12:51'), +(2124,78,2,7200,'1.99','2005-07-27 08:57:38','2006-02-15 22:12:51'), +(2125,78,2,7747,'4.99','2005-07-28 05:50:11','2006-02-15 22:12:51'), +(2126,78,2,7926,'3.99','2005-07-28 12:13:02','2006-02-15 22:12:51'), +(2127,78,1,7957,'6.99','2005-07-28 13:34:08','2006-02-15 22:12:51'), +(2128,78,2,8920,'4.99','2005-07-30 01:59:24','2006-02-15 22:12:51'), +(2129,78,1,9068,'5.99','2005-07-30 07:31:45','2006-02-15 22:12:51'), +(2130,78,2,10350,'3.99','2005-08-01 05:30:05','2006-02-15 22:12:51'), +(2131,78,1,10590,'2.99','2005-08-01 14:11:53','2006-02-15 22:12:51'), +(2132,78,1,10831,'7.99','2005-08-01 23:22:45','2006-02-15 22:12:51'), +(2133,78,1,10942,'10.99','2005-08-02 03:16:31','2006-02-15 22:12:51'), +(2134,78,2,12474,'8.99','2005-08-18 12:10:03','2006-02-15 22:12:51'), +(2135,78,2,12653,'4.99','2005-08-18 18:53:17','2006-02-15 22:12:51'), +(2136,78,2,13124,'5.99','2005-08-19 11:55:59','2006-02-15 22:12:51'), +(2137,78,1,13432,'0.99','2005-08-19 23:29:06','2006-02-15 22:12:51'), +(2138,78,2,13792,'5.99','2005-08-20 12:21:37','2006-02-15 22:12:51'), +(2139,78,2,14620,'2.99','2005-08-21 18:10:43','2006-02-15 22:12:51'), +(2140,78,1,14716,'0.99','2005-08-21 21:29:55','2006-02-15 22:12:51'), +(2141,78,1,14810,'2.99','2005-08-22 01:08:34','2006-02-15 22:12:51'), +(2142,78,2,14862,'7.99','2005-08-22 02:51:41','2006-02-15 22:12:51'), +(2143,78,2,16039,'2.99','2005-08-23 22:18:51','2006-02-15 22:12:51'), +(2144,79,1,840,'4.99','2005-05-30 00:28:41','2006-02-15 22:12:51'), +(2145,79,1,859,'2.99','2005-05-30 02:36:20','2006-02-15 22:12:51'), +(2146,79,1,928,'2.99','2005-05-30 12:27:14','2006-02-15 22:12:51'), +(2147,79,2,3096,'4.99','2005-06-20 16:17:56','2006-02-15 22:12:51'), +(2148,79,2,3178,'2.99','2005-06-20 22:35:12','2006-02-15 22:12:51'), +(2149,79,1,3641,'0.99','2005-07-06 07:17:09','2006-02-15 22:12:51'), +(2150,79,1,3748,'2.99','2005-07-06 12:11:22','2006-02-15 22:12:51'), +(2151,79,2,4049,'4.99','2005-07-07 03:34:53','2006-02-15 22:12:51'), +(2152,79,1,4530,'4.99','2005-07-08 03:27:05','2006-02-15 22:12:51'), +(2153,79,2,4736,'4.99','2005-07-08 13:22:55','2006-02-15 22:12:51'), +(2154,79,2,5205,'2.99','2005-07-09 10:56:37','2006-02-15 22:12:51'), +(2155,79,1,5555,'2.99','2005-07-10 03:08:55','2006-02-15 22:12:51'), +(2156,79,2,6162,'5.99','2005-07-11 10:12:30','2006-02-15 22:12:51'), +(2157,79,1,7220,'9.99','2005-07-27 09:35:54','2006-02-15 22:12:51'), +(2158,79,1,8849,'2.99','2005-07-29 23:21:01','2006-02-15 22:12:51'), +(2159,79,1,9814,'1.99','2005-07-31 11:29:46','2006-02-15 22:12:51'), +(2160,79,2,9845,'6.99','2005-07-31 12:28:05','2006-02-15 22:12:51'), +(2161,79,1,9989,'0.99','2005-07-31 17:22:39','2006-02-15 22:12:51'), +(2162,79,1,10676,'2.99','2005-08-01 17:14:15','2006-02-15 22:12:51'), +(2163,79,2,11641,'4.99','2005-08-17 04:45:39','2006-02-15 22:12:51'), +(2164,79,2,13026,'2.99','2005-08-19 08:22:45','2006-02-15 22:12:51'), +(2165,79,1,14179,'0.99','2005-08-21 03:14:27','2006-02-15 22:12:51'), +(2166,80,1,2596,'2.99','2005-06-19 05:48:26','2006-02-15 22:12:51'), +(2167,80,2,2805,'8.99','2005-06-19 19:29:17','2006-02-15 22:12:51'), +(2168,80,1,3367,'3.99','2005-06-21 13:08:21','2006-02-15 22:12:51'), +(2169,80,2,3623,'4.99','2005-07-06 06:05:23','2006-02-15 22:12:51'), +(2170,80,2,4268,'8.99','2005-07-07 14:36:05','2006-02-15 22:12:51'), +(2171,80,2,4299,'3.99','2005-07-07 16:33:48','2006-02-15 22:12:51'), +(2172,80,1,4688,'5.99','2005-07-08 11:03:29','2006-02-15 22:12:51'), +(2173,80,2,5420,'3.99','2005-07-09 20:48:42','2006-02-15 22:12:51'), +(2174,80,2,5452,'4.99','2005-07-09 22:23:21','2006-02-15 22:12:51'), +(2175,80,1,6199,'5.99','2005-07-11 12:16:03','2006-02-15 22:12:51'), +(2176,80,2,6417,'6.99','2005-07-11 23:35:11','2006-02-15 22:12:51'), +(2177,80,2,6707,'1.99','2005-07-12 13:07:55','2006-02-15 22:12:51'), +(2178,80,2,7558,'0.99','2005-07-27 22:19:08','2006-02-15 22:12:51'), +(2179,80,1,8509,'5.99','2005-07-29 09:38:19','2006-02-15 22:12:51'), +(2180,80,1,8884,'6.99','2005-07-30 00:26:22','2006-02-15 22:12:51'), +(2181,80,1,10313,'0.99','2005-08-01 04:29:29','2006-02-15 22:12:51'), +(2182,80,1,10656,'6.99','2005-08-01 16:38:04','2006-02-15 22:12:51'), +(2183,80,1,10690,'8.99','2005-08-01 18:05:54','2006-02-15 22:12:51'), +(2184,80,2,11101,'5.99','2005-08-02 08:08:24','2006-02-15 22:12:51'), +(2185,80,2,11839,'0.99','2005-08-17 13:08:45','2006-02-15 22:12:51'), +(2186,80,1,11850,'1.99','2005-08-17 13:30:15','2006-02-15 22:12:51'), +(2187,80,2,12468,'2.99','2005-08-18 11:41:47','2006-02-15 22:12:51'), +(2188,80,1,13352,'4.99','2005-08-19 20:51:40','2006-02-15 22:12:51'), +(2189,80,2,13395,'0.99','2005-08-19 22:05:40','2006-02-15 22:12:51'), +(2190,80,1,13724,'4.99','2005-08-20 10:07:28','2006-02-15 22:12:51'), +(2191,80,2,13851,'0.99','2005-08-20 14:44:22','2006-02-15 22:12:51'), +(2192,80,1,14916,'0.99','2005-08-22 04:56:57','2006-02-15 22:12:52'), +(2193,80,1,15648,'8.99','2005-08-23 08:27:57','2006-02-15 22:12:52'), +(2194,80,1,16012,'5.99','2005-08-23 21:13:39','2006-02-15 22:12:52'), +(2195,80,2,12457,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:52'), +(2196,81,1,289,'0.99','2005-05-26 20:01:09','2006-02-15 22:12:52'), +(2197,81,1,2714,'1.99','2005-06-19 14:26:09','2006-02-15 22:12:52'), +(2198,81,1,2854,'5.99','2005-06-19 23:11:48','2006-02-15 22:12:52'), +(2199,81,1,3229,'4.99','2005-06-21 02:20:41','2006-02-15 22:12:52'), +(2200,81,1,3879,'2.99','2005-07-06 18:31:20','2006-02-15 22:12:52'), +(2201,81,2,4983,'9.99','2005-07-09 00:34:16','2006-02-15 22:12:52'), +(2202,81,1,5468,'0.99','2005-07-09 23:06:09','2006-02-15 22:12:52'), +(2203,81,2,7130,'4.99','2005-07-27 06:23:36','2006-02-15 22:12:52'), +(2204,81,1,7709,'0.99','2005-07-28 04:22:14','2006-02-15 22:12:52'), +(2205,81,2,9454,'3.99','2005-07-30 22:20:09','2006-02-15 22:12:52'), +(2206,81,2,10456,'0.99','2005-08-01 09:17:21','2006-02-15 22:12:52'), +(2207,81,1,11837,'5.99','2005-08-17 13:04:41','2006-02-15 22:12:52'), +(2208,81,2,12181,'4.99','2005-08-18 01:28:18','2006-02-15 22:12:52'), +(2209,81,2,13820,'5.99','2005-08-20 13:26:37','2006-02-15 22:12:52'), +(2210,81,1,14128,'4.99','2005-08-21 01:35:58','2006-02-15 22:12:52'), +(2211,81,1,14642,'3.99','2005-08-21 19:09:40','2006-02-15 22:12:52'), +(2212,81,2,14748,'7.99','2005-08-21 23:02:02','2006-02-15 22:12:52'), +(2213,81,1,15224,'5.99','2005-08-22 17:18:05','2006-02-15 22:12:52'), +(2214,81,1,15602,'4.99','2005-08-23 06:41:07','2006-02-15 22:12:52'), +(2215,81,1,15823,'4.99','2005-08-23 15:08:00','2006-02-15 22:12:52'), +(2216,81,1,15858,'2.99','2005-08-23 16:07:15','2006-02-15 22:12:52'), +(2217,81,2,15884,'1.99','2005-08-23 16:45:28','2006-02-15 22:12:52'), +(2218,82,2,145,'2.99','2005-05-25 23:59:03','2006-02-15 22:12:52'), +(2219,82,2,288,'8.99','2005-05-26 19:47:49','2006-02-15 22:12:52'), +(2220,82,1,1438,'0.99','2005-06-15 18:38:51','2006-02-15 22:12:52'), +(2221,82,2,1570,'0.99','2005-06-16 03:21:33','2006-02-15 22:12:52'), +(2222,82,1,2506,'8.99','2005-06-18 23:29:53','2006-02-15 22:12:52'), +(2223,82,1,2819,'8.99','2005-06-19 20:13:33','2006-02-15 22:12:52'), +(2224,82,2,3332,'0.99','2005-06-21 09:55:12','2006-02-15 22:12:52'), +(2225,82,1,3680,'2.99','2005-07-06 09:16:10','2006-02-15 22:12:52'), +(2226,82,1,4598,'6.99','2005-07-08 06:46:26','2006-02-15 22:12:52'), +(2227,82,2,5746,'4.99','2005-07-10 12:15:12','2006-02-15 22:12:52'), +(2228,82,2,6082,'6.99','2005-07-11 05:12:41','2006-02-15 22:12:52'), +(2229,82,2,6708,'6.99','2005-07-12 13:10:55','2006-02-15 22:12:52'), +(2230,82,2,7733,'9.99','2005-07-28 05:04:47','2006-02-15 22:12:52'), +(2231,82,2,7873,'0.99','2005-07-28 10:19:46','2006-02-15 22:12:52'), +(2232,82,1,8487,'4.99','2005-07-29 08:53:49','2006-02-15 22:12:52'), +(2233,82,2,9277,'3.99','2005-07-30 15:13:45','2006-02-15 22:12:52'), +(2234,82,1,9305,'8.99','2005-07-30 16:45:56','2006-02-15 22:12:52'), +(2235,82,1,9447,'6.99','2005-07-30 21:54:22','2006-02-15 22:12:52'), +(2236,82,1,11093,'4.99','2005-08-02 07:59:49','2006-02-15 22:12:52'), +(2237,82,2,11688,'5.99','2005-08-17 06:41:58','2006-02-15 22:12:52'), +(2238,82,1,12470,'3.99','2005-08-18 11:55:42','2006-02-15 22:12:52'), +(2239,82,1,13032,'0.99','2005-08-19 08:31:50','2006-02-15 22:12:52'), +(2240,82,2,13847,'6.99','2005-08-20 14:33:59','2006-02-15 22:12:52'), +(2241,82,2,14518,'0.99','2005-08-21 14:58:58','2006-02-15 22:12:52'), +(2242,82,2,14892,'4.99','2005-08-22 04:15:05','2006-02-15 22:12:52'), +(2243,82,2,15516,'3.99','2005-08-23 03:12:54','2006-02-15 22:12:52'), +(2244,83,2,222,'0.99','2005-05-26 10:14:38','2006-02-15 22:12:52'), +(2245,83,2,950,'0.99','2005-05-30 16:06:08','2006-02-15 22:12:52'), +(2246,83,2,989,'2.99','2005-05-30 23:11:51','2006-02-15 22:12:52'), +(2247,83,1,1354,'5.99','2005-06-15 13:13:49','2006-02-15 22:12:52'), +(2248,83,1,1591,'5.99','2005-06-16 05:12:37','2006-02-15 22:12:52'), +(2249,83,2,1617,'3.99','2005-06-16 07:06:06','2006-02-15 22:12:52'), +(2250,83,2,3230,'4.99','2005-06-21 02:23:16','2006-02-15 22:12:52'), +(2251,83,2,3722,'6.99','2005-07-06 11:10:27','2006-02-15 22:12:52'), +(2252,83,1,3754,'2.99','2005-07-06 12:35:44','2006-02-15 22:12:52'), +(2253,83,1,5218,'0.99','2005-07-09 11:57:12','2006-02-15 22:12:52'), +(2254,83,2,5394,'6.99','2005-07-09 19:36:15','2006-02-15 22:12:52'), +(2255,83,2,6194,'2.99','2005-07-11 11:51:00','2006-02-15 22:12:52'), +(2256,83,2,6861,'2.99','2005-07-12 19:56:52','2006-02-15 22:12:52'), +(2257,83,2,7721,'0.99','2005-07-28 04:42:58','2006-02-15 22:12:52'), +(2258,83,2,8729,'4.99','2005-07-29 18:23:02','2006-02-15 22:12:52'), +(2259,83,1,9867,'1.99','2005-07-31 13:17:04','2006-02-15 22:12:53'), +(2260,83,1,11408,'0.99','2005-08-02 19:25:13','2006-02-15 22:12:53'), +(2261,83,1,11565,'5.99','2005-08-17 01:28:05','2006-02-15 22:12:53'), +(2262,83,2,11777,'4.99','2005-08-17 10:27:19','2006-02-15 22:12:53'), +(2263,83,1,12258,'4.99','2005-08-18 04:11:13','2006-02-15 22:12:53'), +(2264,83,2,12985,'5.99','2005-08-19 07:08:05','2006-02-15 22:12:53'), +(2265,83,1,13875,'4.99','2005-08-20 15:13:11','2006-02-15 22:12:53'), +(2266,83,2,15498,'4.99','2005-08-23 02:33:27','2006-02-15 22:12:53'), +(2267,83,2,15737,'5.99','2005-08-23 11:52:18','2006-02-15 22:12:53'), +(2268,83,2,11563,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:53'), +(2269,84,2,408,'0.99','2005-05-27 13:57:39','2006-02-15 22:12:53'), +(2270,84,1,739,'6.99','2005-05-29 08:28:18','2006-02-15 22:12:53'), +(2271,84,1,834,'4.99','2005-05-29 23:24:30','2006-02-15 22:12:53'), +(2272,84,2,1195,'0.99','2005-06-15 01:37:38','2006-02-15 22:12:53'), +(2273,84,2,1320,'4.99','2005-06-15 10:42:13','2006-02-15 22:12:53'), +(2274,84,2,1815,'0.99','2005-06-16 21:16:07','2006-02-15 22:12:53'), +(2275,84,1,2012,'5.99','2005-06-17 11:57:15','2006-02-15 22:12:53'), +(2276,84,2,2042,'0.99','2005-06-17 14:31:02','2006-02-15 22:12:53'), +(2277,84,2,2409,'0.99','2005-06-18 16:53:33','2006-02-15 22:12:53'), +(2278,84,2,4079,'6.99','2005-07-07 05:06:27','2006-02-15 22:12:53'), +(2279,84,2,4838,'6.99','2005-07-08 18:11:00','2006-02-15 22:12:53'), +(2280,84,1,5221,'5.99','2005-07-09 12:02:23','2006-02-15 22:12:53'), +(2281,84,1,5237,'0.99','2005-07-09 12:56:58','2006-02-15 22:12:53'), +(2282,84,1,5971,'5.99','2005-07-11 00:05:58','2006-02-15 22:12:53'), +(2283,84,2,6259,'2.99','2005-07-11 15:25:52','2006-02-15 22:12:53'), +(2284,84,2,6415,'9.99','2005-07-11 23:27:52','2006-02-15 22:12:53'), +(2285,84,1,7854,'2.99','2005-07-28 09:42:31','2006-02-15 22:12:53'), +(2286,84,2,8019,'4.99','2005-07-28 15:37:43','2006-02-15 22:12:53'), +(2287,84,1,8654,'8.99','2005-07-29 15:04:27','2006-02-15 22:12:53'), +(2288,84,2,9074,'2.99','2005-07-30 07:50:10','2006-02-15 22:12:53'), +(2289,84,2,9680,'4.99','2005-07-31 06:41:46','2006-02-15 22:12:53'), +(2290,84,2,10540,'0.99','2005-08-01 12:24:42','2006-02-15 22:12:53'), +(2291,84,1,10872,'2.99','2005-08-02 00:27:50','2006-02-15 22:12:53'), +(2292,84,2,11220,'4.99','2005-08-02 12:31:41','2006-02-15 22:12:53'), +(2293,84,2,11424,'3.99','2005-08-02 19:57:42','2006-02-15 22:12:53'), +(2294,84,2,11453,'7.99','2005-08-02 21:00:05','2006-02-15 22:12:53'), +(2295,84,2,11899,'0.99','2005-08-17 15:29:12','2006-02-15 22:12:53'), +(2296,84,2,11960,'4.99','2005-08-17 17:24:30','2006-02-15 22:12:53'), +(2297,84,2,12364,'4.99','2005-08-18 07:55:09','2006-02-15 22:12:53'), +(2298,84,2,13115,'2.99','2005-08-19 11:27:43','2006-02-15 22:12:53'), +(2299,84,1,14330,'5.99','2005-08-21 08:29:20','2006-02-15 22:12:53'), +(2300,84,1,15190,'4.99','2005-08-22 15:57:38','2006-02-15 22:12:53'), +(2301,84,1,15255,'2.99','2005-08-22 18:16:50','2006-02-15 22:12:53'), +(2302,85,1,690,'9.99','2005-05-29 00:54:53','2006-02-15 22:12:53'), +(2303,85,2,908,'4.99','2005-05-30 10:38:37','2006-02-15 22:12:53'), +(2304,85,1,1685,'1.99','2005-06-16 12:06:57','2006-02-15 22:12:53'), +(2305,85,1,2131,'5.99','2005-06-17 21:02:25','2006-02-15 22:12:53'), +(2306,85,2,2794,'0.99','2005-06-19 18:53:05','2006-02-15 22:12:53'), +(2307,85,1,3165,'4.99','2005-06-20 21:29:17','2006-02-15 22:12:53'), +(2308,85,1,3307,'1.99','2005-06-21 07:52:30','2006-02-15 22:12:53'), +(2309,85,2,3418,'3.99','2005-06-21 17:06:38','2006-02-15 22:12:53'), +(2310,85,2,4451,'0.99','2005-07-07 23:29:54','2006-02-15 22:12:53'), +(2311,85,1,4705,'2.99','2005-07-08 11:50:38','2006-02-15 22:12:53'), +(2312,85,1,5051,'4.99','2005-07-09 03:57:53','2006-02-15 22:12:53'), +(2313,85,1,5519,'0.99','2005-07-10 01:18:32','2006-02-15 22:12:53'), +(2314,85,2,7906,'0.99','2005-07-28 11:31:42','2006-02-15 22:12:53'), +(2315,85,2,9427,'7.99','2005-07-30 21:16:33','2006-02-15 22:12:53'), +(2316,85,2,9957,'4.99','2005-07-31 16:03:55','2006-02-15 22:12:53'), +(2317,85,1,9985,'2.99','2005-07-31 17:14:47','2006-02-15 22:12:53'), +(2318,85,1,10328,'4.99','2005-08-01 04:56:10','2006-02-15 22:12:53'), +(2319,85,1,10548,'0.99','2005-08-01 12:44:32','2006-02-15 22:12:53'), +(2320,85,2,11067,'8.99','2005-08-02 07:03:24','2006-02-15 22:12:53'), +(2321,85,2,12036,'0.99','2005-08-17 20:19:06','2006-02-15 22:12:53'), +(2322,85,1,12456,'4.99','2005-08-18 11:21:51','2006-02-15 22:12:53'), +(2323,85,1,13727,'3.99','2005-08-20 10:08:53','2006-02-15 22:12:53'), +(2324,85,2,13733,'0.99','2005-08-20 10:25:12','2006-02-15 22:12:53'), +(2325,86,1,66,'1.99','2005-05-25 09:35:12','2006-02-15 22:12:53'), +(2326,86,2,1640,'4.99','2005-06-16 08:35:39','2006-02-15 22:12:54'), +(2327,86,2,1822,'0.99','2005-06-16 21:43:45','2006-02-15 22:12:54'), +(2328,86,2,1924,'2.99','2005-06-17 06:13:34','2006-02-15 22:12:54'), +(2329,86,1,2141,'4.99','2005-06-17 21:41:34','2006-02-15 22:12:54'), +(2330,86,1,2518,'4.99','2005-06-19 00:16:23','2006-02-15 22:12:54'), +(2331,86,1,3207,'0.99','2005-06-21 00:43:16','2006-02-15 22:12:54'), +(2332,86,2,3270,'4.99','2005-06-21 05:07:31','2006-02-15 22:12:54'), +(2333,86,1,3611,'0.99','2005-07-06 05:37:18','2006-02-15 22:12:54'), +(2334,86,2,3945,'4.99','2005-07-06 21:35:00','2006-02-15 22:12:54'), +(2335,86,1,4235,'2.99','2005-07-07 13:05:52','2006-02-15 22:12:54'), +(2336,86,1,4571,'9.99','2005-07-08 05:34:41','2006-02-15 22:12:54'), +(2337,86,2,5295,'0.99','2005-07-09 15:25:06','2006-02-15 22:12:54'), +(2338,86,1,5752,'8.99','2005-07-10 12:27:38','2006-02-15 22:12:54'), +(2339,86,2,6872,'7.99','2005-07-12 20:15:04','2006-02-15 22:12:54'), +(2340,86,1,7231,'2.99','2005-07-27 10:01:51','2006-02-15 22:12:54'), +(2341,86,1,7874,'10.99','2005-07-28 10:21:52','2006-02-15 22:12:54'), +(2342,86,2,8803,'5.99','2005-07-29 21:26:24','2006-02-15 22:12:54'), +(2343,86,1,8850,'2.99','2005-07-29 23:24:20','2006-02-15 22:12:54'), +(2344,86,2,9376,'4.99','2005-07-30 19:11:49','2006-02-15 22:12:54'), +(2345,86,2,10252,'8.99','2005-08-01 02:39:39','2006-02-15 22:12:54'), +(2346,86,2,10536,'4.99','2005-08-01 12:21:53','2006-02-15 22:12:54'), +(2347,86,2,10584,'6.99','2005-08-01 13:58:47','2006-02-15 22:12:54'), +(2348,86,2,11916,'0.99','2005-08-17 16:05:51','2006-02-15 22:12:54'), +(2349,86,1,12198,'2.99','2005-08-18 02:09:20','2006-02-15 22:12:54'), +(2350,86,2,12870,'3.99','2005-08-19 02:54:38','2006-02-15 22:12:54'), +(2351,86,2,13338,'4.99','2005-08-19 20:09:59','2006-02-15 22:12:54'), +(2352,86,1,13535,'4.99','2005-08-20 03:30:25','2006-02-15 22:12:54'), +(2353,86,1,13874,'2.99','2005-08-20 15:11:48','2006-02-15 22:12:54'), +(2354,86,2,14122,'1.99','2005-08-21 01:29:01','2006-02-15 22:12:54'), +(2355,86,2,15099,'4.99','2005-08-22 11:49:16','2006-02-15 22:12:54'), +(2356,86,1,15715,'1.99','2005-08-23 10:57:40','2006-02-15 22:12:54'), +(2357,86,2,15940,'5.99','2005-08-23 18:45:06','2006-02-15 22:12:54'), +(2358,87,2,451,'4.99','2005-05-27 19:27:54','2006-02-15 22:12:54'), +(2359,87,1,674,'2.99','2005-05-28 22:11:35','2006-02-15 22:12:54'), +(2360,87,2,1580,'4.99','2005-06-16 04:12:25','2006-02-15 22:12:54'), +(2361,87,1,1904,'2.99','2005-06-17 04:45:41','2006-02-15 22:12:54'), +(2362,87,2,2408,'2.99','2005-06-18 16:50:44','2006-02-15 22:12:54'), +(2363,87,1,2516,'4.99','2005-06-19 00:03:28','2006-02-15 22:12:54'), +(2364,87,2,3122,'9.99','2005-06-20 18:25:57','2006-02-15 22:12:54'), +(2365,87,1,5084,'7.99','2005-07-09 05:33:27','2006-02-15 22:12:54'), +(2366,87,1,5628,'3.99','2005-07-10 05:56:40','2006-02-15 22:12:54'), +(2367,87,2,5700,'4.99','2005-07-10 09:49:42','2006-02-15 22:12:54'), +(2368,87,1,6638,'4.99','2005-07-12 09:58:02','2006-02-15 22:12:54'), +(2369,87,2,7599,'2.99','2005-07-27 23:38:46','2006-02-15 22:12:54'), +(2370,87,2,8187,'7.99','2005-07-28 22:33:53','2006-02-15 22:12:54'), +(2371,87,1,8286,'5.99','2005-07-29 02:02:46','2006-02-15 22:12:54'), +(2372,87,2,8323,'4.99','2005-07-29 03:52:59','2006-02-15 22:12:54'), +(2373,87,2,9060,'0.99','2005-07-30 07:20:36','2006-02-15 22:12:54'), +(2374,87,1,9348,'2.99','2005-07-30 18:17:09','2006-02-15 22:12:54'), +(2375,87,2,9364,'8.99','2005-07-30 18:44:44','2006-02-15 22:12:54'), +(2376,87,2,10205,'4.99','2005-08-01 00:48:24','2006-02-15 22:12:54'), +(2377,87,1,10387,'4.99','2005-08-01 06:42:31','2006-02-15 22:12:54'), +(2378,87,1,12232,'0.99','2005-08-18 03:14:14','2006-02-15 22:12:54'), +(2379,87,1,12257,'8.99','2005-08-18 04:11:03','2006-02-15 22:12:54'), +(2380,87,1,12264,'5.99','2005-08-18 04:17:33','2006-02-15 22:12:54'), +(2381,87,1,13479,'0.99','2005-08-20 01:09:11','2006-02-15 22:12:54'), +(2382,87,1,13906,'0.99','2005-08-20 16:16:03','2006-02-15 22:12:54'), +(2383,87,2,14024,'10.99','2005-08-20 21:13:58','2006-02-15 22:12:54'), +(2384,87,1,14566,'2.99','2005-08-21 16:25:05','2006-02-15 22:12:54'), +(2385,87,1,15876,'2.99','2005-08-23 16:32:10','2006-02-15 22:12:54'), +(2386,87,2,15890,'4.99','2005-08-23 16:58:12','2006-02-15 22:12:54'), +(2387,87,2,12719,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:54'), +(2388,88,2,36,'2.99','2005-05-25 04:36:26','2006-02-15 22:12:54'), +(2389,88,1,1433,'2.99','2005-06-15 18:30:00','2006-02-15 22:12:54'), +(2390,88,1,2483,'7.99','2005-06-18 21:22:23','2006-02-15 22:12:54'), +(2391,88,1,2878,'2.99','2005-06-20 01:09:14','2006-02-15 22:12:55'), +(2392,88,2,3524,'0.99','2005-07-06 01:01:51','2006-02-15 22:12:55'), +(2393,88,2,3620,'0.99','2005-07-06 06:01:50','2006-02-15 22:12:55'), +(2394,88,2,3673,'5.99','2005-07-06 09:02:09','2006-02-15 22:12:55'), +(2395,88,1,3846,'5.99','2005-07-06 16:43:10','2006-02-15 22:12:55'), +(2396,88,1,6643,'1.99','2005-07-12 10:39:22','2006-02-15 22:12:55'), +(2397,88,1,6916,'4.99','2005-07-12 22:29:18','2006-02-15 22:12:55'), +(2398,88,1,7088,'5.99','2005-07-27 04:42:28','2006-02-15 22:12:55'), +(2399,88,1,7621,'8.99','2005-07-28 00:34:06','2006-02-15 22:12:55'), +(2400,88,1,8296,'2.99','2005-07-29 02:43:25','2006-02-15 22:12:55'), +(2401,88,2,8526,'2.99','2005-07-29 10:20:48','2006-02-15 22:12:55'), +(2402,88,1,8692,'2.99','2005-07-29 16:43:39','2006-02-15 22:12:55'), +(2403,88,1,10424,'0.99','2005-08-01 08:22:54','2006-02-15 22:12:55'), +(2404,88,1,11056,'6.99','2005-08-02 06:36:27','2006-02-15 22:12:55'), +(2405,88,2,14097,'2.99','2005-08-21 00:28:48','2006-02-15 22:12:55'), +(2406,88,2,14827,'5.99','2005-08-22 01:32:32','2006-02-15 22:12:55'), +(2407,88,2,15098,'3.99','2005-08-22 11:48:19','2006-02-15 22:12:55'), +(2408,88,1,15898,'4.99','2005-08-23 17:13:01','2006-02-15 22:12:55'), +(2409,89,2,141,'2.99','2005-05-25 23:34:53','2006-02-15 22:12:55'), +(2410,89,2,588,'0.99','2005-05-28 12:08:37','2006-02-15 22:12:55'), +(2411,89,1,740,'5.99','2005-05-29 08:30:36','2006-02-15 22:12:55'), +(2412,89,1,1252,'8.99','2005-06-15 06:05:18','2006-02-15 22:12:55'), +(2413,89,2,1407,'7.99','2005-06-15 16:45:07','2006-02-15 22:12:55'), +(2414,89,1,1948,'4.99','2005-06-17 08:06:53','2006-02-15 22:12:55'), +(2415,89,1,2523,'0.99','2005-06-19 00:45:56','2006-02-15 22:12:55'), +(2416,89,1,2835,'7.99','2005-06-19 21:44:11','2006-02-15 22:12:55'), +(2417,89,2,4152,'4.99','2005-07-07 08:50:33','2006-02-15 22:12:55'), +(2418,89,1,4488,'0.99','2005-07-08 01:22:23','2006-02-15 22:12:55'), +(2419,89,1,4764,'8.99','2005-07-08 15:01:25','2006-02-15 22:12:55'), +(2420,89,2,5144,'7.99','2005-07-09 08:09:53','2006-02-15 22:12:55'), +(2421,89,2,5436,'2.99','2005-07-09 21:31:11','2006-02-15 22:12:55'), +(2422,89,1,5483,'2.99','2005-07-09 23:54:09','2006-02-15 22:12:55'), +(2423,89,1,6772,'2.99','2005-07-12 15:55:35','2006-02-15 22:12:55'), +(2424,89,2,7370,'7.99','2005-07-27 15:15:53','2006-02-15 22:12:55'), +(2425,89,2,7729,'4.99','2005-07-28 04:57:57','2006-02-15 22:12:55'), +(2426,89,2,7995,'4.99','2005-07-28 15:00:09','2006-02-15 22:12:55'), +(2427,89,1,8003,'2.99','2005-07-28 15:11:27','2006-02-15 22:12:55'), +(2428,89,2,8070,'2.99','2005-07-28 17:26:56','2006-02-15 22:12:55'), +(2429,89,2,8972,'0.99','2005-07-30 04:06:25','2006-02-15 22:12:55'), +(2430,89,1,9328,'2.99','2005-07-30 17:32:11','2006-02-15 22:12:55'), +(2431,89,2,9646,'2.99','2005-07-31 05:43:28','2006-02-15 22:12:55'), +(2432,89,2,9767,'0.99','2005-07-31 09:46:49','2006-02-15 22:12:55'), +(2433,89,2,10164,'4.99','2005-07-31 23:17:57','2006-02-15 22:12:55'), +(2434,89,2,10806,'4.99','2005-08-01 22:25:29','2006-02-15 22:12:55'), +(2435,89,1,11090,'3.99','2005-08-02 07:56:40','2006-02-15 22:12:55'), +(2436,89,1,12118,'3.99','2005-08-17 23:14:25','2006-02-15 22:12:55'), +(2437,89,2,12431,'2.99','2005-08-18 10:34:59','2006-02-15 22:12:55'), +(2438,89,1,12756,'2.99','2005-08-18 22:52:13','2006-02-15 22:12:55'), +(2439,89,1,13823,'2.99','2005-08-20 13:42:10','2006-02-15 22:12:55'), +(2440,89,1,15845,'2.99','2005-08-23 15:38:34','2006-02-15 22:12:55'), +(2441,90,2,2033,'0.99','2005-06-17 13:24:43','2006-02-15 22:12:55'), +(2442,90,2,2584,'6.99','2005-06-19 05:02:36','2006-02-15 22:12:55'), +(2443,90,2,3132,'0.99','2005-06-20 19:09:46','2006-02-15 22:12:55'), +(2444,90,2,3729,'3.99','2005-07-06 11:30:29','2006-02-15 22:12:55'), +(2445,90,2,4371,'4.99','2005-07-07 20:06:45','2006-02-15 22:12:55'), +(2446,90,2,5272,'0.99','2005-07-09 14:26:01','2006-02-15 22:12:55'), +(2447,90,2,5539,'3.99','2005-07-10 02:42:58','2006-02-15 22:12:55'), +(2448,90,2,7035,'5.99','2005-07-27 03:06:09','2006-02-15 22:12:55'), +(2449,90,2,7058,'1.99','2005-07-27 03:50:46','2006-02-15 22:12:55'), +(2450,90,1,7428,'5.99','2005-07-27 17:21:52','2006-02-15 22:12:55'), +(2451,90,1,7946,'6.99','2005-07-28 13:01:22','2006-02-15 22:12:55'), +(2452,90,1,8024,'2.99','2005-07-28 15:55:40','2006-02-15 22:12:55'), +(2453,90,1,8408,'0.99','2005-07-29 06:40:40','2006-02-15 22:12:56'), +(2454,90,2,8870,'9.99','2005-07-30 00:08:08','2006-02-15 22:12:56'), +(2455,90,2,9337,'2.99','2005-07-30 18:02:25','2006-02-15 22:12:56'), +(2456,90,2,10206,'7.99','2005-08-01 00:52:40','2006-02-15 22:12:56'), +(2457,90,1,10722,'4.99','2005-08-01 19:07:08','2006-02-15 22:12:56'), +(2458,90,1,10835,'4.99','2005-08-01 23:28:49','2006-02-15 22:12:56'), +(2459,90,2,11231,'4.99','2005-08-02 13:02:11','2006-02-15 22:12:56'), +(2460,90,1,11516,'0.99','2005-08-16 23:54:47','2006-02-15 22:12:56'), +(2461,90,2,12019,'0.99','2005-08-17 19:48:55','2006-02-15 22:12:56'), +(2462,90,1,12788,'2.99','2005-08-19 00:15:09','2006-02-15 22:12:56'), +(2463,90,1,13051,'4.99','2005-08-19 09:31:33','2006-02-15 22:12:56'), +(2464,90,1,14608,'1.99','2005-08-21 17:57:22','2006-02-15 22:12:56'), +(2465,90,1,14807,'4.99','2005-08-22 00:57:43','2006-02-15 22:12:56'), +(2466,90,2,15061,'0.99','2005-08-22 10:29:44','2006-02-15 22:12:56'), +(2467,90,2,15217,'0.99','2005-08-22 16:58:31','2006-02-15 22:12:56'), +(2468,90,1,15674,'7.99','2005-08-23 09:16:39','2006-02-15 22:12:56'), +(2469,91,2,216,'5.99','2005-05-26 09:17:43','2006-02-15 22:12:56'), +(2470,91,1,1299,'4.99','2005-06-15 09:34:50','2006-02-15 22:12:56'), +(2471,91,1,2457,'3.99','2005-06-18 19:38:20','2006-02-15 22:12:56'), +(2472,91,1,2908,'0.99','2005-06-20 03:16:52','2006-02-15 22:12:56'), +(2473,91,2,3384,'2.99','2005-06-21 14:07:35','2006-02-15 22:12:56'), +(2474,91,2,3802,'0.99','2005-07-06 15:06:09','2006-02-15 22:12:56'), +(2475,91,2,4103,'2.99','2005-07-07 06:25:28','2006-02-15 22:12:56'), +(2476,91,1,4245,'4.99','2005-07-07 13:48:33','2006-02-15 22:12:56'), +(2477,91,1,4321,'4.99','2005-07-07 17:52:38','2006-02-15 22:12:56'), +(2478,91,1,4673,'4.99','2005-07-08 10:16:00','2006-02-15 22:12:56'), +(2479,91,2,5025,'4.99','2005-07-09 02:28:24','2006-02-15 22:12:56'), +(2480,91,2,5187,'1.99','2005-07-09 10:19:51','2006-02-15 22:12:56'), +(2481,91,2,5701,'0.99','2005-07-10 09:56:24','2006-02-15 22:12:56'), +(2482,91,1,6078,'4.99','2005-07-11 05:06:52','2006-02-15 22:12:56'), +(2483,91,1,6178,'2.99','2005-07-11 10:59:09','2006-02-15 22:12:56'), +(2484,91,2,6860,'2.99','2005-07-12 19:54:17','2006-02-15 22:12:56'), +(2485,91,2,7143,'0.99','2005-07-27 06:56:31','2006-02-15 22:12:56'), +(2486,91,2,7637,'0.99','2005-07-28 01:12:25','2006-02-15 22:12:56'), +(2487,91,1,7966,'4.99','2005-07-28 13:53:54','2006-02-15 22:12:56'), +(2488,91,1,8313,'0.99','2005-07-29 03:34:21','2006-02-15 22:12:56'), +(2489,91,2,8873,'0.99','2005-07-30 00:14:32','2006-02-15 22:12:56'), +(2490,91,2,9228,'2.99','2005-07-30 13:36:57','2006-02-15 22:12:56'), +(2491,91,2,9396,'4.99','2005-07-30 20:07:24','2006-02-15 22:12:56'), +(2492,91,2,10008,'4.99','2005-07-31 17:59:36','2006-02-15 22:12:56'), +(2493,91,2,11418,'0.99','2005-08-02 19:45:33','2006-02-15 22:12:56'), +(2494,91,1,12847,'0.99','2005-08-19 02:04:07','2006-02-15 22:12:56'), +(2495,91,2,13222,'4.99','2005-08-19 15:47:58','2006-02-15 22:12:56'), +(2496,91,2,13309,'4.99','2005-08-19 19:04:00','2006-02-15 22:12:56'), +(2497,91,1,14132,'0.99','2005-08-21 01:43:58','2006-02-15 22:12:56'), +(2498,91,2,14888,'2.99','2005-08-22 04:09:18','2006-02-15 22:12:56'), +(2499,91,1,15122,'1.99','2005-08-22 12:47:45','2006-02-15 22:12:56'), +(2500,91,1,15341,'4.99','2005-08-22 20:56:31','2006-02-15 22:12:56'), +(2501,91,1,15707,'1.99','2005-08-23 10:35:45','2006-02-15 22:12:56'), +(2502,91,2,15886,'4.99','2005-08-23 16:50:53','2006-02-15 22:12:56'), +(2503,91,1,12902,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:56'), +(2504,92,1,271,'5.99','2005-05-26 16:22:01','2006-02-15 22:12:56'), +(2505,92,1,456,'4.99','2005-05-27 19:50:06','2006-02-15 22:12:56'), +(2506,92,2,2084,'4.99','2005-06-17 17:17:19','2006-02-15 22:12:56'), +(2507,92,1,2521,'0.99','2005-06-19 00:41:08','2006-02-15 22:12:56'), +(2508,92,1,2740,'8.99','2005-06-19 15:59:04','2006-02-15 22:12:56'), +(2509,92,2,3595,'8.99','2005-07-06 04:59:49','2006-02-15 22:12:56'), +(2510,92,2,3716,'7.99','2005-07-06 10:52:32','2006-02-15 22:12:56'), +(2511,92,1,4360,'2.99','2005-07-07 19:31:12','2006-02-15 22:12:56'), +(2512,92,2,4828,'4.99','2005-07-08 17:52:29','2006-02-15 22:12:56'), +(2513,92,2,5497,'5.99','2005-07-10 00:23:23','2006-02-15 22:12:56'), +(2514,92,2,5620,'7.99','2005-07-10 05:30:52','2006-02-15 22:12:56'), +(2515,92,1,5792,'6.99','2005-07-10 14:22:19','2006-02-15 22:12:57'), +(2516,92,2,5919,'2.99','2005-07-10 21:32:14','2006-02-15 22:12:57'), +(2517,92,1,6158,'0.99','2005-07-11 09:50:24','2006-02-15 22:12:57'), +(2518,92,2,6277,'6.99','2005-07-11 16:19:01','2006-02-15 22:12:57'), +(2519,92,1,7073,'4.99','2005-07-27 04:03:26','2006-02-15 22:12:57'), +(2520,92,1,7832,'1.99','2005-07-28 08:46:11','2006-02-15 22:12:57'), +(2521,92,1,8494,'4.99','2005-07-29 09:04:32','2006-02-15 22:12:57'), +(2522,92,1,8938,'4.99','2005-07-30 02:56:08','2006-02-15 22:12:57'), +(2523,92,1,9240,'4.99','2005-07-30 13:57:54','2006-02-15 22:12:57'), +(2524,92,2,11203,'4.99','2005-08-02 11:52:41','2006-02-15 22:12:57'), +(2525,92,2,11245,'2.99','2005-08-02 13:33:50','2006-02-15 22:12:57'), +(2526,92,1,11849,'4.99','2005-08-17 13:24:55','2006-02-15 22:12:57'), +(2527,92,2,13020,'5.99','2005-08-19 08:07:50','2006-02-15 22:12:57'), +(2528,92,1,13495,'0.99','2005-08-20 01:40:25','2006-02-15 22:12:57'), +(2529,92,1,13620,'2.99','2005-08-20 06:41:27','2006-02-15 22:12:57'), +(2530,92,1,14798,'0.99','2005-08-22 00:44:08','2006-02-15 22:12:57'), +(2531,92,2,14998,'4.99','2005-08-22 07:53:14','2006-02-15 22:12:57'), +(2532,93,2,113,'2.99','2005-05-25 19:07:40','2006-02-15 22:12:57'), +(2533,93,2,420,'6.99','2005-05-27 15:19:38','2006-02-15 22:12:57'), +(2534,93,1,1025,'4.99','2005-05-31 03:41:37','2006-02-15 22:12:57'), +(2535,93,2,2256,'4.99','2005-06-18 05:21:56','2006-02-15 22:12:57'), +(2536,93,1,3109,'0.99','2005-06-20 17:33:55','2006-02-15 22:12:57'), +(2537,93,1,4733,'2.99','2005-07-08 13:12:07','2006-02-15 22:12:57'), +(2538,93,2,5130,'4.99','2005-07-09 07:29:45','2006-02-15 22:12:57'), +(2539,93,2,6287,'4.99','2005-07-11 17:00:04','2006-02-15 22:12:57'), +(2540,93,1,6586,'4.99','2005-07-12 06:56:24','2006-02-15 22:12:57'), +(2541,93,1,7301,'2.99','2005-07-27 12:50:23','2006-02-15 22:12:57'), +(2542,93,1,8233,'0.99','2005-07-29 00:16:23','2006-02-15 22:12:57'), +(2543,93,2,11271,'5.99','2005-08-02 14:18:22','2006-02-15 22:12:57'), +(2544,93,1,12704,'4.99','2005-08-18 20:43:00','2006-02-15 22:12:57'), +(2545,93,1,13555,'2.99','2005-08-20 04:09:50','2006-02-15 22:12:57'), +(2546,93,2,13904,'2.99','2005-08-20 16:11:34','2006-02-15 22:12:57'), +(2547,93,1,13950,'8.99','2005-08-20 17:58:00','2006-02-15 22:12:57'), +(2548,93,1,13993,'4.99','2005-08-20 19:32:29','2006-02-15 22:12:57'), +(2549,93,1,14195,'0.99','2005-08-21 03:40:35','2006-02-15 22:12:57'), +(2550,93,2,14333,'4.99','2005-08-21 08:31:03','2006-02-15 22:12:57'), +(2551,93,2,15324,'5.99','2005-08-22 20:23:13','2006-02-15 22:12:57'), +(2552,93,2,15631,'2.99','2005-08-23 07:30:23','2006-02-15 22:12:57'), +(2553,93,1,15696,'0.99','2005-08-23 10:04:17','2006-02-15 22:12:57'), +(2554,93,2,15913,'1.99','2005-08-23 17:48:30','2006-02-15 22:12:57'), +(2555,94,1,127,'2.99','2005-05-25 21:10:40','2006-02-15 22:12:57'), +(2556,94,2,629,'4.99','2005-05-28 17:19:15','2006-02-15 22:12:57'), +(2557,94,2,1213,'2.99','2005-06-15 03:14:05','2006-02-15 22:12:57'), +(2558,94,1,1367,'4.99','2005-06-15 14:25:17','2006-02-15 22:12:57'), +(2559,94,2,1734,'3.99','2005-06-16 15:49:30','2006-02-15 22:12:57'), +(2560,94,2,2620,'4.99','2005-06-19 08:06:29','2006-02-15 22:12:57'), +(2561,94,1,2816,'2.99','2005-06-19 20:04:23','2006-02-15 22:12:57'), +(2562,94,2,4044,'0.99','2005-07-07 03:22:23','2006-02-15 22:12:57'), +(2563,94,1,4287,'8.99','2005-07-07 15:37:31','2006-02-15 22:12:57'), +(2564,94,2,5719,'4.99','2005-07-10 11:07:40','2006-02-15 22:12:57'), +(2565,94,2,5970,'4.99','2005-07-11 00:04:50','2006-02-15 22:12:57'), +(2566,94,2,7809,'2.99','2005-07-28 07:59:46','2006-02-15 22:12:57'), +(2567,94,2,7979,'0.99','2005-07-28 14:16:30','2006-02-15 22:12:57'), +(2568,94,1,9605,'4.99','2005-07-31 03:50:07','2006-02-15 22:12:57'), +(2569,94,1,12316,'2.99','2005-08-18 06:16:09','2006-02-15 22:12:57'), +(2570,94,1,13786,'5.99','2005-08-20 12:13:24','2006-02-15 22:12:57'), +(2571,94,2,14804,'1.99','2005-08-22 00:51:25','2006-02-15 22:12:57'), +(2572,94,1,14865,'4.99','2005-08-22 03:06:38','2006-02-15 22:12:57'), +(2573,94,1,14978,'0.99','2005-08-22 07:13:15','2006-02-15 22:12:57'), +(2574,94,1,15693,'0.99','2005-08-23 10:00:24','2006-02-15 22:12:58'), +(2575,94,1,15371,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:58'), +(2576,95,1,490,'4.99','2005-05-28 00:09:56','2006-02-15 22:12:58'), +(2577,95,2,1174,'2.99','2005-06-15 00:12:51','2006-02-15 22:12:58'), +(2578,95,2,1261,'1.99','2005-06-15 06:52:57','2006-02-15 22:12:58'), +(2579,95,2,3056,'2.99','2005-06-20 13:20:58','2006-02-15 22:12:58'), +(2580,95,2,3426,'0.99','2005-06-21 18:12:10','2006-02-15 22:12:58'), +(2581,95,1,3633,'1.99','2005-07-06 06:43:26','2006-02-15 22:12:58'), +(2582,95,2,4000,'4.99','2005-07-06 23:58:37','2006-02-15 22:12:58'), +(2583,95,1,4835,'5.99','2005-07-08 18:08:13','2006-02-15 22:12:58'), +(2584,95,2,7245,'5.99','2005-07-27 10:29:06','2006-02-15 22:12:58'), +(2585,95,1,7471,'4.99','2005-07-27 19:02:19','2006-02-15 22:12:58'), +(2586,95,1,9222,'6.99','2005-07-30 13:21:08','2006-02-15 22:12:58'), +(2587,95,1,9695,'6.99','2005-07-31 07:13:30','2006-02-15 22:12:58'), +(2588,95,1,9951,'4.99','2005-07-31 15:51:16','2006-02-15 22:12:58'), +(2589,95,1,10130,'0.99','2005-07-31 21:44:30','2006-02-15 22:12:58'), +(2590,95,2,10446,'0.99','2005-08-01 09:02:17','2006-02-15 22:12:58'), +(2591,95,2,12351,'5.99','2005-08-18 07:32:12','2006-02-15 22:12:58'), +(2592,95,2,13516,'7.99','2005-08-20 02:32:45','2006-02-15 22:12:58'), +(2593,95,2,14203,'4.99','2005-08-21 03:51:52','2006-02-15 22:12:58'), +(2594,96,1,1266,'3.99','2005-06-15 07:11:39','2006-02-15 22:12:58'), +(2595,96,2,1413,'7.99','2005-06-15 17:25:07','2006-02-15 22:12:58'), +(2596,96,2,1437,'0.99','2005-06-15 18:37:04','2006-02-15 22:12:58'), +(2597,96,1,2372,'0.99','2005-06-18 14:37:37','2006-02-15 22:12:58'), +(2598,96,2,2973,'5.99','2005-06-20 07:59:27','2006-02-15 22:12:58'), +(2599,96,1,3308,'0.99','2005-06-21 07:58:36','2006-02-15 22:12:58'), +(2600,96,2,3463,'0.99','2005-06-21 22:00:00','2006-02-15 22:12:58'), +(2601,96,1,3720,'2.99','2005-07-06 11:06:57','2006-02-15 22:12:58'), +(2602,96,2,3742,'2.99','2005-07-06 12:01:38','2006-02-15 22:12:58'), +(2603,96,1,4961,'4.99','2005-07-08 23:35:53','2006-02-15 22:12:58'), +(2604,96,1,5558,'0.99','2005-07-10 03:12:08','2006-02-15 22:12:58'), +(2605,96,1,5678,'4.99','2005-07-10 08:42:42','2006-02-15 22:12:58'), +(2606,96,1,5696,'2.99','2005-07-10 09:44:32','2006-02-15 22:12:58'), +(2607,96,2,8125,'4.99','2005-07-28 19:31:48','2006-02-15 22:12:58'), +(2608,96,1,8437,'6.99','2005-07-29 07:23:43','2006-02-15 22:12:58'), +(2609,96,2,9093,'3.99','2005-07-30 08:33:24','2006-02-15 22:12:58'), +(2610,96,1,9315,'4.99','2005-07-30 17:05:29','2006-02-15 22:12:58'), +(2611,96,1,9662,'3.99','2005-07-31 06:09:53','2006-02-15 22:12:58'), +(2612,96,2,10031,'4.99','2005-07-31 18:40:15','2006-02-15 22:12:58'), +(2613,96,2,11864,'4.99','2005-08-17 14:02:01','2006-02-15 22:12:58'), +(2614,96,1,11984,'3.99','2005-08-17 18:16:30','2006-02-15 22:12:58'), +(2615,96,1,12199,'4.99','2005-08-18 02:09:23','2006-02-15 22:12:58'), +(2616,96,2,12525,'4.99','2005-08-18 13:48:31','2006-02-15 22:12:58'), +(2617,96,1,13514,'0.99','2005-08-20 02:28:09','2006-02-15 22:12:58'), +(2618,96,1,13855,'4.99','2005-08-20 14:48:55','2006-02-15 22:12:58'), +(2619,96,1,14462,'3.99','2005-08-21 12:50:57','2006-02-15 22:12:58'), +(2620,96,2,15989,'4.99','2005-08-23 20:24:36','2006-02-15 22:12:58'), +(2621,97,2,2083,'2.99','2005-06-17 17:14:00','2006-02-15 22:12:58'), +(2622,97,2,2790,'4.99','2005-06-19 18:49:45','2006-02-15 22:12:58'), +(2623,97,1,3459,'0.99','2005-06-21 21:45:47','2006-02-15 22:12:59'), +(2624,97,1,3540,'2.99','2005-07-06 01:47:20','2006-02-15 22:12:59'), +(2625,97,2,3565,'0.99','2005-07-06 03:02:58','2006-02-15 22:12:59'), +(2626,97,2,3818,'4.99','2005-07-06 15:33:31','2006-02-15 22:12:59'), +(2627,97,2,4312,'4.99','2005-07-07 17:34:59','2006-02-15 22:12:59'), +(2628,97,1,4508,'4.99','2005-07-08 02:28:41','2006-02-15 22:12:59'), +(2629,97,2,5454,'4.99','2005-07-09 22:24:25','2006-02-15 22:12:59'), +(2630,97,1,6544,'0.99','2005-07-12 04:56:15','2006-02-15 22:12:59'), +(2631,97,1,6726,'0.99','2005-07-12 13:48:14','2006-02-15 22:12:59'), +(2632,97,2,7182,'5.99','2005-07-27 08:15:38','2006-02-15 22:12:59'), +(2633,97,2,7924,'0.99','2005-07-28 12:08:53','2006-02-15 22:12:59'), +(2634,97,2,8438,'2.99','2005-07-29 07:25:42','2006-02-15 22:12:59'), +(2635,97,1,9591,'4.99','2005-07-31 03:19:28','2006-02-15 22:12:59'), +(2636,97,1,10820,'2.99','2005-08-01 22:53:40','2006-02-15 22:12:59'), +(2637,97,2,14323,'4.99','2005-08-21 08:08:43','2006-02-15 22:12:59'), +(2638,97,1,15006,'0.99','2005-08-22 08:20:15','2006-02-15 22:12:59'), +(2639,98,2,214,'3.99','2005-05-26 08:48:49','2006-02-15 22:12:59'), +(2640,98,1,1362,'3.99','2005-06-15 13:53:32','2006-02-15 22:12:59'), +(2641,98,2,1590,'5.99','2005-06-16 05:11:41','2006-02-15 22:12:59'), +(2642,98,1,2213,'4.99','2005-06-18 02:36:47','2006-02-15 22:12:59'), +(2643,98,1,2445,'0.99','2005-06-18 19:02:11','2006-02-15 22:12:59'), +(2644,98,2,2601,'4.99','2005-06-19 06:09:44','2006-02-15 22:12:59'), +(2645,98,2,3399,'4.99','2005-06-21 15:47:48','2006-02-15 22:12:59'), +(2646,98,2,3682,'7.99','2005-07-06 09:22:48','2006-02-15 22:12:59'), +(2647,98,1,4549,'4.99','2005-07-08 04:25:03','2006-02-15 22:12:59'), +(2648,98,2,6951,'2.99','2005-07-26 23:47:31','2006-02-15 22:12:59'), +(2649,98,2,7120,'3.99','2005-07-27 05:56:39','2006-02-15 22:12:59'), +(2650,98,1,7530,'0.99','2005-07-27 21:18:58','2006-02-15 22:12:59'), +(2651,98,1,8324,'5.99','2005-07-29 03:56:05','2006-02-15 22:12:59'), +(2652,98,2,8622,'4.99','2005-07-29 13:53:28','2006-02-15 22:12:59'), +(2653,98,2,8818,'5.99','2005-07-29 22:14:04','2006-02-15 22:12:59'), +(2654,98,1,9753,'2.99','2005-07-31 09:22:38','2006-02-15 22:12:59'), +(2655,98,2,10694,'3.99','2005-08-01 18:15:07','2006-02-15 22:12:59'), +(2656,98,1,10925,'2.99','2005-08-02 02:24:38','2006-02-15 22:12:59'), +(2657,98,2,11007,'0.99','2005-08-02 05:05:53','2006-02-15 22:12:59'), +(2658,98,2,11200,'2.99','2005-08-02 11:48:36','2006-02-15 22:12:59'), +(2659,98,1,11635,'5.99','2005-08-17 04:33:17','2006-02-15 22:12:59'), +(2660,98,1,11730,'2.99','2005-08-17 08:22:00','2006-02-15 22:12:59'), +(2661,98,2,12221,'5.99','2005-08-18 02:50:51','2006-02-15 22:12:59'), +(2662,98,2,14459,'1.99','2005-08-21 12:48:08','2006-02-15 22:12:59'), +(2663,98,1,15536,'7.99','2005-08-23 03:58:28','2006-02-15 22:12:59'), +(2664,99,2,867,'0.99','2005-05-30 03:54:43','2006-02-15 22:12:59'), +(2665,99,1,1858,'4.99','2005-06-17 01:13:11','2006-02-15 22:12:59'), +(2666,99,1,2368,'2.99','2005-06-18 14:10:27','2006-02-15 22:12:59'), +(2667,99,2,3780,'6.99','2005-07-06 13:52:02','2006-02-15 22:12:59'), +(2668,99,2,4170,'2.99','2005-07-07 09:44:36','2006-02-15 22:12:59'), +(2669,99,2,4344,'4.99','2005-07-07 18:50:47','2006-02-15 22:12:59'), +(2670,99,1,4589,'0.99','2005-07-08 06:26:04','2006-02-15 22:12:59'), +(2671,99,2,4800,'4.99','2005-07-08 16:51:08','2006-02-15 22:12:59'), +(2672,99,2,4954,'2.99','2005-07-08 23:14:16','2006-02-15 22:12:59'), +(2673,99,2,5035,'2.99','2005-07-09 02:51:34','2006-02-15 22:12:59'), +(2674,99,1,5748,'2.99','2005-07-10 12:19:59','2006-02-15 22:12:59'), +(2675,99,1,6289,'2.99','2005-07-11 17:06:39','2006-02-15 22:12:59'), +(2676,99,1,6370,'3.99','2005-07-11 21:28:32','2006-02-15 22:12:59'), +(2677,99,2,6662,'4.99','2005-07-12 11:21:06','2006-02-15 22:12:59'), +(2678,99,1,7039,'4.99','2005-07-27 03:11:48','2006-02-15 22:12:59'), +(2679,99,1,8072,'0.99','2005-07-28 17:27:59','2006-02-15 22:12:59'), +(2680,99,2,8242,'7.99','2005-07-29 00:34:27','2006-02-15 22:12:59'), +(2681,99,2,8514,'0.99','2005-07-29 09:53:33','2006-02-15 22:12:59'), +(2682,99,2,10388,'7.99','2005-08-01 06:42:44','2006-02-15 22:12:59'), +(2683,99,1,10455,'1.99','2005-08-01 09:15:00','2006-02-15 22:13:00'), +(2684,99,2,11266,'4.99','2005-08-02 14:07:35','2006-02-15 22:13:00'), +(2685,99,2,12379,'0.99','2005-08-18 08:26:48','2006-02-15 22:13:00'), +(2686,99,2,12869,'8.99','2005-08-19 02:50:36','2006-02-15 22:13:00'), +(2687,99,1,11593,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), +(2688,100,1,71,'0.99','2005-05-25 10:26:39','2006-02-15 22:13:00'), +(2689,100,2,1216,'4.99','2005-06-15 03:23:48','2006-02-15 22:13:00'), +(2690,100,1,1340,'3.99','2005-06-15 12:24:15','2006-02-15 22:13:00'), +(2691,100,1,1427,'2.99','2005-06-15 18:17:28','2006-02-15 22:13:00'), +(2692,100,2,3468,'6.99','2005-06-21 22:43:45','2006-02-15 22:13:00'), +(2693,100,2,3602,'5.99','2005-07-06 05:23:10','2006-02-15 22:13:00'), +(2694,100,1,3800,'8.99','2005-07-06 15:01:27','2006-02-15 22:13:00'), +(2695,100,1,4209,'2.99','2005-07-07 11:35:08','2006-02-15 22:13:00'), +(2696,100,1,4970,'8.99','2005-07-08 23:54:29','2006-02-15 22:13:00'), +(2697,100,2,4980,'6.99','2005-07-09 00:26:59','2006-02-15 22:13:00'), +(2698,100,2,5238,'4.99','2005-07-09 13:11:14','2006-02-15 22:13:00'), +(2699,100,2,5355,'6.99','2005-07-09 18:07:17','2006-02-15 22:13:00'), +(2700,100,1,6655,'4.99','2005-07-12 11:08:32','2006-02-15 22:13:00'), +(2701,100,2,7819,'4.99','2005-07-28 08:27:14','2006-02-15 22:13:00'), +(2702,100,1,7921,'1.99','2005-07-28 12:02:46','2006-02-15 22:13:00'), +(2703,100,2,8203,'0.99','2005-07-28 23:14:56','2006-02-15 22:13:00'), +(2704,100,2,9048,'5.99','2005-07-30 06:57:07','2006-02-15 22:13:00'), +(2705,100,1,9271,'4.99','2005-07-30 15:04:31','2006-02-15 22:13:00'), +(2706,100,1,11143,'0.99','2005-08-02 09:32:54','2006-02-15 22:13:00'), +(2707,100,2,11346,'4.99','2005-08-02 17:15:38','2006-02-15 22:13:00'), +(2708,100,1,12657,'0.99','2005-08-18 19:02:16','2006-02-15 22:13:00'), +(2709,100,1,15163,'0.99','2005-08-22 14:43:13','2006-02-15 22:13:00'), +(2710,100,2,15246,'3.99','2005-08-22 17:50:49','2006-02-15 22:13:00'), +(2711,100,2,15021,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), +(2712,101,1,468,'9.99','2005-05-27 21:13:10','2006-02-15 22:13:00'), +(2713,101,1,4975,'2.99','2005-07-09 00:02:46','2006-02-15 22:13:00'), +(2714,101,2,5100,'2.99','2005-07-09 06:16:03','2006-02-15 22:13:00'), +(2715,101,1,5132,'5.99','2005-07-09 07:40:32','2006-02-15 22:13:00'), +(2716,101,2,5198,'2.99','2005-07-09 10:49:10','2006-02-15 22:13:00'), +(2717,101,1,5757,'2.99','2005-07-10 12:40:17','2006-02-15 22:13:00'), +(2718,101,2,6433,'5.99','2005-07-12 00:12:02','2006-02-15 22:13:00'), +(2719,101,2,7112,'5.99','2005-07-27 05:38:42','2006-02-15 22:13:00'), +(2720,101,2,7866,'8.99','2005-07-28 10:08:01','2006-02-15 22:13:00'), +(2721,101,1,8301,'0.99','2005-07-29 03:00:08','2006-02-15 22:13:00'), +(2722,101,2,8825,'1.99','2005-07-29 22:24:16','2006-02-15 22:13:00'), +(2723,101,2,8833,'4.99','2005-07-29 22:39:36','2006-02-15 22:13:00'), +(2724,101,2,9965,'6.99','2005-07-31 16:19:32','2006-02-15 22:13:00'), +(2725,101,2,10218,'0.99','2005-08-01 01:09:44','2006-02-15 22:13:00'), +(2726,101,1,10253,'6.99','2005-08-01 02:39:49','2006-02-15 22:13:00'), +(2727,101,1,10407,'0.99','2005-08-01 07:38:07','2006-02-15 22:13:00'), +(2728,101,2,11959,'4.99','2005-08-17 17:23:35','2006-02-15 22:13:00'), +(2729,101,2,12174,'2.99','2005-08-18 01:08:53','2006-02-15 22:13:00'), +(2730,101,1,12471,'4.99','2005-08-18 11:57:00','2006-02-15 22:13:00'), +(2731,101,2,13370,'1.99','2005-08-19 21:20:11','2006-02-15 22:13:00'), +(2732,101,1,14476,'0.99','2005-08-21 13:31:07','2006-02-15 22:13:00'), +(2733,101,2,14542,'3.99','2005-08-21 15:36:34','2006-02-15 22:13:00'), +(2734,101,2,15103,'2.99','2005-08-22 12:01:06','2006-02-15 22:13:00'), +(2735,101,2,12141,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'), +(2736,102,1,247,'4.99','2005-05-26 14:01:05','2006-02-15 22:13:00'), +(2737,102,1,358,'0.99','2005-05-27 06:43:59','2006-02-15 22:13:00'), +(2738,102,2,562,'1.99','2005-05-28 09:01:21','2006-02-15 22:13:00'), +(2739,102,2,1215,'2.99','2005-06-15 03:21:00','2006-02-15 22:13:00'), +(2740,102,2,2419,'8.99','2005-06-18 17:21:24','2006-02-15 22:13:00'), +(2741,102,2,3520,'1.99','2005-07-06 00:58:27','2006-02-15 22:13:00'), +(2742,102,2,3630,'1.99','2005-07-06 06:27:15','2006-02-15 22:13:01'), +(2743,102,2,3665,'4.99','2005-07-06 08:23:08','2006-02-15 22:13:01'), +(2744,102,1,4089,'6.99','2005-07-07 05:45:59','2006-02-15 22:13:01'), +(2745,102,2,4777,'3.99','2005-07-08 15:48:34','2006-02-15 22:13:01'), +(2746,102,1,4997,'6.99','2005-07-09 01:06:03','2006-02-15 22:13:01'), +(2747,102,1,5009,'5.99','2005-07-09 01:32:17','2006-02-15 22:13:01'), +(2748,102,1,5109,'4.99','2005-07-09 06:48:49','2006-02-15 22:13:01'), +(2749,102,2,5509,'5.99','2005-07-10 00:54:46','2006-02-15 22:13:01'), +(2750,102,1,5716,'2.99','2005-07-10 10:59:23','2006-02-15 22:13:01'), +(2751,102,2,6434,'5.99','2005-07-12 00:14:25','2006-02-15 22:13:01'), +(2752,102,2,7119,'0.99','2005-07-27 05:55:32','2006-02-15 22:13:01'), +(2753,102,2,7247,'0.99','2005-07-27 10:32:58','2006-02-15 22:13:01'), +(2754,102,2,7439,'6.99','2005-07-27 17:42:31','2006-02-15 22:13:01'), +(2755,102,1,8186,'0.99','2005-07-28 22:30:27','2006-02-15 22:13:01'), +(2756,102,1,8664,'5.99','2005-07-29 15:36:27','2006-02-15 22:13:01'), +(2757,102,2,9151,'3.99','2005-07-30 10:50:53','2006-02-15 22:13:01'), +(2758,102,1,9192,'2.99','2005-07-30 12:26:26','2006-02-15 22:13:01'), +(2759,102,2,9295,'0.99','2005-07-30 16:18:39','2006-02-15 22:13:01'), +(2760,102,2,9617,'2.99','2005-07-31 04:15:38','2006-02-15 22:13:01'), +(2761,102,1,9780,'4.99','2005-07-31 10:10:22','2006-02-15 22:13:01'), +(2762,102,2,10841,'1.99','2005-08-01 23:39:21','2006-02-15 22:13:01'), +(2763,102,2,11099,'4.99','2005-08-02 08:07:12','2006-02-15 22:13:01'), +(2764,102,1,11183,'4.99','2005-08-02 11:00:32','2006-02-15 22:13:01'), +(2765,102,2,12495,'4.99','2005-08-18 12:56:37','2006-02-15 22:13:01'), +(2766,102,1,13420,'9.99','2005-08-19 22:57:25','2006-02-15 22:13:01'), +(2767,102,1,15049,'1.99','2005-08-22 10:06:28','2006-02-15 22:13:01'), +(2768,102,2,16031,'3.99','2005-08-23 21:59:26','2006-02-15 22:13:01'), +(2769,103,1,240,'7.99','2005-05-26 12:40:23','2006-02-15 22:13:01'), +(2770,103,1,658,'9.99','2005-05-28 20:23:23','2006-02-15 22:13:01'), +(2771,103,2,1396,'4.99','2005-06-15 16:22:38','2006-02-15 22:13:01'), +(2772,103,1,2118,'0.99','2005-06-17 20:28:29','2006-02-15 22:13:01'), +(2773,103,1,2197,'0.99','2005-06-18 01:50:27','2006-02-15 22:13:01'), +(2774,103,1,2724,'0.99','2005-06-19 14:57:54','2006-02-15 22:13:01'), +(2775,103,2,3750,'6.99','2005-07-06 12:19:28','2006-02-15 22:13:01'), +(2776,103,1,3850,'4.99','2005-07-06 16:51:21','2006-02-15 22:13:01'), +(2777,103,2,4040,'6.99','2005-07-07 03:02:40','2006-02-15 22:13:01'), +(2778,103,1,4213,'2.99','2005-07-07 11:53:49','2006-02-15 22:13:01'), +(2779,103,1,4357,'1.99','2005-07-07 19:24:39','2006-02-15 22:13:01'), +(2780,103,2,4872,'4.99','2005-07-08 19:23:16','2006-02-15 22:13:01'), +(2781,103,2,5163,'4.99','2005-07-09 09:00:28','2006-02-15 22:13:01'), +(2782,103,1,6525,'5.99','2005-07-12 04:17:15','2006-02-15 22:13:01'), +(2783,103,2,6697,'6.99','2005-07-12 12:44:57','2006-02-15 22:13:01'), +(2784,103,2,6949,'2.99','2005-07-26 23:44:12','2006-02-15 22:13:01'), +(2785,103,1,7310,'0.99','2005-07-27 13:00:55','2006-02-15 22:13:01'), +(2786,103,2,7472,'6.99','2005-07-27 19:04:19','2006-02-15 22:13:01'), +(2787,103,1,8302,'0.99','2005-07-29 03:01:24','2006-02-15 22:13:01'), +(2788,103,1,8520,'4.99','2005-07-29 10:10:02','2006-02-15 22:13:01'), +(2789,103,2,9390,'4.99','2005-07-30 19:42:07','2006-02-15 22:13:01'), +(2790,103,2,12942,'7.99','2005-08-19 05:40:36','2006-02-15 22:13:01'), +(2791,103,1,13676,'0.99','2005-08-20 08:33:21','2006-02-15 22:13:01'), +(2792,103,2,14064,'2.99','2005-08-20 22:39:16','2006-02-15 22:13:01'), +(2793,103,2,14289,'4.99','2005-08-21 06:58:49','2006-02-15 22:13:01'), +(2794,103,2,15401,'8.99','2005-08-22 23:13:10','2006-02-15 22:13:01'), +(2795,103,1,15461,'5.99','2005-08-23 01:13:52','2006-02-15 22:13:01'), +(2796,103,1,15467,'3.99','2005-08-23 01:22:12','2006-02-15 22:13:01'), +(2797,103,1,15599,'5.99','2005-08-23 06:25:07','2006-02-15 22:13:01'), +(2798,103,2,15679,'0.99','2005-08-23 09:27:29','2006-02-15 22:13:02'), +(2799,103,2,16048,'8.99','2005-08-23 22:43:07','2006-02-15 22:13:02'), +(2800,104,1,163,'10.99','2005-05-26 02:26:23','2006-02-15 22:13:02'), +(2801,104,2,808,'3.99','2005-05-29 19:08:20','2006-02-15 22:13:02'), +(2802,104,2,1287,'3.99','2005-06-15 08:41:38','2006-02-15 22:13:02'), +(2803,104,1,2107,'0.99','2005-06-17 19:31:16','2006-02-15 22:13:02'), +(2804,104,2,2928,'0.99','2005-06-20 04:43:45','2006-02-15 22:13:02'), +(2805,104,2,3273,'2.99','2005-06-21 05:24:17','2006-02-15 22:13:02'), +(2806,104,2,4012,'4.99','2005-07-07 00:56:09','2006-02-15 22:13:02'), +(2807,104,2,4438,'6.99','2005-07-07 22:56:17','2006-02-15 22:13:02'), +(2808,104,2,4520,'4.99','2005-07-08 02:53:46','2006-02-15 22:13:02'), +(2809,104,1,4529,'7.99','2005-07-08 03:26:20','2006-02-15 22:13:02'), +(2810,104,1,4917,'2.99','2005-07-08 21:32:30','2006-02-15 22:13:02'), +(2811,104,1,5376,'1.99','2005-07-09 18:54:08','2006-02-15 22:13:02'), +(2812,104,2,7107,'2.99','2005-07-27 05:22:04','2006-02-15 22:13:02'), +(2813,104,1,8413,'1.99','2005-07-29 06:47:39','2006-02-15 22:13:02'), +(2814,104,1,9090,'3.99','2005-07-30 08:24:42','2006-02-15 22:13:02'), +(2815,104,2,9996,'5.99','2005-07-31 17:32:03','2006-02-15 22:13:02'), +(2816,104,1,11700,'2.99','2005-08-17 07:12:31','2006-02-15 22:13:02'), +(2817,104,1,12453,'3.99','2005-08-18 11:17:07','2006-02-15 22:13:02'), +(2818,104,1,13005,'0.99','2005-08-19 07:45:42','2006-02-15 22:13:02'), +(2819,104,1,13017,'1.99','2005-08-19 08:02:24','2006-02-15 22:13:02'), +(2820,104,1,13179,'4.99','2005-08-19 13:59:53','2006-02-15 22:13:02'), +(2821,104,1,13410,'3.99','2005-08-19 22:41:44','2006-02-15 22:13:02'), +(2822,104,1,14218,'3.99','2005-08-21 04:43:59','2006-02-15 22:13:02'), +(2823,104,2,15186,'0.99','2005-08-22 15:52:57','2006-02-15 22:13:02'), +(2824,105,1,327,'8.99','2005-05-27 01:18:57','2006-02-15 22:13:02'), +(2825,105,2,473,'7.99','2005-05-27 21:36:34','2006-02-15 22:13:02'), +(2826,105,1,485,'2.99','2005-05-27 23:40:52','2006-02-15 22:13:02'), +(2827,105,1,779,'6.99','2005-05-29 14:17:17','2006-02-15 22:13:02'), +(2828,105,2,1789,'3.99','2005-06-16 19:49:18','2006-02-15 22:13:02'), +(2829,105,2,1991,'3.99','2005-06-17 10:49:23','2006-02-15 22:13:02'), +(2830,105,2,2635,'3.99','2005-06-19 09:08:45','2006-02-15 22:13:02'), +(2831,105,2,5261,'4.99','2005-07-09 14:06:56','2006-02-15 22:13:02'), +(2832,105,1,5429,'4.99','2005-07-09 21:14:03','2006-02-15 22:13:02'), +(2833,105,2,5542,'2.99','2005-07-10 02:45:53','2006-02-15 22:13:02'), +(2834,105,2,5677,'4.99','2005-07-10 08:41:28','2006-02-15 22:13:02'), +(2835,105,2,6546,'4.99','2005-07-12 04:57:17','2006-02-15 22:13:02'), +(2836,105,1,7442,'2.99','2005-07-27 17:47:00','2006-02-15 22:13:02'), +(2837,105,2,8980,'2.99','2005-07-30 04:22:15','2006-02-15 22:13:02'), +(2838,105,2,9124,'3.99','2005-07-30 09:43:12','2006-02-15 22:13:02'), +(2839,105,2,9198,'5.99','2005-07-30 12:37:08','2006-02-15 22:13:02'), +(2840,105,2,9210,'9.99','2005-07-30 12:56:44','2006-02-15 22:13:02'), +(2841,105,1,10513,'4.99','2005-08-01 11:37:34','2006-02-15 22:13:02'), +(2842,105,1,12217,'0.99','2005-08-18 02:44:44','2006-02-15 22:13:02'), +(2843,105,2,12899,'2.99','2005-08-19 04:03:34','2006-02-15 22:13:02'), +(2844,105,1,13057,'6.99','2005-08-19 09:40:05','2006-02-15 22:13:02'), +(2845,105,1,13751,'2.99','2005-08-20 11:17:03','2006-02-15 22:13:02'), +(2846,105,2,14048,'0.99','2005-08-20 22:03:18','2006-02-15 22:13:02'), +(2847,105,2,15624,'4.99','2005-08-23 07:24:27','2006-02-15 22:13:02'), +(2848,105,2,15688,'4.99','2005-08-23 09:48:45','2006-02-15 22:13:02'), +(2849,105,2,15803,'2.99','2005-08-23 14:27:07','2006-02-15 22:13:02'), +(2850,106,2,552,'3.99','2005-05-28 07:53:38','2006-02-15 22:13:03'), +(2851,106,2,1156,'0.99','2005-05-31 22:37:34','2006-02-15 22:13:03'), +(2852,106,1,2295,'4.99','2005-06-18 07:56:18','2006-02-15 22:13:03'), +(2853,106,1,3023,'4.99','2005-06-20 11:18:11','2006-02-15 22:13:03'), +(2854,106,1,4229,'4.99','2005-07-07 12:43:23','2006-02-15 22:13:03'), +(2855,106,2,4277,'2.99','2005-07-07 14:52:12','2006-02-15 22:13:03'), +(2856,106,1,4665,'3.99','2005-07-08 10:04:24','2006-02-15 22:13:03'), +(2857,106,2,5453,'3.99','2005-07-09 22:24:11','2006-02-15 22:13:03'), +(2858,106,2,6992,'0.99','2005-07-27 01:04:45','2006-02-15 22:13:03'), +(2859,106,1,7224,'3.99','2005-07-27 09:44:26','2006-02-15 22:13:03'), +(2860,106,1,7483,'4.99','2005-07-27 19:25:00','2006-02-15 22:13:03'), +(2861,106,1,8115,'4.99','2005-07-28 19:14:17','2006-02-15 22:13:03'), +(2862,106,2,9072,'2.99','2005-07-30 07:45:49','2006-02-15 22:13:03'), +(2863,106,2,9747,'7.99','2005-07-31 09:16:57','2006-02-15 22:13:03'), +(2864,106,2,10213,'8.99','2005-08-01 01:03:18','2006-02-15 22:13:03'), +(2865,106,1,10228,'2.99','2005-08-01 01:43:18','2006-02-15 22:13:03'), +(2866,106,1,10444,'8.99','2005-08-01 09:01:40','2006-02-15 22:13:03'), +(2867,106,2,11436,'0.99','2005-08-02 20:16:06','2006-02-15 22:13:03'), +(2868,106,1,12159,'7.99','2005-08-18 00:36:09','2006-02-15 22:13:03'), +(2869,106,1,12845,'2.99','2005-08-19 02:02:37','2006-02-15 22:13:03'), +(2870,106,2,14431,'2.99','2005-08-21 11:31:15','2006-02-15 22:13:03'), +(2871,106,1,14920,'0.99','2005-08-22 05:08:58','2006-02-15 22:13:03'), +(2872,106,1,15154,'6.99','2005-08-22 14:27:37','2006-02-15 22:13:03'), +(2873,107,1,170,'5.99','2005-05-26 03:11:12','2006-02-15 22:13:03'), +(2874,107,1,1026,'5.99','2005-05-31 03:45:26','2006-02-15 22:13:03'), +(2875,107,2,1243,'2.99','2005-06-15 05:07:32','2006-02-15 22:13:03'), +(2876,107,2,2693,'6.99','2005-06-19 13:11:47','2006-02-15 22:13:03'), +(2877,107,2,2860,'4.99','2005-06-19 23:20:40','2006-02-15 22:13:03'), +(2878,107,2,2897,'3.99','2005-06-20 02:34:23','2006-02-15 22:13:03'), +(2879,107,1,3033,'3.99','2005-06-20 12:02:05','2006-02-15 22:13:03'), +(2880,107,2,3120,'0.99','2005-06-20 18:19:29','2006-02-15 22:13:03'), +(2881,107,2,3174,'0.99','2005-06-20 22:24:00','2006-02-15 22:13:03'), +(2882,107,2,3824,'6.99','2005-07-06 15:43:15','2006-02-15 22:13:03'), +(2883,107,2,5311,'4.99','2005-07-09 16:02:54','2006-02-15 22:13:03'), +(2884,107,2,5575,'2.99','2005-07-10 03:55:50','2006-02-15 22:13:03'), +(2885,107,2,5798,'3.99','2005-07-10 14:45:09','2006-02-15 22:13:03'), +(2886,107,2,6131,'2.99','2005-07-11 08:22:05','2006-02-15 22:13:03'), +(2887,107,2,6133,'0.99','2005-07-11 08:25:22','2006-02-15 22:13:03'), +(2888,107,1,6811,'5.99','2005-07-12 17:54:33','2006-02-15 22:13:03'), +(2889,107,2,6934,'6.99','2005-07-26 23:11:03','2006-02-15 22:13:03'), +(2890,107,2,7447,'4.99','2005-07-27 18:02:08','2006-02-15 22:13:03'), +(2891,107,1,7600,'7.99','2005-07-27 23:41:18','2006-02-15 22:13:03'), +(2892,107,1,8162,'4.99','2005-07-28 21:11:46','2006-02-15 22:13:03'), +(2893,107,2,8704,'1.99','2005-07-29 17:13:45','2006-02-15 22:13:03'), +(2894,107,1,9155,'2.99','2005-07-30 11:00:00','2006-02-15 22:13:03'), +(2895,107,2,9351,'2.99','2005-07-30 18:28:30','2006-02-15 22:13:03'), +(2896,107,1,10226,'4.99','2005-08-01 01:40:04','2006-02-15 22:13:03'), +(2897,107,2,13361,'4.99','2005-08-19 21:07:22','2006-02-15 22:13:03'), +(2898,107,1,13510,'6.99','2005-08-20 02:18:30','2006-02-15 22:13:03'), +(2899,107,1,14562,'4.99','2005-08-21 16:22:59','2006-02-15 22:13:03'), +(2900,107,1,15560,'3.99','2005-08-23 05:01:13','2006-02-15 22:13:03'), +(2901,107,1,13079,'1.98','2006-02-14 15:16:03','2006-02-15 22:13:03'), +(2902,107,1,15497,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:03'), +(2903,108,1,105,'4.99','2005-05-25 17:54:12','2006-02-15 22:13:03'), +(2904,108,2,1055,'0.99','2005-05-31 07:47:18','2006-02-15 22:13:03'), +(2905,108,2,1372,'4.99','2005-06-15 14:45:48','2006-02-15 22:13:03'), +(2906,108,1,1425,'2.99','2005-06-15 18:13:46','2006-02-15 22:13:03'), +(2907,108,1,2061,'8.99','2005-06-17 15:47:00','2006-02-15 22:13:03'), +(2908,108,1,2210,'2.99','2005-06-18 02:27:01','2006-02-15 22:13:04'), +(2909,108,2,3116,'4.99','2005-06-20 18:04:55','2006-02-15 22:13:04'), +(2910,108,1,3875,'0.99','2005-07-06 18:15:39','2006-02-15 22:13:04'), +(2911,108,2,4082,'2.99','2005-07-07 05:11:53','2006-02-15 22:13:04'), +(2912,108,1,4303,'1.99','2005-07-07 16:57:32','2006-02-15 22:13:04'), +(2913,108,1,4650,'4.99','2005-07-08 09:32:08','2006-02-15 22:13:04'), +(2914,108,1,4754,'0.99','2005-07-08 14:20:01','2006-02-15 22:13:04'), +(2915,108,2,5274,'6.99','2005-07-09 14:34:09','2006-02-15 22:13:04'), +(2916,108,1,5661,'5.99','2005-07-10 07:53:51','2006-02-15 22:13:04'), +(2917,108,2,5806,'4.99','2005-07-10 15:11:54','2006-02-15 22:13:04'), +(2918,108,1,6841,'0.99','2005-07-12 19:04:24','2006-02-15 22:13:04'), +(2919,108,2,8329,'5.99','2005-07-29 04:06:33','2006-02-15 22:13:04'), +(2920,108,2,8587,'4.99','2005-07-29 12:18:40','2006-02-15 22:13:04'), +(2921,108,1,8846,'4.99','2005-07-29 23:10:28','2006-02-15 22:13:04'), +(2922,108,2,9755,'4.99','2005-07-31 09:24:55','2006-02-15 22:13:04'), +(2923,108,1,11316,'5.99','2005-08-02 16:07:49','2006-02-15 22:13:04'), +(2924,108,2,11445,'6.99','2005-08-02 20:33:35','2006-02-15 22:13:04'), +(2925,108,2,11759,'2.99','2005-08-17 09:41:23','2006-02-15 22:13:04'), +(2926,108,1,12583,'2.99','2005-08-18 15:51:36','2006-02-15 22:13:04'), +(2927,108,2,12625,'6.99','2005-08-18 17:36:19','2006-02-15 22:13:04'), +(2928,108,2,13754,'2.99','2005-08-20 11:18:08','2006-02-15 22:13:04'), +(2929,108,2,14635,'3.99','2005-08-21 18:51:43','2006-02-15 22:13:04'), +(2930,108,2,15556,'8.99','2005-08-23 04:52:16','2006-02-15 22:13:04'), +(2931,108,1,16001,'2.99','2005-08-23 20:45:53','2006-02-15 22:13:04'), +(2932,108,1,15294,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:04'), +(2933,109,1,203,'5.99','2005-05-26 07:27:57','2006-02-15 22:13:04'), +(2934,109,1,386,'0.99','2005-05-27 10:26:31','2006-02-15 22:13:04'), +(2935,109,2,622,'3.99','2005-05-28 15:58:22','2006-02-15 22:13:04'), +(2936,109,1,698,'0.99','2005-05-29 02:10:52','2006-02-15 22:13:04'), +(2937,109,1,1061,'7.99','2005-05-31 08:27:58','2006-02-15 22:13:04'), +(2938,109,1,1106,'4.99','2005-05-31 14:36:52','2006-02-15 22:13:04'), +(2939,109,1,1115,'2.99','2005-05-31 16:07:09','2006-02-15 22:13:04'), +(2940,109,2,1581,'2.99','2005-06-16 04:28:45','2006-02-15 22:13:04'), +(2941,109,2,1891,'3.99','2005-06-17 04:16:44','2006-02-15 22:13:04'), +(2942,109,2,2198,'6.99','2005-06-18 01:51:22','2006-02-15 22:13:04'), +(2943,109,2,2679,'5.99','2005-06-19 12:12:30','2006-02-15 22:13:04'), +(2944,109,2,3076,'5.99','2005-06-20 15:01:19','2006-02-15 22:13:04'), +(2945,109,1,4921,'4.99','2005-07-08 21:43:21','2006-02-15 22:13:04'), +(2946,109,1,5027,'2.99','2005-07-09 02:32:37','2006-02-15 22:13:04'), +(2947,109,2,5296,'2.99','2005-07-09 15:26:27','2006-02-15 22:13:04'), +(2948,109,2,6920,'6.99','2005-07-12 22:32:58','2006-02-15 22:13:04'), +(2949,109,2,7145,'0.99','2005-07-27 07:01:00','2006-02-15 22:13:04'), +(2950,109,1,8006,'3.99','2005-07-28 15:15:41','2006-02-15 22:13:04'), +(2951,109,1,9230,'0.99','2005-07-30 13:39:42','2006-02-15 22:13:04'), +(2952,109,1,9871,'2.99','2005-07-31 13:25:46','2006-02-15 22:13:04'), +(2953,109,2,10240,'0.99','2005-08-01 02:09:33','2006-02-15 22:13:04'), +(2954,109,2,10892,'3.99','2005-08-02 01:12:06','2006-02-15 22:13:04'), +(2955,109,2,12137,'6.99','2005-08-17 23:52:26','2006-02-15 22:13:04'), +(2956,109,1,13264,'3.99','2005-08-19 17:27:10','2006-02-15 22:13:04'), +(2957,109,2,15398,'7.99','2005-08-22 23:10:49','2006-02-15 22:13:04'), +(2958,109,2,15677,'2.99','2005-08-23 09:23:36','2006-02-15 22:13:04'), +(2959,110,1,515,'7.99','2005-05-28 03:10:10','2006-02-15 22:13:04'), +(2960,110,2,538,'1.99','2005-05-28 06:21:05','2006-02-15 22:13:04'), +(2961,110,2,1528,'8.99','2005-06-16 00:32:52','2006-02-15 22:13:04'), +(2962,110,1,3587,'4.99','2005-07-06 04:27:52','2006-02-15 22:13:04'), +(2963,110,1,4317,'2.99','2005-07-07 17:44:49','2006-02-15 22:13:05'), +(2964,110,2,4827,'4.99','2005-07-08 17:46:30','2006-02-15 22:13:05'), +(2965,110,1,6160,'4.99','2005-07-11 10:08:13','2006-02-15 22:13:05'), +(2966,110,1,7474,'0.99','2005-07-27 19:07:17','2006-02-15 22:13:05'), +(2967,110,2,7542,'0.99','2005-07-27 21:43:04','2006-02-15 22:13:05'), +(2968,110,1,7570,'2.99','2005-07-27 22:40:06','2006-02-15 22:13:05'), +(2969,110,1,11647,'7.99','2005-08-17 04:54:14','2006-02-15 22:13:05'), +(2970,110,2,12585,'3.99','2005-08-18 15:52:12','2006-02-15 22:13:05'), +(2971,110,1,13723,'2.99','2005-08-20 10:05:30','2006-02-15 22:13:05'), +(2972,110,2,15381,'2.99','2005-08-22 22:28:36','2006-02-15 22:13:05'), +(2973,111,2,505,'2.99','2005-05-28 02:06:37','2006-02-15 22:13:05'), +(2974,111,1,1593,'6.99','2005-06-16 05:14:52','2006-02-15 22:13:05'), +(2975,111,2,1974,'2.99','2005-06-17 09:30:05','2006-02-15 22:13:05'), +(2976,111,2,1999,'1.99','2005-06-17 11:30:08','2006-02-15 22:13:05'), +(2977,111,2,2297,'4.99','2005-06-18 08:17:41','2006-02-15 22:13:05'), +(2978,111,2,3087,'2.99','2005-06-20 15:53:59','2006-02-15 22:13:05'), +(2979,111,2,3333,'2.99','2005-06-21 10:01:36','2006-02-15 22:13:05'), +(2980,111,2,3485,'1.99','2005-07-05 23:25:54','2006-02-15 22:13:05'), +(2981,111,1,3551,'3.99','2005-07-06 02:33:48','2006-02-15 22:13:05'), +(2982,111,2,3963,'9.99','2005-07-06 22:19:17','2006-02-15 22:13:05'), +(2983,111,1,4249,'4.99','2005-07-07 14:05:17','2006-02-15 22:13:05'), +(2984,111,2,4286,'0.99','2005-07-07 15:36:44','2006-02-15 22:13:05'), +(2985,111,1,6896,'2.99','2005-07-12 21:25:37','2006-02-15 22:13:05'), +(2986,111,2,8525,'0.99','2005-07-29 10:20:19','2006-02-15 22:13:05'), +(2987,111,2,9933,'0.99','2005-07-31 15:24:46','2006-02-15 22:13:05'), +(2988,111,2,10039,'2.99','2005-07-31 18:50:40','2006-02-15 22:13:05'), +(2989,111,2,10602,'4.99','2005-08-01 14:30:23','2006-02-15 22:13:05'), +(2990,111,1,10952,'4.99','2005-08-02 03:28:21','2006-02-15 22:13:05'), +(2991,111,2,10990,'4.99','2005-08-02 04:41:06','2006-02-15 22:13:05'), +(2992,111,2,11239,'2.99','2005-08-02 13:27:11','2006-02-15 22:13:05'), +(2993,111,2,12196,'3.99','2005-08-18 02:08:48','2006-02-15 22:13:05'), +(2994,111,2,13251,'2.99','2005-08-19 16:48:37','2006-02-15 22:13:05'), +(2995,111,2,13525,'5.99','2005-08-20 02:50:44','2006-02-15 22:13:05'), +(2996,111,1,14949,'0.99','2005-08-22 06:12:16','2006-02-15 22:13:05'), +(2997,111,2,15174,'6.99','2005-08-22 15:26:36','2006-02-15 22:13:05'), +(2998,111,2,15542,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:05'), +(2999,112,1,396,'0.99','2005-05-27 11:47:04','2006-02-15 22:13:05'), +(3000,112,2,701,'2.99','2005-05-29 02:26:27','2006-02-15 22:13:05'), +(3001,112,1,1835,'4.99','2005-06-16 23:05:36','2006-02-15 22:13:05'), +(3002,112,2,1930,'2.99','2005-06-17 06:50:46','2006-02-15 22:13:05'), +(3003,112,1,2193,'4.99','2005-06-18 01:38:45','2006-02-15 22:13:05'), +(3004,112,2,3018,'2.99','2005-06-20 11:10:35','2006-02-15 22:13:05'), +(3005,112,1,5351,'4.99','2005-07-09 17:40:52','2006-02-15 22:13:05'), +(3006,112,1,5385,'2.99','2005-07-09 19:18:11','2006-02-15 22:13:05'), +(3007,112,2,6550,'2.99','2005-07-12 05:03:14','2006-02-15 22:13:05'), +(3008,112,2,7691,'4.99','2005-07-28 03:30:09','2006-02-15 22:13:05'), +(3009,112,2,7761,'4.99','2005-07-28 06:31:45','2006-02-15 22:13:05'), +(3010,112,1,9217,'4.99','2005-07-30 13:13:55','2006-02-15 22:13:05'), +(3011,112,2,9321,'6.99','2005-07-30 17:19:44','2006-02-15 22:13:05'), +(3012,112,2,9609,'4.99','2005-07-31 03:53:24','2006-02-15 22:13:05'), +(3013,112,1,9830,'5.99','2005-07-31 11:59:05','2006-02-15 22:13:05'), +(3014,112,2,9911,'3.99','2005-07-31 14:48:01','2006-02-15 22:13:05'), +(3015,112,1,10038,'2.99','2005-07-31 18:49:12','2006-02-15 22:13:05'), +(3016,112,2,10596,'5.99','2005-08-01 14:18:57','2006-02-15 22:13:06'), +(3017,112,1,11019,'2.99','2005-08-02 05:29:31','2006-02-15 22:13:06'), +(3018,112,1,11599,'7.99','2005-08-17 03:08:10','2006-02-15 22:13:06'), +(3019,112,2,11659,'4.99','2005-08-17 05:20:45','2006-02-15 22:13:06'), +(3020,112,2,11863,'3.99','2005-08-17 13:56:01','2006-02-15 22:13:06'), +(3021,112,2,13611,'8.99','2005-08-20 06:20:42','2006-02-15 22:13:06'), +(3022,112,2,13879,'2.99','2005-08-20 15:18:10','2006-02-15 22:13:06'), +(3023,112,2,14049,'5.99','2005-08-20 22:08:55','2006-02-15 22:13:06'), +(3024,112,1,14358,'0.99','2005-08-21 09:14:28','2006-02-15 22:13:06'), +(3025,112,2,15304,'4.99','2005-08-22 19:45:57','2006-02-15 22:13:06'), +(3026,112,1,15671,'0.99','2005-08-23 09:08:16','2006-02-15 22:13:06'), +(3027,112,1,15687,'8.99','2005-08-23 09:46:33','2006-02-15 22:13:06'), +(3028,112,1,15756,'2.99','2005-08-23 12:47:05','2006-02-15 22:13:06'), +(3029,113,1,510,'0.99','2005-05-28 02:52:14','2006-02-15 22:13:06'), +(3030,113,2,776,'0.99','2005-05-29 13:35:35','2006-02-15 22:13:06'), +(3031,113,2,2077,'4.99','2005-06-17 16:46:11','2006-02-15 22:13:06'), +(3032,113,1,2282,'2.99','2005-06-18 06:48:23','2006-02-15 22:13:06'), +(3033,113,1,2783,'2.99','2005-06-19 18:29:10','2006-02-15 22:13:06'), +(3034,113,2,3004,'0.99','2005-06-20 10:04:36','2006-02-15 22:13:06'), +(3035,113,1,3124,'8.99','2005-06-20 18:28:19','2006-02-15 22:13:06'), +(3036,113,1,3162,'6.99','2005-06-20 21:21:15','2006-02-15 22:13:06'), +(3037,113,2,3657,'5.99','2005-07-06 07:55:30','2006-02-15 22:13:06'), +(3038,113,1,4333,'2.99','2005-07-07 18:31:50','2006-02-15 22:13:06'), +(3039,113,2,5189,'2.99','2005-07-09 10:23:21','2006-02-15 22:13:06'), +(3040,113,2,5324,'2.99','2005-07-09 16:34:18','2006-02-15 22:13:06'), +(3041,113,2,5655,'4.99','2005-07-10 07:31:06','2006-02-15 22:13:06'), +(3042,113,1,5774,'5.99','2005-07-10 13:31:56','2006-02-15 22:13:06'), +(3043,113,1,6025,'0.99','2005-07-11 02:18:13','2006-02-15 22:13:06'), +(3044,113,1,6836,'0.99','2005-07-12 18:58:05','2006-02-15 22:13:06'), +(3045,113,2,7468,'5.99','2005-07-27 18:52:27','2006-02-15 22:13:06'), +(3046,113,2,7587,'2.99','2005-07-27 23:23:03','2006-02-15 22:13:06'), +(3047,113,2,9221,'6.99','2005-07-30 13:20:06','2006-02-15 22:13:06'), +(3048,113,2,10181,'4.99','2005-08-01 00:00:44','2006-02-15 22:13:06'), +(3049,113,1,10378,'0.99','2005-08-01 06:30:04','2006-02-15 22:13:06'), +(3050,113,2,10578,'1.99','2005-08-01 13:48:02','2006-02-15 22:13:06'), +(3051,113,2,11655,'7.99','2005-08-17 05:11:07','2006-02-15 22:13:06'), +(3052,113,1,11872,'5.99','2005-08-17 14:11:45','2006-02-15 22:13:06'), +(3053,113,1,12392,'5.99','2005-08-18 08:57:58','2006-02-15 22:13:06'), +(3054,113,2,12817,'3.99','2005-08-19 01:04:35','2006-02-15 22:13:06'), +(3055,113,2,13406,'2.99','2005-08-19 22:22:01','2006-02-15 22:13:06'), +(3056,113,1,15600,'1.99','2005-08-23 06:31:24','2006-02-15 22:13:06'), +(3057,113,1,15770,'2.99','2005-08-23 13:18:16','2006-02-15 22:13:06'), +(3058,114,1,205,'4.99','2005-05-26 07:59:37','2006-02-15 22:13:06'), +(3059,114,1,255,'4.99','2005-05-26 14:52:15','2006-02-15 22:13:06'), +(3060,114,2,889,'2.99','2005-05-30 07:14:53','2006-02-15 22:13:06'), +(3061,114,1,2059,'2.99','2005-06-17 15:36:12','2006-02-15 22:13:06'), +(3062,114,2,2680,'7.99','2005-06-19 12:13:37','2006-02-15 22:13:07'), +(3063,114,1,3094,'2.99','2005-06-20 16:06:51','2006-02-15 22:13:07'), +(3064,114,2,3144,'5.99','2005-06-20 20:14:20','2006-02-15 22:13:07'), +(3065,114,1,3484,'4.99','2005-07-05 23:23:11','2006-02-15 22:13:07'), +(3066,114,1,3924,'2.99','2005-07-06 20:38:02','2006-02-15 22:13:07'), +(3067,114,1,4025,'0.99','2005-07-07 02:13:24','2006-02-15 22:13:07'), +(3068,114,1,5418,'0.99','2005-07-09 20:41:35','2006-02-15 22:13:07'), +(3069,114,2,5624,'4.99','2005-07-10 05:43:16','2006-02-15 22:13:07'), +(3070,114,1,5625,'2.99','2005-07-10 05:44:02','2006-02-15 22:13:07'), +(3071,114,1,6188,'2.99','2005-07-11 11:31:47','2006-02-15 22:13:07'), +(3072,114,1,6754,'4.99','2005-07-12 14:59:24','2006-02-15 22:13:07'), +(3073,114,2,7316,'2.99','2005-07-27 13:19:03','2006-02-15 22:13:07'), +(3074,114,2,7462,'2.99','2005-07-27 18:47:47','2006-02-15 22:13:07'), +(3075,114,2,7565,'2.99','2005-07-27 22:33:59','2006-02-15 22:13:07'), +(3076,114,2,7938,'5.99','2005-07-28 12:39:11','2006-02-15 22:13:07'), +(3077,114,2,8496,'4.99','2005-07-29 09:05:33','2006-02-15 22:13:07'), +(3078,114,1,8590,'10.99','2005-07-29 12:32:20','2006-02-15 22:13:07'), +(3079,114,1,9717,'4.99','2005-07-31 08:24:41','2006-02-15 22:13:07'), +(3080,114,1,11547,'4.99','2005-08-17 00:59:24','2006-02-15 22:13:07'), +(3081,114,2,12326,'0.99','2005-08-18 06:41:59','2006-02-15 22:13:07'), +(3082,114,1,12685,'6.99','2005-08-18 19:51:29','2006-02-15 22:13:07'), +(3083,114,2,13459,'6.99','2005-08-20 00:45:40','2006-02-15 22:13:07'), +(3084,114,2,14158,'5.99','2005-08-21 02:43:20','2006-02-15 22:13:07'), +(3085,114,1,14867,'4.99','2005-08-22 03:14:46','2006-02-15 22:13:07'), +(3086,114,1,15485,'0.99','2005-08-23 02:04:57','2006-02-15 22:13:07'), +(3087,114,1,15528,'2.99','2005-08-23 03:45:40','2006-02-15 22:13:07'), +(3088,114,2,15646,'3.99','2005-08-23 08:19:55','2006-02-15 22:13:07'), +(3089,114,1,16047,'0.99','2005-08-23 22:42:48','2006-02-15 22:13:07'), +(3090,114,2,12506,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:07'), +(3091,115,1,915,'0.99','2005-05-30 11:20:27','2006-02-15 22:13:07'), +(3092,115,1,983,'0.99','2005-05-30 22:15:51','2006-02-15 22:13:07'), +(3093,115,1,1102,'2.99','2005-05-31 14:20:29','2006-02-15 22:13:07'), +(3094,115,2,1361,'0.99','2005-06-15 13:37:38','2006-02-15 22:13:07'), +(3095,115,2,1515,'2.99','2005-06-15 23:07:50','2006-02-15 22:13:07'), +(3096,115,1,3289,'6.99','2005-06-21 06:41:48','2006-02-15 22:13:07'), +(3097,115,2,3544,'0.99','2005-07-06 02:06:32','2006-02-15 22:13:07'), +(3098,115,1,3624,'0.99','2005-07-06 06:06:27','2006-02-15 22:13:07'), +(3099,115,1,4780,'1.99','2005-07-08 16:06:51','2006-02-15 22:13:07'), +(3100,115,1,5245,'4.99','2005-07-09 13:24:14','2006-02-15 22:13:07'), +(3101,115,1,6080,'2.99','2005-07-11 05:08:11','2006-02-15 22:13:07'), +(3102,115,2,6113,'2.99','2005-07-11 07:31:08','2006-02-15 22:13:07'), +(3103,115,1,6373,'0.99','2005-07-11 21:35:20','2006-02-15 22:13:07'), +(3104,115,1,6574,'5.99','2005-07-12 06:04:22','2006-02-15 22:13:07'), +(3105,115,1,6798,'6.99','2005-07-12 16:49:11','2006-02-15 22:13:07'), +(3106,115,2,7355,'1.99','2005-07-27 14:45:59','2006-02-15 22:13:07'), +(3107,115,2,7465,'4.99','2005-07-27 18:50:30','2006-02-15 22:13:07'), +(3108,115,1,7983,'4.99','2005-07-28 14:23:01','2006-02-15 22:13:07'), +(3109,115,1,8594,'4.99','2005-07-29 12:42:13','2006-02-15 22:13:07'), +(3110,115,2,9578,'0.99','2005-07-31 02:54:31','2006-02-15 22:13:07'), +(3111,115,2,10022,'3.99','2005-07-31 18:25:30','2006-02-15 22:13:07'), +(3112,115,2,10475,'4.99','2005-08-01 10:03:17','2006-02-15 22:13:07'), +(3113,115,2,10647,'2.99','2005-08-01 16:08:46','2006-02-15 22:13:07'), +(3114,115,2,10919,'0.99','2005-08-02 02:11:03','2006-02-15 22:13:07'), +(3115,115,1,11891,'2.99','2005-08-17 15:11:55','2006-02-15 22:13:07'), +(3116,115,2,12366,'0.99','2005-08-18 07:55:14','2006-02-15 22:13:07'), +(3117,115,2,13977,'0.99','2005-08-20 19:02:34','2006-02-15 22:13:08'), +(3118,115,1,15176,'6.99','2005-08-22 15:30:25','2006-02-15 22:13:08'), +(3119,115,2,15452,'0.99','2005-08-23 00:57:12','2006-02-15 22:13:08'), +(3120,115,2,13056,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:08'), +(3121,116,1,1058,'4.99','2005-05-31 08:04:17','2006-02-15 22:13:08'), +(3122,116,2,1332,'0.99','2005-06-15 11:36:01','2006-02-15 22:13:08'), +(3123,116,2,1533,'0.99','2005-06-16 00:46:02','2006-02-15 22:13:08'), +(3124,116,2,1762,'4.99','2005-06-16 17:50:19','2006-02-15 22:13:08'), +(3125,116,2,1913,'4.99','2005-06-17 05:19:47','2006-02-15 22:13:08'), +(3126,116,1,2639,'4.99','2005-06-19 09:24:02','2006-02-15 22:13:08'), +(3127,116,1,2861,'3.99','2005-06-19 23:21:34','2006-02-15 22:13:08'), +(3128,116,2,3908,'6.99','2005-07-06 19:47:26','2006-02-15 22:13:08'), +(3129,116,2,3940,'2.99','2005-07-06 21:16:59','2006-02-15 22:13:08'), +(3130,116,1,4027,'0.99','2005-07-07 02:19:01','2006-02-15 22:13:08'), +(3131,116,2,4737,'4.99','2005-07-08 13:23:53','2006-02-15 22:13:08'), +(3132,116,2,5169,'2.99','2005-07-09 09:22:25','2006-02-15 22:13:08'), +(3133,116,1,6557,'4.99','2005-07-12 05:12:03','2006-02-15 22:13:08'), +(3134,116,1,7238,'0.99','2005-07-27 10:13:41','2006-02-15 22:13:08'), +(3135,116,2,7763,'5.99','2005-07-28 06:35:16','2006-02-15 22:13:08'), +(3136,116,2,9245,'6.99','2005-07-30 14:07:50','2006-02-15 22:13:08'), +(3137,116,1,9562,'3.99','2005-07-31 02:23:20','2006-02-15 22:13:08'), +(3138,116,2,10250,'1.99','2005-08-01 02:38:42','2006-02-15 22:13:08'), +(3139,116,1,10801,'1.99','2005-08-01 22:09:35','2006-02-15 22:13:08'), +(3140,116,2,11016,'4.99','2005-08-02 05:19:13','2006-02-15 22:13:08'), +(3141,116,2,12376,'2.99','2005-08-18 08:20:29','2006-02-15 22:13:08'), +(3142,116,2,13146,'7.99','2005-08-19 12:54:42','2006-02-15 22:13:08'), +(3143,116,1,13369,'0.99','2005-08-19 21:19:47','2006-02-15 22:13:08'), +(3144,116,1,13474,'0.99','2005-08-20 01:04:32','2006-02-15 22:13:08'), +(3145,116,1,13775,'6.99','2005-08-20 11:56:30','2006-02-15 22:13:08'), +(3146,116,2,14763,'11.99','2005-08-21 23:34:00','2006-02-15 22:13:08'), +(3147,116,1,14907,'2.99','2005-08-22 04:44:09','2006-02-15 22:13:08'), +(3148,117,1,700,'0.99','2005-05-29 02:18:54','2006-02-15 22:13:08'), +(3149,117,2,1114,'0.99','2005-05-31 16:00:33','2006-02-15 22:13:08'), +(3150,117,1,1755,'2.99','2005-06-16 17:18:44','2006-02-15 22:13:08'), +(3151,117,2,3218,'2.99','2005-06-21 01:38:09','2006-02-15 22:13:08'), +(3152,117,2,5506,'5.99','2005-07-10 00:45:48','2006-02-15 22:13:08'), +(3153,117,1,5673,'0.99','2005-07-10 08:21:54','2006-02-15 22:13:08'), +(3154,117,1,6093,'9.99','2005-07-11 05:52:50','2006-02-15 22:13:08'), +(3155,117,1,6449,'6.99','2005-07-12 00:48:58','2006-02-15 22:13:08'), +(3156,117,1,8687,'2.99','2005-07-29 16:19:17','2006-02-15 22:13:08'), +(3157,117,2,10556,'2.99','2005-08-01 12:58:42','2006-02-15 22:13:08'), +(3158,117,1,10558,'4.99','2005-08-01 13:00:20','2006-02-15 22:13:08'), +(3159,117,2,11467,'3.99','2005-08-02 21:47:07','2006-02-15 22:13:08'), +(3160,117,1,12143,'2.99','2005-08-18 00:06:26','2006-02-15 22:13:08'), +(3161,117,1,12337,'2.99','2005-08-18 07:02:24','2006-02-15 22:13:08'), +(3162,117,1,12575,'6.99','2005-08-18 15:37:42','2006-02-15 22:13:08'), +(3163,117,1,12618,'4.99','2005-08-18 17:24:02','2006-02-15 22:13:08'), +(3164,117,1,14784,'0.99','2005-08-22 00:23:13','2006-02-15 22:13:08'), +(3165,117,2,14854,'2.99','2005-08-22 02:26:47','2006-02-15 22:13:08'), +(3166,117,1,15432,'2.99','2005-08-23 00:26:52','2006-02-15 22:13:09'), +(3167,118,2,351,'5.99','2005-05-27 05:39:03','2006-02-15 22:13:09'), +(3168,118,2,1766,'4.99','2005-06-16 17:59:37','2006-02-15 22:13:09'), +(3169,118,2,2217,'0.99','2005-06-18 03:12:29','2006-02-15 22:13:09'), +(3170,118,1,3263,'4.99','2005-06-21 04:15:52','2006-02-15 22:13:09'), +(3171,118,1,4966,'0.99','2005-07-08 23:47:25','2006-02-15 22:13:09'), +(3172,118,1,5829,'1.99','2005-07-10 16:29:41','2006-02-15 22:13:09'), +(3173,118,1,6377,'0.99','2005-07-11 21:41:16','2006-02-15 22:13:09'), +(3174,118,1,6507,'1.99','2005-07-12 03:33:12','2006-02-15 22:13:09'), +(3175,118,1,7196,'2.99','2005-07-27 08:49:08','2006-02-15 22:13:09'), +(3176,118,1,7850,'4.99','2005-07-28 09:31:13','2006-02-15 22:13:09'), +(3177,118,2,7956,'4.99','2005-07-28 13:32:17','2006-02-15 22:13:09'), +(3178,118,1,8314,'3.99','2005-07-29 03:35:04','2006-02-15 22:13:09'), +(3179,118,2,8760,'7.99','2005-07-29 19:22:40','2006-02-15 22:13:09'), +(3180,118,1,8881,'4.99','2005-07-30 00:22:31','2006-02-15 22:13:09'), +(3181,118,2,10045,'1.99','2005-07-31 19:04:35','2006-02-15 22:13:09'), +(3182,118,2,12538,'2.99','2005-08-18 14:09:09','2006-02-15 22:13:09'), +(3183,118,2,13193,'6.99','2005-08-19 14:33:45','2006-02-15 22:13:09'), +(3184,118,2,14394,'5.99','2005-08-21 10:23:10','2006-02-15 22:13:09'), +(3185,118,2,14595,'7.99','2005-08-21 17:35:17','2006-02-15 22:13:09'), +(3186,118,1,14924,'2.99','2005-08-22 05:15:17','2006-02-15 22:13:09'), +(3187,118,1,15731,'0.99','2005-08-23 11:33:25','2006-02-15 22:13:09'), +(3188,119,2,67,'0.99','2005-05-25 09:41:01','2006-02-15 22:13:09'), +(3189,119,1,235,'5.99','2005-05-26 11:51:09','2006-02-15 22:13:09'), +(3190,119,2,540,'6.99','2005-05-28 06:40:25','2006-02-15 22:13:09'), +(3191,119,1,1179,'7.99','2005-06-15 00:36:50','2006-02-15 22:13:09'), +(3192,119,2,2009,'2.99','2005-06-17 11:48:31','2006-02-15 22:13:09'), +(3193,119,2,3388,'5.99','2005-06-21 14:34:51','2006-02-15 22:13:09'), +(3194,119,2,4840,'8.99','2005-07-08 18:18:16','2006-02-15 22:13:09'), +(3195,119,1,5176,'5.99','2005-07-09 09:39:31','2006-02-15 22:13:09'), +(3196,119,1,5268,'0.99','2005-07-09 14:22:43','2006-02-15 22:13:09'), +(3197,119,1,6079,'7.99','2005-07-11 05:07:14','2006-02-15 22:13:09'), +(3198,119,2,6330,'0.99','2005-07-11 19:15:42','2006-02-15 22:13:09'), +(3199,119,2,8140,'4.99','2005-07-28 20:17:50','2006-02-15 22:13:09'), +(3200,119,1,8183,'5.99','2005-07-28 22:21:07','2006-02-15 22:13:09'), +(3201,119,1,8304,'4.99','2005-07-29 03:08:30','2006-02-15 22:13:09'), +(3202,119,2,9028,'2.99','2005-07-30 06:00:35','2006-02-15 22:13:09'), +(3203,119,1,10101,'0.99','2005-07-31 20:47:29','2006-02-15 22:13:09'), +(3204,119,1,10366,'3.99','2005-08-01 06:09:37','2006-02-15 22:13:09'), +(3205,119,2,10552,'2.99','2005-08-01 12:49:44','2006-02-15 22:13:09'), +(3206,119,1,10681,'4.99','2005-08-01 17:30:35','2006-02-15 22:13:09'), +(3207,119,2,11377,'2.99','2005-08-02 18:16:47','2006-02-15 22:13:09'), +(3208,119,1,11520,'5.99','2005-08-17 00:04:28','2006-02-15 22:13:09'), +(3209,119,2,12576,'2.99','2005-08-18 15:38:31','2006-02-15 22:13:10'), +(3210,119,2,12603,'3.99','2005-08-18 16:56:20','2006-02-15 22:13:10'), +(3211,119,2,12842,'6.99','2005-08-19 01:57:21','2006-02-15 22:13:10'), +(3212,119,1,13581,'4.99','2005-08-20 05:26:15','2006-02-15 22:13:10'), +(3213,119,2,14349,'3.99','2005-08-21 08:54:53','2006-02-15 22:13:10'), +(3214,119,2,14382,'2.99','2005-08-21 10:01:03','2006-02-15 22:13:10'), +(3215,119,2,14643,'6.99','2005-08-21 19:11:58','2006-02-15 22:13:10'), +(3216,119,2,14659,'0.99','2005-08-21 19:42:36','2006-02-15 22:13:10'), +(3217,119,1,15111,'4.99','2005-08-22 12:21:43','2006-02-15 22:13:10'), +(3218,119,2,15131,'3.99','2005-08-22 13:06:26','2006-02-15 22:13:10'), +(3219,119,2,15171,'6.99','2005-08-22 15:23:59','2006-02-15 22:13:10'), +(3220,119,1,15844,'2.99','2005-08-23 15:38:12','2006-02-15 22:13:10'), +(3221,119,2,16028,'3.99','2005-08-23 21:52:56','2006-02-15 22:13:10'), +(3222,120,2,68,'7.99','2005-05-25 09:47:31','2006-02-15 22:13:10'), +(3223,120,2,532,'0.99','2005-05-28 05:36:58','2006-02-15 22:13:10'), +(3224,120,1,1374,'3.99','2005-06-15 14:49:54','2006-02-15 22:13:10'), +(3225,120,1,1820,'4.99','2005-06-16 21:34:50','2006-02-15 22:13:10'), +(3226,120,2,1932,'2.99','2005-06-17 06:54:41','2006-02-15 22:13:10'), +(3227,120,1,2169,'4.99','2005-06-17 23:57:23','2006-02-15 22:13:10'), +(3228,120,1,2803,'9.99','2005-06-19 19:18:27','2006-02-15 22:13:10'), +(3229,120,1,3133,'2.99','2005-06-20 19:18:32','2006-02-15 22:13:10'), +(3230,120,1,4001,'5.99','2005-07-07 00:07:00','2006-02-15 22:13:10'), +(3231,120,2,4272,'3.99','2005-07-07 14:39:20','2006-02-15 22:13:10'), +(3232,120,2,4342,'0.99','2005-07-07 18:47:03','2006-02-15 22:13:10'), +(3233,120,2,4666,'9.99','2005-07-08 10:05:02','2006-02-15 22:13:10'), +(3234,120,1,4942,'1.99','2005-07-08 22:42:47','2006-02-15 22:13:10'), +(3235,120,2,5288,'1.99','2005-07-09 15:13:07','2006-02-15 22:13:10'), +(3236,120,2,6503,'0.99','2005-07-12 03:18:07','2006-02-15 22:13:10'), +(3237,120,1,6989,'4.99','2005-07-27 01:00:34','2006-02-15 22:13:10'), +(3238,120,2,8046,'0.99','2005-07-28 16:49:41','2006-02-15 22:13:10'), +(3239,120,2,8756,'1.99','2005-07-29 19:18:57','2006-02-15 22:13:10'), +(3240,120,1,8998,'6.99','2005-07-30 04:54:14','2006-02-15 22:13:10'), +(3241,120,2,9907,'6.99','2005-07-31 14:39:50','2006-02-15 22:13:10'), +(3242,120,2,10161,'0.99','2005-07-31 23:09:41','2006-02-15 22:13:10'), +(3243,120,2,10696,'4.99','2005-08-01 18:18:13','2006-02-15 22:13:10'), +(3244,120,1,10940,'3.99','2005-08-02 03:08:29','2006-02-15 22:13:10'), +(3245,120,2,11133,'0.99','2005-08-02 09:15:45','2006-02-15 22:13:10'), +(3246,120,2,13167,'2.99','2005-08-19 13:36:41','2006-02-15 22:13:10'), +(3247,120,2,13375,'7.99','2005-08-19 21:31:31','2006-02-15 22:13:10'), +(3248,120,1,14001,'2.99','2005-08-20 20:07:15','2006-02-15 22:13:10'), +(3249,120,1,14153,'4.99','2005-08-21 02:24:33','2006-02-15 22:13:10'), +(3250,120,1,14246,'4.99','2005-08-21 05:34:09','2006-02-15 22:13:10'), +(3251,120,2,14460,'9.99','2005-08-21 12:48:48','2006-02-15 22:13:10'), +(3252,120,2,14969,'6.99','2005-08-22 06:49:15','2006-02-15 22:13:10'), +(3253,120,1,15780,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:10'), +(3254,121,1,217,'4.99','2005-05-26 09:24:26','2006-02-15 22:13:10'), +(3255,121,1,1634,'2.99','2005-06-16 08:16:05','2006-02-15 22:13:10'), +(3256,121,1,1833,'1.99','2005-06-16 22:45:03','2006-02-15 22:13:10'), +(3257,121,2,5670,'0.99','2005-07-10 08:14:52','2006-02-15 22:13:10'), +(3258,121,2,6780,'4.99','2005-07-12 16:18:12','2006-02-15 22:13:11'), +(3259,121,2,7114,'0.99','2005-07-27 05:42:13','2006-02-15 22:13:11'), +(3260,121,1,7185,'0.99','2005-07-27 08:23:54','2006-02-15 22:13:11'), +(3261,121,2,7298,'2.99','2005-07-27 12:45:14','2006-02-15 22:13:11'), +(3262,121,1,8370,'6.99','2005-07-29 05:16:21','2006-02-15 22:13:11'), +(3263,121,2,8788,'1.99','2005-07-29 20:46:44','2006-02-15 22:13:11'), +(3264,121,2,8875,'2.99','2005-07-30 00:15:09','2006-02-15 22:13:11'), +(3265,121,2,8969,'8.99','2005-07-30 04:00:19','2006-02-15 22:13:11'), +(3266,121,2,10457,'5.99','2005-08-01 09:17:34','2006-02-15 22:13:11'), +(3267,121,2,11720,'8.99','2005-08-17 07:46:54','2006-02-15 22:13:11'), +(3268,121,2,12242,'1.99','2005-08-18 03:37:31','2006-02-15 22:13:11'), +(3269,121,2,12428,'3.99','2005-08-18 10:24:21','2006-02-15 22:13:11'), +(3270,121,2,12734,'1.99','2005-08-18 22:04:52','2006-02-15 22:13:11'), +(3271,121,1,12881,'5.99','2005-08-19 03:28:13','2006-02-15 22:13:11'), +(3272,121,2,12892,'0.99','2005-08-19 03:46:34','2006-02-15 22:13:11'), +(3273,121,1,14138,'7.99','2005-08-21 01:59:37','2006-02-15 22:13:11'), +(3274,121,1,14177,'4.99','2005-08-21 03:11:33','2006-02-15 22:13:11'), +(3275,121,2,14412,'9.99','2005-08-21 11:02:09','2006-02-15 22:13:11'), +(3276,121,1,14464,'2.99','2005-08-21 12:52:54','2006-02-15 22:13:11'), +(3277,121,2,15114,'7.99','2005-08-22 12:24:55','2006-02-15 22:13:11'), +(3278,121,1,15369,'0.99','2005-08-22 21:58:06','2006-02-15 22:13:11'), +(3279,121,1,16041,'2.99','2005-08-23 22:20:26','2006-02-15 22:13:11'), +(3280,122,2,853,'0.99','2005-05-30 01:43:31','2006-02-15 22:13:11'), +(3281,122,2,1135,'4.99','2005-05-31 19:15:11','2006-02-15 22:13:11'), +(3282,122,1,1211,'0.99','2005-06-15 03:01:20','2006-02-15 22:13:11'), +(3283,122,2,1442,'7.99','2005-06-15 18:55:34','2006-02-15 22:13:11'), +(3284,122,2,2240,'3.99','2005-06-18 04:28:27','2006-02-15 22:13:11'), +(3285,122,1,2253,'0.99','2005-06-18 05:11:43','2006-02-15 22:13:11'), +(3286,122,1,2482,'4.99','2005-06-18 21:10:44','2006-02-15 22:13:11'), +(3287,122,2,2595,'4.99','2005-06-19 05:43:55','2006-02-15 22:13:11'), +(3288,122,2,2834,'1.99','2005-06-19 21:41:46','2006-02-15 22:13:11'), +(3289,122,1,3778,'2.99','2005-07-06 13:44:48','2006-02-15 22:13:11'), +(3290,122,2,3986,'4.99','2005-07-06 23:25:13','2006-02-15 22:13:11'), +(3291,122,1,4239,'7.99','2005-07-07 13:23:17','2006-02-15 22:13:11'), +(3292,122,1,4568,'4.99','2005-07-08 05:23:59','2006-02-15 22:13:11'), +(3293,122,2,5235,'6.99','2005-07-09 12:54:25','2006-02-15 22:13:11'), +(3294,122,2,6231,'0.99','2005-07-11 14:02:36','2006-02-15 22:13:11'), +(3295,122,1,6427,'0.99','2005-07-11 23:57:34','2006-02-15 22:13:11'), +(3296,122,1,6436,'0.99','2005-07-12 00:18:42','2006-02-15 22:13:11'), +(3297,122,2,6974,'7.99','2005-07-27 00:39:16','2006-02-15 22:13:11'), +(3298,122,1,7267,'2.99','2005-07-27 11:22:55','2006-02-15 22:13:11'), +(3299,122,2,7950,'4.99','2005-07-28 13:21:00','2006-02-15 22:13:11'), +(3300,122,1,8077,'2.99','2005-07-28 17:54:35','2006-02-15 22:13:11'), +(3301,122,2,8177,'0.99','2005-07-28 21:43:54','2006-02-15 22:13:11'), +(3302,122,1,8772,'5.99','2005-07-29 19:55:25','2006-02-15 22:13:11'), +(3303,122,2,9910,'4.99','2005-07-31 14:47:57','2006-02-15 22:13:11'), +(3304,122,1,10626,'1.99','2005-08-01 15:32:41','2006-02-15 22:13:11'), +(3305,122,2,11044,'3.99','2005-08-02 06:05:27','2006-02-15 22:13:12'), +(3306,122,2,11197,'2.99','2005-08-02 11:45:07','2006-02-15 22:13:12'), +(3307,122,2,12476,'4.99','2005-08-18 12:22:40','2006-02-15 22:13:12'), +(3308,122,2,12711,'4.99','2005-08-18 21:03:32','2006-02-15 22:13:12'), +(3309,122,1,13171,'2.99','2005-08-19 13:48:54','2006-02-15 22:13:12'), +(3310,122,1,13812,'4.99','2005-08-20 13:01:43','2006-02-15 22:13:12'), +(3311,122,2,14666,'5.99','2005-08-21 19:51:09','2006-02-15 22:13:12'), +(3312,123,1,992,'2.99','2005-05-30 23:47:56','2006-02-15 22:13:12'), +(3313,123,2,1490,'4.99','2005-06-15 21:42:17','2006-02-15 22:13:12'), +(3314,123,1,1751,'0.99','2005-06-16 17:00:14','2006-02-15 22:13:12'), +(3315,123,2,1775,'4.99','2005-06-16 18:28:19','2006-02-15 22:13:12'), +(3316,123,2,1951,'0.99','2005-06-17 08:30:35','2006-02-15 22:13:12'), +(3317,123,1,2594,'2.99','2005-06-19 05:43:43','2006-02-15 22:13:12'), +(3318,123,1,4442,'3.99','2005-07-07 23:05:30','2006-02-15 22:13:12'), +(3319,123,1,4860,'8.99','2005-07-08 18:54:07','2006-02-15 22:13:12'), +(3320,123,2,7535,'4.99','2005-07-27 21:32:39','2006-02-15 22:13:12'), +(3321,123,1,7727,'2.99','2005-07-28 04:52:43','2006-02-15 22:13:12'), +(3322,123,2,7768,'0.99','2005-07-28 06:44:03','2006-02-15 22:13:12'), +(3323,123,1,7852,'2.99','2005-07-28 09:34:29','2006-02-15 22:13:12'), +(3324,123,1,7969,'5.99','2005-07-28 13:57:37','2006-02-15 22:13:12'), +(3325,123,2,8699,'4.99','2005-07-29 16:53:00','2006-02-15 22:13:12'), +(3326,123,2,9529,'4.99','2005-07-31 01:05:26','2006-02-15 22:13:12'), +(3327,123,1,10066,'4.99','2005-07-31 19:30:01','2006-02-15 22:13:12'), +(3328,123,2,10295,'8.99','2005-08-01 03:53:49','2006-02-15 22:13:12'), +(3329,123,1,12360,'2.99','2005-08-18 07:46:35','2006-02-15 22:13:12'), +(3330,123,1,12402,'3.99','2005-08-18 09:27:34','2006-02-15 22:13:12'), +(3331,123,1,13668,'2.99','2005-08-20 08:26:06','2006-02-15 22:13:12'), +(3332,123,2,15152,'7.99','2005-08-22 14:25:21','2006-02-15 22:13:12'), +(3333,123,2,15525,'4.99','2005-08-23 03:43:32','2006-02-15 22:13:12'), +(3334,123,1,15621,'1.99','2005-08-23 07:13:43','2006-02-15 22:13:12'), +(3335,123,2,15787,'2.99','2005-08-23 13:51:57','2006-02-15 22:13:12'), +(3336,124,1,775,'0.99','2005-05-29 13:23:26','2006-02-15 22:13:12'), +(3337,124,2,1039,'4.99','2005-05-31 05:32:29','2006-02-15 22:13:12'), +(3338,124,2,1057,'3.99','2005-05-31 07:58:06','2006-02-15 22:13:12'), +(3339,124,2,1130,'5.99','2005-05-31 18:13:57','2006-02-15 22:13:12'), +(3340,124,2,2336,'1.99','2005-06-18 11:00:05','2006-02-15 22:13:12'), +(3341,124,1,4341,'7.99','2005-07-07 18:44:23','2006-02-15 22:13:12'), +(3342,124,2,4709,'2.99','2005-07-08 12:04:34','2006-02-15 22:13:12'), +(3343,124,1,5566,'2.99','2005-07-10 03:30:17','2006-02-15 22:13:12'), +(3344,124,1,6411,'2.99','2005-07-11 23:10:50','2006-02-15 22:13:12'), +(3345,124,1,7519,'6.99','2005-07-27 21:01:41','2006-02-15 22:13:12'), +(3346,124,2,7700,'8.99','2005-07-28 03:54:14','2006-02-15 22:13:12'), +(3347,124,2,8524,'0.99','2005-07-29 10:20:07','2006-02-15 22:13:12'), +(3348,124,1,9986,'3.99','2005-07-31 17:16:50','2006-02-15 22:13:12'), +(3349,124,2,11493,'5.99','2005-08-02 22:47:00','2006-02-15 22:13:12'), +(3350,124,1,12835,'4.99','2005-08-19 01:47:45','2006-02-15 22:13:12'), +(3351,124,2,14737,'0.99','2005-08-21 22:27:11','2006-02-15 22:13:13'), +(3352,124,2,15266,'4.99','2005-08-22 18:37:24','2006-02-15 22:13:13'), +(3353,124,2,16023,'0.99','2005-08-23 21:45:02','2006-02-15 22:13:13'), +(3354,125,2,185,'3.99','2005-05-26 05:30:03','2006-02-15 22:13:13'), +(3355,125,1,1481,'2.99','2005-06-15 21:17:58','2006-02-15 22:13:13'), +(3356,125,1,2355,'3.99','2005-06-18 12:57:06','2006-02-15 22:13:13'), +(3357,125,1,2826,'7.99','2005-06-19 20:41:35','2006-02-15 22:13:13'), +(3358,125,1,3118,'4.99','2005-06-20 18:05:57','2006-02-15 22:13:13'), +(3359,125,1,3617,'4.99','2005-07-06 05:58:06','2006-02-15 22:13:13'), +(3360,125,1,5200,'2.99','2005-07-09 10:52:09','2006-02-15 22:13:13'), +(3361,125,2,5523,'7.99','2005-07-10 01:47:55','2006-02-15 22:13:13'), +(3362,125,1,6055,'0.99','2005-07-11 03:59:08','2006-02-15 22:13:13'), +(3363,125,2,6268,'6.99','2005-07-11 15:55:34','2006-02-15 22:13:13'), +(3364,125,1,7323,'4.99','2005-07-27 13:39:40','2006-02-15 22:13:13'), +(3365,125,2,7879,'0.99','2005-07-28 10:27:46','2006-02-15 22:13:13'), +(3366,125,2,7922,'0.99','2005-07-28 12:05:25','2006-02-15 22:13:13'), +(3367,125,2,8375,'2.99','2005-07-29 05:25:30','2006-02-15 22:13:13'), +(3368,125,1,8433,'2.99','2005-07-29 07:19:16','2006-02-15 22:13:13'), +(3369,125,1,8832,'4.99','2005-07-29 22:37:49','2006-02-15 22:13:13'), +(3370,125,1,9129,'9.99','2005-07-30 09:51:21','2006-02-15 22:13:13'), +(3371,125,1,9496,'4.99','2005-07-30 23:55:20','2006-02-15 22:13:13'), +(3372,125,2,9504,'0.99','2005-07-31 00:09:07','2006-02-15 22:13:13'), +(3373,125,1,9722,'4.99','2005-07-31 08:29:48','2006-02-15 22:13:13'), +(3374,125,2,9734,'2.99','2005-07-31 08:57:45','2006-02-15 22:13:13'), +(3375,125,1,10583,'2.99','2005-08-01 13:54:35','2006-02-15 22:13:13'), +(3376,125,1,10699,'2.99','2005-08-01 18:24:51','2006-02-15 22:13:13'), +(3377,125,2,11279,'7.99','2005-08-02 14:30:03','2006-02-15 22:13:13'), +(3378,125,1,11806,'4.99','2005-08-17 11:49:28','2006-02-15 22:13:13'), +(3379,125,1,11832,'4.99','2005-08-17 12:55:31','2006-02-15 22:13:13'), +(3380,125,1,11999,'0.99','2005-08-17 18:47:07','2006-02-15 22:13:13'), +(3381,125,1,12075,'4.99','2005-08-17 21:54:55','2006-02-15 22:13:13'), +(3382,125,2,12262,'2.99','2005-08-18 04:16:15','2006-02-15 22:13:13'), +(3383,125,2,13441,'6.99','2005-08-19 23:48:23','2006-02-15 22:13:13'), +(3384,125,2,14456,'2.99','2005-08-21 12:38:09','2006-02-15 22:13:13'), +(3385,125,1,15055,'2.99','2005-08-22 10:14:39','2006-02-15 22:13:13'), +(3386,126,1,9,'4.99','2005-05-25 00:00:40','2006-02-15 22:13:13'), +(3387,126,1,752,'4.99','2005-05-29 10:14:15','2006-02-15 22:13:13'), +(3388,126,2,1054,'4.99','2005-05-31 07:33:25','2006-02-15 22:13:13'), +(3389,126,1,3450,'2.99','2005-06-21 21:01:57','2006-02-15 22:13:13'), +(3390,126,2,3502,'5.99','2005-07-06 00:15:06','2006-02-15 22:13:13'), +(3391,126,1,3725,'4.99','2005-07-06 11:15:04','2006-02-15 22:13:13'), +(3392,126,1,3804,'7.99','2005-07-06 15:08:08','2006-02-15 22:13:13'), +(3393,126,1,4691,'0.99','2005-07-08 11:04:53','2006-02-15 22:13:13'), +(3394,126,2,4730,'2.99','2005-07-08 12:59:49','2006-02-15 22:13:13'), +(3395,126,2,5137,'0.99','2005-07-09 08:00:34','2006-02-15 22:13:13'), +(3396,126,1,5865,'0.99','2005-07-10 18:31:05','2006-02-15 22:13:13'), +(3397,126,1,6747,'0.99','2005-07-12 14:33:21','2006-02-15 22:13:14'), +(3398,126,2,6755,'6.99','2005-07-12 15:07:49','2006-02-15 22:13:14'), +(3399,126,1,7962,'0.99','2005-07-28 13:48:09','2006-02-15 22:13:14'), +(3400,126,1,8091,'2.99','2005-07-28 18:27:29','2006-02-15 22:13:14'), +(3401,126,1,9492,'6.99','2005-07-30 23:52:21','2006-02-15 22:13:14'), +(3402,126,2,10032,'4.99','2005-07-31 18:41:55','2006-02-15 22:13:14'), +(3403,126,1,11196,'9.99','2005-08-02 11:42:40','2006-02-15 22:13:14'), +(3404,126,2,11613,'4.99','2005-08-17 03:50:33','2006-02-15 22:13:14'), +(3405,126,1,11779,'3.99','2005-08-17 10:31:58','2006-02-15 22:13:14'), +(3406,126,1,11801,'0.99','2005-08-17 11:30:11','2006-02-15 22:13:14'), +(3407,126,2,12991,'2.99','2005-08-19 07:21:24','2006-02-15 22:13:14'), +(3408,126,2,13015,'7.99','2005-08-19 07:56:51','2006-02-15 22:13:14'), +(3409,126,2,13177,'0.99','2005-08-19 13:56:58','2006-02-15 22:13:14'), +(3410,126,2,14477,'2.99','2005-08-21 13:32:38','2006-02-15 22:13:14'), +(3411,126,2,14577,'2.99','2005-08-21 16:52:29','2006-02-15 22:13:14'), +(3412,126,2,15741,'4.99','2005-08-23 12:10:54','2006-02-15 22:13:14'), +(3413,126,1,16007,'7.99','2005-08-23 21:02:43','2006-02-15 22:13:14'), +(3414,127,1,452,'0.99','2005-05-27 19:30:33','2006-02-15 22:13:14'), +(3415,127,1,708,'0.99','2005-05-29 03:23:47','2006-02-15 22:13:14'), +(3416,127,1,1293,'4.99','2005-06-15 09:06:24','2006-02-15 22:13:14'), +(3417,127,2,1803,'2.99','2005-06-16 20:32:47','2006-02-15 22:13:14'), +(3418,127,2,2412,'3.99','2005-06-18 16:58:58','2006-02-15 22:13:14'), +(3419,127,1,4652,'5.99','2005-07-08 09:47:51','2006-02-15 22:13:14'), +(3420,127,2,4811,'5.99','2005-07-08 17:04:24','2006-02-15 22:13:14'), +(3421,127,2,5499,'2.99','2005-07-10 00:27:45','2006-02-15 22:13:14'), +(3422,127,2,5983,'2.99','2005-07-11 00:34:11','2006-02-15 22:13:14'), +(3423,127,1,7912,'4.99','2005-07-28 11:46:58','2006-02-15 22:13:14'), +(3424,127,2,8209,'6.99','2005-07-28 23:29:28','2006-02-15 22:13:14'), +(3425,127,1,9859,'6.99','2005-07-31 13:02:55','2006-02-15 22:13:14'), +(3426,127,1,10197,'2.99','2005-08-01 00:35:25','2006-02-15 22:13:14'), +(3427,127,1,10787,'10.99','2005-08-01 21:35:01','2006-02-15 22:13:14'), +(3428,127,1,10973,'7.99','2005-08-02 04:09:42','2006-02-15 22:13:14'), +(3429,127,1,11235,'0.99','2005-08-02 13:13:21','2006-02-15 22:13:14'), +(3430,127,2,12060,'4.99','2005-08-17 21:11:57','2006-02-15 22:13:14'), +(3431,127,2,12820,'2.99','2005-08-19 01:05:08','2006-02-15 22:13:14'), +(3432,127,2,13043,'4.99','2005-08-19 09:07:13','2006-02-15 22:13:14'), +(3433,127,1,13091,'2.99','2005-08-19 10:40:10','2006-02-15 22:13:14'), +(3434,127,2,14030,'2.99','2005-08-20 21:23:54','2006-02-15 22:13:14'), +(3435,127,1,14189,'2.99','2005-08-21 03:32:17','2006-02-15 22:13:14'), +(3436,127,1,15463,'5.99','2005-08-23 01:15:07','2006-02-15 22:13:14'), +(3437,127,2,15736,'5.99','2005-08-23 11:40:30','2006-02-15 22:13:14'), +(3438,128,2,888,'5.99','2005-05-30 07:13:14','2006-02-15 22:13:14'), +(3439,128,2,1131,'2.99','2005-05-31 18:44:19','2006-02-15 22:13:14'), +(3440,128,2,2519,'7.99','2005-06-19 00:19:21','2006-02-15 22:13:14'), +(3441,128,1,2565,'0.99','2005-06-19 03:44:03','2006-02-15 22:13:14'), +(3442,128,1,3751,'0.99','2005-07-06 12:23:41','2006-02-15 22:13:14'), +(3443,128,2,3995,'5.99','2005-07-06 23:43:03','2006-02-15 22:13:14'), +(3444,128,1,5270,'2.99','2005-07-09 14:23:46','2006-02-15 22:13:14'), +(3445,128,1,5647,'4.99','2005-07-10 07:08:40','2006-02-15 22:13:15'), +(3446,128,2,5997,'4.99','2005-07-11 01:19:50','2006-02-15 22:13:15'), +(3447,128,2,6186,'2.99','2005-07-11 11:26:41','2006-02-15 22:13:15'), +(3448,128,2,6481,'6.99','2005-07-12 01:50:15','2006-02-15 22:13:15'), +(3449,128,2,6687,'2.99','2005-07-12 12:19:23','2006-02-15 22:13:15'), +(3450,128,2,7582,'4.99','2005-07-27 23:15:14','2006-02-15 22:13:15'), +(3451,128,2,8415,'2.99','2005-07-29 06:52:27','2006-02-15 22:13:15'), +(3452,128,2,9215,'5.99','2005-07-30 13:11:11','2006-02-15 22:13:15'), +(3453,128,2,9234,'2.99','2005-07-30 13:45:54','2006-02-15 22:13:15'), +(3454,128,1,9433,'5.99','2005-07-30 21:28:17','2006-02-15 22:13:15'), +(3455,128,2,9858,'2.99','2005-07-31 13:02:07','2006-02-15 22:13:15'), +(3456,128,1,9952,'3.99','2005-07-31 15:52:37','2006-02-15 22:13:15'), +(3457,128,1,10011,'2.99','2005-07-31 18:02:41','2006-02-15 22:13:15'), +(3458,128,1,10394,'2.99','2005-08-01 06:58:17','2006-02-15 22:13:15'), +(3459,128,2,12731,'2.99','2005-08-18 21:55:38','2006-02-15 22:13:15'), +(3460,128,2,12843,'2.99','2005-08-19 01:58:54','2006-02-15 22:13:15'), +(3461,128,2,12910,'0.99','2005-08-19 04:23:13','2006-02-15 22:13:15'), +(3462,128,2,13027,'0.99','2005-08-19 08:25:16','2006-02-15 22:13:15'), +(3463,128,2,13181,'5.99','2005-08-19 14:00:56','2006-02-15 22:13:15'), +(3464,128,1,13509,'0.99','2005-08-20 02:14:16','2006-02-15 22:13:15'), +(3465,128,2,13964,'2.99','2005-08-20 18:24:26','2006-02-15 22:13:15'), +(3466,128,2,14157,'0.99','2005-08-21 02:43:15','2006-02-15 22:13:15'), +(3467,128,1,14925,'8.99','2005-08-22 05:16:16','2006-02-15 22:13:15'), +(3468,128,1,15220,'3.99','2005-08-22 17:02:23','2006-02-15 22:13:15'), +(3469,128,1,15835,'8.99','2005-08-23 15:25:27','2006-02-15 22:13:15'), +(3470,129,2,1732,'0.99','2005-06-16 15:34:41','2006-02-15 22:13:15'), +(3471,129,1,2727,'3.99','2005-06-19 15:02:39','2006-02-15 22:13:15'), +(3472,129,2,2768,'0.99','2005-06-19 17:46:52','2006-02-15 22:13:15'), +(3473,129,2,2795,'4.99','2005-06-19 18:58:53','2006-02-15 22:13:15'), +(3474,129,1,3183,'4.99','2005-06-20 22:55:55','2006-02-15 22:13:15'), +(3475,129,1,3219,'3.99','2005-06-21 01:43:26','2006-02-15 22:13:15'), +(3476,129,1,3689,'0.99','2005-07-06 09:43:01','2006-02-15 22:13:15'), +(3477,129,2,3900,'4.99','2005-07-06 19:21:28','2006-02-15 22:13:15'), +(3478,129,2,3936,'0.99','2005-07-06 21:15:03','2006-02-15 22:13:15'), +(3479,129,2,4256,'2.99','2005-07-07 14:14:36','2006-02-15 22:13:15'), +(3480,129,1,4602,'0.99','2005-07-08 06:52:40','2006-02-15 22:13:15'), +(3481,129,1,4896,'2.99','2005-07-08 20:23:15','2006-02-15 22:13:15'), +(3482,129,1,4996,'0.99','2005-07-09 00:59:46','2006-02-15 22:13:15'), +(3483,129,1,5127,'0.99','2005-07-09 07:25:47','2006-02-15 22:13:15'), +(3484,129,2,5350,'4.99','2005-07-09 17:39:30','2006-02-15 22:13:15'), +(3485,129,1,8339,'4.99','2005-07-29 04:41:13','2006-02-15 22:13:15'), +(3486,129,1,8345,'2.99','2005-07-29 04:47:37','2006-02-15 22:13:15'), +(3487,129,2,9823,'4.99','2005-07-31 11:49:00','2006-02-15 22:13:15'), +(3488,129,1,9983,'7.99','2005-07-31 17:09:36','2006-02-15 22:13:15'), +(3489,129,1,10024,'7.99','2005-07-31 18:26:36','2006-02-15 22:13:15'), +(3490,129,2,10167,'5.99','2005-07-31 23:24:31','2006-02-15 22:13:15'), +(3491,129,2,10395,'2.99','2005-08-01 07:08:22','2006-02-15 22:13:15'), +(3492,129,1,10468,'0.99','2005-08-01 09:48:29','2006-02-15 22:13:15'), +(3493,129,1,10483,'2.99','2005-08-01 10:19:45','2006-02-15 22:13:16'), +(3494,129,2,10550,'2.99','2005-08-01 12:46:52','2006-02-15 22:13:16'), +(3495,129,2,10816,'4.99','2005-08-01 22:48:57','2006-02-15 22:13:16'), +(3496,129,2,12612,'3.99','2005-08-18 17:10:05','2006-02-15 22:13:16'), +(3497,129,2,12728,'4.99','2005-08-18 21:47:48','2006-02-15 22:13:16'), +(3498,129,2,13653,'10.99','2005-08-20 07:54:54','2006-02-15 22:13:16'), +(3499,129,1,13915,'4.99','2005-08-20 16:42:53','2006-02-15 22:13:16'), +(3500,129,1,13919,'4.99','2005-08-20 16:47:34','2006-02-15 22:13:16'), +(3501,129,1,13961,'0.99','2005-08-20 18:16:34','2006-02-15 22:13:16'), +(3502,129,1,14353,'0.99','2005-08-21 09:07:50','2006-02-15 22:13:16'), +(3503,129,2,14968,'1.99','2005-08-22 06:46:59','2006-02-15 22:13:16'), +(3504,130,1,1,'2.99','2005-05-24 22:53:30','2006-02-15 22:13:16'), +(3505,130,1,746,'2.99','2005-05-29 09:25:10','2006-02-15 22:13:16'), +(3506,130,1,1630,'2.99','2005-06-16 07:55:01','2006-02-15 22:13:16'), +(3507,130,2,1864,'2.99','2005-06-17 01:39:47','2006-02-15 22:13:16'), +(3508,130,2,2163,'2.99','2005-06-17 23:46:16','2006-02-15 22:13:16'), +(3509,130,2,2292,'2.99','2005-06-18 07:37:48','2006-02-15 22:13:16'), +(3510,130,1,2535,'2.99','2005-06-19 01:39:04','2006-02-15 22:13:16'), +(3511,130,1,2982,'6.99','2005-06-20 08:38:29','2006-02-15 22:13:16'), +(3512,130,2,4339,'4.99','2005-07-07 18:41:42','2006-02-15 22:13:16'), +(3513,130,2,4485,'4.99','2005-07-08 01:07:54','2006-02-15 22:13:16'), +(3514,130,1,6353,'3.99','2005-07-11 20:48:56','2006-02-15 22:13:16'), +(3515,130,1,7181,'4.99','2005-07-27 08:14:34','2006-02-15 22:13:16'), +(3516,130,1,7728,'0.99','2005-07-28 04:56:33','2006-02-15 22:13:16'), +(3517,130,1,9452,'0.99','2005-07-30 22:19:16','2006-02-15 22:13:16'), +(3518,130,2,9637,'4.99','2005-07-31 05:18:54','2006-02-15 22:13:16'), +(3519,130,2,9724,'5.99','2005-07-31 08:33:08','2006-02-15 22:13:16'), +(3520,130,2,10568,'2.99','2005-08-01 13:17:28','2006-02-15 22:13:16'), +(3521,130,2,10645,'5.99','2005-08-01 15:52:01','2006-02-15 22:13:16'), +(3522,130,1,11811,'2.99','2005-08-17 11:59:18','2006-02-15 22:13:16'), +(3523,130,1,12094,'2.99','2005-08-17 22:31:04','2006-02-15 22:13:16'), +(3524,130,1,12777,'6.99','2005-08-18 23:39:22','2006-02-15 22:13:16'), +(3525,130,2,14111,'0.99','2005-08-21 00:59:01','2006-02-15 22:13:16'), +(3526,130,2,15574,'5.99','2005-08-23 05:29:32','2006-02-15 22:13:16'), +(3527,130,1,15777,'4.99','2005-08-23 13:29:08','2006-02-15 22:13:16'), +(3528,131,2,55,'2.99','2005-05-25 08:26:13','2006-02-15 22:13:16'), +(3529,131,1,83,'4.99','2005-05-25 12:30:15','2006-02-15 22:13:16'), +(3530,131,2,944,'7.99','2005-05-30 15:26:24','2006-02-15 22:13:16'), +(3531,131,1,1646,'9.99','2005-06-16 09:12:53','2006-02-15 22:13:16'), +(3532,131,2,1768,'4.99','2005-06-16 18:02:06','2006-02-15 22:13:16'), +(3533,131,1,3515,'2.99','2005-07-06 00:48:55','2006-02-15 22:13:16'), +(3534,131,1,5233,'4.99','2005-07-09 12:44:26','2006-02-15 22:13:16'), +(3535,131,1,5395,'4.99','2005-07-09 19:42:37','2006-02-15 22:13:16'), +(3536,131,1,5610,'2.99','2005-07-10 05:09:52','2006-02-15 22:13:16'), +(3537,131,2,5726,'2.99','2005-07-10 11:22:08','2006-02-15 22:13:16'), +(3538,131,1,5874,'3.99','2005-07-10 19:02:51','2006-02-15 22:13:16'), +(3539,131,1,7557,'2.99','2005-07-27 22:18:19','2006-02-15 22:13:16'), +(3540,131,2,8071,'0.99','2005-07-28 17:27:48','2006-02-15 22:13:16'), +(3541,131,1,8267,'6.99','2005-07-29 01:21:02','2006-02-15 22:13:17'), +(3542,131,1,8570,'8.99','2005-07-29 11:40:08','2006-02-15 22:13:17'), +(3543,131,1,9323,'3.99','2005-07-30 17:21:44','2006-02-15 22:13:17'), +(3544,131,1,10179,'2.99','2005-07-31 23:49:54','2006-02-15 22:13:17'), +(3545,131,1,10459,'4.99','2005-08-01 09:20:09','2006-02-15 22:13:17'), +(3546,131,1,10861,'1.99','2005-08-02 00:12:46','2006-02-15 22:13:17'), +(3547,131,2,11971,'0.99','2005-08-17 17:53:42','2006-02-15 22:13:17'), +(3548,131,1,11973,'2.99','2005-08-17 17:55:58','2006-02-15 22:13:17'), +(3549,131,1,12216,'0.99','2005-08-18 02:37:07','2006-02-15 22:13:17'), +(3550,131,2,12263,'0.99','2005-08-18 04:16:18','2006-02-15 22:13:17'), +(3551,131,1,12372,'9.99','2005-08-18 08:04:35','2006-02-15 22:13:17'), +(3552,131,2,13050,'6.99','2005-08-19 09:31:23','2006-02-15 22:13:17'), +(3553,131,2,13346,'7.99','2005-08-19 20:28:21','2006-02-15 22:13:17'), +(3554,131,2,13353,'2.99','2005-08-19 20:53:43','2006-02-15 22:13:17'), +(3555,131,1,13407,'0.99','2005-08-19 22:26:26','2006-02-15 22:13:17'), +(3556,131,2,15659,'2.99','2005-08-23 08:48:43','2006-02-15 22:13:17'), +(3557,131,1,16042,'2.99','2005-08-23 22:20:40','2006-02-15 22:13:17'), +(3558,132,1,1843,'0.99','2005-06-16 23:53:42','2006-02-15 22:13:17'), +(3559,132,1,2208,'4.99','2005-06-18 02:22:07','2006-02-15 22:13:17'), +(3560,132,1,2384,'0.99','2005-06-18 15:18:49','2006-02-15 22:13:17'), +(3561,132,2,2608,'2.99','2005-06-19 07:10:36','2006-02-15 22:13:17'), +(3562,132,2,2924,'4.99','2005-06-20 04:20:14','2006-02-15 22:13:17'), +(3563,132,1,3121,'4.99','2005-06-20 18:23:30','2006-02-15 22:13:17'), +(3564,132,1,3706,'0.99','2005-07-06 10:18:01','2006-02-15 22:13:17'), +(3565,132,2,3825,'2.99','2005-07-06 15:50:03','2006-02-15 22:13:17'), +(3566,132,1,4168,'4.99','2005-07-07 09:37:24','2006-02-15 22:13:17'), +(3567,132,1,4534,'4.99','2005-07-08 03:36:55','2006-02-15 22:13:17'), +(3568,132,1,4557,'5.99','2005-07-08 04:49:15','2006-02-15 22:13:17'), +(3569,132,2,4903,'0.99','2005-07-08 20:50:05','2006-02-15 22:13:17'), +(3570,132,1,5391,'2.99','2005-07-09 19:28:34','2006-02-15 22:13:17'), +(3571,132,2,5684,'5.99','2005-07-10 08:59:03','2006-02-15 22:13:17'), +(3572,132,1,5703,'0.99','2005-07-10 10:04:15','2006-02-15 22:13:17'), +(3573,132,2,5715,'1.99','2005-07-10 10:48:03','2006-02-15 22:13:17'), +(3574,132,1,6239,'6.99','2005-07-11 14:20:48','2006-02-15 22:13:17'), +(3575,132,1,6978,'1.99','2005-07-27 00:47:40','2006-02-15 22:13:17'), +(3576,132,2,7432,'0.99','2005-07-27 17:31:40','2006-02-15 22:13:17'), +(3577,132,1,7631,'1.99','2005-07-28 01:01:15','2006-02-15 22:13:17'), +(3578,132,2,10243,'4.99','2005-08-01 02:18:46','2006-02-15 22:13:17'), +(3579,132,1,10400,'6.99','2005-08-01 07:18:24','2006-02-15 22:13:17'), +(3580,132,2,10619,'3.99','2005-08-01 15:07:04','2006-02-15 22:13:17'), +(3581,132,1,10638,'6.99','2005-08-01 15:44:20','2006-02-15 22:13:17'), +(3582,132,2,11140,'0.99','2005-08-02 09:27:45','2006-02-15 22:13:17'), +(3583,132,2,11812,'0.99','2005-08-17 12:00:54','2006-02-15 22:13:17'), +(3584,132,2,12133,'0.99','2005-08-17 23:47:16','2006-02-15 22:13:17'), +(3585,132,1,15874,'4.99','2005-08-23 16:30:55','2006-02-15 22:13:17'), +(3586,133,1,275,'6.99','2005-05-26 17:09:53','2006-02-15 22:13:17'), +(3587,133,2,447,'2.99','2005-05-27 18:57:02','2006-02-15 22:13:17'), +(3588,133,2,1522,'3.99','2005-06-16 00:17:39','2006-02-15 22:13:17'), +(3589,133,2,2665,'7.99','2005-06-19 11:12:35','2006-02-15 22:13:18'), +(3590,133,1,3006,'0.99','2005-06-20 10:10:29','2006-02-15 22:13:18'), +(3591,133,2,3365,'0.99','2005-06-21 12:55:48','2006-02-15 22:13:18'), +(3592,133,2,4506,'6.99','2005-07-08 02:22:18','2006-02-15 22:13:18'), +(3593,133,2,4566,'2.99','2005-07-08 05:18:50','2006-02-15 22:13:18'), +(3594,133,1,4681,'6.99','2005-07-08 10:36:03','2006-02-15 22:13:18'), +(3595,133,2,4829,'2.99','2005-07-08 17:54:18','2006-02-15 22:13:18'), +(3596,133,2,5063,'2.99','2005-07-09 04:37:31','2006-02-15 22:13:18'), +(3597,133,1,6157,'4.99','2005-07-11 09:48:16','2006-02-15 22:13:18'), +(3598,133,1,6609,'3.99','2005-07-12 08:19:41','2006-02-15 22:13:18'), +(3599,133,1,7177,'2.99','2005-07-27 08:07:39','2006-02-15 22:13:18'), +(3600,133,1,7400,'0.99','2005-07-27 16:16:37','2006-02-15 22:13:18'), +(3601,133,2,8389,'6.99','2005-07-29 05:50:09','2006-02-15 22:13:18'), +(3602,133,2,9139,'2.99','2005-07-30 10:11:52','2006-02-15 22:13:18'), +(3603,133,1,9175,'0.99','2005-07-30 11:47:48','2006-02-15 22:13:18'), +(3604,133,2,9671,'0.99','2005-07-31 06:33:41','2006-02-15 22:13:18'), +(3605,133,1,10665,'0.99','2005-08-01 16:56:17','2006-02-15 22:13:18'), +(3606,133,1,12419,'4.99','2005-08-18 10:01:48','2006-02-15 22:13:18'), +(3607,133,1,12834,'4.99','2005-08-19 01:47:30','2006-02-15 22:13:18'), +(3608,133,2,13323,'2.99','2005-08-19 19:48:07','2006-02-15 22:13:18'), +(3609,133,1,13455,'1.99','2005-08-20 00:32:17','2006-02-15 22:13:18'), +(3610,133,2,13910,'2.99','2005-08-20 16:30:49','2006-02-15 22:13:18'), +(3611,133,2,15080,'0.99','2005-08-22 11:11:51','2006-02-15 22:13:18'), +(3612,133,1,16009,'6.99','2005-08-23 21:07:59','2006-02-15 22:13:18'), +(3613,134,1,366,'3.99','2005-05-27 07:33:54','2006-02-15 22:13:18'), +(3614,134,2,798,'0.99','2005-05-29 17:23:43','2006-02-15 22:13:18'), +(3615,134,1,814,'6.99','2005-05-29 20:16:12','2006-02-15 22:13:18'), +(3616,134,2,1124,'4.99','2005-05-31 16:49:34','2006-02-15 22:13:18'), +(3617,134,1,1618,'9.99','2005-06-16 07:08:38','2006-02-15 22:13:18'), +(3618,134,2,1784,'0.99','2005-06-16 19:25:32','2006-02-15 22:13:18'), +(3619,134,2,1881,'0.99','2005-06-17 03:09:56','2006-02-15 22:13:18'), +(3620,134,1,3267,'5.99','2005-06-21 04:55:21','2006-02-15 22:13:18'), +(3621,134,1,5315,'4.99','2005-07-09 16:09:19','2006-02-15 22:13:18'), +(3622,134,2,6226,'2.99','2005-07-11 13:48:11','2006-02-15 22:13:18'), +(3623,134,1,6659,'0.99','2005-07-12 11:18:05','2006-02-15 22:13:18'), +(3624,134,2,7516,'2.99','2005-07-27 20:55:28','2006-02-15 22:13:18'), +(3625,134,2,7965,'4.99','2005-07-28 13:52:57','2006-02-15 22:13:18'), +(3626,134,2,8650,'1.99','2005-07-29 14:59:04','2006-02-15 22:13:18'), +(3627,134,1,10864,'6.99','2005-08-02 00:18:59','2006-02-15 22:13:18'), +(3628,134,1,11280,'3.99','2005-08-02 14:34:33','2006-02-15 22:13:18'), +(3629,134,1,11283,'4.99','2005-08-02 14:39:46','2006-02-15 22:13:18'), +(3630,134,2,11482,'4.99','2005-08-02 22:24:31','2006-02-15 22:13:18'), +(3631,134,1,12754,'7.99','2005-08-18 22:37:41','2006-02-15 22:13:18'), +(3632,134,2,12987,'2.99','2005-08-19 07:11:44','2006-02-15 22:13:19'), +(3633,134,2,13006,'2.99','2005-08-19 07:47:16','2006-02-15 22:13:19'), +(3634,134,2,14265,'2.99','2005-08-21 06:20:14','2006-02-15 22:13:19'), +(3635,134,2,15963,'2.99','2005-08-23 19:42:46','2006-02-15 22:13:19'), +(3636,135,1,78,'5.99','2005-05-25 11:35:18','2006-02-15 22:13:19'), +(3637,135,2,753,'3.99','2005-05-29 10:16:42','2006-02-15 22:13:19'), +(3638,135,2,1272,'0.99','2005-06-15 07:42:58','2006-02-15 22:13:19'), +(3639,135,2,1671,'1.99','2005-06-16 10:30:22','2006-02-15 22:13:19'), +(3640,135,2,2941,'2.99','2005-06-20 05:22:18','2006-02-15 22:13:19'), +(3641,135,1,4102,'0.99','2005-07-07 06:25:19','2006-02-15 22:13:19'), +(3642,135,2,5054,'7.99','2005-07-09 04:01:02','2006-02-15 22:13:19'), +(3643,135,1,5541,'0.99','2005-07-10 02:44:27','2006-02-15 22:13:19'), +(3644,135,1,6117,'3.99','2005-07-11 07:39:38','2006-02-15 22:13:19'), +(3645,135,1,6461,'3.99','2005-07-12 01:14:03','2006-02-15 22:13:19'), +(3646,135,1,6817,'3.99','2005-07-12 18:19:57','2006-02-15 22:13:19'), +(3647,135,2,7297,'4.99','2005-07-27 12:39:48','2006-02-15 22:13:19'), +(3648,135,1,7437,'0.99','2005-07-27 17:39:18','2006-02-15 22:13:19'), +(3649,135,1,7554,'7.99','2005-07-27 22:12:41','2006-02-15 22:13:19'), +(3650,135,1,7734,'0.99','2005-07-28 05:08:44','2006-02-15 22:13:19'), +(3651,135,1,8315,'0.99','2005-07-29 03:37:07','2006-02-15 22:13:19'), +(3652,135,2,8885,'7.99','2005-07-30 00:36:26','2006-02-15 22:13:19'), +(3653,135,1,8987,'6.99','2005-07-30 04:37:36','2006-02-15 22:13:19'), +(3654,135,2,10091,'4.99','2005-07-31 20:23:13','2006-02-15 22:13:19'), +(3655,135,2,10471,'0.99','2005-08-01 09:52:37','2006-02-15 22:13:19'), +(3656,135,1,10611,'2.99','2005-08-01 14:53:52','2006-02-15 22:13:19'), +(3657,135,1,10698,'3.99','2005-08-01 18:24:41','2006-02-15 22:13:19'), +(3658,135,2,11194,'5.99','2005-08-02 11:35:53','2006-02-15 22:13:19'), +(3659,135,1,11704,'7.99','2005-08-17 07:21:22','2006-02-15 22:13:19'), +(3660,135,1,12249,'2.99','2005-08-18 03:53:34','2006-02-15 22:13:19'), +(3661,135,1,13035,'0.99','2005-08-19 08:46:45','2006-02-15 22:13:19'), +(3662,135,1,14005,'0.99','2005-08-20 20:19:05','2006-02-15 22:13:19'), +(3663,135,2,14136,'5.99','2005-08-21 01:57:26','2006-02-15 22:13:19'), +(3664,135,2,15908,'2.99','2005-08-23 17:42:00','2006-02-15 22:13:19'), +(3665,135,1,13390,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:19'), +(3666,136,2,1150,'2.99','2005-05-31 21:20:09','2006-02-15 22:13:19'), +(3667,136,2,2104,'2.99','2005-06-17 19:14:30','2006-02-15 22:13:19'), +(3668,136,1,4927,'0.99','2005-07-08 22:05:35','2006-02-15 22:13:19'), +(3669,136,1,5627,'3.99','2005-07-10 05:51:12','2006-02-15 22:13:19'), +(3670,136,2,6142,'3.99','2005-07-11 08:54:09','2006-02-15 22:13:19'), +(3671,136,1,6585,'8.99','2005-07-12 06:50:52','2006-02-15 22:13:19'), +(3672,136,2,9319,'0.99','2005-07-30 17:15:27','2006-02-15 22:13:19'), +(3673,136,2,9764,'5.99','2005-07-31 09:42:58','2006-02-15 22:13:19'), +(3674,136,2,11992,'10.99','2005-08-17 18:27:22','2006-02-15 22:13:19'), +(3675,136,1,12287,'5.99','2005-08-18 04:58:06','2006-02-15 22:13:19'), +(3676,136,2,12539,'0.99','2005-08-18 14:10:09','2006-02-15 22:13:19'), +(3677,136,2,13992,'4.99','2005-08-20 19:30:35','2006-02-15 22:13:19'), +(3678,136,2,14379,'0.99','2005-08-21 09:53:03','2006-02-15 22:13:19'), +(3679,136,1,14437,'2.99','2005-08-21 11:48:32','2006-02-15 22:13:19'), +(3680,136,1,15439,'4.99','2005-08-23 00:34:28','2006-02-15 22:13:20'), +(3681,137,1,925,'2.99','2005-05-30 12:13:52','2006-02-15 22:13:20'), +(3682,137,1,2469,'6.99','2005-06-18 20:24:23','2006-02-15 22:13:20'), +(3683,137,1,2785,'2.99','2005-06-19 18:43:57','2006-02-15 22:13:20'), +(3684,137,2,3058,'3.99','2005-06-20 13:28:35','2006-02-15 22:13:20'), +(3685,137,1,3436,'5.99','2005-06-21 19:16:09','2006-02-15 22:13:20'), +(3686,137,2,3589,'4.99','2005-07-06 04:30:18','2006-02-15 22:13:20'), +(3687,137,2,3676,'5.99','2005-07-06 09:10:37','2006-02-15 22:13:20'), +(3688,137,2,3874,'6.99','2005-07-06 18:06:12','2006-02-15 22:13:20'), +(3689,137,1,4332,'6.99','2005-07-07 18:25:26','2006-02-15 22:13:20'), +(3690,137,2,4474,'3.99','2005-07-08 00:26:56','2006-02-15 22:13:20'), +(3691,137,1,5106,'2.99','2005-07-09 06:40:24','2006-02-15 22:13:20'), +(3692,137,1,5443,'3.99','2005-07-09 21:56:09','2006-02-15 22:13:20'), +(3693,137,1,5804,'2.99','2005-07-10 15:06:31','2006-02-15 22:13:20'), +(3694,137,1,6039,'6.99','2005-07-11 03:12:19','2006-02-15 22:13:20'), +(3695,137,2,6200,'0.99','2005-07-11 12:16:42','2006-02-15 22:13:20'), +(3696,137,1,8028,'8.99','2005-07-28 16:11:15','2006-02-15 22:13:20'), +(3697,137,1,8106,'4.99','2005-07-28 19:02:46','2006-02-15 22:13:20'), +(3698,137,2,8954,'2.99','2005-07-30 03:25:51','2006-02-15 22:13:20'), +(3699,137,1,9002,'4.99','2005-07-30 05:02:21','2006-02-15 22:13:20'), +(3700,137,2,9200,'4.99','2005-07-30 12:39:52','2006-02-15 22:13:20'), +(3701,137,2,9466,'7.99','2005-07-30 22:44:36','2006-02-15 22:13:20'), +(3702,137,1,9709,'4.99','2005-07-31 08:04:55','2006-02-15 22:13:20'), +(3703,137,1,9789,'2.99','2005-07-31 10:30:25','2006-02-15 22:13:20'), +(3704,137,1,10175,'6.99','2005-07-31 23:40:11','2006-02-15 22:13:20'), +(3705,137,2,10595,'4.99','2005-08-01 14:16:28','2006-02-15 22:13:20'), +(3706,137,2,10842,'5.99','2005-08-01 23:41:24','2006-02-15 22:13:20'), +(3707,137,2,11057,'4.99','2005-08-02 06:38:19','2006-02-15 22:13:20'), +(3708,137,1,11281,'3.99','2005-08-02 14:35:01','2006-02-15 22:13:20'), +(3709,137,2,11732,'3.99','2005-08-17 08:29:46','2006-02-15 22:13:20'), +(3710,137,1,12078,'2.99','2005-08-17 22:00:22','2006-02-15 22:13:20'), +(3711,137,1,13148,'0.99','2005-08-19 12:55:30','2006-02-15 22:13:20'), +(3712,137,1,13472,'5.99','2005-08-20 01:03:31','2006-02-15 22:13:20'), +(3713,137,1,13776,'5.99','2005-08-20 11:57:06','2006-02-15 22:13:20'), +(3714,137,1,14754,'7.99','2005-08-21 23:17:26','2006-02-15 22:13:20'), +(3715,137,2,15082,'7.99','2005-08-22 11:17:06','2006-02-15 22:13:20'), +(3716,137,1,15133,'0.99','2005-08-22 13:17:43','2006-02-15 22:13:20'), +(3717,137,2,15537,'2.99','2005-08-23 04:00:30','2006-02-15 22:13:20'), +(3718,137,2,15889,'4.99','2005-08-23 16:57:43','2006-02-15 22:13:20'), +(3719,137,1,16030,'9.99','2005-08-23 21:56:04','2006-02-15 22:13:20'), +(3720,138,1,523,'2.99','2005-05-28 03:53:26','2006-02-15 22:13:20'), +(3721,138,1,1020,'0.99','2005-05-31 03:06:08','2006-02-15 22:13:20'), +(3722,138,2,1316,'0.99','2005-06-15 10:26:23','2006-02-15 22:13:20'), +(3723,138,2,2038,'0.99','2005-06-17 14:00:51','2006-02-15 22:13:20'), +(3724,138,1,2731,'7.99','2005-06-19 15:14:55','2006-02-15 22:13:20'), +(3725,138,2,3481,'2.99','2005-07-05 23:13:07','2006-02-15 22:13:20'), +(3726,138,1,5378,'0.99','2005-07-09 19:05:56','2006-02-15 22:13:20'), +(3727,138,1,5600,'1.99','2005-07-10 04:55:45','2006-02-15 22:13:20'), +(3728,138,1,5679,'4.99','2005-07-10 08:44:02','2006-02-15 22:13:21'), +(3729,138,1,6458,'2.99','2005-07-12 01:08:52','2006-02-15 22:13:21'), +(3730,138,1,6892,'0.99','2005-07-12 21:10:04','2006-02-15 22:13:21'), +(3731,138,1,7208,'2.99','2005-07-27 09:16:28','2006-02-15 22:13:21'), +(3732,138,1,7754,'2.99','2005-07-28 06:10:55','2006-02-15 22:13:21'), +(3733,138,2,8123,'4.99','2005-07-28 19:28:23','2006-02-15 22:13:21'), +(3734,138,2,8160,'3.99','2005-07-28 21:10:30','2006-02-15 22:13:21'), +(3735,138,1,8424,'3.99','2005-07-29 07:06:03','2006-02-15 22:13:21'), +(3736,138,2,9259,'1.99','2005-07-30 14:37:44','2006-02-15 22:13:21'), +(3737,138,1,9619,'0.99','2005-07-31 04:17:02','2006-02-15 22:13:21'), +(3738,138,1,9947,'9.99','2005-07-31 15:49:40','2006-02-15 22:13:21'), +(3739,138,1,10110,'0.99','2005-07-31 21:06:12','2006-02-15 22:13:21'), +(3740,138,2,10190,'4.99','2005-08-01 00:27:53','2006-02-15 22:13:21'), +(3741,138,1,10268,'3.99','2005-08-01 03:08:56','2006-02-15 22:13:21'), +(3742,138,1,10431,'5.99','2005-08-01 08:41:54','2006-02-15 22:13:21'), +(3743,138,1,11015,'4.99','2005-08-02 05:13:00','2006-02-15 22:13:21'), +(3744,138,1,11088,'0.99','2005-08-02 07:48:31','2006-02-15 22:13:21'), +(3745,138,1,11463,'0.99','2005-08-02 21:37:36','2006-02-15 22:13:21'), +(3746,138,2,12550,'2.99','2005-08-18 14:40:38','2006-02-15 22:13:21'), +(3747,138,2,12873,'2.99','2005-08-19 03:05:41','2006-02-15 22:13:21'), +(3748,138,1,14194,'1.99','2005-08-21 03:40:11','2006-02-15 22:13:21'), +(3749,138,2,14432,'4.99','2005-08-21 11:36:15','2006-02-15 22:13:21'), +(3750,138,2,14486,'4.99','2005-08-21 13:52:54','2006-02-15 22:13:21'), +(3751,138,1,14987,'4.99','2005-08-22 07:41:08','2006-02-15 22:13:21'), +(3752,138,1,15424,'2.99','2005-08-23 00:03:01','2006-02-15 22:13:21'), +(3753,138,1,15501,'0.99','2005-08-23 02:39:56','2006-02-15 22:13:21'), +(3754,139,2,1169,'2.99','2005-06-14 23:42:56','2006-02-15 22:13:21'), +(3755,139,1,1736,'2.99','2005-06-16 15:52:32','2006-02-15 22:13:21'), +(3756,139,1,2659,'0.99','2005-06-19 10:47:42','2006-02-15 22:13:21'), +(3757,139,2,2718,'7.99','2005-06-19 14:49:42','2006-02-15 22:13:21'), +(3758,139,2,4660,'0.99','2005-07-08 09:54:47','2006-02-15 22:13:21'), +(3759,139,2,4663,'2.99','2005-07-08 09:59:18','2006-02-15 22:13:21'), +(3760,139,2,5092,'2.99','2005-07-09 05:57:39','2006-02-15 22:13:21'), +(3761,139,2,5265,'7.99','2005-07-09 14:15:01','2006-02-15 22:13:21'), +(3762,139,1,5390,'6.99','2005-07-09 19:26:22','2006-02-15 22:13:21'), +(3763,139,1,5494,'6.99','2005-07-10 00:15:00','2006-02-15 22:13:21'), +(3764,139,1,6496,'6.99','2005-07-12 02:57:39','2006-02-15 22:13:21'), +(3765,139,2,6740,'0.99','2005-07-12 14:22:08','2006-02-15 22:13:21'), +(3766,139,1,7369,'0.99','2005-07-27 15:07:58','2006-02-15 22:13:21'), +(3767,139,2,7767,'5.99','2005-07-28 06:42:02','2006-02-15 22:13:21'), +(3768,139,2,9415,'2.99','2005-07-30 20:48:31','2006-02-15 22:13:21'), +(3769,139,2,9920,'4.99','2005-07-31 14:57:13','2006-02-15 22:13:21'), +(3770,139,1,10900,'2.99','2005-08-02 01:34:26','2006-02-15 22:13:21'), +(3771,139,1,12859,'6.99','2005-08-19 02:23:23','2006-02-15 22:13:21'), +(3772,139,2,13401,'3.99','2005-08-19 22:16:16','2006-02-15 22:13:21'), +(3773,139,2,14736,'5.99','2005-08-21 22:25:53','2006-02-15 22:13:21'), +(3774,139,1,14788,'2.99','2005-08-22 00:27:59','2006-02-15 22:13:21'), +(3775,139,1,15024,'2.99','2005-08-22 08:57:10','2006-02-15 22:13:22'), +(3776,139,2,15029,'2.99','2005-08-22 09:04:53','2006-02-15 22:13:22'), +(3777,139,1,15062,'2.99','2005-08-22 10:34:39','2006-02-15 22:13:22'), +(3778,139,1,15218,'9.99','2005-08-22 16:59:05','2006-02-15 22:13:22'), +(3779,139,1,15471,'3.99','2005-08-23 01:38:48','2006-02-15 22:13:22'), +(3780,139,1,15743,'0.99','2005-08-23 12:12:05','2006-02-15 22:13:22'), +(3781,140,1,1586,'4.99','2005-06-16 04:51:18','2006-02-15 22:13:22'), +(3782,140,1,1687,'2.99','2005-06-16 12:09:20','2006-02-15 22:13:22'), +(3783,140,2,2332,'6.99','2005-06-18 10:53:51','2006-02-15 22:13:22'), +(3784,140,2,3171,'0.99','2005-06-20 22:15:47','2006-02-15 22:13:22'), +(3785,140,1,6286,'4.99','2005-07-11 16:55:35','2006-02-15 22:13:22'), +(3786,140,1,6407,'9.99','2005-07-11 23:02:19','2006-02-15 22:13:22'), +(3787,140,2,6571,'0.99','2005-07-12 05:51:47','2006-02-15 22:13:22'), +(3788,140,1,6918,'2.99','2005-07-12 22:30:29','2006-02-15 22:13:22'), +(3789,140,1,7170,'4.99','2005-07-27 07:58:26','2006-02-15 22:13:22'), +(3790,140,1,9094,'4.99','2005-07-30 08:35:10','2006-02-15 22:13:22'), +(3791,140,1,9404,'0.99','2005-07-30 20:21:35','2006-02-15 22:13:22'), +(3792,140,1,10342,'6.99','2005-08-01 05:11:11','2006-02-15 22:13:22'), +(3793,140,2,11430,'3.99','2005-08-02 20:04:36','2006-02-15 22:13:22'), +(3794,140,1,12086,'4.99','2005-08-17 22:20:01','2006-02-15 22:13:22'), +(3795,140,1,12675,'4.99','2005-08-18 19:34:02','2006-02-15 22:13:22'), +(3796,140,2,13053,'10.99','2005-08-19 09:31:48','2006-02-15 22:13:22'), +(3797,140,1,15261,'2.99','2005-08-22 18:24:34','2006-02-15 22:13:22'), +(3798,140,1,15852,'2.99','2005-08-23 15:47:02','2006-02-15 22:13:22'), +(3799,141,2,930,'2.99','2005-05-30 12:44:57','2006-02-15 22:13:22'), +(3800,141,2,1242,'7.99','2005-06-15 05:05:07','2006-02-15 22:13:22'), +(3801,141,2,2895,'7.99','2005-06-20 02:26:31','2006-02-15 22:13:22'), +(3802,141,1,3434,'4.99','2005-06-21 19:08:28','2006-02-15 22:13:22'), +(3803,141,1,4057,'1.99','2005-07-07 04:00:20','2006-02-15 22:13:22'), +(3804,141,2,4297,'0.99','2005-07-07 16:24:09','2006-02-15 22:13:22'), +(3805,141,1,4656,'5.99','2005-07-08 09:50:10','2006-02-15 22:13:22'), +(3806,141,2,5062,'2.99','2005-07-09 04:36:49','2006-02-15 22:13:22'), +(3807,141,1,5769,'0.99','2005-07-10 13:17:58','2006-02-15 22:13:22'), +(3808,141,2,6979,'4.99','2005-07-27 00:49:53','2006-02-15 22:13:22'), +(3809,141,2,7878,'2.99','2005-07-28 10:27:10','2006-02-15 22:13:22'), +(3810,141,1,8434,'4.99','2005-07-29 07:20:14','2006-02-15 22:13:22'), +(3811,141,2,9073,'7.99','2005-07-30 07:49:56','2006-02-15 22:13:22'), +(3812,141,1,9584,'4.99','2005-07-31 03:05:48','2006-02-15 22:13:22'), +(3813,141,2,9683,'2.99','2005-07-31 06:47:13','2006-02-15 22:13:22'), +(3814,141,1,10287,'3.99','2005-08-01 03:37:01','2006-02-15 22:13:22'), +(3815,141,1,10379,'1.99','2005-08-01 06:34:29','2006-02-15 22:13:22'), +(3816,141,1,10798,'4.99','2005-08-01 22:03:10','2006-02-15 22:13:22'), +(3817,141,1,11411,'2.99','2005-08-02 19:29:47','2006-02-15 22:13:22'), +(3818,141,1,11412,'5.99','2005-08-02 19:32:51','2006-02-15 22:13:22'), +(3819,141,1,12032,'5.99','2005-08-17 20:14:26','2006-02-15 22:13:23'), +(3820,141,1,12093,'2.99','2005-08-17 22:28:40','2006-02-15 22:13:23'), +(3821,141,2,12107,'3.99','2005-08-17 22:56:24','2006-02-15 22:13:23'), +(3822,141,2,12353,'2.99','2005-08-18 07:33:08','2006-02-15 22:13:23'), +(3823,141,1,13000,'0.99','2005-08-19 07:36:42','2006-02-15 22:13:23'), +(3824,141,2,13169,'2.99','2005-08-19 13:43:35','2006-02-15 22:13:23'), +(3825,141,2,13470,'4.99','2005-08-20 01:01:16','2006-02-15 22:13:23'), +(3826,141,2,14059,'7.99','2005-08-20 22:24:44','2006-02-15 22:13:23'), +(3827,141,1,14112,'2.99','2005-08-21 01:00:46','2006-02-15 22:13:23'), +(3828,141,1,15013,'4.99','2005-08-22 08:42:45','2006-02-15 22:13:23'), +(3829,141,1,15309,'0.99','2005-08-22 19:54:52','2006-02-15 22:13:23'), +(3830,141,1,15964,'2.99','2005-08-23 19:45:25','2006-02-15 22:13:23'), +(3831,142,2,11,'8.99','2005-05-25 00:09:02','2006-02-15 22:13:23'), +(3832,142,1,148,'0.99','2005-05-26 00:25:23','2006-02-15 22:13:23'), +(3833,142,1,575,'9.99','2005-05-28 10:56:09','2006-02-15 22:13:23'), +(3834,142,1,1268,'1.99','2005-06-15 07:29:30','2006-02-15 22:13:23'), +(3835,142,1,3214,'2.99','2005-06-21 01:08:26','2006-02-15 22:13:23'), +(3836,142,2,3492,'2.99','2005-07-05 23:44:37','2006-02-15 22:13:23'), +(3837,142,2,4497,'4.99','2005-07-08 01:51:32','2006-02-15 22:13:23'), +(3838,142,1,4531,'4.99','2005-07-08 03:27:59','2006-02-15 22:13:23'), +(3839,142,1,6522,'0.99','2005-07-12 04:11:58','2006-02-15 22:13:23'), +(3840,142,1,7764,'2.99','2005-07-28 06:40:05','2006-02-15 22:13:23'), +(3841,142,2,8513,'2.99','2005-07-29 09:52:59','2006-02-15 22:13:23'), +(3842,142,2,8623,'4.99','2005-07-29 13:55:11','2006-02-15 22:13:23'), +(3843,142,1,9020,'7.99','2005-07-30 05:31:27','2006-02-15 22:13:23'), +(3844,142,1,9131,'2.99','2005-07-30 09:55:57','2006-02-15 22:13:23'), +(3845,142,1,9419,'5.99','2005-07-30 21:04:59','2006-02-15 22:13:23'), +(3846,142,2,10934,'5.99','2005-08-02 02:52:18','2006-02-15 22:13:23'), +(3847,142,2,11244,'5.99','2005-08-02 13:33:24','2006-02-15 22:13:23'), +(3848,142,1,12964,'0.99','2005-08-19 06:29:13','2006-02-15 22:13:23'), +(3849,142,1,13044,'0.99','2005-08-19 09:14:31','2006-02-15 22:13:23'), +(3850,142,2,13745,'0.99','2005-08-20 10:53:49','2006-02-15 22:13:23'), +(3851,142,1,13959,'0.99','2005-08-20 18:16:21','2006-02-15 22:13:23'), +(3852,142,2,14116,'4.99','2005-08-21 01:11:17','2006-02-15 22:13:23'), +(3853,142,2,14813,'0.99','2005-08-22 01:11:37','2006-02-15 22:13:23'), +(3854,142,2,15333,'2.99','2005-08-22 20:44:06','2006-02-15 22:13:23'), +(3855,142,1,15477,'1.99','2005-08-23 01:46:35','2006-02-15 22:13:23'), +(3856,142,1,15454,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:23'), +(3857,143,1,221,'2.99','2005-05-26 10:14:09','2006-02-15 22:13:23'), +(3858,143,1,312,'2.99','2005-05-26 22:52:19','2006-02-15 22:13:23'), +(3859,143,2,1898,'1.99','2005-06-17 04:28:11','2006-02-15 22:13:23'), +(3860,143,1,1942,'4.99','2005-06-17 07:43:39','2006-02-15 22:13:23'), +(3861,143,2,2251,'3.99','2005-06-18 05:05:08','2006-02-15 22:13:24'), +(3862,143,1,2574,'0.99','2005-06-19 04:23:52','2006-02-15 22:13:24'), +(3863,143,1,2588,'4.99','2005-06-19 05:20:31','2006-02-15 22:13:24'), +(3864,143,1,4031,'7.99','2005-07-07 02:32:07','2006-02-15 22:13:24'), +(3865,143,2,4221,'0.99','2005-07-07 12:18:57','2006-02-15 22:13:24'), +(3866,143,1,4585,'7.99','2005-07-08 06:11:58','2006-02-15 22:13:24'), +(3867,143,2,6076,'6.99','2005-07-11 05:05:30','2006-02-15 22:13:24'), +(3868,143,2,6207,'4.99','2005-07-11 12:34:24','2006-02-15 22:13:24'), +(3869,143,1,8312,'0.99','2005-07-29 03:32:38','2006-02-15 22:13:24'), +(3870,143,1,8335,'0.99','2005-07-29 04:18:25','2006-02-15 22:13:24'), +(3871,143,2,9889,'1.99','2005-07-31 14:02:50','2006-02-15 22:13:24'), +(3872,143,1,10118,'0.99','2005-07-31 21:16:31','2006-02-15 22:13:24'), +(3873,143,1,11278,'6.99','2005-08-02 14:29:43','2006-02-15 22:13:24'), +(3874,143,2,11651,'6.99','2005-08-17 05:02:25','2006-02-15 22:13:24'), +(3875,143,1,12408,'2.99','2005-08-18 09:40:38','2006-02-15 22:13:24'), +(3876,143,2,13835,'4.99','2005-08-20 14:06:33','2006-02-15 22:13:24'), +(3877,143,1,15250,'5.99','2005-08-22 18:03:11','2006-02-15 22:13:24'), +(3878,143,1,16029,'4.99','2005-08-23 21:54:02','2006-02-15 22:13:24'), +(3879,144,1,323,'2.99','2005-05-27 00:49:27','2006-02-15 22:13:24'), +(3880,144,2,345,'2.99','2005-05-27 04:32:25','2006-02-15 22:13:24'), +(3881,144,1,1814,'5.99','2005-06-16 21:15:22','2006-02-15 22:13:24'), +(3882,144,1,1943,'0.99','2005-06-17 07:49:17','2006-02-15 22:13:24'), +(3883,144,1,2756,'4.99','2005-06-19 16:57:42','2006-02-15 22:13:24'), +(3884,144,2,3019,'4.99','2005-06-20 11:11:52','2006-02-15 22:13:24'), +(3885,144,1,3145,'2.99','2005-06-20 20:21:17','2006-02-15 22:13:24'), +(3886,144,1,3321,'2.99','2005-06-21 08:33:26','2006-02-15 22:13:24'), +(3887,144,1,4726,'6.99','2005-07-08 12:50:54','2006-02-15 22:13:24'), +(3888,144,2,4818,'3.99','2005-07-08 17:18:22','2006-02-15 22:13:24'), +(3889,144,2,5049,'0.99','2005-07-09 03:54:12','2006-02-15 22:13:24'), +(3890,144,2,5374,'8.99','2005-07-09 18:52:08','2006-02-15 22:13:24'), +(3891,144,2,5408,'7.99','2005-07-09 20:16:51','2006-02-15 22:13:24'), +(3892,144,2,5526,'7.99','2005-07-10 02:04:03','2006-02-15 22:13:24'), +(3893,144,2,6614,'7.99','2005-07-12 08:33:49','2006-02-15 22:13:24'), +(3894,144,2,6791,'9.99','2005-07-12 16:35:07','2006-02-15 22:13:24'), +(3895,144,2,7378,'5.99','2005-07-27 15:31:33','2006-02-15 22:13:24'), +(3896,144,2,7566,'2.99','2005-07-27 22:34:45','2006-02-15 22:13:24'), +(3897,144,1,7830,'0.99','2005-07-28 08:43:49','2006-02-15 22:13:24'), +(3898,144,1,7858,'3.99','2005-07-28 09:50:18','2006-02-15 22:13:24'), +(3899,144,2,8459,'5.99','2005-07-29 08:05:40','2006-02-15 22:13:24'), +(3900,144,1,8983,'0.99','2005-07-30 04:31:08','2006-02-15 22:13:24'), +(3901,144,1,9034,'7.99','2005-07-30 06:10:58','2006-02-15 22:13:24'), +(3902,144,1,9098,'3.99','2005-07-30 08:44:21','2006-02-15 22:13:25'), +(3903,144,2,9174,'4.99','2005-07-30 11:42:10','2006-02-15 22:13:25'), +(3904,144,2,9714,'0.99','2005-07-31 08:15:32','2006-02-15 22:13:25'), +(3905,144,1,10302,'0.99','2005-08-01 04:12:08','2006-02-15 22:13:25'), +(3906,144,1,10593,'4.99','2005-08-01 14:13:19','2006-02-15 22:13:25'), +(3907,144,1,10740,'5.99','2005-08-01 19:50:32','2006-02-15 22:13:25'), +(3908,144,1,10951,'4.99','2005-08-02 03:26:35','2006-02-15 22:13:25'), +(3909,144,1,11228,'2.99','2005-08-02 12:55:23','2006-02-15 22:13:25'), +(3910,144,2,11476,'6.99','2005-08-02 22:03:47','2006-02-15 22:13:25'), +(3911,144,1,11534,'7.99','2005-08-17 00:35:27','2006-02-15 22:13:25'), +(3912,144,1,11859,'4.99','2005-08-17 13:51:20','2006-02-15 22:13:25'), +(3913,144,2,12087,'2.99','2005-08-17 22:20:12','2006-02-15 22:13:25'), +(3914,144,2,12733,'2.99','2005-08-18 21:59:00','2006-02-15 22:13:25'), +(3915,144,1,12858,'3.99','2005-08-19 02:22:16','2006-02-15 22:13:25'), +(3916,144,2,12980,'6.99','2005-08-19 07:03:14','2006-02-15 22:13:25'), +(3917,144,2,13881,'2.99','2005-08-20 15:18:55','2006-02-15 22:13:25'), +(3918,144,2,14159,'2.99','2005-08-21 02:45:58','2006-02-15 22:13:25'), +(3919,144,1,15017,'1.99','2005-08-22 08:47:44','2006-02-15 22:13:25'), +(3920,144,1,15753,'7.99','2005-08-23 12:43:30','2006-02-15 22:13:25'), +(3921,145,1,500,'0.99','2005-05-28 01:05:25','2006-02-15 22:13:25'), +(3922,145,2,2271,'4.99','2005-06-18 06:29:52','2006-02-15 22:13:25'), +(3923,145,2,2614,'0.99','2005-06-19 07:28:11','2006-02-15 22:13:25'), +(3924,145,1,3647,'5.99','2005-07-06 07:29:17','2006-02-15 22:13:25'), +(3925,145,2,4201,'8.99','2005-07-07 11:19:51','2006-02-15 22:13:25'), +(3926,145,1,4364,'4.99','2005-07-07 19:46:51','2006-02-15 22:13:25'), +(3927,145,2,4405,'6.99','2005-07-07 21:33:16','2006-02-15 22:13:26'), +(3928,145,1,4470,'2.99','2005-07-08 00:20:57','2006-02-15 22:13:26'), +(3929,145,2,4817,'2.99','2005-07-08 17:17:31','2006-02-15 22:13:26'), +(3930,145,2,6056,'2.99','2005-07-11 04:01:27','2006-02-15 22:13:26'), +(3931,145,1,6339,'1.99','2005-07-11 19:45:32','2006-02-15 22:13:26'), +(3932,145,2,6378,'0.99','2005-07-11 21:45:23','2006-02-15 22:13:26'), +(3933,145,2,7061,'2.99','2005-07-27 03:51:10','2006-02-15 22:13:26'), +(3934,145,1,7529,'7.99','2005-07-27 21:18:08','2006-02-15 22:13:26'), +(3935,145,2,7954,'0.99','2005-07-28 13:25:05','2006-02-15 22:13:26'), +(3936,145,1,8380,'0.99','2005-07-29 05:31:29','2006-02-15 22:13:26'), +(3937,145,1,9156,'2.99','2005-07-30 11:04:55','2006-02-15 22:13:26'), +(3938,145,2,9576,'0.99','2005-07-31 02:52:59','2006-02-15 22:13:26'), +(3939,145,2,10799,'4.99','2005-08-01 22:03:31','2006-02-15 22:13:26'), +(3940,145,2,11904,'5.99','2005-08-17 15:39:26','2006-02-15 22:13:26'), +(3941,145,2,11954,'2.99','2005-08-17 17:18:36','2006-02-15 22:13:26'), +(3942,145,1,12637,'2.99','2005-08-18 18:06:53','2006-02-15 22:13:26'), +(3943,145,2,12785,'2.99','2005-08-19 00:05:49','2006-02-15 22:13:26'), +(3944,145,2,13012,'7.99','2005-08-19 07:54:59','2006-02-15 22:13:26'), +(3945,145,1,13164,'3.99','2005-08-19 13:30:55','2006-02-15 22:13:26'), +(3946,145,2,13272,'0.99','2005-08-19 17:49:13','2006-02-15 22:13:26'), +(3947,145,2,14044,'5.99','2005-08-20 21:48:38','2006-02-15 22:13:26'), +(3948,145,2,14389,'6.99','2005-08-21 10:15:20','2006-02-15 22:13:26'), +(3949,146,2,762,'7.99','2005-05-29 11:15:51','2006-02-15 22:13:26'), +(3950,146,1,1073,'4.99','2005-05-31 09:55:04','2006-02-15 22:13:26'), +(3951,146,2,1209,'7.99','2005-06-15 02:31:12','2006-02-15 22:13:26'), +(3952,146,2,1724,'1.99','2005-06-16 15:15:43','2006-02-15 22:13:26'), +(3953,146,2,2099,'2.99','2005-06-17 18:47:26','2006-02-15 22:13:26'), +(3954,146,1,2242,'3.99','2005-06-18 04:32:28','2006-02-15 22:13:26'), +(3955,146,1,2342,'2.99','2005-06-18 11:42:40','2006-02-15 22:13:26'), +(3956,146,1,2800,'0.99','2005-06-19 19:15:56','2006-02-15 22:13:26'), +(3957,146,1,3131,'4.99','2005-06-20 19:08:00','2006-02-15 22:13:26'), +(3958,146,1,4849,'6.99','2005-07-08 18:34:34','2006-02-15 22:13:26'), +(3959,146,2,5000,'4.99','2005-07-09 01:16:13','2006-02-15 22:13:26'), +(3960,146,1,6102,'7.99','2005-07-11 06:53:09','2006-02-15 22:13:26'), +(3961,146,2,6184,'6.99','2005-07-11 11:19:21','2006-02-15 22:13:26'), +(3962,146,1,6327,'4.99','2005-07-11 19:07:29','2006-02-15 22:13:26'), +(3963,146,1,6990,'0.99','2005-07-27 01:02:46','2006-02-15 22:13:26'), +(3964,146,2,8246,'3.99','2005-07-29 00:38:41','2006-02-15 22:13:26'), +(3965,146,2,11173,'7.99','2005-08-02 10:28:00','2006-02-15 22:13:26'), +(3966,146,1,11221,'2.99','2005-08-02 12:32:12','2006-02-15 22:13:26'), +(3967,146,2,11370,'0.99','2005-08-02 18:06:01','2006-02-15 22:13:26'), +(3968,146,2,11392,'5.99','2005-08-02 18:41:11','2006-02-15 22:13:26'), +(3969,146,1,11573,'4.99','2005-08-17 01:38:18','2006-02-15 22:13:27'), +(3970,146,1,11857,'4.99','2005-08-17 13:48:30','2006-02-15 22:13:27'), +(3971,146,1,12129,'7.99','2005-08-17 23:31:25','2006-02-15 22:13:27'), +(3972,146,1,12385,'2.99','2005-08-18 08:39:33','2006-02-15 22:13:27'), +(3973,146,1,12888,'4.99','2005-08-19 03:41:09','2006-02-15 22:13:27'), +(3974,146,1,13606,'4.99','2005-08-20 06:07:01','2006-02-15 22:13:27'), +(3975,146,2,13829,'4.99','2005-08-20 13:50:17','2006-02-15 22:13:27'), +(3976,146,2,14143,'2.99','2005-08-21 02:10:32','2006-02-15 22:13:27'), +(3977,146,1,15842,'6.99','2005-08-23 15:36:05','2006-02-15 22:13:27'), +(3978,147,1,362,'0.99','2005-05-27 07:10:25','2006-02-15 22:13:27'), +(3979,147,1,509,'0.99','2005-05-28 02:51:12','2006-02-15 22:13:27'), +(3980,147,1,2171,'0.99','2005-06-18 00:06:04','2006-02-15 22:13:27'), +(3981,147,1,2456,'6.99','2005-06-18 19:36:50','2006-02-15 22:13:27'), +(3982,147,2,2859,'2.99','2005-06-19 23:18:42','2006-02-15 22:13:27'), +(3983,147,2,3011,'5.99','2005-06-20 10:39:10','2006-02-15 22:13:27'), +(3984,147,2,3919,'7.99','2005-07-06 20:26:21','2006-02-15 22:13:27'), +(3985,147,2,3956,'2.99','2005-07-06 22:01:51','2006-02-15 22:13:27'), +(3986,147,2,4792,'0.99','2005-07-08 16:29:38','2006-02-15 22:13:27'), +(3987,147,2,5044,'0.99','2005-07-09 03:30:25','2006-02-15 22:13:27'), +(3988,147,1,5567,'2.99','2005-07-10 03:36:46','2006-02-15 22:13:27'), +(3989,147,1,5844,'0.99','2005-07-10 17:14:43','2006-02-15 22:13:27'), +(3990,147,2,6343,'0.99','2005-07-11 19:51:35','2006-02-15 22:13:27'), +(3991,147,2,6469,'4.99','2005-07-12 01:29:27','2006-02-15 22:13:27'), +(3992,147,2,6753,'2.99','2005-07-12 14:55:42','2006-02-15 22:13:27'), +(3993,147,2,7044,'0.99','2005-07-27 03:27:29','2006-02-15 22:13:27'), +(3994,147,1,7723,'0.99','2005-07-28 04:45:37','2006-02-15 22:13:27'), +(3995,147,1,8893,'2.99','2005-07-30 00:48:19','2006-02-15 22:13:27'), +(3996,147,2,9772,'0.99','2005-07-31 09:56:07','2006-02-15 22:13:27'), +(3997,147,1,10706,'7.99','2005-08-01 18:41:28','2006-02-15 22:13:27'), +(3998,147,2,10752,'8.99','2005-08-01 20:08:49','2006-02-15 22:13:27'), +(3999,147,1,12284,'4.99','2005-08-18 04:55:49','2006-02-15 22:13:27'), +(4000,147,1,12757,'4.99','2005-08-18 22:57:45','2006-02-15 22:13:27'), +(4001,147,2,13542,'4.99','2005-08-20 03:41:57','2006-02-15 22:13:27'), +(4002,147,2,13670,'3.99','2005-08-20 08:27:01','2006-02-15 22:13:27'), +(4003,147,2,14021,'4.99','2005-08-20 21:02:12','2006-02-15 22:13:27'), +(4004,147,1,14156,'0.99','2005-08-21 02:35:16','2006-02-15 22:13:27'), +(4005,147,2,14641,'0.99','2005-08-21 19:05:23','2006-02-15 22:13:27'), +(4006,147,2,14960,'4.99','2005-08-22 06:31:36','2006-02-15 22:13:27'), +(4007,147,1,15052,'2.99','2005-08-22 10:09:19','2006-02-15 22:13:27'), +(4008,147,2,15331,'4.99','2005-08-22 20:37:57','2006-02-15 22:13:28'), +(4009,147,2,15513,'4.99','2005-08-23 03:01:56','2006-02-15 22:13:28'), +(4010,147,1,15730,'8.99','2005-08-23 11:32:35','2006-02-15 22:13:28'), +(4011,147,2,16004,'6.99','2005-08-23 20:53:20','2006-02-15 22:13:28'), +(4012,148,1,682,'4.99','2005-05-28 23:53:18','2006-02-15 22:13:28'), +(4013,148,1,1501,'1.99','2005-06-15 22:02:35','2006-02-15 22:13:28'), +(4014,148,2,1517,'6.99','2005-06-15 23:20:26','2006-02-15 22:13:28'), +(4015,148,2,2751,'3.99','2005-06-19 16:39:23','2006-02-15 22:13:28'), +(4016,148,2,2843,'3.99','2005-06-19 22:36:39','2006-02-15 22:13:28'), +(4017,148,2,2847,'5.99','2005-06-19 22:54:01','2006-02-15 22:13:28'), +(4018,148,1,3653,'0.99','2005-07-06 07:45:13','2006-02-15 22:13:28'), +(4019,148,1,4080,'0.99','2005-07-07 05:09:54','2006-02-15 22:13:28'), +(4020,148,1,4746,'2.99','2005-07-08 13:47:55','2006-02-15 22:13:28'), +(4021,148,1,4950,'2.99','2005-07-08 22:58:07','2006-02-15 22:13:28'), +(4022,148,1,5034,'4.99','2005-07-09 02:48:15','2006-02-15 22:13:28'), +(4023,148,1,5372,'4.99','2005-07-09 18:48:39','2006-02-15 22:13:28'), +(4024,148,1,6169,'1.99','2005-07-11 10:25:56','2006-02-15 22:13:28'), +(4025,148,1,6640,'8.99','2005-07-12 10:27:19','2006-02-15 22:13:28'), +(4026,148,2,6793,'10.99','2005-07-12 16:37:55','2006-02-15 22:13:28'), +(4027,148,1,7656,'0.99','2005-07-28 02:07:19','2006-02-15 22:13:28'), +(4028,148,2,7693,'4.99','2005-07-28 03:31:22','2006-02-15 22:13:28'), +(4029,148,1,7865,'9.99','2005-07-28 10:07:04','2006-02-15 22:13:28'), +(4030,148,2,8111,'4.99','2005-07-28 19:10:03','2006-02-15 22:13:28'), +(4031,148,2,8331,'3.99','2005-07-29 04:13:29','2006-02-15 22:13:28'), +(4032,148,1,8394,'4.99','2005-07-29 06:02:14','2006-02-15 22:13:28'), +(4033,148,2,8578,'4.99','2005-07-29 11:58:14','2006-02-15 22:13:28'), +(4034,148,2,8626,'4.99','2005-07-29 14:03:20','2006-02-15 22:13:28'), +(4035,148,1,9023,'5.99','2005-07-30 05:36:40','2006-02-15 22:13:28'), +(4036,148,1,9106,'2.99','2005-07-30 08:52:34','2006-02-15 22:13:28'), +(4037,148,1,9530,'1.99','2005-07-31 01:09:06','2006-02-15 22:13:28'), +(4038,148,1,9594,'4.99','2005-07-31 03:23:52','2006-02-15 22:13:28'), +(4039,148,2,10067,'4.99','2005-07-31 19:37:58','2006-02-15 22:13:28'), +(4040,148,2,10830,'6.99','2005-08-01 23:18:06','2006-02-15 22:13:28'), +(4041,148,1,11357,'10.99','2005-08-02 17:42:49','2006-02-15 22:13:28'), +(4042,148,1,12029,'2.99','2005-08-17 20:07:01','2006-02-15 22:13:28'), +(4043,148,2,12038,'0.99','2005-08-17 20:28:26','2006-02-15 22:13:28'), +(4044,148,2,12512,'3.99','2005-08-18 13:28:27','2006-02-15 22:13:28'), +(4045,148,1,12944,'6.99','2005-08-19 05:48:12','2006-02-15 22:13:28'), +(4046,148,1,12983,'6.99','2005-08-19 07:06:51','2006-02-15 22:13:29'), +(4047,148,1,14055,'0.99','2005-08-20 22:18:00','2006-02-15 22:13:29'), +(4048,148,1,14155,'4.99','2005-08-21 02:31:35','2006-02-15 22:13:29'), +(4049,148,2,14184,'6.99','2005-08-21 03:24:50','2006-02-15 22:13:29'), +(4050,148,2,14629,'2.99','2005-08-21 18:39:52','2006-02-15 22:13:29'), +(4051,148,2,14713,'0.99','2005-08-21 21:27:24','2006-02-15 22:13:29'), +(4052,148,2,14879,'5.99','2005-08-22 03:42:12','2006-02-15 22:13:29'), +(4053,148,2,14965,'2.99','2005-08-22 06:45:53','2006-02-15 22:13:29'), +(4054,148,2,15237,'4.99','2005-08-22 17:44:30','2006-02-15 22:13:29'), +(4055,148,2,15379,'8.99','2005-08-22 22:26:13','2006-02-15 22:13:29'), +(4056,148,1,15541,'3.99','2005-08-23 04:13:53','2006-02-15 22:13:29'), +(4057,148,2,15586,'3.99','2005-08-23 05:57:04','2006-02-15 22:13:29'), +(4058,149,1,764,'4.99','2005-05-29 11:37:35','2006-02-15 22:13:29'), +(4059,149,2,1521,'2.99','2005-06-15 23:58:53','2006-02-15 22:13:29'), +(4060,149,1,1800,'2.99','2005-06-16 20:18:46','2006-02-15 22:13:29'), +(4061,149,2,1996,'6.99','2005-06-17 11:17:45','2006-02-15 22:13:29'), +(4062,149,2,2194,'4.99','2005-06-18 01:41:37','2006-02-15 22:13:29'), +(4063,149,1,2305,'5.99','2005-06-18 08:31:18','2006-02-15 22:13:29'), +(4064,149,2,2383,'7.99','2005-06-18 15:17:59','2006-02-15 22:13:29'), +(4065,149,1,2752,'0.99','2005-06-19 16:44:18','2006-02-15 22:13:29'), +(4066,149,1,3894,'2.99','2005-07-06 19:01:39','2006-02-15 22:13:29'), +(4067,149,1,3939,'6.99','2005-07-06 21:16:32','2006-02-15 22:13:29'), +(4068,149,1,4766,'3.99','2005-07-08 15:16:04','2006-02-15 22:13:29'), +(4069,149,1,4837,'0.99','2005-07-08 18:09:12','2006-02-15 22:13:29'), +(4070,149,1,5091,'2.99','2005-07-09 05:52:54','2006-02-15 22:13:29'), +(4071,149,1,5298,'10.99','2005-07-09 15:36:17','2006-02-15 22:13:29'), +(4072,149,1,6356,'4.99','2005-07-11 20:57:48','2006-02-15 22:13:29'), +(4073,149,2,6940,'5.99','2005-07-26 23:18:35','2006-02-15 22:13:29'), +(4074,149,2,7559,'4.99','2005-07-27 22:20:03','2006-02-15 22:13:29'), +(4075,149,1,7989,'6.99','2005-07-28 14:39:05','2006-02-15 22:13:29'), +(4076,149,2,10154,'2.99','2005-07-31 22:30:49','2006-02-15 22:13:29'), +(4077,149,2,10737,'7.99','2005-08-01 19:31:24','2006-02-15 22:13:29'), +(4078,149,2,10967,'0.99','2005-08-02 04:02:16','2006-02-15 22:13:29'), +(4079,149,1,11561,'2.99','2005-08-17 01:23:09','2006-02-15 22:13:29'), +(4080,149,1,12000,'4.99','2005-08-17 18:49:44','2006-02-15 22:13:29'), +(4081,149,1,14771,'3.99','2005-08-21 23:50:15','2006-02-15 22:13:29'), +(4082,149,2,15479,'4.99','2005-08-23 01:50:53','2006-02-15 22:13:29'), +(4083,149,2,15562,'2.99','2005-08-23 05:04:33','2006-02-15 22:13:29'), +(4084,150,1,422,'3.99','2005-05-27 15:31:55','2006-02-15 22:13:29'), +(4085,150,1,609,'2.99','2005-05-28 15:04:02','2006-02-15 22:13:29'), +(4086,150,1,995,'3.99','2005-05-31 00:06:02','2006-02-15 22:13:29'), +(4087,150,2,3187,'1.99','2005-06-20 23:06:07','2006-02-15 22:13:29'), +(4088,150,1,3456,'5.99','2005-06-21 21:19:47','2006-02-15 22:13:29'), +(4089,150,1,4271,'6.99','2005-07-07 14:38:52','2006-02-15 22:13:29'), +(4090,150,1,6633,'2.99','2005-07-12 09:35:42','2006-02-15 22:13:29'), +(4091,150,2,7690,'4.99','2005-07-28 03:26:21','2006-02-15 22:13:30'), +(4092,150,1,9121,'2.99','2005-07-30 09:36:26','2006-02-15 22:13:30'), +(4093,150,1,10686,'2.99','2005-08-01 17:51:21','2006-02-15 22:13:30'), +(4094,150,2,11123,'2.99','2005-08-02 08:54:17','2006-02-15 22:13:30'), +(4095,150,2,11789,'6.99','2005-08-17 10:59:24','2006-02-15 22:13:30'), +(4096,150,2,12260,'6.99','2005-08-18 04:15:43','2006-02-15 22:13:30'), +(4097,150,2,12335,'2.99','2005-08-18 06:59:15','2006-02-15 22:13:30'), +(4098,150,2,12627,'2.99','2005-08-18 17:37:11','2006-02-15 22:13:30'), +(4099,150,1,12887,'1.99','2005-08-19 03:38:54','2006-02-15 22:13:30'), +(4100,150,2,12890,'0.99','2005-08-19 03:42:08','2006-02-15 22:13:30'), +(4101,150,1,13116,'6.99','2005-08-19 11:31:41','2006-02-15 22:13:30'), +(4102,150,2,13255,'8.99','2005-08-19 16:54:12','2006-02-15 22:13:30'), +(4103,150,1,13372,'2.99','2005-08-19 21:23:19','2006-02-15 22:13:30'), +(4104,150,2,13599,'5.99','2005-08-20 06:00:03','2006-02-15 22:13:30'), +(4105,150,2,14165,'0.99','2005-08-21 02:59:17','2006-02-15 22:13:30'), +(4106,150,2,14454,'2.99','2005-08-21 12:35:49','2006-02-15 22:13:30'), +(4107,150,2,14520,'9.99','2005-08-21 15:00:49','2006-02-15 22:13:30'), +(4108,150,1,14663,'0.99','2005-08-21 19:47:55','2006-02-15 22:13:30'), +(4109,151,2,164,'4.99','2005-05-26 02:26:49','2006-02-15 22:13:30'), +(4110,151,2,418,'5.99','2005-05-27 15:13:17','2006-02-15 22:13:30'), +(4111,151,2,2474,'2.99','2005-06-18 20:51:34','2006-02-15 22:13:30'), +(4112,151,2,2947,'2.99','2005-06-20 06:00:21','2006-02-15 22:13:30'), +(4113,151,1,3017,'3.99','2005-06-20 11:08:56','2006-02-15 22:13:30'), +(4114,151,2,3089,'0.99','2005-06-20 15:57:01','2006-02-15 22:13:30'), +(4115,151,2,3390,'2.99','2005-06-21 15:10:50','2006-02-15 22:13:30'), +(4116,151,1,4376,'2.99','2005-07-07 20:24:33','2006-02-15 22:13:30'), +(4117,151,2,6720,'0.99','2005-07-12 13:41:16','2006-02-15 22:13:30'), +(4118,151,2,6768,'3.99','2005-07-12 15:47:51','2006-02-15 22:13:30'), +(4119,151,2,6854,'0.99','2005-07-12 19:38:57','2006-02-15 22:13:30'), +(4120,151,1,7189,'0.99','2005-07-27 08:35:02','2006-02-15 22:13:30'), +(4121,151,2,7332,'3.99','2005-07-27 13:58:57','2006-02-15 22:13:30'), +(4122,151,1,9253,'4.99','2005-07-30 14:20:12','2006-02-15 22:13:30'), +(4123,151,1,9890,'4.99','2005-07-31 14:04:44','2006-02-15 22:13:30'), +(4124,151,1,9969,'2.99','2005-07-31 16:38:12','2006-02-15 22:13:30'), +(4125,151,1,10078,'2.99','2005-07-31 20:02:02','2006-02-15 22:13:30'), +(4126,151,1,10311,'4.99','2005-08-01 04:27:59','2006-02-15 22:13:30'), +(4127,151,1,10662,'2.99','2005-08-01 16:50:57','2006-02-15 22:13:30'), +(4128,151,2,11714,'2.99','2005-08-17 07:34:55','2006-02-15 22:13:30'), +(4129,151,2,13230,'0.99','2005-08-19 16:12:07','2006-02-15 22:13:30'), +(4130,151,1,13568,'5.99','2005-08-20 05:02:46','2006-02-15 22:13:30'), +(4131,151,1,14856,'4.99','2005-08-22 02:31:51','2006-02-15 22:13:30'), +(4132,151,2,14922,'3.99','2005-08-22 05:13:05','2006-02-15 22:13:30'), +(4133,151,1,15227,'4.99','2005-08-22 17:22:41','2006-02-15 22:13:30'), +(4134,151,1,15926,'2.99','2005-08-23 18:20:56','2006-02-15 22:13:31'), +(4135,151,2,15996,'2.99','2005-08-23 20:31:38','2006-02-15 22:13:31'), +(4136,152,2,359,'4.99','2005-05-27 06:48:33','2006-02-15 22:13:31'), +(4137,152,1,745,'4.99','2005-05-29 09:22:57','2006-02-15 22:13:31'), +(4138,152,1,2882,'4.99','2005-06-20 01:26:26','2006-02-15 22:13:31'), +(4139,152,2,3577,'2.99','2005-07-06 03:40:36','2006-02-15 22:13:31'), +(4140,152,1,3786,'7.99','2005-07-06 14:00:41','2006-02-15 22:13:31'), +(4141,152,1,4974,'4.99','2005-07-09 00:00:36','2006-02-15 22:13:31'), +(4142,152,1,6273,'0.99','2005-07-11 16:08:41','2006-02-15 22:13:31'), +(4143,152,1,6612,'2.99','2005-07-12 08:28:33','2006-02-15 22:13:31'), +(4144,152,1,9010,'5.99','2005-07-30 05:12:04','2006-02-15 22:13:31'), +(4145,152,1,10320,'6.99','2005-08-01 04:39:26','2006-02-15 22:13:31'), +(4146,152,2,11638,'6.99','2005-08-17 04:39:09','2006-02-15 22:13:31'), +(4147,152,2,11783,'0.99','2005-08-17 10:39:24','2006-02-15 22:13:31'), +(4148,152,1,12697,'2.99','2005-08-18 20:14:56','2006-02-15 22:13:31'), +(4149,152,1,12917,'4.99','2005-08-19 04:27:11','2006-02-15 22:13:31'), +(4150,152,2,12960,'1.99','2005-08-19 06:21:52','2006-02-15 22:13:31'), +(4151,152,1,13204,'4.99','2005-08-19 15:02:48','2006-02-15 22:13:31'), +(4152,152,2,13484,'0.99','2005-08-20 01:16:52','2006-02-15 22:13:31'), +(4153,152,1,13986,'0.99','2005-08-20 19:13:23','2006-02-15 22:13:31'), +(4154,152,1,14173,'0.99','2005-08-21 03:01:01','2006-02-15 22:13:31'), +(4155,152,2,14668,'4.99','2005-08-21 19:51:30','2006-02-15 22:13:31'), +(4156,152,2,11848,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:31'), +(4157,153,1,2224,'0.99','2005-06-18 03:33:58','2006-02-15 22:13:31'), +(4158,153,1,2649,'0.99','2005-06-19 10:20:09','2006-02-15 22:13:31'), +(4159,153,1,2893,'4.99','2005-06-20 02:22:08','2006-02-15 22:13:31'), +(4160,153,1,2945,'5.99','2005-06-20 05:49:27','2006-02-15 22:13:31'), +(4161,153,1,3795,'0.99','2005-07-06 14:37:41','2006-02-15 22:13:31'), +(4162,153,1,3949,'0.99','2005-07-06 21:46:36','2006-02-15 22:13:31'), +(4163,153,1,4194,'5.99','2005-07-07 10:59:39','2006-02-15 22:13:31'), +(4164,153,2,4670,'5.99','2005-07-08 10:14:18','2006-02-15 22:13:31'), +(4165,153,2,5676,'0.99','2005-07-10 08:38:32','2006-02-15 22:13:31'), +(4166,153,2,5771,'0.99','2005-07-10 13:26:45','2006-02-15 22:13:31'), +(4167,153,2,6818,'9.99','2005-07-12 18:20:54','2006-02-15 22:13:31'), +(4168,153,2,7824,'7.99','2005-07-28 08:34:47','2006-02-15 22:13:31'), +(4169,153,2,9936,'0.99','2005-07-31 15:27:41','2006-02-15 22:13:31'), +(4170,153,2,10015,'4.99','2005-07-31 18:11:17','2006-02-15 22:13:31'), +(4171,153,2,11368,'4.99','2005-08-02 18:03:05','2006-02-15 22:13:31'), +(4172,153,1,12103,'1.99','2005-08-17 22:49:09','2006-02-15 22:13:31'), +(4173,153,1,12439,'3.99','2005-08-18 10:44:57','2006-02-15 22:13:31'), +(4174,153,1,12882,'4.99','2005-08-19 03:33:46','2006-02-15 22:13:31'), +(4175,153,1,14664,'4.99','2005-08-21 19:48:47','2006-02-15 22:13:31'), +(4176,153,1,14747,'4.99','2005-08-21 23:00:02','2006-02-15 22:13:31'), +(4177,153,1,14944,'4.99','2005-08-22 06:01:26','2006-02-15 22:13:31'), +(4178,153,2,15267,'0.99','2005-08-22 18:37:48','2006-02-15 22:13:31'), +(4179,153,2,15444,'7.99','2005-08-23 00:46:52','2006-02-15 22:13:32'), +(4180,153,1,15593,'1.99','2005-08-23 06:15:09','2006-02-15 22:13:32'), +(4181,154,1,469,'5.99','2005-05-27 21:14:26','2006-02-15 22:13:32'), +(4182,154,2,865,'7.99','2005-05-30 03:39:44','2006-02-15 22:13:32'), +(4183,154,2,978,'5.99','2005-05-30 21:30:52','2006-02-15 22:13:32'), +(4184,154,1,1963,'0.99','2005-06-17 09:09:31','2006-02-15 22:13:32'), +(4185,154,1,2886,'4.99','2005-06-20 01:38:39','2006-02-15 22:13:32'), +(4186,154,1,2985,'2.99','2005-06-20 08:45:08','2006-02-15 22:13:32'), +(4187,154,2,3806,'7.99','2005-07-06 15:09:41','2006-02-15 22:13:32'), +(4188,154,2,3912,'0.99','2005-07-06 20:10:03','2006-02-15 22:13:32'), +(4189,154,2,4132,'4.99','2005-07-07 08:06:07','2006-02-15 22:13:32'), +(4190,154,1,4252,'2.99','2005-07-07 14:13:05','2006-02-15 22:13:32'), +(4191,154,1,4850,'5.99','2005-07-08 18:39:31','2006-02-15 22:13:32'), +(4192,154,1,5101,'0.99','2005-07-09 06:21:29','2006-02-15 22:13:32'), +(4193,154,2,5760,'2.99','2005-07-10 12:44:48','2006-02-15 22:13:32'), +(4194,154,1,6048,'0.99','2005-07-11 03:32:23','2006-02-15 22:13:32'), +(4195,154,2,6993,'4.99','2005-07-27 01:05:24','2006-02-15 22:13:32'), +(4196,154,1,7055,'4.99','2005-07-27 03:45:42','2006-02-15 22:13:32'), +(4197,154,1,7156,'4.99','2005-07-27 07:19:34','2006-02-15 22:13:32'), +(4198,154,2,7900,'1.99','2005-07-28 11:11:33','2006-02-15 22:13:32'), +(4199,154,2,8334,'7.99','2005-07-29 04:18:25','2006-02-15 22:13:32'), +(4200,154,2,9286,'2.99','2005-07-30 15:32:28','2006-02-15 22:13:32'), +(4201,154,1,10278,'6.99','2005-08-01 03:25:27','2006-02-15 22:13:32'), +(4202,154,1,10851,'4.99','2005-08-01 23:58:45','2006-02-15 22:13:32'), +(4203,154,1,11296,'5.99','2005-08-02 15:15:27','2006-02-15 22:13:32'), +(4204,154,1,12341,'0.99','2005-08-18 07:09:27','2006-02-15 22:13:32'), +(4205,154,2,13861,'4.99','2005-08-20 14:56:53','2006-02-15 22:13:32'), +(4206,154,2,14731,'2.99','2005-08-21 22:21:49','2006-02-15 22:13:32'), +(4207,154,2,14793,'7.99','2005-08-22 00:37:57','2006-02-15 22:13:32'), +(4208,154,1,14918,'6.99','2005-08-22 05:06:38','2006-02-15 22:13:32'), +(4209,154,1,15351,'0.99','2005-08-22 21:15:46','2006-02-15 22:13:32'), +(4210,154,1,15721,'2.99','2005-08-23 11:16:16','2006-02-15 22:13:32'), +(4211,155,1,568,'2.99','2005-05-28 09:57:36','2006-02-15 22:13:32'), +(4212,155,2,1519,'1.99','2005-06-15 23:55:27','2006-02-15 22:13:32'), +(4213,155,1,1554,'7.99','2005-06-16 02:16:47','2006-02-15 22:13:32'), +(4214,155,1,2028,'7.99','2005-06-17 13:08:08','2006-02-15 22:13:32'), +(4215,155,1,2869,'4.99','2005-06-20 00:09:25','2006-02-15 22:13:32'), +(4216,155,2,3405,'4.99','2005-06-21 15:58:25','2006-02-15 22:13:32'), +(4217,155,1,5128,'1.99','2005-07-09 07:25:54','2006-02-15 22:13:32'), +(4218,155,1,6066,'5.99','2005-07-11 04:32:42','2006-02-15 22:13:32'), +(4219,155,1,6085,'4.99','2005-07-11 05:24:36','2006-02-15 22:13:32'), +(4220,155,2,6087,'4.99','2005-07-11 05:29:22','2006-02-15 22:13:32'), +(4221,155,1,6443,'2.99','2005-07-12 00:35:51','2006-02-15 22:13:32'), +(4222,155,1,7077,'3.99','2005-07-27 04:13:02','2006-02-15 22:13:33'), +(4223,155,1,7492,'2.99','2005-07-27 19:54:18','2006-02-15 22:13:33'), +(4224,155,2,7730,'5.99','2005-07-28 04:59:48','2006-02-15 22:13:33'), +(4225,155,2,9781,'7.99','2005-07-31 10:13:02','2006-02-15 22:13:33'), +(4226,155,1,10098,'0.99','2005-07-31 20:41:17','2006-02-15 22:13:33'), +(4227,155,1,11033,'4.99','2005-08-02 05:54:17','2006-02-15 22:13:33'), +(4228,155,2,11951,'5.99','2005-08-17 17:14:02','2006-02-15 22:13:33'), +(4229,155,1,14324,'8.99','2005-08-21 08:10:56','2006-02-15 22:13:33'), +(4230,155,2,14549,'2.99','2005-08-21 15:54:21','2006-02-15 22:13:33'), +(4231,155,1,14753,'2.99','2005-08-21 23:11:43','2006-02-15 22:13:33'), +(4232,155,2,14909,'0.99','2005-08-22 04:48:44','2006-02-15 22:13:33'), +(4233,155,1,15106,'0.99','2005-08-22 12:01:48','2006-02-15 22:13:33'), +(4234,155,2,11496,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:33'), +(4235,155,1,12352,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:33'), +(4236,156,2,899,'6.99','2005-05-30 09:29:30','2006-02-15 22:13:33'), +(4237,156,1,1052,'4.99','2005-05-31 07:07:03','2006-02-15 22:13:33'), +(4238,156,2,2089,'9.99','2005-06-17 17:45:09','2006-02-15 22:13:33'), +(4239,156,2,2221,'0.99','2005-06-18 03:24:56','2006-02-15 22:13:33'), +(4240,156,1,2658,'4.99','2005-06-19 10:43:42','2006-02-15 22:13:33'), +(4241,156,1,2782,'0.99','2005-06-19 18:25:07','2006-02-15 22:13:33'), +(4242,156,2,4394,'2.99','2005-07-07 21:12:45','2006-02-15 22:13:33'), +(4243,156,2,5534,'4.99','2005-07-10 02:26:49','2006-02-15 22:13:33'), +(4244,156,1,5828,'2.99','2005-07-10 16:27:25','2006-02-15 22:13:33'), +(4245,156,2,5908,'0.99','2005-07-10 20:44:14','2006-02-15 22:13:33'), +(4246,156,2,6540,'6.99','2005-07-12 04:51:13','2006-02-15 22:13:33'), +(4247,156,2,7389,'2.99','2005-07-27 15:56:15','2006-02-15 22:13:33'), +(4248,156,2,7822,'4.99','2005-07-28 08:31:45','2006-02-15 22:13:33'), +(4249,156,1,9409,'6.99','2005-07-30 20:33:53','2006-02-15 22:13:33'), +(4250,156,1,9696,'0.99','2005-07-31 07:13:46','2006-02-15 22:13:33'), +(4251,156,2,10309,'6.99','2005-08-01 04:24:18','2006-02-15 22:13:33'), +(4252,156,2,11490,'2.99','2005-08-02 22:36:00','2006-02-15 22:13:33'), +(4253,156,1,11587,'5.99','2005-08-17 02:21:03','2006-02-15 22:13:33'), +(4254,156,2,13530,'0.99','2005-08-20 03:12:43','2006-02-15 22:13:33'), +(4255,156,2,13531,'2.99','2005-08-20 03:26:10','2006-02-15 22:13:33'), +(4256,156,2,13802,'2.99','2005-08-20 12:44:53','2006-02-15 22:13:33'), +(4257,156,1,14794,'1.99','2005-08-22 00:39:31','2006-02-15 22:13:33'), +(4258,156,2,14831,'4.99','2005-08-22 01:40:49','2006-02-15 22:13:33'), +(4259,156,1,14914,'0.99','2005-08-22 04:53:35','2006-02-15 22:13:33'), +(4260,156,1,15408,'6.99','2005-08-22 23:26:32','2006-02-15 22:13:33'), +(4261,157,2,352,'0.99','2005-05-27 05:48:19','2006-02-15 22:13:33'), +(4262,157,1,642,'4.99','2005-05-28 18:49:12','2006-02-15 22:13:33'), +(4263,157,2,2340,'0.99','2005-06-18 11:30:56','2006-02-15 22:13:33'), +(4264,157,1,3739,'0.99','2005-07-06 11:54:18','2006-02-15 22:13:33'), +(4265,157,1,4253,'5.99','2005-07-07 14:13:13','2006-02-15 22:13:33'), +(4266,157,2,4435,'3.99','2005-07-07 22:51:04','2006-02-15 22:13:34'), +(4267,157,1,4919,'0.99','2005-07-08 21:41:54','2006-02-15 22:13:34'), +(4268,157,1,5862,'4.99','2005-07-10 18:20:48','2006-02-15 22:13:34'), +(4269,157,1,7110,'2.99','2005-07-27 05:30:48','2006-02-15 22:13:34'), +(4270,157,2,7195,'2.99','2005-07-27 08:47:01','2006-02-15 22:13:34'), +(4271,157,2,7499,'4.99','2005-07-27 20:10:28','2006-02-15 22:13:34'), +(4272,157,2,8163,'0.99','2005-07-28 21:11:48','2006-02-15 22:13:34'), +(4273,157,2,8337,'0.99','2005-07-29 04:31:55','2006-02-15 22:13:34'), +(4274,157,2,8347,'0.99','2005-07-29 04:49:25','2006-02-15 22:13:34'), +(4275,157,2,8576,'4.99','2005-07-29 11:55:01','2006-02-15 22:13:34'), +(4276,157,1,8707,'0.99','2005-07-29 17:21:58','2006-02-15 22:13:34'), +(4277,157,1,8827,'4.99','2005-07-29 22:31:24','2006-02-15 22:13:34'), +(4278,157,2,9237,'2.99','2005-07-30 13:48:17','2006-02-15 22:13:34'), +(4279,157,2,9264,'4.99','2005-07-30 14:51:36','2006-02-15 22:13:34'), +(4280,157,1,9958,'2.99','2005-07-31 16:03:56','2006-02-15 22:13:34'), +(4281,157,1,10203,'4.99','2005-08-01 00:45:27','2006-02-15 22:13:34'), +(4282,157,2,11249,'4.99','2005-08-02 13:35:40','2006-02-15 22:13:34'), +(4283,157,2,11335,'4.99','2005-08-02 16:57:37','2006-02-15 22:13:34'), +(4284,157,1,12213,'5.99','2005-08-18 02:33:55','2006-02-15 22:13:34'), +(4285,157,1,12464,'6.99','2005-08-18 11:33:34','2006-02-15 22:13:34'), +(4286,157,1,12916,'0.99','2005-08-19 04:27:05','2006-02-15 22:13:34'), +(4287,157,1,13097,'4.99','2005-08-19 10:50:43','2006-02-15 22:13:34'), +(4288,157,1,13214,'4.99','2005-08-19 15:31:06','2006-02-15 22:13:34'), +(4289,157,1,13481,'6.99','2005-08-20 01:11:12','2006-02-15 22:13:34'), +(4290,157,1,13728,'2.99','2005-08-20 10:11:07','2006-02-15 22:13:34'), +(4291,157,2,14974,'4.99','2005-08-22 07:04:25','2006-02-15 22:13:34'), +(4292,158,2,245,'4.99','2005-05-26 13:46:59','2006-02-15 22:13:34'), +(4293,158,1,293,'5.99','2005-05-26 20:27:02','2006-02-15 22:13:34'), +(4294,158,1,1380,'0.99','2005-06-15 15:13:10','2006-02-15 22:13:34'), +(4295,158,2,1790,'4.99','2005-06-16 19:58:40','2006-02-15 22:13:34'), +(4296,158,2,2035,'6.99','2005-06-17 13:45:09','2006-02-15 22:13:34'), +(4297,158,2,3203,'8.99','2005-06-21 00:34:56','2006-02-15 22:13:34'), +(4298,158,1,4117,'8.99','2005-07-07 06:58:14','2006-02-15 22:13:34'), +(4299,158,1,5672,'2.99','2005-07-10 08:19:38','2006-02-15 22:13:34'), +(4300,158,1,5988,'4.99','2005-07-11 00:55:38','2006-02-15 22:13:34'), +(4301,158,1,6416,'2.99','2005-07-11 23:29:14','2006-02-15 22:13:34'), +(4302,158,2,6901,'5.99','2005-07-12 21:46:33','2006-02-15 22:13:34'), +(4303,158,2,7159,'2.99','2005-07-27 07:24:00','2006-02-15 22:13:34'), +(4304,158,1,7732,'0.99','2005-07-28 05:03:32','2006-02-15 22:13:34'), +(4305,158,2,7952,'2.99','2005-07-28 13:23:49','2006-02-15 22:13:34'), +(4306,158,1,8750,'2.99','2005-07-29 19:14:21','2006-02-15 22:13:34'), +(4307,158,1,8957,'1.99','2005-07-30 03:34:10','2006-02-15 22:13:34'), +(4308,158,1,9393,'2.99','2005-07-30 20:04:48','2006-02-15 22:13:34'), +(4309,158,1,9713,'1.99','2005-07-31 08:13:28','2006-02-15 22:13:35'), +(4310,158,1,9801,'2.99','2005-07-31 11:03:13','2006-02-15 22:13:35'), +(4311,158,2,11077,'4.99','2005-08-02 07:26:43','2006-02-15 22:13:35'), +(4312,158,1,11103,'6.99','2005-08-02 08:09:54','2006-02-15 22:13:35'), +(4313,158,1,11272,'0.99','2005-08-02 14:20:27','2006-02-15 22:13:35'), +(4314,158,1,11420,'2.99','2005-08-02 19:47:56','2006-02-15 22:13:35'), +(4315,158,2,12070,'1.99','2005-08-17 21:46:47','2006-02-15 22:13:35'), +(4316,158,2,12421,'5.99','2005-08-18 10:04:06','2006-02-15 22:13:35'), +(4317,158,2,13212,'1.99','2005-08-19 15:24:07','2006-02-15 22:13:35'), +(4318,158,2,13854,'2.99','2005-08-20 14:48:42','2006-02-15 22:13:35'), +(4319,158,1,13926,'2.99','2005-08-20 17:09:27','2006-02-15 22:13:35'), +(4320,158,2,14028,'0.99','2005-08-20 21:23:03','2006-02-15 22:13:35'), +(4321,158,1,15763,'2.99','2005-08-23 13:02:59','2006-02-15 22:13:35'), +(4322,158,1,15796,'5.99','2005-08-23 14:12:22','2006-02-15 22:13:35'), +(4323,158,1,15802,'5.99','2005-08-23 14:26:51','2006-02-15 22:13:35'), +(4324,159,2,475,'2.99','2005-05-27 22:16:26','2006-02-15 22:13:35'), +(4325,159,2,549,'1.99','2005-05-28 07:35:37','2006-02-15 22:13:35'), +(4326,159,1,598,'0.99','2005-05-28 14:04:50','2006-02-15 22:13:35'), +(4327,159,1,832,'3.99','2005-05-29 22:51:20','2006-02-15 22:13:35'), +(4328,159,1,1695,'0.99','2005-06-16 12:40:28','2006-02-15 22:13:35'), +(4329,159,1,2572,'0.99','2005-06-19 04:21:26','2006-02-15 22:13:35'), +(4330,159,2,3914,'5.99','2005-07-06 20:11:10','2006-02-15 22:13:35'), +(4331,159,2,4273,'4.99','2005-07-07 14:40:22','2006-02-15 22:13:35'), +(4332,159,2,5656,'0.99','2005-07-10 07:31:07','2006-02-15 22:13:35'), +(4333,159,2,6885,'4.99','2005-07-12 20:56:04','2006-02-15 22:13:35'), +(4334,159,2,8212,'2.99','2005-07-28 23:37:23','2006-02-15 22:13:35'), +(4335,159,1,8470,'0.99','2005-07-29 08:28:50','2006-02-15 22:13:35'), +(4336,159,2,9022,'3.99','2005-07-30 05:34:45','2006-02-15 22:13:35'), +(4337,159,2,9132,'0.99','2005-07-30 09:56:00','2006-02-15 22:13:35'), +(4338,159,1,9559,'7.99','2005-07-31 02:15:53','2006-02-15 22:13:35'), +(4339,159,1,9917,'4.99','2005-07-31 14:55:11','2006-02-15 22:13:35'), +(4340,159,2,11225,'4.99','2005-08-02 12:43:27','2006-02-15 22:13:35'), +(4341,159,2,13270,'1.99','2005-08-19 17:41:16','2006-02-15 22:13:35'), +(4342,159,1,13933,'0.99','2005-08-20 17:17:07','2006-02-15 22:13:35'), +(4343,159,2,14575,'8.99','2005-08-21 16:51:34','2006-02-15 22:13:35'), +(4344,159,1,15197,'0.99','2005-08-22 16:14:25','2006-02-15 22:13:35'), +(4345,160,2,2314,'4.99','2005-06-18 09:03:19','2006-02-15 22:13:35'), +(4346,160,1,2465,'2.99','2005-06-18 20:07:02','2006-02-15 22:13:35'), +(4347,160,2,2873,'2.99','2005-06-20 00:41:25','2006-02-15 22:13:35'), +(4348,160,1,4842,'0.99','2005-07-08 18:21:30','2006-02-15 22:13:35'), +(4349,160,1,4908,'5.99','2005-07-08 21:05:44','2006-02-15 22:13:35'), +(4350,160,2,6364,'6.99','2005-07-11 21:14:48','2006-02-15 22:13:35'), +(4351,160,2,6448,'1.99','2005-07-12 00:45:59','2006-02-15 22:13:36'), +(4352,160,2,7500,'0.99','2005-07-27 20:16:03','2006-02-15 22:13:36'), +(4353,160,1,8184,'4.99','2005-07-28 22:22:35','2006-02-15 22:13:36'), +(4354,160,1,9681,'0.99','2005-07-31 06:42:09','2006-02-15 22:13:36'), +(4355,160,2,9758,'2.99','2005-07-31 09:25:38','2006-02-15 22:13:36'), +(4356,160,2,10089,'2.99','2005-07-31 20:17:09','2006-02-15 22:13:36'), +(4357,160,1,10305,'2.99','2005-08-01 04:16:16','2006-02-15 22:13:36'), +(4358,160,2,10788,'0.99','2005-08-01 21:37:10','2006-02-15 22:13:36'), +(4359,160,2,10958,'4.99','2005-08-02 03:37:13','2006-02-15 22:13:36'), +(4360,160,2,10979,'5.99','2005-08-02 04:16:37','2006-02-15 22:13:36'), +(4361,160,2,11154,'2.99','2005-08-02 09:54:50','2006-02-15 22:13:36'), +(4362,160,1,11803,'2.99','2005-08-17 11:42:08','2006-02-15 22:13:36'), +(4363,160,1,11888,'7.99','2005-08-17 15:04:05','2006-02-15 22:13:36'), +(4364,160,2,12334,'2.99','2005-08-18 06:52:36','2006-02-15 22:13:36'), +(4365,160,1,12435,'7.99','2005-08-18 10:38:31','2006-02-15 22:13:36'), +(4366,160,2,13093,'6.99','2005-08-19 10:46:16','2006-02-15 22:13:36'), +(4367,160,1,14868,'4.99','2005-08-22 03:15:01','2006-02-15 22:13:36'), +(4368,160,1,15112,'2.99','2005-08-22 12:21:49','2006-02-15 22:13:36'), +(4369,160,2,15642,'2.99','2005-08-23 08:09:11','2006-02-15 22:13:36'), +(4370,160,1,15962,'4.99','2005-08-23 19:42:04','2006-02-15 22:13:36'), +(4371,160,1,16027,'3.99','2005-08-23 21:49:33','2006-02-15 22:13:36'), +(4372,161,2,428,'2.99','2005-05-27 16:10:58','2006-02-15 22:13:36'), +(4373,161,2,477,'3.99','2005-05-27 22:33:33','2006-02-15 22:13:36'), +(4374,161,1,520,'5.99','2005-05-28 03:27:37','2006-02-15 22:13:36'), +(4375,161,2,539,'0.99','2005-05-28 06:26:16','2006-02-15 22:13:36'), +(4376,161,1,612,'2.99','2005-05-28 15:24:54','2006-02-15 22:13:36'), +(4377,161,1,1003,'0.99','2005-05-31 00:48:20','2006-02-15 22:13:36'), +(4378,161,1,1856,'2.99','2005-06-17 01:02:00','2006-02-15 22:13:36'), +(4379,161,1,3075,'3.99','2005-06-20 14:52:19','2006-02-15 22:13:36'), +(4380,161,1,3948,'4.99','2005-07-06 21:45:53','2006-02-15 22:13:36'), +(4381,161,2,4187,'0.99','2005-07-07 10:41:31','2006-02-15 22:13:36'), +(4382,161,2,4248,'6.99','2005-07-07 13:59:20','2006-02-15 22:13:36'), +(4383,161,1,4490,'2.99','2005-07-08 01:26:32','2006-02-15 22:13:36'), +(4384,161,2,5349,'6.99','2005-07-09 17:35:35','2006-02-15 22:13:36'), +(4385,161,2,6873,'4.99','2005-07-12 20:20:50','2006-02-15 22:13:36'), +(4386,161,1,7003,'2.99','2005-07-27 01:32:06','2006-02-15 22:13:36'), +(4387,161,2,8774,'4.99','2005-07-29 20:05:04','2006-02-15 22:13:36'), +(4388,161,1,9135,'4.99','2005-07-30 10:06:53','2006-02-15 22:13:36'), +(4389,161,2,9421,'0.99','2005-07-30 21:08:32','2006-02-15 22:13:36'), +(4390,161,1,10241,'5.99','2005-08-01 02:12:25','2006-02-15 22:13:36'), +(4391,161,1,10355,'0.99','2005-08-01 05:47:37','2006-02-15 22:13:37'), +(4392,161,1,10637,'2.99','2005-08-01 15:44:09','2006-02-15 22:13:37'), +(4393,161,1,10863,'6.99','2005-08-02 00:18:07','2006-02-15 22:13:37'), +(4394,161,2,10939,'0.99','2005-08-02 03:06:20','2006-02-15 22:13:37'), +(4395,161,1,11838,'2.99','2005-08-17 13:06:00','2006-02-15 22:13:37'), +(4396,161,2,14150,'0.99','2005-08-21 02:23:03','2006-02-15 22:13:37'), +(4397,161,1,14370,'7.99','2005-08-21 09:35:14','2006-02-15 22:13:37'), +(4398,161,1,15000,'0.99','2005-08-22 07:54:58','2006-02-15 22:13:37'), +(4399,161,2,15045,'5.99','2005-08-22 09:53:23','2006-02-15 22:13:37'), +(4400,161,2,15150,'2.99','2005-08-22 14:12:05','2006-02-15 22:13:37'), +(4401,161,1,15420,'5.99','2005-08-22 23:55:51','2006-02-15 22:13:37'), +(4402,162,1,285,'1.99','2005-05-26 19:41:40','2006-02-15 22:13:37'), +(4403,162,1,501,'4.99','2005-05-28 01:09:36','2006-02-15 22:13:37'), +(4404,162,1,688,'4.99','2005-05-29 00:45:24','2006-02-15 22:13:37'), +(4405,162,2,1339,'4.99','2005-06-15 12:21:56','2006-02-15 22:13:37'), +(4406,162,1,2366,'0.99','2005-06-18 13:46:39','2006-02-15 22:13:37'), +(4407,162,1,2547,'4.99','2005-06-19 02:44:17','2006-02-15 22:13:37'), +(4408,162,1,3040,'0.99','2005-06-20 12:34:13','2006-02-15 22:13:37'), +(4409,162,2,3180,'0.99','2005-06-20 22:48:44','2006-02-15 22:13:37'), +(4410,162,2,4982,'2.99','2005-07-09 00:30:52','2006-02-15 22:13:37'), +(4411,162,2,8478,'4.99','2005-07-29 08:40:36','2006-02-15 22:13:37'), +(4412,162,1,8582,'4.99','2005-07-29 12:03:27','2006-02-15 22:13:37'), +(4413,162,2,9167,'4.99','2005-07-30 11:30:37','2006-02-15 22:13:37'), +(4414,162,1,9726,'7.99','2005-07-31 08:37:07','2006-02-15 22:13:37'), +(4415,162,1,9775,'0.99','2005-07-31 10:00:00','2006-02-15 22:13:37'), +(4416,162,2,10093,'5.99','2005-07-31 20:30:32','2006-02-15 22:13:37'), +(4417,162,2,11012,'0.99','2005-08-02 05:09:42','2006-02-15 22:13:37'), +(4418,162,1,13288,'4.99','2005-08-19 18:30:10','2006-02-15 22:13:37'), +(4419,162,2,14301,'1.99','2005-08-21 07:19:48','2006-02-15 22:13:37'), +(4420,162,1,15332,'4.99','2005-08-22 20:41:53','2006-02-15 22:13:37'), +(4421,162,1,14220,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:37'), +(4422,163,2,1265,'4.99','2005-06-15 07:00:50','2006-02-15 22:13:37'), +(4423,163,2,2000,'2.99','2005-06-17 11:32:30','2006-02-15 22:13:37'), +(4424,163,2,2110,'7.99','2005-06-17 19:45:49','2006-02-15 22:13:37'), +(4425,163,2,2536,'5.99','2005-06-19 01:41:34','2006-02-15 22:13:37'), +(4426,163,1,2994,'6.99','2005-06-20 09:17:05','2006-02-15 22:13:37'), +(4427,163,1,3179,'0.99','2005-06-20 22:37:59','2006-02-15 22:13:37'), +(4428,163,2,3915,'3.99','2005-07-06 20:16:46','2006-02-15 22:13:37'), +(4429,163,1,4126,'1.99','2005-07-07 07:24:11','2006-02-15 22:13:37'), +(4430,163,2,5549,'4.99','2005-07-10 02:58:29','2006-02-15 22:13:37'), +(4431,163,1,5574,'10.99','2005-07-10 03:54:38','2006-02-15 22:13:37'), +(4432,163,1,6109,'0.99','2005-07-11 07:20:57','2006-02-15 22:13:37'), +(4433,163,1,6831,'1.99','2005-07-12 18:44:04','2006-02-15 22:13:38'), +(4434,163,1,7303,'1.99','2005-07-27 12:54:39','2006-02-15 22:13:38'), +(4435,163,1,7403,'2.99','2005-07-27 16:22:09','2006-02-15 22:13:38'), +(4436,163,2,8040,'0.99','2005-07-28 16:39:43','2006-02-15 22:13:38'), +(4437,163,2,8063,'4.99','2005-07-28 17:15:11','2006-02-15 22:13:38'), +(4438,163,2,8403,'4.99','2005-07-29 06:26:39','2006-02-15 22:13:38'), +(4439,163,2,10245,'0.99','2005-08-01 02:24:09','2006-02-15 22:13:38'), +(4440,163,2,11623,'2.99','2005-08-17 04:15:47','2006-02-15 22:13:38'), +(4441,163,2,11940,'4.99','2005-08-17 16:56:28','2006-02-15 22:13:38'), +(4442,163,1,12154,'2.99','2005-08-18 00:23:56','2006-02-15 22:13:38'), +(4443,163,2,12973,'2.99','2005-08-19 06:48:11','2006-02-15 22:13:38'), +(4444,163,2,13543,'7.99','2005-08-20 03:43:13','2006-02-15 22:13:38'), +(4445,163,2,14275,'4.99','2005-08-21 06:30:30','2006-02-15 22:13:38'), +(4446,163,2,14427,'5.99','2005-08-21 11:26:06','2006-02-15 22:13:38'), +(4447,163,1,15520,'8.99','2005-08-23 03:30:45','2006-02-15 22:13:38'), +(4448,163,1,15847,'0.99','2005-08-23 15:39:38','2006-02-15 22:13:38'), +(4449,163,2,11754,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:38'), +(4450,163,1,15282,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:38'), +(4451,164,2,1011,'1.99','2005-05-31 02:05:39','2006-02-15 22:13:38'), +(4452,164,2,1713,'4.99','2005-06-16 14:28:33','2006-02-15 22:13:38'), +(4453,164,2,2589,'2.99','2005-06-19 05:21:27','2006-02-15 22:13:38'), +(4454,164,1,3082,'8.99','2005-06-20 15:32:11','2006-02-15 22:13:38'), +(4455,164,2,4548,'4.99','2005-07-08 04:21:54','2006-02-15 22:13:38'), +(4456,164,1,5895,'3.99','2005-07-10 20:13:19','2006-02-15 22:13:38'), +(4457,164,1,6393,'0.99','2005-07-11 22:28:12','2006-02-15 22:13:38'), +(4458,164,2,6558,'2.99','2005-07-12 05:16:07','2006-02-15 22:13:38'), +(4459,164,1,6637,'4.99','2005-07-12 09:57:39','2006-02-15 22:13:38'), +(4460,164,2,6702,'0.99','2005-07-12 12:48:03','2006-02-15 22:13:38'), +(4461,164,1,6980,'3.99','2005-07-27 00:50:30','2006-02-15 22:13:38'), +(4462,164,1,7227,'6.99','2005-07-27 09:53:43','2006-02-15 22:13:38'), +(4463,164,2,8135,'3.99','2005-07-28 20:03:25','2006-02-15 22:13:38'), +(4464,164,2,8824,'4.99','2005-07-29 22:22:58','2006-02-15 22:13:38'), +(4465,164,2,11175,'2.99','2005-08-02 10:38:47','2006-02-15 22:13:38'), +(4466,164,2,13453,'5.99','2005-08-20 00:30:51','2006-02-15 22:13:38'), +(4467,165,2,338,'4.99','2005-05-27 03:42:52','2006-02-15 22:13:38'), +(4468,165,1,2013,'3.99','2005-06-17 12:03:01','2006-02-15 22:13:38'), +(4469,165,2,3195,'2.99','2005-06-21 00:02:10','2006-02-15 22:13:38'), +(4470,165,2,3531,'4.99','2005-07-06 01:24:08','2006-02-15 22:13:38'), +(4471,165,1,3784,'5.99','2005-07-06 13:57:56','2006-02-15 22:13:38'), +(4472,165,2,4304,'0.99','2005-07-07 17:01:19','2006-02-15 22:13:38'), +(4473,165,2,4945,'2.99','2005-07-08 22:45:02','2006-02-15 22:13:38'), +(4474,165,1,5472,'4.99','2005-07-09 23:16:40','2006-02-15 22:13:38'), +(4475,165,2,5658,'4.99','2005-07-10 07:34:08','2006-02-15 22:13:38'), +(4476,165,2,5901,'6.99','2005-07-10 20:22:12','2006-02-15 22:13:39'), +(4477,165,1,5973,'0.99','2005-07-11 00:09:17','2006-02-15 22:13:39'), +(4478,165,1,7074,'2.99','2005-07-27 04:06:24','2006-02-15 22:13:39'), +(4479,165,1,8608,'0.99','2005-07-29 13:18:52','2006-02-15 22:13:39'), +(4480,165,2,9182,'7.99','2005-07-30 12:06:58','2006-02-15 22:13:39'), +(4481,165,2,9685,'4.99','2005-07-31 06:49:18','2006-02-15 22:13:39'), +(4482,165,1,10565,'4.99','2005-08-01 13:08:27','2006-02-15 22:13:39'), +(4483,165,1,11484,'2.99','2005-08-02 22:28:23','2006-02-15 22:13:39'), +(4484,165,2,12643,'4.99','2005-08-18 18:21:06','2006-02-15 22:13:39'), +(4485,165,2,15007,'1.99','2005-08-22 08:21:21','2006-02-15 22:13:39'), +(4486,165,1,15801,'3.99','2005-08-23 14:26:04','2006-02-15 22:13:39'), +(4487,165,2,15834,'5.99','2005-08-23 15:23:50','2006-02-15 22:13:39'), +(4488,166,1,662,'1.99','2005-05-28 21:09:31','2006-02-15 22:13:39'), +(4489,166,2,1412,'2.99','2005-06-15 17:09:48','2006-02-15 22:13:39'), +(4490,166,1,2211,'3.99','2005-06-18 02:29:10','2006-02-15 22:13:39'), +(4491,166,1,2874,'5.99','2005-06-20 00:42:26','2006-02-15 22:13:39'), +(4492,166,1,3085,'0.99','2005-06-20 15:42:33','2006-02-15 22:13:39'), +(4493,166,2,3606,'2.99','2005-07-06 05:28:02','2006-02-15 22:13:39'), +(4494,166,1,3642,'2.99','2005-07-06 07:18:20','2006-02-15 22:13:39'), +(4495,166,2,4389,'6.99','2005-07-07 20:58:58','2006-02-15 22:13:39'), +(4496,166,1,4658,'0.99','2005-07-08 09:51:11','2006-02-15 22:13:39'), +(4497,166,1,5184,'4.99','2005-07-09 10:14:34','2006-02-15 22:13:39'), +(4498,166,2,5380,'4.99','2005-07-09 19:08:44','2006-02-15 22:13:39'), +(4499,166,1,5646,'2.99','2005-07-10 07:08:09','2006-02-15 22:13:39'), +(4500,166,1,5855,'7.99','2005-07-10 17:54:06','2006-02-15 22:13:39'), +(4501,166,2,6237,'0.99','2005-07-11 14:19:12','2006-02-15 22:13:39'), +(4502,166,2,6882,'2.99','2005-07-12 20:50:39','2006-02-15 22:13:39'), +(4503,166,1,7581,'2.99','2005-07-27 23:14:35','2006-02-15 22:13:39'), +(4504,166,1,8052,'5.99','2005-07-28 16:57:31','2006-02-15 22:13:39'), +(4505,166,1,9009,'8.99','2005-07-30 05:12:01','2006-02-15 22:13:39'), +(4506,166,2,10422,'7.99','2005-08-01 08:17:11','2006-02-15 22:13:39'), +(4507,166,2,12683,'4.99','2005-08-18 19:50:43','2006-02-15 22:13:39'), +(4508,166,1,12968,'4.99','2005-08-19 06:38:18','2006-02-15 22:13:39'), +(4509,166,2,13582,'4.99','2005-08-20 05:28:11','2006-02-15 22:13:39'), +(4510,166,2,13901,'7.99','2005-08-20 16:06:53','2006-02-15 22:13:39'), +(4511,166,2,14261,'5.99','2005-08-21 06:07:24','2006-02-15 22:13:39'), +(4512,166,2,14281,'2.99','2005-08-21 06:40:48','2006-02-15 22:13:39'), +(4513,166,1,15213,'5.99','2005-08-22 16:49:02','2006-02-15 22:13:39'), +(4514,166,2,15216,'2.99','2005-08-22 16:57:02','2006-02-15 22:13:39'), +(4515,166,2,15806,'1.99','2005-08-23 14:31:50','2006-02-15 22:13:39'), +(4516,167,1,280,'2.99','2005-05-26 18:36:58','2006-02-15 22:13:39'), +(4517,167,1,365,'2.99','2005-05-27 07:31:20','2006-02-15 22:13:39'), +(4518,167,1,927,'4.99','2005-05-30 12:16:40','2006-02-15 22:13:40'), +(4519,167,1,1416,'3.99','2005-06-15 17:44:57','2006-02-15 22:13:40'), +(4520,167,1,1509,'5.99','2005-06-15 22:35:53','2006-02-15 22:13:40'), +(4521,167,2,2381,'5.99','2005-06-18 15:00:30','2006-02-15 22:13:40'), +(4522,167,2,3518,'4.99','2005-07-06 00:56:03','2006-02-15 22:13:40'), +(4523,167,2,4493,'0.99','2005-07-08 01:40:24','2006-02-15 22:13:40'), +(4524,167,2,5131,'0.99','2005-07-09 07:35:03','2006-02-15 22:13:40'), +(4525,167,1,5178,'4.99','2005-07-09 09:59:52','2006-02-15 22:13:40'), +(4526,167,1,5191,'0.99','2005-07-09 10:26:48','2006-02-15 22:13:40'), +(4527,167,1,5413,'4.99','2005-07-09 20:28:42','2006-02-15 22:13:40'), +(4528,167,1,5781,'2.99','2005-07-10 13:49:30','2006-02-15 22:13:40'), +(4529,167,2,6269,'4.99','2005-07-11 15:58:43','2006-02-15 22:13:40'), +(4530,167,1,7608,'4.99','2005-07-28 00:08:36','2006-02-15 22:13:40'), +(4531,167,1,8092,'2.99','2005-07-28 18:28:07','2006-02-15 22:13:40'), +(4532,167,2,8227,'4.99','2005-07-29 00:02:22','2006-02-15 22:13:40'), +(4533,167,1,8318,'2.99','2005-07-29 03:44:30','2006-02-15 22:13:40'), +(4534,167,1,8793,'0.99','2005-07-29 20:57:22','2006-02-15 22:13:40'), +(4535,167,2,8864,'0.99','2005-07-29 23:52:12','2006-02-15 22:13:40'), +(4536,167,2,9563,'4.99','2005-07-31 02:28:39','2006-02-15 22:13:40'), +(4537,167,2,10285,'3.99','2005-08-01 03:35:11','2006-02-15 22:13:40'), +(4538,167,1,12642,'4.99','2005-08-18 18:19:16','2006-02-15 22:13:40'), +(4539,167,2,12717,'4.99','2005-08-18 21:15:40','2006-02-15 22:13:40'), +(4540,167,1,12978,'4.99','2005-08-19 06:57:27','2006-02-15 22:13:40'), +(4541,167,1,13825,'6.99','2005-08-20 13:43:22','2006-02-15 22:13:40'), +(4542,167,1,13870,'1.99','2005-08-20 15:09:16','2006-02-15 22:13:40'), +(4543,167,1,15003,'3.99','2005-08-22 08:11:24','2006-02-15 22:13:40'), +(4544,167,1,15050,'0.99','2005-08-22 10:07:52','2006-02-15 22:13:40'), +(4545,167,2,15478,'0.99','2005-08-23 01:50:31','2006-02-15 22:13:40'), +(4546,167,2,15530,'4.99','2005-08-23 03:50:48','2006-02-15 22:13:40'), +(4547,167,2,15915,'4.99','2005-08-23 17:52:01','2006-02-15 22:13:40'), +(4548,168,2,404,'0.99','2005-05-27 13:31:51','2006-02-15 22:13:40'), +(4549,168,1,488,'4.99','2005-05-28 00:07:50','2006-02-15 22:13:40'), +(4550,168,2,1222,'4.99','2005-06-15 03:38:49','2006-02-15 22:13:40'), +(4551,168,1,3530,'2.99','2005-07-06 01:22:45','2006-02-15 22:13:40'), +(4552,168,1,4308,'5.99','2005-07-07 17:29:16','2006-02-15 22:13:40'), +(4553,168,2,4363,'5.99','2005-07-07 19:43:28','2006-02-15 22:13:40'), +(4554,168,2,4953,'2.99','2005-07-08 23:09:48','2006-02-15 22:13:40'), +(4555,168,1,5459,'0.99','2005-07-09 22:43:56','2006-02-15 22:13:40'), +(4556,168,1,5907,'5.99','2005-07-10 20:41:41','2006-02-15 22:13:40'), +(4557,168,1,6334,'5.99','2005-07-11 19:20:44','2006-02-15 22:13:40'), +(4558,168,2,6444,'0.99','2005-07-12 00:36:02','2006-02-15 22:13:40'), +(4559,168,2,6809,'3.99','2005-07-12 17:51:54','2006-02-15 22:13:41'), +(4560,168,2,8352,'1.99','2005-07-29 04:52:01','2006-02-15 22:13:41'), +(4561,168,1,8527,'1.99','2005-07-29 10:21:00','2006-02-15 22:13:41'), +(4562,168,2,8659,'6.99','2005-07-29 15:26:31','2006-02-15 22:13:41'), +(4563,168,2,8883,'1.99','2005-07-30 00:24:48','2006-02-15 22:13:41'), +(4564,168,2,9197,'4.99','2005-07-30 12:31:36','2006-02-15 22:13:41'), +(4565,168,1,9418,'4.99','2005-07-30 21:00:52','2006-02-15 22:13:41'), +(4566,168,2,9857,'6.99','2005-07-31 13:00:53','2006-02-15 22:13:41'), +(4567,168,2,9899,'4.99','2005-07-31 14:12:36','2006-02-15 22:13:41'), +(4568,168,2,10270,'0.99','2005-08-01 03:10:24','2006-02-15 22:13:41'), +(4569,168,1,11551,'0.99','2005-08-17 01:03:49','2006-02-15 22:13:41'), +(4570,168,1,11627,'10.99','2005-08-17 04:25:47','2006-02-15 22:13:41'), +(4571,168,1,11631,'1.99','2005-08-17 04:28:56','2006-02-15 22:13:41'), +(4572,168,1,12545,'6.99','2005-08-18 14:28:00','2006-02-15 22:13:41'), +(4573,168,1,12781,'2.99','2005-08-18 23:50:24','2006-02-15 22:13:41'), +(4574,168,1,13018,'8.99','2005-08-19 08:04:50','2006-02-15 22:13:41'), +(4575,168,2,13532,'4.99','2005-08-20 03:29:28','2006-02-15 22:13:41'), +(4576,168,2,13811,'0.99','2005-08-20 13:00:30','2006-02-15 22:13:41'), +(4577,168,1,14090,'2.99','2005-08-21 00:11:16','2006-02-15 22:13:41'), +(4578,168,1,15033,'3.99','2005-08-22 09:25:24','2006-02-15 22:13:41'), +(4579,168,1,15165,'2.99','2005-08-22 14:59:30','2006-02-15 22:13:41'), +(4580,168,2,15683,'2.99','2005-08-23 09:38:17','2006-02-15 22:13:41'), +(4581,168,1,15894,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:41'), +(4582,169,2,527,'3.99','2005-05-28 04:28:38','2006-02-15 22:13:41'), +(4583,169,1,1087,'4.99','2005-05-31 11:18:08','2006-02-15 22:13:41'), +(4584,169,1,2023,'4.99','2005-06-17 12:52:58','2006-02-15 22:13:41'), +(4585,169,1,3261,'2.99','2005-06-21 04:07:41','2006-02-15 22:13:41'), +(4586,169,1,3493,'8.99','2005-07-05 23:46:19','2006-02-15 22:13:41'), +(4587,169,1,4687,'4.99','2005-07-08 10:54:19','2006-02-15 22:13:41'), +(4588,169,1,5066,'2.99','2005-07-09 04:48:50','2006-02-15 22:13:41'), +(4589,169,1,6143,'3.99','2005-07-11 09:02:37','2006-02-15 22:13:41'), +(4590,169,2,6453,'4.99','2005-07-12 00:59:53','2006-02-15 22:13:41'), +(4591,169,2,6488,'9.99','2005-07-12 02:20:09','2006-02-15 22:13:41'), +(4592,169,2,7187,'6.99','2005-07-27 08:27:58','2006-02-15 22:13:41'), +(4593,169,1,7597,'0.99','2005-07-27 23:35:49','2006-02-15 22:13:41'), +(4594,169,2,8558,'4.99','2005-07-29 11:24:49','2006-02-15 22:13:41'), +(4595,169,2,9203,'0.99','2005-07-30 12:43:40','2006-02-15 22:13:41'), +(4596,169,2,11687,'5.99','2005-08-17 06:39:59','2006-02-15 22:13:41'), +(4597,169,1,11898,'5.99','2005-08-17 15:24:12','2006-02-15 22:13:41'), +(4598,169,2,13198,'2.99','2005-08-19 14:47:18','2006-02-15 22:13:41'), +(4599,169,2,13237,'1.99','2005-08-19 16:18:36','2006-02-15 22:13:41'), +(4600,169,2,14435,'0.99','2005-08-21 11:44:37','2006-02-15 22:13:42'), +(4601,169,2,14805,'4.99','2005-08-22 00:52:01','2006-02-15 22:13:42'), +(4602,169,2,15534,'0.99','2005-08-23 03:55:54','2006-02-15 22:13:42'), +(4603,169,2,15680,'4.99','2005-08-23 09:33:22','2006-02-15 22:13:42'), +(4604,170,1,211,'2.99','2005-05-26 08:33:10','2006-02-15 22:13:42'), +(4605,170,1,377,'5.99','2005-05-27 09:04:05','2006-02-15 22:13:42'), +(4606,170,2,504,'0.99','2005-05-28 02:05:34','2006-02-15 22:13:42'), +(4607,170,2,2117,'0.99','2005-06-17 20:24:00','2006-02-15 22:13:42'), +(4608,170,2,2413,'8.99','2005-06-18 16:59:34','2006-02-15 22:13:42'), +(4609,170,2,3651,'4.99','2005-07-06 07:40:31','2006-02-15 22:13:42'), +(4610,170,1,3749,'4.99','2005-07-06 12:18:03','2006-02-15 22:13:42'), +(4611,170,2,4113,'4.99','2005-07-07 06:49:52','2006-02-15 22:13:42'), +(4612,170,2,4468,'0.99','2005-07-08 00:17:59','2006-02-15 22:13:42'), +(4613,170,2,5075,'0.99','2005-07-09 05:12:07','2006-02-15 22:13:42'), +(4614,170,1,5573,'4.99','2005-07-10 03:50:47','2006-02-15 22:13:42'), +(4615,170,2,5685,'7.99','2005-07-10 09:01:38','2006-02-15 22:13:42'), +(4616,170,2,5808,'2.99','2005-07-10 15:17:33','2006-02-15 22:13:42'), +(4617,170,1,7999,'7.99','2005-07-28 15:10:14','2006-02-15 22:13:42'), +(4618,170,2,9517,'2.99','2005-07-31 00:41:23','2006-02-15 22:13:42'), +(4619,170,1,9817,'2.99','2005-07-31 11:33:31','2006-02-15 22:13:42'), +(4620,170,1,10102,'9.99','2005-07-31 20:49:10','2006-02-15 22:13:42'), +(4621,170,2,10481,'5.99','2005-08-01 10:17:26','2006-02-15 22:13:42'), +(4622,170,1,11039,'0.99','2005-08-02 06:00:53','2006-02-15 22:13:42'), +(4623,170,2,12706,'3.99','2005-08-18 20:44:34','2006-02-15 22:13:42'), +(4624,170,1,12967,'3.99','2005-08-19 06:37:51','2006-02-15 22:13:42'), +(4625,170,1,13081,'0.99','2005-08-19 10:19:06','2006-02-15 22:13:42'), +(4626,170,2,13862,'6.99','2005-08-20 14:57:01','2006-02-15 22:13:42'), +(4627,170,2,14022,'8.99','2005-08-20 21:08:49','2006-02-15 22:13:42'), +(4628,170,2,14675,'2.99','2005-08-21 20:01:51','2006-02-15 22:13:42'), +(4629,170,1,15549,'7.99','2005-08-23 04:27:06','2006-02-15 22:13:42'), +(4630,171,2,804,'9.99','2005-05-29 18:10:24','2006-02-15 22:13:42'), +(4631,171,2,1676,'0.99','2005-06-16 11:06:09','2006-02-15 22:13:42'), +(4632,171,2,2004,'4.99','2005-06-17 11:43:38','2006-02-15 22:13:42'), +(4633,171,2,2199,'5.99','2005-06-18 01:57:56','2006-02-15 22:13:42'), +(4634,171,1,2497,'4.99','2005-06-18 22:50:40','2006-02-15 22:13:42'), +(4635,171,2,2599,'5.99','2005-06-19 06:06:07','2006-02-15 22:13:42'), +(4636,171,2,2788,'2.99','2005-06-19 18:48:11','2006-02-15 22:13:42'), +(4637,171,2,3338,'6.99','2005-06-21 10:27:31','2006-02-15 22:13:42'), +(4638,171,1,3621,'0.99','2005-07-06 06:03:55','2006-02-15 22:13:42'), +(4639,171,2,3745,'2.99','2005-07-06 12:10:32','2006-02-15 22:13:42'), +(4640,171,1,5660,'5.99','2005-07-10 07:46:12','2006-02-15 22:13:42'), +(4641,171,1,5986,'4.99','2005-07-11 00:54:56','2006-02-15 22:13:43'), +(4642,171,1,6766,'2.99','2005-07-12 15:32:01','2006-02-15 22:13:43'), +(4643,171,2,6774,'0.99','2005-07-12 15:56:08','2006-02-15 22:13:43'), +(4644,171,1,7037,'3.99','2005-07-27 03:06:44','2006-02-15 22:13:43'), +(4645,171,2,9066,'4.99','2005-07-30 07:28:54','2006-02-15 22:13:43'), +(4646,171,2,9084,'5.99','2005-07-30 08:14:29','2006-02-15 22:13:43'), +(4647,171,2,10622,'4.99','2005-08-01 15:12:00','2006-02-15 22:13:43'), +(4648,171,1,12600,'4.99','2005-08-18 16:44:24','2006-02-15 22:13:43'), +(4649,171,1,12962,'5.99','2005-08-19 06:22:48','2006-02-15 22:13:43'), +(4650,171,2,13087,'6.99','2005-08-19 10:33:52','2006-02-15 22:13:43'), +(4651,171,2,13292,'0.99','2005-08-19 18:35:32','2006-02-15 22:13:43'), +(4652,171,2,13433,'0.99','2005-08-19 23:30:53','2006-02-15 22:13:43'), +(4653,171,1,14270,'1.99','2005-08-21 06:22:18','2006-02-15 22:13:43'), +(4654,171,2,14615,'9.99','2005-08-21 18:06:32','2006-02-15 22:13:43'), +(4655,171,2,15810,'0.99','2005-08-23 14:43:15','2006-02-15 22:13:43'), +(4656,172,2,449,'3.99','2005-05-27 19:13:15','2006-02-15 22:13:43'), +(4657,172,1,685,'6.99','2005-05-29 00:17:51','2006-02-15 22:13:43'), +(4658,172,1,837,'0.99','2005-05-30 00:02:08','2006-02-15 22:13:43'), +(4659,172,2,1507,'0.99','2005-06-15 22:25:26','2006-02-15 22:13:43'), +(4660,172,1,2052,'0.99','2005-06-17 15:14:43','2006-02-15 22:13:43'), +(4661,172,2,3032,'1.99','2005-06-20 11:58:30','2006-02-15 22:13:43'), +(4662,172,1,4820,'5.99','2005-07-08 17:25:23','2006-02-15 22:13:43'), +(4663,172,1,4821,'4.99','2005-07-08 17:28:08','2006-02-15 22:13:43'), +(4664,172,2,4878,'6.99','2005-07-08 19:33:49','2006-02-15 22:13:43'), +(4665,172,2,6246,'7.99','2005-07-11 14:57:51','2006-02-15 22:13:43'), +(4666,172,1,6380,'0.99','2005-07-11 21:55:40','2006-02-15 22:13:43'), +(4667,172,1,6875,'5.99','2005-07-12 20:23:05','2006-02-15 22:13:43'), +(4668,172,1,7122,'6.99','2005-07-27 06:03:18','2006-02-15 22:13:43'), +(4669,172,1,7135,'2.99','2005-07-27 06:34:32','2006-02-15 22:13:43'), +(4670,172,1,7194,'3.99','2005-07-27 08:39:58','2006-02-15 22:13:43'), +(4671,172,2,7261,'2.99','2005-07-27 11:15:01','2006-02-15 22:13:43'), +(4672,172,1,7638,'4.99','2005-07-28 01:13:26','2006-02-15 22:13:43'), +(4673,172,2,8944,'6.99','2005-07-30 03:11:44','2006-02-15 22:13:43'), +(4674,172,1,9118,'2.99','2005-07-30 09:24:18','2006-02-15 22:13:43'), +(4675,172,2,9218,'5.99','2005-07-30 13:14:35','2006-02-15 22:13:43'), +(4676,172,1,10312,'3.99','2005-08-01 04:29:06','2006-02-15 22:13:43'), +(4677,172,2,10621,'0.99','2005-08-01 15:10:26','2006-02-15 22:13:43'), +(4678,172,2,11499,'6.99','2005-08-16 22:54:12','2006-02-15 22:13:43'), +(4679,172,2,12350,'4.99','2005-08-18 07:29:46','2006-02-15 22:13:43'), +(4680,172,2,12638,'8.99','2005-08-18 18:11:39','2006-02-15 22:13:43'), +(4681,172,2,13067,'5.99','2005-08-19 09:51:17','2006-02-15 22:13:43'), +(4682,172,2,13320,'4.99','2005-08-19 19:35:33','2006-02-15 22:13:44'), +(4683,172,1,13342,'0.99','2005-08-19 20:21:36','2006-02-15 22:13:44'), +(4684,172,2,13937,'4.99','2005-08-20 17:22:51','2006-02-15 22:13:44'), +(4685,172,1,14991,'4.99','2005-08-22 07:50:44','2006-02-15 22:13:44'), +(4686,172,2,15637,'2.99','2005-08-23 07:53:38','2006-02-15 22:13:44'), +(4687,172,1,15902,'3.99','2005-08-23 17:28:03','2006-02-15 22:13:44'), +(4688,172,2,16038,'3.99','2005-08-23 22:14:31','2006-02-15 22:13:44'), +(4689,173,2,578,'2.99','2005-05-28 11:15:48','2006-02-15 22:13:44'), +(4690,173,1,628,'4.99','2005-05-28 17:05:46','2006-02-15 22:13:44'), +(4691,173,2,1188,'2.99','2005-06-15 01:04:07','2006-02-15 22:13:44'), +(4692,173,2,2435,'4.99','2005-06-18 18:12:26','2006-02-15 22:13:44'), +(4693,173,1,2602,'2.99','2005-06-19 06:10:08','2006-02-15 22:13:44'), +(4694,173,2,3224,'0.99','2005-06-21 02:11:36','2006-02-15 22:13:44'), +(4695,173,1,3336,'4.99','2005-06-21 10:14:27','2006-02-15 22:13:44'), +(4696,173,2,3717,'0.99','2005-07-06 10:53:34','2006-02-15 22:13:44'), +(4697,173,1,4904,'7.99','2005-07-08 20:53:27','2006-02-15 22:13:44'), +(4698,173,2,5430,'2.99','2005-07-09 21:19:54','2006-02-15 22:13:44'), +(4699,173,2,5485,'4.99','2005-07-09 23:55:25','2006-02-15 22:13:44'), +(4700,173,1,5488,'2.99','2005-07-10 00:02:06','2006-02-15 22:13:44'), +(4701,173,2,5531,'2.99','2005-07-10 02:13:59','2006-02-15 22:13:44'), +(4702,173,1,5615,'3.99','2005-07-10 05:18:51','2006-02-15 22:13:44'), +(4703,173,2,6021,'4.99','2005-07-11 02:10:18','2006-02-15 22:13:44'), +(4704,173,1,7644,'0.99','2005-07-28 01:27:33','2006-02-15 22:13:44'), +(4705,173,2,8299,'2.99','2005-07-29 02:56:00','2006-02-15 22:13:44'), +(4706,173,2,8808,'4.99','2005-07-29 21:39:07','2006-02-15 22:13:44'), +(4707,173,2,8829,'8.99','2005-07-29 22:33:34','2006-02-15 22:13:44'), +(4708,173,1,9097,'4.99','2005-07-30 08:40:35','2006-02-15 22:13:44'), +(4709,173,2,9512,'2.99','2005-07-31 00:26:30','2006-02-15 22:13:44'), +(4710,173,1,10351,'5.99','2005-08-01 05:32:13','2006-02-15 22:13:44'), +(4711,173,2,12073,'2.99','2005-08-17 21:50:39','2006-02-15 22:13:44'), +(4712,173,1,12282,'6.99','2005-08-18 04:54:20','2006-02-15 22:13:44'), +(4713,173,2,12501,'4.99','2005-08-18 13:13:13','2006-02-15 22:13:44'), +(4714,173,1,14654,'2.99','2005-08-21 19:36:59','2006-02-15 22:13:44'), +(4715,173,2,15483,'0.99','2005-08-23 02:02:53','2006-02-15 22:13:44'), +(4716,173,1,15775,'8.99','2005-08-23 13:25:44','2006-02-15 22:13:44'), +(4717,173,1,16010,'2.99','2005-08-23 21:10:24','2006-02-15 22:13:44'), +(4718,174,1,41,'5.99','2005-05-25 05:12:29','2006-02-15 22:13:44'), +(4719,174,2,1071,'4.99','2005-05-31 09:48:56','2006-02-15 22:13:44'), +(4720,174,2,1566,'7.99','2005-06-16 03:13:20','2006-02-15 22:13:44'), +(4721,174,1,1609,'0.99','2005-06-16 06:34:59','2006-02-15 22:13:44'), +(4722,174,1,2326,'5.99','2005-06-18 10:14:22','2006-02-15 22:13:44'), +(4723,174,2,3446,'1.99','2005-06-21 20:45:51','2006-02-15 22:13:45'), +(4724,174,2,4803,'1.99','2005-07-08 16:56:34','2006-02-15 22:13:45'), +(4725,174,2,5414,'4.99','2005-07-09 20:29:36','2006-02-15 22:13:45'), +(4726,174,1,6909,'4.99','2005-07-12 22:09:30','2006-02-15 22:13:45'), +(4727,174,2,8348,'7.99','2005-07-29 04:49:26','2006-02-15 22:13:45'), +(4728,174,1,8754,'4.99','2005-07-29 19:18:30','2006-02-15 22:13:45'), +(4729,174,1,9301,'4.99','2005-07-30 16:34:29','2006-02-15 22:13:45'), +(4730,174,1,9847,'2.99','2005-07-31 12:33:43','2006-02-15 22:13:45'), +(4731,174,1,10363,'2.99','2005-08-01 06:01:52','2006-02-15 22:13:45'), +(4732,174,2,10398,'4.99','2005-08-01 07:11:49','2006-02-15 22:13:45'), +(4733,174,1,10559,'8.99','2005-08-01 13:02:58','2006-02-15 22:13:45'), +(4734,174,1,11525,'0.99','2005-08-17 00:15:31','2006-02-15 22:13:45'), +(4735,174,2,12886,'5.99','2005-08-19 03:38:32','2006-02-15 22:13:45'), +(4736,174,1,13185,'0.99','2005-08-19 14:22:30','2006-02-15 22:13:45'), +(4737,174,1,15892,'1.99','2005-08-23 17:01:00','2006-02-15 22:13:45'), +(4738,174,1,15975,'4.99','2005-08-23 20:06:23','2006-02-15 22:13:45'), +(4739,175,2,1495,'0.99','2005-06-15 21:54:31','2006-02-15 22:13:45'), +(4740,175,2,3266,'4.99','2005-06-21 04:49:07','2006-02-15 22:13:45'), +(4741,175,1,3625,'4.99','2005-07-06 06:12:52','2006-02-15 22:13:45'), +(4742,175,2,4167,'5.99','2005-07-07 09:37:08','2006-02-15 22:13:45'), +(4743,175,1,5232,'1.99','2005-07-09 12:35:08','2006-02-15 22:13:45'), +(4744,175,2,6865,'7.99','2005-07-12 20:02:40','2006-02-15 22:13:45'), +(4745,175,1,7448,'2.99','2005-07-27 18:06:30','2006-02-15 22:13:45'), +(4746,175,1,7771,'0.99','2005-07-28 06:52:12','2006-02-15 22:13:45'), +(4747,175,1,8244,'2.99','2005-07-29 00:35:34','2006-02-15 22:13:45'), +(4748,175,1,8264,'4.99','2005-07-29 01:18:50','2006-02-15 22:13:45'), +(4749,175,1,8440,'3.99','2005-07-29 07:31:26','2006-02-15 22:13:45'), +(4750,175,1,8817,'4.99','2005-07-29 22:09:08','2006-02-15 22:13:45'), +(4751,175,2,9941,'4.99','2005-07-31 15:31:25','2006-02-15 22:13:45'), +(4752,175,2,10229,'7.99','2005-08-01 01:45:26','2006-02-15 22:13:45'), +(4753,175,1,10875,'0.99','2005-08-02 00:31:44','2006-02-15 22:13:45'), +(4754,175,2,11618,'4.99','2005-08-17 04:01:36','2006-02-15 22:13:45'), +(4755,175,1,12509,'0.99','2005-08-18 13:21:52','2006-02-15 22:13:45'), +(4756,175,1,13016,'4.99','2005-08-19 07:57:14','2006-02-15 22:13:45'), +(4757,175,2,13833,'6.99','2005-08-20 14:00:29','2006-02-15 22:13:45'), +(4758,175,2,13997,'6.99','2005-08-20 19:51:28','2006-02-15 22:13:45'), +(4759,175,2,14507,'4.99','2005-08-21 14:32:45','2006-02-15 22:13:45'), +(4760,175,2,14897,'2.99','2005-08-22 04:22:31','2006-02-15 22:13:45'), +(4761,175,2,14060,'3.98','2006-02-14 15:16:03','2006-02-15 22:13:45'), +(4762,175,2,13161,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:46'), +(4763,176,1,172,'0.99','2005-05-26 03:17:42','2006-02-15 22:13:46'), +(4764,176,2,380,'6.99','2005-05-27 09:34:39','2006-02-15 22:13:46'), +(4765,176,1,553,'3.99','2005-05-28 08:14:44','2006-02-15 22:13:46'), +(4766,176,1,663,'1.99','2005-05-28 21:23:02','2006-02-15 22:13:46'), +(4767,176,1,1062,'7.99','2005-05-31 08:38:20','2006-02-15 22:13:46'), +(4768,176,1,1291,'5.99','2005-06-15 08:55:01','2006-02-15 22:13:46'), +(4769,176,1,1741,'7.99','2005-06-16 16:31:37','2006-02-15 22:13:46'), +(4770,176,1,1836,'6.99','2005-06-16 23:13:05','2006-02-15 22:13:46'), +(4771,176,1,2181,'8.99','2005-06-18 00:48:31','2006-02-15 22:13:46'), +(4772,176,1,2218,'2.99','2005-06-18 03:13:13','2006-02-15 22:13:46'), +(4773,176,2,2427,'2.99','2005-06-18 17:45:00','2006-02-15 22:13:46'), +(4774,176,2,2503,'1.99','2005-06-18 23:17:19','2006-02-15 22:13:46'), +(4775,176,1,2922,'4.99','2005-06-20 04:13:47','2006-02-15 22:13:46'), +(4776,176,1,3643,'4.99','2005-07-06 07:20:08','2006-02-15 22:13:46'), +(4777,176,2,3931,'6.99','2005-07-06 21:03:46','2006-02-15 22:13:46'), +(4778,176,2,4121,'3.99','2005-07-07 07:13:50','2006-02-15 22:13:46'), +(4779,176,1,6035,'2.99','2005-07-11 03:01:45','2006-02-15 22:13:46'), +(4780,176,1,6354,'6.99','2005-07-11 20:54:27','2006-02-15 22:13:46'), +(4781,176,1,7017,'4.99','2005-07-27 02:16:03','2006-02-15 22:13:46'), +(4782,176,1,7025,'2.99','2005-07-27 02:40:29','2006-02-15 22:13:46'), +(4783,176,1,7210,'2.99','2005-07-27 09:19:05','2006-02-15 22:13:46'), +(4784,176,2,7521,'2.99','2005-07-27 21:04:42','2006-02-15 22:13:46'), +(4785,176,1,7751,'5.99','2005-07-28 05:56:13','2006-02-15 22:13:46'), +(4786,176,1,8279,'2.99','2005-07-29 01:43:37','2006-02-15 22:13:46'), +(4787,176,2,9145,'6.99','2005-07-30 10:27:55','2006-02-15 22:13:46'), +(4788,176,1,10277,'2.99','2005-08-01 03:22:41','2006-02-15 22:13:46'), +(4789,176,2,10441,'0.99','2005-08-01 08:55:56','2006-02-15 22:13:46'), +(4790,176,1,10862,'2.99','2005-08-02 00:17:34','2006-02-15 22:13:46'), +(4791,176,1,11678,'5.99','2005-08-17 06:07:39','2006-02-15 22:13:46'), +(4792,176,1,12299,'2.99','2005-08-18 05:32:32','2006-02-15 22:13:46'), +(4793,176,1,12718,'2.99','2005-08-18 21:21:44','2006-02-15 22:13:46'), +(4794,176,1,13170,'7.99','2005-08-19 13:45:48','2006-02-15 22:13:46'), +(4795,176,2,13186,'5.99','2005-08-19 14:23:19','2006-02-15 22:13:46'), +(4796,176,1,14083,'7.99','2005-08-20 23:42:31','2006-02-15 22:13:46'), +(4797,176,2,14232,'1.99','2005-08-21 05:07:02','2006-02-15 22:13:46'), +(4798,176,2,15311,'4.99','2005-08-22 19:56:52','2006-02-15 22:13:46'), +(4799,176,1,15933,'4.99','2005-08-23 18:36:44','2006-02-15 22:13:46'), +(4800,177,1,1393,'2.99','2005-06-15 16:12:50','2006-02-15 22:13:46'), +(4801,177,1,1524,'2.99','2005-06-16 00:25:52','2006-02-15 22:13:46'), +(4802,177,2,1621,'4.99','2005-06-16 07:24:12','2006-02-15 22:13:47'), +(4803,177,1,1738,'0.99','2005-06-16 16:07:27','2006-02-15 22:13:47'), +(4804,177,2,2467,'2.99','2005-06-18 20:20:05','2006-02-15 22:13:47'), +(4805,177,1,4760,'0.99','2005-07-08 14:48:07','2006-02-15 22:13:47'), +(4806,177,2,6217,'9.99','2005-07-11 13:13:45','2006-02-15 22:13:47'), +(4807,177,1,6284,'2.99','2005-07-11 16:51:39','2006-02-15 22:13:47'), +(4808,177,1,7493,'3.99','2005-07-27 19:55:46','2006-02-15 22:13:47'), +(4809,177,2,7674,'1.99','2005-07-28 02:54:30','2006-02-15 22:13:47'), +(4810,177,1,8139,'0.99','2005-07-28 20:16:30','2006-02-15 22:13:47'), +(4811,177,2,9190,'1.99','2005-07-30 12:24:17','2006-02-15 22:13:47'), +(4812,177,2,10321,'4.99','2005-08-01 04:40:02','2006-02-15 22:13:47'), +(4813,177,1,10661,'2.99','2005-08-01 16:48:31','2006-02-15 22:13:47'), +(4814,177,1,10710,'0.99','2005-08-01 18:44:36','2006-02-15 22:13:47'), +(4815,177,1,11195,'0.99','2005-08-02 11:42:23','2006-02-15 22:13:47'), +(4816,177,1,11376,'5.99','2005-08-02 18:16:00','2006-02-15 22:13:47'), +(4817,177,2,11662,'6.99','2005-08-17 05:27:37','2006-02-15 22:13:47'), +(4818,177,1,12623,'4.99','2005-08-18 17:34:19','2006-02-15 22:13:47'), +(4819,177,2,14093,'0.99','2005-08-21 00:21:29','2006-02-15 22:13:47'), +(4820,177,2,14310,'0.99','2005-08-21 07:44:32','2006-02-15 22:13:47'), +(4821,177,2,14849,'2.99','2005-08-22 02:15:26','2006-02-15 22:13:47'), +(4822,177,2,14883,'0.99','2005-08-22 03:55:02','2006-02-15 22:13:47'), +(4823,178,1,1292,'6.99','2005-06-15 09:03:52','2006-02-15 22:13:47'), +(4824,178,2,1458,'6.99','2005-06-15 20:24:05','2006-02-15 22:13:47'), +(4825,178,2,1568,'2.99','2005-06-16 03:14:01','2006-02-15 22:13:47'), +(4826,178,2,1745,'3.99','2005-06-16 16:41:16','2006-02-15 22:13:47'), +(4827,178,2,2124,'1.99','2005-06-17 20:49:14','2006-02-15 22:13:47'), +(4828,178,1,2293,'4.99','2005-06-18 07:45:03','2006-02-15 22:13:47'), +(4829,178,2,2844,'6.99','2005-06-19 22:40:12','2006-02-15 22:13:47'), +(4830,178,1,2898,'9.99','2005-06-20 02:38:06','2006-02-15 22:13:47'), +(4831,178,1,4915,'2.99','2005-07-08 21:31:22','2006-02-15 22:13:47'), +(4832,178,1,5015,'2.99','2005-07-09 01:54:24','2006-02-15 22:13:47'), +(4833,178,1,5057,'4.99','2005-07-09 04:20:29','2006-02-15 22:13:47'), +(4834,178,1,5094,'10.99','2005-07-09 05:59:47','2006-02-15 22:13:47'), +(4835,178,1,5984,'2.99','2005-07-11 00:44:36','2006-02-15 22:13:47'), +(4836,178,2,6347,'4.99','2005-07-11 20:18:53','2006-02-15 22:13:48'), +(4837,178,1,6554,'5.99','2005-07-12 05:07:26','2006-02-15 22:13:48'), +(4838,178,1,6566,'6.99','2005-07-12 05:42:53','2006-02-15 22:13:48'), +(4839,178,2,6606,'2.99','2005-07-12 08:03:40','2006-02-15 22:13:48'), +(4840,178,1,7959,'4.99','2005-07-28 13:43:20','2006-02-15 22:13:48'), +(4841,178,2,8069,'0.99','2005-07-28 17:23:46','2006-02-15 22:13:48'), +(4842,178,1,8287,'3.99','2005-07-29 02:03:58','2006-02-15 22:13:48'), +(4843,178,2,8388,'5.99','2005-07-29 05:48:15','2006-02-15 22:13:48'), +(4844,178,2,8696,'4.99','2005-07-29 16:45:18','2006-02-15 22:13:48'), +(4845,178,2,9004,'4.99','2005-07-30 05:04:27','2006-02-15 22:13:48'), +(4846,178,1,9311,'7.99','2005-07-30 16:58:31','2006-02-15 22:13:48'), +(4847,178,2,9879,'4.99','2005-07-31 13:45:32','2006-02-15 22:13:48'), +(4848,178,2,10125,'0.99','2005-07-31 21:33:03','2006-02-15 22:13:48'), +(4849,178,2,10562,'0.99','2005-08-01 13:05:52','2006-02-15 22:13:48'), +(4850,178,1,10802,'5.99','2005-08-01 22:18:32','2006-02-15 22:13:48'), +(4851,178,2,11319,'6.99','2005-08-02 16:10:09','2006-02-15 22:13:48'), +(4852,178,2,11884,'6.99','2005-08-17 14:43:23','2006-02-15 22:13:48'), +(4853,178,2,11927,'3.99','2005-08-17 16:25:03','2006-02-15 22:13:48'), +(4854,178,2,12049,'6.99','2005-08-17 20:53:27','2006-02-15 22:13:48'), +(4855,178,2,12727,'2.99','2005-08-18 21:45:15','2006-02-15 22:13:48'), +(4856,178,1,13127,'2.99','2005-08-19 12:04:03','2006-02-15 22:13:48'), +(4857,178,1,14104,'4.99','2005-08-21 00:37:44','2006-02-15 22:13:48'), +(4858,178,1,14257,'7.99','2005-08-21 05:52:57','2006-02-15 22:13:48'), +(4859,178,2,14314,'2.99','2005-08-21 07:50:14','2006-02-15 22:13:48'), +(4860,178,1,15323,'4.99','2005-08-22 20:22:40','2006-02-15 22:13:48'), +(4861,178,1,12897,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:48'), +(4862,179,1,502,'0.99','2005-05-28 01:34:43','2006-02-15 22:13:48'), +(4863,179,1,759,'6.99','2005-05-29 10:57:57','2006-02-15 22:13:48'), +(4864,179,1,1046,'4.99','2005-05-31 06:42:30','2006-02-15 22:13:48'), +(4865,179,2,1286,'7.99','2005-06-15 08:41:13','2006-02-15 22:13:48'), +(4866,179,1,2613,'4.99','2005-06-19 07:25:50','2006-02-15 22:13:48'), +(4867,179,1,3671,'6.99','2005-07-06 09:01:29','2006-02-15 22:13:48'), +(4868,179,1,3844,'0.99','2005-07-06 16:37:58','2006-02-15 22:13:48'), +(4869,179,1,4618,'2.99','2005-07-08 08:00:20','2006-02-15 22:13:48'), +(4870,179,2,6071,'6.99','2005-07-11 04:50:03','2006-02-15 22:13:48'), +(4871,179,1,6616,'7.99','2005-07-12 08:37:30','2006-02-15 22:13:48'), +(4872,179,1,6806,'2.99','2005-07-12 17:31:43','2006-02-15 22:13:48'), +(4873,179,1,7028,'6.99','2005-07-27 02:54:25','2006-02-15 22:13:48'), +(4874,179,1,7054,'4.99','2005-07-27 03:43:28','2006-02-15 22:13:48'), +(4875,179,1,7609,'4.99','2005-07-28 00:11:00','2006-02-15 22:13:48'), +(4876,179,1,8573,'2.99','2005-07-29 11:51:25','2006-02-15 22:13:49'), +(4877,179,1,8731,'8.99','2005-07-29 18:23:57','2006-02-15 22:13:49'), +(4878,179,2,9491,'4.99','2005-07-30 23:45:23','2006-02-15 22:13:49'), +(4879,179,2,9893,'0.99','2005-07-31 14:07:21','2006-02-15 22:13:49'), +(4880,179,1,10156,'4.99','2005-07-31 22:36:00','2006-02-15 22:13:49'), +(4881,179,1,10385,'4.99','2005-08-01 06:39:55','2006-02-15 22:13:49'), +(4882,179,2,10569,'3.99','2005-08-01 13:18:23','2006-02-15 22:13:49'), +(4883,179,1,11342,'0.99','2005-08-02 17:11:35','2006-02-15 22:13:49'), +(4884,179,2,13240,'0.99','2005-08-19 16:22:14','2006-02-15 22:13:49'), +(4885,179,1,13400,'4.99','2005-08-19 22:11:44','2006-02-15 22:13:49'), +(4886,179,2,13844,'7.99','2005-08-20 14:30:26','2006-02-15 22:13:49'), +(4887,179,2,13957,'0.99','2005-08-20 18:09:04','2006-02-15 22:13:49'), +(4888,179,2,14082,'7.99','2005-08-20 23:42:00','2006-02-15 22:13:49'), +(4889,179,1,14589,'0.99','2005-08-21 17:28:55','2006-02-15 22:13:49'), +(4890,179,1,15985,'4.99','2005-08-23 20:20:23','2006-02-15 22:13:49'), +(4891,180,1,1122,'2.99','2005-05-31 16:39:33','2006-02-15 22:13:49'), +(4892,180,2,2700,'2.99','2005-06-19 13:31:52','2006-02-15 22:13:49'), +(4893,180,1,2798,'2.99','2005-06-19 19:07:48','2006-02-15 22:13:49'), +(4894,180,2,4826,'7.99','2005-07-08 17:44:25','2006-02-15 22:13:49'), +(4895,180,1,4924,'9.99','2005-07-08 21:55:25','2006-02-15 22:13:49'), +(4896,180,2,5384,'0.99','2005-07-09 19:17:46','2006-02-15 22:13:49'), +(4897,180,2,5773,'0.99','2005-07-10 13:31:09','2006-02-15 22:13:49'), +(4898,180,1,5860,'3.99','2005-07-10 18:08:49','2006-02-15 22:13:49'), +(4899,180,1,7274,'2.99','2005-07-27 11:35:34','2006-02-15 22:13:49'), +(4900,180,2,8540,'2.99','2005-07-29 10:52:51','2006-02-15 22:13:49'), +(4901,180,2,8720,'5.99','2005-07-29 17:48:32','2006-02-15 22:13:49'), +(4902,180,1,9373,'0.99','2005-07-30 19:05:36','2006-02-15 22:13:49'), +(4903,180,2,9995,'3.99','2005-07-31 17:30:47','2006-02-15 22:13:49'), +(4904,180,1,10576,'5.99','2005-08-01 13:46:02','2006-02-15 22:13:49'), +(4905,180,1,10992,'8.99','2005-08-02 04:41:17','2006-02-15 22:13:49'), +(4906,180,1,12313,'8.99','2005-08-18 06:07:31','2006-02-15 22:13:49'), +(4907,180,1,13283,'2.99','2005-08-19 18:10:19','2006-02-15 22:13:49'), +(4908,180,2,13842,'4.99','2005-08-20 14:29:37','2006-02-15 22:13:49'), +(4909,180,1,13994,'2.99','2005-08-20 19:33:21','2006-02-15 22:13:49'), +(4910,180,1,14109,'0.99','2005-08-21 00:52:58','2006-02-15 22:13:49'), +(4911,180,1,14851,'2.99','2005-08-22 02:20:44','2006-02-15 22:13:49'), +(4912,180,1,15039,'4.99','2005-08-22 09:37:54','2006-02-15 22:13:49'), +(4913,180,1,12901,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:49'), +(4914,181,2,579,'6.99','2005-05-28 11:19:23','2006-02-15 22:13:49'), +(4915,181,1,1638,'2.99','2005-06-16 08:32:36','2006-02-15 22:13:50'), +(4916,181,1,2645,'5.99','2005-06-19 09:50:35','2006-02-15 22:13:50'), +(4917,181,2,3449,'5.99','2005-06-21 21:01:27','2006-02-15 22:13:50'), +(4918,181,2,3469,'4.99','2005-06-21 22:48:59','2006-02-15 22:13:50'), +(4919,181,1,3862,'6.99','2005-07-06 17:35:22','2006-02-15 22:13:50'), +(4920,181,2,4428,'4.99','2005-07-07 22:29:40','2006-02-15 22:13:50'), +(4921,181,2,6477,'4.99','2005-07-12 01:38:42','2006-02-15 22:13:50'), +(4922,181,1,6946,'8.99','2005-07-26 23:40:07','2006-02-15 22:13:50'), +(4923,181,1,7393,'0.99','2005-07-27 16:02:52','2006-02-15 22:13:50'), +(4924,181,1,7632,'4.99','2005-07-28 01:02:40','2006-02-15 22:13:50'), +(4925,181,1,8593,'5.99','2005-07-29 12:38:14','2006-02-15 22:13:50'), +(4926,181,1,8601,'9.99','2005-07-29 13:03:31','2006-02-15 22:13:50'), +(4927,181,2,9214,'4.99','2005-07-30 13:10:14','2006-02-15 22:13:50'), +(4928,181,2,9235,'5.99','2005-07-30 13:47:17','2006-02-15 22:13:50'), +(4929,181,1,9357,'8.99','2005-07-30 18:37:00','2006-02-15 22:13:50'), +(4930,181,1,9844,'4.99','2005-07-31 12:26:31','2006-02-15 22:13:50'), +(4931,181,2,10262,'4.99','2005-08-01 03:01:26','2006-02-15 22:13:50'), +(4932,181,2,10362,'6.99','2005-08-01 05:55:13','2006-02-15 22:13:50'), +(4933,181,2,10703,'2.99','2005-08-01 18:37:39','2006-02-15 22:13:50'), +(4934,181,1,10748,'4.99','2005-08-01 20:01:24','2006-02-15 22:13:50'), +(4935,181,1,10773,'6.99','2005-08-01 20:53:45','2006-02-15 22:13:50'), +(4936,181,2,11224,'4.99','2005-08-02 12:40:38','2006-02-15 22:13:50'), +(4937,181,1,12363,'7.99','2005-08-18 07:52:49','2006-02-15 22:13:50'), +(4938,181,1,12411,'0.99','2005-08-18 09:47:57','2006-02-15 22:13:50'), +(4939,181,1,12678,'2.99','2005-08-18 19:41:27','2006-02-15 22:13:50'), +(4940,181,2,12939,'2.99','2005-08-19 05:38:25','2006-02-15 22:13:50'), +(4941,181,2,13118,'4.99','2005-08-19 11:39:58','2006-02-15 22:13:50'), +(4942,181,2,13405,'4.99','2005-08-19 22:20:49','2006-02-15 22:13:50'), +(4943,181,2,13415,'2.99','2005-08-19 22:48:09','2006-02-15 22:13:50'), +(4944,181,2,14406,'3.99','2005-08-21 10:46:35','2006-02-15 22:13:50'), +(4945,181,2,15196,'2.99','2005-08-22 16:11:32','2006-02-15 22:13:50'), +(4946,181,2,15482,'4.99','2005-08-23 02:01:20','2006-02-15 22:13:50'), +(4947,181,2,13008,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:50'), +(4948,182,2,161,'0.99','2005-05-26 01:51:48','2006-02-15 22:13:50'), +(4949,182,2,425,'3.99','2005-05-27 15:51:30','2006-02-15 22:13:50'), +(4950,182,2,1542,'3.99','2005-06-16 01:20:05','2006-02-15 22:13:50'), +(4951,182,1,2049,'2.99','2005-06-17 14:58:36','2006-02-15 22:13:50'), +(4952,182,2,2120,'5.99','2005-06-17 20:36:50','2006-02-15 22:13:51'), +(4953,182,1,2234,'0.99','2005-06-18 04:01:28','2006-02-15 22:13:51'), +(4954,182,1,3509,'2.99','2005-07-06 00:24:57','2006-02-15 22:13:51'), +(4955,182,1,3697,'6.99','2005-07-06 10:07:22','2006-02-15 22:13:51'), +(4956,182,1,4174,'2.99','2005-07-07 09:59:49','2006-02-15 22:13:51'), +(4957,182,1,4349,'0.99','2005-07-07 19:02:37','2006-02-15 22:13:51'), +(4958,182,2,4513,'1.99','2005-07-08 02:39:59','2006-02-15 22:13:51'), +(4959,182,2,4591,'3.99','2005-07-08 06:29:43','2006-02-15 22:13:51'), +(4960,182,2,4784,'0.99','2005-07-08 16:09:56','2006-02-15 22:13:51'), +(4961,182,1,5521,'2.99','2005-07-10 01:31:22','2006-02-15 22:13:51'), +(4962,182,2,7229,'0.99','2005-07-27 10:00:54','2006-02-15 22:13:51'), +(4963,182,2,7863,'0.99','2005-07-28 10:05:46','2006-02-15 22:13:51'), +(4964,182,2,7880,'4.99','2005-07-28 10:30:37','2006-02-15 22:13:51'), +(4965,182,2,8048,'8.99','2005-07-28 16:50:26','2006-02-15 22:13:51'), +(4966,182,1,11055,'4.99','2005-08-02 06:36:05','2006-02-15 22:13:51'), +(4967,182,2,11785,'3.99','2005-08-17 10:54:46','2006-02-15 22:13:51'), +(4968,182,1,12573,'4.99','2005-08-18 15:32:57','2006-02-15 22:13:51'), +(4969,182,1,12840,'6.99','2005-08-19 01:54:11','2006-02-15 22:13:51'), +(4970,182,1,13285,'2.99','2005-08-19 18:18:44','2006-02-15 22:13:51'), +(4971,182,1,14586,'5.99','2005-08-21 17:19:09','2006-02-15 22:13:51'), +(4972,182,1,14953,'6.99','2005-08-22 06:23:54','2006-02-15 22:13:51'), +(4973,182,1,15043,'1.99','2005-08-22 09:49:32','2006-02-15 22:13:51'), +(4974,183,1,382,'0.99','2005-05-27 10:12:00','2006-02-15 22:13:51'), +(4975,183,1,1279,'0.99','2005-06-15 08:13:57','2006-02-15 22:13:51'), +(4976,183,2,2188,'1.99','2005-06-18 01:19:04','2006-02-15 22:13:51'), +(4977,183,2,2471,'5.99','2005-06-18 20:31:00','2006-02-15 22:13:51'), +(4978,183,1,3381,'5.99','2005-06-21 14:02:59','2006-02-15 22:13:51'), +(4979,183,1,3869,'2.99','2005-07-06 17:56:46','2006-02-15 22:13:51'), +(4980,183,2,4134,'0.99','2005-07-07 08:14:24','2006-02-15 22:13:51'), +(4981,183,2,4157,'2.99','2005-07-07 09:04:26','2006-02-15 22:13:51'), +(4982,183,1,5069,'1.99','2005-07-09 04:56:30','2006-02-15 22:13:51'), +(4983,183,2,5756,'0.99','2005-07-10 12:39:28','2006-02-15 22:13:51'), +(4984,183,1,6472,'4.99','2005-07-12 01:33:25','2006-02-15 22:13:51'), +(4985,183,1,6569,'4.99','2005-07-12 05:47:40','2006-02-15 22:13:51'), +(4986,183,2,7359,'0.99','2005-07-27 14:51:04','2006-02-15 22:13:51'), +(4987,183,2,9672,'5.99','2005-07-31 06:34:06','2006-02-15 22:13:51'), +(4988,183,1,9818,'4.99','2005-07-31 11:34:32','2006-02-15 22:13:51'), +(4989,183,2,9931,'2.99','2005-07-31 15:18:19','2006-02-15 22:13:52'), +(4990,183,2,10620,'5.99','2005-08-01 15:09:17','2006-02-15 22:13:52'), +(4991,183,2,11386,'2.99','2005-08-02 18:24:03','2006-02-15 22:13:52'), +(4992,183,2,12451,'0.99','2005-08-18 11:04:42','2006-02-15 22:13:52'), +(4993,183,2,12764,'3.99','2005-08-18 23:14:15','2006-02-15 22:13:52'), +(4994,183,2,12831,'3.99','2005-08-19 01:40:43','2006-02-15 22:13:52'), +(4995,183,1,13482,'2.99','2005-08-20 01:14:30','2006-02-15 22:13:52'), +(4996,183,1,13536,'4.99','2005-08-20 03:35:16','2006-02-15 22:13:52'), +(4997,184,1,196,'2.99','2005-05-26 06:55:58','2006-02-15 22:13:52'), +(4998,184,2,534,'4.99','2005-05-28 06:15:25','2006-02-15 22:13:52'), +(4999,184,1,567,'1.99','2005-05-28 09:56:20','2006-02-15 22:13:52'), +(5000,184,2,1976,'2.99','2005-06-17 09:38:08','2006-02-15 22:13:52'), +(5001,184,1,2312,'0.99','2005-06-18 08:55:46','2006-02-15 22:13:52'), +(5002,184,1,4314,'0.99','2005-07-07 17:38:31','2006-02-15 22:13:52'), +(5003,184,2,4882,'6.99','2005-07-08 19:42:03','2006-02-15 22:13:52'), +(5004,184,1,5891,'0.99','2005-07-10 20:01:17','2006-02-15 22:13:52'), +(5005,184,2,6493,'2.99','2005-07-12 02:40:41','2006-02-15 22:13:52'), +(5006,184,2,6700,'6.99','2005-07-12 12:47:22','2006-02-15 22:13:52'), +(5007,184,2,7051,'4.99','2005-07-27 03:34:37','2006-02-15 22:13:52'), +(5008,184,2,7686,'6.99','2005-07-28 03:19:23','2006-02-15 22:13:52'), +(5009,184,1,8892,'4.99','2005-07-30 00:47:03','2006-02-15 22:13:52'), +(5010,184,1,9162,'0.99','2005-07-30 11:21:56','2006-02-15 22:13:52'), +(5011,184,2,12166,'9.99','2005-08-18 00:57:06','2006-02-15 22:13:52'), +(5012,184,2,12454,'2.99','2005-08-18 11:19:02','2006-02-15 22:13:52'), +(5013,184,1,12532,'2.99','2005-08-18 13:57:58','2006-02-15 22:13:52'), +(5014,184,1,13134,'0.99','2005-08-19 12:14:14','2006-02-15 22:13:52'), +(5015,184,1,13262,'5.99','2005-08-19 17:20:15','2006-02-15 22:13:52'), +(5016,184,1,13303,'4.99','2005-08-19 18:55:21','2006-02-15 22:13:52'), +(5017,184,2,14472,'4.99','2005-08-21 13:13:57','2006-02-15 22:13:52'), +(5018,184,1,14801,'5.99','2005-08-22 00:46:54','2006-02-15 22:13:53'), +(5019,184,2,15611,'0.99','2005-08-23 06:56:18','2006-02-15 22:13:53'), +(5020,185,2,20,'2.99','2005-05-25 01:48:41','2006-02-15 22:13:53'), +(5021,185,2,154,'0.99','2005-05-26 00:55:56','2006-02-15 22:13:53'), +(5022,185,1,646,'0.99','2005-05-28 19:16:14','2006-02-15 22:13:53'), +(5023,185,1,2459,'4.99','2005-06-18 19:44:08','2006-02-15 22:13:53'), +(5024,185,1,3314,'4.99','2005-06-21 08:17:00','2006-02-15 22:13:53'), +(5025,185,1,3325,'4.99','2005-06-21 08:51:44','2006-02-15 22:13:53'), +(5026,185,1,4186,'9.99','2005-07-07 10:32:25','2006-02-15 22:13:53'), +(5027,185,1,4524,'2.99','2005-07-08 03:10:48','2006-02-15 22:13:53'), +(5028,185,2,4822,'7.99','2005-07-08 17:28:47','2006-02-15 22:13:53'), +(5029,185,2,6106,'2.99','2005-07-11 07:05:06','2006-02-15 22:13:53'), +(5030,185,1,6418,'1.99','2005-07-11 23:36:27','2006-02-15 22:13:53'), +(5031,185,1,6965,'2.99','2005-07-27 00:15:18','2006-02-15 22:13:53'), +(5032,185,1,7066,'4.99','2005-07-27 03:53:52','2006-02-15 22:13:53'), +(5033,185,1,8200,'2.99','2005-07-28 23:10:46','2006-02-15 22:13:53'), +(5034,185,2,8442,'0.99','2005-07-29 07:33:07','2006-02-15 22:13:53'), +(5035,185,1,8684,'8.99','2005-07-29 16:16:33','2006-02-15 22:13:53'), +(5036,185,2,9246,'0.99','2005-07-30 14:12:31','2006-02-15 22:13:53'), +(5037,185,2,9473,'2.99','2005-07-30 23:04:13','2006-02-15 22:13:53'), +(5038,185,2,11355,'0.99','2005-08-02 17:37:43','2006-02-15 22:13:53'), +(5039,185,1,12312,'2.99','2005-08-18 06:07:26','2006-02-15 22:13:53'), +(5040,185,1,12674,'5.99','2005-08-18 19:24:56','2006-02-15 22:13:53'), +(5041,185,1,12885,'0.99','2005-08-19 03:37:25','2006-02-15 22:13:53'), +(5042,185,2,14513,'2.99','2005-08-21 14:51:35','2006-02-15 22:13:53'), +(5043,186,1,581,'1.99','2005-05-28 11:20:29','2006-02-15 22:13:53'), +(5044,186,2,958,'0.99','2005-05-30 17:58:03','2006-02-15 22:13:53'), +(5045,186,1,1192,'4.99','2005-06-15 01:18:39','2006-02-15 22:13:53'), +(5046,186,1,1300,'2.99','2005-06-15 09:36:19','2006-02-15 22:13:53'), +(5047,186,1,1663,'2.99','2005-06-16 10:14:15','2006-02-15 22:13:53'), +(5048,186,2,2132,'4.99','2005-06-17 21:05:06','2006-02-15 22:13:53'), +(5049,186,2,2875,'4.99','2005-06-20 00:47:18','2006-02-15 22:13:53'), +(5050,186,1,3039,'4.99','2005-06-20 12:32:30','2006-02-15 22:13:53'), +(5051,186,2,6067,'4.99','2005-07-11 04:34:49','2006-02-15 22:13:53'), +(5052,186,2,7739,'0.99','2005-07-28 05:21:51','2006-02-15 22:13:54'), +(5053,186,1,7915,'3.99','2005-07-28 11:49:46','2006-02-15 22:13:54'), +(5054,186,1,8483,'4.99','2005-07-29 08:50:18','2006-02-15 22:13:54'), +(5055,186,2,8872,'0.99','2005-07-30 00:13:54','2006-02-15 22:13:54'), +(5056,186,2,9303,'2.99','2005-07-30 16:35:59','2006-02-15 22:13:54'), +(5057,186,2,9360,'5.99','2005-07-30 18:39:43','2006-02-15 22:13:54'), +(5058,186,1,10104,'1.99','2005-07-31 20:49:14','2006-02-15 22:13:54'), +(5059,186,1,10985,'0.99','2005-08-02 04:30:19','2006-02-15 22:13:54'), +(5060,186,1,11982,'0.99','2005-08-17 18:13:07','2006-02-15 22:13:54'), +(5061,186,1,12348,'5.99','2005-08-18 07:21:47','2006-02-15 22:13:54'), +(5062,186,1,12438,'8.99','2005-08-18 10:42:52','2006-02-15 22:13:54'), +(5063,186,1,13168,'6.99','2005-08-19 13:37:28','2006-02-15 22:13:54'), +(5064,186,2,13517,'4.99','2005-08-20 02:33:17','2006-02-15 22:13:54'), +(5065,186,1,13853,'3.99','2005-08-20 14:47:02','2006-02-15 22:13:54'), +(5066,186,1,14006,'2.99','2005-08-20 20:21:36','2006-02-15 22:13:54'), +(5067,186,2,14229,'4.99','2005-08-21 04:57:15','2006-02-15 22:13:54'), +(5068,186,2,14646,'4.99','2005-08-21 19:14:48','2006-02-15 22:13:54'), +(5069,186,2,14988,'3.99','2005-08-22 07:46:05','2006-02-15 22:13:54'), +(5070,186,2,15001,'0.99','2005-08-22 08:00:49','2006-02-15 22:13:54'), +(5071,186,2,15295,'3.99','2005-08-22 19:36:21','2006-02-15 22:13:54'), +(5072,186,1,15596,'0.99','2005-08-23 06:19:51','2006-02-15 22:13:54'), +(5073,186,1,14216,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:54'), +(5074,187,1,252,'7.99','2005-05-26 14:39:53','2006-02-15 22:13:54'), +(5075,187,2,1323,'6.99','2005-06-15 10:55:17','2006-02-15 22:13:54'), +(5076,187,2,1462,'4.99','2005-06-15 20:37:40','2006-02-15 22:13:54'), +(5077,187,2,1592,'0.99','2005-06-16 05:14:37','2006-02-15 22:13:54'), +(5078,187,2,2127,'0.99','2005-06-17 20:54:48','2006-02-15 22:13:54'), +(5079,187,2,2533,'0.99','2005-06-19 01:34:26','2006-02-15 22:13:54'), +(5080,187,1,2742,'5.99','2005-06-19 16:05:47','2006-02-15 22:13:54'), +(5081,187,1,3402,'2.99','2005-06-21 15:54:37','2006-02-15 22:13:54'), +(5082,187,2,3709,'10.99','2005-07-06 10:26:56','2006-02-15 22:13:54'), +(5083,187,1,4429,'4.99','2005-07-07 22:32:47','2006-02-15 22:13:54'), +(5084,187,2,5366,'0.99','2005-07-09 18:28:37','2006-02-15 22:13:54'), +(5085,187,1,5738,'8.99','2005-07-10 11:50:51','2006-02-15 22:13:54'), +(5086,187,2,5833,'6.99','2005-07-10 16:39:24','2006-02-15 22:13:54'), +(5087,187,1,6057,'3.99','2005-07-11 04:03:40','2006-02-15 22:13:54'), +(5088,187,2,6428,'2.99','2005-07-12 00:01:51','2006-02-15 22:13:54'), +(5089,187,2,7289,'4.99','2005-07-27 12:26:51','2006-02-15 22:13:55'), +(5090,187,2,7844,'7.99','2005-07-28 09:16:19','2006-02-15 22:13:55'), +(5091,187,2,7967,'7.99','2005-07-28 13:56:51','2006-02-15 22:13:55'), +(5092,187,1,9241,'2.99','2005-07-30 13:58:41','2006-02-15 22:13:55'), +(5093,187,1,11843,'2.99','2005-08-17 13:14:50','2006-02-15 22:13:55'), +(5094,187,2,12307,'8.99','2005-08-18 05:48:23','2006-02-15 22:13:55'), +(5095,187,2,12490,'9.99','2005-08-18 12:48:45','2006-02-15 22:13:55'), +(5096,187,1,12534,'7.99','2005-08-18 14:04:41','2006-02-15 22:13:55'), +(5097,187,2,13940,'8.99','2005-08-20 17:28:57','2006-02-15 22:13:55'), +(5098,187,2,14855,'8.99','2005-08-22 02:27:32','2006-02-15 22:13:55'), +(5099,187,2,15231,'4.99','2005-08-22 17:32:57','2006-02-15 22:13:55'), +(5100,187,2,15517,'2.99','2005-08-23 03:13:01','2006-02-15 22:13:55'), +(5101,187,2,15971,'7.99','2005-08-23 19:59:33','2006-02-15 22:13:55'), +(5102,188,2,1527,'2.99','2005-06-16 00:31:40','2006-02-15 22:13:55'), +(5103,188,2,1927,'0.99','2005-06-17 06:48:19','2006-02-15 22:13:55'), +(5104,188,1,2515,'4.99','2005-06-18 23:57:31','2006-02-15 22:13:55'), +(5105,188,2,2733,'4.99','2005-06-19 15:21:53','2006-02-15 22:13:55'), +(5106,188,2,3848,'3.99','2005-07-06 16:47:32','2006-02-15 22:13:55'), +(5107,188,2,4150,'2.99','2005-07-07 08:43:22','2006-02-15 22:13:55'), +(5108,188,2,5356,'2.99','2005-07-09 18:08:28','2006-02-15 22:13:55'), +(5109,188,2,5729,'5.99','2005-07-10 11:27:25','2006-02-15 22:13:55'), +(5110,188,2,6555,'4.99','2005-07-12 05:08:16','2006-02-15 22:13:55'), +(5111,188,2,7042,'0.99','2005-07-27 03:20:18','2006-02-15 22:13:55'), +(5112,188,1,7556,'4.99','2005-07-27 22:17:17','2006-02-15 22:13:55'), +(5113,188,2,9613,'4.99','2005-07-31 03:58:53','2006-02-15 22:13:55'), +(5114,188,2,10453,'5.99','2005-08-01 09:13:27','2006-02-15 22:13:55'), +(5115,188,1,10494,'0.99','2005-08-01 10:45:21','2006-02-15 22:13:55'), +(5116,188,2,10719,'4.99','2005-08-01 19:00:28','2006-02-15 22:13:55'), +(5117,188,2,10757,'4.99','2005-08-01 20:22:44','2006-02-15 22:13:55'), +(5118,188,2,11378,'2.99','2005-08-02 18:16:52','2006-02-15 22:13:55'), +(5119,188,1,13570,'2.99','2005-08-20 05:04:57','2006-02-15 22:13:55'), +(5120,188,1,13787,'5.99','2005-08-20 12:15:23','2006-02-15 22:13:55'), +(5121,188,1,14399,'2.99','2005-08-21 10:33:23','2006-02-15 22:13:55'), +(5122,188,2,14809,'2.99','2005-08-22 01:00:42','2006-02-15 22:13:55'), +(5123,188,2,15319,'2.99','2005-08-22 20:17:17','2006-02-15 22:13:55'), +(5124,188,2,15409,'0.99','2005-08-22 23:26:32','2006-02-15 22:13:55'), +(5125,188,2,15474,'4.99','2005-08-23 01:39:10','2006-02-15 22:13:55'), +(5126,188,1,14503,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:56'), +(5127,189,2,1117,'5.99','2005-05-31 16:15:31','2006-02-15 22:13:56'), +(5128,189,1,1541,'0.99','2005-06-16 01:15:59','2006-02-15 22:13:56'), +(5129,189,1,1834,'0.99','2005-06-16 22:49:08','2006-02-15 22:13:56'), +(5130,189,2,2905,'1.99','2005-06-20 02:56:16','2006-02-15 22:13:56'), +(5131,189,1,3108,'6.99','2005-06-20 17:28:43','2006-02-15 22:13:56'), +(5132,189,1,3346,'2.99','2005-06-21 11:06:53','2006-02-15 22:13:56'), +(5133,189,1,3763,'0.99','2005-07-06 12:56:31','2006-02-15 22:13:56'), +(5134,189,2,3813,'4.99','2005-07-06 15:23:34','2006-02-15 22:13:56'), +(5135,189,2,4203,'0.99','2005-07-07 11:24:14','2006-02-15 22:13:56'), +(5136,189,1,6193,'5.99','2005-07-11 11:46:57','2006-02-15 22:13:56'), +(5137,189,1,7469,'4.99','2005-07-27 18:57:40','2006-02-15 22:13:56'), +(5138,189,1,7675,'4.99','2005-07-28 02:55:20','2006-02-15 22:13:56'), +(5139,189,2,7790,'2.99','2005-07-28 07:22:35','2006-02-15 22:13:56'), +(5140,189,2,9171,'5.99','2005-07-30 11:36:24','2006-02-15 22:13:56'), +(5141,189,2,9386,'0.99','2005-07-30 19:26:21','2006-02-15 22:13:56'), +(5142,189,1,9506,'4.99','2005-07-31 00:19:01','2006-02-15 22:13:56'), +(5143,189,1,10247,'9.99','2005-08-01 02:34:06','2006-02-15 22:13:56'), +(5144,189,2,11059,'6.99','2005-08-02 06:41:38','2006-02-15 22:13:56'), +(5145,189,2,13601,'6.99','2005-08-20 06:01:15','2006-02-15 22:13:56'), +(5146,189,1,13766,'3.99','2005-08-20 11:42:01','2006-02-15 22:13:56'), +(5147,189,1,15773,'1.99','2005-08-23 13:24:57','2006-02-15 22:13:56'), +(5148,189,1,16008,'5.99','2005-08-23 21:04:51','2006-02-15 22:13:56'), +(5149,190,2,430,'4.99','2005-05-27 16:22:10','2006-02-15 22:13:56'), +(5150,190,1,693,'2.99','2005-05-29 01:42:31','2006-02-15 22:13:56'), +(5151,190,1,1319,'2.99','2005-06-15 10:39:05','2006-02-15 22:13:56'), +(5152,190,1,1347,'2.99','2005-06-15 12:43:43','2006-02-15 22:13:56'), +(5153,190,1,2057,'4.99','2005-06-17 15:31:58','2006-02-15 22:13:56'), +(5154,190,1,2568,'3.99','2005-06-19 04:09:03','2006-02-15 22:13:56'), +(5155,190,1,3386,'4.99','2005-06-21 14:21:06','2006-02-15 22:13:56'), +(5156,190,2,4005,'5.99','2005-07-07 00:22:26','2006-02-15 22:13:56'), +(5157,190,1,4140,'2.99','2005-07-07 08:19:10','2006-02-15 22:13:56'), +(5158,190,2,6867,'3.99','2005-07-12 20:06:47','2006-02-15 22:13:56'), +(5159,190,1,7175,'4.99','2005-07-27 08:03:22','2006-02-15 22:13:56'), +(5160,190,1,7386,'5.99','2005-07-27 15:52:10','2006-02-15 22:13:56'), +(5161,190,2,7404,'2.99','2005-07-27 16:24:43','2006-02-15 22:13:56'), +(5162,190,1,8498,'0.99','2005-07-29 09:07:38','2006-02-15 22:13:57'), +(5163,190,1,11082,'5.99','2005-08-02 07:30:19','2006-02-15 22:13:57'), +(5164,190,2,11158,'6.99','2005-08-02 09:58:28','2006-02-15 22:13:57'), +(5165,190,2,11276,'4.99','2005-08-02 14:28:46','2006-02-15 22:13:57'), +(5166,190,2,11312,'6.99','2005-08-02 15:56:51','2006-02-15 22:13:57'), +(5167,190,2,11750,'0.99','2005-08-17 09:07:00','2006-02-15 22:13:57'), +(5168,190,2,11950,'9.99','2005-08-17 17:13:16','2006-02-15 22:13:57'), +(5169,190,1,12270,'2.99','2005-08-18 04:32:05','2006-02-15 22:13:57'), +(5170,190,2,12381,'0.99','2005-08-18 08:31:43','2006-02-15 22:13:57'), +(5171,190,2,14065,'0.99','2005-08-20 22:40:47','2006-02-15 22:13:57'), +(5172,190,2,14141,'4.99','2005-08-21 02:07:22','2006-02-15 22:13:57'), +(5173,190,2,14166,'2.99','2005-08-21 02:59:31','2006-02-15 22:13:57'), +(5174,190,2,14650,'0.99','2005-08-21 19:24:51','2006-02-15 22:13:57'), +(5175,190,2,15167,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:57'), +(5176,191,1,1134,'2.99','2005-05-31 19:14:15','2006-02-15 22:13:57'), +(5177,191,2,1152,'4.99','2005-05-31 21:32:17','2006-02-15 22:13:57'), +(5178,191,2,1173,'2.99','2005-06-14 23:54:46','2006-02-15 22:13:57'), +(5179,191,1,1278,'0.99','2005-06-15 08:09:12','2006-02-15 22:13:57'), +(5180,191,1,1677,'2.99','2005-06-16 11:07:11','2006-02-15 22:13:57'), +(5181,191,2,1870,'2.99','2005-06-17 02:24:36','2006-02-15 22:13:57'), +(5182,191,1,2051,'4.99','2005-06-17 15:10:16','2006-02-15 22:13:57'), +(5183,191,2,2555,'2.99','2005-06-19 03:07:02','2006-02-15 22:13:57'), +(5184,191,1,5338,'2.99','2005-07-09 17:07:07','2006-02-15 22:13:57'), +(5185,191,2,5397,'5.99','2005-07-09 19:43:51','2006-02-15 22:13:57'), +(5186,191,1,5924,'5.99','2005-07-10 21:41:23','2006-02-15 22:13:57'), +(5187,191,1,7150,'6.99','2005-07-27 07:11:14','2006-02-15 22:13:57'), +(5188,191,1,7450,'3.99','2005-07-27 18:18:35','2006-02-15 22:13:57'), +(5189,191,1,7520,'2.99','2005-07-27 21:02:02','2006-02-15 22:13:57'), +(5190,191,2,8583,'0.99','2005-07-29 12:04:50','2006-02-15 22:13:57'), +(5191,191,1,9297,'4.99','2005-07-30 16:26:29','2006-02-15 22:13:57'), +(5192,191,1,9964,'4.99','2005-07-31 16:17:39','2006-02-15 22:13:57'), +(5193,191,2,10532,'2.99','2005-08-01 12:06:35','2006-02-15 22:13:57'), +(5194,191,2,15375,'4.99','2005-08-22 22:12:02','2006-02-15 22:13:57'), +(5195,191,1,14361,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:57'), +(5196,192,1,895,'1.99','2005-05-30 08:50:43','2006-02-15 22:13:57'), +(5197,192,1,2760,'3.99','2005-06-19 17:16:33','2006-02-15 22:13:57'), +(5198,192,1,3902,'2.99','2005-07-06 19:25:18','2006-02-15 22:13:57'), +(5199,192,1,4469,'4.99','2005-07-08 00:18:32','2006-02-15 22:13:57'), +(5200,192,1,5400,'2.99','2005-07-09 19:56:40','2006-02-15 22:13:58'), +(5201,192,2,6223,'0.99','2005-07-11 13:27:09','2006-02-15 22:13:58'), +(5202,192,2,6691,'0.99','2005-07-12 12:26:38','2006-02-15 22:13:58'), +(5203,192,2,7147,'2.99','2005-07-27 07:02:34','2006-02-15 22:13:58'), +(5204,192,2,8051,'0.99','2005-07-28 16:56:16','2006-02-15 22:13:58'), +(5205,192,2,8292,'7.99','2005-07-29 02:29:36','2006-02-15 22:13:58'), +(5206,192,1,9462,'7.99','2005-07-30 22:30:44','2006-02-15 22:13:58'), +(5207,192,1,9831,'2.99','2005-07-31 11:59:32','2006-02-15 22:13:58'), +(5208,192,2,10238,'0.99','2005-08-01 02:08:05','2006-02-15 22:13:58'), +(5209,192,1,10843,'7.99','2005-08-01 23:43:03','2006-02-15 22:13:58'), +(5210,192,1,11385,'4.99','2005-08-02 18:23:11','2006-02-15 22:13:58'), +(5211,192,1,11815,'4.99','2005-08-17 12:13:26','2006-02-15 22:13:58'), +(5212,192,1,13125,'5.99','2005-08-19 11:57:49','2006-02-15 22:13:58'), +(5213,192,2,14146,'4.99','2005-08-21 02:13:31','2006-02-15 22:13:58'), +(5214,192,2,14238,'7.99','2005-08-21 05:16:40','2006-02-15 22:13:58'), +(5215,192,1,14404,'4.99','2005-08-21 10:43:04','2006-02-15 22:13:58'), +(5216,192,2,14692,'6.99','2005-08-21 20:43:21','2006-02-15 22:13:58'), +(5217,192,2,15855,'2.99','2005-08-23 15:59:01','2006-02-15 22:13:58'), +(5218,192,1,11611,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:58'), +(5219,193,2,273,'2.99','2005-05-26 16:29:36','2006-02-15 22:13:58'), +(5220,193,2,464,'0.99','2005-05-27 20:42:44','2006-02-15 22:13:58'), +(5221,193,1,1325,'4.99','2005-06-15 11:03:24','2006-02-15 22:13:58'), +(5222,193,2,2377,'6.99','2005-06-18 14:56:23','2006-02-15 22:13:58'), +(5223,193,2,2841,'6.99','2005-06-19 22:21:06','2006-02-15 22:13:58'), +(5224,193,2,2846,'4.99','2005-06-19 22:52:14','2006-02-15 22:13:58'), +(5225,193,2,2880,'2.99','2005-06-20 01:24:54','2006-02-15 22:13:58'), +(5226,193,1,3297,'8.99','2005-06-21 07:08:19','2006-02-15 22:13:58'), +(5227,193,1,4892,'6.99','2005-07-08 20:06:25','2006-02-15 22:13:58'), +(5228,193,1,8211,'2.99','2005-07-28 23:34:22','2006-02-15 22:13:58'), +(5229,193,1,8379,'4.99','2005-07-29 05:29:40','2006-02-15 22:13:58'), +(5230,193,1,8431,'4.99','2005-07-29 07:12:48','2006-02-15 22:13:58'), +(5231,193,1,9079,'2.99','2005-07-30 08:02:00','2006-02-15 22:13:58'), +(5232,193,1,9575,'4.99','2005-07-31 02:51:53','2006-02-15 22:13:58'), +(5233,193,2,10462,'2.99','2005-08-01 09:38:28','2006-02-15 22:13:58'), +(5234,193,2,12384,'0.99','2005-08-18 08:36:58','2006-02-15 22:13:58'), +(5235,193,2,12658,'4.99','2005-08-18 19:05:42','2006-02-15 22:13:58'), +(5236,193,1,13529,'2.99','2005-08-20 03:07:47','2006-02-15 22:13:58'), +(5237,193,1,13608,'0.99','2005-08-20 06:10:44','2006-02-15 22:13:59'), +(5238,193,1,14679,'2.99','2005-08-21 20:14:58','2006-02-15 22:13:59'), +(5239,193,1,14927,'4.99','2005-08-22 05:31:53','2006-02-15 22:13:59'), +(5240,193,2,15164,'4.99','2005-08-22 14:47:53','2006-02-15 22:13:59'), +(5241,193,2,15344,'6.99','2005-08-22 21:01:48','2006-02-15 22:13:59'), +(5242,193,2,15495,'5.99','2005-08-23 02:26:10','2006-02-15 22:13:59'), +(5243,193,2,15729,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:59'), +(5244,194,2,334,'4.99','2005-05-27 03:03:07','2006-02-15 22:13:59'), +(5245,194,2,677,'7.99','2005-05-28 23:00:08','2006-02-15 22:13:59'), +(5246,194,1,1430,'0.99','2005-06-15 18:24:55','2006-02-15 22:13:59'), +(5247,194,1,2245,'7.99','2005-06-18 04:52:59','2006-02-15 22:13:59'), +(5248,194,1,2347,'2.99','2005-06-18 12:12:29','2006-02-15 22:13:59'), +(5249,194,1,2463,'3.99','2005-06-18 20:01:43','2006-02-15 22:13:59'), +(5250,194,1,2807,'3.99','2005-06-19 19:32:53','2006-02-15 22:13:59'), +(5251,194,2,4231,'7.99','2005-07-07 12:48:19','2006-02-15 22:13:59'), +(5252,194,2,5146,'2.99','2005-07-09 08:14:58','2006-02-15 22:13:59'), +(5253,194,1,5291,'2.99','2005-07-09 15:15:02','2006-02-15 22:13:59'), +(5254,194,2,5894,'3.99','2005-07-10 20:09:34','2006-02-15 22:13:59'), +(5255,194,1,9064,'7.99','2005-07-30 07:24:55','2006-02-15 22:13:59'), +(5256,194,2,11475,'5.99','2005-08-02 21:55:09','2006-02-15 22:13:59'), +(5257,194,2,12851,'3.99','2005-08-19 02:12:12','2006-02-15 22:13:59'), +(5258,194,1,13515,'0.99','2005-08-20 02:29:47','2006-02-15 22:13:59'), +(5259,194,2,13616,'7.99','2005-08-20 06:30:33','2006-02-15 22:13:59'), +(5260,194,1,14440,'4.99','2005-08-21 11:59:04','2006-02-15 22:13:59'), +(5261,194,2,15937,'4.99','2005-08-23 18:43:22','2006-02-15 22:13:59'), +(5262,195,1,4234,'6.99','2005-07-07 13:01:35','2006-02-15 22:13:59'), +(5263,195,1,4315,'2.99','2005-07-07 17:40:26','2006-02-15 22:13:59'), +(5264,195,1,5228,'4.99','2005-07-09 12:26:01','2006-02-15 22:13:59'), +(5265,195,1,5536,'0.99','2005-07-10 02:29:42','2006-02-15 22:13:59'), +(5266,195,2,6175,'4.99','2005-07-11 10:44:37','2006-02-15 22:13:59'), +(5267,195,1,7349,'2.99','2005-07-27 14:33:00','2006-02-15 22:13:59'), +(5268,195,2,8280,'4.99','2005-07-29 01:45:51','2006-02-15 22:13:59'), +(5269,195,2,8479,'0.99','2005-07-29 08:42:04','2006-02-15 22:13:59'), +(5270,195,2,9188,'6.99','2005-07-30 12:19:54','2006-02-15 22:13:59'), +(5271,195,1,9870,'5.99','2005-07-31 13:22:51','2006-02-15 22:13:59'), +(5272,195,1,9994,'4.99','2005-07-31 17:30:31','2006-02-15 22:13:59'), +(5273,195,2,10911,'4.99','2005-08-02 01:58:36','2006-02-15 22:14:00'), +(5274,195,1,11201,'7.99','2005-08-02 11:49:16','2006-02-15 22:14:00'), +(5275,195,2,11787,'2.99','2005-08-17 10:59:00','2006-02-15 22:14:00'), +(5276,195,2,12099,'0.99','2005-08-17 22:38:54','2006-02-15 22:14:00'), +(5277,195,2,12941,'0.99','2005-08-19 05:39:26','2006-02-15 22:14:00'), +(5278,195,2,13741,'0.99','2005-08-20 10:48:47','2006-02-15 22:14:00'), +(5279,195,2,14751,'7.99','2005-08-21 23:11:23','2006-02-15 22:14:00'), +(5280,195,2,16040,'11.99','2005-08-23 22:19:33','2006-02-15 22:14:00'), +(5281,196,2,106,'11.99','2005-05-25 18:18:19','2006-02-15 22:14:00'), +(5282,196,2,178,'5.99','2005-05-26 04:21:46','2006-02-15 22:14:00'), +(5283,196,2,491,'2.99','2005-05-28 00:13:35','2006-02-15 22:14:00'), +(5284,196,1,1053,'1.99','2005-05-31 07:12:44','2006-02-15 22:14:00'), +(5285,196,1,1182,'5.99','2005-06-15 00:45:21','2006-02-15 22:14:00'), +(5286,196,1,1348,'2.99','2005-06-15 12:45:30','2006-02-15 22:14:00'), +(5287,196,2,1600,'0.99','2005-06-16 06:04:12','2006-02-15 22:14:00'), +(5288,196,1,2681,'0.99','2005-06-19 12:15:27','2006-02-15 22:14:00'), +(5289,196,2,2912,'4.99','2005-06-20 03:32:45','2006-02-15 22:14:00'), +(5290,196,1,3104,'4.99','2005-06-20 17:06:46','2006-02-15 22:14:00'), +(5291,196,2,3271,'5.99','2005-06-21 05:16:10','2006-02-15 22:14:00'), +(5292,196,2,3342,'4.99','2005-06-21 10:46:36','2006-02-15 22:14:00'), +(5293,196,1,4879,'2.99','2005-07-08 19:34:55','2006-02-15 22:14:00'), +(5294,196,2,4999,'4.99','2005-07-09 01:12:57','2006-02-15 22:14:00'), +(5295,196,2,5143,'4.99','2005-07-09 08:07:07','2006-02-15 22:14:00'), +(5296,196,2,5353,'3.99','2005-07-09 18:04:29','2006-02-15 22:14:00'), +(5297,196,2,5768,'4.99','2005-07-10 13:15:26','2006-02-15 22:14:00'), +(5298,196,2,6857,'4.99','2005-07-12 19:53:30','2006-02-15 22:14:00'), +(5299,196,2,7666,'3.99','2005-07-28 02:35:12','2006-02-15 22:14:00'), +(5300,196,2,8266,'0.99','2005-07-29 01:20:16','2006-02-15 22:14:00'), +(5301,196,2,8472,'1.99','2005-07-29 08:36:22','2006-02-15 22:14:00'), +(5302,196,2,8700,'0.99','2005-07-29 16:56:01','2006-02-15 22:14:00'), +(5303,196,1,9346,'5.99','2005-07-30 18:13:52','2006-02-15 22:14:00'), +(5304,196,1,9721,'6.99','2005-07-31 08:28:46','2006-02-15 22:14:00'), +(5305,196,1,9804,'4.99','2005-07-31 11:07:39','2006-02-15 22:14:00'), +(5306,196,2,10122,'10.99','2005-07-31 21:29:28','2006-02-15 22:14:00'), +(5307,196,1,10191,'4.99','2005-08-01 00:28:38','2006-02-15 22:14:00'), +(5308,196,1,11104,'2.99','2005-08-02 08:09:58','2006-02-15 22:14:01'), +(5309,196,2,12430,'0.99','2005-08-18 10:32:41','2006-02-15 22:14:01'), +(5310,196,2,12684,'0.99','2005-08-18 19:51:27','2006-02-15 22:14:01'), +(5311,196,2,12836,'0.99','2005-08-19 01:48:33','2006-02-15 22:14:01'), +(5312,196,1,13799,'8.99','2005-08-20 12:36:42','2006-02-15 22:14:01'), +(5313,196,2,14410,'5.99','2005-08-21 10:54:49','2006-02-15 22:14:01'), +(5314,196,1,14698,'5.99','2005-08-21 20:49:58','2006-02-15 22:14:01'), +(5315,196,2,15980,'0.99','2005-08-23 20:10:13','2006-02-15 22:14:01'), +(5316,197,2,94,'2.99','2005-05-25 16:03:42','2006-02-15 22:14:01'), +(5317,197,1,215,'0.99','2005-05-26 09:02:47','2006-02-15 22:14:01'), +(5318,197,1,391,'2.99','2005-05-27 11:03:55','2006-02-15 22:14:01'), +(5319,197,2,649,'1.99','2005-05-28 19:35:45','2006-02-15 22:14:01'), +(5320,197,1,683,'2.99','2005-05-29 00:09:48','2006-02-15 22:14:01'), +(5321,197,2,730,'3.99','2005-05-29 07:00:59','2006-02-15 22:14:01'), +(5322,197,1,903,'3.99','2005-05-30 10:11:29','2006-02-15 22:14:01'), +(5323,197,1,918,'0.99','2005-05-30 11:32:24','2006-02-15 22:14:01'), +(5324,197,2,1175,'2.99','2005-06-15 00:15:15','2006-02-15 22:14:01'), +(5325,197,1,1363,'0.99','2005-06-15 14:05:11','2006-02-15 22:14:01'), +(5326,197,1,1503,'2.99','2005-06-15 22:07:09','2006-02-15 22:14:01'), +(5327,197,2,1605,'8.99','2005-06-16 06:17:55','2006-02-15 22:14:01'), +(5328,197,2,1919,'4.99','2005-06-17 05:40:52','2006-02-15 22:14:01'), +(5329,197,1,2090,'2.99','2005-06-17 18:06:14','2006-02-15 22:14:01'), +(5330,197,1,2750,'4.99','2005-06-19 16:37:24','2006-02-15 22:14:01'), +(5331,197,2,2781,'2.99','2005-06-19 18:24:42','2006-02-15 22:14:01'), +(5332,197,1,4486,'8.99','2005-07-08 01:09:09','2006-02-15 22:14:01'), +(5333,197,2,4739,'4.99','2005-07-08 13:25:57','2006-02-15 22:14:01'), +(5334,197,2,5182,'6.99','2005-07-09 10:08:10','2006-02-15 22:14:01'), +(5335,197,2,5344,'0.99','2005-07-09 17:27:05','2006-02-15 22:14:01'), +(5336,197,1,8165,'2.99','2005-07-28 21:23:06','2006-02-15 22:14:01'), +(5337,197,2,9378,'4.99','2005-07-30 19:12:54','2006-02-15 22:14:01'), +(5338,197,1,9476,'0.99','2005-07-30 23:06:40','2006-02-15 22:14:01'), +(5339,197,2,9585,'4.99','2005-07-31 03:05:55','2006-02-15 22:14:01'), +(5340,197,2,10460,'3.99','2005-08-01 09:31:00','2006-02-15 22:14:01'), +(5341,197,2,10666,'0.99','2005-08-01 16:56:36','2006-02-15 22:14:01'), +(5342,197,2,10739,'4.99','2005-08-01 19:46:11','2006-02-15 22:14:01'), +(5343,197,1,10743,'2.99','2005-08-01 19:55:09','2006-02-15 22:14:01'), +(5344,197,1,11018,'4.99','2005-08-02 05:27:53','2006-02-15 22:14:02'), +(5345,197,1,11215,'4.99','2005-08-02 12:20:42','2006-02-15 22:14:02'), +(5346,197,1,11311,'4.99','2005-08-02 15:53:48','2006-02-15 22:14:02'), +(5347,197,1,11478,'2.99','2005-08-02 22:09:05','2006-02-15 22:14:02'), +(5348,197,1,11643,'1.99','2005-08-17 04:49:35','2006-02-15 22:14:02'), +(5349,197,1,12799,'0.99','2005-08-19 00:27:01','2006-02-15 22:14:02'), +(5350,197,2,13913,'3.99','2005-08-20 16:37:35','2006-02-15 22:14:02'), +(5351,197,1,14069,'9.99','2005-08-20 22:51:25','2006-02-15 22:14:02'), +(5352,197,2,14951,'4.99','2005-08-22 06:19:37','2006-02-15 22:14:02'), +(5353,197,1,15078,'2.99','2005-08-22 11:09:31','2006-02-15 22:14:02'), +(5354,197,2,15233,'0.99','2005-08-22 17:41:53','2006-02-15 22:14:02'), +(5355,197,1,15540,'8.99','2005-08-23 04:12:52','2006-02-15 22:14:02'), +(5356,198,1,357,'0.99','2005-05-27 06:37:15','2006-02-15 22:14:02'), +(5357,198,1,582,'4.99','2005-05-28 11:33:46','2006-02-15 22:14:02'), +(5358,198,2,639,'2.99','2005-05-28 18:25:02','2006-02-15 22:14:02'), +(5359,198,1,932,'2.99','2005-05-30 12:55:36','2006-02-15 22:14:02'), +(5360,198,2,1132,'4.99','2005-05-31 18:44:53','2006-02-15 22:14:02'), +(5361,198,2,2185,'0.99','2005-06-18 01:12:22','2006-02-15 22:14:02'), +(5362,198,2,3770,'2.99','2005-07-06 13:14:28','2006-02-15 22:14:02'), +(5363,198,2,4588,'2.99','2005-07-08 06:18:01','2006-02-15 22:14:02'), +(5364,198,2,4750,'0.99','2005-07-08 14:07:03','2006-02-15 22:14:02'), +(5365,198,2,5794,'4.99','2005-07-10 14:34:53','2006-02-15 22:14:02'), +(5366,198,2,6567,'4.99','2005-07-12 05:43:09','2006-02-15 22:14:02'), +(5367,198,1,6819,'4.99','2005-07-12 18:21:01','2006-02-15 22:14:02'), +(5368,198,2,6889,'4.99','2005-07-12 21:01:22','2006-02-15 22:14:02'), +(5369,198,1,7287,'0.99','2005-07-27 12:24:12','2006-02-15 22:14:02'), +(5370,198,1,7441,'5.99','2005-07-27 17:46:53','2006-02-15 22:14:02'), +(5371,198,1,7583,'2.99','2005-07-27 23:15:22','2006-02-15 22:14:02'), +(5372,198,2,7622,'0.99','2005-07-28 00:37:34','2006-02-15 22:14:02'), +(5373,198,1,8145,'5.99','2005-07-28 20:34:41','2006-02-15 22:14:02'), +(5374,198,2,9389,'0.99','2005-07-30 19:27:59','2006-02-15 22:14:02'), +(5375,198,1,10112,'4.99','2005-07-31 21:08:56','2006-02-15 22:14:02'), +(5376,198,1,10147,'2.99','2005-07-31 22:18:43','2006-02-15 22:14:02'), +(5377,198,1,10679,'0.99','2005-08-01 17:27:58','2006-02-15 22:14:02'), +(5378,198,1,11351,'3.99','2005-08-02 17:28:07','2006-02-15 22:14:02'), +(5379,198,1,11594,'6.99','2005-08-17 02:47:02','2006-02-15 22:14:02'), +(5380,198,1,11756,'2.99','2005-08-17 09:29:22','2006-02-15 22:14:03'), +(5381,198,1,11836,'4.99','2005-08-17 13:03:36','2006-02-15 22:14:03'), +(5382,198,2,11949,'2.99','2005-08-17 17:12:26','2006-02-15 22:14:03'), +(5383,198,1,11957,'1.99','2005-08-17 17:22:29','2006-02-15 22:14:03'), +(5384,198,2,11985,'2.99','2005-08-17 18:19:44','2006-02-15 22:14:03'), +(5385,198,2,12594,'4.99','2005-08-18 16:24:24','2006-02-15 22:14:03'), +(5386,198,1,12862,'5.99','2005-08-19 02:31:59','2006-02-15 22:14:03'), +(5387,198,1,13768,'5.99','2005-08-20 11:43:43','2006-02-15 22:14:03'), +(5388,198,1,14214,'5.99','2005-08-21 04:30:49','2006-02-15 22:14:03'), +(5389,198,2,14380,'2.99','2005-08-21 09:53:52','2006-02-15 22:14:03'), +(5390,198,2,14990,'4.99','2005-08-22 07:48:01','2006-02-15 22:14:03'), +(5391,198,1,15256,'6.99','2005-08-22 18:20:07','2006-02-15 22:14:03'), +(5392,198,1,15433,'4.99','2005-08-23 00:27:18','2006-02-15 22:14:03'), +(5393,199,1,499,'7.99','2005-05-28 01:05:07','2006-02-15 22:14:03'), +(5394,199,1,1406,'4.99','2005-06-15 16:44:00','2006-02-15 22:14:03'), +(5395,199,1,1910,'2.99','2005-06-17 05:11:27','2006-02-15 22:14:03'), +(5396,199,1,3299,'0.99','2005-06-21 07:23:34','2006-02-15 22:14:03'), +(5397,199,1,4499,'2.99','2005-07-08 02:08:48','2006-02-15 22:14:03'), +(5398,199,2,4580,'8.99','2005-07-08 06:04:23','2006-02-15 22:14:03'), +(5399,199,1,4976,'4.99','2005-07-09 00:03:30','2006-02-15 22:14:03'), +(5400,199,2,5398,'2.99','2005-07-09 19:44:58','2006-02-15 22:14:03'), +(5401,199,2,5680,'5.99','2005-07-10 08:47:36','2006-02-15 22:14:03'), +(5402,199,2,6668,'2.99','2005-07-12 11:37:45','2006-02-15 22:14:03'), +(5403,199,2,6782,'4.99','2005-07-12 16:23:25','2006-02-15 22:14:03'), +(5404,199,1,7782,'4.99','2005-07-28 07:13:40','2006-02-15 22:14:03'), +(5405,199,1,8709,'0.99','2005-07-29 17:25:54','2006-02-15 22:14:03'), +(5406,199,1,9752,'2.99','2005-07-31 09:22:02','2006-02-15 22:14:03'), +(5407,199,2,9894,'4.99','2005-07-31 14:07:44','2006-02-15 22:14:03'), +(5408,199,1,9959,'4.99','2005-07-31 16:04:22','2006-02-15 22:14:03'), +(5409,199,1,10196,'2.99','2005-08-01 00:34:51','2006-02-15 22:14:03'), +(5410,199,2,10517,'4.99','2005-08-01 11:41:57','2006-02-15 22:14:03'), +(5411,199,1,10850,'8.99','2005-08-01 23:53:45','2006-02-15 22:14:03'), +(5412,199,1,11454,'2.99','2005-08-02 21:04:39','2006-02-15 22:14:03'), +(5413,199,1,12386,'0.99','2005-08-18 08:45:57','2006-02-15 22:14:03'), +(5414,199,2,14320,'4.99','2005-08-21 08:04:40','2006-02-15 22:14:03'), +(5415,199,2,15412,'0.99','2005-08-22 23:37:11','2006-02-15 22:14:03'), +(5416,199,2,15751,'3.99','2005-08-23 12:41:07','2006-02-15 22:14:04'), +(5417,199,2,13952,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'), +(5418,200,2,270,'9.99','2005-05-26 16:20:56','2006-02-15 22:14:04'), +(5419,200,2,1296,'1.99','2005-06-15 09:23:59','2006-02-15 22:14:04'), +(5420,200,2,1309,'4.99','2005-06-15 10:10:49','2006-02-15 22:14:04'), +(5421,200,2,1899,'6.99','2005-06-17 04:29:15','2006-02-15 22:14:04'), +(5422,200,1,2227,'4.99','2005-06-18 03:43:23','2006-02-15 22:14:04'), +(5423,200,2,2667,'3.99','2005-06-19 11:28:46','2006-02-15 22:14:04'), +(5424,200,2,2717,'4.99','2005-06-19 14:46:10','2006-02-15 22:14:04'), +(5425,200,1,3190,'3.99','2005-06-20 23:27:15','2006-02-15 22:14:04'), +(5426,200,1,3580,'4.99','2005-07-06 03:48:44','2006-02-15 22:14:04'), +(5427,200,1,5110,'2.99','2005-07-09 06:57:25','2006-02-15 22:14:04'), +(5428,200,1,6123,'0.99','2005-07-11 08:02:27','2006-02-15 22:14:04'), +(5429,200,2,6167,'2.99','2005-07-11 10:21:21','2006-02-15 22:14:04'), +(5430,200,1,6181,'4.99','2005-07-11 11:10:11','2006-02-15 22:14:04'), +(5431,200,1,6947,'3.99','2005-07-26 23:42:03','2006-02-15 22:14:04'), +(5432,200,1,7574,'2.99','2005-07-27 22:53:00','2006-02-15 22:14:04'), +(5433,200,2,8368,'3.99','2005-07-29 05:15:41','2006-02-15 22:14:04'), +(5434,200,2,8462,'2.99','2005-07-29 08:15:42','2006-02-15 22:14:04'), +(5435,200,1,9527,'6.99','2005-07-31 01:02:24','2006-02-15 22:14:04'), +(5436,200,1,10685,'2.99','2005-08-01 17:49:38','2006-02-15 22:14:04'), +(5437,200,1,11356,'8.99','2005-08-02 17:42:40','2006-02-15 22:14:04'), +(5438,200,1,13737,'5.99','2005-08-20 10:41:50','2006-02-15 22:14:04'), +(5439,200,1,14034,'10.99','2005-08-20 21:31:52','2006-02-15 22:14:04'), +(5440,200,2,14521,'6.99','2005-08-21 15:01:32','2006-02-15 22:14:04'), +(5441,200,2,15691,'4.99','2005-08-23 09:53:54','2006-02-15 22:14:04'), +(5442,200,2,15742,'5.99','2005-08-23 12:11:37','2006-02-15 22:14:04'), +(5443,200,1,15961,'6.99','2005-08-23 19:35:42','2006-02-15 22:14:04'), +(5444,200,2,11866,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'), +(5445,201,1,311,'3.99','2005-05-26 22:51:37','2006-02-15 22:14:04'), +(5446,201,1,670,'6.99','2005-05-28 22:04:03','2006-02-15 22:14:04'), +(5447,201,2,756,'5.99','2005-05-29 10:28:45','2006-02-15 22:14:04'), +(5448,201,1,2047,'1.99','2005-06-17 14:40:58','2006-02-15 22:14:04'), +(5449,201,1,2157,'3.99','2005-06-17 23:30:52','2006-02-15 22:14:04'), +(5450,201,2,2359,'6.99','2005-06-18 13:04:42','2006-02-15 22:14:04'), +(5451,201,1,3106,'4.99','2005-06-20 17:18:06','2006-02-15 22:14:04'), +(5452,201,1,3364,'7.99','2005-06-21 12:37:46','2006-02-15 22:14:05'), +(5453,201,2,3528,'4.99','2005-07-06 01:13:27','2006-02-15 22:14:05'), +(5454,201,2,3708,'6.99','2005-07-06 10:23:27','2006-02-15 22:14:05'), +(5455,201,1,7106,'0.99','2005-07-27 05:21:24','2006-02-15 22:14:05'), +(5456,201,2,7606,'2.99','2005-07-28 00:02:15','2006-02-15 22:14:05'), +(5457,201,2,9355,'0.99','2005-07-30 18:35:25','2006-02-15 22:14:05'), +(5458,201,2,10750,'5.99','2005-08-01 20:06:00','2006-02-15 22:14:05'), +(5459,201,2,10865,'3.99','2005-08-02 00:22:46','2006-02-15 22:14:05'), +(5460,201,1,10891,'0.99','2005-08-02 01:09:55','2006-02-15 22:14:05'), +(5461,201,2,11807,'0.99','2005-08-17 11:51:15','2006-02-15 22:14:05'), +(5462,201,2,13076,'4.99','2005-08-19 10:10:26','2006-02-15 22:14:05'), +(5463,201,2,13613,'9.99','2005-08-20 06:23:53','2006-02-15 22:14:05'), +(5464,201,2,13671,'3.99','2005-08-20 08:27:03','2006-02-15 22:14:05'), +(5465,201,2,13672,'2.99','2005-08-20 08:27:27','2006-02-15 22:14:05'), +(5466,201,2,14656,'2.99','2005-08-21 19:39:28','2006-02-15 22:14:05'), +(5467,201,1,14973,'2.99','2005-08-22 06:59:28','2006-02-15 22:14:05'), +(5468,201,1,15887,'2.99','2005-08-23 16:54:09','2006-02-15 22:14:05'), +(5469,201,2,15974,'5.99','2005-08-23 20:06:04','2006-02-15 22:14:05'), +(5470,202,1,1474,'2.99','2005-06-15 20:55:42','2006-02-15 22:14:05'), +(5471,202,1,1535,'4.99','2005-06-16 00:52:04','2006-02-15 22:14:05'), +(5472,202,1,3008,'0.99','2005-06-20 10:23:25','2006-02-15 22:14:05'), +(5473,202,2,3148,'0.99','2005-06-20 20:27:18','2006-02-15 22:14:05'), +(5474,202,1,3861,'8.99','2005-07-06 17:24:49','2006-02-15 22:14:05'), +(5475,202,2,4567,'4.99','2005-07-08 05:20:04','2006-02-15 22:14:05'), +(5476,202,2,5194,'2.99','2005-07-09 10:31:34','2006-02-15 22:14:05'), +(5477,202,1,5297,'2.99','2005-07-09 15:32:29','2006-02-15 22:14:05'), +(5478,202,2,5838,'2.99','2005-07-10 17:04:56','2006-02-15 22:14:05'), +(5479,202,1,7613,'2.99','2005-07-28 00:13:58','2006-02-15 22:14:05'), +(5480,202,1,8351,'2.99','2005-07-29 04:50:53','2006-02-15 22:14:05'), +(5481,202,1,8779,'2.99','2005-07-29 20:15:00','2006-02-15 22:14:05'), +(5482,202,1,8830,'2.99','2005-07-29 22:34:35','2006-02-15 22:14:05'), +(5483,202,2,8930,'0.99','2005-07-30 02:28:38','2006-02-15 22:14:05'), +(5484,202,2,9057,'2.99','2005-07-30 07:14:18','2006-02-15 22:14:05'), +(5485,202,2,9467,'8.99','2005-07-30 22:45:34','2006-02-15 22:14:05'), +(5486,202,2,9751,'4.99','2005-07-31 09:20:50','2006-02-15 22:14:05'), +(5487,202,1,10375,'2.99','2005-08-01 06:26:22','2006-02-15 22:14:05'), +(5488,202,1,11210,'4.99','2005-08-02 12:15:54','2006-02-15 22:14:06'), +(5489,202,2,11924,'4.99','2005-08-17 16:22:05','2006-02-15 22:14:06'), +(5490,202,2,12801,'8.99','2005-08-19 00:27:19','2006-02-15 22:14:06'), +(5491,202,1,13196,'4.99','2005-08-19 14:40:32','2006-02-15 22:14:06'), +(5492,202,1,13528,'3.99','2005-08-20 03:03:31','2006-02-15 22:14:06'), +(5493,202,1,14019,'3.99','2005-08-20 20:59:15','2006-02-15 22:14:06'), +(5494,202,1,15095,'0.99','2005-08-22 11:41:35','2006-02-15 22:14:06'), +(5495,202,2,15772,'4.99','2005-08-23 13:22:56','2006-02-15 22:14:06'), +(5496,203,1,314,'0.99','2005-05-26 23:09:41','2006-02-15 22:14:06'), +(5497,203,1,1217,'4.99','2005-06-15 03:24:14','2006-02-15 22:14:06'), +(5498,203,1,1715,'2.99','2005-06-16 14:37:12','2006-02-15 22:14:06'), +(5499,203,2,2939,'7.99','2005-06-20 05:18:16','2006-02-15 22:14:06'), +(5500,203,2,3406,'2.99','2005-06-21 16:00:18','2006-02-15 22:14:06'), +(5501,203,2,4136,'2.99','2005-07-07 08:15:52','2006-02-15 22:14:06'), +(5502,203,2,5579,'5.99','2005-07-10 04:04:29','2006-02-15 22:14:06'), +(5503,203,2,7787,'6.99','2005-07-28 07:19:02','2006-02-15 22:14:06'), +(5504,203,1,8039,'0.99','2005-07-28 16:35:16','2006-02-15 22:14:06'), +(5505,203,1,8463,'4.99','2005-07-29 08:17:51','2006-02-15 22:14:06'), +(5506,203,1,8792,'7.99','2005-07-29 20:56:14','2006-02-15 22:14:06'), +(5507,203,2,9015,'10.99','2005-07-30 05:21:32','2006-02-15 22:14:06'), +(5508,203,2,10700,'3.99','2005-08-01 18:26:31','2006-02-15 22:14:06'), +(5509,203,2,10805,'2.99','2005-08-01 22:23:37','2006-02-15 22:14:06'), +(5510,203,1,11712,'2.99','2005-08-17 07:32:51','2006-02-15 22:14:06'), +(5511,203,1,12519,'0.99','2005-08-18 13:42:14','2006-02-15 22:14:06'), +(5512,203,2,13841,'4.99','2005-08-20 14:25:18','2006-02-15 22:14:06'), +(5513,203,2,14505,'5.99','2005-08-21 14:26:28','2006-02-15 22:14:06'), +(5514,203,2,15798,'2.99','2005-08-23 14:23:03','2006-02-15 22:14:06'), +(5515,203,2,15991,'2.99','2005-08-23 20:27:34','2006-02-15 22:14:06'), +(5516,204,2,251,'0.99','2005-05-26 14:35:40','2006-02-15 22:14:06'), +(5517,204,2,399,'4.99','2005-05-27 12:48:38','2006-02-15 22:14:06'), +(5518,204,2,857,'4.99','2005-05-30 02:01:23','2006-02-15 22:14:06'), +(5519,204,1,1016,'1.99','2005-05-31 02:49:43','2006-02-15 22:14:06'), +(5520,204,1,1321,'2.99','2005-06-15 10:49:17','2006-02-15 22:14:06'), +(5521,204,1,1616,'7.99','2005-06-16 07:04:52','2006-02-15 22:14:06'), +(5522,204,1,1871,'4.99','2005-06-17 02:25:12','2006-02-15 22:14:06'), +(5523,204,2,1894,'7.99','2005-06-17 04:18:48','2006-02-15 22:14:06'), +(5524,204,2,2186,'2.99','2005-06-18 01:15:27','2006-02-15 22:14:07'), +(5525,204,2,2734,'4.99','2005-06-19 15:36:27','2006-02-15 22:14:07'), +(5526,204,1,4043,'0.99','2005-07-07 03:09:50','2006-02-15 22:14:07'), +(5527,204,1,4979,'4.99','2005-07-09 00:24:34','2006-02-15 22:14:07'), +(5528,204,2,5145,'0.99','2005-07-09 08:13:25','2006-02-15 22:14:07'), +(5529,204,1,5619,'2.99','2005-07-10 05:29:33','2006-02-15 22:14:07'), +(5530,204,2,6004,'4.99','2005-07-11 01:34:25','2006-02-15 22:14:07'), +(5531,204,2,6225,'2.99','2005-07-11 13:45:14','2006-02-15 22:14:07'), +(5532,204,2,6631,'0.99','2005-07-12 09:31:43','2006-02-15 22:14:07'), +(5533,204,1,6694,'6.99','2005-07-12 12:39:23','2006-02-15 22:14:07'), +(5534,204,2,6871,'2.99','2005-07-12 20:13:49','2006-02-15 22:14:07'), +(5535,204,1,7392,'4.99','2005-07-27 16:01:05','2006-02-15 22:14:07'), +(5536,204,2,9005,'0.99','2005-07-30 05:04:58','2006-02-15 22:14:07'), +(5537,204,1,9394,'5.99','2005-07-30 20:06:24','2006-02-15 22:14:07'), +(5538,204,2,9906,'4.99','2005-07-31 14:38:12','2006-02-15 22:14:07'), +(5539,204,2,10042,'2.99','2005-07-31 19:01:25','2006-02-15 22:14:07'), +(5540,204,2,10399,'5.99','2005-08-01 07:13:39','2006-02-15 22:14:07'), +(5541,204,1,11261,'7.99','2005-08-02 13:54:26','2006-02-15 22:14:07'), +(5542,204,2,11886,'0.99','2005-08-17 14:58:51','2006-02-15 22:14:07'), +(5543,204,1,12737,'6.99','2005-08-18 22:11:37','2006-02-15 22:14:07'), +(5544,204,1,13084,'0.99','2005-08-19 10:27:25','2006-02-15 22:14:07'), +(5545,204,1,13416,'4.99','2005-08-19 22:48:48','2006-02-15 22:14:07'), +(5546,204,2,13899,'2.99','2005-08-20 16:05:11','2006-02-15 22:14:07'), +(5547,204,2,14163,'4.99','2005-08-21 02:56:52','2006-02-15 22:14:07'), +(5548,204,1,14871,'0.99','2005-08-22 03:23:24','2006-02-15 22:14:07'), +(5549,204,1,15364,'4.99','2005-08-22 21:41:41','2006-02-15 22:14:07'), +(5550,204,2,15415,'11.99','2005-08-22 23:48:56','2006-02-15 22:14:07'), +(5551,205,1,1238,'2.99','2005-06-15 04:49:08','2006-02-15 22:14:07'), +(5552,205,1,1357,'4.99','2005-06-15 13:26:23','2006-02-15 22:14:07'), +(5553,205,1,1767,'0.99','2005-06-16 18:01:36','2006-02-15 22:14:07'), +(5554,205,2,2237,'5.99','2005-06-18 04:17:44','2006-02-15 22:14:07'), +(5555,205,1,3601,'7.99','2005-07-06 05:20:25','2006-02-15 22:14:07'), +(5556,205,2,4230,'3.99','2005-07-07 12:46:47','2006-02-15 22:14:07'), +(5557,205,2,4377,'7.99','2005-07-07 20:28:57','2006-02-15 22:14:07'), +(5558,205,1,4729,'4.99','2005-07-08 12:59:40','2006-02-15 22:14:07'), +(5559,205,1,7736,'2.99','2005-07-28 05:12:04','2006-02-15 22:14:08'), +(5560,205,2,7976,'7.99','2005-07-28 14:13:24','2006-02-15 22:14:08'), +(5561,205,2,8896,'4.99','2005-07-30 00:51:21','2006-02-15 22:14:08'), +(5562,205,2,10086,'4.99','2005-07-31 20:14:08','2006-02-15 22:14:08'), +(5563,205,1,13935,'2.99','2005-08-20 17:20:49','2006-02-15 22:14:08'), +(5564,205,1,14338,'0.99','2005-08-21 08:36:03','2006-02-15 22:14:08'), +(5565,205,2,14391,'4.99','2005-08-21 10:16:27','2006-02-15 22:14:08'), +(5566,205,1,14442,'2.99','2005-08-21 12:00:21','2006-02-15 22:14:08'), +(5567,205,2,14490,'6.99','2005-08-21 13:54:15','2006-02-15 22:14:08'), +(5568,205,2,15418,'0.99','2005-08-22 23:54:14','2006-02-15 22:14:08'), +(5569,206,2,1872,'0.99','2005-06-17 02:27:03','2006-02-15 22:14:08'), +(5570,206,2,2477,'5.99','2005-06-18 20:58:46','2006-02-15 22:14:08'), +(5571,206,2,3012,'4.99','2005-06-20 10:43:13','2006-02-15 22:14:08'), +(5572,206,1,3533,'5.99','2005-07-06 01:26:44','2006-02-15 22:14:08'), +(5573,206,2,3831,'0.99','2005-07-06 16:06:35','2006-02-15 22:14:08'), +(5574,206,1,3847,'4.99','2005-07-06 16:44:41','2006-02-15 22:14:08'), +(5575,206,2,4068,'4.99','2005-07-07 04:34:38','2006-02-15 22:14:08'), +(5576,206,2,4107,'4.99','2005-07-07 06:36:32','2006-02-15 22:14:08'), +(5577,206,2,4823,'4.99','2005-07-08 17:28:54','2006-02-15 22:14:08'), +(5578,206,1,6139,'3.99','2005-07-11 08:39:33','2006-02-15 22:14:08'), +(5579,206,1,6420,'6.99','2005-07-11 23:38:49','2006-02-15 22:14:08'), +(5580,206,1,7222,'4.99','2005-07-27 09:38:43','2006-02-15 22:14:08'), +(5581,206,2,7541,'4.99','2005-07-27 21:40:05','2006-02-15 22:14:08'), +(5582,206,1,8217,'5.99','2005-07-28 23:44:13','2006-02-15 22:14:08'), +(5583,206,1,8549,'3.99','2005-07-29 11:12:13','2006-02-15 22:14:08'), +(5584,206,2,9474,'2.99','2005-07-30 23:05:44','2006-02-15 22:14:08'), +(5585,206,2,10930,'3.99','2005-08-02 02:38:07','2006-02-15 22:14:08'), +(5586,206,1,11022,'2.99','2005-08-02 05:35:03','2006-02-15 22:14:08'), +(5587,206,2,11634,'2.99','2005-08-17 04:31:49','2006-02-15 22:14:08'), +(5588,206,1,13128,'4.99','2005-08-19 12:04:16','2006-02-15 22:14:08'), +(5589,206,2,13232,'2.99','2005-08-19 16:13:32','2006-02-15 22:14:08'), +(5590,206,2,13263,'10.99','2005-08-19 17:26:55','2006-02-15 22:14:08'), +(5591,206,2,13550,'9.99','2005-08-20 03:58:51','2006-02-15 22:14:08'), +(5592,206,2,13696,'0.99','2005-08-20 09:16:15','2006-02-15 22:14:08'), +(5593,206,2,14695,'0.99','2005-08-21 20:46:47','2006-02-15 22:14:08'), +(5594,206,2,15686,'7.99','2005-08-23 09:42:21','2006-02-15 22:14:09'), +(5595,206,1,15709,'4.99','2005-08-23 10:36:00','2006-02-15 22:14:09'), +(5596,207,1,39,'0.99','2005-05-25 04:51:46','2006-02-15 22:14:09'), +(5597,207,1,44,'0.99','2005-05-25 05:53:23','2006-02-15 22:14:09'), +(5598,207,1,659,'0.99','2005-05-28 20:27:53','2006-02-15 22:14:09'), +(5599,207,2,826,'6.99','2005-05-29 21:56:15','2006-02-15 22:14:09'), +(5600,207,2,896,'3.99','2005-05-30 09:03:52','2006-02-15 22:14:09'), +(5601,207,2,1144,'3.99','2005-05-31 20:04:10','2006-02-15 22:14:09'), +(5602,207,2,1945,'3.99','2005-06-17 07:51:26','2006-02-15 22:14:09'), +(5603,207,2,3584,'2.99','2005-07-06 04:16:43','2006-02-15 22:14:09'), +(5604,207,2,3687,'9.99','2005-07-06 09:38:33','2006-02-15 22:14:09'), +(5605,207,1,4018,'2.99','2005-07-07 01:10:33','2006-02-15 22:14:09'), +(5606,207,2,4713,'5.99','2005-07-08 12:12:33','2006-02-15 22:14:09'), +(5607,207,1,4816,'0.99','2005-07-08 17:14:14','2006-02-15 22:14:09'), +(5608,207,2,5007,'0.99','2005-07-09 01:26:22','2006-02-15 22:14:09'), +(5609,207,1,5258,'0.99','2005-07-09 13:56:56','2006-02-15 22:14:09'), +(5610,207,1,5259,'4.99','2005-07-09 14:02:50','2006-02-15 22:14:09'), +(5611,207,2,5939,'0.99','2005-07-10 22:30:05','2006-02-15 22:14:09'), +(5612,207,2,6465,'5.99','2005-07-12 01:17:11','2006-02-15 22:14:09'), +(5613,207,1,6537,'0.99','2005-07-12 04:46:30','2006-02-15 22:14:09'), +(5614,207,2,7306,'5.99','2005-07-27 12:57:26','2006-02-15 22:14:09'), +(5615,207,1,7540,'5.99','2005-07-27 21:39:55','2006-02-15 22:14:09'), +(5616,207,1,8800,'5.99','2005-07-29 21:18:59','2006-02-15 22:14:09'), +(5617,207,2,9652,'2.99','2005-07-31 05:49:53','2006-02-15 22:14:09'), +(5618,207,2,10234,'3.99','2005-08-01 01:56:20','2006-02-15 22:14:09'), +(5619,207,2,10300,'0.99','2005-08-01 04:08:11','2006-02-15 22:14:09'), +(5620,207,1,11112,'2.99','2005-08-02 08:25:14','2006-02-15 22:14:09'), +(5621,207,2,11260,'0.99','2005-08-02 13:52:19','2006-02-15 22:14:09'), +(5622,207,2,11286,'5.99','2005-08-02 14:44:22','2006-02-15 22:14:09'), +(5623,207,1,11724,'6.99','2005-08-17 08:04:44','2006-02-15 22:14:09'), +(5624,207,2,12108,'6.99','2005-08-17 22:56:39','2006-02-15 22:14:09'), +(5625,207,2,13655,'2.99','2005-08-20 07:59:13','2006-02-15 22:14:09'), +(5626,207,2,13809,'8.99','2005-08-20 12:56:03','2006-02-15 22:14:09'), +(5627,207,2,13912,'9.99','2005-08-20 16:32:10','2006-02-15 22:14:09'), +(5628,207,2,13954,'3.99','2005-08-20 18:02:41','2006-02-15 22:14:09'), +(5629,207,1,15625,'1.99','2005-08-23 07:25:29','2006-02-15 22:14:10'), +(5630,208,1,100,'4.99','2005-05-25 16:50:28','2006-02-15 22:14:10'), +(5631,208,1,1805,'0.99','2005-06-16 20:36:00','2006-02-15 22:14:10'), +(5632,208,1,1949,'5.99','2005-06-17 08:19:22','2006-02-15 22:14:10'), +(5633,208,2,2592,'0.99','2005-06-19 05:36:54','2006-02-15 22:14:10'), +(5634,208,1,2695,'2.99','2005-06-19 13:25:53','2006-02-15 22:14:10'), +(5635,208,2,2907,'0.99','2005-06-20 03:15:09','2006-02-15 22:14:10'), +(5636,208,2,3811,'2.99','2005-07-06 15:20:37','2006-02-15 22:14:10'), +(5637,208,1,4354,'5.99','2005-07-07 19:21:02','2006-02-15 22:14:10'), +(5638,208,2,4985,'4.99','2005-07-09 00:36:02','2006-02-15 22:14:10'), +(5639,208,1,5117,'2.99','2005-07-09 07:11:22','2006-02-15 22:14:10'), +(5640,208,2,5693,'2.99','2005-07-10 09:35:43','2006-02-15 22:14:10'), +(5641,208,2,6306,'6.99','2005-07-11 18:04:26','2006-02-15 22:14:10'), +(5642,208,1,6767,'1.99','2005-07-12 15:46:55','2006-02-15 22:14:10'), +(5643,208,1,7315,'0.99','2005-07-27 13:14:56','2006-02-15 22:14:10'), +(5644,208,1,7861,'2.99','2005-07-28 10:02:01','2006-02-15 22:14:10'), +(5645,208,2,7984,'2.99','2005-07-28 14:27:51','2006-02-15 22:14:10'), +(5646,208,1,8742,'1.99','2005-07-29 18:56:12','2006-02-15 22:14:10'), +(5647,208,2,9298,'3.99','2005-07-30 16:27:53','2006-02-15 22:14:10'), +(5648,208,1,9838,'4.99','2005-07-31 12:18:49','2006-02-15 22:14:10'), +(5649,208,2,10762,'4.99','2005-08-01 20:28:39','2006-02-15 22:14:10'), +(5650,208,2,10784,'5.99','2005-08-01 21:24:28','2006-02-15 22:14:10'), +(5651,208,2,11442,'2.99','2005-08-02 20:26:19','2006-02-15 22:14:10'), +(5652,208,2,11805,'6.99','2005-08-17 11:48:47','2006-02-15 22:14:10'), +(5653,208,2,11819,'0.99','2005-08-17 12:25:17','2006-02-15 22:14:10'), +(5654,208,1,13719,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:10'), +(5655,208,1,15717,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:10'), +(5656,209,2,340,'9.99','2005-05-27 03:55:25','2006-02-15 22:14:10'), +(5657,209,1,471,'0.99','2005-05-27 21:32:42','2006-02-15 22:14:10'), +(5658,209,2,1143,'2.99','2005-05-31 19:53:03','2006-02-15 22:14:10'), +(5659,209,2,1201,'4.99','2005-06-15 02:06:28','2006-02-15 22:14:10'), +(5660,209,1,1657,'4.99','2005-06-16 10:06:49','2006-02-15 22:14:10'), +(5661,209,1,2650,'4.99','2005-06-19 10:21:45','2006-02-15 22:14:10'), +(5662,209,1,2796,'4.99','2005-06-19 19:00:37','2006-02-15 22:14:10'), +(5663,209,2,3504,'2.99','2005-07-06 00:18:29','2006-02-15 22:14:10'), +(5664,209,2,4071,'5.99','2005-07-07 04:37:26','2006-02-15 22:14:11'), +(5665,209,1,4309,'5.99','2005-07-07 17:29:41','2006-02-15 22:14:11'), +(5666,209,2,4810,'4.99','2005-07-08 17:04:06','2006-02-15 22:14:11'), +(5667,209,1,4907,'4.99','2005-07-08 21:01:41','2006-02-15 22:14:11'), +(5668,209,2,5170,'3.99','2005-07-09 09:24:19','2006-02-15 22:14:11'), +(5669,209,2,5219,'5.99','2005-07-09 11:57:55','2006-02-15 22:14:11'), +(5670,209,1,6210,'0.99','2005-07-11 12:36:43','2006-02-15 22:14:11'), +(5671,209,1,7116,'6.99','2005-07-27 05:46:43','2006-02-15 22:14:11'), +(5672,209,1,7269,'3.99','2005-07-27 11:23:47','2006-02-15 22:14:11'), +(5673,209,1,7505,'4.99','2005-07-27 20:28:03','2006-02-15 22:14:11'), +(5674,209,2,7752,'5.99','2005-07-28 06:01:00','2006-02-15 22:14:11'), +(5675,209,1,8067,'4.99','2005-07-28 17:20:17','2006-02-15 22:14:11'), +(5676,209,2,8759,'8.99','2005-07-29 19:22:37','2006-02-15 22:14:11'), +(5677,209,2,8816,'2.99','2005-07-29 21:53:00','2006-02-15 22:14:11'), +(5678,209,2,9054,'6.99','2005-07-30 07:11:44','2006-02-15 22:14:11'), +(5679,209,1,9923,'0.99','2005-07-31 15:00:15','2006-02-15 22:14:11'), +(5680,209,2,10554,'2.99','2005-08-01 12:56:19','2006-02-15 22:14:11'), +(5681,209,1,10646,'4.99','2005-08-01 15:57:55','2006-02-15 22:14:11'), +(5682,209,2,10811,'6.99','2005-08-01 22:41:15','2006-02-15 22:14:11'), +(5683,209,1,12025,'0.99','2005-08-17 19:59:06','2006-02-15 22:14:11'), +(5684,209,1,13796,'8.99','2005-08-20 12:32:32','2006-02-15 22:14:11'), +(5685,209,2,14631,'6.99','2005-08-21 18:47:49','2006-02-15 22:14:11'), +(5686,209,1,15254,'2.99','2005-08-22 18:13:07','2006-02-15 22:14:11'), +(5687,209,2,15510,'9.99','2005-08-23 02:51:27','2006-02-15 22:14:11'), +(5688,210,1,953,'2.99','2005-05-30 16:34:02','2006-02-15 22:14:11'), +(5689,210,2,1177,'2.99','2005-06-15 00:33:04','2006-02-15 22:14:11'), +(5690,210,2,2856,'0.99','2005-06-19 23:13:04','2006-02-15 22:14:11'), +(5691,210,2,3563,'4.99','2005-07-06 02:57:01','2006-02-15 22:14:11'), +(5692,210,2,3884,'4.99','2005-07-06 18:41:33','2006-02-15 22:14:11'), +(5693,210,2,4270,'0.99','2005-07-07 14:38:41','2006-02-15 22:14:11'), +(5694,210,1,4306,'2.99','2005-07-07 17:12:32','2006-02-15 22:14:11'), +(5695,210,1,4334,'0.99','2005-07-07 18:32:04','2006-02-15 22:14:11'), +(5696,210,2,4388,'7.99','2005-07-07 20:58:03','2006-02-15 22:14:11'), +(5697,210,1,4620,'5.99','2005-07-08 08:01:44','2006-02-15 22:14:11'), +(5698,210,1,4871,'6.99','2005-07-08 19:19:52','2006-02-15 22:14:12'), +(5699,210,1,4893,'4.99','2005-07-08 20:19:55','2006-02-15 22:14:12'), +(5700,210,1,4989,'3.99','2005-07-09 00:46:56','2006-02-15 22:14:12'), +(5701,210,2,5957,'0.99','2005-07-10 23:24:02','2006-02-15 22:14:12'), +(5702,210,2,6227,'4.99','2005-07-11 13:56:46','2006-02-15 22:14:12'), +(5703,210,1,6564,'1.99','2005-07-12 05:34:44','2006-02-15 22:14:12'), +(5704,210,1,7743,'5.99','2005-07-28 05:36:13','2006-02-15 22:14:12'), +(5705,210,2,7909,'0.99','2005-07-28 11:38:08','2006-02-15 22:14:12'), +(5706,210,2,8336,'8.99','2005-07-29 04:20:42','2006-02-15 22:14:12'), +(5707,210,2,8678,'3.99','2005-07-29 16:04:00','2006-02-15 22:14:12'), +(5708,210,2,8738,'0.99','2005-07-29 18:32:47','2006-02-15 22:14:12'), +(5709,210,2,10890,'4.99','2005-08-02 00:58:46','2006-02-15 22:14:12'), +(5710,210,2,12410,'8.99','2005-08-18 09:45:33','2006-02-15 22:14:12'), +(5711,210,1,12879,'4.99','2005-08-19 03:22:55','2006-02-15 22:14:12'), +(5712,210,2,12909,'2.99','2005-08-19 04:20:25','2006-02-15 22:14:12'), +(5713,210,2,12986,'4.99','2005-08-19 07:09:36','2006-02-15 22:14:12'), +(5714,210,1,14181,'7.99','2005-08-21 03:16:30','2006-02-15 22:14:12'), +(5715,210,2,14639,'6.99','2005-08-21 19:01:39','2006-02-15 22:14:12'), +(5716,210,2,14876,'4.99','2005-08-22 03:39:29','2006-02-15 22:14:12'), +(5717,210,2,15672,'0.99','2005-08-23 09:09:18','2006-02-15 22:14:12'), +(5718,210,2,15942,'8.99','2005-08-23 18:48:40','2006-02-15 22:14:12'), +(5719,211,1,238,'4.99','2005-05-26 12:30:22','2006-02-15 22:14:12'), +(5720,211,2,2812,'8.99','2005-06-19 19:58:16','2006-02-15 22:14:12'), +(5721,211,2,3437,'6.99','2005-06-21 19:20:17','2006-02-15 22:14:12'), +(5722,211,2,3937,'8.99','2005-07-06 21:15:38','2006-02-15 22:14:12'), +(5723,211,2,4060,'2.99','2005-07-07 04:10:13','2006-02-15 22:14:12'), +(5724,211,2,4441,'5.99','2005-07-07 23:04:23','2006-02-15 22:14:12'), +(5725,211,2,4479,'2.99','2005-07-08 00:52:35','2006-02-15 22:14:12'), +(5726,211,1,4857,'2.99','2005-07-08 18:52:07','2006-02-15 22:14:12'), +(5727,211,1,5668,'5.99','2005-07-10 08:11:05','2006-02-15 22:14:12'), +(5728,211,2,5699,'3.99','2005-07-10 09:48:04','2006-02-15 22:14:12'), +(5729,211,2,5785,'4.99','2005-07-10 14:06:03','2006-02-15 22:14:12'), +(5730,211,2,6438,'0.99','2005-07-12 00:23:01','2006-02-15 22:14:12'), +(5731,211,1,6628,'4.99','2005-07-12 09:18:08','2006-02-15 22:14:13'), +(5732,211,1,6722,'1.99','2005-07-12 13:44:03','2006-02-15 22:14:13'), +(5733,211,2,7484,'0.99','2005-07-27 19:28:17','2006-02-15 22:14:13'), +(5734,211,1,7975,'2.99','2005-07-28 14:12:47','2006-02-15 22:14:13'), +(5735,211,2,8961,'6.99','2005-07-30 03:43:35','2006-02-15 22:14:13'), +(5736,211,1,9111,'3.99','2005-07-30 09:05:44','2006-02-15 22:14:13'), +(5737,211,1,9953,'0.99','2005-07-31 15:56:35','2006-02-15 22:14:13'), +(5738,211,1,10445,'2.99','2005-08-01 09:02:15','2006-02-15 22:14:13'), +(5739,211,2,10928,'4.99','2005-08-02 02:34:12','2006-02-15 22:14:13'), +(5740,211,2,11076,'8.99','2005-08-02 07:24:47','2006-02-15 22:14:13'), +(5741,211,2,11963,'3.99','2005-08-17 17:35:47','2006-02-15 22:14:13'), +(5742,211,2,12311,'0.99','2005-08-18 06:07:00','2006-02-15 22:14:13'), +(5743,211,2,12565,'4.99','2005-08-18 15:12:17','2006-02-15 22:14:13'), +(5744,211,2,12570,'5.99','2005-08-18 15:23:31','2006-02-15 22:14:13'), +(5745,211,2,13942,'2.99','2005-08-20 17:30:52','2006-02-15 22:14:13'), +(5746,211,1,13979,'2.99','2005-08-20 19:03:49','2006-02-15 22:14:13'), +(5747,211,2,14782,'0.99','2005-08-22 00:17:20','2006-02-15 22:14:13'), +(5748,211,2,14812,'1.99','2005-08-22 01:10:32','2006-02-15 22:14:13'), +(5749,211,1,15404,'7.99','2005-08-22 23:19:44','2006-02-15 22:14:13'), +(5750,211,2,15538,'6.99','2005-08-23 04:07:37','2006-02-15 22:14:13'), +(5751,211,2,15670,'5.99','2005-08-23 09:07:11','2006-02-15 22:14:13'), +(5752,211,2,12746,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:13'), +(5753,212,1,1356,'0.99','2005-06-15 13:17:01','2006-02-15 22:14:13'), +(5754,212,2,1379,'0.99','2005-06-15 15:05:10','2006-02-15 22:14:13'), +(5755,212,1,1637,'2.99','2005-06-16 08:29:58','2006-02-15 22:14:13'), +(5756,212,2,2739,'9.99','2005-06-19 15:58:38','2006-02-15 22:14:13'), +(5757,212,2,4708,'10.99','2005-07-08 11:59:19','2006-02-15 22:14:13'), +(5758,212,2,4798,'3.99','2005-07-08 16:45:16','2006-02-15 22:14:13'), +(5759,212,2,4916,'6.99','2005-07-08 21:32:17','2006-02-15 22:14:13'), +(5760,212,1,5115,'6.99','2005-07-09 07:07:18','2006-02-15 22:14:13'), +(5761,212,2,7828,'2.99','2005-07-28 08:40:46','2006-02-15 22:14:13'), +(5762,212,2,8000,'4.99','2005-07-28 15:10:25','2006-02-15 22:14:13'), +(5763,212,1,8940,'3.99','2005-07-30 02:57:26','2006-02-15 22:14:13'), +(5764,212,2,10273,'4.99','2005-08-01 03:14:47','2006-02-15 22:14:13'), +(5765,212,2,10567,'0.99','2005-08-01 13:16:01','2006-02-15 22:14:14'), +(5766,212,1,12156,'7.99','2005-08-18 00:27:33','2006-02-15 22:14:14'), +(5767,212,2,12467,'0.99','2005-08-18 11:40:09','2006-02-15 22:14:14'), +(5768,212,2,12562,'3.99','2005-08-18 15:00:03','2006-02-15 22:14:14'), +(5769,212,1,14563,'2.99','2005-08-21 16:23:53','2006-02-15 22:14:14'), +(5770,212,2,14681,'5.99','2005-08-21 20:25:13','2006-02-15 22:14:14'), +(5771,212,1,15872,'4.99','2005-08-23 16:27:24','2006-02-15 22:14:14'), +(5772,212,2,15920,'2.99','2005-08-23 18:05:10','2006-02-15 22:14:14'), +(5773,213,2,385,'0.99','2005-05-27 10:23:25','2006-02-15 22:14:14'), +(5774,213,1,1489,'0.99','2005-06-15 21:41:38','2006-02-15 22:14:14'), +(5775,213,2,1936,'4.99','2005-06-17 07:15:41','2006-02-15 22:14:14'), +(5776,213,1,2322,'5.99','2005-06-18 09:44:21','2006-02-15 22:14:14'), +(5777,213,1,2509,'0.99','2005-06-18 23:44:08','2006-02-15 22:14:14'), +(5778,213,2,2569,'6.99','2005-06-19 04:19:04','2006-02-15 22:14:14'), +(5779,213,1,2889,'4.99','2005-06-20 01:54:08','2006-02-15 22:14:14'), +(5780,213,2,2946,'4.99','2005-06-20 05:50:40','2006-02-15 22:14:14'), +(5781,213,1,3252,'2.99','2005-06-21 03:25:26','2006-02-15 22:14:14'), +(5782,213,1,3313,'2.99','2005-06-21 08:11:18','2006-02-15 22:14:14'), +(5783,213,2,3989,'4.99','2005-07-06 23:30:54','2006-02-15 22:14:14'), +(5784,213,2,4236,'4.99','2005-07-07 13:12:07','2006-02-15 22:14:14'), +(5785,213,1,4655,'8.99','2005-07-08 09:49:22','2006-02-15 22:14:14'), +(5786,213,2,5159,'4.99','2005-07-09 08:55:52','2006-02-15 22:14:14'), +(5787,213,1,5431,'0.99','2005-07-09 21:21:11','2006-02-15 22:14:14'), +(5788,213,2,6725,'2.99','2005-07-12 13:47:17','2006-02-15 22:14:14'), +(5789,213,2,7528,'0.99','2005-07-27 21:15:25','2006-02-15 22:14:14'), +(5790,213,2,8444,'2.99','2005-07-29 07:36:13','2006-02-15 22:14:14'), +(5791,213,2,8542,'4.99','2005-07-29 11:01:50','2006-02-15 22:14:14'), +(5792,213,2,9150,'6.99','2005-07-30 10:49:32','2006-02-15 22:14:14'), +(5793,213,2,9340,'2.99','2005-07-30 18:07:16','2006-02-15 22:14:14'), +(5794,213,1,9477,'4.99','2005-07-30 23:07:22','2006-02-15 22:14:14'), +(5795,213,1,10449,'2.99','2005-08-01 09:09:59','2006-02-15 22:14:14'), +(5796,213,2,11778,'3.99','2005-08-17 10:31:40','2006-02-15 22:14:14'), +(5797,213,1,13354,'4.99','2005-08-19 20:55:23','2006-02-15 22:14:14'), +(5798,213,2,13426,'0.99','2005-08-19 23:15:00','2006-02-15 22:14:14'), +(5799,213,1,14744,'6.99','2005-08-21 22:45:21','2006-02-15 22:14:15'), +(5800,213,2,14374,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'), +(5801,214,1,242,'1.99','2005-05-26 13:05:08','2006-02-15 22:14:15'), +(5802,214,1,278,'3.99','2005-05-26 17:40:58','2006-02-15 22:14:15'), +(5803,214,1,1076,'2.99','2005-05-31 10:14:31','2006-02-15 22:14:15'), +(5804,214,2,1093,'2.99','2005-05-31 12:32:26','2006-02-15 22:14:15'), +(5805,214,2,1112,'0.99','2005-05-31 15:51:39','2006-02-15 22:14:15'), +(5806,214,2,1275,'4.99','2005-06-15 07:55:43','2006-02-15 22:14:15'), +(5807,214,2,2085,'2.99','2005-06-17 17:30:56','2006-02-15 22:14:15'), +(5808,214,2,2868,'2.99','2005-06-20 00:08:58','2006-02-15 22:14:15'), +(5809,214,2,4211,'0.99','2005-07-07 11:50:41','2006-02-15 22:14:15'), +(5810,214,1,4783,'3.99','2005-07-08 16:09:24','2006-02-15 22:14:15'), +(5811,214,2,4984,'3.99','2005-07-09 00:35:31','2006-02-15 22:14:15'), +(5812,214,2,5172,'2.99','2005-07-09 09:31:27','2006-02-15 22:14:15'), +(5813,214,1,6602,'7.99','2005-07-12 07:50:24','2006-02-15 22:14:15'), +(5814,214,2,7417,'4.99','2005-07-27 16:58:33','2006-02-15 22:14:15'), +(5815,214,2,7826,'5.99','2005-07-28 08:35:51','2006-02-15 22:14:15'), +(5816,214,1,8663,'4.99','2005-07-29 15:33:18','2006-02-15 22:14:15'), +(5817,214,1,10563,'3.99','2005-08-01 13:06:03','2006-02-15 22:14:15'), +(5818,214,2,10749,'4.99','2005-08-01 20:02:01','2006-02-15 22:14:15'), +(5819,214,2,11450,'2.99','2005-08-02 20:45:54','2006-02-15 22:14:15'), +(5820,214,2,11474,'4.99','2005-08-02 21:53:08','2006-02-15 22:14:15'), +(5821,214,2,12463,'4.99','2005-08-18 11:31:34','2006-02-15 22:14:15'), +(5822,214,2,13138,'2.99','2005-08-19 12:30:01','2006-02-15 22:14:15'), +(5823,214,2,13350,'9.99','2005-08-19 20:44:00','2006-02-15 22:14:15'), +(5824,214,1,13409,'2.99','2005-08-19 22:36:26','2006-02-15 22:14:15'), +(5825,214,1,13565,'0.99','2005-08-20 04:38:52','2006-02-15 22:14:15'), +(5826,214,1,13726,'0.99','2005-08-20 10:08:40','2006-02-15 22:14:15'), +(5827,214,1,13864,'4.99','2005-08-20 14:59:55','2006-02-15 22:14:15'), +(5828,214,2,14347,'4.99','2005-08-21 08:42:31','2006-02-15 22:14:15'), +(5829,214,1,14567,'0.99','2005-08-21 16:27:25','2006-02-15 22:14:15'), +(5830,214,2,15639,'2.99','2005-08-23 08:03:25','2006-02-15 22:14:15'), +(5831,214,2,15645,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'), +(5832,215,1,711,'4.99','2005-05-29 03:49:03','2006-02-15 22:14:16'), +(5833,215,2,1080,'4.99','2005-05-31 10:55:26','2006-02-15 22:14:16'), +(5834,215,2,1376,'4.99','2005-06-15 14:59:06','2006-02-15 22:14:16'), +(5835,215,2,1599,'4.99','2005-06-16 06:03:33','2006-02-15 22:14:16'), +(5836,215,2,1845,'4.99','2005-06-16 23:56:11','2006-02-15 22:14:16'), +(5837,215,2,2006,'2.99','2005-06-17 11:47:03','2006-02-15 22:14:16'), +(5838,215,2,2918,'2.99','2005-06-20 04:09:04','2006-02-15 22:14:16'), +(5839,215,1,3143,'2.99','2005-06-20 20:01:52','2006-02-15 22:14:16'), +(5840,215,2,4940,'8.99','2005-07-08 22:36:06','2006-02-15 22:14:16'), +(5841,215,1,5886,'2.99','2005-07-10 19:36:25','2006-02-15 22:14:16'), +(5842,215,2,5967,'8.99','2005-07-11 00:02:19','2006-02-15 22:14:16'), +(5843,215,1,7180,'1.99','2005-07-27 08:14:34','2006-02-15 22:14:16'), +(5844,215,2,9046,'2.99','2005-07-30 06:46:55','2006-02-15 22:14:16'), +(5845,215,1,9518,'0.99','2005-07-31 00:43:26','2006-02-15 22:14:16'), +(5846,215,2,9611,'4.99','2005-07-31 03:54:43','2006-02-15 22:14:16'), +(5847,215,1,11729,'2.99','2005-08-17 08:14:41','2006-02-15 22:14:16'), +(5848,215,2,12285,'2.99','2005-08-18 04:56:43','2006-02-15 22:14:16'), +(5849,215,1,12380,'1.99','2005-08-18 08:27:28','2006-02-15 22:14:16'), +(5850,215,2,13085,'0.99','2005-08-19 10:28:22','2006-02-15 22:14:16'), +(5851,215,2,14126,'0.99','2005-08-21 01:32:17','2006-02-15 22:14:16'), +(5852,215,2,14817,'4.99','2005-08-22 01:17:16','2006-02-15 22:14:16'), +(5853,215,1,15583,'2.99','2005-08-23 05:47:55','2006-02-15 22:14:16'), +(5854,215,2,15610,'2.99','2005-08-23 06:56:15','2006-02-15 22:14:16'), +(5855,215,2,15799,'2.99','2005-08-23 14:23:23','2006-02-15 22:14:16'), +(5856,215,1,15843,'0.99','2005-08-23 15:37:31','2006-02-15 22:14:16'), +(5857,215,2,15862,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:16'), +(5858,216,1,997,'4.99','2005-05-31 00:08:25','2006-02-15 22:14:16'), +(5859,216,2,1461,'6.99','2005-06-15 20:32:08','2006-02-15 22:14:16'), +(5860,216,1,1664,'0.99','2005-06-16 10:15:20','2006-02-15 22:14:16'), +(5861,216,1,1672,'3.99','2005-06-16 10:37:34','2006-02-15 22:14:16'), +(5862,216,2,2351,'0.99','2005-06-18 12:27:57','2006-02-15 22:14:16'), +(5863,216,1,3432,'2.99','2005-06-21 19:02:03','2006-02-15 22:14:16'), +(5864,216,2,4161,'2.99','2005-07-07 09:15:11','2006-02-15 22:14:16'), +(5865,216,1,6008,'6.99','2005-07-11 01:51:29','2006-02-15 22:14:16'), +(5866,216,2,6349,'7.99','2005-07-11 20:25:05','2006-02-15 22:14:17'), +(5867,216,1,8068,'4.99','2005-07-28 17:22:28','2006-02-15 22:14:17'), +(5868,216,2,8859,'8.99','2005-07-29 23:44:43','2006-02-15 22:14:17'), +(5869,216,1,9096,'0.99','2005-07-30 08:39:23','2006-02-15 22:14:17'), +(5870,216,1,10506,'4.99','2005-08-01 11:16:05','2006-02-15 22:14:17'), +(5871,216,1,11005,'0.99','2005-08-02 05:05:23','2006-02-15 22:14:17'), +(5872,216,2,11621,'7.99','2005-08-17 04:13:45','2006-02-15 22:14:17'), +(5873,216,2,13424,'0.99','2005-08-19 23:10:09','2006-02-15 22:14:17'), +(5874,216,2,14638,'2.99','2005-08-21 19:01:36','2006-02-15 22:14:17'), +(5875,216,2,14726,'4.99','2005-08-21 22:08:52','2006-02-15 22:14:17'), +(5876,216,1,15192,'4.99','2005-08-22 16:06:23','2006-02-15 22:14:17'), +(5877,216,2,15199,'2.99','2005-08-22 16:17:49','2006-02-15 22:14:17'), +(5878,216,2,15934,'4.99','2005-08-23 18:40:41','2006-02-15 22:14:17'), +(5879,216,1,12970,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:17'), +(5880,216,1,11676,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:17'), +(5881,217,2,828,'2.99','2005-05-29 22:14:55','2006-02-15 22:14:17'), +(5882,217,2,1141,'8.99','2005-05-31 19:42:02','2006-02-15 22:14:17'), +(5883,217,1,1322,'2.99','2005-06-15 10:55:09','2006-02-15 22:14:17'), +(5884,217,1,2076,'6.99','2005-06-17 16:43:47','2006-02-15 22:14:17'), +(5885,217,1,2842,'4.99','2005-06-19 22:34:20','2006-02-15 22:14:17'), +(5886,217,2,5576,'2.99','2005-07-10 03:57:05','2006-02-15 22:14:17'), +(5887,217,2,5762,'3.99','2005-07-10 12:48:01','2006-02-15 22:14:17'), +(5888,217,2,6570,'4.99','2005-07-12 05:50:31','2006-02-15 22:14:17'), +(5889,217,2,7104,'2.99','2005-07-27 05:15:25','2006-02-15 22:14:17'), +(5890,217,2,8332,'4.99','2005-07-29 04:16:00','2006-02-15 22:14:17'), +(5891,217,1,9159,'0.99','2005-07-30 11:16:37','2006-02-15 22:14:17'), +(5892,217,2,9317,'2.99','2005-07-30 17:13:37','2006-02-15 22:14:17'), +(5893,217,2,9632,'6.99','2005-07-31 05:02:23','2006-02-15 22:14:17'), +(5894,217,2,9745,'2.99','2005-07-31 09:16:14','2006-02-15 22:14:17'), +(5895,217,1,10581,'5.99','2005-08-01 13:52:30','2006-02-15 22:14:17'), +(5896,217,1,10836,'6.99','2005-08-01 23:29:58','2006-02-15 22:14:17'), +(5897,217,1,11347,'2.99','2005-08-02 17:18:07','2006-02-15 22:14:17'), +(5898,217,1,11649,'2.99','2005-08-17 04:59:26','2006-02-15 22:14:17'), +(5899,217,1,11958,'4.99','2005-08-17 17:23:20','2006-02-15 22:14:17'), +(5900,217,2,12210,'4.99','2005-08-18 02:27:29','2006-02-15 22:14:18'), +(5901,217,1,12871,'4.99','2005-08-19 02:55:36','2006-02-15 22:14:18'), +(5902,217,2,15116,'0.99','2005-08-22 12:35:40','2006-02-15 22:14:18'), +(5903,217,2,15277,'2.99','2005-08-22 19:02:48','2006-02-15 22:14:18'), +(5904,218,1,1459,'2.99','2005-06-15 20:25:53','2006-02-15 22:14:18'), +(5905,218,1,2262,'0.99','2005-06-18 05:49:46','2006-02-15 22:14:18'), +(5906,218,1,2267,'0.99','2005-06-18 06:10:23','2006-02-15 22:14:18'), +(5907,218,1,4898,'6.99','2005-07-08 20:31:43','2006-02-15 22:14:18'), +(5908,218,1,5226,'0.99','2005-07-09 12:10:44','2006-02-15 22:14:18'), +(5909,218,2,5737,'0.99','2005-07-10 11:50:04','2006-02-15 22:14:18'), +(5910,218,2,7090,'4.99','2005-07-27 04:43:53','2006-02-15 22:14:18'), +(5911,218,1,7236,'8.99','2005-07-27 10:09:39','2006-02-15 22:14:18'), +(5912,218,2,9018,'6.99','2005-07-30 05:28:40','2006-02-15 22:14:18'), +(5913,218,2,9902,'6.99','2005-07-31 14:24:33','2006-02-15 22:14:18'), +(5914,218,1,10114,'0.99','2005-07-31 21:12:58','2006-02-15 22:14:18'), +(5915,218,1,11654,'2.99','2005-08-17 05:06:19','2006-02-15 22:14:18'), +(5916,218,2,12481,'2.99','2005-08-18 12:31:34','2006-02-15 22:14:18'), +(5917,218,1,12974,'0.99','2005-08-19 06:51:02','2006-02-15 22:14:18'), +(5918,218,2,13708,'5.99','2005-08-20 09:34:07','2006-02-15 22:14:18'), +(5919,218,2,13947,'5.99','2005-08-20 17:46:06','2006-02-15 22:14:18'), +(5920,218,2,14848,'4.99','2005-08-22 02:14:19','2006-02-15 22:14:18'), +(5921,218,2,15575,'0.99','2005-08-23 05:30:19','2006-02-15 22:14:18'), +(5922,219,1,414,'0.99','2005-05-27 14:48:20','2006-02-15 22:14:18'), +(5923,219,2,2417,'3.99','2005-06-18 17:12:01','2006-02-15 22:14:18'), +(5924,219,2,2580,'0.99','2005-06-19 04:44:30','2006-02-15 22:14:18'), +(5925,219,2,4678,'0.99','2005-07-08 10:30:40','2006-02-15 22:14:18'), +(5926,219,2,4910,'7.99','2005-07-08 21:13:56','2006-02-15 22:14:18'), +(5927,219,2,5123,'0.99','2005-07-09 07:20:30','2006-02-15 22:14:18'), +(5928,219,2,5416,'4.99','2005-07-09 20:33:50','2006-02-15 22:14:18'), +(5929,219,2,5475,'4.99','2005-07-09 23:31:38','2006-02-15 22:14:18'), +(5930,219,2,5739,'7.99','2005-07-10 11:51:50','2006-02-15 22:14:18'), +(5931,219,2,6172,'4.99','2005-07-11 10:32:09','2006-02-15 22:14:18'), +(5932,219,1,6209,'2.99','2005-07-11 12:36:05','2006-02-15 22:14:18'), +(5933,219,2,6501,'1.99','2005-07-12 03:11:55','2006-02-15 22:14:19'), +(5934,219,2,7335,'2.99','2005-07-27 14:06:50','2006-02-15 22:14:19'), +(5935,219,1,7726,'5.99','2005-07-28 04:52:19','2006-02-15 22:14:19'), +(5936,219,1,8430,'0.99','2005-07-29 07:12:17','2006-02-15 22:14:19'), +(5937,219,2,8536,'4.99','2005-07-29 10:37:23','2006-02-15 22:14:19'), +(5938,219,1,8652,'6.99','2005-07-29 15:02:54','2006-02-15 22:14:19'), +(5939,219,1,9712,'4.99','2005-07-31 08:13:11','2006-02-15 22:14:19'), +(5940,219,1,11328,'2.99','2005-08-02 16:42:38','2006-02-15 22:14:19'), +(5941,219,2,11791,'0.99','2005-08-17 11:01:11','2006-02-15 22:14:19'), +(5942,219,1,13765,'4.99','2005-08-20 11:39:00','2006-02-15 22:14:19'), +(5943,219,2,14029,'0.99','2005-08-20 21:23:11','2006-02-15 22:14:19'), +(5944,219,1,14588,'5.99','2005-08-21 17:25:53','2006-02-15 22:14:19'), +(5945,219,1,14688,'4.99','2005-08-21 20:32:37','2006-02-15 22:14:19'), +(5946,219,1,15283,'4.99','2005-08-22 19:16:04','2006-02-15 22:14:19'), +(5947,219,1,11577,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:19'), +(5948,220,2,409,'0.99','2005-05-27 14:10:58','2006-02-15 22:14:19'), +(5949,220,1,480,'3.99','2005-05-27 22:47:39','2006-02-15 22:14:19'), +(5950,220,1,1832,'0.99','2005-06-16 22:35:20','2006-02-15 22:14:19'), +(5951,220,2,4918,'2.99','2005-07-08 21:37:31','2006-02-15 22:14:19'), +(5952,220,2,5613,'2.99','2005-07-10 05:15:43','2006-02-15 22:14:19'), +(5953,220,2,5847,'2.99','2005-07-10 17:27:42','2006-02-15 22:14:19'), +(5954,220,2,5859,'0.99','2005-07-10 18:02:02','2006-02-15 22:14:19'), +(5955,220,2,6412,'0.99','2005-07-11 23:19:21','2006-02-15 22:14:19'), +(5956,220,2,6832,'8.99','2005-07-12 18:51:41','2006-02-15 22:14:19'), +(5957,220,2,7750,'9.99','2005-07-28 05:55:30','2006-02-15 22:14:19'), +(5958,220,1,8065,'2.99','2005-07-28 17:15:48','2006-02-15 22:14:19'), +(5959,220,1,8398,'4.99','2005-07-29 06:12:40','2006-02-15 22:14:19'), +(5960,220,2,9384,'7.99','2005-07-30 19:25:35','2006-02-15 22:14:19'), +(5961,220,2,9455,'10.99','2005-07-30 22:20:29','2006-02-15 22:14:19'), +(5962,220,1,10099,'2.99','2005-07-31 20:47:14','2006-02-15 22:14:19'), +(5963,220,2,10778,'4.99','2005-08-01 21:11:39','2006-02-15 22:14:19'), +(5964,220,1,10948,'4.99','2005-08-02 03:23:23','2006-02-15 22:14:19'), +(5965,220,1,11037,'0.99','2005-08-02 05:58:12','2006-02-15 22:14:19'), +(5966,220,1,11153,'3.99','2005-08-02 09:54:19','2006-02-15 22:14:20'), +(5967,220,1,11622,'4.99','2005-08-17 04:15:46','2006-02-15 22:14:20'), +(5968,220,2,11947,'2.99','2005-08-17 17:08:13','2006-02-15 22:14:20'), +(5969,220,1,12407,'4.99','2005-08-18 09:39:26','2006-02-15 22:14:20'), +(5970,220,1,12896,'4.99','2005-08-19 03:52:44','2006-02-15 22:14:20'), +(5971,220,2,13123,'2.99','2005-08-19 11:55:13','2006-02-15 22:14:20'), +(5972,220,1,13281,'2.99','2005-08-19 18:07:47','2006-02-15 22:14:20'), +(5973,220,2,14016,'4.99','2005-08-20 20:52:03','2006-02-15 22:14:20'), +(5974,220,2,15706,'4.99','2005-08-23 10:32:52','2006-02-15 22:14:20'), +(5975,221,2,226,'4.99','2005-05-26 10:44:04','2006-02-15 22:14:20'), +(5976,221,1,1369,'0.99','2005-06-15 14:29:14','2006-02-15 22:14:20'), +(5977,221,1,2331,'2.99','2005-06-18 10:50:09','2006-02-15 22:14:20'), +(5978,221,2,2473,'2.99','2005-06-18 20:42:45','2006-02-15 22:14:20'), +(5979,221,1,2660,'10.99','2005-06-19 10:50:02','2006-02-15 22:14:20'), +(5980,221,1,3200,'5.99','2005-06-21 00:22:47','2006-02-15 22:14:20'), +(5981,221,1,4293,'4.99','2005-07-07 15:53:47','2006-02-15 22:14:20'), +(5982,221,2,4649,'4.99','2005-07-08 09:32:05','2006-02-15 22:14:20'), +(5983,221,1,4693,'6.99','2005-07-08 11:07:36','2006-02-15 22:14:20'), +(5984,221,1,5058,'5.99','2005-07-09 04:20:35','2006-02-15 22:14:20'), +(5985,221,2,5920,'5.99','2005-07-10 21:33:58','2006-02-15 22:14:20'), +(5986,221,1,7101,'2.99','2005-07-27 05:06:34','2006-02-15 22:14:20'), +(5987,221,1,7129,'0.99','2005-07-27 06:18:01','2006-02-15 22:14:20'), +(5988,221,2,7531,'8.99','2005-07-27 21:19:34','2006-02-15 22:14:20'), +(5989,221,2,8486,'0.99','2005-07-29 08:53:38','2006-02-15 22:14:20'), +(5990,221,1,9320,'6.99','2005-07-30 17:16:39','2006-02-15 22:14:20'), +(5991,221,1,9453,'7.99','2005-07-30 22:20:04','2006-02-15 22:14:20'), +(5992,221,2,9853,'0.99','2005-07-31 12:58:20','2006-02-15 22:14:20'), +(5993,221,2,11680,'4.99','2005-08-17 06:12:27','2006-02-15 22:14:20'), +(5994,221,1,11693,'4.99','2005-08-17 06:56:56','2006-02-15 22:14:20'), +(5995,221,1,11802,'2.99','2005-08-17 11:32:51','2006-02-15 22:14:20'), +(5996,221,1,12324,'0.99','2005-08-18 06:38:20','2006-02-15 22:14:20'), +(5997,221,2,12620,'3.99','2005-08-18 17:26:38','2006-02-15 22:14:20'), +(5998,221,2,13434,'2.99','2005-08-19 23:34:26','2006-02-15 22:14:20'), +(5999,221,2,14322,'5.99','2005-08-21 08:06:30','2006-02-15 22:14:21'), +(6000,221,2,14371,'0.99','2005-08-21 09:37:16','2006-02-15 22:14:21'), +(6001,221,1,14419,'7.99','2005-08-21 11:15:46','2006-02-15 22:14:21'), +(6002,221,1,15125,'8.99','2005-08-22 12:53:22','2006-02-15 22:14:21'), +(6003,222,1,5,'6.99','2005-05-24 23:05:21','2006-02-15 22:14:21'), +(6004,222,1,134,'4.99','2005-05-25 21:48:41','2006-02-15 22:14:21'), +(6005,222,2,416,'0.99','2005-05-27 15:02:10','2006-02-15 22:14:21'), +(6006,222,2,809,'3.99','2005-05-29 19:10:20','2006-02-15 22:14:21'), +(6007,222,2,1006,'2.99','2005-05-31 00:57:08','2006-02-15 22:14:21'), +(6008,222,1,1368,'8.99','2005-06-15 14:27:47','2006-02-15 22:14:21'), +(6009,222,2,2603,'6.99','2005-06-19 06:21:25','2006-02-15 22:14:21'), +(6010,222,2,5209,'8.99','2005-07-09 11:22:39','2006-02-15 22:14:21'), +(6011,222,1,5266,'3.99','2005-07-09 14:17:40','2006-02-15 22:14:21'), +(6012,222,2,5592,'6.99','2005-07-10 04:26:13','2006-02-15 22:14:21'), +(6013,222,2,5635,'5.99','2005-07-10 06:28:39','2006-02-15 22:14:21'), +(6014,222,2,6129,'2.99','2005-07-11 08:15:09','2006-02-15 22:14:21'), +(6015,222,1,6497,'0.99','2005-07-12 03:04:29','2006-02-15 22:14:21'), +(6016,222,2,7786,'0.99','2005-07-28 07:18:26','2006-02-15 22:14:21'), +(6017,222,1,8300,'1.99','2005-07-29 02:57:59','2006-02-15 22:14:21'), +(6018,222,2,8597,'6.99','2005-07-29 12:55:55','2006-02-15 22:14:21'), +(6019,222,1,8787,'4.99','2005-07-29 20:43:49','2006-02-15 22:14:21'), +(6020,222,2,10043,'1.99','2005-07-31 19:02:07','2006-02-15 22:14:21'), +(6021,222,2,12179,'2.99','2005-08-18 01:21:21','2006-02-15 22:14:21'), +(6022,222,1,13477,'2.99','2005-08-20 01:07:00','2006-02-15 22:14:21'), +(6023,222,2,14350,'2.99','2005-08-21 08:58:38','2006-02-15 22:14:21'), +(6024,223,2,524,'2.99','2005-05-28 03:57:28','2006-02-15 22:14:21'), +(6025,223,2,1839,'5.99','2005-06-16 23:22:22','2006-02-15 22:14:21'), +(6026,223,1,2334,'4.99','2005-06-18 10:56:24','2006-02-15 22:14:21'), +(6027,223,1,3513,'5.99','2005-07-06 00:45:57','2006-02-15 22:14:21'), +(6028,223,1,3705,'0.99','2005-07-06 10:17:59','2006-02-15 22:14:21'), +(6029,223,1,4874,'4.99','2005-07-08 19:23:38','2006-02-15 22:14:21'), +(6030,223,2,5996,'2.99','2005-07-11 01:18:33','2006-02-15 22:14:21'), +(6031,223,2,7085,'5.99','2005-07-27 04:35:44','2006-02-15 22:14:22'), +(6032,223,2,8362,'3.99','2005-07-29 05:09:11','2006-02-15 22:14:22'), +(6033,223,2,10053,'7.99','2005-07-31 19:15:39','2006-02-15 22:14:22'), +(6034,223,2,11040,'4.99','2005-08-02 06:03:22','2006-02-15 22:14:22'), +(6035,223,1,12927,'5.99','2005-08-19 05:02:46','2006-02-15 22:14:22'), +(6036,223,1,13576,'0.99','2005-08-20 05:19:56','2006-02-15 22:14:22'), +(6037,223,2,14496,'4.99','2005-08-21 14:07:35','2006-02-15 22:14:22'), +(6038,223,1,15257,'7.99','2005-08-22 18:21:04','2006-02-15 22:14:22'), +(6039,223,2,15546,'5.99','2005-08-23 04:20:38','2006-02-15 22:14:22'), +(6040,223,1,15662,'2.99','2005-08-23 08:52:50','2006-02-15 22:14:22'), +(6041,224,1,1424,'7.99','2005-06-15 18:08:14','2006-02-15 22:14:22'), +(6042,224,1,2277,'2.99','2005-06-18 06:35:03','2006-02-15 22:14:22'), +(6043,224,2,3282,'4.99','2005-06-21 06:18:42','2006-02-15 22:14:22'), +(6044,224,1,4118,'2.99','2005-07-07 07:03:30','2006-02-15 22:14:22'), +(6045,224,2,4411,'3.99','2005-07-07 21:54:58','2006-02-15 22:14:22'), +(6046,224,1,4697,'2.99','2005-07-08 11:19:14','2006-02-15 22:14:22'), +(6047,224,1,6031,'4.99','2005-07-11 02:42:14','2006-02-15 22:14:22'), +(6048,224,2,6999,'2.99','2005-07-27 01:21:19','2006-02-15 22:14:22'), +(6049,224,2,8255,'0.99','2005-07-29 01:02:30','2006-02-15 22:14:22'), +(6050,224,2,8439,'2.99','2005-07-29 07:28:43','2006-02-15 22:14:23'), +(6051,224,1,8605,'4.99','2005-07-29 13:13:34','2006-02-15 22:14:23'), +(6052,224,1,9181,'0.99','2005-07-30 12:05:58','2006-02-15 22:14:23'), +(6053,224,1,11816,'0.99','2005-08-17 12:14:16','2006-02-15 22:14:23'), +(6054,224,1,12492,'4.99','2005-08-18 12:49:04','2006-02-15 22:14:23'), +(6055,224,1,12969,'2.99','2005-08-19 06:38:59','2006-02-15 22:14:23'), +(6056,224,2,13075,'4.99','2005-08-19 10:10:10','2006-02-15 22:14:23'), +(6057,224,2,14099,'0.99','2005-08-21 00:31:03','2006-02-15 22:14:23'), +(6058,224,2,14271,'5.99','2005-08-21 06:23:29','2006-02-15 22:14:23'), +(6059,224,2,14468,'5.99','2005-08-21 13:07:10','2006-02-15 22:14:23'), +(6060,224,2,14880,'2.99','2005-08-22 03:44:36','2006-02-15 22:14:23'), +(6061,224,1,15225,'0.99','2005-08-22 17:18:32','2006-02-15 22:14:23'), +(6062,224,1,15952,'1.99','2005-08-23 19:11:29','2006-02-15 22:14:23'), +(6063,225,1,812,'4.99','2005-05-29 20:00:30','2006-02-15 22:14:23'), +(6064,225,1,963,'3.99','2005-05-30 18:52:53','2006-02-15 22:14:23'), +(6065,225,2,2226,'7.99','2005-06-18 03:39:56','2006-02-15 22:14:23'), +(6066,225,2,3574,'4.99','2005-07-06 03:36:01','2006-02-15 22:14:23'), +(6067,225,1,4345,'7.99','2005-07-07 18:52:57','2006-02-15 22:14:23'), +(6068,225,1,4824,'7.99','2005-07-08 17:37:39','2006-02-15 22:14:23'), +(6069,225,2,4955,'2.99','2005-07-08 23:16:21','2006-02-15 22:14:24'), +(6070,225,1,5067,'4.99','2005-07-09 04:52:35','2006-02-15 22:14:24'), +(6071,225,1,6159,'2.99','2005-07-11 09:55:34','2006-02-15 22:14:24'), +(6072,225,1,6317,'2.99','2005-07-11 18:47:41','2006-02-15 22:14:24'), +(6073,225,2,6350,'2.99','2005-07-11 20:30:15','2006-02-15 22:14:24'), +(6074,225,1,6526,'3.99','2005-07-12 04:21:20','2006-02-15 22:14:24'), +(6075,225,2,6532,'2.99','2005-07-12 04:38:32','2006-02-15 22:14:24'), +(6076,225,2,7347,'4.99','2005-07-27 14:31:24','2006-02-15 22:14:24'), +(6077,225,1,7524,'6.99','2005-07-27 21:11:44','2006-02-15 22:14:24'), +(6078,225,1,8054,'7.99','2005-07-28 17:02:18','2006-02-15 22:14:25'), +(6079,225,2,8110,'4.99','2005-07-28 19:07:45','2006-02-15 22:14:25'), +(6080,225,1,9980,'4.99','2005-07-31 17:02:00','2006-02-15 22:14:25'), +(6081,225,2,9993,'2.99','2005-07-31 17:30:20','2006-02-15 22:14:25'), +(6082,225,2,10138,'2.99','2005-07-31 22:02:09','2006-02-15 22:14:25'), +(6083,225,1,10793,'2.99','2005-08-01 21:48:03','2006-02-15 22:14:25'), +(6084,225,2,11333,'1.99','2005-08-02 16:53:00','2006-02-15 22:14:25'), +(6085,225,2,11384,'0.99','2005-08-02 18:23:01','2006-02-15 22:14:25'), +(6086,225,2,11395,'5.99','2005-08-02 18:47:44','2006-02-15 22:14:25'), +(6087,225,2,11437,'4.99','2005-08-02 20:20:06','2006-02-15 22:14:25'), +(6088,225,2,14444,'5.99','2005-08-21 12:07:25','2006-02-15 22:14:25'), +(6089,226,2,3414,'2.99','2005-06-21 16:58:50','2006-02-15 22:14:25'), +(6090,226,1,3466,'4.99','2005-06-21 22:13:33','2006-02-15 22:14:25'), +(6091,226,1,3721,'4.99','2005-07-06 11:10:09','2006-02-15 22:14:25'), +(6092,226,1,4324,'4.99','2005-07-07 17:57:56','2006-02-15 22:14:25'), +(6093,226,1,5282,'2.99','2005-07-09 15:01:23','2006-02-15 22:14:25'), +(6094,226,1,5419,'2.99','2005-07-09 20:47:36','2006-02-15 22:14:25'), +(6095,226,1,6712,'9.99','2005-07-12 13:24:47','2006-02-15 22:14:25'), +(6096,226,2,7288,'5.99','2005-07-27 12:24:59','2006-02-15 22:14:25'), +(6097,226,1,7329,'3.99','2005-07-27 13:55:34','2006-02-15 22:14:25'), +(6098,226,2,8600,'2.99','2005-07-29 13:01:19','2006-02-15 22:14:25'), +(6099,226,1,8627,'2.99','2005-07-29 14:05:12','2006-02-15 22:14:25'), +(6100,226,1,12172,'1.99','2005-08-18 01:07:00','2006-02-15 22:14:25'), +(6101,226,1,14491,'6.99','2005-08-21 13:55:39','2006-02-15 22:14:25'), +(6102,226,1,14708,'4.99','2005-08-21 21:07:23','2006-02-15 22:14:26'), +(6103,226,1,14712,'0.99','2005-08-21 21:22:56','2006-02-15 22:14:26'), +(6104,226,2,14739,'0.99','2005-08-21 22:33:22','2006-02-15 22:14:26'), +(6105,226,2,14934,'4.99','2005-08-22 05:47:15','2006-02-15 22:14:26'), +(6106,226,2,15472,'2.99','2005-08-23 01:39:05','2006-02-15 22:14:26'), +(6107,226,1,15901,'4.99','2005-08-23 17:19:17','2006-02-15 22:14:26'), +(6108,226,1,15986,'2.99','2005-08-23 20:20:37','2006-02-15 22:14:26'), +(6109,226,1,16033,'5.99','2005-08-23 22:06:15','2006-02-15 22:14:26'), +(6110,227,1,111,'4.99','2005-05-25 18:45:19','2006-02-15 22:14:26'), +(6111,227,1,1023,'3.99','2005-05-31 03:26:50','2006-02-15 22:14:26'), +(6112,227,1,1679,'2.99','2005-06-16 11:11:01','2006-02-15 22:14:26'), +(6113,227,2,2155,'1.99','2005-06-17 23:07:29','2006-02-15 22:14:26'), +(6114,227,1,2164,'6.99','2005-06-17 23:46:21','2006-02-15 22:14:26'), +(6115,227,2,3065,'0.99','2005-06-20 13:53:53','2006-02-15 22:14:26'), +(6116,227,1,3576,'5.99','2005-07-06 03:40:01','2006-02-15 22:14:26'), +(6117,227,2,4340,'2.99','2005-07-07 18:41:46','2006-02-15 22:14:26'), +(6118,227,2,4459,'4.99','2005-07-07 23:48:52','2006-02-15 22:14:26'), +(6119,227,1,4680,'2.99','2005-07-08 10:35:28','2006-02-15 22:14:26'), +(6120,227,1,5046,'3.99','2005-07-09 03:34:57','2006-02-15 22:14:26'), +(6121,227,1,7132,'7.99','2005-07-27 06:28:34','2006-02-15 22:14:26'), +(6122,227,1,8219,'2.99','2005-07-28 23:46:31','2006-02-15 22:14:26'), +(6123,227,1,8234,'0.99','2005-07-29 00:19:20','2006-02-15 22:14:26'), +(6124,227,1,8384,'0.99','2005-07-29 05:38:43','2006-02-15 22:14:26'), +(6125,227,2,8417,'4.99','2005-07-29 06:53:36','2006-02-15 22:14:26'), +(6126,227,1,8936,'2.99','2005-07-30 02:47:13','2006-02-15 22:14:26'), +(6127,227,2,9521,'2.99','2005-07-31 00:52:24','2006-02-15 22:14:26'), +(6128,227,2,10999,'3.99','2005-08-02 04:53:13','2006-02-15 22:14:26'), +(6129,227,2,11892,'0.99','2005-08-17 15:13:21','2006-02-15 22:14:26'), +(6130,227,2,13379,'4.99','2005-08-19 21:33:39','2006-02-15 22:14:26'), +(6131,227,2,15406,'0.99','2005-08-22 23:21:22','2006-02-15 22:14:26'), +(6132,227,2,15976,'4.99','2005-08-23 20:07:08','2006-02-15 22:14:27'), +(6133,227,2,13374,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:27'), +(6134,228,2,492,'4.99','2005-05-28 00:24:58','2006-02-15 22:14:27'), +(6135,228,2,1070,'0.99','2005-05-31 09:39:56','2006-02-15 22:14:27'), +(6136,228,2,2284,'3.99','2005-06-18 06:59:51','2006-02-15 22:14:27'), +(6137,228,2,2863,'2.99','2005-06-19 23:58:38','2006-02-15 22:14:27'), +(6138,228,2,2934,'2.99','2005-06-20 05:05:53','2006-02-15 22:14:27'), +(6139,228,2,3433,'3.99','2005-06-21 19:07:19','2006-02-15 22:14:27'), +(6140,228,2,3538,'0.99','2005-07-06 01:37:07','2006-02-15 22:14:27'), +(6141,228,2,3710,'8.99','2005-07-06 10:28:53','2006-02-15 22:14:27'), +(6142,228,1,3715,'6.99','2005-07-06 10:51:48','2006-02-15 22:14:27'), +(6143,228,2,3796,'0.99','2005-07-06 14:45:22','2006-02-15 22:14:27'), +(6144,228,1,4217,'3.99','2005-07-07 12:08:59','2006-02-15 22:14:27'), +(6145,228,1,4636,'4.99','2005-07-08 08:44:32','2006-02-15 22:14:27'), +(6146,228,1,4909,'0.99','2005-07-08 21:07:24','2006-02-15 22:14:27'), +(6147,228,1,5151,'2.99','2005-07-09 08:31:03','2006-02-15 22:14:28'), +(6148,228,1,5320,'4.99','2005-07-09 16:23:32','2006-02-15 22:14:28'), +(6149,228,2,5902,'0.99','2005-07-10 20:31:24','2006-02-15 22:14:28'), +(6150,228,2,6141,'1.99','2005-07-11 08:52:16','2006-02-15 22:14:28'), +(6151,228,1,6948,'2.99','2005-07-26 23:43:49','2006-02-15 22:14:28'), +(6152,228,2,7509,'8.99','2005-07-27 20:37:19','2006-02-15 22:14:28'), +(6153,228,1,7601,'0.99','2005-07-27 23:48:15','2006-02-15 22:14:28'), +(6154,228,1,8147,'2.99','2005-07-28 20:37:56','2006-02-15 22:14:28'), +(6155,228,1,10585,'4.99','2005-08-01 14:00:42','2006-02-15 22:14:28'), +(6156,228,1,12304,'0.99','2005-08-18 05:44:29','2006-02-15 22:14:28'), +(6157,228,2,12952,'2.99','2005-08-19 06:00:52','2006-02-15 22:14:28'), +(6158,228,2,13458,'4.99','2005-08-20 00:35:30','2006-02-15 22:14:28'), +(6159,228,2,12672,'3.98','2006-02-14 15:16:03','2006-02-15 22:14:28'), +(6160,228,1,15234,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:28'), +(6161,229,1,2200,'4.99','2005-06-18 01:59:16','2006-02-15 22:14:28'), +(6162,229,1,3208,'0.99','2005-06-21 00:50:03','2006-02-15 22:14:28'), +(6163,229,1,3277,'7.99','2005-06-21 05:36:37','2006-02-15 22:14:28'), +(6164,229,2,3280,'0.99','2005-06-21 06:08:12','2006-02-15 22:14:28'), +(6165,229,2,3933,'4.99','2005-07-06 21:06:37','2006-02-15 22:14:28'), +(6166,229,2,4458,'2.99','2005-07-07 23:47:47','2006-02-15 22:14:28'), +(6167,229,1,4515,'4.99','2005-07-08 02:42:03','2006-02-15 22:14:28'), +(6168,229,2,4694,'0.99','2005-07-08 11:07:37','2006-02-15 22:14:28'), +(6169,229,1,5623,'2.99','2005-07-10 05:41:38','2006-02-15 22:14:29'), +(6170,229,2,6155,'4.99','2005-07-11 09:45:31','2006-02-15 22:14:29'), +(6171,229,2,6578,'4.99','2005-07-12 06:15:41','2006-02-15 22:14:29'), +(6172,229,1,6880,'2.99','2005-07-12 20:41:35','2006-02-15 22:14:29'), +(6173,229,2,7305,'0.99','2005-07-27 12:57:06','2006-02-15 22:14:29'), +(6174,229,2,7308,'5.99','2005-07-27 13:00:25','2006-02-15 22:14:29'), +(6175,229,2,7629,'0.99','2005-07-28 01:00:09','2006-02-15 22:14:29'), +(6176,229,2,7640,'7.99','2005-07-28 01:14:49','2006-02-15 22:14:29'), +(6177,229,2,9913,'3.99','2005-07-31 14:51:04','2006-02-15 22:14:29'), +(6178,229,1,11521,'4.99','2005-08-17 00:04:54','2006-02-15 22:14:29'), +(6179,229,1,12866,'2.99','2005-08-19 02:39:47','2006-02-15 22:14:29'), +(6180,229,2,13306,'0.99','2005-08-19 18:57:29','2006-02-15 22:14:29'), +(6181,229,2,13431,'4.99','2005-08-19 23:28:15','2006-02-15 22:14:29'), +(6182,229,1,13679,'5.99','2005-08-20 08:39:34','2006-02-15 22:14:29'), +(6183,229,1,15740,'4.99','2005-08-23 12:07:51','2006-02-15 22:14:29'), +(6184,229,2,15912,'2.99','2005-08-23 17:47:40','2006-02-15 22:14:29'), +(6185,229,2,13295,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:29'), +(6186,230,1,32,'0.99','2005-05-25 04:06:21','2006-02-15 22:14:29'), +(6187,230,1,1078,'4.99','2005-05-31 10:28:33','2006-02-15 22:14:29'), +(6188,230,2,1468,'3.99','2005-06-15 20:48:22','2006-02-15 22:14:30'), +(6189,230,1,1744,'4.99','2005-06-16 16:39:58','2006-02-15 22:14:30'), +(6190,230,2,1793,'0.99','2005-06-16 20:07:27','2006-02-15 22:14:30'), +(6191,230,2,2450,'8.99','2005-06-18 19:25:47','2006-02-15 22:14:30'), +(6192,230,2,2675,'0.99','2005-06-19 11:52:15','2006-02-15 22:14:30'), +(6193,230,1,2777,'0.99','2005-06-19 18:16:26','2006-02-15 22:14:30'), +(6194,230,1,4509,'3.99','2005-07-08 02:32:38','2006-02-15 22:14:30'), +(6195,230,1,4935,'0.99','2005-07-08 22:20:56','2006-02-15 22:14:30'), +(6196,230,1,5045,'4.99','2005-07-09 03:33:32','2006-02-15 22:14:30'), +(6197,230,1,5061,'0.99','2005-07-09 04:30:50','2006-02-15 22:14:30'), +(6198,230,2,5269,'2.99','2005-07-09 14:23:05','2006-02-15 22:14:30'), +(6199,230,2,6126,'4.99','2005-07-11 08:06:56','2006-02-15 22:14:30'), +(6200,230,1,6251,'2.99','2005-07-11 15:06:20','2006-02-15 22:14:30'), +(6201,230,2,7333,'4.99','2005-07-27 13:59:11','2006-02-15 22:14:30'), +(6202,230,2,7390,'4.99','2005-07-27 15:59:19','2006-02-15 22:14:30'), +(6203,230,2,8032,'4.99','2005-07-28 16:17:00','2006-02-15 22:14:30'), +(6204,230,2,8653,'0.99','2005-07-29 15:04:23','2006-02-15 22:14:30'), +(6205,230,1,8815,'2.99','2005-07-29 21:51:26','2006-02-15 22:14:30'), +(6206,230,2,9778,'3.99','2005-07-31 10:02:04','2006-02-15 22:14:30'), +(6207,230,2,10050,'3.99','2005-07-31 19:13:29','2006-02-15 22:14:30'), +(6208,230,1,10057,'9.99','2005-07-31 19:20:18','2006-02-15 22:14:30'), +(6209,230,2,10874,'2.99','2005-08-02 00:31:00','2006-02-15 22:14:30'), +(6210,230,2,11148,'5.99','2005-08-02 09:47:08','2006-02-15 22:14:30'), +(6211,230,1,11552,'5.99','2005-08-17 01:04:29','2006-02-15 22:14:30'), +(6212,230,2,11914,'2.99','2005-08-17 16:04:42','2006-02-15 22:14:30'), +(6213,230,1,12079,'1.99','2005-08-17 22:04:17','2006-02-15 22:14:30'), +(6214,230,2,12523,'7.99','2005-08-18 13:45:41','2006-02-15 22:14:30'), +(6215,230,2,12542,'0.99','2005-08-18 14:21:11','2006-02-15 22:14:31'), +(6216,230,2,14017,'0.99','2005-08-20 20:55:32','2006-02-15 22:14:31'), +(6217,230,1,14073,'5.99','2005-08-20 23:12:57','2006-02-15 22:14:31'), +(6218,230,1,14340,'2.99','2005-08-21 08:38:21','2006-02-15 22:14:31'), +(6219,231,1,329,'5.99','2005-05-27 01:57:14','2006-02-15 22:14:31'), +(6220,231,1,479,'6.99','2005-05-27 22:39:10','2006-02-15 22:14:31'), +(6221,231,1,512,'8.99','2005-05-28 03:07:50','2006-02-15 22:14:31'), +(6222,231,2,2423,'0.99','2005-06-18 17:32:08','2006-02-15 22:14:31'), +(6223,231,2,3561,'9.99','2005-07-06 02:54:33','2006-02-15 22:14:31'), +(6224,231,1,3839,'2.99','2005-07-06 16:30:30','2006-02-15 22:14:31'), +(6225,231,2,4289,'0.99','2005-07-07 15:45:58','2006-02-15 22:14:31'), +(6226,231,2,4969,'0.99','2005-07-08 23:51:26','2006-02-15 22:14:31'), +(6227,231,1,5096,'2.99','2005-07-09 06:08:23','2006-02-15 22:14:31'), +(6228,231,1,5560,'5.99','2005-07-10 03:13:24','2006-02-15 22:14:31'), +(6229,231,1,6862,'0.99','2005-07-12 19:58:09','2006-02-15 22:14:31'), +(6230,231,1,6877,'1.99','2005-07-12 20:32:58','2006-02-15 22:14:31'), +(6231,231,1,8556,'0.99','2005-07-29 11:18:27','2006-02-15 22:14:31'), +(6232,231,2,8949,'5.99','2005-07-30 03:17:02','2006-02-15 22:14:31'), +(6233,231,2,9711,'2.99','2005-07-31 08:06:41','2006-02-15 22:14:31'), +(6234,231,2,11113,'2.99','2005-08-02 08:26:24','2006-02-15 22:14:31'), +(6235,231,1,11202,'7.99','2005-08-02 11:51:57','2006-02-15 22:14:31'), +(6236,231,1,11581,'5.99','2005-08-17 02:03:02','2006-02-15 22:14:32'), +(6237,231,1,12214,'0.99','2005-08-18 02:34:22','2006-02-15 22:14:32'), +(6238,231,2,12230,'8.99','2005-08-18 03:11:04','2006-02-15 22:14:32'), +(6239,231,1,12231,'3.99','2005-08-18 03:11:44','2006-02-15 22:14:32'), +(6240,231,2,13983,'6.99','2005-08-20 19:08:32','2006-02-15 22:14:32'), +(6241,231,1,14026,'0.99','2005-08-20 21:21:08','2006-02-15 22:14:32'), +(6242,231,1,14478,'4.99','2005-08-21 13:33:28','2006-02-15 22:14:32'), +(6243,231,2,14806,'2.99','2005-08-22 00:53:08','2006-02-15 22:14:32'), +(6244,231,1,15389,'3.99','2005-08-22 22:51:13','2006-02-15 22:14:33'), +(6245,232,1,28,'4.99','2005-05-25 03:42:37','2006-02-15 22:14:33'), +(6246,232,1,805,'3.99','2005-05-29 18:18:18','2006-02-15 22:14:33'), +(6247,232,2,1619,'0.99','2005-06-16 07:14:13','2006-02-15 22:14:33'), +(6248,232,1,2833,'8.99','2005-06-19 21:34:54','2006-02-15 22:14:33'), +(6249,232,2,6234,'5.99','2005-07-11 14:16:10','2006-02-15 22:14:33'), +(6250,232,1,6309,'2.99','2005-07-11 18:13:24','2006-02-15 22:14:33'), +(6251,232,1,7123,'5.99','2005-07-27 06:08:48','2006-02-15 22:14:33'), +(6252,232,2,7653,'4.99','2005-07-28 01:58:30','2006-02-15 22:14:33'), +(6253,232,2,7707,'0.99','2005-07-28 04:07:47','2006-02-15 22:14:33'), +(6254,232,1,7749,'2.99','2005-07-28 05:53:36','2006-02-15 22:14:33'), +(6255,232,1,7990,'2.99','2005-07-28 14:43:08','2006-02-15 22:14:33'), +(6256,232,1,8306,'2.99','2005-07-29 03:12:26','2006-02-15 22:14:33'), +(6257,232,2,8401,'4.99','2005-07-29 06:25:08','2006-02-15 22:14:33'), +(6258,232,2,8655,'4.99','2005-07-29 15:04:42','2006-02-15 22:14:33'), +(6259,232,2,9270,'0.99','2005-07-30 15:03:16','2006-02-15 22:14:33'), +(6260,232,2,9330,'10.99','2005-07-30 17:44:24','2006-02-15 22:14:33'), +(6261,232,2,9365,'2.99','2005-07-30 18:46:02','2006-02-15 22:14:33'), +(6262,232,2,10157,'2.99','2005-07-31 22:38:48','2006-02-15 22:14:33'), +(6263,232,1,10539,'6.99','2005-08-01 12:23:00','2006-02-15 22:14:33'), +(6264,232,2,11861,'0.99','2005-08-17 13:53:47','2006-02-15 22:14:33'), +(6265,232,2,12853,'2.99','2005-08-19 02:15:32','2006-02-15 22:14:33'), +(6266,232,2,13707,'2.99','2005-08-20 09:33:58','2006-02-15 22:14:33'), +(6267,232,2,14527,'0.99','2005-08-21 15:07:42','2006-02-15 22:14:33'), +(6268,232,2,14857,'0.99','2005-08-22 02:42:39','2006-02-15 22:14:33'), +(6269,232,2,15553,'2.99','2005-08-23 04:33:39','2006-02-15 22:14:33'), +(6270,233,2,1992,'2.99','2005-06-17 10:58:53','2006-02-15 22:14:33'), +(6271,233,2,2244,'2.99','2005-06-18 04:46:33','2006-02-15 22:14:33'), +(6272,233,1,2424,'2.99','2005-06-18 17:35:08','2006-02-15 22:14:33'), +(6273,233,2,2443,'4.99','2005-06-18 18:52:30','2006-02-15 22:14:33'), +(6274,233,1,3832,'2.99','2005-07-06 16:12:23','2006-02-15 22:14:34'), +(6275,233,1,4015,'5.99','2005-07-07 00:59:46','2006-02-15 22:14:34'), +(6276,233,1,4885,'4.99','2005-07-08 19:51:17','2006-02-15 22:14:34'), +(6277,233,2,5267,'5.99','2005-07-09 14:21:10','2006-02-15 22:14:34'), +(6278,233,1,5846,'2.99','2005-07-10 17:25:24','2006-02-15 22:14:34'), +(6279,233,1,6319,'4.99','2005-07-11 18:50:45','2006-02-15 22:14:34'), +(6280,233,1,6794,'2.99','2005-07-12 16:38:23','2006-02-15 22:14:34'), +(6281,233,1,7056,'8.99','2005-07-27 03:46:27','2006-02-15 22:14:34'), +(6282,233,2,7387,'4.99','2005-07-27 15:54:19','2006-02-15 22:14:34'), +(6283,233,2,8385,'5.99','2005-07-29 05:39:16','2006-02-15 22:14:34'), +(6284,233,2,8530,'2.99','2005-07-29 10:26:14','2006-02-15 22:14:34'), +(6285,233,2,8596,'0.99','2005-07-29 12:48:54','2006-02-15 22:14:34'), +(6286,233,1,9574,'0.99','2005-07-31 02:49:20','2006-02-15 22:14:34'), +(6287,233,1,10582,'4.99','2005-08-01 13:54:22','2006-02-15 22:14:34'), +(6288,233,1,12443,'5.99','2005-08-18 10:50:59','2006-02-15 22:14:34'), +(6289,233,2,14357,'2.99','2005-08-21 09:13:09','2006-02-15 22:14:34'), +(6290,233,2,15285,'2.99','2005-08-22 19:17:24','2006-02-15 22:14:34'), +(6291,233,1,15790,'1.99','2005-08-23 14:01:07','2006-02-15 22:14:34'), +(6292,233,2,15821,'0.99','2005-08-23 15:03:58','2006-02-15 22:14:34'), +(6293,234,2,1125,'4.99','2005-05-31 17:23:44','2006-02-15 22:14:34'), +(6294,234,2,1245,'3.99','2005-06-15 05:09:01','2006-02-15 22:14:34'), +(6295,234,2,1645,'0.99','2005-06-16 09:10:06','2006-02-15 22:14:34'), +(6296,234,1,1674,'2.99','2005-06-16 10:57:00','2006-02-15 22:14:34'), +(6297,234,2,1993,'5.99','2005-06-17 10:59:24','2006-02-15 22:14:34'), +(6298,234,1,2005,'4.99','2005-06-17 11:44:54','2006-02-15 22:14:34'), +(6299,234,2,2511,'5.99','2005-06-18 23:45:30','2006-02-15 22:14:34'), +(6300,234,2,3185,'6.99','2005-06-20 22:58:01','2006-02-15 22:14:34'), +(6301,234,2,3199,'4.99','2005-06-21 00:12:40','2006-02-15 22:14:34'), +(6302,234,2,4686,'0.99','2005-07-08 10:53:39','2006-02-15 22:14:34'), +(6303,234,1,4721,'7.99','2005-07-08 12:39:31','2006-02-15 22:14:34'), +(6304,234,2,10133,'5.99','2005-07-31 21:55:07','2006-02-15 22:14:34'), +(6305,234,2,10541,'0.99','2005-08-01 12:24:54','2006-02-15 22:14:35'), +(6306,234,2,10580,'6.99','2005-08-01 13:51:14','2006-02-15 22:14:35'), +(6307,234,2,10968,'7.99','2005-08-02 04:03:13','2006-02-15 22:14:35'), +(6308,234,1,11050,'4.99','2005-08-02 06:17:16','2006-02-15 22:14:35'), +(6309,234,1,11073,'0.99','2005-08-02 07:13:03','2006-02-15 22:14:35'), +(6310,234,1,11481,'3.99','2005-08-02 22:18:41','2006-02-15 22:14:35'), +(6311,234,1,11882,'3.99','2005-08-17 14:33:41','2006-02-15 22:14:35'), +(6312,234,1,12226,'0.99','2005-08-18 03:00:48','2006-02-15 22:14:35'), +(6313,234,2,12863,'4.99','2005-08-19 02:35:59','2006-02-15 22:14:35'), +(6314,234,1,12921,'5.99','2005-08-19 04:47:48','2006-02-15 22:14:35'), +(6315,234,2,13349,'2.99','2005-08-19 20:43:16','2006-02-15 22:14:35'), +(6316,234,2,15037,'5.99','2005-08-22 09:36:33','2006-02-15 22:14:35'), +(6317,234,1,15129,'2.99','2005-08-22 13:03:52','2006-02-15 22:14:35'), +(6318,234,1,15778,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:35'), +(6319,235,2,807,'2.99','2005-05-29 18:50:50','2006-02-15 22:14:35'), +(6320,235,1,1148,'0.99','2005-05-31 20:38:40','2006-02-15 22:14:35'), +(6321,235,1,1493,'4.99','2005-06-15 21:50:32','2006-02-15 22:14:35'), +(6322,235,2,1811,'0.99','2005-06-16 21:06:20','2006-02-15 22:14:35'), +(6323,235,2,3581,'2.99','2005-07-06 03:57:35','2006-02-15 22:14:35'), +(6324,235,1,3752,'6.99','2005-07-06 12:30:12','2006-02-15 22:14:35'), +(6325,235,1,3968,'4.99','2005-07-06 22:47:09','2006-02-15 22:14:35'), +(6326,235,2,4592,'2.99','2005-07-08 06:31:28','2006-02-15 22:14:35'), +(6327,235,1,5790,'4.99','2005-07-10 14:15:21','2006-02-15 22:14:35'), +(6328,235,1,6047,'2.99','2005-07-11 03:27:01','2006-02-15 22:14:35'), +(6329,235,2,6352,'4.99','2005-07-11 20:34:13','2006-02-15 22:14:35'), +(6330,235,2,6466,'4.99','2005-07-12 01:21:03','2006-02-15 22:14:35'), +(6331,235,1,8120,'0.99','2005-07-28 19:24:24','2006-02-15 22:14:35'), +(6332,235,2,8446,'6.99','2005-07-29 07:38:10','2006-02-15 22:14:35'), +(6333,235,2,8781,'0.99','2005-07-29 20:20:16','2006-02-15 22:14:35'), +(6334,235,1,9019,'5.99','2005-07-30 05:28:53','2006-02-15 22:14:35'), +(6335,235,2,9519,'6.99','2005-07-31 00:45:57','2006-02-15 22:14:35'), +(6336,235,1,9587,'3.99','2005-07-31 03:10:30','2006-02-15 22:14:36'), +(6337,235,2,10155,'0.99','2005-07-31 22:31:43','2006-02-15 22:14:36'), +(6338,235,2,12332,'2.99','2005-08-18 06:51:05','2006-02-15 22:14:36'), +(6339,235,1,12502,'4.99','2005-08-18 13:16:31','2006-02-15 22:14:36'), +(6340,235,2,13070,'0.99','2005-08-19 09:56:23','2006-02-15 22:14:36'), +(6341,235,1,13469,'0.99','2005-08-20 00:59:36','2006-02-15 22:14:36'), +(6342,235,2,14749,'3.99','2005-08-21 23:08:33','2006-02-15 22:14:36'), +(6343,235,1,15034,'6.99','2005-08-22 09:33:08','2006-02-15 22:14:36'), +(6344,236,2,262,'2.99','2005-05-26 15:46:56','2006-02-15 22:14:36'), +(6345,236,2,344,'2.99','2005-05-27 04:30:22','2006-02-15 22:14:36'), +(6346,236,1,1032,'2.99','2005-05-31 04:28:43','2006-02-15 22:14:36'), +(6347,236,1,1262,'0.99','2005-06-15 06:54:53','2006-02-15 22:14:36'), +(6348,236,2,1308,'5.99','2005-06-15 10:07:48','2006-02-15 22:14:36'), +(6349,236,2,2139,'8.99','2005-06-17 21:29:34','2006-02-15 22:14:36'), +(6350,236,2,2311,'6.99','2005-06-18 08:51:29','2006-02-15 22:14:36'), +(6351,236,1,2630,'2.99','2005-06-19 08:47:21','2006-02-15 22:14:36'), +(6352,236,2,2840,'3.99','2005-06-19 22:17:44','2006-02-15 22:14:36'), +(6353,236,1,3353,'4.99','2005-06-21 11:29:23','2006-02-15 22:14:36'), +(6354,236,2,3460,'2.99','2005-06-21 21:46:56','2006-02-15 22:14:36'), +(6355,236,1,3645,'0.99','2005-07-06 07:22:09','2006-02-15 22:14:36'), +(6356,236,2,3857,'4.99','2005-07-06 17:07:54','2006-02-15 22:14:36'), +(6357,236,2,4749,'4.99','2005-07-08 14:05:58','2006-02-15 22:14:36'), +(6358,236,1,4959,'0.99','2005-07-08 23:22:23','2006-02-15 22:14:36'), +(6359,236,1,5404,'2.99','2005-07-09 20:10:43','2006-02-15 22:14:36'), +(6360,236,1,5545,'3.99','2005-07-10 02:50:29','2006-02-15 22:14:36'), +(6361,236,2,5938,'3.99','2005-07-10 22:17:42','2006-02-15 22:14:36'), +(6362,236,2,6049,'0.99','2005-07-11 03:32:32','2006-02-15 22:14:36'), +(6363,236,2,6281,'4.99','2005-07-11 16:38:16','2006-02-15 22:14:36'), +(6364,236,1,6303,'2.99','2005-07-11 17:55:43','2006-02-15 22:14:36'), +(6365,236,2,6996,'4.99','2005-07-27 01:13:45','2006-02-15 22:14:36'), +(6366,236,2,7047,'4.99','2005-07-27 03:31:11','2006-02-15 22:14:36'), +(6367,236,2,7253,'0.99','2005-07-27 10:46:37','2006-02-15 22:14:37'), +(6368,236,1,7780,'5.99','2005-07-28 07:11:55','2006-02-15 22:14:37'), +(6369,236,1,7792,'4.99','2005-07-28 07:24:02','2006-02-15 22:14:37'), +(6370,236,2,7798,'2.99','2005-07-28 07:41:59','2006-02-15 22:14:37'), +(6371,236,1,8657,'2.99','2005-07-29 15:09:25','2006-02-15 22:14:37'), +(6372,236,1,9011,'5.99','2005-07-30 05:16:29','2006-02-15 22:14:37'), +(6373,236,1,9934,'2.99','2005-07-31 15:25:26','2006-02-15 22:14:37'), +(6374,236,2,10137,'4.99','2005-07-31 22:01:41','2006-02-15 22:14:37'), +(6375,236,2,11139,'6.99','2005-08-02 09:27:36','2006-02-15 22:14:37'), +(6376,236,2,11486,'3.99','2005-08-02 22:34:06','2006-02-15 22:14:37'), +(6377,236,2,11507,'5.99','2005-08-16 23:26:43','2006-02-15 22:14:37'), +(6378,236,1,11895,'4.99','2005-08-17 15:15:07','2006-02-15 22:14:37'), +(6379,236,1,12975,'2.99','2005-08-19 06:51:19','2006-02-15 22:14:37'), +(6380,236,1,13364,'2.99','2005-08-19 21:09:30','2006-02-15 22:14:37'), +(6381,236,1,13443,'7.99','2005-08-19 23:53:42','2006-02-15 22:14:37'), +(6382,236,2,14321,'4.99','2005-08-21 08:05:12','2006-02-15 22:14:37'), +(6383,236,1,14364,'7.99','2005-08-21 09:25:11','2006-02-15 22:14:37'), +(6384,236,2,14722,'4.99','2005-08-21 21:50:53','2006-02-15 22:14:37'), +(6385,236,1,12988,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:37'), +(6386,237,2,133,'0.99','2005-05-25 21:48:30','2006-02-15 22:14:37'), +(6387,237,1,182,'4.99','2005-05-26 04:49:17','2006-02-15 22:14:37'), +(6388,237,1,1500,'0.99','2005-06-15 22:00:45','2006-02-15 22:14:37'), +(6389,237,2,1518,'0.99','2005-06-15 23:36:37','2006-02-15 22:14:37'), +(6390,237,1,2156,'4.99','2005-06-17 23:08:12','2006-02-15 22:14:37'), +(6391,237,1,2492,'2.99','2005-06-18 22:04:15','2006-02-15 22:14:37'), +(6392,237,2,3069,'2.99','2005-06-20 14:13:00','2006-02-15 22:14:37'), +(6393,237,1,4844,'4.99','2005-07-08 18:28:13','2006-02-15 22:14:37'), +(6394,237,2,6053,'4.99','2005-07-11 03:51:59','2006-02-15 22:14:37'), +(6395,237,1,7193,'2.99','2005-07-27 08:37:00','2006-02-15 22:14:37'), +(6396,237,2,7330,'3.99','2005-07-27 13:56:46','2006-02-15 22:14:37'), +(6397,237,1,7812,'4.99','2005-07-28 08:06:52','2006-02-15 22:14:37'), +(6398,237,2,7951,'8.99','2005-07-28 13:21:16','2006-02-15 22:14:38'), +(6399,237,2,8102,'2.99','2005-07-28 18:49:43','2006-02-15 22:14:38'), +(6400,237,2,8748,'2.99','2005-07-29 19:08:37','2006-02-15 22:14:38'), +(6401,237,2,8799,'6.99','2005-07-29 21:16:47','2006-02-15 22:14:38'), +(6402,237,1,8835,'3.99','2005-07-29 22:44:35','2006-02-15 22:14:38'), +(6403,237,1,9276,'5.99','2005-07-30 15:09:28','2006-02-15 22:14:38'), +(6404,237,1,9661,'4.99','2005-07-31 06:06:37','2006-02-15 22:14:38'), +(6405,237,2,9715,'1.99','2005-07-31 08:16:58','2006-02-15 22:14:38'), +(6406,237,2,10056,'0.99','2005-07-31 19:19:13','2006-02-15 22:14:38'), +(6407,237,2,10058,'2.99','2005-07-31 19:20:21','2006-02-15 22:14:38'), +(6408,237,2,11125,'4.99','2005-08-02 08:55:35','2006-02-15 22:14:38'), +(6409,237,2,11479,'11.99','2005-08-02 22:18:13','2006-02-15 22:14:38'), +(6410,237,2,11772,'5.99','2005-08-17 10:18:57','2006-02-15 22:14:38'), +(6411,237,1,12469,'0.99','2005-08-18 11:53:07','2006-02-15 22:14:38'), +(6412,237,2,13914,'6.99','2005-08-20 16:38:57','2006-02-15 22:14:38'), +(6413,237,2,13922,'6.99','2005-08-20 17:02:37','2006-02-15 22:14:38'), +(6414,237,2,13969,'6.99','2005-08-20 18:42:40','2006-02-15 22:14:38'), +(6415,237,2,14453,'3.99','2005-08-21 12:33:34','2006-02-15 22:14:38'), +(6416,237,2,15139,'8.99','2005-08-22 13:38:11','2006-02-15 22:14:38'), +(6417,237,1,15337,'0.99','2005-08-22 20:49:51','2006-02-15 22:14:38'), +(6418,237,2,15931,'1.99','2005-08-23 18:28:09','2006-02-15 22:14:38'), +(6419,238,2,315,'4.99','2005-05-26 23:12:55','2006-02-15 22:14:38'), +(6420,238,1,842,'2.99','2005-05-30 00:32:04','2006-02-15 22:14:38'), +(6421,238,1,1199,'2.99','2005-06-15 01:58:50','2006-02-15 22:14:38'), +(6422,238,1,1660,'4.99','2005-06-16 10:12:55','2006-02-15 22:14:38'), +(6423,238,1,3181,'2.99','2005-06-20 22:51:02','2006-02-15 22:14:38'), +(6424,238,1,4143,'0.99','2005-07-07 08:22:07','2006-02-15 22:14:38'), +(6425,238,1,5616,'5.99','2005-07-10 05:21:11','2006-02-15 22:14:38'), +(6426,238,2,6403,'0.99','2005-07-11 22:46:25','2006-02-15 22:14:38'), +(6427,238,2,7243,'4.99','2005-07-27 10:26:11','2006-02-15 22:14:38'), +(6428,238,1,8310,'8.99','2005-07-29 03:25:56','2006-02-15 22:14:38'), +(6429,238,1,8382,'6.99','2005-07-29 05:33:21','2006-02-15 22:14:39'), +(6430,238,1,8465,'0.99','2005-07-29 08:20:49','2006-02-15 22:14:39'), +(6431,238,1,9065,'4.99','2005-07-30 07:25:09','2006-02-15 22:14:39'), +(6432,238,2,9841,'7.99','2005-07-31 12:24:19','2006-02-15 22:14:39'), +(6433,238,1,10659,'5.99','2005-08-01 16:40:34','2006-02-15 22:14:39'), +(6434,238,2,11543,'5.99','2005-08-17 00:54:28','2006-02-15 22:14:39'), +(6435,238,2,11632,'2.99','2005-08-17 04:29:32','2006-02-15 22:14:39'), +(6436,238,1,11897,'2.99','2005-08-17 15:24:06','2006-02-15 22:14:39'), +(6437,238,1,14312,'4.99','2005-08-21 07:48:34','2006-02-15 22:14:39'), +(6438,238,1,14343,'8.99','2005-08-21 08:40:21','2006-02-15 22:14:39'), +(6439,238,1,15455,'0.99','2005-08-23 01:05:00','2006-02-15 22:14:39'), +(6440,239,2,8,'4.99','2005-05-24 23:31:46','2006-02-15 22:14:39'), +(6441,239,1,444,'2.99','2005-05-27 18:39:15','2006-02-15 22:14:39'), +(6442,239,1,621,'4.99','2005-05-28 15:58:12','2006-02-15 22:14:39'), +(6443,239,1,636,'6.99','2005-05-28 17:47:58','2006-02-15 22:14:39'), +(6444,239,1,1022,'7.99','2005-05-31 03:16:45','2006-02-15 22:14:39'), +(6445,239,2,1082,'5.99','2005-05-31 11:02:01','2006-02-15 22:14:39'), +(6446,239,1,1160,'4.99','2005-06-14 23:00:34','2006-02-15 22:14:39'), +(6447,239,2,1560,'4.99','2005-06-16 02:36:43','2006-02-15 22:14:39'), +(6448,239,2,2215,'2.99','2005-06-18 02:48:21','2006-02-15 22:14:39'), +(6449,239,1,2390,'4.99','2005-06-18 15:29:26','2006-02-15 22:14:39'), +(6450,239,1,3383,'5.99','2005-06-21 14:07:19','2006-02-15 22:14:39'), +(6451,239,2,3547,'0.99','2005-07-06 02:18:06','2006-02-15 22:14:39'), +(6452,239,1,3552,'5.99','2005-07-06 02:34:09','2006-02-15 22:14:39'), +(6453,239,2,4920,'7.99','2005-07-08 21:42:10','2006-02-15 22:14:39'), +(6454,239,2,5651,'4.99','2005-07-10 07:17:13','2006-02-15 22:14:39'), +(6455,239,1,5960,'0.99','2005-07-10 23:38:34','2006-02-15 22:14:39'), +(6456,239,1,6573,'0.99','2005-07-12 06:03:40','2006-02-15 22:14:39'), +(6457,239,2,7012,'8.99','2005-07-27 02:01:03','2006-02-15 22:14:39'), +(6458,239,1,7426,'0.99','2005-07-27 17:19:46','2006-02-15 22:14:39'), +(6459,239,2,7491,'2.99','2005-07-27 19:53:23','2006-02-15 22:14:39'), +(6460,239,1,8457,'6.99','2005-07-29 07:59:03','2006-02-15 22:14:40'), +(6461,239,2,9676,'0.99','2005-07-31 06:39:13','2006-02-15 22:14:40'), +(6462,239,1,9863,'5.99','2005-07-31 13:05:29','2006-02-15 22:14:40'), +(6463,239,1,10755,'0.99','2005-08-01 20:14:14','2006-02-15 22:14:40'), +(6464,239,2,10923,'2.99','2005-08-02 02:15:01','2006-02-15 22:14:40'), +(6465,239,1,11487,'2.99','2005-08-02 22:35:05','2006-02-15 22:14:40'), +(6466,239,2,11900,'4.99','2005-08-17 15:30:44','2006-02-15 22:14:40'), +(6467,239,1,11968,'0.99','2005-08-17 17:47:34','2006-02-15 22:14:40'), +(6468,239,1,12340,'4.99','2005-08-18 07:07:01','2006-02-15 22:14:40'), +(6469,239,1,12721,'1.99','2005-08-18 21:30:12','2006-02-15 22:14:40'), +(6470,239,1,13175,'4.99','2005-08-19 13:54:53','2006-02-15 22:14:40'), +(6471,239,2,13427,'4.99','2005-08-19 23:19:02','2006-02-15 22:14:40'), +(6472,239,2,13999,'3.99','2005-08-20 19:53:32','2006-02-15 22:14:40'), +(6473,239,2,14062,'1.99','2005-08-20 22:34:34','2006-02-15 22:14:40'), +(6474,240,1,246,'2.99','2005-05-26 13:57:07','2006-02-15 22:14:40'), +(6475,240,1,460,'2.99','2005-05-27 20:02:03','2006-02-15 22:14:40'), +(6476,240,1,643,'4.99','2005-05-28 18:52:11','2006-02-15 22:14:40'), +(6477,240,2,2196,'3.99','2005-06-18 01:47:07','2006-02-15 22:14:40'), +(6478,240,1,2264,'4.99','2005-06-18 05:58:45','2006-02-15 22:14:40'), +(6479,240,2,2872,'5.99','2005-06-20 00:38:21','2006-02-15 22:14:40'), +(6480,240,2,4305,'4.99','2005-07-07 17:07:11','2006-02-15 22:14:40'), +(6481,240,2,5262,'4.99','2005-07-09 14:08:01','2006-02-15 22:14:40'), +(6482,240,1,5596,'0.99','2005-07-10 04:43:14','2006-02-15 22:14:40'), +(6483,240,1,6272,'0.99','2005-07-11 16:03:49','2006-02-15 22:14:40'), +(6484,240,2,6470,'0.99','2005-07-12 01:29:41','2006-02-15 22:14:40'), +(6485,240,1,6956,'4.99','2005-07-26 23:55:57','2006-02-15 22:14:40'), +(6486,240,1,7001,'4.99','2005-07-27 01:25:34','2006-02-15 22:14:40'), +(6487,240,1,7467,'8.99','2005-07-27 18:51:54','2006-02-15 22:14:40'), +(6488,240,2,7481,'4.99','2005-07-27 19:20:25','2006-02-15 22:14:40'), +(6489,240,1,7870,'4.99','2005-07-28 10:16:03','2006-02-15 22:14:40'), +(6490,240,2,8503,'3.99','2005-07-29 09:16:50','2006-02-15 22:14:41'), +(6491,240,2,8905,'5.99','2005-07-30 01:11:11','2006-02-15 22:14:41'), +(6492,240,1,10308,'7.99','2005-08-01 04:22:49','2006-02-15 22:14:41'), +(6493,240,1,11745,'3.99','2005-08-17 09:00:01','2006-02-15 22:14:41'), +(6494,240,2,12283,'6.99','2005-08-18 04:54:25','2006-02-15 22:14:41'), +(6495,240,2,13030,'2.99','2005-08-19 08:28:11','2006-02-15 22:14:41'), +(6496,240,2,13119,'4.99','2005-08-19 11:44:59','2006-02-15 22:14:41'), +(6497,240,1,13663,'8.99','2005-08-20 08:12:33','2006-02-15 22:14:41'), +(6498,240,2,14573,'2.99','2005-08-21 16:44:32','2006-02-15 22:14:41'), +(6499,240,2,15641,'0.99','2005-08-23 08:06:49','2006-02-15 22:14:41'), +(6500,241,1,627,'7.99','2005-05-28 17:04:43','2006-02-15 22:14:41'), +(6501,241,1,1059,'3.99','2005-05-31 08:20:43','2006-02-15 22:14:41'), +(6502,241,2,2428,'0.99','2005-06-18 17:47:34','2006-02-15 22:14:41'), +(6503,241,1,2455,'0.99','2005-06-18 19:33:06','2006-02-15 22:14:41'), +(6504,241,2,2478,'5.99','2005-06-18 21:01:21','2006-02-15 22:14:41'), +(6505,241,2,2683,'2.99','2005-06-19 12:27:19','2006-02-15 22:14:41'), +(6506,241,2,3258,'0.99','2005-06-21 03:53:58','2006-02-15 22:14:41'), +(6507,241,2,3822,'0.99','2005-07-06 15:41:15','2006-02-15 22:14:41'), +(6508,241,1,4731,'0.99','2005-07-08 13:08:18','2006-02-15 22:14:41'), +(6509,241,2,5017,'2.99','2005-07-09 02:00:16','2006-02-15 22:14:41'), +(6510,241,1,5211,'0.99','2005-07-09 11:26:50','2006-02-15 22:14:41'), +(6511,241,1,5438,'4.99','2005-07-09 21:34:32','2006-02-15 22:14:41'), +(6512,241,2,5525,'3.99','2005-07-10 02:03:08','2006-02-15 22:14:41'), +(6513,241,1,5981,'4.99','2005-07-11 00:19:04','2006-02-15 22:14:41'), +(6514,241,2,6090,'6.99','2005-07-11 05:47:08','2006-02-15 22:14:41'), +(6515,241,2,6245,'2.99','2005-07-11 14:56:57','2006-02-15 22:14:41'), +(6516,241,1,7320,'0.99','2005-07-27 13:33:35','2006-02-15 22:14:41'), +(6517,241,1,7434,'2.99','2005-07-27 17:34:40','2006-02-15 22:14:41'), +(6518,241,1,7860,'2.99','2005-07-28 09:58:02','2006-02-15 22:14:41'), +(6519,241,1,9500,'6.99','2005-07-30 23:58:36','2006-02-15 22:14:41'), +(6520,241,1,9528,'3.99','2005-07-31 01:05:04','2006-02-15 22:14:42'), +(6521,241,1,9944,'5.99','2005-07-31 15:44:43','2006-02-15 22:14:42'), +(6522,241,2,10447,'3.99','2005-08-01 09:04:58','2006-02-15 22:14:42'), +(6523,241,1,10652,'2.99','2005-08-01 16:24:08','2006-02-15 22:14:42'), +(6524,241,1,11423,'1.99','2005-08-02 19:57:13','2006-02-15 22:14:42'), +(6525,241,2,12418,'4.99','2005-08-18 09:59:36','2006-02-15 22:14:42'), +(6526,241,1,12956,'4.99','2005-08-19 06:06:26','2006-02-15 22:14:42'), +(6527,241,2,13077,'2.99','2005-08-19 10:15:19','2006-02-15 22:14:42'), +(6528,241,2,14269,'7.99','2005-08-21 06:22:07','2006-02-15 22:14:42'), +(6529,241,2,14485,'2.99','2005-08-21 13:52:07','2006-02-15 22:14:42'), +(6530,241,1,14936,'0.99','2005-08-22 05:51:26','2006-02-15 22:14:42'), +(6531,241,2,15137,'2.99','2005-08-22 13:20:28','2006-02-15 22:14:42'), +(6532,241,1,15429,'2.99','2005-08-23 00:20:31','2006-02-15 22:14:42'), +(6533,241,1,15767,'4.99','2005-08-23 13:14:15','2006-02-15 22:14:42'), +(6534,242,1,108,'2.99','2005-05-25 18:30:05','2006-02-15 22:14:42'), +(6535,242,2,283,'3.99','2005-05-26 19:05:05','2006-02-15 22:14:42'), +(6536,242,2,881,'4.99','2005-05-30 06:15:36','2006-02-15 22:14:42'), +(6537,242,2,1304,'4.99','2005-06-15 09:56:02','2006-02-15 22:14:42'), +(6538,242,1,1384,'4.99','2005-06-15 15:22:03','2006-02-15 22:14:42'), +(6539,242,1,1483,'4.99','2005-06-15 21:21:58','2006-02-15 22:14:42'), +(6540,242,2,1702,'4.99','2005-06-16 13:21:05','2006-02-15 22:14:42'), +(6541,242,1,2691,'4.99','2005-06-19 13:06:50','2006-02-15 22:14:42'), +(6542,242,2,2942,'4.99','2005-06-20 05:27:31','2006-02-15 22:14:42'), +(6543,242,1,3471,'4.99','2005-07-05 22:51:44','2006-02-15 22:14:42'), +(6544,242,2,3604,'0.99','2005-07-06 05:25:22','2006-02-15 22:14:42'), +(6545,242,1,4426,'4.99','2005-07-07 22:28:32','2006-02-15 22:14:42'), +(6546,242,2,4895,'1.99','2005-07-08 20:22:05','2006-02-15 22:14:42'), +(6547,242,2,5666,'5.99','2005-07-10 08:10:29','2006-02-15 22:14:42'), +(6548,242,2,7149,'3.99','2005-07-27 07:10:40','2006-02-15 22:14:42'), +(6549,242,1,8491,'4.99','2005-07-29 09:02:13','2006-02-15 22:14:42'), +(6550,242,1,9423,'3.99','2005-07-30 21:10:14','2006-02-15 22:14:42'), +(6551,242,1,9730,'6.99','2005-07-31 08:50:08','2006-02-15 22:14:43'), +(6552,242,2,10367,'0.99','2005-08-01 06:12:19','2006-02-15 22:14:43'), +(6553,242,2,10382,'4.99','2005-08-01 06:36:45','2006-02-15 22:14:43'), +(6554,242,2,10650,'9.99','2005-08-01 16:18:45','2006-02-15 22:14:43'), +(6555,242,2,11020,'0.99','2005-08-02 05:29:48','2006-02-15 22:14:43'), +(6556,242,1,11258,'4.99','2005-08-02 13:45:39','2006-02-15 22:14:43'), +(6557,242,2,11607,'0.99','2005-08-17 03:36:06','2006-02-15 22:14:43'), +(6558,242,1,11931,'4.99','2005-08-17 16:35:14','2006-02-15 22:14:43'), +(6559,242,2,12724,'7.99','2005-08-18 21:37:20','2006-02-15 22:14:43'), +(6560,242,1,12855,'4.99','2005-08-19 02:18:58','2006-02-15 22:14:43'), +(6561,242,1,13271,'9.99','2005-08-19 17:42:06','2006-02-15 22:14:43'), +(6562,242,2,13567,'0.99','2005-08-20 04:49:21','2006-02-15 22:14:43'), +(6563,242,2,13646,'5.99','2005-08-20 07:47:08','2006-02-15 22:14:43'), +(6564,242,1,14515,'0.99','2005-08-21 14:52:14','2006-02-15 22:14:43'), +(6565,242,1,15002,'0.99','2005-08-22 08:06:00','2006-02-15 22:14:43'), +(6566,243,1,188,'4.99','2005-05-26 05:47:12','2006-02-15 22:14:43'), +(6567,243,1,1405,'5.99','2005-06-15 16:41:26','2006-02-15 22:14:43'), +(6568,243,1,1452,'0.99','2005-06-15 19:32:52','2006-02-15 22:14:43'), +(6569,243,2,2757,'5.99','2005-06-19 17:01:14','2006-02-15 22:14:43'), +(6570,243,2,3854,'5.99','2005-07-06 17:02:33','2006-02-15 22:14:43'), +(6571,243,1,3965,'4.99','2005-07-06 22:36:20','2006-02-15 22:14:43'), +(6572,243,1,4831,'0.99','2005-07-08 18:00:14','2006-02-15 22:14:43'), +(6573,243,1,5502,'0.99','2005-07-10 00:34:15','2006-02-15 22:14:43'), +(6574,243,2,6038,'3.99','2005-07-11 03:10:37','2006-02-15 22:14:43'), +(6575,243,2,6820,'2.99','2005-07-12 18:21:30','2006-02-15 22:14:43'), +(6576,243,2,7022,'2.99','2005-07-27 02:31:15','2006-02-15 22:14:43'), +(6577,243,2,7165,'0.99','2005-07-27 07:36:46','2006-02-15 22:14:43'), +(6578,243,1,8834,'4.99','2005-07-29 22:41:48','2006-02-15 22:14:43'), +(6579,243,2,9035,'2.99','2005-07-30 06:16:07','2006-02-15 22:14:43'), +(6580,243,2,9514,'4.99','2005-07-31 00:29:44','2006-02-15 22:14:43'), +(6581,243,2,9675,'2.99','2005-07-31 06:37:07','2006-02-15 22:14:44'), +(6582,243,2,9988,'5.99','2005-07-31 17:22:36','2006-02-15 22:14:44'), +(6583,243,1,12209,'2.99','2005-08-18 02:27:20','2006-02-15 22:14:44'), +(6584,243,1,13291,'2.99','2005-08-19 18:32:11','2006-02-15 22:14:44'), +(6585,243,1,14033,'2.99','2005-08-20 21:30:53','2006-02-15 22:14:44'), +(6586,243,1,14108,'0.99','2005-08-21 00:52:45','2006-02-15 22:14:44'), +(6587,243,1,14272,'3.99','2005-08-21 06:24:55','2006-02-15 22:14:44'), +(6588,243,2,14581,'1.99','2005-08-21 17:07:08','2006-02-15 22:14:44'), +(6589,243,2,14705,'2.99','2005-08-21 21:02:55','2006-02-15 22:14:44'), +(6590,244,2,592,'4.99','2005-05-28 13:21:08','2006-02-15 22:14:44'), +(6591,244,1,797,'1.99','2005-05-29 17:12:17','2006-02-15 22:14:44'), +(6592,244,2,1189,'6.99','2005-06-15 01:04:22','2006-02-15 22:14:44'), +(6593,244,1,1595,'5.99','2005-06-16 05:23:46','2006-02-15 22:14:44'), +(6594,244,2,2955,'3.99','2005-06-20 06:46:35','2006-02-15 22:14:44'), +(6595,244,1,4814,'4.99','2005-07-08 17:11:09','2006-02-15 22:14:44'), +(6596,244,2,5387,'4.99','2005-07-09 19:25:14','2006-02-15 22:14:44'), +(6597,244,2,5461,'0.99','2005-07-09 22:48:04','2006-02-15 22:14:44'), +(6598,244,2,5692,'0.99','2005-07-10 09:32:22','2006-02-15 22:14:44'), +(6599,244,1,5779,'4.99','2005-07-10 13:45:54','2006-02-15 22:14:44'), +(6600,244,1,5803,'3.99','2005-07-10 15:05:42','2006-02-15 22:14:44'), +(6601,244,2,6374,'4.99','2005-07-11 21:36:10','2006-02-15 22:14:44'), +(6602,244,2,6608,'2.99','2005-07-12 08:16:50','2006-02-15 22:14:44'), +(6603,244,2,6683,'2.99','2005-07-12 12:14:05','2006-02-15 22:14:44'), +(6604,244,2,8454,'0.99','2005-07-29 07:49:04','2006-02-15 22:14:44'), +(6605,244,2,8844,'5.99','2005-07-29 23:05:08','2006-02-15 22:14:44'), +(6606,244,1,10001,'4.99','2005-07-31 17:46:18','2006-02-15 22:14:44'), +(6607,244,2,10047,'4.99','2005-07-31 19:07:43','2006-02-15 22:14:44'), +(6608,244,1,10152,'5.99','2005-07-31 22:28:05','2006-02-15 22:14:44'), +(6609,244,2,10684,'6.99','2005-08-01 17:47:00','2006-02-15 22:14:44'), +(6610,244,2,10969,'2.99','2005-08-02 04:04:32','2006-02-15 22:14:44'), +(6611,244,2,11157,'0.99','2005-08-02 09:58:15','2006-02-15 22:14:45'), +(6612,244,1,11267,'9.99','2005-08-02 14:09:08','2006-02-15 22:14:45'), +(6613,244,1,11762,'9.99','2005-08-17 09:48:06','2006-02-15 22:14:45'), +(6614,244,1,13630,'4.99','2005-08-20 07:05:56','2006-02-15 22:14:45'), +(6615,244,2,13774,'0.99','2005-08-20 11:54:01','2006-02-15 22:14:45'), +(6616,244,1,13928,'0.99','2005-08-20 17:12:28','2006-02-15 22:14:45'), +(6617,244,1,14367,'0.99','2005-08-21 09:31:44','2006-02-15 22:14:45'), +(6618,244,2,14657,'0.99','2005-08-21 19:39:43','2006-02-15 22:14:45'), +(6619,244,1,14919,'1.99','2005-08-22 05:07:17','2006-02-15 22:14:45'), +(6620,244,1,14975,'3.99','2005-08-22 07:07:50','2006-02-15 22:14:45'), +(6621,244,2,12736,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:45'), +(6622,245,2,79,'4.99','2005-05-25 12:11:07','2006-02-15 22:14:45'), +(6623,245,1,241,'0.99','2005-05-26 12:49:01','2006-02-15 22:14:45'), +(6624,245,1,519,'7.99','2005-05-28 03:22:33','2006-02-15 22:14:45'), +(6625,245,1,719,'2.99','2005-05-29 05:16:05','2006-02-15 22:14:45'), +(6626,245,2,725,'2.99','2005-05-29 06:03:41','2006-02-15 22:14:45'), +(6627,245,2,948,'8.99','2005-05-30 15:44:27','2006-02-15 22:14:45'), +(6628,245,1,1377,'2.99','2005-06-15 15:02:03','2006-02-15 22:14:45'), +(6629,245,1,2122,'2.99','2005-06-17 20:48:27','2006-02-15 22:14:45'), +(6630,245,1,3157,'2.99','2005-06-20 21:07:54','2006-02-15 22:14:45'), +(6631,245,1,3634,'2.99','2005-07-06 06:51:14','2006-02-15 22:14:45'), +(6632,245,2,5321,'2.99','2005-07-09 16:26:33','2006-02-15 22:14:45'), +(6633,245,1,5764,'4.99','2005-07-10 12:58:16','2006-02-15 22:14:45'), +(6634,245,2,6242,'2.99','2005-07-11 14:45:04','2006-02-15 22:14:45'), +(6635,245,1,6795,'5.99','2005-07-12 16:41:00','2006-02-15 22:14:45'), +(6636,245,2,6962,'0.99','2005-07-27 00:10:58','2006-02-15 22:14:45'), +(6637,245,1,7230,'4.99','2005-07-27 10:01:41','2006-02-15 22:14:45'), +(6638,245,2,7233,'5.99','2005-07-27 10:08:36','2006-02-15 22:14:45'), +(6639,245,1,7358,'0.99','2005-07-27 14:49:44','2006-02-15 22:14:45'), +(6640,245,2,7397,'4.99','2005-07-27 16:05:00','2006-02-15 22:14:45'), +(6641,245,2,8701,'6.99','2005-07-29 17:02:35','2006-02-15 22:14:46'), +(6642,245,1,8811,'10.99','2005-07-29 21:46:21','2006-02-15 22:14:46'), +(6643,245,2,9088,'0.99','2005-07-30 08:21:02','2006-02-15 22:14:46'), +(6644,245,2,9169,'4.99','2005-07-30 11:35:00','2006-02-15 22:14:46'), +(6645,245,1,9813,'6.99','2005-07-31 11:29:23','2006-02-15 22:14:46'), +(6646,245,1,10087,'3.99','2005-07-31 20:15:22','2006-02-15 22:14:46'), +(6647,245,2,11061,'0.99','2005-08-02 06:50:18','2006-02-15 22:14:46'), +(6648,245,1,11105,'0.99','2005-08-02 08:13:31','2006-02-15 22:14:46'), +(6649,245,1,11211,'0.99','2005-08-02 12:16:48','2006-02-15 22:14:46'), +(6650,245,1,12303,'7.99','2005-08-18 05:43:22','2006-02-15 22:14:46'), +(6651,245,1,13286,'0.99','2005-08-19 18:28:07','2006-02-15 22:14:46'), +(6652,245,1,15782,'6.99','2005-08-23 13:43:26','2006-02-15 22:14:46'), +(6653,245,2,12682,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:46'), +(6654,246,1,124,'6.99','2005-05-25 20:46:11','2006-02-15 22:14:46'), +(6655,246,2,421,'8.99','2005-05-27 15:30:13','2006-02-15 22:14:46'), +(6656,246,2,434,'5.99','2005-05-27 16:54:27','2006-02-15 22:14:46'), +(6657,246,1,699,'3.99','2005-05-29 02:11:44','2006-02-15 22:14:46'), +(6658,246,1,1051,'4.99','2005-05-31 07:02:09','2006-02-15 22:14:46'), +(6659,246,2,1448,'1.99','2005-06-15 19:17:16','2006-02-15 22:14:46'), +(6660,246,1,1968,'2.99','2005-06-17 09:20:36','2006-02-15 22:14:46'), +(6661,246,2,2704,'1.99','2005-06-19 13:50:10','2006-02-15 22:14:46'), +(6662,246,1,2725,'0.99','2005-06-19 15:01:23','2006-02-15 22:14:46'), +(6663,246,1,3152,'4.99','2005-06-20 20:42:41','2006-02-15 22:14:46'), +(6664,246,1,4092,'7.99','2005-07-07 05:54:18','2006-02-15 22:14:46'), +(6665,246,2,4905,'4.99','2005-07-08 20:56:00','2006-02-15 22:14:46'), +(6666,246,2,4994,'2.99','2005-07-09 00:54:13','2006-02-15 22:14:46'), +(6667,246,2,5347,'0.99','2005-07-09 17:31:32','2006-02-15 22:14:46'), +(6668,246,1,6688,'4.99','2005-07-12 12:22:12','2006-02-15 22:14:46'), +(6669,246,2,9525,'5.99','2005-07-31 01:02:18','2006-02-15 22:14:46'), +(6670,246,2,10208,'4.99','2005-08-01 00:54:51','2006-02-15 22:14:46'), +(6671,246,2,10683,'2.99','2005-08-01 17:33:03','2006-02-15 22:14:47'), +(6672,246,2,13418,'5.99','2005-08-19 22:53:56','2006-02-15 22:14:47'), +(6673,246,1,13750,'6.99','2005-08-20 11:11:42','2006-02-15 22:14:47'), +(6674,246,1,13987,'4.99','2005-08-20 19:19:30','2006-02-15 22:14:47'), +(6675,246,1,14360,'6.99','2005-08-21 09:16:40','2006-02-15 22:14:47'), +(6676,246,1,15746,'2.99','2005-08-23 12:26:19','2006-02-15 22:14:47'), +(6677,247,1,189,'4.99','2005-05-26 06:01:41','2006-02-15 22:14:47'), +(6678,247,2,448,'3.99','2005-05-27 19:03:08','2006-02-15 22:14:47'), +(6679,247,1,450,'6.99','2005-05-27 19:18:54','2006-02-15 22:14:47'), +(6680,247,1,2288,'5.99','2005-06-18 07:23:17','2006-02-15 22:14:47'), +(6681,247,2,3955,'2.99','2005-07-06 21:58:08','2006-02-15 22:14:47'), +(6682,247,2,4198,'6.99','2005-07-07 11:08:11','2006-02-15 22:14:47'), +(6683,247,1,4492,'2.99','2005-07-08 01:32:04','2006-02-15 22:14:47'), +(6684,247,2,4995,'2.99','2005-07-09 00:57:46','2006-02-15 22:14:47'), +(6685,247,1,5328,'6.99','2005-07-09 16:48:29','2006-02-15 22:14:47'), +(6686,247,1,5842,'4.99','2005-07-10 17:11:37','2006-02-15 22:14:47'), +(6687,247,1,7963,'5.99','2005-07-28 13:48:38','2006-02-15 22:14:47'), +(6688,247,1,10279,'1.99','2005-08-01 03:26:44','2006-02-15 22:14:47'), +(6689,247,1,10410,'6.99','2005-08-01 07:53:29','2006-02-15 22:14:47'), +(6690,247,2,11204,'2.99','2005-08-02 11:56:31','2006-02-15 22:14:47'), +(6691,247,2,11306,'2.99','2005-08-02 15:45:10','2006-02-15 22:14:47'), +(6692,247,1,11495,'0.99','2005-08-16 22:51:20','2006-02-15 22:14:47'), +(6693,247,2,12265,'4.99','2005-08-18 04:22:01','2006-02-15 22:14:47'), +(6694,247,1,12482,'7.99','2005-08-18 12:37:36','2006-02-15 22:14:47'), +(6695,247,1,12491,'4.99','2005-08-18 12:48:45','2006-02-15 22:14:47'), +(6696,247,1,12824,'4.99','2005-08-19 01:18:00','2006-02-15 22:14:47'), +(6697,247,1,14041,'4.99','2005-08-20 21:45:23','2006-02-15 22:14:47'), +(6698,247,1,15783,'4.99','2005-08-23 13:45:44','2006-02-15 22:14:47'), +(6699,248,2,330,'7.99','2005-05-27 02:15:30','2006-02-15 22:14:47'), +(6700,248,1,618,'4.99','2005-05-28 15:50:07','2006-02-15 22:14:47'), +(6701,248,1,2066,'3.99','2005-06-17 16:07:08','2006-02-15 22:14:48'), +(6702,248,2,2371,'0.99','2005-06-18 14:35:29','2006-02-15 22:14:48'), +(6703,248,1,3910,'0.99','2005-07-06 20:05:18','2006-02-15 22:14:48'), +(6704,248,2,4541,'4.99','2005-07-08 04:04:19','2006-02-15 22:14:48'), +(6705,248,1,4841,'0.99','2005-07-08 18:18:23','2006-02-15 22:14:48'), +(6706,248,1,5370,'2.99','2005-07-09 18:43:19','2006-02-15 22:14:48'), +(6707,248,2,6617,'2.99','2005-07-12 08:39:56','2006-02-15 22:14:48'), +(6708,248,2,7778,'5.99','2005-07-28 07:10:11','2006-02-15 22:14:48'), +(6709,248,2,10418,'4.99','2005-08-01 08:11:07','2006-02-15 22:14:48'), +(6710,248,1,12241,'0.99','2005-08-18 03:33:17','2006-02-15 22:14:48'), +(6711,248,1,13918,'0.99','2005-08-20 16:47:32','2006-02-15 22:14:48'), +(6712,248,2,14704,'0.99','2005-08-21 21:02:22','2006-02-15 22:14:48'), +(6713,248,2,14885,'5.99','2005-08-22 03:58:29','2006-02-15 22:14:48'), +(6714,249,2,316,'4.99','2005-05-26 23:22:55','2006-02-15 22:14:48'), +(6715,249,2,400,'2.99','2005-05-27 12:51:44','2006-02-15 22:14:48'), +(6716,249,1,438,'6.99','2005-05-27 17:52:34','2006-02-15 22:14:48'), +(6717,249,1,597,'3.99','2005-05-28 14:01:02','2006-02-15 22:14:48'), +(6718,249,1,1204,'0.99','2005-06-15 02:21:46','2006-02-15 22:14:48'), +(6719,249,1,1473,'5.99','2005-06-15 20:55:20','2006-02-15 22:14:48'), +(6720,249,2,1753,'2.99','2005-06-16 17:08:17','2006-02-15 22:14:48'), +(6721,249,2,2129,'1.99','2005-06-17 20:58:32','2006-02-15 22:14:48'), +(6722,249,2,3175,'7.99','2005-06-20 22:30:23','2006-02-15 22:14:48'), +(6723,249,1,4352,'9.99','2005-07-07 19:15:58','2006-02-15 22:14:48'), +(6724,249,1,5011,'4.99','2005-07-09 01:44:40','2006-02-15 22:14:48'), +(6725,249,1,5275,'4.99','2005-07-09 14:34:18','2006-02-15 22:14:48'), +(6726,249,2,5639,'3.99','2005-07-10 06:33:39','2006-02-15 22:14:48'), +(6727,249,2,6670,'7.99','2005-07-12 11:44:33','2006-02-15 22:14:48'), +(6728,249,1,7544,'7.99','2005-07-27 21:47:37','2006-02-15 22:14:48'), +(6729,249,1,7804,'2.99','2005-07-28 07:56:00','2006-02-15 22:14:48'), +(6730,249,2,7881,'4.99','2005-07-28 10:33:22','2006-02-15 22:14:48'), +(6731,249,1,11124,'1.99','2005-08-02 08:55:25','2006-02-15 22:14:49'), +(6732,249,1,11159,'4.99','2005-08-02 10:00:55','2006-02-15 22:14:49'), +(6733,249,2,11668,'0.99','2005-08-17 05:47:32','2006-02-15 22:14:49'), +(6734,249,2,13981,'4.99','2005-08-20 19:07:20','2006-02-15 22:14:49'), +(6735,249,2,14285,'0.99','2005-08-21 06:50:48','2006-02-15 22:14:49'), +(6736,249,1,15160,'6.99','2005-08-22 14:33:50','2006-02-15 22:14:49'), +(6737,250,1,61,'5.99','2005-05-25 09:01:57','2006-02-15 22:14:49'), +(6738,250,1,176,'3.99','2005-05-26 03:47:39','2006-02-15 22:14:49'), +(6739,250,1,637,'4.99','2005-05-28 18:14:29','2006-02-15 22:14:49'), +(6740,250,2,687,'0.99','2005-05-29 00:32:09','2006-02-15 22:14:49'), +(6741,250,1,1146,'2.99','2005-05-31 20:34:45','2006-02-15 22:14:49'), +(6742,250,1,2432,'4.99','2005-06-18 17:59:18','2006-02-15 22:14:49'), +(6743,250,1,3635,'4.99','2005-07-06 06:55:36','2006-02-15 22:14:49'), +(6744,250,1,3951,'3.99','2005-07-06 21:50:41','2006-02-15 22:14:49'), +(6745,250,1,5479,'2.99','2005-07-09 23:47:33','2006-02-15 22:14:49'), +(6746,250,1,5540,'0.99','2005-07-10 02:44:21','2006-02-15 22:14:49'), +(6747,250,1,5998,'2.99','2005-07-11 01:20:46','2006-02-15 22:14:49'), +(6748,250,1,8579,'2.99','2005-07-29 11:59:22','2006-02-15 22:14:49'), +(6749,250,2,9099,'0.99','2005-07-30 08:45:48','2006-02-15 22:14:49'), +(6750,250,2,10604,'4.99','2005-08-01 14:35:08','2006-02-15 22:14:49'), +(6751,250,1,12361,'0.99','2005-08-18 07:47:31','2006-02-15 22:14:49'), +(6752,250,1,12810,'0.99','2005-08-19 00:44:10','2006-02-15 22:14:49'), +(6753,250,2,14565,'4.99','2005-08-21 16:24:45','2006-02-15 22:14:49'), +(6754,250,1,14587,'5.99','2005-08-21 17:20:55','2006-02-15 22:14:49'), +(6755,250,2,14814,'4.99','2005-08-22 01:12:14','2006-02-15 22:14:49'), +(6756,250,2,15247,'6.99','2005-08-22 17:52:05','2006-02-15 22:14:49'), +(6757,251,1,264,'2.99','2005-05-26 16:00:49','2006-02-15 22:14:49'), +(6758,251,1,309,'1.99','2005-05-26 22:38:10','2006-02-15 22:14:49'), +(6759,251,2,393,'2.99','2005-05-27 11:18:25','2006-02-15 22:14:49'), +(6760,251,2,1069,'3.99','2005-05-31 09:32:31','2006-02-15 22:14:49'), +(6761,251,1,1091,'4.99','2005-05-31 12:11:04','2006-02-15 22:14:50'), +(6762,251,2,1155,'2.99','2005-05-31 22:17:11','2006-02-15 22:14:50'), +(6763,251,1,2238,'6.99','2005-06-18 04:22:06','2006-02-15 22:14:50'), +(6764,251,2,3422,'7.99','2005-06-21 17:24:40','2006-02-15 22:14:50'), +(6765,251,1,3464,'2.99','2005-06-21 22:08:58','2006-02-15 22:14:50'), +(6766,251,1,3799,'4.99','2005-07-06 15:00:14','2006-02-15 22:14:50'), +(6767,251,2,4026,'3.99','2005-07-07 02:15:48','2006-02-15 22:14:50'), +(6768,251,2,4848,'2.99','2005-07-08 18:30:16','2006-02-15 22:14:50'), +(6769,251,2,5012,'2.99','2005-07-09 01:45:04','2006-02-15 22:14:50'), +(6770,251,2,5979,'2.99','2005-07-11 00:17:09','2006-02-15 22:14:50'), +(6771,251,2,6413,'6.99','2005-07-11 23:26:11','2006-02-15 22:14:50'), +(6772,251,2,7338,'8.99','2005-07-27 14:13:34','2006-02-15 22:14:50'), +(6773,251,2,8443,'2.99','2005-07-29 07:33:12','2006-02-15 22:14:50'), +(6774,251,2,8982,'0.99','2005-07-30 04:31:02','2006-02-15 22:14:50'), +(6775,251,1,9196,'2.99','2005-07-30 12:30:19','2006-02-15 22:14:50'), +(6776,251,1,9892,'0.99','2005-07-31 14:06:25','2006-02-15 22:14:50'), +(6777,251,1,10575,'7.99','2005-08-01 13:41:41','2006-02-15 22:14:50'), +(6778,251,1,11733,'0.99','2005-08-17 08:31:03','2006-02-15 22:14:50'), +(6779,251,2,12047,'3.99','2005-08-17 20:48:32','2006-02-15 22:14:50'), +(6780,251,2,12666,'4.99','2005-08-18 19:11:41','2006-02-15 22:14:50'), +(6781,251,2,13121,'2.99','2005-08-19 11:51:39','2006-02-15 22:14:50'), +(6782,251,1,13243,'2.99','2005-08-19 16:33:16','2006-02-15 22:14:50'), +(6783,251,2,13260,'6.99','2005-08-19 17:09:22','2006-02-15 22:14:50'), +(6784,251,1,14292,'0.99','2005-08-21 07:06:20','2006-02-15 22:14:50'), +(6785,251,2,15647,'2.99','2005-08-23 08:23:56','2006-02-15 22:14:50'), +(6786,251,2,15870,'4.99','2005-08-23 16:23:08','2006-02-15 22:14:50'), +(6787,251,1,14107,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:50'), +(6788,252,1,707,'4.99','2005-05-29 03:18:19','2006-02-15 22:14:50'), +(6789,252,1,1095,'0.99','2005-05-31 13:15:41','2006-02-15 22:14:50'), +(6790,252,1,1395,'5.99','2005-06-15 16:21:04','2006-02-15 22:14:51'), +(6791,252,2,2716,'4.99','2005-06-19 14:40:17','2006-02-15 22:14:51'), +(6792,252,1,2968,'0.99','2005-06-20 07:41:47','2006-02-15 22:14:51'), +(6793,252,2,4372,'0.99','2005-07-07 20:09:01','2006-02-15 22:14:51'), +(6794,252,2,5554,'2.99','2005-07-10 03:03:38','2006-02-15 22:14:51'), +(6795,252,1,6357,'0.99','2005-07-11 20:58:51','2006-02-15 22:14:51'), +(6796,252,2,6369,'0.99','2005-07-11 21:23:36','2006-02-15 22:14:51'), +(6797,252,1,7024,'4.99','2005-07-27 02:36:40','2006-02-15 22:14:51'), +(6798,252,2,7121,'0.99','2005-07-27 05:58:32','2006-02-15 22:14:51'), +(6799,252,2,7168,'0.99','2005-07-27 07:51:11','2006-02-15 22:14:51'), +(6800,252,1,7670,'0.99','2005-07-28 02:44:25','2006-02-15 22:14:51'), +(6801,252,1,8636,'5.99','2005-07-29 14:24:13','2006-02-15 22:14:51'), +(6802,252,1,8899,'0.99','2005-07-30 01:05:30','2006-02-15 22:14:51'), +(6803,252,2,10314,'0.99','2005-08-01 04:31:18','2006-02-15 22:14:51'), +(6804,252,2,10834,'2.99','2005-08-01 23:28:00','2006-02-15 22:14:51'), +(6805,252,2,11764,'0.99','2005-08-17 09:51:54','2006-02-15 22:14:51'), +(6806,252,1,13385,'4.99','2005-08-19 21:39:35','2006-02-15 22:14:51'), +(6807,252,2,13989,'5.99','2005-08-20 19:27:50','2006-02-15 22:14:51'), +(6808,252,1,14774,'4.99','2005-08-21 23:52:32','2006-02-15 22:14:51'), +(6809,252,2,13756,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:51'), +(6810,253,1,566,'6.99','2005-05-28 09:51:39','2006-02-15 22:14:51'), +(6811,253,1,648,'0.99','2005-05-28 19:25:54','2006-02-15 22:14:51'), +(6812,253,1,986,'2.99','2005-05-30 22:22:52','2006-02-15 22:14:51'), +(6813,253,2,1378,'1.99','2005-06-15 15:03:15','2006-02-15 22:14:51'), +(6814,253,2,1606,'6.99','2005-06-16 06:18:31','2006-02-15 22:14:51'), +(6815,253,2,2081,'5.99','2005-06-17 17:05:02','2006-02-15 22:14:51'), +(6816,253,1,2142,'4.99','2005-06-17 21:55:43','2006-02-15 22:14:51'), +(6817,253,1,2454,'4.99','2005-06-18 19:32:51','2006-02-15 22:14:51'), +(6818,253,2,2636,'4.99','2005-06-19 09:13:06','2006-02-15 22:14:51'), +(6819,253,1,3658,'7.99','2005-07-06 08:01:08','2006-02-15 22:14:52'), +(6820,253,1,5505,'2.99','2005-07-10 00:38:48','2006-02-15 22:14:52'), +(6821,253,1,5602,'4.99','2005-07-10 05:02:22','2006-02-15 22:14:52'), +(6822,253,2,7689,'2.99','2005-07-28 03:21:24','2006-02-15 22:14:52'), +(6823,253,2,7851,'0.99','2005-07-28 09:31:58','2006-02-15 22:14:52'), +(6824,253,2,7887,'2.99','2005-07-28 10:40:12','2006-02-15 22:14:52'), +(6825,253,2,8752,'2.99','2005-07-29 19:15:07','2006-02-15 22:14:52'), +(6826,253,2,9606,'0.99','2005-07-31 03:50:46','2006-02-15 22:14:52'), +(6827,253,2,9618,'6.99','2005-07-31 04:16:14','2006-02-15 22:14:52'), +(6828,253,2,10404,'4.99','2005-08-01 07:31:25','2006-02-15 22:14:52'), +(6829,253,1,10660,'2.99','2005-08-01 16:48:01','2006-02-15 22:14:52'), +(6830,253,2,10881,'6.99','2005-08-02 00:38:14','2006-02-15 22:14:52'), +(6831,253,1,12572,'0.99','2005-08-18 15:32:54','2006-02-15 22:14:52'), +(6832,253,2,12827,'5.99','2005-08-19 01:27:23','2006-02-15 22:14:52'), +(6833,253,1,13126,'5.99','2005-08-19 12:00:28','2006-02-15 22:14:52'), +(6834,253,2,14086,'3.99','2005-08-20 23:47:54','2006-02-15 22:14:52'), +(6835,253,2,14283,'4.99','2005-08-21 06:44:14','2006-02-15 22:14:52'), +(6836,253,1,14640,'7.99','2005-08-21 19:03:19','2006-02-15 22:14:52'), +(6837,253,2,14655,'4.99','2005-08-21 19:37:10','2006-02-15 22:14:52'), +(6838,253,2,15221,'2.99','2005-08-22 17:12:29','2006-02-15 22:14:52'), +(6839,254,1,183,'2.99','2005-05-26 05:01:18','2006-02-15 22:14:52'), +(6840,254,1,1108,'5.99','2005-05-31 15:05:12','2006-02-15 22:14:52'), +(6841,254,1,1285,'2.99','2005-06-15 08:33:06','2006-02-15 22:14:52'), +(6842,254,2,1390,'0.99','2005-06-15 16:06:29','2006-02-15 22:14:52'), +(6843,254,1,2082,'2.99','2005-06-17 17:13:32','2006-02-15 22:14:52'), +(6844,254,1,2138,'2.99','2005-06-17 21:28:14','2006-02-15 22:14:52'), +(6845,254,2,2687,'3.99','2005-06-19 12:46:52','2006-02-15 22:14:52'), +(6846,254,1,3882,'4.99','2005-07-06 18:38:21','2006-02-15 22:14:52'), +(6847,254,2,5042,'2.99','2005-07-09 03:20:30','2006-02-15 22:14:52'), +(6848,254,1,5072,'3.99','2005-07-09 05:01:58','2006-02-15 22:14:52'), +(6849,254,2,5080,'2.99','2005-07-09 05:23:55','2006-02-15 22:14:53'), +(6850,254,1,5537,'0.99','2005-07-10 02:35:41','2006-02-15 22:14:53'), +(6851,254,1,5550,'5.99','2005-07-10 02:58:35','2006-02-15 22:14:53'), +(6852,254,1,5826,'7.99','2005-07-10 16:21:02','2006-02-15 22:14:53'), +(6853,254,2,5930,'4.99','2005-07-10 21:59:32','2006-02-15 22:14:53'), +(6854,254,2,7011,'0.99','2005-07-27 01:58:34','2006-02-15 22:14:53'), +(6855,254,1,7413,'4.99','2005-07-27 16:45:40','2006-02-15 22:14:53'), +(6856,254,2,8216,'7.99','2005-07-28 23:43:59','2006-02-15 22:14:53'), +(6857,254,2,8581,'4.99','2005-07-29 12:02:06','2006-02-15 22:14:53'), +(6858,254,2,9494,'1.99','2005-07-30 23:52:46','2006-02-15 22:14:53'), +(6859,254,1,10522,'4.99','2005-08-01 11:48:51','2006-02-15 22:14:53'), +(6860,254,1,11190,'0.99','2005-08-02 11:21:34','2006-02-15 22:14:53'), +(6861,254,1,11665,'6.99','2005-08-17 05:36:57','2006-02-15 22:14:53'), +(6862,254,2,12148,'0.99','2005-08-18 00:13:15','2006-02-15 22:14:53'), +(6863,254,1,12206,'0.99','2005-08-18 02:22:20','2006-02-15 22:14:53'), +(6864,254,1,12247,'2.99','2005-08-18 03:51:51','2006-02-15 22:14:53'), +(6865,254,1,12874,'0.99','2005-08-19 03:07:57','2006-02-15 22:14:53'), +(6866,254,2,13001,'4.99','2005-08-19 07:36:44','2006-02-15 22:14:53'), +(6867,254,1,13045,'4.99','2005-08-19 09:17:35','2006-02-15 22:14:53'), +(6868,254,2,13130,'2.99','2005-08-19 12:06:42','2006-02-15 22:14:53'), +(6869,254,2,14497,'4.99','2005-08-21 14:09:47','2006-02-15 22:14:53'), +(6870,254,1,15774,'0.99','2005-08-23 13:25:08','2006-02-15 22:14:53'), +(6871,255,1,1235,'2.99','2005-06-15 04:31:28','2006-02-15 22:14:53'), +(6872,255,1,1420,'6.99','2005-06-15 17:56:14','2006-02-15 22:14:53'), +(6873,255,2,1681,'2.99','2005-06-16 11:38:17','2006-02-15 22:14:53'), +(6874,255,2,3442,'2.99','2005-06-21 20:06:51','2006-02-15 22:14:53'), +(6875,255,1,4547,'0.99','2005-07-08 04:20:19','2006-02-15 22:14:53'), +(6876,255,1,5706,'1.99','2005-07-10 10:21:46','2006-02-15 22:14:53'), +(6877,255,1,5943,'0.99','2005-07-10 22:48:13','2006-02-15 22:14:53'), +(6878,255,2,7475,'8.99','2005-07-27 19:07:43','2006-02-15 22:14:54'), +(6879,255,1,7646,'2.99','2005-07-28 01:31:45','2006-02-15 22:14:54'), +(6880,255,1,8562,'0.99','2005-07-29 11:32:13','2006-02-15 22:14:54'), +(6881,255,1,9061,'6.99','2005-07-30 07:21:52','2006-02-15 22:14:54'), +(6882,255,2,11979,'4.99','2005-08-17 18:07:13','2006-02-15 22:14:54'), +(6883,255,2,12176,'7.99','2005-08-18 01:10:33','2006-02-15 22:14:54'), +(6884,255,2,13154,'2.99','2005-08-19 13:09:54','2006-02-15 22:14:54'), +(6885,255,1,13268,'0.99','2005-08-19 17:33:50','2006-02-15 22:14:54'), +(6886,255,2,13683,'0.99','2005-08-20 08:54:55','2006-02-15 22:14:54'), +(6887,255,1,13758,'8.99','2005-08-20 11:21:26','2006-02-15 22:14:54'), +(6888,255,2,14600,'3.99','2005-08-21 17:45:21','2006-02-15 22:14:54'), +(6889,256,1,51,'4.99','2005-05-25 06:49:10','2006-02-15 22:14:54'), +(6890,256,1,232,'0.99','2005-05-26 11:38:05','2006-02-15 22:14:54'), +(6891,256,2,738,'4.99','2005-05-29 08:20:08','2006-02-15 22:14:54'), +(6892,256,1,935,'2.99','2005-05-30 13:29:36','2006-02-15 22:14:54'), +(6893,256,1,1116,'0.99','2005-05-31 16:10:46','2006-02-15 22:14:54'), +(6894,256,1,1555,'2.99','2005-06-16 02:17:07','2006-02-15 22:14:54'), +(6895,256,2,1965,'0.99','2005-06-17 09:17:39','2006-02-15 22:14:54'), +(6896,256,2,1973,'4.99','2005-06-17 09:26:15','2006-02-15 22:14:54'), +(6897,256,2,2230,'4.99','2005-06-18 03:50:49','2006-02-15 22:14:54'), +(6898,256,1,2380,'6.99','2005-06-18 15:00:04','2006-02-15 22:14:54'), +(6899,256,2,2561,'4.99','2005-06-19 03:14:52','2006-02-15 22:14:54'), +(6900,256,1,2839,'4.99','2005-06-19 22:07:24','2006-02-15 22:14:54'), +(6901,256,1,4130,'0.99','2005-07-07 07:51:53','2006-02-15 22:14:54'), +(6902,256,2,4182,'0.99','2005-07-07 10:28:00','2006-02-15 22:14:54'), +(6903,256,1,5179,'2.99','2005-07-09 10:00:44','2006-02-15 22:14:54'), +(6904,256,1,6298,'0.99','2005-07-11 17:42:33','2006-02-15 22:14:54'), +(6905,256,1,7661,'3.99','2005-07-28 02:10:27','2006-02-15 22:14:54'), +(6906,256,2,9424,'2.99','2005-07-30 21:10:56','2006-02-15 22:14:54'), +(6907,256,2,10759,'4.99','2005-08-01 20:22:51','2006-02-15 22:14:55'), +(6908,256,2,11011,'2.99','2005-08-02 05:07:07','2006-02-15 22:14:55'), +(6909,256,2,11628,'8.99','2005-08-17 04:27:18','2006-02-15 22:14:55'), +(6910,256,2,13457,'0.99','2005-08-20 00:33:22','2006-02-15 22:14:55'), +(6911,256,1,13651,'0.99','2005-08-20 07:50:08','2006-02-15 22:14:55'), +(6912,256,1,14003,'6.99','2005-08-20 20:16:06','2006-02-15 22:14:55'), +(6913,256,2,14036,'4.99','2005-08-20 21:35:27','2006-02-15 22:14:55'), +(6914,256,2,14445,'2.99','2005-08-21 12:07:42','2006-02-15 22:14:55'), +(6915,256,2,14458,'3.99','2005-08-21 12:47:53','2006-02-15 22:14:55'), +(6916,256,2,15609,'2.99','2005-08-23 06:56:04','2006-02-15 22:14:55'), +(6917,256,2,15861,'4.99','2005-08-23 16:15:45','2006-02-15 22:14:55'), +(6918,256,1,15864,'7.99','2005-08-23 16:18:12','2006-02-15 22:14:55'), +(6919,257,2,139,'2.99','2005-05-25 23:00:21','2006-02-15 22:14:55'), +(6920,257,2,244,'2.99','2005-05-26 13:40:40','2006-02-15 22:14:55'), +(6921,257,2,705,'2.99','2005-05-29 02:48:52','2006-02-15 22:14:55'), +(6922,257,1,2557,'0.99','2005-06-19 03:08:51','2006-02-15 22:14:55'), +(6923,257,2,3083,'4.99','2005-06-20 15:33:47','2006-02-15 22:14:55'), +(6924,257,2,4462,'6.99','2005-07-08 00:02:49','2006-02-15 22:14:55'), +(6925,257,2,4574,'4.99','2005-07-08 05:39:42','2006-02-15 22:14:55'), +(6926,257,1,5495,'6.99','2005-07-10 00:16:54','2006-02-15 22:14:55'), +(6927,257,1,5858,'4.99','2005-07-10 18:00:07','2006-02-15 22:14:55'), +(6928,257,1,6422,'5.99','2005-07-11 23:46:19','2006-02-15 22:14:55'), +(6929,257,2,6711,'5.99','2005-07-12 13:23:40','2006-02-15 22:14:55'), +(6930,257,2,7007,'4.99','2005-07-27 01:43:39','2006-02-15 22:14:55'), +(6931,257,1,7176,'2.99','2005-07-27 08:04:28','2006-02-15 22:14:55'), +(6932,257,1,7496,'1.99','2005-07-27 20:04:05','2006-02-15 22:14:55'), +(6933,257,2,7510,'2.99','2005-07-27 20:37:57','2006-02-15 22:14:55'), +(6934,257,2,7518,'5.99','2005-07-27 21:01:16','2006-02-15 22:14:55'), +(6935,257,2,8156,'3.99','2005-07-28 20:59:04','2006-02-15 22:14:56'), +(6936,257,2,8252,'2.99','2005-07-29 00:54:17','2006-02-15 22:14:56'), +(6937,257,1,8344,'4.99','2005-07-29 04:45:25','2006-02-15 22:14:56'), +(6938,257,1,8640,'4.99','2005-07-29 14:34:17','2006-02-15 22:14:56'), +(6939,257,2,8946,'6.99','2005-07-30 03:14:53','2006-02-15 22:14:56'), +(6940,257,1,9800,'4.99','2005-07-31 11:00:58','2006-02-15 22:14:56'), +(6941,257,2,10142,'4.99','2005-07-31 22:10:54','2006-02-15 22:14:56'), +(6942,257,1,11230,'4.99','2005-08-02 12:59:08','2006-02-15 22:14:56'), +(6943,257,1,11394,'0.99','2005-08-02 18:44:45','2006-02-15 22:14:56'), +(6944,257,2,11545,'6.99','2005-08-17 00:56:06','2006-02-15 22:14:56'), +(6945,257,2,11860,'1.99','2005-08-17 13:52:26','2006-02-15 22:14:56'), +(6946,257,2,12841,'2.99','2005-08-19 01:55:55','2006-02-15 22:14:56'), +(6947,257,1,12904,'5.99','2005-08-19 04:10:50','2006-02-15 22:14:56'), +(6948,257,2,13203,'7.99','2005-08-19 15:00:58','2006-02-15 22:14:56'), +(6949,257,2,13218,'0.99','2005-08-19 15:39:39','2006-02-15 22:14:56'), +(6950,257,1,13389,'2.99','2005-08-19 21:52:51','2006-02-15 22:14:56'), +(6951,257,2,13846,'5.99','2005-08-20 14:32:31','2006-02-15 22:14:56'), +(6952,257,2,14115,'0.99','2005-08-21 01:10:29','2006-02-15 22:14:56'), +(6953,257,1,15025,'0.99','2005-08-22 08:57:24','2006-02-15 22:14:56'), +(6954,257,1,15967,'2.99','2005-08-23 19:50:06','2006-02-15 22:14:56'), +(6955,257,2,15968,'0.99','2005-08-23 19:51:29','2006-02-15 22:14:56'), +(6956,258,1,1743,'2.99','2005-06-16 16:38:10','2006-02-15 22:14:56'), +(6957,258,2,2678,'0.99','2005-06-19 12:12:23','2006-02-15 22:14:56'), +(6958,258,2,2931,'8.99','2005-06-20 04:50:45','2006-02-15 22:14:56'), +(6959,258,2,4408,'2.99','2005-07-07 21:41:06','2006-02-15 22:14:56'), +(6960,258,1,4677,'5.99','2005-07-08 10:30:36','2006-02-15 22:14:56'), +(6961,258,2,4897,'0.99','2005-07-08 20:25:11','2006-02-15 22:14:56'), +(6962,258,2,5312,'5.99','2005-07-09 16:03:09','2006-02-15 22:14:56'), +(6963,258,1,5674,'0.99','2005-07-10 08:26:26','2006-02-15 22:14:57'), +(6964,258,1,5935,'9.99','2005-07-10 22:11:04','2006-02-15 22:14:57'), +(6965,258,2,6012,'4.99','2005-07-11 02:00:12','2006-02-15 22:14:57'), +(6966,258,1,7814,'2.99','2005-07-28 08:09:48','2006-02-15 22:14:57'), +(6967,258,1,8675,'4.99','2005-07-29 15:56:18','2006-02-15 22:14:57'), +(6968,258,2,9069,'4.99','2005-07-30 07:39:59','2006-02-15 22:14:57'), +(6969,258,2,10293,'1.99','2005-08-01 03:44:26','2006-02-15 22:14:57'), +(6970,258,2,10315,'4.99','2005-08-01 04:34:45','2006-02-15 22:14:57'), +(6971,258,1,10325,'5.99','2005-08-01 04:52:12','2006-02-15 22:14:57'), +(6972,258,2,10332,'6.99','2005-08-01 04:57:32','2006-02-15 22:14:57'), +(6973,258,1,10393,'0.99','2005-08-01 06:52:50','2006-02-15 22:14:57'), +(6974,258,1,12246,'5.99','2005-08-18 03:48:41','2006-02-15 22:14:57'), +(6975,258,2,12296,'3.99','2005-08-18 05:16:28','2006-02-15 22:14:57'), +(6976,258,1,13491,'4.99','2005-08-20 01:30:56','2006-02-15 22:14:57'), +(6977,258,1,13695,'6.99','2005-08-20 09:13:25','2006-02-15 22:14:57'), +(6978,258,2,13897,'2.99','2005-08-20 16:02:28','2006-02-15 22:14:57'), +(6979,258,2,14901,'6.99','2005-08-22 04:31:37','2006-02-15 22:14:57'), +(6980,259,2,722,'6.99','2005-05-29 05:30:31','2006-02-15 22:14:57'), +(6981,259,2,901,'2.99','2005-05-30 09:40:40','2006-02-15 22:14:57'), +(6982,259,1,1147,'5.99','2005-05-31 20:37:52','2006-02-15 22:14:57'), +(6983,259,1,1641,'7.99','2005-06-16 08:46:26','2006-02-15 22:14:57'), +(6984,259,2,1723,'7.99','2005-06-16 15:14:18','2006-02-15 22:14:57'), +(6985,259,2,1813,'2.99','2005-06-16 21:11:00','2006-02-15 22:14:57'), +(6986,259,2,2375,'5.99','2005-06-18 14:47:29','2006-02-15 22:14:57'), +(6987,259,2,4199,'5.99','2005-07-07 11:13:07','2006-02-15 22:14:57'), +(6988,259,2,4489,'4.99','2005-07-08 01:23:58','2006-02-15 22:14:57'), +(6989,259,1,6074,'0.99','2005-07-11 04:59:56','2006-02-15 22:14:57'), +(6990,259,2,6539,'3.99','2005-07-12 04:50:49','2006-02-15 22:14:57'), +(6991,259,2,7188,'2.99','2005-07-27 08:32:08','2006-02-15 22:14:57'), +(6992,259,2,7774,'7.99','2005-07-28 07:03:25','2006-02-15 22:14:58'), +(6993,259,1,7817,'4.99','2005-07-28 08:20:55','2006-02-15 22:14:58'), +(6994,259,2,9205,'6.99','2005-07-30 12:46:40','2006-02-15 22:14:58'), +(6995,259,1,9282,'6.99','2005-07-30 15:17:31','2006-02-15 22:14:58'), +(6996,259,1,9444,'7.99','2005-07-30 21:48:44','2006-02-15 22:14:58'), +(6997,259,1,10510,'3.99','2005-08-01 11:28:30','2006-02-15 22:14:58'), +(6998,259,1,10781,'2.99','2005-08-01 21:22:41','2006-02-15 22:14:58'), +(6999,259,1,11184,'3.99','2005-08-02 11:01:26','2006-02-15 22:14:58'), +(7000,259,2,12680,'6.99','2005-08-18 19:43:46','2006-02-15 22:14:58'), +(7001,259,1,13109,'4.99','2005-08-19 11:23:20','2006-02-15 22:14:58'), +(7002,259,2,13112,'2.99','2005-08-19 11:27:10','2006-02-15 22:14:58'), +(7003,259,2,13366,'4.99','2005-08-19 21:14:45','2006-02-15 22:14:58'), +(7004,259,1,13598,'5.99','2005-08-20 05:59:17','2006-02-15 22:14:58'), +(7005,259,2,13649,'4.99','2005-08-20 07:48:38','2006-02-15 22:14:58'), +(7006,259,2,14067,'6.99','2005-08-20 22:49:23','2006-02-15 22:14:58'), +(7007,259,2,14170,'4.99','2005-08-21 03:00:39','2006-02-15 22:14:58'), +(7008,259,2,14966,'2.99','2005-08-22 06:45:57','2006-02-15 22:14:58'), +(7009,259,1,15425,'10.99','2005-08-23 00:05:57','2006-02-15 22:14:58'), +(7010,259,1,15473,'2.99','2005-08-23 01:39:10','2006-02-15 22:14:58'), +(7011,259,2,NULL,'1.99','2005-08-23 06:13:16','2006-02-15 22:14:58'), +(7012,259,1,15689,'2.99','2005-08-23 09:52:55','2006-02-15 22:14:58'), +(7013,260,1,1101,'8.99','2005-05-31 14:13:59','2006-02-15 22:14:58'), +(7014,260,1,1626,'3.99','2005-06-16 07:49:47','2006-02-15 22:14:58'), +(7015,260,2,2001,'2.99','2005-06-17 11:35:09','2006-02-15 22:14:58'), +(7016,260,2,2040,'2.99','2005-06-17 14:18:37','2006-02-15 22:14:58'), +(7017,260,1,2091,'10.99','2005-06-17 18:09:04','2006-02-15 22:14:58'), +(7018,260,1,2178,'0.99','2005-06-18 00:38:35','2006-02-15 22:14:58'), +(7019,260,1,2823,'7.99','2005-06-19 20:30:21','2006-02-15 22:14:58'), +(7020,260,2,2958,'3.99','2005-06-20 06:56:20','2006-02-15 22:14:58'), +(7021,260,1,3193,'0.99','2005-06-20 23:52:30','2006-02-15 22:14:59'), +(7022,260,2,4054,'0.99','2005-07-07 03:42:07','2006-02-15 22:14:59'), +(7023,260,2,4741,'6.99','2005-07-08 13:31:23','2006-02-15 22:14:59'), +(7024,260,1,4870,'2.99','2005-07-08 19:14:45','2006-02-15 22:14:59'), +(7025,260,2,6328,'2.99','2005-07-11 19:09:33','2006-02-15 22:14:59'), +(7026,260,2,7072,'0.99','2005-07-27 04:02:33','2006-02-15 22:14:59'), +(7027,260,1,7268,'1.99','2005-07-27 11:23:09','2006-02-15 22:14:59'), +(7028,260,1,7885,'7.99','2005-07-28 10:37:41','2006-02-15 22:14:59'), +(7029,260,1,8475,'1.99','2005-07-29 08:37:41','2006-02-15 22:14:59'), +(7030,260,1,8484,'2.99','2005-07-29 08:51:59','2006-02-15 22:14:59'), +(7031,260,1,8717,'0.99','2005-07-29 17:40:45','2006-02-15 22:14:59'), +(7032,260,1,8933,'0.99','2005-07-30 02:36:06','2006-02-15 22:14:59'), +(7033,260,2,9176,'4.99','2005-07-30 11:50:54','2006-02-15 22:14:59'), +(7034,260,2,10970,'8.99','2005-08-02 04:06:46','2006-02-15 22:14:59'), +(7035,260,1,12852,'0.99','2005-08-19 02:12:40','2006-02-15 22:14:59'), +(7036,260,2,13440,'2.99','2005-08-19 23:42:52','2006-02-15 22:14:59'), +(7037,260,1,13685,'3.99','2005-08-20 08:57:11','2006-02-15 22:14:59'), +(7038,260,1,13966,'2.99','2005-08-20 18:28:28','2006-02-15 22:14:59'), +(7039,260,2,13978,'0.99','2005-08-20 19:03:25','2006-02-15 22:14:59'), +(7040,260,2,14035,'2.99','2005-08-20 21:31:58','2006-02-15 22:14:59'), +(7041,260,2,14441,'2.99','2005-08-21 11:59:38','2006-02-15 22:14:59'), +(7042,260,1,14579,'7.99','2005-08-21 16:54:47','2006-02-15 22:14:59'), +(7043,260,1,14610,'6.99','2005-08-21 17:59:09','2006-02-15 22:14:59'), +(7044,261,1,12,'4.99','2005-05-25 00:19:27','2006-02-15 22:14:59'), +(7045,261,2,465,'3.99','2005-05-27 20:44:36','2006-02-15 22:14:59'), +(7046,261,2,542,'6.99','2005-05-28 06:42:13','2006-02-15 22:14:59'), +(7047,261,1,792,'0.99','2005-05-29 16:32:10','2006-02-15 22:14:59'), +(7048,261,1,1760,'2.99','2005-06-16 17:48:37','2006-02-15 22:14:59'), +(7049,261,1,1877,'5.99','2005-06-17 02:54:16','2006-02-15 22:15:00'), +(7050,261,2,1988,'8.99','2005-06-17 10:42:34','2006-02-15 22:15:00'), +(7051,261,2,2072,'3.99','2005-06-17 16:33:32','2006-02-15 22:15:00'), +(7052,261,2,2392,'0.99','2005-06-18 15:34:18','2006-02-15 22:15:00'), +(7053,261,1,3363,'0.99','2005-06-21 12:25:07','2006-02-15 22:15:00'), +(7054,261,1,5122,'3.99','2005-07-09 07:19:35','2006-02-15 22:15:00'), +(7055,261,1,5449,'5.99','2005-07-09 22:12:01','2006-02-15 22:15:00'), +(7056,261,2,6515,'2.99','2005-07-12 03:50:32','2006-02-15 22:15:00'), +(7057,261,1,6743,'0.99','2005-07-12 14:29:25','2006-02-15 22:15:00'), +(7058,261,2,9552,'4.99','2005-07-31 02:05:32','2006-02-15 22:15:00'), +(7059,261,1,9842,'4.99','2005-07-31 12:24:58','2006-02-15 22:15:00'), +(7060,261,1,9869,'4.99','2005-07-31 13:21:54','2006-02-15 22:15:00'), +(7061,261,2,10246,'1.99','2005-08-01 02:29:50','2006-02-15 22:15:00'), +(7062,261,1,11834,'1.99','2005-08-17 13:00:40','2006-02-15 22:15:00'), +(7063,261,2,11928,'2.99','2005-08-17 16:28:24','2006-02-15 22:15:00'), +(7064,261,1,12327,'6.99','2005-08-18 06:43:22','2006-02-15 22:15:00'), +(7065,261,2,13245,'4.99','2005-08-19 16:43:41','2006-02-15 22:15:00'), +(7066,261,2,13506,'5.99','2005-08-20 02:07:06','2006-02-15 22:15:00'), +(7067,261,1,13669,'2.99','2005-08-20 08:26:32','2006-02-15 22:15:00'), +(7068,261,1,13849,'4.99','2005-08-20 14:42:34','2006-02-15 22:15:00'), +(7069,261,2,15397,'4.99','2005-08-22 23:08:46','2006-02-15 22:15:00'), +(7070,262,2,984,'4.99','2005-05-30 22:17:17','2006-02-15 22:15:00'), +(7071,262,1,1563,'2.99','2005-06-16 02:46:28','2006-02-15 22:15:00'), +(7072,262,1,2771,'6.99','2005-06-19 17:54:48','2006-02-15 22:15:00'), +(7073,262,2,2850,'8.99','2005-06-19 23:06:28','2006-02-15 22:15:00'), +(7074,262,1,2915,'1.99','2005-06-20 03:57:17','2006-02-15 22:15:00'), +(7075,262,1,3521,'1.99','2005-07-06 01:00:11','2006-02-15 22:15:00'), +(7076,262,1,3699,'3.99','2005-07-06 10:11:25','2006-02-15 22:15:01'), +(7077,262,1,4501,'0.99','2005-07-08 02:12:00','2006-02-15 22:15:01'), +(7078,262,2,5503,'0.99','2005-07-10 00:35:37','2006-02-15 22:15:01'), +(7079,262,1,6291,'0.99','2005-07-11 17:16:40','2006-02-15 22:15:01'), +(7080,262,2,6547,'7.99','2005-07-12 04:57:46','2006-02-15 22:15:01'), +(7081,262,1,6724,'3.99','2005-07-12 13:45:15','2006-02-15 22:15:01'), +(7082,262,2,6762,'7.99','2005-07-12 15:25:33','2006-02-15 22:15:01'), +(7083,262,1,6805,'6.99','2005-07-12 17:23:01','2006-02-15 22:15:01'), +(7084,262,1,6986,'4.99','2005-07-27 00:59:05','2006-02-15 22:15:01'), +(7085,262,1,9105,'6.99','2005-07-30 08:50:25','2006-02-15 22:15:01'), +(7086,262,2,10421,'0.99','2005-08-01 08:14:10','2006-02-15 22:15:01'), +(7087,262,2,10770,'0.99','2005-08-01 20:45:39','2006-02-15 22:15:01'), +(7088,262,2,13466,'2.99','2005-08-20 00:55:16','2006-02-15 22:15:01'), +(7089,262,1,13808,'5.99','2005-08-20 12:55:43','2006-02-15 22:15:01'), +(7090,262,1,14180,'4.99','2005-08-21 03:16:15','2006-02-15 22:15:01'), +(7091,262,2,14465,'3.99','2005-08-21 12:54:22','2006-02-15 22:15:01'), +(7092,262,2,14834,'6.99','2005-08-22 01:45:58','2006-02-15 22:15:01'), +(7093,262,2,15270,'3.99','2005-08-22 18:48:42','2006-02-15 22:15:01'), +(7094,262,1,15456,'0.99','2005-08-23 01:07:01','2006-02-15 22:15:01'), +(7095,262,1,15640,'4.99','2005-08-23 08:04:40','2006-02-15 22:15:01'), +(7096,262,2,15771,'4.99','2005-08-23 13:18:46','2006-02-15 22:15:01'), +(7097,262,1,15918,'3.99','2005-08-23 17:57:35','2006-02-15 22:15:01'), +(7098,263,1,97,'4.99','2005-05-25 16:34:24','2006-02-15 22:15:01'), +(7099,263,1,266,'0.99','2005-05-26 16:08:05','2006-02-15 22:15:01'), +(7100,263,2,2126,'8.99','2005-06-17 20:54:36','2006-02-15 22:15:01'), +(7101,263,2,3257,'1.99','2005-06-21 03:47:19','2006-02-15 22:15:01'), +(7102,263,1,3578,'4.99','2005-07-06 03:47:05','2006-02-15 22:15:01'), +(7103,263,2,3773,'2.99','2005-07-06 13:23:34','2006-02-15 22:15:02'), +(7104,263,2,4637,'0.99','2005-07-08 08:49:54','2006-02-15 22:15:02'), +(7105,263,2,4682,'2.99','2005-07-08 10:38:27','2006-02-15 22:15:02'), +(7106,263,2,5125,'2.99','2005-07-09 07:25:28','2006-02-15 22:15:02'), +(7107,263,2,5254,'1.99','2005-07-09 13:50:11','2006-02-15 22:15:02'), +(7108,263,2,6376,'4.99','2005-07-11 21:40:23','2006-02-15 22:15:02'), +(7109,263,1,6483,'2.99','2005-07-12 01:59:20','2006-02-15 22:15:02'), +(7110,263,1,6808,'1.99','2005-07-12 17:36:42','2006-02-15 22:15:02'), +(7111,263,2,7291,'4.99','2005-07-27 12:30:47','2006-02-15 22:15:02'), +(7112,263,1,7425,'4.99','2005-07-27 17:18:35','2006-02-15 22:15:02'), +(7113,263,1,7706,'4.99','2005-07-28 04:03:17','2006-02-15 22:15:02'), +(7114,263,2,7833,'1.99','2005-07-28 08:46:14','2006-02-15 22:15:02'), +(7115,263,1,10476,'6.99','2005-08-01 10:03:20','2006-02-15 22:15:02'), +(7116,263,1,10775,'2.99','2005-08-01 20:59:52','2006-02-15 22:15:02'), +(7117,263,1,11339,'2.99','2005-08-02 17:02:06','2006-02-15 22:15:02'), +(7118,263,1,11822,'0.99','2005-08-17 12:32:39','2006-02-15 22:15:02'), +(7119,263,2,12057,'9.99','2005-08-17 21:04:35','2006-02-15 22:15:02'), +(7120,263,2,12432,'5.99','2005-08-18 10:35:13','2006-02-15 22:15:02'), +(7121,263,2,12919,'6.99','2005-08-19 04:32:15','2006-02-15 22:15:02'), +(7122,263,1,14335,'3.99','2005-08-21 08:33:07','2006-02-15 22:15:02'), +(7123,263,2,14448,'6.99','2005-08-21 12:13:10','2006-02-15 22:15:02'), +(7124,263,1,15322,'4.99','2005-08-22 20:20:30','2006-02-15 22:15:02'), +(7125,263,2,15922,'7.99','2005-08-23 18:07:31','2006-02-15 22:15:02'), +(7126,263,1,15293,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:02'), +(7127,264,2,1165,'3.99','2005-06-14 23:16:27','2006-02-15 22:15:02'), +(7128,264,1,1206,'4.99','2005-06-15 02:27:07','2006-02-15 22:15:02'), +(7129,264,1,3028,'0.99','2005-06-20 11:50:52','2006-02-15 22:15:02'), +(7130,264,1,3403,'3.99','2005-06-21 15:55:06','2006-02-15 22:15:02'), +(7131,264,1,3618,'6.99','2005-07-06 05:58:45','2006-02-15 22:15:03'), +(7132,264,1,4328,'4.99','2005-07-07 18:03:17','2006-02-15 22:15:03'), +(7133,264,1,4539,'0.99','2005-07-08 04:01:02','2006-02-15 22:15:03'), +(7134,264,1,6340,'8.99','2005-07-11 19:46:05','2006-02-15 22:15:03'), +(7135,264,2,6391,'0.99','2005-07-11 22:23:09','2006-02-15 22:15:03'), +(7136,264,1,6395,'2.99','2005-07-11 22:29:29','2006-02-15 22:15:03'), +(7137,264,1,6543,'0.99','2005-07-12 04:54:32','2006-02-15 22:15:03'), +(7138,264,1,7006,'8.99','2005-07-27 01:42:20','2006-02-15 22:15:03'), +(7139,264,2,9380,'2.99','2005-07-30 19:17:31','2006-02-15 22:15:03'), +(7140,264,2,9515,'0.99','2005-07-31 00:35:05','2006-02-15 22:15:03'), +(7141,264,1,9861,'5.99','2005-07-31 13:04:14','2006-02-15 22:15:03'), +(7142,264,1,9932,'5.99','2005-07-31 15:19:48','2006-02-15 22:15:03'), +(7143,264,2,10792,'2.99','2005-08-01 21:44:24','2006-02-15 22:15:03'), +(7144,264,1,11527,'3.99','2005-08-17 00:25:06','2006-02-15 22:15:03'), +(7145,264,2,11533,'0.99','2005-08-17 00:34:53','2006-02-15 22:15:03'), +(7146,264,1,11539,'2.99','2005-08-17 00:45:41','2006-02-15 22:15:03'), +(7147,264,1,12518,'4.99','2005-08-18 13:41:32','2006-02-15 22:15:03'), +(7148,264,2,13590,'2.99','2005-08-20 05:48:59','2006-02-15 22:15:03'), +(7149,264,1,13664,'5.99','2005-08-20 08:18:36','2006-02-15 22:15:03'), +(7150,264,1,15595,'4.99','2005-08-23 06:19:12','2006-02-15 22:15:03'), +(7151,264,2,14243,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:03'), +(7152,265,2,74,'0.99','2005-05-25 11:09:48','2006-02-15 22:15:03'), +(7153,265,2,2027,'7.99','2005-06-17 13:06:56','2006-02-15 22:15:03'), +(7154,265,2,2562,'4.99','2005-06-19 03:15:05','2006-02-15 22:15:03'), +(7155,265,1,2598,'2.99','2005-06-19 05:59:57','2006-02-15 22:15:03'), +(7156,265,1,3823,'2.99','2005-07-06 15:41:27','2006-02-15 22:15:03'), +(7157,265,1,4610,'0.99','2005-07-08 07:28:05','2006-02-15 22:15:03'), +(7158,265,1,4797,'2.99','2005-07-08 16:39:05','2006-02-15 22:15:03'), +(7159,265,2,5029,'7.99','2005-07-09 02:35:32','2006-02-15 22:15:03'), +(7160,265,1,5417,'4.99','2005-07-09 20:34:09','2006-02-15 22:15:04'), +(7161,265,1,5710,'9.99','2005-07-10 10:32:52','2006-02-15 22:15:04'), +(7162,265,1,6068,'4.99','2005-07-11 04:41:09','2006-02-15 22:15:04'), +(7163,265,2,6371,'4.99','2005-07-11 21:31:51','2006-02-15 22:15:04'), +(7164,265,2,6553,'5.99','2005-07-12 05:06:39','2006-02-15 22:15:04'), +(7165,265,2,6921,'6.99','2005-07-12 22:39:03','2006-02-15 22:15:04'), +(7166,265,2,7414,'1.99','2005-07-27 16:46:07','2006-02-15 22:15:04'), +(7167,265,1,7704,'2.99','2005-07-28 04:02:13','2006-02-15 22:15:04'), +(7168,265,1,8278,'5.99','2005-07-29 01:42:55','2006-02-15 22:15:04'), +(7169,265,2,8489,'2.99','2005-07-29 08:58:03','2006-02-15 22:15:04'), +(7170,265,2,8665,'0.99','2005-07-29 15:39:29','2006-02-15 22:15:04'), +(7171,265,1,9416,'2.99','2005-07-30 20:52:45','2006-02-15 22:15:04'), +(7172,265,2,10592,'3.99','2005-08-01 14:13:00','2006-02-15 22:15:04'), +(7173,265,2,11000,'3.99','2005-08-02 04:56:14','2006-02-15 22:15:04'), +(7174,265,1,12207,'1.99','2005-08-18 02:24:07','2006-02-15 22:15:04'), +(7175,265,2,12346,'4.99','2005-08-18 07:17:55','2006-02-15 22:15:04'), +(7176,265,2,13700,'8.99','2005-08-20 09:26:17','2006-02-15 22:15:04'), +(7177,265,2,14125,'4.99','2005-08-21 01:32:16','2006-02-15 22:15:04'), +(7178,265,1,14547,'6.99','2005-08-21 15:51:38','2006-02-15 22:15:04'), +(7179,265,2,14556,'6.99','2005-08-21 16:03:27','2006-02-15 22:15:04'), +(7180,265,1,14943,'2.99','2005-08-22 05:59:59','2006-02-15 22:15:04'), +(7181,266,1,86,'1.99','2005-05-25 13:36:12','2006-02-15 22:15:04'), +(7182,266,2,651,'2.99','2005-05-28 19:46:50','2006-02-15 22:15:04'), +(7183,266,2,1280,'5.99','2005-06-15 08:16:06','2006-02-15 22:15:04'), +(7184,266,2,2065,'4.99','2005-06-17 16:03:46','2006-02-15 22:15:04'), +(7185,266,2,3002,'4.99','2005-06-20 09:56:12','2006-02-15 22:15:04'), +(7186,266,1,3059,'4.99','2005-06-20 13:38:41','2006-02-15 22:15:04'), +(7187,266,2,3585,'0.99','2005-07-06 04:22:36','2006-02-15 22:15:04'), +(7188,266,2,5362,'5.99','2005-07-09 18:16:08','2006-02-15 22:15:05'), +(7189,266,1,5577,'4.99','2005-07-10 03:58:40','2006-02-15 22:15:05'), +(7190,266,1,8492,'2.99','2005-07-29 09:04:17','2006-02-15 22:15:05'), +(7191,266,2,9109,'5.99','2005-07-30 08:58:24','2006-02-15 22:15:05'), +(7192,266,2,10747,'4.99','2005-08-01 19:59:41','2006-02-15 22:15:05'), +(7193,266,2,10910,'5.99','2005-08-02 01:54:34','2006-02-15 22:15:05'), +(7194,266,2,11233,'5.99','2005-08-02 13:06:11','2006-02-15 22:15:05'), +(7195,266,1,11321,'4.99','2005-08-02 16:15:07','2006-02-15 22:15:05'), +(7196,266,2,11626,'0.99','2005-08-17 04:25:42','2006-02-15 22:15:05'), +(7197,266,1,11726,'0.99','2005-08-17 08:11:10','2006-02-15 22:15:05'), +(7198,266,1,12255,'4.99','2005-08-18 04:07:20','2006-02-15 22:15:05'), +(7199,266,2,12378,'0.99','2005-08-18 08:26:13','2006-02-15 22:15:05'), +(7200,266,1,12405,'6.99','2005-08-18 09:37:30','2006-02-15 22:15:05'), +(7201,266,1,12715,'4.99','2005-08-18 21:09:38','2006-02-15 22:15:05'), +(7202,266,1,13468,'8.99','2005-08-20 00:56:44','2006-02-15 22:15:05'), +(7203,266,1,13556,'6.99','2005-08-20 04:10:26','2006-02-15 22:15:05'), +(7204,266,1,14080,'1.99','2005-08-20 23:29:50','2006-02-15 22:15:05'), +(7205,266,1,14492,'2.99','2005-08-21 13:59:08','2006-02-15 22:15:05'), +(7206,266,1,14877,'0.99','2005-08-22 03:39:56','2006-02-15 22:15:05'), +(7207,266,1,15181,'2.99','2005-08-22 15:46:20','2006-02-15 22:15:05'), +(7208,266,1,15346,'4.99','2005-08-22 21:06:00','2006-02-15 22:15:05'), +(7209,267,2,91,'6.99','2005-05-25 14:57:22','2006-02-15 22:15:05'), +(7210,267,1,436,'4.99','2005-05-27 17:21:04','2006-02-15 22:15:05'), +(7211,267,2,1030,'4.99','2005-05-31 04:06:47','2006-02-15 22:15:05'), +(7212,267,2,1257,'4.99','2005-06-15 06:15:36','2006-02-15 22:15:05'), +(7213,267,2,1349,'4.99','2005-06-15 12:49:02','2006-02-15 22:15:05'), +(7214,267,2,2265,'2.99','2005-06-18 06:03:27','2006-02-15 22:15:05'), +(7215,267,2,2578,'7.99','2005-06-19 04:40:06','2006-02-15 22:15:05'), +(7216,267,1,2582,'6.99','2005-06-19 04:56:27','2006-02-15 22:15:05'), +(7217,267,2,2699,'2.99','2005-06-19 13:29:28','2006-02-15 22:15:06'), +(7218,267,2,2754,'4.99','2005-06-19 16:55:59','2006-02-15 22:15:06'), +(7219,267,1,2877,'1.99','2005-06-20 01:07:16','2006-02-15 22:15:06'), +(7220,267,2,3090,'0.99','2005-06-20 16:00:19','2006-02-15 22:15:06'), +(7221,267,1,3817,'2.99','2005-07-06 15:31:45','2006-02-15 22:15:06'), +(7222,267,1,5340,'6.99','2005-07-09 17:11:35','2006-02-15 22:15:06'), +(7223,267,1,6070,'0.99','2005-07-11 04:47:42','2006-02-15 22:15:06'), +(7224,267,1,6706,'3.99','2005-07-12 12:59:16','2006-02-15 22:15:06'), +(7225,267,1,8190,'4.99','2005-07-28 22:47:06','2006-02-15 22:15:06'), +(7226,267,1,8572,'1.99','2005-07-29 11:51:24','2006-02-15 22:15:06'), +(7227,267,2,9059,'3.99','2005-07-30 07:18:44','2006-02-15 22:15:06'), +(7228,267,1,9308,'6.99','2005-07-30 16:53:21','2006-02-15 22:15:06'), +(7229,267,2,9403,'4.99','2005-07-30 20:18:53','2006-02-15 22:15:06'), +(7230,267,2,9807,'2.99','2005-07-31 11:13:52','2006-02-15 22:15:06'), +(7231,267,2,10048,'4.99','2005-07-31 19:08:56','2006-02-15 22:15:06'), +(7232,267,1,10343,'2.99','2005-08-01 05:15:47','2006-02-15 22:15:06'), +(7233,267,2,11373,'0.99','2005-08-02 18:14:12','2006-02-15 22:15:06'), +(7234,267,1,11690,'6.99','2005-08-17 06:44:22','2006-02-15 22:15:06'), +(7235,267,1,12320,'4.99','2005-08-18 06:26:51','2006-02-15 22:15:06'), +(7236,267,1,12979,'4.99','2005-08-19 07:00:35','2006-02-15 22:15:06'), +(7237,267,2,13236,'9.99','2005-08-19 16:18:24','2006-02-15 22:15:06'), +(7238,267,1,14131,'5.99','2005-08-21 01:43:40','2006-02-15 22:15:06'), +(7239,267,2,15020,'3.99','2005-08-22 08:54:12','2006-02-15 22:15:06'), +(7240,267,1,15208,'3.99','2005-08-22 16:35:47','2006-02-15 22:15:06'), +(7241,267,1,15768,'0.99','2005-08-23 13:14:47','2006-02-15 22:15:06'), +(7242,267,1,15903,'3.99','2005-08-23 17:30:40','2006-02-15 22:15:06'), +(7243,267,2,12066,'7.98','2006-02-14 15:16:03','2006-02-15 22:15:06'), +(7244,267,2,13713,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:07'), +(7245,268,1,1394,'2.99','2005-06-15 16:17:21','2006-02-15 22:15:07'), +(7246,268,2,1450,'4.99','2005-06-15 19:22:08','2006-02-15 22:15:07'), +(7247,268,2,1551,'3.99','2005-06-16 02:01:15','2006-02-15 22:15:07'), +(7248,268,1,2133,'0.99','2005-06-17 21:10:05','2006-02-15 22:15:07'), +(7249,268,2,2324,'4.99','2005-06-18 10:00:33','2006-02-15 22:15:07'), +(7250,268,2,2858,'2.99','2005-06-19 23:17:11','2006-02-15 22:15:07'), +(7251,268,1,3066,'3.99','2005-06-20 13:55:41','2006-02-15 22:15:07'), +(7252,268,1,3361,'1.99','2005-06-21 12:14:23','2006-02-15 22:15:07'), +(7253,268,2,3670,'4.99','2005-07-06 08:56:43','2006-02-15 22:15:07'), +(7254,268,2,4626,'4.99','2005-07-08 08:18:21','2006-02-15 22:15:07'), +(7255,268,1,5039,'7.99','2005-07-09 03:14:45','2006-02-15 22:15:07'), +(7256,268,2,5671,'2.99','2005-07-10 08:18:22','2006-02-15 22:15:07'), +(7257,268,2,5793,'2.99','2005-07-10 14:33:00','2006-02-15 22:15:07'), +(7258,268,2,5888,'6.99','2005-07-10 19:52:17','2006-02-15 22:15:07'), +(7259,268,1,6120,'3.99','2005-07-11 07:49:53','2006-02-15 22:15:07'), +(7260,268,2,6489,'1.99','2005-07-12 02:22:46','2006-02-15 22:15:07'), +(7261,268,1,8931,'2.99','2005-07-30 02:30:07','2006-02-15 22:15:07'), +(7262,268,2,9436,'7.99','2005-07-30 21:33:01','2006-02-15 22:15:07'), +(7263,268,2,9531,'3.99','2005-07-31 01:11:53','2006-02-15 22:15:07'), +(7264,268,1,10040,'1.99','2005-07-31 18:54:15','2006-02-15 22:15:07'), +(7265,268,2,11462,'7.99','2005-08-02 21:36:46','2006-02-15 22:15:07'), +(7266,268,2,11828,'6.99','2005-08-17 12:48:28','2006-02-15 22:15:07'), +(7267,268,2,12007,'2.99','2005-08-17 19:10:34','2006-02-15 22:15:07'), +(7268,268,2,12694,'4.99','2005-08-18 20:10:39','2006-02-15 22:15:07'), +(7269,268,2,13880,'5.99','2005-08-20 15:18:20','2006-02-15 22:15:07'), +(7270,268,2,14249,'4.99','2005-08-21 05:38:05','2006-02-15 22:15:07'), +(7271,268,2,14373,'4.99','2005-08-21 09:44:53','2006-02-15 22:15:08'), +(7272,268,1,14874,'0.99','2005-08-22 03:32:05','2006-02-15 22:15:08'), +(7273,268,2,15183,'2.99','2005-08-22 15:49:54','2006-02-15 22:15:08'), +(7274,269,2,7,'1.99','2005-05-24 23:11:53','2006-02-15 22:15:08'), +(7275,269,1,98,'0.99','2005-05-25 16:48:24','2006-02-15 22:15:08'), +(7276,269,2,678,'6.99','2005-05-28 23:15:48','2006-02-15 22:15:08'), +(7277,269,2,703,'0.99','2005-05-29 02:29:36','2006-02-15 22:15:08'), +(7278,269,1,750,'4.99','2005-05-29 09:41:40','2006-02-15 22:15:08'), +(7279,269,2,1099,'2.99','2005-05-31 13:54:48','2006-02-15 22:15:08'), +(7280,269,1,1334,'3.99','2005-06-15 11:43:09','2006-02-15 22:15:08'), +(7281,269,2,1909,'2.99','2005-06-17 05:11:04','2006-02-15 22:15:08'), +(7282,269,2,2493,'6.99','2005-06-18 22:12:09','2006-02-15 22:15:08'), +(7283,269,1,4125,'9.99','2005-07-07 07:20:29','2006-02-15 22:15:08'), +(7284,269,2,4804,'0.99','2005-07-08 16:57:30','2006-02-15 22:15:08'), +(7285,269,2,4880,'6.99','2005-07-08 19:36:17','2006-02-15 22:15:08'), +(7286,269,1,6440,'2.99','2005-07-12 00:25:04','2006-02-15 22:15:08'), +(7287,269,1,6626,'5.99','2005-07-12 09:16:24','2006-02-15 22:15:08'), +(7288,269,2,6804,'4.99','2005-07-12 17:22:06','2006-02-15 22:15:08'), +(7289,269,1,7032,'4.99','2005-07-27 03:03:09','2006-02-15 22:15:08'), +(7290,269,1,7537,'6.99','2005-07-27 21:36:09','2006-02-15 22:15:08'), +(7291,269,1,7972,'2.99','2005-07-28 14:07:46','2006-02-15 22:15:08'), +(7292,269,2,10566,'2.99','2005-08-01 13:12:11','2006-02-15 22:15:08'), +(7293,269,1,10908,'4.99','2005-08-02 01:53:06','2006-02-15 22:15:08'), +(7294,269,1,11014,'4.99','2005-08-02 05:12:22','2006-02-15 22:15:08'), +(7295,269,1,11915,'3.99','2005-08-17 16:05:28','2006-02-15 22:15:08'), +(7296,269,1,12344,'4.99','2005-08-18 07:15:19','2006-02-15 22:15:09'), +(7297,269,2,13142,'5.99','2005-08-19 12:42:28','2006-02-15 22:15:09'), +(7298,269,2,13759,'2.99','2005-08-20 11:24:48','2006-02-15 22:15:09'), +(7299,269,1,14266,'4.99','2005-08-21 06:20:51','2006-02-15 22:15:09'), +(7300,269,2,14693,'6.99','2005-08-21 20:44:19','2006-02-15 22:15:09'), +(7301,269,2,15788,'2.99','2005-08-23 13:54:39','2006-02-15 22:15:09'), +(7302,269,1,13025,'3.98','2006-02-14 15:16:03','2006-02-15 22:15:09'), +(7303,269,2,12610,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:09'), +(7304,270,1,193,'1.99','2005-05-26 06:41:48','2006-02-15 22:15:09'), +(7305,270,1,1040,'4.99','2005-05-31 05:35:16','2006-02-15 22:15:09'), +(7306,270,1,1345,'4.99','2005-06-15 12:32:13','2006-02-15 22:15:09'), +(7307,270,1,1896,'6.99','2005-06-17 04:25:46','2006-02-15 22:15:09'), +(7308,270,1,2115,'3.99','2005-06-17 20:02:16','2006-02-15 22:15:09'), +(7309,270,2,3164,'5.99','2005-06-20 21:29:00','2006-02-15 22:15:09'), +(7310,270,1,3501,'3.99','2005-07-06 00:11:28','2006-02-15 22:15:09'), +(7311,270,1,3987,'9.99','2005-07-06 23:28:24','2006-02-15 22:15:09'), +(7312,270,2,5533,'0.99','2005-07-10 02:19:28','2006-02-15 22:15:09'), +(7313,270,2,6520,'4.99','2005-07-12 04:05:16','2006-02-15 22:15:09'), +(7314,270,1,8355,'2.99','2005-07-29 04:57:43','2006-02-15 22:15:09'), +(7315,270,2,8618,'3.99','2005-07-29 13:48:20','2006-02-15 22:15:09'), +(7316,270,1,10069,'3.99','2005-07-31 19:43:18','2006-02-15 22:15:09'), +(7317,270,1,10461,'7.99','2005-08-01 09:32:53','2006-02-15 22:15:09'), +(7318,270,2,10579,'5.99','2005-08-01 13:48:22','2006-02-15 22:15:09'), +(7319,270,2,10648,'4.99','2005-08-01 16:08:52','2006-02-15 22:15:09'), +(7320,270,1,11389,'2.99','2005-08-02 18:39:12','2006-02-15 22:15:09'), +(7321,270,1,11810,'0.99','2005-08-17 11:56:48','2006-02-15 22:15:09'), +(7322,270,2,11841,'2.99','2005-08-17 13:12:20','2006-02-15 22:15:09'), +(7323,270,1,11917,'2.99','2005-08-17 16:08:17','2006-02-15 22:15:09'), +(7324,270,1,12192,'2.99','2005-08-18 02:01:40','2006-02-15 22:15:10'), +(7325,270,1,12442,'2.99','2005-08-18 10:50:07','2006-02-15 22:15:10'), +(7326,270,2,13945,'1.99','2005-08-20 17:43:56','2006-02-15 22:15:10'), +(7327,270,1,14618,'0.99','2005-08-21 18:09:51','2006-02-15 22:15:10'), +(7328,270,2,15620,'6.99','2005-08-23 07:10:22','2006-02-15 22:15:10'), +(7329,271,1,1096,'8.99','2005-05-31 13:30:49','2006-02-15 22:15:10'), +(7330,271,2,1852,'2.99','2005-06-17 00:38:20','2006-02-15 22:15:10'), +(7331,271,1,3640,'1.99','2005-07-06 07:12:26','2006-02-15 22:15:10'), +(7332,271,2,4545,'2.99','2005-07-08 04:17:47','2006-02-15 22:15:10'), +(7333,271,2,5878,'1.99','2005-07-10 19:09:57','2006-02-15 22:15:10'), +(7334,271,1,5922,'2.99','2005-07-10 21:36:53','2006-02-15 22:15:10'), +(7335,271,1,6024,'2.99','2005-07-11 02:16:47','2006-02-15 22:15:10'), +(7336,271,1,7618,'3.99','2005-07-28 00:24:14','2006-02-15 22:15:10'), +(7337,271,1,8592,'0.99','2005-07-29 12:33:58','2006-02-15 22:15:10'), +(7338,271,1,9821,'4.99','2005-07-31 11:47:54','2006-02-15 22:15:10'), +(7339,271,2,10143,'7.99','2005-07-31 22:11:43','2006-02-15 22:15:10'), +(7340,271,2,10310,'4.99','2005-08-01 04:24:47','2006-02-15 22:15:10'), +(7341,271,1,10599,'3.99','2005-08-01 14:23:58','2006-02-15 22:15:10'), +(7342,271,1,11431,'2.99','2005-08-02 20:05:16','2006-02-15 22:15:10'), +(7343,271,1,12219,'4.99','2005-08-18 02:49:54','2006-02-15 22:15:10'), +(7344,271,2,14234,'0.99','2005-08-21 05:07:12','2006-02-15 22:15:10'), +(7345,271,2,14355,'4.99','2005-08-21 09:08:29','2006-02-15 22:15:10'), +(7346,271,1,15244,'2.99','2005-08-22 17:48:42','2006-02-15 22:15:10'), +(7347,272,1,33,'0.99','2005-05-25 04:18:51','2006-02-15 22:15:10'), +(7348,272,1,405,'6.99','2005-05-27 13:32:39','2006-02-15 22:15:10'), +(7349,272,1,1041,'6.99','2005-05-31 05:46:23','2006-02-15 22:15:10'), +(7350,272,1,1072,'0.99','2005-05-31 09:52:50','2006-02-15 22:15:10'), +(7351,272,2,1604,'4.99','2005-06-16 06:14:25','2006-02-15 22:15:10'), +(7352,272,2,2546,'5.99','2005-06-19 02:39:39','2006-02-15 22:15:11'), +(7353,272,1,3323,'5.99','2005-06-21 08:45:33','2006-02-15 22:15:11'), +(7354,272,2,5047,'3.99','2005-07-09 03:44:15','2006-02-15 22:15:11'), +(7355,272,2,5158,'2.99','2005-07-09 08:53:09','2006-02-15 22:15:11'), +(7356,272,2,7300,'7.99','2005-07-27 12:50:17','2006-02-15 22:15:11'), +(7357,272,2,7658,'2.99','2005-07-28 02:09:12','2006-02-15 22:15:11'), +(7358,272,1,8248,'7.99','2005-07-29 00:41:56','2006-02-15 22:15:11'), +(7359,272,2,9787,'10.99','2005-07-31 10:26:19','2006-02-15 22:15:11'), +(7360,272,1,10736,'2.99','2005-08-01 19:30:21','2006-02-15 22:15:11'), +(7361,272,2,11003,'2.99','2005-08-02 05:03:05','2006-02-15 22:15:11'), +(7362,272,2,11597,'8.99','2005-08-17 03:02:56','2006-02-15 22:15:11'), +(7363,272,1,11881,'0.99','2005-08-17 14:31:56','2006-02-15 22:15:11'), +(7364,272,2,12006,'6.99','2005-08-17 19:09:12','2006-02-15 22:15:11'), +(7365,272,2,13274,'2.99','2005-08-19 17:50:03','2006-02-15 22:15:11'), +(7366,272,1,13903,'2.99','2005-08-20 16:07:55','2006-02-15 22:15:11'), +(7367,273,2,122,'3.99','2005-05-25 19:46:21','2006-02-15 22:15:11'), +(7368,273,2,980,'0.99','2005-05-30 21:45:19','2006-02-15 22:15:11'), +(7369,273,2,1391,'6.99','2005-06-15 16:11:21','2006-02-15 22:15:11'), +(7370,273,2,1747,'6.99','2005-06-16 16:53:33','2006-02-15 22:15:11'), +(7371,273,2,1765,'4.99','2005-06-16 17:56:10','2006-02-15 22:15:11'), +(7372,273,1,2301,'1.99','2005-06-18 08:24:03','2006-02-15 22:15:11'), +(7373,273,1,3202,'0.99','2005-06-21 00:33:47','2006-02-15 22:15:11'), +(7374,273,2,3556,'2.99','2005-07-06 02:46:13','2006-02-15 22:15:11'), +(7375,273,1,4937,'5.99','2005-07-08 22:29:59','2006-02-15 22:15:11'), +(7376,273,1,5256,'7.99','2005-07-09 13:55:45','2006-02-15 22:15:12'), +(7377,273,2,5435,'7.99','2005-07-09 21:28:07','2006-02-15 22:15:12'), +(7378,273,1,5605,'2.99','2005-07-10 05:06:45','2006-02-15 22:15:12'), +(7379,273,1,6592,'8.99','2005-07-12 07:19:35','2006-02-15 22:15:12'), +(7380,273,1,6635,'1.99','2005-07-12 09:47:58','2006-02-15 22:15:12'), +(7381,273,2,6696,'2.99','2005-07-12 12:44:04','2006-02-15 22:15:12'), +(7382,273,1,6717,'5.99','2005-07-12 13:35:02','2006-02-15 22:15:12'), +(7383,273,1,8449,'2.99','2005-07-29 07:42:25','2006-02-15 22:15:12'), +(7384,273,1,9186,'4.99','2005-07-30 12:13:48','2006-02-15 22:15:12'), +(7385,273,2,9285,'5.99','2005-07-30 15:26:08','2006-02-15 22:15:12'), +(7386,273,2,9391,'0.99','2005-07-30 19:48:41','2006-02-15 22:15:12'), +(7387,273,2,9693,'3.99','2005-07-31 07:11:50','2006-02-15 22:15:12'), +(7388,273,2,9729,'0.99','2005-07-31 08:43:43','2006-02-15 22:15:12'), +(7389,273,1,10272,'8.99','2005-08-01 03:14:34','2006-02-15 22:15:12'), +(7390,273,1,10753,'3.99','2005-08-01 20:09:24','2006-02-15 22:15:12'), +(7391,273,1,10768,'6.99','2005-08-01 20:39:32','2006-02-15 22:15:12'), +(7392,273,1,11282,'4.99','2005-08-02 14:35:03','2006-02-15 22:15:12'), +(7393,273,2,11509,'4.99','2005-08-16 23:29:53','2006-02-15 22:15:12'), +(7394,273,1,12692,'0.99','2005-08-18 20:09:19','2006-02-15 22:15:12'), +(7395,273,2,13738,'4.99','2005-08-20 10:42:42','2006-02-15 22:15:12'), +(7396,273,1,13955,'5.99','2005-08-20 18:05:12','2006-02-15 22:15:12'), +(7397,273,2,14092,'4.99','2005-08-21 00:14:32','2006-02-15 22:15:12'), +(7398,273,2,14558,'2.99','2005-08-21 16:10:50','2006-02-15 22:15:12'), +(7399,273,2,14911,'2.99','2005-08-22 04:51:42','2006-02-15 22:15:12'), +(7400,273,2,15372,'2.99','2005-08-22 21:59:51','2006-02-15 22:15:12'), +(7401,273,1,15760,'6.99','2005-08-23 12:50:00','2006-02-15 22:15:12'), +(7402,274,1,147,'2.99','2005-05-26 00:17:50','2006-02-15 22:15:12'), +(7403,274,1,208,'4.99','2005-05-26 08:10:22','2006-02-15 22:15:13'), +(7404,274,2,301,'2.99','2005-05-26 21:06:14','2006-02-15 22:15:13'), +(7405,274,1,394,'5.99','2005-05-27 11:26:11','2006-02-15 22:15:13'), +(7406,274,2,474,'2.99','2005-05-27 22:11:56','2006-02-15 22:15:13'), +(7407,274,1,892,'4.99','2005-05-30 08:02:56','2006-02-15 22:15:13'), +(7408,274,1,2098,'0.99','2005-06-17 18:42:09','2006-02-15 22:15:13'), +(7409,274,2,3291,'9.99','2005-06-21 06:55:36','2006-02-15 22:15:13'), +(7410,274,2,3532,'5.99','2005-07-06 01:24:38','2006-02-15 22:15:13'), +(7411,274,1,4147,'2.99','2005-07-07 08:32:12','2006-02-15 22:15:13'), +(7412,274,2,4582,'2.99','2005-07-08 06:09:09','2006-02-15 22:15:13'), +(7413,274,2,6389,'3.99','2005-07-11 22:18:20','2006-02-15 22:15:13'), +(7414,274,2,8259,'0.99','2005-07-29 01:05:16','2006-02-15 22:15:13'), +(7415,274,2,8406,'5.99','2005-07-29 06:34:45','2006-02-15 22:15:13'), +(7416,274,2,8517,'7.99','2005-07-29 10:00:48','2006-02-15 22:15:13'), +(7417,274,1,9331,'4.99','2005-07-30 17:46:50','2006-02-15 22:15:13'), +(7418,274,1,9677,'4.99','2005-07-31 06:39:45','2006-02-15 22:15:13'), +(7419,274,2,10059,'4.99','2005-07-31 19:20:49','2006-02-15 22:15:13'), +(7420,274,1,10790,'1.99','2005-08-01 21:38:37','2006-02-15 22:15:13'), +(7421,274,2,10855,'0.99','2005-08-02 00:06:37','2006-02-15 22:15:13'), +(7422,274,1,11058,'3.99','2005-08-02 06:38:44','2006-02-15 22:15:13'), +(7423,274,2,11363,'2.99','2005-08-02 17:48:39','2006-02-15 22:15:13'), +(7424,274,1,12321,'3.99','2005-08-18 06:27:05','2006-02-15 22:15:13'), +(7425,274,1,13103,'2.99','2005-08-19 11:05:51','2006-02-15 22:15:13'), +(7426,274,2,13129,'8.99','2005-08-19 12:05:04','2006-02-15 22:15:13'), +(7427,274,1,13549,'8.99','2005-08-20 03:58:41','2006-02-15 22:15:13'), +(7428,274,1,14012,'0.99','2005-08-20 20:42:12','2006-02-15 22:15:13'), +(7429,274,1,14066,'7.99','2005-08-20 22:45:58','2006-02-15 22:15:13'), +(7430,274,2,14164,'7.99','2005-08-21 02:58:02','2006-02-15 22:15:14'), +(7431,274,1,14388,'4.99','2005-08-21 10:15:13','2006-02-15 22:15:14'), +(7432,274,2,15143,'2.99','2005-08-22 13:46:24','2006-02-15 22:15:14'), +(7433,274,1,15260,'2.99','2005-08-22 18:24:16','2006-02-15 22:15:14'), +(7434,274,2,15328,'2.99','2005-08-22 20:31:38','2006-02-15 22:15:14'), +(7435,274,2,15819,'3.99','2005-08-23 15:01:54','2006-02-15 22:15:14'), +(7436,274,1,13486,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:14'), +(7437,275,2,336,'2.99','2005-05-27 03:15:23','2006-02-15 22:15:14'), +(7438,275,2,1797,'3.99','2005-06-16 20:13:03','2006-02-15 22:15:14'), +(7439,275,2,2414,'0.99','2005-06-18 17:01:55','2006-02-15 22:15:14'), +(7440,275,1,2646,'4.99','2005-06-19 09:56:01','2006-02-15 22:15:14'), +(7441,275,1,3355,'2.99','2005-06-21 11:30:47','2006-02-15 22:15:14'), +(7442,275,2,4396,'0.99','2005-07-07 21:14:19','2006-02-15 22:15:14'), +(7443,275,1,4634,'0.99','2005-07-08 08:40:02','2006-02-15 22:15:14'), +(7444,275,2,4912,'9.99','2005-07-08 21:26:11','2006-02-15 22:15:14'), +(7445,275,2,6301,'5.99','2005-07-11 17:54:09','2006-02-15 22:15:14'), +(7446,275,2,6856,'0.99','2005-07-12 19:50:16','2006-02-15 22:15:14'), +(7447,275,1,7553,'2.99','2005-07-27 22:11:36','2006-02-15 22:15:14'), +(7448,275,2,7596,'4.99','2005-07-27 23:33:57','2006-02-15 22:15:14'), +(7449,275,1,8746,'2.99','2005-07-29 19:03:15','2006-02-15 22:15:15'), +(7450,275,2,9258,'2.99','2005-07-30 14:31:31','2006-02-15 22:15:15'), +(7451,275,1,10479,'6.99','2005-08-01 10:11:25','2006-02-15 22:15:15'), +(7452,275,2,11309,'1.99','2005-08-02 15:50:55','2006-02-15 22:15:15'), +(7453,275,1,11610,'4.99','2005-08-17 03:43:37','2006-02-15 22:15:15'), +(7454,275,2,12589,'5.99','2005-08-18 16:06:31','2006-02-15 22:15:15'), +(7455,275,1,12606,'1.99','2005-08-18 17:02:21','2006-02-15 22:15:15'), +(7456,275,1,13037,'3.99','2005-08-19 08:53:57','2006-02-15 22:15:15'), +(7457,275,2,13860,'2.99','2005-08-20 14:55:09','2006-02-15 22:15:15'), +(7458,275,2,13865,'1.99','2005-08-20 15:04:09','2006-02-15 22:15:15'), +(7459,275,2,13902,'0.99','2005-08-20 16:07:08','2006-02-15 22:15:15'), +(7460,275,2,14063,'0.99','2005-08-20 22:36:40','2006-02-15 22:15:15'), +(7461,275,1,14187,'5.99','2005-08-21 03:32:03','2006-02-15 22:15:15'), +(7462,275,1,14296,'2.99','2005-08-21 07:13:23','2006-02-15 22:15:15'), +(7463,275,2,14483,'5.99','2005-08-21 13:43:59','2006-02-15 22:15:15'), +(7464,275,2,14727,'4.99','2005-08-21 22:12:45','2006-02-15 22:15:15'), +(7465,275,2,15269,'2.99','2005-08-22 18:39:44','2006-02-15 22:15:15'), +(7466,275,2,15496,'3.99','2005-08-23 02:30:23','2006-02-15 22:15:15'), +(7467,276,1,736,'3.99','2005-05-29 08:10:07','2006-02-15 22:15:15'), +(7468,276,1,860,'10.99','2005-05-30 02:45:16','2006-02-15 22:15:15'), +(7469,276,1,1352,'0.99','2005-06-15 12:58:27','2006-02-15 22:15:15'), +(7470,276,2,2763,'4.99','2005-06-19 17:23:34','2006-02-15 22:15:16'), +(7471,276,2,3064,'6.99','2005-06-20 13:53:13','2006-02-15 22:15:16'), +(7472,276,2,3714,'2.99','2005-07-06 10:51:28','2006-02-15 22:15:16'), +(7473,276,1,4715,'0.99','2005-07-08 12:15:37','2006-02-15 22:15:16'), +(7474,276,2,5186,'4.99','2005-07-09 10:18:40','2006-02-15 22:15:16'), +(7475,276,2,5246,'4.99','2005-07-09 13:25:18','2006-02-15 22:15:16'), +(7476,276,2,7282,'5.99','2005-07-27 12:00:19','2006-02-15 22:15:16'), +(7477,276,2,7842,'2.99','2005-07-28 09:10:06','2006-02-15 22:15:16'), +(7478,276,1,9070,'0.99','2005-07-30 07:40:39','2006-02-15 22:15:16'), +(7479,276,1,9080,'1.99','2005-07-30 08:02:39','2006-02-15 22:15:16'), +(7480,276,1,9102,'4.99','2005-07-30 08:48:20','2006-02-15 22:15:16'), +(7481,276,1,9229,'8.99','2005-07-30 13:38:17','2006-02-15 22:15:16'), +(7482,276,2,10149,'5.99','2005-07-31 22:20:46','2006-02-15 22:15:16'), +(7483,276,2,10691,'0.99','2005-08-01 18:09:53','2006-02-15 22:15:16'), +(7484,276,1,10763,'2.99','2005-08-01 20:32:27','2006-02-15 22:15:16'), +(7485,276,2,11085,'2.99','2005-08-02 07:36:44','2006-02-15 22:15:16'), +(7486,276,1,11636,'4.99','2005-08-17 04:36:31','2006-02-15 22:15:16'), +(7487,276,2,11961,'3.99','2005-08-17 17:28:01','2006-02-15 22:15:16'), +(7488,276,2,12178,'5.99','2005-08-18 01:17:32','2006-02-15 22:15:16'), +(7489,276,2,12251,'4.99','2005-08-18 03:59:02','2006-02-15 22:15:16'), +(7490,276,1,12650,'4.99','2005-08-18 18:33:20','2006-02-15 22:15:16'), +(7491,276,1,14000,'4.99','2005-08-20 20:06:05','2006-02-15 22:15:16'), +(7492,276,2,15718,'2.99','2005-08-23 11:05:17','2006-02-15 22:15:16'), +(7493,276,1,15769,'3.99','2005-08-23 13:16:15','2006-02-15 22:15:16'), +(7494,276,2,15923,'4.99','2005-08-23 18:08:19','2006-02-15 22:15:17'), +(7495,277,2,308,'6.99','2005-05-26 22:01:39','2006-02-15 22:15:17'), +(7496,277,1,1331,'2.99','2005-06-15 11:34:33','2006-02-15 22:15:17'), +(7497,277,2,1717,'2.99','2005-06-16 14:47:16','2006-02-15 22:15:17'), +(7498,277,2,2162,'3.99','2005-06-17 23:45:47','2006-02-15 22:15:17'), +(7499,277,2,2723,'4.99','2005-06-19 14:55:23','2006-02-15 22:15:17'), +(7500,277,1,3247,'5.99','2005-06-21 03:12:15','2006-02-15 22:15:17'), +(7501,277,2,3274,'4.99','2005-06-21 05:30:36','2006-02-15 22:15:17'), +(7502,277,1,3344,'2.99','2005-06-21 10:57:27','2006-02-15 22:15:17'), +(7503,277,2,3740,'5.99','2005-07-06 11:55:35','2006-02-15 22:15:17'), +(7504,277,2,3897,'2.99','2005-07-06 19:11:43','2006-02-15 22:15:17'), +(7505,277,1,4290,'4.99','2005-07-07 15:47:10','2006-02-15 22:15:17'), +(7506,277,2,4987,'5.99','2005-07-09 00:45:41','2006-02-15 22:15:17'), +(7507,277,1,5861,'0.99','2005-07-10 18:14:22','2006-02-15 22:15:17'), +(7508,277,1,5913,'2.99','2005-07-10 20:58:55','2006-02-15 22:15:17'), +(7509,277,2,6455,'2.99','2005-07-12 01:01:58','2006-02-15 22:15:17'), +(7510,277,1,6487,'5.99','2005-07-12 02:17:00','2006-02-15 22:15:17'), +(7511,277,2,7423,'4.99','2005-07-27 17:11:47','2006-02-15 22:15:17'), +(7512,277,2,8410,'2.99','2005-07-29 06:41:36','2006-02-15 22:15:17'), +(7513,277,2,9669,'4.99','2005-07-31 06:31:36','2006-02-15 22:15:17'), +(7514,277,1,9901,'0.99','2005-07-31 14:20:59','2006-02-15 22:15:17'), +(7515,277,2,11074,'3.99','2005-08-02 07:21:43','2006-02-15 22:15:17'), +(7516,277,2,11162,'4.99','2005-08-02 10:07:54','2006-02-15 22:15:17'), +(7517,277,2,11574,'0.99','2005-08-17 01:38:19','2006-02-15 22:15:17'), +(7518,277,2,12149,'3.99','2005-08-18 00:13:51','2006-02-15 22:15:17'), +(7519,277,1,12458,'5.99','2005-08-18 11:22:53','2006-02-15 22:15:17'), +(7520,277,1,13122,'4.99','2005-08-19 11:53:49','2006-02-15 22:15:17'), +(7521,277,2,13526,'4.99','2005-08-20 02:58:42','2006-02-15 22:15:18'), +(7522,277,1,13714,'4.99','2005-08-20 09:41:09','2006-02-15 22:15:18'), +(7523,277,2,14227,'4.99','2005-08-21 04:56:31','2006-02-15 22:15:18'), +(7524,277,2,14745,'4.99','2005-08-21 22:53:01','2006-02-15 22:15:18'), +(7525,277,1,15008,'10.99','2005-08-22 08:24:32','2006-02-15 22:15:18'), +(7526,277,1,15345,'5.99','2005-08-22 21:05:50','2006-02-15 22:15:18'), +(7527,278,1,1092,'4.99','2005-05-31 12:15:57','2006-02-15 22:15:18'), +(7528,278,2,1387,'0.99','2005-06-15 15:40:56','2006-02-15 22:15:18'), +(7529,278,1,1978,'2.99','2005-06-17 09:42:34','2006-02-15 22:15:18'), +(7530,278,2,2078,'4.99','2005-06-17 16:48:55','2006-02-15 22:15:18'), +(7531,278,1,3453,'2.99','2005-06-21 21:12:11','2006-02-15 22:15:18'), +(7532,278,1,3776,'2.99','2005-07-06 13:31:37','2006-02-15 22:15:18'), +(7533,278,1,4430,'4.99','2005-07-07 22:35:24','2006-02-15 22:15:18'), +(7534,278,2,4866,'8.99','2005-07-08 19:09:59','2006-02-15 22:15:18'), +(7535,278,2,6869,'4.99','2005-07-12 20:12:06','2006-02-15 22:15:18'), +(7536,278,1,7239,'0.99','2005-07-27 10:20:27','2006-02-15 22:15:18'), +(7537,278,2,7834,'0.99','2005-07-28 08:46:43','2006-02-15 22:15:18'), +(7538,278,2,8222,'5.99','2005-07-28 23:51:53','2006-02-15 22:15:18'), +(7539,278,1,8953,'4.99','2005-07-30 03:21:05','2006-02-15 22:15:18'), +(7540,278,2,9448,'2.99','2005-07-30 21:56:13','2006-02-15 22:15:18'), +(7541,278,1,10649,'2.99','2005-08-01 16:11:40','2006-02-15 22:15:18'), +(7542,278,1,10731,'2.99','2005-08-01 19:21:48','2006-02-15 22:15:18'), +(7543,278,2,10849,'3.99','2005-08-01 23:51:00','2006-02-15 22:15:18'), +(7544,278,1,11095,'5.99','2005-08-02 08:03:20','2006-02-15 22:15:18'), +(7545,278,2,11531,'0.99','2005-08-17 00:30:04','2006-02-15 22:15:18'), +(7546,278,1,12787,'0.99','2005-08-19 00:07:58','2006-02-15 22:15:18'), +(7547,278,1,13896,'0.99','2005-08-20 15:59:56','2006-02-15 22:15:18'), +(7548,278,2,13976,'0.99','2005-08-20 19:02:16','2006-02-15 22:15:19'), +(7549,278,1,14268,'2.99','2005-08-21 06:21:24','2006-02-15 22:15:19'), +(7550,278,2,14803,'0.99','2005-08-22 00:49:10','2006-02-15 22:15:19'), +(7551,278,1,14986,'4.99','2005-08-22 07:37:24','2006-02-15 22:15:19'), +(7552,278,1,16019,'4.99','2005-08-23 21:30:45','2006-02-15 22:15:19'), +(7553,279,1,979,'2.99','2005-05-30 21:37:11','2006-02-15 22:15:19'), +(7554,279,2,1019,'0.99','2005-05-31 03:05:07','2006-02-15 22:15:19'), +(7555,279,1,1178,'2.99','2005-06-15 00:36:40','2006-02-15 22:15:19'), +(7556,279,1,2147,'4.99','2005-06-17 22:28:13','2006-02-15 22:15:19'), +(7557,279,1,3215,'0.99','2005-06-21 01:11:32','2006-02-15 22:15:19'), +(7558,279,1,3374,'2.99','2005-06-21 13:36:30','2006-02-15 22:15:19'), +(7559,279,1,3375,'4.99','2005-06-21 13:37:18','2006-02-15 22:15:19'), +(7560,279,1,4476,'4.99','2005-07-08 00:34:25','2006-02-15 22:15:19'), +(7561,279,1,4978,'7.99','2005-07-09 00:22:02','2006-02-15 22:15:19'), +(7562,279,2,5248,'2.99','2005-07-09 13:29:44','2006-02-15 22:15:19'), +(7563,279,1,5361,'9.99','2005-07-09 18:15:32','2006-02-15 22:15:19'), +(7564,279,1,6176,'0.99','2005-07-11 10:48:21','2006-02-15 22:15:19'), +(7565,279,1,7947,'2.99','2005-07-28 13:05:50','2006-02-15 22:15:19'), +(7566,279,2,8559,'3.99','2005-07-29 11:25:54','2006-02-15 22:15:19'), +(7567,279,2,9820,'5.99','2005-07-31 11:46:57','2006-02-15 22:15:19'), +(7568,279,2,10177,'2.99','2005-07-31 23:42:33','2006-02-15 22:15:19'), +(7569,279,2,11250,'6.99','2005-08-02 13:35:42','2006-02-15 22:15:19'), +(7570,279,1,11515,'2.99','2005-08-16 23:54:34','2006-02-15 22:15:19'), +(7571,279,1,11703,'4.99','2005-08-17 07:19:29','2006-02-15 22:15:19'), +(7572,279,2,12935,'2.99','2005-08-19 05:20:25','2006-02-15 22:15:19'), +(7573,279,1,12949,'4.99','2005-08-19 05:55:52','2006-02-15 22:15:19'), +(7574,279,1,13105,'7.99','2005-08-19 11:06:16','2006-02-15 22:15:20'), +(7575,279,1,13233,'2.99','2005-08-19 16:14:41','2006-02-15 22:15:20'), +(7576,279,2,13588,'4.99','2005-08-20 05:47:11','2006-02-15 22:15:20'), +(7577,279,2,14206,'2.99','2005-08-21 03:59:26','2006-02-15 22:15:20'), +(7578,279,1,14714,'3.99','2005-08-21 21:27:43','2006-02-15 22:15:20'), +(7579,279,1,14779,'5.99','2005-08-22 00:00:56','2006-02-15 22:15:20'), +(7580,279,1,14789,'4.99','2005-08-22 00:29:39','2006-02-15 22:15:20'), +(7581,279,2,15580,'6.99','2005-08-23 05:39:06','2006-02-15 22:15:20'), +(7582,279,1,15606,'2.99','2005-08-23 06:50:27','2006-02-15 22:15:20'), +(7583,279,2,13538,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:20'), +(7584,280,1,1014,'4.99','2005-05-31 02:39:16','2006-02-15 22:15:20'), +(7585,280,1,2656,'3.99','2005-06-19 10:42:33','2006-02-15 22:15:20'), +(7586,280,2,3009,'4.99','2005-06-20 10:24:44','2006-02-15 22:15:20'), +(7587,280,2,3097,'0.99','2005-06-20 16:26:14','2006-02-15 22:15:20'), +(7588,280,1,4616,'4.99','2005-07-08 07:48:12','2006-02-15 22:15:20'), +(7589,280,2,6851,'0.99','2005-07-12 19:32:14','2006-02-15 22:15:20'), +(7590,280,1,7070,'4.99','2005-07-27 04:01:08','2006-02-15 22:15:20'), +(7591,280,2,7901,'0.99','2005-07-28 11:12:12','2006-02-15 22:15:20'), +(7592,280,2,8319,'0.99','2005-07-29 03:44:52','2006-02-15 22:15:20'), +(7593,280,1,8365,'0.99','2005-07-29 05:11:00','2006-02-15 22:15:20'), +(7594,280,1,8565,'7.99','2005-07-29 11:35:23','2006-02-15 22:15:20'), +(7595,280,2,8695,'6.99','2005-07-29 16:44:55','2006-02-15 22:15:21'), +(7596,280,2,8744,'3.99','2005-07-29 18:58:24','2006-02-15 22:15:21'), +(7597,280,1,8912,'0.99','2005-07-30 01:31:25','2006-02-15 22:15:21'), +(7598,280,2,9103,'0.99','2005-07-30 08:49:26','2006-02-15 22:15:21'), +(7599,280,1,10847,'9.99','2005-08-01 23:49:33','2006-02-15 22:15:21'), +(7600,280,1,11366,'4.99','2005-08-02 18:01:25','2006-02-15 22:15:21'), +(7601,280,1,11517,'2.99','2005-08-16 23:56:28','2006-02-15 22:15:21'), +(7602,280,1,12053,'4.99','2005-08-17 20:57:27','2006-02-15 22:15:21'), +(7603,280,1,12849,'5.99','2005-08-19 02:05:37','2006-02-15 22:15:21'), +(7604,280,2,13231,'9.99','2005-08-19 16:12:49','2006-02-15 22:15:21'), +(7605,280,1,13321,'4.99','2005-08-19 19:40:37','2006-02-15 22:15:21'), +(7606,280,1,13667,'4.99','2005-08-20 08:25:34','2006-02-15 22:15:21'), +(7607,280,2,15036,'2.99','2005-08-22 09:36:00','2006-02-15 22:15:21'), +(7608,280,1,15312,'4.99','2005-08-22 19:58:15','2006-02-15 22:15:21'), +(7609,280,2,15554,'5.99','2005-08-23 04:48:12','2006-02-15 22:15:21'), +(7610,280,2,15950,'5.99','2005-08-23 19:09:39','2006-02-15 22:15:22'), +(7611,281,2,650,'2.99','2005-05-28 19:45:40','2006-02-15 22:15:22'), +(7612,281,2,754,'2.99','2005-05-29 10:18:59','2006-02-15 22:15:22'), +(7613,281,2,1485,'5.99','2005-06-15 21:24:10','2006-02-15 22:15:22'), +(7614,281,1,2254,'5.99','2005-06-18 05:15:14','2006-02-15 22:15:22'), +(7615,281,1,4607,'0.99','2005-07-08 07:15:14','2006-02-15 22:15:22'), +(7616,281,2,4864,'6.99','2005-07-08 19:05:34','2006-02-15 22:15:22'), +(7617,281,2,5410,'5.99','2005-07-09 20:21:10','2006-02-15 22:15:22'), +(7618,281,2,6825,'0.99','2005-07-12 18:28:12','2006-02-15 22:15:22'), +(7619,281,2,7034,'2.99','2005-07-27 03:03:37','2006-02-15 22:15:22'), +(7620,281,1,7525,'3.99','2005-07-27 21:13:28','2006-02-15 22:15:22'), +(7621,281,2,8131,'0.99','2005-07-28 19:55:21','2006-02-15 22:15:22'), +(7622,281,2,8180,'4.99','2005-07-28 22:05:24','2006-02-15 22:15:22'), +(7623,281,1,13641,'2.99','2005-08-20 07:34:42','2006-02-15 22:15:22'), +(7624,281,1,14196,'1.99','2005-08-21 03:40:40','2006-02-15 22:15:22'), +(7625,282,2,48,'1.99','2005-05-25 06:20:46','2006-02-15 22:15:22'), +(7626,282,2,282,'6.99','2005-05-26 18:56:26','2006-02-15 22:15:22'), +(7627,282,2,564,'0.99','2005-05-28 09:12:09','2006-02-15 22:15:22'), +(7628,282,1,2016,'2.99','2005-06-17 12:18:36','2006-02-15 22:15:22'), +(7629,282,2,2176,'2.99','2005-06-18 00:29:51','2006-02-15 22:15:22'), +(7630,282,2,3408,'4.99','2005-06-21 16:15:11','2006-02-15 22:15:22'), +(7631,282,1,3417,'2.99','2005-06-21 17:06:20','2006-02-15 22:15:22'), +(7632,282,2,3675,'2.99','2005-07-06 09:09:19','2006-02-15 22:15:22'), +(7633,282,1,3885,'2.99','2005-07-06 18:43:43','2006-02-15 22:15:22'), +(7634,282,1,4359,'2.99','2005-07-07 19:30:20','2006-02-15 22:15:22'), +(7635,282,2,4412,'4.99','2005-07-07 21:56:53','2006-02-15 22:15:22'), +(7636,282,1,5113,'0.99','2005-07-09 07:06:18','2006-02-15 22:15:23'), +(7637,282,2,5319,'8.99','2005-07-09 16:17:44','2006-02-15 22:15:23'), +(7638,282,1,5926,'6.99','2005-07-10 21:53:42','2006-02-15 22:15:23'), +(7639,282,1,7433,'2.99','2005-07-27 17:32:20','2006-02-15 22:15:23'), +(7640,282,2,7534,'3.99','2005-07-27 21:26:17','2006-02-15 22:15:23'), +(7641,282,1,8223,'6.99','2005-07-28 23:56:01','2006-02-15 22:15:23'), +(7642,282,2,8270,'4.99','2005-07-29 01:27:22','2006-02-15 22:15:23'), +(7643,282,2,8468,'1.99','2005-07-29 08:26:04','2006-02-15 22:15:23'), +(7644,282,2,8743,'0.99','2005-07-29 18:57:01','2006-02-15 22:15:23'), +(7645,282,2,8973,'1.99','2005-07-30 04:09:13','2006-02-15 22:15:23'), +(7646,282,2,9658,'9.99','2005-07-31 06:00:52','2006-02-15 22:15:23'), +(7647,282,2,11226,'2.99','2005-08-02 12:47:30','2006-02-15 22:15:23'), +(7648,282,1,13278,'2.99','2005-08-19 17:57:53','2006-02-15 22:15:23'), +(7649,282,2,13749,'2.99','2005-08-20 11:00:37','2006-02-15 22:15:23'), +(7650,282,2,15543,'4.99','2005-08-23 04:15:41','2006-02-15 22:15:23'), +(7651,282,2,15430,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:23'), +(7652,283,1,1749,'0.99','2005-06-16 16:56:00','2006-02-15 22:15:23'), +(7653,283,2,1796,'2.99','2005-06-16 20:10:43','2006-02-15 22:15:23'), +(7654,283,2,2333,'2.99','2005-06-18 10:55:54','2006-02-15 22:15:23'), +(7655,283,1,2685,'2.99','2005-06-19 12:35:21','2006-02-15 22:15:23'), +(7656,283,2,2849,'7.99','2005-06-19 23:06:00','2006-02-15 22:15:23'), +(7657,283,1,3534,'4.99','2005-07-06 01:32:27','2006-02-15 22:15:23'), +(7658,283,1,3568,'6.99','2005-07-06 03:11:57','2006-02-15 22:15:23'), +(7659,283,2,3590,'4.99','2005-07-06 04:35:12','2006-02-15 22:15:23'), +(7660,283,2,3672,'0.99','2005-07-06 09:01:56','2006-02-15 22:15:23'), +(7661,283,2,4683,'2.99','2005-07-08 10:38:28','2006-02-15 22:15:23'), +(7662,283,2,4876,'1.99','2005-07-08 19:27:50','2006-02-15 22:15:24'), +(7663,283,2,5989,'2.99','2005-07-11 00:57:53','2006-02-15 22:15:24'), +(7664,283,1,6075,'0.99','2005-07-11 05:03:03','2006-02-15 22:15:24'), +(7665,283,1,6300,'1.99','2005-07-11 17:50:09','2006-02-15 22:15:24'), +(7666,283,2,6313,'0.99','2005-07-11 18:29:52','2006-02-15 22:15:24'), +(7667,283,1,6827,'4.99','2005-07-12 18:33:45','2006-02-15 22:15:24'), +(7668,283,1,7504,'0.99','2005-07-27 20:24:31','2006-02-15 22:15:24'), +(7669,283,1,7816,'0.99','2005-07-28 08:14:12','2006-02-15 22:15:24'), +(7670,283,2,9353,'4.99','2005-07-30 18:30:37','2006-02-15 22:15:24'), +(7671,283,2,9478,'2.99','2005-07-30 23:12:53','2006-02-15 22:15:24'), +(7672,283,2,9572,'2.99','2005-07-31 02:44:10','2006-02-15 22:15:24'), +(7673,283,2,9918,'2.99','2005-07-31 14:55:22','2006-02-15 22:15:24'), +(7674,283,1,11637,'0.99','2005-08-17 04:36:39','2006-02-15 22:15:24'), +(7675,283,2,11846,'2.99','2005-08-17 13:18:29','2006-02-15 22:15:24'), +(7676,283,2,11966,'0.99','2005-08-17 17:40:04','2006-02-15 22:15:24'), +(7677,283,1,12290,'6.99','2005-08-18 05:08:03','2006-02-15 22:15:24'), +(7678,283,1,13229,'2.99','2005-08-19 16:08:33','2006-02-15 22:15:24'), +(7679,283,1,15837,'2.99','2005-08-23 15:29:41','2006-02-15 22:15:24'), +(7680,284,2,423,'0.99','2005-05-27 15:32:57','2006-02-15 22:15:24'), +(7681,284,2,791,'0.99','2005-05-29 16:30:42','2006-02-15 22:15:24'), +(7682,284,1,1145,'6.99','2005-05-31 20:13:45','2006-02-15 22:15:24'), +(7683,284,1,1171,'0.99','2005-06-14 23:50:11','2006-02-15 22:15:24'), +(7684,284,2,2813,'6.99','2005-06-19 20:01:47','2006-02-15 22:15:24'), +(7685,284,2,3296,'0.99','2005-06-21 07:04:53','2006-02-15 22:15:24'), +(7686,284,1,3572,'0.99','2005-07-06 03:33:23','2006-02-15 22:15:24'), +(7687,284,2,4081,'2.99','2005-07-07 05:10:08','2006-02-15 22:15:24'), +(7688,284,1,4759,'7.99','2005-07-08 14:39:22','2006-02-15 22:15:24'), +(7689,284,2,4931,'7.99','2005-07-08 22:16:18','2006-02-15 22:15:25'), +(7690,284,1,5161,'6.99','2005-07-09 08:57:56','2006-02-15 22:15:25'), +(7691,284,1,6276,'5.99','2005-07-11 16:15:50','2006-02-15 22:15:25'), +(7692,284,2,6982,'2.99','2005-07-27 00:53:41','2006-02-15 22:15:25'), +(7693,284,1,7164,'6.99','2005-07-27 07:36:34','2006-02-15 22:15:25'), +(7694,284,1,7463,'4.99','2005-07-27 18:48:32','2006-02-15 22:15:25'), +(7695,284,2,7716,'8.99','2005-07-28 04:33:15','2006-02-15 22:15:25'), +(7696,284,1,8888,'2.99','2005-07-30 00:39:36','2006-02-15 22:15:25'), +(7697,284,1,9790,'0.99','2005-07-31 10:34:08','2006-02-15 22:15:25'), +(7698,284,1,10396,'7.99','2005-08-01 07:08:46','2006-02-15 22:15:25'), +(7699,284,1,10535,'4.99','2005-08-01 12:21:13','2006-02-15 22:15:25'), +(7700,284,2,12162,'3.99','2005-08-18 00:44:30','2006-02-15 22:15:25'), +(7701,284,1,14007,'5.99','2005-08-20 20:22:47','2006-02-15 22:15:25'), +(7702,284,1,14648,'4.99','2005-08-21 19:18:01','2006-02-15 22:15:25'), +(7703,284,2,14746,'4.99','2005-08-21 22:54:02','2006-02-15 22:15:25'), +(7704,284,1,14921,'4.99','2005-08-22 05:12:24','2006-02-15 22:15:25'), +(7705,284,2,15135,'3.99','2005-08-22 13:19:19','2006-02-15 22:15:25'), +(7706,284,1,12064,'5.98','2006-02-14 15:16:03','2006-02-15 22:15:25'), +(7707,284,2,12959,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:25'), +(7708,285,2,1161,'7.99','2005-06-14 23:07:08','2006-02-15 22:15:25'), +(7709,285,2,1302,'3.99','2005-06-15 09:48:37','2006-02-15 22:15:25'), +(7710,285,1,2249,'5.99','2005-06-18 05:03:08','2006-02-15 22:15:25'), +(7711,285,2,4007,'6.99','2005-07-07 00:26:05','2006-02-15 22:15:25'), +(7712,285,2,5112,'2.99','2005-07-09 07:04:04','2006-02-15 22:15:25'), +(7713,285,1,5683,'9.99','2005-07-10 08:52:13','2006-02-15 22:15:25'), +(7714,285,1,6010,'0.99','2005-07-11 01:52:28','2006-02-15 22:15:25'), +(7715,285,2,6083,'3.99','2005-07-11 05:12:49','2006-02-15 22:15:26'), +(7716,285,1,6094,'4.99','2005-07-11 05:54:42','2006-02-15 22:15:26'), +(7717,285,2,6333,'4.99','2005-07-11 19:20:16','2006-02-15 22:15:26'), +(7718,285,2,6644,'0.99','2005-07-12 10:39:39','2006-02-15 22:15:26'), +(7719,285,1,7211,'6.99','2005-07-27 09:20:00','2006-02-15 22:15:26'), +(7720,285,1,7452,'9.99','2005-07-27 18:26:39','2006-02-15 22:15:26'), +(7721,285,1,7745,'9.99','2005-07-28 05:46:28','2006-02-15 22:15:26'), +(7722,285,1,8154,'4.99','2005-07-28 20:56:18','2006-02-15 22:15:26'), +(7723,285,2,8466,'0.99','2005-07-29 08:24:47','2006-02-15 22:15:26'), +(7724,285,1,10493,'5.99','2005-08-01 10:43:12','2006-02-15 22:15:26'), +(7725,285,2,10628,'2.99','2005-08-01 15:33:19','2006-02-15 22:15:26'), +(7726,285,1,10641,'4.99','2005-08-01 15:44:57','2006-02-15 22:15:26'), +(7727,285,1,12027,'8.99','2005-08-17 20:01:12','2006-02-15 22:15:26'), +(7728,285,1,12444,'0.99','2005-08-18 10:53:12','2006-02-15 22:15:26'), +(7729,285,1,12449,'0.99','2005-08-18 11:03:04','2006-02-15 22:15:26'), +(7730,285,2,12687,'9.99','2005-08-18 19:57:39','2006-02-15 22:15:26'), +(7731,285,2,13102,'7.99','2005-08-19 11:02:03','2006-02-15 22:15:26'), +(7732,285,2,15251,'0.99','2005-08-22 18:03:57','2006-02-15 22:15:26'), +(7733,285,1,15489,'4.99','2005-08-23 02:06:41','2006-02-15 22:15:26'), +(7734,286,2,81,'6.99','2005-05-25 12:15:19','2006-02-15 22:15:26'), +(7735,286,1,1690,'8.99','2005-06-16 12:24:18','2006-02-15 22:15:26'), +(7736,286,1,2195,'4.99','2005-06-18 01:44:46','2006-02-15 22:15:26'), +(7737,286,2,3592,'4.99','2005-07-06 04:38:50','2006-02-15 22:15:26'), +(7738,286,2,3692,'3.99','2005-07-06 09:54:12','2006-02-15 22:15:26'), +(7739,286,2,4242,'6.99','2005-07-07 13:39:01','2006-02-15 22:15:26'), +(7740,286,2,4461,'9.99','2005-07-07 23:59:43','2006-02-15 22:15:26'), +(7741,286,1,4707,'4.99','2005-07-08 11:57:28','2006-02-15 22:15:26'), +(7742,286,1,4894,'2.99','2005-07-08 20:21:31','2006-02-15 22:15:27'), +(7743,286,1,5796,'4.99','2005-07-10 14:42:54','2006-02-15 22:15:27'), +(7744,286,2,6611,'2.99','2005-07-12 08:20:23','2006-02-15 22:15:27'), +(7745,286,1,7254,'2.99','2005-07-27 10:48:50','2006-02-15 22:15:27'), +(7746,286,1,7299,'2.99','2005-07-27 12:49:56','2006-02-15 22:15:27'), +(7747,286,1,7368,'0.99','2005-07-27 15:06:05','2006-02-15 22:15:27'), +(7748,286,1,7422,'2.99','2005-07-27 17:10:42','2006-02-15 22:15:27'), +(7749,286,1,7719,'6.99','2005-07-28 04:39:09','2006-02-15 22:15:27'), +(7750,286,2,8399,'0.99','2005-07-29 06:20:18','2006-02-15 22:15:27'), +(7751,286,2,9280,'6.99','2005-07-30 15:15:38','2006-02-15 22:15:27'), +(7752,286,1,9809,'3.99','2005-07-31 11:19:21','2006-02-15 22:15:27'), +(7753,286,2,10105,'5.99','2005-07-31 20:54:20','2006-02-15 22:15:27'), +(7754,286,2,11670,'0.99','2005-08-17 05:48:59','2006-02-15 22:15:27'), +(7755,286,2,12595,'0.99','2005-08-18 16:27:08','2006-02-15 22:15:27'), +(7756,286,1,12656,'0.99','2005-08-18 18:58:35','2006-02-15 22:15:27'), +(7757,286,2,13635,'5.99','2005-08-20 07:17:35','2006-02-15 22:15:27'), +(7758,286,1,13975,'4.99','2005-08-20 18:58:23','2006-02-15 22:15:27'), +(7759,286,1,14905,'0.99','2005-08-22 04:34:22','2006-02-15 22:15:27'), +(7760,286,2,15629,'4.99','2005-08-23 07:28:22','2006-02-15 22:15:27'), +(7761,287,2,498,'0.99','2005-05-28 01:01:21','2006-02-15 22:15:27'), +(7762,287,1,655,'2.99','2005-05-28 20:16:20','2006-02-15 22:15:27'), +(7763,287,2,964,'2.99','2005-05-30 18:53:21','2006-02-15 22:15:27'), +(7764,287,1,1247,'7.99','2005-06-15 05:16:40','2006-02-15 22:15:27'), +(7765,287,2,1642,'2.99','2005-06-16 08:54:15','2006-02-15 22:15:27'), +(7766,287,2,2286,'9.99','2005-06-18 07:02:32','2006-02-15 22:15:27'), +(7767,287,2,2612,'6.99','2005-06-19 07:19:41','2006-02-15 22:15:27'), +(7768,287,2,4877,'4.99','2005-07-08 19:31:02','2006-02-15 22:15:28'), +(7769,287,2,5346,'1.99','2005-07-09 17:29:01','2006-02-15 22:15:28'), +(7770,287,1,5593,'3.99','2005-07-10 04:33:13','2006-02-15 22:15:28'), +(7771,287,2,5761,'0.99','2005-07-10 12:45:36','2006-02-15 22:15:28'), +(7772,287,2,6379,'3.99','2005-07-11 21:51:25','2006-02-15 22:15:28'), +(7773,287,1,6397,'2.99','2005-07-11 22:34:02','2006-02-15 22:15:28'), +(7774,287,2,7402,'2.99','2005-07-27 16:19:40','2006-02-15 22:15:28'), +(7775,287,2,7777,'2.99','2005-07-28 07:04:42','2006-02-15 22:15:28'), +(7776,287,2,8994,'6.99','2005-07-30 04:51:32','2006-02-15 22:15:28'), +(7777,287,2,9716,'1.99','2005-07-31 08:23:53','2006-02-15 22:15:28'), +(7778,287,1,10027,'6.99','2005-07-31 18:33:51','2006-02-15 22:15:28'), +(7779,287,2,10574,'2.99','2005-08-01 13:36:51','2006-02-15 22:15:28'), +(7780,287,2,10807,'4.99','2005-08-01 22:26:10','2006-02-15 22:15:28'), +(7781,287,2,11106,'4.99','2005-08-02 08:17:38','2006-02-15 22:15:28'), +(7782,287,1,11716,'4.99','2005-08-17 07:40:55','2006-02-15 22:15:28'), +(7783,287,2,12861,'2.99','2005-08-19 02:30:24','2006-02-15 22:15:28'), +(7784,287,2,14715,'6.99','2005-08-21 21:28:18','2006-02-15 22:15:28'), +(7785,287,2,15076,'1.99','2005-08-22 11:05:34','2006-02-15 22:15:28'), +(7786,287,1,15084,'4.99','2005-08-22 11:17:59','2006-02-15 22:15:28'), +(7787,287,2,15127,'0.99','2005-08-22 12:56:29','2006-02-15 22:15:28'), +(7788,287,1,15614,'2.99','2005-08-23 07:05:15','2006-02-15 22:15:28'), +(7789,287,2,14204,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:28'), +(7790,288,2,93,'3.99','2005-05-25 15:54:16','2006-02-15 22:15:28'), +(7791,288,2,427,'6.99','2005-05-27 16:10:04','2006-02-15 22:15:28'), +(7792,288,1,503,'4.99','2005-05-28 01:35:25','2006-02-15 22:15:28'), +(7793,288,2,565,'5.99','2005-05-28 09:26:31','2006-02-15 22:15:28'), +(7794,288,1,1466,'5.99','2005-06-15 20:46:04','2006-02-15 22:15:29'), +(7795,288,1,3958,'3.99','2005-07-06 22:07:33','2006-02-15 22:15:29'), +(7796,288,1,4692,'2.99','2005-07-08 11:07:06','2006-02-15 22:15:29'), +(7797,288,2,4758,'0.99','2005-07-08 14:38:02','2006-02-15 22:15:29'), +(7798,288,1,6399,'2.99','2005-07-11 22:39:05','2006-02-15 22:15:29'), +(7799,288,2,6518,'3.99','2005-07-12 03:59:42','2006-02-15 22:15:29'), +(7800,288,2,7744,'0.99','2005-07-28 05:38:20','2006-02-15 22:15:29'), +(7801,288,2,7855,'2.99','2005-07-28 09:43:02','2006-02-15 22:15:29'), +(7802,288,2,9429,'2.99','2005-07-30 21:19:26','2006-02-15 22:15:29'), +(7803,288,1,9732,'0.99','2005-07-31 08:56:08','2006-02-15 22:15:29'), +(7804,288,1,10927,'9.99','2005-08-02 02:31:15','2006-02-15 22:15:29'), +(7805,288,2,11952,'2.99','2005-08-17 17:14:57','2006-02-15 22:15:29'), +(7806,288,1,12134,'1.99','2005-08-17 23:49:43','2006-02-15 22:15:29'), +(7807,288,1,13219,'2.99','2005-08-19 15:40:28','2006-02-15 22:15:29'), +(7808,288,1,13227,'0.99','2005-08-19 16:05:38','2006-02-15 22:15:29'), +(7809,288,2,13363,'2.99','2005-08-19 21:07:59','2006-02-15 22:15:29'), +(7810,288,2,14113,'0.99','2005-08-21 01:03:30','2006-02-15 22:15:29'), +(7811,288,2,14756,'0.99','2005-08-21 23:21:23','2006-02-15 22:15:29'), +(7812,288,2,15058,'2.99','2005-08-22 10:20:55','2006-02-15 22:15:29'), +(7813,288,1,15119,'2.99','2005-08-22 12:41:33','2006-02-15 22:15:29'), +(7814,289,2,1880,'4.99','2005-06-17 03:08:59','2006-02-15 22:15:29'), +(7815,289,2,2316,'0.99','2005-06-18 09:04:59','2006-02-15 22:15:29'), +(7816,289,1,2387,'6.99','2005-06-18 15:24:19','2006-02-15 22:15:29'), +(7817,289,1,2784,'10.99','2005-06-19 18:40:29','2006-02-15 22:15:29'), +(7818,289,2,2948,'6.99','2005-06-20 06:02:35','2006-02-15 22:15:29'), +(7819,289,2,3123,'6.99','2005-06-20 18:26:14','2006-02-15 22:15:29'), +(7820,289,1,3588,'2.99','2005-07-06 04:29:13','2006-02-15 22:15:30'), +(7821,289,2,4622,'0.99','2005-07-08 08:02:42','2006-02-15 22:15:30'), +(7822,289,1,5089,'4.99','2005-07-09 05:45:40','2006-02-15 22:15:30'), +(7823,289,2,5342,'8.99','2005-07-09 17:20:03','2006-02-15 22:15:30'), +(7824,289,2,5584,'4.99','2005-07-10 04:15:25','2006-02-15 22:15:30'), +(7825,289,2,5724,'0.99','2005-07-10 11:18:12','2006-02-15 22:15:30'), +(7826,289,2,6007,'3.99','2005-07-11 01:43:06','2006-02-15 22:15:30'), +(7827,289,2,6536,'7.99','2005-07-12 04:44:25','2006-02-15 22:15:30'), +(7828,289,1,7151,'4.99','2005-07-27 07:14:31','2006-02-15 22:15:30'), +(7829,289,1,7162,'4.99','2005-07-27 07:32:45','2006-02-15 22:15:30'), +(7830,289,2,7325,'0.99','2005-07-27 13:46:55','2006-02-15 22:15:30'), +(7831,289,1,9498,'2.99','2005-07-30 23:56:55','2006-02-15 22:15:30'), +(7832,289,2,10297,'7.99','2005-08-01 04:05:04','2006-02-15 22:15:30'), +(7833,289,1,12158,'1.99','2005-08-18 00:34:20','2006-02-15 22:15:30'), +(7834,289,1,12170,'0.99','2005-08-18 01:06:10','2006-02-15 22:15:30'), +(7835,289,2,12558,'7.99','2005-08-18 14:52:35','2006-02-15 22:15:30'), +(7836,289,2,13165,'0.99','2005-08-19 13:34:10','2006-02-15 22:15:30'), +(7837,289,2,13211,'0.99','2005-08-19 15:23:41','2006-02-15 22:15:30'), +(7838,289,2,13256,'9.99','2005-08-19 16:54:12','2006-02-15 22:15:30'), +(7839,289,2,13336,'5.99','2005-08-19 20:03:22','2006-02-15 22:15:30'), +(7840,289,2,13891,'6.99','2005-08-20 15:42:05','2006-02-15 22:15:30'), +(7841,289,1,14087,'0.99','2005-08-20 23:53:40','2006-02-15 22:15:30'), +(7842,289,2,14729,'4.99','2005-08-21 22:16:57','2006-02-15 22:15:30'), +(7843,289,2,14917,'4.99','2005-08-22 05:03:59','2006-02-15 22:15:30'), +(7844,290,1,160,'2.99','2005-05-26 01:46:20','2006-02-15 22:15:30'), +(7845,290,1,1220,'6.99','2005-06-15 03:26:15','2006-02-15 22:15:30'), +(7846,290,2,1336,'8.99','2005-06-15 12:01:34','2006-02-15 22:15:31'), +(7847,290,2,1496,'4.99','2005-06-15 21:55:58','2006-02-15 22:15:31'), +(7848,290,2,1532,'0.99','2005-06-16 00:41:31','2006-02-15 22:15:31'), +(7849,290,1,3013,'3.99','2005-06-20 10:45:09','2006-02-15 22:15:31'), +(7850,290,2,4039,'4.99','2005-07-07 02:57:59','2006-02-15 22:15:31'), +(7851,290,1,4073,'0.99','2005-07-07 04:49:13','2006-02-15 22:15:31'), +(7852,290,2,4416,'0.99','2005-07-07 22:04:36','2006-02-15 22:15:31'), +(7853,290,1,5105,'2.99','2005-07-09 06:38:59','2006-02-15 22:15:31'), +(7854,290,2,5214,'5.99','2005-07-09 11:43:08','2006-02-15 22:15:31'), +(7855,290,2,5827,'2.99','2005-07-10 16:22:20','2006-02-15 22:15:31'), +(7856,290,2,6816,'4.99','2005-07-12 18:18:50','2006-02-15 22:15:31'), +(7857,290,1,6952,'4.99','2005-07-26 23:51:27','2006-02-15 22:15:31'), +(7858,290,2,7265,'2.99','2005-07-27 11:19:01','2006-02-15 22:15:31'), +(7859,290,1,7650,'1.99','2005-07-28 01:47:20','2006-02-15 22:15:31'), +(7860,290,1,8639,'4.99','2005-07-29 14:30:31','2006-02-15 22:15:31'), +(7861,290,1,9000,'7.99','2005-07-30 04:58:55','2006-02-15 22:15:31'), +(7862,290,1,9413,'0.99','2005-07-30 20:44:39','2006-02-15 22:15:31'), +(7863,290,2,10096,'3.99','2005-07-31 20:38:58','2006-02-15 22:15:31'), +(7864,290,1,10194,'1.99','2005-08-01 00:33:52','2006-02-15 22:15:31'), +(7865,290,1,10901,'2.99','2005-08-02 01:35:44','2006-02-15 22:15:31'), +(7866,290,1,11596,'6.99','2005-08-17 02:53:55','2006-02-15 22:15:31'), +(7867,290,2,12193,'3.99','2005-08-18 02:03:59','2006-02-15 22:15:31'), +(7868,290,2,12778,'4.99','2005-08-18 23:40:23','2006-02-15 22:15:31'), +(7869,290,2,13190,'1.99','2005-08-19 14:27:59','2006-02-15 22:15:31'), +(7870,290,1,13367,'2.99','2005-08-19 21:19:27','2006-02-15 22:15:31'), +(7871,290,2,13687,'2.99','2005-08-20 08:57:51','2006-02-15 22:15:31'), +(7872,291,1,54,'4.99','2005-05-25 07:23:25','2006-02-15 22:15:32'), +(7873,291,2,747,'4.99','2005-05-29 09:26:34','2006-02-15 22:15:32'), +(7874,291,1,1012,'2.99','2005-05-31 02:18:05','2006-02-15 22:15:32'), +(7875,291,1,1191,'2.99','2005-06-15 01:10:35','2006-02-15 22:15:32'), +(7876,291,1,2300,'2.99','2005-06-18 08:22:34','2006-02-15 22:15:32'), +(7877,291,2,3042,'2.99','2005-06-20 12:38:27','2006-02-15 22:15:32'), +(7878,291,2,3512,'4.99','2005-07-06 00:43:06','2006-02-15 22:15:32'), +(7879,291,2,4862,'3.99','2005-07-08 19:02:46','2006-02-15 22:15:32'), +(7880,291,2,5754,'2.99','2005-07-10 12:32:43','2006-02-15 22:15:32'), +(7881,291,2,6516,'4.99','2005-07-12 03:51:54','2006-02-15 22:15:32'), +(7882,291,1,6796,'2.99','2005-07-12 16:44:16','2006-02-15 22:15:32'), +(7883,291,1,7561,'5.99','2005-07-27 22:21:05','2006-02-15 22:15:32'), +(7884,291,2,7564,'0.99','2005-07-27 22:31:17','2006-02-15 22:15:32'), +(7885,291,1,8690,'0.99','2005-07-29 16:39:28','2006-02-15 22:15:32'), +(7886,291,2,8697,'4.99','2005-07-29 16:46:07','2006-02-15 22:15:32'), +(7887,291,1,9165,'5.99','2005-07-30 11:24:28','2006-02-15 22:15:32'), +(7888,291,2,9201,'5.99','2005-07-30 12:42:21','2006-02-15 22:15:32'), +(7889,291,2,9919,'7.99','2005-07-31 14:55:46','2006-02-15 22:15:32'), +(7890,291,1,10463,'4.99','2005-08-01 09:39:43','2006-02-15 22:15:32'), +(7891,291,2,11145,'0.99','2005-08-02 09:43:24','2006-02-15 22:15:32'), +(7892,291,1,13665,'5.99','2005-08-20 08:19:20','2006-02-15 22:15:32'), +(7893,291,2,14241,'4.99','2005-08-21 05:24:55','2006-02-15 22:15:32'), +(7894,291,2,15663,'3.99','2005-08-23 08:54:26','2006-02-15 22:15:32'), +(7895,292,1,324,'0.99','2005-05-27 01:00:04','2006-02-15 22:15:32'), +(7896,292,1,1901,'3.99','2005-06-17 04:35:19','2006-02-15 22:15:32'), +(7897,292,2,2258,'3.99','2005-06-18 05:30:36','2006-02-15 22:15:32'), +(7898,292,1,2838,'3.99','2005-06-19 22:06:06','2006-02-15 22:15:33'), +(7899,292,2,3328,'2.99','2005-06-21 09:08:44','2006-02-15 22:15:33'), +(7900,292,2,3557,'0.99','2005-07-06 02:48:39','2006-02-15 22:15:33'), +(7901,292,1,4200,'4.99','2005-07-07 11:15:11','2006-02-15 22:15:33'), +(7902,292,2,5095,'4.99','2005-07-09 06:08:22','2006-02-15 22:15:33'), +(7903,292,2,5257,'0.99','2005-07-09 13:56:43','2006-02-15 22:15:33'), +(7904,292,1,5940,'4.99','2005-07-10 22:31:01','2006-02-15 22:15:33'), +(7905,292,1,6270,'8.99','2005-07-11 15:59:10','2006-02-15 22:15:33'), +(7906,292,1,6900,'6.99','2005-07-12 21:45:25','2006-02-15 22:15:33'), +(7907,292,2,7199,'5.99','2005-07-27 08:53:23','2006-02-15 22:15:33'), +(7908,292,1,7216,'2.99','2005-07-27 09:27:45','2006-02-15 22:15:33'), +(7909,292,1,7545,'2.99','2005-07-27 21:48:03','2006-02-15 22:15:33'), +(7910,292,1,7766,'4.99','2005-07-28 06:41:57','2006-02-15 22:15:33'), +(7911,292,1,8047,'2.99','2005-07-28 16:49:43','2006-02-15 22:15:33'), +(7912,292,2,8842,'4.99','2005-07-29 23:03:40','2006-02-15 22:15:33'), +(7913,292,1,8990,'8.99','2005-07-30 04:41:42','2006-02-15 22:15:33'), +(7914,292,1,9792,'5.99','2005-07-31 10:43:41','2006-02-15 22:15:33'), +(7915,292,2,9819,'1.99','2005-07-31 11:39:13','2006-02-15 22:15:33'), +(7916,292,1,11193,'4.99','2005-08-02 11:31:33','2006-02-15 22:15:33'), +(7917,292,1,12739,'10.99','2005-08-18 22:15:18','2006-02-15 22:15:33'), +(7918,292,1,13715,'2.99','2005-08-20 09:43:06','2006-02-15 22:15:33'), +(7919,292,1,14499,'0.99','2005-08-21 14:11:19','2006-02-15 22:15:33'), +(7920,292,2,14845,'4.99','2005-08-22 02:12:44','2006-02-15 22:15:33'), +(7921,292,1,15117,'2.99','2005-08-22 12:38:20','2006-02-15 22:15:33'), +(7922,293,2,445,'0.99','2005-05-27 18:42:57','2006-02-15 22:15:33'), +(7923,293,1,924,'4.99','2005-05-30 12:10:59','2006-02-15 22:15:33'), +(7924,293,2,1034,'8.99','2005-05-31 04:53:40','2006-02-15 22:15:34'), +(7925,293,1,1589,'9.99','2005-06-16 04:58:03','2006-02-15 22:15:34'), +(7926,293,1,1829,'5.99','2005-06-16 22:14:21','2006-02-15 22:15:34'), +(7927,293,2,1860,'4.99','2005-06-17 01:17:12','2006-02-15 22:15:34'), +(7928,293,1,2386,'4.99','2005-06-18 15:22:51','2006-02-15 22:15:34'), +(7929,293,2,3025,'2.99','2005-06-20 11:46:48','2006-02-15 22:15:34'), +(7930,293,1,3290,'1.99','2005-06-21 06:45:34','2006-02-15 22:15:34'), +(7931,293,2,3452,'4.99','2005-06-21 21:11:27','2006-02-15 22:15:34'), +(7932,293,1,3906,'3.99','2005-07-06 19:35:55','2006-02-15 22:15:34'), +(7933,293,2,4343,'0.99','2005-07-07 18:48:54','2006-02-15 22:15:34'), +(7934,293,2,4542,'4.99','2005-07-08 04:06:30','2006-02-15 22:15:34'), +(7935,293,2,4944,'6.99','2005-07-08 22:44:28','2006-02-15 22:15:34'), +(7936,293,2,5765,'3.99','2005-07-10 13:03:02','2006-02-15 22:15:34'), +(7937,293,1,6432,'9.99','2005-07-12 00:09:41','2006-02-15 22:15:34'), +(7938,293,2,7607,'4.99','2005-07-28 00:05:53','2006-02-15 22:15:34'), +(7939,293,1,8589,'4.99','2005-07-29 12:28:17','2006-02-15 22:15:34'), +(7940,293,1,8745,'2.99','2005-07-29 19:03:05','2006-02-15 22:15:34'), +(7941,293,2,9123,'2.99','2005-07-30 09:39:15','2006-02-15 22:15:34'), +(7942,293,2,11131,'1.99','2005-08-02 09:10:04','2006-02-15 22:15:34'), +(7943,293,1,11576,'2.99','2005-08-17 01:53:20','2006-02-15 22:15:34'), +(7944,293,2,13013,'6.99','2005-08-19 07:55:51','2006-02-15 22:15:34'), +(7945,293,1,13029,'2.99','2005-08-19 08:28:04','2006-02-15 22:15:34'), +(7946,293,2,13504,'5.99','2005-08-20 02:01:48','2006-02-15 22:15:34'), +(7947,293,1,13817,'4.99','2005-08-20 13:15:30','2006-02-15 22:15:34'), +(7948,293,1,14248,'6.99','2005-08-21 05:35:57','2006-02-15 22:15:34'), +(7949,293,1,15258,'4.99','2005-08-22 18:22:44','2006-02-15 22:15:35'), +(7950,293,1,15402,'8.99','2005-08-22 23:17:41','2006-02-15 22:15:35'), +(7951,293,1,15508,'7.99','2005-08-23 02:49:04','2006-02-15 22:15:35'), +(7952,293,2,15675,'5.99','2005-08-23 09:18:52','2006-02-15 22:15:35'), +(7953,294,1,595,'1.99','2005-05-28 13:59:54','2006-02-15 22:15:35'), +(7954,294,1,2900,'2.99','2005-06-20 02:40:04','2006-02-15 22:15:35'), +(7955,294,2,3330,'2.99','2005-06-21 09:22:37','2006-02-15 22:15:35'), +(7956,294,1,3681,'4.99','2005-07-06 09:19:30','2006-02-15 22:15:35'), +(7957,294,2,4019,'4.99','2005-07-07 01:27:44','2006-02-15 22:15:35'), +(7958,294,1,4786,'7.99','2005-07-08 16:13:05','2006-02-15 22:15:35'), +(7959,294,2,6185,'5.99','2005-07-11 11:25:09','2006-02-15 22:15:35'), +(7960,294,2,7415,'6.99','2005-07-27 16:50:59','2006-02-15 22:15:35'), +(7961,294,1,7765,'4.99','2005-07-28 06:40:33','2006-02-15 22:15:35'), +(7962,294,2,8843,'4.99','2005-07-29 23:04:25','2006-02-15 22:15:35'), +(7963,294,2,9194,'2.99','2005-07-30 12:28:45','2006-02-15 22:15:35'), +(7964,294,1,9522,'2.99','2005-07-31 00:55:11','2006-02-15 22:15:35'), +(7965,294,2,9607,'0.99','2005-07-31 03:51:06','2006-02-15 22:15:35'), +(7966,294,2,10186,'0.99','2005-08-01 00:12:36','2006-02-15 22:15:35'), +(7967,294,2,10220,'4.99','2005-08-01 01:13:22','2006-02-15 22:15:35'), +(7968,294,1,10551,'6.99','2005-08-01 12:48:55','2006-02-15 22:15:35'), +(7969,294,2,10600,'2.99','2005-08-01 14:25:21','2006-02-15 22:15:35'), +(7970,294,2,10642,'4.99','2005-08-01 15:45:11','2006-02-15 22:15:35'), +(7971,294,2,11071,'2.99','2005-08-02 07:10:53','2006-02-15 22:15:35'), +(7972,294,1,11390,'2.99','2005-08-02 18:39:16','2006-02-15 22:15:35'), +(7973,294,2,11875,'4.99','2005-08-17 14:16:48','2006-02-15 22:15:35'), +(7974,294,2,11981,'2.99','2005-08-17 18:10:40','2006-02-15 22:15:35'), +(7975,294,1,12278,'5.99','2005-08-18 04:46:45','2006-02-15 22:15:36'), +(7976,294,1,14474,'2.99','2005-08-21 13:22:48','2006-02-15 22:15:36'), +(7977,294,2,14630,'7.99','2005-08-21 18:43:44','2006-02-15 22:15:36'), +(7978,294,1,15839,'5.99','2005-08-23 15:34:46','2006-02-15 22:15:36'), +(7979,295,2,371,'3.99','2005-05-27 08:08:18','2006-02-15 22:15:36'), +(7980,295,1,1184,'5.99','2005-06-15 00:49:36','2006-02-15 22:15:36'), +(7981,295,1,1328,'2.99','2005-06-15 11:23:27','2006-02-15 22:15:36'), +(7982,295,2,1935,'2.99','2005-06-17 07:14:15','2006-02-15 22:15:36'), +(7983,295,1,2054,'2.99','2005-06-17 15:26:37','2006-02-15 22:15:36'), +(7984,295,1,2431,'1.99','2005-06-18 17:53:03','2006-02-15 22:15:36'), +(7985,295,1,2638,'1.99','2005-06-19 09:23:30','2006-02-15 22:15:36'), +(7986,295,1,2999,'2.99','2005-06-20 09:30:34','2006-02-15 22:15:36'), +(7987,295,1,3198,'1.99','2005-06-21 00:08:54','2006-02-15 22:15:36'), +(7988,295,2,3394,'8.99','2005-06-21 15:17:39','2006-02-15 22:15:36'), +(7989,295,2,3496,'1.99','2005-07-05 23:59:15','2006-02-15 22:15:36'), +(7990,295,1,3876,'9.99','2005-07-06 18:21:13','2006-02-15 22:15:36'), +(7991,295,1,4164,'1.99','2005-07-07 09:20:11','2006-02-15 22:15:36'), +(7992,295,1,4432,'1.99','2005-07-07 22:40:02','2006-02-15 22:15:36'), +(7993,295,1,5019,'2.99','2005-07-09 02:04:32','2006-02-15 22:15:36'), +(7994,295,2,5053,'4.99','2005-07-09 03:59:46','2006-02-15 22:15:36'), +(7995,295,2,5283,'2.99','2005-07-09 15:07:17','2006-02-15 22:15:36'), +(7996,295,2,5994,'4.99','2005-07-11 01:14:10','2006-02-15 22:15:36'), +(7997,295,1,6252,'2.99','2005-07-11 15:06:29','2006-02-15 22:15:36'), +(7998,295,2,6331,'3.99','2005-07-11 19:17:21','2006-02-15 22:15:36'), +(7999,295,2,8087,'0.99','2005-07-28 18:21:16','2006-02-15 22:15:36'), +(8000,295,1,8108,'7.99','2005-07-28 19:07:38','2006-02-15 22:15:36'), +(8001,295,1,8840,'9.99','2005-07-29 22:55:38','2006-02-15 22:15:37'), +(8002,295,2,8932,'2.99','2005-07-30 02:31:26','2006-02-15 22:15:37'), +(8003,295,1,9425,'7.99','2005-07-30 21:11:21','2006-02-15 22:15:37'), +(8004,295,2,9692,'8.99','2005-07-31 07:11:04','2006-02-15 22:15:37'), +(8005,295,2,9793,'4.99','2005-07-31 10:45:11','2006-02-15 22:15:37'), +(8006,295,2,10160,'4.99','2005-07-31 23:07:40','2006-02-15 22:15:37'), +(8007,295,2,10222,'0.99','2005-08-01 01:17:42','2006-02-15 22:15:37'), +(8008,295,1,10349,'3.99','2005-08-01 05:27:13','2006-02-15 22:15:37'), +(8009,295,2,11083,'4.99','2005-08-02 07:32:01','2006-02-15 22:15:37'), +(8010,295,2,11913,'5.99','2005-08-17 15:53:17','2006-02-15 22:15:37'), +(8011,295,2,12041,'4.99','2005-08-17 20:34:33','2006-02-15 22:15:37'), +(8012,295,1,12383,'0.99','2005-08-18 08:36:03','2006-02-15 22:15:37'), +(8013,295,1,14264,'0.99','2005-08-21 06:18:22','2006-02-15 22:15:37'), +(8014,295,1,14387,'6.99','2005-08-21 10:10:01','2006-02-15 22:15:37'), +(8015,295,1,14514,'6.99','2005-08-21 14:51:52','2006-02-15 22:15:37'), +(8016,295,2,15735,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:37'), +(8017,296,2,162,'4.99','2005-05-26 02:02:05','2006-02-15 22:15:37'), +(8018,296,1,511,'5.99','2005-05-28 03:04:04','2006-02-15 22:15:37'), +(8019,296,1,869,'4.99','2005-05-30 04:22:06','2006-02-15 22:15:37'), +(8020,296,2,956,'2.99','2005-05-30 17:30:28','2006-02-15 22:15:37'), +(8021,296,2,1659,'4.99','2005-06-16 10:11:46','2006-02-15 22:15:37'), +(8022,296,1,3034,'0.99','2005-06-20 12:15:50','2006-02-15 22:15:37'), +(8023,296,2,3119,'0.99','2005-06-20 18:11:44','2006-02-15 22:15:37'), +(8024,296,2,3486,'7.99','2005-07-05 23:29:55','2006-02-15 22:15:37'), +(8025,296,1,3810,'2.99','2005-07-06 15:18:44','2006-02-15 22:15:37'), +(8026,296,1,4480,'4.99','2005-07-08 00:56:30','2006-02-15 22:15:38'), +(8027,296,2,5090,'0.99','2005-07-09 05:48:22','2006-02-15 22:15:38'), +(8028,296,1,5589,'4.99','2005-07-10 04:22:58','2006-02-15 22:15:38'), +(8029,296,2,6016,'4.99','2005-07-11 02:04:45','2006-02-15 22:15:38'), +(8030,296,1,6398,'5.99','2005-07-11 22:34:49','2006-02-15 22:15:38'), +(8031,296,1,6967,'6.99','2005-07-27 00:16:31','2006-02-15 22:15:38'), +(8032,296,2,7568,'4.99','2005-07-27 22:38:53','2006-02-15 22:15:38'), +(8033,296,2,8171,'0.99','2005-07-28 21:32:57','2006-02-15 22:15:38'), +(8034,296,1,9249,'5.99','2005-07-30 14:15:02','2006-02-15 22:15:38'), +(8035,296,1,9304,'2.99','2005-07-30 16:41:34','2006-02-15 22:15:38'), +(8036,296,2,11571,'4.99','2005-08-17 01:37:51','2006-02-15 22:15:38'), +(8037,296,2,11825,'4.99','2005-08-17 12:43:30','2006-02-15 22:15:38'), +(8038,296,2,12689,'3.99','2005-08-18 20:06:34','2006-02-15 22:15:38'), +(8039,296,2,13471,'2.99','2005-08-20 01:02:26','2006-02-15 22:15:38'), +(8040,296,1,13702,'2.99','2005-08-20 09:27:20','2006-02-15 22:15:38'), +(8041,296,1,13819,'4.99','2005-08-20 13:23:15','2006-02-15 22:15:38'), +(8042,296,1,13991,'1.99','2005-08-20 19:29:44','2006-02-15 22:15:38'), +(8043,296,2,14571,'7.99','2005-08-21 16:40:26','2006-02-15 22:15:38'), +(8044,296,2,15023,'2.99','2005-08-22 08:56:48','2006-02-15 22:15:38'), +(8045,296,2,15866,'7.99','2005-08-23 16:19:02','2006-02-15 22:15:38'), +(8046,296,1,12009,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:38'), +(8047,297,2,143,'0.99','2005-05-25 23:45:52','2006-02-15 22:15:38'), +(8048,297,1,954,'3.99','2005-05-30 16:57:29','2006-02-15 22:15:38'), +(8049,297,1,1409,'3.99','2005-06-15 16:58:12','2006-02-15 22:15:38'), +(8050,297,1,2067,'2.99','2005-06-17 16:11:08','2006-02-15 22:15:38'), +(8051,297,1,2202,'8.99','2005-06-18 02:09:24','2006-02-15 22:15:38'), +(8052,297,1,2260,'2.99','2005-06-18 05:38:36','2006-02-15 22:15:39'), +(8053,297,2,2339,'4.99','2005-06-18 11:29:22','2006-02-15 22:15:39'), +(8054,297,1,3582,'0.99','2005-07-06 04:10:35','2006-02-15 22:15:39'), +(8055,297,2,4621,'2.99','2005-07-08 08:02:18','2006-02-15 22:15:39'), +(8056,297,1,4929,'5.99','2005-07-08 22:06:18','2006-02-15 22:15:39'), +(8057,297,1,5743,'8.99','2005-07-10 11:57:38','2006-02-15 22:15:39'), +(8058,297,2,6036,'2.99','2005-07-11 03:02:28','2006-02-15 22:15:39'), +(8059,297,1,6064,'6.99','2005-07-11 04:23:18','2006-02-15 22:15:39'), +(8060,297,1,6156,'4.99','2005-07-11 09:45:48','2006-02-15 22:15:39'), +(8061,297,1,6984,'2.99','2005-07-27 00:56:30','2006-02-15 22:15:39'), +(8062,297,2,7867,'0.99','2005-07-28 10:08:54','2006-02-15 22:15:39'), +(8063,297,1,7933,'0.99','2005-07-28 12:27:27','2006-02-15 22:15:39'), +(8064,297,2,9014,'2.99','2005-07-30 05:19:27','2006-02-15 22:15:39'), +(8065,297,2,9674,'5.99','2005-07-31 06:36:53','2006-02-15 22:15:39'), +(8066,297,1,10153,'0.99','2005-07-31 22:30:10','2006-02-15 22:15:39'), +(8067,297,2,10264,'4.99','2005-08-01 03:03:12','2006-02-15 22:15:39'), +(8068,297,2,11269,'0.99','2005-08-02 14:11:41','2006-02-15 22:15:39'), +(8069,297,2,11413,'0.99','2005-08-02 19:35:19','2006-02-15 22:15:39'), +(8070,297,2,11585,'4.99','2005-08-17 02:14:36','2006-02-15 22:15:39'), +(8071,297,1,11780,'2.99','2005-08-17 10:34:24','2006-02-15 22:15:39'), +(8072,297,1,11784,'0.99','2005-08-17 10:48:05','2006-02-15 22:15:39'), +(8073,297,1,12472,'10.99','2005-08-18 11:58:48','2006-02-15 22:15:39'), +(8074,297,1,13330,'2.99','2005-08-19 19:59:21','2006-02-15 22:15:39'), +(8075,297,2,13721,'4.99','2005-08-20 10:02:59','2006-02-15 22:15:39'), +(8076,297,1,13888,'1.99','2005-08-20 15:39:42','2006-02-15 22:15:39'), +(8077,297,1,14403,'5.99','2005-08-21 10:40:34','2006-02-15 22:15:40'), +(8078,297,2,15582,'2.99','2005-08-23 05:45:44','2006-02-15 22:15:40'), +(8079,297,1,15711,'4.99','2005-08-23 10:43:00','2006-02-15 22:15:40'), +(8080,298,1,383,'3.99','2005-05-27 10:12:20','2006-02-15 22:15:40'), +(8081,298,2,1454,'4.99','2005-06-15 19:49:41','2006-02-15 22:15:40'), +(8082,298,2,2385,'3.99','2005-06-18 15:22:40','2006-02-15 22:15:40'), +(8083,298,2,3095,'4.99','2005-06-20 16:16:53','2006-02-15 22:15:40'), +(8084,298,2,3400,'4.99','2005-06-21 15:50:30','2006-02-15 22:15:40'), +(8085,298,2,3479,'0.99','2005-07-05 23:08:53','2006-02-15 22:15:40'), +(8086,298,1,3728,'2.99','2005-07-06 11:29:00','2006-02-15 22:15:40'), +(8087,298,2,4291,'2.99','2005-07-07 15:47:47','2006-02-15 22:15:40'), +(8088,298,1,4936,'3.99','2005-07-08 22:24:50','2006-02-15 22:15:40'), +(8089,298,2,5166,'2.99','2005-07-09 09:15:48','2006-02-15 22:15:40'), +(8090,298,1,5247,'2.99','2005-07-09 13:26:28','2006-02-15 22:15:40'), +(8091,298,2,6802,'0.99','2005-07-12 17:14:17','2006-02-15 22:15:40'), +(8092,298,2,7802,'0.99','2005-07-28 07:51:57','2006-02-15 22:15:40'), +(8093,298,1,7869,'7.99','2005-07-28 10:13:15','2006-02-15 22:15:40'), +(8094,298,2,8737,'5.99','2005-07-29 18:32:13','2006-02-15 22:15:40'), +(8095,298,2,10248,'6.99','2005-08-01 02:35:28','2006-02-15 22:15:40'), +(8096,298,1,11070,'0.99','2005-08-02 07:10:39','2006-02-15 22:15:40'), +(8097,298,2,11288,'6.99','2005-08-02 14:54:08','2006-02-15 22:15:40'), +(8098,298,2,12076,'0.99','2005-08-17 21:58:19','2006-02-15 22:15:40'), +(8099,298,1,12765,'8.99','2005-08-18 23:21:50','2006-02-15 22:15:40'), +(8100,298,1,13172,'0.99','2005-08-19 13:49:07','2006-02-15 22:15:40'), +(8101,298,1,13244,'4.99','2005-08-19 16:43:04','2006-02-15 22:15:40'), +(8102,298,2,14473,'0.99','2005-08-21 13:19:03','2006-02-15 22:15:41'), +(8103,298,1,15245,'3.99','2005-08-22 17:49:35','2006-02-15 22:15:41'), +(8104,298,2,15262,'4.99','2005-08-22 18:25:21','2006-02-15 22:15:41'), +(8105,298,1,15643,'4.99','2005-08-23 08:13:26','2006-02-15 22:15:41'), +(8106,299,1,332,'5.99','2005-05-27 02:27:10','2006-02-15 22:15:41'), +(8107,299,2,606,'8.99','2005-05-28 14:48:39','2006-02-15 22:15:41'), +(8108,299,1,1650,'8.99','2005-06-16 09:23:20','2006-02-15 22:15:41'), +(8109,299,2,2664,'4.99','2005-06-19 11:11:23','2006-02-15 22:15:41'), +(8110,299,1,2774,'2.99','2005-06-19 18:05:11','2006-02-15 22:15:41'), +(8111,299,2,2791,'4.99','2005-06-19 18:51:27','2006-02-15 22:15:41'), +(8112,299,1,3074,'0.99','2005-06-20 14:41:41','2006-02-15 22:15:41'), +(8113,299,2,3223,'2.99','2005-06-21 02:06:45','2006-02-15 22:15:41'), +(8114,299,1,3288,'5.99','2005-06-21 06:36:59','2006-02-15 22:15:41'), +(8115,299,2,3497,'0.99','2005-07-06 00:00:03','2006-02-15 22:15:41'), +(8116,299,2,4153,'5.99','2005-07-07 08:53:08','2006-02-15 22:15:41'), +(8117,299,1,4350,'2.99','2005-07-07 19:02:41','2006-02-15 22:15:41'), +(8118,299,2,5033,'1.99','2005-07-09 02:42:01','2006-02-15 22:15:41'), +(8119,299,1,5642,'2.99','2005-07-10 06:46:08','2006-02-15 22:15:41'), +(8120,299,2,6732,'0.99','2005-07-12 13:58:51','2006-02-15 22:15:41'), +(8121,299,1,6853,'7.99','2005-07-12 19:38:11','2006-02-15 22:15:41'), +(8122,299,1,7264,'4.99','2005-07-27 11:18:58','2006-02-15 22:15:41'), +(8123,299,1,7746,'2.99','2005-07-28 05:48:56','2006-02-15 22:15:41'), +(8124,299,2,7862,'9.99','2005-07-28 10:02:25','2006-02-15 22:15:41'), +(8125,299,1,9520,'2.99','2005-07-31 00:50:54','2006-02-15 22:15:41'), +(8126,299,1,10201,'0.99','2005-08-01 00:42:18','2006-02-15 22:15:41'), +(8127,299,2,10440,'2.99','2005-08-01 08:54:32','2006-02-15 22:15:41'), +(8128,299,1,11629,'6.99','2005-08-17 04:27:24','2006-02-15 22:15:42'), +(8129,299,1,11746,'5.99','2005-08-17 09:03:24','2006-02-15 22:15:42'), +(8130,299,1,11998,'0.99','2005-08-17 18:46:21','2006-02-15 22:15:42'), +(8131,299,1,13069,'4.99','2005-08-19 09:55:20','2006-02-15 22:15:42'), +(8132,299,2,14208,'0.99','2005-08-21 04:09:18','2006-02-15 22:15:42'), +(8133,299,1,14548,'3.99','2005-08-21 15:53:52','2006-02-15 22:15:42'), +(8134,299,2,14889,'4.99','2005-08-22 04:10:10','2006-02-15 22:15:42'), +(8135,299,2,14898,'6.99','2005-08-22 04:26:34','2006-02-15 22:15:42'), +(8136,300,2,457,'0.99','2005-05-27 19:52:29','2006-02-15 22:15:42'), +(8137,300,1,780,'3.99','2005-05-29 14:18:32','2006-02-15 22:15:42'), +(8138,300,1,1111,'4.99','2005-05-31 15:24:19','2006-02-15 22:15:42'), +(8139,300,2,1381,'0.99','2005-06-15 15:17:21','2006-02-15 22:15:42'), +(8140,300,1,3177,'2.99','2005-06-20 22:32:44','2006-02-15 22:15:42'), +(8141,300,1,3775,'0.99','2005-07-06 13:27:33','2006-02-15 22:15:42'), +(8142,300,1,4030,'0.99','2005-07-07 02:25:42','2006-02-15 22:15:42'), +(8143,300,2,5562,'2.99','2005-07-10 03:17:42','2006-02-15 22:15:42'), +(8144,300,1,5705,'10.99','2005-07-10 10:09:17','2006-02-15 22:15:42'), +(8145,300,2,6111,'4.99','2005-07-11 07:26:57','2006-02-15 22:15:42'), +(8146,300,1,6822,'5.99','2005-07-12 18:23:39','2006-02-15 22:15:42'), +(8147,300,1,6998,'4.99','2005-07-27 01:16:29','2006-02-15 22:15:42'), +(8148,300,1,7815,'4.99','2005-07-28 08:14:11','2006-02-15 22:15:42'), +(8149,300,1,8117,'6.99','2005-07-28 19:20:16','2006-02-15 22:15:42'), +(8150,300,1,8210,'6.99','2005-07-28 23:31:05','2006-02-15 22:15:42'), +(8151,300,1,8283,'3.99','2005-07-29 01:52:22','2006-02-15 22:15:42'), +(8152,300,1,9078,'0.99','2005-07-30 08:01:00','2006-02-15 22:15:42'), +(8153,300,2,9127,'2.99','2005-07-30 09:46:36','2006-02-15 22:15:43'), +(8154,300,2,9791,'0.99','2005-07-31 10:35:22','2006-02-15 22:15:43'), +(8155,300,1,10977,'4.99','2005-08-02 04:12:17','2006-02-15 22:15:43'), +(8156,300,2,12484,'2.99','2005-08-18 12:39:37','2006-02-15 22:15:43'), +(8157,300,2,12644,'5.99','2005-08-18 18:22:27','2006-02-15 22:15:43'), +(8158,300,2,13257,'3.99','2005-08-19 17:01:20','2006-02-15 22:15:43'), +(8159,300,1,13296,'0.99','2005-08-19 18:43:53','2006-02-15 22:15:43'), +(8160,300,2,13499,'6.99','2005-08-20 01:52:30','2006-02-15 22:15:43'), +(8161,300,1,13717,'5.99','2005-08-20 09:50:52','2006-02-15 22:15:43'), +(8162,300,1,14674,'7.99','2005-08-21 20:01:34','2006-02-15 22:15:43'), +(8163,300,1,14709,'9.99','2005-08-21 21:07:59','2006-02-15 22:15:43'), +(8164,300,2,15051,'2.99','2005-08-22 10:08:50','2006-02-15 22:15:43'), +(8165,300,2,15811,'5.99','2005-08-23 14:43:46','2006-02-15 22:15:43'), +(8166,300,1,15695,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:43'), +(8167,301,2,27,'4.99','2005-05-25 03:41:50','2006-02-15 22:15:43'), +(8168,301,2,227,'5.99','2005-05-26 10:51:46','2006-02-15 22:15:43'), +(8169,301,1,955,'0.99','2005-05-30 16:59:03','2006-02-15 22:15:43'), +(8170,301,1,1853,'0.99','2005-06-17 00:39:54','2006-02-15 22:15:43'), +(8171,301,1,2611,'4.99','2005-06-19 07:18:17','2006-02-15 22:15:43'), +(8172,301,2,2925,'2.99','2005-06-20 04:23:49','2006-02-15 22:15:43'), +(8173,301,2,4316,'4.99','2005-07-07 17:44:22','2006-02-15 22:15:43'), +(8174,301,2,4834,'3.99','2005-07-08 18:07:45','2006-02-15 22:15:43'), +(8175,301,1,5119,'6.99','2005-07-09 07:14:18','2006-02-15 22:15:43'), +(8176,301,2,5511,'4.99','2005-07-10 01:00:00','2006-02-15 22:15:43'), +(8177,301,2,5730,'2.99','2005-07-10 11:28:32','2006-02-15 22:15:43'), +(8178,301,2,5807,'2.99','2005-07-10 15:16:30','2006-02-15 22:15:43'), +(8179,301,2,6833,'6.99','2005-07-12 18:53:34','2006-02-15 22:15:44'), +(8180,301,2,7318,'4.99','2005-07-27 13:25:31','2006-02-15 22:15:44'), +(8181,301,2,7818,'4.99','2005-07-28 08:25:00','2006-02-15 22:15:44'), +(8182,301,2,9435,'4.99','2005-07-30 21:31:02','2006-02-15 22:15:44'), +(8183,301,1,10883,'0.99','2005-08-02 00:47:19','2006-02-15 22:15:44'), +(8184,301,2,13183,'5.99','2005-08-19 14:09:26','2006-02-15 22:15:44'), +(8185,301,2,13633,'2.99','2005-08-20 07:13:47','2006-02-15 22:15:44'), +(8186,301,1,15201,'10.99','2005-08-22 16:24:42','2006-02-15 22:15:44'), +(8187,301,1,15268,'1.99','2005-08-22 18:39:11','2006-02-15 22:15:44'), +(8188,302,2,38,'4.99','2005-05-25 04:47:44','2006-02-15 22:15:44'), +(8189,302,2,92,'5.99','2005-05-25 15:38:46','2006-02-15 22:15:44'), +(8190,302,1,1231,'2.99','2005-06-15 04:04:41','2006-02-15 22:15:44'), +(8191,302,2,4676,'4.99','2005-07-08 10:26:02','2006-02-15 22:15:44'), +(8192,302,2,5498,'0.99','2005-07-10 00:27:21','2006-02-15 22:15:44'), +(8193,302,2,5682,'2.99','2005-07-10 08:51:39','2006-02-15 22:15:44'), +(8194,302,2,5709,'0.99','2005-07-10 10:31:52','2006-02-15 22:15:44'), +(8195,302,2,5821,'4.99','2005-07-10 16:07:16','2006-02-15 22:15:44'), +(8196,302,2,6623,'7.99','2005-07-12 09:05:34','2006-02-15 22:15:44'), +(8197,302,1,7183,'0.99','2005-07-27 08:18:38','2006-02-15 22:15:44'), +(8198,302,1,7411,'6.99','2005-07-27 16:42:30','2006-02-15 22:15:44'), +(8199,302,1,8363,'6.99','2005-07-29 05:10:08','2006-02-15 22:15:44'), +(8200,302,2,8646,'0.99','2005-07-29 14:48:48','2006-02-15 22:15:44'), +(8201,302,1,8795,'2.99','2005-07-29 21:04:14','2006-02-15 22:15:44'), +(8202,302,1,9146,'7.99','2005-07-30 10:32:08','2006-02-15 22:15:44'), +(8203,302,2,9358,'2.99','2005-07-30 18:37:24','2006-02-15 22:15:44'), +(8204,302,1,9374,'8.99','2005-07-30 19:10:03','2006-02-15 22:15:45'), +(8205,302,2,9581,'5.99','2005-07-31 03:03:07','2006-02-15 22:15:45'), +(8206,302,2,10329,'0.99','2005-08-01 04:56:13','2006-02-15 22:15:45'), +(8207,302,1,12126,'7.99','2005-08-17 23:25:21','2006-02-15 22:15:45'), +(8208,302,2,12516,'4.99','2005-08-18 13:39:53','2006-02-15 22:15:45'), +(8209,302,1,12903,'2.99','2005-08-19 04:09:38','2006-02-15 22:15:45'), +(8210,302,1,13916,'2.99','2005-08-20 16:43:02','2006-02-15 22:15:45'), +(8211,302,1,14120,'4.99','2005-08-21 01:25:00','2006-02-15 22:15:45'), +(8212,302,2,14247,'3.99','2005-08-21 05:35:17','2006-02-15 22:15:45'), +(8213,302,2,15578,'2.99','2005-08-23 05:37:13','2006-02-15 22:15:45'), +(8214,302,1,15622,'5.99','2005-08-23 07:22:02','2006-02-15 22:15:45'), +(8215,302,2,15734,'0.99','2005-08-23 11:40:08','2006-02-15 22:15:45'), +(8216,302,2,15987,'6.99','2005-08-23 20:22:17','2006-02-15 22:15:45'), +(8217,303,1,265,'0.99','2005-05-26 16:07:38','2006-02-15 22:15:45'), +(8218,303,1,871,'2.99','2005-05-30 05:01:30','2006-02-15 22:15:45'), +(8219,303,2,1050,'4.99','2005-05-31 07:01:27','2006-02-15 22:15:45'), +(8220,303,2,1970,'4.99','2005-06-17 09:23:16','2006-02-15 22:15:45'), +(8221,303,1,2223,'8.99','2005-06-18 03:27:03','2006-02-15 22:15:45'), +(8222,303,1,3077,'3.99','2005-06-20 15:05:18','2006-02-15 22:15:45'), +(8223,303,1,3107,'2.99','2005-06-20 17:26:05','2006-02-15 22:15:45'), +(8224,303,1,5140,'4.99','2005-07-09 08:04:59','2006-02-15 22:15:45'), +(8225,303,1,6205,'4.99','2005-07-11 12:31:24','2006-02-15 22:15:45'), +(8226,303,2,6219,'4.99','2005-07-11 13:18:37','2006-02-15 22:15:45'), +(8227,303,1,6464,'4.99','2005-07-12 01:16:40','2006-02-15 22:15:45'), +(8228,303,1,7023,'4.99','2005-07-27 02:32:44','2006-02-15 22:15:45'), +(8229,303,2,7502,'2.99','2005-07-27 20:19:08','2006-02-15 22:15:46'), +(8230,303,1,8409,'0.99','2005-07-29 06:41:22','2006-02-15 22:15:46'), +(8231,303,2,8734,'6.99','2005-07-29 18:28:15','2006-02-15 22:15:46'), +(8232,303,2,8764,'0.99','2005-07-29 19:39:04','2006-02-15 22:15:46'), +(8233,303,2,10209,'2.99','2005-08-01 00:56:47','2006-02-15 22:15:46'), +(8234,303,1,11253,'4.99','2005-08-02 13:42:44','2006-02-15 22:15:46'), +(8235,303,2,11673,'2.99','2005-08-17 05:54:15','2006-02-15 22:15:46'), +(8236,303,2,11993,'2.99','2005-08-17 18:27:49','2006-02-15 22:15:46'), +(8237,303,2,12117,'0.99','2005-08-17 23:11:12','2006-02-15 22:15:46'), +(8238,303,1,12365,'0.99','2005-08-18 07:55:09','2006-02-15 22:15:46'), +(8239,303,2,12473,'2.99','2005-08-18 11:59:44','2006-02-15 22:15:46'), +(8240,303,1,14750,'5.99','2005-08-21 23:09:32','2006-02-15 22:15:46'), +(8241,303,2,14795,'4.99','2005-08-22 00:40:22','2006-02-15 22:15:46'), +(8242,303,1,15511,'3.99','2005-08-23 02:55:42','2006-02-15 22:15:46'), +(8243,304,1,135,'10.99','2005-05-25 21:58:58','2006-02-15 22:15:46'), +(8244,304,1,415,'0.99','2005-05-27 14:51:45','2006-02-15 22:15:46'), +(8245,304,2,937,'2.99','2005-05-30 14:47:31','2006-02-15 22:15:46'), +(8246,304,1,1414,'6.99','2005-06-15 17:26:32','2006-02-15 22:15:46'), +(8247,304,2,1525,'4.99','2005-06-16 00:26:07','2006-02-15 22:15:46'), +(8248,304,1,2039,'3.99','2005-06-17 14:03:43','2006-02-15 22:15:46'), +(8249,304,2,2902,'4.99','2005-06-20 02:45:35','2006-02-15 22:15:46'), +(8250,304,1,4466,'6.99','2005-07-08 00:12:53','2006-02-15 22:15:46'), +(8251,304,2,4812,'8.99','2005-07-08 17:07:11','2006-02-15 22:15:46'), +(8252,304,1,5411,'2.99','2005-07-09 20:23:38','2006-02-15 22:15:46'), +(8253,304,1,5712,'4.99','2005-07-10 10:40:32','2006-02-15 22:15:46'), +(8254,304,2,5749,'3.99','2005-07-10 12:20:36','2006-02-15 22:15:47'), +(8255,304,2,5795,'0.99','2005-07-10 14:36:29','2006-02-15 22:15:47'), +(8256,304,2,6107,'0.99','2005-07-11 07:07:09','2006-02-15 22:15:47'), +(8257,304,1,6737,'4.99','2005-07-12 14:16:52','2006-02-15 22:15:47'), +(8258,304,2,7551,'4.99','2005-07-27 21:59:15','2006-02-15 22:15:47'), +(8259,304,2,8055,'4.99','2005-07-28 17:02:32','2006-02-15 22:15:47'), +(8260,304,1,9930,'0.99','2005-07-31 15:18:03','2006-02-15 22:15:47'), +(8261,304,1,9992,'6.99','2005-07-31 17:29:48','2006-02-15 22:15:47'), +(8262,304,1,10631,'0.99','2005-08-01 15:35:14','2006-02-15 22:15:47'), +(8263,304,2,11983,'4.99','2005-08-17 18:13:55','2006-02-15 22:15:47'), +(8264,304,1,12540,'5.99','2005-08-18 14:17:30','2006-02-15 22:15:47'), +(8265,304,2,13911,'3.99','2005-08-20 16:31:33','2006-02-15 22:15:47'), +(8266,304,1,14023,'0.99','2005-08-20 21:10:32','2006-02-15 22:15:47'), +(8267,304,1,14899,'4.99','2005-08-22 04:26:38','2006-02-15 22:15:47'), +(8268,304,1,14945,'4.99','2005-08-22 06:05:38','2006-02-15 22:15:47'), +(8269,305,2,69,'2.99','2005-05-25 10:10:14','2006-02-15 22:15:47'), +(8270,305,1,1574,'4.99','2005-06-16 03:39:56','2006-02-15 22:15:47'), +(8271,305,2,1884,'0.99','2005-06-17 03:19:20','2006-02-15 22:15:47'), +(8272,305,1,2166,'11.99','2005-06-17 23:51:21','2006-02-15 22:15:47'), +(8273,305,1,3387,'0.99','2005-06-21 14:21:49','2006-02-15 22:15:47'), +(8274,305,2,4260,'4.99','2005-07-07 14:22:45','2006-02-15 22:15:47'), +(8275,305,1,4638,'2.99','2005-07-08 08:57:20','2006-02-15 22:15:47'), +(8276,305,2,5041,'0.99','2005-07-09 03:18:51','2006-02-15 22:15:47'), +(8277,305,1,5052,'2.99','2005-07-09 03:59:43','2006-02-15 22:15:47'), +(8278,305,2,5582,'4.99','2005-07-10 04:08:25','2006-02-15 22:15:47'), +(8279,305,1,5745,'8.99','2005-07-10 12:10:11','2006-02-15 22:15:47'), +(8280,305,1,6134,'7.99','2005-07-11 08:28:19','2006-02-15 22:15:48'), +(8281,305,2,6619,'0.99','2005-07-12 08:50:48','2006-02-15 22:15:48'), +(8282,305,2,8865,'4.99','2005-07-29 23:54:54','2006-02-15 22:15:48'), +(8283,305,2,9119,'4.99','2005-07-30 09:25:56','2006-02-15 22:15:48'), +(8284,305,2,10426,'4.99','2005-08-01 08:26:08','2006-02-15 22:15:48'), +(8285,305,2,10929,'4.99','2005-08-02 02:35:44','2006-02-15 22:15:48'), +(8286,305,1,10981,'2.99','2005-08-02 04:17:53','2006-02-15 22:15:48'), +(8287,305,2,11035,'5.99','2005-08-02 05:55:39','2006-02-15 22:15:48'), +(8288,305,2,11809,'3.99','2005-08-17 11:51:39','2006-02-15 22:15:48'), +(8289,305,2,12592,'3.99','2005-08-18 16:17:50','2006-02-15 22:15:48'), +(8290,305,2,12846,'0.99','2005-08-19 02:03:26','2006-02-15 22:15:48'), +(8291,305,1,13782,'4.99','2005-08-20 12:09:26','2006-02-15 22:15:48'), +(8292,305,2,15417,'2.99','2005-08-22 23:54:04','2006-02-15 22:15:48'), +(8293,305,1,15612,'6.99','2005-08-23 06:59:07','2006-02-15 22:15:48'), +(8294,306,2,375,'3.99','2005-05-27 08:49:21','2006-02-15 22:15:48'), +(8295,306,2,672,'6.99','2005-05-28 22:05:29','2006-02-15 22:15:48'), +(8296,306,2,1172,'0.99','2005-06-14 23:54:34','2006-02-15 22:15:48'), +(8297,306,2,2836,'6.99','2005-06-19 21:58:21','2006-02-15 22:15:48'), +(8298,306,1,3814,'6.99','2005-07-06 15:23:56','2006-02-15 22:15:48'), +(8299,306,2,4484,'5.99','2005-07-08 01:05:57','2006-02-15 22:15:48'), +(8300,306,2,4596,'1.99','2005-07-08 06:41:25','2006-02-15 22:15:48'), +(8301,306,2,5581,'2.99','2005-07-10 04:06:06','2006-02-15 22:15:48'), +(8302,306,2,6868,'2.99','2005-07-12 20:10:17','2006-02-15 22:15:48'), +(8303,306,1,6953,'4.99','2005-07-26 23:52:47','2006-02-15 22:15:48'), +(8304,306,1,7225,'6.99','2005-07-27 09:47:12','2006-02-15 22:15:49'), +(8305,306,1,7232,'4.99','2005-07-27 10:04:19','2006-02-15 22:15:49'), +(8306,306,2,7701,'2.99','2005-07-28 03:54:28','2006-02-15 22:15:49'), +(8307,306,2,8620,'0.99','2005-07-29 13:51:20','2006-02-15 22:15:49'), +(8308,306,1,8702,'0.99','2005-07-29 17:04:37','2006-02-15 22:15:49'), +(8309,306,2,9242,'4.99','2005-07-30 14:03:58','2006-02-15 22:15:49'), +(8310,306,2,9395,'4.99','2005-07-30 20:07:06','2006-02-15 22:15:49'), +(8311,306,1,9774,'0.99','2005-07-31 09:57:51','2006-02-15 22:15:49'), +(8312,306,1,10202,'6.99','2005-08-01 00:43:18','2006-02-15 22:15:49'), +(8313,306,2,10893,'5.99','2005-08-02 01:12:13','2006-02-15 22:15:49'), +(8314,306,2,11142,'4.99','2005-08-02 09:30:11','2006-02-15 22:15:49'), +(8315,306,1,11440,'0.99','2005-08-02 20:24:02','2006-02-15 22:15:49'), +(8316,306,2,11674,'6.99','2005-08-17 05:56:27','2006-02-15 22:15:49'), +(8317,306,2,11776,'0.99','2005-08-17 10:27:19','2006-02-15 22:15:49'), +(8318,306,1,12225,'7.99','2005-08-18 03:00:11','2006-02-15 22:15:49'), +(8319,306,1,12989,'2.99','2005-08-19 07:19:04','2006-02-15 22:15:49'), +(8320,306,1,13686,'4.99','2005-08-20 08:57:28','2006-02-15 22:15:49'), +(8321,306,2,13725,'5.99','2005-08-20 10:08:27','2006-02-15 22:15:49'), +(8322,306,1,13873,'0.99','2005-08-20 15:11:11','2006-02-15 22:15:49'), +(8323,306,1,13996,'4.99','2005-08-20 19:45:43','2006-02-15 22:15:49'), +(8324,306,1,15457,'2.99','2005-08-23 01:07:37','2006-02-15 22:15:49'), +(8325,306,2,15868,'7.99','2005-08-23 16:19:14','2006-02-15 22:15:49'), +(8326,307,2,413,'4.99','2005-05-27 14:45:37','2006-02-15 22:15:49'), +(8327,307,1,535,'4.99','2005-05-28 06:16:32','2006-02-15 22:15:49'), +(8328,307,1,614,'1.99','2005-05-28 15:33:28','2006-02-15 22:15:49'), +(8329,307,1,970,'6.99','2005-05-30 19:50:28','2006-02-15 22:15:50'), +(8330,307,2,2152,'2.99','2005-06-17 22:53:27','2006-02-15 22:15:50'), +(8331,307,1,2167,'0.99','2005-06-17 23:51:28','2006-02-15 22:15:50'), +(8332,307,1,2787,'4.99','2005-06-19 18:47:00','2006-02-15 22:15:50'), +(8333,307,1,2881,'2.99','2005-06-20 01:26:18','2006-02-15 22:15:50'), +(8334,307,2,3057,'5.99','2005-06-20 13:22:48','2006-02-15 22:15:50'), +(8335,307,1,3209,'4.99','2005-06-21 00:51:06','2006-02-15 22:15:50'), +(8336,307,1,3962,'6.99','2005-07-06 22:13:45','2006-02-15 22:15:50'), +(8337,307,1,3985,'4.99','2005-07-06 23:24:03','2006-02-15 22:15:50'), +(8338,307,1,4522,'2.99','2005-07-08 03:03:12','2006-02-15 22:15:50'), +(8339,307,1,4868,'4.99','2005-07-08 19:13:50','2006-02-15 22:15:50'), +(8340,307,1,5871,'3.99','2005-07-10 18:46:08','2006-02-15 22:15:50'), +(8341,307,2,6125,'6.99','2005-07-11 08:03:35','2006-02-15 22:15:50'), +(8342,307,1,6256,'0.99','2005-07-11 15:19:22','2006-02-15 22:15:50'), +(8343,307,1,6991,'10.99','2005-07-27 01:03:06','2006-02-15 22:15:50'), +(8344,307,1,7536,'2.99','2005-07-27 21:34:09','2006-02-15 22:15:50'), +(8345,307,1,7760,'3.99','2005-07-28 06:29:45','2006-02-15 22:15:50'), +(8346,307,1,7929,'0.99','2005-07-28 12:16:40','2006-02-15 22:15:50'), +(8347,307,1,8647,'6.99','2005-07-29 14:52:59','2006-02-15 22:15:50'), +(8348,307,1,10135,'4.99','2005-07-31 21:57:32','2006-02-15 22:15:50'), +(8349,307,1,10374,'0.99','2005-08-01 06:25:27','2006-02-15 22:15:50'), +(8350,307,1,10745,'2.99','2005-08-01 19:57:06','2006-02-15 22:15:50'), +(8351,307,1,11491,'7.99','2005-08-02 22:44:50','2006-02-15 22:15:50'), +(8352,307,2,12391,'4.99','2005-08-18 08:52:53','2006-02-15 22:15:50'), +(8353,307,2,13365,'6.99','2005-08-19 21:12:37','2006-02-15 22:15:51'), +(8354,307,1,14231,'0.99','2005-08-21 05:04:34','2006-02-15 22:15:51'), +(8355,307,2,15515,'4.99','2005-08-23 03:03:53','2006-02-15 22:15:51'), +(8356,308,2,589,'3.99','2005-05-28 12:27:50','2006-02-15 22:15:51'), +(8357,308,1,2037,'0.99','2005-06-17 13:54:20','2006-02-15 22:15:51'), +(8358,308,1,2094,'0.99','2005-06-17 18:18:56','2006-02-15 22:15:51'), +(8359,308,2,2168,'4.99','2005-06-17 23:53:24','2006-02-15 22:15:51'), +(8360,308,1,2346,'7.99','2005-06-18 12:08:16','2006-02-15 22:15:51'), +(8361,308,2,2448,'4.99','2005-06-18 19:13:45','2006-02-15 22:15:51'), +(8362,308,1,4002,'3.99','2005-07-07 00:08:18','2006-02-15 22:15:51'), +(8363,308,1,4285,'8.99','2005-07-07 15:34:35','2006-02-15 22:15:51'), +(8364,308,1,5946,'2.99','2005-07-10 22:57:29','2006-02-15 22:15:51'), +(8365,308,2,8869,'0.99','2005-07-30 00:06:32','2006-02-15 22:15:51'), +(8366,308,1,9479,'2.99','2005-07-30 23:22:09','2006-02-15 22:15:51'), +(8367,308,1,9746,'7.99','2005-07-31 09:16:48','2006-02-15 22:15:51'), +(8368,308,1,10571,'2.99','2005-08-01 13:25:30','2006-02-15 22:15:51'), +(8369,308,2,10797,'0.99','2005-08-01 22:02:51','2006-02-15 22:15:51'), +(8370,308,1,10819,'4.99','2005-08-01 22:52:57','2006-02-15 22:15:51'), +(8371,308,1,11765,'2.99','2005-08-17 09:55:28','2006-02-15 22:15:51'), +(8372,308,1,11972,'4.99','2005-08-17 17:55:46','2006-02-15 22:15:51'), +(8373,308,2,12567,'3.99','2005-08-18 15:14:36','2006-02-15 22:15:51'), +(8374,308,1,12590,'6.99','2005-08-18 16:11:35','2006-02-15 22:15:51'), +(8375,308,2,12838,'6.99','2005-08-19 01:51:50','2006-02-15 22:15:51'), +(8376,308,1,13843,'2.99','2005-08-20 14:30:01','2006-02-15 22:15:51'), +(8377,308,2,14946,'2.99','2005-08-22 06:07:10','2006-02-15 22:15:51'), +(8378,308,1,15243,'4.99','2005-08-22 17:48:28','2006-02-15 22:15:52'), +(8379,308,2,15493,'4.99','2005-08-23 02:20:53','2006-02-15 22:15:52'), +(8380,308,2,15820,'2.99','2005-08-23 15:03:13','2006-02-15 22:15:52'), +(8381,309,2,218,'6.99','2005-05-26 09:27:09','2006-02-15 22:15:52'), +(8382,309,2,723,'0.99','2005-05-29 05:34:44','2006-02-15 22:15:52'), +(8383,309,1,1837,'4.99','2005-06-16 23:16:15','2006-02-15 22:15:52'), +(8384,309,2,2560,'9.99','2005-06-19 03:12:42','2006-02-15 22:15:52'), +(8385,309,2,2644,'3.99','2005-06-19 09:42:30','2006-02-15 22:15:52'), +(8386,309,2,2688,'6.99','2005-06-19 12:50:56','2006-02-15 22:15:52'), +(8387,309,2,3837,'4.99','2005-07-06 16:27:43','2006-02-15 22:15:52'), +(8388,309,2,3896,'7.99','2005-07-06 19:09:15','2006-02-15 22:15:52'), +(8389,309,2,4172,'4.99','2005-07-07 09:49:09','2006-02-15 22:15:52'), +(8390,309,1,4540,'4.99','2005-07-08 04:03:28','2006-02-15 22:15:52'), +(8391,309,2,5305,'8.99','2005-07-09 15:55:36','2006-02-15 22:15:52'), +(8392,309,1,5980,'4.99','2005-07-11 00:18:21','2006-02-15 22:15:52'), +(8393,309,2,6480,'4.99','2005-07-12 01:49:29','2006-02-15 22:15:52'), +(8394,309,2,7214,'5.99','2005-07-27 09:23:33','2006-02-15 22:15:52'), +(8395,309,2,7722,'4.99','2005-07-28 04:44:58','2006-02-15 22:15:52'), +(8396,309,1,7846,'5.99','2005-07-28 09:21:18','2006-02-15 22:15:52'), +(8397,309,1,8341,'4.99','2005-07-29 04:42:01','2006-02-15 22:15:52'), +(8398,309,1,8501,'2.99','2005-07-29 09:12:51','2006-02-15 22:15:52'), +(8399,309,1,8681,'2.99','2005-07-29 16:12:01','2006-02-15 22:15:52'), +(8400,309,1,8917,'2.99','2005-07-30 01:47:02','2006-02-15 22:15:52'), +(8401,309,2,9945,'2.99','2005-07-31 15:47:51','2006-02-15 22:15:52'), +(8402,309,1,9949,'0.99','2005-07-31 15:50:10','2006-02-15 22:15:53'), +(8403,309,1,10458,'2.99','2005-08-01 09:19:48','2006-02-15 22:15:53'), +(8404,309,1,10728,'0.99','2005-08-01 19:15:09','2006-02-15 22:15:53'), +(8405,309,1,10818,'2.99','2005-08-01 22:52:45','2006-02-15 22:15:53'), +(8406,309,2,11964,'6.99','2005-08-17 17:37:03','2006-02-15 22:15:53'), +(8407,309,2,13021,'5.99','2005-08-19 08:08:04','2006-02-15 22:15:53'), +(8408,309,2,13502,'0.99','2005-08-20 01:58:15','2006-02-15 22:15:53'), +(8409,309,2,13909,'4.99','2005-08-20 16:26:36','2006-02-15 22:15:53'), +(8410,309,2,14846,'5.99','2005-08-22 02:13:48','2006-02-15 22:15:53'), +(8411,309,2,15422,'4.99','2005-08-22 23:58:09','2006-02-15 22:15:53'), +(8412,310,2,104,'0.99','2005-05-25 17:46:33','2006-02-15 22:15:53'), +(8413,310,2,1162,'4.99','2005-06-14 23:09:38','2006-02-15 22:15:53'), +(8414,310,2,1333,'2.99','2005-06-15 11:37:08','2006-02-15 22:15:53'), +(8415,310,2,1918,'3.99','2005-06-17 05:40:14','2006-02-15 22:15:53'), +(8416,310,2,2088,'6.99','2005-06-17 17:35:30','2006-02-15 22:15:53'), +(8417,310,1,2480,'5.99','2005-06-18 21:04:09','2006-02-15 22:15:53'), +(8418,310,1,2618,'2.99','2005-06-19 08:03:01','2006-02-15 22:15:53'), +(8419,310,2,3830,'10.99','2005-07-06 16:01:16','2006-02-15 22:15:53'), +(8420,310,1,4072,'0.99','2005-07-07 04:48:02','2006-02-15 22:15:53'), +(8421,310,1,5621,'5.99','2005-07-10 05:34:10','2006-02-15 22:15:53'), +(8422,310,2,5836,'0.99','2005-07-10 16:49:02','2006-02-15 22:15:53'), +(8423,310,1,7648,'5.99','2005-07-28 01:35:33','2006-02-15 22:15:53'), +(8424,310,2,8637,'5.99','2005-07-29 14:30:11','2006-02-15 22:15:53'), +(8425,310,1,8981,'7.99','2005-07-30 04:25:30','2006-02-15 22:15:53'), +(8426,310,1,9536,'2.99','2005-07-31 01:19:02','2006-02-15 22:15:53'), +(8427,310,2,11137,'2.99','2005-08-02 09:25:31','2006-02-15 22:15:54'), +(8428,310,2,12500,'4.99','2005-08-18 13:05:51','2006-02-15 22:15:54'), +(8429,310,2,12710,'7.99','2005-08-18 21:02:50','2006-02-15 22:15:54'), +(8430,310,1,12929,'4.99','2005-08-19 05:05:23','2006-02-15 22:15:54'), +(8431,310,1,14972,'5.99','2005-08-22 06:53:21','2006-02-15 22:15:54'), +(8432,311,2,274,'5.99','2005-05-26 16:48:51','2006-02-15 22:15:54'), +(8433,311,2,544,'6.99','2005-05-28 07:03:00','2006-02-15 22:15:54'), +(8434,311,1,952,'2.99','2005-05-30 16:28:07','2006-02-15 22:15:54'), +(8435,311,2,990,'3.99','2005-05-30 23:25:14','2006-02-15 22:15:54'), +(8436,311,2,1128,'6.99','2005-05-31 17:49:26','2006-02-15 22:15:54'), +(8437,311,1,1622,'4.99','2005-06-16 07:33:18','2006-02-15 22:15:54'), +(8438,311,2,1955,'0.99','2005-06-17 08:40:22','2006-02-15 22:15:54'), +(8439,311,2,2967,'6.99','2005-06-20 07:40:35','2006-02-15 22:15:54'), +(8440,311,2,4836,'3.99','2005-07-08 18:09:08','2006-02-15 22:15:54'), +(8441,311,2,5224,'5.99','2005-07-09 12:07:27','2006-02-15 22:15:54'), +(8442,311,2,6419,'4.99','2005-07-11 23:36:38','2006-02-15 22:15:54'), +(8443,311,2,8167,'6.99','2005-07-28 21:25:45','2006-02-15 22:15:54'), +(8444,311,1,8473,'2.99','2005-07-29 08:36:53','2006-02-15 22:15:54'), +(8445,311,1,9503,'6.99','2005-07-31 00:02:38','2006-02-15 22:15:54'), +(8446,311,2,9882,'8.99','2005-07-31 13:53:33','2006-02-15 22:15:54'), +(8447,311,1,10134,'4.99','2005-07-31 21:56:10','2006-02-15 22:15:54'), +(8448,311,2,10448,'4.99','2005-08-01 09:09:31','2006-02-15 22:15:54'), +(8449,311,1,12997,'2.99','2005-08-19 07:31:46','2006-02-15 22:15:54'), +(8450,311,2,13310,'0.99','2005-08-19 19:05:16','2006-02-15 22:15:54'), +(8451,311,2,13423,'1.99','2005-08-19 23:07:42','2006-02-15 22:15:55'), +(8452,311,2,14517,'4.99','2005-08-21 14:57:03','2006-02-15 22:15:55'), +(8453,311,2,15826,'9.99','2005-08-23 15:15:02','2006-02-15 22:15:55'), +(8454,311,1,16020,'8.99','2005-08-23 21:34:33','2006-02-15 22:15:55'), +(8455,312,2,229,'4.99','2005-05-26 11:19:20','2006-02-15 22:15:55'), +(8456,312,1,530,'0.99','2005-05-28 05:13:01','2006-02-15 22:15:55'), +(8457,312,2,1049,'4.99','2005-05-31 06:57:04','2006-02-15 22:15:55'), +(8458,312,2,1079,'6.99','2005-05-31 10:48:17','2006-02-15 22:15:55'), +(8459,312,2,1419,'0.99','2005-06-15 17:54:50','2006-02-15 22:15:55'), +(8460,312,2,3457,'3.99','2005-06-21 21:42:33','2006-02-15 22:15:55'), +(8461,312,1,3766,'2.99','2005-07-06 13:04:35','2006-02-15 22:15:55'), +(8462,312,1,3792,'1.99','2005-07-06 14:26:38','2006-02-15 22:15:55'), +(8463,312,1,4647,'3.99','2005-07-08 09:27:36','2006-02-15 22:15:55'), +(8464,312,1,5031,'5.99','2005-07-09 02:36:37','2006-02-15 22:15:55'), +(8465,312,2,6751,'2.99','2005-07-12 14:50:34','2006-02-15 22:15:55'), +(8466,312,1,6866,'2.99','2005-07-12 20:03:44','2006-02-15 22:15:55'), +(8467,312,1,8137,'4.99','2005-07-28 20:07:18','2006-02-15 22:15:55'), +(8468,312,1,8412,'6.99','2005-07-29 06:44:50','2006-02-15 22:15:55'), +(8469,312,1,8721,'4.99','2005-07-29 17:56:21','2006-02-15 22:15:55'), +(8470,312,1,9016,'6.99','2005-07-30 05:26:13','2006-02-15 22:15:55'), +(8471,312,1,9154,'3.99','2005-07-30 10:59:54','2006-02-15 22:15:55'), +(8472,312,2,10858,'2.99','2005-08-02 00:08:39','2006-02-15 22:15:55'), +(8473,312,2,11248,'0.99','2005-08-02 13:35:34','2006-02-15 22:15:55'), +(8474,312,2,11879,'5.99','2005-08-17 14:25:09','2006-02-15 22:15:55'), +(8475,312,1,12186,'2.99','2005-08-18 01:43:36','2006-02-15 22:15:56'), +(8476,312,1,12945,'0.99','2005-08-19 05:51:46','2006-02-15 22:15:56'), +(8477,312,2,14362,'2.99','2005-08-21 09:19:49','2006-02-15 22:15:56'), +(8478,312,1,14504,'3.99','2005-08-21 14:23:01','2006-02-15 22:15:56'), +(8479,312,1,15100,'4.99','2005-08-22 11:55:03','2006-02-15 22:15:56'), +(8480,312,1,15882,'6.99','2005-08-23 16:44:31','2006-02-15 22:15:56'), +(8481,313,2,669,'4.99','2005-05-28 22:03:25','2006-02-15 22:15:56'), +(8482,313,2,712,'2.99','2005-05-29 04:02:24','2006-02-15 22:15:56'), +(8483,313,2,781,'0.99','2005-05-29 14:23:58','2006-02-15 22:15:56'), +(8484,313,2,843,'0.99','2005-05-30 00:44:24','2006-02-15 22:15:56'), +(8485,313,2,1312,'2.99','2005-06-15 10:16:27','2006-02-15 22:15:56'), +(8486,313,1,2617,'7.99','2005-06-19 07:48:31','2006-02-15 22:15:56'), +(8487,313,2,2711,'4.99','2005-06-19 14:12:22','2006-02-15 22:15:56'), +(8488,313,2,4552,'2.99','2005-07-08 04:36:35','2006-02-15 22:15:56'), +(8489,313,1,5255,'5.99','2005-07-09 13:51:08','2006-02-15 22:15:56'), +(8490,313,1,6384,'2.99','2005-07-11 22:07:26','2006-02-15 22:15:56'), +(8491,313,2,7294,'0.99','2005-07-27 12:38:14','2006-02-15 22:15:56'), +(8492,313,2,8381,'4.99','2005-07-29 05:31:44','2006-02-15 22:15:56'), +(8493,313,1,8970,'3.99','2005-07-30 04:02:05','2006-02-15 22:15:56'), +(8494,313,2,9836,'2.99','2005-07-31 12:12:00','2006-02-15 22:15:56'), +(8495,313,2,10237,'5.99','2005-08-01 02:07:32','2006-02-15 22:15:56'), +(8496,313,2,10933,'7.99','2005-08-02 02:50:49','2006-02-15 22:15:56'), +(8497,313,2,11854,'2.99','2005-08-17 13:42:52','2006-02-15 22:15:56'), +(8498,313,2,12011,'2.99','2005-08-17 19:19:44','2006-02-15 22:15:56'), +(8499,313,2,14250,'2.99','2005-08-21 05:39:35','2006-02-15 22:15:56'), +(8500,313,1,14325,'4.99','2005-08-21 08:15:38','2006-02-15 22:15:57'), +(8501,313,2,15081,'2.99','2005-08-22 11:14:31','2006-02-15 22:15:57'), +(8502,313,1,15340,'0.99','2005-08-22 20:55:56','2006-02-15 22:15:57'), +(8503,313,2,15569,'6.99','2005-08-23 05:24:29','2006-02-15 22:15:57'), +(8504,314,1,80,'5.99','2005-05-25 12:12:07','2006-02-15 22:15:57'), +(8505,314,1,440,'4.99','2005-05-27 18:00:35','2006-02-15 22:15:57'), +(8506,314,1,1598,'3.99','2005-06-16 06:02:39','2006-02-15 22:15:57'), +(8507,314,1,1624,'2.99','2005-06-16 07:48:57','2006-02-15 22:15:57'), +(8508,314,1,3517,'0.99','2005-07-06 00:52:35','2006-02-15 22:15:57'), +(8509,314,1,3656,'2.99','2005-07-06 07:55:22','2006-02-15 22:15:57'), +(8510,314,1,3808,'0.99','2005-07-06 15:15:35','2006-02-15 22:15:57'), +(8511,314,2,4386,'0.99','2005-07-07 20:55:19','2006-02-15 22:15:57'), +(8512,314,2,5241,'4.99','2005-07-09 13:19:14','2006-02-15 22:15:57'), +(8513,314,2,5856,'0.99','2005-07-10 17:57:32','2006-02-15 22:15:57'), +(8514,314,1,6192,'5.99','2005-07-11 11:44:41','2006-02-15 22:15:57'), +(8515,314,1,6666,'2.99','2005-07-12 11:32:15','2006-02-15 22:15:57'), +(8516,314,1,6763,'3.99','2005-07-12 15:26:34','2006-02-15 22:15:57'), +(8517,314,2,7004,'4.99','2005-07-27 01:36:05','2006-02-15 22:15:57'), +(8518,314,1,7276,'2.99','2005-07-27 11:41:57','2006-02-15 22:15:57'), +(8519,314,2,8022,'6.99','2005-07-28 15:48:56','2006-02-15 22:15:57'), +(8520,314,1,8073,'3.99','2005-07-28 17:29:02','2006-02-15 22:15:57'), +(8521,314,2,8105,'0.99','2005-07-28 18:59:46','2006-02-15 22:15:57'), +(8522,314,2,8328,'6.99','2005-07-29 04:06:24','2006-02-15 22:15:57'), +(8523,314,2,8644,'4.99','2005-07-29 14:45:45','2006-02-15 22:15:57'), +(8524,314,2,9191,'3.99','2005-07-30 12:25:51','2006-02-15 22:15:58'), +(8525,314,2,9318,'6.99','2005-07-30 17:14:30','2006-02-15 22:15:58'), +(8526,314,2,11908,'3.99','2005-08-17 15:43:09','2006-02-15 22:15:58'), +(8527,314,1,12434,'0.99','2005-08-18 10:38:08','2006-02-15 22:15:58'), +(8528,314,2,13120,'3.99','2005-08-19 11:47:38','2006-02-15 22:15:58'), +(8529,314,1,13265,'2.99','2005-08-19 17:29:00','2006-02-15 22:15:58'), +(8530,314,2,13553,'3.99','2005-08-20 04:07:21','2006-02-15 22:15:58'), +(8531,314,2,14145,'4.99','2005-08-21 02:11:38','2006-02-15 22:15:58'), +(8532,314,1,14409,'4.99','2005-08-21 10:53:35','2006-02-15 22:15:58'), +(8533,314,2,14682,'4.99','2005-08-21 20:25:57','2006-02-15 22:15:58'), +(8534,314,2,14815,'4.99','2005-08-22 01:12:44','2006-02-15 22:15:58'), +(8535,314,2,14873,'5.99','2005-08-22 03:31:06','2006-02-15 22:15:58'), +(8536,314,2,16021,'3.99','2005-08-23 21:37:59','2006-02-15 22:15:58'), +(8537,315,1,537,'8.99','2005-05-28 06:20:55','2006-02-15 22:15:58'), +(8538,315,1,551,'4.99','2005-05-28 07:44:18','2006-02-15 22:15:58'), +(8539,315,1,1701,'2.99','2005-06-16 13:18:48','2006-02-15 22:15:58'), +(8540,315,1,4021,'2.99','2005-07-07 01:46:44','2006-02-15 22:15:58'), +(8541,315,1,4992,'4.99','2005-07-09 00:49:37','2006-02-15 22:15:58'), +(8542,315,2,5126,'6.99','2005-07-09 07:25:35','2006-02-15 22:15:58'), +(8543,315,1,6661,'4.99','2005-07-12 11:20:39','2006-02-15 22:15:58'), +(8544,315,1,6894,'4.99','2005-07-12 21:20:50','2006-02-15 22:15:58'), +(8545,315,1,8416,'5.99','2005-07-29 06:52:54','2006-02-15 22:15:58'), +(8546,315,2,8677,'6.99','2005-07-29 16:01:13','2006-02-15 22:15:58'), +(8547,315,2,9735,'9.99','2005-07-31 08:57:49','2006-02-15 22:15:58'), +(8548,315,2,11254,'0.99','2005-08-02 13:43:49','2006-02-15 22:15:59'), +(8549,315,2,12155,'2.99','2005-08-18 00:24:30','2006-02-15 22:15:59'), +(8550,315,1,14106,'2.99','2005-08-21 00:46:01','2006-02-15 22:15:59'), +(8551,315,2,14162,'2.99','2005-08-21 02:55:34','2006-02-15 22:15:59'), +(8552,315,1,15504,'6.99','2005-08-23 02:45:21','2006-02-15 22:15:59'), +(8553,315,2,14426,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:59'), +(8554,316,1,16,'4.99','2005-05-25 00:43:11','2006-02-15 22:15:59'), +(8555,316,1,644,'8.99','2005-05-28 18:59:12','2006-02-15 22:15:59'), +(8556,316,1,1065,'1.99','2005-05-31 08:54:56','2006-02-15 22:15:59'), +(8557,316,1,1317,'4.99','2005-06-15 10:30:19','2006-02-15 22:15:59'), +(8558,316,2,1350,'4.99','2005-06-15 12:50:25','2006-02-15 22:15:59'), +(8559,316,1,2032,'4.99','2005-06-17 13:24:07','2006-02-15 22:15:59'), +(8560,316,2,2338,'4.99','2005-06-18 11:24:54','2006-02-15 22:15:59'), +(8561,316,2,2491,'1.99','2005-06-18 22:01:31','2006-02-15 22:15:59'), +(8562,316,1,2820,'4.99','2005-06-19 20:20:33','2006-02-15 22:15:59'), +(8563,316,2,3373,'8.99','2005-06-21 13:35:32','2006-02-15 22:15:59'), +(8564,316,1,4379,'2.99','2005-07-07 20:32:30','2006-02-15 22:15:59'), +(8565,316,2,5102,'3.99','2005-07-09 06:25:48','2006-02-15 22:15:59'), +(8566,316,2,5544,'7.99','2005-07-10 02:48:07','2006-02-15 22:15:59'), +(8567,316,1,5618,'5.99','2005-07-10 05:28:58','2006-02-15 22:15:59'), +(8568,316,2,6988,'4.99','2005-07-27 01:00:08','2006-02-15 22:15:59'), +(8569,316,2,7339,'2.99','2005-07-27 14:17:48','2006-02-15 22:15:59'), +(8570,316,2,7586,'2.99','2005-07-27 23:19:29','2006-02-15 22:15:59'), +(8571,316,1,7592,'4.99','2005-07-27 23:26:04','2006-02-15 22:15:59'), +(8572,316,1,7945,'1.99','2005-07-28 12:53:58','2006-02-15 22:15:59'), +(8573,316,1,8564,'4.99','2005-07-29 11:33:00','2006-02-15 22:16:00'), +(8574,316,1,9508,'4.99','2005-07-31 00:22:39','2006-02-15 22:16:00'), +(8575,316,2,9903,'6.99','2005-07-31 14:31:44','2006-02-15 22:16:00'), +(8576,316,1,10438,'7.99','2005-08-01 08:53:04','2006-02-15 22:16:00'), +(8577,316,1,12028,'0.99','2005-08-17 20:03:47','2006-02-15 22:16:00'), +(8578,316,2,12191,'0.99','2005-08-18 01:57:11','2006-02-15 22:16:00'), +(8579,316,2,12823,'2.99','2005-08-19 01:15:47','2006-02-15 22:16:00'), +(8580,316,2,13277,'5.99','2005-08-19 17:57:35','2006-02-15 22:16:00'), +(8581,316,1,14226,'2.99','2005-08-21 04:55:37','2006-02-15 22:16:00'), +(8582,316,2,15840,'2.99','2005-08-23 15:34:49','2006-02-15 22:16:00'), +(8583,317,1,107,'6.99','2005-05-25 18:28:09','2006-02-15 22:16:00'), +(8584,317,2,2287,'6.99','2005-06-18 07:04:36','2006-02-15 22:16:00'), +(8585,317,2,3029,'2.99','2005-06-20 11:51:30','2006-02-15 22:16:00'), +(8586,317,1,3251,'0.99','2005-06-21 03:20:37','2006-02-15 22:16:00'), +(8587,317,1,4138,'0.99','2005-07-07 08:17:13','2006-02-15 22:16:00'), +(8588,317,1,4177,'8.99','2005-07-07 10:12:36','2006-02-15 22:16:00'), +(8589,317,2,4700,'0.99','2005-07-08 11:37:21','2006-02-15 22:16:00'), +(8590,317,1,5548,'0.99','2005-07-10 02:56:45','2006-02-15 22:16:00'), +(8591,317,2,5942,'7.99','2005-07-10 22:47:17','2006-02-15 22:16:00'), +(8592,317,1,7309,'2.99','2005-07-27 13:00:29','2006-02-15 22:16:00'), +(8593,317,2,8062,'2.99','2005-07-28 17:15:06','2006-02-15 22:16:00'), +(8594,317,1,8327,'2.99','2005-07-29 04:00:52','2006-02-15 22:16:00'), +(8595,317,1,8458,'4.99','2005-07-29 08:05:09','2006-02-15 22:16:00'), +(8596,317,1,9110,'2.99','2005-07-30 09:05:42','2006-02-15 22:16:01'), +(8597,317,2,9513,'4.99','2005-07-31 00:28:30','2006-02-15 22:16:01'), +(8598,317,1,9770,'8.99','2005-07-31 09:52:40','2006-02-15 22:16:01'), +(8599,317,1,10364,'2.99','2005-08-01 06:06:49','2006-02-15 22:16:01'), +(8600,317,2,12111,'2.99','2005-08-17 22:59:55','2006-02-15 22:16:01'), +(8601,317,2,12138,'7.99','2005-08-17 23:55:54','2006-02-15 22:16:01'), +(8602,317,2,12301,'2.99','2005-08-18 05:36:20','2006-02-15 22:16:01'), +(8603,317,1,13388,'4.99','2005-08-19 21:46:49','2006-02-15 22:16:01'), +(8604,317,1,14032,'5.99','2005-08-20 21:26:55','2006-02-15 22:16:01'), +(8605,317,2,14385,'0.99','2005-08-21 10:02:55','2006-02-15 22:16:01'), +(8606,317,2,14669,'2.99','2005-08-21 19:54:06','2006-02-15 22:16:01'), +(8607,317,1,14791,'4.99','2005-08-22 00:35:55','2006-02-15 22:16:01'), +(8608,317,1,15204,'2.99','2005-08-22 16:30:43','2006-02-15 22:16:01'), +(8609,317,1,15280,'4.99','2005-08-22 19:09:52','2006-02-15 22:16:01'), +(8610,317,1,12574,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:01'), +(8611,318,1,224,'9.99','2005-05-26 10:18:27','2006-02-15 22:16:01'), +(8612,318,1,2634,'2.99','2005-06-19 08:55:17','2006-02-15 22:16:01'), +(8613,318,1,2643,'2.99','2005-06-19 09:39:27','2006-02-15 22:16:01'), +(8614,318,2,3337,'0.99','2005-06-21 10:24:35','2006-02-15 22:16:01'), +(8615,318,2,3376,'7.99','2005-06-21 13:43:02','2006-02-15 22:16:01'), +(8616,318,1,3732,'4.99','2005-07-06 11:33:37','2006-02-15 22:16:01'), +(8617,318,2,3974,'2.99','2005-07-06 22:59:16','2006-02-15 22:16:01'), +(8618,318,1,4356,'8.99','2005-07-07 19:21:22','2006-02-15 22:16:01'), +(8619,318,1,7649,'0.99','2005-07-28 01:37:26','2006-02-15 22:16:01'), +(8620,318,2,7853,'0.99','2005-07-28 09:36:38','2006-02-15 22:16:02'), +(8621,318,2,10023,'5.99','2005-07-31 18:25:51','2006-02-15 22:16:02'), +(8622,318,1,14276,'2.99','2005-08-21 06:34:05','2006-02-15 22:16:02'), +(8623,319,1,15,'9.99','2005-05-25 00:39:22','2006-02-15 22:16:02'), +(8624,319,1,149,'3.99','2005-05-26 00:28:05','2006-02-15 22:16:02'), +(8625,319,1,439,'2.99','2005-05-27 17:54:48','2006-02-15 22:16:02'), +(8626,319,1,1632,'2.99','2005-06-16 08:03:42','2006-02-15 22:16:02'), +(8627,319,1,1892,'4.99','2005-06-17 04:17:33','2006-02-15 22:16:02'), +(8628,319,2,2021,'3.99','2005-06-17 12:41:18','2006-02-15 22:16:02'), +(8629,319,2,2703,'4.99','2005-06-19 13:36:06','2006-02-15 22:16:02'), +(8630,319,2,2884,'0.99','2005-06-20 01:31:16','2006-02-15 22:16:02'), +(8631,319,2,3256,'3.99','2005-06-21 03:45:42','2006-02-15 22:16:02'), +(8632,319,2,4119,'3.99','2005-07-07 07:06:03','2006-02-15 22:16:02'), +(8633,319,2,4295,'2.99','2005-07-07 16:08:51','2006-02-15 22:16:02'), +(8634,319,1,4630,'4.99','2005-07-08 08:33:38','2006-02-15 22:16:02'), +(8635,319,1,5791,'8.99','2005-07-10 14:16:22','2006-02-15 22:16:02'), +(8636,319,1,5882,'2.99','2005-07-10 19:20:34','2006-02-15 22:16:02'), +(8637,319,2,6132,'2.99','2005-07-11 08:24:44','2006-02-15 22:16:02'), +(8638,319,1,6195,'4.99','2005-07-11 12:00:32','2006-02-15 22:16:02'), +(8639,319,1,6255,'4.99','2005-07-11 15:11:33','2006-02-15 22:16:02'), +(8640,319,1,6485,'6.99','2005-07-12 02:07:59','2006-02-15 22:16:02'), +(8641,319,2,7953,'2.99','2005-07-28 13:24:32','2006-02-15 22:16:02'), +(8642,319,2,9017,'4.99','2005-07-30 05:26:20','2006-02-15 22:16:02'), +(8643,319,2,9044,'0.99','2005-07-30 06:35:21','2006-02-15 22:16:02'), +(8644,319,1,11575,'0.99','2005-08-17 01:50:26','2006-02-15 22:16:03'), +(8645,319,2,11598,'0.99','2005-08-17 03:03:07','2006-02-15 22:16:03'), +(8646,319,1,11955,'6.99','2005-08-17 17:21:35','2006-02-15 22:16:03'), +(8647,319,2,11994,'2.99','2005-08-17 18:29:35','2006-02-15 22:16:03'), +(8648,319,1,12018,'4.99','2005-08-17 19:44:46','2006-02-15 22:16:03'), +(8649,319,2,12424,'8.99','2005-08-18 10:16:57','2006-02-15 22:16:03'), +(8650,319,1,13548,'3.99','2005-08-20 03:53:20','2006-02-15 22:16:03'), +(8651,319,2,14828,'4.99','2005-08-22 01:34:05','2006-02-15 22:16:03'), +(8652,319,2,15396,'5.99','2005-08-22 23:07:57','2006-02-15 22:16:03'), +(8653,320,2,1258,'4.99','2005-06-15 06:21:30','2006-02-15 22:16:03'), +(8654,320,2,1484,'3.99','2005-06-15 21:22:35','2006-02-15 22:16:03'), +(8655,320,2,1567,'1.99','2005-06-16 03:13:30','2006-02-15 22:16:03'), +(8656,320,1,2216,'4.99','2005-06-18 03:08:17','2006-02-15 22:16:03'), +(8657,320,2,2883,'7.99','2005-06-20 01:29:10','2006-02-15 22:16:03'), +(8658,320,2,3519,'0.99','2005-07-06 00:57:29','2006-02-15 22:16:03'), +(8659,320,2,3756,'4.99','2005-07-06 12:40:38','2006-02-15 22:16:03'), +(8660,320,2,4173,'2.99','2005-07-07 09:57:26','2006-02-15 22:16:03'), +(8661,320,2,7057,'4.99','2005-07-27 03:50:03','2006-02-15 22:16:03'), +(8662,320,2,7064,'3.99','2005-07-27 03:53:29','2006-02-15 22:16:03'), +(8663,320,2,7930,'4.99','2005-07-28 12:21:08','2006-02-15 22:16:03'), +(8664,320,2,8144,'4.99','2005-07-28 20:30:55','2006-02-15 22:16:03'), +(8665,320,2,8235,'4.99','2005-07-29 00:22:56','2006-02-15 22:16:03'), +(8666,320,1,8238,'0.99','2005-07-29 00:30:06','2006-02-15 22:16:03'), +(8667,320,2,8794,'4.99','2005-07-29 20:59:38','2006-02-15 22:16:03'), +(8668,320,1,9509,'0.99','2005-07-31 00:22:42','2006-02-15 22:16:04'), +(8669,320,1,11208,'0.99','2005-08-02 12:02:37','2006-02-15 22:16:04'), +(8670,320,2,11560,'2.99','2005-08-17 01:20:30','2006-02-15 22:16:04'), +(8671,320,2,14171,'0.99','2005-08-21 03:00:42','2006-02-15 22:16:04'), +(8672,320,1,15302,'2.99','2005-08-22 19:44:53','2006-02-15 22:16:04'), +(8673,321,2,200,'4.99','2005-05-26 07:12:21','2006-02-15 22:16:04'), +(8674,321,1,620,'5.99','2005-05-28 15:54:45','2006-02-15 22:16:04'), +(8675,321,2,818,'4.99','2005-05-29 20:47:53','2006-02-15 22:16:04'), +(8676,321,2,1750,'5.99','2005-06-16 16:57:36','2006-02-15 22:16:04'), +(8677,321,1,3410,'0.99','2005-06-21 16:20:47','2006-02-15 22:16:04'), +(8678,321,2,3901,'5.99','2005-07-06 19:24:55','2006-02-15 22:16:04'), +(8679,321,1,3920,'4.99','2005-07-06 20:26:40','2006-02-15 22:16:04'), +(8680,321,2,4281,'4.99','2005-07-07 15:17:50','2006-02-15 22:16:04'), +(8681,321,1,4318,'5.99','2005-07-07 17:47:50','2006-02-15 22:16:04'), +(8682,321,2,5202,'2.99','2005-07-09 10:53:48','2006-02-15 22:16:04'), +(8683,321,2,5867,'8.99','2005-07-10 18:39:01','2006-02-15 22:16:04'), +(8684,321,2,6190,'2.99','2005-07-11 11:36:18','2006-02-15 22:16:04'), +(8685,321,1,6859,'5.99','2005-07-12 19:53:57','2006-02-15 22:16:04'), +(8686,321,2,8685,'6.99','2005-07-29 16:17:05','2006-02-15 22:16:04'), +(8687,321,1,9981,'0.99','2005-07-31 17:08:31','2006-02-15 22:16:04'), +(8688,321,1,11722,'2.99','2005-08-17 07:53:03','2006-02-15 22:16:04'), +(8689,321,1,12033,'6.99','2005-08-17 20:14:34','2006-02-15 22:16:04'), +(8690,321,2,12034,'7.99','2005-08-17 20:15:31','2006-02-15 22:16:04'), +(8691,321,1,12398,'4.99','2005-08-18 09:13:24','2006-02-15 22:16:04'), +(8692,321,2,13623,'6.99','2005-08-20 06:49:46','2006-02-15 22:16:05'), +(8693,321,1,15673,'6.99','2005-08-23 09:12:50','2006-02-15 22:16:05'), +(8694,321,2,15888,'5.99','2005-08-23 16:56:14','2006-02-15 22:16:05'), +(8695,322,2,166,'0.99','2005-05-26 02:49:11','2006-02-15 22:16:05'), +(8696,322,1,269,'4.99','2005-05-26 16:19:46','2006-02-15 22:16:05'), +(8697,322,1,1386,'2.99','2005-06-15 15:38:58','2006-02-15 22:16:05'), +(8698,322,1,1588,'8.99','2005-06-16 04:53:21','2006-02-15 22:16:05'), +(8699,322,2,2481,'4.99','2005-06-18 21:08:30','2006-02-15 22:16:05'), +(8700,322,1,2554,'0.99','2005-06-19 03:05:38','2006-02-15 22:16:05'), +(8701,322,1,2983,'7.99','2005-06-20 08:41:42','2006-02-15 22:16:05'), +(8702,322,2,3054,'5.99','2005-06-20 13:16:41','2006-02-15 22:16:05'), +(8703,322,2,3413,'8.99','2005-06-21 16:57:07','2006-02-15 22:16:05'), +(8704,322,1,3478,'0.99','2005-07-05 23:05:44','2006-02-15 22:16:05'), +(8705,322,2,3627,'1.99','2005-07-06 06:19:25','2006-02-15 22:16:05'), +(8706,322,1,3646,'4.99','2005-07-06 07:28:59','2006-02-15 22:16:05'), +(8707,322,2,6033,'2.99','2005-07-11 02:59:34','2006-02-15 22:16:05'), +(8708,322,1,6511,'3.99','2005-07-12 03:39:29','2006-02-15 22:16:05'), +(8709,322,2,6673,'0.99','2005-07-12 11:50:56','2006-02-15 22:16:05'), +(8710,322,2,6709,'4.99','2005-07-12 13:20:41','2006-02-15 22:16:05'), +(8711,322,1,7091,'4.99','2005-07-27 04:44:10','2006-02-15 22:16:05'), +(8712,322,2,8142,'4.99','2005-07-28 20:21:54','2006-02-15 22:16:05'), +(8713,322,1,9104,'7.99','2005-07-30 08:49:55','2006-02-15 22:16:05'), +(8714,322,1,9115,'4.99','2005-07-30 09:13:55','2006-02-15 22:16:05'), +(8715,322,1,9252,'1.99','2005-07-30 14:19:59','2006-02-15 22:16:05'), +(8716,322,2,11120,'4.99','2005-08-02 08:47:04','2006-02-15 22:16:06'), +(8717,322,2,11456,'0.99','2005-08-02 21:14:04','2006-02-15 22:16:06'), +(8718,322,2,13180,'4.99','2005-08-19 14:00:38','2006-02-15 22:16:06'), +(8719,322,1,13650,'9.99','2005-08-20 07:49:06','2006-02-15 22:16:06'), +(8720,322,2,14042,'4.99','2005-08-20 21:45:51','2006-02-15 22:16:06'), +(8721,322,1,15450,'0.99','2005-08-23 00:56:01','2006-02-15 22:16:06'), +(8722,322,2,15703,'8.99','2005-08-23 10:23:48','2006-02-15 22:16:06'), +(8723,323,1,58,'4.99','2005-05-25 08:53:14','2006-02-15 22:16:06'), +(8724,323,2,729,'2.99','2005-05-29 06:35:13','2006-02-15 22:16:06'), +(8725,323,1,878,'5.99','2005-05-30 05:49:13','2006-02-15 22:16:06'), +(8726,323,2,1167,'0.99','2005-06-14 23:25:58','2006-02-15 22:16:06'), +(8727,323,2,1786,'2.99','2005-06-16 19:30:54','2006-02-15 22:16:06'), +(8728,323,1,2933,'4.99','2005-06-20 04:52:23','2006-02-15 22:16:06'), +(8729,323,2,3704,'6.99','2005-07-06 10:16:45','2006-02-15 22:16:06'), +(8730,323,2,4572,'1.99','2005-07-08 05:36:59','2006-02-15 22:16:06'), +(8731,323,2,5669,'4.99','2005-07-10 08:12:53','2006-02-15 22:16:06'), +(8732,323,2,5906,'1.99','2005-07-10 20:41:41','2006-02-15 22:16:06'), +(8733,323,1,6840,'3.99','2005-07-12 19:03:22','2006-02-15 22:16:06'), +(8734,323,2,7146,'7.99','2005-07-27 07:02:30','2006-02-15 22:16:06'), +(8735,323,2,7275,'2.99','2005-07-27 11:39:08','2006-02-15 22:16:06'), +(8736,323,2,7695,'5.99','2005-07-28 03:41:13','2006-02-15 22:16:06'), +(8737,323,1,7847,'1.99','2005-07-28 09:23:14','2006-02-15 22:16:06'), +(8738,323,2,7937,'4.99','2005-07-28 12:38:22','2006-02-15 22:16:06'), +(8739,323,2,8474,'0.99','2005-07-29 08:36:56','2006-02-15 22:16:07'), +(8740,323,1,8790,'0.99','2005-07-29 20:51:41','2006-02-15 22:16:07'), +(8741,323,1,9363,'2.99','2005-07-30 18:44:23','2006-02-15 22:16:07'), +(8742,323,2,10002,'4.99','2005-07-31 17:48:16','2006-02-15 22:16:07'), +(8743,323,1,10028,'4.99','2005-07-31 18:35:54','2006-02-15 22:16:07'), +(8744,323,1,10298,'0.99','2005-08-01 04:06:03','2006-02-15 22:16:07'), +(8745,323,1,10994,'3.99','2005-08-02 04:46:53','2006-02-15 22:16:07'), +(8746,323,2,11548,'0.99','2005-08-17 00:59:47','2006-02-15 22:16:07'), +(8747,323,1,12120,'4.99','2005-08-17 23:16:46','2006-02-15 22:16:07'), +(8748,323,1,12169,'2.99','2005-08-18 01:05:54','2006-02-15 22:16:07'), +(8749,323,1,13140,'5.99','2005-08-19 12:35:56','2006-02-15 22:16:07'), +(8750,323,1,14224,'2.99','2005-08-21 04:53:08','2006-02-15 22:16:07'), +(8751,323,1,14957,'3.99','2005-08-22 06:29:34','2006-02-15 22:16:07'), +(8752,323,1,15387,'4.99','2005-08-22 22:49:13','2006-02-15 22:16:07'), +(8753,323,1,15728,'0.99','2005-08-23 11:30:32','2006-02-15 22:16:07'), +(8754,324,2,563,'3.99','2005-05-28 09:10:49','2006-02-15 22:16:07'), +(8755,324,1,1740,'0.99','2005-06-16 16:29:00','2006-02-15 22:16:07'), +(8756,324,2,2590,'2.99','2005-06-19 05:31:40','2006-02-15 22:16:07'), +(8757,324,1,3947,'4.99','2005-07-06 21:42:21','2006-02-15 22:16:07'), +(8758,324,1,4197,'0.99','2005-07-07 11:07:52','2006-02-15 22:16:07'), +(8759,324,2,4368,'4.99','2005-07-07 19:55:19','2006-02-15 22:16:07'), +(8760,324,2,5702,'2.99','2005-07-10 10:00:01','2006-02-15 22:16:07'), +(8761,324,1,5778,'0.99','2005-07-10 13:41:37','2006-02-15 22:16:07'), +(8762,324,1,6034,'2.99','2005-07-11 03:00:50','2006-02-15 22:16:07'), +(8763,324,2,6299,'4.99','2005-07-11 17:45:08','2006-02-15 22:16:08'), +(8764,324,2,7240,'3.99','2005-07-27 10:21:15','2006-02-15 22:16:08'), +(8765,324,1,7263,'7.99','2005-07-27 11:17:22','2006-02-15 22:16:08'), +(8766,324,2,7960,'6.99','2005-07-28 13:47:08','2006-02-15 22:16:08'), +(8767,324,1,8698,'3.99','2005-07-29 16:52:17','2006-02-15 22:16:08'), +(8768,324,1,9651,'4.99','2005-07-31 05:48:49','2006-02-15 22:16:08'), +(8769,324,2,10212,'2.99','2005-08-01 01:01:35','2006-02-15 22:16:08'), +(8770,324,1,11617,'2.99','2005-08-17 04:00:40','2006-02-15 22:16:08'), +(8771,324,1,11771,'6.99','2005-08-17 10:17:09','2006-02-15 22:16:08'), +(8772,324,2,12543,'2.99','2005-08-18 14:23:55','2006-02-15 22:16:08'), +(8773,324,2,13356,'0.99','2005-08-19 21:02:21','2006-02-15 22:16:08'), +(8774,324,1,13386,'2.99','2005-08-19 21:43:58','2006-02-15 22:16:08'), +(8775,324,1,14262,'8.99','2005-08-21 06:08:13','2006-02-15 22:16:08'), +(8776,324,2,14479,'7.99','2005-08-21 13:35:54','2006-02-15 22:16:08'), +(8777,324,1,15263,'4.99','2005-08-22 18:27:33','2006-02-15 22:16:08'), +(8778,324,2,13965,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:08'), +(8779,325,1,131,'5.99','2005-05-25 21:42:46','2006-02-15 22:16:08'), +(8780,325,2,2502,'4.99','2005-06-18 23:12:13','2006-02-15 22:16:08'), +(8781,325,2,2507,'4.99','2005-06-18 23:39:22','2006-02-15 22:16:08'), +(8782,325,2,2808,'2.99','2005-06-19 19:34:45','2006-02-15 22:16:08'), +(8783,325,1,5470,'5.99','2005-07-09 23:10:49','2006-02-15 22:16:08'), +(8784,325,2,5740,'2.99','2005-07-10 11:51:58','2006-02-15 22:16:08'), +(8785,325,1,5775,'4.99','2005-07-10 13:34:26','2006-02-15 22:16:08'), +(8786,325,2,6135,'4.99','2005-07-11 08:32:23','2006-02-15 22:16:08'), +(8787,325,2,6622,'0.99','2005-07-12 09:04:11','2006-02-15 22:16:09'), +(8788,325,2,7223,'9.99','2005-07-27 09:42:27','2006-02-15 22:16:09'), +(8789,325,2,7687,'2.99','2005-07-28 03:20:26','2006-02-15 22:16:09'), +(8790,325,2,8539,'0.99','2005-07-29 10:48:24','2006-02-15 22:16:09'), +(8791,325,2,10030,'2.99','2005-07-31 18:39:36','2006-02-15 22:16:09'), +(8792,325,1,10070,'4.99','2005-07-31 19:46:29','2006-02-15 22:16:09'), +(8793,325,2,10326,'4.99','2005-08-01 04:55:34','2006-02-15 22:16:09'), +(8794,325,1,10412,'0.99','2005-08-01 07:57:16','2006-02-15 22:16:09'), +(8795,325,2,12097,'4.99','2005-08-17 22:35:24','2006-02-15 22:16:09'), +(8796,325,1,12779,'3.99','2005-08-18 23:44:00','2006-02-15 22:16:09'), +(8797,325,2,13054,'4.99','2005-08-19 09:34:02','2006-02-15 22:16:09'), +(8798,325,2,14452,'3.99','2005-08-21 12:23:20','2006-02-15 22:16:09'), +(8799,325,1,14672,'5.99','2005-08-21 19:59:33','2006-02-15 22:16:09'), +(8800,325,2,15009,'0.99','2005-08-22 08:27:27','2006-02-15 22:16:09'), +(8801,326,1,875,'6.99','2005-05-30 05:38:24','2006-02-15 22:16:09'), +(8802,326,2,981,'4.99','2005-05-30 21:52:42','2006-02-15 22:16:09'), +(8803,326,2,1149,'3.99','2005-05-31 21:03:17','2006-02-15 22:16:09'), +(8804,326,1,1311,'4.99','2005-06-15 10:11:59','2006-02-15 22:16:09'), +(8805,326,2,2086,'0.99','2005-06-17 17:32:07','2006-02-15 22:16:09'), +(8806,326,2,2317,'4.99','2005-06-18 09:12:18','2006-02-15 22:16:09'), +(8807,326,1,3441,'4.99','2005-06-21 20:00:12','2006-02-15 22:16:09'), +(8808,326,2,3886,'0.99','2005-07-06 18:44:24','2006-02-15 22:16:09'), +(8809,326,1,4160,'7.99','2005-07-07 09:13:17','2006-02-15 22:16:09'), +(8810,326,1,5147,'5.99','2005-07-09 08:17:41','2006-02-15 22:16:09'), +(8811,326,1,7117,'2.99','2005-07-27 05:48:36','2006-02-15 22:16:10'), +(8812,326,2,7725,'2.99','2005-07-28 04:47:14','2006-02-15 22:16:10'), +(8813,326,2,7931,'4.99','2005-07-28 12:23:41','2006-02-15 22:16:10'), +(8814,326,1,8467,'5.99','2005-07-29 08:25:35','2006-02-15 22:16:10'), +(8815,326,1,8604,'4.99','2005-07-29 13:07:13','2006-02-15 22:16:10'), +(8816,326,2,8739,'2.99','2005-07-29 18:34:33','2006-02-15 22:16:10'), +(8817,326,2,9855,'0.99','2005-07-31 13:00:33','2006-02-15 22:16:10'), +(8818,326,1,10108,'0.99','2005-07-31 21:02:14','2006-02-15 22:16:10'), +(8819,326,2,10173,'4.99','2005-07-31 23:36:59','2006-02-15 22:16:10'), +(8820,326,2,10720,'0.99','2005-08-01 19:04:33','2006-02-15 22:16:10'), +(8821,326,2,10976,'4.99','2005-08-02 04:11:48','2006-02-15 22:16:10'), +(8822,326,2,11010,'0.99','2005-08-02 05:06:27','2006-02-15 22:16:10'), +(8823,326,2,11428,'2.99','2005-08-02 20:03:10','2006-02-15 22:16:10'), +(8824,326,2,11485,'4.99','2005-08-02 22:33:25','2006-02-15 22:16:10'), +(8825,326,2,12829,'2.99','2005-08-19 01:38:18','2006-02-15 22:16:10'), +(8826,327,1,653,'6.99','2005-05-28 20:12:20','2006-02-15 22:16:10'), +(8827,327,1,1294,'4.99','2005-06-15 09:09:27','2006-02-15 22:16:10'), +(8828,327,2,1577,'3.99','2005-06-16 04:03:28','2006-02-15 22:16:10'), +(8829,327,2,1929,'6.99','2005-06-17 06:49:30','2006-02-15 22:16:10'), +(8830,327,1,2273,'4.99','2005-06-18 06:30:02','2006-02-15 22:16:10'), +(8831,327,2,2304,'5.99','2005-06-18 08:30:15','2006-02-15 22:16:10'), +(8832,327,2,2637,'3.99','2005-06-19 09:20:56','2006-02-15 22:16:10'), +(8833,327,1,4445,'4.99','2005-07-07 23:08:22','2006-02-15 22:16:10'), +(8834,327,1,4521,'0.99','2005-07-08 02:57:56','2006-02-15 22:16:11'), +(8835,327,1,6618,'2.99','2005-07-12 08:41:42','2006-02-15 22:16:11'), +(8836,327,2,7458,'1.99','2005-07-27 18:36:17','2006-02-15 22:16:11'), +(8837,327,2,7808,'1.99','2005-07-28 07:58:56','2006-02-15 22:16:11'), +(8838,327,1,10371,'0.99','2005-08-01 06:20:29','2006-02-15 22:16:11'), +(8839,327,1,11372,'4.99','2005-08-02 18:10:50','2006-02-15 22:16:11'), +(8840,327,2,11929,'6.99','2005-08-17 16:28:51','2006-02-15 22:16:11'), +(8841,327,1,12016,'0.99','2005-08-17 19:33:24','2006-02-15 22:16:11'), +(8842,327,2,13158,'2.99','2005-08-19 13:18:10','2006-02-15 22:16:11'), +(8843,327,1,13360,'4.99','2005-08-19 21:05:11','2006-02-15 22:16:11'), +(8844,327,1,13448,'0.99','2005-08-20 00:12:43','2006-02-15 22:16:11'), +(8845,327,1,14847,'4.99','2005-08-22 02:13:51','2006-02-15 22:16:11'), +(8846,327,2,15365,'3.99','2005-08-22 21:42:17','2006-02-15 22:16:11'), +(8847,327,1,15386,'2.99','2005-08-22 22:41:14','2006-02-15 22:16:11'), +(8848,327,1,15828,'5.99','2005-08-23 15:16:32','2006-02-15 22:16:11'), +(8849,327,1,15916,'9.99','2005-08-23 17:56:01','2006-02-15 22:16:11'), +(8850,327,2,15969,'7.99','2005-08-23 19:51:30','2006-02-15 22:16:11'), +(8851,327,1,15297,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:11'), +(8852,328,2,862,'2.99','2005-05-30 03:09:11','2006-02-15 22:16:11'), +(8853,328,2,1670,'2.99','2005-06-16 10:26:33','2006-02-15 22:16:11'), +(8854,328,2,1980,'6.99','2005-06-17 09:48:05','2006-02-15 22:16:11'), +(8855,328,2,2243,'5.99','2005-06-18 04:33:03','2006-02-15 22:16:11'), +(8856,328,1,3024,'4.99','2005-06-20 11:29:17','2006-02-15 22:16:11'), +(8857,328,1,3239,'0.99','2005-06-21 02:48:40','2006-02-15 22:16:11'), +(8858,328,1,5450,'4.99','2005-07-09 22:13:25','2006-02-15 22:16:12'), +(8859,328,1,8017,'1.99','2005-07-28 15:35:41','2006-02-15 22:16:12'), +(8860,328,1,8577,'6.99','2005-07-29 11:56:30','2006-02-15 22:16:12'), +(8861,328,2,8780,'4.99','2005-07-29 20:19:45','2006-02-15 22:16:12'), +(8862,328,2,9557,'2.99','2005-07-31 02:14:01','2006-02-15 22:16:12'), +(8863,328,1,9835,'2.99','2005-07-31 12:07:35','2006-02-15 22:16:12'), +(8864,328,1,11174,'2.99','2005-08-02 10:32:11','2006-02-15 22:16:12'), +(8865,328,1,12175,'4.99','2005-08-18 01:10:17','2006-02-15 22:16:12'), +(8866,328,2,12825,'0.99','2005-08-19 01:23:58','2006-02-15 22:16:12'), +(8867,328,1,13609,'2.99','2005-08-20 06:11:51','2006-02-15 22:16:12'), +(8868,328,2,13681,'7.99','2005-08-20 08:47:37','2006-02-15 22:16:12'), +(8869,328,1,13907,'3.99','2005-08-20 16:17:27','2006-02-15 22:16:12'), +(8870,328,2,14307,'3.99','2005-08-21 07:34:52','2006-02-15 22:16:12'), +(8871,328,1,14755,'3.99','2005-08-21 23:18:08','2006-02-15 22:16:12'), +(8872,328,2,14939,'2.99','2005-08-22 05:53:52','2006-02-15 22:16:12'), +(8873,328,1,15179,'4.99','2005-08-22 15:36:22','2006-02-15 22:16:12'), +(8874,328,1,15863,'0.99','2005-08-23 16:17:09','2006-02-15 22:16:12'), +(8875,329,1,1183,'2.99','2005-06-15 00:49:19','2006-02-15 22:16:12'), +(8876,329,1,2010,'5.99','2005-06-17 11:54:15','2006-02-15 22:16:12'), +(8877,329,2,2024,'0.99','2005-06-17 13:00:51','2006-02-15 22:16:12'), +(8878,329,1,2151,'0.99','2005-06-17 22:52:37','2006-02-15 22:16:12'), +(8879,329,1,2303,'2.99','2005-06-18 08:27:59','2006-02-15 22:16:12'), +(8880,329,2,2702,'2.99','2005-06-19 13:35:56','2006-02-15 22:16:12'), +(8881,329,1,3052,'5.99','2005-06-20 13:09:19','2006-02-15 22:16:13'), +(8882,329,2,3053,'0.99','2005-06-20 13:10:30','2006-02-15 22:16:13'), +(8883,329,2,3268,'4.99','2005-06-21 04:55:49','2006-02-15 22:16:13'), +(8884,329,2,3976,'2.99','2005-07-06 23:00:20','2006-02-15 22:16:13'), +(8885,329,2,4076,'4.99','2005-07-07 04:52:15','2006-02-15 22:16:13'), +(8886,329,1,4415,'4.99','2005-07-07 22:01:43','2006-02-15 22:16:13'), +(8887,329,1,4465,'1.99','2005-07-08 00:07:45','2006-02-15 22:16:13'), +(8888,329,2,4674,'2.99','2005-07-08 10:19:28','2006-02-15 22:16:13'), +(8889,329,1,7980,'4.99','2005-07-28 14:16:49','2006-02-15 22:16:13'), +(8890,329,2,8172,'7.99','2005-07-28 21:34:36','2006-02-15 22:16:13'), +(8891,329,1,8460,'6.99','2005-07-29 08:08:03','2006-02-15 22:16:13'), +(8892,329,2,8941,'0.99','2005-07-30 02:59:21','2006-02-15 22:16:13'), +(8893,329,2,9024,'4.99','2005-07-30 05:44:42','2006-02-15 22:16:13'), +(8894,329,2,9219,'0.99','2005-07-30 13:15:21','2006-02-15 22:16:13'), +(8895,329,1,9381,'0.99','2005-07-30 19:23:04','2006-02-15 22:16:13'), +(8896,329,1,9827,'6.99','2005-07-31 11:56:55','2006-02-15 22:16:13'), +(8897,329,1,10473,'7.99','2005-08-01 09:56:24','2006-02-15 22:16:13'), +(8898,329,2,10490,'0.99','2005-08-01 10:37:11','2006-02-15 22:16:13'), +(8899,329,1,11130,'2.99','2005-08-02 09:08:59','2006-02-15 22:16:13'), +(8900,329,2,11169,'3.99','2005-08-02 10:19:42','2006-02-15 22:16:13'), +(8901,329,2,11697,'0.99','2005-08-17 07:09:19','2006-02-15 22:16:13'), +(8902,329,1,12659,'6.99','2005-08-18 19:05:49','2006-02-15 22:16:13'), +(8903,329,1,13627,'8.99','2005-08-20 06:59:00','2006-02-15 22:16:13'), +(8904,329,1,14900,'4.99','2005-08-22 04:27:48','2006-02-15 22:16:13'), +(8905,329,2,15011,'4.99','2005-08-22 08:31:07','2006-02-15 22:16:14'), +(8906,329,1,15308,'2.99','2005-08-22 19:54:31','2006-02-15 22:16:14'), +(8907,330,1,704,'3.99','2005-05-29 02:44:43','2006-02-15 22:16:14'), +(8908,330,2,967,'7.99','2005-05-30 19:12:06','2006-02-15 22:16:14'), +(8909,330,1,1219,'6.99','2005-06-15 03:25:59','2006-02-15 22:16:14'), +(8910,330,2,1511,'5.99','2005-06-15 22:45:06','2006-02-15 22:16:14'), +(8911,330,2,2885,'0.99','2005-06-20 01:33:42','2006-02-15 22:16:14'), +(8912,330,1,2936,'4.99','2005-06-20 05:09:27','2006-02-15 22:16:14'), +(8913,330,2,3061,'2.99','2005-06-20 13:48:21','2006-02-15 22:16:14'), +(8914,330,2,3603,'4.99','2005-07-06 05:25:03','2006-02-15 22:16:14'), +(8915,330,2,3659,'2.99','2005-07-06 08:03:14','2006-02-15 22:16:14'), +(8916,330,2,3760,'2.99','2005-07-06 12:49:28','2006-02-15 22:16:14'), +(8917,330,1,4124,'1.99','2005-07-07 07:19:54','2006-02-15 22:16:14'), +(8918,330,2,5149,'2.99','2005-07-09 08:28:23','2006-02-15 22:16:14'), +(8919,330,1,5750,'5.99','2005-07-10 12:20:41','2006-02-15 22:16:14'), +(8920,330,1,6656,'0.99','2005-07-12 11:09:47','2006-02-15 22:16:14'), +(8921,330,2,6678,'2.99','2005-07-12 11:58:36','2006-02-15 22:16:14'), +(8922,330,1,6719,'2.99','2005-07-12 13:40:37','2006-02-15 22:16:14'), +(8923,330,2,7894,'2.99','2005-07-28 10:53:58','2006-02-15 22:16:14'), +(8924,330,1,8680,'4.99','2005-07-29 16:08:03','2006-02-15 22:16:14'), +(8925,330,2,10100,'4.99','2005-07-31 20:47:18','2006-02-15 22:16:14'), +(8926,330,2,11259,'3.99','2005-08-02 13:46:30','2006-02-15 22:16:14'), +(8927,330,1,12062,'2.99','2005-08-17 21:24:47','2006-02-15 22:16:14'), +(8928,330,1,12394,'2.99','2005-08-18 09:05:15','2006-02-15 22:16:15'), +(8929,330,1,12740,'4.99','2005-08-18 22:17:04','2006-02-15 22:16:15'), +(8930,330,1,12867,'0.99','2005-08-19 02:40:11','2006-02-15 22:16:15'), +(8931,330,2,11709,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:15'), +(8932,331,2,87,'0.99','2005-05-25 13:52:43','2006-02-15 22:16:15'), +(8933,331,1,996,'2.99','2005-05-31 00:06:20','2006-02-15 22:16:15'), +(8934,331,1,1415,'2.99','2005-06-15 17:31:57','2006-02-15 22:16:15'), +(8935,331,2,2528,'6.99','2005-06-19 01:14:12','2006-02-15 22:16:15'), +(8936,331,1,2587,'2.99','2005-06-19 05:06:14','2006-02-15 22:16:15'), +(8937,331,1,3505,'4.99','2005-07-06 00:19:32','2006-02-15 22:16:15'), +(8938,331,1,3613,'4.99','2005-07-06 05:45:53','2006-02-15 22:16:15'), +(8939,331,2,3871,'8.99','2005-07-06 17:58:51','2006-02-15 22:16:15'), +(8940,331,1,4051,'4.99','2005-07-07 03:37:28','2006-02-15 22:16:15'), +(8941,331,2,4063,'5.99','2005-07-07 04:23:57','2006-02-15 22:16:15'), +(8942,331,1,4326,'10.99','2005-07-07 18:01:22','2006-02-15 22:16:15'), +(8943,331,1,5152,'2.99','2005-07-09 08:34:44','2006-02-15 22:16:15'), +(8944,331,1,5885,'1.99','2005-07-10 19:33:50','2006-02-15 22:16:15'), +(8945,331,1,5947,'5.99','2005-07-10 23:07:42','2006-02-15 22:16:15'), +(8946,331,1,8231,'0.99','2005-07-29 00:14:37','2006-02-15 22:16:15'), +(8947,331,2,8995,'4.99','2005-07-30 04:53:11','2006-02-15 22:16:15'), +(8948,331,1,9401,'5.99','2005-07-30 20:18:19','2006-02-15 22:16:15'), +(8949,331,2,10188,'6.99','2005-08-01 00:19:41','2006-02-15 22:16:16'), +(8950,331,1,11052,'5.99','2005-08-02 06:26:19','2006-02-15 22:16:16'), +(8951,331,1,11362,'2.99','2005-08-02 17:47:25','2006-02-15 22:16:16'), +(8952,331,2,12533,'4.99','2005-08-18 14:01:40','2006-02-15 22:16:16'), +(8953,331,1,13795,'0.99','2005-08-20 12:32:09','2006-02-15 22:16:16'), +(8954,331,1,14256,'7.99','2005-08-21 05:52:27','2006-02-15 22:16:16'), +(8955,331,1,14628,'1.99','2005-08-21 18:37:24','2006-02-15 22:16:16'), +(8956,331,1,15339,'2.99','2005-08-22 20:52:12','2006-02-15 22:16:16'), +(8957,331,2,15447,'3.99','2005-08-23 00:53:57','2006-02-15 22:16:16'), +(8958,331,1,15521,'2.99','2005-08-23 03:30:51','2006-02-15 22:16:16'), +(8959,332,2,600,'3.99','2005-05-28 14:08:19','2006-02-15 22:16:16'), +(8960,332,1,1000,'6.99','2005-05-31 00:25:56','2006-02-15 22:16:16'), +(8961,332,1,4100,'6.99','2005-07-07 06:20:52','2006-02-15 22:16:16'), +(8962,332,1,4302,'6.99','2005-07-07 16:47:53','2006-02-15 22:16:16'), +(8963,332,2,5116,'2.99','2005-07-09 07:10:12','2006-02-15 22:16:16'), +(8964,332,1,5277,'1.99','2005-07-09 14:40:42','2006-02-15 22:16:16'), +(8965,332,2,5381,'2.99','2005-07-09 19:11:11','2006-02-15 22:16:16'), +(8966,332,2,5388,'0.99','2005-07-09 19:25:25','2006-02-15 22:16:16'), +(8967,332,1,5440,'0.99','2005-07-09 21:45:17','2006-02-15 22:16:16'), +(8968,332,2,7049,'7.99','2005-07-27 03:32:41','2006-02-15 22:16:16'), +(8969,332,2,7418,'2.99','2005-07-27 16:59:09','2006-02-15 22:16:16'), +(8970,332,2,7577,'8.99','2005-07-27 22:56:07','2006-02-15 22:16:16'), +(8971,332,2,7578,'4.99','2005-07-27 22:58:17','2006-02-15 22:16:17'), +(8972,332,2,7934,'8.99','2005-07-28 12:33:10','2006-02-15 22:16:17'), +(8973,332,2,8173,'6.99','2005-07-28 21:35:44','2006-02-15 22:16:17'), +(8974,332,1,9324,'1.99','2005-07-30 17:28:52','2006-02-15 22:16:17'), +(8975,332,1,9388,'5.99','2005-07-30 19:27:22','2006-02-15 22:16:17'), +(8976,332,1,9921,'0.99','2005-07-31 14:59:21','2006-02-15 22:16:17'), +(8977,332,1,10026,'4.99','2005-07-31 18:31:51','2006-02-15 22:16:17'), +(8978,332,1,10307,'0.99','2005-08-01 04:21:54','2006-02-15 22:16:17'), +(8979,332,2,10439,'0.99','2005-08-01 08:54:26','2006-02-15 22:16:17'), +(8980,332,1,11229,'5.99','2005-08-02 12:56:37','2006-02-15 22:16:17'), +(8981,332,2,11564,'2.99','2005-08-17 01:27:49','2006-02-15 22:16:17'), +(8982,332,2,12318,'4.99','2005-08-18 06:21:56','2006-02-15 22:16:17'), +(8983,332,2,13673,'2.99','2005-08-20 08:27:30','2006-02-15 22:16:17'), +(8984,332,2,14783,'4.99','2005-08-22 00:21:57','2006-02-15 22:16:17'), +(8985,332,2,15194,'0.99','2005-08-22 16:07:34','2006-02-15 22:16:17'), +(8986,332,1,15210,'3.99','2005-08-22 16:37:36','2006-02-15 22:16:17'), +(8987,333,1,4,'4.99','2005-05-24 23:04:41','2006-02-15 22:16:17'), +(8988,333,1,1667,'2.99','2005-06-16 10:18:59','2006-02-15 22:16:17'), +(8989,333,1,2149,'6.99','2005-06-17 22:50:00','2006-02-15 22:16:17'), +(8990,333,1,2929,'1.99','2005-06-20 04:47:39','2006-02-15 22:16:17'), +(8991,333,1,3110,'2.99','2005-06-20 17:40:12','2006-02-15 22:16:17'), +(8992,333,2,5032,'0.99','2005-07-09 02:39:47','2006-02-15 22:16:17'), +(8993,333,1,5645,'1.99','2005-07-10 06:58:21','2006-02-15 22:16:17'), +(8994,333,2,5892,'4.99','2005-07-10 20:02:42','2006-02-15 22:16:17'), +(8995,333,2,6275,'0.99','2005-07-11 16:12:11','2006-02-15 22:16:18'), +(8996,333,2,6931,'4.99','2005-07-26 23:02:57','2006-02-15 22:16:18'), +(8997,333,2,6958,'0.99','2005-07-27 00:02:41','2006-02-15 22:16:18'), +(8998,333,2,7076,'6.99','2005-07-27 04:12:14','2006-02-15 22:16:18'), +(8999,333,2,7246,'0.99','2005-07-27 10:30:41','2006-02-15 22:16:18'), +(9000,333,1,8719,'4.99','2005-07-29 17:45:45','2006-02-15 22:16:18'), +(9001,333,2,9148,'4.99','2005-07-30 10:39:10','2006-02-15 22:16:18'), +(9002,333,2,9338,'10.99','2005-07-30 18:03:13','2006-02-15 22:16:18'), +(9003,333,2,10035,'4.99','2005-07-31 18:46:46','2006-02-15 22:16:18'), +(9004,333,1,10062,'2.99','2005-07-31 19:24:55','2006-02-15 22:16:18'), +(9005,333,2,10844,'4.99','2005-08-01 23:46:58','2006-02-15 22:16:18'), +(9006,333,1,12427,'6.99','2005-08-18 10:24:17','2006-02-15 22:16:18'), +(9007,333,2,12661,'0.99','2005-08-18 19:10:10','2006-02-15 22:16:18'), +(9008,333,1,13579,'3.99','2005-08-20 05:22:06','2006-02-15 22:16:18'), +(9009,333,2,13710,'4.99','2005-08-20 09:35:20','2006-02-15 22:16:18'), +(9010,333,1,14057,'4.99','2005-08-20 22:22:59','2006-02-15 22:16:18'), +(9011,333,1,14740,'2.99','2005-08-21 22:35:33','2006-02-15 22:16:18'), +(9012,333,2,15253,'2.99','2005-08-22 18:05:21','2006-02-15 22:16:18'), +(9013,333,1,15313,'4.99','2005-08-22 19:59:42','2006-02-15 22:16:18'), +(9014,334,1,13,'6.99','2005-05-25 00:22:55','2006-02-15 22:16:18'), +(9015,334,1,431,'8.99','2005-05-27 16:31:05','2006-02-15 22:16:18'), +(9016,334,2,1187,'4.99','2005-06-15 00:58:50','2006-02-15 22:16:18'), +(9017,334,1,1298,'4.99','2005-06-15 09:32:53','2006-02-15 22:16:19'), +(9018,334,2,2476,'0.99','2005-06-18 20:57:12','2006-02-15 22:16:19'), +(9019,334,1,3662,'4.99','2005-07-06 08:11:48','2006-02-15 22:16:19'), +(9020,334,1,4603,'6.99','2005-07-08 06:57:07','2006-02-15 22:16:19'), +(9021,334,2,5014,'4.99','2005-07-09 01:51:49','2006-02-15 22:16:19'), +(9022,334,2,5434,'0.99','2005-07-09 21:25:20','2006-02-15 22:16:19'), +(9023,334,2,5818,'5.99','2005-07-10 15:51:12','2006-02-15 22:16:19'), +(9024,334,1,5845,'4.99','2005-07-10 17:23:14','2006-02-15 22:16:19'), +(9025,334,2,6641,'5.99','2005-07-12 10:33:14','2006-02-15 22:16:19'), +(9026,334,2,6749,'4.99','2005-07-12 14:43:05','2006-02-15 22:16:19'), +(9027,334,1,6987,'2.99','2005-07-27 00:59:50','2006-02-15 22:16:19'), +(9028,334,1,8977,'7.99','2005-07-30 04:14:07','2006-02-15 22:16:19'), +(9029,334,1,9633,'2.99','2005-07-31 05:04:08','2006-02-15 22:16:19'), +(9030,334,1,10207,'3.99','2005-08-01 00:53:01','2006-02-15 22:16:19'), +(9031,334,1,10408,'4.99','2005-08-01 07:42:10','2006-02-15 22:16:19'), +(9032,334,1,10492,'2.99','2005-08-01 10:42:28','2006-02-15 22:16:19'), +(9033,334,1,10879,'1.99','2005-08-02 00:33:20','2006-02-15 22:16:19'), +(9034,334,2,10997,'7.99','2005-08-02 04:49:02','2006-02-15 22:16:19'), +(9035,334,2,12677,'4.99','2005-08-18 19:36:05','2006-02-15 22:16:19'), +(9036,334,2,13325,'4.99','2005-08-19 19:52:02','2006-02-15 22:16:19'), +(9037,334,1,13876,'2.99','2005-08-20 15:15:28','2006-02-15 22:16:19'), +(9038,334,1,14645,'0.99','2005-08-21 19:12:47','2006-02-15 22:16:19'), +(9039,334,1,14984,'7.99','2005-08-22 07:35:31','2006-02-15 22:16:19'), +(9040,334,2,15548,'0.99','2005-08-23 04:26:20','2006-02-15 22:16:20'), +(9041,334,2,15656,'4.99','2005-08-23 08:38:58','2006-02-15 22:16:20'), +(9042,334,1,15669,'3.99','2005-08-23 09:06:17','2006-02-15 22:16:20'), +(9043,334,1,14219,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:20'), +(9044,335,1,3329,'4.99','2005-06-21 09:20:31','2006-02-15 22:16:20'), +(9045,335,1,3607,'0.99','2005-07-06 05:30:09','2006-02-15 22:16:20'), +(9046,335,2,4016,'0.99','2005-07-07 01:05:50','2006-02-15 22:16:20'), +(9047,335,2,4032,'2.99','2005-07-07 02:34:13','2006-02-15 22:16:20'), +(9048,335,1,4279,'4.99','2005-07-07 15:01:53','2006-02-15 22:16:20'), +(9049,335,1,4387,'8.99','2005-07-07 20:56:47','2006-02-15 22:16:20'), +(9050,335,1,5024,'4.99','2005-07-09 02:25:12','2006-02-15 22:16:20'), +(9051,335,1,5252,'0.99','2005-07-09 13:40:44','2006-02-15 22:16:20'), +(9052,335,2,5728,'2.99','2005-07-10 11:26:14','2006-02-15 22:16:20'), +(9053,335,1,6624,'7.99','2005-07-12 09:05:50','2006-02-15 22:16:20'), +(9054,335,1,6906,'0.99','2005-07-12 22:03:02','2006-02-15 22:16:20'), +(9055,335,2,8634,'3.99','2005-07-29 14:19:57','2006-02-15 22:16:20'), +(9056,335,1,8855,'2.99','2005-07-29 23:40:10','2006-02-15 22:16:20'), +(9057,335,1,9125,'5.99','2005-07-30 09:43:39','2006-02-15 22:16:20'), +(9058,335,2,9361,'4.99','2005-07-30 18:43:49','2006-02-15 22:16:20'), +(9059,335,1,9428,'0.99','2005-07-30 21:18:37','2006-02-15 22:16:20'), +(9060,335,2,10606,'4.99','2005-08-01 14:39:15','2006-02-15 22:16:21'), +(9061,335,2,13267,'0.99','2005-08-19 17:31:36','2006-02-15 22:16:21'), +(9062,335,1,13622,'1.99','2005-08-20 06:45:32','2006-02-15 22:16:21'), +(9063,335,1,14014,'2.99','2005-08-20 20:47:09','2006-02-15 22:16:21'), +(9064,335,2,15005,'4.99','2005-08-22 08:15:44','2006-02-15 22:16:21'), +(9065,335,2,15101,'0.99','2005-08-22 11:56:02','2006-02-15 22:16:21'), +(9066,335,2,11541,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:21'), +(9067,336,1,1478,'2.99','2005-06-15 21:12:13','2006-02-15 22:16:21'), +(9068,336,2,2212,'2.99','2005-06-18 02:36:10','2006-02-15 22:16:21'), +(9069,336,2,2475,'2.99','2005-06-18 20:52:46','2006-02-15 22:16:21'), +(9070,336,1,2575,'2.99','2005-06-19 04:32:52','2006-02-15 22:16:21'), +(9071,336,2,2719,'4.99','2005-06-19 14:50:19','2006-02-15 22:16:21'), +(9072,336,1,2954,'2.99','2005-06-20 06:45:00','2006-02-15 22:16:21'), +(9073,336,2,3204,'4.99','2005-06-21 00:37:50','2006-02-15 22:16:21'), +(9074,336,2,3349,'0.99','2005-06-21 11:17:35','2006-02-15 22:16:21'), +(9075,336,2,4323,'5.99','2005-07-07 17:55:53','2006-02-15 22:16:21'), +(9076,336,1,4595,'2.99','2005-07-08 06:40:25','2006-02-15 22:16:21'), +(9077,336,2,5649,'2.99','2005-07-10 07:15:07','2006-02-15 22:16:21'), +(9078,336,2,5667,'0.99','2005-07-10 08:11:03','2006-02-15 22:16:21'), +(9079,336,2,6263,'4.99','2005-07-11 15:33:50','2006-02-15 22:16:22'), +(9080,336,2,6382,'6.99','2005-07-11 21:58:53','2006-02-15 22:16:22'), +(9081,336,2,8275,'4.99','2005-07-29 01:35:47','2006-02-15 22:16:22'), +(9082,336,1,8407,'6.99','2005-07-29 06:37:02','2006-02-15 22:16:22'), +(9083,336,2,8607,'4.99','2005-07-29 13:18:00','2006-02-15 22:16:22'), +(9084,336,2,8951,'8.99','2005-07-30 03:18:24','2006-02-15 22:16:22'), +(9085,336,2,9306,'0.99','2005-07-30 16:47:17','2006-02-15 22:16:22'), +(9086,336,1,10055,'0.99','2005-07-31 19:15:58','2006-02-15 22:16:22'), +(9087,336,2,11743,'2.99','2005-08-17 08:49:05','2006-02-15 22:16:22'), +(9088,336,1,12323,'8.99','2005-08-18 06:36:22','2006-02-15 22:16:22'), +(9089,336,2,12794,'0.99','2005-08-19 00:20:37','2006-02-15 22:16:22'), +(9090,336,2,12926,'3.99','2005-08-19 05:00:16','2006-02-15 22:16:22'), +(9091,336,2,13066,'0.99','2005-08-19 09:50:39','2006-02-15 22:16:22'), +(9092,336,2,13689,'4.99','2005-08-20 09:04:30','2006-02-15 22:16:22'), +(9093,336,1,14295,'2.99','2005-08-21 07:09:27','2006-02-15 22:16:22'), +(9094,336,1,15073,'10.99','2005-08-22 11:01:15','2006-02-15 22:16:22'), +(9095,336,2,15848,'2.99','2005-08-23 15:41:12','2006-02-15 22:16:22'), +(9096,336,1,13022,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:22'), +(9097,337,1,374,'6.99','2005-05-27 08:26:30','2006-02-15 22:16:23'), +(9098,337,1,572,'4.99','2005-05-28 10:30:13','2006-02-15 22:16:23'), +(9099,337,1,839,'8.99','2005-05-30 00:28:12','2006-02-15 22:16:23'), +(9100,337,2,1969,'4.99','2005-06-17 09:22:22','2006-02-15 22:16:23'), +(9101,337,1,2014,'5.99','2005-06-17 12:03:28','2006-02-15 22:16:23'), +(9102,337,1,3626,'5.99','2005-07-06 06:15:35','2006-02-15 22:16:23'), +(9103,337,1,4091,'6.99','2005-07-07 05:53:38','2006-02-15 22:16:23'), +(9104,337,2,4093,'4.99','2005-07-07 05:54:50','2006-02-15 22:16:23'), +(9105,337,2,4855,'4.99','2005-07-08 18:45:50','2006-02-15 22:16:23'), +(9106,337,1,5050,'2.99','2005-07-09 03:54:38','2006-02-15 22:16:23'), +(9107,337,1,6212,'0.99','2005-07-11 12:40:48','2006-02-15 22:16:23'), +(9108,337,2,6305,'7.99','2005-07-11 18:02:25','2006-02-15 22:16:23'), +(9109,337,1,6620,'2.99','2005-07-12 08:51:03','2006-02-15 22:16:23'), +(9110,337,1,7410,'4.99','2005-07-27 16:41:59','2006-02-15 22:16:23'), +(9111,337,1,8516,'4.99','2005-07-29 10:00:03','2006-02-15 22:16:23'), +(9112,337,2,8919,'8.99','2005-07-30 01:57:03','2006-02-15 22:16:24'), +(9113,337,2,9051,'5.99','2005-07-30 07:05:54','2006-02-15 22:16:24'), +(9114,337,1,10664,'0.99','2005-08-01 16:51:15','2006-02-15 22:16:24'), +(9115,337,2,10765,'0.99','2005-08-01 20:34:51','2006-02-15 22:16:24'), +(9116,337,2,11252,'2.99','2005-08-02 13:42:13','2006-02-15 22:16:24'), +(9117,337,1,11734,'3.99','2005-08-17 08:34:22','2006-02-15 22:16:24'), +(9118,337,1,12369,'6.99','2005-08-18 07:57:43','2006-02-15 22:16:24'), +(9119,337,2,13305,'6.99','2005-08-19 18:57:05','2006-02-15 22:16:24'), +(9120,337,1,13678,'4.99','2005-08-20 08:38:24','2006-02-15 22:16:24'), +(9121,337,2,13892,'3.99','2005-08-20 15:50:17','2006-02-15 22:16:24'), +(9122,337,2,14118,'5.99','2005-08-21 01:13:37','2006-02-15 22:16:24'), +(9123,337,2,15241,'4.99','2005-08-22 17:47:40','2006-02-15 22:16:24'), +(9124,337,1,15292,'4.99','2005-08-22 19:28:56','2006-02-15 22:16:24'), +(9125,337,2,11847,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:24'), +(9126,338,1,675,'0.99','2005-05-28 22:22:44','2006-02-15 22:16:24'), +(9127,338,2,1510,'4.99','2005-06-15 22:39:34','2006-02-15 22:16:24'), +(9128,338,1,1807,'5.99','2005-06-16 20:58:59','2006-02-15 22:16:24'), +(9129,338,2,1952,'4.99','2005-06-17 08:33:02','2006-02-15 22:16:24'), +(9130,338,1,2148,'6.99','2005-06-17 22:44:35','2006-02-15 22:16:24'), +(9131,338,1,2179,'0.99','2005-06-18 00:41:36','2006-02-15 22:16:24'), +(9132,338,1,2495,'4.99','2005-06-18 22:15:42','2006-02-15 22:16:24'), +(9133,338,1,3458,'5.99','2005-06-21 21:42:49','2006-02-15 22:16:25'), +(9134,338,1,3516,'0.99','2005-07-06 00:50:30','2006-02-15 22:16:25'), +(9135,338,2,3772,'2.99','2005-07-06 13:22:53','2006-02-15 22:16:25'), +(9136,338,2,4104,'5.99','2005-07-07 06:25:41','2006-02-15 22:16:25'), +(9137,338,2,4779,'4.99','2005-07-08 15:53:41','2006-02-15 22:16:25'), +(9138,338,1,5309,'4.99','2005-07-09 16:00:16','2006-02-15 22:16:25'), +(9139,338,1,6236,'2.99','2005-07-11 14:18:17','2006-02-15 22:16:25'), +(9140,338,1,6360,'4.99','2005-07-11 21:07:40','2006-02-15 22:16:25'), +(9141,338,2,7584,'3.99','2005-07-27 23:15:46','2006-02-15 22:16:25'), +(9142,338,1,8766,'0.99','2005-07-29 19:41:04','2006-02-15 22:16:25'), +(9143,338,1,9485,'7.99','2005-07-30 23:32:40','2006-02-15 22:16:25'), +(9144,338,2,10791,'2.99','2005-08-01 21:41:52','2006-02-15 22:16:25'), +(9145,338,1,10897,'0.99','2005-08-02 01:23:42','2006-02-15 22:16:25'), +(9146,338,2,11064,'4.99','2005-08-02 06:55:17','2006-02-15 22:16:25'), +(9147,338,2,11671,'4.99','2005-08-17 05:50:21','2006-02-15 22:16:25'), +(9148,338,2,11719,'5.99','2005-08-17 07:46:05','2006-02-15 22:16:25'), +(9149,338,1,12167,'2.99','2005-08-18 01:00:02','2006-02-15 22:16:25'), +(9150,338,1,13284,'3.99','2005-08-19 18:12:31','2006-02-15 22:16:25'), +(9151,338,1,14619,'2.99','2005-08-21 18:10:03','2006-02-15 22:16:26'), +(9152,338,2,15105,'0.99','2005-08-22 12:01:33','2006-02-15 22:16:26'), +(9153,338,2,15173,'6.99','2005-08-22 15:26:29','2006-02-15 22:16:26'), +(9154,339,1,876,'5.99','2005-05-30 05:41:22','2006-02-15 22:16:26'), +(9155,339,2,1432,'3.99','2005-06-15 18:27:24','2006-02-15 22:16:26'), +(9156,339,1,1536,'4.99','2005-06-16 00:52:22','2006-02-15 22:16:26'), +(9157,339,2,1629,'4.99','2005-06-16 07:53:47','2006-02-15 22:16:26'), +(9158,339,1,3146,'6.99','2005-06-20 20:21:48','2006-02-15 22:16:26'), +(9159,339,1,3335,'4.99','2005-06-21 10:09:08','2006-02-15 22:16:26'), +(9160,339,2,3536,'2.99','2005-07-06 01:36:11','2006-02-15 22:16:26'), +(9161,339,1,4243,'4.99','2005-07-07 13:39:58','2006-02-15 22:16:26'), +(9162,339,1,4467,'0.99','2005-07-08 00:13:52','2006-02-15 22:16:26'), +(9163,339,2,4967,'3.99','2005-07-08 23:48:03','2006-02-15 22:16:26'), +(9164,339,1,5720,'3.99','2005-07-10 11:09:12','2006-02-15 22:16:26'), +(9165,339,1,6072,'6.99','2005-07-11 04:52:40','2006-02-15 22:16:26'), +(9166,339,1,6425,'0.99','2005-07-11 23:54:52','2006-02-15 22:16:26'), +(9167,339,2,6682,'7.99','2005-07-12 12:12:43','2006-02-15 22:16:26'), +(9168,339,2,7244,'2.99','2005-07-27 10:27:33','2006-02-15 22:16:26'), +(9169,339,2,7973,'4.99','2005-07-28 14:10:06','2006-02-15 22:16:27'), +(9170,339,1,8968,'0.99','2005-07-30 03:57:32','2006-02-15 22:16:27'), +(9171,339,2,9208,'5.99','2005-07-30 12:54:03','2006-02-15 22:16:27'), +(9172,339,1,9663,'4.99','2005-07-31 06:10:48','2006-02-15 22:16:27'), +(9173,339,2,10338,'3.99','2005-08-01 05:03:03','2006-02-15 22:16:27'), +(9174,339,2,11171,'4.99','2005-08-02 10:23:41','2006-02-15 22:16:27'), +(9175,339,1,11550,'2.99','2005-08-17 01:02:06','2006-02-15 22:16:27'), +(9176,339,2,11582,'3.99','2005-08-17 02:03:49','2006-02-15 22:16:27'), +(9177,339,2,11699,'5.99','2005-08-17 07:11:58','2006-02-15 22:16:27'), +(9178,339,1,12631,'0.99','2005-08-18 17:52:51','2006-02-15 22:16:27'), +(9179,339,1,13199,'3.99','2005-08-19 14:53:22','2006-02-15 22:16:27'), +(9180,339,1,13575,'5.99','2005-08-20 05:15:20','2006-02-15 22:16:27'), +(9181,339,1,13985,'0.99','2005-08-20 19:13:06','2006-02-15 22:16:27'), +(9182,339,1,14636,'4.99','2005-08-21 18:59:17','2006-02-15 22:16:27'), +(9183,339,2,14758,'3.99','2005-08-21 23:24:52','2006-02-15 22:16:27'), +(9184,340,2,1205,'4.99','2005-06-15 02:25:56','2006-02-15 22:16:27'), +(9185,340,1,1697,'3.99','2005-06-16 12:55:20','2006-02-15 22:16:27'), +(9186,340,1,2177,'5.99','2005-06-18 00:34:45','2006-02-15 22:16:27'), +(9187,340,2,2183,'4.99','2005-06-18 01:06:01','2006-02-15 22:16:28'), +(9188,340,2,2607,'5.99','2005-06-19 06:55:01','2006-02-15 22:16:28'), +(9189,340,1,2653,'5.99','2005-06-19 10:36:53','2006-02-15 22:16:28'), +(9190,340,1,3264,'0.99','2005-06-21 04:19:03','2006-02-15 22:16:28'), +(9191,340,1,3455,'2.99','2005-06-21 21:17:51','2006-02-15 22:16:28'), +(9192,340,2,4475,'2.99','2005-07-08 00:27:30','2006-02-15 22:16:28'), +(9193,340,1,4742,'0.99','2005-07-08 13:35:23','2006-02-15 22:16:28'), +(9194,340,2,6381,'4.99','2005-07-11 21:58:48','2006-02-15 22:16:28'), +(9195,340,2,7617,'2.99','2005-07-28 00:18:40','2006-02-15 22:16:28'), +(9196,340,2,8274,'4.99','2005-07-29 01:34:32','2006-02-15 22:16:28'), +(9197,340,1,8541,'0.99','2005-07-29 10:55:01','2006-02-15 22:16:28'), +(9198,340,2,8551,'4.99','2005-07-29 11:13:11','2006-02-15 22:16:28'), +(9199,340,1,8606,'4.99','2005-07-29 13:14:24','2006-02-15 22:16:28'), +(9200,340,1,9834,'2.99','2005-07-31 12:05:42','2006-02-15 22:16:28'), +(9201,340,1,10292,'2.99','2005-08-01 03:42:40','2006-02-15 22:16:28'), +(9202,340,1,10667,'8.99','2005-08-01 16:58:22','2006-02-15 22:16:28'), +(9203,340,2,10674,'3.99','2005-08-01 17:11:52','2006-02-15 22:16:28'), +(9204,340,1,10809,'0.99','2005-08-01 22:39:27','2006-02-15 22:16:28'), +(9205,340,1,10995,'0.99','2005-08-02 04:48:00','2006-02-15 22:16:28'), +(9206,340,2,12598,'4.99','2005-08-18 16:34:03','2006-02-15 22:16:29'), +(9207,340,2,12908,'1.99','2005-08-19 04:19:05','2006-02-15 22:16:29'), +(9208,340,2,12940,'2.99','2005-08-19 05:38:29','2006-02-15 22:16:29'), +(9209,340,1,13425,'2.99','2005-08-19 23:11:44','2006-02-15 22:16:29'), +(9210,340,1,14457,'4.99','2005-08-21 12:47:38','2006-02-15 22:16:29'), +(9211,340,2,14718,'0.99','2005-08-21 21:39:25','2006-02-15 22:16:29'), +(9212,340,1,14895,'2.99','2005-08-22 04:19:23','2006-02-15 22:16:29'), +(9213,340,2,15306,'2.99','2005-08-22 19:46:36','2006-02-15 22:16:29'), +(9214,340,1,15378,'9.99','2005-08-22 22:25:17','2006-02-15 22:16:29'), +(9215,341,1,1318,'2.99','2005-06-15 10:34:26','2006-02-15 22:16:29'), +(9216,341,2,1520,'7.99','2005-06-15 23:57:20','2006-02-15 22:16:29'), +(9217,341,1,1778,'1.99','2005-06-16 18:54:48','2006-02-15 22:16:29'), +(9218,341,1,1849,'7.99','2005-06-17 00:13:19','2006-02-15 22:16:29'), +(9219,341,2,2829,'2.99','2005-06-19 21:11:30','2006-02-15 22:16:29'), +(9220,341,2,3130,'7.99','2005-06-20 19:03:22','2006-02-15 22:16:29'), +(9221,341,1,3382,'5.99','2005-06-21 14:05:23','2006-02-15 22:16:29'), +(9222,341,2,3938,'4.99','2005-07-06 21:15:45','2006-02-15 22:16:29'), +(9223,341,1,4624,'2.99','2005-07-08 08:12:17','2006-02-15 22:16:29'), +(9224,341,2,5487,'4.99','2005-07-10 00:01:50','2006-02-15 22:16:30'), +(9225,341,2,5931,'0.99','2005-07-10 22:04:19','2006-02-15 22:16:30'), +(9226,341,2,7473,'2.99','2005-07-27 19:05:40','2006-02-15 22:16:30'), +(9227,341,1,8661,'2.99','2005-07-29 15:28:24','2006-02-15 22:16:30'), +(9228,341,1,8728,'9.99','2005-07-29 18:12:49','2006-02-15 22:16:30'), +(9229,341,2,10605,'0.99','2005-08-01 14:36:26','2006-02-15 22:16:30'), +(9230,341,1,11305,'6.99','2005-08-02 15:44:55','2006-02-15 22:16:30'), +(9231,341,1,11723,'2.99','2005-08-17 07:56:22','2006-02-15 22:16:30'), +(9232,341,2,13059,'0.99','2005-08-19 09:42:01','2006-02-15 22:16:30'), +(9233,341,2,13074,'8.99','2005-08-19 10:06:53','2006-02-15 22:16:30'), +(9234,341,2,13806,'4.99','2005-08-20 12:53:46','2006-02-15 22:16:30'), +(9235,341,2,14344,'4.99','2005-08-21 08:40:56','2006-02-15 22:16:30'), +(9236,341,2,15030,'0.99','2005-08-22 09:10:21','2006-02-15 22:16:30'), +(9237,341,2,15938,'6.99','2005-08-23 18:43:31','2006-02-15 22:16:30'), +(9238,342,2,2190,'5.99','2005-06-18 01:29:51','2006-02-15 22:16:30'), +(9239,342,1,2914,'5.99','2005-06-20 03:43:18','2006-02-15 22:16:30'), +(9240,342,1,3081,'2.99','2005-06-20 15:29:13','2006-02-15 22:16:30'), +(9241,342,1,5617,'0.99','2005-07-10 05:28:50','2006-02-15 22:16:30'), +(9242,342,2,6060,'4.99','2005-07-11 04:06:17','2006-02-15 22:16:31'), +(9243,342,2,6429,'8.99','2005-07-12 00:02:50','2006-02-15 22:16:31'), +(9244,342,1,6736,'2.99','2005-07-12 14:16:50','2006-02-15 22:16:31'), +(9245,342,2,6787,'7.99','2005-07-12 16:33:28','2006-02-15 22:16:31'), +(9246,342,2,6997,'0.99','2005-07-27 01:14:02','2006-02-15 22:16:31'), +(9247,342,2,7280,'2.99','2005-07-27 11:50:52','2006-02-15 22:16:31'), +(9248,342,1,9164,'2.99','2005-07-30 11:24:14','2006-02-15 22:16:31'), +(9249,342,1,9526,'0.99','2005-07-31 01:02:22','2006-02-15 22:16:31'), +(9250,342,2,9948,'5.99','2005-07-31 15:49:41','2006-02-15 22:16:31'), +(9251,342,1,9955,'0.99','2005-07-31 16:01:26','2006-02-15 22:16:32'), +(9252,342,2,9956,'4.99','2005-07-31 16:03:47','2006-02-15 22:16:32'), +(9253,342,1,10242,'4.99','2005-08-01 02:18:12','2006-02-15 22:16:32'), +(9254,342,2,11178,'2.99','2005-08-02 10:48:10','2006-02-15 22:16:32'), +(9255,342,2,11446,'0.99','2005-08-02 20:33:37','2006-02-15 22:16:32'), +(9256,342,1,11568,'0.99','2005-08-17 01:30:01','2006-02-15 22:16:32'), +(9257,342,1,12139,'6.99','2005-08-17 23:57:13','2006-02-15 22:16:32'), +(9258,342,1,12404,'4.99','2005-08-18 09:36:34','2006-02-15 22:16:32'), +(9259,342,1,12522,'2.99','2005-08-18 13:45:40','2006-02-15 22:16:32'), +(9260,342,2,12816,'4.99','2005-08-19 01:04:05','2006-02-15 22:16:32'), +(9261,342,2,13368,'4.99','2005-08-19 21:19:35','2006-02-15 22:16:32'), +(9262,342,2,13637,'4.99','2005-08-20 07:21:15','2006-02-15 22:16:32'), +(9263,342,1,13755,'2.99','2005-08-20 11:18:53','2006-02-15 22:16:32'), +(9264,342,2,13827,'4.99','2005-08-20 13:47:19','2006-02-15 22:16:32'), +(9265,342,2,14096,'2.99','2005-08-21 00:27:46','2006-02-15 22:16:32'), +(9266,342,2,14299,'0.99','2005-08-21 07:18:57','2006-02-15 22:16:32'), +(9267,342,2,14683,'8.99','2005-08-21 20:27:44','2006-02-15 22:16:32'), +(9268,342,1,15484,'4.99','2005-08-23 02:04:49','2006-02-15 22:16:32'), +(9269,342,1,15895,'3.99','2005-08-23 17:09:31','2006-02-15 22:16:32'), +(9270,343,2,102,'3.99','2005-05-25 17:22:10','2006-02-15 22:16:32'), +(9271,343,1,455,'3.99','2005-05-27 19:43:29','2006-02-15 22:16:32'), +(9272,343,2,1547,'4.99','2005-06-16 01:42:24','2006-02-15 22:16:33'), +(9273,343,1,1564,'6.99','2005-06-16 02:47:07','2006-02-15 22:16:33'), +(9274,343,2,1879,'0.99','2005-06-17 02:57:34','2006-02-15 22:16:33'), +(9275,343,2,1922,'0.99','2005-06-17 06:04:25','2006-02-15 22:16:33'), +(9276,343,2,2461,'6.99','2005-06-18 19:58:12','2006-02-15 22:16:33'), +(9277,343,1,2980,'8.99','2005-06-20 08:35:03','2006-02-15 22:16:33'), +(9278,343,1,3407,'0.99','2005-06-21 16:14:02','2006-02-15 22:16:33'), +(9279,343,1,3978,'5.99','2005-07-06 23:04:33','2006-02-15 22:16:33'), +(9280,343,1,4472,'7.99','2005-07-08 00:22:06','2006-02-15 22:16:33'), +(9281,343,2,5097,'4.99','2005-07-09 06:09:51','2006-02-15 22:16:33'), +(9282,343,1,5337,'3.99','2005-07-09 17:03:50','2006-02-15 22:16:33'), +(9283,343,1,7069,'6.99','2005-07-27 03:59:35','2006-02-15 22:16:33'), +(9284,343,2,8012,'5.99','2005-07-28 15:29:00','2006-02-15 22:16:33'), +(9285,343,2,8088,'9.99','2005-07-28 18:23:49','2006-02-15 22:16:33'), +(9286,343,2,9458,'5.99','2005-07-30 22:24:34','2006-02-15 22:16:33'), +(9287,343,2,9739,'2.99','2005-07-31 09:08:03','2006-02-15 22:16:33'), +(9288,343,1,10822,'0.99','2005-08-01 22:54:28','2006-02-15 22:16:33'), +(9289,343,1,11212,'0.99','2005-08-02 12:18:29','2006-02-15 22:16:33'), +(9290,343,2,11570,'2.99','2005-08-17 01:34:32','2006-02-15 22:16:33'), +(9291,343,2,13279,'4.99','2005-08-19 18:02:18','2006-02-15 22:16:33'), +(9292,343,2,13522,'3.99','2005-08-20 02:44:06','2006-02-15 22:16:33'), +(9293,343,2,13866,'0.99','2005-08-20 15:05:29','2006-02-15 22:16:33'), +(9294,343,2,15973,'5.99','2005-08-23 20:04:41','2006-02-15 22:16:34'), +(9295,344,2,157,'2.99','2005-05-26 01:25:21','2006-02-15 22:16:34'), +(9296,344,2,813,'5.99','2005-05-29 20:14:34','2006-02-15 22:16:34'), +(9297,344,1,1341,'3.99','2005-06-15 12:26:18','2006-02-15 22:16:34'), +(9298,344,2,1475,'4.99','2005-06-15 21:08:01','2006-02-15 22:16:34'), +(9299,344,1,1731,'0.99','2005-06-16 15:32:12','2006-02-15 22:16:34'), +(9300,344,2,4028,'5.99','2005-07-07 02:19:14','2006-02-15 22:16:34'), +(9301,344,2,4347,'3.99','2005-07-07 18:58:57','2006-02-15 22:16:34'), +(9302,344,2,6363,'5.99','2005-07-11 21:13:19','2006-02-15 22:16:34'), +(9303,344,2,7480,'4.99','2005-07-27 19:19:53','2006-02-15 22:16:34'), +(9304,344,2,8561,'2.99','2005-07-29 11:29:12','2006-02-15 22:16:34'), +(9305,344,2,9788,'4.99','2005-07-31 10:28:21','2006-02-15 22:16:34'), +(9306,344,2,11116,'5.99','2005-08-02 08:34:40','2006-02-15 22:16:34'), +(9307,344,2,12183,'5.99','2005-08-18 01:34:13','2006-02-15 22:16:34'), +(9308,344,2,13014,'4.99','2005-08-19 07:56:08','2006-02-15 22:16:34'), +(9309,344,1,13033,'3.99','2005-08-19 08:34:39','2006-02-15 22:16:34'), +(9310,344,1,14621,'0.99','2005-08-21 18:17:59','2006-02-15 22:16:34'), +(9311,344,2,14624,'0.99','2005-08-21 18:32:42','2006-02-15 22:16:34'), +(9312,344,1,15215,'2.99','2005-08-22 16:55:26','2006-02-15 22:16:34'), +(9313,345,1,206,'0.99','2005-05-26 08:01:54','2006-02-15 22:16:34'), +(9314,345,1,363,'0.99','2005-05-27 07:14:00','2006-02-15 22:16:34'), +(9315,345,2,1210,'0.99','2005-06-15 02:57:51','2006-02-15 22:16:34'), +(9316,345,1,1457,'4.99','2005-06-15 20:05:49','2006-02-15 22:16:34'), +(9317,345,2,1550,'0.99','2005-06-16 01:58:35','2006-02-15 22:16:35'), +(9318,345,2,2766,'4.99','2005-06-19 17:45:15','2006-02-15 22:16:35'), +(9319,345,2,4422,'2.99','2005-07-07 22:09:45','2006-02-15 22:16:35'), +(9320,345,1,4425,'2.99','2005-07-07 22:22:44','2006-02-15 22:16:35'), +(9321,345,2,4450,'4.99','2005-07-07 23:20:05','2006-02-15 22:16:35'), +(9322,345,2,5508,'3.99','2005-07-10 00:50:01','2006-02-15 22:16:35'), +(9323,345,1,6307,'7.99','2005-07-11 18:04:29','2006-02-15 22:16:35'), +(9324,345,1,7092,'6.99','2005-07-27 04:46:00','2006-02-15 22:16:35'), +(9325,345,2,8129,'2.99','2005-07-28 19:47:02','2006-02-15 22:16:35'), +(9326,345,2,8694,'8.99','2005-07-29 16:44:48','2006-02-15 22:16:35'), +(9327,345,1,9163,'4.99','2005-07-30 11:23:22','2006-02-15 22:16:35'), +(9328,345,2,9207,'2.99','2005-07-30 12:49:57','2006-02-15 22:16:35'), +(9329,345,2,10215,'8.99','2005-08-01 01:04:28','2006-02-15 22:16:35'), +(9330,345,2,10982,'4.99','2005-08-02 04:19:11','2006-02-15 22:16:35'), +(9331,345,1,11865,'2.99','2005-08-17 14:03:46','2006-02-15 22:16:35'), +(9332,345,1,12485,'4.99','2005-08-18 12:41:41','2006-02-15 22:16:35'), +(9333,345,2,12805,'4.99','2005-08-19 00:36:34','2006-02-15 22:16:35'), +(9334,345,1,14702,'10.99','2005-08-21 21:00:03','2006-02-15 22:16:35'), +(9335,345,1,15551,'4.99','2005-08-23 04:28:25','2006-02-15 22:16:35'), +(9336,346,1,65,'4.99','2005-05-25 09:32:03','2006-02-15 22:16:35'), +(9337,346,1,810,'4.99','2005-05-29 19:12:04','2006-02-15 22:16:35'), +(9338,346,1,1994,'5.99','2005-06-17 11:07:06','2006-02-15 22:16:35'), +(9339,346,2,3372,'2.99','2005-06-21 13:34:19','2006-02-15 22:16:36'), +(9340,346,1,3421,'2.99','2005-06-21 17:22:58','2006-02-15 22:16:36'), +(9341,346,2,4420,'4.99','2005-07-07 22:07:31','2006-02-15 22:16:36'), +(9342,346,1,4958,'8.99','2005-07-08 23:19:52','2006-02-15 22:16:36'), +(9343,346,1,5428,'4.99','2005-07-09 21:12:50','2006-02-15 22:16:36'), +(9344,346,2,5557,'4.99','2005-07-10 03:10:21','2006-02-15 22:16:36'), +(9345,346,2,6136,'4.99','2005-07-11 08:34:09','2006-02-15 22:16:36'), +(9346,346,2,6323,'2.99','2005-07-11 19:02:19','2006-02-15 22:16:36'), +(9347,346,2,6881,'8.99','2005-07-12 20:46:35','2006-02-15 22:16:36'), +(9348,346,2,7943,'6.99','2005-07-28 12:50:55','2006-02-15 22:16:36'), +(9349,346,2,8272,'5.99','2005-07-29 01:29:51','2006-02-15 22:16:36'), +(9350,346,1,8505,'6.99','2005-07-29 09:22:52','2006-02-15 22:16:36'), +(9351,346,2,8543,'0.99','2005-07-29 11:01:57','2006-02-15 22:16:36'), +(9352,346,2,8732,'8.99','2005-07-29 18:25:03','2006-02-15 22:16:36'), +(9353,346,2,9566,'4.99','2005-07-31 02:32:10','2006-02-15 22:16:36'), +(9354,346,1,9848,'4.99','2005-07-31 12:44:33','2006-02-15 22:16:36'), +(9355,346,1,9927,'2.99','2005-07-31 15:12:13','2006-02-15 22:16:36'), +(9356,346,1,10304,'5.99','2005-08-01 04:14:12','2006-02-15 22:16:36'), +(9357,346,2,10389,'3.99','2005-08-01 06:46:43','2006-02-15 22:16:36'), +(9358,346,2,10521,'0.99','2005-08-01 11:46:17','2006-02-15 22:16:36'), +(9359,346,2,11062,'4.99','2005-08-02 06:52:54','2006-02-15 22:16:36'), +(9360,346,1,11375,'4.99','2005-08-02 18:14:56','2006-02-15 22:16:36'), +(9361,346,2,11470,'2.99','2005-08-02 21:48:28','2006-02-15 22:16:37'), +(9362,346,1,14890,'5.99','2005-08-22 04:10:49','2006-02-15 22:16:37'), +(9363,346,2,15459,'2.99','2005-08-23 01:09:48','2006-02-15 22:16:37'), +(9364,346,1,15535,'0.99','2005-08-23 03:58:02','2006-02-15 22:16:37'), +(9365,346,1,15661,'8.99','2005-08-23 08:52:03','2006-02-15 22:16:37'), +(9366,346,2,15825,'5.99','2005-08-23 15:10:42','2006-02-15 22:16:37'), +(9367,346,1,15827,'0.99','2005-08-23 15:15:19','2006-02-15 22:16:37'), +(9368,347,2,1711,'8.99','2005-06-16 14:11:52','2006-02-15 22:16:37'), +(9369,347,2,2274,'0.99','2005-06-18 06:31:15','2006-02-15 22:16:37'), +(9370,347,1,3026,'4.99','2005-06-20 11:48:00','2006-02-15 22:16:37'), +(9371,347,1,3092,'8.99','2005-06-20 16:04:42','2006-02-15 22:16:37'), +(9372,347,1,3326,'7.99','2005-06-21 09:04:50','2006-02-15 22:16:37'), +(9373,347,2,3605,'0.99','2005-07-06 05:27:15','2006-02-15 22:16:37'), +(9374,347,2,3666,'4.99','2005-07-06 08:27:43','2006-02-15 22:16:37'), +(9375,347,1,4232,'5.99','2005-07-07 12:49:12','2006-02-15 22:16:37'), +(9376,347,1,4523,'6.99','2005-07-08 03:06:59','2006-02-15 22:16:37'), +(9377,347,2,5471,'0.99','2005-07-09 23:11:52','2006-02-15 22:16:37'), +(9378,347,1,5819,'2.99','2005-07-10 15:56:20','2006-02-15 22:16:37'), +(9379,347,2,6121,'1.99','2005-07-11 07:55:27','2006-02-15 22:16:37'), +(9380,347,1,7811,'0.99','2005-07-28 08:06:01','2006-02-15 22:16:37'), +(9381,347,2,8148,'4.99','2005-07-28 20:39:47','2006-02-15 22:16:37'), +(9382,347,2,8153,'4.99','2005-07-28 20:55:49','2006-02-15 22:16:37'), +(9383,347,2,8176,'4.99','2005-07-28 21:42:08','2006-02-15 22:16:37'), +(9384,347,2,8378,'4.99','2005-07-29 05:28:35','2006-02-15 22:16:38'), +(9385,347,2,8771,'2.99','2005-07-29 19:54:41','2006-02-15 22:16:38'), +(9386,347,1,9013,'4.99','2005-07-30 05:19:20','2006-02-15 22:16:38'), +(9387,347,1,9582,'4.99','2005-07-31 03:05:19','2006-02-15 22:16:38'), +(9388,347,1,9856,'3.99','2005-07-31 13:00:35','2006-02-15 22:16:38'), +(9389,347,1,9876,'2.99','2005-07-31 13:37:51','2006-02-15 22:16:38'), +(9390,347,2,11738,'8.99','2005-08-17 08:45:55','2006-02-15 22:16:38'), +(9391,347,1,12195,'2.99','2005-08-18 02:07:49','2006-02-15 22:16:38'), +(9392,347,2,12399,'10.99','2005-08-18 09:13:42','2006-02-15 22:16:38'), +(9393,347,2,13314,'5.99','2005-08-19 19:12:43','2006-02-15 22:16:38'), +(9394,347,2,14894,'4.99','2005-08-22 04:16:56','2006-02-15 22:16:38'), +(9395,347,2,14958,'2.99','2005-08-22 06:30:10','2006-02-15 22:16:38'), +(9396,347,2,15426,'2.99','2005-08-23 00:07:19','2006-02-15 22:16:38'), +(9397,347,2,15555,'4.99','2005-08-23 04:51:52','2006-02-15 22:16:38'), +(9398,348,2,153,'0.99','2005-05-26 00:47:47','2006-02-15 22:16:38'), +(9399,348,2,821,'0.99','2005-05-29 21:31:12','2006-02-15 22:16:38'), +(9400,348,1,1654,'2.99','2005-06-16 09:42:48','2006-02-15 22:16:38'), +(9401,348,1,2041,'8.99','2005-06-17 14:19:00','2006-02-15 22:16:38'), +(9402,348,2,2499,'0.99','2005-06-18 23:01:36','2006-02-15 22:16:38'), +(9403,348,2,3494,'4.99','2005-07-05 23:47:30','2006-02-15 22:16:38'), +(9404,348,2,3610,'4.99','2005-07-06 05:36:59','2006-02-15 22:16:38'), +(9405,348,2,4556,'9.99','2005-07-08 04:48:41','2006-02-15 22:16:38'), +(9406,348,2,4633,'0.99','2005-07-08 08:39:39','2006-02-15 22:16:39'), +(9407,348,1,4699,'0.99','2005-07-08 11:36:56','2006-02-15 22:16:39'), +(9408,348,1,4807,'8.99','2005-07-08 17:01:48','2006-02-15 22:16:39'), +(9409,348,1,5345,'4.99','2005-07-09 17:28:18','2006-02-15 22:16:39'), +(9410,348,2,5965,'0.99','2005-07-10 23:51:52','2006-02-15 22:16:39'), +(9411,348,2,6776,'2.99','2005-07-12 16:02:09','2006-02-15 22:16:39'), +(9412,348,2,7380,'2.99','2005-07-27 15:37:01','2006-02-15 22:16:39'), +(9413,348,1,7482,'6.99','2005-07-27 19:24:16','2006-02-15 22:16:39'), +(9414,348,2,7825,'4.99','2005-07-28 08:34:57','2006-02-15 22:16:39'), +(9415,348,1,8500,'2.99','2005-07-29 09:12:01','2006-02-15 22:16:39'), +(9416,348,1,8569,'4.99','2005-07-29 11:39:17','2006-02-15 22:16:39'), +(9417,348,2,8682,'4.99','2005-07-29 16:15:26','2006-02-15 22:16:39'), +(9418,348,2,9482,'2.99','2005-07-30 23:29:16','2006-02-15 22:16:39'), +(9419,348,1,10769,'2.99','2005-08-01 20:43:02','2006-02-15 22:16:39'), +(9420,348,2,10972,'2.99','2005-08-02 04:08:25','2006-02-15 22:16:39'), +(9421,348,1,11262,'2.99','2005-08-02 13:58:55','2006-02-15 22:16:39'), +(9422,348,1,11429,'7.99','2005-08-02 20:03:52','2006-02-15 22:16:39'), +(9423,348,2,12564,'2.99','2005-08-18 15:11:35','2006-02-15 22:16:39'), +(9424,348,2,12884,'5.99','2005-08-19 03:34:04','2006-02-15 22:16:39'), +(9425,348,2,12937,'4.99','2005-08-19 05:25:30','2006-02-15 22:16:39'), +(9426,348,2,13238,'2.99','2005-08-19 16:20:56','2006-02-15 22:16:39'), +(9427,348,2,13602,'5.99','2005-08-20 06:02:02','2006-02-15 22:16:39'), +(9428,348,2,13684,'0.99','2005-08-20 08:55:53','2006-02-15 22:16:40'), +(9429,348,1,13962,'1.99','2005-08-20 18:18:06','2006-02-15 22:16:40'), +(9430,348,2,14079,'3.99','2005-08-20 23:29:25','2006-02-15 22:16:40'), +(9431,348,2,14937,'7.99','2005-08-22 05:51:59','2006-02-15 22:16:40'), +(9432,348,2,15817,'0.99','2005-08-23 14:59:51','2006-02-15 22:16:40'), +(9433,348,1,15944,'4.99','2005-08-23 18:50:54','2006-02-15 22:16:40'), +(9434,349,1,890,'4.99','2005-05-30 07:43:04','2006-02-15 22:16:40'), +(9435,349,1,1197,'2.99','2005-06-15 01:42:46','2006-02-15 22:16:40'), +(9436,349,1,1523,'0.99','2005-06-16 00:18:40','2006-02-15 22:16:40'), +(9437,349,2,2987,'6.99','2005-06-20 08:55:50','2006-02-15 22:16:40'), +(9438,349,1,3067,'8.99','2005-06-20 13:59:21','2006-02-15 22:16:40'), +(9439,349,2,3488,'3.99','2005-07-05 23:32:49','2006-02-15 22:16:40'), +(9440,349,1,4190,'2.99','2005-07-07 10:52:39','2006-02-15 22:16:40'), +(9441,349,2,4494,'5.99','2005-07-08 01:42:45','2006-02-15 22:16:40'), +(9442,349,1,4881,'0.99','2005-07-08 19:40:34','2006-02-15 22:16:40'), +(9443,349,1,5433,'4.99','2005-07-09 21:22:00','2006-02-15 22:16:40'), +(9444,349,1,7002,'4.99','2005-07-27 01:26:14','2006-02-15 22:16:40'), +(9445,349,1,7046,'4.99','2005-07-27 03:27:56','2006-02-15 22:16:40'), +(9446,349,2,7702,'2.99','2005-07-28 03:56:05','2006-02-15 22:16:40'), +(9447,349,2,8297,'4.99','2005-07-29 02:45:46','2006-02-15 22:16:40'), +(9448,349,1,9262,'1.99','2005-07-30 14:45:02','2006-02-15 22:16:40'), +(9449,349,1,9670,'5.99','2005-07-31 06:33:33','2006-02-15 22:16:40'), +(9450,349,1,9731,'0.99','2005-07-31 08:54:47','2006-02-15 22:16:41'), +(9451,349,1,10987,'4.99','2005-08-02 04:36:52','2006-02-15 22:16:41'), +(9452,349,2,11192,'4.99','2005-08-02 11:29:41','2006-02-15 22:16:41'), +(9453,349,2,11492,'8.99','2005-08-02 22:46:47','2006-02-15 22:16:41'), +(9454,349,1,11905,'3.99','2005-08-17 15:40:18','2006-02-15 22:16:41'), +(9455,349,1,13258,'4.99','2005-08-19 17:05:37','2006-02-15 22:16:41'), +(9456,349,2,13636,'4.99','2005-08-20 07:20:09','2006-02-15 22:16:41'), +(9457,349,2,14200,'6.99','2005-08-21 03:51:27','2006-02-15 22:16:41'), +(9458,349,2,14721,'6.99','2005-08-21 21:50:51','2006-02-15 22:16:41'), +(9459,349,2,14908,'4.99','2005-08-22 04:44:10','2006-02-15 22:16:41'), +(9460,349,1,15833,'6.99','2005-08-23 15:22:15','2006-02-15 22:16:41'), +(9461,349,1,15955,'5.99','2005-08-23 19:19:06','2006-02-15 22:16:41'), +(9462,349,1,14915,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:41'), +(9463,350,1,24,'4.99','2005-05-25 02:53:02','2006-02-15 22:16:41'), +(9464,350,1,802,'4.99','2005-05-29 17:38:59','2006-02-15 22:16:41'), +(9465,350,2,2011,'3.99','2005-06-17 11:56:09','2006-02-15 22:16:41'), +(9466,350,1,2619,'0.99','2005-06-19 08:03:12','2006-02-15 22:16:41'), +(9467,350,1,3079,'2.99','2005-06-20 15:13:40','2006-02-15 22:16:41'), +(9468,350,2,3206,'0.99','2005-06-21 00:39:39','2006-02-15 22:16:41'), +(9469,350,1,3529,'0.99','2005-07-06 01:15:26','2006-02-15 22:16:41'), +(9470,350,1,3893,'5.99','2005-07-06 18:59:31','2006-02-15 22:16:41'), +(9471,350,1,4767,'2.99','2005-07-08 15:18:53','2006-02-15 22:16:41'), +(9472,350,1,5240,'0.99','2005-07-09 13:14:48','2006-02-15 22:16:42'), +(9473,350,1,5303,'2.99','2005-07-09 15:44:09','2006-02-15 22:16:42'), +(9474,350,1,5786,'1.99','2005-07-10 14:06:44','2006-02-15 22:16:42'), +(9475,350,2,6408,'3.99','2005-07-11 23:03:02','2006-02-15 22:16:42'), +(9476,350,2,7416,'4.99','2005-07-27 16:55:25','2006-02-15 22:16:42'), +(9477,350,2,11504,'0.99','2005-08-16 23:16:46','2006-02-15 22:16:42'), +(9478,350,2,11595,'6.99','2005-08-17 02:53:14','2006-02-15 22:16:42'), +(9479,350,2,11692,'6.99','2005-08-17 06:52:41','2006-02-15 22:16:42'), +(9480,350,1,11800,'0.99','2005-08-17 11:29:52','2006-02-15 22:16:42'), +(9481,350,2,12252,'6.99','2005-08-18 03:59:51','2006-02-15 22:16:42'), +(9482,350,2,12445,'2.99','2005-08-18 10:56:20','2006-02-15 22:16:42'), +(9483,350,2,13086,'0.99','2005-08-19 10:32:28','2006-02-15 22:16:42'), +(9484,350,2,15789,'1.99','2005-08-23 13:56:40','2006-02-15 22:16:42'), +(9485,350,1,15807,'0.99','2005-08-23 14:35:10','2006-02-15 22:16:42'), +(9486,351,1,1137,'1.99','2005-05-31 19:20:14','2006-02-15 22:16:42'), +(9487,351,2,1792,'5.99','2005-06-16 20:04:50','2006-02-15 22:16:42'), +(9488,351,1,1869,'0.99','2005-06-17 02:08:00','2006-02-15 22:16:42'), +(9489,351,1,2759,'2.99','2005-06-19 17:10:24','2006-02-15 22:16:42'), +(9490,351,1,3836,'2.99','2005-07-06 16:26:04','2006-02-15 22:16:42'), +(9491,351,1,4544,'0.99','2005-07-08 04:11:04','2006-02-15 22:16:42'), +(9492,351,1,4756,'1.99','2005-07-08 14:24:00','2006-02-15 22:16:42'), +(9493,351,2,4761,'5.99','2005-07-08 14:51:45','2006-02-15 22:16:42'), +(9494,351,1,5280,'0.99','2005-07-09 14:55:07','2006-02-15 22:16:43'), +(9495,351,1,5912,'3.99','2005-07-10 20:58:22','2006-02-15 22:16:43'), +(9496,351,2,6180,'3.99','2005-07-11 11:06:50','2006-02-15 22:16:43'), +(9497,351,1,6664,'4.99','2005-07-12 11:28:22','2006-02-15 22:16:43'), +(9498,351,2,6777,'5.99','2005-07-12 16:04:40','2006-02-15 22:16:43'), +(9499,351,2,7630,'4.99','2005-07-28 01:01:03','2006-02-15 22:16:43'), +(9500,351,2,8512,'4.99','2005-07-29 09:48:03','2006-02-15 22:16:43'), +(9501,351,1,9707,'7.99','2005-07-31 07:44:18','2006-02-15 22:16:43'), +(9502,351,2,10119,'0.99','2005-07-31 21:20:59','2006-02-15 22:16:43'), +(9503,351,2,10501,'2.99','2005-08-01 11:04:46','2006-02-15 22:16:43'), +(9504,351,2,11127,'0.99','2005-08-02 09:00:59','2006-02-15 22:16:43'), +(9505,351,1,14368,'6.99','2005-08-21 09:31:47','2006-02-15 22:16:43'), +(9506,351,2,15142,'4.99','2005-08-22 13:44:32','2006-02-15 22:16:43'), +(9507,351,1,15664,'4.99','2005-08-23 08:57:11','2006-02-15 22:16:43'), +(9508,351,2,15712,'2.99','2005-08-23 10:43:56','2006-02-15 22:16:43'), +(9509,351,1,15762,'2.99','2005-08-23 13:01:43','2006-02-15 22:16:43'), +(9510,352,1,784,'2.99','2005-05-29 14:44:22','2006-02-15 22:16:43'), +(9511,352,1,1498,'0.99','2005-06-15 21:58:00','2006-02-15 22:16:43'), +(9512,352,1,1649,'4.99','2005-06-16 09:20:33','2006-02-15 22:16:43'), +(9513,352,1,1678,'4.99','2005-06-16 11:08:28','2006-02-15 22:16:43'), +(9514,352,1,1780,'4.99','2005-06-16 19:11:45','2006-02-15 22:16:43'), +(9515,352,2,3331,'4.99','2005-06-21 09:37:53','2006-02-15 22:16:43'), +(9516,352,2,4116,'4.99','2005-07-07 06:56:13','2006-02-15 22:16:44'), +(9517,352,2,6329,'5.99','2005-07-11 19:10:38','2006-02-15 22:16:44'), +(9518,352,1,7033,'2.99','2005-07-27 03:03:25','2006-02-15 22:16:44'), +(9519,352,1,7419,'7.99','2005-07-27 17:04:15','2006-02-15 22:16:44'), +(9520,352,2,7512,'6.99','2005-07-27 20:40:40','2006-02-15 22:16:44'), +(9521,352,1,7579,'4.99','2005-07-27 23:06:41','2006-02-15 22:16:44'), +(9522,352,1,7845,'5.99','2005-07-28 09:18:07','2006-02-15 22:16:44'), +(9523,352,1,7886,'2.99','2005-07-28 10:37:55','2006-02-15 22:16:44'), +(9524,352,1,9463,'0.99','2005-07-30 22:30:57','2006-02-15 22:16:44'), +(9525,352,1,11793,'5.99','2005-08-17 11:05:53','2006-02-15 22:16:44'), +(9526,352,1,11823,'6.99','2005-08-17 12:36:37','2006-02-15 22:16:44'), +(9527,352,2,11986,'0.99','2005-08-17 18:21:58','2006-02-15 22:16:44'), +(9528,352,2,12234,'5.99','2005-08-18 03:17:33','2006-02-15 22:16:44'), +(9529,352,1,12751,'2.99','2005-08-18 22:33:22','2006-02-15 22:16:44'), +(9530,352,1,14130,'4.99','2005-08-21 01:43:11','2006-02-15 22:16:44'), +(9531,352,2,14852,'0.99','2005-08-22 02:25:53','2006-02-15 22:16:44'), +(9532,352,2,13578,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:44'), +(9533,353,2,1103,'6.99','2005-05-31 14:24:18','2006-02-15 22:16:44'), +(9534,353,2,1359,'2.99','2005-06-15 13:30:30','2006-02-15 22:16:44'), +(9535,353,2,1928,'7.99','2005-06-17 06:48:31','2006-02-15 22:16:44'), +(9536,353,2,3233,'6.99','2005-06-21 02:39:31','2006-02-15 22:16:44'), +(9537,353,2,4380,'5.99','2005-07-07 20:35:00','2006-02-15 22:16:44'), +(9538,353,2,6559,'1.99','2005-07-12 05:20:35','2006-02-15 22:16:45'), +(9539,353,1,6610,'3.99','2005-07-12 08:20:02','2006-02-15 22:16:45'), +(9540,353,2,7993,'3.99','2005-07-28 14:56:41','2006-02-15 22:16:45'), +(9541,353,2,10071,'2.99','2005-07-31 19:49:35','2006-02-15 22:16:45'), +(9542,353,1,11186,'0.99','2005-08-02 11:12:08','2006-02-15 22:16:45'), +(9543,353,2,11414,'4.99','2005-08-02 19:43:07','2006-02-15 22:16:45'), +(9544,353,2,11698,'4.99','2005-08-17 07:09:59','2006-02-15 22:16:45'), +(9545,353,1,12928,'5.99','2005-08-19 05:04:09','2006-02-15 22:16:45'), +(9546,353,2,13604,'0.99','2005-08-20 06:03:33','2006-02-15 22:16:45'), +(9547,353,1,14396,'4.99','2005-08-21 10:24:54','2006-02-15 22:16:45'), +(9548,353,1,15564,'1.99','2005-08-23 05:10:42','2006-02-15 22:16:45'), +(9549,353,2,15650,'0.99','2005-08-23 08:29:53','2006-02-15 22:16:45'), +(9550,353,2,15676,'2.99','2005-08-23 09:23:08','2006-02-15 22:16:45'), +(9551,354,1,140,'0.99','2005-05-25 23:34:22','2006-02-15 22:16:45'), +(9552,354,2,158,'1.99','2005-05-26 01:27:11','2006-02-15 22:16:45'), +(9553,354,2,402,'0.99','2005-05-27 13:17:18','2006-02-15 22:16:45'), +(9554,354,1,1491,'0.99','2005-06-15 21:48:18','2006-02-15 22:16:45'), +(9555,354,1,2275,'4.99','2005-06-18 06:31:29','2006-02-15 22:16:45'), +(9556,354,1,2769,'6.99','2005-06-19 17:52:14','2006-02-15 22:16:45'), +(9557,354,1,3139,'2.99','2005-06-20 19:44:45','2006-02-15 22:16:45'), +(9558,354,2,3821,'2.99','2005-07-06 15:36:20','2006-02-15 22:16:45'), +(9559,354,2,4034,'0.99','2005-07-07 02:36:33','2006-02-15 22:16:45'), +(9560,354,1,4449,'5.99','2005-07-07 23:18:58','2006-02-15 22:16:46'), +(9561,354,2,4745,'2.99','2005-07-08 13:45:09','2006-02-15 22:16:46'), +(9562,354,1,5354,'4.99','2005-07-09 18:04:33','2006-02-15 22:16:46'), +(9563,354,2,5556,'4.99','2005-07-10 03:10:17','2006-02-15 22:16:46'), +(9564,354,1,5873,'3.99','2005-07-10 19:02:10','2006-02-15 22:16:46'), +(9565,354,1,6054,'0.99','2005-07-11 03:58:39','2006-02-15 22:16:46'), +(9566,354,1,6838,'4.99','2005-07-12 19:01:30','2006-02-15 22:16:46'), +(9567,354,1,6926,'0.99','2005-07-26 22:52:45','2006-02-15 22:16:46'), +(9568,354,1,6939,'5.99','2005-07-26 23:17:51','2006-02-15 22:16:46'), +(9569,354,2,7148,'0.99','2005-07-27 07:04:09','2006-02-15 22:16:46'), +(9570,354,2,7235,'2.99','2005-07-27 10:09:30','2006-02-15 22:16:46'), +(9571,354,2,7241,'0.99','2005-07-27 10:25:49','2006-02-15 22:16:46'), +(9572,354,2,8321,'4.99','2005-07-29 03:50:54','2006-02-15 22:16:46'), +(9573,354,2,8477,'8.99','2005-07-29 08:40:36','2006-02-15 22:16:46'), +(9574,354,1,8609,'4.99','2005-07-29 13:19:25','2006-02-15 22:16:46'), +(9575,354,2,8921,'0.99','2005-07-30 02:04:02','2006-02-15 22:16:46'), +(9576,354,1,9130,'2.99','2005-07-30 09:55:10','2006-02-15 22:16:46'), +(9577,354,1,10420,'6.99','2005-08-01 08:13:53','2006-02-15 22:16:46'), +(9578,354,2,12243,'6.99','2005-08-18 03:38:54','2006-02-15 22:16:46'), +(9579,354,1,12544,'3.99','2005-08-18 14:25:51','2006-02-15 22:16:46'), +(9580,354,1,12998,'4.99','2005-08-19 07:32:16','2006-02-15 22:16:46'), +(9581,354,2,14212,'2.99','2005-08-21 04:29:26','2006-02-15 22:16:47'), +(9582,354,2,14245,'0.99','2005-08-21 05:30:54','2006-02-15 22:16:47'), +(9583,354,1,14840,'5.99','2005-08-22 01:58:42','2006-02-15 22:16:47'), +(9584,354,2,15956,'0.99','2005-08-23 19:19:21','2006-02-15 22:16:47'), +(9585,354,1,12759,'7.98','2006-02-14 15:16:03','2006-02-15 22:16:47'), +(9586,354,1,11782,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:47'), +(9587,355,1,1110,'3.99','2005-05-31 15:22:51','2006-02-15 22:16:47'), +(9588,355,2,1488,'0.99','2005-06-15 21:39:54','2006-02-15 22:16:47'), +(9589,355,1,1612,'2.99','2005-06-16 06:52:05','2006-02-15 22:16:47'), +(9590,355,1,3567,'5.99','2005-07-06 03:09:36','2006-02-15 22:16:47'), +(9591,355,1,3730,'6.99','2005-07-06 11:31:24','2006-02-15 22:16:47'), +(9592,355,1,5210,'4.99','2005-07-09 11:24:19','2006-02-15 22:16:47'), +(9593,355,1,5564,'5.99','2005-07-10 03:23:05','2006-02-15 22:16:47'), +(9594,355,1,6127,'0.99','2005-07-11 08:06:59','2006-02-15 22:16:47'), +(9595,355,2,6262,'6.99','2005-07-11 15:33:24','2006-02-15 22:16:47'), +(9596,355,1,6437,'2.99','2005-07-12 00:20:29','2006-02-15 22:16:47'), +(9597,355,2,6669,'4.99','2005-07-12 11:39:55','2006-02-15 22:16:47'), +(9598,355,2,7108,'4.99','2005-07-27 05:28:32','2006-02-15 22:16:47'), +(9599,355,2,7477,'5.99','2005-07-27 19:11:03','2006-02-15 22:16:47'), +(9600,355,2,8418,'1.99','2005-07-29 06:54:21','2006-02-15 22:16:47'), +(9601,355,1,10498,'0.99','2005-08-01 10:56:48','2006-02-15 22:16:47'), +(9602,355,2,11471,'0.99','2005-08-02 21:49:03','2006-02-15 22:16:47'), +(9603,355,2,13821,'1.99','2005-08-20 13:33:47','2006-02-15 22:16:48'), +(9604,355,1,15367,'3.99','2005-08-22 21:47:53','2006-02-15 22:16:48'), +(9605,355,2,15531,'2.99','2005-08-23 03:52:36','2006-02-15 22:16:48'), +(9606,355,1,14760,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:48'), +(9607,356,2,1088,'4.99','2005-05-31 11:35:13','2006-02-15 22:16:48'), +(9608,356,1,1410,'0.99','2005-06-15 16:59:46','2006-02-15 22:16:48'), +(9609,356,1,2405,'2.99','2005-06-18 16:36:38','2006-02-15 22:16:48'), +(9610,356,1,2433,'4.99','2005-06-18 18:10:17','2006-02-15 22:16:48'), +(9611,356,2,3829,'6.99','2005-07-06 15:59:40','2006-02-15 22:16:48'), +(9612,356,2,4599,'4.99','2005-07-08 06:48:26','2006-02-15 22:16:48'), +(9613,356,1,5513,'0.99','2005-07-10 01:05:41','2006-02-15 22:16:48'), +(9614,356,1,6593,'4.99','2005-07-12 07:21:17','2006-02-15 22:16:48'), +(9615,356,1,6648,'0.99','2005-07-12 10:46:30','2006-02-15 22:16:48'), +(9616,356,1,7079,'2.99','2005-07-27 04:21:58','2006-02-15 22:16:48'), +(9617,356,1,7758,'1.99','2005-07-28 06:23:41','2006-02-15 22:16:48'), +(9618,356,1,7902,'0.99','2005-07-28 11:14:19','2006-02-15 22:16:48'), +(9619,356,1,8198,'3.99','2005-07-28 23:08:05','2006-02-15 22:16:48'), +(9620,356,1,8975,'5.99','2005-07-30 04:10:18','2006-02-15 22:16:48'), +(9621,356,2,9037,'4.99','2005-07-30 06:23:14','2006-02-15 22:16:48'), +(9622,356,2,9523,'3.99','2005-07-31 00:56:09','2006-02-15 22:16:48'), +(9623,356,2,9883,'6.99','2005-07-31 13:53:37','2006-02-15 22:16:48'), +(9624,356,1,10427,'3.99','2005-08-01 08:30:11','2006-02-15 22:16:48'), +(9625,356,1,10854,'4.99','2005-08-02 00:02:06','2006-02-15 22:16:49'), +(9626,356,1,11535,'3.99','2005-08-17 00:39:54','2006-02-15 22:16:49'), +(9627,356,2,11579,'2.99','2005-08-17 01:57:49','2006-02-15 22:16:49'), +(9628,356,2,12037,'4.99','2005-08-17 20:21:35','2006-02-15 22:16:49'), +(9629,356,2,12876,'2.99','2005-08-19 03:12:19','2006-02-15 22:16:49'), +(9630,356,1,12913,'0.99','2005-08-19 04:25:39','2006-02-15 22:16:49'), +(9631,356,2,13107,'4.99','2005-08-19 11:13:58','2006-02-15 22:16:49'), +(9632,356,2,13442,'5.99','2005-08-19 23:50:45','2006-02-15 22:16:49'), +(9633,356,2,13703,'6.99','2005-08-20 09:29:35','2006-02-15 22:16:49'), +(9634,356,1,15705,'4.99','2005-08-23 10:32:52','2006-02-15 22:16:49'), +(9635,356,2,15754,'5.99','2005-08-23 12:43:42','2006-02-15 22:16:49'), +(9636,356,1,15757,'2.99','2005-08-23 12:47:16','2006-02-15 22:16:49'), +(9637,357,1,144,'2.99','2005-05-25 23:49:56','2006-02-15 22:16:49'), +(9638,357,1,824,'4.99','2005-05-29 21:45:32','2006-02-15 22:16:49'), +(9639,357,2,945,'0.99','2005-05-30 15:33:17','2006-02-15 22:16:49'), +(9640,357,2,1246,'5.99','2005-06-15 05:11:19','2006-02-15 22:16:49'), +(9641,357,1,1788,'1.99','2005-06-16 19:47:18','2006-02-15 22:16:49'), +(9642,357,2,1971,'1.99','2005-06-17 09:23:59','2006-02-15 22:16:49'), +(9643,357,2,2153,'6.99','2005-06-17 22:58:04','2006-02-15 22:16:49'), +(9644,357,1,3865,'3.99','2005-07-06 17:46:57','2006-02-15 22:16:49'), +(9645,357,1,4478,'0.99','2005-07-08 00:39:08','2006-02-15 22:16:49'), +(9646,357,1,5896,'0.99','2005-07-10 20:15:56','2006-02-15 22:16:49'), +(9647,357,1,6288,'8.99','2005-07-11 17:01:52','2006-02-15 22:16:50'), +(9648,357,2,6367,'4.99','2005-07-11 21:18:29','2006-02-15 22:16:50'), +(9649,357,2,6405,'2.99','2005-07-11 22:53:12','2006-02-15 22:16:50'), +(9650,357,1,6839,'0.99','2005-07-12 19:03:19','2006-02-15 22:16:50'), +(9651,357,1,7353,'2.99','2005-07-27 14:38:39','2006-02-15 22:16:50'), +(9652,357,1,7366,'5.99','2005-07-27 15:01:17','2006-02-15 22:16:50'), +(9653,357,2,8041,'2.99','2005-07-28 16:39:56','2006-02-15 22:16:50'), +(9654,357,1,8124,'2.99','2005-07-28 19:28:58','2006-02-15 22:16:50'), +(9655,357,2,9233,'3.99','2005-07-30 13:44:15','2006-02-15 22:16:50'), +(9656,357,2,10391,'2.99','2005-08-01 06:49:05','2006-02-15 22:16:50'), +(9657,357,1,10502,'2.99','2005-08-01 11:06:39','2006-02-15 22:16:50'), +(9658,357,1,10503,'6.99','2005-08-01 11:07:44','2006-02-15 22:16:50'), +(9659,357,2,10764,'0.99','2005-08-01 20:32:42','2006-02-15 22:16:50'), +(9660,357,2,11065,'2.99','2005-08-02 06:57:55','2006-02-15 22:16:50'), +(9661,357,1,14926,'0.99','2005-08-22 05:18:44','2006-02-15 22:16:50'), +(9662,357,2,15869,'2.99','2005-08-23 16:22:20','2006-02-15 22:16:50'), +(9663,358,2,858,'4.99','2005-05-30 02:10:32','2006-02-15 22:16:50'), +(9664,358,1,1455,'2.99','2005-06-15 19:51:06','2006-02-15 22:16:50'), +(9665,358,2,1908,'0.99','2005-06-17 05:10:36','2006-02-15 22:16:50'), +(9666,358,1,2114,'5.99','2005-06-17 20:00:25','2006-02-15 22:16:50'), +(9667,358,1,2721,'2.99','2005-06-19 14:53:24','2006-02-15 22:16:50'), +(9668,358,1,2749,'2.99','2005-06-19 16:27:35','2006-02-15 22:16:51'), +(9669,358,1,3245,'2.99','2005-06-21 03:06:11','2006-02-15 22:16:51'), +(9670,358,1,3753,'2.99','2005-07-06 12:34:06','2006-02-15 22:16:51'), +(9671,358,1,3809,'2.99','2005-07-06 15:16:37','2006-02-15 22:16:51'), +(9672,358,2,5023,'5.99','2005-07-09 02:23:16','2006-02-15 22:16:51'), +(9673,358,1,6362,'2.99','2005-07-11 21:09:31','2006-02-15 22:16:51'), +(9674,358,1,8621,'2.99','2005-07-29 13:52:42','2006-02-15 22:16:51'), +(9675,358,2,9062,'0.99','2005-07-30 07:23:17','2006-02-15 22:16:51'), +(9676,358,1,9568,'0.99','2005-07-31 02:37:44','2006-02-15 22:16:51'), +(9677,358,1,10193,'2.99','2005-08-01 00:33:27','2006-02-15 22:16:51'), +(9678,358,1,10482,'4.99','2005-08-01 10:17:47','2006-02-15 22:16:51'), +(9679,358,2,11149,'5.99','2005-08-02 09:51:43','2006-02-15 22:16:51'), +(9680,358,2,11653,'4.99','2005-08-17 05:06:10','2006-02-15 22:16:51'), +(9681,358,1,12452,'6.99','2005-08-18 11:14:35','2006-02-15 22:16:51'), +(9682,358,1,13197,'2.99','2005-08-19 14:44:03','2006-02-15 22:16:51'), +(9683,358,1,14004,'7.99','2005-08-20 20:16:35','2006-02-15 22:16:51'), +(9684,359,1,284,'8.99','2005-05-26 19:21:44','2006-02-15 22:16:51'), +(9685,359,2,392,'2.99','2005-05-27 11:14:42','2006-02-15 22:16:51'), +(9686,359,1,528,'3.99','2005-05-28 04:30:05','2006-02-15 22:16:51'), +(9687,359,2,1329,'4.99','2005-06-15 11:25:06','2006-02-15 22:16:51'), +(9688,359,2,1770,'1.99','2005-06-16 18:07:55','2006-02-15 22:16:51'), +(9689,359,1,2401,'0.99','2005-06-18 16:22:03','2006-02-15 22:16:51'), +(9690,359,1,2736,'4.99','2005-06-19 15:43:20','2006-02-15 22:16:52'), +(9691,359,2,4830,'7.99','2005-07-08 17:56:23','2006-02-15 22:16:52'), +(9692,359,2,6424,'9.99','2005-07-11 23:49:37','2006-02-15 22:16:52'), +(9693,359,1,6542,'2.99','2005-07-12 04:53:49','2006-02-15 22:16:52'), +(9694,359,2,6741,'0.99','2005-07-12 14:24:16','2006-02-15 22:16:52'), +(9695,359,2,7098,'0.99','2005-07-27 05:01:08','2006-02-15 22:16:52'), +(9696,359,1,7115,'0.99','2005-07-27 05:42:58','2006-02-15 22:16:52'), +(9697,359,1,8174,'4.99','2005-07-28 21:36:52','2006-02-15 22:16:52'), +(9698,359,1,9898,'4.99','2005-07-31 14:12:03','2006-02-15 22:16:52'), +(9699,359,2,10174,'5.99','2005-07-31 23:40:08','2006-02-15 22:16:52'), +(9700,359,1,11032,'4.99','2005-08-02 05:53:35','2006-02-15 22:16:52'), +(9701,359,1,12611,'1.99','2005-08-18 17:09:42','2006-02-15 22:16:52'), +(9702,359,2,13297,'2.99','2005-08-19 18:45:49','2006-02-15 22:16:52'), +(9703,359,1,14258,'1.99','2005-08-21 05:56:36','2006-02-15 22:16:52'), +(9704,359,2,14598,'5.99','2005-08-21 17:40:05','2006-02-15 22:16:52'), +(9705,359,1,15104,'2.99','2005-08-22 12:01:16','2006-02-15 22:16:52'), +(9706,359,1,15148,'4.99','2005-08-22 13:59:19','2006-02-15 22:16:52'), +(9707,359,1,15453,'1.99','2005-08-23 01:01:01','2006-02-15 22:16:52'), +(9708,359,2,15655,'4.99','2006-02-14 15:16:03','2006-02-15 22:16:52'), +(9709,360,1,633,'0.99','2005-05-28 17:37:59','2006-02-15 22:16:52'), +(9710,360,2,777,'4.99','2005-05-29 14:07:58','2006-02-15 22:16:52'), +(9711,360,2,1492,'0.99','2005-06-15 21:48:35','2006-02-15 22:16:53'), +(9712,360,2,2402,'6.99','2005-06-18 16:24:45','2006-02-15 22:16:53'), +(9713,360,2,2541,'3.99','2005-06-19 02:08:10','2006-02-15 22:16:53'), +(9714,360,2,2780,'6.99','2005-06-19 18:19:33','2006-02-15 22:16:53'), +(9715,360,1,4056,'4.99','2005-07-07 03:57:36','2006-02-15 22:16:53'), +(9716,360,1,4487,'7.99','2005-07-08 01:20:22','2006-02-15 22:16:53'), +(9717,360,2,5456,'2.99','2005-07-09 22:31:45','2006-02-15 22:16:53'), +(9718,360,1,5834,'1.99','2005-07-10 16:44:12','2006-02-15 22:16:53'), +(9719,360,1,5995,'3.99','2005-07-11 01:15:39','2006-02-15 22:16:53'), +(9720,360,1,6442,'0.99','2005-07-12 00:29:45','2006-02-15 22:16:53'), +(9721,360,2,6770,'5.99','2005-07-12 15:49:40','2006-02-15 22:16:53'), +(9722,360,1,7251,'2.99','2005-07-27 10:44:55','2006-02-15 22:16:53'), +(9723,360,2,7588,'9.99','2005-07-27 23:23:31','2006-02-15 22:16:53'), +(9724,360,1,7654,'4.99','2005-07-28 02:00:14','2006-02-15 22:16:53'), +(9725,360,2,7908,'3.99','2005-07-28 11:32:57','2006-02-15 22:16:53'), +(9726,360,1,8220,'2.99','2005-07-28 23:46:41','2006-02-15 22:16:53'), +(9727,360,2,8361,'2.99','2005-07-29 05:08:57','2006-02-15 22:16:53'), +(9728,360,1,9283,'4.99','2005-07-30 15:25:19','2006-02-15 22:16:53'), +(9729,360,2,9352,'0.99','2005-07-30 18:29:26','2006-02-15 22:16:53'), +(9730,360,1,9623,'2.99','2005-07-31 04:30:02','2006-02-15 22:16:53'), +(9731,360,2,9659,'3.99','2005-07-31 06:02:14','2006-02-15 22:16:53'), +(9732,360,2,10857,'2.99','2005-08-02 00:07:20','2006-02-15 22:16:54'), +(9733,360,2,11264,'6.99','2005-08-02 14:05:18','2006-02-15 22:16:54'), +(9734,360,2,11553,'4.99','2005-08-17 01:04:31','2006-02-15 22:16:54'), +(9735,360,2,12088,'5.99','2005-08-17 22:20:16','2006-02-15 22:16:54'), +(9736,360,1,12773,'5.99','2005-08-18 23:32:19','2006-02-15 22:16:54'), +(9737,360,2,12795,'0.99','2005-08-19 00:21:52','2006-02-15 22:16:54'), +(9738,360,1,12839,'6.99','2005-08-19 01:53:43','2006-02-15 22:16:54'), +(9739,360,1,12990,'4.99','2005-08-19 07:20:39','2006-02-15 22:16:54'), +(9740,360,2,13894,'7.99','2005-08-20 15:55:20','2006-02-15 22:16:54'), +(9741,360,1,14700,'4.99','2005-08-21 20:53:40','2006-02-15 22:16:54'), +(9742,360,1,15310,'2.99','2005-08-22 19:56:41','2006-02-15 22:16:54'), +(9743,361,1,368,'5.99','2005-05-27 07:42:29','2006-02-15 22:16:54'), +(9744,361,2,1120,'4.99','2005-05-31 16:37:14','2006-02-15 22:16:54'), +(9745,361,2,2353,'4.99','2005-06-18 12:53:25','2006-02-15 22:16:54'), +(9746,361,2,2558,'1.99','2005-06-19 03:09:16','2006-02-15 22:16:54'), +(9747,361,1,2851,'2.99','2005-06-19 23:07:03','2006-02-15 22:16:54'), +(9748,361,2,3303,'2.99','2005-06-21 07:34:14','2006-02-15 22:16:54'), +(9749,361,2,5154,'2.99','2005-07-09 08:46:18','2006-02-15 22:16:54'), +(9750,361,1,6152,'0.99','2005-07-11 09:25:52','2006-02-15 22:16:54'), +(9751,361,2,6829,'4.99','2005-07-12 18:38:59','2006-02-15 22:16:54'), +(9752,361,2,6911,'0.99','2005-07-12 22:14:34','2006-02-15 22:16:54'), +(9753,361,1,6914,'1.99','2005-07-12 22:26:56','2006-02-15 22:16:55'), +(9754,361,1,7538,'2.99','2005-07-27 21:38:04','2006-02-15 22:16:55'), +(9755,361,2,7712,'2.99','2005-07-28 04:29:53','2006-02-15 22:16:55'), +(9756,361,2,8189,'4.99','2005-07-28 22:36:26','2006-02-15 22:16:55'), +(9757,361,1,10145,'1.99','2005-07-31 22:15:13','2006-02-15 22:16:55'), +(9758,361,1,10151,'4.99','2005-07-31 22:22:37','2006-02-15 22:16:55'), +(9759,361,1,10414,'0.99','2005-08-01 08:03:55','2006-02-15 22:16:55'), +(9760,361,2,10975,'0.99','2005-08-02 04:11:25','2006-02-15 22:16:55'), +(9761,361,2,11031,'5.99','2005-08-02 05:52:58','2006-02-15 22:16:55'), +(9762,361,2,11243,'5.99','2005-08-02 13:32:48','2006-02-15 22:16:55'), +(9763,361,1,11327,'2.99','2005-08-02 16:40:47','2006-02-15 22:16:55'), +(9764,361,1,11991,'3.99','2005-08-17 18:27:08','2006-02-15 22:16:55'), +(9765,361,2,12626,'5.99','2005-08-18 17:36:45','2006-02-15 22:16:55'), +(9766,361,2,12690,'2.99','2005-08-18 20:06:57','2006-02-15 22:16:55'), +(9767,361,1,13135,'0.99','2005-08-19 12:22:52','2006-02-15 22:16:55'), +(9768,361,2,14031,'0.99','2005-08-20 21:24:24','2006-02-15 22:16:55'), +(9769,361,1,14422,'0.99','2005-08-21 11:21:46','2006-02-15 22:16:55'), +(9770,361,1,15759,'6.99','2005-08-23 12:47:37','2006-02-15 22:16:55'), +(9771,361,2,15935,'2.99','2005-08-23 18:41:11','2006-02-15 22:16:55'), +(9772,361,1,13298,'3.98','2006-02-14 15:16:03','2006-02-15 22:16:55'), +(9773,361,1,14769,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:55'), +(9774,362,2,1035,'4.99','2005-05-31 05:01:09','2006-02-15 22:16:56'), +(9775,362,1,1429,'2.99','2005-06-15 18:24:10','2006-02-15 22:16:56'), +(9776,362,1,1529,'2.99','2005-06-16 00:37:35','2006-02-15 22:16:56'), +(9777,362,1,1615,'2.99','2005-06-16 07:00:28','2006-02-15 22:16:56'), +(9778,362,2,3197,'2.99','2005-06-21 00:07:23','2006-02-15 22:16:56'), +(9779,362,2,3393,'2.99','2005-06-21 15:14:27','2006-02-15 22:16:56'), +(9780,362,2,4646,'8.99','2005-07-08 09:23:26','2006-02-15 22:16:56'), +(9781,362,1,5227,'4.99','2005-07-09 12:16:39','2006-02-15 22:16:56'), +(9782,362,2,5563,'1.99','2005-07-10 03:21:02','2006-02-15 22:16:56'), +(9783,362,2,5690,'5.99','2005-07-10 09:26:49','2006-02-15 22:16:56'), +(9784,362,1,6204,'4.99','2005-07-11 12:29:22','2006-02-15 22:16:56'), +(9785,362,2,6576,'4.99','2005-07-12 06:13:41','2006-02-15 22:16:56'), +(9786,362,1,6981,'4.99','2005-07-27 00:51:38','2006-02-15 22:16:56'), +(9787,362,1,7172,'1.99','2005-07-27 07:59:16','2006-02-15 22:16:56'), +(9788,362,1,7485,'2.99','2005-07-27 19:29:09','2006-02-15 22:16:56'), +(9789,362,1,8081,'2.99','2005-07-28 18:06:46','2006-02-15 22:16:56'), +(9790,362,2,8325,'2.99','2005-07-29 03:57:27','2006-02-15 22:16:56'), +(9791,362,2,8364,'4.99','2005-07-29 05:10:31','2006-02-15 22:16:56'), +(9792,362,1,8662,'0.99','2005-07-29 15:31:33','2006-02-15 22:16:56'), +(9793,362,1,8714,'2.99','2005-07-29 17:31:40','2006-02-15 22:16:56'), +(9794,362,1,9784,'4.99','2005-07-31 10:21:32','2006-02-15 22:16:56'), +(9795,362,2,10546,'3.99','2005-08-01 12:44:17','2006-02-15 22:16:56'), +(9796,362,2,12244,'4.99','2005-08-18 03:39:11','2006-02-15 22:16:57'), +(9797,362,1,12854,'6.99','2005-08-19 02:18:51','2006-02-15 22:16:57'), +(9798,362,1,13603,'6.99','2005-08-20 06:02:48','2006-02-15 22:16:57'), +(9799,362,2,14051,'6.99','2005-08-20 22:09:51','2006-02-15 22:16:57'), +(9800,362,2,14129,'2.99','2005-08-21 01:42:15','2006-02-15 22:16:57'), +(9801,362,2,14336,'4.99','2005-08-21 08:33:42','2006-02-15 22:16:57'), +(9802,362,1,14752,'5.99','2005-08-21 23:11:42','2006-02-15 22:16:57'), +(9803,362,1,14759,'11.99','2005-08-21 23:28:58','2006-02-15 22:16:57'), +(9804,362,1,14808,'4.99','2005-08-22 00:58:35','2006-02-15 22:16:57'), +(9805,362,1,14950,'2.99','2005-08-22 06:17:12','2006-02-15 22:16:57'), +(9806,363,1,733,'3.99','2005-05-29 07:35:21','2006-02-15 22:16:57'), +(9807,363,2,1426,'4.99','2005-06-15 18:16:24','2006-02-15 22:16:57'), +(9808,363,2,1569,'4.99','2005-06-16 03:19:09','2006-02-15 22:16:57'), +(9809,363,1,1847,'4.99','2005-06-17 00:05:22','2006-02-15 22:16:57'), +(9810,363,1,2540,'4.99','2005-06-19 02:04:48','2006-02-15 22:16:57'), +(9811,363,2,3281,'2.99','2005-06-21 06:08:47','2006-02-15 22:16:57'), +(9812,363,1,3726,'3.99','2005-07-06 11:15:49','2006-02-15 22:16:57'), +(9813,363,2,5687,'3.99','2005-07-10 09:07:19','2006-02-15 22:16:57'), +(9814,363,1,5758,'6.99','2005-07-10 12:42:43','2006-02-15 22:16:57'), +(9815,363,2,6140,'4.99','2005-07-11 08:40:47','2006-02-15 22:16:57'), +(9816,363,2,6705,'4.99','2005-07-12 12:53:11','2006-02-15 22:16:58'), +(9817,363,2,6821,'2.99','2005-07-12 18:22:10','2006-02-15 22:16:58'), +(9818,363,2,6878,'4.99','2005-07-12 20:37:13','2006-02-15 22:16:58'), +(9819,363,1,7256,'2.99','2005-07-27 10:58:32','2006-02-15 22:16:58'), +(9820,363,2,7708,'4.99','2005-07-28 04:19:15','2006-02-15 22:16:58'), +(9821,363,2,8121,'2.99','2005-07-28 19:25:45','2006-02-15 22:16:58'), +(9822,363,2,8522,'3.99','2005-07-29 10:16:19','2006-02-15 22:16:58'), +(9823,363,2,8804,'2.99','2005-07-29 21:28:19','2006-02-15 22:16:58'), +(9824,363,2,8841,'4.99','2005-07-29 22:56:07','2006-02-15 22:16:58'), +(9825,363,1,9968,'4.99','2005-07-31 16:32:16','2006-02-15 22:16:58'), +(9826,363,1,9977,'8.99','2005-07-31 16:58:42','2006-02-15 22:16:58'), +(9827,363,1,10339,'6.99','2005-08-01 05:05:50','2006-02-15 22:16:58'), +(9828,363,2,12189,'5.99','2005-08-18 01:51:44','2006-02-15 22:16:58'), +(9829,363,2,12760,'4.99','2005-08-18 23:03:19','2006-02-15 22:16:58'), +(9830,363,1,13706,'9.99','2005-08-20 09:32:56','2006-02-15 22:16:58'), +(9831,363,1,14694,'2.99','2005-08-21 20:46:42','2006-02-15 22:16:58'), +(9832,363,1,14983,'5.99','2005-08-22 07:32:23','2006-02-15 22:16:58'), +(9833,363,2,15279,'4.99','2005-08-22 19:08:49','2006-02-15 22:16:58'), +(9834,363,1,15335,'4.99','2005-08-22 20:44:55','2006-02-15 22:16:58'), +(9835,364,1,462,'5.99','2005-05-27 20:10:36','2006-02-15 22:16:58'), +(9836,364,1,1722,'2.99','2005-06-16 15:12:52','2006-02-15 22:16:59'), +(9837,364,2,2442,'2.99','2005-06-18 18:49:18','2006-02-15 22:16:59'), +(9838,364,2,2606,'4.99','2005-06-19 06:51:32','2006-02-15 22:16:59'), +(9839,364,2,2857,'4.99','2005-06-19 23:15:15','2006-02-15 22:16:59'), +(9840,364,2,2962,'3.99','2005-06-20 07:31:55','2006-02-15 22:16:59'), +(9841,364,1,3678,'4.99','2005-07-06 09:15:15','2006-02-15 22:16:59'), +(9842,364,2,3961,'4.99','2005-07-06 22:11:43','2006-02-15 22:16:59'), +(9843,364,1,4047,'0.99','2005-07-07 03:28:49','2006-02-15 22:16:59'), +(9844,364,2,4689,'4.99','2005-07-08 11:03:47','2006-02-15 22:16:59'), +(9845,364,1,5872,'10.99','2005-07-10 18:54:05','2006-02-15 22:16:59'), +(9846,364,1,7272,'2.99','2005-07-27 11:30:20','2006-02-15 22:16:59'), +(9847,364,2,9266,'4.99','2005-07-30 14:59:01','2006-02-15 22:16:59'), +(9848,364,1,10092,'0.99','2005-07-31 20:28:09','2006-02-15 22:16:59'), +(9849,364,2,10290,'5.99','2005-08-01 03:39:50','2006-02-15 22:16:59'), +(9850,364,2,11932,'4.99','2005-08-17 16:36:12','2006-02-15 22:16:59'), +(9851,364,1,12557,'4.99','2005-08-18 14:51:03','2006-02-15 22:16:59'), +(9852,364,1,12761,'1.99','2005-08-18 23:05:22','2006-02-15 22:16:59'), +(9853,364,2,12912,'3.99','2005-08-19 04:24:35','2006-02-15 22:16:59'), +(9854,364,1,13698,'4.99','2005-08-20 09:24:26','2006-02-15 22:16:59'), +(9855,364,2,13936,'0.99','2005-08-20 17:22:35','2006-02-15 22:17:00'), +(9856,364,2,14293,'4.99','2005-08-21 07:06:47','2006-02-15 22:17:00'), +(9857,364,1,15242,'0.99','2005-08-22 17:48:10','2006-02-15 22:17:00'), +(9858,365,2,120,'5.99','2005-05-25 19:37:47','2006-02-15 22:17:00'), +(9859,365,1,231,'4.99','2005-05-26 11:31:59','2006-02-15 22:17:00'), +(9860,365,1,1303,'1.99','2005-06-15 09:55:57','2006-02-15 22:17:00'), +(9861,365,1,1578,'6.99','2005-06-16 04:08:16','2006-02-15 22:17:00'), +(9862,365,1,1983,'4.99','2005-06-17 10:22:13','2006-02-15 22:17:00'), +(9863,365,1,2525,'2.99','2005-06-19 00:48:22','2006-02-15 22:17:00'), +(9864,365,2,3156,'0.99','2005-06-20 21:03:46','2006-02-15 22:17:00'), +(9865,365,1,4583,'1.99','2005-07-08 06:09:44','2006-02-15 22:17:00'), +(9866,365,1,6604,'4.99','2005-07-12 07:57:45','2006-02-15 22:17:00'), +(9867,365,1,7488,'7.99','2005-07-27 19:36:15','2006-02-15 22:17:00'), +(9868,365,2,7634,'4.99','2005-07-28 01:07:01','2006-02-15 22:17:00'), +(9869,365,1,8168,'4.99','2005-07-28 21:28:32','2006-02-15 22:17:00'), +(9870,365,2,8782,'4.99','2005-07-29 20:29:34','2006-02-15 22:17:00'), +(9871,365,1,8856,'3.99','2005-07-29 23:42:00','2006-02-15 22:17:00'), +(9872,365,1,9122,'2.99','2005-07-30 09:36:52','2006-02-15 22:17:00'), +(9873,365,2,9184,'4.99','2005-07-30 12:10:19','2006-02-15 22:17:00'), +(9874,365,2,9540,'2.99','2005-07-31 01:40:06','2006-02-15 22:17:01'), +(9875,365,2,10717,'2.99','2005-08-01 18:53:53','2006-02-15 22:17:01'), +(9876,365,2,12322,'2.99','2005-08-18 06:35:28','2006-02-15 22:17:01'), +(9877,365,2,12375,'4.99','2005-08-18 08:20:08','2006-02-15 22:17:01'), +(9878,365,1,12804,'8.99','2005-08-19 00:33:15','2006-02-15 22:17:01'), +(9879,365,1,13619,'2.99','2005-08-20 06:39:26','2006-02-15 22:17:01'), +(9880,365,2,14463,'6.99','2005-08-21 12:51:49','2006-02-15 22:17:01'), +(9881,366,2,911,'6.99','2005-05-30 10:50:22','2006-02-15 22:17:01'), +(9882,366,2,1401,'1.99','2005-06-15 16:30:22','2006-02-15 22:17:01'), +(9883,366,2,2214,'0.99','2005-06-18 02:44:37','2006-02-15 22:17:01'), +(9884,366,2,3632,'4.99','2005-07-06 06:38:21','2006-02-15 22:17:01'), +(9885,366,1,3834,'2.99','2005-07-06 16:19:56','2006-02-15 22:17:01'), +(9886,366,2,4276,'2.99','2005-07-07 14:50:59','2006-02-15 22:17:01'), +(9887,366,1,4569,'5.99','2005-07-08 05:30:51','2006-02-15 22:17:01'), +(9888,366,2,5364,'0.99','2005-07-09 18:24:48','2006-02-15 22:17:01'), +(9889,366,1,6112,'6.99','2005-07-11 07:28:05','2006-02-15 22:17:01'), +(9890,366,1,6366,'4.99','2005-07-11 21:18:16','2006-02-15 22:17:01'), +(9891,366,2,6533,'6.99','2005-07-12 04:39:38','2006-02-15 22:17:01'), +(9892,366,2,6738,'5.99','2005-07-12 14:17:55','2006-02-15 22:17:01'), +(9893,366,1,6842,'0.99','2005-07-12 19:07:55','2006-02-15 22:17:02'), +(9894,366,2,6971,'4.99','2005-07-27 00:26:17','2006-02-15 22:17:02'), +(9895,366,1,7344,'1.99','2005-07-27 14:29:28','2006-02-15 22:17:02'), +(9896,366,1,7562,'2.99','2005-07-27 22:25:15','2006-02-15 22:17:02'), +(9897,366,2,7602,'4.99','2005-07-27 23:48:35','2006-02-15 22:17:02'), +(9898,366,1,7805,'6.99','2005-07-28 07:56:41','2006-02-15 22:17:02'), +(9899,366,2,8169,'4.99','2005-07-28 21:29:46','2006-02-15 22:17:02'), +(9900,366,2,8260,'1.99','2005-07-29 01:11:00','2006-02-15 22:17:02'), +(9901,366,2,8928,'2.99','2005-07-30 02:18:19','2006-02-15 22:17:02'), +(9902,366,1,9316,'6.99','2005-07-30 17:11:58','2006-02-15 22:17:02'), +(9903,366,1,10198,'2.99','2005-08-01 00:36:15','2006-02-15 22:17:02'), +(9904,366,1,10384,'4.99','2005-08-01 06:39:14','2006-02-15 22:17:02'), +(9905,366,2,11337,'2.99','2005-08-02 16:59:09','2006-02-15 22:17:02'), +(9906,366,2,11340,'5.99','2005-08-02 17:05:43','2006-02-15 22:17:02'), +(9907,366,2,12413,'2.99','2005-08-18 09:50:34','2006-02-15 22:17:02'), +(9908,366,1,12608,'4.99','2005-08-18 17:05:15','2006-02-15 22:17:02'), +(9909,366,2,13563,'0.99','2005-08-20 04:33:31','2006-02-15 22:17:02'), +(9910,366,1,13857,'2.99','2005-08-20 14:50:06','2006-02-15 22:17:02'), +(9911,366,1,14147,'4.99','2005-08-21 02:14:03','2006-02-15 22:17:02'), +(9912,366,1,14290,'4.99','2005-08-21 07:02:59','2006-02-15 22:17:02'), +(9913,366,1,14390,'2.99','2005-08-21 10:15:38','2006-02-15 22:17:02'), +(9914,366,1,14717,'2.99','2005-08-21 21:30:39','2006-02-15 22:17:03'), +(9915,366,1,14906,'6.99','2005-08-22 04:38:18','2006-02-15 22:17:03'), +(9916,366,1,15514,'2.99','2005-08-23 03:03:40','2006-02-15 22:17:03'), +(9917,366,1,13421,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:03'), +(9918,367,1,939,'0.99','2005-05-30 14:49:34','2006-02-15 22:17:03'), +(9919,367,1,1089,'2.99','2005-05-31 11:38:29','2006-02-15 22:17:03'), +(9920,367,1,3078,'0.99','2005-06-20 15:09:48','2006-02-15 22:17:03'), +(9921,367,1,4251,'8.99','2005-07-07 14:11:55','2006-02-15 22:17:03'), +(9922,367,2,5490,'4.99','2005-07-10 00:09:11','2006-02-15 22:17:03'), +(9923,367,2,5538,'4.99','2005-07-10 02:39:40','2006-02-15 22:17:03'), +(9924,367,2,5839,'2.99','2005-07-10 17:08:30','2006-02-15 22:17:03'), +(9925,367,2,6228,'2.99','2005-07-11 13:58:36','2006-02-15 22:17:03'), +(9926,367,1,6716,'0.99','2005-07-12 13:34:58','2006-02-15 22:17:03'), +(9927,367,2,6835,'5.99','2005-07-12 18:58:03','2006-02-15 22:17:03'), +(9928,367,2,8490,'0.99','2005-07-29 08:59:25','2006-02-15 22:17:03'), +(9929,367,1,9030,'3.99','2005-07-30 06:05:38','2006-02-15 22:17:03'), +(9930,367,1,9430,'4.99','2005-07-30 21:20:13','2006-02-15 22:17:03'), +(9931,367,1,9912,'4.99','2005-07-31 14:49:04','2006-02-15 22:17:03'), +(9932,367,2,10344,'4.99','2005-08-01 05:18:23','2006-02-15 22:17:03'), +(9933,367,1,12152,'4.99','2005-08-18 00:21:35','2006-02-15 22:17:03'), +(9934,367,2,12362,'0.99','2005-08-18 07:48:05','2006-02-15 22:17:03'), +(9935,367,2,12373,'8.99','2005-08-18 08:07:25','2006-02-15 22:17:04'), +(9936,367,2,12911,'6.99','2005-08-19 04:24:10','2006-02-15 22:17:04'), +(9937,367,2,13235,'4.99','2005-08-19 16:17:53','2006-02-15 22:17:04'), +(9938,367,1,14413,'6.99','2005-08-21 11:06:33','2006-02-15 22:17:04'), +(9939,367,1,14481,'10.99','2005-08-21 13:41:14','2006-02-15 22:17:04'), +(9940,368,1,64,'5.99','2005-05-25 09:21:29','2006-02-15 22:17:04'), +(9941,368,1,125,'5.99','2005-05-25 20:48:50','2006-02-15 22:17:04'), +(9942,368,1,836,'2.99','2005-05-29 23:56:42','2006-02-15 22:17:04'), +(9943,368,1,949,'2.99','2005-05-30 15:50:39','2006-02-15 22:17:04'), +(9944,368,1,1186,'0.99','2005-06-15 00:56:45','2006-02-15 22:17:04'), +(9945,368,1,1513,'9.99','2005-06-15 22:53:30','2006-02-15 22:17:04'), +(9946,368,1,2531,'4.99','2005-06-19 01:20:49','2006-02-15 22:17:04'), +(9947,368,1,2694,'4.99','2005-06-19 13:17:21','2006-02-15 22:17:04'), +(9948,368,1,2744,'4.99','2005-06-19 16:20:40','2006-02-15 22:17:04'), +(9949,368,2,3275,'4.99','2005-06-21 05:33:04','2006-02-15 22:17:04'), +(9950,368,2,3608,'4.99','2005-07-06 05:35:39','2006-02-15 22:17:04'), +(9951,368,2,4066,'0.99','2005-07-07 04:34:09','2006-02-15 22:17:04'), +(9952,368,1,4584,'0.99','2005-07-08 06:11:02','2006-02-15 22:17:04'), +(9953,368,2,4913,'8.99','2005-07-08 21:27:48','2006-02-15 22:17:04'), +(9954,368,1,6124,'4.99','2005-07-11 08:02:32','2006-02-15 22:17:04'), +(9955,368,1,6154,'5.99','2005-07-11 09:32:19','2006-02-15 22:17:04'), +(9956,368,1,6681,'2.99','2005-07-12 12:04:12','2006-02-15 22:17:04'), +(9957,368,2,7571,'4.99','2005-07-27 22:43:42','2006-02-15 22:17:05'), +(9958,368,1,8045,'0.99','2005-07-28 16:49:38','2006-02-15 22:17:05'), +(9959,368,2,8226,'2.99','2005-07-29 00:01:04','2006-02-15 22:17:05'), +(9960,368,1,9400,'5.99','2005-07-30 20:15:58','2006-02-15 22:17:05'), +(9961,368,1,9833,'6.99','2005-07-31 12:05:01','2006-02-15 22:17:05'), +(9962,368,2,10730,'8.99','2005-08-01 19:21:42','2006-02-15 22:17:05'), +(9963,368,2,10848,'1.99','2005-08-01 23:50:22','2006-02-15 22:17:05'), +(9964,368,1,11844,'0.99','2005-08-17 13:16:04','2006-02-15 22:17:05'), +(9965,368,2,12319,'2.99','2005-08-18 06:26:45','2006-02-15 22:17:05'), +(9966,368,1,12796,'4.99','2005-08-19 00:22:24','2006-02-15 22:17:05'), +(9967,368,2,13189,'8.99','2005-08-19 14:27:16','2006-02-15 22:17:05'), +(9968,368,2,13280,'2.99','2005-08-19 18:02:51','2006-02-15 22:17:05'), +(9969,368,2,13378,'0.99','2005-08-19 21:33:35','2006-02-15 22:17:05'), +(9970,368,2,13781,'7.99','2005-08-20 12:06:45','2006-02-15 22:17:05'), +(9971,368,2,13963,'1.99','2005-08-20 18:20:18','2006-02-15 22:17:05'), +(9972,368,1,14393,'7.99','2005-08-21 10:22:51','2006-02-15 22:17:05'), +(9973,368,1,15353,'2.99','2005-08-22 21:18:08','2006-02-15 22:17:05'), +(9974,368,1,15437,'2.99','2005-08-23 00:31:09','2006-02-15 22:17:05'), +(9975,369,1,31,'4.99','2005-05-25 04:05:17','2006-02-15 22:17:05'), +(9976,369,1,294,'4.99','2005-05-26 20:29:57','2006-02-15 22:17:05'), +(9977,369,2,854,'0.99','2005-05-30 01:56:11','2006-02-15 22:17:05'), +(9978,369,2,913,'7.99','2005-05-30 11:04:58','2006-02-15 22:17:06'), +(9979,369,1,1224,'0.99','2005-06-15 03:44:25','2006-02-15 22:17:06'), +(9980,369,1,3490,'6.99','2005-07-05 23:37:13','2006-02-15 22:17:06'), +(9981,369,2,3903,'2.99','2005-07-06 19:27:32','2006-02-15 22:17:06'), +(9982,369,2,4859,'4.99','2005-07-08 18:54:04','2006-02-15 22:17:06'), +(9983,369,1,5043,'1.99','2005-07-09 03:25:18','2006-02-15 22:17:06'), +(9984,369,2,5496,'7.99','2005-07-10 00:20:23','2006-02-15 22:17:06'), +(9985,369,2,5561,'2.99','2005-07-10 03:15:24','2006-02-15 22:17:06'), +(9986,369,1,8236,'2.99','2005-07-29 00:27:04','2006-02-15 22:17:06'), +(9987,369,2,8826,'2.99','2005-07-29 22:30:16','2006-02-15 22:17:06'), +(9988,369,2,9032,'4.99','2005-07-30 06:06:54','2006-02-15 22:17:06'), +(9989,369,1,9089,'0.99','2005-07-30 08:23:39','2006-02-15 22:17:06'), +(9990,369,2,9543,'0.99','2005-07-31 01:43:34','2006-02-15 22:17:06'), +(9991,369,1,9973,'4.99','2005-07-31 16:49:31','2006-02-15 22:17:06'), +(9992,369,1,10299,'0.99','2005-08-01 04:08:04','2006-02-15 22:17:06'), +(9993,369,2,10359,'3.99','2005-08-01 05:52:21','2006-02-15 22:17:06'), +(9994,369,2,10713,'2.99','2005-08-01 18:50:05','2006-02-15 22:17:06'), +(9995,369,1,11084,'4.99','2005-08-02 07:34:19','2006-02-15 22:17:06'), +(9996,369,2,11388,'1.99','2005-08-02 18:35:55','2006-02-15 22:17:06'), +(9997,369,1,12521,'0.99','2005-08-18 13:43:07','2006-02-15 22:17:06'), +(9998,369,2,14684,'5.99','2005-08-21 20:28:26','2006-02-15 22:17:06'), +(9999,369,1,13898,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:07'), +(10000,370,2,1190,'6.99','2005-06-15 01:05:32','2006-02-15 22:17:07'), +(10001,370,2,4400,'7.99','2005-07-07 21:22:26','2006-02-15 22:17:07'), +(10002,370,2,6714,'0.99','2005-07-12 13:29:06','2006-02-15 22:17:07'), +(10003,370,1,6968,'0.99','2005-07-27 00:16:45','2006-02-15 22:17:07'), +(10004,370,2,7152,'7.99','2005-07-27 07:15:01','2006-02-15 22:17:07'), +(10005,370,1,7226,'6.99','2005-07-27 09:47:53','2006-02-15 22:17:07'), +(10006,370,2,7797,'0.99','2005-07-28 07:41:07','2006-02-15 22:17:07'), +(10007,370,2,8258,'0.99','2005-07-29 01:03:42','2006-02-15 22:17:07'), +(10008,370,2,10095,'0.99','2005-07-31 20:38:35','2006-02-15 22:17:07'), +(10009,370,1,10336,'4.99','2005-08-01 04:59:53','2006-02-15 22:17:07'), +(10010,370,1,11540,'1.99','2005-08-17 00:48:03','2006-02-15 22:17:07'), +(10011,370,2,11925,'0.99','2005-08-17 16:23:04','2006-02-15 22:17:07'), +(10012,370,1,12339,'4.99','2005-08-18 07:05:06','2006-02-15 22:17:07'), +(10013,370,1,13039,'0.99','2005-08-19 08:55:19','2006-02-15 22:17:07'), +(10014,370,1,14602,'3.99','2005-08-21 17:48:49','2006-02-15 22:17:07'), +(10015,370,2,14786,'2.99','2005-08-22 00:24:42','2006-02-15 22:17:07'), +(10016,370,2,15368,'3.99','2005-08-22 21:57:15','2006-02-15 22:17:07'), +(10017,370,1,15626,'4.99','2005-08-23 07:25:34','2006-02-15 22:17:07'), +(10018,370,1,15982,'5.99','2005-08-23 20:13:31','2006-02-15 22:17:08'), +(10019,371,1,26,'3.99','2005-05-25 03:36:50','2006-02-15 22:17:08'), +(10020,371,2,286,'6.99','2005-05-26 19:44:51','2006-02-15 22:17:08'), +(10021,371,2,381,'4.99','2005-05-27 09:43:25','2006-02-15 22:17:08'), +(10022,371,1,384,'5.99','2005-05-27 10:18:20','2006-02-15 22:17:08'), +(10023,371,1,825,'0.99','2005-05-29 21:49:41','2006-02-15 22:17:08'), +(10024,371,1,829,'2.99','2005-05-29 22:16:42','2006-02-15 22:17:08'), +(10025,371,2,1212,'2.99','2005-06-15 03:03:33','2006-02-15 22:17:08'), +(10026,371,1,1218,'1.99','2005-06-15 03:24:44','2006-02-15 22:17:08'), +(10027,371,1,1573,'6.99','2005-06-16 03:31:39','2006-02-15 22:17:08'), +(10028,371,2,1675,'5.99','2005-06-16 11:04:47','2006-02-15 22:17:08'), +(10029,371,2,2837,'0.99','2005-06-19 22:03:50','2006-02-15 22:17:08'), +(10030,371,1,3176,'3.99','2005-06-20 22:31:54','2006-02-15 22:17:08'), +(10031,371,2,3396,'0.99','2005-06-21 15:23:08','2006-02-15 22:17:08'), +(10032,371,2,4115,'8.99','2005-07-07 06:52:23','2006-02-15 22:17:08'), +(10033,371,1,4612,'1.99','2005-07-08 07:40:44','2006-02-15 22:17:08'), +(10034,371,1,5171,'4.99','2005-07-09 09:26:55','2006-02-15 22:17:08'), +(10035,371,2,5614,'0.99','2005-07-10 05:16:56','2006-02-15 22:17:08'), +(10036,371,1,6000,'2.99','2005-07-11 01:23:06','2006-02-15 22:17:08'), +(10037,371,1,6460,'1.99','2005-07-12 01:13:44','2006-02-15 22:17:08'), +(10038,371,1,6922,'0.99','2005-07-12 22:39:48','2006-02-15 22:17:08'), +(10039,371,1,7408,'3.99','2005-07-27 16:31:40','2006-02-15 22:17:09'), +(10040,371,1,8138,'4.99','2005-07-28 20:12:17','2006-02-15 22:17:09'), +(10041,371,1,9008,'4.99','2005-07-30 05:10:26','2006-02-15 22:17:09'), +(10042,371,1,9117,'8.99','2005-07-30 09:20:59','2006-02-15 22:17:09'), +(10043,371,1,9635,'0.99','2005-07-31 05:12:27','2006-02-15 22:17:09'), +(10044,371,1,11086,'10.99','2005-08-02 07:38:44','2006-02-15 22:17:09'), +(10045,371,2,12397,'9.99','2005-08-18 09:12:52','2006-02-15 22:17:09'), +(10046,371,2,12584,'7.99','2005-08-18 15:51:36','2006-02-15 22:17:09'), +(10047,371,1,13028,'2.99','2005-08-19 08:27:23','2006-02-15 22:17:09'), +(10048,371,2,13143,'3.99','2005-08-19 12:44:38','2006-02-15 22:17:09'), +(10049,371,1,13191,'4.99','2005-08-19 14:28:48','2006-02-15 22:17:09'), +(10050,371,2,13953,'4.99','2005-08-20 18:00:37','2006-02-15 22:17:09'), +(10051,371,1,14384,'2.99','2005-08-21 10:02:37','2006-02-15 22:17:09'), +(10052,371,1,15786,'0.99','2005-08-23 13:48:34','2006-02-15 22:17:09'), +(10053,371,1,15824,'2.99','2005-08-23 15:09:17','2006-02-15 22:17:09'), +(10054,372,1,617,'2.99','2005-05-28 15:49:14','2006-02-15 22:17:09'), +(10055,372,1,638,'2.99','2005-05-28 18:24:43','2006-02-15 22:17:09'), +(10056,372,1,2315,'2.99','2005-06-18 09:03:39','2006-02-15 22:17:09'), +(10057,372,1,2959,'4.99','2005-06-20 07:07:54','2006-02-15 22:17:09'), +(10058,372,1,3283,'3.99','2005-06-21 06:19:07','2006-02-15 22:17:09'), +(10059,372,1,5229,'4.99','2005-07-09 12:30:18','2006-02-15 22:17:09'), +(10060,372,1,5314,'2.99','2005-07-09 16:05:28','2006-02-15 22:17:10'), +(10061,372,1,5352,'2.99','2005-07-09 17:54:58','2006-02-15 22:17:10'), +(10062,372,1,5501,'6.99','2005-07-10 00:33:48','2006-02-15 22:17:10'), +(10063,372,2,5914,'7.99','2005-07-10 21:01:12','2006-02-15 22:17:10'), +(10064,372,2,6692,'4.99','2005-07-12 12:35:39','2006-02-15 22:17:10'), +(10065,372,1,7190,'4.99','2005-07-27 08:36:01','2006-02-15 22:17:10'), +(10066,372,2,7234,'5.99','2005-07-27 10:08:45','2006-02-15 22:17:10'), +(10067,372,2,7735,'4.99','2005-07-28 05:09:56','2006-02-15 22:17:10'), +(10068,372,2,8009,'7.99','2005-07-28 15:25:58','2006-02-15 22:17:10'), +(10069,372,1,8059,'2.99','2005-07-28 17:09:59','2006-02-15 22:17:10'), +(10070,372,1,8358,'0.99','2005-07-29 05:00:58','2006-02-15 22:17:10'), +(10071,372,1,8724,'0.99','2005-07-29 18:05:21','2006-02-15 22:17:10'), +(10072,372,1,8755,'2.99','2005-07-29 19:18:31','2006-02-15 22:17:10'), +(10073,372,2,8837,'8.99','2005-07-29 22:49:00','2006-02-15 22:17:10'), +(10074,372,1,9128,'5.99','2005-07-30 09:51:14','2006-02-15 22:17:10'), +(10075,372,2,11134,'10.99','2005-08-02 09:19:22','2006-02-15 22:17:10'), +(10076,372,2,11438,'3.99','2005-08-02 20:21:08','2006-02-15 22:17:10'), +(10077,372,2,11555,'4.99','2005-08-17 01:08:59','2006-02-15 22:17:10'), +(10078,372,1,12224,'0.99','2005-08-18 02:59:09','2006-02-15 22:17:10'), +(10079,372,1,12714,'3.99','2005-08-18 21:08:01','2006-02-15 22:17:10'), +(10080,372,2,13402,'4.99','2005-08-19 22:16:53','2006-02-15 22:17:11'), +(10081,372,2,13871,'8.99','2005-08-20 15:10:13','2006-02-15 22:17:11'), +(10082,372,2,14037,'9.99','2005-08-20 21:35:58','2006-02-15 22:17:11'), +(10083,372,1,14211,'4.99','2005-08-21 04:29:11','2006-02-15 22:17:11'), +(10084,372,1,14331,'2.99','2005-08-21 08:29:38','2006-02-15 22:17:11'), +(10085,372,1,14770,'1.99','2005-08-21 23:47:16','2006-02-15 22:17:11'), +(10086,372,2,15041,'0.99','2005-08-22 09:43:18','2006-02-15 22:17:11'), +(10087,372,1,15563,'2.99','2005-08-23 05:08:58','2006-02-15 22:17:11'), +(10088,373,2,257,'4.99','2005-05-26 15:27:05','2006-02-15 22:17:11'), +(10089,373,1,1472,'6.99','2005-06-15 20:54:55','2006-02-15 22:17:11'), +(10090,373,1,3161,'2.99','2005-06-20 21:21:01','2006-02-15 22:17:11'), +(10091,373,2,3609,'2.99','2005-07-06 05:36:22','2006-02-15 22:17:11'), +(10092,373,2,3667,'4.99','2005-07-06 08:36:34','2006-02-15 22:17:11'), +(10093,373,1,4325,'7.99','2005-07-07 17:59:24','2006-02-15 22:17:11'), +(10094,373,1,5120,'5.99','2005-07-09 07:14:23','2006-02-15 22:17:11'), +(10095,373,1,6202,'3.99','2005-07-11 12:24:25','2006-02-15 22:17:11'), +(10096,373,2,6311,'0.99','2005-07-11 18:18:52','2006-02-15 22:17:11'), +(10097,373,1,6944,'4.99','2005-07-26 23:34:02','2006-02-15 22:17:11'), +(10098,373,1,7094,'0.99','2005-07-27 04:47:33','2006-02-15 22:17:11'), +(10099,373,2,7206,'3.99','2005-07-27 09:07:05','2006-02-15 22:17:11'), +(10100,373,1,7615,'0.99','2005-07-28 00:15:24','2006-02-15 22:17:11'), +(10101,373,1,8611,'3.99','2005-07-29 13:26:21','2006-02-15 22:17:12'), +(10102,373,2,9327,'8.99','2005-07-30 17:31:03','2006-02-15 22:17:12'), +(10103,373,1,9397,'4.99','2005-07-30 20:07:29','2006-02-15 22:17:12'), +(10104,373,2,9480,'0.99','2005-07-30 23:26:03','2006-02-15 22:17:12'), +(10105,373,1,9966,'4.99','2005-07-31 16:26:46','2006-02-15 22:17:12'), +(10106,373,1,10010,'6.99','2005-07-31 18:01:36','2006-02-15 22:17:12'), +(10107,373,1,10221,'4.99','2005-08-01 01:16:50','2006-02-15 22:17:12'), +(10108,373,1,10758,'5.99','2005-08-01 20:22:51','2006-02-15 22:17:12'), +(10109,373,2,11066,'7.99','2005-08-02 06:58:32','2006-02-15 22:17:12'), +(10110,373,2,11512,'7.99','2005-08-16 23:51:06','2006-02-15 22:17:12'), +(10111,373,2,11663,'3.99','2005-08-17 05:30:19','2006-02-15 22:17:12'), +(10112,373,2,11976,'3.99','2005-08-17 17:59:19','2006-02-15 22:17:12'), +(10113,373,1,12142,'5.99','2005-08-18 00:04:12','2006-02-15 22:17:12'), +(10114,373,2,12536,'5.99','2005-08-18 14:06:06','2006-02-15 22:17:12'), +(10115,373,1,12748,'7.99','2005-08-18 22:29:05','2006-02-15 22:17:12'), +(10116,373,2,12780,'0.99','2005-08-18 23:48:16','2006-02-15 22:17:12'), +(10117,373,2,13299,'2.99','2005-08-19 18:46:33','2006-02-15 22:17:12'), +(10118,373,1,13329,'3.99','2005-08-19 19:56:55','2006-02-15 22:17:12'), +(10119,373,2,13467,'2.99','2005-08-20 00:56:44','2006-02-15 22:17:12'), +(10120,373,2,15014,'6.99','2005-08-22 08:43:11','2006-02-15 22:17:12'), +(10121,373,1,15068,'3.99','2005-08-22 10:50:13','2006-02-15 22:17:13'), +(10122,373,1,11739,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:13'), +(10123,374,1,521,'0.99','2005-05-28 03:32:22','2006-02-15 22:17:13'), +(10124,374,2,910,'2.99','2005-05-30 10:46:16','2006-02-15 22:17:13'), +(10125,374,2,919,'0.99','2005-05-30 11:35:06','2006-02-15 22:17:13'), +(10126,374,1,1548,'1.99','2005-06-16 01:43:33','2006-02-15 22:17:13'), +(10127,374,2,2046,'1.99','2005-06-17 14:39:50','2006-02-15 22:17:13'), +(10128,374,2,2487,'4.99','2005-06-18 21:32:54','2006-02-15 22:17:13'), +(10129,374,2,2641,'2.99','2005-06-19 09:38:33','2006-02-15 22:17:13'), +(10130,374,1,3797,'1.99','2005-07-06 14:54:52','2006-02-15 22:17:13'), +(10131,374,1,5463,'4.99','2005-07-09 22:57:02','2006-02-15 22:17:13'), +(10132,374,1,5570,'6.99','2005-07-10 03:46:47','2006-02-15 22:17:13'), +(10133,374,2,5591,'3.99','2005-07-10 04:25:03','2006-02-15 22:17:13'), +(10134,374,2,5945,'2.99','2005-07-10 22:52:42','2006-02-15 22:17:13'), +(10135,374,2,6315,'0.99','2005-07-11 18:42:49','2006-02-15 22:17:13'), +(10136,374,2,7837,'0.99','2005-07-28 08:58:32','2006-02-15 22:17:13'), +(10137,374,2,8586,'7.99','2005-07-29 12:16:34','2006-02-15 22:17:13'), +(10138,374,2,9113,'0.99','2005-07-30 09:09:03','2006-02-15 22:17:13'), +(10139,374,1,9866,'6.99','2005-07-31 13:13:50','2006-02-15 22:17:13'), +(10140,374,1,10695,'2.99','2005-08-01 18:16:20','2006-02-15 22:17:13'), +(10141,374,1,11619,'0.99','2005-08-17 04:03:26','2006-02-15 22:17:13'), +(10142,374,2,12696,'2.99','2005-08-18 20:13:08','2006-02-15 22:17:14'), +(10143,374,1,13337,'2.99','2005-08-19 20:06:57','2006-02-15 22:17:14'), +(10144,374,2,13734,'4.99','2005-08-20 10:29:57','2006-02-15 22:17:14'), +(10145,374,2,14524,'8.99','2005-08-21 15:05:27','2006-02-15 22:17:14'), +(10146,374,2,15053,'5.99','2005-08-22 10:13:09','2006-02-15 22:17:14'), +(10147,374,1,15200,'2.99','2005-08-22 16:22:53','2006-02-15 22:17:14'), +(10148,374,2,15202,'4.99','2005-08-22 16:26:53','2006-02-15 22:17:14'), +(10149,374,2,15366,'6.99','2005-08-22 21:45:57','2006-02-15 22:17:14'), +(10150,374,2,15966,'2.99','2006-02-14 15:16:03','2006-02-15 22:17:14'), +(10151,375,2,307,'8.99','2005-05-26 21:48:13','2006-02-15 22:17:14'), +(10152,375,1,412,'4.99','2005-05-27 14:17:23','2006-02-15 22:17:14'), +(10153,375,2,749,'4.99','2005-05-29 09:33:33','2006-02-15 22:17:14'), +(10154,375,1,873,'2.99','2005-05-30 05:15:20','2006-02-15 22:17:14'), +(10155,375,2,1404,'2.99','2005-06-15 16:38:53','2006-02-15 22:17:14'), +(10156,375,1,1499,'5.99','2005-06-15 21:58:07','2006-02-15 22:17:14'), +(10157,375,1,2236,'4.99','2005-06-18 04:12:33','2006-02-15 22:17:14'), +(10158,375,1,3981,'6.99','2005-07-06 23:12:12','2006-02-15 22:17:14'), +(10159,375,2,4335,'4.99','2005-07-07 18:33:57','2006-02-15 22:17:14'), +(10160,375,2,5474,'2.99','2005-07-09 23:23:57','2006-02-15 22:17:14'), +(10161,375,1,7856,'4.99','2005-07-28 09:48:24','2006-02-15 22:17:14'), +(10162,375,2,8900,'2.99','2005-07-30 01:07:03','2006-02-15 22:17:14'), +(10163,375,1,10274,'0.99','2005-08-01 03:16:51','2006-02-15 22:17:15'), +(10164,375,2,10589,'1.99','2005-08-01 14:11:09','2006-02-15 22:17:15'), +(10165,375,1,10640,'0.99','2005-08-01 15:44:51','2006-02-15 22:17:15'), +(10166,375,1,10672,'4.99','2005-08-01 17:10:54','2006-02-15 22:17:15'), +(10167,375,1,10859,'5.99','2005-08-02 00:11:39','2006-02-15 22:17:15'), +(10168,375,1,10961,'6.99','2005-08-02 03:47:55','2006-02-15 22:17:15'), +(10169,375,2,11008,'5.99','2005-08-02 05:06:17','2006-02-15 22:17:15'), +(10170,375,2,12122,'9.99','2005-08-17 23:20:45','2006-02-15 22:17:15'), +(10171,375,2,12663,'0.99','2005-08-18 19:10:52','2006-02-15 22:17:15'), +(10172,375,1,13836,'4.99','2005-08-20 14:18:16','2006-02-15 22:17:15'), +(10173,375,1,15004,'2.99','2005-08-22 08:15:21','2006-02-15 22:17:15'), +(10174,375,1,15505,'4.99','2005-08-23 02:46:13','2006-02-15 22:17:15'), +(10175,376,1,554,'0.99','2005-05-28 08:23:16','2006-02-15 22:17:15'), +(10176,376,2,1208,'0.99','2005-06-15 02:30:03','2006-02-15 22:17:15'), +(10177,376,1,2779,'0.99','2005-06-19 18:19:07','2006-02-15 22:17:15'), +(10178,376,2,3719,'2.99','2005-07-06 11:05:55','2006-02-15 22:17:15'), +(10179,376,1,4163,'0.99','2005-07-07 09:19:28','2006-02-15 22:17:15'), +(10180,376,2,4166,'8.99','2005-07-07 09:33:30','2006-02-15 22:17:15'), +(10181,376,1,4320,'3.99','2005-07-07 17:51:59','2006-02-15 22:17:15'), +(10182,376,1,4554,'5.99','2005-07-08 04:48:03','2006-02-15 22:17:15'), +(10183,376,1,4869,'4.99','2005-07-08 19:14:05','2006-02-15 22:17:16'), +(10184,376,1,5675,'4.99','2005-07-10 08:31:06','2006-02-15 22:17:16'), +(10185,376,1,6524,'6.99','2005-07-12 04:14:35','2006-02-15 22:17:16'), +(10186,376,1,6545,'8.99','2005-07-12 04:56:30','2006-02-15 22:17:16'), +(10187,376,2,6807,'2.99','2005-07-12 17:33:53','2006-02-15 22:17:16'), +(10188,376,1,8269,'2.99','2005-07-29 01:26:54','2006-02-15 22:17:16'), +(10189,376,1,8420,'5.99','2005-07-29 07:00:45','2006-02-15 22:17:16'), +(10190,376,1,9773,'4.99','2005-07-31 09:56:56','2006-02-15 22:17:16'), +(10191,376,1,9828,'2.99','2005-07-31 11:56:57','2006-02-15 22:17:16'), +(10192,376,1,9872,'0.99','2005-07-31 13:27:55','2006-02-15 22:17:16'), +(10193,376,2,10413,'3.99','2005-08-01 07:59:39','2006-02-15 22:17:16'), +(10194,376,1,10810,'3.99','2005-08-01 22:40:39','2006-02-15 22:17:16'), +(10195,376,1,11144,'4.99','2005-08-02 09:39:17','2006-02-15 22:17:16'), +(10196,376,2,11792,'4.99','2005-08-17 11:03:53','2006-02-15 22:17:16'), +(10197,376,1,11851,'4.99','2005-08-17 13:30:27','2006-02-15 22:17:16'), +(10198,376,1,13009,'0.99','2005-08-19 07:50:35','2006-02-15 22:17:16'), +(10199,376,1,13141,'0.99','2005-08-19 12:41:41','2006-02-15 22:17:16'), +(10200,376,2,13761,'4.99','2005-08-20 11:28:50','2006-02-15 22:17:16'), +(10201,376,1,15107,'4.99','2005-08-22 12:05:02','2006-02-15 22:17:16'), +(10202,376,1,15382,'2.99','2005-08-22 22:30:50','2006-02-15 22:17:16'), +(10203,377,2,2556,'3.99','2005-06-19 03:07:32','2006-02-15 22:17:16'), +(10204,377,1,3080,'1.99','2005-06-20 15:22:32','2006-02-15 22:17:17'), +(10205,377,2,3086,'0.99','2005-06-20 15:42:40','2006-02-15 22:17:17'), +(10206,377,2,3136,'2.99','2005-06-20 19:39:08','2006-02-15 22:17:17'), +(10207,377,2,3443,'4.99','2005-06-21 20:19:00','2006-02-15 22:17:17'), +(10208,377,1,3858,'2.99','2005-07-06 17:17:57','2006-02-15 22:17:17'), +(10209,377,2,4053,'0.99','2005-07-07 03:39:22','2006-02-15 22:17:17'), +(10210,377,1,4077,'0.99','2005-07-07 04:53:40','2006-02-15 22:17:17'), +(10211,377,1,4225,'0.99','2005-07-07 12:24:37','2006-02-15 22:17:17'), +(10212,377,2,6893,'7.99','2005-07-12 21:20:11','2006-02-15 22:17:17'), +(10213,377,1,7697,'1.99','2005-07-28 03:43:45','2006-02-15 22:17:17'), +(10214,377,2,8018,'10.99','2005-07-28 15:36:48','2006-02-15 22:17:17'), +(10215,377,2,8916,'4.99','2005-07-30 01:42:21','2006-02-15 22:17:17'), +(10216,377,2,9461,'3.99','2005-07-30 22:29:13','2006-02-15 22:17:17'), +(10217,377,1,9564,'0.99','2005-07-31 02:31:37','2006-02-15 22:17:17'), +(10218,377,1,10013,'4.99','2005-07-31 18:08:21','2006-02-15 22:17:17'), +(10219,377,1,10183,'8.99','2005-08-01 00:08:01','2006-02-15 22:17:17'), +(10220,377,1,10738,'3.99','2005-08-01 19:39:08','2006-02-15 22:17:17'), +(10221,377,1,10943,'2.99','2005-08-02 03:17:29','2006-02-15 22:17:17'), +(10222,377,1,12390,'1.99','2005-08-18 08:51:42','2006-02-15 22:17:17'), +(10223,377,1,12549,'4.99','2005-08-18 14:38:07','2006-02-15 22:17:17'), +(10224,377,1,13249,'2.99','2005-08-19 16:47:41','2006-02-15 22:17:17'), +(10225,377,1,13275,'0.99','2005-08-19 17:53:38','2006-02-15 22:17:18'), +(10226,377,2,15088,'0.99','2005-08-22 11:28:26','2006-02-15 22:17:18'), +(10227,377,1,15995,'0.99','2005-08-23 20:29:56','2006-02-15 22:17:18'), +(10228,377,1,15999,'7.99','2005-08-23 20:44:10','2006-02-15 22:17:18'), +(10229,378,1,347,'0.99','2005-05-27 04:40:33','2006-02-15 22:17:18'), +(10230,378,2,1623,'4.99','2005-06-16 07:48:50','2006-02-15 22:17:18'), +(10231,378,1,1662,'5.99','2005-06-16 10:13:35','2006-02-15 22:17:18'), +(10232,378,2,2134,'7.99','2005-06-17 21:13:44','2006-02-15 22:17:18'), +(10233,378,2,2713,'4.99','2005-06-19 14:23:09','2006-02-15 22:17:18'), +(10234,378,1,3759,'4.99','2005-07-06 12:46:38','2006-02-15 22:17:18'), +(10235,378,2,4755,'0.99','2005-07-08 14:23:41','2006-02-15 22:17:18'), +(10236,378,1,5578,'1.99','2005-07-10 04:00:31','2006-02-15 22:17:18'), +(10237,378,2,6233,'1.99','2005-07-11 14:10:47','2006-02-15 22:17:18'), +(10238,378,1,7888,'0.99','2005-07-28 10:40:24','2006-02-15 22:17:18'), +(10239,378,2,8740,'2.99','2005-07-29 18:41:31','2006-02-15 22:17:18'), +(10240,378,2,9668,'3.99','2005-07-31 06:31:03','2006-02-15 22:17:18'), +(10241,378,1,9868,'2.99','2005-07-31 13:20:08','2006-02-15 22:17:18'), +(10242,378,1,10917,'4.99','2005-08-02 02:06:18','2006-02-15 22:17:18'), +(10243,378,1,11111,'4.99','2005-08-02 08:21:27','2006-02-15 22:17:18'), +(10244,378,1,12596,'2.99','2005-08-18 16:29:35','2006-02-15 22:17:18'), +(10245,378,1,12828,'4.99','2005-08-19 01:37:47','2006-02-15 22:17:19'), +(10246,378,2,14502,'4.99','2005-08-21 14:22:28','2006-02-15 22:17:19'), +(10247,378,1,14971,'2.99','2005-08-22 06:52:49','2006-02-15 22:17:19'), +(10248,379,2,209,'4.99','2005-05-26 08:14:01','2006-02-15 22:17:19'), +(10249,379,1,863,'4.99','2005-05-30 03:14:59','2006-02-15 22:17:19'), +(10250,379,1,1383,'8.99','2005-06-15 15:20:06','2006-02-15 22:17:19'), +(10251,379,1,2313,'5.99','2005-06-18 08:56:45','2006-02-15 22:17:19'), +(10252,379,1,2926,'2.99','2005-06-20 04:37:45','2006-02-15 22:17:19'), +(10253,379,1,3788,'4.99','2005-07-06 14:02:02','2006-02-15 22:17:19'), +(10254,379,2,4740,'2.99','2005-07-08 13:30:35','2006-02-15 22:17:19'), +(10255,379,1,5402,'4.99','2005-07-09 20:01:58','2006-02-15 22:17:19'), +(10256,379,1,6235,'7.99','2005-07-11 14:17:51','2006-02-15 22:17:19'), +(10257,379,2,7041,'4.99','2005-07-27 03:18:32','2006-02-15 22:17:19'), +(10258,379,1,10041,'4.99','2005-07-31 19:01:02','2006-02-15 22:17:19'), +(10259,379,2,11457,'3.99','2005-08-02 21:14:16','2006-02-15 22:17:19'), +(10260,379,1,12503,'4.99','2005-08-18 13:16:46','2006-02-15 22:17:19'), +(10261,379,1,13334,'0.99','2005-08-19 20:02:33','2006-02-15 22:17:19'), +(10262,379,2,13397,'7.99','2005-08-19 22:06:35','2006-02-15 22:17:19'), +(10263,379,1,13485,'0.99','2005-08-20 01:20:14','2006-02-15 22:17:19'), +(10264,379,1,14011,'5.99','2005-08-20 20:32:56','2006-02-15 22:17:19'), +(10265,379,2,14152,'2.99','2005-08-21 02:23:50','2006-02-15 22:17:19'), +(10266,379,1,14470,'0.99','2005-08-21 13:09:41','2006-02-15 22:17:20'), +(10267,379,1,14886,'4.99','2005-08-22 03:59:01','2006-02-15 22:17:20'), +(10268,379,2,15399,'4.99','2005-08-22 23:11:59','2006-02-15 22:17:20'), +(10269,379,1,15446,'4.99','2005-08-23 00:49:24','2006-02-15 22:17:20'), +(10270,379,2,15930,'3.99','2005-08-23 18:26:51','2006-02-15 22:17:20'), +(10271,380,1,847,'3.99','2005-05-30 01:18:15','2006-02-15 22:17:20'), +(10272,380,1,1868,'3.99','2005-06-17 02:03:22','2006-02-15 22:17:20'), +(10273,380,1,1984,'2.99','2005-06-17 10:25:28','2006-02-15 22:17:20'), +(10274,380,1,2018,'3.99','2005-06-17 12:35:58','2006-02-15 22:17:20'), +(10275,380,1,2440,'2.99','2005-06-18 18:41:09','2006-02-15 22:17:20'), +(10276,380,1,2464,'4.99','2005-06-18 20:06:05','2006-02-15 22:17:20'), +(10277,380,2,2998,'1.99','2005-06-20 09:30:22','2006-02-15 22:17:20'), +(10278,380,2,3099,'1.99','2005-06-20 16:44:33','2006-02-15 22:17:20'), +(10279,380,1,3260,'4.99','2005-06-21 03:59:13','2006-02-15 22:17:20'), +(10280,380,1,3637,'2.99','2005-07-06 07:06:31','2006-02-15 22:17:20'), +(10281,380,1,3688,'4.99','2005-07-06 09:41:53','2006-02-15 22:17:20'), +(10282,380,1,4675,'2.99','2005-07-08 10:24:22','2006-02-15 22:17:20'), +(10283,380,2,4706,'4.99','2005-07-08 11:51:41','2006-02-15 22:17:20'), +(10284,380,2,5339,'0.99','2005-07-09 17:09:17','2006-02-15 22:17:20'), +(10285,380,2,7021,'8.99','2005-07-27 02:26:38','2006-02-15 22:17:20'), +(10286,380,2,7167,'2.99','2005-07-27 07:37:26','2006-02-15 22:17:20'), +(10287,380,2,7435,'0.99','2005-07-27 17:38:44','2006-02-15 22:17:21'), +(10288,380,2,7443,'2.99','2005-07-27 17:47:43','2006-02-15 22:17:21'), +(10289,380,1,7773,'2.99','2005-07-28 07:02:17','2006-02-15 22:17:21'), +(10290,380,1,7974,'3.99','2005-07-28 14:11:57','2006-02-15 22:17:21'), +(10291,380,1,9056,'0.99','2005-07-30 07:13:20','2006-02-15 22:17:21'), +(10292,380,1,9261,'6.99','2005-07-30 14:39:35','2006-02-15 22:17:21'), +(10293,380,1,9710,'10.99','2005-07-31 08:05:31','2006-02-15 22:17:21'), +(10294,380,2,10450,'1.99','2005-08-01 09:10:03','2006-02-15 22:17:21'), +(10295,380,1,10983,'3.99','2005-08-02 04:24:23','2006-02-15 22:17:21'), +(10296,380,1,11936,'0.99','2005-08-17 16:45:34','2006-02-15 22:17:21'), +(10297,380,2,11945,'0.99','2005-08-17 17:05:33','2006-02-15 22:17:21'), +(10298,380,1,12636,'3.99','2005-08-18 18:00:29','2006-02-15 22:17:21'), +(10299,380,1,12996,'6.99','2005-08-19 07:31:32','2006-02-15 22:17:21'), +(10300,380,1,14529,'6.99','2005-08-21 15:08:31','2006-02-15 22:17:21'), +(10301,380,1,14935,'1.99','2005-08-22 05:47:31','2006-02-15 22:17:21'), +(10302,380,2,15175,'5.99','2005-08-22 15:29:15','2006-02-15 22:17:21'), +(10303,380,1,15361,'2.99','2005-08-22 21:39:45','2006-02-15 22:17:21'), +(10304,380,2,15636,'2.99','2005-08-23 07:50:46','2006-02-15 22:17:21'), +(10305,380,1,15697,'2.99','2005-08-23 10:04:36','2006-02-15 22:17:21'), +(10306,380,2,15748,'2.99','2005-08-23 12:33:00','2006-02-15 22:17:21'), +(10307,381,2,169,'0.99','2005-05-26 03:09:30','2006-02-15 22:17:22'), +(10308,381,2,406,'2.99','2005-05-27 13:46:46','2006-02-15 22:17:22'), +(10309,381,1,835,'2.99','2005-05-29 23:37:00','2006-02-15 22:17:22'), +(10310,381,1,1402,'3.99','2005-06-15 16:31:08','2006-02-15 22:17:22'), +(10311,381,1,1878,'1.99','2005-06-17 02:55:32','2006-02-15 22:17:22'), +(10312,381,2,2410,'2.99','2005-06-18 16:55:08','2006-02-15 22:17:22'), +(10313,381,1,2418,'4.99','2005-06-18 17:14:42','2006-02-15 22:17:22'), +(10314,381,2,3425,'2.99','2005-06-21 18:07:07','2006-02-15 22:17:22'), +(10315,381,2,3812,'0.99','2005-07-06 15:22:19','2006-02-15 22:17:22'), +(10316,381,2,3970,'2.99','2005-07-06 22:48:17','2006-02-15 22:17:22'), +(10317,381,1,4735,'0.99','2005-07-08 13:12:27','2006-02-15 22:17:22'), +(10318,381,2,5689,'0.99','2005-07-10 09:24:17','2006-02-15 22:17:22'), +(10319,381,2,6116,'2.99','2005-07-11 07:37:38','2006-02-15 22:17:22'), +(10320,381,2,6451,'4.99','2005-07-12 00:52:19','2006-02-15 22:17:22'), +(10321,381,2,6778,'2.99','2005-07-12 16:06:00','2006-02-15 22:17:22'), +(10322,381,1,7375,'2.99','2005-07-27 15:22:33','2006-02-15 22:17:22'), +(10323,381,1,7645,'2.99','2005-07-28 01:27:42','2006-02-15 22:17:22'), +(10324,381,2,8688,'0.99','2005-07-29 16:31:32','2006-02-15 22:17:22'), +(10325,381,2,9144,'0.99','2005-07-30 10:22:15','2006-02-15 22:17:22'), +(10326,381,2,9173,'4.99','2005-07-30 11:40:10','2006-02-15 22:17:22'), +(10327,381,1,9822,'2.99','2005-07-31 11:48:25','2006-02-15 22:17:22'), +(10328,381,2,10033,'4.99','2005-07-31 18:44:29','2006-02-15 22:17:23'), +(10329,381,1,10608,'0.99','2005-08-01 14:48:41','2006-02-15 22:17:23'), +(10330,381,2,10705,'0.99','2005-08-01 18:38:54','2006-02-15 22:17:23'), +(10331,381,1,11519,'2.99','2005-08-17 00:01:27','2006-02-15 22:17:23'), +(10332,381,2,12135,'2.99','2005-08-17 23:50:24','2006-02-15 22:17:23'), +(10333,381,2,12237,'4.99','2005-08-18 03:24:38','2006-02-15 22:17:23'), +(10334,381,2,12632,'2.99','2005-08-18 17:54:21','2006-02-15 22:17:23'), +(10335,381,2,13202,'8.99','2005-08-19 14:58:30','2006-02-15 22:17:23'), +(10336,381,2,13430,'0.99','2005-08-19 23:25:43','2006-02-15 22:17:23'), +(10337,381,1,13614,'0.99','2005-08-20 06:28:37','2006-02-15 22:17:23'), +(10338,381,2,13995,'2.99','2005-08-20 19:34:43','2006-02-15 22:17:23'), +(10339,381,1,14198,'4.99','2005-08-21 03:48:31','2006-02-15 22:17:23'), +(10340,381,2,15299,'4.99','2005-08-22 19:42:57','2006-02-15 22:17:23'), +(10341,381,1,15747,'4.99','2005-08-23 12:29:24','2006-02-15 22:17:23'), +(10342,382,2,356,'2.99','2005-05-27 06:32:30','2006-02-15 22:17:23'), +(10343,382,1,522,'2.99','2005-05-28 03:33:20','2006-02-15 22:17:23'), +(10344,382,1,2389,'0.99','2005-06-18 15:27:47','2006-02-15 22:17:23'), +(10345,382,1,2468,'4.99','2005-06-18 20:23:52','2006-02-15 22:17:23'), +(10346,382,1,2489,'1.99','2005-06-18 22:00:44','2006-02-15 22:17:23'), +(10347,382,1,2514,'2.99','2005-06-18 23:56:44','2006-02-15 22:17:23'), +(10348,382,2,3125,'4.99','2005-06-20 18:31:58','2006-02-15 22:17:24'), +(10349,382,2,3480,'3.99','2005-07-05 23:11:43','2006-02-15 22:17:24'), +(10350,382,2,4351,'4.99','2005-07-07 19:04:24','2006-02-15 22:17:24'), +(10351,382,1,5004,'4.99','2005-07-09 01:20:50','2006-02-15 22:17:24'), +(10352,382,1,5816,'0.99','2005-07-10 15:48:47','2006-02-15 22:17:24'), +(10353,382,2,7625,'0.99','2005-07-28 00:47:56','2006-02-15 22:17:24'), +(10354,382,2,8777,'0.99','2005-07-29 20:10:21','2006-02-15 22:17:24'), +(10355,382,1,8871,'9.99','2005-07-30 00:12:41','2006-02-15 22:17:24'), +(10356,382,1,8993,'4.99','2005-07-30 04:51:25','2006-02-15 22:17:24'), +(10357,382,1,9067,'6.99','2005-07-30 07:31:01','2006-02-15 22:17:24'), +(10358,382,2,9555,'0.99','2005-07-31 02:11:16','2006-02-15 22:17:24'), +(10359,382,2,10327,'3.99','2005-08-01 04:55:35','2006-02-15 22:17:24'), +(10360,382,2,12229,'0.99','2005-08-18 03:08:23','2006-02-15 22:17:24'), +(10361,382,2,12529,'0.99','2005-08-18 13:53:36','2006-02-15 22:17:24'), +(10362,382,1,14009,'4.99','2005-08-20 20:26:53','2006-02-15 22:17:24'), +(10363,382,2,14300,'4.99','2005-08-21 07:19:37','2006-02-15 22:17:24'), +(10364,382,2,14354,'5.99','2005-08-21 09:08:14','2006-02-15 22:17:24'), +(10365,382,2,15939,'7.99','2005-08-23 18:44:21','2006-02-15 22:17:24'), +(10366,383,2,63,'0.99','2005-05-25 09:19:16','2006-02-15 22:17:24'), +(10367,383,1,766,'8.99','2005-05-29 11:47:02','2006-02-15 22:17:24'), +(10368,383,1,1831,'7.99','2005-06-16 22:22:17','2006-02-15 22:17:25'), +(10369,383,2,2228,'2.99','2005-06-18 03:44:50','2006-02-15 22:17:25'), +(10370,383,1,2252,'2.99','2005-06-18 05:05:18','2006-02-15 22:17:25'), +(10371,383,2,2318,'2.99','2005-06-18 09:13:54','2006-02-15 22:17:25'), +(10372,383,1,2609,'7.99','2005-06-19 07:13:12','2006-02-15 22:17:25'), +(10373,383,1,3091,'2.99','2005-06-20 16:02:59','2006-02-15 22:17:25'), +(10374,383,2,4747,'5.99','2005-07-08 13:53:01','2006-02-15 22:17:25'), +(10375,383,2,6091,'4.99','2005-07-11 05:49:18','2006-02-15 22:17:25'), +(10376,383,2,6244,'0.99','2005-07-11 14:53:38','2006-02-15 22:17:25'), +(10377,383,1,6775,'4.99','2005-07-12 16:01:44','2006-02-15 22:17:25'), +(10378,383,1,7367,'3.99','2005-07-27 15:05:45','2006-02-15 22:17:25'), +(10379,383,2,8367,'2.99','2005-07-29 05:11:19','2006-02-15 22:17:25'), +(10380,383,1,8635,'0.99','2005-07-29 14:22:48','2006-02-15 22:17:25'), +(10381,383,1,9653,'0.99','2005-07-31 05:55:38','2006-02-15 22:17:25'), +(10382,383,1,9678,'0.99','2005-07-31 06:40:47','2006-02-15 22:17:25'), +(10383,383,2,10515,'4.99','2005-08-01 11:41:33','2006-02-15 22:17:25'), +(10384,383,1,10971,'4.99','2005-08-02 04:08:17','2006-02-15 22:17:25'), +(10385,383,2,10993,'0.99','2005-08-02 04:45:01','2006-02-15 22:17:25'), +(10386,383,2,11122,'0.99','2005-08-02 08:49:09','2006-02-15 22:17:25'), +(10387,383,1,11592,'2.99','2005-08-17 02:36:04','2006-02-15 22:17:25'), +(10388,383,1,12735,'4.99','2005-08-18 22:04:54','2006-02-15 22:17:25'), +(10389,383,2,14039,'4.99','2005-08-20 21:39:43','2006-02-15 22:17:26'), +(10390,383,2,14678,'4.99','2005-08-21 20:12:43','2006-02-15 22:17:26'), +(10391,383,1,15416,'1.99','2005-08-22 23:51:23','2006-02-15 22:17:26'), +(10392,383,1,15881,'6.99','2005-08-23 16:44:25','2006-02-15 22:17:26'), +(10393,384,2,103,'4.99','2005-05-25 17:30:42','2006-02-15 22:17:26'), +(10394,384,2,279,'2.99','2005-05-26 18:02:50','2006-02-15 22:17:26'), +(10395,384,1,898,'0.99','2005-05-30 09:26:19','2006-02-15 22:17:26'), +(10396,384,2,1013,'2.99','2005-05-31 02:37:00','2006-02-15 22:17:26'), +(10397,384,1,1961,'0.99','2005-06-17 09:02:58','2006-02-15 22:17:26'), +(10398,384,2,2020,'0.99','2005-06-17 12:39:50','2006-02-15 22:17:26'), +(10399,384,1,2378,'7.99','2005-06-18 14:57:49','2006-02-15 22:17:26'), +(10400,384,2,2510,'5.99','2005-06-18 23:44:21','2006-02-15 22:17:26'), +(10401,384,2,2935,'3.99','2005-06-20 05:07:24','2006-02-15 22:17:26'), +(10402,384,1,3088,'9.99','2005-06-20 15:56:05','2006-02-15 22:17:26'), +(10403,384,2,3101,'4.99','2005-06-20 16:48:58','2006-02-15 22:17:26'), +(10404,384,2,4424,'0.99','2005-07-07 22:14:43','2006-02-15 22:17:26'), +(10405,384,2,5250,'0.99','2005-07-09 13:35:32','2006-02-15 22:17:26'), +(10406,384,1,5608,'4.99','2005-07-10 05:08:26','2006-02-15 22:17:26'), +(10407,384,2,5797,'4.99','2005-07-10 14:43:52','2006-02-15 22:17:26'), +(10408,384,2,5966,'2.99','2005-07-10 23:59:27','2006-02-15 22:17:26'), +(10409,384,2,6387,'0.99','2005-07-11 22:15:56','2006-02-15 22:17:27'), +(10410,384,2,7799,'0.99','2005-07-28 07:42:09','2006-02-15 22:17:27'), +(10411,384,1,8445,'1.99','2005-07-29 07:37:48','2006-02-15 22:17:27'), +(10412,384,2,11773,'5.99','2005-08-17 10:19:51','2006-02-15 22:17:27'), +(10413,384,2,13521,'2.99','2005-08-20 02:42:28','2006-02-15 22:17:27'), +(10414,384,2,14416,'2.99','2005-08-21 11:11:46','2006-02-15 22:17:27'), +(10415,384,1,14841,'0.99','2005-08-22 02:03:30','2006-02-15 22:17:27'), +(10416,384,1,14963,'5.99','2005-08-22 06:38:10','2006-02-15 22:17:27'), +(10417,384,2,15321,'4.99','2005-08-22 20:20:04','2006-02-15 22:17:27'), +(10418,385,1,917,'2.99','2005-05-30 11:27:06','2006-02-15 22:17:27'), +(10419,385,2,1038,'4.99','2005-05-31 05:23:47','2006-02-15 22:17:27'), +(10420,385,1,1746,'2.99','2005-06-16 16:41:19','2006-02-15 22:17:27'), +(10421,385,1,1937,'0.99','2005-06-17 07:16:46','2006-02-15 22:17:27'), +(10422,385,1,3105,'0.99','2005-06-20 17:11:46','2006-02-15 22:17:27'), +(10423,385,2,3878,'8.99','2005-07-06 18:27:09','2006-02-15 22:17:27'), +(10424,385,2,3953,'0.99','2005-07-06 21:54:55','2006-02-15 22:17:27'), +(10425,385,1,4714,'6.99','2005-07-08 12:12:48','2006-02-15 22:17:27'), +(10426,385,1,5783,'2.99','2005-07-10 13:55:33','2006-02-15 22:17:27'), +(10427,385,1,6445,'4.99','2005-07-12 00:37:02','2006-02-15 22:17:27'), +(10428,385,2,6933,'4.99','2005-07-26 23:09:23','2006-02-15 22:17:27'), +(10429,385,2,7776,'0.99','2005-07-28 07:04:36','2006-02-15 22:17:28'), +(10430,385,1,8346,'2.99','2005-07-29 04:48:22','2006-02-15 22:17:28'), +(10431,385,1,8518,'2.99','2005-07-29 10:05:27','2006-02-15 22:17:28'), +(10432,385,1,9570,'2.99','2005-07-31 02:40:37','2006-02-15 22:17:28'), +(10433,385,1,9704,'4.99','2005-07-31 07:39:32','2006-02-15 22:17:28'), +(10434,385,1,10557,'0.99','2005-08-01 12:59:24','2006-02-15 22:17:28'), +(10435,385,1,10636,'3.99','2005-08-01 15:40:35','2006-02-15 22:17:28'), +(10436,385,1,10655,'4.99','2005-08-01 16:33:27','2006-02-15 22:17:28'), +(10437,385,1,11021,'2.99','2005-08-02 05:30:11','2006-02-15 22:17:28'), +(10438,385,1,11559,'2.99','2005-08-17 01:20:26','2006-02-15 22:17:28'), +(10439,385,2,12310,'2.99','2005-08-18 06:02:34','2006-02-15 22:17:28'), +(10440,385,2,12686,'8.99','2005-08-18 19:55:09','2006-02-15 22:17:28'), +(10441,385,2,13062,'7.99','2005-08-19 09:44:17','2006-02-15 22:17:28'), +(10442,385,1,13117,'0.99','2005-08-19 11:33:20','2006-02-15 22:17:28'), +(10443,385,1,15488,'6.99','2005-08-23 02:06:01','2006-02-15 22:17:28'), +(10444,386,1,583,'7.99','2005-05-28 11:48:55','2006-02-15 22:17:28'), +(10445,386,2,1585,'3.99','2005-06-16 04:51:13','2006-02-15 22:17:28'), +(10446,386,1,1608,'2.99','2005-06-16 06:28:57','2006-02-15 22:17:28'), +(10447,386,2,1819,'5.99','2005-06-16 21:32:50','2006-02-15 22:17:28'), +(10448,386,1,2732,'0.99','2005-06-19 15:19:39','2006-02-15 22:17:28'), +(10449,386,1,3351,'2.99','2005-06-21 11:21:39','2006-02-15 22:17:29'), +(10450,386,2,3783,'6.99','2005-07-06 13:57:31','2006-02-15 22:17:29'), +(10451,386,1,4189,'8.99','2005-07-07 10:51:07','2006-02-15 22:17:29'), +(10452,386,1,5524,'0.99','2005-07-10 01:49:24','2006-02-15 22:17:29'), +(10453,386,1,5953,'2.99','2005-07-10 23:21:35','2006-02-15 22:17:29'), +(10454,386,1,6037,'4.99','2005-07-11 03:06:54','2006-02-15 22:17:29'), +(10455,386,1,6222,'2.99','2005-07-11 13:25:49','2006-02-15 22:17:29'), +(10456,386,2,6261,'2.99','2005-07-11 15:28:34','2006-02-15 22:17:29'), +(10457,386,1,6324,'3.99','2005-07-11 19:02:34','2006-02-15 22:17:29'), +(10458,386,2,6715,'4.99','2005-07-12 13:32:28','2006-02-15 22:17:29'), +(10459,386,2,8340,'4.99','2005-07-29 04:41:44','2006-02-15 22:17:29'), +(10460,386,1,8751,'2.99','2005-07-29 19:14:39','2006-02-15 22:17:29'), +(10461,386,2,9602,'0.99','2005-07-31 03:42:51','2006-02-15 22:17:29'), +(10462,386,1,9686,'5.99','2005-07-31 06:50:06','2006-02-15 22:17:29'), +(10463,386,1,10572,'4.99','2005-08-01 13:26:53','2006-02-15 22:17:29'), +(10464,386,2,10618,'3.99','2005-08-01 15:06:38','2006-02-15 22:17:29'), +(10465,386,1,10715,'2.99','2005-08-01 18:51:48','2006-02-15 22:17:29'), +(10466,386,2,11128,'2.99','2005-08-02 09:03:25','2006-02-15 22:17:30'), +(10467,386,2,11695,'4.99','2005-08-17 07:01:08','2006-02-15 22:17:30'), +(10468,386,2,12961,'2.99','2005-08-19 06:22:37','2006-02-15 22:17:30'), +(10469,386,1,13716,'3.99','2005-08-20 09:48:32','2006-02-15 22:17:30'), +(10470,386,1,13764,'2.99','2005-08-20 11:38:16','2006-02-15 22:17:30'), +(10471,386,2,13869,'6.99','2005-08-20 15:08:57','2006-02-15 22:17:30'), +(10472,386,1,15949,'0.99','2005-08-23 19:06:04','2006-02-15 22:17:30'), +(10473,387,2,302,'4.99','2005-05-26 21:13:46','2006-02-15 22:17:30'), +(10474,387,1,697,'7.99','2005-05-29 02:04:04','2006-02-15 22:17:30'), +(10475,387,1,841,'4.99','2005-05-30 00:31:17','2006-02-15 22:17:30'), +(10476,387,1,1127,'3.99','2005-05-31 17:45:49','2006-02-15 22:17:30'), +(10477,387,1,1464,'0.99','2005-06-15 20:38:14','2006-02-15 22:17:30'), +(10478,387,2,1465,'0.99','2005-06-15 20:43:08','2006-02-15 22:17:30'), +(10479,387,1,2068,'0.99','2005-06-17 16:11:46','2006-02-15 22:17:30'), +(10480,387,2,2100,'0.99','2005-06-17 18:53:21','2006-02-15 22:17:30'), +(10481,387,2,2981,'5.99','2005-06-20 08:35:17','2006-02-15 22:17:30'), +(10482,387,2,3378,'4.99','2005-06-21 13:51:28','2006-02-15 22:17:30'), +(10483,387,2,6216,'4.99','2005-07-11 12:57:05','2006-02-15 22:17:30'), +(10484,387,2,6456,'6.99','2005-07-12 01:05:11','2006-02-15 22:17:31'), +(10485,387,1,6517,'5.99','2005-07-12 03:52:39','2006-02-15 22:17:31'), +(10486,387,1,7497,'0.99','2005-07-27 20:05:27','2006-02-15 22:17:31'), +(10487,387,1,8090,'2.99','2005-07-28 18:27:29','2006-02-15 22:17:31'), +(10488,387,1,10564,'0.99','2005-08-01 13:07:34','2006-02-15 22:17:31'), +(10489,387,1,10838,'4.99','2005-08-01 23:36:10','2006-02-15 22:17:31'), +(10490,387,2,11682,'2.99','2005-08-17 06:13:40','2006-02-15 22:17:31'), +(10491,387,2,12153,'4.99','2005-08-18 00:22:30','2006-02-15 22:17:31'), +(10492,387,1,12936,'6.99','2005-08-19 05:25:06','2006-02-15 22:17:31'), +(10493,387,2,13034,'2.99','2005-08-19 08:41:29','2006-02-15 22:17:31'), +(10494,387,1,13082,'5.99','2005-08-19 10:19:19','2006-02-15 22:17:31'), +(10495,387,2,13645,'0.99','2005-08-20 07:47:05','2006-02-15 22:17:31'), +(10496,387,2,13772,'4.99','2005-08-20 11:47:52','2006-02-15 22:17:31'), +(10497,387,2,14279,'5.99','2005-08-21 06:39:08','2006-02-15 22:17:31'), +(10498,387,2,14979,'0.99','2005-08-22 07:16:36','2006-02-15 22:17:31'), +(10499,388,2,21,'4.99','2005-05-25 01:59:46','2006-02-15 22:17:31'), +(10500,388,2,411,'4.99','2005-05-27 14:14:14','2006-02-15 22:17:31'), +(10501,388,2,1276,'6.99','2005-06-15 08:00:13','2006-02-15 22:17:31'), +(10502,388,1,2145,'0.99','2005-06-17 22:10:36','2006-02-15 22:17:31'), +(10503,388,1,2537,'5.99','2005-06-19 01:52:21','2006-02-15 22:17:32'), +(10504,388,1,2692,'4.99','2005-06-19 13:08:19','2006-02-15 22:17:32'), +(10505,388,2,3159,'7.99','2005-06-20 21:11:50','2006-02-15 22:17:32'), +(10506,388,2,4947,'5.99','2005-07-08 22:49:37','2006-02-15 22:17:32'), +(10507,388,2,5899,'2.99','2005-07-10 20:21:52','2006-02-15 22:17:32'), +(10508,388,2,6321,'2.99','2005-07-11 18:51:02','2006-02-15 22:17:32'), +(10509,388,1,6452,'2.99','2005-07-12 00:57:31','2006-02-15 22:17:32'), +(10510,388,2,7985,'5.99','2005-07-28 14:29:01','2006-02-15 22:17:32'), +(10511,388,2,8456,'3.99','2005-07-29 07:58:31','2006-02-15 22:17:32'), +(10512,388,2,9213,'0.99','2005-07-30 13:07:11','2006-02-15 22:17:32'), +(10513,388,2,9368,'2.99','2005-07-30 18:50:53','2006-02-15 22:17:32'), +(10514,388,2,9840,'2.99','2005-07-31 12:23:18','2006-02-15 22:17:32'), +(10515,388,2,9940,'0.99','2005-07-31 15:29:06','2006-02-15 22:17:32'), +(10516,388,2,10044,'2.99','2005-07-31 19:02:33','2006-02-15 22:17:32'), +(10517,388,2,11604,'0.99','2005-08-17 03:28:27','2006-02-15 22:17:32'), +(10518,388,2,12044,'0.99','2005-08-17 20:39:37','2006-02-15 22:17:32'), +(10519,388,1,12068,'2.99','2005-08-17 21:37:08','2006-02-15 22:17:32'), +(10520,388,2,12267,'6.99','2005-08-18 04:24:30','2006-02-15 22:17:32'), +(10521,388,2,12497,'4.99','2005-08-18 12:58:40','2006-02-15 22:17:32'), +(10522,388,2,12646,'2.99','2005-08-18 18:25:06','2006-02-15 22:17:32'), +(10523,388,1,12749,'2.99','2005-08-18 22:31:21','2006-02-15 22:17:33'), +(10524,388,1,12977,'4.99','2005-08-19 06:55:33','2006-02-15 22:17:33'), +(10525,388,1,14273,'10.99','2005-08-21 06:26:48','2006-02-15 22:17:33'), +(10526,388,2,14853,'5.99','2005-08-22 02:26:33','2006-02-15 22:17:33'), +(10527,388,2,15660,'5.99','2005-08-23 08:51:21','2006-02-15 22:17:33'), +(10528,388,1,12891,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:33'), +(10529,389,1,998,'4.99','2005-05-31 00:16:57','2006-02-15 22:17:33'), +(10530,389,1,1763,'4.99','2005-06-16 17:51:01','2006-02-15 22:17:33'), +(10531,389,1,1946,'4.99','2005-06-17 07:58:39','2006-02-15 22:17:33'), +(10532,389,1,2552,'3.99','2005-06-19 03:01:29','2006-02-15 22:17:33'), +(10533,389,2,3527,'0.99','2005-07-06 01:11:08','2006-02-15 22:17:33'), +(10534,389,1,4443,'6.99','2005-07-07 23:05:53','2006-02-15 22:17:33'), +(10535,389,1,5249,'0.99','2005-07-09 13:33:53','2006-02-15 22:17:33'), +(10536,389,2,5626,'3.99','2005-07-10 05:49:35','2006-02-15 22:17:33'), +(10537,389,2,6104,'2.99','2005-07-11 07:01:35','2006-02-15 22:17:33'), +(10538,389,1,6600,'3.99','2005-07-12 07:41:48','2006-02-15 22:17:33'), +(10539,389,1,7029,'4.99','2005-07-27 02:57:43','2006-02-15 22:17:33'), +(10540,389,1,7896,'8.99','2005-07-28 11:00:58','2006-02-15 22:17:33'), +(10541,389,2,7977,'4.99','2005-07-28 14:15:54','2006-02-15 22:17:33'), +(10542,389,1,8338,'6.99','2005-07-29 04:40:39','2006-02-15 22:17:34'), +(10543,389,1,8887,'4.99','2005-07-30 00:36:54','2006-02-15 22:17:34'), +(10544,389,1,10217,'4.99','2005-08-01 01:07:27','2006-02-15 22:17:34'), +(10545,389,1,10949,'2.99','2005-08-02 03:24:04','2006-02-15 22:17:34'), +(10546,389,2,11348,'4.99','2005-08-02 17:18:38','2006-02-15 22:17:34'), +(10547,389,2,11441,'2.99','2005-08-02 20:25:41','2006-02-15 22:17:34'), +(10548,389,2,11944,'3.99','2005-08-17 17:02:42','2006-02-15 22:17:34'), +(10549,389,2,12069,'4.99','2005-08-17 21:39:40','2006-02-15 22:17:34'), +(10550,389,2,14493,'7.99','2005-08-21 14:01:44','2006-02-15 22:17:34'), +(10551,389,1,14578,'2.99','2005-08-21 16:53:38','2006-02-15 22:17:34'), +(10552,389,1,14777,'2.99','2005-08-21 23:55:50','2006-02-15 22:17:34'), +(10553,389,1,15462,'5.99','2005-08-23 01:14:01','2006-02-15 22:17:34'), +(10554,389,2,16011,'9.99','2005-08-23 21:11:33','2006-02-15 22:17:34'), +(10555,390,1,254,'4.99','2005-05-26 14:43:48','2006-02-15 22:17:34'), +(10556,390,2,912,'4.99','2005-05-30 10:58:33','2006-02-15 22:17:34'), +(10557,390,2,1539,'5.99','2005-06-16 01:11:25','2006-02-15 22:17:34'), +(10558,390,2,1730,'2.99','2005-06-16 15:30:01','2006-02-15 22:17:34'), +(10559,390,2,1893,'2.99','2005-06-17 04:18:37','2006-02-15 22:17:34'), +(10560,390,1,2330,'7.99','2005-06-18 10:41:19','2006-02-15 22:17:34'), +(10561,390,1,3147,'5.99','2005-06-20 20:25:17','2006-02-15 22:17:34'), +(10562,390,1,3999,'2.99','2005-07-06 23:50:54','2006-02-15 22:17:35'), +(10563,390,1,4022,'4.99','2005-07-07 01:50:06','2006-02-15 22:17:35'), +(10564,390,2,4191,'3.99','2005-07-07 10:56:14','2006-02-15 22:17:35'), +(10565,390,2,4310,'2.99','2005-07-07 17:30:56','2006-02-15 22:17:35'), +(10566,390,1,4968,'5.99','2005-07-08 23:49:19','2006-02-15 22:17:35'), +(10567,390,1,6215,'4.99','2005-07-11 12:52:36','2006-02-15 22:17:35'), +(10568,390,1,6430,'0.99','2005-07-12 00:03:34','2006-02-15 22:17:35'), +(10569,390,2,7515,'3.99','2005-07-27 20:52:37','2006-02-15 22:17:35'), +(10570,390,1,7595,'5.99','2005-07-27 23:32:23','2006-02-15 22:17:35'), +(10571,390,1,8493,'0.99','2005-07-29 09:04:31','2006-02-15 22:17:35'), +(10572,390,1,9251,'5.99','2005-07-30 14:19:25','2006-02-15 22:17:35'), +(10573,390,2,9314,'2.99','2005-07-30 17:05:19','2006-02-15 22:17:35'), +(10574,390,1,9825,'4.99','2005-07-31 11:50:51','2006-02-15 22:17:35'), +(10575,390,1,10061,'4.99','2005-07-31 19:23:25','2006-02-15 22:17:35'), +(10576,390,1,12105,'5.99','2005-08-17 22:54:45','2006-02-15 22:17:35'), +(10577,390,2,12803,'2.99','2005-08-19 00:28:21','2006-02-15 22:17:35'), +(10578,390,1,13413,'3.99','2005-08-19 22:46:46','2006-02-15 22:17:35'), +(10579,390,1,13473,'4.99','2005-08-20 01:03:50','2006-02-15 22:17:35'), +(10580,390,1,13501,'0.99','2005-08-20 01:56:20','2006-02-15 22:17:35'), +(10581,390,2,13546,'3.99','2005-08-20 03:50:24','2006-02-15 22:17:36'), +(10582,390,2,13591,'3.99','2005-08-20 05:50:05','2006-02-15 22:17:36'), +(10583,390,2,13618,'7.99','2005-08-20 06:36:46','2006-02-15 22:17:36'), +(10584,390,2,13893,'5.99','2005-08-20 15:52:52','2006-02-15 22:17:36'), +(10585,390,2,15222,'4.99','2005-08-22 17:12:30','2006-02-15 22:17:36'), +(10586,390,2,15303,'8.99','2005-08-22 19:44:59','2006-02-15 22:17:36'), +(10587,390,2,15376,'4.99','2005-08-22 22:21:35','2006-02-15 22:17:36'), +(10588,391,2,73,'4.99','2005-05-25 11:00:07','2006-02-15 22:17:36'), +(10589,391,1,210,'2.99','2005-05-26 08:14:15','2006-02-15 22:17:36'), +(10590,391,1,317,'5.99','2005-05-26 23:23:56','2006-02-15 22:17:36'), +(10591,391,2,870,'2.99','2005-05-30 04:25:47','2006-02-15 22:17:36'), +(10592,391,1,891,'7.99','2005-05-30 07:43:12','2006-02-15 22:17:36'), +(10593,391,2,1232,'0.99','2005-06-15 04:18:10','2006-02-15 22:17:36'), +(10594,391,2,1931,'0.99','2005-06-17 06:51:56','2006-02-15 22:17:36'), +(10595,391,1,2045,'2.99','2005-06-17 14:38:11','2006-02-15 22:17:36'), +(10596,391,1,2690,'2.99','2005-06-19 13:00:02','2006-02-15 22:17:36'), +(10597,391,2,3163,'2.99','2005-06-20 21:22:13','2006-02-15 22:17:36'), +(10598,391,1,4188,'5.99','2005-07-07 10:45:29','2006-02-15 22:17:36'), +(10599,391,1,4716,'0.99','2005-07-08 12:18:51','2006-02-15 22:17:36'), +(10600,391,2,4753,'0.99','2005-07-08 14:18:41','2006-02-15 22:17:37'), +(10601,391,2,5583,'7.99','2005-07-10 04:08:48','2006-02-15 22:17:37'), +(10602,391,1,5599,'4.99','2005-07-10 04:52:04','2006-02-15 22:17:37'), +(10603,391,1,6302,'3.99','2005-07-11 17:55:38','2006-02-15 22:17:37'), +(10604,391,1,6463,'2.99','2005-07-12 01:16:11','2006-02-15 22:17:37'), +(10605,391,2,8016,'0.99','2005-07-28 15:35:41','2006-02-15 22:17:37'), +(10606,391,1,8908,'0.99','2005-07-30 01:26:05','2006-02-15 22:17:37'), +(10607,391,2,8913,'6.99','2005-07-30 01:35:01','2006-02-15 22:17:37'), +(10608,391,1,9225,'0.99','2005-07-30 13:29:47','2006-02-15 22:17:37'), +(10609,391,1,10210,'7.99','2005-08-01 00:58:52','2006-02-15 22:17:37'), +(10610,391,2,10406,'2.99','2005-08-01 07:37:05','2006-02-15 22:17:37'), +(10611,391,1,11151,'4.99','2005-08-02 09:52:44','2006-02-15 22:17:37'), +(10612,391,2,11434,'2.99','2005-08-02 20:13:14','2006-02-15 22:17:37'), +(10613,391,1,11602,'4.99','2005-08-17 03:21:19','2006-02-15 22:17:37'), +(10614,391,1,12090,'0.99','2005-08-17 22:21:43','2006-02-15 22:17:37'), +(10615,391,1,12100,'1.99','2005-08-17 22:41:10','2006-02-15 22:17:37'), +(10616,391,1,13980,'2.99','2005-08-20 19:04:40','2006-02-15 22:17:37'), +(10617,391,1,14381,'0.99','2005-08-21 09:55:47','2006-02-15 22:17:37'), +(10618,392,2,1530,'6.99','2005-06-16 00:38:07','2006-02-15 22:17:37'), +(10619,392,2,1764,'2.99','2005-06-16 17:51:54','2006-02-15 22:17:38'), +(10620,392,2,2289,'2.99','2005-06-18 07:29:43','2006-02-15 22:17:38'), +(10621,392,2,2890,'4.99','2005-06-20 02:00:45','2006-02-15 22:17:38'), +(10622,392,1,3566,'2.99','2005-07-06 03:08:51','2006-02-15 22:17:38'), +(10623,392,2,6061,'0.99','2005-07-11 04:06:25','2006-02-15 22:17:38'), +(10624,392,2,6406,'2.99','2005-07-11 22:55:27','2006-02-15 22:17:38'), +(10625,392,1,7692,'2.99','2005-07-28 03:30:21','2006-02-15 22:17:38'), +(10626,392,1,7981,'1.99','2005-07-28 14:18:25','2006-02-15 22:17:38'), +(10627,392,1,8254,'0.99','2005-07-29 00:59:31','2006-02-15 22:17:38'), +(10628,392,2,8612,'9.99','2005-07-29 13:28:20','2006-02-15 22:17:38'), +(10629,392,2,10085,'0.99','2005-07-31 20:12:02','2006-02-15 22:17:38'), +(10630,392,1,10435,'4.99','2005-08-01 08:50:51','2006-02-15 22:17:38'), +(10631,392,1,11459,'0.99','2005-08-02 21:25:25','2006-02-15 22:17:38'), +(10632,392,1,11686,'2.99','2005-08-17 06:39:30','2006-02-15 22:17:38'), +(10633,392,2,12102,'6.99','2005-08-17 22:45:26','2006-02-15 22:17:38'), +(10634,392,1,12368,'6.99','2005-08-18 07:57:38','2006-02-15 22:17:38'), +(10635,392,2,12561,'0.99','2005-08-18 14:58:51','2006-02-15 22:17:38'), +(10636,392,1,13629,'4.99','2005-08-20 07:04:07','2006-02-15 22:17:38'), +(10637,392,2,14081,'7.99','2005-08-20 23:35:13','2006-02-15 22:17:38'), +(10638,392,1,14223,'5.99','2005-08-21 04:51:51','2006-02-15 22:17:39'), +(10639,392,2,14369,'0.99','2005-08-21 09:33:44','2006-02-15 22:17:39'), +(10640,392,2,14438,'5.99','2005-08-21 11:51:10','2006-02-15 22:17:39'), +(10641,393,1,599,'4.99','2005-05-28 14:05:57','2006-02-15 22:17:39'), +(10642,393,2,886,'0.99','2005-05-30 06:54:51','2006-02-15 22:17:39'), +(10643,393,1,1611,'6.99','2005-06-16 06:41:35','2006-02-15 22:17:39'), +(10644,393,2,1915,'1.99','2005-06-17 05:28:28','2006-02-15 22:17:39'), +(10645,393,2,2219,'2.99','2005-06-18 03:16:54','2006-02-15 22:17:39'), +(10646,393,1,2319,'4.99','2005-06-18 09:24:22','2006-02-15 22:17:39'), +(10647,393,2,3001,'2.99','2005-06-20 09:50:16','2006-02-15 22:17:39'), +(10648,393,2,4275,'2.99','2005-07-07 14:43:51','2006-02-15 22:17:39'), +(10649,393,2,4546,'8.99','2005-07-08 04:18:36','2006-02-15 22:17:39'), +(10650,393,2,4632,'5.99','2005-07-08 08:38:57','2006-02-15 22:17:39'), +(10651,393,2,4791,'7.99','2005-07-08 16:27:24','2006-02-15 22:17:39'), +(10652,393,1,5099,'4.99','2005-07-09 06:14:30','2006-02-15 22:17:39'), +(10653,393,1,6221,'2.99','2005-07-11 13:24:27','2006-02-15 22:17:39'), +(10654,393,2,6513,'0.99','2005-07-12 03:44:43','2006-02-15 22:17:39'), +(10655,393,1,6930,'8.99','2005-07-26 23:00:01','2006-02-15 22:17:39'), +(10656,393,2,7486,'0.99','2005-07-27 19:29:24','2006-02-15 22:17:39'), +(10657,393,2,8004,'4.99','2005-07-28 15:14:07','2006-02-15 22:17:39'), +(10658,393,2,8448,'0.99','2005-07-29 07:41:54','2006-02-15 22:17:40'), +(10659,393,2,9763,'7.99','2005-07-31 09:34:03','2006-02-15 22:17:40'), +(10660,393,1,10158,'1.99','2005-07-31 22:40:31','2006-02-15 22:17:40'), +(10661,393,2,12059,'2.99','2005-08-17 21:09:23','2006-02-15 22:17:40'), +(10662,393,1,12113,'1.99','2005-08-17 23:01:00','2006-02-15 22:17:40'), +(10663,393,1,12563,'4.99','2005-08-18 15:08:29','2006-02-15 22:17:40'), +(10664,393,1,12676,'0.99','2005-08-18 19:34:40','2006-02-15 22:17:40'), +(10665,393,1,13184,'4.99','2005-08-19 14:16:18','2006-02-15 22:17:40'), +(10666,393,2,13357,'4.99','2005-08-19 21:02:59','2006-02-15 22:17:40'), +(10667,393,2,13788,'1.99','2005-08-20 12:15:41','2006-02-15 22:17:40'), +(10668,393,1,15132,'2.99','2005-08-22 13:11:25','2006-02-15 22:17:40'), +(10669,393,2,15284,'3.99','2005-08-22 19:17:08','2006-02-15 22:17:40'), +(10670,393,2,15527,'0.99','2005-08-23 03:44:51','2006-02-15 22:17:40'), +(10671,393,2,16049,'3.99','2005-08-23 22:50:12','2006-02-15 22:17:40'), +(10672,394,1,213,'3.99','2005-05-26 08:44:08','2006-02-15 22:17:40'), +(10673,394,1,977,'2.99','2005-05-30 21:22:26','2006-02-15 22:17:40'), +(10674,394,2,1324,'4.99','2005-06-15 11:02:45','2006-02-15 22:17:40'), +(10675,394,2,3543,'0.99','2005-07-06 02:01:08','2006-02-15 22:17:40'), +(10676,394,1,3873,'6.99','2005-07-06 18:03:16','2006-02-15 22:17:40'), +(10677,394,2,4009,'2.99','2005-07-07 00:28:55','2006-02-15 22:17:41'), +(10678,394,1,4307,'6.99','2005-07-07 17:20:39','2006-02-15 22:17:41'), +(10679,394,2,5183,'4.99','2005-07-09 10:13:45','2006-02-15 22:17:41'), +(10680,394,1,5535,'4.99','2005-07-10 02:27:42','2006-02-15 22:17:41'), +(10681,394,2,6059,'4.99','2005-07-11 04:03:54','2006-02-15 22:17:41'), +(10682,394,2,7445,'3.99','2005-07-27 17:57:15','2006-02-15 22:17:41'), +(10683,394,1,9147,'0.99','2005-07-30 10:38:59','2006-02-15 22:17:41'), +(10684,394,2,9864,'0.99','2005-07-31 13:06:54','2006-02-15 22:17:41'), +(10685,394,1,10319,'4.99','2005-08-01 04:37:19','2006-02-15 22:17:41'), +(10686,394,1,10603,'0.99','2005-08-01 14:30:35','2006-02-15 22:17:41'), +(10687,394,1,10718,'0.99','2005-08-01 18:55:38','2006-02-15 22:17:41'), +(10688,394,1,12080,'4.99','2005-08-17 22:08:04','2006-02-15 22:17:41'), +(10689,394,1,12389,'4.99','2005-08-18 08:48:36','2006-02-15 22:17:41'), +(10690,394,2,12510,'9.99','2005-08-18 13:22:25','2006-02-15 22:17:41'), +(10691,394,2,13047,'0.99','2005-08-19 09:24:49','2006-02-15 22:17:41'), +(10692,394,1,14605,'0.99','2005-08-21 17:56:06','2006-02-15 22:17:41'), +(10693,394,2,13178,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:41'), +(10694,395,1,1270,'0.99','2005-06-15 07:30:22','2006-02-15 22:17:41'), +(10695,395,1,1562,'0.99','2005-06-16 02:46:27','2006-02-15 22:17:41'), +(10696,395,2,1603,'0.99','2005-06-16 06:14:03','2006-02-15 22:17:42'), +(10697,395,1,3030,'4.99','2005-06-20 11:51:59','2006-02-15 22:17:42'), +(10698,395,1,3310,'0.99','2005-06-21 08:04:51','2006-02-15 22:17:42'), +(10699,395,1,3389,'6.99','2005-06-21 14:37:55','2006-02-15 22:17:42'), +(10700,395,2,3684,'0.99','2005-07-06 09:29:22','2006-02-15 22:17:42'), +(10701,395,1,4185,'5.99','2005-07-07 10:31:05','2006-02-15 22:17:42'), +(10702,395,1,4393,'4.99','2005-07-07 21:12:36','2006-02-15 22:17:42'), +(10703,395,1,5087,'0.99','2005-07-09 05:44:28','2006-02-15 22:17:42'), +(10704,395,2,5136,'0.99','2005-07-09 07:55:01','2006-02-15 22:17:42'), +(10705,395,1,7740,'2.99','2005-07-28 05:23:36','2006-02-15 22:17:42'), +(10706,395,2,7986,'7.99','2005-07-28 14:30:13','2006-02-15 22:17:42'), +(10707,395,1,11889,'0.99','2005-08-17 15:08:27','2006-02-15 22:17:42'), +(10708,395,1,14471,'5.99','2005-08-21 13:10:40','2006-02-15 22:17:42'), +(10709,395,2,14720,'0.99','2005-08-21 21:43:53','2006-02-15 22:17:42'), +(10710,395,1,15698,'2.99','2005-08-23 10:11:40','2006-02-15 22:17:42'), +(10711,395,1,15856,'0.99','2005-08-23 15:59:12','2006-02-15 22:17:42'), +(10712,395,1,15970,'4.99','2005-08-23 19:54:24','2006-02-15 22:17:42'), +(10713,396,2,641,'5.99','2005-05-28 18:45:47','2006-02-15 22:17:42'), +(10714,396,2,1370,'1.99','2005-06-15 14:31:05','2006-02-15 22:17:42'), +(10715,396,2,1385,'4.99','2005-06-15 15:28:23','2006-02-15 22:17:43'), +(10716,396,2,1408,'6.99','2005-06-15 16:57:58','2006-02-15 22:17:43'), +(10717,396,2,3909,'6.99','2005-07-06 19:54:41','2006-02-15 22:17:43'), +(10718,396,1,5059,'1.99','2005-07-09 04:28:01','2006-02-15 22:17:43'), +(10719,396,2,6335,'2.99','2005-07-11 19:25:15','2006-02-15 22:17:43'), +(10720,396,2,6764,'4.99','2005-07-12 15:29:27','2006-02-15 22:17:43'), +(10721,396,2,6771,'2.99','2005-07-12 15:54:40','2006-02-15 22:17:43'), +(10722,396,2,7142,'0.99','2005-07-27 06:55:39','2006-02-15 22:17:43'), +(10723,396,2,7313,'2.99','2005-07-27 13:11:57','2006-02-15 22:17:43'), +(10724,396,2,8371,'2.99','2005-07-29 05:16:35','2006-02-15 22:17:43'), +(10725,396,2,8807,'2.99','2005-07-29 21:36:59','2006-02-15 22:17:43'), +(10726,396,1,9344,'5.99','2005-07-30 18:13:45','2006-02-15 22:17:43'), +(10727,396,2,10120,'2.99','2005-07-31 21:24:24','2006-02-15 22:17:43'), +(10728,396,2,10124,'0.99','2005-07-31 21:31:49','2006-02-15 22:17:43'), +(10729,396,2,10195,'6.99','2005-08-01 00:34:42','2006-02-15 22:17:43'), +(10730,396,2,10610,'0.99','2005-08-01 14:49:41','2006-02-15 22:17:43'), +(10731,396,2,12393,'5.99','2005-08-18 09:02:41','2006-02-15 22:17:43'), +(10732,396,1,12895,'4.99','2005-08-19 03:50:48','2006-02-15 22:17:43'), +(10733,396,2,13355,'4.99','2005-08-19 20:59:19','2006-02-15 22:17:43'), +(10734,396,1,14078,'3.99','2005-08-20 23:26:40','2006-02-15 22:17:44'), +(10735,396,1,14169,'4.99','2005-08-21 03:00:31','2006-02-15 22:17:44'), +(10736,396,1,14508,'2.99','2005-08-21 14:33:58','2006-02-15 22:17:44'), +(10737,396,2,14778,'5.99','2005-08-21 23:56:30','2006-02-15 22:17:44'), +(10738,396,1,14792,'1.99','2005-08-22 00:36:41','2006-02-15 22:17:44'), +(10739,396,2,15198,'7.99','2005-08-22 16:15:33','2006-02-15 22:17:44'), +(10740,397,2,1002,'0.99','2005-05-31 00:47:56','2006-02-15 22:17:44'), +(10741,397,1,1769,'5.99','2005-06-16 18:07:48','2006-02-15 22:17:44'), +(10742,397,2,3027,'1.99','2005-06-20 11:50:30','2006-02-15 22:17:44'), +(10743,397,1,3489,'5.99','2005-07-05 23:33:40','2006-02-15 22:17:44'), +(10744,397,1,4036,'0.99','2005-07-07 02:48:00','2006-02-15 22:17:44'), +(10745,397,2,5103,'4.99','2005-07-09 06:34:40','2006-02-15 22:17:44'), +(10746,397,2,5598,'4.99','2005-07-10 04:48:29','2006-02-15 22:17:44'), +(10747,397,2,5763,'4.99','2005-07-10 12:58:12','2006-02-15 22:17:44'), +(10748,397,2,6014,'2.99','2005-07-11 02:02:55','2006-02-15 22:17:44'), +(10749,397,2,6266,'2.99','2005-07-11 15:45:39','2006-02-15 22:17:44'), +(10750,397,1,6471,'4.99','2005-07-12 01:31:06','2006-02-15 22:17:44'), +(10751,397,2,7356,'2.99','2005-07-27 14:47:35','2006-02-15 22:17:44'), +(10752,397,2,7892,'4.99','2005-07-28 10:46:58','2006-02-15 22:17:44'), +(10753,397,1,8103,'6.99','2005-07-28 18:50:14','2006-02-15 22:17:44'), +(10754,397,1,9495,'0.99','2005-07-30 23:54:26','2006-02-15 22:17:45'), +(10755,397,2,9608,'1.99','2005-07-31 03:51:52','2006-02-15 22:17:45'), +(10756,397,1,10534,'0.99','2005-08-01 12:15:11','2006-02-15 22:17:45'), +(10757,397,2,10598,'4.99','2005-08-01 14:23:36','2006-02-15 22:17:45'), +(10758,397,1,10785,'1.99','2005-08-01 21:24:55','2006-02-15 22:17:45'), +(10759,397,2,11511,'4.99','2005-08-16 23:39:59','2006-02-15 22:17:45'), +(10760,397,2,12223,'2.99','2005-08-18 02:58:40','2006-02-15 22:17:45'), +(10761,397,1,12276,'0.99','2005-08-18 04:43:22','2006-02-15 22:17:45'), +(10762,397,2,12329,'1.99','2005-08-18 06:44:30','2006-02-15 22:17:45'), +(10763,397,2,12700,'0.99','2005-08-18 20:24:46','2006-02-15 22:17:45'), +(10764,397,2,12726,'2.99','2005-08-18 21:44:46','2006-02-15 22:17:45'), +(10765,397,1,12772,'4.99','2005-08-18 23:29:25','2006-02-15 22:17:45'), +(10766,397,2,14100,'3.99','2005-08-21 00:31:07','2006-02-15 22:17:45'), +(10767,397,1,14790,'6.99','2005-08-22 00:34:17','2006-02-15 22:17:45'), +(10768,397,1,15083,'6.99','2005-08-22 11:17:37','2006-02-15 22:17:45'), +(10769,398,1,486,'4.99','2005-05-27 23:51:12','2006-02-15 22:17:45'), +(10770,398,2,1228,'2.99','2005-06-15 03:50:36','2006-02-15 22:17:45'), +(10771,398,1,2087,'6.99','2005-06-17 17:35:10','2006-02-15 22:17:45'), +(10772,398,2,3141,'9.99','2005-06-20 19:55:47','2006-02-15 22:17:45'), +(10773,398,2,5234,'5.99','2005-07-09 12:44:47','2006-02-15 22:17:46'), +(10774,398,2,8119,'3.99','2005-07-28 19:23:15','2006-02-15 22:17:46'), +(10775,398,2,8204,'4.99','2005-07-28 23:18:29','2006-02-15 22:17:46'), +(10776,398,1,8428,'7.99','2005-07-29 07:10:14','2006-02-15 22:17:46'), +(10777,398,1,9042,'2.99','2005-07-30 06:33:55','2006-02-15 22:17:46'), +(10778,398,2,9281,'5.99','2005-07-30 15:15:51','2006-02-15 22:17:46'), +(10779,398,1,9771,'1.99','2005-07-31 09:55:36','2006-02-15 22:17:46'), +(10780,398,1,10230,'2.99','2005-08-01 01:49:36','2006-02-15 22:17:46'), +(10781,398,2,11132,'4.99','2005-08-02 09:14:09','2006-02-15 22:17:46'), +(10782,398,2,12528,'2.99','2005-08-18 13:52:41','2006-02-15 22:17:46'), +(10783,398,2,13643,'4.99','2005-08-20 07:42:24','2006-02-15 22:17:46'), +(10784,398,1,15189,'3.99','2005-08-22 15:56:42','2006-02-15 22:17:46'), +(10785,399,2,10,'5.99','2005-05-25 00:02:21','2006-02-15 22:17:46'), +(10786,399,2,694,'6.99','2005-05-29 01:49:43','2006-02-15 22:17:46'), +(10787,399,2,883,'4.99','2005-05-30 06:21:05','2006-02-15 22:17:46'), +(10788,399,2,2961,'2.99','2005-06-20 07:29:15','2006-02-15 22:17:46'), +(10789,399,1,3036,'5.99','2005-06-20 12:18:31','2006-02-15 22:17:46'), +(10790,399,2,4957,'0.99','2005-07-08 23:18:48','2006-02-15 22:17:46'), +(10791,399,2,4981,'4.99','2005-07-09 00:29:29','2006-02-15 22:17:46'), +(10792,399,1,5507,'0.99','2005-07-10 00:49:04','2006-02-15 22:17:47'), +(10793,399,2,6006,'2.99','2005-07-11 01:38:42','2006-02-15 22:17:47'), +(10794,399,2,6229,'6.99','2005-07-11 13:59:50','2006-02-15 22:17:47'), +(10795,399,2,6674,'4.99','2005-07-12 11:51:54','2006-02-15 22:17:47'), +(10796,399,2,8461,'5.99','2005-07-29 08:11:31','2006-02-15 22:17:47'), +(10797,399,2,9728,'2.99','2005-07-31 08:40:54','2006-02-15 22:17:47'), +(10798,399,2,10654,'2.99','2005-08-01 16:31:35','2006-02-15 22:17:47'), +(10799,399,2,10960,'5.99','2005-08-02 03:46:18','2006-02-15 22:17:47'), +(10800,399,1,11329,'4.99','2005-08-02 16:42:52','2006-02-15 22:17:47'), +(10801,399,1,11953,'3.99','2005-08-17 17:16:42','2006-02-15 22:17:47'), +(10802,399,1,13253,'4.99','2005-08-19 16:53:56','2006-02-15 22:17:47'), +(10803,399,2,13293,'4.99','2005-08-19 18:35:52','2006-02-15 22:17:47'), +(10804,399,1,15300,'0.99','2005-08-22 19:44:00','2006-02-15 22:17:47'), +(10805,399,1,15468,'4.99','2005-08-23 01:25:30','2006-02-15 22:17:47'), +(10806,400,1,95,'3.99','2005-05-25 16:12:52','2006-02-15 22:17:47'), +(10807,400,2,171,'6.99','2005-05-26 03:14:15','2006-02-15 22:17:47'), +(10808,400,2,516,'1.99','2005-05-28 03:11:47','2006-02-15 22:17:47'), +(10809,400,2,894,'5.99','2005-05-30 08:31:31','2006-02-15 22:17:48'), +(10810,400,2,1364,'0.99','2005-06-15 14:05:32','2006-02-15 22:17:48'), +(10811,400,1,1917,'3.99','2005-06-17 05:36:07','2006-02-15 22:17:48'), +(10812,400,2,1923,'6.99','2005-06-17 06:06:10','2006-02-15 22:17:48'), +(10813,400,1,4573,'6.99','2005-07-08 05:38:46','2006-02-15 22:17:48'), +(10814,400,1,4645,'2.99','2005-07-08 09:20:09','2006-02-15 22:17:48'), +(10815,400,2,5212,'6.99','2005-07-09 11:37:47','2006-02-15 22:17:48'), +(10816,400,2,5222,'5.99','2005-07-09 12:05:45','2006-02-15 22:17:48'), +(10817,400,2,6790,'5.99','2005-07-12 16:34:59','2006-02-15 22:17:48'), +(10818,400,2,6994,'2.99','2005-07-27 01:08:26','2006-02-15 22:17:48'), +(10819,400,2,7296,'2.99','2005-07-27 12:39:48','2006-02-15 22:17:48'), +(10820,400,1,7682,'5.99','2005-07-28 03:07:29','2006-02-15 22:17:48'), +(10821,400,2,9177,'5.99','2005-07-30 11:52:40','2006-02-15 22:17:48'), +(10822,400,2,9756,'4.99','2005-07-31 09:25:00','2006-02-15 22:17:48'), +(10823,400,1,10187,'2.99','2005-08-01 00:15:49','2006-02-15 22:17:48'), +(10824,400,2,10484,'2.99','2005-08-01 10:19:53','2006-02-15 22:17:48'), +(10825,400,1,10711,'0.99','2005-08-01 18:45:09','2006-02-15 22:17:48'), +(10826,400,2,11510,'6.99','2005-08-16 23:30:07','2006-02-15 22:17:49'), +(10827,400,2,11530,'2.99','2005-08-17 00:29:00','2006-02-15 22:17:49'), +(10828,400,1,11600,'5.99','2005-08-17 03:12:04','2006-02-15 22:17:49'), +(10829,400,1,12514,'2.99','2005-08-18 13:33:55','2006-02-15 22:17:49'), +(10830,400,2,13449,'2.99','2005-08-20 00:17:01','2006-02-15 22:17:49'), +(10831,400,1,14775,'2.99','2005-08-21 23:53:07','2006-02-15 22:17:49'), +(10832,400,2,15533,'4.99','2005-08-23 03:54:39','2006-02-15 22:17:49'), +(10833,400,2,15988,'4.99','2005-08-23 20:23:08','2006-02-15 22:17:49'), +(10834,401,2,167,'4.99','2005-05-26 02:50:31','2006-02-15 22:17:49'), +(10835,401,2,446,'4.99','2005-05-27 18:48:41','2006-02-15 22:17:49'), +(10836,401,2,811,'1.99','2005-05-29 19:30:42','2006-02-15 22:17:49'), +(10837,401,1,4059,'0.99','2005-07-07 04:04:26','2006-02-15 22:17:49'), +(10838,401,2,4292,'7.99','2005-07-07 15:48:38','2006-02-15 22:17:49'), +(10839,401,2,5923,'0.99','2005-07-10 21:40:06','2006-02-15 22:17:49'), +(10840,401,1,NULL,'0.99','2005-07-12 06:26:10','2006-02-15 22:17:49'), +(10841,401,2,7651,'4.99','2005-07-28 01:48:32','2006-02-15 22:17:49'), +(10842,401,1,8450,'2.99','2005-07-29 07:44:05','2006-02-15 22:17:49'), +(10843,401,2,8669,'2.99','2005-07-29 15:44:55','2006-02-15 22:17:49'), +(10844,401,1,8722,'8.99','2005-07-29 17:58:58','2006-02-15 22:17:50'), +(10845,401,2,9701,'4.99','2005-07-31 07:32:21','2006-02-15 22:17:50'), +(10846,401,2,10171,'0.99','2005-07-31 23:29:05','2006-02-15 22:17:50'), +(10847,401,1,11820,'2.99','2005-08-17 12:25:33','2006-02-15 22:17:50'), +(10848,401,1,12475,'4.99','2005-08-18 12:14:21','2006-02-15 22:17:50'), +(10849,401,2,12479,'4.99','2005-08-18 12:26:37','2006-02-15 22:17:50'), +(10850,401,1,12906,'2.99','2005-08-19 04:13:43','2006-02-15 22:17:50'), +(10851,401,1,13024,'4.99','2005-08-19 08:19:21','2006-02-15 22:17:50'), +(10852,401,1,14359,'0.99','2005-08-21 09:16:19','2006-02-15 22:17:50'), +(10853,401,2,14433,'1.99','2005-08-21 11:36:34','2006-02-15 22:17:50'), +(10854,401,1,15831,'0.99','2005-08-23 15:21:19','2006-02-15 22:17:50'), +(10855,401,1,15927,'0.99','2005-08-23 18:23:11','2006-02-15 22:17:50'), +(10856,402,2,801,'1.99','2005-05-29 17:35:50','2006-02-15 22:17:50'), +(10857,402,2,1194,'4.99','2005-06-15 01:25:08','2006-02-15 22:17:50'), +(10858,402,2,2490,'4.99','2005-06-18 22:00:50','2006-02-15 22:17:50'), +(10859,402,2,2913,'2.99','2005-06-20 03:42:27','2006-02-15 22:17:50'), +(10860,402,2,3564,'6.99','2005-07-06 03:02:13','2006-02-15 22:17:50'), +(10861,402,2,3612,'3.99','2005-07-06 05:37:26','2006-02-15 22:17:50'), +(10862,402,2,3755,'5.99','2005-07-06 12:37:16','2006-02-15 22:17:51'), +(10863,402,1,4399,'2.99','2005-07-07 21:20:28','2006-02-15 22:17:51'), +(10864,402,2,4604,'3.99','2005-07-08 06:58:43','2006-02-15 22:17:51'), +(10865,402,2,5329,'4.99','2005-07-09 16:49:46','2006-02-15 22:17:51'), +(10866,402,2,6183,'2.99','2005-07-11 11:14:35','2006-02-15 22:17:51'), +(10867,402,1,6283,'3.99','2005-07-11 16:47:32','2006-02-15 22:17:51'), +(10868,402,1,7633,'0.99','2005-07-28 01:03:41','2006-02-15 22:17:51'), +(10869,402,2,8521,'7.99','2005-07-29 10:12:45','2006-02-15 22:17:51'), +(10870,402,1,9657,'6.99','2005-07-31 06:00:41','2006-02-15 22:17:51'), +(10871,402,2,9779,'0.99','2005-07-31 10:08:33','2006-02-15 22:17:51'), +(10872,402,2,11045,'0.99','2005-08-02 06:07:54','2006-02-15 22:17:51'), +(10873,402,2,11549,'4.99','2005-08-17 01:01:48','2006-02-15 22:17:51'), +(10874,402,2,11920,'0.99','2005-08-17 16:10:19','2006-02-15 22:17:51'), +(10875,402,1,15428,'4.99','2005-08-23 00:11:52','2006-02-15 22:17:52'), +(10876,403,1,442,'2.99','2005-05-27 18:12:13','2006-02-15 22:17:52'), +(10877,403,1,517,'0.99','2005-05-28 03:17:57','2006-02-15 22:17:52'), +(10878,403,2,1221,'4.99','2005-06-15 03:35:16','2006-02-15 22:17:52'), +(10879,403,1,1249,'8.99','2005-06-15 05:38:09','2006-02-15 22:17:52'), +(10880,403,2,2488,'3.99','2005-06-18 21:38:26','2006-02-15 22:17:52'), +(10881,403,1,2927,'4.99','2005-06-20 04:41:41','2006-02-15 22:17:52'), +(10882,403,2,3049,'6.99','2005-06-20 12:51:01','2006-02-15 22:17:52'), +(10883,403,1,3356,'5.99','2005-06-21 11:38:45','2006-02-15 22:17:52'), +(10884,403,1,3644,'6.99','2005-07-06 07:20:11','2006-02-15 22:17:52'), +(10885,403,2,3737,'3.99','2005-07-06 11:45:53','2006-02-15 22:17:52'), +(10886,403,2,4096,'4.99','2005-07-07 06:09:11','2006-02-15 22:17:52'), +(10887,403,1,5982,'4.99','2005-07-11 00:24:44','2006-02-15 22:17:52'), +(10888,403,2,6322,'2.99','2005-07-11 18:58:20','2006-02-15 22:17:52'), +(10889,403,1,6342,'4.99','2005-07-11 19:48:24','2006-02-15 22:17:52'), +(10890,403,1,7103,'4.99','2005-07-27 05:08:59','2006-02-15 22:17:52'), +(10891,403,2,8013,'5.99','2005-07-28 15:30:26','2006-02-15 22:17:52'), +(10892,403,1,9058,'2.99','2005-07-30 07:15:45','2006-02-15 22:17:52'), +(10893,403,2,9486,'7.99','2005-07-30 23:35:42','2006-02-15 22:17:52'), +(10894,403,2,9794,'4.99','2005-07-31 10:47:01','2006-02-15 22:17:53'), +(10895,403,2,10109,'5.99','2005-07-31 21:04:49','2006-02-15 22:17:53'), +(10896,403,1,10443,'2.99','2005-08-01 09:01:04','2006-02-15 22:17:53'), +(10897,403,1,10547,'6.99','2005-08-01 12:44:17','2006-02-15 22:17:53'), +(10898,403,2,10789,'2.99','2005-08-01 21:37:55','2006-02-15 22:17:53'), +(10899,403,1,11038,'7.99','2005-08-02 05:59:42','2006-02-15 22:17:53'), +(10900,403,2,11391,'9.99','2005-08-02 18:40:12','2006-02-15 22:17:53'), +(10901,403,2,11427,'2.99','2005-08-02 20:02:39','2006-02-15 22:17:53'), +(10902,403,2,11460,'0.99','2005-08-02 21:28:03','2006-02-15 22:17:53'), +(10903,403,2,11558,'0.99','2005-08-17 01:19:52','2006-02-15 22:17:53'), +(10904,403,2,12005,'5.99','2005-08-17 18:56:55','2006-02-15 22:17:53'), +(10905,403,1,12132,'2.99','2005-08-17 23:37:03','2006-02-15 22:17:53'), +(10906,403,1,12793,'5.99','2005-08-19 00:20:36','2006-02-15 22:17:53'), +(10907,403,1,14519,'2.99','2005-08-21 14:59:29','2006-02-15 22:17:53'), +(10908,403,1,14662,'0.99','2005-08-21 19:45:27','2006-02-15 22:17:53'), +(10909,403,2,14725,'4.99','2005-08-21 22:02:08','2006-02-15 22:17:53'), +(10910,403,1,15410,'4.99','2005-08-22 23:27:43','2006-02-15 22:17:53'), +(10911,404,2,1081,'5.99','2005-05-31 10:56:32','2006-02-15 22:17:53'), +(10912,404,2,1506,'2.99','2005-06-15 22:19:37','2006-02-15 22:17:53'), +(10913,404,2,1840,'4.99','2005-06-16 23:39:34','2006-02-15 22:17:54'), +(10914,404,1,2715,'4.99','2005-06-19 14:29:35','2006-02-15 22:17:54'), +(10915,404,1,2951,'2.99','2005-06-20 06:23:01','2006-02-15 22:17:54'), +(10916,404,1,3927,'2.99','2005-07-06 20:48:14','2006-02-15 22:17:54'), +(10917,404,1,4495,'2.99','2005-07-08 01:43:46','2006-02-15 22:17:54'), +(10918,404,2,4615,'8.99','2005-07-08 07:46:53','2006-02-15 22:17:54'), +(10919,404,1,4653,'4.99','2005-07-08 09:48:01','2006-02-15 22:17:54'), +(10920,404,1,4963,'4.99','2005-07-08 23:38:40','2006-02-15 22:17:54'), +(10921,404,1,5632,'3.99','2005-07-10 06:17:06','2006-02-15 22:17:54'), +(10922,404,1,6114,'1.99','2005-07-11 07:33:48','2006-02-15 22:17:54'), +(10923,404,2,6779,'0.99','2005-07-12 16:10:50','2006-02-15 22:17:54'), +(10924,404,1,6964,'4.99','2005-07-27 00:15:04','2006-02-15 22:17:54'), +(10925,404,1,8058,'5.99','2005-07-28 17:07:49','2006-02-15 22:17:54'), +(10926,404,1,8455,'3.99','2005-07-29 07:53:06','2006-02-15 22:17:54'), +(10927,404,1,9206,'4.99','2005-07-30 12:46:59','2006-02-15 22:17:54'), +(10928,404,1,9472,'4.99','2005-07-30 23:03:32','2006-02-15 22:17:54'), +(10929,404,2,9824,'2.99','2005-07-31 11:49:55','2006-02-15 22:17:54'), +(10930,404,1,10651,'2.99','2005-08-01 16:20:22','2006-02-15 22:17:54'), +(10931,404,1,12325,'5.99','2005-08-18 06:41:30','2006-02-15 22:17:54'), +(10932,404,1,12554,'8.99','2005-08-18 14:47:28','2006-02-15 22:17:54'), +(10933,404,2,13412,'5.99','2005-08-19 22:46:35','2006-02-15 22:17:55'), +(10934,404,1,13422,'4.99','2005-08-19 23:07:24','2006-02-15 22:17:55'), +(10935,404,1,14691,'0.99','2005-08-21 20:42:29','2006-02-15 22:17:55'), +(10936,404,2,14835,'5.99','2005-08-22 01:49:07','2006-02-15 22:17:55'), +(10937,404,2,14838,'4.99','2005-08-22 01:57:34','2006-02-15 22:17:55'), +(10938,404,2,14912,'4.99','2005-08-22 04:51:42','2006-02-15 22:17:55'), +(10939,404,2,15087,'0.99','2005-08-22 11:24:09','2006-02-15 22:17:55'), +(10940,404,2,15290,'10.99','2005-08-22 19:28:02','2006-02-15 22:17:55'), +(10941,405,1,121,'2.99','2005-05-25 19:41:29','2006-02-15 22:17:55'), +(10942,405,2,770,'4.99','2005-05-29 12:56:50','2006-02-15 22:17:55'), +(10943,405,2,1315,'4.99','2005-06-15 10:23:08','2006-02-15 22:17:55'), +(10944,405,1,1888,'0.99','2005-06-17 03:58:36','2006-02-15 22:17:55'), +(10945,405,2,1953,'5.99','2005-06-17 08:34:57','2006-02-15 22:17:55'), +(10946,405,2,2654,'3.99','2005-06-19 10:37:54','2006-02-15 22:17:55'), +(10947,405,1,3240,'4.99','2005-06-21 02:53:17','2006-02-15 22:17:55'), +(10948,405,1,3253,'5.99','2005-06-21 03:25:37','2006-02-15 22:17:55'), +(10949,405,2,4223,'0.99','2005-07-07 12:23:54','2006-02-15 22:17:55'), +(10950,405,2,4401,'0.99','2005-07-07 21:26:27','2006-02-15 22:17:55'), +(10951,405,2,5040,'7.99','2005-07-09 03:16:34','2006-02-15 22:17:55'), +(10952,405,1,5231,'0.99','2005-07-09 12:35:02','2006-02-15 22:17:56'), +(10953,405,2,5512,'1.99','2005-07-10 01:05:38','2006-02-15 22:17:56'), +(10954,405,1,6110,'2.99','2005-07-11 07:23:47','2006-02-15 22:17:56'), +(10955,405,1,7455,'2.99','2005-07-27 18:34:41','2006-02-15 22:17:56'), +(10956,405,1,7759,'0.99','2005-07-28 06:28:45','2006-02-15 22:17:56'), +(10957,405,2,8482,'2.99','2005-07-29 08:46:33','2006-02-15 22:17:56'), +(10958,405,1,8955,'5.99','2005-07-30 03:28:27','2006-02-15 22:17:56'), +(10959,405,1,9569,'0.99','2005-07-31 02:39:38','2006-02-15 22:17:56'), +(10960,405,1,10472,'4.99','2005-08-01 09:54:41','2006-02-15 22:17:56'), +(10961,405,2,10823,'4.99','2005-08-01 22:59:10','2006-02-15 22:17:56'), +(10962,405,1,11345,'7.99','2005-08-02 17:14:19','2006-02-15 22:17:56'), +(10963,405,1,12050,'0.99','2005-08-17 20:55:25','2006-02-15 22:17:56'), +(10964,405,2,12425,'5.99','2005-08-18 10:18:06','2006-02-15 22:17:56'), +(10965,405,1,13304,'1.99','2005-08-19 18:56:32','2006-02-15 22:17:56'), +(10966,405,1,13398,'0.99','2005-08-19 22:08:48','2006-02-15 22:17:56'), +(10967,405,1,14274,'4.99','2005-08-21 06:29:20','2006-02-15 22:17:56'), +(10968,405,2,14537,'0.99','2005-08-21 15:24:24','2006-02-15 22:17:56'), +(10969,405,1,15072,'1.99','2005-08-22 10:58:45','2006-02-15 22:17:56'), +(10970,405,2,15383,'2.99','2005-08-22 22:31:20','2006-02-15 22:17:57'), +(10971,405,1,15932,'4.99','2005-08-23 18:31:40','2006-02-15 22:17:57'), +(10972,405,1,12792,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:57'), +(10973,406,1,855,'0.99','2005-05-30 02:00:28','2006-02-15 22:17:57'), +(10974,406,1,2113,'4.99','2005-06-17 19:57:46','2006-02-15 22:17:57'), +(10975,406,2,2150,'3.99','2005-06-17 22:50:36','2006-02-15 22:17:57'), +(10976,406,1,2241,'2.99','2005-06-18 04:31:41','2006-02-15 22:17:57'), +(10977,406,2,2325,'0.99','2005-06-18 10:08:07','2006-02-15 22:17:57'), +(10978,406,2,2585,'0.99','2005-06-19 05:05:03','2006-02-15 22:17:57'), +(10979,406,1,3186,'7.99','2005-06-20 23:04:20','2006-02-15 22:17:57'), +(10980,406,1,3306,'4.99','2005-06-21 07:46:58','2006-02-15 22:17:57'), +(10981,406,2,4264,'4.99','2005-07-07 14:25:28','2006-02-15 22:17:57'), +(10982,406,2,5098,'4.99','2005-07-09 06:13:54','2006-02-15 22:17:57'), +(10983,406,2,5263,'0.99','2005-07-09 14:10:36','2006-02-15 22:17:57'), +(10984,406,1,5766,'0.99','2005-07-10 13:07:31','2006-02-15 22:17:57'), +(10985,406,2,6439,'2.99','2005-07-12 00:23:48','2006-02-15 22:17:57'), +(10986,406,2,7109,'5.99','2005-07-27 05:28:57','2006-02-15 22:17:57'), +(10987,406,1,7171,'4.99','2005-07-27 07:58:35','2006-02-15 22:17:57'), +(10988,406,1,7259,'4.99','2005-07-27 11:06:00','2006-02-15 22:17:58'), +(10989,406,2,7604,'7.99','2005-07-27 23:54:52','2006-02-15 22:17:58'), +(10990,406,2,8080,'4.99','2005-07-28 18:05:06','2006-02-15 22:17:58'), +(10991,406,2,8295,'2.99','2005-07-29 02:42:14','2006-02-15 22:17:58'), +(10992,406,2,8630,'0.99','2005-07-29 14:07:59','2006-02-15 22:17:58'), +(10993,406,1,8903,'0.99','2005-07-30 01:08:06','2006-02-15 22:17:58'), +(10994,406,2,8962,'1.99','2005-07-30 03:43:45','2006-02-15 22:17:58'), +(10995,406,2,9224,'0.99','2005-07-30 13:25:37','2006-02-15 22:17:58'), +(10996,406,1,9291,'4.99','2005-07-30 16:03:39','2006-02-15 22:17:58'), +(10997,406,2,9487,'2.99','2005-07-30 23:40:22','2006-02-15 22:17:58'), +(10998,406,1,9660,'8.99','2005-07-31 06:03:17','2006-02-15 22:17:58'), +(10999,406,1,10632,'1.99','2005-08-01 15:36:56','2006-02-15 22:17:58'), +(11000,406,1,11603,'4.99','2005-08-17 03:22:10','2006-02-15 22:17:58'), +(11001,406,2,12505,'5.99','2005-08-18 13:17:30','2006-02-15 22:17:58'), +(11002,406,2,14205,'6.99','2005-08-21 03:57:15','2006-02-15 22:17:58'), +(11003,406,2,14421,'2.99','2005-08-21 11:20:21','2006-02-15 22:17:58'), +(11004,406,2,14601,'2.99','2005-08-21 17:45:52','2006-02-15 22:17:58'), +(11005,407,1,619,'7.99','2005-05-28 15:52:26','2006-02-15 22:17:58'), +(11006,407,1,1698,'2.99','2005-06-16 13:04:42','2006-02-15 22:17:59'), +(11007,407,2,2597,'0.99','2005-06-19 05:53:46','2006-02-15 22:17:59'), +(11008,407,1,4296,'0.99','2005-07-07 16:16:03','2006-02-15 22:17:59'), +(11009,407,1,5070,'4.99','2005-07-09 04:58:26','2006-02-15 22:17:59'), +(11010,407,2,5590,'9.99','2005-07-10 04:23:11','2006-02-15 22:17:59'), +(11011,407,1,6727,'0.99','2005-07-12 13:54:25','2006-02-15 22:17:59'), +(11012,407,1,7363,'5.99','2005-07-27 14:58:29','2006-02-15 22:17:59'), +(11013,407,2,7643,'4.99','2005-07-28 01:19:44','2006-02-15 22:17:59'), +(11014,407,1,8078,'2.99','2005-07-28 17:54:42','2006-02-15 22:17:59'), +(11015,407,1,8109,'4.99','2005-07-28 19:07:44','2006-02-15 22:17:59'), +(11016,407,1,8197,'9.99','2005-07-28 23:04:10','2006-02-15 22:17:59'), +(11017,407,2,8571,'0.99','2005-07-29 11:48:39','2006-02-15 22:17:59'), +(11018,407,1,8802,'2.99','2005-07-29 21:25:51','2006-02-15 22:17:59'), +(11019,407,2,10774,'4.99','2005-08-01 20:54:33','2006-02-15 22:17:59'), +(11020,407,1,11214,'8.99','2005-08-02 12:19:50','2006-02-15 22:17:59'), +(11021,407,1,11222,'2.99','2005-08-02 12:32:28','2006-02-15 22:18:00'), +(11022,407,2,11382,'5.99','2005-08-02 18:20:52','2006-02-15 22:18:00'), +(11023,407,2,11518,'4.99','2005-08-16 23:59:49','2006-02-15 22:18:00'), +(11024,407,1,11677,'0.99','2005-08-17 06:06:26','2006-02-15 22:18:00'), +(11025,407,2,12566,'0.99','2005-08-18 15:13:04','2006-02-15 22:18:00'), +(11026,407,2,12931,'2.99','2005-08-19 05:11:47','2006-02-15 22:18:00'), +(11027,407,1,13800,'0.99','2005-08-20 12:40:48','2006-02-15 22:18:00'), +(11028,407,2,13856,'6.99','2005-08-20 14:49:32','2006-02-15 22:18:00'), +(11029,407,2,14401,'6.99','2005-08-21 10:36:20','2006-02-15 22:18:00'), +(11030,407,2,15320,'0.99','2005-08-22 20:17:49','2006-02-15 22:18:00'), +(11031,407,2,15334,'1.99','2005-08-22 20:44:35','2006-02-15 22:18:00'), +(11032,408,2,3,'3.99','2005-05-24 23:03:39','2006-02-15 22:18:00'), +(11033,408,2,59,'5.99','2005-05-25 08:56:42','2006-02-15 22:18:00'), +(11034,408,1,526,'2.99','2005-05-28 04:27:37','2006-02-15 22:18:01'), +(11035,408,2,2479,'4.99','2005-06-18 21:03:08','2006-02-15 22:18:01'), +(11036,408,1,2564,'2.99','2005-06-19 03:41:10','2006-02-15 22:18:01'), +(11037,408,2,2728,'2.99','2005-06-19 15:04:04','2006-02-15 22:18:01'), +(11038,408,2,4330,'3.99','2005-07-07 18:09:41','2006-02-15 22:18:01'), +(11039,408,2,5073,'0.99','2005-07-09 05:02:35','2006-02-15 22:18:01'), +(11040,408,1,6062,'0.99','2005-07-11 04:11:58','2006-02-15 22:18:01'), +(11041,408,2,6203,'4.99','2005-07-11 12:28:57','2006-02-15 22:18:01'), +(11042,408,2,6826,'2.99','2005-07-12 18:32:02','2006-02-15 22:18:01'), +(11043,408,1,7053,'4.99','2005-07-27 03:38:54','2006-02-15 22:18:01'), +(11044,408,2,7996,'4.99','2005-07-28 15:00:49','2006-02-15 22:18:01'), +(11045,408,2,8251,'4.99','2005-07-29 00:50:14','2006-02-15 22:18:01'), +(11046,408,2,8469,'3.99','2005-07-29 08:26:27','2006-02-15 22:18:01'), +(11047,408,2,8902,'6.99','2005-07-30 01:08:06','2006-02-15 22:18:01'), +(11048,408,1,9052,'0.99','2005-07-30 07:06:08','2006-02-15 22:18:01'), +(11049,408,2,9757,'4.99','2005-07-31 09:25:14','2006-02-15 22:18:01'), +(11050,408,2,11115,'2.99','2005-08-02 08:31:06','2006-02-15 22:18:01'), +(11051,408,1,12140,'2.99','2005-08-17 23:57:55','2006-02-15 22:18:01'), +(11052,408,1,12338,'4.99','2005-08-18 07:04:24','2006-02-15 22:18:01'), +(11053,408,1,12498,'2.99','2005-08-18 13:01:08','2006-02-15 22:18:02'), +(11054,408,2,12900,'0.99','2005-08-19 04:03:49','2006-02-15 22:18:02'), +(11055,408,1,13508,'7.99','2005-08-20 02:12:54','2006-02-15 22:18:02'), +(11056,408,2,13744,'3.99','2005-08-20 10:51:45','2006-02-15 22:18:02'), +(11057,408,1,13944,'2.99','2005-08-20 17:41:16','2006-02-15 22:18:02'), +(11058,408,2,14733,'4.99','2005-08-21 22:22:33','2006-02-15 22:18:02'), +(11059,408,1,15628,'2.99','2005-08-23 07:28:04','2006-02-15 22:18:02'), +(11060,408,2,15716,'1.99','2005-08-23 11:02:00','2006-02-15 22:18:02'), +(11061,408,1,15765,'6.99','2005-08-23 13:06:19','2006-02-15 22:18:03'), +(11062,409,1,310,'6.99','2005-05-26 22:41:07','2006-02-15 22:18:03'), +(11063,409,2,1226,'5.99','2005-06-15 03:46:10','2006-02-15 22:18:03'), +(11064,409,2,2310,'8.99','2005-06-18 08:45:59','2006-02-15 22:18:03'), +(11065,409,1,3866,'5.99','2005-07-06 17:47:20','2006-02-15 22:18:03'), +(11066,409,2,4550,'4.99','2005-07-08 04:34:00','2006-02-15 22:18:03'), +(11067,409,1,5175,'3.99','2005-07-09 09:34:28','2006-02-15 22:18:03'), +(11068,409,2,5306,'5.99','2005-07-09 15:56:45','2006-02-15 22:18:03'), +(11069,409,1,5422,'0.99','2005-07-09 20:55:47','2006-02-15 22:18:03'), +(11070,409,1,5848,'2.99','2005-07-10 17:28:14','2006-02-15 22:18:04'), +(11071,409,1,5955,'7.99','2005-07-10 23:22:10','2006-02-15 22:18:04'), +(11072,409,2,6026,'4.99','2005-07-11 02:21:43','2006-02-15 22:18:04'), +(11073,409,1,6596,'2.99','2005-07-12 07:32:59','2006-02-15 22:18:04'), +(11074,409,2,7673,'2.99','2005-07-28 02:53:53','2006-02-15 22:18:04'), +(11075,409,2,7940,'0.99','2005-07-28 12:46:47','2006-02-15 22:18:04'), +(11076,409,1,8037,'4.99','2005-07-28 16:31:20','2006-02-15 22:18:04'), +(11077,409,2,8265,'5.99','2005-07-29 01:20:15','2006-02-15 22:18:04'), +(11078,409,1,8726,'1.99','2005-07-29 18:09:22','2006-02-15 22:18:04'), +(11079,409,2,9267,'0.99','2005-07-30 14:59:05','2006-02-15 22:18:04'), +(11080,409,2,12830,'0.99','2005-08-19 01:40:25','2006-02-15 22:18:04'), +(11081,409,1,13392,'8.99','2005-08-19 22:03:22','2006-02-15 22:18:04'), +(11082,409,2,13632,'6.99','2005-08-20 07:10:52','2006-02-15 22:18:04'), +(11083,409,1,14103,'1.99','2005-08-21 00:37:00','2006-02-15 22:18:04'), +(11084,409,1,14697,'4.99','2005-08-21 20:49:21','2006-02-15 22:18:05'), +(11085,410,1,1514,'2.99','2005-06-15 22:57:34','2006-02-15 22:18:05'), +(11086,410,1,2073,'2.99','2005-06-17 16:33:59','2006-02-15 22:18:05'), +(11087,410,1,2255,'4.99','2005-06-18 05:21:12','2006-02-15 22:18:05'), +(11088,410,2,2400,'5.99','2005-06-18 16:10:46','2006-02-15 22:18:05'), +(11089,410,2,2971,'0.99','2005-06-20 07:56:00','2006-02-15 22:18:05'), +(11090,410,1,3249,'4.99','2005-06-21 03:13:19','2006-02-15 22:18:05'), +(11091,410,2,4062,'0.99','2005-07-07 04:22:27','2006-02-15 22:18:05'), +(11092,410,1,4267,'0.99','2005-07-07 14:35:30','2006-02-15 22:18:05'), +(11093,410,1,5150,'3.99','2005-07-09 08:28:40','2006-02-15 22:18:05'), +(11094,410,1,5192,'4.99','2005-07-09 10:27:09','2006-02-15 22:18:05'), +(11095,410,2,5330,'5.99','2005-07-09 16:53:57','2006-02-15 22:18:05'), +(11096,410,1,5336,'2.99','2005-07-09 17:01:08','2006-02-15 22:18:05'), +(11097,410,1,6148,'4.99','2005-07-11 09:14:22','2006-02-15 22:18:05'), +(11098,410,2,6218,'5.99','2005-07-11 13:14:58','2006-02-15 22:18:05'), +(11099,410,2,7350,'4.99','2005-07-27 14:34:14','2006-02-15 22:18:05'), +(11100,410,2,7407,'5.99','2005-07-27 16:29:04','2006-02-15 22:18:05'), +(11101,410,1,7523,'4.99','2005-07-27 21:11:23','2006-02-15 22:18:06'), +(11102,410,2,8625,'3.99','2005-07-29 13:59:13','2006-02-15 22:18:06'), +(11103,410,1,8882,'0.99','2005-07-30 00:24:05','2006-02-15 22:18:06'), +(11104,410,1,9263,'2.99','2005-07-30 14:48:24','2006-02-15 22:18:06'), +(11105,410,1,10402,'4.99','2005-08-01 07:27:19','2006-02-15 22:18:06'), +(11106,410,1,10837,'2.99','2005-08-01 23:30:22','2006-02-15 22:18:06'), +(11107,410,1,11107,'0.99','2005-08-02 08:19:38','2006-02-15 22:18:06'), +(11108,410,1,11187,'10.99','2005-08-02 11:16:19','2006-02-15 22:18:06'), +(11109,410,1,11472,'6.99','2005-08-02 21:49:06','2006-02-15 22:18:06'), +(11110,410,1,11694,'6.99','2005-08-17 06:57:30','2006-02-15 22:18:06'), +(11111,410,2,12955,'8.99','2005-08-19 06:05:58','2006-02-15 22:18:06'), +(11112,410,1,13460,'4.99','2005-08-20 00:48:24','2006-02-15 22:18:06'), +(11113,410,2,13748,'2.99','2005-08-20 10:59:54','2006-02-15 22:18:06'), +(11114,410,2,13948,'6.99','2005-08-20 17:50:48','2006-02-15 22:18:06'), +(11115,410,1,14237,'3.99','2005-08-21 05:15:00','2006-02-15 22:18:07'), +(11116,410,2,14298,'4.99','2005-08-21 07:17:10','2006-02-15 22:18:07'), +(11117,410,1,14319,'4.99','2005-08-21 08:00:55','2006-02-15 22:18:07'), +(11118,410,2,14819,'2.99','2005-08-22 01:17:19','2006-02-15 22:18:07'), +(11119,410,1,15211,'2.99','2005-08-22 16:40:21','2006-02-15 22:18:07'), +(11120,410,2,15392,'3.99','2005-08-22 23:02:15','2006-02-15 22:18:07'), +(11121,410,1,15518,'4.99','2005-08-23 03:19:34','2006-02-15 22:18:07'), +(11122,410,1,12665,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:08'), +(11123,411,2,686,'4.99','2005-05-29 00:27:10','2006-02-15 22:18:08'), +(11124,411,2,972,'1.99','2005-05-30 20:21:07','2006-02-15 22:18:08'), +(11125,411,1,1985,'0.99','2005-06-17 10:31:37','2006-02-15 22:18:08'), +(11126,411,2,1997,'2.99','2005-06-17 11:19:43','2006-02-15 22:18:08'), +(11127,411,2,2712,'0.99','2005-06-19 14:20:13','2006-02-15 22:18:08'), +(11128,411,1,3928,'2.99','2005-07-06 20:52:09','2006-02-15 22:18:08'), +(11129,411,2,4146,'0.99','2005-07-07 08:30:16','2006-02-15 22:18:08'), +(11130,411,1,4246,'2.99','2005-07-07 13:49:03','2006-02-15 22:18:08'), +(11131,411,2,5357,'5.99','2005-07-09 18:08:59','2006-02-15 22:18:08'), +(11132,411,1,5800,'2.99','2005-07-10 14:58:36','2006-02-15 22:18:08'), +(11133,411,1,7102,'1.99','2005-07-27 05:07:21','2006-02-15 22:18:08'), +(11134,411,2,7395,'0.99','2005-07-27 16:03:11','2006-02-15 22:18:08'), +(11135,411,1,7513,'2.99','2005-07-27 20:51:04','2006-02-15 22:18:08'), +(11136,411,1,7813,'2.99','2005-07-28 08:08:27','2006-02-15 22:18:08'), +(11137,411,1,8023,'0.99','2005-07-28 15:53:29','2006-02-15 22:18:08'), +(11138,411,2,8613,'5.99','2005-07-29 13:30:58','2006-02-15 22:18:09'), +(11139,411,2,9622,'0.99','2005-07-31 04:21:45','2006-02-15 22:18:09'), +(11140,411,2,11294,'2.99','2005-08-02 15:08:27','2006-02-15 22:18:09'), +(11141,411,1,11997,'5.99','2005-08-17 18:34:38','2006-02-15 22:18:09'), +(11142,411,2,13634,'0.99','2005-08-20 07:16:45','2006-02-15 22:18:09'), +(11143,411,2,13656,'7.99','2005-08-20 08:01:07','2006-02-15 22:18:09'), +(11144,411,2,14480,'2.99','2005-08-21 13:36:40','2006-02-15 22:18:09'), +(11145,411,1,14772,'5.99','2005-08-21 23:50:39','2006-02-15 22:18:09'), +(11146,411,2,14996,'2.99','2005-08-22 07:52:41','2006-02-15 22:18:09'), +(11147,411,1,15936,'0.99','2005-08-23 18:43:11','2006-02-15 22:18:09'), +(11148,411,2,13246,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:09'), +(11149,412,2,191,'0.99','2005-05-26 06:14:06','2006-02-15 22:18:09'), +(11150,412,1,333,'4.99','2005-05-27 02:52:21','2006-02-15 22:18:09'), +(11151,412,1,717,'0.99','2005-05-29 04:37:44','2006-02-15 22:18:09'), +(11152,412,2,1043,'3.99','2005-05-31 06:11:40','2006-02-15 22:18:09'), +(11153,412,1,3292,'2.99','2005-06-21 06:59:11','2006-02-15 22:18:09'), +(11154,412,2,3888,'0.99','2005-07-06 18:54:20','2006-02-15 22:18:09'), +(11155,412,2,4074,'0.99','2005-07-07 04:49:49','2006-02-15 22:18:09'), +(11156,412,1,8036,'0.99','2005-07-28 16:27:43','2006-02-15 22:18:09'), +(11157,412,2,8330,'8.99','2005-07-29 04:09:07','2006-02-15 22:18:10'), +(11158,412,1,8411,'8.99','2005-07-29 06:44:23','2006-02-15 22:18:10'), +(11159,412,1,8674,'0.99','2005-07-29 15:54:22','2006-02-15 22:18:10'), +(11160,412,1,9881,'4.99','2005-07-31 13:50:38','2006-02-15 22:18:10'), +(11161,412,2,10381,'2.99','2005-08-01 06:36:37','2006-02-15 22:18:10'), +(11162,412,1,10467,'5.99','2005-08-01 09:45:58','2006-02-15 22:18:10'), +(11163,412,2,11027,'4.99','2005-08-02 05:47:10','2006-02-15 22:18:10'), +(11164,412,1,14068,'3.99','2005-08-20 22:50:59','2006-02-15 22:18:10'), +(11165,412,1,14535,'6.99','2005-08-21 15:22:37','2006-02-15 22:18:10'), +(11166,412,2,15354,'4.99','2005-08-22 21:18:59','2006-02-15 22:18:10'), +(11167,412,2,15732,'4.99','2005-08-23 11:35:12','2006-02-15 22:18:10'), +(11168,412,1,15781,'8.99','2005-08-23 13:41:05','2006-02-15 22:18:10'), +(11169,412,1,15314,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:10'), +(11170,413,1,40,'4.99','2005-05-25 05:09:04','2006-02-15 22:18:10'), +(11171,413,1,999,'4.99','2005-05-31 00:25:10','2006-02-15 22:18:10'), +(11172,413,2,2130,'5.99','2005-06-17 21:00:44','2006-02-15 22:18:10'), +(11173,413,2,2545,'4.99','2005-06-19 02:23:36','2006-02-15 22:18:10'), +(11174,413,1,3762,'4.99','2005-07-06 12:52:49','2006-02-15 22:18:10'), +(11175,413,2,4491,'0.99','2005-07-08 01:30:46','2006-02-15 22:18:10'), +(11176,413,1,5897,'7.99','2005-07-10 20:16:14','2006-02-15 22:18:11'), +(11177,413,2,7100,'4.99','2005-07-27 05:05:01','2006-02-15 22:18:11'), +(11178,413,1,7635,'0.99','2005-07-28 01:08:11','2006-02-15 22:18:11'), +(11179,413,2,7731,'0.99','2005-07-28 05:01:18','2006-02-15 22:18:11'), +(11180,413,1,10909,'2.99','2005-08-02 01:53:59','2006-02-15 22:18:11'), +(11181,413,2,11304,'2.99','2005-08-02 15:40:10','2006-02-15 22:18:11'), +(11182,413,1,11468,'0.99','2005-08-02 21:47:26','2006-02-15 22:18:11'), +(11183,413,1,11532,'0.99','2005-08-17 00:34:14','2006-02-15 22:18:11'), +(11184,413,2,12552,'2.99','2005-08-18 14:46:34','2006-02-15 22:18:11'), +(11185,413,1,13010,'3.99','2005-08-19 07:52:21','2006-02-15 22:18:11'), +(11186,413,1,13318,'2.99','2005-08-19 19:33:57','2006-02-15 22:18:11'), +(11187,413,2,13824,'4.99','2005-08-20 13:43:12','2006-02-15 22:18:11'), +(11188,413,2,13887,'4.99','2005-08-20 15:39:00','2006-02-15 22:18:11'), +(11189,413,1,14773,'2.99','2005-08-21 23:50:57','2006-02-15 22:18:11'), +(11190,413,1,15678,'2.99','2005-08-23 09:23:45','2006-02-15 22:18:11'), +(11191,414,1,85,'4.99','2005-05-25 13:05:34','2006-02-15 22:18:11'), +(11192,414,1,261,'3.99','2005-05-26 15:44:23','2006-02-15 22:18:11'), +(11193,414,1,2246,'4.99','2005-06-18 04:54:29','2006-02-15 22:18:11'), +(11194,414,1,2559,'9.99','2005-06-19 03:09:46','2006-02-15 22:18:12'), +(11195,414,1,3318,'5.99','2005-06-21 08:23:05','2006-02-15 22:18:12'), +(11196,414,1,3957,'10.99','2005-07-06 22:05:47','2006-02-15 22:18:12'), +(11197,414,1,4437,'3.99','2005-07-07 22:55:41','2006-02-15 22:18:12'), +(11198,414,2,6462,'7.99','2005-07-12 01:15:24','2006-02-15 22:18:12'), +(11199,414,2,6728,'0.99','2005-07-12 13:56:48','2006-02-15 22:18:12'), +(11200,414,2,6845,'0.99','2005-07-12 19:20:41','2006-02-15 22:18:12'), +(11201,414,1,7009,'0.99','2005-07-27 01:45:44','2006-02-15 22:18:12'), +(11202,414,1,7779,'2.99','2005-07-28 07:11:11','2006-02-15 22:18:12'), +(11203,414,1,9650,'2.99','2005-07-31 05:47:32','2006-02-15 22:18:12'), +(11204,414,2,9991,'2.99','2005-07-31 17:26:27','2006-02-15 22:18:12'), +(11205,414,2,10107,'5.99','2005-07-31 21:01:46','2006-02-15 22:18:12'), +(11206,414,1,11706,'0.99','2005-08-17 07:23:46','2006-02-15 22:18:12'), +(11207,414,2,12930,'4.99','2005-08-19 05:11:32','2006-02-15 22:18:12'), +(11208,414,1,13042,'0.99','2005-08-19 09:06:08','2006-02-15 22:18:12'), +(11209,414,1,13242,'2.99','2005-08-19 16:28:47','2006-02-15 22:18:12'), +(11210,414,1,13308,'7.99','2005-08-19 18:59:42','2006-02-15 22:18:12'), +(11211,414,1,13404,'0.99','2005-08-19 22:18:42','2006-02-15 22:18:12'), +(11212,414,2,13494,'2.99','2005-08-20 01:36:34','2006-02-15 22:18:12'), +(11213,414,2,13657,'4.99','2005-08-20 08:01:39','2006-02-15 22:18:12'), +(11214,414,1,15140,'6.99','2005-08-22 13:39:20','2006-02-15 22:18:13'), +(11215,414,2,15481,'0.99','2005-08-23 01:59:14','2006-02-15 22:18:13'), +(11216,415,2,665,'4.99','2005-05-28 21:38:39','2006-02-15 22:18:13'), +(11217,415,2,1867,'4.99','2005-06-17 02:01:37','2006-02-15 22:18:13'), +(11218,415,1,3211,'2.99','2005-06-21 01:01:29','2006-02-15 22:18:13'), +(11219,415,2,4926,'8.99','2005-07-08 22:01:48','2006-02-15 22:18:13'), +(11220,415,2,5665,'0.99','2005-07-10 08:10:08','2006-02-15 22:18:13'), +(11221,415,2,5733,'0.99','2005-07-10 11:37:24','2006-02-15 22:18:13'), +(11222,415,2,6491,'5.99','2005-07-12 02:28:31','2006-02-15 22:18:13'), +(11223,415,1,6505,'3.99','2005-07-12 03:27:37','2006-02-15 22:18:13'), +(11224,415,1,7379,'4.99','2005-07-27 15:36:43','2006-02-15 22:18:13'), +(11225,415,2,7624,'0.99','2005-07-28 00:37:44','2006-02-15 22:18:13'), +(11226,415,1,7748,'4.99','2005-07-28 05:52:23','2006-02-15 22:18:13'), +(11227,415,2,8317,'2.99','2005-07-29 03:39:07','2006-02-15 22:18:13'), +(11228,415,2,9586,'2.99','2005-07-31 03:07:16','2006-02-15 22:18:13'), +(11229,415,1,9852,'2.99','2005-07-31 12:52:17','2006-02-15 22:18:13'), +(11230,415,1,10263,'5.99','2005-08-01 03:02:48','2006-02-15 22:18:13'), +(11231,415,1,10553,'2.99','2005-08-01 12:54:06','2006-02-15 22:18:13'), +(11232,415,2,11310,'1.99','2005-08-02 15:51:58','2006-02-15 22:18:13'), +(11233,415,2,12128,'5.99','2005-08-17 23:31:09','2006-02-15 22:18:14'), +(11234,415,2,12588,'2.99','2005-08-18 16:04:45','2006-02-15 22:18:14'), +(11235,415,2,13729,'8.99','2005-08-20 10:17:08','2006-02-15 22:18:14'), +(11236,415,1,14992,'4.99','2005-08-22 07:51:47','2006-02-15 22:18:14'), +(11237,415,2,15121,'4.99','2005-08-22 12:46:37','2006-02-15 22:18:14'), +(11238,415,1,15959,'0.99','2005-08-23 19:27:04','2006-02-15 22:18:14'), +(11239,416,2,253,'0.99','2005-05-26 14:43:14','2006-02-15 22:18:14'), +(11240,416,2,724,'3.99','2005-05-29 05:53:23','2006-02-15 22:18:14'), +(11241,416,2,1031,'2.99','2005-05-31 04:23:01','2006-02-15 22:18:14'), +(11242,416,2,1158,'2.99','2005-06-14 22:53:33','2006-02-15 22:18:14'), +(11243,416,1,1343,'4.99','2005-06-15 12:27:19','2006-02-15 22:18:14'), +(11244,416,2,1553,'0.99','2005-06-16 02:02:44','2006-02-15 22:18:14'), +(11245,416,2,1596,'2.99','2005-06-16 05:30:58','2006-02-15 22:18:14'), +(11246,416,2,1771,'0.99','2005-06-16 18:12:17','2006-02-15 22:18:14'), +(11247,416,1,3833,'3.99','2005-07-06 16:18:28','2006-02-15 22:18:14'), +(11248,416,1,3868,'2.99','2005-07-06 17:54:13','2006-02-15 22:18:14'), +(11249,416,1,6097,'2.99','2005-07-11 06:21:43','2006-02-15 22:18:14'), +(11250,416,1,6879,'7.99','2005-07-12 20:37:37','2006-02-15 22:18:14'), +(11251,416,1,7889,'0.99','2005-07-28 10:43:21','2006-02-15 22:18:14'), +(11252,416,1,7917,'2.99','2005-07-28 11:56:57','2006-02-15 22:18:15'), +(11253,416,2,8349,'5.99','2005-07-29 04:50:22','2006-02-15 22:18:15'), +(11254,416,2,8588,'2.99','2005-07-29 12:22:20','2006-02-15 22:18:15'), +(11255,416,2,8648,'2.99','2005-07-29 14:56:21','2006-02-15 22:18:15'), +(11256,416,2,9383,'2.99','2005-07-30 19:24:50','2006-02-15 22:18:15'), +(11257,416,1,10254,'3.99','2005-08-01 02:42:03','2006-02-15 22:18:15'), +(11258,416,1,10354,'2.99','2005-08-01 05:47:10','2006-02-15 22:18:15'), +(11259,416,1,10742,'6.99','2005-08-01 19:53:13','2006-02-15 22:18:15'), +(11260,416,1,10937,'6.99','2005-08-02 03:00:18','2006-02-15 22:18:15'), +(11261,416,2,11047,'5.99','2005-08-02 06:09:20','2006-02-15 22:18:15'), +(11262,416,1,11557,'6.99','2005-08-17 01:19:20','2006-02-15 22:18:15'), +(11263,416,1,12722,'8.99','2005-08-18 21:33:53','2006-02-15 22:18:15'), +(11264,416,1,12932,'4.99','2005-08-19 05:17:30','2006-02-15 22:18:15'), +(11265,416,1,14239,'4.99','2005-08-21 05:18:57','2006-02-15 22:18:15'), +(11266,416,1,15235,'1.99','2005-08-22 17:43:12','2006-02-15 22:18:15'), +(11267,416,2,15470,'4.99','2005-08-23 01:35:12','2006-02-15 22:18:15'), +(11268,416,1,15727,'2.99','2005-08-23 11:28:49','2006-02-15 22:18:15'), +(11269,416,2,15761,'0.99','2005-08-23 12:55:51','2006-02-15 22:18:15'), +(11270,417,1,267,'4.99','2005-05-26 16:16:21','2006-02-15 22:18:15'), +(11271,417,2,630,'8.99','2005-05-28 17:24:51','2006-02-15 22:18:16'), +(11272,417,2,833,'4.99','2005-05-29 23:21:56','2006-02-15 22:18:16'), +(11273,417,1,1921,'3.99','2005-06-17 06:04:16','2006-02-15 22:18:16'), +(11274,417,1,3952,'4.99','2005-07-06 21:51:31','2006-02-15 22:18:16'), +(11275,417,1,4418,'2.99','2005-07-07 22:05:30','2006-02-15 22:18:16'), +(11276,417,1,4421,'9.99','2005-07-07 22:07:55','2006-02-15 22:18:16'), +(11277,417,2,6258,'6.99','2005-07-11 15:24:32','2006-02-15 22:18:16'), +(11278,417,1,6312,'4.99','2005-07-11 18:19:02','2006-02-15 22:18:16'), +(11279,417,1,8877,'2.99','2005-07-30 00:15:22','2006-02-15 22:18:16'), +(11280,417,2,9049,'2.99','2005-07-30 06:57:28','2006-02-15 22:18:16'), +(11281,417,1,10478,'0.99','2005-08-01 10:09:06','2006-02-15 22:18:16'), +(11282,417,1,11217,'7.99','2005-08-02 12:26:31','2006-02-15 22:18:16'), +(11283,417,1,11291,'6.99','2005-08-02 14:57:58','2006-02-15 22:18:16'), +(11284,417,2,11303,'0.99','2005-08-02 15:39:18','2006-02-15 22:18:16'), +(11285,417,2,12074,'0.99','2005-08-17 21:50:57','2006-02-15 22:18:16'), +(11286,417,2,12281,'4.99','2005-08-18 04:50:32','2006-02-15 22:18:16'), +(11287,417,1,13545,'4.99','2005-08-20 03:50:15','2006-02-15 22:18:16'), +(11288,417,1,13927,'1.99','2005-08-20 17:11:58','2006-02-15 22:18:16'), +(11289,417,2,14121,'4.99','2005-08-21 01:26:33','2006-02-15 22:18:16'), +(11290,417,1,14304,'6.99','2005-08-21 07:23:10','2006-02-15 22:18:17'), +(11291,417,1,14607,'2.99','2005-08-21 17:56:50','2006-02-15 22:18:17'), +(11292,417,2,14882,'2.99','2005-08-22 03:52:21','2006-02-15 22:18:17'), +(11293,417,1,15795,'0.99','2005-08-23 14:07:56','2006-02-15 22:18:17'), +(11294,417,2,13261,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:17'), +(11295,418,1,2825,'2.99','2005-06-19 20:32:19','2006-02-15 22:18:17'), +(11296,418,2,2943,'2.99','2005-06-20 05:43:05','2006-02-15 22:18:17'), +(11297,418,2,2969,'2.99','2005-06-20 07:44:27','2006-02-15 22:18:17'), +(11298,418,1,3805,'0.99','2005-07-06 15:08:42','2006-02-15 22:18:17'), +(11299,418,2,4852,'7.99','2005-07-08 18:43:15','2006-02-15 22:18:17'), +(11300,418,1,4865,'2.99','2005-07-08 19:09:04','2006-02-15 22:18:17'), +(11301,418,1,4938,'0.99','2005-07-08 22:32:53','2006-02-15 22:18:17'), +(11302,418,1,6150,'4.99','2005-07-11 09:23:56','2006-02-15 22:18:17'), +(11303,418,1,6970,'4.99','2005-07-27 00:26:14','2006-02-15 22:18:17'), +(11304,418,2,8546,'5.99','2005-07-29 11:08:48','2006-02-15 22:18:17'), +(11305,418,2,8591,'0.99','2005-07-29 12:32:33','2006-02-15 22:18:17'), +(11306,418,2,8886,'10.99','2005-07-30 00:36:31','2006-02-15 22:18:17'), +(11307,418,1,9558,'4.99','2005-07-31 02:14:35','2006-02-15 22:18:17'), +(11308,418,2,10537,'5.99','2005-08-01 12:22:28','2006-02-15 22:18:17'), +(11309,418,1,10709,'0.99','2005-08-01 18:43:57','2006-02-15 22:18:18'), +(11310,418,2,10915,'2.99','2005-08-02 02:05:04','2006-02-15 22:18:18'), +(11311,418,1,11270,'2.99','2005-08-02 14:18:07','2006-02-15 22:18:18'), +(11312,418,2,11322,'3.99','2005-08-02 16:23:17','2006-02-15 22:18:18'), +(11313,418,2,11409,'1.99','2005-08-02 19:26:51','2006-02-15 22:18:18'), +(11314,418,1,11650,'4.99','2005-08-17 05:00:03','2006-02-15 22:18:18'), +(11315,418,1,11769,'2.99','2005-08-17 10:04:49','2006-02-15 22:18:18'), +(11316,418,1,11910,'0.99','2005-08-17 15:44:37','2006-02-15 22:18:18'), +(11317,418,2,13312,'0.99','2005-08-19 19:09:14','2006-02-15 22:18:18'), +(11318,418,1,13537,'2.99','2005-08-20 03:39:15','2006-02-15 22:18:18'), +(11319,418,1,13970,'0.99','2005-08-20 18:43:34','2006-02-15 22:18:18'), +(11320,418,1,14484,'0.99','2005-08-21 13:47:29','2006-02-15 22:18:18'), +(11321,418,1,14836,'4.99','2005-08-22 01:52:26','2006-02-15 22:18:18'), +(11322,418,2,14860,'2.99','2005-08-22 02:47:07','2006-02-15 22:18:18'), +(11323,418,1,15466,'4.99','2005-08-23 01:16:55','2006-02-15 22:18:18'), +(11324,418,2,15957,'5.99','2005-08-23 19:21:22','2006-02-15 22:18:18'), +(11325,419,1,62,'2.99','2005-05-25 09:18:52','2006-02-15 22:18:18'), +(11326,419,2,2793,'2.99','2005-06-19 18:52:37','2006-02-15 22:18:18'), +(11327,419,1,3596,'0.99','2005-07-06 05:03:11','2006-02-15 22:18:18'), +(11328,419,1,3694,'4.99','2005-07-06 10:01:23','2006-02-15 22:18:19'), +(11329,419,1,4224,'0.99','2005-07-07 12:24:21','2006-02-15 22:18:19'), +(11330,419,2,5333,'5.99','2005-07-09 16:59:38','2006-02-15 22:18:19'), +(11331,419,2,5863,'0.99','2005-07-10 18:25:23','2006-02-15 22:18:19'), +(11332,419,1,5900,'3.99','2005-07-10 20:21:54','2006-02-15 22:18:19'), +(11333,419,2,5933,'0.99','2005-07-10 22:06:48','2006-02-15 22:18:19'), +(11334,419,2,6173,'0.99','2005-07-11 10:33:11','2006-02-15 22:18:19'), +(11335,419,2,6587,'3.99','2005-07-12 06:56:26','2006-02-15 22:18:19'), +(11336,419,1,7362,'4.99','2005-07-27 14:58:27','2006-02-15 22:18:19'), +(11337,419,1,7619,'2.99','2005-07-28 00:25:41','2006-02-15 22:18:19'), +(11338,419,1,7796,'4.99','2005-07-28 07:39:39','2006-02-15 22:18:19'), +(11339,419,1,10150,'2.99','2005-07-31 22:22:00','2006-02-15 22:18:19'), +(11340,419,1,10372,'2.99','2005-08-01 06:23:48','2006-02-15 22:18:19'), +(11341,419,2,11025,'4.99','2005-08-02 05:39:12','2006-02-15 22:18:19'), +(11342,419,1,11313,'2.99','2005-08-02 16:02:51','2006-02-15 22:18:19'), +(11343,419,2,11323,'2.99','2005-08-02 16:29:57','2006-02-15 22:18:19'), +(11344,419,1,11425,'2.99','2005-08-02 19:58:48','2006-02-15 22:18:19'), +(11345,419,2,11689,'6.99','2005-08-17 06:42:08','2006-02-15 22:18:19'), +(11346,419,1,12460,'7.99','2005-08-18 11:25:13','2006-02-15 22:18:19'), +(11347,419,1,12720,'5.99','2005-08-18 21:28:42','2006-02-15 22:18:20'), +(11348,419,2,14308,'0.99','2005-08-21 07:43:21','2006-02-15 22:18:20'), +(11349,419,2,15779,'4.99','2005-08-23 13:33:46','2006-02-15 22:18:20'), +(11350,420,2,744,'4.99','2005-05-29 09:13:08','2006-02-15 22:18:20'), +(11351,420,2,2672,'3.99','2005-06-19 11:42:04','2006-02-15 22:18:20'), +(11352,420,1,2698,'0.99','2005-06-19 13:29:11','2006-02-15 22:18:20'), +(11353,420,1,2726,'0.99','2005-06-19 15:02:20','2006-02-15 22:18:20'), +(11354,420,1,4176,'4.99','2005-07-07 10:03:34','2006-02-15 22:18:20'), +(11355,420,2,5081,'4.99','2005-07-09 05:25:20','2006-02-15 22:18:20'), +(11356,420,1,5168,'4.99','2005-07-09 09:20:01','2006-02-15 22:18:20'), +(11357,420,2,5911,'0.99','2005-07-10 20:51:42','2006-02-15 22:18:20'), +(11358,420,2,6086,'3.99','2005-07-11 05:29:03','2006-02-15 22:18:20'), +(11359,420,2,6096,'4.99','2005-07-11 06:18:04','2006-02-15 22:18:20'), +(11360,420,2,6582,'4.99','2005-07-12 06:28:12','2006-02-15 22:18:20'), +(11361,420,1,6588,'4.99','2005-07-12 06:57:40','2006-02-15 22:18:20'), +(11362,420,2,7081,'2.99','2005-07-27 04:25:59','2006-02-15 22:18:20'), +(11363,420,2,8485,'0.99','2005-07-29 08:53:09','2006-02-15 22:18:20'), +(11364,420,1,9362,'0.99','2005-07-30 18:44:16','2006-02-15 22:18:20'), +(11365,420,2,10291,'4.99','2005-08-01 03:39:57','2006-02-15 22:18:20'), +(11366,420,2,10601,'10.99','2005-08-01 14:25:40','2006-02-15 22:18:21'), +(11367,420,1,10766,'4.99','2005-08-01 20:36:29','2006-02-15 22:18:21'), +(11368,420,2,11236,'5.99','2005-08-02 13:17:21','2006-02-15 22:18:21'), +(11369,420,2,14525,'0.99','2005-08-21 15:06:49','2006-02-15 22:18:21'), +(11370,420,2,15597,'0.99','2005-08-23 06:21:20','2006-02-15 22:18:21'), +(11371,421,1,507,'0.99','2005-05-28 02:31:19','2006-02-15 22:18:21'), +(11372,421,1,931,'0.99','2005-05-30 12:53:01','2006-02-15 22:18:21'), +(11373,421,1,1693,'4.99','2005-06-16 12:39:51','2006-02-15 22:18:21'), +(11374,421,2,2407,'2.99','2005-06-18 16:50:41','2006-02-15 22:18:21'), +(11375,421,1,3170,'4.99','2005-06-20 22:02:54','2006-02-15 22:18:21'), +(11376,421,1,3491,'7.99','2005-07-05 23:41:08','2006-02-15 22:18:21'), +(11377,421,2,3703,'5.99','2005-07-06 10:15:26','2006-02-15 22:18:21'), +(11378,421,1,3988,'8.99','2005-07-06 23:30:42','2006-02-15 22:18:21'), +(11379,421,2,4456,'5.99','2005-07-07 23:45:21','2006-02-15 22:18:21'), +(11380,421,1,6220,'0.99','2005-07-11 13:22:06','2006-02-15 22:18:21'), +(11381,421,2,6960,'3.99','2005-07-27 00:08:33','2006-02-15 22:18:21'), +(11382,421,2,7449,'4.99','2005-07-27 18:17:41','2006-02-15 22:18:21'), +(11383,421,2,8025,'2.99','2005-07-28 16:03:27','2006-02-15 22:18:21'), +(11384,421,1,8268,'4.99','2005-07-29 01:23:23','2006-02-15 22:18:21'), +(11385,421,1,8725,'4.99','2005-07-29 18:08:42','2006-02-15 22:18:22'), +(11386,421,2,9377,'4.99','2005-07-30 19:12:18','2006-02-15 22:18:22'), +(11387,421,2,9875,'0.99','2005-07-31 13:37:41','2006-02-15 22:18:22'), +(11388,421,1,10200,'4.99','2005-08-01 00:39:05','2006-02-15 22:18:22'), +(11389,421,2,11089,'2.99','2005-08-02 07:52:20','2006-02-15 22:18:22'), +(11390,421,1,11263,'4.99','2005-08-02 14:02:19','2006-02-15 22:18:22'), +(11391,421,1,11523,'3.99','2005-08-17 00:10:10','2006-02-15 22:18:22'), +(11392,421,1,12279,'4.99','2005-08-18 04:47:30','2006-02-15 22:18:22'), +(11393,421,2,13461,'9.99','2005-08-20 00:49:04','2006-02-15 22:18:22'), +(11394,421,1,13872,'4.99','2005-08-20 15:10:30','2006-02-15 22:18:22'), +(11395,421,1,14742,'4.99','2005-08-21 22:39:01','2006-02-15 22:18:22'), +(11396,421,1,14887,'3.99','2005-08-22 04:04:31','2006-02-15 22:18:22'), +(11397,421,2,15710,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:22'), +(11398,422,1,398,'0.99','2005-05-27 12:44:03','2006-02-15 22:18:22'), +(11399,422,1,1846,'0.99','2005-06-17 00:02:44','2006-02-15 22:18:22'), +(11400,422,1,1897,'4.99','2005-06-17 04:26:23','2006-02-15 22:18:22'), +(11401,422,2,2747,'2.99','2005-06-19 16:22:07','2006-02-15 22:18:22'), +(11402,422,1,2778,'5.99','2005-06-19 18:18:12','2006-02-15 22:18:22'), +(11403,422,1,3553,'4.99','2005-07-06 02:35:41','2006-02-15 22:18:22'), +(11404,422,2,4463,'2.99','2005-07-08 00:04:59','2006-02-15 22:18:23'), +(11405,422,2,4504,'0.99','2005-07-08 02:19:27','2006-02-15 22:18:23'), +(11406,422,1,5784,'1.99','2005-07-10 14:03:28','2006-02-15 22:18:23'), +(11407,422,2,7827,'0.99','2005-07-28 08:37:22','2006-02-15 22:18:23'), +(11408,422,2,8206,'4.99','2005-07-28 23:20:31','2006-02-15 22:18:23'), +(11409,422,2,9541,'4.99','2005-07-31 01:40:14','2006-02-15 22:18:23'), +(11410,422,2,10833,'6.99','2005-08-01 23:25:55','2006-02-15 22:18:23'), +(11411,422,2,11325,'6.99','2005-08-02 16:33:11','2006-02-15 22:18:23'), +(11412,422,1,11658,'2.99','2005-08-17 05:19:17','2006-02-15 22:18:23'), +(11413,422,1,11842,'4.99','2005-08-17 13:13:37','2006-02-15 22:18:23'), +(11414,422,1,12907,'9.99','2005-08-19 04:16:13','2006-02-15 22:18:23'), +(11415,422,2,13216,'1.99','2005-08-19 15:36:05','2006-02-15 22:18:23'), +(11416,422,2,13625,'1.99','2005-08-20 06:52:03','2006-02-15 22:18:23'), +(11417,422,2,13709,'0.99','2005-08-20 09:34:51','2006-02-15 22:18:23'), +(11418,422,2,13722,'4.99','2005-08-20 10:03:45','2006-02-15 22:18:23'), +(11419,422,1,14861,'4.99','2005-08-22 02:48:05','2006-02-15 22:18:23'), +(11420,422,1,15272,'3.99','2005-08-22 18:49:40','2006-02-15 22:18:23'), +(11421,422,1,15273,'2.99','2005-08-22 18:53:28','2006-02-15 22:18:23'), +(11422,422,2,15316,'2.99','2005-08-22 20:07:03','2006-02-15 22:18:23'), +(11423,422,2,15441,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:24'), +(11424,423,1,1504,'3.99','2005-06-15 22:08:06','2006-02-15 22:18:24'), +(11425,423,2,1827,'0.99','2005-06-16 21:54:40','2006-02-15 22:18:24'), +(11426,423,1,2600,'6.99','2005-06-19 06:07:25','2006-02-15 22:18:24'), +(11427,423,2,2758,'6.99','2005-06-19 17:04:35','2006-02-15 22:18:24'), +(11428,423,1,3072,'8.99','2005-06-20 14:21:31','2006-02-15 22:18:24'), +(11429,423,2,4105,'0.99','2005-07-07 06:31:00','2006-02-15 22:18:24'), +(11430,423,1,4250,'0.99','2005-07-07 14:08:11','2006-02-15 22:18:24'), +(11431,423,1,4679,'2.99','2005-07-08 10:33:14','2006-02-15 22:18:24'), +(11432,423,1,6506,'1.99','2005-07-12 03:28:22','2006-02-15 22:18:24'), +(11433,423,1,7016,'5.99','2005-07-27 02:15:16','2006-02-15 22:18:24'), +(11434,423,2,7141,'2.99','2005-07-27 06:55:27','2006-02-15 22:18:24'), +(11435,423,1,7157,'4.99','2005-07-27 07:20:28','2006-02-15 22:18:24'), +(11436,423,1,7290,'0.99','2005-07-27 12:28:45','2006-02-15 22:18:24'), +(11437,423,2,7539,'9.99','2005-07-27 21:39:42','2006-02-15 22:18:24'), +(11438,423,1,7849,'9.99','2005-07-28 09:30:02','2006-02-15 22:18:24'), +(11439,423,2,8082,'3.99','2005-07-28 18:08:02','2006-02-15 22:18:24'), +(11440,423,2,8595,'9.99','2005-07-29 12:47:43','2006-02-15 22:18:24'), +(11441,423,2,9026,'2.99','2005-07-30 05:55:31','2006-02-15 22:18:24'), +(11442,423,1,10488,'2.99','2005-08-01 10:27:27','2006-02-15 22:18:25'), +(11443,423,1,11091,'2.99','2005-08-02 07:56:41','2006-02-15 22:18:25'), +(11444,423,2,11514,'4.99','2005-08-16 23:53:10','2006-02-15 22:18:25'), +(11445,423,2,12806,'4.99','2005-08-19 00:37:26','2006-02-15 22:18:25'), +(11446,423,2,14191,'6.99','2005-08-21 03:35:58','2006-02-15 22:18:25'), +(11447,423,2,14902,'4.99','2005-08-22 04:31:50','2006-02-15 22:18:25'), +(11448,423,1,15380,'0.99','2005-08-22 22:28:15','2006-02-15 22:18:25'), +(11449,423,1,15755,'4.99','2005-08-23 12:46:38','2006-02-15 22:18:25'), +(11450,424,2,403,'0.99','2005-05-27 13:28:52','2006-02-15 22:18:25'), +(11451,424,2,3044,'4.99','2005-06-20 12:38:49','2006-02-15 22:18:25'), +(11452,424,1,3166,'6.99','2005-06-20 21:32:32','2006-02-15 22:18:25'), +(11453,424,2,3404,'0.99','2005-06-21 15:57:52','2006-02-15 22:18:25'), +(11454,424,2,3746,'0.99','2005-07-06 12:10:51','2006-02-15 22:18:25'), +(11455,424,2,4512,'0.99','2005-07-08 02:38:56','2006-02-15 22:18:25'), +(11456,424,2,4559,'0.99','2005-07-08 04:56:49','2006-02-15 22:18:25'), +(11457,424,2,4696,'5.99','2005-07-08 11:12:27','2006-02-15 22:18:25'), +(11458,424,1,5568,'0.99','2005-07-10 03:36:56','2006-02-15 22:18:25'), +(11459,424,1,5611,'3.99','2005-07-10 05:13:43','2006-02-15 22:18:25'), +(11460,424,1,6589,'2.99','2005-07-12 07:06:29','2006-02-15 22:18:25'), +(11461,424,1,7594,'2.99','2005-07-27 23:30:41','2006-02-15 22:18:26'), +(11462,424,2,8194,'2.99','2005-07-28 22:51:44','2006-02-15 22:18:26'), +(11463,424,1,8918,'4.99','2005-07-30 01:56:22','2006-02-15 22:18:26'), +(11464,424,2,8964,'1.99','2005-07-30 03:49:35','2006-02-15 22:18:26'), +(11465,424,2,8999,'2.99','2005-07-30 04:55:46','2006-02-15 22:18:26'), +(11466,424,1,9471,'4.99','2005-07-30 23:02:36','2006-02-15 22:18:26'), +(11467,424,1,9516,'8.99','2005-07-31 00:40:58','2006-02-15 22:18:26'), +(11468,424,2,9878,'4.99','2005-07-31 13:42:02','2006-02-15 22:18:26'), +(11469,424,1,10017,'6.99','2005-07-31 18:13:22','2006-02-15 22:18:26'), +(11470,424,2,10369,'4.99','2005-08-01 06:13:44','2006-02-15 22:18:26'), +(11471,424,1,10866,'2.99','2005-08-02 00:22:49','2006-02-15 22:18:26'), +(11472,424,2,11374,'2.99','2005-08-02 18:14:54','2006-02-15 22:18:26'), +(11473,424,2,11562,'6.99','2005-08-17 01:23:39','2006-02-15 22:18:26'), +(11474,424,2,11833,'2.99','2005-08-17 13:00:33','2006-02-15 22:18:26'), +(11475,424,2,12729,'0.99','2005-08-18 21:52:59','2006-02-15 22:18:26'), +(11476,424,2,13793,'3.99','2005-08-20 12:22:04','2006-02-15 22:18:26'), +(11477,424,2,15113,'0.99','2005-08-22 12:23:59','2006-02-15 22:18:26'), +(11478,424,2,15941,'9.99','2005-08-23 18:46:44','2006-02-15 22:18:26'), +(11479,424,1,15094,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:27'), +(11480,425,2,1098,'5.99','2005-05-31 13:51:48','2006-02-15 22:18:27'), +(11481,425,1,3276,'6.99','2005-06-21 05:35:52','2006-02-15 22:18:27'), +(11482,425,1,3807,'4.99','2005-07-06 15:11:44','2006-02-15 22:18:27'), +(11483,425,2,4361,'2.99','2005-07-07 19:33:23','2006-02-15 22:18:27'), +(11484,425,2,4362,'5.99','2005-07-07 19:35:30','2006-02-15 22:18:27'), +(11485,425,2,4483,'8.99','2005-07-08 01:03:12','2006-02-15 22:18:27'), +(11486,425,1,4659,'2.99','2005-07-08 09:53:28','2006-02-15 22:18:27'), +(11487,425,1,4884,'7.99','2005-07-08 19:49:17','2006-02-15 22:18:27'), +(11488,425,1,4939,'7.99','2005-07-08 22:35:30','2006-02-15 22:18:27'), +(11489,425,2,5363,'2.99','2005-07-09 18:18:49','2006-02-15 22:18:27'), +(11490,425,1,5371,'4.99','2005-07-09 18:47:48','2006-02-15 22:18:27'), +(11491,425,2,6318,'2.99','2005-07-11 18:48:22','2006-02-15 22:18:27'), +(11492,425,1,6603,'2.99','2005-07-12 07:52:55','2006-02-15 22:18:27'), +(11493,425,1,7249,'4.99','2005-07-27 10:39:53','2006-02-15 22:18:27'), +(11494,425,1,8974,'0.99','2005-07-30 04:09:16','2006-02-15 22:18:27'), +(11495,425,1,9170,'0.99','2005-07-30 11:35:24','2006-02-15 22:18:27'), +(11496,425,2,9682,'2.99','2005-07-31 06:47:10','2006-02-15 22:18:27'), +(11497,425,1,10121,'0.99','2005-07-31 21:24:53','2006-02-15 22:18:27'), +(11498,425,2,10163,'0.99','2005-07-31 23:12:34','2006-02-15 22:18:28'), +(11499,425,1,10545,'0.99','2005-08-01 12:37:46','2006-02-15 22:18:28'), +(11500,425,2,13040,'0.99','2005-08-19 09:04:24','2006-02-15 22:18:28'), +(11501,425,2,14089,'5.99','2005-08-20 23:59:02','2006-02-15 22:18:28'), +(11502,425,2,14881,'4.99','2005-08-22 03:47:39','2006-02-15 22:18:28'), +(11503,425,1,15064,'0.99','2005-08-22 10:41:58','2006-02-15 22:18:28'), +(11504,425,2,15784,'6.99','2005-08-23 13:46:00','2006-02-15 22:18:28'), +(11505,425,2,16036,'2.99','2005-08-23 22:12:44','2006-02-15 22:18:28'), +(11506,426,2,604,'0.99','2005-05-28 14:37:07','2006-02-15 22:18:28'), +(11507,426,1,1709,'6.99','2005-06-16 14:10:15','2006-02-15 22:18:28'), +(11508,426,1,1842,'7.99','2005-06-16 23:45:59','2006-02-15 22:18:28'), +(11509,426,1,2204,'2.99','2005-06-18 02:11:38','2006-02-15 22:18:28'), +(11510,426,1,2804,'0.99','2005-06-19 19:24:54','2006-02-15 22:18:28'), +(11511,426,1,3243,'0.99','2005-06-21 03:00:11','2006-02-15 22:18:28'), +(11512,426,2,4114,'2.99','2005-07-07 06:51:12','2006-02-15 22:18:28'), +(11513,426,2,4398,'4.99','2005-07-07 21:18:44','2006-02-15 22:18:28'), +(11514,426,1,4900,'4.99','2005-07-08 20:38:06','2006-02-15 22:18:28'), +(11515,426,1,5725,'3.99','2005-07-10 11:21:21','2006-02-15 22:18:28'), +(11516,426,1,7495,'4.99','2005-07-27 20:01:20','2006-02-15 22:18:28'), +(11517,426,1,7527,'10.99','2005-07-27 21:14:28','2006-02-15 22:18:29'), +(11518,426,1,7711,'4.99','2005-07-28 04:26:42','2006-02-15 22:18:29'), +(11519,426,1,7789,'5.99','2005-07-28 07:22:07','2006-02-15 22:18:29'), +(11520,426,1,9185,'5.99','2005-07-30 12:10:40','2006-02-15 22:18:29'), +(11521,426,2,9247,'4.99','2005-07-30 14:13:56','2006-02-15 22:18:29'), +(11522,426,2,10172,'10.99','2005-07-31 23:29:51','2006-02-15 22:18:29'), +(11523,426,1,10505,'1.99','2005-08-01 11:13:59','2006-02-15 22:18:29'), +(11524,426,2,11237,'0.99','2005-08-02 13:24:01','2006-02-15 22:18:29'), +(11525,426,2,11876,'0.99','2005-08-17 14:18:21','2006-02-15 22:18:29'), +(11526,426,2,11938,'6.99','2005-08-17 16:54:54','2006-02-15 22:18:29'), +(11527,426,2,12548,'5.99','2005-08-18 14:35:26','2006-02-15 22:18:29'), +(11528,426,2,12707,'4.99','2005-08-18 20:52:02','2006-02-15 22:18:29'), +(11529,426,1,12822,'4.99','2005-08-19 01:15:24','2006-02-15 22:18:29'), +(11530,426,2,13834,'2.99','2005-08-20 14:03:08','2006-02-15 22:18:29'), +(11531,426,2,14151,'6.99','2005-08-21 02:23:25','2006-02-15 22:18:29'), +(11532,426,2,14826,'2.99','2005-08-22 01:32:14','2006-02-15 22:18:29'), +(11533,427,2,82,'6.99','2005-05-25 12:17:46','2006-02-15 22:18:29'), +(11534,427,1,1342,'5.99','2005-06-15 12:26:21','2006-02-15 22:18:29'), +(11535,427,2,1628,'3.99','2005-06-16 07:52:55','2006-02-15 22:18:30'), +(11536,427,1,1648,'5.99','2005-06-16 09:17:07','2006-02-15 22:18:30'), +(11537,427,1,1857,'1.99','2005-06-17 01:12:58','2006-02-15 22:18:30'), +(11538,427,2,2466,'0.99','2005-06-18 20:18:42','2006-02-15 22:18:30'), +(11539,427,1,4793,'3.99','2005-07-08 16:30:01','2006-02-15 22:18:30'), +(11540,427,2,5476,'2.99','2005-07-09 23:37:09','2006-02-15 22:18:30'), +(11541,427,2,5586,'5.99','2005-07-10 04:17:06','2006-02-15 22:18:30'), +(11542,427,1,6423,'6.99','2005-07-11 23:47:31','2006-02-15 22:18:30'), +(11543,427,1,6509,'2.99','2005-07-12 03:35:01','2006-02-15 22:18:30'), +(11544,427,2,6938,'7.99','2005-07-26 23:16:04','2006-02-15 22:18:30'), +(11545,427,2,8182,'3.99','2005-07-28 22:19:12','2006-02-15 22:18:30'), +(11546,427,1,8531,'5.99','2005-07-29 10:26:15','2006-02-15 22:18:30'), +(11547,427,2,8658,'5.99','2005-07-29 15:16:37','2006-02-15 22:18:30'), +(11548,427,2,9978,'2.99','2005-07-31 16:59:51','2006-02-15 22:18:30'), +(11549,427,1,10417,'4.99','2005-08-01 08:10:36','2006-02-15 22:18:30'), +(11550,427,1,10464,'5.99','2005-08-01 09:43:14','2006-02-15 22:18:30'), +(11551,427,2,10560,'4.99','2005-08-01 13:04:57','2006-02-15 22:18:30'), +(11552,427,1,11024,'5.99','2005-08-02 05:38:31','2006-02-15 22:18:30'), +(11553,427,1,13720,'1.99','2005-08-20 10:01:39','2006-02-15 22:18:30'), +(11554,427,2,14201,'6.99','2005-08-21 03:51:34','2006-02-15 22:18:31'), +(11555,427,1,14287,'3.99','2005-08-21 06:53:59','2006-02-15 22:18:31'), +(11556,427,1,15330,'3.99','2005-08-22 20:35:30','2006-02-15 22:18:31'), +(11557,428,2,634,'4.99','2005-05-28 17:40:35','2006-02-15 22:18:31'), +(11558,428,1,1227,'3.99','2005-06-15 03:50:03','2006-02-15 22:18:31'), +(11559,428,2,1471,'2.99','2005-06-15 20:53:26','2006-02-15 22:18:31'), +(11560,428,1,1601,'3.99','2005-06-16 06:11:13','2006-02-15 22:18:31'), +(11561,428,1,2677,'2.99','2005-06-19 12:01:59','2006-02-15 22:18:31'), +(11562,428,2,3377,'0.99','2005-06-21 13:51:12','2006-02-15 22:18:31'), +(11563,428,1,3702,'2.99','2005-07-06 10:13:56','2006-02-15 22:18:31'), +(11564,428,1,3925,'5.99','2005-07-06 20:41:44','2006-02-15 22:18:31'), +(11565,428,1,4151,'0.99','2005-07-07 08:49:02','2006-02-15 22:18:31'), +(11566,428,1,5373,'4.99','2005-07-09 18:48:57','2006-02-15 22:18:31'), +(11567,428,1,6735,'5.99','2005-07-12 14:08:20','2006-02-15 22:18:31'), +(11568,428,1,7823,'6.99','2005-07-28 08:32:53','2006-02-15 22:18:31'), +(11569,428,1,8155,'2.99','2005-07-28 20:57:06','2006-02-15 22:18:31'), +(11570,428,2,8387,'4.99','2005-07-29 05:47:27','2006-02-15 22:18:31'), +(11571,428,2,8528,'4.99','2005-07-29 10:24:22','2006-02-15 22:18:31'), +(11572,428,1,9904,'5.99','2005-07-31 14:34:17','2006-02-15 22:18:31'), +(11573,428,2,9982,'2.99','2005-07-31 17:09:02','2006-02-15 22:18:32'), +(11574,428,2,10577,'4.99','2005-08-01 13:46:38','2006-02-15 22:18:32'), +(11575,428,2,10888,'2.99','2005-08-02 00:52:45','2006-02-15 22:18:32'), +(11576,428,2,11536,'0.99','2005-08-17 00:40:03','2006-02-15 22:18:32'), +(11577,429,2,150,'5.99','2005-05-26 00:28:39','2006-02-15 22:18:32'), +(11578,429,2,290,'2.99','2005-05-26 20:08:33','2006-02-15 22:18:32'), +(11579,429,2,601,'7.99','2005-05-28 14:08:22','2006-02-15 22:18:32'), +(11580,429,2,799,'4.99','2005-05-29 17:24:48','2006-02-15 22:18:32'), +(11581,429,2,844,'4.99','2005-05-30 00:58:20','2006-02-15 22:18:32'), +(11582,429,2,1781,'5.99','2005-06-16 19:20:24','2006-02-15 22:18:32'), +(11583,429,2,1798,'2.99','2005-06-16 20:16:15','2006-02-15 22:18:32'), +(11584,429,2,1916,'7.99','2005-06-17 05:29:59','2006-02-15 22:18:32'), +(11585,429,1,3409,'2.99','2005-06-21 16:17:38','2006-02-15 22:18:32'), +(11586,429,2,5868,'4.99','2005-07-10 18:39:16','2006-02-15 22:18:32'), +(11587,429,2,6196,'7.99','2005-07-11 12:05:46','2006-02-15 22:18:32'), +(11588,429,2,6886,'6.99','2005-07-12 20:58:04','2006-02-15 22:18:32'), +(11589,429,1,6977,'6.99','2005-07-27 00:40:50','2006-02-15 22:18:32'), +(11590,429,2,7352,'4.99','2005-07-27 14:38:29','2006-02-15 22:18:32'), +(11591,429,2,8136,'1.99','2005-07-28 20:05:48','2006-02-15 22:18:33'), +(11592,429,2,8143,'2.99','2005-07-28 20:23:11','2006-02-15 22:18:33'), +(11593,429,2,8175,'7.99','2005-07-28 21:38:16','2006-02-15 22:18:33'), +(11594,429,1,9849,'0.99','2005-07-31 12:44:34','2006-02-15 22:18:33'), +(11595,429,1,12259,'2.99','2005-08-18 04:14:35','2006-02-15 22:18:33'), +(11596,429,1,12953,'4.99','2005-08-19 06:04:07','2006-02-15 22:18:33'), +(11597,429,2,14495,'4.99','2005-08-21 14:04:39','2006-02-15 22:18:33'), +(11598,430,2,30,'2.99','2005-05-25 04:01:32','2006-02-15 22:18:33'), +(11599,430,1,364,'4.99','2005-05-27 07:20:12','2006-02-15 22:18:33'), +(11600,430,2,1207,'0.99','2005-06-15 02:27:08','2006-02-15 22:18:33'), +(11601,430,1,1274,'2.99','2005-06-15 07:52:52','2006-02-15 22:18:33'), +(11602,430,1,1538,'2.99','2005-06-16 01:05:50','2006-02-15 22:18:33'), +(11603,430,1,1759,'6.99','2005-06-16 17:46:37','2006-02-15 22:18:33'), +(11604,430,2,2892,'0.99','2005-06-20 02:06:39','2006-02-15 22:18:33'), +(11605,430,2,3153,'0.99','2005-06-20 20:44:15','2006-02-15 22:18:33'), +(11606,430,1,5002,'4.99','2005-07-09 01:17:08','2006-02-15 22:18:33'), +(11607,430,1,5217,'5.99','2005-07-09 11:56:50','2006-02-15 22:18:33'), +(11608,430,2,5879,'6.99','2005-07-10 19:12:47','2006-02-15 22:18:33'), +(11609,430,1,5958,'6.99','2005-07-10 23:31:51','2006-02-15 22:18:33'), +(11610,430,2,6043,'0.99','2005-07-11 03:18:10','2006-02-15 22:18:34'), +(11611,430,1,8560,'4.99','2005-07-29 11:27:27','2006-02-15 22:18:34'), +(11612,430,2,9450,'2.99','2005-07-30 22:04:04','2006-02-15 22:18:34'), +(11613,430,1,12723,'0.99','2005-08-18 21:34:16','2006-02-15 22:18:34'), +(11614,430,1,12965,'4.99','2005-08-19 06:33:00','2006-02-15 22:18:34'), +(11615,430,1,13007,'0.99','2005-08-19 07:47:43','2006-02-15 22:18:34'), +(11616,430,2,13452,'0.99','2005-08-20 00:20:07','2006-02-15 22:18:34'), +(11617,430,2,13454,'2.99','2005-08-20 00:30:52','2006-02-15 22:18:34'), +(11618,430,1,14058,'5.99','2005-08-20 22:24:35','2006-02-15 22:18:34'), +(11619,430,1,15031,'4.99','2005-08-22 09:11:48','2006-02-15 22:18:34'), +(11620,431,2,1126,'2.99','2005-05-31 17:27:45','2006-02-15 22:18:34'), +(11621,431,2,1561,'2.99','2005-06-16 02:41:30','2006-02-15 22:18:34'), +(11622,431,1,2096,'4.99','2005-06-17 18:33:04','2006-02-15 22:18:34'), +(11623,431,1,2269,'3.99','2005-06-18 06:20:54','2006-02-15 22:18:34'), +(11624,431,2,2281,'4.99','2005-06-18 06:47:29','2006-02-15 22:18:34'), +(11625,431,2,2761,'2.99','2005-06-19 17:22:17','2006-02-15 22:18:34'), +(11626,431,2,3304,'6.99','2005-06-21 07:43:40','2006-02-15 22:18:34'), +(11627,431,2,3369,'8.99','2005-06-21 13:20:31','2006-02-15 22:18:34'), +(11628,431,1,4144,'3.99','2005-07-07 08:25:44','2006-02-15 22:18:35'), +(11629,431,1,4801,'2.99','2005-07-08 16:51:36','2006-02-15 22:18:35'), +(11630,431,1,4863,'0.99','2005-07-08 19:03:15','2006-02-15 22:18:35'), +(11631,431,2,7978,'4.99','2005-07-28 14:16:14','2006-02-15 22:18:35'), +(11632,431,2,8810,'4.99','2005-07-29 21:45:19','2006-02-15 22:18:35'), +(11633,431,2,10508,'0.99','2005-08-01 11:23:27','2006-02-15 22:18:35'), +(11634,431,1,10527,'4.99','2005-08-01 11:55:54','2006-02-15 22:18:35'), +(11635,431,2,10959,'6.99','2005-08-02 03:39:39','2006-02-15 22:18:35'), +(11636,431,2,11538,'2.99','2005-08-17 00:44:04','2006-02-15 22:18:35'), +(11637,431,1,12273,'6.99','2005-08-18 04:40:50','2006-02-15 22:18:35'), +(11638,431,2,13153,'1.99','2005-08-19 13:09:47','2006-02-15 22:18:35'), +(11639,431,1,13784,'4.99','2005-08-20 12:11:28','2006-02-15 22:18:35'), +(11640,431,1,15809,'2.99','2005-08-23 14:42:07','2006-02-15 22:18:35'), +(11641,431,1,15960,'2.99','2005-08-23 19:35:42','2006-02-15 22:18:35'), +(11642,431,2,13587,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:35'), +(11643,432,2,326,'7.99','2005-05-27 01:10:11','2006-02-15 22:18:35'), +(11644,432,1,550,'5.99','2005-05-28 07:39:16','2006-02-15 22:18:35'), +(11645,432,1,897,'8.99','2005-05-30 09:10:01','2006-02-15 22:18:35'), +(11646,432,2,1180,'5.99','2005-06-15 00:39:01','2006-02-15 22:18:35'), +(11647,432,2,1597,'2.99','2005-06-16 05:47:03','2006-02-15 22:18:36'), +(11648,432,2,3194,'4.99','2005-06-20 23:59:57','2006-02-15 22:18:36'), +(11649,432,1,4965,'5.99','2005-07-08 23:46:57','2006-02-15 22:18:36'), +(11650,432,1,4973,'4.99','2005-07-08 23:58:18','2006-02-15 22:18:36'), +(11651,432,1,5204,'2.99','2005-07-09 10:54:14','2006-02-15 22:18:36'), +(11652,432,1,5322,'6.99','2005-07-09 16:28:13','2006-02-15 22:18:36'), +(11653,432,1,5944,'4.99','2005-07-10 22:51:44','2006-02-15 22:18:36'), +(11654,432,1,5990,'4.99','2005-07-11 01:03:14','2006-02-15 22:18:36'), +(11655,432,2,7326,'4.99','2005-07-27 13:50:40','2006-02-15 22:18:36'), +(11656,432,2,7681,'0.99','2005-07-28 03:07:09','2006-02-15 22:18:36'), +(11657,432,2,8079,'4.99','2005-07-28 17:58:36','2006-02-15 22:18:36'), +(11658,432,2,8094,'6.99','2005-07-28 18:30:28','2006-02-15 22:18:36'), +(11659,432,2,9916,'4.99','2005-07-31 14:54:52','2006-02-15 22:18:36'), +(11660,432,2,9984,'2.99','2005-07-31 17:12:23','2006-02-15 22:18:36'), +(11661,432,2,11870,'0.99','2005-08-17 14:11:28','2006-02-15 22:18:36'), +(11662,432,1,12767,'6.99','2005-08-18 23:25:49','2006-02-15 22:18:36'), +(11663,432,1,14027,'2.99','2005-08-20 21:21:34','2006-02-15 22:18:36'), +(11664,432,1,15523,'4.99','2005-08-23 03:32:36','2006-02-15 22:18:36'), +(11665,432,1,15713,'6.99','2005-08-23 10:56:15','2006-02-15 22:18:36'), +(11666,433,2,146,'8.99','2005-05-26 00:07:11','2006-02-15 22:18:37'), +(11667,433,1,691,'10.99','2005-05-29 01:01:26','2006-02-15 22:18:37'), +(11668,433,2,4087,'6.99','2005-07-07 05:30:56','2006-02-15 22:18:37'), +(11669,433,2,4158,'0.99','2005-07-07 09:05:42','2006-02-15 22:18:37'), +(11670,433,2,4988,'7.99','2005-07-09 00:46:14','2006-02-15 22:18:37'), +(11671,433,2,5457,'0.99','2005-07-09 22:33:14','2006-02-15 22:18:37'), +(11672,433,1,5969,'8.99','2005-07-11 00:03:22','2006-02-15 22:18:37'), +(11673,433,1,6765,'5.99','2005-07-12 15:30:47','2006-02-15 22:18:37'), +(11674,433,1,6848,'0.99','2005-07-12 19:24:07','2006-02-15 22:18:37'), +(11675,433,1,6850,'4.99','2005-07-12 19:30:42','2006-02-15 22:18:37'), +(11676,433,1,7821,'4.99','2005-07-28 08:31:23','2006-02-15 22:18:37'), +(11677,433,2,7907,'4.99','2005-07-28 11:32:00','2006-02-15 22:18:37'), +(11678,433,1,8414,'5.99','2005-07-29 06:48:35','2006-02-15 22:18:37'), +(11679,433,1,8713,'2.99','2005-07-29 17:31:19','2006-02-15 22:18:37'), +(11680,433,2,9161,'4.99','2005-07-30 11:19:18','2006-02-15 22:18:37'), +(11681,433,1,9294,'3.99','2005-07-30 16:14:37','2006-02-15 22:18:37'), +(11682,433,1,10663,'4.99','2005-08-01 16:51:08','2006-02-15 22:18:37'), +(11683,433,1,11664,'2.99','2005-08-17 05:35:52','2006-02-15 22:18:37'), +(11684,433,2,12669,'6.99','2005-08-18 19:17:47','2006-02-15 22:18:38'), +(11685,433,2,13273,'4.99','2005-08-19 17:49:13','2006-02-15 22:18:38'), +(11686,433,1,13801,'4.99','2005-08-20 12:40:53','2006-02-15 22:18:38'), +(11687,433,2,14523,'4.99','2005-08-21 15:03:45','2006-02-15 22:18:38'), +(11688,433,1,14559,'6.99','2005-08-21 16:11:35','2006-02-15 22:18:38'), +(11689,433,2,15476,'4.99','2005-08-23 01:45:07','2006-02-15 22:18:38'), +(11690,433,1,15502,'5.99','2005-08-23 02:40:04','2006-02-15 22:18:38'), +(11691,434,2,508,'5.99','2005-05-28 02:40:50','2006-02-15 22:18:38'), +(11692,434,1,1225,'0.99','2005-06-15 03:45:35','2006-02-15 22:18:38'), +(11693,434,2,1584,'5.99','2005-06-16 04:50:50','2006-02-15 22:18:38'), +(11694,434,2,2415,'7.99','2005-06-18 17:02:42','2006-02-15 22:18:38'), +(11695,434,1,2430,'3.99','2005-06-18 17:51:46','2006-02-15 22:18:38'), +(11696,434,1,2494,'3.99','2005-06-18 22:15:09','2006-02-15 22:18:38'), +(11697,434,1,3014,'2.99','2005-06-20 10:45:20','2006-02-15 22:18:38'), +(11698,434,2,3037,'2.99','2005-06-20 12:28:03','2006-02-15 22:18:38'), +(11699,434,1,4414,'2.99','2005-07-07 22:00:21','2006-02-15 22:18:38'), +(11700,434,2,4654,'6.99','2005-07-08 09:48:03','2006-02-15 22:18:38'), +(11701,434,2,4960,'10.99','2005-07-08 23:27:16','2006-02-15 22:18:38'), +(11702,434,2,5464,'2.99','2005-07-09 22:58:14','2006-02-15 22:18:39'), +(11703,434,2,6972,'0.99','2005-07-27 00:31:25','2006-02-15 22:18:39'), +(11704,434,1,7260,'6.99','2005-07-27 11:09:28','2006-02-15 22:18:39'), +(11705,434,2,7479,'2.99','2005-07-27 19:18:17','2006-02-15 22:18:39'), +(11706,434,1,8205,'0.99','2005-07-28 23:18:48','2006-02-15 22:18:39'), +(11707,434,1,9350,'4.99','2005-07-30 18:24:30','2006-02-15 22:18:39'), +(11708,434,1,11242,'3.99','2005-08-02 13:32:00','2006-02-15 22:18:39'), +(11709,434,1,11867,'2.99','2005-08-17 14:04:28','2006-02-15 22:18:39'), +(11710,434,2,12030,'2.99','2005-08-17 20:10:48','2006-02-15 22:18:39'), +(11711,434,2,12146,'2.99','2005-08-18 00:10:04','2006-02-15 22:18:39'), +(11712,434,2,12624,'7.99','2005-08-18 17:35:00','2006-02-15 22:18:39'), +(11713,434,2,13359,'9.99','2005-08-19 21:04:49','2006-02-15 22:18:39'), +(11714,434,1,13383,'7.99','2005-08-19 21:38:44','2006-02-15 22:18:39'), +(11715,434,2,14553,'4.99','2005-08-21 15:59:40','2006-02-15 22:18:39'), +(11716,434,2,15016,'3.99','2005-08-22 08:47:35','2006-02-15 22:18:39'), +(11717,434,2,15385,'4.99','2005-08-22 22:37:34','2006-02-15 22:18:39'), +(11718,435,1,757,'7.99','2005-05-29 10:29:47','2006-02-15 22:18:39'), +(11719,435,1,806,'4.99','2005-05-29 18:31:30','2006-02-15 22:18:39'), +(11720,435,2,1443,'0.99','2005-06-15 18:57:51','2006-02-15 22:18:39'), +(11721,435,1,2984,'0.99','2005-06-20 08:43:44','2006-02-15 22:18:40'), +(11722,435,1,3690,'0.99','2005-07-06 09:46:03','2006-02-15 22:18:40'), +(11723,435,1,3918,'8.99','2005-07-06 20:26:15','2006-02-15 22:18:40'), +(11724,435,2,5220,'4.99','2005-07-09 11:59:04','2006-02-15 22:18:40'), +(11725,435,2,6051,'4.99','2005-07-11 03:46:41','2006-02-15 22:18:40'), +(11726,435,1,6935,'2.99','2005-07-26 23:13:10','2006-02-15 22:18:40'), +(11727,435,1,8386,'5.99','2005-07-29 05:45:30','2006-02-15 22:18:40'), +(11728,435,2,8891,'4.99','2005-07-30 00:46:55','2006-02-15 22:18:40'), +(11729,435,2,9269,'0.99','2005-07-30 15:02:33','2006-02-15 22:18:40'), +(11730,435,1,9655,'3.99','2005-07-31 05:57:54','2006-02-15 22:18:40'), +(11731,435,2,9829,'4.99','2005-07-31 11:58:38','2006-02-15 22:18:40'), +(11732,435,1,10998,'6.99','2005-08-02 04:50:55','2006-02-15 22:18:40'), +(11733,435,1,11041,'2.99','2005-08-02 06:03:53','2006-02-15 22:18:40'), +(11734,435,1,11786,'3.99','2005-08-17 10:57:40','2006-02-15 22:18:40'), +(11735,435,1,11796,'0.99','2005-08-17 11:16:47','2006-02-15 22:18:40'), +(11736,435,2,12046,'0.99','2005-08-17 20:47:46','2006-02-15 22:18:40'), +(11737,435,1,12741,'4.99','2005-08-18 22:17:05','2006-02-15 22:18:40'), +(11738,435,2,13208,'0.99','2005-08-19 15:18:55','2006-02-15 22:18:40'), +(11739,435,1,14696,'4.99','2005-08-21 20:48:05','2006-02-15 22:18:41'), +(11740,435,1,14765,'1.99','2005-08-21 23:40:28','2006-02-15 22:18:41'), +(11741,435,1,14850,'0.99','2005-08-22 02:16:55','2006-02-15 22:18:41'), +(11742,435,1,15136,'2.99','2005-08-22 13:19:25','2006-02-15 22:18:41'), +(11743,436,1,45,'7.99','2005-05-25 05:59:39','2006-02-15 22:18:41'), +(11744,436,1,256,'3.99','2005-05-26 15:20:58','2006-02-15 22:18:41'), +(11745,436,1,848,'5.99','2005-05-30 01:19:53','2006-02-15 22:18:41'), +(11746,436,1,2291,'9.99','2005-06-18 07:36:46','2006-02-15 22:18:41'), +(11747,436,2,3851,'1.99','2005-07-06 16:54:12','2006-02-15 22:18:41'), +(11748,436,2,3944,'2.99','2005-07-06 21:34:11','2006-02-15 22:18:41'), +(11749,436,2,4643,'0.99','2005-07-08 09:13:56','2006-02-15 22:18:41'), +(11750,436,2,4751,'2.99','2005-07-08 14:07:52','2006-02-15 22:18:41'), +(11751,436,1,4782,'4.99','2005-07-08 16:08:51','2006-02-15 22:18:41'), +(11752,436,1,5959,'0.99','2005-07-10 23:35:36','2006-02-15 22:18:41'), +(11753,436,1,7593,'4.99','2005-07-27 23:28:47','2006-02-15 22:18:41'), +(11754,436,2,8027,'5.99','2005-07-28 16:09:57','2006-02-15 22:18:41'), +(11755,436,2,8097,'9.99','2005-07-28 18:32:49','2006-02-15 22:18:41'), +(11756,436,1,9345,'9.99','2005-07-30 18:13:51','2006-02-15 22:18:41'), +(11757,436,1,9539,'0.99','2005-07-31 01:36:19','2006-02-15 22:18:42'), +(11758,436,1,9638,'5.99','2005-07-31 05:30:27','2006-02-15 22:18:42'), +(11759,436,2,10216,'3.99','2005-08-01 01:06:27','2006-02-15 22:18:42'), +(11760,436,2,11160,'0.99','2005-08-02 10:05:30','2006-02-15 22:18:42'), +(11761,436,1,11580,'2.99','2005-08-17 01:59:07','2006-02-15 22:18:42'), +(11762,436,2,11615,'4.99','2005-08-17 03:54:35','2006-02-15 22:18:42'), +(11763,436,2,11896,'5.99','2005-08-17 15:19:54','2006-02-15 22:18:42'), +(11764,436,2,12297,'0.99','2005-08-18 05:19:57','2006-02-15 22:18:42'), +(11765,436,2,12429,'6.99','2005-08-18 10:26:46','2006-02-15 22:18:42'), +(11766,436,2,13099,'9.99','2005-08-19 10:55:19','2006-02-15 22:18:42'), +(11767,436,2,13382,'7.99','2005-08-19 21:38:41','2006-02-15 22:18:42'), +(11768,436,1,13533,'3.99','2005-08-20 03:30:00','2006-02-15 22:18:42'), +(11769,436,1,13760,'5.99','2005-08-20 11:26:33','2006-02-15 22:18:42'), +(11770,436,1,13814,'0.99','2005-08-20 13:07:23','2006-02-15 22:18:42'), +(11771,436,2,13826,'2.99','2005-08-20 13:46:38','2006-02-15 22:18:42'), +(11772,436,2,15766,'4.99','2005-08-23 13:10:16','2006-02-15 22:18:42'), +(11773,437,1,192,'2.99','2005-05-26 06:20:37','2006-02-15 22:18:42'), +(11774,437,2,656,'4.99','2005-05-28 20:18:24','2006-02-15 22:18:42'), +(11775,437,1,666,'5.99','2005-05-28 21:48:51','2006-02-15 22:18:42'), +(11776,437,2,2239,'5.99','2005-06-18 04:23:54','2006-02-15 22:18:43'), +(11777,437,1,2792,'2.99','2005-06-19 18:52:25','2006-02-15 22:18:43'), +(11778,437,2,3265,'2.99','2005-06-21 04:23:13','2006-02-15 22:18:43'), +(11779,437,1,3747,'4.99','2005-07-06 12:11:14','2006-02-15 22:18:43'), +(11780,437,2,4765,'4.99','2005-07-08 15:08:45','2006-02-15 22:18:43'), +(11781,437,2,5085,'4.99','2005-07-09 05:36:49','2006-02-15 22:18:43'), +(11782,437,1,5167,'1.99','2005-07-09 09:18:43','2006-02-15 22:18:43'), +(11783,437,2,5744,'2.99','2005-07-10 12:08:33','2006-02-15 22:18:43'), +(11784,437,2,5864,'6.99','2005-07-10 18:29:57','2006-02-15 22:18:43'), +(11785,437,2,8215,'2.99','2005-07-28 23:43:56','2006-02-15 22:18:43'), +(11786,437,2,9172,'2.99','2005-07-30 11:36:38','2006-02-15 22:18:43'), +(11787,437,2,9333,'2.99','2005-07-30 17:53:45','2006-02-15 22:18:43'), +(11788,437,2,10009,'8.99','2005-07-31 18:00:28','2006-02-15 22:18:43'), +(11789,437,2,10249,'0.99','2005-08-01 02:35:39','2006-02-15 22:18:43'), +(11790,437,2,11417,'3.99','2005-08-02 19:44:46','2006-02-15 22:18:43'), +(11791,437,1,12205,'8.99','2005-08-18 02:21:08','2006-02-15 22:18:43'), +(11792,437,2,13838,'7.99','2005-08-20 14:22:46','2006-02-15 22:18:43'), +(11793,437,1,13839,'2.99','2005-08-20 14:23:16','2006-02-15 22:18:43'), +(11794,437,1,13905,'1.99','2005-08-20 16:12:48','2006-02-15 22:18:44'), +(11795,437,1,14993,'1.99','2005-08-22 07:52:18','2006-02-15 22:18:44'), +(11796,438,2,23,'4.99','2005-05-25 02:40:21','2006-02-15 22:18:44'), +(11797,438,2,1036,'0.99','2005-05-31 05:21:10','2006-02-15 22:18:44'), +(11798,438,1,1138,'6.99','2005-05-31 19:30:27','2006-02-15 22:18:44'), +(11799,438,1,1431,'4.99','2005-06-15 18:26:29','2006-02-15 22:18:44'), +(11800,438,2,1779,'0.99','2005-06-16 18:55:11','2006-02-15 22:18:44'), +(11801,438,2,2206,'0.99','2005-06-18 02:14:45','2006-02-15 22:18:44'), +(11802,438,1,2591,'4.99','2005-06-19 05:32:22','2006-02-15 22:18:44'), +(11803,438,1,3315,'4.99','2005-06-21 08:17:04','2006-02-15 22:18:44'), +(11804,438,2,3368,'0.99','2005-06-21 13:18:38','2006-02-15 22:18:44'), +(11805,438,1,4355,'4.99','2005-07-07 19:21:19','2006-02-15 22:18:44'), +(11806,438,2,4446,'2.99','2005-07-07 23:12:16','2006-02-15 22:18:44'), +(11807,438,2,5316,'4.99','2005-07-09 16:09:42','2006-02-15 22:18:44'), +(11808,438,2,5426,'4.99','2005-07-09 21:04:47','2006-02-15 22:18:44'), +(11809,438,1,5870,'2.99','2005-07-10 18:40:25','2006-02-15 22:18:44'), +(11810,438,2,6138,'4.99','2005-07-11 08:36:04','2006-02-15 22:18:44'), +(11811,438,1,6563,'3.99','2005-07-12 05:34:09','2006-02-15 22:18:44'), +(11812,438,2,6615,'4.99','2005-07-12 08:36:22','2006-02-15 22:18:45'), +(11813,438,2,7357,'1.99','2005-07-27 14:48:31','2006-02-15 22:18:45'), +(11814,438,2,7374,'8.99','2005-07-27 15:20:57','2006-02-15 22:18:45'), +(11815,438,1,7598,'0.99','2005-07-27 23:36:01','2006-02-15 22:18:45'), +(11816,438,2,8547,'2.99','2005-07-29 11:10:15','2006-02-15 22:18:45'), +(11817,438,1,9082,'3.99','2005-07-30 08:11:22','2006-02-15 22:18:45'), +(11818,438,2,9782,'0.99','2005-07-31 10:14:26','2006-02-15 22:18:45'), +(11819,438,1,10512,'6.99','2005-08-01 11:36:19','2006-02-15 22:18:45'), +(11820,438,1,10607,'4.99','2005-08-01 14:44:43','2006-02-15 22:18:45'), +(11821,438,2,11644,'4.99','2005-08-17 04:49:46','2006-02-15 22:18:45'), +(11822,438,2,11933,'4.99','2005-08-17 16:38:20','2006-02-15 22:18:45'), +(11823,438,2,12654,'0.99','2005-08-18 18:56:40','2006-02-15 22:18:45'), +(11824,438,2,13319,'7.99','2005-08-19 19:35:13','2006-02-15 22:18:45'), +(11825,438,1,13414,'4.99','2005-08-19 22:47:34','2006-02-15 22:18:45'), +(11826,438,2,14582,'5.99','2005-08-21 17:08:33','2006-02-15 22:18:45'), +(11827,438,2,15893,'5.99','2005-08-23 17:02:00','2006-02-15 22:18:45'), +(11828,438,2,12524,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:45'), +(11829,439,1,126,'2.99','2005-05-25 21:07:59','2006-02-15 22:18:45'), +(11830,439,2,367,'0.99','2005-05-27 07:37:02','2006-02-15 22:18:46'), +(11831,439,1,786,'9.99','2005-05-29 15:17:28','2006-02-15 22:18:46'), +(11832,439,1,1264,'4.99','2005-06-15 06:59:39','2006-02-15 22:18:46'), +(11833,439,2,1557,'0.99','2005-06-16 02:28:35','2006-02-15 22:18:46'), +(11834,439,2,2097,'4.99','2005-06-17 18:40:04','2006-02-15 22:18:46'), +(11835,439,1,2621,'2.99','2005-06-19 08:07:31','2006-02-15 22:18:46'), +(11836,439,1,2992,'2.99','2005-06-20 09:11:51','2006-02-15 22:18:46'), +(11837,439,1,3294,'6.99','2005-06-21 07:03:23','2006-02-15 22:18:46'), +(11838,439,2,3774,'5.99','2005-07-06 13:25:07','2006-02-15 22:18:46'), +(11839,439,1,4528,'2.99','2005-07-08 03:24:54','2006-02-15 22:18:46'), +(11840,439,1,4813,'4.99','2005-07-08 17:09:56','2006-02-15 22:18:46'), +(11841,439,2,5801,'5.99','2005-07-10 14:59:05','2006-02-15 22:18:46'), +(11842,439,1,5893,'2.99','2005-07-10 20:05:30','2006-02-15 22:18:46'), +(11843,439,1,6577,'2.99','2005-07-12 06:15:05','2006-02-15 22:18:46'), +(11844,439,2,6672,'2.99','2005-07-12 11:49:16','2006-02-15 22:18:46'), +(11845,439,1,8343,'2.99','2005-07-29 04:45:16','2006-02-15 22:18:46'), +(11846,439,1,8624,'2.99','2005-07-29 13:55:36','2006-02-15 22:18:46'), +(11847,439,2,8703,'2.99','2005-07-29 17:12:44','2006-02-15 22:18:46'), +(11848,439,1,9275,'0.99','2005-07-30 15:09:15','2006-02-15 22:18:46'), +(11849,439,1,9322,'6.99','2005-07-30 17:21:39','2006-02-15 22:18:47'), +(11850,439,2,10744,'1.99','2005-08-01 19:56:49','2006-02-15 22:18:47'), +(11851,439,1,10905,'2.99','2005-08-02 01:45:59','2006-02-15 22:18:47'), +(11852,439,2,11042,'6.99','2005-08-02 06:04:33','2006-02-15 22:18:47'), +(11853,439,2,11544,'5.99','2005-08-17 00:55:07','2006-02-15 22:18:47'), +(11854,439,1,11989,'2.99','2005-08-17 18:23:58','2006-02-15 22:18:47'), +(11855,439,1,12621,'2.99','2005-08-18 17:31:36','2006-02-15 22:18:47'), +(11856,439,2,12755,'5.99','2005-08-18 22:38:47','2006-02-15 22:18:47'), +(11857,439,2,12826,'3.99','2005-08-19 01:25:11','2006-02-15 22:18:47'), +(11858,439,2,13358,'4.99','2005-08-19 21:04:20','2006-02-15 22:18:47'), +(11859,439,2,14730,'5.99','2005-08-21 22:21:11','2006-02-15 22:18:47'), +(11860,439,2,15044,'9.99','2005-08-22 09:51:54','2006-02-15 22:18:47'), +(11861,439,2,15162,'4.99','2005-08-22 14:41:05','2006-02-15 22:18:47'), +(11862,439,2,15653,'4.99','2005-08-23 08:34:42','2006-02-15 22:18:47'), +(11863,439,1,15818,'1.99','2005-08-23 14:59:58','2006-02-15 22:18:47'), +(11864,439,1,16018,'0.99','2005-08-23 21:27:35','2006-02-15 22:18:47'), +(11865,440,2,957,'4.99','2005-05-30 17:53:29','2006-02-15 22:18:47'), +(11866,440,1,4301,'2.99','2005-07-07 16:37:23','2006-02-15 22:18:47'), +(11867,440,1,4946,'7.99','2005-07-08 22:46:23','2006-02-15 22:18:48'), +(11868,440,2,5423,'2.99','2005-07-09 20:56:48','2006-02-15 22:18:48'), +(11869,440,2,5594,'0.99','2005-07-10 04:33:36','2006-02-15 22:18:48'), +(11870,440,2,5731,'2.99','2005-07-10 11:31:52','2006-02-15 22:18:48'), +(11871,440,2,5782,'0.99','2005-07-10 13:52:56','2006-02-15 22:18:48'), +(11872,440,2,7585,'4.99','2005-07-27 23:18:22','2006-02-15 22:18:48'), +(11873,440,1,7614,'0.99','2005-07-28 00:14:38','2006-02-15 22:18:48'), +(11874,440,1,7806,'9.99','2005-07-28 07:58:17','2006-02-15 22:18:48'), +(11875,440,1,9001,'4.99','2005-07-30 04:59:41','2006-02-15 22:18:48'), +(11876,440,1,9195,'2.99','2005-07-30 12:29:43','2006-02-15 22:18:48'), +(11877,440,1,9547,'4.99','2005-07-31 01:52:34','2006-02-15 22:18:48'), +(11878,440,2,12403,'6.99','2005-08-18 09:31:05','2006-02-15 22:18:48'), +(11879,440,1,12850,'0.99','2005-08-19 02:08:06','2006-02-15 22:18:48'), +(11880,440,2,13384,'4.99','2005-08-19 21:38:51','2006-02-15 22:18:48'), +(11881,440,2,13779,'2.99','2005-08-20 12:03:54','2006-02-15 22:18:48'), +(11882,440,1,14555,'0.99','2005-08-21 16:03:02','2006-02-15 22:18:48'), +(11883,440,2,14863,'7.99','2005-08-22 02:57:04','2006-02-15 22:18:48'), +(11884,440,2,15264,'0.99','2005-08-22 18:27:38','2006-02-15 22:18:48'), +(11885,440,1,15925,'4.99','2005-08-23 18:15:06','2006-02-15 22:18:49'), +(11886,440,1,13106,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:49'), +(11887,441,1,823,'4.99','2005-05-29 21:39:37','2006-02-15 22:18:49'), +(11888,441,1,1602,'4.99','2005-06-16 06:12:40','2006-02-15 22:18:49'), +(11889,441,2,2328,'4.99','2005-06-18 10:17:21','2006-02-15 22:18:49'), +(11890,441,2,3629,'0.99','2005-07-06 06:23:22','2006-02-15 22:18:49'), +(11891,441,2,3695,'2.99','2005-07-06 10:02:08','2006-02-15 22:18:49'), +(11892,441,1,4084,'8.99','2005-07-07 05:16:00','2006-02-15 22:18:49'), +(11893,441,2,4208,'0.99','2005-07-07 11:34:22','2006-02-15 22:18:49'), +(11894,441,2,5129,'2.99','2005-07-09 07:28:33','2006-02-15 22:18:49'), +(11895,441,1,5811,'0.99','2005-07-10 15:27:04','2006-02-15 22:18:49'), +(11896,441,2,6636,'2.99','2005-07-12 09:49:46','2006-02-15 22:18:49'), +(11897,441,1,6642,'4.99','2005-07-12 10:37:52','2006-02-15 22:18:49'), +(11898,441,1,6941,'5.99','2005-07-26 23:18:49','2006-02-15 22:18:49'), +(11899,441,2,8237,'2.99','2005-07-29 00:29:56','2006-02-15 22:18:49'), +(11900,441,1,8281,'0.99','2005-07-29 01:46:00','2006-02-15 22:18:49'), +(11901,441,1,8427,'4.99','2005-07-29 07:08:36','2006-02-15 22:18:49'), +(11902,441,1,8575,'4.99','2005-07-29 11:52:47','2006-02-15 22:18:49'), +(11903,441,2,8617,'4.99','2005-07-29 13:46:14','2006-02-15 22:18:49'), +(11904,441,2,9644,'10.99','2005-07-31 05:40:35','2006-02-15 22:18:50'), +(11905,441,2,9854,'2.99','2005-07-31 12:59:34','2006-02-15 22:18:50'), +(11906,441,2,10139,'1.99','2005-07-31 22:02:20','2006-02-15 22:18:50'), +(11907,441,1,10846,'1.99','2005-08-01 23:47:54','2006-02-15 22:18:50'), +(11908,441,2,11247,'1.99','2005-08-02 13:34:08','2006-02-15 22:18:50'), +(11909,441,2,13483,'2.99','2005-08-20 01:16:38','2006-02-15 22:18:50'), +(11910,441,2,13739,'4.99','2005-08-20 10:45:10','2006-02-15 22:18:50'), +(11911,441,1,13932,'4.99','2005-08-20 17:17:00','2006-02-15 22:18:50'), +(11912,441,2,14796,'4.99','2005-08-22 00:40:49','2006-02-15 22:18:50'), +(11913,441,2,15070,'3.99','2005-08-22 10:55:45','2006-02-15 22:18:50'), +(11914,441,1,14878,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:50'), +(11915,442,2,466,'0.99','2005-05-27 20:57:07','2006-02-15 22:18:50'), +(11916,442,2,558,'6.99','2005-05-28 08:38:43','2006-02-15 22:18:50'), +(11917,442,1,632,'5.99','2005-05-28 17:37:50','2006-02-15 22:18:50'), +(11918,442,1,1251,'5.99','2005-06-15 05:58:55','2006-02-15 22:18:50'), +(11919,442,2,1358,'0.99','2005-06-15 13:28:48','2006-02-15 22:18:50'), +(11920,442,2,1576,'8.99','2005-06-16 03:54:39','2006-02-15 22:18:50'), +(11921,442,1,1774,'2.99','2005-06-16 18:27:52','2006-02-15 22:18:51'), +(11922,442,2,3545,'4.99','2005-07-06 02:16:17','2006-02-15 22:18:51'), +(11923,442,1,3661,'2.99','2005-07-06 08:10:02','2006-02-15 22:18:51'), +(11924,442,1,4052,'5.99','2005-07-07 03:38:22','2006-02-15 22:18:51'), +(11925,442,1,4058,'2.99','2005-07-07 04:02:50','2006-02-15 22:18:51'), +(11926,442,2,4365,'2.99','2005-07-07 19:47:46','2006-02-15 22:18:51'), +(11927,442,2,4577,'3.99','2005-07-08 05:59:00','2006-02-15 22:18:51'), +(11928,442,2,6590,'4.99','2005-07-12 07:08:21','2006-02-15 22:18:51'), +(11929,442,2,6632,'2.99','2005-07-12 09:33:10','2006-02-15 22:18:51'), +(11930,442,2,7427,'2.99','2005-07-27 17:20:16','2006-02-15 22:18:51'), +(11931,442,1,7460,'0.99','2005-07-27 18:41:35','2006-02-15 22:18:51'), +(11932,442,1,7671,'2.99','2005-07-28 02:48:31','2006-02-15 22:18:51'), +(11933,442,1,8044,'2.99','2005-07-28 16:49:12','2006-02-15 22:18:51'), +(11934,442,1,8758,'4.99','2005-07-29 19:20:49','2006-02-15 22:18:51'), +(11935,442,1,9180,'4.99','2005-07-30 12:03:15','2006-02-15 22:18:51'), +(11936,442,2,9873,'5.99','2005-07-31 13:32:18','2006-02-15 22:18:51'), +(11937,442,1,10034,'2.99','2005-07-31 18:45:30','2006-02-15 22:18:51'), +(11938,442,2,10365,'6.99','2005-08-01 06:08:44','2006-02-15 22:18:51'), +(11939,442,2,10452,'0.99','2005-08-01 09:11:36','2006-02-15 22:18:51'), +(11940,442,1,12948,'0.99','2005-08-19 05:55:14','2006-02-15 22:18:52'), +(11941,442,2,13004,'0.99','2005-08-19 07:40:08','2006-02-15 22:18:52'), +(11942,442,1,13155,'7.99','2005-08-19 13:10:23','2006-02-15 22:18:52'), +(11943,442,2,14199,'0.99','2005-08-21 03:48:43','2006-02-15 22:18:52'), +(11944,442,1,14418,'1.99','2005-08-21 11:14:26','2006-02-15 22:18:52'), +(11945,442,1,14466,'0.99','2005-08-21 13:03:13','2006-02-15 22:18:52'), +(11946,442,2,15207,'2.99','2005-08-22 16:35:25','2006-02-15 22:18:52'), +(11947,443,2,1068,'4.99','2005-05-31 09:32:15','2006-02-15 22:18:52'), +(11948,443,1,2871,'2.99','2005-06-20 00:27:49','2006-02-15 22:18:52'), +(11949,443,2,3510,'5.99','2005-07-06 00:27:41','2006-02-15 22:18:52'), +(11950,443,2,6625,'5.99','2005-07-12 09:06:40','2006-02-15 22:18:52'), +(11951,443,1,6913,'4.99','2005-07-12 22:18:12','2006-02-15 22:18:52'), +(11952,443,2,6983,'2.99','2005-07-27 00:55:03','2006-02-15 22:18:52'), +(11953,443,1,7317,'2.99','2005-07-27 13:19:41','2006-02-15 22:18:52'), +(11954,443,1,7667,'8.99','2005-07-28 02:37:22','2006-02-15 22:18:52'), +(11955,443,1,7987,'9.99','2005-07-28 14:36:52','2006-02-15 22:18:52'), +(11956,443,2,9740,'1.99','2005-07-31 09:08:03','2006-02-15 22:18:52'), +(11957,443,1,10014,'4.99','2005-07-31 18:10:56','2006-02-15 22:18:52'), +(11958,443,2,10081,'5.99','2005-07-31 20:07:44','2006-02-15 22:18:53'), +(11959,443,2,10360,'0.99','2005-08-01 05:52:53','2006-02-15 22:18:53'), +(11960,443,1,11449,'4.99','2005-08-02 20:44:43','2006-02-15 22:18:53'), +(11961,443,1,12415,'4.99','2005-08-18 09:54:01','2006-02-15 22:18:53'), +(11962,443,2,12857,'4.99','2005-08-19 02:20:13','2006-02-15 22:18:53'), +(11963,443,1,13489,'2.99','2005-08-20 01:29:06','2006-02-15 22:18:53'), +(11964,443,1,14561,'2.99','2005-08-21 16:20:43','2006-02-15 22:18:53'), +(11965,443,2,14611,'6.99','2005-08-21 18:01:41','2006-02-15 22:18:53'), +(11966,443,1,15182,'0.99','2005-08-22 15:47:05','2006-02-15 22:18:53'), +(11967,443,2,15393,'4.99','2005-08-22 23:04:09','2006-02-15 22:18:53'), +(11968,443,1,15519,'0.99','2005-08-23 03:23:32','2006-02-15 22:18:53'), +(11969,444,1,201,'8.99','2005-05-26 07:13:45','2006-02-15 22:18:53'), +(11970,444,1,557,'0.99','2005-05-28 08:36:22','2006-02-15 22:18:53'), +(11971,444,1,1239,'0.99','2005-06-15 04:53:01','2006-02-15 22:18:53'), +(11972,444,2,1397,'3.99','2005-06-15 16:25:26','2006-02-15 22:18:53'), +(11973,444,2,1441,'1.99','2005-06-15 18:54:21','2006-02-15 22:18:53'), +(11974,444,1,2551,'4.99','2005-06-19 02:51:04','2006-02-15 22:18:53'), +(11975,444,2,3301,'7.99','2005-06-21 07:32:25','2006-02-15 22:18:53'), +(11976,444,2,3415,'5.99','2005-06-21 16:59:49','2006-02-15 22:18:54'), +(11977,444,2,3498,'4.99','2005-07-06 00:02:08','2006-02-15 22:18:54'), +(11978,444,1,3539,'0.99','2005-07-06 01:39:08','2006-02-15 22:18:54'), +(11979,444,2,4648,'6.99','2005-07-08 09:31:27','2006-02-15 22:18:54'), +(11980,444,1,5753,'2.99','2005-07-10 12:29:43','2006-02-15 22:18:54'), +(11981,444,2,5825,'2.99','2005-07-10 16:20:30','2006-02-15 22:18:54'), +(11982,444,2,6285,'2.99','2005-07-11 16:52:07','2006-02-15 22:18:54'), +(11983,444,2,7679,'3.99','2005-07-28 02:58:39','2006-02-15 22:18:54'), +(11984,444,2,9634,'1.99','2005-07-31 05:06:02','2006-02-15 22:18:54'), +(11985,444,1,10529,'4.99','2005-08-01 12:00:02','2006-02-15 22:18:54'), +(11986,444,1,10693,'4.99','2005-08-01 18:14:14','2006-02-15 22:18:54'), +(11987,444,2,11353,'0.99','2005-08-02 17:34:45','2006-02-15 22:18:54'), +(11988,444,2,11419,'6.99','2005-08-02 19:46:38','2006-02-15 22:18:54'), +(11989,444,1,11728,'4.99','2005-08-17 08:12:26','2006-02-15 22:18:54'), +(11990,444,1,12161,'6.99','2005-08-18 00:41:46','2006-02-15 22:18:54'), +(11991,444,2,12712,'2.99','2005-08-18 21:04:13','2006-02-15 22:18:54'), +(11992,444,2,12946,'2.99','2005-08-19 05:53:34','2006-02-15 22:18:54'), +(11993,444,1,13488,'0.99','2005-08-20 01:28:42','2006-02-15 22:18:54'), +(11994,444,2,13559,'2.99','2005-08-20 04:16:07','2006-02-15 22:18:55'), +(11995,444,1,13924,'0.99','2005-08-20 17:05:18','2006-02-15 22:18:55'), +(11996,444,1,15249,'4.99','2005-08-22 17:58:27','2006-02-15 22:18:55'), +(11997,444,1,15557,'0.99','2005-08-23 04:52:17','2006-02-15 22:18:55'), +(11998,444,2,15815,'4.99','2005-08-23 14:55:47','2006-02-15 22:18:55'), +(11999,445,1,481,'2.99','2005-05-27 22:49:27','2006-02-15 22:18:55'), +(12000,445,1,960,'2.99','2005-05-30 18:13:23','2006-02-15 22:18:55'), +(12001,445,1,4041,'0.99','2005-07-07 03:03:33','2006-02-15 22:18:55'), +(12002,445,1,4193,'0.99','2005-07-07 10:57:21','2006-02-15 22:18:55'), +(12003,445,2,5225,'2.99','2005-07-09 12:10:16','2006-02-15 22:18:55'), +(12004,445,1,6346,'0.99','2005-07-11 20:08:34','2006-02-15 22:18:55'), +(12005,445,2,7351,'2.99','2005-07-27 14:37:36','2006-02-15 22:18:55'), +(12006,445,2,7971,'4.99','2005-07-28 14:00:47','2006-02-15 22:18:55'), +(12007,445,1,8851,'8.99','2005-07-29 23:26:19','2006-02-15 22:18:55'), +(12008,445,2,8911,'0.99','2005-07-30 01:30:57','2006-02-15 22:18:55'), +(12009,445,2,9625,'4.99','2005-07-31 04:30:48','2006-02-15 22:18:55'), +(12010,445,1,10007,'0.99','2005-07-31 17:54:58','2006-02-15 22:18:55'), +(12011,445,2,10334,'1.99','2005-08-01 04:58:42','2006-02-15 22:18:56'), +(12012,445,2,10341,'0.99','2005-08-01 05:10:02','2006-02-15 22:18:56'), +(12013,445,2,10936,'9.99','2005-08-02 02:55:04','2006-02-15 22:18:56'), +(12014,445,1,11383,'7.99','2005-08-02 18:22:05','2006-02-15 22:18:56'), +(12015,445,1,11868,'4.99','2005-08-17 14:05:34','2006-02-15 22:18:56'), +(12016,445,1,11877,'3.99','2005-08-17 14:21:11','2006-02-15 22:18:56'), +(12017,445,2,13586,'0.99','2005-08-20 05:40:33','2006-02-15 22:18:56'), +(12018,445,1,14612,'6.99','2005-08-21 18:03:15','2006-02-15 22:18:56'), +(12019,445,2,14673,'2.99','2005-08-21 20:01:18','2006-02-15 22:18:56'), +(12020,445,1,14866,'6.99','2005-08-22 03:11:35','2006-02-15 22:18:56'), +(12021,445,1,14955,'4.99','2005-08-22 06:25:52','2006-02-15 22:18:56'), +(12022,445,1,15123,'3.99','2005-08-22 12:48:44','2006-02-15 22:18:56'), +(12023,445,1,15791,'6.99','2005-08-23 14:02:13','2006-02-15 22:18:56'), +(12024,445,2,15906,'2.99','2005-08-23 17:36:00','2006-02-15 22:18:56'), +(12025,446,2,14,'0.99','2005-05-25 00:31:15','2006-02-15 22:18:56'), +(12026,446,1,236,'0.99','2005-05-26 11:53:49','2006-02-15 22:18:56'), +(12027,446,1,355,'4.99','2005-05-27 06:15:33','2006-02-15 22:18:56'), +(12028,446,1,2248,'4.99','2005-06-18 04:59:48','2006-02-15 22:18:56'), +(12029,446,2,2335,'3.99','2005-06-18 10:59:36','2006-02-15 22:18:57'), +(12030,446,2,2520,'6.99','2005-06-19 00:29:00','2006-02-15 22:18:57'), +(12031,446,2,2710,'0.99','2005-06-19 14:03:56','2006-02-15 22:18:57'), +(12032,446,1,3060,'2.99','2005-06-20 13:47:20','2006-02-15 22:18:57'), +(12033,446,2,3168,'0.99','2005-06-20 21:46:01','2006-02-15 22:18:57'), +(12034,446,2,4358,'4.99','2005-07-07 19:27:04','2006-02-15 22:18:57'), +(12035,446,2,5393,'4.99','2005-07-09 19:35:12','2006-02-15 22:18:57'), +(12036,446,2,5409,'2.99','2005-07-09 20:17:19','2006-02-15 22:18:57'), +(12037,446,2,6454,'0.99','2005-07-12 01:00:12','2006-02-15 22:18:57'), +(12038,446,1,6510,'4.99','2005-07-12 03:35:39','2006-02-15 22:18:57'), +(12039,446,1,6535,'0.99','2005-07-12 04:43:43','2006-02-15 22:18:57'), +(12040,446,1,6734,'6.99','2005-07-12 14:04:24','2006-02-15 22:18:57'), +(12041,446,1,7005,'5.99','2005-07-27 01:38:36','2006-02-15 22:18:57'), +(12042,446,2,7089,'0.99','2005-07-27 04:43:42','2006-02-15 22:18:57'), +(12043,446,1,7576,'4.99','2005-07-27 22:54:35','2006-02-15 22:18:57'), +(12044,446,2,8284,'6.99','2005-07-29 01:56:40','2006-02-15 22:18:57'), +(12045,446,1,8309,'4.99','2005-07-29 03:22:20','2006-02-15 22:18:57'), +(12046,446,2,8670,'4.99','2005-07-29 15:49:03','2006-02-15 22:18:57'), +(12047,446,2,8691,'0.99','2005-07-29 16:41:23','2006-02-15 22:18:58'), +(12048,446,2,8922,'9.99','2005-07-30 02:08:25','2006-02-15 22:18:58'), +(12049,446,1,8923,'3.99','2005-07-30 02:08:49','2006-02-15 22:18:58'), +(12050,446,1,9116,'0.99','2005-07-30 09:19:41','2006-02-15 22:18:58'), +(12051,446,1,11051,'3.99','2005-08-02 06:23:39','2006-02-15 22:18:58'), +(12052,446,2,12253,'0.99','2005-08-18 04:00:50','2006-02-15 22:18:58'), +(12053,446,2,12480,'8.99','2005-08-18 12:26:43','2006-02-15 22:18:58'), +(12054,446,1,15808,'1.99','2005-08-23 14:38:37','2006-02-15 22:18:58'), +(12055,446,2,15951,'0.99','2005-08-23 19:10:32','2006-02-15 22:18:58'), +(12056,447,1,461,'2.99','2005-05-27 20:08:55','2006-02-15 22:18:58'), +(12057,447,2,732,'0.99','2005-05-29 07:32:51','2006-02-15 22:18:58'), +(12058,447,2,1230,'0.99','2005-06-15 04:04:09','2006-02-15 22:18:58'), +(12059,447,2,1890,'2.99','2005-06-17 04:06:13','2006-02-15 22:18:58'), +(12060,447,1,2025,'4.99','2005-06-17 13:04:00','2006-02-15 22:18:58'), +(12061,447,2,2285,'4.99','2005-06-18 07:00:54','2006-02-15 22:18:58'), +(12062,447,2,4403,'4.99','2005-07-07 21:29:40','2006-02-15 22:18:58'), +(12063,447,1,4858,'6.99','2005-07-08 18:53:24','2006-02-15 22:18:58'), +(12064,447,1,5331,'4.99','2005-07-09 16:54:06','2006-02-15 22:18:58'), +(12065,447,1,5734,'0.99','2005-07-10 11:37:28','2006-02-15 22:18:59'), +(12066,447,2,5987,'2.99','2005-07-11 00:55:31','2006-02-15 22:18:59'), +(12067,447,1,6651,'0.99','2005-07-12 10:57:28','2006-02-15 22:18:59'), +(12068,447,1,6690,'1.99','2005-07-12 12:23:02','2006-02-15 22:18:59'), +(12069,447,1,8537,'8.99','2005-07-29 10:44:54','2006-02-15 22:18:59'), +(12070,447,2,8945,'4.99','2005-07-30 03:11:48','2006-02-15 22:18:59'), +(12071,447,2,9076,'5.99','2005-07-30 07:58:12','2006-02-15 22:18:59'), +(12072,447,1,9288,'6.99','2005-07-30 15:56:39','2006-02-15 22:18:59'), +(12073,447,1,10425,'2.99','2005-08-01 08:23:25','2006-02-15 22:18:59'), +(12074,447,2,10957,'5.99','2005-08-02 03:33:30','2006-02-15 22:18:59'), +(12075,447,2,11108,'0.99','2005-08-02 08:20:01','2006-02-15 22:18:59'), +(12076,447,1,11465,'5.99','2005-08-02 21:43:52','2006-02-15 22:18:59'), +(12077,447,2,12511,'0.99','2005-08-18 13:23:19','2006-02-15 22:18:59'), +(12078,447,1,13072,'2.99','2005-08-19 10:03:30','2006-02-15 22:18:59'), +(12079,447,2,13110,'0.99','2005-08-19 11:24:37','2006-02-15 22:18:59'), +(12080,447,1,13848,'4.99','2005-08-20 14:37:49','2006-02-15 22:18:59'), +(12081,447,2,14443,'5.99','2005-08-21 12:06:32','2006-02-15 22:18:59'), +(12082,447,1,15108,'2.99','2005-08-22 12:10:07','2006-02-15 22:18:59'), +(12083,447,1,15997,'4.99','2005-08-23 20:40:31','2006-02-15 22:19:00'), +(12084,447,2,16032,'4.99','2005-08-23 21:59:57','2006-02-15 22:19:00'), +(12085,448,1,299,'4.99','2005-05-26 20:55:36','2006-02-15 22:19:00'), +(12086,448,2,1123,'2.99','2005-05-31 16:48:43','2006-02-15 22:19:00'), +(12087,448,1,1313,'5.99','2005-06-15 10:18:34','2006-02-15 22:19:00'), +(12088,448,2,1823,'7.99','2005-06-16 21:48:16','2006-02-15 22:19:00'), +(12089,448,2,2697,'0.99','2005-06-19 13:29:08','2006-02-15 22:19:00'), +(12090,448,2,3225,'3.99','2005-06-21 02:16:55','2006-02-15 22:19:00'), +(12091,448,2,3347,'5.99','2005-06-21 11:08:32','2006-02-15 22:19:00'), +(12092,448,2,3959,'5.99','2005-07-06 22:07:58','2006-02-15 22:19:00'), +(12093,448,2,3992,'6.99','2005-07-06 23:36:56','2006-02-15 22:19:00'), +(12094,448,2,4024,'0.99','2005-07-07 02:11:23','2006-02-15 22:19:00'), +(12095,448,2,4206,'2.99','2005-07-07 11:32:16','2006-02-15 22:19:00'), +(12096,448,1,4406,'1.99','2005-07-07 21:35:16','2006-02-15 22:19:00'), +(12097,448,2,4537,'2.99','2005-07-08 03:48:40','2006-02-15 22:19:00'), +(12098,448,2,4558,'2.99','2005-07-08 04:55:26','2006-02-15 22:19:00'), +(12099,448,2,6341,'2.99','2005-07-11 19:48:02','2006-02-15 22:19:00'), +(12100,448,2,6985,'4.99','2005-07-27 00:57:42','2006-02-15 22:19:00'), +(12101,448,1,9178,'10.99','2005-07-30 11:58:50','2006-02-15 22:19:01'), +(12102,448,2,11608,'8.99','2005-08-17 03:36:52','2006-02-15 22:19:01'), +(12103,448,1,11798,'9.99','2005-08-17 11:21:43','2006-02-15 22:19:01'), +(12104,448,1,12446,'2.99','2005-08-18 10:56:29','2006-02-15 22:19:01'), +(12105,448,1,13220,'2.99','2005-08-19 15:42:32','2006-02-15 22:19:01'), +(12106,448,2,13250,'3.99','2005-08-19 16:47:55','2006-02-15 22:19:01'), +(12107,448,1,13982,'3.99','2005-08-20 19:08:25','2006-02-15 22:19:01'), +(12108,448,1,14580,'3.99','2005-08-21 16:56:39','2006-02-15 22:19:01'), +(12109,448,1,14711,'2.99','2005-08-21 21:22:07','2006-02-15 22:19:01'), +(12110,448,2,15358,'9.99','2005-08-22 21:29:14','2006-02-15 22:19:01'), +(12111,448,1,15427,'4.99','2005-08-23 00:07:53','2006-02-15 22:19:01'), +(12112,448,2,14734,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:01'), +(12113,448,1,13577,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:01'), +(12114,449,2,263,'4.99','2005-05-26 15:47:40','2006-02-15 22:19:01'), +(12115,449,2,325,'5.99','2005-05-27 01:09:55','2006-02-15 22:19:01'), +(12116,449,1,849,'7.99','2005-05-30 01:23:07','2006-02-15 22:19:01'), +(12117,449,2,1295,'4.99','2005-06-15 09:17:20','2006-02-15 22:19:01'), +(12118,449,1,2348,'0.99','2005-06-18 12:15:43','2006-02-15 22:19:01'), +(12119,449,2,2970,'2.99','2005-06-20 07:51:51','2006-02-15 22:19:02'), +(12120,449,1,3503,'0.99','2005-07-06 00:17:24','2006-02-15 22:19:02'), +(12121,449,1,3977,'8.99','2005-07-06 23:00:49','2006-02-15 22:19:02'), +(12122,449,2,4433,'3.99','2005-07-07 22:45:41','2006-02-15 22:19:02'), +(12123,449,1,5824,'2.99','2005-07-10 16:19:53','2006-02-15 22:19:02'), +(12124,449,2,7755,'6.99','2005-07-28 06:22:18','2006-02-15 22:19:02'), +(12125,449,2,7803,'3.99','2005-07-28 07:52:13','2006-02-15 22:19:02'), +(12126,449,2,8002,'2.99','2005-07-28 15:11:00','2006-02-15 22:19:02'), +(12127,449,2,10083,'5.99','2005-07-31 20:10:19','2006-02-15 22:19:02'), +(12128,449,2,10409,'2.99','2005-08-01 07:49:15','2006-02-15 22:19:02'), +(12129,449,1,10416,'4.99','2005-08-01 08:08:39','2006-02-15 22:19:02'), +(12130,449,1,10516,'6.99','2005-08-01 11:41:55','2006-02-15 22:19:02'), +(12131,449,2,10688,'6.99','2005-08-01 17:53:43','2006-02-15 22:19:02'), +(12132,449,1,12212,'4.99','2005-08-18 02:33:29','2006-02-15 22:19:02'), +(12133,449,2,14962,'7.99','2005-08-22 06:37:43','2006-02-15 22:19:02'), +(12134,450,2,548,'3.99','2005-05-28 07:34:56','2006-02-15 22:19:02'), +(12135,450,2,1639,'4.99','2005-06-16 08:33:39','2006-02-15 22:19:02'), +(12136,450,1,1739,'0.99','2005-06-16 16:09:38','2006-02-15 22:19:02'), +(12137,450,2,1914,'2.99','2005-06-17 05:25:54','2006-02-15 22:19:03'), +(12138,450,2,2278,'0.99','2005-06-18 06:37:57','2006-02-15 22:19:03'), +(12139,450,1,2501,'4.99','2005-06-18 23:10:11','2006-02-15 22:19:03'), +(12140,450,1,2626,'2.99','2005-06-19 08:28:44','2006-02-15 22:19:03'), +(12141,450,1,3155,'4.99','2005-06-20 21:02:38','2006-02-15 22:19:03'), +(12142,450,1,3570,'3.99','2005-07-06 03:23:43','2006-02-15 22:19:03'), +(12143,450,1,5999,'7.99','2005-07-11 01:21:22','2006-02-15 22:19:03'), +(12144,450,1,6028,'4.99','2005-07-11 02:31:44','2006-02-15 22:19:03'), +(12145,450,2,7365,'2.99','2005-07-27 15:00:20','2006-02-15 22:19:03'), +(12146,450,1,7610,'0.99','2005-07-28 00:11:35','2006-02-15 22:19:03'), +(12147,450,1,7626,'0.99','2005-07-28 00:49:01','2006-02-15 22:19:03'), +(12148,450,2,8733,'4.99','2005-07-29 18:26:34','2006-02-15 22:19:03'), +(12149,450,2,10432,'2.99','2005-08-01 08:43:21','2006-02-15 22:19:03'), +(12150,450,1,10984,'3.99','2005-08-02 04:30:02','2006-02-15 22:19:03'), +(12151,450,2,12812,'0.99','2005-08-19 00:54:02','2006-02-15 22:19:03'), +(12152,450,2,13731,'4.99','2005-08-20 10:22:08','2006-02-15 22:19:03'), +(12153,450,1,13810,'0.99','2005-08-20 12:59:38','2006-02-15 22:19:03'), +(12154,450,1,13828,'4.99','2005-08-20 13:49:52','2006-02-15 22:19:03'), +(12155,450,1,14282,'4.99','2005-08-21 06:41:29','2006-02-15 22:19:04'), +(12156,450,2,15019,'0.99','2005-08-22 08:52:53','2006-02-15 22:19:04'), +(12157,450,1,15327,'4.99','2005-08-22 20:31:24','2006-02-15 22:19:04'), +(12158,450,2,15419,'4.99','2005-08-22 23:54:36','2006-02-15 22:19:04'), +(12159,450,1,14172,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:04'), +(12160,451,2,77,'0.99','2005-05-25 11:31:59','2006-02-15 22:19:04'), +(12161,451,2,328,'2.99','2005-05-27 01:29:31','2006-02-15 22:19:04'), +(12162,451,2,1113,'2.99','2005-05-31 15:58:44','2006-02-15 22:19:04'), +(12163,451,1,1202,'0.99','2005-06-15 02:08:04','2006-02-15 22:19:04'), +(12164,451,1,1851,'0.99','2005-06-17 00:32:26','2006-02-15 22:19:04'), +(12165,451,1,1940,'6.99','2005-06-17 07:42:22','2006-02-15 22:19:04'), +(12166,451,1,2671,'1.99','2005-06-19 11:33:11','2006-02-15 22:19:04'), +(12167,451,1,2909,'3.99','2005-06-20 03:19:10','2006-02-15 22:19:04'), +(12168,451,2,2917,'0.99','2005-06-20 04:08:35','2006-02-15 22:19:04'), +(12169,451,1,3316,'6.99','2005-06-21 08:20:18','2006-02-15 22:19:04'), +(12170,451,2,3826,'4.99','2005-07-06 15:51:58','2006-02-15 22:19:04'), +(12171,451,1,4538,'2.99','2005-07-08 03:56:29','2006-02-15 22:19:04'), +(12172,451,1,4794,'8.99','2005-07-08 16:30:11','2006-02-15 22:19:04'), +(12173,451,2,4930,'4.99','2005-07-08 22:15:48','2006-02-15 22:19:05'), +(12174,451,1,5005,'3.99','2005-07-09 01:21:44','2006-02-15 22:19:05'), +(12175,451,2,5518,'8.99','2005-07-10 01:15:11','2006-02-15 22:19:05'), +(12176,451,1,7018,'2.99','2005-07-27 02:20:22','2006-02-15 22:19:05'), +(12177,451,2,10337,'8.99','2005-08-01 05:01:46','2006-02-15 22:19:05'), +(12178,451,1,10856,'2.99','2005-08-02 00:07:14','2006-02-15 22:19:05'), +(12179,451,2,10950,'2.99','2005-08-02 03:25:08','2006-02-15 22:19:05'), +(12180,451,2,11167,'6.99','2005-08-02 10:15:51','2006-02-15 22:19:05'), +(12181,451,2,11381,'6.99','2005-08-02 18:19:29','2006-02-15 22:19:05'), +(12182,451,1,11790,'2.99','2005-08-17 11:00:08','2006-02-15 22:19:05'), +(12183,451,2,12371,'2.99','2005-08-18 08:02:46','2006-02-15 22:19:05'), +(12184,451,1,12422,'4.99','2005-08-18 10:13:12','2006-02-15 22:19:05'), +(12185,451,2,13003,'1.99','2005-08-19 07:39:29','2006-02-15 22:19:05'), +(12186,451,2,13100,'2.99','2005-08-19 10:55:45','2006-02-15 22:19:05'), +(12187,451,2,13252,'2.99','2005-08-19 16:50:50','2006-02-15 22:19:05'), +(12188,451,2,13380,'0.99','2005-08-19 21:36:58','2006-02-15 22:19:05'), +(12189,451,1,13666,'2.99','2005-08-20 08:20:19','2006-02-15 22:19:05'), +(12190,451,1,13705,'2.99','2005-08-20 09:32:23','2006-02-15 22:19:06'), +(12191,451,2,14500,'0.99','2005-08-21 14:11:30','2006-02-15 22:19:06'), +(12192,451,1,15651,'4.99','2005-08-23 08:31:49','2006-02-15 22:19:06'), +(12193,452,1,354,'2.99','2005-05-27 06:12:26','2006-02-15 22:19:06'), +(12194,452,2,714,'2.99','2005-05-29 04:15:21','2006-02-15 22:19:06'), +(12195,452,1,726,'1.99','2005-05-29 06:05:29','2006-02-15 22:19:06'), +(12196,452,2,1203,'4.99','2005-06-15 02:09:02','2006-02-15 22:19:06'), +(12197,452,1,1512,'5.99','2005-06-15 22:53:03','2006-02-15 22:19:06'), +(12198,452,1,1794,'3.99','2005-06-16 20:08:37','2006-02-15 22:19:06'), +(12199,452,1,2263,'0.99','2005-06-18 05:57:47','2006-02-15 22:19:06'), +(12200,452,2,2266,'4.99','2005-06-18 06:05:02','2006-02-15 22:19:06'), +(12201,452,1,2504,'0.99','2005-06-18 23:19:53','2006-02-15 22:19:06'), +(12202,452,2,2661,'0.99','2005-06-19 10:50:52','2006-02-15 22:19:06'), +(12203,452,2,3638,'3.99','2005-07-06 07:08:17','2006-02-15 22:19:06'), +(12204,452,1,3791,'2.99','2005-07-06 14:24:56','2006-02-15 22:19:06'), +(12205,452,2,3907,'6.99','2005-07-06 19:39:14','2006-02-15 22:19:06'), +(12206,452,1,4348,'0.99','2005-07-07 19:02:05','2006-02-15 22:19:06'), +(12207,452,2,4353,'4.99','2005-07-07 19:19:05','2006-02-15 22:19:06'), +(12208,452,2,4417,'2.99','2005-07-07 22:05:05','2006-02-15 22:19:07'), +(12209,452,1,4720,'0.99','2005-07-08 12:34:34','2006-02-15 22:19:07'), +(12210,452,1,5177,'1.99','2005-07-09 09:43:21','2006-02-15 22:19:07'), +(12211,452,2,5480,'0.99','2005-07-09 23:49:07','2006-02-15 22:19:07'), +(12212,452,2,6959,'2.99','2005-07-27 00:07:51','2006-02-15 22:19:07'), +(12213,452,2,7899,'6.99','2005-07-28 11:10:12','2006-02-15 22:19:07'), +(12214,452,1,8898,'1.99','2005-07-30 01:02:20','2006-02-15 22:19:07'), +(12215,452,2,9379,'6.99','2005-07-30 19:13:01','2006-02-15 22:19:07'), +(12216,452,2,11715,'4.99','2005-08-17 07:40:55','2006-02-15 22:19:07'), +(12217,452,1,11735,'3.99','2005-08-17 08:35:42','2006-02-15 22:19:07'), +(12218,452,1,12355,'0.99','2005-08-18 07:36:23','2006-02-15 22:19:07'), +(12219,452,1,12630,'4.99','2005-08-18 17:49:28','2006-02-15 22:19:07'), +(12220,452,1,13080,'4.99','2005-08-19 10:18:00','2006-02-15 22:19:07'), +(12221,452,1,13642,'3.99','2005-08-20 07:42:17','2006-02-15 22:19:07'), +(12222,452,1,14660,'0.99','2005-08-21 19:43:21','2006-02-15 22:19:07'), +(12223,452,1,15909,'0.99','2005-08-23 17:42:42','2006-02-15 22:19:07'), +(12224,452,1,14175,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:07'), +(12225,453,2,2852,'5.99','2005-06-19 23:08:50','2006-02-15 22:19:07'), +(12226,453,1,2853,'7.99','2005-06-19 23:09:41','2006-02-15 22:19:08'), +(12227,453,2,2887,'4.99','2005-06-20 01:39:43','2006-02-15 22:19:08'), +(12228,453,2,3929,'0.99','2005-07-06 20:52:39','2006-02-15 22:19:08'), +(12229,453,2,4033,'8.99','2005-07-07 02:35:46','2006-02-15 22:19:08'), +(12230,453,1,4717,'4.99','2005-07-08 12:22:43','2006-02-15 22:19:08'), +(12231,453,2,4805,'2.99','2005-07-08 16:59:12','2006-02-15 22:19:08'), +(12232,453,2,5359,'6.99','2005-07-09 18:10:52','2006-02-15 22:19:08'), +(12233,453,1,6752,'4.99','2005-07-12 14:53:15','2006-02-15 22:19:08'), +(12234,453,1,7563,'0.99','2005-07-27 22:25:36','2006-02-15 22:19:08'), +(12235,453,2,9289,'6.99','2005-07-30 15:57:04','2006-02-15 22:19:08'), +(12236,453,2,9406,'6.99','2005-07-30 20:24:00','2006-02-15 22:19:08'), +(12237,453,2,9900,'1.99','2005-07-31 14:15:05','2006-02-15 22:19:08'), +(12238,453,1,11794,'4.99','2005-08-17 11:08:48','2006-02-15 22:19:08'), +(12239,453,1,12703,'2.99','2005-08-18 20:37:13','2006-02-15 22:19:08'), +(12240,453,1,13711,'7.99','2005-08-20 09:35:20','2006-02-15 22:19:08'), +(12241,453,1,13785,'4.99','2005-08-20 12:11:46','2006-02-15 22:19:08'), +(12242,453,1,14133,'2.99','2005-08-21 01:44:14','2006-02-15 22:19:08'), +(12243,453,2,14306,'5.99','2005-08-21 07:32:35','2006-02-15 22:19:09'), +(12244,453,2,14644,'4.99','2005-08-21 19:12:12','2006-02-15 22:19:09'), +(12245,453,1,14652,'4.99','2005-08-21 19:32:05','2006-02-15 22:19:09'), +(12246,453,1,15252,'0.99','2005-08-22 18:04:22','2006-02-15 22:19:09'), +(12247,453,2,15627,'4.99','2005-08-23 07:25:38','2006-02-15 22:19:09'), +(12248,454,1,735,'7.99','2005-05-29 08:08:13','2006-02-15 22:19:09'), +(12249,454,2,1647,'4.99','2005-06-16 09:14:58','2006-02-15 22:19:09'), +(12250,454,2,1844,'7.99','2005-06-16 23:53:53','2006-02-15 22:19:09'), +(12251,454,1,1861,'1.99','2005-06-17 01:17:31','2006-02-15 22:19:09'), +(12252,454,1,1938,'4.99','2005-06-17 07:18:36','2006-02-15 22:19:09'), +(12253,454,2,2048,'5.99','2005-06-17 14:55:29','2006-02-15 22:19:09'), +(12254,454,2,2182,'5.99','2005-06-18 00:56:18','2006-02-15 22:19:09'), +(12255,454,1,2437,'2.99','2005-06-18 18:30:26','2006-02-15 22:19:09'), +(12256,454,2,2666,'9.99','2005-06-19 11:17:12','2006-02-15 22:19:09'), +(12257,454,1,3221,'2.99','2005-06-21 01:49:47','2006-02-15 22:19:09'), +(12258,454,1,3362,'4.99','2005-06-21 12:19:54','2006-02-15 22:19:09'), +(12259,454,1,3622,'7.99','2005-07-06 06:05:04','2006-02-15 22:19:09'), +(12260,454,2,4562,'4.99','2005-07-08 05:08:32','2006-02-15 22:19:09'), +(12261,454,2,5088,'4.99','2005-07-09 05:45:16','2006-02-15 22:19:10'), +(12262,454,2,5446,'2.99','2005-07-09 21:59:55','2006-02-15 22:19:10'), +(12263,454,2,6260,'4.99','2005-07-11 15:26:29','2006-02-15 22:19:10'), +(12264,454,2,6701,'0.99','2005-07-12 12:47:59','2006-02-15 22:19:10'), +(12265,454,2,8481,'2.99','2005-07-29 08:45:57','2006-02-15 22:19:10'), +(12266,454,1,8806,'0.99','2005-07-29 21:36:34','2006-02-15 22:19:10'), +(12267,454,2,9041,'0.99','2005-07-30 06:32:36','2006-02-15 22:19:10'), +(12268,454,1,9372,'9.99','2005-07-30 19:04:30','2006-02-15 22:19:10'), +(12269,454,1,10005,'3.99','2005-07-31 17:53:51','2006-02-15 22:19:10'), +(12270,454,2,12347,'0.99','2005-08-18 07:18:10','2006-02-15 22:19:10'), +(12271,454,1,12553,'0.99','2005-08-18 14:46:54','2006-02-15 22:19:10'), +(12272,454,2,13496,'8.99','2005-08-20 01:42:29','2006-02-15 22:19:10'), +(12273,454,2,13513,'2.99','2005-08-20 02:27:53','2006-02-15 22:19:10'), +(12274,454,2,13694,'8.99','2005-08-20 09:13:23','2006-02-15 22:19:10'), +(12275,454,1,13805,'6.99','2005-08-20 12:53:12','2006-02-15 22:19:10'), +(12276,454,1,14799,'0.99','2005-08-22 00:44:57','2006-02-15 22:19:10'), +(12277,454,2,14843,'2.99','2005-08-22 02:05:25','2006-02-15 22:19:10'), +(12278,454,2,15012,'4.99','2005-08-22 08:42:32','2006-02-15 22:19:10'), +(12279,454,1,15301,'3.99','2005-08-22 19:44:16','2006-02-15 22:19:11'), +(12280,454,2,15608,'1.99','2005-08-23 06:55:26','2006-02-15 22:19:11'), +(12281,455,2,115,'0.99','2005-05-25 19:13:25','2006-02-15 22:19:11'), +(12282,455,2,343,'0.99','2005-05-27 04:13:41','2006-02-15 22:19:11'), +(12283,455,2,1382,'1.99','2005-06-15 15:18:08','2006-02-15 22:19:11'), +(12284,455,1,1802,'1.99','2005-06-16 20:23:30','2006-02-15 22:19:11'), +(12285,455,1,1906,'2.99','2005-06-17 04:53:35','2006-02-15 22:19:11'), +(12286,455,2,2356,'0.99','2005-06-18 12:59:23','2006-02-15 22:19:11'), +(12287,455,2,4195,'2.99','2005-07-07 11:00:02','2006-02-15 22:19:11'), +(12288,455,1,4861,'8.99','2005-07-08 18:57:30','2006-02-15 22:19:11'), +(12289,455,1,4964,'2.99','2005-07-08 23:46:38','2006-02-15 22:19:11'), +(12290,455,1,5504,'6.99','2005-07-10 00:36:38','2006-02-15 22:19:11'), +(12291,455,2,6729,'4.99','2005-07-12 13:58:23','2006-02-15 22:19:11'), +(12292,455,1,7388,'4.99','2005-07-27 15:54:19','2006-02-15 22:19:11'), +(12293,455,2,7498,'4.99','2005-07-27 20:09:31','2006-02-15 22:19:11'), +(12294,455,2,7905,'5.99','2005-07-28 11:26:57','2006-02-15 22:19:11'), +(12295,455,2,8291,'2.99','2005-07-29 02:28:25','2006-02-15 22:19:11'), +(12296,455,1,10436,'0.99','2005-08-01 08:50:59','2006-02-15 22:19:11'), +(12297,455,1,11605,'4.99','2005-08-17 03:30:57','2006-02-15 22:19:12'), +(12298,455,1,12163,'2.99','2005-08-18 00:46:01','2006-02-15 22:19:12'), +(12299,455,1,12314,'4.99','2005-08-18 06:10:02','2006-02-15 22:19:12'), +(12300,455,2,13083,'2.99','2005-08-19 10:26:45','2006-02-15 22:19:12'), +(12301,455,2,13813,'4.99','2005-08-20 13:03:26','2006-02-15 22:19:12'), +(12302,455,1,14294,'2.99','2005-08-21 07:07:26','2006-02-15 22:19:12'), +(12303,455,2,14583,'4.99','2005-08-21 17:11:47','2006-02-15 22:19:12'), +(12304,455,1,15494,'1.99','2005-08-23 02:25:09','2006-02-15 22:19:12'), +(12305,456,2,19,'4.99','2005-05-25 01:17:24','2006-02-15 22:19:12'), +(12306,456,1,1288,'2.99','2005-06-15 08:41:52','2006-02-15 22:19:12'), +(12307,456,1,1700,'0.99','2005-06-16 13:18:23','2006-02-15 22:19:12'), +(12308,456,2,2103,'5.99','2005-06-17 19:13:10','2006-02-15 22:19:12'), +(12309,456,2,2146,'6.99','2005-06-17 22:26:23','2006-02-15 22:19:12'), +(12310,456,1,2192,'4.99','2005-06-18 01:35:47','2006-02-15 22:19:12'), +(12311,456,1,2404,'0.99','2005-06-18 16:33:48','2006-02-15 22:19:12'), +(12312,456,1,2581,'2.99','2005-06-19 04:54:13','2006-02-15 22:19:12'), +(12313,456,1,3743,'7.99','2005-07-06 12:03:54','2006-02-15 22:19:12'), +(12314,456,2,3881,'2.99','2005-07-06 18:35:37','2006-02-15 22:19:13'), +(12315,456,1,4141,'3.99','2005-07-07 08:19:20','2006-02-15 22:19:13'), +(12316,456,2,5964,'0.99','2005-07-10 23:47:18','2006-02-15 22:19:13'), +(12317,456,2,6023,'0.99','2005-07-11 02:15:57','2006-02-15 22:19:13'), +(12318,456,2,7248,'2.99','2005-07-27 10:37:45','2006-02-15 22:19:13'), +(12319,456,1,8749,'4.99','2005-07-29 19:13:15','2006-02-15 22:19:13'), +(12320,456,2,10519,'5.99','2005-08-01 11:44:13','2006-02-15 22:19:13'), +(12321,456,1,10813,'2.99','2005-08-01 22:43:00','2006-02-15 22:19:13'), +(12322,456,1,12188,'4.99','2005-08-18 01:51:43','2006-02-15 22:19:13'), +(12323,456,1,13144,'8.99','2005-08-19 12:45:55','2006-02-15 22:19:13'), +(12324,456,1,13348,'4.99','2005-08-19 20:31:48','2006-02-15 22:19:13'), +(12325,456,1,13547,'4.99','2005-08-20 03:53:16','2006-02-15 22:19:13'), +(12326,456,2,14253,'2.99','2005-08-21 05:47:52','2006-02-15 22:19:13'), +(12327,456,2,14690,'1.99','2005-08-21 20:42:25','2006-02-15 22:19:13'), +(12328,456,1,15720,'3.99','2005-08-23 11:15:20','2006-02-15 22:19:13'), +(12329,456,1,15910,'2.99','2005-08-23 17:43:16','2006-02-15 22:19:13'), +(12330,457,2,1024,'7.99','2005-05-31 03:30:19','2006-02-15 22:19:13'), +(12331,457,2,1453,'4.99','2005-06-15 19:36:39','2006-02-15 22:19:13'), +(12332,457,2,1727,'0.99','2005-06-16 15:21:47','2006-02-15 22:19:14'), +(12333,457,1,2030,'0.99','2005-06-17 13:13:27','2006-02-15 22:19:14'), +(12334,457,1,2172,'7.99','2005-06-18 00:06:16','2006-02-15 22:19:14'), +(12335,457,1,2670,'4.99','2005-06-19 11:30:16','2006-02-15 22:19:14'), +(12336,457,1,2762,'3.99','2005-06-19 17:22:31','2006-02-15 22:19:14'), +(12337,457,1,2811,'0.99','2005-06-19 19:53:30','2006-02-15 22:19:14'), +(12338,457,2,3115,'2.99','2005-06-20 17:59:05','2006-02-15 22:19:14'), +(12339,457,2,3184,'2.99','2005-06-20 22:57:44','2006-02-15 22:19:14'), +(12340,457,2,4600,'5.99','2005-07-08 06:48:37','2006-02-15 22:19:14'), +(12341,457,1,5500,'0.99','2005-07-10 00:28:17','2006-02-15 22:19:14'), +(12342,457,1,6467,'7.99','2005-07-12 01:22:03','2006-02-15 22:19:14'), +(12343,457,1,7184,'1.99','2005-07-27 08:22:26','2006-02-15 22:19:14'), +(12344,457,2,8373,'4.99','2005-07-29 05:19:53','2006-02-15 22:19:14'), +(12345,457,1,8502,'2.99','2005-07-29 09:15:41','2006-02-15 22:19:14'), +(12346,457,1,10049,'2.99','2005-07-31 19:11:11','2006-02-15 22:19:14'), +(12347,457,2,11956,'6.99','2005-08-17 17:22:05','2006-02-15 22:19:14'), +(12348,457,1,12115,'4.99','2005-08-17 23:04:15','2006-02-15 22:19:14'), +(12349,457,1,12171,'4.99','2005-08-18 01:06:13','2006-02-15 22:19:15'), +(12350,457,1,13088,'0.99','2005-08-19 10:36:11','2006-02-15 22:19:15'), +(12351,457,1,13150,'2.99','2005-08-19 13:08:19','2006-02-15 22:19:15'), +(12352,457,2,13934,'0.99','2005-08-20 17:18:48','2006-02-15 22:19:15'), +(12353,457,2,14327,'10.99','2005-08-21 08:18:18','2006-02-15 22:19:15'), +(12354,457,1,14365,'6.99','2005-08-21 09:25:13','2006-02-15 22:19:15'), +(12355,457,1,15128,'3.99','2005-08-22 12:57:26','2006-02-15 22:19:15'), +(12356,457,1,12645,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:15'), +(12357,457,2,14516,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:15'), +(12358,458,2,2629,'5.99','2005-06-19 08:42:12','2006-02-15 22:19:15'), +(12359,458,2,3322,'0.99','2005-06-21 08:42:37','2006-02-15 22:19:15'), +(12360,458,2,4525,'2.99','2005-07-08 03:15:00','2006-02-15 22:19:15'), +(12361,458,1,5412,'2.99','2005-07-09 20:23:52','2006-02-15 22:19:15'), +(12362,458,1,5572,'0.99','2005-07-10 03:49:00','2006-02-15 22:19:15'), +(12363,458,2,6250,'3.99','2005-07-11 15:02:04','2006-02-15 22:19:15'), +(12364,458,1,6431,'5.99','2005-07-12 00:03:57','2006-02-15 22:19:15'), +(12365,458,2,6595,'7.99','2005-07-12 07:25:48','2006-02-15 22:19:15'), +(12366,458,1,6654,'1.99','2005-07-12 11:06:28','2006-02-15 22:19:15'), +(12367,458,2,7923,'3.99','2005-07-28 12:08:29','2006-02-15 22:19:16'), +(12368,458,1,8158,'0.99','2005-07-28 21:08:46','2006-02-15 22:19:16'), +(12369,458,2,11138,'2.99','2005-08-02 09:26:16','2006-02-15 22:19:16'), +(12370,458,2,11975,'2.99','2005-08-17 17:58:39','2006-02-15 22:19:16'), +(12371,458,2,12768,'0.99','2005-08-18 23:26:11','2006-02-15 22:19:16'), +(12372,458,2,13259,'2.99','2005-08-19 17:08:53','2006-02-15 22:19:16'), +(12373,458,2,13487,'2.99','2005-08-20 01:27:05','2006-02-15 22:19:16'), +(12374,458,2,13571,'4.99','2005-08-20 05:05:14','2006-02-15 22:19:16'), +(12375,458,2,14428,'4.99','2005-08-21 11:27:07','2006-02-15 22:19:16'), +(12376,458,1,15604,'4.99','2005-08-23 06:44:19','2006-02-15 22:19:16'), +(12377,459,2,2,'2.99','2005-05-24 22:54:33','2006-02-15 22:19:16'), +(12378,459,2,1876,'0.99','2005-06-17 02:50:51','2006-02-15 22:19:16'), +(12379,459,2,1977,'2.99','2005-06-17 09:38:22','2006-02-15 22:19:16'), +(12380,459,2,2075,'4.99','2005-06-17 16:40:33','2006-02-15 22:19:16'), +(12381,459,1,2899,'0.99','2005-06-20 02:39:21','2006-02-15 22:19:16'), +(12382,459,2,3041,'4.99','2005-06-20 12:35:44','2006-02-15 22:19:16'), +(12383,459,2,3045,'0.99','2005-06-20 12:42:00','2006-02-15 22:19:16'), +(12384,459,2,3234,'9.99','2005-06-21 02:39:44','2006-02-15 22:19:16'), +(12385,459,1,3506,'2.99','2005-07-06 00:22:29','2006-02-15 22:19:17'), +(12386,459,2,4519,'2.99','2005-07-08 02:51:23','2006-02-15 22:19:17'), +(12387,459,1,5301,'3.99','2005-07-09 15:42:10','2006-02-15 22:19:17'), +(12388,459,1,5695,'0.99','2005-07-10 09:43:40','2006-02-15 22:19:17'), +(12389,459,1,6206,'0.99','2005-07-11 12:32:14','2006-02-15 22:19:17'), +(12390,459,2,6750,'3.99','2005-07-12 14:49:39','2006-02-15 22:19:17'), +(12391,459,1,7623,'6.99','2005-07-28 00:37:41','2006-02-15 22:19:17'), +(12392,459,2,7639,'4.99','2005-07-28 01:14:36','2006-02-15 22:19:17'), +(12393,459,1,7717,'4.99','2005-07-28 04:33:54','2006-02-15 22:19:17'), +(12394,459,1,7820,'5.99','2005-07-28 08:28:51','2006-02-15 22:19:17'), +(12395,459,1,7913,'6.99','2005-07-28 11:47:23','2006-02-15 22:19:17'), +(12396,459,1,8289,'9.99','2005-07-29 02:23:24','2006-02-15 22:19:17'), +(12397,459,2,8557,'10.99','2005-07-29 11:19:59','2006-02-15 22:19:17'), +(12398,459,1,8897,'2.99','2005-07-30 01:00:17','2006-02-15 22:19:17'), +(12399,459,1,9137,'6.99','2005-07-30 10:09:24','2006-02-15 22:19:17'), +(12400,459,2,9639,'2.99','2005-07-31 05:32:10','2006-02-15 22:19:17'), +(12401,459,1,9744,'4.99','2005-07-31 09:15:38','2006-02-15 22:19:17'), +(12402,459,2,10117,'4.99','2005-07-31 21:14:31','2006-02-15 22:19:18'), +(12403,459,1,10233,'6.99','2005-08-01 01:54:23','2006-02-15 22:19:18'), +(12404,459,2,10255,'4.99','2005-08-01 02:46:13','2006-02-15 22:19:18'), +(12405,459,1,10499,'7.99','2005-08-01 11:00:20','2006-02-15 22:19:18'), +(12406,459,1,10531,'2.99','2005-08-01 12:06:30','2006-02-15 22:19:18'), +(12407,459,1,12527,'6.99','2005-08-18 13:48:46','2006-02-15 22:19:18'), +(12408,459,1,12629,'7.99','2005-08-18 17:40:33','2006-02-15 22:19:18'), +(12409,459,2,13960,'10.99','2005-08-20 18:16:26','2006-02-15 22:19:18'), +(12410,459,1,13967,'4.99','2005-08-20 18:28:46','2006-02-15 22:19:18'), +(12411,459,1,14315,'3.99','2005-08-21 07:56:39','2006-02-15 22:19:18'), +(12412,459,1,15126,'5.99','2005-08-22 12:53:58','2006-02-15 22:19:18'), +(12413,459,2,15342,'2.99','2005-08-22 20:56:41','2006-02-15 22:19:18'), +(12414,459,1,15814,'0.99','2005-08-23 14:52:50','2006-02-15 22:19:18'), +(12415,460,1,223,'4.99','2005-05-26 10:15:23','2006-02-15 22:19:18'), +(12416,460,2,298,'0.99','2005-05-26 20:52:26','2006-02-15 22:19:18'), +(12417,460,1,880,'0.99','2005-05-30 06:12:33','2006-02-15 22:19:18'), +(12418,460,2,1064,'4.99','2005-05-31 08:50:07','2006-02-15 22:19:18'), +(12419,460,2,1392,'0.99','2005-06-15 16:12:27','2006-02-15 22:19:19'), +(12420,460,2,3820,'4.99','2005-07-06 15:35:26','2006-02-15 22:19:19'), +(12421,460,1,4452,'7.99','2005-07-07 23:31:54','2006-02-15 22:19:19'), +(12422,460,2,5482,'3.99','2005-07-09 23:53:04','2006-02-15 22:19:19'), +(12423,460,1,6613,'4.99','2005-07-12 08:30:07','2006-02-15 22:19:19'), +(12424,460,1,6788,'5.99','2005-07-12 16:33:44','2006-02-15 22:19:19'), +(12425,460,1,7125,'6.99','2005-07-27 06:11:00','2006-02-15 22:19:19'), +(12426,460,1,7785,'3.99','2005-07-28 07:16:11','2006-02-15 22:19:19'), +(12427,460,2,8656,'2.99','2005-07-29 15:05:52','2006-02-15 22:19:19'), +(12428,460,2,10754,'10.99','2005-08-01 20:12:33','2006-02-15 22:19:19'), +(12429,460,1,10926,'1.99','2005-08-02 02:26:37','2006-02-15 22:19:19'), +(12430,460,2,11554,'2.99','2005-08-17 01:05:17','2006-02-15 22:19:19'), +(12431,460,1,12056,'5.99','2005-08-17 21:03:48','2006-02-15 22:19:19'), +(12432,460,2,12586,'4.99','2005-08-18 15:54:39','2006-02-15 22:19:19'), +(12433,460,1,12865,'0.99','2005-08-19 02:38:50','2006-02-15 22:19:19'), +(12434,460,2,13215,'8.99','2005-08-19 15:35:38','2006-02-15 22:19:19'), +(12435,460,1,13341,'3.99','2005-08-19 20:18:53','2006-02-15 22:19:19'), +(12436,460,2,13920,'5.99','2005-08-20 16:51:18','2006-02-15 22:19:19'), +(12437,460,2,14864,'0.99','2005-08-22 02:57:06','2006-02-15 22:19:20'), +(12438,460,1,14923,'3.99','2005-08-22 05:13:33','2006-02-15 22:19:20'), +(12439,460,2,15954,'2.99','2005-08-23 19:14:07','2006-02-15 22:19:20'), +(12440,461,1,684,'6.99','2005-05-29 00:13:15','2006-02-15 22:19:20'), +(12441,461,2,3127,'5.99','2005-06-20 18:39:43','2006-02-15 22:19:20'), +(12442,461,2,3319,'4.99','2005-06-21 08:25:46','2006-02-15 22:19:20'), +(12443,461,2,3698,'0.99','2005-07-06 10:09:20','2006-02-15 22:19:20'), +(12444,461,2,4586,'2.99','2005-07-08 06:12:33','2006-02-15 22:19:20'), +(12445,461,1,5650,'0.99','2005-07-10 07:17:01','2006-02-15 22:19:20'), +(12446,461,1,5809,'2.99','2005-07-10 15:19:30','2006-02-15 22:19:20'), +(12447,461,2,7334,'2.99','2005-07-27 13:59:58','2006-02-15 22:19:20'), +(12448,461,2,7664,'2.99','2005-07-28 02:24:23','2006-02-15 22:19:20'), +(12449,461,2,8133,'0.99','2005-07-28 20:01:06','2006-02-15 22:19:20'), +(12450,461,2,8164,'0.99','2005-07-28 21:17:19','2006-02-15 22:19:20'), +(12451,461,2,9499,'4.99','2005-07-30 23:58:30','2006-02-15 22:19:20'), +(12452,461,1,9885,'0.99','2005-07-31 13:59:32','2006-02-15 22:19:20'), +(12453,461,2,10113,'4.99','2005-07-31 21:10:03','2006-02-15 22:19:20'), +(12454,461,1,10260,'2.99','2005-08-01 02:58:07','2006-02-15 22:19:21'), +(12455,461,2,11063,'0.99','2005-08-02 06:53:48','2006-02-15 22:19:21'), +(12456,461,2,11219,'0.99','2005-08-02 12:30:20','2006-02-15 22:19:21'), +(12457,461,2,12022,'2.99','2005-08-17 19:52:45','2006-02-15 22:19:21'), +(12458,461,1,13223,'2.99','2005-08-19 15:52:04','2006-02-15 22:19:21'), +(12459,461,1,13269,'2.99','2005-08-19 17:34:00','2006-02-15 22:19:21'), +(12460,461,1,14186,'4.99','2005-08-21 03:31:07','2006-02-15 22:19:21'), +(12461,461,1,14893,'4.99','2005-08-22 04:15:48','2006-02-15 22:19:21'), +(12462,461,1,15067,'2.99','2005-08-22 10:49:21','2006-02-15 22:19:21'), +(12463,461,2,15187,'4.99','2005-08-22 15:53:32','2006-02-15 22:19:21'), +(12464,461,1,15336,'6.99','2005-08-22 20:47:48','2006-02-15 22:19:21'), +(12465,461,2,15411,'2.99','2005-08-22 23:35:41','2006-02-15 22:19:21'), +(12466,461,2,15449,'2.99','2005-08-23 00:55:43','2006-02-15 22:19:21'), +(12467,461,2,15613,'7.99','2005-08-23 07:03:19','2006-02-15 22:19:21'), +(12468,462,2,156,'2.99','2005-05-26 01:19:05','2006-02-15 22:19:21'), +(12469,462,2,590,'3.99','2005-05-28 13:06:50','2006-02-15 22:19:21'), +(12470,462,2,1773,'5.99','2005-06-16 18:13:43','2006-02-15 22:19:21'), +(12471,462,2,1926,'9.99','2005-06-17 06:24:30','2006-02-15 22:19:21'), +(12472,462,1,3279,'4.99','2005-06-21 06:05:53','2006-02-15 22:19:22'), +(12473,462,1,4500,'4.99','2005-07-08 02:10:01','2006-02-15 22:19:22'), +(12474,462,2,4728,'3.99','2005-07-08 12:59:01','2006-02-15 22:19:22'), +(12475,462,1,6583,'4.99','2005-07-12 06:42:31','2006-02-15 22:19:22'), +(12476,462,1,6630,'0.99','2005-07-12 09:30:05','2006-02-15 22:19:22'), +(12477,462,1,6710,'7.99','2005-07-12 13:23:09','2006-02-15 22:19:22'), +(12478,462,1,6721,'6.99','2005-07-12 13:42:58','2006-02-15 22:19:22'), +(12479,462,2,7295,'8.99','2005-07-27 12:38:47','2006-02-15 22:19:22'), +(12480,462,1,7324,'6.99','2005-07-27 13:42:39','2006-02-15 22:19:22'), +(12481,462,1,7762,'8.99','2005-07-28 06:34:23','2006-02-15 22:19:22'), +(12482,462,1,7932,'4.99','2005-07-28 12:24:54','2006-02-15 22:19:22'), +(12483,462,2,7935,'2.99','2005-07-28 12:33:17','2006-02-15 22:19:22'), +(12484,462,1,8066,'2.99','2005-07-28 17:20:09','2006-02-15 22:19:22'), +(12485,462,1,8282,'0.99','2005-07-29 01:49:04','2006-02-15 22:19:22'), +(12486,462,1,8290,'3.99','2005-07-29 02:24:08','2006-02-15 22:19:22'), +(12487,462,2,8757,'2.99','2005-07-29 19:19:10','2006-02-15 22:19:22'), +(12488,462,1,9891,'0.99','2005-07-31 14:05:44','2006-02-15 22:19:22'), +(12489,462,1,10283,'2.99','2005-08-01 03:29:45','2006-02-15 22:19:23'), +(12490,462,2,11639,'6.99','2005-08-17 04:43:29','2006-02-15 22:19:23'), +(12491,462,1,11808,'2.99','2005-08-17 11:51:16','2006-02-15 22:19:23'), +(12492,462,1,12466,'4.99','2005-08-18 11:36:55','2006-02-15 22:19:23'), +(12493,462,2,12582,'0.99','2005-08-18 15:51:12','2006-02-15 22:19:23'), +(12494,462,1,12802,'8.99','2005-08-19 00:27:41','2006-02-15 22:19:23'), +(12495,462,2,13041,'8.99','2005-08-19 09:05:38','2006-02-15 22:19:23'), +(12496,462,1,13328,'4.99','2005-08-19 19:56:01','2006-02-15 22:19:23'), +(12497,462,1,13492,'7.99','2005-08-20 01:32:04','2006-02-15 22:19:23'), +(12498,462,2,15581,'2.99','2005-08-23 05:42:13','2006-02-15 22:19:23'), +(12499,462,1,15943,'2.99','2005-08-23 18:49:32','2006-02-15 22:19:23'), +(12500,462,1,16013,'0.99','2005-08-23 21:17:17','2006-02-15 22:19:23'), +(12501,463,1,560,'1.99','2005-05-28 08:53:02','2006-02-15 22:19:23'), +(12502,463,1,1284,'2.99','2005-06-15 08:27:33','2006-02-15 22:19:23'), +(12503,463,2,2527,'4.99','2005-06-19 01:10:31','2006-02-15 22:19:23'), +(12504,463,1,3217,'2.99','2005-06-21 01:28:12','2006-02-15 22:19:23'), +(12505,463,1,3309,'4.99','2005-06-21 08:00:49','2006-02-15 22:19:23'), +(12506,463,1,5026,'2.99','2005-07-09 02:32:34','2006-02-15 22:19:24'), +(12507,463,1,5157,'2.99','2005-07-09 08:52:12','2006-02-15 22:19:24'), +(12508,463,1,5448,'0.99','2005-07-09 22:11:14','2006-02-15 22:19:24'), +(12509,463,2,6294,'0.99','2005-07-11 17:25:55','2006-02-15 22:19:24'), +(12510,463,1,6932,'6.99','2005-07-26 23:08:04','2006-02-15 22:19:24'), +(12511,463,1,7013,'0.99','2005-07-27 02:03:21','2006-02-15 22:19:24'), +(12512,463,1,7361,'0.99','2005-07-27 14:53:55','2006-02-15 22:19:24'), +(12513,463,1,8762,'2.99','2005-07-29 19:30:02','2006-02-15 22:19:24'), +(12514,463,2,9405,'7.99','2005-07-30 20:22:17','2006-02-15 22:19:24'), +(12515,463,1,9954,'2.99','2005-07-31 15:57:07','2006-02-15 22:19:24'), +(12516,463,1,10275,'3.99','2005-08-01 03:20:08','2006-02-15 22:19:24'), +(12517,463,2,10405,'0.99','2005-08-01 07:35:25','2006-02-15 22:19:24'), +(12518,463,2,10906,'2.99','2005-08-02 01:47:04','2006-02-15 22:19:24'), +(12519,463,2,12096,'7.99','2005-08-17 22:32:50','2006-02-15 22:19:24'), +(12520,463,2,12679,'6.99','2005-08-18 19:42:11','2006-02-15 22:19:24'), +(12521,463,1,12950,'2.99','2005-08-19 05:55:58','2006-02-15 22:19:24'), +(12522,463,2,13938,'4.99','2005-08-20 17:24:45','2006-02-15 22:19:24'), +(12523,463,1,14689,'0.99','2005-08-21 20:33:00','2006-02-15 22:19:24'), +(12524,463,1,14859,'2.99','2005-08-22 02:46:35','2006-02-15 22:19:25'), +(12525,463,2,15151,'7.99','2005-08-22 14:23:11','2006-02-15 22:19:25'), +(12526,464,1,305,'3.99','2005-05-26 21:22:07','2006-02-15 22:19:25'), +(12527,464,2,373,'1.99','2005-05-27 08:16:25','2006-02-15 22:19:25'), +(12528,464,2,1277,'4.99','2005-06-15 08:01:29','2006-02-15 22:19:25'), +(12529,464,1,3167,'2.99','2005-06-20 21:42:29','2006-02-15 22:19:25'), +(12530,464,1,3761,'4.99','2005-07-06 12:52:44','2006-02-15 22:19:25'), +(12531,464,1,4337,'5.99','2005-07-07 18:36:37','2006-02-15 22:19:25'), +(12532,464,2,5455,'6.99','2005-07-09 22:28:45','2006-02-15 22:19:25'), +(12533,464,1,5910,'4.99','2005-07-10 20:51:34','2006-02-15 22:19:25'), +(12534,464,2,6601,'3.99','2005-07-12 07:44:49','2006-02-15 22:19:25'), +(12535,464,1,9600,'5.99','2005-07-31 03:35:34','2006-02-15 22:19:25'), +(12536,464,2,11275,'1.99','2005-08-02 14:25:58','2006-02-15 22:19:25'), +(12537,464,1,13644,'8.99','2005-08-20 07:46:30','2006-02-15 22:19:25'), +(12538,464,2,13943,'2.99','2005-08-20 17:31:18','2006-02-15 22:19:25'), +(12539,464,1,15092,'6.99','2005-08-22 11:36:16','2006-02-15 22:19:25'), +(12540,464,2,15854,'0.99','2005-08-23 15:58:05','2006-02-15 22:19:25'), +(12541,464,1,15983,'4.99','2005-08-23 20:13:38','2006-02-15 22:19:26'), +(12542,465,2,640,'0.99','2005-05-28 18:43:26','2006-02-15 22:19:26'), +(12543,465,1,1337,'2.99','2005-06-15 12:12:42','2006-02-15 22:19:26'), +(12544,465,1,2079,'4.99','2005-06-17 16:49:45','2006-02-15 22:19:26'), +(12545,465,1,2159,'8.99','2005-06-17 23:37:29','2006-02-15 22:19:26'), +(12546,465,2,2524,'0.99','2005-06-19 00:48:11','2006-02-15 22:19:26'), +(12547,465,1,4763,'0.99','2005-07-08 14:57:32','2006-02-15 22:19:26'), +(12548,465,2,6904,'3.99','2005-07-12 22:02:09','2006-02-15 22:19:26'), +(12549,465,2,7508,'2.99','2005-07-27 20:33:08','2006-02-15 22:19:26'), +(12550,465,1,10542,'3.99','2005-08-01 12:32:23','2006-02-15 22:19:26'), +(12551,465,1,11156,'2.99','2005-08-02 09:56:06','2006-02-15 22:19:26'), +(12552,465,1,11586,'4.99','2005-08-17 02:20:42','2006-02-15 22:19:26'), +(12553,465,2,11648,'6.99','2005-08-17 04:56:16','2006-02-15 22:19:26'), +(12554,465,2,12106,'4.99','2005-08-17 22:55:32','2006-02-15 22:19:26'), +(12555,465,1,12814,'4.99','2005-08-19 00:58:24','2006-02-15 22:19:26'), +(12556,465,1,12864,'4.99','2005-08-19 02:38:26','2006-02-15 22:19:26'), +(12557,465,1,15550,'3.99','2005-08-23 04:27:54','2006-02-15 22:19:26'), +(12558,465,2,15859,'4.99','2005-08-23 16:08:15','2006-02-15 22:19:27'), +(12559,466,2,1104,'2.99','2005-05-31 14:30:01','2006-02-15 22:19:27'), +(12560,466,2,1808,'7.99','2005-06-16 20:59:35','2006-02-15 22:19:27'), +(12561,466,2,2446,'8.99','2005-06-18 19:04:41','2006-02-15 22:19:27'), +(12562,466,1,3022,'3.99','2005-06-20 11:17:20','2006-02-15 22:19:27'), +(12563,466,2,3237,'4.99','2005-06-21 02:47:56','2006-02-15 22:19:27'), +(12564,466,2,3343,'2.99','2005-06-21 10:56:59','2006-02-15 22:19:27'), +(12565,466,2,5048,'0.99','2005-07-09 03:46:33','2006-02-15 22:19:27'), +(12566,466,1,5691,'4.99','2005-07-10 09:29:49','2006-02-15 22:19:27'), +(12567,466,1,6073,'6.99','2005-07-11 04:54:31','2006-02-15 22:19:27'), +(12568,466,2,7080,'2.99','2005-07-27 04:25:25','2006-02-15 22:19:27'), +(12569,466,2,8276,'0.99','2005-07-29 01:38:43','2006-02-15 22:19:27'), +(12570,466,1,9202,'3.99','2005-07-30 12:43:24','2006-02-15 22:19:27'), +(12571,466,1,9257,'2.99','2005-07-30 14:30:38','2006-02-15 22:19:27'), +(12572,466,1,10469,'4.99','2005-08-01 09:51:11','2006-02-15 22:19:27'), +(12573,466,2,11343,'0.99','2005-08-02 17:12:30','2006-02-15 22:19:27'), +(12574,466,1,11359,'4.99','2005-08-02 17:45:55','2006-02-15 22:19:27'), +(12575,466,1,12048,'7.99','2005-08-17 20:49:24','2006-02-15 22:19:27'), +(12576,466,1,13478,'2.99','2005-08-20 01:07:14','2006-02-15 22:19:28'), +(12577,466,1,13884,'5.99','2005-08-20 15:30:51','2006-02-15 22:19:28'), +(12578,466,1,13988,'4.99','2005-08-20 19:21:28','2006-02-15 22:19:28'), +(12579,466,2,14546,'2.99','2005-08-21 15:50:50','2006-02-15 22:19:28'), +(12580,466,2,15230,'4.99','2005-08-22 17:31:41','2006-02-15 22:19:28'), +(12581,466,1,16005,'7.99','2005-08-23 21:00:22','2006-02-15 22:19:28'), +(12582,467,2,225,'4.99','2005-05-26 10:27:50','2006-02-15 22:19:28'), +(12583,467,1,1737,'8.99','2005-06-16 15:59:44','2006-02-15 22:19:28'), +(12584,467,2,2121,'4.99','2005-06-17 20:38:54','2006-02-15 22:19:28'), +(12585,467,2,2870,'9.99','2005-06-20 00:17:46','2006-02-15 22:19:28'), +(12586,467,1,3250,'6.99','2005-06-21 03:16:36','2006-02-15 22:19:28'), +(12587,467,1,4216,'0.99','2005-07-07 12:01:34','2006-02-15 22:19:28'), +(12588,467,2,4222,'4.99','2005-07-07 12:20:21','2006-02-15 22:19:28'), +(12589,467,1,4259,'4.99','2005-07-07 14:22:18','2006-02-15 22:19:28'), +(12590,467,2,5160,'4.99','2005-07-09 08:57:07','2006-02-15 22:19:28'), +(12591,467,2,6271,'6.99','2005-07-11 16:01:35','2006-02-15 22:19:28'), +(12592,467,2,7360,'2.99','2005-07-27 14:52:06','2006-02-15 22:19:28'), +(12593,467,2,7573,'5.99','2005-07-27 22:46:20','2006-02-15 22:19:29'), +(12594,467,1,7611,'2.99','2005-07-28 00:11:47','2006-02-15 22:19:29'), +(12595,467,1,8010,'7.99','2005-07-28 15:26:20','2006-02-15 22:19:29'), +(12596,467,2,8061,'6.99','2005-07-28 17:12:53','2006-02-15 22:19:29'), +(12597,467,2,8224,'2.99','2005-07-28 23:59:02','2006-02-15 22:19:29'), +(12598,467,2,8480,'8.99','2005-07-29 08:44:46','2006-02-15 22:19:29'), +(12599,467,1,8767,'4.99','2005-07-29 19:42:33','2006-02-15 22:19:29'), +(12600,467,2,10239,'0.99','2005-08-01 02:09:22','2006-02-15 22:19:29'), +(12601,467,2,11332,'2.99','2005-08-02 16:52:57','2006-02-15 22:19:29'), +(12602,467,1,11874,'4.99','2005-08-17 14:16:40','2006-02-15 22:19:29'), +(12603,467,1,12266,'2.99','2005-08-18 04:22:31','2006-02-15 22:19:29'), +(12604,467,1,12437,'9.99','2005-08-18 10:42:43','2006-02-15 22:19:29'), +(12605,467,1,12641,'2.99','2005-08-18 18:18:08','2006-02-15 22:19:29'), +(12606,467,1,14402,'2.99','2005-08-21 10:38:17','2006-02-15 22:19:29'), +(12607,467,1,14451,'0.99','2005-08-21 12:21:44','2006-02-15 22:19:29'), +(12608,467,1,14842,'3.99','2005-08-22 02:04:38','2006-02-15 22:19:29'), +(12609,467,1,15032,'0.99','2005-08-22 09:14:09','2006-02-15 22:19:29'), +(12610,467,2,15830,'2.99','2005-08-23 15:19:15','2006-02-15 22:19:30'), +(12611,468,2,101,'6.99','2005-05-25 17:17:04','2006-02-15 22:19:30'), +(12612,468,1,186,'4.99','2005-05-26 05:32:52','2006-02-15 22:19:30'), +(12613,468,2,296,'6.99','2005-05-26 20:35:19','2006-02-15 22:19:30'), +(12614,468,2,459,'0.99','2005-05-27 20:00:04','2006-02-15 22:19:30'), +(12615,468,1,673,'0.99','2005-05-28 22:07:30','2006-02-15 22:19:30'), +(12616,468,2,1229,'2.99','2005-06-15 03:53:13','2006-02-15 22:19:30'), +(12617,468,1,1627,'8.99','2005-06-16 07:51:09','2006-02-15 22:19:30'), +(12618,468,1,1821,'2.99','2005-06-16 21:42:49','2006-02-15 22:19:30'), +(12619,468,1,1975,'2.99','2005-06-17 09:32:10','2006-02-15 22:19:30'), +(12620,468,2,2462,'4.99','2005-06-18 20:00:15','2006-02-15 22:19:30'), +(12621,468,1,2831,'0.99','2005-06-19 21:17:06','2006-02-15 22:19:30'), +(12622,468,2,3724,'2.99','2005-07-06 11:12:48','2006-02-15 22:19:30'), +(12623,468,1,3840,'5.99','2005-07-06 16:30:59','2006-02-15 22:19:30'), +(12624,468,2,4184,'3.99','2005-07-07 10:30:08','2006-02-15 22:19:30'), +(12625,468,2,4527,'3.99','2005-07-08 03:20:10','2006-02-15 22:19:30'), +(12626,468,1,5285,'2.99','2005-07-09 15:10:44','2006-02-15 22:19:30'), +(12627,468,1,6392,'0.99','2005-07-11 22:25:19','2006-02-15 22:19:31'), +(12628,468,1,6581,'4.99','2005-07-12 06:26:49','2006-02-15 22:19:31'), +(12629,468,2,6815,'5.99','2005-07-12 18:14:10','2006-02-15 22:19:31'), +(12630,468,2,7292,'4.99','2005-07-27 12:34:14','2006-02-15 22:19:31'), +(12631,468,1,7685,'0.99','2005-07-28 03:13:00','2006-02-15 22:19:31'), +(12632,468,2,8423,'5.99','2005-07-29 07:02:57','2006-02-15 22:19:31'), +(12633,468,2,8768,'6.99','2005-07-29 19:43:02','2006-02-15 22:19:31'), +(12634,468,1,9598,'0.99','2005-07-31 03:30:41','2006-02-15 22:19:31'), +(12635,468,1,9690,'6.99','2005-07-31 07:06:29','2006-02-15 22:19:31'), +(12636,468,2,11257,'10.99','2005-08-02 13:45:05','2006-02-15 22:19:31'), +(12637,468,2,11633,'4.99','2005-08-17 04:30:09','2006-02-15 22:19:31'), +(12638,468,2,12026,'6.99','2005-08-17 20:00:10','2006-02-15 22:19:31'), +(12639,468,2,13221,'3.99','2005-08-19 15:45:47','2006-02-15 22:19:31'), +(12640,468,1,13417,'0.99','2005-08-19 22:51:39','2006-02-15 22:19:31'), +(12641,468,2,14154,'4.99','2005-08-21 02:30:00','2006-02-15 22:19:31'), +(12642,468,2,14210,'4.99','2005-08-21 04:28:02','2006-02-15 22:19:31'), +(12643,468,1,14309,'9.99','2005-08-21 07:44:17','2006-02-15 22:19:31'), +(12644,468,1,14313,'2.99','2005-08-21 07:49:53','2006-02-15 22:19:32'), +(12645,468,1,14614,'9.99','2005-08-21 18:03:51','2006-02-15 22:19:32'), +(12646,468,2,15435,'4.99','2005-08-23 00:28:19','2006-02-15 22:19:32'), +(12647,468,1,15522,'1.99','2005-08-23 03:32:31','2006-02-15 22:19:32'), +(12648,468,1,15836,'2.99','2005-08-23 15:29:17','2006-02-15 22:19:32'), +(12649,468,2,16044,'0.99','2005-08-23 22:24:39','2006-02-15 22:19:32'), +(12650,469,1,168,'0.99','2005-05-26 03:07:43','2006-02-15 22:19:32'), +(12651,469,2,506,'7.99','2005-05-28 02:09:19','2006-02-15 22:19:32'), +(12652,469,2,529,'4.99','2005-05-28 04:34:17','2006-02-15 22:19:32'), +(12653,469,2,936,'1.99','2005-05-30 13:52:49','2006-02-15 22:19:32'), +(12654,469,1,1119,'2.99','2005-05-31 16:34:27','2006-02-15 22:19:32'), +(12655,469,2,1399,'0.99','2005-06-15 16:29:51','2006-02-15 22:19:32'), +(12656,469,1,1680,'9.99','2005-06-16 11:17:22','2006-02-15 22:19:32'), +(12657,469,2,3522,'4.99','2005-07-06 01:00:21','2006-02-15 22:19:32'), +(12658,469,1,3526,'10.99','2005-07-06 01:03:29','2006-02-15 22:19:32'), +(12659,469,2,4067,'3.99','2005-07-07 04:34:23','2006-02-15 22:19:32'), +(12660,469,2,4123,'0.99','2005-07-07 07:16:19','2006-02-15 22:19:32'), +(12661,469,1,5133,'0.99','2005-07-09 07:43:22','2006-02-15 22:19:33'), +(12662,469,1,5299,'3.99','2005-07-09 15:38:09','2006-02-15 22:19:33'), +(12663,469,2,5664,'6.99','2005-07-10 08:04:41','2006-02-15 22:19:33'), +(12664,469,2,6022,'0.99','2005-07-11 02:15:53','2006-02-15 22:19:33'), +(12665,469,2,6099,'4.99','2005-07-11 06:24:44','2006-02-15 22:19:33'), +(12666,469,1,6797,'4.99','2005-07-12 16:47:06','2006-02-15 22:19:33'), +(12667,469,1,6955,'3.99','2005-07-26 23:55:48','2006-02-15 22:19:33'), +(12668,469,2,7062,'6.99','2005-07-27 03:52:01','2006-02-15 22:19:33'), +(12669,469,2,7271,'6.99','2005-07-27 11:29:11','2006-02-15 22:19:33'), +(12670,469,2,7756,'4.99','2005-07-28 06:22:52','2006-02-15 22:19:33'), +(12671,469,1,7914,'4.99','2005-07-28 11:48:08','2006-02-15 22:19:33'), +(12672,469,2,8791,'0.99','2005-07-29 20:53:23','2006-02-15 22:19:33'), +(12673,469,1,9187,'2.99','2005-07-30 12:14:03','2006-02-15 22:19:33'), +(12674,469,2,10075,'4.99','2005-07-31 19:58:42','2006-02-15 22:19:33'), +(12675,469,1,10258,'4.99','2005-08-01 02:51:09','2006-02-15 22:19:33'), +(12676,469,1,10316,'4.99','2005-08-01 04:34:57','2006-02-15 22:19:33'), +(12677,469,1,10658,'2.99','2005-08-01 16:39:18','2006-02-15 22:19:33'), +(12678,469,1,10741,'2.99','2005-08-01 19:52:52','2006-02-15 22:19:34'), +(12679,469,2,11185,'0.99','2005-08-02 11:04:35','2006-02-15 22:19:34'), +(12680,469,2,12035,'0.99','2005-08-17 20:18:06','2006-02-15 22:19:34'), +(12681,469,1,12447,'4.99','2005-08-18 10:57:01','2006-02-15 22:19:34'), +(12682,469,1,12633,'6.99','2005-08-18 17:55:38','2006-02-15 22:19:34'), +(12683,469,1,13654,'4.99','2005-08-20 07:58:21','2006-02-15 22:19:34'), +(12684,469,1,13763,'2.99','2005-08-20 11:37:56','2006-02-15 22:19:34'), +(12685,469,2,14197,'7.99','2005-08-21 03:47:25','2006-02-15 22:19:34'), +(12686,469,2,14661,'2.99','2005-08-21 19:44:21','2006-02-15 22:19:34'), +(12687,469,1,15487,'4.99','2005-08-23 02:05:51','2006-02-15 22:19:34'), +(12688,469,1,15561,'9.99','2005-08-23 05:02:31','2006-02-15 22:19:34'), +(12689,469,1,15851,'2.99','2005-08-23 15:46:33','2006-02-15 22:19:34'), +(12690,470,2,60,'2.99','2005-05-25 08:58:25','2006-02-15 22:19:34'), +(12691,470,2,1256,'0.99','2005-06-15 06:13:57','2006-02-15 22:19:34'), +(12692,470,1,1283,'0.99','2005-06-15 08:27:30','2006-02-15 22:19:34'), +(12693,470,2,1594,'7.99','2005-06-16 05:15:12','2006-02-15 22:19:34'), +(12694,470,1,3764,'5.99','2005-07-06 13:01:03','2006-02-15 22:19:34'), +(12695,470,1,3841,'4.99','2005-07-06 16:34:00','2006-02-15 22:19:35'), +(12696,470,1,3922,'4.99','2005-07-06 20:32:27','2006-02-15 22:19:35'), +(12697,470,1,4373,'4.99','2005-07-07 20:10:59','2006-02-15 22:19:35'), +(12698,470,2,4502,'6.99','2005-07-08 02:12:04','2006-02-15 22:19:35'), +(12699,470,2,5082,'4.99','2005-07-09 05:28:38','2006-02-15 22:19:35'), +(12700,470,1,6009,'3.99','2005-07-11 01:51:58','2006-02-15 22:19:35'), +(12701,470,1,6198,'2.99','2005-07-11 12:12:17','2006-02-15 22:19:35'), +(12702,470,2,6703,'4.99','2005-07-12 12:50:19','2006-02-15 22:19:35'), +(12703,470,1,6927,'10.99','2005-07-26 22:56:00','2006-02-15 22:19:35'), +(12704,470,1,6942,'5.99','2005-07-26 23:27:40','2006-02-15 22:19:35'), +(12705,470,1,7663,'4.99','2005-07-28 02:19:48','2006-02-15 22:19:35'), +(12706,470,2,8476,'8.99','2005-07-29 08:39:12','2006-02-15 22:19:35'), +(12707,470,1,8890,'6.99','2005-07-30 00:42:06','2006-02-15 22:19:35'), +(12708,470,1,9422,'5.99','2005-07-30 21:08:41','2006-02-15 22:19:35'), +(12709,470,1,9687,'2.99','2005-07-31 06:52:54','2006-02-15 22:19:35'), +(12710,470,1,10006,'4.99','2005-07-31 17:54:35','2006-02-15 22:19:35'), +(12711,470,1,10236,'0.99','2005-08-01 02:05:34','2006-02-15 22:19:35'), +(12712,470,2,10944,'4.99','2005-08-02 03:20:03','2006-02-15 22:19:36'), +(12713,470,2,11397,'1.99','2005-08-02 18:53:14','2006-02-15 22:19:36'), +(12714,470,2,11711,'2.99','2005-08-17 07:30:55','2006-02-15 22:19:36'), +(12715,470,1,11742,'0.99','2005-08-17 08:48:43','2006-02-15 22:19:36'), +(12716,470,2,12177,'3.99','2005-08-18 01:15:47','2006-02-15 22:19:36'), +(12717,470,2,12423,'8.99','2005-08-18 10:14:52','2006-02-15 22:19:36'), +(12718,470,1,12753,'10.99','2005-08-18 22:37:39','2006-02-15 22:19:36'), +(12719,470,2,13585,'4.99','2005-08-20 05:32:23','2006-02-15 22:19:36'), +(12720,470,1,13592,'4.99','2005-08-20 05:50:35','2006-02-15 22:19:36'), +(12721,470,2,14405,'4.99','2005-08-21 10:45:01','2006-02-15 22:19:36'), +(12722,471,1,616,'2.99','2005-05-28 15:45:39','2006-02-15 22:19:36'), +(12723,471,1,1447,'4.99','2005-06-15 19:13:51','2006-02-15 22:19:36'), +(12724,471,2,1449,'2.99','2005-06-15 19:19:16','2006-02-15 22:19:36'), +(12725,471,2,2165,'2.99','2005-06-17 23:51:10','2006-02-15 22:19:36'), +(12726,471,2,2350,'4.99','2005-06-18 12:25:29','2006-02-15 22:19:36'), +(12727,471,2,3073,'4.99','2005-06-20 14:33:26','2006-02-15 22:19:36'), +(12728,471,1,3917,'0.99','2005-07-06 20:19:29','2006-02-15 22:19:36'), +(12729,471,1,4020,'2.99','2005-07-07 01:42:22','2006-02-15 22:19:37'), +(12730,471,2,6293,'2.99','2005-07-11 17:24:57','2006-02-15 22:19:37'), +(12731,471,1,6336,'8.99','2005-07-11 19:30:13','2006-02-15 22:19:37'), +(12732,471,1,6912,'5.99','2005-07-12 22:17:16','2006-02-15 22:19:37'), +(12733,471,1,8199,'0.99','2005-07-28 23:10:25','2006-02-15 22:19:37'), +(12734,471,1,9077,'2.99','2005-07-30 08:00:19','2006-02-15 22:19:37'), +(12735,471,1,9502,'0.99','2005-07-31 00:02:10','2006-02-15 22:19:37'), +(12736,471,2,9560,'2.99','2005-07-31 02:17:27','2006-02-15 22:19:37'), +(12737,471,1,10430,'2.99','2005-08-01 08:37:06','2006-02-15 22:19:37'), +(12738,471,2,10828,'3.99','2005-08-01 23:16:10','2006-02-15 22:19:37'), +(12739,471,2,11601,'4.99','2005-08-17 03:14:47','2006-02-15 22:19:37'), +(12740,471,1,12271,'4.99','2005-08-18 04:33:11','2006-02-15 22:19:37'), +(12741,471,1,13661,'5.99','2005-08-20 08:05:59','2006-02-15 22:19:37'), +(12742,471,1,14085,'7.99','2005-08-20 23:46:24','2006-02-15 22:19:37'), +(12743,471,1,14094,'4.99','2005-08-21 00:21:35','2006-02-15 22:19:37'), +(12744,471,1,14317,'5.99','2005-08-21 08:00:40','2006-02-15 22:19:37'), +(12745,471,2,14538,'2.99','2005-08-21 15:28:15','2006-02-15 22:19:37'), +(12746,471,2,14942,'7.99','2005-08-22 05:58:27','2006-02-15 22:19:38'), +(12747,471,2,15184,'0.99','2005-08-22 15:51:12','2006-02-15 22:19:38'), +(12748,471,1,15654,'1.99','2005-08-23 08:34:53','2006-02-15 22:19:38'), +(12749,472,2,142,'0.99','2005-05-25 23:43:47','2006-02-15 22:19:38'), +(12750,472,2,249,'2.99','2005-05-26 14:19:09','2006-02-15 22:19:38'), +(12751,472,2,800,'0.99','2005-05-29 17:28:12','2006-02-15 22:19:38'), +(12752,472,2,994,'4.99','2005-05-30 23:55:36','2006-02-15 22:19:38'), +(12753,472,1,1389,'4.99','2005-06-15 15:49:01','2006-02-15 22:19:38'), +(12754,472,2,1776,'6.99','2005-06-16 18:46:58','2006-02-15 22:19:38'), +(12755,472,1,2538,'5.99','2005-06-19 01:56:59','2006-02-15 22:19:38'), +(12756,472,1,2974,'0.99','2005-06-20 08:00:24','2006-02-15 22:19:38'), +(12757,472,1,2991,'4.99','2005-06-20 09:10:43','2006-02-15 22:19:38'), +(12758,472,1,3254,'0.99','2005-06-21 03:27:10','2006-02-15 22:19:38'), +(12759,472,2,3815,'6.99','2005-07-06 15:26:36','2006-02-15 22:19:38'), +(12760,472,2,5318,'2.99','2005-07-09 16:11:33','2006-02-15 22:19:38'), +(12761,472,1,5612,'3.99','2005-07-10 05:15:12','2006-02-15 22:19:38'), +(12762,472,1,6119,'6.99','2005-07-11 07:44:46','2006-02-15 22:19:38'), +(12763,472,2,6274,'5.99','2005-07-11 16:09:42','2006-02-15 22:19:38'), +(12764,472,1,6308,'5.99','2005-07-11 18:08:41','2006-02-15 22:19:39'), +(12765,472,1,6584,'2.99','2005-07-12 06:43:36','2006-02-15 22:19:39'), +(12766,472,2,8929,'5.99','2005-07-30 02:28:22','2006-02-15 22:19:39'), +(12767,472,2,9926,'6.99','2005-07-31 15:11:51','2006-02-15 22:19:39'), +(12768,472,1,10282,'6.99','2005-08-01 03:29:10','2006-02-15 22:19:39'), +(12769,472,1,10627,'0.99','2005-08-01 15:33:03','2006-02-15 22:19:39'), +(12770,472,1,11911,'6.99','2005-08-17 15:51:35','2006-02-15 22:19:39'), +(12771,472,2,12763,'4.99','2005-08-18 23:07:01','2006-02-15 22:19:39'), +(12772,472,2,13188,'8.99','2005-08-19 14:27:03','2006-02-15 22:19:39'), +(12773,472,1,14209,'4.99','2005-08-21 04:17:56','2006-02-15 22:19:39'), +(12774,472,2,14596,'4.99','2005-08-21 17:38:37','2006-02-15 22:19:39'), +(12775,472,1,14597,'4.99','2005-08-21 17:39:41','2006-02-15 22:19:39'), +(12776,472,2,15185,'5.99','2005-08-22 15:52:50','2006-02-15 22:19:39'), +(12777,472,2,15278,'2.99','2005-08-22 19:06:47','2006-02-15 22:19:39'), +(12778,472,2,14928,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:39'), +(12779,473,1,348,'4.99','2005-05-27 04:50:56','2006-02-15 22:19:39'), +(12780,473,2,942,'2.99','2005-05-30 15:05:47','2006-02-15 22:19:39'), +(12781,473,2,973,'3.99','2005-05-30 20:27:45','2006-02-15 22:19:40'), +(12782,473,2,1748,'0.99','2005-06-16 16:54:03','2006-02-15 22:19:40'), +(12783,473,1,2125,'2.99','2005-06-17 20:53:42','2006-02-15 22:19:40'), +(12784,473,2,2553,'4.99','2005-06-19 03:04:59','2006-02-15 22:19:40'), +(12785,473,2,2748,'4.99','2005-06-19 16:22:26','2006-02-15 22:19:40'), +(12786,473,1,3971,'0.99','2005-07-06 22:50:40','2006-02-15 22:19:40'), +(12787,473,2,4006,'4.99','2005-07-07 00:25:29','2006-02-15 22:19:40'), +(12788,473,2,4625,'4.99','2005-07-08 08:14:26','2006-02-15 22:19:40'), +(12789,473,1,4873,'0.99','2005-07-08 19:23:32','2006-02-15 22:19:40'), +(12790,473,2,5447,'5.99','2005-07-09 22:09:28','2006-02-15 22:19:40'), +(12791,473,1,6446,'2.99','2005-07-12 00:44:08','2006-02-15 22:19:40'), +(12792,473,2,6890,'4.99','2005-07-12 21:03:03','2006-02-15 22:19:40'), +(12793,473,1,7111,'4.99','2005-07-27 05:38:16','2006-02-15 22:19:40'), +(12794,473,1,7215,'2.99','2005-07-27 09:24:00','2006-02-15 22:19:40'), +(12795,473,2,7918,'1.99','2005-07-28 11:58:53','2006-02-15 22:19:40'), +(12796,473,2,7928,'7.99','2005-07-28 12:15:51','2006-02-15 22:19:40'), +(12797,473,1,9025,'4.99','2005-07-30 05:50:08','2006-02-15 22:19:40'), +(12798,473,2,9120,'8.99','2005-07-30 09:26:08','2006-02-15 22:19:41'), +(12799,473,1,10867,'2.99','2005-08-02 00:24:15','2006-02-15 22:19:41'), +(12800,473,2,11006,'2.99','2005-08-02 05:05:52','2006-02-15 22:19:41'), +(12801,473,1,11216,'4.99','2005-08-02 12:23:43','2006-02-15 22:19:41'), +(12802,473,1,11336,'0.99','2005-08-02 16:58:56','2006-02-15 22:19:41'), +(12803,473,2,11421,'7.99','2005-08-02 19:51:53','2006-02-15 22:19:41'), +(12804,473,1,11741,'0.99','2005-08-17 08:48:39','2006-02-15 22:19:41'), +(12805,473,2,13984,'4.99','2005-08-20 19:12:30','2006-02-15 22:19:41'), +(12806,473,2,14202,'0.99','2005-08-21 03:51:52','2006-02-15 22:19:41'), +(12807,473,2,14550,'0.99','2005-08-21 15:56:39','2006-02-15 22:19:41'), +(12808,473,2,14658,'4.99','2005-08-21 19:41:50','2006-02-15 22:19:41'), +(12809,473,2,14757,'4.99','2005-08-21 23:23:37','2006-02-15 22:19:41'), +(12810,473,1,15118,'4.99','2005-08-22 12:38:37','2006-02-15 22:19:41'), +(12811,473,2,15400,'2.99','2005-08-22 23:13:03','2006-02-15 22:19:41'), +(12812,473,2,16024,'4.99','2005-08-23 21:46:47','2006-02-15 22:19:41'), +(12813,474,1,816,'7.99','2005-05-29 20:26:39','2006-02-15 22:19:41'), +(12814,474,1,1758,'8.99','2005-06-16 17:39:39','2006-02-15 22:19:41'), +(12815,474,2,2944,'7.99','2005-06-20 05:43:42','2006-02-15 22:19:42'), +(12816,474,2,3787,'4.99','2005-07-06 14:02:01','2006-02-15 22:19:42'), +(12817,474,2,4048,'1.99','2005-07-07 03:30:52','2006-02-15 22:19:42'), +(12818,474,1,4481,'2.99','2005-07-08 00:58:15','2006-02-15 22:19:42'), +(12819,474,1,4533,'0.99','2005-07-08 03:32:01','2006-02-15 22:19:42'), +(12820,474,2,4785,'0.99','2005-07-08 16:10:19','2006-02-15 22:19:42'), +(12821,474,1,4809,'2.99','2005-07-08 17:03:22','2006-02-15 22:19:42'), +(12822,474,2,4886,'4.99','2005-07-08 19:53:22','2006-02-15 22:19:42'), +(12823,474,1,5251,'0.99','2005-07-09 13:36:10','2006-02-15 22:19:42'), +(12824,474,1,6499,'7.99','2005-07-12 03:11:18','2006-02-15 22:19:42'), +(12825,474,1,8991,'2.99','2005-07-30 04:42:54','2006-02-15 22:19:42'), +(12826,474,2,10376,'5.99','2005-08-01 06:27:13','2006-02-15 22:19:42'), +(12827,474,2,11117,'0.99','2005-08-02 08:36:03','2006-02-15 22:19:42'), +(12828,474,1,11489,'2.99','2005-08-02 22:35:28','2006-02-15 22:19:42'), +(12829,474,2,11537,'2.99','2005-08-17 00:41:08','2006-02-15 22:19:42'), +(12830,474,1,12083,'2.99','2005-08-17 22:13:37','2006-02-15 22:19:42'), +(12831,474,1,12236,'4.99','2005-08-18 03:19:29','2006-02-15 22:19:43'), +(12832,474,1,12440,'0.99','2005-08-18 10:47:35','2006-02-15 22:19:43'), +(12833,474,2,12597,'2.99','2005-08-18 16:34:02','2006-02-15 22:19:43'), +(12834,474,1,12702,'4.99','2005-08-18 20:30:33','2006-02-15 22:19:43'), +(12835,474,1,14728,'0.99','2005-08-21 22:15:36','2006-02-15 22:19:43'), +(12836,474,2,15046,'4.99','2005-08-22 09:54:54','2006-02-15 22:19:43'), +(12837,474,1,15558,'6.99','2005-08-23 04:52:22','2006-02-15 22:19:43'), +(12838,474,1,11909,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:43'), +(12839,475,2,417,'4.99','2005-05-27 15:07:27','2006-02-15 22:19:43'), +(12840,475,1,702,'0.99','2005-05-29 02:27:30','2006-02-15 22:19:43'), +(12841,475,2,3980,'5.99','2005-07-06 23:11:11','2006-02-15 22:19:43'), +(12842,475,1,4013,'6.99','2005-07-07 00:58:00','2006-02-15 22:19:43'), +(12843,475,1,4617,'4.99','2005-07-08 07:55:08','2006-02-15 22:19:43'), +(12844,475,2,5379,'0.99','2005-07-09 19:08:03','2006-02-15 22:19:43'), +(12845,475,1,5407,'0.99','2005-07-09 20:16:07','2006-02-15 22:19:43'), +(12846,475,2,5415,'9.99','2005-07-09 20:30:03','2006-02-15 22:19:43'), +(12847,475,2,5469,'2.99','2005-07-09 23:08:07','2006-02-15 22:19:43'), +(12848,475,1,6224,'4.99','2005-07-11 13:42:18','2006-02-15 22:19:44'), +(12849,475,1,7641,'7.99','2005-07-28 01:15:45','2006-02-15 22:19:44'), +(12850,475,1,7775,'1.99','2005-07-28 07:04:36','2006-02-15 22:19:44'), +(12851,475,2,8207,'5.99','2005-07-28 23:26:31','2006-02-15 22:19:44'), +(12852,475,1,9183,'7.99','2005-07-30 12:09:56','2006-02-15 22:19:44'), +(12853,475,1,9647,'2.99','2005-07-31 05:45:15','2006-02-15 22:19:44'), +(12854,475,1,9737,'2.99','2005-07-31 08:59:18','2006-02-15 22:19:44'), +(12855,475,2,10162,'3.99','2005-07-31 23:11:01','2006-02-15 22:19:44'), +(12856,475,1,10357,'0.99','2005-08-01 05:49:49','2006-02-15 22:19:44'), +(12857,475,1,10633,'3.99','2005-08-01 15:37:17','2006-02-15 22:19:44'), +(12858,475,1,11293,'5.99','2005-08-02 15:00:43','2006-02-15 22:19:44'), +(12859,475,1,11770,'4.99','2005-08-17 10:05:05','2006-02-15 22:19:44'), +(12860,475,2,14303,'2.99','2005-08-21 07:22:43','2006-02-15 22:19:44'), +(12861,475,1,15097,'1.99','2005-08-22 11:43:42','2006-02-15 22:19:44'), +(12862,475,1,15288,'4.99','2005-08-22 19:23:58','2006-02-15 22:19:44'), +(12863,476,1,489,'4.99','2005-05-28 00:09:12','2006-02-15 22:19:44'), +(12864,476,1,771,'2.99','2005-05-29 12:59:14','2006-02-15 22:19:44'), +(12865,476,1,1682,'3.99','2005-06-16 11:54:25','2006-02-15 22:19:44'), +(12866,476,1,2080,'0.99','2005-06-17 16:59:40','2006-02-15 22:19:45'), +(12867,476,2,2508,'4.99','2005-06-18 23:43:58','2006-02-15 22:19:45'), +(12868,476,2,3448,'2.99','2005-06-21 20:59:20','2006-02-15 22:19:45'), +(12869,476,2,3477,'7.99','2005-07-05 23:05:17','2006-02-15 22:19:45'), +(12870,476,1,4010,'5.99','2005-07-07 00:47:00','2006-02-15 22:19:45'), +(12871,476,2,4171,'4.99','2005-07-07 09:49:04','2006-02-15 22:19:45'), +(12872,476,2,5644,'4.99','2005-07-10 06:57:44','2006-02-15 22:19:45'), +(12873,476,1,6151,'2.99','2005-07-11 09:25:17','2006-02-15 22:19:45'), +(12874,476,1,7461,'0.99','2005-07-27 18:45:15','2006-02-15 22:19:45'), +(12875,476,1,8146,'0.99','2005-07-28 20:37:36','2006-02-15 22:19:45'), +(12876,476,2,9325,'6.99','2005-07-30 17:29:19','2006-02-15 22:19:45'), +(12877,476,2,9743,'3.99','2005-07-31 09:12:42','2006-02-15 22:19:45'), +(12878,476,1,10346,'4.99','2005-08-01 05:19:23','2006-02-15 22:19:45'), +(12879,476,1,10617,'9.99','2005-08-01 15:05:52','2006-02-15 22:19:45'), +(12880,476,1,10826,'6.99','2005-08-01 23:07:56','2006-02-15 22:19:45'), +(12881,476,1,12616,'4.99','2005-08-18 17:22:41','2006-02-15 22:19:45'), +(12882,476,2,12709,'5.99','2005-08-18 20:59:51','2006-02-15 22:19:46'), +(12883,476,1,15413,'0.99','2005-08-22 23:38:01','2006-02-15 22:19:46'), +(12884,476,1,13941,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:46'), +(12885,477,1,882,'2.99','2005-05-30 06:16:06','2006-02-15 22:19:46'), +(12886,477,1,1714,'6.99','2005-06-16 14:29:59','2006-02-15 22:19:46'), +(12887,477,1,2187,'2.99','2005-06-18 01:17:27','2006-02-15 22:19:46'), +(12888,477,1,2306,'10.99','2005-06-18 08:33:23','2006-02-15 22:19:46'), +(12889,477,2,2676,'4.99','2005-06-19 11:54:57','2006-02-15 22:19:46'), +(12890,477,2,4237,'5.99','2005-07-07 13:16:55','2006-02-15 22:19:46'), +(12891,477,1,4283,'2.99','2005-07-07 15:29:35','2006-02-15 22:19:46'), +(12892,477,2,4956,'7.99','2005-07-08 23:17:10','2006-02-15 22:19:46'), +(12893,477,2,6265,'2.99','2005-07-11 15:43:51','2006-02-15 22:19:46'), +(12894,477,2,7302,'2.99','2005-07-27 12:52:13','2006-02-15 22:19:46'), +(12895,477,2,7904,'10.99','2005-07-28 11:25:39','2006-02-15 22:19:46'), +(12896,477,1,8515,'6.99','2005-07-29 09:55:20','2006-02-15 22:19:46'), +(12897,477,1,8821,'5.99','2005-07-29 22:18:12','2006-02-15 22:19:46'), +(12898,477,2,8857,'2.99','2005-07-29 23:44:22','2006-02-15 22:19:46'), +(12899,477,2,9446,'8.99','2005-07-30 21:53:01','2006-02-15 22:19:46'), +(12900,477,1,10500,'4.99','2005-08-01 11:01:01','2006-02-15 22:19:47'), +(12901,477,2,10912,'0.99','2005-08-02 02:00:03','2006-02-15 22:19:47'), +(12902,477,2,12420,'4.99','2005-08-18 10:01:50','2006-02-15 22:19:47'), +(12903,477,1,13002,'0.99','2005-08-19 07:37:58','2006-02-15 22:19:47'), +(12904,477,2,14552,'3.99','2005-08-21 15:59:27','2006-02-15 22:19:47'), +(12905,477,2,15091,'2.99','2005-08-22 11:34:43','2006-02-15 22:19:47'), +(12906,477,1,15929,'2.99','2005-08-23 18:23:30','2006-02-15 22:19:47'), +(12907,478,1,1708,'0.99','2005-06-16 14:08:44','2006-02-15 22:19:47'), +(12908,478,2,2358,'4.99','2005-06-18 13:00:51','2006-02-15 22:19:47'), +(12909,478,1,2529,'6.99','2005-06-19 01:18:27','2006-02-15 22:19:47'), +(12910,478,2,2616,'8.99','2005-06-19 07:33:00','2006-02-15 22:19:47'), +(12911,478,2,2765,'4.99','2005-06-19 17:34:39','2006-02-15 22:19:47'), +(12912,478,2,3259,'4.99','2005-06-21 03:57:15','2006-02-15 22:19:47'), +(12913,478,1,3691,'4.99','2005-07-06 09:46:12','2006-02-15 22:19:47'), +(12914,478,1,5837,'4.99','2005-07-10 16:57:50','2006-02-15 22:19:47'), +(12915,478,1,7522,'2.99','2005-07-27 21:11:03','2006-02-15 22:19:47'), +(12916,478,2,8488,'4.99','2005-07-29 08:57:38','2006-02-15 22:19:48'), +(12917,478,1,9665,'4.99','2005-07-31 06:17:33','2006-02-15 22:19:48'), +(12918,478,2,10016,'4.99','2005-07-31 18:13:06','2006-02-15 22:19:48'), +(12919,478,2,10127,'0.99','2005-07-31 21:39:48','2006-02-15 22:19:48'), +(12920,478,1,11906,'2.99','2005-08-17 15:40:46','2006-02-15 22:19:48'), +(12921,478,2,13162,'2.99','2005-08-19 13:28:26','2006-02-15 22:19:48'), +(12922,478,2,13507,'4.99','2005-08-20 02:10:27','2006-02-15 22:19:48'), +(12923,478,1,15027,'4.99','2005-08-22 09:03:04','2006-02-15 22:19:48'), +(12924,478,2,15188,'4.99','2005-08-22 15:55:48','2006-02-15 22:19:48'), +(12925,478,1,15724,'4.99','2005-08-23 11:22:09','2006-02-15 22:19:48'), +(12926,479,2,132,'3.99','2005-05-25 21:46:54','2006-02-15 22:19:48'), +(12927,479,1,709,'7.99','2005-05-29 03:48:01','2006-02-15 22:19:48'), +(12928,479,1,1902,'2.99','2005-06-17 04:35:52','2006-02-15 22:19:48'), +(12929,479,2,1947,'3.99','2005-06-17 08:02:20','2006-02-15 22:19:48'), +(12930,479,2,1987,'2.99','2005-06-17 10:40:36','2006-02-15 22:19:48'), +(12931,479,2,2071,'3.99','2005-06-17 16:33:17','2006-02-15 22:19:48'), +(12932,479,2,2376,'2.99','2005-06-18 14:55:30','2006-02-15 22:19:48'), +(12933,479,2,2764,'6.99','2005-06-19 17:27:25','2006-02-15 22:19:49'), +(12934,479,2,3537,'6.99','2005-07-06 01:36:53','2006-02-15 22:19:49'), +(12935,479,1,3798,'0.99','2005-07-06 14:57:53','2006-02-15 22:19:49'), +(12936,479,2,4183,'8.99','2005-07-07 10:28:33','2006-02-15 22:19:49'), +(12937,479,1,5481,'0.99','2005-07-09 23:51:57','2006-02-15 22:19:49'), +(12938,479,1,5751,'4.99','2005-07-10 12:25:11','2006-02-15 22:19:49'), +(12939,479,2,6084,'7.99','2005-07-11 05:16:20','2006-02-15 22:19:49'), +(12940,479,1,6421,'1.99','2005-07-11 23:45:25','2006-02-15 22:19:49'), +(12941,479,1,6597,'0.99','2005-07-12 07:37:02','2006-02-15 22:19:49'), +(12942,479,2,6849,'8.99','2005-07-12 19:29:19','2006-02-15 22:19:49'), +(12943,479,1,7060,'7.99','2005-07-27 03:51:04','2006-02-15 22:19:49'), +(12944,479,2,7893,'2.99','2005-07-28 10:49:27','2006-02-15 22:19:49'), +(12945,479,1,9347,'5.99','2005-07-30 18:16:03','2006-02-15 22:19:49'), +(12946,479,1,9439,'8.99','2005-07-30 21:38:12','2006-02-15 22:19:49'), +(12947,479,2,9697,'2.99','2005-07-31 07:23:11','2006-02-15 22:19:49'), +(12948,479,2,9754,'7.99','2005-07-31 09:23:43','2006-02-15 22:19:49'), +(12949,479,2,10303,'4.99','2005-08-01 04:13:33','2006-02-15 22:19:49'), +(12950,479,2,11109,'4.99','2005-08-02 08:20:29','2006-02-15 22:19:50'), +(12951,479,2,11584,'1.99','2005-08-17 02:13:26','2006-02-15 22:19:50'), +(12952,479,2,11835,'4.99','2005-08-17 13:03:13','2006-02-15 22:19:50'), +(12953,479,2,12401,'0.99','2005-08-18 09:20:51','2006-02-15 22:19:50'), +(12954,479,2,13078,'8.99','2005-08-19 10:16:43','2006-02-15 22:19:50'), +(12955,479,1,13974,'2.99','2005-08-20 18:54:59','2006-02-15 22:19:50'), +(12956,479,1,12101,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:50'), +(12957,480,1,518,'0.99','2005-05-28 03:18:02','2006-02-15 22:19:50'), +(12958,480,1,720,'6.99','2005-05-29 05:17:30','2006-02-15 22:19:50'), +(12959,480,2,822,'9.99','2005-05-29 21:36:00','2006-02-15 22:19:50'), +(12960,480,1,1353,'0.99','2005-06-15 13:13:36','2006-02-15 22:19:50'), +(12961,480,1,1733,'0.99','2005-06-16 15:37:07','2006-02-15 22:19:50'), +(12962,480,2,3507,'7.99','2005-07-06 00:23:43','2006-02-15 22:19:50'), +(12963,480,2,5633,'2.99','2005-07-10 06:22:24','2006-02-15 22:19:50'), +(12964,480,1,6191,'2.99','2005-07-11 11:37:52','2006-02-15 22:19:50'), +(12965,480,1,7257,'2.99','2005-07-27 11:04:17','2006-02-15 22:19:50'), +(12966,480,2,7910,'9.99','2005-07-28 11:44:56','2006-02-15 22:19:50'), +(12967,480,2,8847,'4.99','2005-07-29 23:13:41','2006-02-15 22:19:51'), +(12968,480,1,8967,'6.99','2005-07-30 03:56:55','2006-02-15 22:19:51'), +(12969,480,2,9332,'4.99','2005-07-30 17:53:39','2006-02-15 22:19:51'), +(12970,480,2,10808,'1.99','2005-08-01 22:37:11','2006-02-15 22:19:51'), +(12971,480,2,11017,'0.99','2005-08-02 05:19:51','2006-02-15 22:19:51'), +(12972,480,1,11369,'5.99','2005-08-02 18:04:41','2006-02-15 22:19:51'), +(12973,480,2,12905,'4.99','2005-08-19 04:13:37','2006-02-15 22:19:51'), +(12974,480,2,13092,'0.99','2005-08-19 10:41:09','2006-02-15 22:19:51'), +(12975,480,2,13131,'9.99','2005-08-19 12:08:13','2006-02-15 22:19:51'), +(12976,480,1,13831,'4.99','2005-08-20 13:59:35','2006-02-15 22:19:51'), +(12977,480,2,15363,'2.99','2005-08-22 21:41:40','2006-02-15 22:19:51'), +(12978,480,2,15579,'4.99','2005-08-23 05:38:41','2006-02-15 22:19:51'), +(12979,481,2,1109,'5.99','2005-05-31 15:12:15','2006-02-15 22:19:51'), +(12980,481,2,1168,'2.99','2005-06-14 23:35:09','2006-02-15 22:19:51'), +(12981,481,2,2296,'4.99','2005-06-18 08:10:42','2006-02-15 22:19:51'), +(12982,481,2,3285,'4.99','2005-06-21 06:30:13','2006-02-15 22:19:51'), +(12983,481,2,3293,'0.99','2005-06-21 06:59:33','2006-02-15 22:19:51'), +(12984,481,1,3863,'0.99','2005-07-06 17:40:18','2006-02-15 22:19:52'), +(12985,481,1,4473,'2.99','2005-07-08 00:22:10','2006-02-15 22:19:52'), +(12986,481,1,4505,'1.99','2005-07-08 02:20:04','2006-02-15 22:19:52'), +(12987,481,1,4532,'0.99','2005-07-08 03:30:39','2006-02-15 22:19:52'), +(12988,481,1,4668,'10.99','2005-07-08 10:11:45','2006-02-15 22:19:52'), +(12989,481,2,5711,'2.99','2005-07-10 10:37:20','2006-02-15 22:19:52'), +(12990,481,1,6044,'0.99','2005-07-11 03:18:39','2006-02-15 22:19:52'), +(12991,481,1,7228,'4.99','2005-07-27 09:55:33','2006-02-15 22:19:52'), +(12992,481,2,7836,'7.99','2005-07-28 08:55:27','2006-02-15 22:19:52'), +(12993,481,1,8243,'6.99','2005-07-29 00:35:33','2006-02-15 22:19:52'), +(12994,481,2,8271,'6.99','2005-07-29 01:27:44','2006-02-15 22:19:52'), +(12995,481,1,9481,'4.99','2005-07-30 23:26:05','2006-02-15 22:19:52'), +(12996,481,1,10018,'3.99','2005-07-31 18:15:14','2006-02-15 22:19:52'), +(12997,481,2,11207,'0.99','2005-08-02 12:01:30','2006-02-15 22:19:52'), +(12998,481,2,11387,'2.99','2005-08-02 18:32:38','2006-02-15 22:19:52'), +(12999,481,1,11752,'4.99','2005-08-17 09:10:55','2006-02-15 22:19:52'), +(13000,481,1,11885,'4.99','2005-08-17 14:53:53','2006-02-15 22:19:53'), +(13001,481,2,12160,'2.99','2005-08-18 00:37:59','2006-02-15 22:19:53'), +(13002,481,1,12981,'4.99','2005-08-19 07:04:00','2006-02-15 22:19:53'), +(13003,481,2,13497,'2.99','2005-08-20 01:46:38','2006-02-15 22:19:53'), +(13004,481,2,13878,'4.99','2005-08-20 15:17:38','2006-02-15 22:19:53'), +(13005,481,1,13990,'1.99','2005-08-20 19:29:23','2006-02-15 22:19:53'), +(13006,481,2,14280,'4.99','2005-08-21 06:39:58','2006-02-15 22:19:53'), +(13007,481,2,14584,'0.99','2005-08-21 17:15:33','2006-02-15 22:19:53'), +(13008,482,1,259,'8.99','2005-05-26 15:32:46','2006-02-15 22:19:53'), +(13009,482,2,680,'2.99','2005-05-28 23:27:26','2006-02-15 22:19:53'), +(13010,482,2,879,'0.99','2005-05-30 05:49:42','2006-02-15 22:19:53'), +(13011,482,2,3048,'2.99','2005-06-20 12:49:55','2006-02-15 22:19:53'), +(13012,482,2,3255,'0.99','2005-06-21 03:39:52','2006-02-15 22:19:53'), +(13013,482,2,3650,'2.99','2005-07-06 07:34:15','2006-02-15 22:19:53'), +(13014,482,1,4768,'4.99','2005-07-08 15:28:20','2006-02-15 22:19:53'), +(13015,482,1,5334,'4.99','2005-07-09 17:00:13','2006-02-15 22:19:53'), +(13016,482,1,5466,'4.99','2005-07-09 23:03:21','2006-02-15 22:19:53'), +(13017,482,2,5810,'8.99','2005-07-10 15:22:04','2006-02-15 22:19:54'), +(13018,482,2,5880,'2.99','2005-07-10 19:14:58','2006-02-15 22:19:54'), +(13019,482,1,6355,'8.99','2005-07-11 20:56:29','2006-02-15 22:19:54'), +(13020,482,2,6447,'7.99','2005-07-12 00:45:17','2006-02-15 22:19:54'), +(13021,482,2,6844,'5.99','2005-07-12 19:14:53','2006-02-15 22:19:54'), +(13022,482,2,7840,'6.99','2005-07-28 09:03:02','2006-02-15 22:19:54'), +(13023,482,2,8584,'2.99','2005-07-29 12:07:53','2006-02-15 22:19:54'), +(13024,482,2,9874,'6.99','2005-07-31 13:32:31','2006-02-15 22:19:54'), +(13025,482,2,10824,'4.99','2005-08-01 23:00:22','2006-02-15 22:19:54'), +(13026,482,2,10839,'2.99','2005-08-01 23:37:39','2006-02-15 22:19:54'), +(13027,482,2,11498,'6.99','2005-08-16 22:52:54','2006-02-15 22:19:54'), +(13028,482,1,13174,'4.99','2005-08-19 13:52:50','2006-02-15 22:19:54'), +(13029,482,2,14383,'4.99','2005-08-21 10:02:05','2006-02-15 22:19:54'), +(13030,482,2,14732,'0.99','2005-08-21 22:22:29','2006-02-15 22:19:54'), +(13031,482,2,14891,'6.99','2005-08-22 04:11:02','2006-02-15 22:19:54'), +(13032,482,2,14995,'4.99','2005-08-22 07:52:31','2006-02-15 22:19:54'), +(13033,482,1,15391,'0.99','2005-08-22 23:01:45','2006-02-15 22:19:54'), +(13034,482,1,15849,'5.99','2005-08-23 15:41:20','2006-02-15 22:19:55'), +(13035,482,2,15865,'2.99','2005-08-23 16:18:25','2006-02-15 22:19:55'), +(13036,482,1,15879,'3.99','2005-08-23 16:42:53','2006-02-15 22:19:55'), +(13037,483,2,742,'6.99','2005-05-29 08:36:30','2006-02-15 22:19:55'), +(13038,483,1,2855,'4.99','2005-06-19 23:11:49','2006-02-15 22:19:55'), +(13039,483,2,2867,'0.99','2005-06-20 00:08:38','2006-02-15 22:19:55'), +(13040,483,1,3380,'8.99','2005-06-21 13:58:46','2006-02-15 22:19:55'), +(13041,483,2,3559,'4.99','2005-07-06 02:49:42','2006-02-15 22:19:55'), +(13042,483,1,5823,'4.99','2005-07-10 16:19:52','2006-02-15 22:19:55'), +(13043,483,2,6478,'4.99','2005-07-12 01:41:44','2006-02-15 22:19:55'), +(13044,483,2,6899,'9.99','2005-07-12 21:44:16','2006-02-15 22:19:55'), +(13045,483,2,7137,'0.99','2005-07-27 06:40:41','2006-02-15 22:19:55'), +(13046,483,1,7381,'4.99','2005-07-27 15:40:26','2006-02-15 22:19:55'), +(13047,483,1,7669,'4.99','2005-07-28 02:44:07','2006-02-15 22:19:55'), +(13048,483,1,8057,'7.99','2005-07-28 17:07:13','2006-02-15 22:19:55'), +(13049,483,1,8356,'4.99','2005-07-29 04:58:56','2006-02-15 22:19:55'), +(13050,483,2,10677,'0.99','2005-08-01 17:24:35','2006-02-15 22:19:55'), +(13051,483,1,10953,'6.99','2005-08-02 03:28:38','2006-02-15 22:19:56'), +(13052,483,2,12331,'3.99','2005-08-18 06:47:19','2006-02-15 22:19:56'), +(13053,483,2,12695,'2.99','2005-08-18 20:11:35','2006-02-15 22:19:56'), +(13054,483,2,12875,'2.99','2005-08-19 03:10:21','2006-02-15 22:19:56'), +(13055,484,2,35,'4.99','2005-05-25 04:24:36','2006-02-15 22:19:56'), +(13056,484,2,668,'2.99','2005-05-28 21:54:45','2006-02-15 22:19:56'), +(13057,484,2,727,'2.99','2005-05-29 06:08:15','2006-02-15 22:19:56'), +(13058,484,1,1351,'3.99','2005-06-15 12:51:03','2006-02-15 22:19:56'), +(13059,484,2,1643,'3.99','2005-06-16 08:55:35','2006-02-15 22:19:56'), +(13060,484,1,2015,'4.99','2005-06-17 12:16:29','2006-02-15 22:19:56'), +(13061,484,1,2044,'5.99','2005-06-17 14:37:57','2006-02-15 22:19:56'), +(13062,484,1,4214,'4.99','2005-07-07 11:54:33','2006-02-15 22:19:56'), +(13063,484,1,5389,'2.99','2005-07-09 19:25:45','2006-02-15 22:19:56'), +(13064,484,2,5708,'6.99','2005-07-10 10:29:19','2006-02-15 22:19:56'), +(13065,484,1,5852,'0.99','2005-07-10 17:43:30','2006-02-15 22:19:56'), +(13066,484,2,5866,'6.99','2005-07-10 18:35:14','2006-02-15 22:19:56'), +(13067,484,2,5977,'5.99','2005-07-11 00:16:38','2006-02-15 22:19:56'), +(13068,484,2,6296,'2.99','2005-07-11 17:34:04','2006-02-15 22:19:57'), +(13069,484,1,6863,'6.99','2005-07-12 19:58:34','2006-02-15 22:19:57'), +(13070,484,2,7440,'4.99','2005-07-27 17:43:27','2006-02-15 22:19:57'), +(13071,484,2,7548,'2.99','2005-07-27 21:53:18','2006-02-15 22:19:57'), +(13072,484,2,8508,'0.99','2005-07-29 09:34:38','2006-02-15 22:19:57'), +(13073,484,2,9141,'5.99','2005-07-30 10:16:04','2006-02-15 22:19:57'), +(13074,484,2,9414,'9.99','2005-07-30 20:46:02','2006-02-15 22:19:57'), +(13075,484,1,9769,'4.99','2005-07-31 09:52:16','2006-02-15 22:19:57'), +(13076,484,2,10166,'8.99','2005-07-31 23:22:20','2006-02-15 22:19:57'), +(13077,484,2,11871,'4.99','2005-08-17 14:11:44','2006-02-15 22:19:57'), +(13078,484,1,12024,'0.99','2005-08-17 19:57:34','2006-02-15 22:19:57'), +(13079,484,1,12771,'4.99','2005-08-18 23:29:23','2006-02-15 22:19:57'), +(13080,484,1,12993,'7.99','2005-08-19 07:24:03','2006-02-15 22:19:57'), +(13081,484,2,13160,'0.99','2005-08-19 13:21:04','2006-02-15 22:19:57'), +(13082,484,2,13956,'3.99','2005-08-20 18:08:19','2006-02-15 22:19:57'), +(13083,484,1,15607,'2.99','2005-08-23 06:54:06','2006-02-15 22:19:57'), +(13084,484,1,16026,'4.99','2005-08-23 21:49:22','2006-02-15 22:19:58'), +(13085,485,1,1009,'2.99','2005-05-31 01:47:35','2006-02-15 22:19:58'), +(13086,485,2,1684,'2.99','2005-06-16 11:57:34','2006-02-15 22:19:58'), +(13087,485,1,1721,'8.99','2005-06-16 15:01:36','2006-02-15 22:19:58'), +(13088,485,2,3579,'0.99','2005-07-06 03:47:47','2006-02-15 22:19:58'), +(13089,485,1,3899,'1.99','2005-07-06 19:12:40','2006-02-15 22:19:58'), +(13090,485,1,3904,'0.99','2005-07-06 19:30:57','2006-02-15 22:19:58'), +(13091,485,2,4137,'3.99','2005-07-07 08:17:06','2006-02-15 22:19:58'), +(13092,485,2,4667,'2.99','2005-07-08 10:06:26','2006-02-15 22:19:58'), +(13093,485,1,5193,'2.99','2005-07-09 10:28:18','2006-02-15 22:19:58'), +(13094,485,1,5343,'3.99','2005-07-09 17:23:43','2006-02-15 22:19:58'), +(13095,485,1,5367,'3.99','2005-07-09 18:39:15','2006-02-15 22:19:58'), +(13096,485,1,5820,'4.99','2005-07-10 16:04:59','2006-02-15 22:19:58'), +(13097,485,2,6810,'4.99','2005-07-12 17:54:19','2006-02-15 22:19:58'), +(13098,485,2,6902,'4.99','2005-07-12 21:57:16','2006-02-15 22:19:58'), +(13099,485,1,7144,'4.99','2005-07-27 07:00:37','2006-02-15 22:19:58'), +(13100,485,2,8984,'6.99','2005-07-30 04:31:50','2006-02-15 22:19:58'), +(13101,485,2,9039,'2.99','2005-07-30 06:24:28','2006-02-15 22:19:59'), +(13102,485,1,9053,'4.99','2005-07-30 07:07:39','2006-02-15 22:19:59'), +(13103,485,2,9189,'2.99','2005-07-30 12:20:59','2006-02-15 22:19:59'), +(13104,485,1,9535,'2.99','2005-07-31 01:18:53','2006-02-15 22:19:59'), +(13105,485,1,9565,'0.99','2005-07-31 02:32:00','2006-02-15 22:19:59'), +(13106,485,1,10771,'4.99','2005-08-01 20:49:35','2006-02-15 22:19:59'), +(13107,485,2,10772,'6.99','2005-08-01 20:51:10','2006-02-15 22:19:59'), +(13108,485,2,11188,'3.99','2005-08-02 11:17:11','2006-02-15 22:19:59'), +(13109,485,1,11921,'4.99','2005-08-17 16:12:27','2006-02-15 22:19:59'), +(13110,485,1,11974,'2.99','2005-08-17 17:56:48','2006-02-15 22:19:59'), +(13111,485,2,12261,'8.99','2005-08-18 04:16:06','2006-02-15 22:19:59'), +(13112,485,2,12487,'0.99','2005-08-18 12:45:24','2006-02-15 22:19:59'), +(13113,485,2,13055,'2.99','2005-08-19 09:36:28','2006-02-15 22:19:59'), +(13114,486,1,909,'8.99','2005-05-30 10:43:38','2006-02-15 22:19:59'), +(13115,486,2,946,'2.99','2005-05-30 15:35:08','2006-02-15 22:19:59'), +(13116,486,2,1129,'0.99','2005-05-31 18:00:48','2006-02-15 22:19:59'), +(13117,486,1,2036,'4.99','2005-06-17 13:46:52','2006-02-15 22:20:00'), +(13118,486,1,2102,'5.99','2005-06-17 19:05:22','2006-02-15 22:20:00'), +(13119,486,2,2566,'2.99','2005-06-19 03:45:39','2006-02-15 22:20:00'), +(13120,486,2,2797,'2.99','2005-06-19 19:04:32','2006-02-15 22:20:00'), +(13121,486,1,3835,'4.99','2005-07-06 16:22:45','2006-02-15 22:20:00'), +(13122,486,2,4110,'4.99','2005-07-07 06:44:27','2006-02-15 22:20:00'), +(13123,486,1,4205,'4.99','2005-07-07 11:25:39','2006-02-15 22:20:00'), +(13124,486,1,4381,'2.99','2005-07-07 20:37:53','2006-02-15 22:20:00'), +(13125,486,1,4772,'7.99','2005-07-08 15:41:11','2006-02-15 22:20:00'), +(13126,486,2,5006,'4.99','2005-07-09 01:24:07','2006-02-15 22:20:00'), +(13127,486,2,6383,'4.99','2005-07-11 22:06:53','2006-02-15 22:20:00'), +(13128,486,2,7127,'4.99','2005-07-27 06:13:48','2006-02-15 22:20:00'), +(13129,486,2,7446,'4.99','2005-07-27 18:00:24','2006-02-15 22:20:00'), +(13130,486,2,8425,'8.99','2005-07-29 07:06:21','2006-02-15 22:20:00'), +(13131,486,2,9142,'0.99','2005-07-30 10:21:03','2006-02-15 22:20:00'), +(13132,486,1,10079,'2.99','2005-07-31 20:05:45','2006-02-15 22:20:00'), +(13133,486,2,10902,'4.99','2005-08-02 01:35:46','2006-02-15 22:20:00'), +(13134,486,1,12465,'0.99','2005-08-18 11:35:02','2006-02-15 22:20:01'), +(13135,486,2,12609,'2.99','2005-08-18 17:06:22','2006-02-15 22:20:01'), +(13136,486,1,13048,'4.99','2005-08-19 09:25:06','2006-02-15 22:20:01'), +(13137,486,2,13803,'0.99','2005-08-20 12:46:17','2006-02-15 22:20:01'), +(13138,486,2,14251,'4.99','2005-08-21 05:42:20','2006-02-15 22:20:01'), +(13139,486,2,14284,'4.99','2005-08-21 06:44:37','2006-02-15 22:20:01'), +(13140,487,2,3100,'3.99','2005-06-20 16:47:57','2006-02-15 22:20:01'), +(13141,487,2,3994,'1.99','2005-07-06 23:39:01','2006-02-15 22:20:01'), +(13142,487,2,4854,'2.99','2005-07-08 18:44:44','2006-02-15 22:20:01'), +(13143,487,1,5634,'3.99','2005-07-10 06:25:48','2006-02-15 22:20:01'), +(13144,487,1,6928,'2.99','2005-07-26 22:56:21','2006-02-15 22:20:01'), +(13145,487,1,7097,'2.99','2005-07-27 04:56:09','2006-02-15 22:20:01'), +(13146,487,1,7788,'0.99','2005-07-28 07:21:55','2006-02-15 22:20:01'), +(13147,487,2,7949,'4.99','2005-07-28 13:07:24','2006-02-15 22:20:01'), +(13148,487,2,8510,'1.99','2005-07-29 09:41:38','2006-02-15 22:20:01'), +(13149,487,2,8689,'2.99','2005-07-29 16:38:58','2006-02-15 22:20:01'), +(13150,487,1,8814,'4.99','2005-07-29 21:49:43','2006-02-15 22:20:01'), +(13151,487,1,8988,'7.99','2005-07-30 04:38:49','2006-02-15 22:20:02'), +(13152,487,2,9457,'2.99','2005-07-30 22:23:05','2006-02-15 22:20:02'), +(13153,487,1,9490,'3.99','2005-07-30 23:45:09','2006-02-15 22:20:02'), +(13154,487,2,10123,'0.99','2005-07-31 21:30:46','2006-02-15 22:20:02'), +(13155,487,2,10511,'2.99','2005-08-01 11:32:16','2006-02-15 22:20:02'), +(13156,487,2,10555,'6.99','2005-08-01 12:56:38','2006-02-15 22:20:02'), +(13157,487,1,10832,'6.99','2005-08-01 23:24:53','2006-02-15 22:20:02'), +(13158,487,2,10877,'5.99','2005-08-02 00:32:04','2006-02-15 22:20:02'), +(13159,487,1,10978,'9.99','2005-08-02 04:12:27','2006-02-15 22:20:02'), +(13160,487,1,11669,'5.99','2005-08-17 05:48:51','2006-02-15 22:20:02'), +(13161,487,2,11890,'5.99','2005-08-17 15:08:43','2006-02-15 22:20:02'), +(13162,487,1,12493,'7.99','2005-08-18 12:53:38','2006-02-15 22:20:02'), +(13163,487,2,13210,'4.99','2005-08-19 15:23:38','2006-02-15 22:20:02'), +(13164,487,1,13658,'7.99','2005-08-20 08:02:22','2006-02-15 22:20:02'), +(13165,487,2,15665,'2.99','2005-08-23 08:59:12','2006-02-15 22:20:02'), +(13166,488,2,1655,'3.99','2005-06-16 09:51:39','2006-02-15 22:20:02'), +(13167,488,2,1704,'5.99','2005-06-16 13:45:56','2006-02-15 22:20:02'), +(13168,488,2,4133,'6.99','2005-07-07 08:12:26','2006-02-15 22:20:03'), +(13169,488,2,4233,'5.99','2005-07-07 13:00:20','2006-02-15 22:20:03'), +(13170,488,1,5141,'8.99','2005-07-09 08:05:14','2006-02-15 22:20:03'), +(13171,488,2,6548,'5.99','2005-07-12 05:00:46','2006-02-15 22:20:03'), +(13172,488,1,7373,'5.99','2005-07-27 15:19:33','2006-02-15 22:20:03'), +(13173,488,1,8005,'2.99','2005-07-28 15:15:11','2006-02-15 22:20:03'), +(13174,488,2,8050,'0.99','2005-07-28 16:55:47','2006-02-15 22:20:03'), +(13175,488,2,8064,'2.99','2005-07-28 17:15:38','2006-02-15 22:20:03'), +(13176,488,2,9083,'5.99','2005-07-30 08:14:27','2006-02-15 22:20:03'), +(13177,488,1,9532,'2.99','2005-07-31 01:16:51','2006-02-15 22:20:03'), +(13178,488,1,9537,'0.99','2005-07-31 01:23:00','2006-02-15 22:20:03'), +(13179,488,2,10474,'5.99','2005-08-01 10:01:42','2006-02-15 22:20:03'), +(13180,488,1,10767,'0.99','2005-08-01 20:37:23','2006-02-15 22:20:03'), +(13181,488,1,11774,'3.99','2005-08-17 10:20:39','2006-02-15 22:20:03'), +(13182,488,2,12483,'5.99','2005-08-18 12:38:37','2006-02-15 22:20:03'), +(13183,488,2,13446,'4.99','2005-08-20 00:06:13','2006-02-15 22:20:03'), +(13184,488,2,14948,'5.99','2005-08-22 06:10:53','2006-02-15 22:20:04'), +(13185,488,2,15259,'0.99','2005-08-22 18:23:23','2006-02-15 22:20:04'), +(13186,488,1,15350,'2.99','2005-08-22 21:15:29','2006-02-15 22:20:04'), +(13187,488,2,15499,'2.99','2005-08-23 02:37:19','2006-02-15 22:20:04'), +(13188,489,1,219,'4.99','2005-05-26 09:41:45','2006-02-15 22:20:04'), +(13189,489,2,513,'2.99','2005-05-28 03:08:10','2006-02-15 22:20:04'), +(13190,489,2,1614,'3.99','2005-06-16 06:58:02','2006-02-15 22:20:04'), +(13191,489,1,2201,'0.99','2005-06-18 02:08:27','2006-02-15 22:20:04'), +(13192,489,1,2370,'7.99','2005-06-18 14:29:54','2006-02-15 22:20:04'), +(13193,489,1,2802,'4.99','2005-06-19 19:18:17','2006-02-15 22:20:04'), +(13194,489,2,3816,'2.99','2005-07-06 15:27:04','2006-02-15 22:20:04'), +(13195,489,1,4774,'3.99','2005-07-08 15:42:28','2006-02-15 22:20:04'), +(13196,489,1,6963,'4.99','2005-07-27 00:13:02','2006-02-15 22:20:04'), +(13197,489,2,9231,'0.99','2005-07-30 13:42:15','2006-02-15 22:20:04'), +(13198,489,1,9459,'4.99','2005-07-30 22:24:46','2006-02-15 22:20:04'), +(13199,489,2,11119,'9.99','2005-08-02 08:44:44','2006-02-15 22:20:04'), +(13200,489,1,11705,'4.99','2005-08-17 07:22:25','2006-02-15 22:20:04'), +(13201,489,1,12496,'6.99','2005-08-18 12:58:25','2006-02-15 22:20:05'), +(13202,489,2,12701,'6.99','2005-08-18 20:26:47','2006-02-15 22:20:05'), +(13203,489,1,13462,'4.99','2005-08-20 00:49:19','2006-02-15 22:20:05'), +(13204,489,2,14095,'5.99','2005-08-21 00:25:45','2006-02-15 22:20:05'), +(13205,489,2,14328,'2.99','2005-08-21 08:18:20','2006-02-15 22:20:05'), +(13206,489,2,14424,'6.99','2005-08-21 11:24:11','2006-02-15 22:20:05'), +(13207,489,1,15205,'0.99','2005-08-22 16:32:23','2006-02-15 22:20:05'), +(13208,489,1,15981,'4.99','2005-08-23 20:12:17','2006-02-15 22:20:05'), +(13209,490,2,585,'6.99','2005-05-28 11:50:45','2006-02-15 22:20:05'), +(13210,490,2,676,'4.99','2005-05-28 22:27:51','2006-02-15 22:20:05'), +(13211,490,1,1665,'3.99','2005-06-16 10:16:02','2006-02-15 22:20:05'), +(13212,490,1,3476,'4.99','2005-07-05 23:02:37','2006-02-15 22:20:05'), +(13213,490,2,3932,'4.99','2005-07-06 21:06:17','2006-02-15 22:20:05'), +(13214,490,1,4083,'2.99','2005-07-07 05:13:15','2006-02-15 22:20:05'), +(13215,490,1,4906,'5.99','2005-07-08 20:59:13','2006-02-15 22:20:05'), +(13216,490,2,5173,'7.99','2005-07-09 09:31:44','2006-02-15 22:20:05'), +(13217,490,2,5489,'0.99','2005-07-10 00:07:03','2006-02-15 22:20:06'), +(13218,490,1,5654,'4.99','2005-07-10 07:24:46','2006-02-15 22:20:06'), +(13219,490,2,6230,'2.99','2005-07-11 14:02:19','2006-02-15 22:20:06'), +(13220,490,1,6803,'4.99','2005-07-12 17:21:49','2006-02-15 22:20:06'), +(13221,490,2,6888,'2.99','2005-07-12 21:01:11','2006-02-15 22:20:06'), +(13222,490,2,6923,'8.99','2005-07-12 22:40:48','2006-02-15 22:20:06'), +(13223,490,1,8552,'5.99','2005-07-29 11:14:02','2006-02-15 22:20:06'), +(13224,490,2,9108,'4.99','2005-07-30 08:56:36','2006-02-15 22:20:06'), +(13225,490,1,9554,'0.99','2005-07-31 02:06:49','2006-02-15 22:20:06'), +(13226,490,1,10786,'7.99','2005-08-01 21:29:34','2006-02-15 22:20:06'), +(13227,490,1,10955,'7.99','2005-08-02 03:32:34','2006-02-15 22:20:06'), +(13228,490,2,11965,'2.99','2005-08-17 17:39:45','2006-02-15 22:20:06'), +(13229,490,2,14557,'4.99','2005-08-21 16:05:11','2006-02-15 22:20:06'), +(13230,490,2,14761,'6.99','2005-08-21 23:30:28','2006-02-15 22:20:06'), +(13231,490,2,15276,'2.99','2005-08-22 18:59:01','2006-02-15 22:20:06'), +(13232,490,1,15448,'2.99','2005-08-23 00:55:24','2006-02-15 22:20:06'), +(13233,491,1,484,'2.99','2005-05-27 23:26:45','2006-02-15 22:20:06'), +(13234,491,2,1097,'0.99','2005-05-31 13:38:42','2006-02-15 22:20:07'), +(13235,491,2,1198,'2.99','2005-06-15 01:48:58','2006-02-15 22:20:07'), +(13236,491,1,1371,'4.99','2005-06-15 14:38:15','2006-02-15 22:20:07'), +(13237,491,2,2026,'4.99','2005-06-17 13:05:38','2006-02-15 22:20:07'), +(13238,491,1,2259,'4.99','2005-06-18 05:37:45','2006-02-15 22:20:07'), +(13239,491,2,2391,'4.99','2005-06-18 15:33:30','2006-02-15 22:20:07'), +(13240,491,2,3031,'4.99','2005-06-20 11:52:49','2006-02-15 22:20:07'), +(13241,491,1,3440,'3.99','2005-06-21 19:58:18','2006-02-15 22:20:07'), +(13242,491,1,4046,'8.99','2005-07-07 03:27:59','2006-02-15 22:20:07'), +(13243,491,1,4392,'2.99','2005-07-07 21:11:02','2006-02-15 22:20:07'), +(13244,491,2,5134,'6.99','2005-07-09 07:53:12','2006-02-15 22:20:07'), +(13245,491,1,5889,'4.99','2005-07-10 19:54:41','2006-02-15 22:20:07'), +(13246,491,2,6171,'2.99','2005-07-11 10:29:35','2006-02-15 22:20:07'), +(13247,491,2,7019,'3.99','2005-07-27 02:20:26','2006-02-15 22:20:07'), +(13248,491,2,7281,'6.99','2005-07-27 11:59:20','2006-02-15 22:20:07'), +(13249,491,2,7688,'7.99','2005-07-28 03:20:47','2006-02-15 22:20:07'), +(13250,491,1,7871,'6.99','2005-07-28 10:16:37','2006-02-15 22:20:08'), +(13251,491,2,10036,'2.99','2005-07-31 18:47:20','2006-02-15 22:20:08'), +(13252,491,2,10178,'4.99','2005-07-31 23:43:04','2006-02-15 22:20:08'), +(13253,491,2,10974,'6.99','2005-08-02 04:10:52','2006-02-15 22:20:08'), +(13254,491,1,11048,'4.99','2005-08-02 06:15:07','2006-02-15 22:20:08'), +(13255,491,1,11590,'0.99','2005-08-17 02:28:33','2006-02-15 22:20:08'), +(13256,491,1,11840,'4.99','2005-08-17 13:09:01','2006-02-15 22:20:08'), +(13257,491,2,13607,'2.99','2005-08-20 06:08:42','2006-02-15 22:20:08'), +(13258,491,1,14780,'0.99','2005-08-22 00:06:33','2006-02-15 22:20:08'), +(13259,491,2,15685,'5.99','2005-08-23 09:41:28','2006-02-15 22:20:08'), +(13260,492,1,84,'2.99','2005-05-25 12:36:30','2006-02-15 22:20:08'), +(13261,492,2,1691,'1.99','2005-06-16 12:24:28','2006-02-15 22:20:08'), +(13262,492,2,1855,'4.99','2005-06-17 00:54:58','2006-02-15 22:20:08'), +(13263,492,2,1956,'4.99','2005-06-17 08:43:32','2006-02-15 22:20:08'), +(13264,492,1,3298,'9.99','2005-06-21 07:09:44','2006-02-15 22:20:08'), +(13265,492,2,4128,'8.99','2005-07-07 07:35:25','2006-02-15 22:20:08'), +(13266,492,1,4142,'2.99','2005-07-07 08:19:45','2006-02-15 22:20:08'), +(13267,492,2,4258,'6.99','2005-07-07 14:20:59','2006-02-15 22:20:09'), +(13268,492,2,5325,'0.99','2005-07-09 16:35:47','2006-02-15 22:20:09'), +(13269,492,1,5609,'0.99','2005-07-10 05:09:46','2006-02-15 22:20:09'), +(13270,492,1,6257,'2.99','2005-07-11 15:23:46','2006-02-15 22:20:09'), +(13271,492,2,7203,'2.99','2005-07-27 09:01:23','2006-02-15 22:20:09'), +(13272,492,2,12971,'4.99','2005-08-19 06:42:43','2006-02-15 22:20:09'), +(13273,492,1,14255,'2.99','2005-08-21 05:51:37','2006-02-15 22:20:09'), +(13274,492,2,15822,'0.99','2005-08-23 15:05:59','2006-02-15 22:20:09'), +(13275,492,1,15958,'4.99','2005-08-23 19:22:36','2006-02-15 22:20:09'), +(13276,493,1,543,'7.99','2005-05-28 06:43:34','2006-02-15 22:20:09'), +(13277,493,2,2109,'3.99','2005-06-17 19:41:42','2006-02-15 22:20:09'), +(13278,493,1,2365,'4.99','2005-06-18 13:45:34','2006-02-15 22:20:09'), +(13279,493,1,2579,'0.99','2005-06-19 04:40:44','2006-02-15 22:20:09'), +(13280,493,1,2864,'2.99','2005-06-20 00:00:52','2006-02-15 22:20:09'), +(13281,493,2,3586,'4.99','2005-07-06 04:24:42','2006-02-15 22:20:09'), +(13282,493,1,3655,'5.99','2005-07-06 07:52:54','2006-02-15 22:20:09'), +(13283,493,1,6549,'7.99','2005-07-12 05:02:01','2006-02-15 22:20:10'), +(13284,493,1,6552,'4.99','2005-07-12 05:05:06','2006-02-15 22:20:10'), +(13285,493,1,7026,'2.99','2005-07-27 02:48:58','2006-02-15 22:20:10'), +(13286,493,2,7043,'7.99','2005-07-27 03:24:23','2006-02-15 22:20:10'), +(13287,493,1,8298,'4.99','2005-07-29 02:47:36','2006-02-15 22:20:10'), +(13288,493,1,8616,'2.99','2005-07-29 13:39:09','2006-02-15 22:20:10'), +(13289,493,1,10777,'6.99','2005-08-01 21:03:50','2006-02-15 22:20:10'), +(13290,493,2,10885,'7.99','2005-08-02 00:51:37','2006-02-15 22:20:10'), +(13291,493,1,13638,'2.99','2005-08-20 07:21:15','2006-02-15 22:20:10'), +(13292,493,2,13675,'6.99','2005-08-20 08:32:51','2006-02-15 22:20:10'), +(13293,493,1,14117,'4.99','2005-08-21 01:11:59','2006-02-15 22:20:10'), +(13294,493,2,15177,'4.99','2005-08-22 15:34:49','2006-02-15 22:20:10'), +(13295,493,1,15355,'0.99','2005-08-22 21:19:24','2006-02-15 22:20:10'), +(13296,493,1,15490,'6.99','2005-08-23 02:08:18','2006-02-15 22:20:10'), +(13297,493,2,15878,'2.99','2005-08-23 16:34:31','2006-02-15 22:20:10'), +(13298,493,2,14160,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:10'), +(13299,494,1,608,'4.99','2005-05-28 15:03:44','2006-02-15 22:20:10'), +(13300,494,1,1683,'2.99','2005-06-16 11:54:55','2006-02-15 22:20:11'), +(13301,494,1,3511,'0.99','2005-07-06 00:42:01','2006-02-15 22:20:11'), +(13302,494,2,3803,'2.99','2005-07-06 15:06:55','2006-02-15 22:20:11'), +(13303,494,2,3913,'0.99','2005-07-06 20:11:00','2006-02-15 22:20:11'), +(13304,494,1,4086,'3.99','2005-07-07 05:26:06','2006-02-15 22:20:11'), +(13305,494,2,4397,'5.99','2005-07-07 21:14:54','2006-02-15 22:20:11'), +(13306,494,2,4551,'7.99','2005-07-08 04:36:21','2006-02-15 22:20:11'), +(13307,494,2,5083,'4.99','2005-07-09 05:30:32','2006-02-15 22:20:11'), +(13308,494,1,5180,'2.99','2005-07-09 10:06:53','2006-02-15 22:20:11'), +(13309,494,2,7258,'3.99','2005-07-27 11:05:54','2006-02-15 22:20:11'), +(13310,494,2,7546,'8.99','2005-07-27 21:50:09','2006-02-15 22:20:11'), +(13311,494,2,7737,'1.99','2005-07-28 05:15:03','2006-02-15 22:20:11'), +(13312,494,2,8333,'2.99','2005-07-29 04:16:40','2006-02-15 22:20:11'), +(13313,494,2,8895,'2.99','2005-07-30 00:49:17','2006-02-15 22:20:11'), +(13314,494,1,8934,'4.99','2005-07-30 02:37:05','2006-02-15 22:20:11'), +(13315,494,2,9012,'4.99','2005-07-30 05:18:57','2006-02-15 22:20:11'), +(13316,494,2,9510,'7.99','2005-07-31 00:24:17','2006-02-15 22:20:12'), +(13317,494,1,9799,'2.99','2005-07-31 10:58:32','2006-02-15 22:20:12'), +(13318,494,2,9943,'7.99','2005-07-31 15:37:29','2006-02-15 22:20:12'), +(13319,494,1,10403,'0.99','2005-08-01 07:30:45','2006-02-15 22:20:12'), +(13320,494,1,10623,'2.99','2005-08-01 15:22:38','2006-02-15 22:20:12'), +(13321,494,2,11152,'3.99','2005-08-02 09:53:36','2006-02-15 22:20:12'), +(13322,494,1,11987,'5.99','2005-08-17 18:21:59','2006-02-15 22:20:12'), +(13323,494,2,13094,'0.99','2005-08-19 10:47:58','2006-02-15 22:20:12'), +(13324,494,2,13301,'3.99','2005-08-19 18:53:15','2006-02-15 22:20:12'), +(13325,494,2,14634,'5.99','2005-08-21 18:51:28','2006-02-15 22:20:12'), +(13326,494,1,14832,'4.99','2005-08-22 01:43:29','2006-02-15 22:20:12'), +(13327,494,1,15086,'6.99','2005-08-22 11:21:08','2006-02-15 22:20:12'), +(13328,494,2,15156,'9.99','2005-08-22 14:29:11','2006-02-15 22:20:12'), +(13329,494,2,15291,'4.99','2005-08-22 19:28:04','2006-02-15 22:20:12'), +(13330,495,2,623,'4.99','2005-05-28 16:01:28','2006-02-15 22:20:12'), +(13331,495,2,741,'4.99','2005-05-29 08:35:49','2006-02-15 22:20:12'), +(13332,495,2,2074,'2.99','2005-06-17 16:40:03','2006-02-15 22:20:13'), +(13333,495,1,2349,'4.99','2005-06-18 12:25:14','2006-02-15 22:20:13'), +(13334,495,1,2549,'7.99','2005-06-19 02:46:39','2006-02-15 22:20:13'), +(13335,495,1,3129,'3.99','2005-06-20 18:57:48','2006-02-15 22:20:13'), +(13336,495,2,3966,'2.99','2005-07-06 22:38:49','2006-02-15 22:20:13'), +(13337,495,2,5484,'7.99','2005-07-09 23:54:37','2006-02-15 22:20:13'), +(13338,495,2,6426,'7.99','2005-07-11 23:56:38','2006-02-15 22:20:13'), +(13339,495,2,7191,'2.99','2005-07-27 08:36:15','2006-02-15 22:20:13'), +(13340,495,1,8151,'0.99','2005-07-28 20:50:52','2006-02-15 22:20:13'), +(13341,495,1,8383,'1.99','2005-07-29 05:36:47','2006-02-15 22:20:13'), +(13342,495,1,8451,'5.99','2005-07-29 07:44:56','2006-02-15 22:20:13'), +(13343,495,1,8672,'5.99','2005-07-29 15:49:48','2006-02-15 22:20:13'), +(13344,495,1,9387,'9.99','2005-07-30 19:27:05','2006-02-15 22:20:13'), +(13345,495,1,9741,'4.99','2005-07-31 09:09:22','2006-02-15 22:20:13'), +(13346,495,2,10065,'4.99','2005-07-31 19:27:34','2006-02-15 22:20:13'), +(13347,495,2,10643,'5.99','2005-08-01 15:48:33','2006-02-15 22:20:13'), +(13348,495,1,10783,'4.99','2005-08-01 21:23:37','2006-02-15 22:20:13'), +(13349,495,1,12782,'5.99','2005-08-18 23:56:23','2006-02-15 22:20:14'), +(13350,495,2,12837,'0.99','2005-08-19 01:51:09','2006-02-15 22:20:14'), +(13351,495,2,13205,'3.99','2005-08-19 15:05:26','2006-02-15 22:20:14'), +(13352,495,2,13445,'2.99','2005-08-20 00:05:33','2006-02-15 22:20:14'), +(13353,495,2,13818,'4.99','2005-08-20 13:20:09','2006-02-15 22:20:14'), +(13354,495,1,15984,'2.99','2005-08-23 20:16:27','2006-02-15 22:20:14'), +(13355,495,2,13753,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:14'), +(13356,496,2,322,'4.99','2005-05-27 00:47:35','2006-02-15 22:20:14'), +(13357,496,2,966,'0.99','2005-05-30 19:00:37','2006-02-15 22:20:14'), +(13358,496,1,2567,'2.99','2005-06-19 04:04:46','2006-02-15 22:20:14'), +(13359,496,2,3569,'3.99','2005-07-06 03:17:23','2006-02-15 22:20:14'), +(13360,496,1,4070,'2.99','2005-07-07 04:37:09','2006-02-15 22:20:14'), +(13361,496,1,4261,'4.99','2005-07-07 14:23:56','2006-02-15 22:20:14'), +(13362,496,1,4269,'0.99','2005-07-07 14:38:33','2006-02-15 22:20:14'), +(13363,496,1,5559,'5.99','2005-07-10 03:13:07','2006-02-15 22:20:14'), +(13364,496,2,5949,'4.99','2005-07-10 23:13:00','2006-02-15 22:20:14'), +(13365,496,1,7133,'2.99','2005-07-27 06:29:23','2006-02-15 22:20:15'), +(13366,496,2,8221,'2.99','2005-07-28 23:47:19','2006-02-15 22:20:15'), +(13367,496,1,11060,'7.99','2005-08-02 06:48:18','2006-02-15 22:20:15'), +(13368,496,2,11448,'4.99','2005-08-02 20:44:33','2006-02-15 22:20:15'), +(13369,496,1,11893,'3.99','2005-08-17 15:13:29','2006-02-15 22:20:15'), +(13370,496,2,12605,'4.99','2005-08-18 16:59:37','2006-02-15 22:20:15'), +(13371,496,1,13569,'5.99','2005-08-20 05:02:59','2006-02-15 22:20:15'), +(13372,496,2,14013,'6.99','2005-08-20 20:42:50','2006-02-15 22:20:15'), +(13373,496,1,14332,'7.99','2005-08-21 08:30:43','2006-02-15 22:20:15'), +(13374,496,1,14348,'0.99','2005-08-21 08:54:26','2006-02-15 22:20:15'), +(13375,496,2,15750,'2.99','2005-08-23 12:36:05','2006-02-15 22:20:15'), +(13376,496,1,13182,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:15'), +(13377,497,1,1100,'7.99','2005-05-31 14:03:21','2006-02-15 22:20:15'), +(13378,497,2,2180,'8.99','2005-06-18 00:47:43','2006-02-15 22:20:15'), +(13379,497,1,2298,'5.99','2005-06-18 08:18:29','2006-02-15 22:20:15'), +(13380,497,1,2406,'2.99','2005-06-18 16:39:37','2006-02-15 22:20:15'), +(13381,497,2,2818,'4.99','2005-06-19 20:05:52','2006-02-15 22:20:16'), +(13382,497,1,3696,'2.99','2005-07-06 10:04:55','2006-02-15 22:20:16'), +(13383,497,2,4218,'7.99','2005-07-07 12:10:24','2006-02-15 22:20:16'), +(13384,497,1,4516,'4.99','2005-07-08 02:43:41','2006-02-15 22:20:16'), +(13385,497,1,4578,'0.99','2005-07-08 06:00:17','2006-02-15 22:20:16'), +(13386,497,2,4795,'0.99','2005-07-08 16:32:54','2006-02-15 22:20:16'), +(13387,497,1,5030,'4.99','2005-07-09 02:35:43','2006-02-15 22:20:16'), +(13388,497,1,5239,'4.99','2005-07-09 13:12:35','2006-02-15 22:20:16'), +(13389,497,2,7603,'2.99','2005-07-27 23:54:44','2006-02-15 22:20:16'), +(13390,497,2,8011,'2.99','2005-07-28 15:26:39','2006-02-15 22:20:16'), +(13391,497,1,8150,'6.99','2005-07-28 20:50:41','2006-02-15 22:20:16'), +(13392,497,2,8813,'6.99','2005-07-29 21:47:55','2006-02-15 22:20:16'), +(13393,497,2,8867,'4.99','2005-07-30 00:02:18','2006-02-15 22:20:16'), +(13394,497,1,9273,'9.99','2005-07-30 15:05:36','2006-02-15 22:20:16'), +(13395,497,2,9850,'4.99','2005-07-31 12:46:52','2006-02-15 22:20:16'), +(13396,497,2,10760,'7.99','2005-08-01 20:25:20','2006-02-15 22:20:16'), +(13397,497,1,12123,'0.99','2005-08-17 23:22:18','2006-02-15 22:20:16'), +(13398,497,1,13159,'4.99','2005-08-19 13:19:59','2006-02-15 22:20:17'), +(13399,497,1,13289,'2.99','2005-08-19 18:31:30','2006-02-15 22:20:17'), +(13400,497,2,14134,'0.99','2005-08-21 01:45:54','2006-02-15 22:20:17'), +(13401,497,1,15362,'5.99','2005-08-22 21:40:20','2006-02-15 22:20:17'), +(13402,497,2,15633,'0.99','2005-08-23 07:31:10','2006-02-15 22:20:17'), +(13403,497,1,15919,'0.99','2005-08-23 18:01:31','2006-02-15 22:20:17'), +(13404,497,1,12698,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:17'), +(13405,498,2,49,'2.99','2005-05-25 06:39:35','2006-02-15 22:20:17'), +(13406,498,1,429,'8.99','2005-05-27 16:21:26','2006-02-15 22:20:17'), +(13407,498,2,718,'2.99','2005-05-29 04:52:23','2006-02-15 22:20:17'), +(13408,498,1,1253,'6.99','2005-06-15 06:06:33','2006-02-15 22:20:17'), +(13409,498,1,1782,'2.99','2005-06-16 19:21:12','2006-02-15 22:20:17'), +(13410,498,1,2344,'2.99','2005-06-18 12:01:47','2006-02-15 22:20:17'), +(13411,498,1,2449,'4.99','2005-06-18 19:18:36','2006-02-15 22:20:17'), +(13412,498,1,3098,'0.99','2005-06-20 16:37:01','2006-02-15 22:20:17'), +(13413,498,2,3360,'0.99','2005-06-21 12:12:41','2006-02-15 22:20:17'), +(13414,498,2,3828,'0.99','2005-07-06 15:57:30','2006-02-15 22:20:18'), +(13415,498,2,3856,'2.99','2005-07-06 17:04:46','2006-02-15 22:20:18'), +(13416,498,1,4311,'4.99','2005-07-07 17:31:14','2006-02-15 22:20:18'), +(13417,498,2,4972,'2.99','2005-07-08 23:56:09','2006-02-15 22:20:18'), +(13418,498,1,5286,'2.99','2005-07-09 15:11:41','2006-02-15 22:20:18'), +(13419,498,2,5884,'0.99','2005-07-10 19:31:38','2006-02-15 22:20:18'), +(13420,498,1,6058,'2.99','2005-07-11 04:03:51','2006-02-15 22:20:18'), +(13421,498,1,6088,'1.99','2005-07-11 05:40:35','2006-02-15 22:20:18'), +(13422,498,1,7285,'4.99','2005-07-27 12:14:06','2006-02-15 22:20:18'), +(13423,498,1,7286,'6.99','2005-07-27 12:23:49','2006-02-15 22:20:18'), +(13424,498,1,7341,'4.99','2005-07-27 14:23:55','2006-02-15 22:20:18'), +(13425,498,2,8020,'4.99','2005-07-28 15:43:32','2006-02-15 22:20:18'), +(13426,498,1,8229,'2.99','2005-07-29 00:09:08','2006-02-15 22:20:18'), +(13427,498,2,9021,'0.99','2005-07-30 05:34:24','2006-02-15 22:20:18'), +(13428,498,2,9689,'4.99','2005-07-31 07:00:08','2006-02-15 22:20:18'), +(13429,498,1,10225,'0.99','2005-08-01 01:38:40','2006-02-15 22:20:18'), +(13430,498,1,11455,'6.99','2005-08-02 21:07:06','2006-02-15 22:20:18'), +(13431,498,1,12893,'2.99','2005-08-19 03:46:43','2006-02-15 22:20:19'), +(13432,499,2,89,'2.99','2005-05-25 14:28:29','2006-02-15 22:20:19'), +(13433,499,1,1355,'2.99','2005-06-15 13:13:59','2006-02-15 22:20:19'), +(13434,499,2,1526,'4.99','2005-06-16 00:27:51','2006-02-15 22:20:19'), +(13435,499,2,1830,'4.99','2005-06-16 22:18:43','2006-02-15 22:20:19'), +(13436,499,2,3241,'1.99','2005-06-21 02:54:32','2006-02-15 22:20:19'), +(13437,499,1,3794,'4.99','2005-07-06 14:35:26','2006-02-15 22:20:19'), +(13438,499,1,5022,'2.99','2005-07-09 02:10:54','2006-02-15 22:20:19'), +(13439,499,2,5392,'2.99','2005-07-09 19:32:30','2006-02-15 22:20:19'), +(13440,499,2,5427,'3.99','2005-07-09 21:12:26','2006-02-15 22:20:19'), +(13441,499,1,5956,'4.99','2005-07-10 23:23:08','2006-02-15 22:20:19'), +(13442,499,2,6723,'4.99','2005-07-12 13:44:57','2006-02-15 22:20:19'), +(13443,499,1,7800,'0.99','2005-07-28 07:50:59','2006-02-15 22:20:19'), +(13444,499,1,7831,'0.99','2005-07-28 08:44:21','2006-02-15 22:20:19'), +(13445,499,1,7898,'6.99','2005-07-28 11:08:22','2006-02-15 22:20:19'), +(13446,499,2,8130,'4.99','2005-07-28 19:48:15','2006-02-15 22:20:19'), +(13447,499,1,8770,'3.99','2005-07-29 19:53:50','2006-02-15 22:20:20'), +(13448,499,1,9588,'0.99','2005-07-31 03:13:13','2006-02-15 22:20:20'), +(13449,499,2,10333,'0.99','2005-08-01 04:58:32','2006-02-15 22:20:20'), +(13450,499,2,10497,'2.99','2005-08-01 10:55:59','2006-02-15 22:20:20'), +(13451,499,1,11513,'7.99','2005-08-16 23:51:33','2006-02-15 22:20:20'), +(13452,499,2,11606,'0.99','2005-08-17 03:32:43','2006-02-15 22:20:20'), +(13453,499,2,11978,'4.99','2005-08-17 18:02:10','2006-02-15 22:20:20'), +(13454,499,1,12004,'8.99','2005-08-17 18:56:53','2006-02-15 22:20:20'), +(13455,499,1,12354,'7.99','2005-08-18 07:34:07','2006-02-15 22:20:20'), +(13456,499,1,12436,'3.99','2005-08-18 10:41:05','2006-02-15 22:20:20'), +(13457,499,1,12587,'1.99','2005-08-18 16:03:13','2006-02-15 22:20:20'), +(13458,499,2,12947,'4.99','2005-08-19 05:54:21','2006-02-15 22:20:20'), +(13459,499,2,13822,'3.99','2005-08-20 13:39:28','2006-02-15 22:20:20'), +(13460,499,1,14858,'3.99','2005-08-22 02:46:18','2006-02-15 22:20:20'), +(13461,499,1,15587,'7.99','2005-08-23 06:00:28','2006-02-15 22:20:20'), +(13462,500,1,112,'8.99','2005-05-25 18:57:24','2006-02-15 22:20:20'), +(13463,500,1,389,'8.99','2005-05-27 10:45:41','2006-02-15 22:20:21'), +(13464,500,1,610,'0.99','2005-05-28 15:15:25','2006-02-15 22:20:21'), +(13465,500,1,1375,'5.99','2005-06-15 14:54:56','2006-02-15 22:20:21'), +(13466,500,2,1388,'5.99','2005-06-15 15:48:41','2006-02-15 22:20:21'), +(13467,500,2,2189,'3.99','2005-06-18 01:20:26','2006-02-15 22:20:21'), +(13468,500,2,2526,'6.99','2005-06-19 01:03:07','2006-02-15 22:20:21'), +(13469,500,1,2996,'2.99','2005-06-20 09:20:29','2006-02-15 22:20:21'), +(13470,500,2,3926,'4.99','2005-07-06 20:42:35','2006-02-15 22:20:21'), +(13471,500,1,4561,'0.99','2005-07-08 05:02:43','2006-02-15 22:20:21'), +(13472,500,2,4790,'4.99','2005-07-08 16:25:27','2006-02-15 22:20:21'), +(13473,500,2,6018,'4.99','2005-07-11 02:06:36','2006-02-15 22:20:21'), +(13474,500,2,6187,'2.99','2005-07-11 11:28:51','2006-02-15 22:20:21'), +(13475,500,2,6801,'3.99','2005-07-12 17:09:08','2006-02-15 22:20:21'), +(13476,500,1,7857,'0.99','2005-07-28 09:49:40','2006-02-15 22:20:21'), +(13477,500,1,7925,'2.99','2005-07-28 12:10:02','2006-02-15 22:20:21'), +(13478,500,1,8538,'6.99','2005-07-29 10:45:17','2006-02-15 22:20:21'), +(13479,500,1,8925,'0.99','2005-07-30 02:09:14','2006-02-15 22:20:22'), +(13480,500,2,9290,'3.99','2005-07-30 15:59:08','2006-02-15 22:20:22'), +(13481,500,1,10947,'6.99','2005-08-02 03:23:17','2006-02-15 22:20:22'), +(13482,500,2,11218,'1.99','2005-08-02 12:29:12','2006-02-15 22:20:22'), +(13483,500,1,12639,'2.99','2005-08-18 18:13:05','2006-02-15 22:20:22'), +(13484,500,2,12813,'2.99','2005-08-19 00:54:22','2006-02-15 22:20:22'), +(13485,500,2,13628,'4.99','2005-08-20 07:03:53','2006-02-15 22:20:22'), +(13486,500,1,14407,'0.99','2005-08-21 10:46:51','2006-02-15 22:20:22'), +(13487,500,1,14964,'4.99','2005-08-22 06:39:24','2006-02-15 22:20:22'), +(13488,500,1,15584,'2.99','2005-08-23 05:49:21','2006-02-15 22:20:22'), +(13489,500,1,15853,'2.99','2005-08-23 15:54:20','2006-02-15 22:20:22'), +(13490,501,1,493,'0.99','2005-05-28 00:34:11','2006-02-15 22:20:22'), +(13491,501,1,605,'1.99','2005-05-28 14:39:10','2006-02-15 22:20:22'), +(13492,501,2,3222,'5.99','2005-06-21 01:50:29','2006-02-15 22:20:22'), +(13493,501,1,3412,'7.99','2005-06-21 16:44:31','2006-02-15 22:20:22'), +(13494,501,2,3541,'6.99','2005-07-06 01:50:11','2006-02-15 22:20:22'), +(13495,501,2,3723,'6.99','2005-07-06 11:12:02','2006-02-15 22:20:22'), +(13496,501,2,4769,'2.99','2005-07-08 15:29:16','2006-02-15 22:20:23'), +(13497,501,2,5520,'1.99','2005-07-10 01:30:41','2006-02-15 22:20:23'), +(13498,501,2,6095,'7.99','2005-07-11 06:06:41','2006-02-15 22:20:23'), +(13499,501,1,7456,'0.99','2005-07-27 18:34:53','2006-02-15 22:20:23'), +(13500,501,1,8021,'2.99','2005-07-28 15:45:24','2006-02-15 22:20:23'), +(13501,501,2,8529,'2.99','2005-07-29 10:24:31','2006-02-15 22:20:23'), +(13502,501,1,9359,'2.99','2005-07-30 18:39:28','2006-02-15 22:20:23'), +(13503,501,1,10817,'4.99','2005-08-01 22:51:08','2006-02-15 22:20:23'), +(13504,501,2,11393,'4.99','2005-08-02 18:44:29','2006-02-15 22:20:23'), +(13505,501,1,11640,'1.99','2005-08-17 04:44:33','2006-02-15 22:20:23'), +(13506,501,2,11799,'6.99','2005-08-17 11:25:25','2006-02-15 22:20:23'), +(13507,501,1,12914,'4.99','2005-08-19 04:25:59','2006-02-15 22:20:23'), +(13508,501,2,13889,'0.99','2005-08-20 15:40:06','2006-02-15 22:20:23'), +(13509,501,1,15239,'4.99','2005-08-22 17:46:17','2006-02-15 22:20:23'), +(13510,501,1,15699,'5.99','2005-08-23 10:20:35','2006-02-15 22:20:23'), +(13511,502,2,258,'2.99','2005-05-26 15:28:14','2006-02-15 22:20:23'), +(13512,502,1,861,'0.99','2005-05-30 02:48:32','2006-02-15 22:20:24'), +(13513,502,1,893,'2.99','2005-05-30 08:06:59','2006-02-15 22:20:24'), +(13514,502,2,965,'0.99','2005-05-30 19:00:14','2006-02-15 22:20:24'), +(13515,502,2,1696,'7.99','2005-06-16 12:50:01','2006-02-15 22:20:24'), +(13516,502,2,2420,'0.99','2005-06-18 17:22:28','2006-02-15 22:20:24'), +(13517,502,1,2911,'0.99','2005-06-20 03:32:37','2006-02-15 22:20:24'), +(13518,502,2,3614,'2.99','2005-07-06 05:46:05','2006-02-15 22:20:24'), +(13519,502,1,4606,'2.99','2005-07-08 07:05:50','2006-02-15 22:20:24'), +(13520,502,2,5368,'5.99','2005-07-09 18:41:59','2006-02-15 22:20:24'), +(13521,502,2,5662,'2.99','2005-07-10 07:59:24','2006-02-15 22:20:24'), +(13522,502,2,6414,'7.99','2005-07-11 23:26:13','2006-02-15 22:20:24'), +(13523,502,1,6760,'8.99','2005-07-12 15:16:00','2006-02-15 22:20:24'), +(13524,502,2,6828,'2.99','2005-07-12 18:38:51','2006-02-15 22:20:24'), +(13525,502,2,6924,'8.99','2005-07-26 22:51:53','2006-02-15 22:20:24'), +(13526,502,2,7213,'3.99','2005-07-27 09:22:29','2006-02-15 22:20:24'), +(13527,502,1,7255,'4.99','2005-07-27 10:49:54','2006-02-15 22:20:24'), +(13528,502,1,7757,'4.99','2005-07-28 06:23:00','2006-02-15 22:20:25'), +(13529,502,1,7884,'4.99','2005-07-28 10:37:24','2006-02-15 22:20:25'), +(13530,502,2,8034,'4.99','2005-07-28 16:20:26','2006-02-15 22:20:25'), +(13531,502,2,9232,'0.99','2005-07-30 13:43:00','2006-02-15 22:20:25'), +(13532,502,1,9599,'4.99','2005-07-31 03:32:06','2006-02-15 22:20:25'), +(13533,502,2,10390,'4.99','2005-08-01 06:46:48','2006-02-15 22:20:25'), +(13534,502,1,10938,'0.99','2005-08-02 03:05:22','2006-02-15 22:20:25'), +(13535,502,2,11036,'4.99','2005-08-02 05:56:29','2006-02-15 22:20:25'), +(13536,502,1,11301,'0.99','2005-08-02 15:37:59','2006-02-15 22:20:25'), +(13537,502,1,11317,'4.99','2005-08-02 16:08:52','2006-02-15 22:20:25'), +(13538,502,1,11435,'0.99','2005-08-02 20:14:23','2006-02-15 22:20:25'), +(13539,502,1,11620,'0.99','2005-08-17 04:06:22','2006-02-15 22:20:25'), +(13540,502,1,12762,'4.99','2005-08-18 23:06:54','2006-02-15 22:20:25'), +(13541,502,1,13052,'9.99','2005-08-19 09:31:42','2006-02-15 22:20:25'), +(13542,502,1,14411,'4.99','2005-08-21 10:54:57','2006-02-15 22:20:25'), +(13543,502,1,15486,'3.99','2005-08-23 02:05:20','2006-02-15 22:20:25'), +(13544,502,1,16034,'3.99','2005-08-23 22:06:34','2006-02-15 22:20:26'), +(13545,503,2,109,'1.99','2005-05-25 18:40:20','2006-02-15 22:20:26'), +(13546,503,1,353,'5.99','2005-05-27 06:03:39','2006-02-15 22:20:26'), +(13547,503,1,631,'2.99','2005-05-28 17:36:32','2006-02-15 22:20:26'), +(13548,503,1,1074,'4.99','2005-05-31 10:04:42','2006-02-15 22:20:26'), +(13549,503,2,2108,'4.99','2005-06-17 19:35:26','2006-02-15 22:20:26'), +(13550,503,1,2225,'2.99','2005-06-18 03:35:40','2006-02-15 22:20:26'), +(13551,503,2,3430,'0.99','2005-06-21 18:46:08','2006-02-15 22:20:26'), +(13552,503,2,3935,'6.99','2005-07-06 21:08:29','2006-02-15 22:20:26'), +(13553,503,2,4570,'2.99','2005-07-08 05:33:59','2006-02-15 22:20:26'), +(13554,503,2,5465,'2.99','2005-07-09 23:01:13','2006-02-15 22:20:26'), +(13555,503,1,5925,'6.99','2005-07-10 21:41:27','2006-02-15 22:20:26'), +(13556,503,1,6166,'4.99','2005-07-11 10:19:05','2006-02-15 22:20:26'), +(13557,503,1,6529,'2.99','2005-07-12 04:31:04','2006-02-15 22:20:26'), +(13558,503,2,6950,'4.99','2005-07-26 23:45:33','2006-02-15 22:20:26'), +(13559,503,1,8178,'2.99','2005-07-28 21:54:31','2006-02-15 22:20:26'), +(13560,503,2,9725,'0.99','2005-07-31 08:35:18','2006-02-15 22:20:27'), +(13561,503,1,9974,'4.99','2005-07-31 16:51:11','2006-02-15 22:20:27'), +(13562,503,2,11075,'2.99','2005-08-02 07:24:23','2006-02-15 22:20:27'), +(13563,503,1,11161,'1.99','2005-08-02 10:05:57','2006-02-15 22:20:27'), +(13564,503,1,11858,'4.99','2005-08-17 13:50:31','2006-02-15 22:20:27'), +(13565,503,2,12370,'2.99','2005-08-18 07:57:47','2006-02-15 22:20:27'), +(13566,503,2,12783,'4.99','2005-08-19 00:01:14','2006-02-15 22:20:27'), +(13567,503,1,13332,'2.99','2005-08-19 20:00:51','2006-02-15 22:20:27'), +(13568,503,1,13551,'2.99','2005-08-20 04:00:30','2006-02-15 22:20:27'), +(13569,503,1,14823,'0.99','2005-08-22 01:24:42','2006-02-15 22:20:27'), +(13570,503,1,14913,'2.99','2005-08-22 04:52:13','2006-02-15 22:20:27'), +(13571,503,2,15056,'4.99','2005-08-22 10:15:54','2006-02-15 22:20:27'), +(13572,503,2,15077,'2.99','2005-08-22 11:09:18','2006-02-15 22:20:27'), +(13573,503,1,15588,'3.99','2005-08-23 06:02:35','2006-02-15 22:20:27'), +(13574,503,1,15692,'4.99','2005-08-23 10:00:02','2006-02-15 22:20:27'), +(13575,503,1,15726,'2.99','2005-08-23 11:28:26','2006-02-15 22:20:27'), +(13576,503,1,15797,'0.99','2005-08-23 14:13:47','2006-02-15 22:20:28'), +(13577,504,2,136,'5.99','2005-05-25 22:02:30','2006-02-15 22:20:28'), +(13578,504,2,470,'4.99','2005-05-27 21:17:08','2006-02-15 22:20:28'), +(13579,504,1,838,'4.99','2005-05-30 00:27:57','2006-02-15 22:20:28'), +(13580,504,1,2720,'1.99','2005-06-19 14:51:55','2006-02-15 22:20:28'), +(13581,504,1,2938,'6.99','2005-06-20 05:17:22','2006-02-15 22:20:28'), +(13582,504,2,3712,'9.99','2005-07-06 10:47:35','2006-02-15 22:20:28'), +(13583,504,1,3713,'6.99','2005-07-06 10:49:30','2006-02-15 22:20:28'), +(13584,504,1,4329,'5.99','2005-07-07 18:04:16','2006-02-15 22:20:28'), +(13585,504,1,4757,'0.99','2005-07-08 14:36:51','2006-02-15 22:20:28'), +(13586,504,2,5153,'6.99','2005-07-09 08:35:05','2006-02-15 22:20:28'), +(13587,504,2,7342,'3.99','2005-07-27 14:25:17','2006-02-15 22:20:28'), +(13588,504,1,7567,'2.99','2005-07-27 22:38:05','2006-02-15 22:20:28'), +(13589,504,2,7807,'2.99','2005-07-28 07:58:27','2006-02-15 22:20:28'), +(13590,504,2,7875,'1.99','2005-07-28 10:23:48','2006-02-15 22:20:28'), +(13591,504,2,7944,'4.99','2005-07-28 12:51:22','2006-02-15 22:20:28'), +(13592,504,1,8393,'9.99','2005-07-29 06:02:11','2006-02-15 22:20:28'), +(13593,504,2,10397,'0.99','2005-08-01 07:11:27','2006-02-15 22:20:29'), +(13594,504,2,10509,'3.99','2005-08-01 11:25:28','2006-02-15 22:20:29'), +(13595,504,2,11569,'2.99','2005-08-17 01:31:04','2006-02-15 22:20:29'), +(13596,504,1,12769,'1.99','2005-08-18 23:26:40','2006-02-15 22:20:29'), +(13597,504,1,13166,'2.99','2005-08-19 13:36:28','2006-02-15 22:20:29'), +(13598,504,2,13206,'2.99','2005-08-19 15:05:34','2006-02-15 22:20:29'), +(13599,504,2,13387,'2.99','2005-08-19 21:46:10','2006-02-15 22:20:29'), +(13600,504,2,13859,'5.99','2005-08-20 14:53:43','2006-02-15 22:20:29'), +(13601,504,2,15018,'4.99','2005-08-22 08:52:38','2006-02-15 22:20:29'), +(13602,504,1,15166,'6.99','2005-08-22 15:05:37','2006-02-15 22:20:29'), +(13603,504,1,15723,'8.99','2005-08-23 11:17:26','2006-02-15 22:20:29'), +(13604,504,2,16022,'4.99','2005-08-23 21:44:27','2006-02-15 22:20:29'), +(13605,505,1,159,'2.99','2005-05-26 01:34:28','2006-02-15 22:20:29'), +(13606,505,1,645,'2.99','2005-05-28 19:14:09','2006-02-15 22:20:29'), +(13607,505,2,1799,'5.99','2005-06-16 20:17:20','2006-02-15 22:20:29'), +(13608,505,2,1886,'4.99','2005-06-17 03:36:02','2006-02-15 22:20:29'), +(13609,505,1,2773,'7.99','2005-06-19 18:04:18','2006-02-15 22:20:30'), +(13610,505,1,3137,'5.99','2005-06-20 19:41:28','2006-02-15 22:20:30'), +(13611,505,2,4008,'5.99','2005-07-07 00:26:43','2006-02-15 22:20:30'), +(13612,505,1,4507,'6.99','2005-07-08 02:22:45','2006-02-15 22:20:30'), +(13613,505,2,5976,'9.99','2005-07-11 00:16:35','2006-02-15 22:20:30'), +(13614,505,2,6292,'4.99','2005-07-11 17:23:33','2006-02-15 22:20:30'), +(13615,505,1,6441,'0.99','2005-07-12 00:27:08','2006-02-15 22:20:30'), +(13616,505,1,7784,'4.99','2005-07-28 07:15:32','2006-02-15 22:20:30'), +(13617,505,2,10219,'5.99','2005-08-01 01:10:33','2006-02-15 22:20:30'), +(13618,505,1,10896,'2.99','2005-08-02 01:19:33','2006-02-15 22:20:30'), +(13619,505,1,11163,'0.99','2005-08-02 10:08:40','2006-02-15 22:20:30'), +(13620,505,1,11907,'2.99','2005-08-17 15:40:47','2006-02-15 22:20:30'), +(13621,505,2,13612,'3.99','2005-08-20 06:22:08','2006-02-15 22:20:30'), +(13622,505,1,14398,'2.99','2005-08-21 10:27:21','2006-02-15 22:20:30'), +(13623,505,1,14802,'2.99','2005-08-22 00:48:23','2006-02-15 22:20:30'), +(13624,505,1,15436,'4.99','2005-08-23 00:30:26','2006-02-15 22:20:30'), +(13625,505,2,15867,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:31'), +(13626,506,1,114,'3.99','2005-05-25 19:12:42','2006-02-15 22:20:31'), +(13627,506,2,387,'2.99','2005-05-27 10:35:27','2006-02-15 22:20:31'), +(13628,506,2,410,'3.99','2005-05-27 14:11:22','2006-02-15 22:20:31'), +(13629,506,1,547,'8.99','2005-05-28 07:24:28','2006-02-15 22:20:31'), +(13630,506,2,907,'0.99','2005-05-30 10:37:27','2006-02-15 22:20:31'), +(13631,506,1,1042,'2.99','2005-05-31 05:53:00','2006-02-15 22:20:31'), +(13632,506,2,1153,'4.99','2005-05-31 21:36:44','2006-02-15 22:20:31'), +(13633,506,1,1446,'6.99','2005-06-15 19:13:45','2006-02-15 22:20:31'), +(13634,506,1,1467,'2.99','2005-06-15 20:47:10','2006-02-15 22:20:31'), +(13635,506,2,1565,'0.99','2005-06-16 03:13:09','2006-02-15 22:20:31'), +(13636,506,1,2755,'9.99','2005-06-19 16:56:31','2006-02-15 22:20:31'), +(13637,506,2,2824,'6.99','2005-06-19 20:31:45','2006-02-15 22:20:31'), +(13638,506,2,4594,'7.99','2005-07-08 06:40:06','2006-02-15 22:20:31'), +(13639,506,2,4640,'6.99','2005-07-08 08:59:34','2006-02-15 22:20:31'), +(13640,506,2,4806,'8.99','2005-07-08 17:01:02','2006-02-15 22:20:31'), +(13641,506,2,5985,'0.99','2005-07-11 00:51:58','2006-02-15 22:20:32'), +(13642,506,1,6783,'2.99','2005-07-12 16:27:56','2006-02-15 22:20:32'), +(13643,506,1,7020,'0.99','2005-07-27 02:24:27','2006-02-15 22:20:32'), +(13644,506,2,8096,'9.99','2005-07-28 18:32:46','2006-02-15 22:20:32'), +(13645,506,2,8506,'0.99','2005-07-29 09:23:52','2006-02-15 22:20:32'), +(13646,506,2,9654,'3.99','2005-07-31 05:57:42','2006-02-15 22:20:32'), +(13647,506,2,9972,'2.99','2005-07-31 16:42:43','2006-02-15 22:20:32'), +(13648,506,1,10477,'2.99','2005-08-01 10:04:17','2006-02-15 22:20:32'), +(13649,506,1,10873,'4.99','2005-08-02 00:30:34','2006-02-15 22:20:32'), +(13650,506,2,11238,'0.99','2005-08-02 13:25:50','2006-02-15 22:20:32'), +(13651,506,2,11781,'4.99','2005-08-17 10:37:00','2006-02-15 22:20:32'), +(13652,506,1,12994,'0.99','2005-08-19 07:26:10','2006-02-15 22:20:32'), +(13653,506,2,13073,'2.99','2005-08-19 10:05:38','2006-02-15 22:20:32'), +(13654,506,2,13767,'0.99','2005-08-20 11:43:36','2006-02-15 22:20:32'), +(13655,506,1,14074,'1.99','2005-08-20 23:16:07','2006-02-15 22:20:32'), +(13656,506,1,14337,'2.99','2005-08-21 08:34:26','2006-02-15 22:20:32'), +(13657,506,2,14395,'6.99','2005-08-21 10:24:00','2006-02-15 22:20:33'), +(13658,506,2,15022,'5.99','2005-08-22 08:55:43','2006-02-15 22:20:33'), +(13659,506,2,15572,'1.99','2005-08-23 05:28:01','2006-02-15 22:20:33'), +(13660,506,1,15694,'9.99','2005-08-23 10:02:46','2006-02-15 22:20:33'), +(13661,507,1,52,'0.99','2005-05-25 06:51:29','2006-02-15 22:20:33'), +(13662,507,2,713,'4.99','2005-05-29 04:10:17','2006-02-15 22:20:33'), +(13663,507,2,1307,'4.99','2005-06-15 10:06:15','2006-02-15 22:20:33'), +(13664,507,1,2143,'4.99','2005-06-17 21:58:13','2006-02-15 22:20:33'), +(13665,507,2,2283,'4.99','2005-06-18 06:56:06','2006-02-15 22:20:33'), +(13666,507,1,3660,'4.99','2005-07-06 08:07:29','2006-02-15 22:20:33'), +(13667,507,1,3880,'2.99','2005-07-06 18:32:49','2006-02-15 22:20:33'), +(13668,507,2,4440,'0.99','2005-07-07 23:00:58','2006-02-15 22:20:33'), +(13669,507,2,4455,'2.99','2005-07-07 23:43:46','2006-02-15 22:20:33'), +(13670,507,2,4744,'0.99','2005-07-08 13:43:57','2006-02-15 22:20:33'), +(13671,507,2,4901,'2.99','2005-07-08 20:44:51','2006-02-15 22:20:33'), +(13672,507,1,5962,'0.99','2005-07-10 23:45:22','2006-02-15 22:20:33'), +(13673,507,1,6351,'6.99','2005-07-11 20:31:44','2006-02-15 22:20:34'), +(13674,507,1,6396,'1.99','2005-07-11 22:31:08','2006-02-15 22:20:34'), +(13675,507,1,6891,'2.99','2005-07-12 21:07:35','2006-02-15 22:20:34'), +(13676,507,2,7770,'5.99','2005-07-28 06:49:35','2006-02-15 22:20:34'), +(13677,507,1,7970,'5.99','2005-07-28 13:58:38','2006-02-15 22:20:34'), +(13678,507,2,8369,'2.99','2005-07-29 05:15:42','2006-02-15 22:20:34'), +(13679,507,2,8976,'2.99','2005-07-30 04:12:32','2006-02-15 22:20:34'), +(13680,507,1,9003,'2.99','2005-07-30 05:02:52','2006-02-15 22:20:34'), +(13681,507,2,12071,'6.99','2005-08-17 21:49:14','2006-02-15 22:20:34'), +(13682,507,2,12275,'4.99','2005-08-18 04:42:02','2006-02-15 22:20:34'), +(13683,507,1,12343,'4.99','2005-08-18 07:15:13','2006-02-15 22:20:34'), +(13684,507,2,14625,'4.99','2005-08-21 18:34:21','2006-02-15 22:20:34'), +(13685,507,1,15394,'2.99','2005-08-22 23:04:21','2006-02-15 22:20:34'), +(13686,508,1,369,'2.99','2005-05-27 07:46:49','2006-02-15 22:20:34'), +(13687,508,2,921,'2.99','2005-05-30 11:53:09','2006-02-15 22:20:34'), +(13688,508,2,1661,'4.99','2005-06-16 10:12:57','2006-02-15 22:20:34'), +(13689,508,2,5657,'9.99','2005-07-10 07:33:43','2006-02-15 22:20:35'), +(13690,508,2,5978,'6.99','2005-07-11 00:16:54','2006-02-15 22:20:35'), +(13691,508,1,6101,'4.99','2005-07-11 06:50:33','2006-02-15 22:20:35'), +(13692,508,2,6646,'0.99','2005-07-12 10:41:34','2006-02-15 22:20:35'), +(13693,508,2,6929,'8.99','2005-07-26 22:59:19','2006-02-15 22:20:35'), +(13694,508,1,7283,'5.99','2005-07-27 12:02:41','2006-02-15 22:20:35'), +(13695,508,2,7322,'3.99','2005-07-27 13:37:26','2006-02-15 22:20:35'), +(13696,508,2,7327,'7.99','2005-07-27 13:53:26','2006-02-15 22:20:35'), +(13697,508,2,7668,'2.99','2005-07-28 02:41:31','2006-02-15 22:20:35'), +(13698,508,2,7676,'4.99','2005-07-28 02:55:27','2006-02-15 22:20:35'), +(13699,508,2,8191,'4.99','2005-07-28 22:47:14','2006-02-15 22:20:35'), +(13700,508,2,9694,'5.99','2005-07-31 07:13:16','2006-02-15 22:20:35'), +(13701,508,1,9706,'2.99','2005-07-31 07:43:19','2006-02-15 22:20:35'), +(13702,508,2,10128,'2.99','2005-07-31 21:40:04','2006-02-15 22:20:35'), +(13703,508,1,10746,'8.99','2005-08-01 19:58:49','2006-02-15 22:20:35'), +(13704,508,1,11365,'2.99','2005-08-02 18:00:09','2006-02-15 22:20:35'), +(13705,508,2,11447,'6.99','2005-08-02 20:36:25','2006-02-15 22:20:36'), +(13706,508,1,13095,'6.99','2005-08-19 10:48:10','2006-02-15 22:20:36'), +(13707,508,2,13201,'2.99','2005-08-19 14:56:05','2006-02-15 22:20:36'), +(13708,508,1,15010,'6.99','2005-08-22 08:30:17','2006-02-15 22:20:36'), +(13709,508,1,15195,'4.99','2005-08-22 16:08:23','2006-02-15 22:20:36'), +(13710,508,1,14318,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:36'), +(13711,509,1,22,'4.99','2005-05-25 02:19:23','2006-02-15 22:20:36'), +(13712,509,1,831,'8.99','2005-05-29 22:50:25','2006-02-15 22:20:36'), +(13713,509,1,1267,'2.99','2005-06-15 07:21:21','2006-02-15 22:20:36'), +(13714,509,2,2919,'4.99','2005-06-20 04:10:16','2006-02-15 22:20:36'), +(13715,509,2,4139,'1.99','2005-07-07 08:17:35','2006-02-15 22:20:36'), +(13716,509,2,4266,'4.99','2005-07-07 14:34:50','2006-02-15 22:20:36'), +(13717,509,2,4832,'2.99','2005-07-08 18:07:05','2006-02-15 22:20:36'), +(13718,509,2,5008,'2.99','2005-07-09 01:31:42','2006-02-15 22:20:36'), +(13719,509,1,6591,'5.99','2005-07-12 07:13:46','2006-02-15 22:20:36'), +(13720,509,1,7848,'6.99','2005-07-28 09:24:31','2006-02-15 22:20:36'), +(13721,509,1,8114,'8.99','2005-07-28 19:14:06','2006-02-15 22:20:37'), +(13722,509,1,8214,'5.99','2005-07-28 23:37:57','2006-02-15 22:20:37'), +(13723,509,2,8240,'0.99','2005-07-29 00:33:32','2006-02-15 22:20:37'), +(13724,509,1,10189,'4.99','2005-08-01 00:25:00','2006-02-15 22:20:37'), +(13725,509,2,10988,'5.99','2005-08-02 04:38:17','2006-02-15 22:20:37'), +(13726,509,1,11814,'6.99','2005-08-17 12:09:20','2006-02-15 22:20:37'), +(13727,509,2,12109,'4.99','2005-08-17 22:58:35','2006-02-15 22:20:37'), +(13728,509,2,14045,'4.99','2005-08-20 21:50:11','2006-02-15 22:20:37'), +(13729,509,2,14994,'5.99','2005-08-22 07:52:24','2006-02-15 22:20:37'), +(13730,509,1,15965,'2.99','2005-08-23 19:46:39','2006-02-15 22:20:37'), +(13731,510,1,75,'8.99','2005-05-25 11:13:34','2006-02-15 22:20:37'), +(13732,510,1,372,'5.99','2005-05-27 08:13:58','2006-02-15 22:20:37'), +(13733,510,2,1118,'4.99','2005-05-31 16:23:02','2006-02-15 22:20:37'), +(13734,510,2,1435,'5.99','2005-06-15 18:32:30','2006-02-15 22:20:37'), +(13735,510,2,1757,'0.99','2005-06-16 17:32:24','2006-02-15 22:20:37'), +(13736,510,2,1925,'0.99','2005-06-17 06:16:47','2006-02-15 22:20:37'), +(13737,510,1,2729,'8.99','2005-06-19 15:06:15','2006-02-15 22:20:38'), +(13738,510,2,2806,'0.99','2005-06-19 19:30:48','2006-02-15 22:20:38'), +(13739,510,2,2817,'0.99','2005-06-19 20:05:22','2006-02-15 22:20:38'), +(13740,510,2,3352,'8.99','2005-06-21 11:26:29','2006-02-15 22:20:38'), +(13741,510,2,3465,'5.99','2005-06-21 22:10:01','2006-02-15 22:20:38'), +(13742,510,2,3744,'2.99','2005-07-06 12:10:02','2006-02-15 22:20:38'), +(13743,510,1,4014,'4.99','2005-07-07 00:58:54','2006-02-15 22:20:38'), +(13744,510,2,5851,'4.99','2005-07-10 17:40:47','2006-02-15 22:20:38'), +(13745,510,1,6531,'1.99','2005-07-12 04:35:24','2006-02-15 22:20:38'), +(13746,510,1,7457,'2.99','2005-07-27 18:35:17','2006-02-15 22:20:38'), +(13747,510,1,7678,'8.99','2005-07-28 02:58:16','2006-02-15 22:20:38'), +(13748,510,2,7794,'9.99','2005-07-28 07:28:03','2006-02-15 22:20:38'), +(13749,510,2,8763,'3.99','2005-07-29 19:38:24','2006-02-15 22:20:38'), +(13750,510,1,8926,'4.99','2005-07-30 02:10:31','2006-02-15 22:20:38'), +(13751,510,1,10131,'0.99','2005-07-31 21:45:28','2006-02-15 22:20:38'), +(13752,510,2,10265,'7.99','2005-08-01 03:05:04','2006-02-15 22:20:38'), +(13753,510,2,11996,'4.99','2005-08-17 18:34:37','2006-02-15 22:20:39'), +(13754,510,1,12317,'0.99','2005-08-18 06:17:06','2006-02-15 22:20:39'), +(13755,510,2,12406,'2.99','2005-08-18 09:38:02','2006-02-15 22:20:39'), +(13756,510,1,15065,'4.99','2005-08-22 10:46:44','2006-02-15 22:20:39'), +(13757,511,1,56,'2.99','2005-05-25 08:28:11','2006-02-15 22:20:39'), +(13758,511,1,819,'3.99','2005-05-29 21:00:32','2006-02-15 22:20:39'), +(13759,511,2,1281,'2.99','2005-06-15 08:21:39','2006-02-15 22:20:39'), +(13760,511,1,1508,'2.99','2005-06-15 22:33:24','2006-02-15 22:20:39'), +(13761,511,2,2966,'10.99','2005-06-20 07:39:33','2006-02-15 22:20:39'), +(13762,511,2,3366,'4.99','2005-06-21 13:03:37','2006-02-15 22:20:39'), +(13763,511,2,3600,'4.99','2005-07-06 05:19:42','2006-02-15 22:20:39'), +(13764,511,1,3852,'0.99','2005-07-06 16:57:49','2006-02-15 22:20:39'), +(13765,511,1,4482,'4.99','2005-07-08 01:01:18','2006-02-15 22:20:39'), +(13766,511,2,5164,'3.99','2005-07-09 09:03:14','2006-02-15 22:20:39'), +(13767,511,1,5601,'0.99','2005-07-10 04:56:55','2006-02-15 22:20:39'), +(13768,511,2,6040,'0.99','2005-07-11 03:14:26','2006-02-15 22:20:39'), +(13769,511,1,6320,'0.99','2005-07-11 18:50:55','2006-02-15 22:20:40'), +(13770,511,1,8026,'4.99','2005-07-28 16:05:38','2006-02-15 22:20:40'), +(13771,511,1,9095,'0.99','2005-07-30 08:38:36','2006-02-15 22:20:40'), +(13772,511,1,9143,'6.99','2005-07-30 10:22:11','2006-02-15 22:20:40'), +(13773,511,1,9760,'4.99','2005-07-31 09:29:33','2006-02-15 22:20:40'), +(13774,511,1,10231,'2.99','2005-08-01 01:50:49','2006-02-15 22:20:40'), +(13775,511,2,10429,'2.99','2005-08-01 08:34:18','2006-02-15 22:20:40'), +(13776,511,2,12110,'6.99','2005-08-17 22:59:46','2006-02-15 22:20:40'), +(13777,511,1,12920,'4.99','2005-08-19 04:32:32','2006-02-15 22:20:40'), +(13778,511,1,14213,'4.99','2005-08-21 04:30:47','2006-02-15 22:20:40'), +(13779,511,1,14302,'6.99','2005-08-21 07:19:57','2006-02-15 22:20:40'), +(13780,511,1,15172,'4.99','2005-08-22 15:25:33','2006-02-15 22:20:40'), +(13781,512,1,1176,'6.99','2005-06-15 00:28:37','2006-02-15 22:20:40'), +(13782,512,2,2029,'4.99','2005-06-17 13:10:59','2006-02-15 22:20:40'), +(13783,512,1,2364,'2.99','2005-06-18 13:37:32','2006-02-15 22:20:40'), +(13784,512,1,4752,'5.99','2005-07-08 14:15:20','2006-02-15 22:20:40'), +(13785,512,1,4799,'0.99','2005-07-08 16:49:27','2006-02-15 22:20:41'), +(13786,512,1,5064,'6.99','2005-07-09 04:38:51','2006-02-15 22:20:41'), +(13787,512,2,5813,'3.99','2005-07-10 15:34:37','2006-02-15 22:20:41'), +(13788,512,1,7219,'2.99','2005-07-27 09:35:36','2006-02-15 22:20:41'), +(13789,512,1,7507,'0.99','2005-07-27 20:31:48','2006-02-15 22:20:41'), +(13790,512,1,7715,'6.99','2005-07-28 04:32:38','2006-02-15 22:20:41'), +(13791,512,2,8868,'4.99','2005-07-30 00:02:26','2006-02-15 22:20:41'), +(13792,512,1,9055,'2.99','2005-07-30 07:13:07','2006-02-15 22:20:41'), +(13793,512,2,10232,'4.99','2005-08-01 01:50:55','2006-02-15 22:20:41'), +(13794,512,2,10670,'3.99','2005-08-01 17:07:16','2006-02-15 22:20:41'), +(13795,512,2,11818,'9.99','2005-08-17 12:22:04','2006-02-15 22:20:41'), +(13796,512,2,12957,'8.99','2005-08-19 06:12:44','2006-02-15 22:20:41'), +(13797,512,2,13156,'4.99','2005-08-19 13:10:42','2006-02-15 22:20:41'), +(13798,512,2,13771,'0.99','2005-08-20 11:47:21','2006-02-15 22:20:41'), +(13799,512,1,14288,'4.99','2005-08-21 06:57:34','2006-02-15 22:20:41'), +(13800,512,1,14870,'2.99','2005-08-22 03:23:20','2006-02-15 22:20:41'), +(13801,512,1,15153,'2.99','2005-08-22 14:26:01','2006-02-15 22:20:42'), +(13802,512,2,15265,'3.99','2005-08-22 18:35:59','2006-02-15 22:20:42'), +(13803,512,1,15317,'3.99','2005-08-22 20:14:13','2006-02-15 22:20:42'), +(13804,512,2,15733,'4.99','2005-08-23 11:37:32','2006-02-15 22:20:42'), +(13805,512,2,15990,'4.99','2005-08-23 20:25:11','2006-02-15 22:20:42'), +(13806,512,1,12786,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:42'), +(13807,513,2,993,'4.99','2005-05-30 23:54:19','2006-02-15 22:20:42'), +(13808,513,1,1607,'2.99','2005-06-16 06:25:35','2006-02-15 22:20:42'), +(13809,513,2,2290,'7.99','2005-06-18 07:34:37','2006-02-15 22:20:42'), +(13810,513,2,2737,'1.99','2005-06-19 15:48:33','2006-02-15 22:20:42'), +(13811,513,2,3872,'0.99','2005-07-06 18:00:19','2006-02-15 22:20:42'), +(13812,513,2,4055,'2.99','2005-07-07 03:49:13','2006-02-15 22:20:42'), +(13813,513,2,4178,'4.99','2005-07-07 10:14:31','2006-02-15 22:20:42'), +(13814,513,2,4220,'4.99','2005-07-07 12:12:36','2006-02-15 22:20:42'), +(13815,513,1,5741,'7.99','2005-07-10 11:55:40','2006-02-15 22:20:42'), +(13816,513,1,6027,'4.99','2005-07-11 02:26:29','2006-02-15 22:20:42'), +(13817,513,1,7655,'0.99','2005-07-28 02:01:11','2006-02-15 22:20:43'), +(13818,513,2,8320,'4.99','2005-07-29 03:49:58','2006-02-15 22:20:43'), +(13819,513,1,8350,'4.99','2005-07-29 04:50:39','2006-02-15 22:20:43'), +(13820,513,2,8683,'9.99','2005-07-29 16:15:43','2006-02-15 22:20:43'), +(13821,513,1,8798,'5.99','2005-07-29 21:15:38','2006-02-15 22:20:43'), +(13822,513,2,9862,'2.99','2005-07-31 13:05:03','2006-02-15 22:20:43'), +(13823,513,1,10012,'3.99','2005-07-31 18:06:06','2006-02-15 22:20:43'), +(13824,513,2,11081,'2.99','2005-08-02 07:30:14','2006-02-15 22:20:43'), +(13825,513,1,11165,'2.99','2005-08-02 10:12:17','2006-02-15 22:20:43'), +(13826,513,1,11407,'3.99','2005-08-02 19:18:43','2006-02-15 22:20:43'), +(13827,513,1,11755,'3.99','2005-08-17 09:15:35','2006-02-15 22:20:43'), +(13828,513,1,12559,'5.99','2005-08-18 14:53:58','2006-02-15 22:20:43'), +(13829,513,2,12784,'2.99','2005-08-19 00:02:46','2006-02-15 22:20:43'), +(13830,513,2,12807,'4.99','2005-08-19 00:38:46','2006-02-15 22:20:43'), +(13831,513,1,13596,'5.99','2005-08-20 05:58:58','2006-02-15 22:20:43'), +(13832,513,1,13690,'4.99','2005-08-20 09:07:27','2006-02-15 22:20:43'), +(13833,513,2,14844,'7.99','2005-08-22 02:09:12','2006-02-15 22:20:44'), +(13834,513,1,14875,'4.99','2005-08-22 03:34:39','2006-02-15 22:20:44'), +(13835,513,1,15035,'4.99','2005-08-22 09:34:32','2006-02-15 22:20:44'), +(13836,513,2,15289,'6.99','2005-08-22 19:27:24','2006-02-15 22:20:44'), +(13837,513,2,15545,'5.99','2005-08-23 04:20:16','2006-02-15 22:20:44'), +(13838,514,2,536,'4.99','2005-05-28 06:17:33','2006-02-15 22:20:44'), +(13839,514,2,1692,'4.99','2005-06-16 12:30:19','2006-02-15 22:20:44'), +(13840,514,1,2002,'3.99','2005-06-17 11:39:58','2006-02-15 22:20:44'), +(13841,514,2,2362,'0.99','2005-06-18 13:31:15','2006-02-15 22:20:44'), +(13842,514,1,2789,'0.99','2005-06-19 18:48:21','2006-02-15 22:20:44'), +(13843,514,2,3084,'2.99','2005-06-20 15:35:24','2006-02-15 22:20:44'), +(13844,514,1,3385,'0.99','2005-06-21 14:16:48','2006-02-15 22:20:44'), +(13845,514,2,3668,'5.99','2005-07-06 08:36:48','2006-02-15 22:20:44'), +(13846,514,2,3860,'2.99','2005-07-06 17:20:24','2006-02-15 22:20:44'), +(13847,514,1,7791,'4.99','2005-07-28 07:22:51','2006-02-15 22:20:44'), +(13848,514,1,9038,'3.99','2005-07-30 06:23:35','2006-02-15 22:20:45'), +(13849,514,1,11675,'1.99','2005-08-17 05:57:54','2006-02-15 22:20:45'), +(13850,514,2,12067,'4.99','2005-08-17 21:36:47','2006-02-15 22:20:45'), +(13851,514,1,12293,'4.99','2005-08-18 05:13:36','2006-02-15 22:20:45'), +(13852,514,1,12302,'4.99','2005-08-18 05:41:39','2006-02-15 22:20:45'), +(13853,514,2,12578,'0.99','2005-08-18 15:47:11','2006-02-15 22:20:45'), +(13854,514,1,12752,'2.99','2005-08-18 22:33:36','2006-02-15 22:20:45'), +(13855,514,2,13344,'3.99','2005-08-19 20:22:44','2006-02-15 22:20:45'), +(13856,514,1,14052,'0.99','2005-08-20 22:11:46','2006-02-15 22:20:45'), +(13857,514,1,14386,'1.99','2005-08-21 10:06:34','2006-02-15 22:20:45'), +(13858,514,1,15451,'2.99','2005-08-23 00:56:27','2006-02-15 22:20:45'), +(13859,514,1,15776,'5.99','2005-08-23 13:26:01','2006-02-15 22:20:45'), +(13860,515,2,187,'8.99','2005-05-26 05:42:37','2006-02-15 22:20:45'), +(13861,515,2,292,'6.99','2005-05-26 20:22:12','2006-02-15 22:20:45'), +(13862,515,1,1244,'4.99','2005-06-15 05:08:40','2006-02-15 22:20:45'), +(13863,515,2,1531,'5.99','2005-06-16 00:40:34','2006-02-15 22:20:45'), +(13864,515,2,2003,'4.99','2005-06-17 11:40:35','2006-02-15 22:20:46'), +(13865,515,2,2484,'4.99','2005-06-18 21:25:23','2006-02-15 22:20:46'), +(13866,515,2,2513,'0.99','2005-06-18 23:53:15','2006-02-15 22:20:46'), +(13867,515,2,3063,'3.99','2005-06-20 13:52:03','2006-02-15 22:20:46'), +(13868,515,2,3782,'0.99','2005-07-06 13:57:03','2006-02-15 22:20:46'), +(13869,515,2,4111,'6.99','2005-07-07 06:47:56','2006-02-15 22:20:46'), +(13870,515,2,5216,'0.99','2005-07-09 11:54:58','2006-02-15 22:20:46'), +(13871,515,2,5546,'2.99','2005-07-10 02:50:37','2006-02-15 22:20:46'), +(13872,515,2,5697,'4.99','2005-07-10 09:44:44','2006-02-15 22:20:46'), +(13873,515,2,7429,'3.99','2005-07-27 17:24:50','2006-02-15 22:20:46'), +(13874,515,1,8706,'4.99','2005-07-29 17:19:15','2006-02-15 22:20:46'), +(13875,515,1,10159,'4.99','2005-07-31 22:54:30','2006-02-15 22:20:46'), +(13876,515,2,10716,'0.99','2005-08-01 18:53:48','2006-02-15 22:20:46'), +(13877,515,1,11451,'3.99','2005-08-02 20:45:56','2006-02-15 22:20:46'), +(13878,515,2,11572,'4.99','2005-08-17 01:37:55','2006-02-15 22:20:46'), +(13879,515,1,11691,'3.99','2005-08-17 06:51:05','2006-02-15 22:20:47'), +(13880,515,2,11937,'6.99','2005-08-17 16:48:36','2006-02-15 22:20:47'), +(13881,515,2,12416,'2.99','2005-08-18 09:56:48','2006-02-15 22:20:47'), +(13882,515,1,12486,'8.99','2005-08-18 12:42:50','2006-02-15 22:20:47'), +(13883,515,1,12889,'5.99','2005-08-19 03:41:31','2006-02-15 22:20:47'), +(13884,515,2,14072,'4.99','2005-08-20 23:07:10','2006-02-15 22:20:47'), +(13885,515,2,14378,'3.99','2005-08-21 09:50:02','2006-02-15 22:20:47'), +(13886,515,2,14414,'0.99','2005-08-21 11:08:17','2006-02-15 22:20:47'), +(13887,515,2,15274,'4.99','2005-08-22 18:55:52','2006-02-15 22:20:47'), +(13888,516,2,339,'3.99','2005-05-27 03:47:18','2006-02-15 22:20:47'), +(13889,516,1,571,'1.99','2005-05-28 10:17:41','2006-02-15 22:20:47'), +(13890,516,2,1159,'4.99','2005-06-14 22:55:13','2006-02-15 22:20:47'), +(13891,516,1,1200,'1.99','2005-06-15 01:59:51','2006-02-15 22:20:47'), +(13892,516,1,1718,'10.99','2005-06-16 14:52:02','2006-02-15 22:20:47'), +(13893,516,1,2017,'0.99','2005-06-17 12:33:30','2006-02-15 22:20:47'), +(13894,516,2,3068,'0.99','2005-06-20 14:02:22','2006-02-15 22:20:47'), +(13895,516,1,3431,'2.99','2005-06-21 18:46:48','2006-02-15 22:20:48'), +(13896,516,2,5780,'3.99','2005-07-10 13:46:23','2006-02-15 22:20:48'), +(13897,516,2,6677,'6.99','2005-07-12 11:58:14','2006-02-15 22:20:48'), +(13898,516,1,6858,'6.99','2005-07-12 19:53:51','2006-02-15 22:20:48'), +(13899,516,1,7628,'4.99','2005-07-28 00:58:04','2006-02-15 22:20:48'), +(13900,516,1,7882,'4.99','2005-07-28 10:33:42','2006-02-15 22:20:48'), +(13901,516,2,8396,'4.99','2005-07-29 06:07:00','2006-02-15 22:20:48'), +(13902,516,2,8534,'5.99','2005-07-29 10:30:13','2006-02-15 22:20:48'), +(13903,516,2,8585,'2.99','2005-07-29 12:14:18','2006-02-15 22:20:48'), +(13904,516,2,9243,'4.99','2005-07-30 14:06:27','2006-02-15 22:20:48'), +(13905,516,2,11926,'0.99','2005-08-17 16:25:02','2006-02-15 22:20:48'), +(13906,516,2,11939,'1.99','2005-08-17 16:55:57','2006-02-15 22:20:48'), +(13907,516,1,12535,'1.99','2005-08-18 14:05:22','2006-02-15 22:20:48'), +(13908,516,1,13276,'8.99','2005-08-19 17:53:42','2006-02-15 22:20:48'), +(13909,516,1,14932,'0.99','2005-08-22 05:40:39','2006-02-15 22:20:48'), +(13910,516,1,15526,'0.99','2005-08-23 03:44:30','2006-02-15 22:20:48'), +(13911,516,1,15701,'0.99','2005-08-23 10:22:21','2006-02-15 22:20:49'), +(13912,516,1,12130,'5.98','2006-02-14 15:16:03','2006-02-15 22:20:49'), +(13913,516,1,12915,'0.00','2006-02-14 15:16:03','2006-02-15 22:20:49'), +(13914,517,2,850,'4.99','2005-05-30 01:35:12','2006-02-15 22:20:49'), +(13915,517,2,1653,'4.99','2005-06-16 09:34:45','2006-02-15 22:20:49'), +(13916,517,1,1809,'8.99','2005-06-16 21:00:20','2006-02-15 22:20:49'), +(13917,517,1,1850,'4.99','2005-06-17 00:31:35','2006-02-15 22:20:49'), +(13918,517,2,2534,'2.99','2005-06-19 01:38:39','2006-02-15 22:20:49'), +(13919,517,1,3113,'0.99','2005-06-20 17:56:40','2006-02-15 22:20:49'), +(13920,517,2,4094,'2.99','2005-07-07 06:00:21','2006-02-15 22:20:49'), +(13921,517,1,4109,'4.99','2005-07-07 06:39:43','2006-02-15 22:20:49'), +(13922,517,1,4369,'4.99','2005-07-07 20:01:38','2006-02-15 22:20:49'), +(13923,517,2,4374,'4.99','2005-07-07 20:13:58','2006-02-15 22:20:49'), +(13924,517,2,4934,'0.99','2005-07-08 22:18:42','2006-02-15 22:20:49'), +(13925,517,1,4993,'2.99','2005-07-09 00:49:47','2006-02-15 22:20:49'), +(13926,517,1,5206,'7.99','2005-07-09 11:11:01','2006-02-15 22:20:49'), +(13927,517,2,5974,'5.99','2005-07-11 00:10:37','2006-02-15 22:20:50'), +(13928,517,2,6594,'4.99','2005-07-12 07:25:43','2006-02-15 22:20:50'), +(13929,517,2,6903,'0.99','2005-07-12 21:58:15','2006-02-15 22:20:50'), +(13930,517,2,7988,'3.99','2005-07-28 14:37:18','2006-02-15 22:20:50'), +(13931,517,1,10063,'4.99','2005-07-31 19:25:13','2006-02-15 22:20:50'), +(13932,517,2,10358,'4.99','2005-08-01 05:50:07','2006-02-15 22:20:50'), +(13933,517,2,10433,'4.99','2005-08-01 08:45:56','2006-02-15 22:20:50'), +(13934,517,1,11684,'3.99','2005-08-17 06:27:15','2006-02-15 22:20:50'), +(13935,517,2,12705,'0.99','2005-08-18 20:44:14','2006-02-15 22:20:50'), +(13936,517,1,13396,'0.99','2005-08-19 22:06:09','2006-02-15 22:20:50'), +(13937,517,2,14190,'4.99','2005-08-21 03:35:21','2006-02-15 22:20:50'), +(13938,517,1,15559,'5.99','2005-08-23 04:55:05','2006-02-15 22:20:50'), +(13939,518,1,710,'2.99','2005-05-29 03:48:36','2006-02-15 22:20:50'), +(13940,518,2,1552,'5.99','2005-06-16 02:01:37','2006-02-15 22:20:50'), +(13941,518,2,3311,'0.99','2005-06-21 08:05:27','2006-02-15 22:20:50'), +(13942,518,1,3652,'0.99','2005-07-06 07:44:30','2006-02-15 22:20:51'), +(13943,518,2,4029,'7.99','2005-07-07 02:19:44','2006-02-15 22:20:51'), +(13944,518,2,4661,'4.99','2005-07-08 09:55:06','2006-02-15 22:20:51'), +(13945,518,2,4948,'6.99','2005-07-08 22:54:21','2006-02-15 22:20:51'), +(13946,518,1,6652,'2.99','2005-07-12 10:59:38','2006-02-15 22:20:51'), +(13947,518,1,6957,'2.99','2005-07-27 00:00:00','2006-02-15 22:20:51'), +(13948,518,2,7038,'3.99','2005-07-27 03:07:29','2006-02-15 22:20:51'), +(13949,518,2,7154,'4.99','2005-07-27 07:16:17','2006-02-15 22:20:51'), +(13950,518,2,7382,'2.99','2005-07-27 15:43:15','2006-02-15 22:20:51'), +(13951,518,1,7657,'2.99','2005-07-28 02:09:00','2006-02-15 22:20:51'), +(13952,518,2,7839,'6.99','2005-07-28 09:01:13','2006-02-15 22:20:51'), +(13953,518,1,8107,'3.99','2005-07-28 19:03:16','2006-02-15 22:20:51'), +(13954,518,1,8397,'2.99','2005-07-29 06:09:35','2006-02-15 22:20:51'), +(13955,518,1,10751,'5.99','2005-08-01 20:06:10','2006-02-15 22:20:51'), +(13956,518,2,11433,'3.99','2005-08-02 20:13:10','2006-02-15 22:20:51'), +(13957,518,2,12450,'2.99','2005-08-18 11:04:04','2006-02-15 22:20:51'), +(13958,518,2,12681,'2.99','2005-08-18 19:48:06','2006-02-15 22:20:52'), +(13959,518,1,13065,'4.99','2005-08-19 09:48:52','2006-02-15 22:20:52'), +(13960,518,1,13539,'6.99','2005-08-20 03:40:27','2006-02-15 22:20:52'), +(13961,518,1,14088,'6.99','2005-08-20 23:57:24','2006-02-15 22:20:52'), +(13962,518,1,14149,'4.99','2005-08-21 02:22:47','2006-02-15 22:20:52'), +(13963,518,2,14980,'0.99','2005-08-22 07:16:45','2006-02-15 22:20:52'), +(13964,518,2,15434,'4.99','2005-08-23 00:28:16','2006-02-15 22:20:52'), +(13965,519,1,1056,'3.99','2005-05-31 07:48:07','2006-02-15 22:20:52'), +(13966,519,1,1941,'2.99','2005-06-17 07:42:45','2006-02-15 22:20:52'), +(13967,519,2,2505,'8.99','2005-06-18 23:28:27','2006-02-15 22:20:52'), +(13968,519,2,2997,'5.99','2005-06-20 09:23:45','2006-02-15 22:20:52'), +(13969,519,2,4564,'0.99','2005-07-08 05:09:38','2006-02-15 22:20:52'), +(13970,519,2,4773,'2.99','2005-07-08 15:41:39','2006-02-15 22:20:52'), +(13971,519,2,5236,'0.99','2005-07-09 12:56:29','2006-02-15 22:20:52'), +(13972,519,2,5547,'5.99','2005-07-10 02:52:47','2006-02-15 22:20:52'), +(13973,519,2,6063,'0.99','2005-07-11 04:16:51','2006-02-15 22:20:52'), +(13974,519,1,6599,'3.99','2005-07-12 07:41:14','2006-02-15 22:20:53'), +(13975,519,1,9417,'6.99','2005-07-30 20:54:55','2006-02-15 22:20:53'), +(13976,519,2,9441,'4.99','2005-07-30 21:43:28','2006-02-15 22:20:53'), +(13977,519,2,9534,'7.99','2005-07-31 01:18:27','2006-02-15 22:20:53'), +(13978,519,2,9645,'0.99','2005-07-31 05:42:49','2006-02-15 22:20:53'), +(13979,519,2,9886,'7.99','2005-07-31 14:00:13','2006-02-15 22:20:53'), +(13980,519,1,9905,'0.99','2005-07-31 14:37:03','2006-02-15 22:20:53'), +(13981,519,1,10097,'5.99','2005-07-31 20:39:38','2006-02-15 22:20:53'), +(13982,519,2,10697,'4.99','2005-08-01 18:20:23','2006-02-15 22:20:53'), +(13983,519,2,12648,'7.99','2005-08-18 18:30:21','2006-02-15 22:20:53'), +(13984,519,2,12924,'2.99','2005-08-19 04:51:47','2006-02-15 22:20:53'), +(13985,519,1,13647,'7.99','2005-08-20 07:48:07','2006-02-15 22:20:53'), +(13986,519,1,14182,'2.99','2005-08-21 03:17:10','2006-02-15 22:20:53'), +(13987,519,2,15347,'2.99','2005-08-22 21:12:19','2006-02-15 22:20:53'), +(13988,520,1,962,'6.99','2005-05-30 18:45:17','2006-02-15 22:20:53'), +(13989,520,1,1411,'0.99','2005-06-15 17:05:36','2006-02-15 22:20:54'), +(13990,520,2,2174,'6.99','2005-06-18 00:09:01','2006-02-15 22:20:54'), +(13991,520,1,2772,'4.99','2005-06-19 17:59:27','2006-02-15 22:20:54'), +(13992,520,2,3482,'4.99','2005-07-05 23:13:22','2006-02-15 22:20:54'), +(13993,520,1,3499,'7.99','2005-07-06 00:04:20','2006-02-15 22:20:54'), +(13994,520,2,4346,'2.99','2005-07-07 18:58:45','2006-02-15 22:20:54'), +(13995,520,2,5799,'4.99','2005-07-10 14:53:35','2006-02-15 22:20:54'), +(13996,520,1,5802,'10.99','2005-07-10 15:02:17','2006-02-15 22:20:54'), +(13997,520,1,5853,'3.99','2005-07-10 17:45:13','2006-02-15 22:20:54'), +(13998,520,1,6029,'2.99','2005-07-11 02:36:46','2006-02-15 22:20:54'), +(13999,520,2,7198,'5.99','2005-07-27 08:50:07','2006-02-15 22:20:54'), +(14000,520,1,7720,'4.99','2005-07-28 04:41:44','2006-02-15 22:20:54'), +(14001,520,1,7936,'0.99','2005-07-28 12:33:21','2006-02-15 22:20:54'), +(14002,520,1,8294,'2.99','2005-07-29 02:32:41','2006-02-15 22:20:54'), +(14003,520,2,8435,'2.99','2005-07-29 07:20:16','2006-02-15 22:20:54'), +(14004,520,1,9803,'2.99','2005-07-31 11:06:02','2006-02-15 22:20:54'), +(14005,520,1,10072,'0.99','2005-07-31 19:50:37','2006-02-15 22:20:55'), +(14006,520,2,10530,'4.99','2005-08-01 12:01:17','2006-02-15 22:20:55'), +(14007,520,1,11566,'0.99','2005-08-17 01:28:35','2006-02-15 22:20:55'), +(14008,520,1,12517,'4.99','2005-08-18 13:40:20','2006-02-15 22:20:55'), +(14009,520,1,12628,'5.99','2005-08-18 17:40:25','2006-02-15 22:20:55'), +(14010,520,1,12647,'5.99','2005-08-18 18:29:51','2006-02-15 22:20:55'), +(14011,520,1,13311,'0.99','2005-08-19 19:07:09','2006-02-15 22:20:55'), +(14012,520,2,13438,'2.99','2005-08-19 23:38:02','2006-02-15 22:20:55'), +(14013,520,2,13659,'2.99','2005-08-20 08:05:52','2006-02-15 22:20:55'), +(14014,520,2,13746,'5.99','2005-08-20 10:55:28','2006-02-15 22:20:55'), +(14015,520,1,14372,'4.99','2005-08-21 09:39:50','2006-02-15 22:20:55'), +(14016,520,1,14509,'0.99','2005-08-21 14:39:58','2006-02-15 22:20:55'), +(14017,520,1,15465,'0.99','2005-08-23 01:16:33','2006-02-15 22:20:55'), +(14018,520,2,15492,'2.99','2005-08-23 02:13:46','2006-02-15 22:20:55'), +(14019,520,1,15948,'7.99','2005-08-23 18:59:33','2006-02-15 22:20:55'), +(14020,521,1,1761,'0.99','2005-06-16 17:49:57','2006-02-15 22:20:55'), +(14021,521,2,2053,'0.99','2005-06-17 15:19:34','2006-02-15 22:20:56'), +(14022,521,2,4284,'0.99','2005-07-07 15:31:57','2006-02-15 22:20:56'), +(14023,521,2,4439,'2.99','2005-07-07 22:57:30','2006-02-15 22:20:56'), +(14024,521,1,5276,'2.99','2005-07-09 14:35:13','2006-02-15 22:20:56'), +(14025,521,2,5458,'4.99','2005-07-09 22:35:49','2006-02-15 22:20:56'), +(14026,521,2,5580,'6.99','2005-07-10 04:05:49','2006-02-15 22:20:56'), +(14027,521,2,5686,'0.99','2005-07-10 09:06:03','2006-02-15 22:20:56'), +(14028,521,1,7478,'1.99','2005-07-27 19:16:02','2006-02-15 22:20:56'), +(14029,521,1,9556,'7.99','2005-07-31 02:13:30','2006-02-15 22:20:56'), +(14030,521,2,9937,'1.99','2005-07-31 15:28:10','2006-02-15 22:20:56'), +(14031,521,1,10587,'2.99','2005-08-01 14:03:38','2006-02-15 22:20:56'), +(14032,521,2,11625,'2.99','2005-08-17 04:18:52','2006-02-15 22:20:56'), +(14033,521,1,11967,'3.99','2005-08-17 17:45:00','2006-02-15 22:20:56'), +(14034,521,2,12082,'4.99','2005-08-17 22:13:15','2006-02-15 22:20:56'), +(14035,521,1,12530,'4.99','2005-08-18 13:54:48','2006-02-15 22:20:56'), +(14036,521,1,13527,'2.99','2005-08-20 03:00:47','2006-02-15 22:20:57'), +(14037,521,1,14423,'0.99','2005-08-21 11:23:59','2006-02-15 22:20:57'), +(14038,521,2,14551,'3.99','2005-08-21 15:57:25','2006-02-15 22:20:57'), +(14039,521,2,14738,'5.99','2005-08-21 22:29:13','2006-02-15 22:20:57'), +(14040,521,2,15170,'4.99','2005-08-22 15:22:15','2006-02-15 22:20:57'), +(14041,521,2,15329,'2.99','2005-08-22 20:32:39','2006-02-15 22:20:57'), +(14042,521,2,11672,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:57'), +(14043,522,2,426,'5.99','2005-05-27 15:56:57','2006-02-15 22:20:57'), +(14044,522,1,1289,'3.99','2005-06-15 08:44:09','2006-02-15 22:20:57'), +(14045,522,2,3102,'8.99','2005-06-20 16:55:55','2006-02-15 22:20:57'), +(14046,522,1,3188,'2.99','2005-06-20 23:10:27','2006-02-15 22:20:57'), +(14047,522,2,3191,'0.99','2005-06-20 23:46:39','2006-02-15 22:20:57'), +(14048,522,1,3594,'0.99','2005-07-06 04:42:47','2006-02-15 22:20:57'), +(14049,522,2,4078,'4.99','2005-07-07 05:05:05','2006-02-15 22:20:57'), +(14050,522,2,4563,'9.99','2005-07-08 05:08:55','2006-02-15 22:20:57'), +(14051,522,2,4701,'4.99','2005-07-08 11:38:48','2006-02-15 22:20:57'), +(14052,522,2,5271,'6.99','2005-07-09 14:25:01','2006-02-15 22:20:58'), +(14053,522,2,5514,'6.99','2005-07-10 01:09:42','2006-02-15 22:20:58'), +(14054,522,2,5532,'4.99','2005-07-10 02:17:31','2006-02-15 22:20:58'), +(14055,522,2,5936,'0.99','2005-07-10 22:14:30','2006-02-15 22:20:58'), +(14056,522,2,7262,'4.99','2005-07-27 11:15:36','2006-02-15 22:20:58'), +(14057,522,1,7955,'2.99','2005-07-28 13:31:36','2006-02-15 22:20:58'), +(14058,522,2,8181,'4.99','2005-07-28 22:18:38','2006-02-15 22:20:58'), +(14059,522,1,8642,'6.99','2005-07-29 14:38:17','2006-02-15 22:20:58'), +(14060,522,1,8966,'2.99','2005-07-30 03:54:12','2006-02-15 22:20:58'), +(14061,522,1,9047,'7.99','2005-07-30 06:56:33','2006-02-15 22:20:58'), +(14062,522,2,9227,'7.99','2005-07-30 13:36:13','2006-02-15 22:20:58'), +(14063,522,1,9335,'4.99','2005-07-30 18:00:53','2006-02-15 22:20:58'), +(14064,522,1,9412,'5.99','2005-07-30 20:44:10','2006-02-15 22:20:58'), +(14065,522,2,9533,'5.99','2005-07-31 01:18:10','2006-02-15 22:20:58'), +(14066,522,2,10223,'0.99','2005-08-01 01:23:15','2006-02-15 22:20:58'), +(14067,522,1,10411,'3.99','2005-08-01 07:56:32','2006-02-15 22:20:59'), +(14068,522,1,10675,'7.99','2005-08-01 17:11:57','2006-02-15 22:20:59'), +(14069,522,2,10821,'5.99','2005-08-01 22:54:27','2006-02-15 22:20:59'), +(14070,522,2,11696,'2.99','2005-08-17 07:01:09','2006-02-15 22:20:59'), +(14071,522,2,11830,'1.99','2005-08-17 12:53:15','2006-02-15 22:20:59'), +(14072,522,2,12494,'6.99','2005-08-18 12:53:49','2006-02-15 22:20:59'), +(14073,522,2,13605,'6.99','2005-08-20 06:06:17','2006-02-15 22:20:59'), +(14074,522,2,14467,'2.99','2005-08-21 13:03:33','2006-02-15 22:20:59'), +(14075,522,1,15921,'6.99','2005-08-23 18:06:54','2006-02-15 22:20:59'), +(14076,523,1,42,'4.99','2005-05-25 05:24:58','2006-02-15 22:20:59'), +(14077,523,2,664,'0.99','2005-05-28 21:31:08','2006-02-15 22:20:59'), +(14078,523,2,1729,'6.99','2005-06-16 15:29:47','2006-02-15 22:20:59'), +(14079,523,1,2447,'8.99','2005-06-18 19:10:55','2006-02-15 22:20:59'), +(14080,523,1,2583,'7.99','2005-06-19 05:01:40','2006-02-15 22:20:59'), +(14081,523,2,2669,'0.99','2005-06-19 11:28:52','2006-02-15 22:20:59'), +(14082,523,1,4605,'4.99','2005-07-08 07:00:14','2006-02-15 22:20:59'), +(14083,523,2,5155,'2.99','2005-07-09 08:46:54','2006-02-15 22:21:00'), +(14084,523,1,5287,'6.99','2005-07-09 15:11:54','2006-02-15 22:21:00'), +(14085,523,2,5932,'2.99','2005-07-10 22:05:15','2006-02-15 22:21:00'), +(14086,523,2,6675,'4.99','2005-07-12 11:53:06','2006-02-15 22:21:00'), +(14087,523,2,7642,'1.99','2005-07-28 01:16:51','2006-02-15 22:21:00'), +(14088,523,2,8141,'0.99','2005-07-28 20:21:19','2006-02-15 22:21:00'), +(14089,523,1,8372,'5.99','2005-07-29 05:18:08','2006-02-15 22:21:00'), +(14090,523,1,9071,'2.99','2005-07-30 07:40:58','2006-02-15 22:21:00'), +(14091,523,2,9667,'6.99','2005-07-31 06:23:52','2006-02-15 22:21:00'), +(14092,523,2,10470,'1.99','2005-08-01 09:52:26','2006-02-15 22:21:00'), +(14093,523,1,11827,'4.99','2005-08-17 12:44:27','2006-02-15 22:21:00'), +(14094,523,1,12288,'2.99','2005-08-18 05:01:20','2006-02-15 22:21:00'), +(14095,523,1,13133,'2.99','2005-08-19 12:11:03','2006-02-15 22:21:00'), +(14096,523,1,14766,'4.99','2005-08-21 23:42:20','2006-02-15 22:21:00'), +(14097,523,1,15040,'2.99','2005-08-22 09:41:09','2006-02-15 22:21:00'), +(14098,524,2,118,'0.99','2005-05-25 19:31:18','2006-02-15 22:21:00'), +(14099,524,1,982,'4.99','2005-05-30 22:15:24','2006-02-15 22:21:01'), +(14100,524,1,1306,'1.99','2005-06-15 09:59:24','2006-02-15 22:21:01'), +(14101,524,2,1651,'4.99','2005-06-16 09:24:38','2006-02-15 22:21:01'), +(14102,524,2,3454,'2.99','2005-06-21 21:12:13','2006-02-15 22:21:01'), +(14103,524,1,4366,'5.99','2005-07-07 19:48:36','2006-02-15 22:21:01'), +(14104,524,2,5037,'4.99','2005-07-09 02:59:10','2006-02-15 22:21:01'), +(14105,524,2,6161,'4.99','2005-07-11 10:11:54','2006-02-15 22:21:01'), +(14106,524,1,6240,'6.99','2005-07-11 14:32:41','2006-02-15 22:21:01'), +(14107,524,2,6745,'4.99','2005-07-12 14:30:51','2006-02-15 22:21:01'), +(14108,524,2,7014,'8.99','2005-07-27 02:14:40','2006-02-15 22:21:01'), +(14109,524,1,7040,'4.99','2005-07-27 03:17:19','2006-02-15 22:21:01'), +(14110,524,1,8507,'6.99','2005-07-29 09:29:44','2006-02-15 22:21:01'), +(14111,524,2,13626,'2.99','2005-08-20 06:55:24','2006-02-15 22:21:01'), +(14112,524,2,14046,'4.99','2005-08-20 21:53:21','2006-02-15 22:21:01'), +(14113,524,1,14178,'2.99','2005-08-21 03:13:45','2006-02-15 22:21:01'), +(14114,524,1,14366,'2.99','2005-08-21 09:31:39','2006-02-15 22:21:02'), +(14115,524,2,14680,'1.99','2005-08-21 20:19:52','2006-02-15 22:21:02'), +(14116,524,2,15206,'6.99','2005-08-22 16:33:39','2006-02-15 22:21:02'), +(14117,525,1,437,'5.99','2005-05-27 17:47:22','2006-02-15 22:21:02'), +(14118,525,2,1772,'2.99','2005-06-16 18:12:54','2006-02-15 22:21:02'), +(14119,525,1,3993,'6.99','2005-07-06 23:37:06','2006-02-15 22:21:02'), +(14120,525,1,5841,'2.99','2005-07-10 17:11:31','2006-02-15 22:21:02'), +(14121,525,2,6098,'7.99','2005-07-11 06:23:28','2006-02-15 22:21:02'), +(14122,525,2,6388,'6.99','2005-07-11 22:17:16','2006-02-15 22:21:02'), +(14123,525,1,6689,'1.99','2005-07-12 12:22:13','2006-02-15 22:21:02'), +(14124,525,2,7337,'4.99','2005-07-27 14:12:04','2006-02-15 22:21:02'), +(14125,525,2,7591,'4.99','2005-07-27 23:25:54','2006-02-15 22:21:02'), +(14126,525,1,8007,'0.99','2005-07-28 15:22:27','2006-02-15 22:21:02'), +(14127,525,1,8960,'4.99','2005-07-30 03:36:31','2006-02-15 22:21:02'), +(14128,525,2,9507,'5.99','2005-07-31 00:22:29','2006-02-15 22:21:02'), +(14129,525,1,9702,'0.99','2005-07-31 07:34:07','2006-02-15 22:21:02'), +(14130,525,1,10496,'2.99','2005-08-01 10:53:16','2006-02-15 22:21:03'), +(14131,525,2,11406,'2.99','2005-08-02 19:16:10','2006-02-15 22:21:03'), +(14132,525,1,11660,'1.99','2005-08-17 05:22:42','2006-02-15 22:21:03'), +(14133,525,1,15159,'0.99','2005-08-22 14:32:25','2006-02-15 22:21:03'), +(14134,525,2,15623,'3.99','2005-08-23 07:23:29','2006-02-15 22:21:03'), +(14135,525,1,14954,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:03'), +(14136,526,1,495,'4.99','2005-05-28 00:40:48','2006-02-15 22:21:03'), +(14137,526,2,679,'4.99','2005-05-28 23:24:57','2006-02-15 22:21:03'), +(14138,526,2,1015,'2.99','2005-05-31 02:44:57','2006-02-15 22:21:03'), +(14139,526,1,1255,'4.99','2005-06-15 06:13:45','2006-02-15 22:21:03'), +(14140,526,2,1848,'0.99','2005-06-17 00:07:07','2006-02-15 22:21:03'), +(14141,526,2,1865,'7.99','2005-06-17 01:49:36','2006-02-15 22:21:03'), +(14142,526,2,1972,'2.99','2005-06-17 09:25:49','2006-02-15 22:21:03'), +(14143,526,1,1981,'2.99','2005-06-17 10:03:34','2006-02-15 22:21:03'), +(14144,526,2,2398,'4.99','2005-06-18 15:56:53','2006-02-15 22:21:03'), +(14145,526,1,2828,'2.99','2005-06-19 20:51:33','2006-02-15 22:21:04'), +(14146,526,2,2932,'6.99','2005-06-20 04:51:19','2006-02-15 22:21:04'), +(14147,526,1,3339,'6.99','2005-06-21 10:37:11','2006-02-15 22:21:04'), +(14148,526,1,3619,'1.99','2005-07-06 05:59:44','2006-02-15 22:21:04'), +(14149,526,2,3905,'5.99','2005-07-06 19:33:34','2006-02-15 22:21:04'), +(14150,526,1,4423,'6.99','2005-07-07 22:11:28','2006-02-15 22:21:04'), +(14151,526,2,5056,'2.99','2005-07-09 04:13:45','2006-02-15 22:21:04'), +(14152,526,2,5121,'3.99','2005-07-09 07:18:31','2006-02-15 22:21:04'), +(14153,526,1,6316,'7.99','2005-07-11 18:44:52','2006-02-15 22:21:04'), +(14154,526,1,6404,'4.99','2005-07-11 22:49:50','2006-02-15 22:21:04'), +(14155,526,2,6650,'2.99','2005-07-12 10:57:10','2006-02-15 22:21:04'), +(14156,526,1,6671,'3.99','2005-07-12 11:48:48','2006-02-15 22:21:04'), +(14157,526,2,7270,'7.99','2005-07-27 11:29:02','2006-02-15 22:21:04'), +(14158,526,2,7343,'0.99','2005-07-27 14:27:13','2006-02-15 22:21:04'), +(14159,526,2,7399,'1.99','2005-07-27 16:16:02','2006-02-15 22:21:04'), +(14160,526,2,7543,'5.99','2005-07-27 21:44:28','2006-02-15 22:21:04'), +(14161,526,2,7883,'2.99','2005-07-28 10:37:20','2006-02-15 22:21:05'), +(14162,526,1,8053,'4.99','2005-07-28 16:59:41','2006-02-15 22:21:05'), +(14163,526,1,8232,'4.99','2005-07-29 00:14:37','2006-02-15 22:21:05'), +(14164,526,1,8441,'2.99','2005-07-29 07:33:05','2006-02-15 22:21:05'), +(14165,526,2,9577,'6.99','2005-07-31 02:53:33','2006-02-15 22:21:05'), +(14166,526,2,10020,'4.99','2005-07-31 18:21:08','2006-02-15 22:21:05'), +(14167,526,2,10199,'2.99','2005-08-01 00:38:55','2006-02-15 22:21:05'), +(14168,526,2,11046,'4.99','2005-08-02 06:08:34','2006-02-15 22:21:05'), +(14169,526,1,11503,'10.99','2005-08-16 23:10:34','2006-02-15 22:21:05'), +(14170,526,1,11612,'2.99','2005-08-17 03:48:51','2006-02-15 22:21:05'), +(14171,526,2,11702,'4.99','2005-08-17 07:18:56','2006-02-15 22:21:05'), +(14172,526,1,12607,'0.99','2005-08-18 17:03:49','2006-02-15 22:21:05'), +(14173,526,2,13224,'8.99','2005-08-19 15:52:13','2006-02-15 22:21:05'), +(14174,526,2,13580,'0.99','2005-08-20 05:23:34','2006-02-15 22:21:05'), +(14175,526,1,13617,'8.99','2005-08-20 06:35:30','2006-02-15 22:21:05'), +(14176,526,2,14487,'6.99','2005-08-21 13:53:33','2006-02-15 22:21:06'), +(14177,526,1,14590,'7.99','2005-08-21 17:29:10','2006-02-15 22:21:06'), +(14178,526,1,15168,'2.99','2005-08-22 15:14:20','2006-02-15 22:21:06'), +(14179,526,1,15395,'4.99','2005-08-22 23:06:25','2006-02-15 22:21:06'), +(14180,526,1,16043,'9.99','2005-08-23 22:21:03','2006-02-15 22:21:06'), +(14181,527,1,1398,'2.99','2005-06-15 16:28:42','2006-02-15 22:21:06'), +(14182,527,1,2422,'0.99','2005-06-18 17:28:57','2006-02-15 22:21:06'), +(14183,527,2,2496,'0.99','2005-06-18 22:20:11','2006-02-15 22:21:06'), +(14184,527,1,2539,'2.99','2005-06-19 01:58:39','2006-02-15 22:21:06'), +(14185,527,1,4888,'0.99','2005-07-08 20:04:27','2006-02-15 22:21:06'), +(14186,527,1,5365,'0.99','2005-07-09 18:27:00','2006-02-15 22:21:06'), +(14187,527,2,6003,'3.99','2005-07-11 01:28:33','2006-02-15 22:21:06'), +(14188,527,2,6011,'4.99','2005-07-11 01:54:48','2006-02-15 22:21:06'), +(14189,527,1,6050,'2.99','2005-07-11 03:34:29','2006-02-15 22:21:06'), +(14190,527,2,6975,'1.99','2005-07-27 00:39:54','2006-02-15 22:21:06'), +(14191,527,1,7506,'8.99','2005-07-27 20:28:34','2006-02-15 22:21:06'), +(14192,527,1,8854,'0.99','2005-07-29 23:40:07','2006-02-15 22:21:07'), +(14193,527,2,9750,'0.99','2005-07-31 09:19:46','2006-02-15 22:21:07'), +(14194,527,2,10486,'3.99','2005-08-01 10:23:43','2006-02-15 22:21:07'), +(14195,527,2,10613,'0.99','2005-08-01 14:56:14','2006-02-15 22:21:07'), +(14196,527,1,11013,'5.99','2005-08-02 05:10:54','2006-02-15 22:21:07'), +(14197,527,1,11150,'2.99','2005-08-02 09:51:46','2006-02-15 22:21:07'), +(14198,527,1,11624,'0.99','2005-08-17 04:17:42','2006-02-15 22:21:07'), +(14199,527,1,12136,'7.99','2005-08-17 23:51:30','2006-02-15 22:21:07'), +(14200,527,1,12513,'6.99','2005-08-18 13:31:45','2006-02-15 22:21:07'), +(14201,527,1,14352,'6.99','2005-08-21 09:06:29','2006-02-15 22:21:07'), +(14202,527,1,15144,'2.99','2005-08-22 13:49:18','2006-02-15 22:21:07'), +(14203,527,1,15552,'3.99','2005-08-23 04:33:23','2006-02-15 22:21:07'), +(14204,527,1,14267,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:07'), +(14205,528,1,204,'0.99','2005-05-26 07:30:37','2006-02-15 22:21:07'), +(14206,528,2,472,'0.99','2005-05-27 21:36:15','2006-02-15 22:21:07'), +(14207,528,1,533,'5.99','2005-05-28 06:14:46','2006-02-15 22:21:08'), +(14208,528,2,695,'3.99','2005-05-29 01:50:53','2006-02-15 22:21:08'), +(14209,528,2,793,'5.99','2005-05-29 16:44:08','2006-02-15 22:21:08'), +(14210,528,2,1875,'2.99','2005-06-17 02:45:10','2006-02-15 22:21:08'), +(14211,528,1,2019,'4.99','2005-06-17 12:38:44','2006-02-15 22:21:08'), +(14212,528,2,3654,'4.99','2005-07-06 07:45:31','2006-02-15 22:21:08'), +(14213,528,1,3664,'0.99','2005-07-06 08:15:57','2006-02-15 22:21:08'), +(14214,528,2,4050,'9.99','2005-07-07 03:35:33','2006-02-15 22:21:08'), +(14215,528,1,4593,'5.99','2005-07-08 06:38:12','2006-02-15 22:21:08'), +(14216,528,2,5215,'3.99','2005-07-09 11:47:58','2006-02-15 22:21:08'), +(14217,528,2,6561,'0.99','2005-07-12 05:24:02','2006-02-15 22:21:08'), +(14218,528,1,7569,'7.99','2005-07-27 22:38:53','2006-02-15 22:21:08'), +(14219,528,2,8112,'4.99','2005-07-28 19:11:07','2006-02-15 22:21:08'), +(14220,528,1,8727,'3.99','2005-07-29 18:09:57','2006-02-15 22:21:08'), +(14221,528,2,9488,'8.99','2005-07-30 23:42:42','2006-02-15 22:21:08'), +(14222,528,1,10084,'3.99','2005-07-31 20:11:29','2006-02-15 22:21:08'), +(14223,528,1,10673,'0.99','2005-08-01 17:11:51','2006-02-15 22:21:09'), +(14224,528,1,10880,'2.99','2005-08-02 00:34:12','2006-02-15 22:21:09'), +(14225,528,1,12818,'3.99','2005-08-19 01:04:59','2006-02-15 22:21:09'), +(14226,528,2,13518,'2.99','2005-08-20 02:36:17','2006-02-15 22:21:09'), +(14227,528,1,13600,'7.99','2005-08-20 06:00:25','2006-02-15 22:21:09'), +(14228,528,2,14148,'2.99','2005-08-21 02:17:49','2006-02-15 22:21:09'), +(14229,528,2,15880,'6.99','2005-08-23 16:43:54','2006-02-15 22:21:09'), +(14230,529,1,453,'2.99','2005-05-27 19:31:16','2006-02-15 22:21:09'), +(14231,529,1,1234,'1.99','2005-06-15 04:21:52','2006-02-15 22:21:09'), +(14232,529,2,1686,'0.99','2005-06-16 12:08:20','2006-02-15 22:21:09'), +(14233,529,2,3354,'0.99','2005-06-21 11:29:49','2006-02-15 22:21:09'), +(14234,529,2,4045,'0.99','2005-07-07 03:26:14','2006-02-15 22:21:09'), +(14235,529,2,4254,'0.99','2005-07-07 14:13:52','2006-02-15 22:21:09'), +(14236,529,2,4444,'5.99','2005-07-07 23:07:44','2006-02-15 22:21:09'), +(14237,529,1,4553,'0.99','2005-07-08 04:43:41','2006-02-15 22:21:09'), +(14238,529,1,5993,'4.99','2005-07-11 01:06:41','2006-02-15 22:21:10'), +(14239,529,2,6538,'6.99','2005-07-12 04:50:26','2006-02-15 22:21:10'), +(14240,529,2,6541,'5.99','2005-07-12 04:53:41','2006-02-15 22:21:10'), +(14241,529,1,6908,'7.99','2005-07-12 22:08:46','2006-02-15 22:21:10'), +(14242,529,1,7128,'3.99','2005-07-27 06:14:36','2006-02-15 22:21:10'), +(14243,529,2,8708,'2.99','2005-07-29 17:24:13','2006-02-15 22:21:10'), +(14244,529,1,8979,'5.99','2005-07-30 04:20:25','2006-02-15 22:21:10'), +(14245,529,2,9310,'4.99','2005-07-30 16:57:09','2006-02-15 22:21:10'), +(14246,529,2,9375,'0.99','2005-07-30 19:10:17','2006-02-15 22:21:10'), +(14247,529,2,10361,'10.99','2005-08-01 05:53:49','2006-02-15 22:21:10'), +(14248,529,1,11862,'2.99','2005-08-17 13:54:53','2006-02-15 22:21:10'), +(14249,529,2,12356,'2.99','2005-08-18 07:37:05','2006-02-15 22:21:10'), +(14250,529,1,12622,'3.99','2005-08-18 17:34:11','2006-02-15 22:21:10'), +(14251,529,1,13011,'4.99','2005-08-19 07:53:58','2006-02-15 22:21:10'), +(14252,529,2,13132,'3.99','2005-08-19 12:10:57','2006-02-15 22:21:10'), +(14253,529,1,13797,'2.99','2005-08-20 12:33:36','2006-02-15 22:21:11'), +(14254,529,2,13946,'9.99','2005-08-20 17:44:32','2006-02-15 22:21:11'), +(14255,529,2,14449,'4.99','2005-08-21 12:13:18','2006-02-15 22:21:11'), +(14256,529,2,14764,'0.99','2005-08-21 23:37:47','2006-02-15 22:21:11'), +(14257,529,1,14970,'5.99','2005-08-22 06:49:29','2006-02-15 22:21:11'), +(14258,529,2,15305,'2.99','2005-08-22 19:46:05','2006-02-15 22:21:11'), +(14259,530,1,851,'0.99','2005-05-30 01:35:15','2006-02-15 22:21:11'), +(14260,530,2,1273,'1.99','2005-06-15 07:52:35','2006-02-15 22:21:11'), +(14261,530,1,1516,'0.99','2005-06-15 23:11:10','2006-02-15 22:21:11'), +(14262,530,1,2158,'2.99','2005-06-17 23:36:27','2006-02-15 22:21:11'), +(14263,530,2,3669,'2.99','2005-07-06 08:38:29','2006-02-15 22:21:11'), +(14264,530,2,3887,'4.99','2005-07-06 18:46:34','2006-02-15 22:21:11'), +(14265,530,2,5663,'0.99','2005-07-10 08:01:33','2006-02-15 22:21:11'), +(14266,530,1,7031,'3.99','2005-07-27 03:02:07','2006-02-15 22:21:11'), +(14267,530,2,7075,'1.99','2005-07-27 04:11:40','2006-02-15 22:21:11'), +(14268,530,1,7218,'4.99','2005-07-27 09:34:24','2006-02-15 22:21:11'), +(14269,530,2,8208,'4.99','2005-07-28 23:26:35','2006-02-15 22:21:12'), +(14270,530,1,8736,'0.99','2005-07-29 18:31:15','2006-02-15 22:21:12'), +(14271,530,1,9914,'4.99','2005-07-31 14:51:19','2006-02-15 22:21:12'), +(14272,530,2,10211,'3.99','2005-08-01 01:01:16','2006-02-15 22:21:12'), +(14273,530,2,10504,'4.99','2005-08-01 11:10:55','2006-02-15 22:21:12'), +(14274,530,1,11326,'0.99','2005-08-02 16:34:29','2006-02-15 22:21:12'), +(14275,530,1,12220,'4.99','2005-08-18 02:50:02','2006-02-15 22:21:12'), +(14276,530,1,12387,'2.99','2005-08-18 08:46:24','2006-02-15 22:21:12'), +(14277,530,1,12649,'4.99','2005-08-18 18:31:47','2006-02-15 22:21:12'), +(14278,530,1,13998,'5.99','2005-08-20 19:52:38','2006-02-15 22:21:12'), +(14279,530,2,14707,'5.99','2005-08-21 21:06:29','2006-02-15 22:21:12'), +(14280,530,2,15066,'0.99','2005-08-22 10:49:06','2006-02-15 22:21:12'), +(14281,530,1,13561,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:12'), +(14282,531,1,233,'4.99','2005-05-26 11:43:44','2006-02-15 22:21:12'), +(14283,531,1,681,'2.99','2005-05-28 23:39:44','2006-02-15 22:21:12'), +(14284,531,2,2972,'2.99','2005-06-20 07:57:54','2006-02-15 22:21:13'), +(14285,531,2,3921,'5.99','2005-07-06 20:29:48','2006-02-15 22:21:13'), +(14286,531,1,5587,'5.99','2005-07-10 04:17:25','2006-02-15 22:21:13'), +(14287,531,2,5850,'0.99','2005-07-10 17:36:27','2006-02-15 22:21:13'), +(14288,531,2,5904,'4.99','2005-07-10 20:39:44','2006-02-15 22:21:13'), +(14289,531,1,6756,'4.99','2005-07-12 15:08:28','2006-02-15 22:21:13'), +(14290,531,1,6876,'4.99','2005-07-12 20:32:50','2006-02-15 22:21:13'), +(14291,531,2,7204,'2.99','2005-07-27 09:02:31','2006-02-15 22:21:13'), +(14292,531,1,7391,'6.99','2005-07-27 16:00:00','2006-02-15 22:21:13'), +(14293,531,2,7444,'2.99','2005-07-27 17:49:16','2006-02-15 22:21:13'), +(14294,531,2,7753,'6.99','2005-07-28 06:09:19','2006-02-15 22:21:13'), +(14295,531,2,8359,'5.99','2005-07-29 05:02:12','2006-02-15 22:21:13'), +(14296,531,2,8860,'4.99','2005-07-29 23:45:57','2006-02-15 22:21:13'), +(14297,531,2,8943,'0.99','2005-07-30 03:06:48','2006-02-15 22:21:13'), +(14298,531,2,9107,'4.99','2005-07-30 08:52:45','2006-02-15 22:21:13'), +(14299,531,2,10920,'4.99','2005-08-02 02:14:10','2006-02-15 22:21:14'), +(14300,531,1,10941,'5.99','2005-08-02 03:11:33','2006-02-15 22:21:14'), +(14301,531,2,11026,'4.99','2005-08-02 05:46:05','2006-02-15 22:21:14'), +(14302,531,1,11265,'10.99','2005-08-02 14:05:42','2006-02-15 22:21:14'), +(14303,531,1,11666,'2.99','2005-08-17 05:45:10','2006-02-15 22:21:14'), +(14304,531,1,12923,'2.99','2005-08-19 04:50:20','2006-02-15 22:21:14'), +(14305,531,2,13300,'8.99','2005-08-19 18:46:56','2006-02-15 22:21:14'), +(14306,531,2,15360,'0.99','2005-08-22 21:36:51','2006-02-15 22:21:14'), +(14307,532,1,43,'2.99','2005-05-25 05:39:25','2006-02-15 22:21:14'), +(14308,532,1,1694,'4.99','2005-06-16 12:40:23','2006-02-15 22:21:14'), +(14309,532,2,2821,'3.99','2005-06-19 20:26:52','2006-02-15 22:21:14'), +(14310,532,1,4336,'2.99','2005-07-07 18:34:36','2006-02-15 22:21:14'), +(14311,532,2,4962,'4.99','2005-07-08 23:36:13','2006-02-15 22:21:14'), +(14312,532,2,5190,'2.99','2005-07-09 10:25:24','2006-02-15 22:21:14'), +(14313,532,1,5253,'7.99','2005-07-09 13:41:17','2006-02-15 22:21:14'), +(14314,532,2,5278,'4.99','2005-07-09 14:44:23','2006-02-15 22:21:14'), +(14315,532,2,5805,'8.99','2005-07-10 15:08:41','2006-02-15 22:21:15'), +(14316,532,1,5887,'2.99','2005-07-10 19:45:47','2006-02-15 22:21:15'), +(14317,532,2,6345,'7.99','2005-07-11 20:05:18','2006-02-15 22:21:15'), +(14318,532,2,6598,'4.99','2005-07-12 07:38:25','2006-02-15 22:21:15'), +(14319,532,1,6730,'3.99','2005-07-12 13:58:25','2006-02-15 22:21:15'), +(14320,532,1,7192,'4.99','2005-07-27 08:36:55','2006-02-15 22:21:15'), +(14321,532,2,7572,'2.99','2005-07-27 22:44:29','2006-02-15 22:21:15'), +(14322,532,1,8273,'5.99','2005-07-29 01:33:16','2006-02-15 22:21:15'), +(14323,532,1,9843,'2.99','2005-07-31 12:25:28','2006-02-15 22:21:15'), +(14324,532,2,10286,'6.99','2005-08-01 03:35:58','2006-02-15 22:21:15'), +(14325,532,2,10712,'5.99','2005-08-01 18:47:56','2006-02-15 22:21:15'), +(14326,532,1,10945,'5.99','2005-08-02 03:20:23','2006-02-15 22:21:15'), +(14327,532,2,11251,'2.99','2005-08-02 13:40:49','2006-02-15 22:21:15'), +(14328,532,2,11318,'4.99','2005-08-02 16:09:11','2006-02-15 22:21:15'), +(14329,532,2,12061,'3.99','2005-08-17 21:13:35','2006-02-15 22:21:15'), +(14330,532,2,12295,'5.99','2005-08-18 05:15:46','2006-02-15 22:21:16'), +(14331,532,2,13038,'4.99','2005-08-19 08:55:16','2006-02-15 22:21:16'), +(14332,532,1,13192,'8.99','2005-08-19 14:30:06','2006-02-15 22:21:16'), +(14333,532,1,13254,'4.99','2005-08-19 16:54:01','2006-02-15 22:21:16'), +(14334,532,1,13908,'4.99','2005-08-20 16:21:40','2006-02-15 22:21:16'), +(14335,532,2,15180,'0.99','2005-08-22 15:42:57','2006-02-15 22:21:16'), +(14336,532,2,15414,'1.99','2005-08-22 23:43:54','2006-02-15 22:21:16'), +(14337,532,1,16014,'5.99','2005-08-23 21:18:31','2006-02-15 22:21:16'), +(14338,532,1,14616,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:16'), +(14339,533,1,173,'0.99','2005-05-26 03:42:10','2006-02-15 22:21:16'), +(14340,533,2,190,'1.99','2005-05-26 06:11:28','2006-02-15 22:21:16'), +(14341,533,1,615,'5.99','2005-05-28 15:35:52','2006-02-15 22:21:16'), +(14342,533,1,1421,'5.99','2005-06-15 17:57:04','2006-02-15 22:21:16'), +(14343,533,1,1652,'0.99','2005-06-16 09:31:37','2006-02-15 22:21:16'), +(14344,533,1,1859,'0.99','2005-06-17 01:13:38','2006-02-15 22:21:16'), +(14345,533,1,1954,'2.99','2005-06-17 08:37:55','2006-02-15 22:21:17'), +(14346,533,2,2770,'6.99','2005-06-19 17:54:22','2006-02-15 22:21:17'), +(14347,533,1,2956,'0.99','2005-06-20 06:47:23','2006-02-15 22:21:17'), +(14348,533,1,4112,'8.99','2005-07-07 06:49:09','2006-02-15 22:21:17'), +(14349,533,1,4788,'4.99','2005-07-08 16:17:35','2006-02-15 22:21:17'), +(14350,533,2,6781,'2.99','2005-07-12 16:21:47','2006-02-15 22:21:17'), +(14351,533,2,6834,'0.99','2005-07-12 18:53:37','2006-02-15 22:21:17'), +(14352,533,2,6837,'9.99','2005-07-12 18:59:45','2006-02-15 22:21:17'), +(14353,533,2,7555,'4.99','2005-07-27 22:17:05','2006-02-15 22:21:17'), +(14354,533,1,8093,'8.99','2005-07-28 18:29:16','2006-02-15 22:21:17'), +(14355,533,2,8104,'2.99','2005-07-28 18:59:36','2006-02-15 22:21:17'), +(14356,533,2,8250,'2.99','2005-07-29 00:49:15','2006-02-15 22:21:17'), +(14357,533,1,8471,'2.99','2005-07-29 08:32:11','2006-02-15 22:21:17'), +(14358,533,1,8676,'1.99','2005-07-29 15:59:06','2006-02-15 22:21:17'), +(14359,533,2,8786,'1.99','2005-07-29 20:39:49','2006-02-15 22:21:17'), +(14360,533,2,10090,'3.99','2005-07-31 20:22:01','2006-02-15 22:21:17'), +(14361,533,1,10380,'2.99','2005-08-01 06:34:36','2006-02-15 22:21:18'), +(14362,533,1,10614,'6.99','2005-08-01 14:57:00','2006-02-15 22:21:18'), +(14363,533,2,11524,'7.99','2005-08-17 00:10:55','2006-02-15 22:21:18'), +(14364,533,1,11758,'8.99','2005-08-17 09:33:02','2006-02-15 22:21:18'), +(14365,533,1,11918,'2.99','2005-08-17 16:08:42','2006-02-15 22:21:18'), +(14366,533,1,12602,'0.99','2005-08-18 16:49:50','2006-02-15 22:21:18'), +(14367,533,1,12655,'6.99','2005-08-18 18:57:44','2006-02-15 22:21:18'), +(14368,533,1,14263,'7.99','2005-08-21 06:08:15','2006-02-15 22:21:18'), +(14369,533,1,14800,'4.99','2005-08-22 00:46:18','2006-02-15 22:21:18'), +(14370,533,2,16006,'0.99','2005-08-23 21:01:09','2006-02-15 22:21:18'), +(14371,533,2,14018,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:18'), +(14372,534,2,304,'5.99','2005-05-26 21:21:28','2006-02-15 22:21:18'), +(14373,534,2,940,'0.99','2005-05-30 15:01:02','2006-02-15 22:21:18'), +(14374,534,1,1610,'4.99','2005-06-16 06:36:33','2006-02-15 22:21:18'), +(14375,534,1,1673,'2.99','2005-06-16 10:40:17','2006-02-15 22:21:18'), +(14376,534,1,2436,'0.99','2005-06-18 18:13:32','2006-02-15 22:21:19'), +(14377,534,2,3213,'1.99','2005-06-21 01:05:19','2006-02-15 22:21:19'), +(14378,534,1,3216,'4.99','2005-06-21 01:19:37','2006-02-15 22:21:19'), +(14379,534,1,3735,'2.99','2005-07-06 11:42:04','2006-02-15 22:21:19'), +(14380,534,2,4998,'4.99','2005-07-09 01:07:21','2006-02-15 22:21:19'), +(14381,534,2,7113,'2.99','2005-07-27 05:41:20','2006-02-15 22:21:19'), +(14382,534,1,7662,'2.99','2005-07-28 02:16:08','2006-02-15 22:21:19'), +(14383,534,2,8633,'0.99','2005-07-29 14:19:53','2006-02-15 22:21:19'), +(14384,534,1,9456,'5.99','2005-07-30 22:22:16','2006-02-15 22:21:19'), +(14385,534,2,9464,'4.99','2005-07-30 22:31:31','2006-02-15 22:21:19'), +(14386,534,2,10465,'5.99','2005-08-01 09:45:25','2006-02-15 22:21:19'), +(14387,534,2,10725,'6.99','2005-08-01 19:11:04','2006-02-15 22:21:19'), +(14388,534,1,10796,'0.99','2005-08-01 21:56:41','2006-02-15 22:21:19'), +(14389,534,2,11180,'5.99','2005-08-02 10:54:30','2006-02-15 22:21:19'), +(14390,534,2,12305,'2.99','2005-08-18 05:46:29','2006-02-15 22:21:19'), +(14391,534,1,12691,'5.99','2005-08-18 20:07:46','2006-02-15 22:21:20'), +(14392,534,2,12798,'4.99','2005-08-19 00:24:33','2006-02-15 22:21:20'), +(14393,534,2,13294,'0.99','2005-08-19 18:36:35','2006-02-15 22:21:20'), +(14394,534,2,14816,'1.99','2005-08-22 01:15:51','2006-02-15 22:21:20'), +(14395,534,1,14526,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:20'), +(14396,535,1,37,'0.99','2005-05-25 04:44:31','2006-02-15 22:21:20'), +(14397,535,2,541,'2.99','2005-05-28 06:41:58','2006-02-15 22:21:20'), +(14398,535,1,778,'3.99','2005-05-29 14:09:53','2006-02-15 22:21:20'), +(14399,535,2,959,'4.99','2005-05-30 18:07:00','2006-02-15 22:21:20'), +(14400,535,1,1712,'4.99','2005-06-16 14:25:09','2006-02-15 22:21:20'), +(14401,535,1,3228,'4.99','2005-06-21 02:20:24','2006-02-15 22:21:20'), +(14402,535,1,4331,'4.99','2005-07-07 18:22:30','2006-02-15 22:21:20'), +(14403,535,1,4718,'6.99','2005-07-08 12:32:08','2006-02-15 22:21:20'), +(14404,535,1,4743,'2.99','2005-07-08 13:42:36','2006-02-15 22:21:20'), +(14405,535,2,4914,'6.99','2005-07-08 21:30:53','2006-02-15 22:21:20'), +(14406,535,1,5588,'0.99','2005-07-10 04:21:10','2006-02-15 22:21:21'), +(14407,535,2,5890,'8.99','2005-07-10 20:00:25','2006-02-15 22:21:21'), +(14408,535,1,6504,'2.99','2005-07-12 03:19:14','2006-02-15 22:21:21'), +(14409,535,1,8395,'2.99','2005-07-29 06:03:30','2006-02-15 22:21:21'), +(14410,535,1,8645,'4.99','2005-07-29 14:47:45','2006-02-15 22:21:21'), +(14411,535,2,9440,'0.99','2005-07-30 21:40:15','2006-02-15 22:21:21'), +(14412,535,1,9524,'4.99','2005-07-31 01:01:06','2006-02-15 22:21:21'), +(14413,535,2,10322,'5.99','2005-08-01 04:44:13','2006-02-15 22:21:21'), +(14414,535,2,10353,'3.99','2005-08-01 05:46:33','2006-02-15 22:21:21'), +(14415,535,2,11736,'8.99','2005-08-17 08:40:55','2006-02-15 22:21:21'), +(14416,535,1,11855,'7.99','2005-08-17 13:43:07','2006-02-15 22:21:21'), +(14417,535,2,12168,'2.99','2005-08-18 01:03:52','2006-02-15 22:21:21'), +(14418,535,1,12233,'0.99','2005-08-18 03:16:54','2006-02-15 22:21:21'), +(14419,535,2,12673,'4.99','2005-08-18 19:21:56','2006-02-15 22:21:21'), +(14420,535,1,12732,'0.99','2005-08-18 21:57:50','2006-02-15 22:21:21'), +(14421,535,2,12750,'1.99','2005-08-18 22:32:39','2006-02-15 22:21:21'), +(14422,535,1,13631,'4.99','2005-08-20 07:07:37','2006-02-15 22:21:22'), +(14423,535,1,13852,'0.99','2005-08-20 14:45:23','2006-02-15 22:21:22'), +(14424,535,1,14522,'4.99','2005-08-21 15:01:34','2006-02-15 22:21:22'), +(14425,535,2,15075,'5.99','2005-08-22 11:04:52','2006-02-15 22:21:22'), +(14426,535,1,15287,'6.99','2005-08-22 19:19:37','2006-02-15 22:21:22'), +(14427,535,1,16017,'0.99','2005-08-23 21:27:11','2006-02-15 22:21:22'), +(14428,536,1,237,'0.99','2005-05-26 12:15:13','2006-02-15 22:21:22'), +(14429,536,1,929,'6.99','2005-05-30 12:32:39','2006-02-15 22:21:22'), +(14430,536,1,1582,'4.99','2005-06-16 04:31:57','2006-02-15 22:21:22'), +(14431,536,2,1962,'2.99','2005-06-17 09:08:58','2006-02-15 22:21:22'), +(14432,536,2,2403,'2.99','2005-06-18 16:33:22','2006-02-15 22:21:22'), +(14433,536,1,3483,'4.99','2005-07-05 23:13:51','2006-02-15 22:21:22'), +(14434,536,1,3514,'0.99','2005-07-06 00:46:54','2006-02-15 22:21:22'), +(14435,536,1,4448,'2.99','2005-07-07 23:17:12','2006-02-15 22:21:22'), +(14436,536,2,5196,'0.99','2005-07-09 10:43:34','2006-02-15 22:21:22'), +(14437,536,1,6400,'5.99','2005-07-11 22:43:44','2006-02-15 22:21:23'), +(14438,536,1,7065,'4.99','2005-07-27 03:53:43','2006-02-15 22:21:23'), +(14439,536,2,8535,'4.99','2005-07-29 10:32:33','2006-02-15 22:21:23'), +(14440,536,1,8679,'4.99','2005-07-29 16:07:47','2006-02-15 22:21:23'), +(14441,536,1,8958,'2.99','2005-07-30 03:34:26','2006-02-15 22:21:23'), +(14442,536,1,9411,'8.99','2005-07-30 20:38:22','2006-02-15 22:21:23'), +(14443,536,1,9727,'4.99','2005-07-31 08:39:13','2006-02-15 22:21:23'), +(14444,536,2,10019,'3.99','2005-07-31 18:20:56','2006-02-15 22:21:23'), +(14445,536,1,11473,'6.99','2005-08-02 21:52:03','2006-02-15 22:21:23'), +(14446,536,1,11826,'2.99','2005-08-17 12:43:46','2006-02-15 22:21:23'), +(14447,536,2,11977,'4.99','2005-08-17 18:01:15','2006-02-15 22:21:23'), +(14448,536,2,12052,'8.99','2005-08-17 20:57:02','2006-02-15 22:21:23'), +(14449,536,2,13505,'4.99','2005-08-20 02:05:57','2006-02-15 22:21:23'), +(14450,536,1,15130,'7.99','2005-08-22 13:04:32','2006-02-15 22:21:23'), +(14451,536,1,15978,'8.99','2005-08-23 20:08:18','2006-02-15 22:21:23'), +(14452,536,1,15979,'0.99','2005-08-23 20:08:26','2006-02-15 22:21:24'), +(14453,537,2,603,'4.99','2005-05-28 14:27:51','2006-02-15 22:21:24'), +(14454,537,1,1445,'2.99','2005-06-15 19:10:07','2006-02-15 22:21:24'), +(14455,537,2,2184,'2.99','2005-06-18 01:10:36','2006-02-15 22:21:24'), +(14456,537,1,2586,'8.99','2005-06-19 05:05:11','2006-02-15 22:21:24'), +(14457,537,2,3134,'8.99','2005-06-20 19:29:09','2006-02-15 22:21:24'), +(14458,537,1,3555,'0.99','2005-07-06 02:45:35','2006-02-15 22:21:24'), +(14459,537,2,3853,'0.99','2005-07-06 16:59:20','2006-02-15 22:21:24'), +(14460,537,1,5630,'2.99','2005-07-10 06:08:14','2006-02-15 22:21:24'), +(14461,537,2,5877,'5.99','2005-07-10 19:08:51','2006-02-15 22:21:24'), +(14462,537,2,6310,'2.99','2005-07-11 18:14:05','2006-02-15 22:21:24'), +(14463,537,1,6409,'4.99','2005-07-11 23:05:49','2006-02-15 22:21:24'), +(14464,537,1,6746,'0.99','2005-07-12 14:33:01','2006-02-15 22:21:24'), +(14465,537,1,7179,'2.99','2005-07-27 08:10:29','2006-02-15 22:21:24'), +(14466,537,2,7810,'4.99','2005-07-28 08:00:38','2006-02-15 22:21:24'), +(14467,537,2,8126,'4.99','2005-07-28 19:32:41','2006-02-15 22:21:25'), +(14468,537,2,8256,'4.99','2005-07-29 01:02:42','2006-02-15 22:21:25'), +(14469,537,1,9967,'2.99','2005-07-31 16:31:17','2006-02-15 22:21:25'), +(14470,537,2,12984,'4.99','2005-08-19 07:06:51','2006-02-15 22:21:25'), +(14471,537,2,13885,'4.99','2005-08-20 15:32:09','2006-02-15 22:21:25'), +(14472,537,1,14010,'4.99','2005-08-20 20:29:46','2006-02-15 22:21:25'), +(14473,537,2,14506,'0.99','2005-08-21 14:32:27','2006-02-15 22:21:25'), +(14474,537,1,14670,'0.99','2005-08-21 19:54:11','2006-02-15 22:21:25'), +(14475,537,1,15149,'2.99','2005-08-22 14:08:06','2006-02-15 22:21:25'), +(14476,537,1,15832,'8.99','2005-08-23 15:21:35','2006-02-15 22:21:25'), +(14477,537,1,13419,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:25'), +(14478,538,2,594,'2.99','2005-05-28 13:41:56','2006-02-15 22:21:25'), +(14479,538,2,734,'4.99','2005-05-29 07:38:52','2006-02-15 22:21:25'), +(14480,538,1,1314,'5.99','2005-06-15 10:21:45','2006-02-15 22:21:25'), +(14481,538,1,1912,'4.99','2005-06-17 05:18:32','2006-02-15 22:21:25'), +(14482,538,1,2682,'4.99','2005-06-19 12:18:17','2006-02-15 22:21:26'), +(14483,538,2,3189,'2.99','2005-06-20 23:19:33','2006-02-15 22:21:26'), +(14484,538,2,3554,'4.99','2005-07-06 02:37:10','2006-02-15 22:21:26'), +(14485,538,2,5135,'8.99','2005-07-09 07:53:22','2006-02-15 22:21:26'), +(14486,538,1,5369,'4.99','2005-07-09 18:42:16','2006-02-15 22:21:26'), +(14487,538,1,5486,'2.99','2005-07-09 23:57:44','2006-02-15 22:21:26'), +(14488,538,1,5898,'2.99','2005-07-10 20:18:09','2006-02-15 22:21:26'), +(14489,538,2,6130,'2.99','2005-07-11 08:19:56','2006-02-15 22:21:26'), +(14490,538,1,6332,'0.99','2005-07-11 19:19:06','2006-02-15 22:21:26'), +(14491,538,2,6936,'0.99','2005-07-26 23:13:34','2006-02-15 22:21:26'), +(14492,538,1,7694,'0.99','2005-07-28 03:39:25','2006-02-15 22:21:26'), +(14493,538,1,8765,'0.99','2005-07-29 19:40:08','2006-02-15 22:21:26'), +(14494,538,1,9307,'0.99','2005-07-30 16:52:43','2006-02-15 22:21:26'), +(14495,538,1,9643,'4.99','2005-07-31 05:35:48','2006-02-15 22:21:26'), +(14496,538,2,9897,'4.99','2005-07-31 14:11:57','2006-02-15 22:21:26'), +(14497,538,2,9939,'8.99','2005-07-31 15:29:00','2006-02-15 22:21:27'), +(14498,538,2,10701,'3.99','2005-08-01 18:28:17','2006-02-15 22:21:27'), +(14499,538,1,10732,'5.99','2005-08-01 19:25:18','2006-02-15 22:21:27'), +(14500,538,1,10962,'4.99','2005-08-02 03:48:13','2006-02-15 22:21:27'), +(14501,538,2,12089,'5.99','2005-08-17 22:20:29','2006-02-15 22:21:27'), +(14502,538,1,13544,'1.99','2005-08-20 03:44:26','2006-02-15 22:21:27'), +(14503,538,2,13770,'4.99','2005-08-20 11:45:54','2006-02-15 22:21:27'), +(14504,538,2,14572,'2.99','2005-08-21 16:44:31','2006-02-15 22:21:27'), +(14505,538,1,14591,'0.99','2005-08-21 17:30:09','2006-02-15 22:21:27'), +(14506,538,1,15343,'6.99','2005-08-22 21:01:25','2006-02-15 22:21:27'), +(14507,539,2,250,'4.99','2005-05-26 14:30:24','2006-02-15 22:21:27'), +(14508,539,1,342,'0.99','2005-05-27 04:11:04','2006-02-15 22:21:27'), +(14509,539,2,1282,'3.99','2005-06-15 08:25:33','2006-02-15 22:21:27'), +(14510,539,1,1327,'0.99','2005-06-15 11:11:39','2006-02-15 22:21:27'), +(14511,539,2,1444,'4.99','2005-06-15 19:08:16','2006-02-15 22:21:27'), +(14512,539,1,4035,'2.99','2005-07-07 02:45:02','2006-02-15 22:21:27'), +(14513,539,1,4247,'0.99','2005-07-07 13:51:54','2006-02-15 22:21:28'), +(14514,539,2,5086,'4.99','2005-07-09 05:40:04','2006-02-15 22:21:28'), +(14515,539,2,5139,'7.99','2005-07-09 08:01:51','2006-02-15 22:21:28'), +(14516,539,2,5493,'2.99','2005-07-10 00:11:44','2006-02-15 22:21:28'), +(14517,539,2,6874,'5.99','2005-07-12 20:20:53','2006-02-15 22:21:28'), +(14518,539,1,7781,'2.99','2005-07-28 07:13:20','2006-02-15 22:21:28'), +(14519,539,2,8247,'6.99','2005-07-29 00:41:38','2006-02-15 22:21:28'), +(14520,539,2,8761,'5.99','2005-07-29 19:26:47','2006-02-15 22:21:28'), +(14521,539,2,9250,'0.99','2005-07-30 14:18:16','2006-02-15 22:21:28'), +(14522,539,1,9777,'7.99','2005-07-31 10:01:06','2006-02-15 22:21:28'), +(14523,539,1,9796,'4.99','2005-07-31 10:52:43','2006-02-15 22:21:28'), +(14524,539,2,10922,'3.99','2005-08-02 02:14:40','2006-02-15 22:21:28'), +(14525,539,1,12848,'2.99','2005-08-19 02:05:11','2006-02-15 22:21:28'), +(14526,539,2,13615,'2.99','2005-08-20 06:28:53','2006-02-15 22:21:28'), +(14527,539,2,13778,'5.99','2005-08-20 12:03:44','2006-02-15 22:21:28'), +(14528,539,1,15356,'2.99','2005-08-22 21:24:19','2006-02-15 22:21:29'), +(14529,540,2,1263,'2.99','2005-06-15 06:56:39','2006-02-15 22:21:29'), +(14530,540,2,1290,'4.99','2005-06-15 08:52:44','2006-02-15 22:21:29'), +(14531,540,2,2640,'2.99','2005-06-19 09:26:13','2006-02-15 22:21:29'), +(14532,540,1,2953,'3.99','2005-06-20 06:39:11','2006-02-15 22:21:29'), +(14533,540,1,3340,'3.99','2005-06-21 10:37:23','2006-02-15 22:21:29'), +(14534,540,2,4628,'4.99','2005-07-08 08:25:52','2006-02-15 22:21:29'), +(14535,540,2,4991,'4.99','2005-07-09 00:49:03','2006-02-15 22:21:29'), +(14536,540,1,6103,'2.99','2005-07-11 06:59:55','2006-02-15 22:21:29'), +(14537,540,2,6145,'7.99','2005-07-11 09:07:01','2006-02-15 22:21:29'), +(14538,540,2,6182,'2.99','2005-07-11 11:11:38','2006-02-15 22:21:29'), +(14539,540,1,6748,'6.99','2005-07-12 14:39:27','2006-02-15 22:21:29'), +(14540,540,1,6919,'0.99','2005-07-12 22:32:17','2006-02-15 22:21:29'), +(14541,540,2,9762,'4.99','2005-07-31 09:32:54','2006-02-15 22:21:29'), +(14542,540,2,9815,'2.99','2005-07-31 11:30:51','2006-02-15 22:21:29'), +(14543,540,1,10924,'8.99','2005-08-02 02:20:19','2006-02-15 22:21:30'), +(14544,540,1,11198,'3.99','2005-08-02 11:45:15','2006-02-15 22:21:30'), +(14545,540,2,11324,'4.99','2005-08-02 16:31:17','2006-02-15 22:21:30'), +(14546,540,2,11432,'6.99','2005-08-02 20:10:01','2006-02-15 22:21:30'), +(14547,540,2,12058,'8.99','2005-08-17 21:07:41','2006-02-15 22:21:30'), +(14548,540,2,12201,'4.99','2005-08-18 02:14:06','2006-02-15 22:21:30'), +(14549,540,1,12300,'6.99','2005-08-18 05:36:14','2006-02-15 22:21:30'), +(14550,540,2,14910,'0.99','2005-08-22 04:50:52','2006-02-15 22:21:30'), +(14551,540,2,15079,'2.99','2005-08-22 11:09:56','2006-02-15 22:21:30'), +(14552,540,2,15953,'3.99','2005-08-23 19:13:46','2006-02-15 22:21:30'), +(14553,541,1,1021,'7.99','2005-05-31 03:16:15','2006-02-15 22:21:30'), +(14554,541,1,1066,'4.99','2005-05-31 09:07:33','2006-02-15 22:21:30'), +(14555,541,2,1986,'2.99','2005-06-17 10:34:59','2006-02-15 22:21:30'), +(14556,541,1,2708,'6.99','2005-06-19 13:59:05','2006-02-15 22:21:30'), +(14557,541,1,5018,'2.99','2005-07-09 02:01:05','2006-02-15 22:21:30'), +(14558,541,2,5197,'4.99','2005-07-09 10:43:54','2006-02-15 22:21:31'), +(14559,541,2,6468,'7.99','2005-07-12 01:27:09','2006-02-15 22:21:31'), +(14560,541,2,6718,'2.99','2005-07-12 13:38:06','2006-02-15 22:21:31'), +(14561,541,1,8113,'8.99','2005-07-28 19:14:00','2006-02-15 22:21:31'), +(14562,541,1,8322,'4.99','2005-07-29 03:52:49','2006-02-15 22:21:31'), +(14563,541,2,9603,'0.99','2005-07-31 03:43:43','2006-02-15 22:21:31'), +(14564,541,1,10306,'5.99','2005-08-01 04:19:18','2006-02-15 22:21:31'), +(14565,541,2,11273,'0.99','2005-08-02 14:20:55','2006-02-15 22:21:31'), +(14566,541,1,12306,'4.99','2005-08-18 05:47:55','2006-02-15 22:21:31'), +(14567,541,2,12395,'4.99','2005-08-18 09:06:30','2006-02-15 22:21:31'), +(14568,541,1,12894,'7.99','2005-08-19 03:49:28','2006-02-15 22:21:31'), +(14569,541,2,13239,'4.99','2005-08-19 16:22:13','2006-02-15 22:21:31'), +(14570,541,2,13640,'0.99','2005-08-20 07:22:53','2006-02-15 22:21:31'), +(14571,541,2,14938,'6.99','2005-08-22 05:52:39','2006-02-15 22:21:31'), +(14572,541,1,15071,'4.99','2005-08-22 10:58:43','2006-02-15 22:21:31'), +(14573,541,2,15141,'3.99','2005-08-22 13:41:49','2006-02-15 22:21:32'), +(14574,541,1,15223,'1.99','2005-08-22 17:13:39','2006-02-15 22:21:32'), +(14575,541,1,15421,'0.99','2005-08-22 23:56:37','2006-02-15 22:21:32'), +(14576,541,2,15924,'1.99','2005-08-23 18:08:59','2006-02-15 22:21:32'), +(14577,542,1,220,'4.99','2005-05-26 10:06:49','2006-02-15 22:21:32'), +(14578,542,2,376,'4.99','2005-05-27 08:58:15','2006-02-15 22:21:32'), +(14579,542,1,2610,'4.99','2005-06-19 07:16:20','2006-02-15 22:21:32'), +(14580,542,2,2957,'10.99','2005-06-20 06:53:47','2006-02-15 22:21:32'), +(14581,542,2,5293,'0.99','2005-07-09 15:17:23','2006-02-15 22:21:32'), +(14582,542,1,5477,'6.99','2005-07-09 23:43:49','2006-02-15 22:21:32'), +(14583,542,2,6077,'5.99','2005-07-11 05:06:08','2006-02-15 22:21:32'), +(14584,542,2,6325,'5.99','2005-07-11 19:06:01','2006-02-15 22:21:32'), +(14585,542,1,6887,'9.99','2005-07-12 21:00:23','2006-02-15 22:21:32'), +(14586,542,2,7672,'8.99','2005-07-28 02:49:41','2006-02-15 22:21:32'), +(14587,542,1,8533,'4.99','2005-07-29 10:29:16','2006-02-15 22:21:32'), +(14588,542,2,8544,'3.99','2005-07-29 11:02:08','2006-02-15 22:21:33'), +(14589,542,1,10280,'4.99','2005-08-01 03:27:15','2006-02-15 22:21:33'), +(14590,542,2,11583,'0.99','2005-08-17 02:08:13','2006-02-15 22:21:33'), +(14591,542,2,11903,'2.99','2005-08-17 15:37:45','2006-02-15 22:21:33'), +(14592,542,1,12819,'0.99','2005-08-19 01:05:05','2006-02-15 22:21:33'), +(14593,542,1,13447,'0.99','2005-08-20 00:09:36','2006-02-15 22:21:33'), +(14594,542,2,14982,'9.99','2005-08-22 07:20:55','2006-02-15 22:21:33'), +(14595,543,1,243,'6.99','2005-05-26 13:06:05','2006-02-15 22:21:33'), +(14596,543,2,476,'1.99','2005-05-27 22:31:36','2006-02-15 22:21:33'), +(14597,543,2,1720,'4.99','2005-06-16 15:00:14','2006-02-15 22:21:33'), +(14598,543,1,2426,'2.99','2005-06-18 17:40:44','2006-02-15 22:21:33'), +(14599,543,2,3070,'4.99','2005-06-20 14:15:39','2006-02-15 22:21:33'), +(14600,543,1,3128,'2.99','2005-06-20 18:41:47','2006-02-15 22:21:33'), +(14601,543,2,3467,'5.99','2005-06-21 22:19:25','2006-02-15 22:21:33'), +(14602,543,1,4887,'2.99','2005-07-08 19:59:14','2006-02-15 22:21:33'), +(14603,543,2,5467,'4.99','2005-07-09 23:05:47','2006-02-15 22:21:34'), +(14604,543,2,6013,'4.99','2005-07-11 02:02:03','2006-02-15 22:21:34'), +(14605,543,2,7312,'2.99','2005-07-27 13:03:14','2006-02-15 22:21:34'), +(14606,543,1,8580,'2.99','2005-07-29 12:00:27','2006-02-15 22:21:34'), +(14607,543,2,8845,'4.99','2005-07-29 23:06:13','2006-02-15 22:21:34'), +(14608,543,1,9505,'2.99','2005-07-31 00:11:19','2006-02-15 22:21:34'), +(14609,543,1,9999,'0.99','2005-07-31 17:40:53','2006-02-15 22:21:34'), +(14610,543,2,10257,'0.99','2005-08-01 02:49:43','2006-02-15 22:21:34'), +(14611,543,1,10520,'4.99','2005-08-01 11:45:58','2006-02-15 22:21:34'), +(14612,543,2,11241,'9.99','2005-08-02 13:29:24','2006-02-15 22:21:34'), +(14613,543,1,11681,'2.99','2005-08-17 06:13:30','2006-02-15 22:21:34'), +(14614,543,1,13187,'0.99','2005-08-19 14:24:48','2006-02-15 22:21:34'), +(14615,543,2,15281,'1.99','2005-08-22 19:10:26','2006-02-15 22:21:34'), +(14616,543,1,15785,'1.99','2005-08-23 13:46:27','2006-02-15 22:21:34'), +(14617,544,1,397,'2.99','2005-05-27 12:29:02','2006-02-15 22:21:34'), +(14618,544,1,864,'2.99','2005-05-30 03:27:17','2006-02-15 22:21:35'), +(14619,544,1,1248,'1.99','2005-06-15 05:33:52','2006-02-15 22:21:35'), +(14620,544,2,1434,'10.99','2005-06-15 18:30:46','2006-02-15 22:21:35'), +(14621,544,1,2373,'0.99','2005-06-18 14:37:57','2006-02-15 22:21:35'), +(14622,544,1,2395,'2.99','2005-06-18 15:45:15','2006-02-15 22:21:35'), +(14623,544,1,4395,'0.99','2005-07-07 21:13:22','2006-02-15 22:21:35'), +(14624,544,1,4703,'2.99','2005-07-08 11:44:56','2006-02-15 22:21:35'), +(14625,544,2,4847,'6.99','2005-07-08 18:29:13','2006-02-15 22:21:35'), +(14626,544,2,8566,'2.99','2005-07-29 11:35:46','2006-02-15 22:21:35'), +(14627,544,1,8937,'5.99','2005-07-30 02:53:21','2006-02-15 22:21:35'), +(14628,544,1,8963,'9.99','2005-07-30 03:46:26','2006-02-15 22:21:35'), +(14629,544,1,10735,'0.99','2005-08-01 19:29:45','2006-02-15 22:21:35'), +(14630,544,1,11401,'3.99','2005-08-02 19:05:06','2006-02-15 22:21:35'), +(14631,544,2,11766,'2.99','2005-08-17 09:58:40','2006-02-15 22:21:35'), +(14632,544,2,12640,'3.99','2005-08-18 18:14:49','2006-02-15 22:21:36'), +(14633,544,2,14142,'4.99','2005-08-21 02:07:43','2006-02-15 22:21:36'), +(14634,544,1,14498,'4.99','2005-08-21 14:10:44','2006-02-15 22:21:36'), +(14635,544,2,14651,'8.99','2005-08-21 19:31:09','2006-02-15 22:21:36'), +(14636,544,1,14981,'2.99','2005-08-22 07:19:05','2006-02-15 22:21:36'), +(14637,544,1,15219,'6.99','2005-08-22 17:00:31','2006-02-15 22:21:36'), +(14638,544,1,15605,'4.99','2005-08-23 06:48:47','2006-02-15 22:21:36'), +(14639,545,2,248,'0.99','2005-05-26 14:07:58','2006-02-15 22:21:36'), +(14640,545,2,715,'3.99','2005-05-29 04:22:41','2006-02-15 22:21:36'), +(14641,545,1,2123,'2.99','2005-06-17 20:48:30','2006-02-15 22:21:36'), +(14642,545,2,3693,'8.99','2005-07-06 09:56:09','2006-02-15 22:21:36'), +(14643,545,1,3975,'5.99','2005-07-06 23:00:09','2006-02-15 22:21:36'), +(14644,545,1,4597,'5.99','2005-07-08 06:43:42','2006-02-15 22:21:36'), +(14645,545,1,5264,'0.99','2005-07-09 14:11:28','2006-02-15 22:21:36'), +(14646,545,1,7078,'5.99','2005-07-27 04:16:37','2006-02-15 22:21:36'), +(14647,545,2,8599,'3.99','2005-07-29 12:58:52','2006-02-15 22:21:37'), +(14648,545,2,8848,'2.99','2005-07-29 23:20:58','2006-02-15 22:21:37'), +(14649,545,2,9810,'2.99','2005-07-31 11:22:41','2006-02-15 22:21:37'), +(14650,545,2,9942,'4.99','2005-07-31 15:35:43','2006-02-15 22:21:37'), +(14651,545,2,10931,'2.99','2005-08-02 02:44:59','2006-02-15 22:21:37'), +(14652,545,2,11760,'2.99','2005-08-17 09:44:22','2006-02-15 22:21:37'), +(14653,545,1,12098,'4.99','2005-08-17 22:38:31','2006-02-15 22:21:37'), +(14654,545,1,12349,'2.99','2005-08-18 07:23:42','2006-02-15 22:21:37'), +(14655,545,2,12667,'10.99','2005-08-18 19:11:45','2006-02-15 22:21:37'), +(14656,545,1,12800,'2.99','2005-08-19 00:27:11','2006-02-15 22:21:37'), +(14657,545,1,13595,'4.99','2005-08-20 05:54:27','2006-02-15 22:21:37'), +(14658,545,1,15585,'0.99','2005-08-23 05:55:22','2006-02-15 22:21:37'), +(14659,545,2,15998,'4.99','2005-08-23 20:41:09','2006-02-15 22:21:37'), +(14660,546,1,197,'5.99','2005-05-26 06:59:21','2006-02-15 22:21:37'), +(14661,546,1,482,'6.99','2005-05-27 22:53:02','2006-02-15 22:21:37'), +(14662,546,1,1181,'1.99','2005-06-15 00:42:17','2006-02-15 22:21:38'), +(14663,546,2,1403,'0.99','2005-06-15 16:31:59','2006-02-15 22:21:38'), +(14664,546,1,1787,'3.99','2005-06-16 19:30:59','2006-02-15 22:21:38'), +(14665,546,1,2361,'5.99','2005-06-18 13:19:05','2006-02-15 22:21:38'), +(14666,546,1,3738,'4.99','2005-07-06 11:50:57','2006-02-15 22:21:38'), +(14667,546,2,4664,'0.99','2005-07-08 10:01:28','2006-02-15 22:21:38'), +(14668,546,1,4734,'0.99','2005-07-08 13:12:12','2006-02-15 22:21:38'), +(14669,546,1,5629,'0.99','2005-07-10 06:02:25','2006-02-15 22:21:38'), +(14670,546,2,6758,'9.99','2005-07-12 15:13:49','2006-02-15 22:21:38'), +(14671,546,1,6786,'2.99','2005-07-12 16:32:33','2006-02-15 22:21:38'), +(14672,546,2,6910,'6.99','2005-07-12 22:11:21','2006-02-15 22:21:38'), +(14673,546,1,8532,'4.99','2005-07-29 10:26:56','2006-02-15 22:21:38'), +(14674,546,1,9087,'4.99','2005-07-30 08:19:47','2006-02-15 22:21:38'), +(14675,546,1,NULL,'3.99','2005-07-30 21:16:20','2006-02-15 22:21:38'), +(14676,546,2,9626,'1.99','2005-07-31 04:37:41','2006-02-15 22:21:38'), +(14677,546,2,10370,'0.99','2005-08-01 06:18:04','2006-02-15 22:21:39'), +(14678,546,2,11352,'5.99','2005-08-02 17:29:39','2006-02-15 22:21:39'), +(14679,546,1,11797,'4.99','2005-08-17 11:17:21','2006-02-15 22:21:39'), +(14680,546,2,12591,'2.99','2005-08-18 16:16:41','2006-02-15 22:21:39'), +(14681,546,2,13850,'5.99','2005-08-20 14:43:03','2006-02-15 22:21:39'), +(14682,546,1,14797,'4.99','2005-08-22 00:41:24','2006-02-15 22:21:39'), +(14683,546,1,14829,'2.99','2005-08-22 01:35:37','2006-02-15 22:21:39'), +(14684,546,1,14929,'3.99','2005-08-22 05:32:38','2006-02-15 22:21:39'), +(14685,546,2,15565,'4.99','2005-08-23 05:13:09','2006-02-15 22:21:39'), +(14686,547,1,306,'0.99','2005-05-26 21:31:57','2006-02-15 22:21:39'), +(14687,547,2,443,'8.99','2005-05-27 18:35:20','2006-02-15 22:21:39'), +(14688,547,2,1094,'1.99','2005-05-31 13:03:49','2006-02-15 22:21:39'), +(14689,547,2,2022,'8.99','2005-06-17 12:44:39','2006-02-15 22:21:39'), +(14690,547,2,3679,'4.99','2005-07-06 09:15:57','2006-02-15 22:21:39'), +(14691,547,1,3765,'4.99','2005-07-06 13:01:47','2006-02-15 22:21:40'), +(14692,547,2,5327,'4.99','2005-07-09 16:39:49','2006-02-15 22:21:40'), +(14693,547,2,5854,'4.99','2005-07-10 17:47:34','2006-02-15 22:21:40'), +(14694,547,1,6605,'0.99','2005-07-12 08:01:07','2006-02-15 22:21:40'), +(14695,547,2,7420,'4.99','2005-07-27 17:09:39','2006-02-15 22:21:40'), +(14696,547,2,7547,'3.99','2005-07-27 21:51:48','2006-02-15 22:21:40'), +(14697,547,1,7835,'4.99','2005-07-28 08:49:39','2006-02-15 22:21:40'), +(14698,547,1,7859,'3.99','2005-07-28 09:57:17','2006-02-15 22:21:40'), +(14699,547,1,8828,'2.99','2005-07-29 22:32:54','2006-02-15 22:21:40'), +(14700,547,1,10903,'2.99','2005-08-02 01:41:59','2006-02-15 22:21:40'), +(14701,547,1,10980,'4.99','2005-08-02 04:17:32','2006-02-15 22:21:40'), +(14702,547,2,11170,'5.99','2005-08-02 10:21:53','2006-02-15 22:21:40'), +(14703,547,2,11361,'0.99','2005-08-02 17:46:34','2006-02-15 22:21:40'), +(14704,547,1,12579,'0.99','2005-08-18 15:47:49','2006-02-15 22:21:40'), +(14705,547,2,12943,'2.99','2005-08-19 05:46:26','2006-02-15 22:21:40'), +(14706,547,2,13307,'2.99','2005-08-19 18:58:44','2006-02-15 22:21:41'), +(14707,547,1,14510,'9.99','2005-08-21 14:44:41','2006-02-15 22:21:41'), +(14708,547,2,14884,'4.99','2005-08-22 03:57:08','2006-02-15 22:21:41'), +(14709,548,2,177,'6.99','2005-05-26 04:14:29','2006-02-15 22:21:41'), +(14710,548,1,743,'4.99','2005-05-29 08:39:02','2006-02-15 22:21:41'), +(14711,548,2,872,'3.99','2005-05-30 05:03:04','2006-02-15 22:21:41'), +(14712,548,1,1326,'1.99','2005-06-15 11:07:39','2006-02-15 22:21:41'), +(14713,548,1,2280,'2.99','2005-06-18 06:46:54','2006-02-15 22:21:41'), +(14714,548,2,2978,'0.99','2005-06-20 08:25:16','2006-02-15 22:21:41'), +(14715,548,1,3686,'2.99','2005-07-06 09:37:50','2006-02-15 22:21:41'), +(14716,548,2,3777,'2.99','2005-07-06 13:36:48','2006-02-15 22:21:41'), +(14717,548,1,4155,'7.99','2005-07-07 09:00:49','2006-02-15 22:21:41'), +(14718,548,2,5138,'4.99','2005-07-09 08:00:46','2006-02-15 22:21:41'), +(14719,548,2,6490,'4.99','2005-07-12 02:28:03','2006-02-15 22:21:41'), +(14720,548,1,9614,'5.99','2005-07-31 03:59:31','2006-02-15 22:21:41'), +(14721,548,2,10318,'0.99','2005-08-01 04:36:53','2006-02-15 22:21:42'), +(14722,548,1,12860,'5.99','2005-08-19 02:24:41','2006-02-15 22:21:42'), +(14723,548,1,13691,'3.99','2005-08-20 09:07:39','2006-02-15 22:21:42'), +(14724,548,2,13730,'7.99','2005-08-20 10:17:09','2006-02-15 22:21:42'), +(14725,548,2,14188,'0.99','2005-08-21 03:32:04','2006-02-15 22:21:42'), +(14726,548,2,14723,'6.99','2005-08-21 21:52:32','2006-02-15 22:21:42'), +(14727,548,1,13584,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:42'), +(14728,549,1,6,'0.99','2005-05-24 23:08:07','2006-02-15 22:21:42'), +(14729,549,2,852,'4.99','2005-05-30 01:36:57','2006-02-15 22:21:42'), +(14730,549,1,906,'3.99','2005-05-30 10:30:38','2006-02-15 22:21:42'), +(14731,549,2,1086,'4.99','2005-05-31 11:17:37','2006-02-15 22:21:42'), +(14732,549,1,2050,'2.99','2005-06-17 15:07:30','2006-02-15 22:21:42'), +(14733,549,2,3523,'2.99','2005-07-06 01:01:38','2006-02-15 22:21:42'), +(14734,549,2,3892,'4.99','2005-07-06 18:58:58','2006-02-15 22:21:42'), +(14735,549,1,4447,'0.99','2005-07-07 23:15:28','2006-02-15 22:21:42'), +(14736,549,1,7252,'7.99','2005-07-27 10:45:28','2006-02-15 22:21:43'), +(14737,549,2,8239,'0.99','2005-07-29 00:31:39','2006-02-15 22:21:43'), +(14738,549,1,8316,'4.99','2005-07-29 03:38:49','2006-02-15 22:21:43'), +(14739,549,2,9445,'7.99','2005-07-30 21:50:42','2006-02-15 22:21:43'), +(14740,549,2,9511,'9.99','2005-07-31 00:25:05','2006-02-15 22:21:43'), +(14741,549,2,9887,'0.99','2005-07-31 14:00:32','2006-02-15 22:21:43'), +(14742,549,2,10281,'0.99','2005-08-01 03:28:33','2006-02-15 22:21:43'), +(14743,549,2,11737,'4.99','2005-08-17 08:42:08','2006-02-15 22:21:43'), +(14744,549,2,11878,'2.99','2005-08-17 14:23:52','2006-02-15 22:21:43'), +(14745,549,2,12634,'2.99','2005-08-18 17:58:14','2006-02-15 22:21:43'), +(14746,549,2,12747,'4.99','2005-08-18 22:28:22','2006-02-15 22:21:43'), +(14747,549,1,14434,'0.99','2005-08-21 11:40:46','2006-02-15 22:21:43'), +(14748,550,2,922,'7.99','2005-05-30 11:55:55','2006-02-15 22:21:43'), +(14749,550,1,1233,'6.99','2005-06-15 04:18:37','2006-02-15 22:21:43'), +(14750,550,1,1863,'3.99','2005-06-17 01:31:46','2006-02-15 22:21:43'), +(14751,550,2,1883,'4.99','2005-06-17 03:18:51','2006-02-15 22:21:44'), +(14752,550,1,3154,'2.99','2005-06-20 20:44:40','2006-02-15 22:21:44'), +(14753,550,2,3236,'9.99','2005-06-21 02:47:43','2006-02-15 22:21:44'), +(14754,550,1,3272,'10.99','2005-06-21 05:18:27','2006-02-15 22:21:44'), +(14755,550,1,3979,'4.99','2005-07-06 23:04:35','2006-02-15 22:21:44'), +(14756,550,1,5727,'4.99','2005-07-10 11:25:28','2006-02-15 22:21:44'), +(14757,550,1,6695,'2.99','2005-07-12 12:39:39','2006-02-15 22:21:44'), +(14758,550,1,7030,'0.99','2005-07-27 03:01:40','2006-02-15 22:21:44'), +(14759,550,2,7838,'2.99','2005-07-28 09:00:21','2006-02-15 22:21:44'), +(14760,550,1,8628,'6.99','2005-07-29 14:06:24','2006-02-15 22:21:44'), +(14761,550,2,8838,'2.99','2005-07-29 22:52:23','2006-02-15 22:21:44'), +(14762,550,1,8959,'8.99','2005-07-30 03:35:49','2006-02-15 22:21:44'), +(14763,550,1,9616,'2.99','2005-07-31 04:05:01','2006-02-15 22:21:44'), +(14764,550,1,9748,'0.99','2005-07-31 09:17:56','2006-02-15 22:21:44'), +(14765,550,2,10140,'4.99','2005-07-31 22:03:20','2006-02-15 22:21:44'), +(14766,550,1,11246,'2.99','2005-08-02 13:33:56','2006-02-15 22:21:45'), +(14767,550,2,11320,'0.99','2005-08-02 16:13:28','2006-02-15 22:21:45'), +(14768,550,1,11969,'4.99','2005-08-17 17:49:37','2006-02-15 22:21:45'), +(14769,550,1,12063,'2.99','2005-08-17 21:24:48','2006-02-15 22:21:45'), +(14770,550,2,12077,'4.99','2005-08-17 21:59:14','2006-02-15 22:21:45'), +(14771,550,1,13114,'10.99','2005-08-19 11:27:32','2006-02-15 22:21:45'), +(14772,550,2,14071,'2.99','2005-08-20 23:01:56','2006-02-15 22:21:45'), +(14773,550,2,14127,'4.99','2005-08-21 01:33:32','2006-02-15 22:21:45'), +(14774,550,2,14375,'6.99','2005-08-21 09:46:35','2006-02-15 22:21:45'), +(14775,550,1,14687,'4.99','2005-08-21 20:32:16','2006-02-15 22:21:45'), +(14776,550,2,15431,'9.99','2005-08-23 00:26:47','2006-02-15 22:21:45'), +(14777,550,1,15883,'0.99','2005-08-23 16:44:56','2006-02-15 22:21:45'), +(14778,550,2,15977,'4.99','2005-08-23 20:07:10','2006-02-15 22:21:45'), +(14779,550,2,11757,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:45'), +(14780,551,2,155,'7.99','2005-05-26 01:15:05','2006-02-15 22:21:45'), +(14781,551,1,728,'2.99','2005-05-29 06:12:38','2006-02-15 22:21:46'), +(14782,551,1,795,'0.99','2005-05-29 16:57:39','2006-02-15 22:21:46'), +(14783,551,2,969,'4.99','2005-05-30 19:23:48','2006-02-15 22:21:46'), +(14784,551,2,1005,'3.99','2005-05-31 00:53:25','2006-02-15 22:21:46'), +(14785,551,2,2069,'4.99','2005-06-17 16:19:39','2006-02-15 22:21:46'), +(14786,551,1,2776,'3.99','2005-06-19 18:16:24','2006-02-15 22:21:46'), +(14787,551,2,3996,'5.99','2005-07-06 23:46:43','2006-02-15 22:21:46'), +(14788,551,1,5201,'1.99','2005-07-09 10:52:53','2006-02-15 22:21:46'), +(14789,551,2,5528,'0.99','2005-07-10 02:09:21','2006-02-15 22:21:46'), +(14790,551,1,6041,'0.99','2005-07-11 03:14:58','2006-02-15 22:21:46'), +(14791,551,2,7095,'9.99','2005-07-27 04:51:15','2006-02-15 22:21:46'), +(14792,551,1,8986,'0.99','2005-07-30 04:37:20','2006-02-15 22:21:46'), +(14793,551,1,9287,'2.99','2005-07-30 15:35:39','2006-02-15 22:21:46'), +(14794,551,2,9765,'4.99','2005-07-31 09:44:40','2006-02-15 22:21:46'), +(14795,551,2,11380,'0.99','2005-08-02 18:17:32','2006-02-15 22:21:46'), +(14796,551,2,11883,'2.99','2005-08-17 14:41:28','2006-02-15 22:21:47'), +(14797,551,2,12208,'4.99','2005-08-18 02:25:25','2006-02-15 22:21:47'), +(14798,551,2,12868,'0.99','2005-08-19 02:47:19','2006-02-15 22:21:47'), +(14799,551,1,13439,'3.99','2005-08-19 23:42:16','2006-02-15 22:21:47'), +(14800,551,1,14420,'0.99','2005-08-21 11:16:15','2006-02-15 22:21:47'), +(14801,551,2,14609,'4.99','2005-08-21 17:57:26','2006-02-15 22:21:47'), +(14802,551,2,14633,'2.99','2005-08-21 18:51:10','2006-02-15 22:21:47'), +(14803,551,1,14833,'2.99','2005-08-22 01:45:18','2006-02-15 22:21:47'), +(14804,551,1,15377,'4.99','2005-08-22 22:22:33','2006-02-15 22:21:47'), +(14805,551,2,15390,'6.99','2005-08-22 22:57:25','2006-02-15 22:21:47'), +(14806,552,2,174,'0.99','2005-05-26 03:44:10','2006-02-15 22:21:47'), +(14807,552,2,2320,'0.99','2005-06-18 09:24:50','2006-02-15 22:21:47'), +(14808,552,2,3397,'4.99','2005-06-21 15:30:11','2006-02-15 22:21:47'), +(14809,552,1,4477,'6.99','2005-07-08 00:38:24','2006-02-15 22:21:47'), +(14810,552,1,5213,'7.99','2005-07-09 11:39:43','2006-02-15 22:21:48'), +(14811,552,2,6189,'4.99','2005-07-11 11:36:03','2006-02-15 22:21:48'), +(14812,552,1,7772,'2.99','2005-07-28 06:59:09','2006-02-15 22:21:48'), +(14813,552,1,8085,'2.99','2005-07-28 18:13:15','2006-02-15 22:21:48'), +(14814,552,2,8192,'2.99','2005-07-28 22:49:11','2006-02-15 22:21:48'), +(14815,552,2,8614,'5.99','2005-07-29 13:32:05','2006-02-15 22:21:48'), +(14816,552,2,8894,'4.99','2005-07-30 00:48:31','2006-02-15 22:21:48'), +(14817,552,1,9342,'8.99','2005-07-30 18:09:56','2006-02-15 22:21:48'), +(14818,552,1,11146,'1.99','2005-08-02 09:45:32','2006-02-15 22:21:48'), +(14819,552,2,11205,'4.99','2005-08-02 11:56:54','2006-02-15 22:21:48'), +(14820,552,2,11300,'7.99','2005-08-02 15:37:42','2006-02-15 22:21:48'), +(14821,552,2,12433,'4.99','2005-08-18 10:37:49','2006-02-15 22:21:48'), +(14822,552,2,12880,'2.99','2005-08-19 03:27:17','2006-02-15 22:21:48'), +(14823,552,2,13574,'2.99','2005-08-20 05:10:39','2006-02-15 22:21:48'), +(14824,552,1,13693,'0.99','2005-08-20 09:11:42','2006-02-15 22:21:48'), +(14825,552,2,14724,'4.99','2005-08-21 21:53:47','2006-02-15 22:21:49'), +(14826,552,2,15700,'2.99','2005-08-23 10:21:21','2006-02-15 22:21:49'), +(14827,553,2,789,'4.99','2005-05-29 16:17:07','2006-02-15 22:21:49'), +(14828,553,2,1862,'3.99','2005-06-17 01:29:30','2006-02-15 22:21:49'), +(14829,553,1,2460,'8.99','2005-06-18 19:54:13','2006-02-15 22:21:49'), +(14830,553,2,3103,'6.99','2005-06-20 16:58:19','2006-02-15 22:21:49'), +(14831,553,1,3495,'6.99','2005-07-05 23:50:04','2006-02-15 22:21:49'), +(14832,553,2,3793,'4.99','2005-07-06 14:32:44','2006-02-15 22:21:49'), +(14833,553,2,3859,'2.99','2005-07-06 17:18:15','2006-02-15 22:21:49'), +(14834,553,1,3890,'4.99','2005-07-06 18:58:15','2006-02-15 22:21:49'), +(14835,553,2,3891,'4.99','2005-07-06 18:58:25','2006-02-15 22:21:49'), +(14836,553,2,3942,'4.99','2005-07-06 21:21:34','2006-02-15 22:21:49'), +(14837,553,1,4257,'4.99','2005-07-07 14:18:41','2006-02-15 22:21:49'), +(14838,553,2,4662,'0.99','2005-07-08 09:58:54','2006-02-15 22:21:49'), +(14839,553,2,4845,'4.99','2005-07-08 18:28:20','2006-02-15 22:21:49'), +(14840,553,2,4941,'3.99','2005-07-08 22:39:10','2006-02-15 22:21:50'), +(14841,553,1,6069,'2.99','2005-07-11 04:44:59','2006-02-15 22:21:50'), +(14842,553,2,6657,'0.99','2005-07-12 11:11:36','2006-02-15 22:21:50'), +(14843,553,1,6812,'6.99','2005-07-12 18:03:25','2006-02-15 22:21:50'), +(14844,553,1,7890,'4.99','2005-07-28 10:43:40','2006-02-15 22:21:50'), +(14845,553,2,9272,'4.99','2005-07-30 15:05:22','2006-02-15 22:21:50'), +(14846,553,2,9601,'2.99','2005-07-31 03:42:17','2006-02-15 22:21:50'), +(14847,553,2,11710,'4.99','2005-08-17 07:29:44','2006-02-15 22:21:50'), +(14848,553,1,13972,'2.99','2005-08-20 18:52:17','2006-02-15 22:21:50'), +(14849,553,1,15042,'4.99','2005-08-22 09:47:37','2006-02-15 22:21:50'), +(14850,553,1,15506,'0.99','2005-08-23 02:48:24','2006-02-15 22:21:50'), +(14851,554,1,607,'2.99','2005-05-28 15:02:41','2006-02-15 22:21:50'), +(14852,554,1,817,'2.99','2005-05-29 20:39:14','2006-02-15 22:21:50'), +(14853,554,1,1959,'4.99','2005-06-17 08:54:10','2006-02-15 22:21:50'), +(14854,554,1,2279,'6.99','2005-06-18 06:38:22','2006-02-15 22:21:50'), +(14855,554,2,3278,'2.99','2005-06-21 05:41:30','2006-02-15 22:21:51'), +(14856,554,1,3312,'6.99','2005-06-21 08:05:32','2006-02-15 22:21:51'), +(14857,554,2,4902,'4.99','2005-07-08 20:49:30','2006-02-15 22:21:51'), +(14858,554,1,5527,'2.99','2005-07-10 02:06:01','2006-02-15 22:21:51'), +(14859,554,1,5968,'5.99','2005-07-11 00:03:11','2006-02-15 22:21:51'), +(14860,554,1,6144,'2.99','2005-07-11 09:02:53','2006-02-15 22:21:51'), +(14861,554,1,10612,'6.99','2005-08-01 14:55:31','2006-02-15 22:21:51'), +(14862,554,2,10829,'7.99','2005-08-01 23:17:06','2006-02-15 22:21:51'), +(14863,554,2,11589,'9.99','2005-08-17 02:28:22','2006-02-15 22:21:51'), +(14864,554,1,11873,'0.99','2005-08-17 14:14:39','2006-02-15 22:21:51'), +(14865,554,1,12010,'8.99','2005-08-17 19:17:54','2006-02-15 22:21:51'), +(14866,554,1,12014,'0.99','2005-08-17 19:29:44','2006-02-15 22:21:51'), +(14867,554,2,13139,'4.99','2005-08-19 12:32:10','2006-02-15 22:21:51'), +(14868,554,2,14015,'2.99','2005-08-20 20:47:43','2006-02-15 22:21:51'), +(14869,554,1,14098,'3.99','2005-08-21 00:30:32','2006-02-15 22:21:51'), +(14870,554,1,14469,'0.99','2005-08-21 13:07:24','2006-02-15 22:21:52'), +(14871,554,1,14626,'2.99','2005-08-21 18:35:44','2006-02-15 22:21:52'), +(14872,554,2,15690,'4.99','2005-08-23 09:53:30','2006-02-15 22:21:52'), +(14873,555,2,3232,'1.99','2005-06-21 02:30:37','2006-02-15 22:21:52'), +(14874,555,2,4875,'2.99','2005-07-08 19:24:17','2006-02-15 22:21:52'), +(14875,555,1,8161,'0.99','2005-07-28 21:11:00','2006-02-15 22:21:52'), +(14876,555,1,8245,'3.99','2005-07-29 00:37:09','2006-02-15 22:21:52'), +(14877,555,1,9299,'5.99','2005-07-30 16:32:51','2006-02-15 22:21:52'), +(14878,555,2,9990,'7.99','2005-07-31 17:24:21','2006-02-15 22:21:52'), +(14879,555,2,10076,'7.99','2005-07-31 20:00:34','2006-02-15 22:21:52'), +(14880,555,1,10921,'3.99','2005-08-02 02:14:33','2006-02-15 22:21:52'), +(14881,555,1,11168,'4.99','2005-08-02 10:19:42','2006-02-15 22:21:52'), +(14882,555,1,11718,'4.99','2005-08-17 07:44:42','2006-02-15 22:21:52'), +(14883,555,2,11747,'2.99','2005-08-17 09:03:31','2006-02-15 22:21:52'), +(14884,555,2,12091,'4.99','2005-08-17 22:22:50','2006-02-15 22:21:52'), +(14885,555,2,12150,'2.99','2005-08-18 00:13:55','2006-02-15 22:21:53'); +INSERT INTO payment VALUES (14886,555,2,12182,'2.99','2005-08-18 01:30:19','2006-02-15 22:21:53'), +(14887,555,1,12388,'2.99','2005-08-18 08:48:09','2006-02-15 22:21:53'), +(14888,555,1,12883,'4.99','2005-08-19 03:33:47','2006-02-15 22:21:53'), +(14889,555,2,15102,'6.99','2005-08-22 11:58:58','2006-02-15 22:21:53'), +(14890,556,1,184,'0.99','2005-05-26 05:29:49','2006-02-15 22:21:53'), +(14891,556,2,772,'5.99','2005-05-29 13:08:06','2006-02-15 22:21:53'), +(14892,556,1,1083,'3.99','2005-05-31 11:04:48','2006-02-15 22:21:53'), +(14893,556,1,2092,'6.99','2005-06-17 18:12:16','2006-02-15 22:21:53'), +(14894,556,2,2593,'5.99','2005-06-19 05:40:11','2006-02-15 22:21:53'), +(14895,556,2,2986,'0.99','2005-06-20 08:50:28','2006-02-15 22:21:53'), +(14896,556,1,3093,'4.99','2005-06-20 16:06:14','2006-02-15 22:21:53'), +(14897,556,2,3438,'6.99','2005-06-21 19:31:40','2006-02-15 22:21:53'), +(14898,556,2,4719,'2.99','2005-07-08 12:33:00','2006-02-15 22:21:53'), +(14899,556,2,4839,'3.99','2005-07-08 18:13:10','2006-02-15 22:21:54'), +(14900,556,1,4846,'0.99','2005-07-08 18:29:05','2006-02-15 22:21:54'), +(14901,556,2,5722,'0.99','2005-07-10 11:10:04','2006-02-15 22:21:54'), +(14902,556,2,6484,'2.99','2005-07-12 02:04:10','2006-02-15 22:21:54'), +(14903,556,1,8909,'5.99','2005-07-30 01:28:03','2006-02-15 22:21:54'), +(14904,556,2,10106,'4.99','2005-07-31 21:00:47','2006-02-15 22:21:54'), +(14905,556,2,10518,'6.99','2005-08-01 11:44:08','2006-02-15 22:21:54'), +(14906,556,1,11466,'1.99','2005-08-02 21:46:46','2006-02-15 22:21:54'), +(14907,556,2,11804,'3.99','2005-08-17 11:42:45','2006-02-15 22:21:54'), +(14908,556,1,12045,'4.99','2005-08-17 20:40:46','2006-02-15 22:21:54'), +(14909,556,1,14176,'2.99','2005-08-21 03:09:23','2006-02-15 22:21:54'), +(14910,556,1,15568,'2.99','2005-08-23 05:24:09','2006-02-15 22:21:54'), +(14911,557,2,467,'4.99','2005-05-27 21:10:03','2006-02-15 22:21:54'), +(14912,557,1,478,'4.99','2005-05-27 22:38:20','2006-02-15 22:21:54'), +(14913,557,1,1666,'0.99','2005-06-16 10:17:19','2006-02-15 22:21:54'), +(14914,557,2,2988,'6.99','2005-06-20 08:59:08','2006-02-15 22:21:55'), +(14915,557,1,3050,'3.99','2005-06-20 13:03:03','2006-02-15 22:21:55'), +(14916,557,1,4651,'0.99','2005-07-08 09:39:39','2006-02-15 22:21:55'), +(14917,557,1,4851,'1.99','2005-07-08 18:40:05','2006-02-15 22:21:55'), +(14918,557,1,6459,'0.99','2005-07-12 01:12:03','2006-02-15 22:21:55'), +(14919,557,2,6713,'3.99','2005-07-12 13:27:36','2006-02-15 22:21:55'), +(14920,557,2,6823,'4.99','2005-07-12 18:24:31','2006-02-15 22:21:55'), +(14921,557,2,6898,'0.99','2005-07-12 21:39:04','2006-02-15 22:21:55'), +(14922,557,1,9336,'0.99','2005-07-30 18:01:15','2006-02-15 22:21:55'), +(14923,557,1,9341,'2.99','2005-07-30 18:07:58','2006-02-15 22:21:55'), +(14924,557,2,9366,'1.99','2005-07-30 18:48:57','2006-02-15 22:21:55'), +(14925,557,2,9367,'6.99','2005-07-30 18:49:58','2006-02-15 22:21:55'), +(14926,557,1,11181,'0.99','2005-08-02 10:55:03','2006-02-15 22:21:55'), +(14927,557,1,12555,'1.99','2005-08-18 14:49:22','2006-02-15 22:21:55'), +(14928,557,1,12789,'2.99','2005-08-19 00:16:19','2006-02-15 22:21:55'), +(14929,557,1,13540,'2.99','2005-08-20 03:41:23','2006-02-15 22:21:56'), +(14930,557,2,13794,'2.99','2005-08-20 12:25:32','2006-02-15 22:21:56'), +(14931,557,2,15236,'0.99','2005-08-22 17:44:27','2006-02-15 22:21:56'), +(14932,557,2,15570,'5.99','2005-08-23 05:24:55','2006-02-15 22:21:56'), +(14933,557,2,15914,'0.99','2005-08-23 17:49:26','2006-02-15 22:21:56'), +(14934,557,1,14278,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:56'), +(14935,558,2,1967,'4.99','2005-06-17 09:19:52','2006-02-15 22:21:56'), +(14936,558,1,2411,'1.99','2005-06-18 16:55:54','2006-02-15 22:21:56'), +(14937,558,2,2544,'4.99','2005-06-19 02:16:17','2006-02-15 22:21:56'), +(14938,558,2,3016,'4.99','2005-06-20 10:55:08','2006-02-15 22:21:56'), +(14939,558,2,3451,'10.99','2005-06-21 21:10:39','2006-02-15 22:21:56'), +(14940,558,1,3731,'9.99','2005-07-06 11:33:36','2006-02-15 22:21:56'), +(14941,558,1,3954,'0.99','2005-07-06 21:57:44','2006-02-15 22:21:56'), +(14942,558,1,3990,'3.99','2005-07-06 23:32:44','2006-02-15 22:21:56'), +(14943,558,1,4192,'5.99','2005-07-07 10:57:06','2006-02-15 22:21:57'), +(14944,558,1,4932,'2.99','2005-07-08 22:17:40','2006-02-15 22:21:57'), +(14945,558,2,5375,'6.99','2005-07-09 18:52:55','2006-02-15 22:21:57'), +(14946,558,1,5492,'3.99','2005-07-10 00:11:09','2006-02-15 22:21:57'), +(14947,558,2,6278,'7.99','2005-07-11 16:20:02','2006-02-15 22:21:57'), +(14948,558,2,6479,'9.99','2005-07-12 01:49:00','2006-02-15 22:21:57'), +(14949,558,2,6742,'4.99','2005-07-12 14:25:31','2006-02-15 22:21:57'), +(14950,558,1,6757,'0.99','2005-07-12 15:09:48','2006-02-15 22:21:57'), +(14951,558,1,7424,'0.99','2005-07-27 17:14:19','2006-02-15 22:21:57'), +(14952,558,1,8523,'2.99','2005-07-29 10:18:27','2006-02-15 22:21:57'), +(14953,558,1,8858,'4.99','2005-07-29 23:44:35','2006-02-15 22:21:57'), +(14954,558,1,8889,'2.99','2005-07-30 00:39:43','2006-02-15 22:21:57'), +(14955,558,2,10707,'0.99','2005-08-01 18:41:34','2006-02-15 22:21:57'), +(14956,558,1,11268,'0.99','2005-08-02 14:10:39','2006-02-15 22:21:57'), +(14957,558,2,11567,'5.99','2005-08-17 01:28:43','2006-02-15 22:21:57'), +(14958,558,2,12040,'6.99','2005-08-17 20:29:56','2006-02-15 22:21:58'), +(14959,558,1,12194,'1.99','2005-08-18 02:04:47','2006-02-15 22:21:58'), +(14960,558,2,13566,'5.99','2005-08-20 04:45:32','2006-02-15 22:21:58'), +(14961,558,2,14235,'7.99','2005-08-21 05:08:42','2006-02-15 22:21:58'), +(14962,558,1,14286,'5.99','2005-08-21 06:53:53','2006-02-15 22:21:58'), +(14963,559,2,2576,'4.99','2005-06-19 04:34:15','2006-02-15 22:21:58'), +(14964,559,1,2706,'0.99','2005-06-19 13:56:51','2006-02-15 22:21:58'), +(14965,559,2,3046,'4.99','2005-06-20 12:42:59','2006-02-15 22:21:58'), +(14966,559,1,3370,'1.99','2005-06-21 13:27:01','2006-02-15 22:21:58'), +(14967,559,1,3674,'5.99','2005-07-06 09:03:13','2006-02-15 22:21:58'), +(14968,559,1,4120,'4.99','2005-07-07 07:07:03','2006-02-15 22:21:58'), +(14969,559,1,4370,'7.99','2005-07-07 20:05:36','2006-02-15 22:21:58'), +(14970,559,2,5396,'1.99','2005-07-09 19:42:52','2006-02-15 22:21:58'), +(14971,559,1,6201,'4.99','2005-07-11 12:18:07','2006-02-15 22:21:58'), +(14972,559,1,6915,'2.99','2005-07-12 22:28:09','2006-02-15 22:21:58'), +(14973,559,1,7169,'1.99','2005-07-27 07:51:39','2006-02-15 22:21:59'), +(14974,559,1,7680,'1.99','2005-07-28 02:59:08','2006-02-15 22:21:59'), +(14975,559,1,8631,'1.99','2005-07-29 14:08:06','2006-02-15 22:21:59'), +(14976,559,2,9134,'0.99','2005-07-30 10:00:21','2006-02-15 22:21:59'), +(14977,559,1,9877,'2.99','2005-07-31 13:41:57','2006-02-15 22:21:59'), +(14978,559,2,10146,'2.99','2005-07-31 22:17:56','2006-02-15 22:21:59'), +(14979,559,1,10377,'3.99','2005-08-01 06:28:28','2006-02-15 22:21:59'), +(14980,559,1,10669,'8.99','2005-08-01 17:03:28','2006-02-15 22:21:59'), +(14981,559,2,10876,'0.99','2005-08-02 00:31:58','2006-02-15 22:21:59'), +(14982,559,2,11136,'1.99','2005-08-02 09:22:57','2006-02-15 22:21:59'), +(14983,559,1,13234,'1.99','2005-08-19 16:17:15','2006-02-15 22:21:59'), +(14984,559,2,13248,'6.99','2005-08-19 16:47:41','2006-02-15 22:21:59'), +(14985,559,2,13322,'4.99','2005-08-19 19:43:08','2006-02-15 22:21:59'), +(14986,559,1,13845,'5.99','2005-08-20 14:31:21','2006-02-15 22:21:59'), +(14987,559,1,14342,'4.99','2005-08-21 08:39:26','2006-02-15 22:22:00'), +(14988,559,2,14622,'4.99','2005-08-21 18:25:59','2006-02-15 22:22:00'), +(14989,559,2,15440,'4.99','2005-08-23 00:37:21','2006-02-15 22:22:00'), +(14990,559,1,15877,'4.99','2005-08-23 16:33:33','2006-02-15 22:22:00'), +(14991,560,1,137,'2.99','2005-05-25 22:25:18','2006-02-15 22:22:00'), +(14992,560,1,1271,'4.99','2005-06-15 07:32:24','2006-02-15 22:22:00'), +(14993,560,2,1572,'1.99','2005-06-16 03:23:22','2006-02-15 22:22:00'), +(14994,560,1,3941,'4.99','2005-07-06 21:20:37','2006-02-15 22:22:00'), +(14995,560,1,4298,'2.99','2005-07-07 16:27:25','2006-02-15 22:22:00'), +(14996,560,2,4375,'9.99','2005-07-07 20:20:29','2006-02-15 22:22:00'), +(14997,560,1,4453,'0.99','2005-07-07 23:32:39','2006-02-15 22:22:00'), +(14998,560,2,5208,'2.99','2005-07-09 11:16:56','2006-02-15 22:22:00'), +(14999,560,1,6410,'4.99','2005-07-11 23:08:06','2006-02-15 22:22:00'), +(15000,560,1,6945,'2.99','2005-07-26 23:35:29','2006-02-15 22:22:00'), +(15001,560,2,7202,'4.99','2005-07-27 09:00:20','2006-02-15 22:22:00'), +(15002,560,1,7891,'3.99','2005-07-28 10:43:56','2006-02-15 22:22:01'), +(15003,560,1,8753,'2.99','2005-07-29 19:15:50','2006-02-15 22:22:01'), +(15004,560,2,8861,'5.99','2005-07-29 23:47:29','2006-02-15 22:22:01'), +(15005,560,2,8906,'4.99','2005-07-30 01:21:39','2006-02-15 22:22:01'), +(15006,560,1,9265,'0.99','2005-07-30 14:55:25','2006-02-15 22:22:01'), +(15007,560,2,9895,'5.99','2005-07-31 14:07:56','2006-02-15 22:22:01'), +(15008,560,2,10480,'4.99','2005-08-01 10:13:41','2006-02-15 22:22:01'), +(15009,560,1,10702,'4.99','2005-08-01 18:34:59','2006-02-15 22:22:01'), +(15010,560,1,10733,'7.99','2005-08-01 19:28:01','2006-02-15 22:22:01'), +(15011,560,1,11334,'7.99','2005-08-02 16:53:20','2006-02-15 22:22:01'), +(15012,560,1,11788,'4.99','2005-08-17 10:59:18','2006-02-15 22:22:01'), +(15013,560,2,14008,'5.99','2005-08-20 20:26:00','2006-02-15 22:22:01'), +(15014,560,1,14341,'1.99','2005-08-21 08:38:24','2006-02-15 22:22:01'), +(15015,560,2,14363,'4.99','2005-08-21 09:20:03','2006-02-15 22:22:01'), +(15016,560,1,14436,'2.99','2005-08-21 11:48:27','2006-02-15 22:22:01'), +(15017,560,2,14785,'2.99','2005-08-22 00:24:37','2006-02-15 22:22:02'), +(15018,560,1,15352,'6.99','2005-08-22 21:16:54','2006-02-15 22:22:02'), +(15019,560,2,12116,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:02'), +(15020,560,2,14425,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:02'), +(15021,561,1,902,'4.99','2005-05-30 09:53:36','2006-02-15 22:22:02'), +(15022,561,2,971,'4.99','2005-05-30 20:10:52','2006-02-15 22:22:02'), +(15023,561,2,1193,'2.99','2005-06-15 01:24:20','2006-02-15 22:22:02'), +(15024,561,2,1505,'2.99','2005-06-15 22:12:50','2006-02-15 22:22:02'), +(15025,561,2,1620,'4.99','2005-06-16 07:21:30','2006-02-15 22:22:02'), +(15026,561,1,2119,'4.99','2005-06-17 20:34:42','2006-02-15 22:22:02'), +(15027,561,1,2357,'5.99','2005-06-18 12:59:41','2006-02-15 22:22:02'), +(15028,561,1,2548,'0.99','2005-06-19 02:45:35','2006-02-15 22:22:02'), +(15029,561,1,2950,'4.99','2005-06-20 06:08:36','2006-02-15 22:22:02'), +(15030,561,1,3160,'4.99','2005-06-20 21:20:51','2006-02-15 22:22:02'), +(15031,561,1,3427,'0.99','2005-06-21 18:31:09','2006-02-15 22:22:03'), +(15032,561,2,6361,'2.99','2005-07-11 21:09:14','2006-02-15 22:22:03'), +(15033,561,1,6435,'0.99','2005-07-12 00:16:19','2006-02-15 22:22:03'), +(15034,561,1,6621,'0.99','2005-07-12 08:57:30','2006-02-15 22:22:03'), +(15035,561,1,6843,'4.99','2005-07-12 19:14:05','2006-02-15 22:22:03'), +(15036,561,1,7698,'0.99','2005-07-28 03:44:14','2006-02-15 22:22:03'), +(15037,561,1,8504,'10.99','2005-07-29 09:20:16','2006-02-15 22:22:03'), +(15038,561,2,9839,'7.99','2005-07-31 12:21:16','2006-02-15 22:22:03'), +(15039,561,2,10317,'2.99','2005-08-01 04:35:34','2006-02-15 22:22:03'), +(15040,561,1,10907,'4.99','2005-08-02 01:51:48','2006-02-15 22:22:03'), +(15041,561,1,11371,'2.99','2005-08-02 18:07:36','2006-02-15 22:22:03'), +(15042,561,2,11402,'2.99','2005-08-02 19:07:21','2006-02-15 22:22:03'), +(15043,561,2,12441,'2.99','2005-08-18 10:47:57','2006-02-15 22:22:03'), +(15044,561,2,14139,'0.99','2005-08-21 02:04:33','2006-02-15 22:22:03'), +(15045,561,1,15573,'0.99','2005-08-23 05:28:36','2006-02-15 22:22:03'), +(15046,561,1,15946,'2.99','2005-08-23 18:54:07','2006-02-15 22:22:04'), +(15047,561,1,14415,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:04'), +(15048,562,2,788,'2.99','2005-05-29 16:13:55','2006-02-15 22:22:04'), +(15049,562,1,941,'2.99','2005-05-30 15:02:25','2006-02-15 22:22:04'), +(15050,562,1,1139,'5.99','2005-05-31 19:34:52','2006-02-15 22:22:04'), +(15051,562,1,1998,'3.99','2005-06-17 11:24:57','2006-02-15 22:22:04'), +(15052,562,1,2705,'4.99','2005-06-19 13:54:30','2006-02-15 22:22:04'), +(15053,562,1,2746,'3.99','2005-06-19 16:21:40','2006-02-15 22:22:04'), +(15054,562,2,3242,'4.99','2005-06-21 02:56:24','2006-02-15 22:22:04'), +(15055,562,2,4732,'5.99','2005-07-08 13:09:45','2006-02-15 22:22:04'), +(15056,562,1,4802,'4.99','2005-07-08 16:55:17','2006-02-15 22:22:04'), +(15057,562,2,5360,'0.99','2005-07-09 18:14:03','2006-02-15 22:22:04'), +(15058,562,2,6065,'6.99','2005-07-11 04:25:51','2006-02-15 22:22:04'), +(15059,562,1,6607,'8.99','2005-07-12 08:08:50','2006-02-15 22:22:04'), +(15060,562,2,7166,'3.99','2005-07-27 07:36:56','2006-02-15 22:22:04'), +(15061,562,1,7430,'2.99','2005-07-27 17:26:14','2006-02-15 22:22:05'), +(15062,562,2,7560,'2.99','2005-07-27 22:20:17','2006-02-15 22:22:05'), +(15063,562,2,8132,'0.99','2005-07-28 19:57:31','2006-02-15 22:22:05'), +(15064,562,2,10868,'6.99','2005-08-02 00:25:15','2006-02-15 22:22:05'), +(15065,562,2,12008,'4.99','2005-08-17 19:16:18','2006-02-15 22:22:05'), +(15066,562,1,12248,'5.99','2005-08-18 03:53:18','2006-02-15 22:22:05'), +(15067,562,2,13225,'2.99','2005-08-19 15:54:33','2006-02-15 22:22:05'), +(15068,562,2,13347,'10.99','2005-08-19 20:28:48','2006-02-15 22:22:05'), +(15069,562,2,13639,'0.99','2005-08-20 07:22:07','2006-02-15 22:22:05'), +(15070,562,1,15212,'2.99','2005-08-22 16:44:26','2006-02-15 22:22:05'), +(15071,562,2,15475,'2.99','2005-08-23 01:44:43','2006-02-15 22:22:05'), +(15072,562,1,15900,'1.99','2005-08-23 17:16:30','2006-02-15 22:22:05'), +(15073,563,1,758,'4.99','2005-05-29 10:31:56','2006-02-15 22:22:05'), +(15074,563,2,773,'5.99','2005-05-29 13:18:05','2006-02-15 22:22:05'), +(15075,563,2,1545,'4.99','2005-06-16 01:31:23','2006-02-15 22:22:06'), +(15076,563,2,2573,'0.99','2005-06-19 04:23:18','2006-02-15 22:22:06'), +(15077,563,1,4106,'1.99','2005-07-07 06:33:35','2006-02-15 22:22:06'), +(15078,563,2,4436,'0.99','2005-07-07 22:52:04','2006-02-15 22:22:06'), +(15079,563,1,4565,'3.99','2005-07-08 05:12:28','2006-02-15 22:22:06'), +(15080,563,2,4629,'6.99','2005-07-08 08:31:26','2006-02-15 22:22:06'), +(15081,563,2,4711,'2.99','2005-07-08 12:06:58','2006-02-15 22:22:06'), +(15082,563,2,4776,'5.99','2005-07-08 15:44:20','2006-02-15 22:22:06'), +(15083,563,2,4808,'3.99','2005-07-08 17:02:49','2006-02-15 22:22:06'), +(15084,563,2,4825,'4.99','2005-07-08 17:43:01','2006-02-15 22:22:06'), +(15085,563,1,4883,'0.99','2005-07-08 19:46:58','2006-02-15 22:22:06'), +(15086,563,1,5406,'0.99','2005-07-09 20:13:23','2006-02-15 22:22:06'), +(15087,563,2,6326,'2.99','2005-07-11 19:06:55','2006-02-15 22:22:06'), +(15088,563,2,7612,'0.99','2005-07-28 00:11:55','2006-02-15 22:22:06'), +(15089,563,1,8262,'1.99','2005-07-29 01:11:18','2006-02-15 22:22:06'), +(15090,563,1,8610,'5.99','2005-07-29 13:25:02','2006-02-15 22:22:07'), +(15091,563,2,8632,'6.99','2005-07-29 14:11:25','2006-02-15 22:22:07'), +(15092,563,2,8812,'7.99','2005-07-29 21:47:40','2006-02-15 22:22:07'), +(15093,563,2,11829,'0.99','2005-08-17 12:52:04','2006-02-15 22:22:07'), +(15094,563,1,12039,'1.99','2005-08-17 20:29:08','2006-02-15 22:22:07'), +(15095,563,1,12202,'1.99','2005-08-18 02:14:08','2006-02-15 22:22:07'), +(15096,563,1,12832,'2.99','2005-08-19 01:41:44','2006-02-15 22:22:07'), +(15097,563,2,13863,'9.99','2005-08-20 14:57:50','2006-02-15 22:22:07'), +(15098,563,2,14592,'4.99','2005-08-21 17:30:17','2006-02-15 22:22:07'), +(15099,563,2,15507,'0.99','2005-08-23 02:48:26','2006-02-15 22:22:07'), +(15100,563,2,15638,'3.99','2005-08-23 07:54:54','2006-02-15 22:22:07'), +(15101,563,1,15850,'4.99','2005-08-23 15:45:42','2006-02-15 22:22:07'), +(15102,564,2,195,'5.99','2005-05-26 06:52:36','2006-02-15 22:22:07'), +(15103,564,1,985,'2.99','2005-05-30 22:18:35','2006-02-15 22:22:07'), +(15104,564,2,1705,'2.99','2005-06-16 13:59:42','2006-02-15 22:22:07'), +(15105,564,1,4196,'2.99','2005-07-07 11:06:33','2006-02-15 22:22:08'), +(15106,564,2,4385,'0.99','2005-07-07 20:48:38','2006-02-15 22:22:08'), +(15107,564,1,6973,'2.99','2005-07-27 00:32:04','2006-02-15 22:22:08'), +(15108,564,2,7470,'10.99','2005-07-27 19:01:03','2006-02-15 22:22:08'), +(15109,564,2,8426,'4.99','2005-07-29 07:07:48','2006-02-15 22:22:08'), +(15110,564,1,8874,'0.99','2005-07-30 00:14:45','2006-02-15 22:22:08'), +(15111,564,2,9063,'3.99','2005-07-30 07:24:34','2006-02-15 22:22:08'), +(15112,564,2,9929,'2.99','2005-07-31 15:17:24','2006-02-15 22:22:08'), +(15113,564,1,10129,'6.99','2005-07-31 21:41:35','2006-02-15 22:22:08'), +(15114,564,2,10352,'1.99','2005-08-01 05:44:36','2006-02-15 22:22:08'), +(15115,564,2,10401,'4.99','2005-08-01 07:27:09','2006-02-15 22:22:08'), +(15116,564,1,10528,'2.99','2005-08-01 11:56:22','2006-02-15 22:22:08'), +(15117,564,2,11768,'2.99','2005-08-17 10:02:29','2006-02-15 22:22:08'), +(15118,564,2,12197,'6.99','2005-08-18 02:08:58','2006-02-15 22:22:08'), +(15119,564,2,12617,'2.99','2005-08-18 17:22:48','2006-02-15 22:22:09'), +(15120,564,2,13324,'0.99','2005-08-19 19:51:00','2006-02-15 22:22:09'), +(15121,564,2,13558,'0.99','2005-08-20 04:13:17','2006-02-15 22:22:09'), +(15122,564,1,13701,'0.99','2005-08-20 09:27:05','2006-02-15 22:22:09'), +(15123,564,2,14439,'5.99','2005-08-21 11:52:41','2006-02-15 22:22:09'), +(15124,564,1,14593,'0.99','2005-08-21 17:33:18','2006-02-15 22:22:09'), +(15125,564,2,15059,'8.99','2005-08-22 10:22:00','2006-02-15 22:22:09'), +(15126,565,1,458,'6.99','2005-05-27 19:58:36','2006-02-15 22:22:09'), +(15127,565,1,1004,'0.99','2005-05-31 00:48:36','2006-02-15 22:22:09'), +(15128,565,2,1460,'4.99','2005-06-15 20:27:02','2006-02-15 22:22:09'), +(15129,565,1,2321,'5.99','2005-06-18 09:42:42','2006-02-15 22:22:09'), +(15130,565,1,3300,'5.99','2005-06-21 07:25:01','2006-02-15 22:22:09'), +(15131,565,2,3470,'0.99','2005-07-05 22:49:24','2006-02-15 22:22:09'), +(15132,565,1,3838,'2.99','2005-07-06 16:29:43','2006-02-15 22:22:09'), +(15133,565,1,4413,'2.99','2005-07-07 22:00:04','2006-02-15 22:22:09'), +(15134,565,2,5020,'0.99','2005-07-09 02:07:56','2006-02-15 22:22:10'), +(15135,565,1,5124,'4.99','2005-07-09 07:25:19','2006-02-15 22:22:10'), +(15136,565,1,6264,'2.99','2005-07-11 15:42:35','2006-02-15 22:22:10'), +(15137,565,1,6627,'2.99','2005-07-12 09:16:46','2006-02-15 22:22:10'), +(15138,565,1,6699,'0.99','2005-07-12 12:45:21','2006-02-15 22:22:10'), +(15139,565,2,7242,'5.99','2005-07-27 10:25:51','2006-02-15 22:22:10'), +(15140,565,1,9628,'2.99','2005-07-31 04:51:11','2006-02-15 22:22:10'), +(15141,565,1,10025,'5.99','2005-07-31 18:29:09','2006-02-15 22:22:10'), +(15142,565,2,10776,'10.99','2005-08-01 20:59:58','2006-02-15 22:22:10'), +(15143,565,2,10913,'3.99','2005-08-02 02:04:03','2006-02-15 22:22:10'), +(15144,565,2,11189,'6.99','2005-08-02 11:17:23','2006-02-15 22:22:10'), +(15145,565,1,11399,'3.99','2005-08-02 18:56:28','2006-02-15 22:22:10'), +(15146,565,2,11506,'4.99','2005-08-16 23:25:48','2006-02-15 22:22:10'), +(15147,565,1,11588,'3.99','2005-08-17 02:26:23','2006-02-15 22:22:10'), +(15148,565,1,11795,'2.99','2005-08-17 11:13:38','2006-02-15 22:22:10'), +(15149,565,2,12743,'5.99','2005-08-18 22:22:31','2006-02-15 22:22:11'), +(15150,565,2,13195,'4.99','2005-08-19 14:39:14','2006-02-15 22:22:11'), +(15151,565,2,13217,'4.99','2005-08-19 15:38:39','2006-02-15 22:22:11'), +(15152,565,1,13362,'0.99','2005-08-19 21:07:54','2006-02-15 22:22:11'), +(15153,565,1,13925,'8.99','2005-08-20 17:05:34','2006-02-15 22:22:11'), +(15154,565,1,15885,'2.99','2005-08-23 16:50:43','2006-02-15 22:22:11'), +(15155,566,2,234,'5.99','2005-05-26 11:47:20','2006-02-15 22:22:11'), +(15156,566,2,768,'4.99','2005-05-29 12:30:46','2006-02-15 22:22:11'), +(15157,566,1,1635,'5.99','2005-06-16 08:26:56','2006-02-15 22:22:11'), +(15158,566,2,1982,'4.99','2005-06-17 10:12:15','2006-02-15 22:22:11'), +(15159,566,1,2367,'0.99','2005-06-18 14:00:31','2006-02-15 22:22:11'), +(15160,566,1,3379,'4.99','2005-06-21 13:54:58','2006-02-15 22:22:11'), +(15161,566,2,3663,'4.99','2005-07-06 08:15:47','2006-02-15 22:22:11'), +(15162,566,1,3943,'0.99','2005-07-06 21:22:17','2006-02-15 22:22:11'), +(15163,566,1,3998,'3.99','2005-07-06 23:49:20','2006-02-15 22:22:12'), +(15164,566,1,5079,'9.99','2005-07-09 05:20:40','2006-02-15 22:22:12'), +(15165,566,2,6365,'2.99','2005-07-11 21:17:40','2006-02-15 22:22:12'), +(15166,566,1,7677,'2.99','2005-07-28 02:56:37','2006-02-15 22:22:12'), +(15167,566,2,7941,'0.99','2005-07-28 12:47:20','2006-02-15 22:22:12'), +(15168,566,2,8118,'2.99','2005-07-28 19:22:22','2006-02-15 22:22:12'), +(15169,566,1,8157,'6.99','2005-07-28 21:06:45','2006-02-15 22:22:12'), +(15170,566,1,8257,'2.99','2005-07-29 01:03:20','2006-02-15 22:22:12'), +(15171,566,2,8305,'1.99','2005-07-29 03:08:47','2006-02-15 22:22:12'), +(15172,566,2,8660,'6.99','2005-07-29 15:26:59','2006-02-15 22:22:12'), +(15173,566,1,8710,'0.99','2005-07-29 17:26:03','2006-02-15 22:22:12'), +(15174,566,1,8797,'4.99','2005-07-29 21:10:37','2006-02-15 22:22:12'), +(15175,566,2,9101,'4.99','2005-07-30 08:47:13','2006-02-15 22:22:12'), +(15176,566,2,9470,'4.99','2005-07-30 23:01:31','2006-02-15 22:22:12'), +(15177,566,1,9688,'3.99','2005-07-31 06:56:08','2006-02-15 22:22:12'), +(15178,566,2,9915,'2.99','2005-07-31 14:52:26','2006-02-15 22:22:13'), +(15179,566,2,10259,'2.99','2005-08-01 02:52:05','2006-02-15 22:22:13'), +(15180,566,2,10289,'6.99','2005-08-01 03:39:48','2006-02-15 22:22:13'), +(15181,566,2,11129,'2.99','2005-08-02 09:08:44','2006-02-15 22:22:13'), +(15182,566,1,11717,'0.99','2005-08-17 07:44:09','2006-02-15 22:22:13'), +(15183,566,1,11941,'1.99','2005-08-17 16:56:57','2006-02-15 22:22:13'), +(15184,566,2,12382,'8.99','2005-08-18 08:32:33','2006-02-15 22:22:13'), +(15185,566,2,12995,'4.99','2005-08-19 07:26:30','2006-02-15 22:22:13'), +(15186,566,2,13762,'4.99','2005-08-20 11:29:32','2006-02-15 22:22:13'), +(15187,566,1,14277,'3.99','2005-08-21 06:34:41','2006-02-15 22:22:13'), +(15188,566,1,14297,'2.99','2005-08-21 07:13:46','2006-02-15 22:22:13'), +(15189,567,2,2689,'4.99','2005-06-19 12:58:53','2006-02-15 22:22:13'), +(15190,567,1,3010,'2.99','2005-06-20 10:29:59','2006-02-15 22:22:13'), +(15191,567,1,3769,'5.99','2005-07-06 13:11:33','2006-02-15 22:22:13'), +(15192,567,2,4457,'0.99','2005-07-07 23:45:38','2006-02-15 22:22:14'), +(15193,567,2,4576,'0.99','2005-07-08 05:51:19','2006-02-15 22:22:14'), +(15194,567,1,4949,'4.99','2005-07-08 22:57:10','2006-02-15 22:22:14'), +(15195,567,2,6358,'2.99','2005-07-11 21:03:12','2006-02-15 22:22:14'), +(15196,567,2,6551,'0.99','2005-07-12 05:03:43','2006-02-15 22:22:14'), +(15197,567,2,7340,'2.99','2005-07-27 14:18:10','2006-02-15 22:22:14'), +(15198,567,1,8201,'2.99','2005-07-28 23:10:48','2006-02-15 22:22:14'), +(15199,567,1,8629,'2.99','2005-07-29 14:06:35','2006-02-15 22:22:14'), +(15200,567,1,9279,'7.99','2005-07-30 15:15:21','2006-02-15 22:22:14'), +(15201,567,1,9475,'6.99','2005-07-30 23:06:33','2006-02-15 22:22:14'), +(15202,567,2,10708,'7.99','2005-08-01 18:43:28','2006-02-15 22:22:14'), +(15203,567,2,11749,'2.99','2005-08-17 09:04:03','2006-02-15 22:22:14'), +(15204,567,1,12119,'2.99','2005-08-17 23:16:44','2006-02-15 22:22:14'), +(15205,567,2,13031,'2.99','2005-08-19 08:30:04','2006-02-15 22:22:14'), +(15206,567,2,14839,'2.99','2005-08-22 01:58:15','2006-02-15 22:22:14'), +(15207,567,2,15074,'5.99','2005-08-22 11:02:52','2006-02-15 22:22:15'), +(15208,567,2,15594,'10.99','2005-08-23 06:18:43','2006-02-15 22:22:15'), +(15209,568,2,1658,'4.99','2005-06-16 10:07:10','2006-02-15 22:22:15'), +(15210,568,2,2382,'4.99','2005-06-18 15:03:52','2006-02-15 22:22:15'), +(15211,568,2,2668,'0.99','2005-06-19 11:28:47','2006-02-15 22:22:15'), +(15212,568,1,3227,'4.99','2005-06-21 02:18:25','2006-02-15 22:22:15'), +(15213,568,2,3462,'1.99','2005-06-21 21:52:52','2006-02-15 22:22:15'), +(15214,568,1,4322,'2.99','2005-07-07 17:54:37','2006-02-15 22:22:15'), +(15215,568,2,5332,'2.99','2005-07-09 16:59:23','2006-02-15 22:22:15'), +(15216,568,1,5622,'0.99','2005-07-10 05:39:37','2006-02-15 22:22:15'), +(15217,568,1,5776,'4.99','2005-07-10 13:35:22','2006-02-15 22:22:15'), +(15218,568,2,7068,'2.99','2005-07-27 03:57:50','2006-02-15 22:22:15'), +(15219,568,2,8185,'0.99','2005-07-28 22:23:49','2006-02-15 22:22:15'), +(15220,568,2,9583,'6.99','2005-07-31 03:05:21','2006-02-15 22:22:15'), +(15221,568,1,9738,'0.99','2005-07-31 09:04:14','2006-02-15 22:22:16'), +(15222,568,1,10340,'2.99','2005-08-01 05:07:03','2006-02-15 22:22:16'), +(15223,568,2,10689,'0.99','2005-08-01 18:04:18','2006-02-15 22:22:16'), +(15224,568,2,10869,'0.99','2005-08-02 00:26:54','2006-02-15 22:22:16'), +(15225,568,1,11331,'2.99','2005-08-02 16:49:01','2006-02-15 22:22:16'), +(15226,568,1,13883,'4.99','2005-08-20 15:28:53','2006-02-15 22:22:16'), +(15227,568,2,15069,'5.99','2005-08-22 10:55:42','2006-02-15 22:22:16'), +(15228,568,1,15203,'2.99','2005-08-22 16:28:00','2006-02-15 22:22:16'), +(15229,568,2,14531,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:16'), +(15230,569,2,53,'4.99','2005-05-25 07:19:16','2006-02-15 22:22:16'), +(15231,569,1,487,'4.99','2005-05-28 00:00:30','2006-02-15 22:22:16'), +(15232,569,1,624,'4.99','2005-05-28 16:13:22','2006-02-15 22:22:16'), +(15233,569,1,647,'1.99','2005-05-28 19:22:52','2006-02-15 22:22:16'), +(15234,569,2,1037,'3.99','2005-05-31 05:22:25','2006-02-15 22:22:16'), +(15235,569,1,1463,'6.99','2005-06-15 20:37:51','2006-02-15 22:22:16'), +(15236,569,2,1668,'5.99','2005-06-16 10:19:52','2006-02-15 22:22:17'), +(15237,569,1,4204,'5.99','2005-07-07 11:24:18','2006-02-15 22:22:17'), +(15238,569,2,5003,'0.99','2005-07-09 01:19:03','2006-02-15 22:22:17'), +(15239,569,2,6046,'5.99','2005-07-11 03:21:49','2006-02-15 22:22:17'), +(15240,569,1,8910,'2.99','2005-07-30 01:29:48','2006-02-15 22:22:17'), +(15241,569,2,9220,'1.99','2005-07-30 13:17:27','2006-02-15 22:22:17'), +(15242,569,1,9399,'4.99','2005-07-30 20:14:50','2006-02-15 22:22:17'), +(15243,569,2,9960,'1.99','2005-07-31 16:05:52','2006-02-15 22:22:17'), +(15244,569,2,10192,'2.99','2005-08-01 00:33:00','2006-02-15 22:22:17'), +(15245,569,2,10884,'0.99','2005-08-02 00:47:33','2006-02-15 22:22:17'), +(15246,569,1,11030,'1.99','2005-08-02 05:51:20','2006-02-15 22:22:17'), +(15247,569,2,11255,'4.99','2005-08-02 13:44:30','2006-02-15 22:22:17'), +(15248,569,1,11354,'6.99','2005-08-02 17:35:10','2006-02-15 22:22:17'), +(15249,569,1,11946,'4.99','2005-08-17 17:05:53','2006-02-15 22:22:17'), +(15250,569,1,12157,'2.99','2005-08-18 00:33:45','2006-02-15 22:22:18'), +(15251,569,2,12308,'0.99','2005-08-18 05:48:53','2006-02-15 22:22:18'), +(15252,569,1,12568,'3.99','2005-08-18 15:15:44','2006-02-15 22:22:18'), +(15253,569,2,12958,'2.99','2005-08-19 06:19:21','2006-02-15 22:22:18'), +(15254,569,1,13287,'7.99','2005-08-19 18:28:24','2006-02-15 22:22:18'), +(15255,569,2,13554,'9.99','2005-08-20 04:08:39','2006-02-15 22:22:18'), +(15256,569,2,14207,'4.99','2005-08-21 04:08:19','2006-02-15 22:22:18'), +(15257,569,2,14400,'0.99','2005-08-21 10:33:45','2006-02-15 22:22:18'), +(15258,569,1,14896,'8.99','2005-08-22 04:20:55','2006-02-15 22:22:18'), +(15259,569,1,14959,'2.99','2005-08-22 06:30:28','2006-02-15 22:22:18'), +(15260,569,2,15617,'0.99','2005-08-23 07:07:22','2006-02-15 22:22:18'), +(15261,569,2,16025,'4.99','2005-08-23 21:48:54','2006-02-15 22:22:18'), +(15262,570,2,1060,'7.99','2005-05-31 08:21:43','2006-02-15 22:22:18'), +(15263,570,1,1259,'4.99','2005-06-15 06:37:55','2006-02-15 22:22:18'), +(15264,570,2,1417,'4.99','2005-06-15 17:45:51','2006-02-15 22:22:18'), +(15265,570,2,1804,'2.99','2005-06-16 20:33:15','2006-02-15 22:22:19'), +(15266,570,2,2008,'5.99','2005-06-17 11:48:05','2006-02-15 22:22:19'), +(15267,570,2,2031,'6.99','2005-06-17 13:14:03','2006-02-15 22:22:19'), +(15268,570,2,2261,'3.99','2005-06-18 05:46:15','2006-02-15 22:22:19'), +(15269,570,2,3138,'2.99','2005-06-20 19:43:45','2006-02-15 22:22:19'), +(15270,570,2,3984,'0.99','2005-07-06 23:22:36','2006-02-15 22:22:19'), +(15271,570,1,4069,'0.99','2005-07-07 04:35:06','2006-02-15 22:22:19'), +(15272,570,1,4698,'0.99','2005-07-08 11:19:31','2006-02-15 22:22:19'), +(15273,570,2,5638,'4.99','2005-07-10 06:32:49','2006-02-15 22:22:19'), +(15274,570,1,6253,'4.99','2005-07-11 15:07:19','2006-02-15 22:22:19'), +(15275,570,1,6556,'0.99','2005-07-12 05:10:16','2006-02-15 22:22:19'), +(15276,570,2,7174,'4.99','2005-07-27 08:00:36','2006-02-15 22:22:19'), +(15277,570,2,8735,'4.99','2005-07-29 18:28:54','2006-02-15 22:22:19'), +(15278,570,1,9385,'7.99','2005-07-30 19:25:49','2006-02-15 22:22:19'), +(15279,570,1,9398,'0.99','2005-07-30 20:09:00','2006-02-15 22:22:20'), +(15280,570,2,9432,'2.99','2005-07-30 21:26:18','2006-02-15 22:22:20'), +(15281,570,1,9766,'4.99','2005-07-31 09:46:29','2006-02-15 22:22:20'), +(15282,570,1,10004,'0.99','2005-07-31 17:51:23','2006-02-15 22:22:20'), +(15283,570,2,10168,'2.99','2005-07-31 23:25:24','2006-02-15 22:22:20'), +(15284,570,1,11098,'3.99','2005-08-02 08:06:18','2006-02-15 22:22:20'), +(15285,570,2,12042,'4.99','2005-08-17 20:36:37','2006-02-15 22:22:20'), +(15286,570,2,14768,'3.99','2005-08-21 23:44:53','2006-02-15 22:22:20'), +(15287,570,1,12716,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:20'), +(15288,571,1,228,'9.99','2005-05-26 10:54:28','2006-02-15 22:22:20'), +(15289,571,2,689,'3.99','2005-05-29 00:46:53','2006-02-15 22:22:20'), +(15290,571,1,1254,'4.99','2005-06-15 06:11:16','2006-02-15 22:22:20'), +(15291,571,2,1400,'3.99','2005-06-15 16:29:56','2006-02-15 22:22:20'), +(15292,571,1,1756,'4.99','2005-06-16 17:22:33','2006-02-15 22:22:20'), +(15293,571,2,1990,'4.99','2005-06-17 10:48:44','2006-02-15 22:22:20'), +(15294,571,1,2327,'2.99','2005-06-18 10:16:40','2006-02-15 22:22:21'), +(15295,571,1,2977,'10.99','2005-06-20 08:15:27','2006-02-15 22:22:21'), +(15296,571,2,3616,'2.99','2005-07-06 05:52:13','2006-02-15 22:22:21'), +(15297,571,1,4162,'4.99','2005-07-07 09:17:26','2006-02-15 22:22:21'), +(15298,571,2,5789,'4.99','2005-07-10 14:11:26','2006-02-15 22:22:21'), +(15299,571,2,6676,'8.99','2005-07-12 11:53:40','2006-02-15 22:22:21'), +(15300,571,1,6792,'8.99','2005-07-12 16:37:28','2006-02-15 22:22:21'), +(15301,571,1,8084,'5.99','2005-07-28 18:11:58','2006-02-15 22:22:21'), +(15302,571,1,8638,'4.99','2005-07-29 14:30:23','2006-02-15 22:22:21'), +(15303,571,2,9300,'1.99','2005-07-30 16:33:12','2006-02-15 22:22:21'), +(15304,571,1,9408,'4.99','2005-07-30 20:32:09','2006-02-15 22:22:21'), +(15305,571,1,10227,'2.99','2005-08-01 01:42:22','2006-02-15 22:22:21'), +(15306,571,2,11080,'2.99','2005-08-02 07:29:56','2006-02-15 22:22:21'), +(15307,571,2,11191,'7.99','2005-08-02 11:24:07','2006-02-15 22:22:21'), +(15308,571,1,13228,'2.99','2005-08-19 16:08:16','2006-02-15 22:22:22'), +(15309,571,2,13266,'2.99','2005-08-19 17:31:20','2006-02-15 22:22:22'), +(15310,571,1,14956,'0.99','2005-08-22 06:26:16','2006-02-15 22:22:22'), +(15311,571,1,15841,'4.99','2005-08-23 15:35:59','2006-02-15 22:22:22'), +(15312,572,2,559,'7.99','2005-05-28 08:39:02','2006-02-15 22:22:22'), +(15313,572,2,1889,'10.99','2005-06-17 04:05:12','2006-02-15 22:22:22'), +(15314,572,1,2007,'0.99','2005-06-17 11:47:17','2006-02-15 22:22:22'), +(15315,572,1,2458,'0.99','2005-06-18 19:39:05','2006-02-15 22:22:22'), +(15316,572,1,4601,'2.99','2005-07-08 06:49:10','2006-02-15 22:22:22'), +(15317,572,1,5595,'4.99','2005-07-10 04:33:45','2006-02-15 22:22:22'), +(15318,572,1,5713,'6.99','2005-07-10 10:46:15','2006-02-15 22:22:22'), +(15319,572,2,6108,'2.99','2005-07-11 07:19:24','2006-02-15 22:22:22'), +(15320,572,1,7161,'4.99','2005-07-27 07:26:32','2006-02-15 22:22:22'), +(15321,572,1,7345,'4.99','2005-07-27 14:29:53','2006-02-15 22:22:22'), +(15322,572,2,7713,'6.99','2005-07-28 04:32:14','2006-02-15 22:22:23'), +(15323,572,2,8342,'0.99','2005-07-29 04:45:05','2006-02-15 22:22:23'), +(15324,572,1,8432,'0.99','2005-07-29 07:13:33','2006-02-15 22:22:23'), +(15325,572,1,9081,'3.99','2005-07-30 08:09:58','2006-02-15 22:22:23'), +(15326,572,2,9950,'5.99','2005-07-31 15:50:22','2006-02-15 22:22:23'), +(15327,572,2,10204,'4.99','2005-08-01 00:47:39','2006-02-15 22:22:23'), +(15328,572,1,11114,'0.99','2005-08-02 08:26:45','2006-02-15 22:22:23'), +(15329,572,1,11121,'4.99','2005-08-02 08:48:31','2006-02-15 22:22:23'), +(15330,572,2,11415,'2.99','2005-08-02 19:43:38','2006-02-15 22:22:23'), +(15331,572,1,11426,'4.99','2005-08-02 20:00:09','2006-02-15 22:22:23'), +(15332,572,1,11526,'4.99','2005-08-17 00:17:38','2006-02-15 22:22:23'), +(15333,572,1,12256,'1.99','2005-08-18 04:09:39','2006-02-15 22:22:23'), +(15334,572,2,13377,'1.99','2005-08-19 21:32:23','2006-02-15 22:22:23'), +(15335,572,2,13523,'6.99','2005-08-20 02:47:03','2006-02-15 22:22:23'), +(15336,572,1,13688,'5.99','2005-08-20 08:59:38','2006-02-15 22:22:23'), +(15337,573,2,827,'2.99','2005-05-29 21:58:43','2006-02-15 22:22:24'), +(15338,573,1,1613,'4.99','2005-06-16 06:55:10','2006-02-15 22:22:24'), +(15339,573,2,2622,'5.99','2005-06-19 08:10:41','2006-02-15 22:22:24'), +(15340,573,1,2995,'1.99','2005-06-20 09:18:22','2006-02-15 22:22:24'), +(15341,573,1,3295,'7.99','2005-06-21 07:04:17','2006-02-15 22:22:24'), +(15342,573,2,3768,'0.99','2005-07-06 13:07:30','2006-02-15 22:22:24'), +(15343,573,1,3930,'2.99','2005-07-06 20:54:07','2006-02-15 22:22:24'), +(15344,573,2,4023,'4.99','2005-07-07 01:55:25','2006-02-15 22:22:24'), +(15345,573,1,4085,'0.99','2005-07-07 05:25:39','2006-02-15 22:22:24'), +(15346,573,1,4609,'0.99','2005-07-08 07:22:29','2006-02-15 22:22:24'), +(15347,573,1,4770,'2.99','2005-07-08 15:29:46','2006-02-15 22:22:24'), +(15348,573,1,5036,'5.99','2005-07-09 02:58:41','2006-02-15 22:22:24'), +(15349,573,2,5522,'9.99','2005-07-10 01:46:29','2006-02-15 22:22:24'), +(15350,573,2,5903,'2.99','2005-07-10 20:39:04','2006-02-15 22:22:24'), +(15351,573,1,6693,'7.99','2005-07-12 12:37:00','2006-02-15 22:22:25'), +(15352,573,1,8400,'4.99','2005-07-29 06:23:56','2006-02-15 22:22:25'), +(15353,573,2,9837,'10.99','2005-07-31 12:14:19','2006-02-15 22:22:25'), +(15354,573,2,9846,'4.99','2005-07-31 12:30:12','2006-02-15 22:22:25'), +(15355,573,2,9963,'2.99','2005-07-31 16:16:46','2006-02-15 22:22:25'), +(15356,573,2,9971,'5.99','2005-07-31 16:42:16','2006-02-15 22:22:25'), +(15357,573,1,10296,'0.99','2005-08-01 04:04:37','2006-02-15 22:22:25'), +(15358,573,1,10887,'2.99','2005-08-02 00:52:35','2006-02-15 22:22:25'), +(15359,573,1,11043,'0.99','2005-08-02 06:04:44','2006-02-15 22:22:25'), +(15360,573,2,11912,'5.99','2005-08-17 15:51:49','2006-02-15 22:22:25'), +(15361,573,1,12017,'1.99','2005-08-17 19:33:49','2006-02-15 22:22:25'), +(15362,573,1,12125,'1.99','2005-08-17 23:24:25','2006-02-15 22:22:25'), +(15363,573,1,12269,'6.99','2005-08-18 04:27:54','2006-02-15 22:22:25'), +(15364,573,1,12791,'0.99','2005-08-19 00:17:09','2006-02-15 22:22:25'), +(15365,573,2,13113,'2.99','2005-08-19 11:27:20','2006-02-15 22:22:25'), +(15366,574,2,433,'0.99','2005-05-27 16:40:40','2006-02-15 22:22:26'), +(15367,574,1,1559,'0.99','2005-06-16 02:35:03','2006-02-15 22:22:26'), +(15368,574,2,1636,'5.99','2005-06-16 08:28:54','2006-02-15 22:22:26'), +(15369,574,1,1817,'0.99','2005-06-16 21:20:52','2006-02-15 22:22:26'), +(15370,574,1,2632,'0.99','2005-06-19 08:51:47','2006-02-15 22:22:26'), +(15371,574,1,3220,'6.99','2005-06-21 01:46:25','2006-02-15 22:22:26'), +(15372,574,1,3583,'7.99','2005-07-06 04:10:43','2006-02-15 22:22:26'), +(15373,574,1,4004,'4.99','2005-07-07 00:20:51','2006-02-15 22:22:26'), +(15374,574,1,4212,'4.99','2005-07-07 11:53:14','2006-02-15 22:22:26'), +(15375,574,2,4890,'2.99','2005-07-08 20:05:38','2006-02-15 22:22:26'), +(15376,574,2,5010,'4.99','2005-07-09 01:33:23','2006-02-15 22:22:26'), +(15377,574,1,5076,'3.99','2005-07-09 05:13:22','2006-02-15 22:22:26'), +(15378,574,1,5077,'3.99','2005-07-09 05:18:01','2006-02-15 22:22:26'), +(15379,574,1,5640,'2.99','2005-07-10 06:38:00','2006-02-15 22:22:26'), +(15380,574,1,6523,'2.99','2005-07-12 04:14:19','2006-02-15 22:22:27'), +(15381,574,1,7093,'1.99','2005-07-27 04:47:00','2006-02-15 22:22:27'), +(15382,574,1,7134,'2.99','2005-07-27 06:33:06','2006-02-15 22:22:27'), +(15383,574,1,7964,'2.99','2005-07-28 13:49:58','2006-02-15 22:22:27'), +(15384,574,1,8303,'4.99','2005-07-29 03:05:56','2006-02-15 22:22:27'), +(15385,574,1,9589,'7.99','2005-07-31 03:13:29','2006-02-15 22:22:27'), +(15386,574,1,9759,'3.99','2005-07-31 09:25:57','2006-02-15 22:22:27'), +(15387,574,1,10347,'4.99','2005-08-01 05:20:03','2006-02-15 22:22:27'), +(15388,574,2,11775,'3.99','2005-08-17 10:25:53','2006-02-15 22:22:27'), +(15389,574,1,12462,'2.99','2005-08-18 11:28:55','2006-02-15 22:22:27'), +(15390,574,1,13589,'4.99','2005-08-20 05:47:25','2006-02-15 22:22:27'), +(15391,574,1,14076,'4.99','2005-08-20 23:20:10','2006-02-15 22:22:27'), +(15392,574,2,14941,'2.99','2005-08-22 05:58:23','2006-02-15 22:22:27'), +(15393,574,2,15214,'2.99','2005-08-22 16:53:29','2006-02-15 22:22:27'), +(15394,575,1,17,'2.99','2005-05-25 01:06:36','2006-02-15 22:22:27'), +(15395,575,1,395,'0.99','2005-05-27 11:45:49','2006-02-15 22:22:28'), +(15396,575,2,454,'4.99','2005-05-27 19:31:36','2006-02-15 22:22:28'), +(15397,575,2,769,'2.99','2005-05-29 12:51:44','2006-02-15 22:22:28'), +(15398,575,1,774,'4.99','2005-05-29 13:19:43','2006-02-15 22:22:28'), +(15399,575,2,1494,'2.99','2005-06-15 21:54:20','2006-02-15 22:22:28'), +(15400,575,1,1824,'2.99','2005-06-16 21:51:04','2006-02-15 22:22:28'), +(15401,575,2,1866,'4.99','2005-06-17 01:53:19','2006-02-15 22:22:28'), +(15402,575,1,3558,'6.99','2005-07-06 02:49:06','2006-02-15 22:22:28'), +(15403,575,2,5875,'8.99','2005-07-10 19:06:47','2006-02-15 22:22:28'), +(15404,575,2,6907,'2.99','2005-07-12 22:03:49','2006-02-15 22:22:28'), +(15405,575,1,7083,'0.99','2005-07-27 04:28:39','2006-02-15 22:22:28'), +(15406,575,1,7139,'2.99','2005-07-27 06:52:21','2006-02-15 22:22:28'), +(15407,575,2,8711,'2.99','2005-07-29 17:27:15','2006-02-15 22:22:28'), +(15408,575,2,8904,'0.99','2005-07-30 01:08:33','2006-02-15 22:22:28'), +(15409,575,2,8989,'4.99','2005-07-30 04:39:19','2006-02-15 22:22:29'), +(15410,575,1,9733,'4.99','2005-07-31 08:57:35','2006-02-15 22:22:29'), +(15411,575,1,10331,'4.99','2005-08-01 04:57:14','2006-02-15 22:22:29'), +(15412,575,2,10629,'7.99','2005-08-01 15:33:32','2006-02-15 22:22:29'), +(15413,575,1,11097,'3.99','2005-08-02 08:05:46','2006-02-15 22:22:29'), +(15414,575,1,11458,'4.99','2005-08-02 21:24:02','2006-02-15 22:22:29'), +(15415,575,1,12204,'7.99','2005-08-18 02:20:35','2006-02-15 22:22:29'), +(15416,575,2,12289,'8.99','2005-08-18 05:05:28','2006-02-15 22:22:29'), +(15417,575,2,12770,'5.99','2005-08-18 23:29:00','2006-02-15 22:22:29'), +(15418,575,2,13408,'4.99','2005-08-19 22:34:51','2006-02-15 22:22:29'), +(15419,575,2,13465,'2.99','2005-08-20 00:54:14','2006-02-15 22:22:29'), +(15420,575,2,14952,'2.99','2005-08-22 06:20:07','2006-02-15 22:22:29'), +(15421,575,2,15749,'4.99','2005-08-23 12:33:41','2006-02-15 22:22:29'), +(15422,575,2,15857,'0.99','2005-08-23 15:59:51','2006-02-15 22:22:29'), +(15423,576,2,755,'2.99','2005-05-29 10:26:29','2006-02-15 22:22:30'), +(15424,576,1,968,'0.99','2005-05-30 19:20:03','2006-02-15 22:22:30'), +(15425,576,1,1366,'4.99','2005-06-15 14:21:00','2006-02-15 22:22:30'), +(15426,576,2,1742,'2.99','2005-06-16 16:37:48','2006-02-15 22:22:30'), +(15427,576,1,2309,'0.99','2005-06-18 08:43:24','2006-02-15 22:22:30'), +(15428,576,2,2444,'8.99','2005-06-18 18:58:12','2006-02-15 22:22:30'), +(15429,576,1,2651,'3.99','2005-06-19 10:22:56','2006-02-15 22:22:30'), +(15430,576,2,2799,'4.99','2005-06-19 19:15:21','2006-02-15 22:22:30'), +(15431,576,2,3226,'6.99','2005-06-21 02:18:14','2006-02-15 22:22:30'), +(15432,576,1,3877,'4.99','2005-07-06 18:22:10','2006-02-15 22:22:30'), +(15433,576,2,3889,'0.99','2005-07-06 18:56:25','2006-02-15 22:22:30'), +(15434,576,2,3934,'4.99','2005-07-06 21:07:23','2006-02-15 22:22:30'), +(15435,576,1,4514,'4.99','2005-07-08 02:41:25','2006-02-15 22:22:30'), +(15436,576,2,5597,'3.99','2005-07-10 04:47:57','2006-02-15 22:22:30'), +(15437,576,1,5934,'4.99','2005-07-10 22:07:59','2006-02-15 22:22:30'), +(15438,576,2,7319,'1.99','2005-07-27 13:31:25','2006-02-15 22:22:31'), +(15439,576,1,7605,'3.99','2005-07-27 23:57:01','2006-02-15 22:22:31'), +(15440,576,1,8907,'4.99','2005-07-30 01:25:03','2006-02-15 22:22:31'), +(15441,576,1,9133,'5.99','2005-07-30 09:59:00','2006-02-15 22:22:31'), +(15442,576,2,9548,'5.99','2005-07-31 01:54:19','2006-02-15 22:22:31'), +(15443,576,2,9620,'8.99','2005-07-31 04:19:18','2006-02-15 22:22:31'), +(15444,576,2,9962,'0.99','2005-07-31 16:10:36','2006-02-15 22:22:31'), +(15445,576,1,9979,'2.99','2005-07-31 17:00:07','2006-02-15 22:22:31'), +(15446,576,1,10000,'2.99','2005-07-31 17:41:05','2006-02-15 22:22:31'), +(15447,576,2,10724,'3.99','2005-08-01 19:10:59','2006-02-15 22:22:31'), +(15448,576,2,12112,'5.99','2005-08-17 23:00:31','2006-02-15 22:22:31'), +(15449,576,1,12245,'4.99','2005-08-18 03:46:40','2006-02-15 22:22:31'), +(15450,576,1,13061,'4.99','2005-08-19 09:43:39','2006-02-15 22:22:31'), +(15451,576,1,13326,'4.99','2005-08-19 19:52:52','2006-02-15 22:22:31'), +(15452,576,1,14501,'4.99','2005-08-21 14:14:38','2006-02-15 22:22:32'), +(15453,576,1,14541,'0.99','2005-08-21 15:34:32','2006-02-15 22:22:32'), +(15454,576,1,15634,'0.99','2005-08-23 07:34:18','2006-02-15 22:22:32'), +(15455,576,2,11942,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:32'), +(15456,576,1,13464,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:32'), +(15457,577,2,291,'5.99','2005-05-26 20:20:47','2006-02-15 22:22:32'), +(15458,577,2,NULL,'0.99','2005-05-27 00:46:39','2006-02-15 22:22:32'), +(15459,577,2,2399,'3.99','2005-06-18 16:06:14','2006-02-15 22:22:32'), +(15460,577,2,3286,'2.99','2005-06-21 06:31:29','2006-02-15 22:22:32'), +(15461,577,2,3401,'6.99','2005-06-21 15:52:43','2006-02-15 22:22:32'), +(15462,577,2,3599,'0.99','2005-07-06 05:16:36','2006-02-15 22:22:32'), +(15463,577,1,3785,'7.99','2005-07-06 14:00:13','2006-02-15 22:22:32'), +(15464,577,1,4922,'2.99','2005-07-08 21:44:00','2006-02-15 22:22:32'), +(15465,577,1,6500,'2.99','2005-07-12 03:11:23','2006-02-15 22:22:32'), +(15466,577,2,6534,'2.99','2005-07-12 04:39:43','2006-02-15 22:22:33'), +(15467,577,2,7197,'0.99','2005-07-27 08:49:32','2006-02-15 22:22:33'), +(15468,577,1,7371,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:33'), +(15469,577,2,7876,'8.99','2005-07-28 10:24:22','2006-02-15 22:22:33'), +(15470,577,1,8043,'5.99','2005-07-28 16:45:44','2006-02-15 22:22:33'), +(15471,577,1,8060,'6.99','2005-07-28 17:10:02','2006-02-15 22:22:33'), +(15472,577,2,8671,'6.99','2005-07-29 15:49:37','2006-02-15 22:22:33'), +(15473,577,2,10323,'4.99','2005-08-01 04:44:58','2006-02-15 22:22:33'), +(15474,577,1,10487,'0.99','2005-08-01 10:26:34','2006-02-15 22:22:33'), +(15475,577,1,10782,'4.99','2005-08-01 21:23:25','2006-02-15 22:22:33'), +(15476,577,1,11054,'7.99','2005-08-02 06:33:07','2006-02-15 22:22:33'), +(15477,577,2,11464,'0.99','2005-08-02 21:42:07','2006-02-15 22:22:33'), +(15478,577,1,12664,'4.99','2005-08-18 19:10:54','2006-02-15 22:22:33'), +(15479,577,2,12671,'0.99','2005-08-18 19:19:59','2006-02-15 22:22:33'), +(15480,577,2,13200,'3.99','2005-08-19 14:55:58','2006-02-15 22:22:33'), +(15481,577,2,13500,'3.99','2005-08-20 01:54:39','2006-02-15 22:22:34'), +(15482,577,2,15480,'2.99','2005-08-23 01:57:20','2006-02-15 22:22:34'), +(15483,577,2,15873,'2.99','2005-08-23 16:27:59','2006-02-15 22:22:34'), +(15484,577,2,16003,'4.99','2005-08-23 20:47:28','2006-02-15 22:22:34'), +(15485,578,2,660,'0.99','2005-05-28 20:53:31','2006-02-15 22:22:34'), +(15486,578,2,1826,'6.99','2005-06-16 21:53:52','2006-02-15 22:22:34'), +(15487,578,2,2615,'4.99','2005-06-19 07:29:13','2006-02-15 22:22:34'), +(15488,578,1,3305,'2.99','2005-06-21 07:46:57','2006-02-15 22:22:34'), +(15489,578,2,4496,'4.99','2005-07-08 01:44:19','2006-02-15 22:22:34'), +(15490,578,1,5377,'4.99','2005-07-09 19:04:30','2006-02-15 22:22:34'), +(15491,578,1,5445,'0.99','2005-07-09 21:59:41','2006-02-15 22:22:34'), +(15492,578,2,5876,'4.99','2005-07-10 19:07:15','2006-02-15 22:22:34'), +(15493,578,1,6784,'4.99','2005-07-12 16:28:49','2006-02-15 22:22:34'), +(15494,578,1,6830,'0.99','2005-07-12 18:42:55','2006-02-15 22:22:34'), +(15495,578,2,7059,'5.99','2005-07-27 03:51:02','2006-02-15 22:22:35'), +(15496,578,1,8179,'2.99','2005-07-28 22:05:13','2006-02-15 22:22:35'), +(15497,578,1,8218,'2.99','2005-07-28 23:45:41','2006-02-15 22:22:35'), +(15498,578,2,9970,'4.99','2005-07-31 16:38:24','2006-02-15 22:22:35'), +(15499,578,1,10029,'6.99','2005-07-31 18:37:47','2006-02-15 22:22:35'), +(15500,578,2,10182,'2.99','2005-08-01 00:08:01','2006-02-15 22:22:35'), +(15501,578,1,10779,'7.99','2005-08-01 21:11:54','2006-02-15 22:22:35'), +(15502,578,1,11199,'7.99','2005-08-02 11:47:40','2006-02-15 22:22:35'), +(15503,578,2,13071,'5.99','2005-08-19 10:01:07','2006-02-15 22:22:35'), +(15504,578,2,13498,'5.99','2005-08-20 01:51:23','2006-02-15 22:22:35'), +(15505,578,2,13552,'2.99','2005-08-20 04:03:51','2006-02-15 22:22:35'), +(15506,578,1,15652,'0.99','2005-08-23 08:34:10','2006-02-15 22:22:35'), +(15507,579,2,2425,'5.99','2005-06-18 17:37:45','2006-02-15 22:22:35'), +(15508,579,1,2522,'3.99','2005-06-19 00:43:42','2006-02-15 22:22:35'), +(15509,579,1,3111,'2.99','2005-06-20 17:46:47','2006-02-15 22:22:36'), +(15510,579,1,4619,'9.99','2005-07-08 08:01:09','2006-02-15 22:22:36'), +(15511,579,1,4933,'2.99','2005-07-08 22:18:29','2006-02-15 22:22:36'), +(15512,579,1,6304,'4.99','2005-07-11 18:02:16','2006-02-15 22:22:36'), +(15513,579,2,6814,'1.99','2005-07-12 18:11:58','2006-02-15 22:22:36'), +(15514,579,2,6824,'6.99','2005-07-12 18:26:46','2006-02-15 22:22:36'), +(15515,579,2,6969,'8.99','2005-07-27 00:23:54','2006-02-15 22:22:36'), +(15516,579,2,7221,'2.99','2005-07-27 09:37:35','2006-02-15 22:22:36'), +(15517,579,1,8354,'0.99','2005-07-29 04:56:26','2006-02-15 22:22:36'), +(15518,579,1,8876,'0.99','2005-07-30 00:15:09','2006-02-15 22:22:36'), +(15519,579,1,8996,'0.99','2005-07-30 04:53:23','2006-02-15 22:22:36'), +(15520,579,2,9349,'9.99','2005-07-30 18:20:08','2006-02-15 22:22:36'), +(15521,579,2,9553,'5.99','2005-07-31 02:06:34','2006-02-15 22:22:36'), +(15522,579,2,9976,'2.99','2005-07-31 16:57:49','2006-02-15 22:22:36'), +(15523,579,2,9997,'4.99','2005-07-31 17:37:30','2006-02-15 22:22:37'), +(15524,579,1,11494,'3.99','2005-08-02 22:51:23','2006-02-15 22:22:37'), +(15525,579,2,12051,'6.99','2005-08-17 20:56:15','2006-02-15 22:22:37'), +(15526,579,2,12315,'5.99','2005-08-18 06:15:06','2006-02-15 22:22:37'), +(15527,579,2,14047,'2.99','2005-08-20 22:00:43','2006-02-15 22:22:37'), +(15528,579,1,14185,'0.99','2005-08-21 03:28:37','2006-02-15 22:22:37'), +(15529,579,1,14543,'1.99','2005-08-21 15:39:01','2006-02-15 22:22:37'), +(15530,579,2,14560,'2.99','2005-08-21 16:13:47','2006-02-15 22:22:37'), +(15531,579,2,15601,'0.99','2005-08-23 06:33:26','2006-02-15 22:22:37'), +(15532,579,1,15838,'4.99','2005-08-23 15:30:48','2006-02-15 22:22:37'), +(15533,579,2,15794,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:37'), +(15534,580,1,611,'0.99','2005-05-28 15:18:18','2006-02-15 22:22:37'), +(15535,580,1,1469,'0.99','2005-06-15 20:52:36','2006-02-15 22:22:37'), +(15536,580,2,3571,'1.99','2005-07-06 03:32:31','2006-02-15 22:22:37'), +(15537,580,2,3867,'1.99','2005-07-06 17:52:19','2006-02-15 22:22:38'), +(15538,580,2,4169,'1.99','2005-07-07 09:39:18','2006-02-15 22:22:38'), +(15539,580,2,4590,'3.99','2005-07-08 06:27:48','2006-02-15 22:22:38'), +(15540,580,1,5937,'6.99','2005-07-10 22:16:08','2006-02-15 22:22:38'), +(15541,580,1,6089,'2.99','2005-07-11 05:45:59','2006-02-15 22:22:38'), +(15542,580,2,6170,'2.99','2005-07-11 10:29:21','2006-02-15 22:22:38'), +(15543,580,1,7620,'0.99','2005-07-28 00:27:17','2006-02-15 22:22:38'), +(15544,580,2,8784,'4.99','2005-07-29 20:35:37','2006-02-15 22:22:38'), +(15545,580,1,8839,'3.99','2005-07-29 22:52:34','2006-02-15 22:22:38'), +(15546,580,1,9199,'0.99','2005-07-30 12:38:00','2006-02-15 22:22:38'), +(15547,580,1,9239,'3.99','2005-07-30 13:50:52','2006-02-15 22:22:38'), +(15548,580,1,9460,'5.99','2005-07-30 22:25:39','2006-02-15 22:22:38'), +(15549,580,2,9604,'4.99','2005-07-31 03:47:12','2006-02-15 22:22:38'), +(15550,580,2,9865,'0.99','2005-07-31 13:10:45','2006-02-15 22:22:38'), +(15551,580,1,10723,'3.99','2005-08-01 19:10:49','2006-02-15 22:22:38'), +(15552,580,2,10965,'3.99','2005-08-02 04:00:19','2006-02-15 22:22:39'), +(15553,580,1,11164,'8.99','2005-08-02 10:10:56','2006-02-15 22:22:39'), +(15554,580,2,12670,'2.99','2005-08-18 19:17:58','2006-02-15 22:22:39'), +(15555,580,2,13313,'2.99','2005-08-19 19:11:41','2006-02-15 22:22:39'), +(15556,580,2,13742,'2.99','2005-08-20 10:49:15','2006-02-15 22:22:39'), +(15557,580,2,14818,'2.99','2005-08-22 01:17:18','2006-02-15 22:22:39'), +(15558,580,1,15157,'6.99','2005-08-22 14:30:09','2006-02-15 22:22:39'), +(15559,580,1,15630,'6.99','2005-08-23 07:29:13','2006-02-15 22:22:39'), +(15560,580,1,15947,'4.99','2005-08-23 18:54:32','2006-02-15 22:22:39'), +(15561,581,1,976,'4.99','2005-05-30 21:11:19','2006-02-15 22:22:39'), +(15562,581,1,1151,'4.99','2005-05-31 21:29:00','2006-02-15 22:22:39'), +(15563,581,2,1958,'3.99','2005-06-17 08:52:01','2006-02-15 22:22:39'), +(15564,581,2,2101,'2.99','2005-06-17 18:57:02','2006-02-15 22:22:39'), +(15565,581,1,2137,'4.99','2005-06-17 21:18:28','2006-02-15 22:22:39'), +(15566,581,2,4210,'2.99','2005-07-07 11:36:20','2006-02-15 22:22:40'), +(15567,581,2,4244,'2.99','2005-07-07 13:41:58','2006-02-15 22:22:40'), +(15568,581,1,4338,'4.99','2005-07-07 18:39:56','2006-02-15 22:22:40'), +(15569,581,2,4613,'0.99','2005-07-08 07:44:49','2006-02-15 22:22:40'), +(15570,581,1,4669,'5.99','2005-07-08 10:13:08','2006-02-15 22:22:40'), +(15571,581,1,4815,'8.99','2005-07-08 17:12:51','2006-02-15 22:22:40'), +(15572,581,1,4833,'1.99','2005-07-08 18:07:35','2006-02-15 22:22:40'), +(15573,581,1,5516,'4.99','2005-07-10 01:13:52','2006-02-15 22:22:40'), +(15574,581,1,5707,'4.99','2005-07-10 10:26:14','2006-02-15 22:22:40'), +(15575,581,2,5812,'2.99','2005-07-10 15:27:56','2006-02-15 22:22:40'), +(15576,581,2,7048,'7.99','2005-07-27 03:31:48','2006-02-15 22:22:40'), +(15577,581,1,7783,'2.99','2005-07-28 07:14:43','2006-02-15 22:22:40'), +(15578,581,1,9278,'2.99','2005-07-30 15:15:19','2006-02-15 22:22:40'), +(15579,581,1,9449,'1.99','2005-07-30 22:02:34','2006-02-15 22:22:40'), +(15580,581,2,11443,'2.99','2005-08-02 20:29:30','2006-02-15 22:22:41'), +(15581,581,2,11707,'2.99','2005-08-17 07:24:59','2006-02-15 22:22:41'), +(15582,581,2,13621,'0.99','2005-08-20 06:43:44','2006-02-15 22:22:41'), +(15583,581,2,13712,'2.99','2005-08-20 09:38:04','2006-02-15 22:22:41'), +(15584,581,2,14070,'8.99','2005-08-20 22:56:34','2006-02-15 22:22:41'), +(15585,581,1,14976,'2.99','2005-08-22 07:10:26','2006-02-15 22:22:41'), +(15586,581,1,15403,'0.99','2005-08-22 23:18:10','2006-02-15 22:22:41'), +(15587,581,2,15792,'4.99','2005-08-23 14:05:37','2006-02-15 22:22:41'), +(15588,582,1,281,'0.99','2005-05-26 18:49:35','2006-02-15 22:22:41'), +(15589,582,1,1719,'2.99','2005-06-16 14:55:53','2006-02-15 22:22:41'), +(15590,582,1,2337,'7.99','2005-06-18 11:15:27','2006-02-15 22:22:41'), +(15591,582,2,3071,'0.99','2005-06-20 14:20:42','2006-02-15 22:22:41'), +(15592,582,1,3767,'0.99','2005-07-06 13:07:27','2006-02-15 22:22:41'), +(15593,582,2,6629,'5.99','2005-07-12 09:18:35','2006-02-15 22:22:41'), +(15594,582,2,7126,'4.99','2005-07-27 06:13:13','2006-02-15 22:22:42'), +(15595,582,2,7311,'6.99','2005-07-27 13:02:54','2006-02-15 22:22:42'), +(15596,582,2,7412,'5.99','2005-07-27 16:44:34','2006-02-15 22:22:42'), +(15597,582,1,7575,'2.99','2005-07-27 22:53:52','2006-02-15 22:22:42'), +(15598,582,2,8308,'5.99','2005-07-29 03:22:15','2006-02-15 22:22:42'), +(15599,582,1,8554,'2.99','2005-07-29 11:16:29','2006-02-15 22:22:42'), +(15600,582,1,8778,'6.99','2005-07-29 20:14:25','2006-02-15 22:22:42'), +(15601,582,1,9768,'9.99','2005-07-31 09:48:41','2006-02-15 22:22:42'), +(15602,582,2,11290,'7.99','2005-08-02 14:57:44','2006-02-15 22:22:42'), +(15603,582,1,11667,'5.99','2005-08-17 05:46:55','2006-02-15 22:22:42'), +(15604,582,1,11708,'2.99','2005-08-17 07:26:47','2006-02-15 22:22:42'), +(15605,582,2,13815,'5.99','2005-08-20 13:08:53','2006-02-15 22:22:42'), +(15606,582,1,14376,'4.99','2005-08-21 09:48:56','2006-02-15 22:22:42'), +(15607,582,1,14568,'0.99','2005-08-21 16:30:48','2006-02-15 22:22:42'), +(15608,582,1,15090,'5.99','2005-08-22 11:34:33','2006-02-15 22:22:43'), +(15609,582,1,15503,'2.99','2005-08-23 02:44:49','2006-02-15 22:22:43'), +(15610,582,1,15539,'0.99','2005-08-23 04:09:03','2006-02-15 22:22:43'), +(15611,582,2,15911,'4.99','2005-08-23 17:44:53','2006-02-15 22:22:43'), +(15612,582,2,12127,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:43'), +(15613,583,1,1428,'3.99','2005-06-15 18:19:30','2006-02-15 22:22:43'), +(15614,583,1,2429,'9.99','2005-06-18 17:48:28','2006-02-15 22:22:43'), +(15615,583,2,2663,'4.99','2005-06-19 10:54:00','2006-02-15 22:22:43'), +(15616,583,2,2845,'5.99','2005-06-19 22:46:37','2006-02-15 22:22:43'), +(15617,583,2,2879,'3.99','2005-06-20 01:24:10','2006-02-15 22:22:43'), +(15618,583,1,3424,'0.99','2005-06-21 17:42:51','2006-02-15 22:22:43'), +(15619,583,1,3779,'2.99','2005-07-06 13:46:36','2006-02-15 22:22:43'), +(15620,583,1,3842,'4.99','2005-07-06 16:34:32','2006-02-15 22:22:43'), +(15621,583,2,3991,'9.99','2005-07-06 23:33:41','2006-02-15 22:22:43'), +(15622,583,1,4464,'4.99','2005-07-08 00:07:18','2006-02-15 22:22:43'), +(15623,583,1,5462,'0.99','2005-07-09 22:56:53','2006-02-15 22:22:44'), +(15624,583,1,5478,'5.99','2005-07-09 23:45:15','2006-02-15 22:22:44'), +(15625,583,2,5747,'7.99','2005-07-10 12:15:33','2006-02-15 22:22:44'), +(15626,583,2,6684,'6.99','2005-07-12 12:14:42','2006-02-15 22:22:44'), +(15627,583,1,7401,'5.99','2005-07-27 16:17:55','2006-02-15 22:22:44'), +(15628,583,2,8568,'7.99','2005-07-29 11:38:22','2006-02-15 22:22:44'), +(15629,583,1,9550,'7.99','2005-07-31 01:57:34','2006-02-15 22:22:44'), +(15630,583,2,9808,'1.99','2005-07-31 11:17:22','2006-02-15 22:22:44'), +(15631,583,2,10301,'4.99','2005-08-01 04:09:37','2006-02-15 22:22:44'), +(15632,583,2,10586,'2.99','2005-08-01 14:00:59','2006-02-15 22:22:44'), +(15633,583,2,10800,'4.99','2005-08-01 22:07:44','2006-02-15 22:22:44'), +(15634,583,2,11002,'4.99','2005-08-02 05:02:56','2006-02-15 22:22:44'), +(15635,583,1,14259,'0.99','2005-08-21 06:00:22','2006-02-15 22:22:44'), +(15636,584,2,379,'4.99','2005-05-27 09:25:32','2006-02-15 22:22:44'), +(15637,584,1,626,'4.99','2005-05-28 16:58:09','2006-02-15 22:22:45'), +(15638,584,1,920,'4.99','2005-05-30 11:44:01','2006-02-15 22:22:45'), +(15639,584,2,1436,'3.99','2005-06-15 18:35:40','2006-02-15 22:22:45'), +(15640,584,2,3317,'6.99','2005-06-21 08:22:32','2006-02-15 22:22:45'), +(15641,584,2,3741,'2.99','2005-07-06 12:00:18','2006-02-15 22:22:45'), +(15642,584,2,3895,'7.99','2005-07-06 19:04:24','2006-02-15 22:22:45'), +(15643,584,1,4410,'0.99','2005-07-07 21:48:16','2006-02-15 22:22:45'), +(15644,584,1,4977,'0.99','2005-07-09 00:15:50','2006-02-15 22:22:45'), +(15645,584,2,6954,'0.99','2005-07-26 23:55:13','2006-02-15 22:22:45'), +(15646,584,1,7186,'2.99','2005-07-27 08:26:12','2006-02-15 22:22:45'), +(15647,584,1,7372,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:45'), +(15648,584,1,7659,'4.99','2005-07-28 02:09:45','2006-02-15 22:22:45'), +(15649,584,2,8879,'4.99','2005-07-30 00:16:02','2006-02-15 22:22:45'), +(15650,584,2,9451,'3.99','2005-07-30 22:10:17','2006-02-15 22:22:45'), +(15651,584,1,9719,'5.99','2005-07-31 08:25:13','2006-02-15 22:22:46'), +(15652,584,2,10073,'2.99','2005-07-31 19:53:15','2006-02-15 22:22:46'), +(15653,584,1,10914,'4.99','2005-08-02 02:04:43','2006-02-15 22:22:46'), +(15654,584,2,10966,'0.99','2005-08-02 04:00:47','2006-02-15 22:22:46'), +(15655,584,1,11213,'4.99','2005-08-02 12:18:35','2006-02-15 22:22:46'), +(15656,584,2,11500,'6.99','2005-08-16 23:01:22','2006-02-15 22:22:46'), +(15657,584,2,12507,'8.99','2005-08-18 13:19:13','2006-02-15 22:22:46'), +(15658,584,2,12541,'2.99','2005-08-18 14:18:30','2006-02-15 22:22:46'), +(15659,584,2,12693,'5.99','2005-08-18 20:10:19','2006-02-15 22:22:46'), +(15660,584,1,12844,'2.99','2005-08-19 01:59:08','2006-02-15 22:22:46'), +(15661,584,2,14102,'5.99','2005-08-21 00:35:21','2006-02-15 22:22:46'), +(15662,584,2,14230,'5.99','2005-08-21 04:57:29','2006-02-15 22:22:46'), +(15663,584,2,14447,'4.99','2005-08-21 12:12:05','2006-02-15 22:22:46'), +(15664,584,1,14930,'1.99','2005-08-22 05:38:32','2006-02-15 22:22:46'), +(15665,584,1,15615,'0.99','2005-08-23 07:06:00','2006-02-15 22:22:47'), +(15666,585,1,1344,'0.99','2005-06-15 12:29:41','2006-02-15 22:22:47'), +(15667,585,2,1346,'7.99','2005-06-15 12:39:52','2006-02-15 22:22:47'), +(15668,585,1,2674,'0.99','2005-06-19 11:47:59','2006-02-15 22:22:47'), +(15669,585,1,2930,'3.99','2005-06-20 04:50:29','2006-02-15 22:22:47'), +(15670,585,2,4156,'4.99','2005-07-07 09:03:51','2006-02-15 22:22:47'), +(15671,585,2,4579,'4.99','2005-07-08 06:01:56','2006-02-15 22:22:47'), +(15672,585,1,4684,'9.99','2005-07-08 10:41:06','2006-02-15 22:22:47'), +(15673,585,2,5284,'2.99','2005-07-09 15:08:21','2006-02-15 22:22:47'), +(15674,585,2,5950,'4.99','2005-07-10 23:13:45','2006-02-15 22:22:47'), +(15675,585,2,6733,'6.99','2005-07-12 14:04:01','2006-02-15 22:22:47'), +(15676,585,1,7131,'2.99','2005-07-27 06:25:06','2006-02-15 22:22:47'), +(15677,585,1,7384,'4.99','2005-07-27 15:49:45','2006-02-15 22:22:47'), +(15678,585,2,7409,'4.99','2005-07-27 16:38:24','2006-02-15 22:22:47'), +(15679,585,2,8353,'2.99','2005-07-29 04:52:10','2006-02-15 22:22:48'), +(15680,585,2,9407,'8.99','2005-07-30 20:25:24','2006-02-15 22:22:48'), +(15681,585,1,9590,'3.99','2005-07-31 03:17:16','2006-02-15 22:22:48'), +(15682,585,1,9860,'6.99','2005-07-31 13:03:24','2006-02-15 22:22:48'), +(15683,585,2,10573,'0.99','2005-08-01 13:27:24','2006-02-15 22:22:48'), +(15684,585,1,11285,'9.99','2005-08-02 14:44:02','2006-02-15 22:22:48'), +(15685,585,2,13593,'3.99','2005-08-20 05:50:52','2006-02-15 22:22:48'), +(15686,585,2,13939,'0.99','2005-08-20 17:28:01','2006-02-15 22:22:48'), +(15687,585,1,15804,'4.99','2005-08-23 14:29:16','2006-02-15 22:22:48'), +(15688,585,1,15896,'6.99','2005-08-23 17:09:56','2006-02-15 22:22:48'), +(15689,585,2,14604,'4.99','2006-02-14 15:16:03','2006-02-15 22:22:48'), +(15690,586,1,138,'4.99','2005-05-25 22:48:22','2006-02-15 22:22:48'), +(15691,586,1,900,'8.99','2005-05-30 09:38:41','2006-02-15 22:22:48'), +(15692,586,1,1260,'2.99','2005-06-15 06:42:25','2006-02-15 22:22:48'), +(15693,586,2,1540,'0.99','2005-06-16 01:14:56','2006-02-15 22:22:49'), +(15694,586,2,3487,'6.99','2005-07-05 23:30:36','2006-02-15 22:22:49'), +(15695,586,2,3733,'4.99','2005-07-06 11:33:55','2006-02-15 22:22:49'), +(15696,586,2,5382,'2.99','2005-07-09 19:12:57','2006-02-15 22:22:49'), +(15697,586,1,6679,'2.99','2005-07-12 12:01:07','2006-02-15 22:22:49'), +(15698,586,2,9786,'2.99','2005-07-31 10:25:21','2006-02-15 22:22:49'), +(15699,586,2,9896,'2.99','2005-07-31 14:09:48','2006-02-15 22:22:49'), +(15700,586,1,11034,'2.99','2005-08-02 05:54:53','2006-02-15 22:22:49'), +(15701,586,1,11763,'0.99','2005-08-17 09:51:39','2006-02-15 22:22:49'), +(15702,586,1,12013,'4.99','2005-08-17 19:23:02','2006-02-15 22:22:49'), +(15703,586,1,12898,'0.99','2005-08-19 03:54:34','2006-02-15 22:22:50'), +(15704,586,2,14043,'2.99','2005-08-20 21:46:43','2006-02-15 22:22:50'), +(15705,586,1,14392,'1.99','2005-08-21 10:19:25','2006-02-15 22:22:50'), +(15706,586,2,14533,'2.99','2005-08-21 15:15:19','2006-02-15 22:22:50'), +(15707,586,1,15666,'3.99','2005-08-23 09:01:10','2006-02-15 22:22:51'), +(15708,586,2,15684,'0.99','2005-08-23 09:40:04','2006-02-15 22:22:51'), +(15709,587,1,181,'4.99','2005-05-26 04:47:06','2006-02-15 22:22:51'), +(15710,587,1,361,'0.99','2005-05-27 07:03:28','2006-02-15 22:22:51'), +(15711,587,2,1330,'2.99','2005-06-15 11:29:17','2006-02-15 22:22:52'), +(15712,587,2,2034,'4.99','2005-06-17 13:27:16','2006-02-15 22:22:52'), +(15713,587,1,2220,'2.99','2005-06-18 03:21:36','2006-02-15 22:22:52'), +(15714,587,1,2329,'4.99','2005-06-18 10:22:52','2006-02-15 22:22:52'), +(15715,587,2,3562,'2.99','2005-07-06 02:54:36','2006-02-15 22:22:53'), +(15716,587,2,3969,'0.99','2005-07-06 22:47:59','2006-02-15 22:22:53'), +(15717,587,2,5243,'3.99','2005-07-09 13:22:08','2006-02-15 22:22:53'), +(15718,587,1,6639,'0.99','2005-07-12 10:00:44','2006-02-15 22:22:53'), +(15719,587,2,6665,'6.99','2005-07-12 11:29:14','2006-02-15 22:22:53'), +(15720,587,1,7501,'8.99','2005-07-27 20:16:59','2006-02-15 22:22:54'), +(15721,587,2,8776,'5.99','2005-07-29 20:07:06','2006-02-15 22:22:54'), +(15722,587,2,9720,'6.99','2005-07-31 08:25:21','2006-02-15 22:22:54'), +(15723,587,2,9785,'4.99','2005-07-31 10:22:15','2006-02-15 22:22:54'), +(15724,587,2,9909,'5.99','2005-07-31 14:43:34','2006-02-15 22:22:55'), +(15725,587,2,10224,'4.99','2005-08-01 01:31:56','2006-02-15 22:22:55'), +(15726,587,1,10825,'2.99','2005-08-01 23:05:33','2006-02-15 22:22:55'), +(15727,587,1,11078,'2.99','2005-08-02 07:26:58','2006-02-15 22:22:55'), +(15728,587,2,11403,'4.99','2005-08-02 19:10:21','2006-02-15 22:22:56'), +(15729,587,2,12164,'4.99','2005-08-18 00:46:38','2006-02-15 22:22:56'), +(15730,587,2,12330,'6.99','2005-08-18 06:46:33','2006-02-15 22:22:56'), +(15731,587,2,14710,'4.99','2005-08-21 21:15:23','2006-02-15 22:22:56'), +(15732,587,2,15348,'2.99','2005-08-22 21:13:46','2006-02-15 22:22:57'), +(15733,587,2,15349,'0.99','2005-08-22 21:13:51','2006-02-15 22:22:57'), +(15734,587,1,12144,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:57'), +(15735,588,1,576,'2.99','2005-05-28 10:56:10','2006-02-15 22:22:57'), +(15736,588,1,961,'4.99','2005-05-30 18:16:44','2006-02-15 22:22:58'), +(15737,588,2,1885,'2.99','2005-06-17 03:35:59','2006-02-15 22:22:58'), +(15738,588,2,1903,'6.99','2005-06-17 04:37:20','2006-02-15 22:22:58'), +(15739,588,2,2270,'7.99','2005-06-18 06:29:01','2006-02-15 22:22:58'), +(15740,588,1,2453,'2.99','2005-06-18 19:30:53','2006-02-15 22:22:59'), +(15741,588,2,2920,'3.99','2005-06-20 04:12:46','2006-02-15 22:22:59'), +(15742,588,1,3628,'4.99','2005-07-06 06:19:43','2006-02-15 22:22:59'), +(15743,588,1,4101,'0.99','2005-07-07 06:25:11','2006-02-15 22:22:59'), +(15744,588,2,4207,'5.99','2005-07-07 11:32:45','2006-02-15 22:23:00'), +(15745,588,2,5203,'2.99','2005-07-09 10:53:59','2006-02-15 22:23:00'), +(15746,588,1,5335,'4.99','2005-07-09 17:00:49','2006-02-15 22:23:00'), +(15747,588,1,6368,'4.99','2005-07-11 21:19:01','2006-02-15 22:23:00'), +(15748,588,2,7377,'2.99','2005-07-27 15:31:28','2006-02-15 22:23:01'), +(15749,588,2,7903,'2.99','2005-07-28 11:20:36','2006-02-15 22:23:01'), +(15750,588,1,8421,'4.99','2005-07-29 07:00:47','2006-02-15 22:23:01'), +(15751,588,1,8429,'2.99','2005-07-29 07:11:49','2006-02-15 22:23:01'), +(15752,588,2,8519,'2.99','2005-07-29 10:09:43','2006-02-15 22:23:02'), +(15753,588,1,8769,'2.99','2005-07-29 19:45:33','2006-02-15 22:23:02'), +(15754,588,2,9326,'2.99','2005-07-30 17:30:03','2006-02-15 22:23:02'), +(15755,588,2,9370,'4.99','2005-07-30 18:57:29','2006-02-15 22:23:02'), +(15756,588,2,10373,'4.99','2005-08-01 06:24:26','2006-02-15 22:23:02'), +(15757,588,1,12185,'2.99','2005-08-18 01:40:14','2006-02-15 22:23:03'), +(15758,588,2,12815,'4.99','2005-08-19 00:59:42','2006-02-15 22:23:03'), +(15759,588,1,13064,'4.99','2005-08-19 09:46:53','2006-02-15 22:23:03'), +(15760,588,1,13923,'1.99','2005-08-20 17:05:02','2006-02-15 22:23:03'), +(15761,588,1,15109,'1.99','2005-08-22 12:12:58','2006-02-15 22:23:04'), +(15762,588,1,15158,'2.99','2005-08-22 14:30:39','2006-02-15 22:23:04'), +(15763,588,1,15209,'4.99','2005-08-22 16:37:32','2006-02-15 22:23:04'), +(15764,589,1,531,'0.99','2005-05-28 05:23:38','2006-02-15 22:23:04'), +(15765,589,1,596,'4.99','2005-05-28 14:00:03','2006-02-15 22:23:05'), +(15766,589,1,737,'4.99','2005-05-29 08:11:31','2006-02-15 22:23:05'), +(15767,589,1,1439,'4.99','2005-06-15 18:45:32','2006-02-15 22:23:05'), +(15768,589,2,1703,'4.99','2005-06-16 13:28:44','2006-02-15 22:23:05'), +(15769,589,2,2652,'8.99','2005-06-19 10:35:26','2006-02-15 22:23:06'), +(15770,589,1,2707,'8.99','2005-06-19 13:57:08','2006-02-15 22:23:06'), +(15771,589,1,2979,'2.99','2005-06-20 08:31:05','2006-02-15 22:23:06'), +(15772,589,2,4986,'2.99','2005-07-09 00:44:33','2006-02-15 22:23:06'), +(15773,589,1,5951,'0.99','2005-07-10 23:14:29','2006-02-15 22:23:07'), +(15774,589,2,6177,'4.99','2005-07-11 10:53:49','2006-02-15 22:23:07'), +(15775,589,2,6247,'3.99','2005-07-11 15:00:05','2006-02-15 22:23:07'), +(15776,589,2,7250,'0.99','2005-07-27 10:44:09','2006-02-15 22:23:07'), +(15777,589,2,7431,'3.99','2005-07-27 17:27:27','2006-02-15 22:23:08'), +(15778,589,2,7948,'9.99','2005-07-28 13:06:16','2006-02-15 22:23:08'), +(15779,589,2,8056,'0.99','2005-07-28 17:04:15','2006-02-15 22:23:08'), +(15780,589,1,8374,'3.99','2005-07-29 05:24:02','2006-02-15 22:23:08'), +(15781,589,1,9153,'4.99','2005-07-30 10:58:16','2006-02-15 22:23:09'), +(15782,589,2,10544,'4.99','2005-08-01 12:36:21','2006-02-15 22:23:09'), +(15783,589,1,11980,'4.99','2005-08-17 18:10:18','2006-02-15 22:23:09'), +(15784,589,1,12738,'7.99','2005-08-18 22:11:47','2006-02-15 22:23:09'), +(15785,589,2,12933,'8.99','2005-08-19 05:18:20','2006-02-15 22:23:10'), +(15786,589,1,14038,'6.99','2005-08-20 21:39:23','2006-02-15 22:23:10'), +(15787,589,1,14254,'6.99','2005-08-21 05:51:28','2006-02-15 22:23:10'), +(15788,589,1,14544,'0.99','2005-08-21 15:41:01','2006-02-15 22:23:10'), +(15789,589,2,14706,'0.99','2005-08-21 21:04:42','2006-02-15 22:23:10'), +(15790,589,2,15917,'5.99','2005-08-23 17:57:28','2006-02-15 22:23:11'), +(15791,589,2,15992,'0.99','2005-08-23 20:28:32','2006-02-15 22:23:11'), +(15792,590,1,602,'3.99','2005-05-28 14:15:54','2006-02-15 22:23:11'), +(15793,590,2,1456,'7.99','2005-06-15 20:00:11','2006-02-15 22:23:11'), +(15794,590,2,2352,'2.99','2005-06-18 12:40:15','2006-02-15 22:23:12'), +(15795,590,2,2775,'2.99','2005-06-19 18:14:20','2006-02-15 22:23:12'), +(15796,590,1,2916,'6.99','2005-06-20 04:01:04','2006-02-15 22:23:12'), +(15797,590,1,2964,'9.99','2005-06-20 07:33:29','2006-02-15 22:23:12'), +(15798,590,2,4685,'4.99','2005-07-08 10:45:13','2006-02-15 22:23:13'), +(15799,590,1,4710,'2.99','2005-07-08 12:04:53','2006-02-15 22:23:13'), +(15800,590,2,4722,'4.99','2005-07-08 12:42:27','2006-02-15 22:23:13'), +(15801,590,1,5165,'0.99','2005-07-09 09:08:53','2006-02-15 22:23:13'), +(15802,590,1,5529,'2.99','2005-07-10 02:11:13','2006-02-15 22:23:14'), +(15803,590,1,5991,'4.99','2005-07-11 01:03:38','2006-02-15 22:23:14'), +(15804,590,2,6232,'4.99','2005-07-11 14:08:27','2006-02-15 22:23:14'), +(15805,590,2,6492,'4.99','2005-07-12 02:28:40','2006-02-15 22:23:14'), +(15806,590,1,7010,'4.99','2005-07-27 01:56:01','2006-02-15 22:23:15'), +(15807,590,2,7665,'2.99','2005-07-28 02:28:30','2006-02-15 22:23:15'), +(15808,590,1,8195,'5.99','2005-07-28 22:52:58','2006-02-15 22:23:15'), +(15809,590,1,8801,'4.99','2005-07-29 21:25:22','2006-02-15 22:23:15'), +(15810,590,2,9126,'0.99','2005-07-30 09:44:15','2006-02-15 22:23:16'), +(15811,590,1,9884,'4.99','2005-07-31 13:56:24','2006-02-15 22:23:16'), +(15812,590,1,10657,'4.99','2005-08-01 16:38:44','2006-02-15 22:23:16'), +(15813,590,2,11578,'5.99','2005-08-17 01:54:13','2006-02-15 22:23:16'), +(15814,590,2,11713,'3.99','2005-08-17 07:34:05','2006-02-15 22:23:17'), +(15815,590,1,14830,'2.99','2005-08-22 01:37:19','2006-02-15 22:23:17'), +(15816,590,2,15458,'2.99','2006-02-14 15:16:03','2006-02-15 22:23:17'), +(15817,591,1,1418,'0.99','2005-06-15 17:51:27','2006-02-15 22:23:17'), +(15818,591,2,3341,'2.99','2005-06-21 10:37:25','2006-02-15 22:23:17'), +(15819,591,2,3435,'4.99','2005-06-21 19:14:58','2006-02-15 22:23:18'), +(15820,591,1,3636,'0.99','2005-07-06 07:03:52','2006-02-15 22:23:18'), +(15821,591,2,4383,'11.99','2005-07-07 20:45:51','2006-02-15 22:23:18'), +(15822,591,1,4581,'6.99','2005-07-08 06:05:06','2006-02-15 22:23:18'), +(15823,591,1,5704,'5.99','2005-07-10 10:06:29','2006-02-15 22:23:19'), +(15824,591,1,5759,'6.99','2005-07-10 12:43:22','2006-02-15 22:23:19'), +(15825,591,1,7118,'8.99','2005-07-27 05:53:50','2006-02-15 22:23:19'), +(15826,591,1,7212,'2.99','2005-07-27 09:21:22','2006-02-15 22:23:19'), +(15827,591,2,7511,'4.99','2005-07-27 20:38:40','2006-02-15 22:23:20'), +(15828,591,1,7549,'3.99','2005-07-27 21:53:21','2006-02-15 22:23:20'), +(15829,591,2,7741,'0.99','2005-07-28 05:25:55','2006-02-15 22:23:20'), +(15830,591,1,7997,'4.99','2005-07-28 15:02:25','2006-02-15 22:23:20'), +(15831,591,1,8149,'3.99','2005-07-28 20:48:12','2006-02-15 22:23:21'), +(15832,591,2,8666,'5.99','2005-07-29 15:39:38','2006-02-15 22:23:21'), +(15833,591,2,8819,'4.99','2005-07-29 22:14:26','2006-02-15 22:23:21'), +(15834,591,1,9684,'0.99','2005-07-31 06:48:33','2006-02-15 22:23:21'), +(15835,591,1,10415,'4.99','2005-08-01 08:05:59','2006-02-15 22:23:22'), +(15836,591,2,12203,'5.99','2005-08-18 02:18:52','2006-02-15 22:23:22'), +(15837,591,2,12227,'4.99','2005-08-18 03:04:28','2006-02-15 22:23:22'), +(15838,591,1,12547,'4.99','2005-08-18 14:29:39','2006-02-15 22:23:22'), +(15839,591,1,12571,'5.99','2005-08-18 15:31:18','2006-02-15 22:23:23'), +(15840,591,1,12934,'5.99','2005-08-19 05:18:42','2006-02-15 22:23:23'), +(15841,591,2,13104,'2.99','2005-08-19 11:06:06','2006-02-15 22:23:23'), +(15842,591,2,13343,'3.99','2005-08-19 20:22:08','2006-02-15 22:23:23'), +(15843,591,1,13867,'9.99','2005-08-20 15:05:42','2006-02-15 22:23:23'), +(15844,592,2,1163,'6.99','2005-06-14 23:12:46','2006-02-15 22:23:24'), +(15845,592,2,1423,'5.99','2005-06-15 18:08:12','2006-02-15 22:23:24'), +(15846,592,1,1479,'2.99','2005-06-15 21:13:38','2006-02-15 22:23:24'), +(15847,592,1,2627,'0.99','2005-06-19 08:32:00','2006-02-15 22:23:24'), +(15848,592,1,3158,'7.99','2005-06-20 21:08:19','2006-02-15 22:23:25'), +(15849,592,2,3560,'2.99','2005-07-06 02:51:37','2006-02-15 22:23:25'), +(15850,592,1,3973,'11.99','2005-07-06 22:58:31','2006-02-15 22:23:25'), +(15851,592,1,4129,'1.99','2005-07-07 07:37:03','2006-02-15 22:23:25'), +(15852,592,1,4145,'9.99','2005-07-07 08:26:39','2006-02-15 22:23:26'), +(15853,592,1,4460,'0.99','2005-07-07 23:50:14','2006-02-15 22:23:26'), +(15854,592,1,4518,'2.99','2005-07-08 02:48:36','2006-02-15 22:23:26'), +(15855,592,1,6937,'0.99','2005-07-26 23:15:50','2006-02-15 22:23:26'), +(15856,592,2,7173,'0.99','2005-07-27 07:59:24','2006-02-15 22:23:27'), +(15857,592,1,7278,'3.99','2005-07-27 11:50:34','2006-02-15 22:23:27'), +(15858,592,2,7364,'4.99','2005-07-27 14:58:40','2006-02-15 22:23:27'), +(15859,592,1,8730,'2.99','2005-07-29 18:23:34','2006-02-15 22:23:27'), +(15860,592,2,8773,'0.99','2005-07-29 19:55:34','2006-02-15 22:23:28'), +(15861,592,1,9268,'4.99','2005-07-30 15:02:30','2006-02-15 22:23:28'), +(15862,592,1,9437,'3.99','2005-07-30 21:36:04','2006-02-15 22:23:28'), +(15863,592,2,9666,'6.99','2005-07-31 06:20:58','2006-02-15 22:23:28'), +(15864,592,2,10383,'0.99','2005-08-01 06:37:16','2006-02-15 22:23:29'), +(15865,592,2,10634,'2.99','2005-08-01 15:37:48','2006-02-15 22:23:29'), +(15866,592,1,11410,'8.99','2005-08-02 19:29:01','2006-02-15 22:23:29'), +(15867,592,2,12043,'0.99','2005-08-17 20:38:21','2006-02-15 22:23:29'), +(15868,592,2,12619,'0.99','2005-08-18 17:24:15','2006-02-15 22:23:30'), +(15869,592,1,12976,'1.99','2005-08-19 06:52:58','2006-02-15 22:23:30'), +(15870,592,1,13157,'2.99','2005-08-19 13:12:28','2006-02-15 22:23:30'), +(15871,592,2,13662,'3.99','2005-08-20 08:11:58','2006-02-15 22:23:30'), +(15872,592,2,14606,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:30'), +(15873,593,1,790,'2.99','2005-05-29 16:19:29','2006-02-15 22:23:31'), +(15874,593,1,991,'8.99','2005-05-30 23:29:22','2006-02-15 22:23:31'), +(15875,593,2,2055,'5.99','2005-06-17 15:27:03','2006-02-15 22:23:31'), +(15876,593,2,2205,'4.99','2005-06-18 02:14:34','2006-02-15 22:23:31'), +(15877,593,1,2441,'4.99','2005-06-18 18:45:11','2006-02-15 22:23:32'), +(15878,593,1,2832,'4.99','2005-06-19 21:21:53','2006-02-15 22:23:32'), +(15879,593,2,3542,'2.99','2005-07-06 01:51:42','2006-02-15 22:23:32'), +(15880,593,2,4075,'2.99','2005-07-07 04:51:44','2006-02-15 22:23:32'), +(15881,593,2,4280,'3.99','2005-07-07 15:09:31','2006-02-15 22:23:33'), +(15882,593,2,4623,'0.99','2005-07-08 08:03:22','2006-02-15 22:23:33'), +(15883,593,2,4781,'4.99','2005-07-08 16:06:55','2006-02-15 22:23:33'), +(15884,593,2,4867,'0.99','2005-07-08 19:10:52','2006-02-15 22:23:33'), +(15885,593,1,6386,'2.99','2005-07-11 22:14:57','2006-02-15 22:23:34'), +(15886,593,1,6731,'2.99','2005-07-12 13:58:27','2006-02-15 22:23:34'), +(15887,593,2,7958,'4.99','2005-07-28 13:34:34','2006-02-15 22:23:34'), +(15888,593,1,8497,'2.99','2005-07-29 09:07:03','2006-02-15 22:23:34'), +(15889,593,2,9329,'6.99','2005-07-30 17:42:38','2006-02-15 22:23:35'), +(15890,593,1,9483,'6.99','2005-07-30 23:31:31','2006-02-15 22:23:35'), +(15891,593,1,10368,'3.99','2005-08-01 06:13:38','2006-02-15 22:23:35'), +(15892,593,2,10533,'3.99','2005-08-01 12:14:16','2006-02-15 22:23:35'), +(15893,593,1,10840,'5.99','2005-08-01 23:38:34','2006-02-15 22:23:36'), +(15894,593,2,10904,'4.99','2005-08-02 01:43:02','2006-02-15 22:23:36'), +(15895,593,2,12744,'2.99','2005-08-18 22:22:36','2006-02-15 22:23:36'), +(15896,593,1,13524,'6.99','2005-08-20 02:48:43','2006-02-15 22:23:36'), +(15897,593,1,14408,'5.99','2005-08-21 10:47:24','2006-02-15 22:23:36'), +(15898,593,1,14653,'0.99','2005-08-21 19:35:59','2006-02-15 22:23:37'), +(15899,594,1,313,'4.99','2005-05-26 22:56:19','2006-02-15 22:23:37'), +(15900,594,1,360,'8.99','2005-05-27 06:51:14','2006-02-15 22:23:37'), +(15901,594,2,1018,'0.99','2005-05-31 02:53:42','2006-02-15 22:23:37'), +(15902,594,1,1045,'6.99','2005-05-31 06:29:01','2006-02-15 22:23:38'), +(15903,594,2,1537,'5.99','2005-06-16 00:52:51','2006-02-15 22:23:38'), +(15904,594,1,1816,'4.99','2005-06-16 21:20:41','2006-02-15 22:23:38'), +(15905,594,1,1950,'2.99','2005-06-17 08:26:52','2006-02-15 22:23:38'), +(15906,594,1,2276,'6.99','2005-06-18 06:33:48','2006-02-15 22:23:39'), +(15907,594,2,2786,'0.99','2005-06-19 18:46:43','2006-02-15 22:23:39'), +(15908,594,2,3302,'1.99','2005-06-21 07:33:40','2006-02-15 22:23:39'), +(15909,594,2,3474,'0.99','2005-07-05 22:59:53','2006-02-15 22:23:39'), +(15910,594,1,3546,'4.99','2005-07-06 02:17:54','2006-02-15 22:23:40'), +(15911,594,2,3960,'2.99','2005-07-06 22:08:53','2006-02-15 22:23:40'), +(15912,594,1,4037,'5.99','2005-07-07 02:52:52','2006-02-15 22:23:40'), +(15913,594,1,4154,'3.99','2005-07-07 08:58:23','2006-02-15 22:23:40'), +(15914,594,2,5386,'2.99','2005-07-09 19:19:09','2006-02-15 22:23:41'), +(15915,594,1,6473,'6.99','2005-07-12 01:35:40','2006-02-15 22:23:41'), +(15916,594,1,7533,'8.99','2005-07-27 21:24:33','2006-02-15 22:23:41'), +(15917,594,1,8567,'1.99','2005-07-29 11:37:30','2006-02-15 22:23:41'), +(15918,594,1,8603,'2.99','2005-07-29 13:07:07','2006-02-15 22:23:42'), +(15919,594,2,8820,'5.99','2005-07-29 22:14:56','2006-02-15 22:23:42'), +(15920,594,1,9545,'7.99','2005-07-31 01:46:24','2006-02-15 22:23:42'), +(15921,594,1,9698,'3.99','2005-07-31 07:24:35','2006-02-15 22:23:42'), +(15922,594,2,9802,'4.99','2005-07-31 11:04:20','2006-02-15 22:23:42'), +(15923,594,2,10704,'8.99','2005-08-01 18:38:02','2006-02-15 22:23:43'), +(15924,594,2,14824,'4.99','2005-08-22 01:27:51','2006-02-15 22:23:43'), +(15925,594,1,14999,'4.99','2005-08-22 07:54:47','2006-02-15 22:23:43'), +(15926,595,1,613,'6.99','2005-05-28 15:27:22','2006-02-15 22:23:43'), +(15927,595,2,1170,'2.99','2005-06-14 23:47:35','2006-02-15 22:23:44'), +(15928,595,2,3371,'4.99','2005-06-21 13:27:22','2006-02-15 22:23:44'), +(15929,595,1,3789,'9.99','2005-07-06 14:02:26','2006-02-15 22:23:44'), +(15930,595,1,4017,'4.99','2005-07-07 01:08:18','2006-02-15 22:23:44'), +(15931,595,1,4241,'4.99','2005-07-07 13:39:00','2006-02-15 22:23:45'), +(15932,595,2,4775,'2.99','2005-07-08 15:44:05','2006-02-15 22:23:45'), +(15933,595,1,5631,'1.99','2005-07-10 06:15:45','2006-02-15 22:23:45'), +(15934,595,1,5952,'1.99','2005-07-10 23:18:20','2006-02-15 22:23:45'), +(15935,595,1,6105,'6.99','2005-07-11 07:03:19','2006-02-15 22:23:46'), +(15936,595,1,6704,'6.99','2005-07-12 12:50:24','2006-02-15 22:23:46'), +(15937,595,1,7086,'4.99','2005-07-27 04:39:46','2006-02-15 22:23:46'), +(15938,595,2,7307,'0.99','2005-07-27 12:59:10','2006-02-15 22:23:46'), +(15939,595,1,7396,'4.99','2005-07-27 16:03:53','2006-02-15 22:23:47'), +(15940,595,2,7490,'3.99','2005-07-27 19:48:12','2006-02-15 22:23:47'), +(15941,595,1,9152,'2.99','2005-07-30 10:51:27','2006-02-15 22:23:47'), +(15942,595,2,9223,'2.99','2005-07-30 13:23:20','2006-02-15 22:23:47'), +(15943,595,1,9354,'4.99','2005-07-30 18:32:51','2006-02-15 22:23:48'), +(15944,595,2,9497,'0.99','2005-07-30 23:56:54','2006-02-15 22:23:48'), +(15945,595,2,9542,'4.99','2005-07-31 01:41:48','2006-02-15 22:23:48'), +(15946,595,1,9631,'2.99','2005-07-31 05:02:00','2006-02-15 22:23:48'), +(15947,595,2,9826,'10.99','2005-07-31 11:51:46','2006-02-15 22:23:48'), +(15948,595,1,10729,'2.99','2005-08-01 19:21:11','2006-02-15 22:23:49'), +(15949,595,1,10932,'2.99','2005-08-02 02:46:22','2006-02-15 22:23:49'), +(15950,595,2,11748,'0.99','2005-08-17 09:04:02','2006-02-15 22:23:49'), +(15951,595,1,12235,'0.99','2005-08-18 03:17:50','2006-02-15 22:23:49'), +(15952,595,1,14334,'0.99','2005-08-21 08:32:32','2006-02-15 22:23:50'), +(15953,595,2,15576,'2.99','2005-08-23 05:32:03','2006-02-15 22:23:50'), +(15954,595,2,15994,'0.99','2005-08-23 20:29:10','2006-02-15 22:23:50'), +(15955,595,2,16016,'2.99','2005-08-23 21:26:35','2006-02-15 22:23:50'), +(15956,596,2,303,'4.99','2005-05-26 21:16:52','2006-02-15 22:23:51'), +(15957,596,2,625,'0.99','2005-05-28 16:35:46','2006-02-15 22:23:51'), +(15958,596,2,667,'4.99','2005-05-28 21:49:02','2006-02-15 22:23:51'), +(15959,596,2,782,'1.99','2005-05-29 14:38:57','2006-02-15 22:23:51'), +(15960,596,1,914,'2.99','2005-05-30 11:06:00','2006-02-15 22:23:52'), +(15961,596,1,974,'6.99','2005-05-30 20:28:42','2006-02-15 22:23:52'), +(15962,596,1,1644,'1.99','2005-06-16 08:58:18','2006-02-15 22:23:52'), +(15963,596,1,2767,'1.99','2005-06-19 17:46:35','2006-02-15 22:23:52'), +(15964,596,2,5742,'3.99','2005-07-10 11:56:18','2006-02-15 22:23:53'), +(15965,596,1,6015,'2.99','2005-07-11 02:04:12','2006-02-15 22:23:53'), +(15966,596,1,6017,'0.99','2005-07-11 02:05:32','2006-02-15 22:23:53'), +(15967,596,1,6197,'4.99','2005-07-11 12:09:51','2006-02-15 22:23:53'), +(15968,596,2,6883,'4.99','2005-07-12 20:50:48','2006-02-15 22:23:53'), +(15969,596,1,10094,'3.99','2005-07-31 20:31:18','2006-02-15 22:23:54'), +(15970,596,2,10692,'4.99','2005-08-01 18:12:35','2006-02-15 22:23:54'), +(15971,596,1,10756,'2.99','2005-08-01 20:17:03','2006-02-15 22:23:54'), +(15972,596,2,10804,'0.99','2005-08-01 22:22:11','2006-02-15 22:23:54'), +(15973,596,2,11009,'4.99','2005-08-02 05:06:23','2006-02-15 22:23:55'), +(15974,596,2,11852,'3.99','2005-08-17 13:38:27','2006-02-15 22:23:55'), +(15975,596,1,11934,'0.99','2005-08-17 16:40:00','2006-02-15 22:23:55'), +(15976,596,2,12560,'4.99','2005-08-18 14:54:19','2006-02-15 22:23:55'), +(15977,596,1,12878,'4.99','2005-08-19 03:17:08','2006-02-15 22:23:56'), +(15978,596,1,13648,'4.99','2005-08-20 07:48:10','2006-02-15 22:23:56'), +(15979,596,1,14050,'3.99','2005-08-20 22:09:04','2006-02-15 22:23:56'), +(15980,596,1,14417,'0.99','2005-08-21 11:13:35','2006-02-15 22:23:56'), +(15981,596,1,15405,'0.99','2005-08-22 23:20:41','2006-02-15 22:23:57'), +(15982,596,1,15899,'6.99','2005-08-23 17:16:28','2006-02-15 22:23:57'), +(15983,596,1,15423,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:57'), +(15984,597,2,34,'2.99','2005-05-25 04:19:28','2006-02-15 22:23:57'), +(15985,597,2,514,'8.99','2005-05-28 03:09:28','2006-02-15 22:23:58'), +(15986,597,1,2379,'0.99','2005-06-18 14:59:39','2006-02-15 22:23:58'), +(15987,597,1,2696,'4.99','2005-06-19 13:28:42','2006-02-15 22:23:58'), +(15988,597,1,3201,'1.99','2005-06-21 00:30:26','2006-02-15 22:23:58'), +(15989,597,1,5093,'0.99','2005-07-09 05:59:12','2006-02-15 22:23:59'), +(15990,597,1,5348,'4.99','2005-07-09 17:34:11','2006-02-15 22:23:59'), +(15991,597,2,5732,'2.99','2005-07-10 11:36:32','2006-02-15 22:23:59'), +(15992,597,1,6508,'2.99','2005-07-12 03:34:50','2006-02-15 22:23:59'), +(15993,597,2,7968,'4.99','2005-07-28 13:57:35','2006-02-15 22:23:59'), +(15994,597,2,8948,'4.99','2005-07-30 03:16:18','2006-02-15 22:24:00'), +(15995,597,2,10021,'4.99','2005-07-31 18:24:39','2006-02-15 22:24:00'), +(15996,597,1,10214,'0.99','2005-08-01 01:04:15','2006-02-15 22:24:00'), +(15997,597,2,10986,'5.99','2005-08-02 04:35:24','2006-02-15 22:24:00'), +(15998,597,2,11147,'4.99','2005-08-02 09:45:54','2006-02-15 22:24:01'), +(15999,597,2,11223,'2.99','2005-08-02 12:34:27','2006-02-15 22:24:01'), +(16000,597,1,11240,'2.99','2005-08-02 13:28:30','2006-02-15 22:24:01'), +(16001,597,1,11880,'5.99','2005-08-17 14:28:28','2006-02-15 22:24:01'), +(16002,597,1,12081,'4.99','2005-08-17 22:10:46','2006-02-15 22:24:02'), +(16003,597,1,12992,'0.99','2005-08-19 07:23:06','2006-02-15 22:24:02'), +(16004,597,2,13019,'2.99','2005-08-19 08:07:43','2006-02-15 22:24:02'), +(16005,597,1,13152,'6.99','2005-08-19 13:09:32','2006-02-15 22:24:02'), +(16006,597,2,15275,'2.99','2005-08-22 18:57:39','2006-02-15 22:24:03'), +(16007,597,1,15469,'4.99','2005-08-23 01:29:59','2006-02-15 22:24:03'), +(16008,597,1,11652,'4.99','2006-02-14 15:16:03','2006-02-15 22:24:03'), +(16009,598,1,3005,'2.99','2005-06-20 10:10:29','2006-02-15 22:24:03'), +(16010,598,1,3648,'0.99','2005-07-06 07:30:41','2006-02-15 22:24:04'), +(16011,598,2,3950,'6.99','2005-07-06 21:48:44','2006-02-15 22:24:04'), +(16012,598,1,3972,'4.99','2005-07-06 22:53:57','2006-02-15 22:24:04'), +(16013,598,1,4181,'4.99','2005-07-07 10:27:54','2006-02-15 22:24:04'), +(16014,598,2,5688,'5.99','2005-07-10 09:16:08','2006-02-15 22:24:04'), +(16015,598,1,6519,'4.99','2005-07-12 04:00:36','2006-02-15 22:24:05'), +(16016,598,2,6528,'4.99','2005-07-12 04:29:44','2006-02-15 22:24:05'), +(16017,598,2,6575,'0.99','2005-07-12 06:12:53','2006-02-15 22:24:05'), +(16018,598,2,6660,'3.99','2005-07-12 11:20:12','2006-02-15 22:24:05'), +(16019,598,2,7201,'6.99','2005-07-27 08:57:40','2006-02-15 22:24:06'), +(16020,598,2,7354,'0.99','2005-07-27 14:42:11','2006-02-15 22:24:06'), +(16021,598,1,7998,'0.99','2005-07-28 15:08:48','2006-02-15 22:24:06'), +(16022,598,2,8436,'0.99','2005-07-29 07:21:20','2006-02-15 22:24:06'), +(16023,598,1,8511,'5.99','2005-07-29 09:42:42','2006-02-15 22:24:07'), +(16024,598,1,8939,'4.99','2005-07-30 02:56:53','2006-02-15 22:24:07'), +(16025,598,1,10054,'4.99','2005-07-31 19:15:52','2006-02-15 22:24:07'), +(16026,598,2,11350,'0.99','2005-08-02 17:22:59','2006-02-15 22:24:07'), +(16027,598,2,12601,'2.99','2005-08-18 16:47:52','2006-02-15 22:24:08'), +(16028,598,2,14345,'0.99','2005-08-21 08:41:15','2006-02-15 22:24:08'), +(16029,598,2,15307,'2.99','2005-08-22 19:54:26','2006-02-15 22:24:08'), +(16030,598,1,15443,'7.99','2005-08-23 00:44:15','2006-02-15 22:24:08'), +(16031,599,2,1008,'4.99','2005-05-31 01:18:56','2006-02-15 22:24:09'), +(16032,599,1,2272,'1.99','2005-06-18 06:29:53','2006-02-15 22:24:09'), +(16033,599,2,3043,'6.99','2005-06-20 12:38:35','2006-02-15 22:24:09'), +(16034,599,2,3398,'4.99','2005-06-21 15:34:38','2006-02-15 22:24:09'), +(16035,599,1,3429,'6.99','2005-06-21 18:46:05','2006-02-15 22:24:09'), +(16036,599,1,5065,'0.99','2005-07-09 04:42:00','2006-02-15 22:24:10'), +(16037,599,1,5843,'2.99','2005-07-10 17:14:27','2006-02-15 22:24:10'), +(16038,599,2,6800,'9.99','2005-07-12 17:03:56','2006-02-15 22:24:10'), +(16039,599,2,6895,'2.99','2005-07-12 21:23:59','2006-02-15 22:24:10'), +(16040,599,1,8965,'6.99','2005-07-30 03:52:37','2006-02-15 22:24:11'), +(16041,599,2,9630,'2.99','2005-07-31 04:57:07','2006-02-15 22:24:11'), +(16042,599,2,9679,'2.99','2005-07-31 06:41:19','2006-02-15 22:24:11'), +(16043,599,2,11522,'3.99','2005-08-17 00:05:05','2006-02-15 22:24:11'), +(16044,599,1,14233,'1.99','2005-08-21 05:07:08','2006-02-15 22:24:12'), +(16045,599,1,14599,'4.99','2005-08-21 17:43:42','2006-02-15 22:24:12'), +(16046,599,1,14719,'1.99','2005-08-21 21:41:57','2006-02-15 22:24:12'), +(16047,599,2,15590,'8.99','2005-08-23 06:09:44','2006-02-15 22:24:12'), +(16048,599,2,15719,'2.99','2005-08-23 11:08:46','2006-02-15 22:24:13'), +(16049,599,2,15725,'2.99','2005-08-23 11:25:00','2006-02-15 22:24:13'); +COMMIT; + +-- +-- Trigger to enforce payment_date during INSERT +-- + +CREATE TRIGGER payment_date BEFORE INSERT ON payment + FOR EACH ROW SET NEW.payment_date = NOW(); + +-- +-- Dumping data for table rental +-- + +SET AUTOCOMMIT=0; +INSERT INTO rental VALUES (1,'2005-05-24 22:53:30',367,130,'2005-05-26 22:04:30',1,'2006-02-15 21:30:53'), +(2,'2005-05-24 22:54:33',1525,459,'2005-05-28 19:40:33',1,'2006-02-15 21:30:53'), +(3,'2005-05-24 23:03:39',1711,408,'2005-06-01 22:12:39',1,'2006-02-15 21:30:53'), +(4,'2005-05-24 23:04:41',2452,333,'2005-06-03 01:43:41',2,'2006-02-15 21:30:53'), +(5,'2005-05-24 23:05:21',2079,222,'2005-06-02 04:33:21',1,'2006-02-15 21:30:53'), +(6,'2005-05-24 23:08:07',2792,549,'2005-05-27 01:32:07',1,'2006-02-15 21:30:53'), +(7,'2005-05-24 23:11:53',3995,269,'2005-05-29 20:34:53',2,'2006-02-15 21:30:53'), +(8,'2005-05-24 23:31:46',2346,239,'2005-05-27 23:33:46',2,'2006-02-15 21:30:53'), +(9,'2005-05-25 00:00:40',2580,126,'2005-05-28 00:22:40',1,'2006-02-15 21:30:53'), +(10,'2005-05-25 00:02:21',1824,399,'2005-05-31 22:44:21',2,'2006-02-15 21:30:53'), +(11,'2005-05-25 00:09:02',4443,142,'2005-06-02 20:56:02',2,'2006-02-15 21:30:53'), +(12,'2005-05-25 00:19:27',1584,261,'2005-05-30 05:44:27',2,'2006-02-15 21:30:53'), +(13,'2005-05-25 00:22:55',2294,334,'2005-05-30 04:28:55',1,'2006-02-15 21:30:53'), +(14,'2005-05-25 00:31:15',2701,446,'2005-05-26 02:56:15',1,'2006-02-15 21:30:53'), +(15,'2005-05-25 00:39:22',3049,319,'2005-06-03 03:30:22',1,'2006-02-15 21:30:53'), +(16,'2005-05-25 00:43:11',389,316,'2005-05-26 04:42:11',2,'2006-02-15 21:30:53'), +(17,'2005-05-25 01:06:36',830,575,'2005-05-27 00:43:36',1,'2006-02-15 21:30:53'), +(18,'2005-05-25 01:10:47',3376,19,'2005-05-31 06:35:47',2,'2006-02-15 21:30:53'), +(19,'2005-05-25 01:17:24',1941,456,'2005-05-31 06:00:24',1,'2006-02-15 21:30:53'), +(20,'2005-05-25 01:48:41',3517,185,'2005-05-27 02:20:41',2,'2006-02-15 21:30:53'), +(21,'2005-05-25 01:59:46',146,388,'2005-05-26 01:01:46',2,'2006-02-15 21:30:53'), +(22,'2005-05-25 02:19:23',727,509,'2005-05-26 04:52:23',2,'2006-02-15 21:30:53'), +(23,'2005-05-25 02:40:21',4441,438,'2005-05-29 06:34:21',1,'2006-02-15 21:30:53'), +(24,'2005-05-25 02:53:02',3273,350,'2005-05-27 01:15:02',1,'2006-02-15 21:30:53'), +(25,'2005-05-25 03:21:20',3961,37,'2005-05-27 21:25:20',2,'2006-02-15 21:30:53'), +(26,'2005-05-25 03:36:50',4371,371,'2005-05-31 00:34:50',1,'2006-02-15 21:30:53'), +(27,'2005-05-25 03:41:50',1225,301,'2005-05-30 01:13:50',2,'2006-02-15 21:30:53'), +(28,'2005-05-25 03:42:37',4068,232,'2005-05-26 09:26:37',2,'2006-02-15 21:30:53'), +(29,'2005-05-25 03:47:12',611,44,'2005-05-30 00:31:12',2,'2006-02-15 21:30:53'), +(30,'2005-05-25 04:01:32',3744,430,'2005-05-30 03:12:32',1,'2006-02-15 21:30:53'), +(31,'2005-05-25 04:05:17',4482,369,'2005-05-30 07:15:17',1,'2006-02-15 21:30:53'), +(32,'2005-05-25 04:06:21',3832,230,'2005-05-25 23:55:21',1,'2006-02-15 21:30:53'), +(33,'2005-05-25 04:18:51',1681,272,'2005-05-27 03:58:51',1,'2006-02-15 21:30:53'), +(34,'2005-05-25 04:19:28',2613,597,'2005-05-29 00:10:28',2,'2006-02-15 21:30:53'), +(35,'2005-05-25 04:24:36',1286,484,'2005-05-27 07:02:36',2,'2006-02-15 21:30:53'), +(36,'2005-05-25 04:36:26',1308,88,'2005-05-29 00:31:26',1,'2006-02-15 21:30:53'), +(37,'2005-05-25 04:44:31',403,535,'2005-05-29 01:03:31',1,'2006-02-15 21:30:53'), +(38,'2005-05-25 04:47:44',2540,302,'2005-06-01 00:58:44',1,'2006-02-15 21:30:53'), +(39,'2005-05-25 04:51:46',4466,207,'2005-05-31 03:14:46',2,'2006-02-15 21:30:53'), +(40,'2005-05-25 05:09:04',2638,413,'2005-05-27 23:12:04',1,'2006-02-15 21:30:53'), +(41,'2005-05-25 05:12:29',1761,174,'2005-06-02 00:28:29',1,'2006-02-15 21:30:53'), +(42,'2005-05-25 05:24:58',380,523,'2005-05-31 02:47:58',2,'2006-02-15 21:30:53'), +(43,'2005-05-25 05:39:25',2578,532,'2005-05-26 06:54:25',2,'2006-02-15 21:30:53'), +(44,'2005-05-25 05:53:23',3098,207,'2005-05-29 10:56:23',2,'2006-02-15 21:30:53'), +(45,'2005-05-25 05:59:39',1853,436,'2005-06-02 09:56:39',2,'2006-02-15 21:30:53'), +(46,'2005-05-25 06:04:08',3318,7,'2005-06-02 08:18:08',2,'2006-02-15 21:30:53'), +(47,'2005-05-25 06:05:20',2211,35,'2005-05-30 03:04:20',1,'2006-02-15 21:30:53'), +(48,'2005-05-25 06:20:46',1780,282,'2005-06-02 05:42:46',1,'2006-02-15 21:30:53'), +(49,'2005-05-25 06:39:35',2965,498,'2005-05-30 10:12:35',2,'2006-02-15 21:30:53'), +(50,'2005-05-25 06:44:53',1983,18,'2005-05-28 11:28:53',2,'2006-02-15 21:30:53'), +(51,'2005-05-25 06:49:10',1257,256,'2005-05-26 06:42:10',1,'2006-02-15 21:30:53'), +(52,'2005-05-25 06:51:29',4017,507,'2005-05-31 01:27:29',2,'2006-02-15 21:30:53'), +(53,'2005-05-25 07:19:16',1255,569,'2005-05-27 05:19:16',2,'2006-02-15 21:30:53'), +(54,'2005-05-25 07:23:25',2787,291,'2005-06-01 05:05:25',2,'2006-02-15 21:30:53'), +(55,'2005-05-25 08:26:13',1139,131,'2005-05-30 10:57:13',1,'2006-02-15 21:30:53'), +(56,'2005-05-25 08:28:11',1352,511,'2005-05-26 14:21:11',1,'2006-02-15 21:30:53'), +(57,'2005-05-25 08:43:32',3938,6,'2005-05-29 06:42:32',2,'2006-02-15 21:30:53'), +(58,'2005-05-25 08:53:14',3050,323,'2005-05-28 14:40:14',1,'2006-02-15 21:30:53'), +(59,'2005-05-25 08:56:42',2884,408,'2005-06-01 09:52:42',1,'2006-02-15 21:30:53'), +(60,'2005-05-25 08:58:25',330,470,'2005-05-30 14:14:25',1,'2006-02-15 21:30:53'), +(61,'2005-05-25 09:01:57',4210,250,'2005-06-02 07:22:57',2,'2006-02-15 21:30:53'), +(62,'2005-05-25 09:18:52',261,419,'2005-05-30 10:55:52',1,'2006-02-15 21:30:53'), +(63,'2005-05-25 09:19:16',4008,383,'2005-05-27 04:24:16',1,'2006-02-15 21:30:53'), +(64,'2005-05-25 09:21:29',79,368,'2005-06-03 11:31:29',1,'2006-02-15 21:30:53'), +(65,'2005-05-25 09:32:03',3552,346,'2005-05-29 14:21:03',1,'2006-02-15 21:30:53'), +(66,'2005-05-25 09:35:12',1162,86,'2005-05-29 04:16:12',2,'2006-02-15 21:30:53'), +(67,'2005-05-25 09:41:01',239,119,'2005-05-27 13:46:01',2,'2006-02-15 21:30:53'), +(68,'2005-05-25 09:47:31',4029,120,'2005-05-31 10:20:31',2,'2006-02-15 21:30:53'), +(69,'2005-05-25 10:10:14',3207,305,'2005-05-27 14:02:14',2,'2006-02-15 21:30:53'), +(70,'2005-05-25 10:15:23',2168,73,'2005-05-27 05:56:23',2,'2006-02-15 21:30:53'), +(71,'2005-05-25 10:26:39',2408,100,'2005-05-28 04:59:39',1,'2006-02-15 21:30:53'), +(72,'2005-05-25 10:52:13',2260,48,'2005-05-28 05:52:13',2,'2006-02-15 21:30:53'), +(73,'2005-05-25 11:00:07',517,391,'2005-06-01 13:56:07',2,'2006-02-15 21:30:53'), +(74,'2005-05-25 11:09:48',1744,265,'2005-05-26 12:23:48',2,'2006-02-15 21:30:53'), +(75,'2005-05-25 11:13:34',3393,510,'2005-06-03 12:58:34',1,'2006-02-15 21:30:53'), +(76,'2005-05-25 11:30:37',3021,1,'2005-06-03 12:00:37',2,'2006-02-15 21:30:53'), +(77,'2005-05-25 11:31:59',1303,451,'2005-05-26 16:53:59',2,'2006-02-15 21:30:53'), +(78,'2005-05-25 11:35:18',4067,135,'2005-05-31 12:48:18',2,'2006-02-15 21:30:53'), +(79,'2005-05-25 12:11:07',3299,245,'2005-06-03 10:54:07',2,'2006-02-15 21:30:53'), +(80,'2005-05-25 12:12:07',2478,314,'2005-05-31 17:46:07',2,'2006-02-15 21:30:53'), +(81,'2005-05-25 12:15:19',2610,286,'2005-06-02 14:08:19',2,'2006-02-15 21:30:53'), +(82,'2005-05-25 12:17:46',1388,427,'2005-06-01 10:48:46',1,'2006-02-15 21:30:53'), +(83,'2005-05-25 12:30:15',466,131,'2005-05-27 15:40:15',1,'2006-02-15 21:30:53'), +(84,'2005-05-25 12:36:30',1829,492,'2005-05-29 18:33:30',1,'2006-02-15 21:30:53'), +(85,'2005-05-25 13:05:34',470,414,'2005-05-29 16:53:34',1,'2006-02-15 21:30:53'), +(86,'2005-05-25 13:36:12',2275,266,'2005-05-30 14:53:12',1,'2006-02-15 21:30:53'), +(87,'2005-05-25 13:52:43',1586,331,'2005-05-29 11:12:43',2,'2006-02-15 21:30:53'), +(88,'2005-05-25 14:13:54',2221,53,'2005-05-29 09:32:54',2,'2006-02-15 21:30:53'), +(89,'2005-05-25 14:28:29',2181,499,'2005-05-29 14:33:29',1,'2006-02-15 21:30:53'), +(90,'2005-05-25 14:31:25',2984,25,'2005-06-01 10:07:25',1,'2006-02-15 21:30:53'), +(91,'2005-05-25 14:57:22',139,267,'2005-06-01 18:32:22',1,'2006-02-15 21:30:53'), +(92,'2005-05-25 15:38:46',775,302,'2005-05-31 13:40:46',2,'2006-02-15 21:30:53'), +(93,'2005-05-25 15:54:16',4360,288,'2005-06-03 20:18:16',1,'2006-02-15 21:30:53'), +(94,'2005-05-25 16:03:42',1675,197,'2005-05-30 14:23:42',1,'2006-02-15 21:30:53'), +(95,'2005-05-25 16:12:52',178,400,'2005-06-02 18:55:52',2,'2006-02-15 21:30:53'), +(96,'2005-05-25 16:32:19',3418,49,'2005-05-30 10:47:19',2,'2006-02-15 21:30:53'), +(97,'2005-05-25 16:34:24',1283,263,'2005-05-28 12:13:24',2,'2006-02-15 21:30:53'), +(98,'2005-05-25 16:48:24',2970,269,'2005-05-27 11:29:24',2,'2006-02-15 21:30:53'), +(99,'2005-05-25 16:50:20',535,44,'2005-05-28 18:52:20',1,'2006-02-15 21:30:53'), +(100,'2005-05-25 16:50:28',2599,208,'2005-06-02 22:11:28',1,'2006-02-15 21:30:53'), +(101,'2005-05-25 17:17:04',617,468,'2005-05-31 19:47:04',1,'2006-02-15 21:30:53'), +(102,'2005-05-25 17:22:10',373,343,'2005-05-31 19:47:10',1,'2006-02-15 21:30:53'), +(103,'2005-05-25 17:30:42',3343,384,'2005-06-03 22:36:42',1,'2006-02-15 21:30:53'), +(104,'2005-05-25 17:46:33',4281,310,'2005-05-27 15:20:33',1,'2006-02-15 21:30:53'), +(105,'2005-05-25 17:54:12',794,108,'2005-05-30 12:03:12',2,'2006-02-15 21:30:53'), +(106,'2005-05-25 18:18:19',3627,196,'2005-06-04 00:01:19',2,'2006-02-15 21:30:53'), +(107,'2005-05-25 18:28:09',2833,317,'2005-06-03 22:46:09',2,'2006-02-15 21:30:53'), +(108,'2005-05-25 18:30:05',3289,242,'2005-05-30 19:40:05',1,'2006-02-15 21:30:53'), +(109,'2005-05-25 18:40:20',1044,503,'2005-05-29 20:39:20',2,'2006-02-15 21:30:53'), +(110,'2005-05-25 18:43:49',4108,19,'2005-06-03 18:13:49',2,'2006-02-15 21:30:53'), +(111,'2005-05-25 18:45:19',3725,227,'2005-05-28 17:18:19',1,'2006-02-15 21:30:53'), +(112,'2005-05-25 18:57:24',2153,500,'2005-06-02 20:44:24',1,'2006-02-15 21:30:53'), +(113,'2005-05-25 19:07:40',2963,93,'2005-05-27 22:16:40',2,'2006-02-15 21:30:53'), +(114,'2005-05-25 19:12:42',4502,506,'2005-06-01 23:10:42',1,'2006-02-15 21:30:53'), +(115,'2005-05-25 19:13:25',749,455,'2005-05-29 20:17:25',1,'2006-02-15 21:30:53'), +(116,'2005-05-25 19:27:51',4453,18,'2005-05-26 16:23:51',1,'2006-02-15 21:30:53'), +(117,'2005-05-25 19:30:46',4278,7,'2005-05-31 23:59:46',2,'2006-02-15 21:30:53'), +(118,'2005-05-25 19:31:18',872,524,'2005-05-31 15:00:18',1,'2006-02-15 21:30:53'), +(119,'2005-05-25 19:37:02',1359,51,'2005-05-29 23:51:02',2,'2006-02-15 21:30:53'), +(120,'2005-05-25 19:37:47',37,365,'2005-06-01 23:29:47',2,'2006-02-15 21:30:53'), +(121,'2005-05-25 19:41:29',1053,405,'2005-05-29 21:31:29',1,'2006-02-15 21:30:53'), +(122,'2005-05-25 19:46:21',2908,273,'2005-06-02 19:07:21',1,'2006-02-15 21:30:53'), +(123,'2005-05-25 20:26:42',1795,43,'2005-05-26 19:41:42',1,'2006-02-15 21:30:53'), +(124,'2005-05-25 20:46:11',212,246,'2005-05-30 00:47:11',2,'2006-02-15 21:30:53'), +(125,'2005-05-25 20:48:50',952,368,'2005-06-02 21:39:50',1,'2006-02-15 21:30:53'), +(126,'2005-05-25 21:07:59',2047,439,'2005-05-28 18:51:59',1,'2006-02-15 21:30:53'), +(127,'2005-05-25 21:10:40',2026,94,'2005-06-02 21:38:40',1,'2006-02-15 21:30:53'), +(128,'2005-05-25 21:19:53',4322,40,'2005-05-29 23:34:53',1,'2006-02-15 21:30:53'), +(129,'2005-05-25 21:20:03',4154,23,'2005-06-04 01:25:03',2,'2006-02-15 21:30:53'), +(130,'2005-05-25 21:21:56',3990,56,'2005-05-30 22:41:56',2,'2006-02-15 21:30:53'), +(131,'2005-05-25 21:42:46',815,325,'2005-05-30 23:25:46',2,'2006-02-15 21:30:53'), +(132,'2005-05-25 21:46:54',3367,479,'2005-05-31 21:02:54',1,'2006-02-15 21:30:53'), +(133,'2005-05-25 21:48:30',399,237,'2005-05-30 00:26:30',2,'2006-02-15 21:30:53'), +(134,'2005-05-25 21:48:41',2272,222,'2005-06-02 18:28:41',1,'2006-02-15 21:30:53'), +(135,'2005-05-25 21:58:58',103,304,'2005-06-03 17:50:58',1,'2006-02-15 21:30:53'), +(136,'2005-05-25 22:02:30',2296,504,'2005-05-31 18:06:30',1,'2006-02-15 21:30:53'), +(137,'2005-05-25 22:25:18',2591,560,'2005-06-01 02:30:18',2,'2006-02-15 21:30:53'), +(138,'2005-05-25 22:48:22',4134,586,'2005-05-29 20:21:22',2,'2006-02-15 21:30:53'), +(139,'2005-05-25 23:00:21',327,257,'2005-05-29 17:12:21',1,'2006-02-15 21:30:53'), +(140,'2005-05-25 23:34:22',655,354,'2005-05-27 01:10:22',1,'2006-02-15 21:30:53'), +(141,'2005-05-25 23:34:53',811,89,'2005-06-02 01:57:53',1,'2006-02-15 21:30:53'), +(142,'2005-05-25 23:43:47',4407,472,'2005-05-29 00:46:47',2,'2006-02-15 21:30:53'), +(143,'2005-05-25 23:45:52',847,297,'2005-05-27 21:41:52',2,'2006-02-15 21:30:53'), +(144,'2005-05-25 23:49:56',1689,357,'2005-06-01 21:41:56',2,'2006-02-15 21:30:53'), +(145,'2005-05-25 23:59:03',3905,82,'2005-05-31 02:56:03',1,'2006-02-15 21:30:53'), +(146,'2005-05-26 00:07:11',1431,433,'2005-06-04 00:20:11',2,'2006-02-15 21:30:53'), +(147,'2005-05-26 00:17:50',633,274,'2005-05-29 23:21:50',2,'2006-02-15 21:30:53'), +(148,'2005-05-26 00:25:23',4252,142,'2005-06-01 19:29:23',2,'2006-02-15 21:30:53'), +(149,'2005-05-26 00:28:05',1084,319,'2005-06-02 21:30:05',2,'2006-02-15 21:30:53'), +(150,'2005-05-26 00:28:39',909,429,'2005-06-01 02:10:39',2,'2006-02-15 21:30:53'), +(151,'2005-05-26 00:37:28',2942,14,'2005-05-30 06:28:28',1,'2006-02-15 21:30:53'), +(152,'2005-05-26 00:41:10',2622,57,'2005-06-03 06:05:10',1,'2006-02-15 21:30:53'), +(153,'2005-05-26 00:47:47',3888,348,'2005-05-27 21:28:47',1,'2006-02-15 21:30:53'), +(154,'2005-05-26 00:55:56',1354,185,'2005-05-29 23:18:56',2,'2006-02-15 21:30:53'), +(155,'2005-05-26 01:15:05',288,551,'2005-06-01 00:03:05',1,'2006-02-15 21:30:53'), +(156,'2005-05-26 01:19:05',3193,462,'2005-05-27 23:43:05',1,'2006-02-15 21:30:53'), +(157,'2005-05-26 01:25:21',887,344,'2005-05-26 21:17:21',2,'2006-02-15 21:30:53'), +(158,'2005-05-26 01:27:11',2395,354,'2005-06-03 00:30:11',2,'2006-02-15 21:30:53'), +(159,'2005-05-26 01:34:28',3453,505,'2005-05-29 04:00:28',1,'2006-02-15 21:30:53'), +(160,'2005-05-26 01:46:20',1885,290,'2005-06-01 05:45:20',1,'2006-02-15 21:30:53'), +(161,'2005-05-26 01:51:48',2941,182,'2005-05-27 05:42:48',1,'2006-02-15 21:30:53'), +(162,'2005-05-26 02:02:05',1229,296,'2005-05-27 03:38:05',2,'2006-02-15 21:30:53'), +(163,'2005-05-26 02:26:23',2306,104,'2005-06-04 06:36:23',1,'2006-02-15 21:30:53'), +(164,'2005-05-26 02:26:49',1070,151,'2005-05-28 00:32:49',1,'2006-02-15 21:30:53'), +(165,'2005-05-26 02:28:36',2735,33,'2005-06-02 03:21:36',1,'2006-02-15 21:30:53'), +(166,'2005-05-26 02:49:11',3894,322,'2005-05-31 01:28:11',1,'2006-02-15 21:30:53'), +(167,'2005-05-26 02:50:31',865,401,'2005-05-27 03:07:31',1,'2006-02-15 21:30:53'), +(168,'2005-05-26 03:07:43',2714,469,'2005-06-02 02:09:43',2,'2006-02-15 21:30:53'), +(169,'2005-05-26 03:09:30',1758,381,'2005-05-27 01:37:30',2,'2006-02-15 21:30:53'), +(170,'2005-05-26 03:11:12',3688,107,'2005-06-02 03:53:12',1,'2006-02-15 21:30:53'), +(171,'2005-05-26 03:14:15',4483,400,'2005-06-03 00:24:15',2,'2006-02-15 21:30:53'), +(172,'2005-05-26 03:17:42',2873,176,'2005-05-29 04:11:42',2,'2006-02-15 21:30:53'), +(173,'2005-05-26 03:42:10',3596,533,'2005-05-28 01:37:10',2,'2006-02-15 21:30:53'), +(174,'2005-05-26 03:44:10',3954,552,'2005-05-28 07:13:10',2,'2006-02-15 21:30:53'), +(175,'2005-05-26 03:46:26',4346,47,'2005-06-03 06:01:26',2,'2006-02-15 21:30:53'), +(176,'2005-05-26 03:47:39',851,250,'2005-06-01 02:36:39',2,'2006-02-15 21:30:53'), +(177,'2005-05-26 04:14:29',3545,548,'2005-06-01 08:16:29',2,'2006-02-15 21:30:53'), +(178,'2005-05-26 04:21:46',1489,196,'2005-06-04 07:09:46',2,'2006-02-15 21:30:53'), +(179,'2005-05-26 04:26:06',2575,19,'2005-06-03 10:06:06',1,'2006-02-15 21:30:53'), +(180,'2005-05-26 04:46:23',2752,75,'2005-06-01 09:58:23',1,'2006-02-15 21:30:53'), +(181,'2005-05-26 04:47:06',2417,587,'2005-05-29 06:34:06',2,'2006-02-15 21:30:53'), +(182,'2005-05-26 04:49:17',4396,237,'2005-06-01 05:43:17',2,'2006-02-15 21:30:53'), +(183,'2005-05-26 05:01:18',2877,254,'2005-06-01 09:04:18',1,'2006-02-15 21:30:53'), +(184,'2005-05-26 05:29:49',1970,556,'2005-05-28 10:10:49',1,'2006-02-15 21:30:53'), +(185,'2005-05-26 05:30:03',2598,125,'2005-06-02 09:48:03',2,'2006-02-15 21:30:53'), +(186,'2005-05-26 05:32:52',1799,468,'2005-06-03 07:19:52',2,'2006-02-15 21:30:53'), +(187,'2005-05-26 05:42:37',4004,515,'2005-06-04 00:38:37',1,'2006-02-15 21:30:53'), +(188,'2005-05-26 05:47:12',3342,243,'2005-05-26 23:48:12',1,'2006-02-15 21:30:53'), +(189,'2005-05-26 06:01:41',984,247,'2005-05-27 06:11:41',1,'2006-02-15 21:30:53'), +(190,'2005-05-26 06:11:28',3962,533,'2005-06-01 09:44:28',1,'2006-02-15 21:30:53'), +(191,'2005-05-26 06:14:06',4365,412,'2005-05-28 05:33:06',1,'2006-02-15 21:30:53'), +(192,'2005-05-26 06:20:37',1897,437,'2005-06-02 10:57:37',1,'2006-02-15 21:30:53'), +(193,'2005-05-26 06:41:48',3900,270,'2005-05-30 06:21:48',2,'2006-02-15 21:30:53'), +(194,'2005-05-26 06:52:33',1337,29,'2005-05-30 04:08:33',2,'2006-02-15 21:30:53'), +(195,'2005-05-26 06:52:36',506,564,'2005-05-31 02:47:36',2,'2006-02-15 21:30:53'), +(196,'2005-05-26 06:55:58',190,184,'2005-05-27 10:54:58',1,'2006-02-15 21:30:53'), +(197,'2005-05-26 06:59:21',4212,546,'2005-06-03 05:04:21',2,'2006-02-15 21:30:53'), +(198,'2005-05-26 07:03:49',1789,54,'2005-06-04 11:45:49',1,'2006-02-15 21:30:53'), +(199,'2005-05-26 07:11:58',2135,71,'2005-05-28 09:06:58',1,'2006-02-15 21:30:53'), +(200,'2005-05-26 07:12:21',3926,321,'2005-05-31 12:07:21',1,'2006-02-15 21:30:53'), +(201,'2005-05-26 07:13:45',776,444,'2005-06-04 02:02:45',2,'2006-02-15 21:30:53'), +(202,'2005-05-26 07:27:36',674,20,'2005-06-02 03:52:36',1,'2006-02-15 21:30:53'), +(203,'2005-05-26 07:27:57',3374,109,'2005-06-03 12:52:57',1,'2006-02-15 21:30:53'), +(204,'2005-05-26 07:30:37',1842,528,'2005-05-30 08:11:37',1,'2006-02-15 21:30:53'), +(205,'2005-05-26 07:59:37',303,114,'2005-05-29 09:43:37',2,'2006-02-15 21:30:53'), +(206,'2005-05-26 08:01:54',1717,345,'2005-05-27 06:26:54',1,'2006-02-15 21:30:53'), +(207,'2005-05-26 08:04:38',102,47,'2005-05-27 09:32:38',2,'2006-02-15 21:30:53'), +(208,'2005-05-26 08:10:22',3669,274,'2005-05-27 03:55:22',1,'2006-02-15 21:30:53'), +(209,'2005-05-26 08:14:01',729,379,'2005-05-27 09:00:01',1,'2006-02-15 21:30:53'), +(210,'2005-05-26 08:14:15',1801,391,'2005-05-27 12:12:15',2,'2006-02-15 21:30:53'), +(211,'2005-05-26 08:33:10',4005,170,'2005-05-28 14:09:10',1,'2006-02-15 21:30:53'), +(212,'2005-05-26 08:34:41',764,59,'2005-05-30 12:46:41',2,'2006-02-15 21:30:53'), +(213,'2005-05-26 08:44:08',1505,394,'2005-05-31 12:33:08',2,'2006-02-15 21:30:53'), +(214,'2005-05-26 08:48:49',1453,98,'2005-05-31 04:06:49',2,'2006-02-15 21:30:53'), +(215,'2005-05-26 09:02:47',679,197,'2005-05-28 09:45:47',2,'2006-02-15 21:30:53'), +(216,'2005-05-26 09:17:43',1398,91,'2005-06-03 08:21:43',1,'2006-02-15 21:30:53'), +(217,'2005-05-26 09:24:26',4395,121,'2005-05-31 03:24:26',2,'2006-02-15 21:30:53'), +(218,'2005-05-26 09:27:09',2291,309,'2005-06-04 11:53:09',2,'2006-02-15 21:30:53'), +(219,'2005-05-26 09:41:45',3074,489,'2005-05-28 04:40:45',1,'2006-02-15 21:30:53'), +(220,'2005-05-26 10:06:49',1259,542,'2005-06-01 07:43:49',1,'2006-02-15 21:30:53'), +(221,'2005-05-26 10:14:09',3578,143,'2005-05-29 05:57:09',1,'2006-02-15 21:30:53'), +(222,'2005-05-26 10:14:38',2745,83,'2005-05-31 08:36:38',2,'2006-02-15 21:30:53'), +(223,'2005-05-26 10:15:23',3121,460,'2005-05-30 11:43:23',1,'2006-02-15 21:30:53'), +(224,'2005-05-26 10:18:27',4285,318,'2005-06-04 06:59:27',1,'2006-02-15 21:30:53'), +(225,'2005-05-26 10:27:50',651,467,'2005-06-01 07:01:50',2,'2006-02-15 21:30:53'), +(226,'2005-05-26 10:44:04',4181,221,'2005-05-31 13:26:04',2,'2006-02-15 21:30:53'), +(227,'2005-05-26 10:51:46',214,301,'2005-05-30 07:24:46',1,'2006-02-15 21:30:53'), +(228,'2005-05-26 10:54:28',511,571,'2005-06-04 09:39:28',1,'2006-02-15 21:30:53'), +(229,'2005-05-26 11:19:20',1131,312,'2005-05-31 11:56:20',2,'2006-02-15 21:30:53'), +(230,'2005-05-26 11:31:50',1085,58,'2005-05-30 15:22:50',1,'2006-02-15 21:30:53'), +(231,'2005-05-26 11:31:59',4032,365,'2005-05-27 07:27:59',1,'2006-02-15 21:30:53'), +(232,'2005-05-26 11:38:05',2945,256,'2005-05-27 08:42:05',2,'2006-02-15 21:30:53'), +(233,'2005-05-26 11:43:44',715,531,'2005-05-28 17:28:44',2,'2006-02-15 21:30:53'), +(234,'2005-05-26 11:47:20',1321,566,'2005-06-03 10:39:20',2,'2006-02-15 21:30:53'), +(235,'2005-05-26 11:51:09',3537,119,'2005-06-04 09:36:09',1,'2006-02-15 21:30:53'), +(236,'2005-05-26 11:53:49',1265,446,'2005-05-28 13:55:49',1,'2006-02-15 21:30:53'), +(237,'2005-05-26 12:15:13',241,536,'2005-05-29 18:10:13',1,'2006-02-15 21:30:53'), +(238,'2005-05-26 12:30:22',503,211,'2005-05-27 06:49:22',1,'2006-02-15 21:30:53'), +(239,'2005-05-26 12:30:26',131,49,'2005-06-01 13:26:26',2,'2006-02-15 21:30:53'), +(240,'2005-05-26 12:40:23',3420,103,'2005-06-04 07:22:23',1,'2006-02-15 21:30:53'), +(241,'2005-05-26 12:49:01',4438,245,'2005-05-28 11:43:01',2,'2006-02-15 21:30:53'), +(242,'2005-05-26 13:05:08',2095,214,'2005-06-02 15:26:08',1,'2006-02-15 21:30:53'), +(243,'2005-05-26 13:06:05',1721,543,'2005-06-03 17:28:05',2,'2006-02-15 21:30:53'), +(244,'2005-05-26 13:40:40',1041,257,'2005-05-31 11:58:40',1,'2006-02-15 21:30:53'), +(245,'2005-05-26 13:46:59',3045,158,'2005-05-27 09:58:59',2,'2006-02-15 21:30:53'), +(246,'2005-05-26 13:57:07',2829,240,'2005-05-29 10:12:07',2,'2006-02-15 21:30:53'), +(247,'2005-05-26 14:01:05',4095,102,'2005-05-28 13:38:05',2,'2006-02-15 21:30:53'), +(248,'2005-05-26 14:07:58',1913,545,'2005-05-31 14:03:58',2,'2006-02-15 21:30:53'), +(249,'2005-05-26 14:19:09',2428,472,'2005-05-28 17:47:09',2,'2006-02-15 21:30:53'), +(250,'2005-05-26 14:30:24',368,539,'2005-05-27 08:50:24',1,'2006-02-15 21:30:53'), +(251,'2005-05-26 14:35:40',4352,204,'2005-05-29 17:17:40',1,'2006-02-15 21:30:53'), +(252,'2005-05-26 14:39:53',1203,187,'2005-06-02 14:48:53',1,'2006-02-15 21:30:53'), +(253,'2005-05-26 14:43:14',2969,416,'2005-05-27 12:21:14',1,'2006-02-15 21:30:53'), +(254,'2005-05-26 14:43:48',1835,390,'2005-05-31 09:19:48',2,'2006-02-15 21:30:53'), +(255,'2005-05-26 14:52:15',3264,114,'2005-05-27 12:45:15',1,'2006-02-15 21:30:53'), +(256,'2005-05-26 15:20:58',3194,436,'2005-05-31 15:58:58',1,'2006-02-15 21:30:53'), +(257,'2005-05-26 15:27:05',2570,373,'2005-05-29 16:25:05',2,'2006-02-15 21:30:53'), +(258,'2005-05-26 15:28:14',3534,502,'2005-05-30 18:38:14',2,'2006-02-15 21:30:53'), +(259,'2005-05-26 15:32:46',30,482,'2005-06-04 15:27:46',2,'2006-02-15 21:30:53'), +(260,'2005-05-26 15:42:20',435,21,'2005-05-31 13:21:20',2,'2006-02-15 21:30:53'), +(261,'2005-05-26 15:44:23',1369,414,'2005-06-02 09:47:23',2,'2006-02-15 21:30:53'), +(262,'2005-05-26 15:46:56',4261,236,'2005-05-28 15:49:56',2,'2006-02-15 21:30:53'), +(263,'2005-05-26 15:47:40',1160,449,'2005-05-30 10:07:40',2,'2006-02-15 21:30:53'), +(264,'2005-05-26 16:00:49',2069,251,'2005-05-27 10:12:49',2,'2006-02-15 21:30:53'), +(265,'2005-05-26 16:07:38',2276,303,'2005-06-01 14:20:38',1,'2006-02-15 21:30:53'), +(266,'2005-05-26 16:08:05',3303,263,'2005-05-27 10:55:05',2,'2006-02-15 21:30:53'), +(267,'2005-05-26 16:16:21',1206,417,'2005-05-30 16:53:21',2,'2006-02-15 21:30:53'), +(268,'2005-05-26 16:19:08',1714,75,'2005-05-27 14:35:08',1,'2006-02-15 21:30:53'), +(269,'2005-05-26 16:19:46',3501,322,'2005-05-27 15:59:46',2,'2006-02-15 21:30:53'), +(270,'2005-05-26 16:20:56',207,200,'2005-06-03 12:40:56',2,'2006-02-15 21:30:53'), +(271,'2005-05-26 16:22:01',2388,92,'2005-06-03 17:30:01',2,'2006-02-15 21:30:53'), +(272,'2005-05-26 16:27:11',971,71,'2005-06-03 13:10:11',2,'2006-02-15 21:30:53'), +(273,'2005-05-26 16:29:36',1590,193,'2005-05-29 18:49:36',2,'2006-02-15 21:30:53'), +(274,'2005-05-26 16:48:51',656,311,'2005-06-03 18:17:51',1,'2006-02-15 21:30:53'), +(275,'2005-05-26 17:09:53',1718,133,'2005-06-04 22:35:53',1,'2006-02-15 21:30:53'), +(276,'2005-05-26 17:16:07',1221,58,'2005-06-03 12:59:07',1,'2006-02-15 21:30:53'), +(277,'2005-05-26 17:32:11',1409,45,'2005-05-28 22:54:11',1,'2006-02-15 21:30:53'), +(278,'2005-05-26 17:40:58',182,214,'2005-06-02 16:43:58',2,'2006-02-15 21:30:53'), +(279,'2005-05-26 18:02:50',661,384,'2005-06-03 18:48:50',2,'2006-02-15 21:30:53'), +(280,'2005-05-26 18:36:58',1896,167,'2005-05-27 23:42:58',1,'2006-02-15 21:30:53'), +(281,'2005-05-26 18:49:35',1208,582,'2005-05-27 18:11:35',2,'2006-02-15 21:30:53'), +(282,'2005-05-26 18:56:26',4486,282,'2005-06-01 16:32:26',2,'2006-02-15 21:30:53'), +(283,'2005-05-26 19:05:05',3530,242,'2005-05-31 19:19:05',1,'2006-02-15 21:30:53'), +(284,'2005-05-26 19:21:44',350,359,'2005-06-04 14:18:44',2,'2006-02-15 21:30:53'), +(285,'2005-05-26 19:41:40',2486,162,'2005-05-31 16:58:40',2,'2006-02-15 21:30:53'), +(286,'2005-05-26 19:44:51',314,371,'2005-06-04 18:00:51',2,'2006-02-15 21:30:53'), +(287,'2005-05-26 19:44:54',3631,17,'2005-06-02 01:10:54',1,'2006-02-15 21:30:53'), +(288,'2005-05-26 19:47:49',3546,82,'2005-06-03 20:53:49',2,'2006-02-15 21:30:53'), +(289,'2005-05-26 20:01:09',2449,81,'2005-05-28 15:09:09',1,'2006-02-15 21:30:53'), +(290,'2005-05-26 20:08:33',2776,429,'2005-05-30 00:32:33',1,'2006-02-15 21:30:53'), +(291,'2005-05-26 20:20:47',485,577,'2005-06-03 02:06:47',2,'2006-02-15 21:30:53'), +(292,'2005-05-26 20:22:12',4264,515,'2005-06-05 00:58:12',1,'2006-02-15 21:30:53'), +(293,'2005-05-26 20:27:02',1828,158,'2005-06-03 16:45:02',2,'2006-02-15 21:30:53'), +(294,'2005-05-26 20:29:57',2751,369,'2005-05-28 17:20:57',1,'2006-02-15 21:30:53'), +(295,'2005-05-26 20:33:20',4030,65,'2005-05-27 18:23:20',2,'2006-02-15 21:30:53'), +(296,'2005-05-26 20:35:19',3878,468,'2005-06-04 02:31:19',2,'2006-02-15 21:30:53'), +(297,'2005-05-26 20:48:48',1594,48,'2005-05-27 19:52:48',2,'2006-02-15 21:30:53'), +(298,'2005-05-26 20:52:26',1083,460,'2005-05-29 22:08:26',2,'2006-02-15 21:30:53'), +(299,'2005-05-26 20:55:36',4376,448,'2005-05-28 00:25:36',2,'2006-02-15 21:30:53'), +(300,'2005-05-26 20:57:00',249,47,'2005-06-05 01:34:00',2,'2006-02-15 21:30:53'), +(301,'2005-05-26 21:06:14',3448,274,'2005-06-01 01:54:14',2,'2006-02-15 21:30:53'), +(302,'2005-05-26 21:13:46',2921,387,'2005-06-03 15:49:46',2,'2006-02-15 21:30:53'), +(303,'2005-05-26 21:16:52',1111,596,'2005-05-27 23:41:52',2,'2006-02-15 21:30:53'), +(304,'2005-05-26 21:21:28',1701,534,'2005-06-02 00:05:28',1,'2006-02-15 21:30:53'), +(305,'2005-05-26 21:22:07',2665,464,'2005-06-02 22:33:07',2,'2006-02-15 21:30:53'), +(306,'2005-05-26 21:31:57',2781,547,'2005-05-28 19:37:57',1,'2006-02-15 21:30:53'), +(307,'2005-05-26 21:48:13',1097,375,'2005-06-04 22:24:13',1,'2006-02-15 21:30:53'), +(308,'2005-05-26 22:01:39',187,277,'2005-06-04 20:24:39',2,'2006-02-15 21:30:53'), +(309,'2005-05-26 22:38:10',1946,251,'2005-06-02 03:10:10',2,'2006-02-15 21:30:53'), +(310,'2005-05-26 22:41:07',593,409,'2005-06-02 04:09:07',1,'2006-02-15 21:30:53'), +(311,'2005-05-26 22:51:37',2830,201,'2005-06-01 00:02:37',1,'2006-02-15 21:30:53'), +(312,'2005-05-26 22:52:19',2008,143,'2005-06-02 18:14:19',2,'2006-02-15 21:30:53'), +(313,'2005-05-26 22:56:19',4156,594,'2005-05-29 01:29:19',2,'2006-02-15 21:30:53'), +(314,'2005-05-26 23:09:41',2851,203,'2005-05-28 22:49:41',2,'2006-02-15 21:30:53'), +(315,'2005-05-26 23:12:55',2847,238,'2005-05-29 23:33:55',1,'2006-02-15 21:30:53'), +(316,'2005-05-26 23:22:55',3828,249,'2005-05-29 23:25:55',2,'2006-02-15 21:30:53'), +(317,'2005-05-26 23:23:56',26,391,'2005-06-01 19:56:56',2,'2006-02-15 21:30:53'), +(318,'2005-05-26 23:37:39',2559,60,'2005-06-03 04:31:39',2,'2006-02-15 21:30:53'), +(319,'2005-05-26 23:52:13',3024,77,'2005-05-30 18:55:13',1,'2006-02-15 21:30:53'), +(320,'2005-05-27 00:09:24',1090,2,'2005-05-28 04:30:24',2,'2006-02-15 21:30:53'), +(322,'2005-05-27 00:47:35',4556,496,'2005-06-02 00:32:35',1,'2006-02-15 21:30:53'), +(323,'2005-05-27 00:49:27',2362,144,'2005-05-30 03:12:27',1,'2006-02-15 21:30:53'), +(324,'2005-05-27 01:00:04',3364,292,'2005-05-30 04:27:04',1,'2006-02-15 21:30:53'), +(325,'2005-05-27 01:09:55',2510,449,'2005-05-31 07:01:55',2,'2006-02-15 21:30:53'), +(326,'2005-05-27 01:10:11',3979,432,'2005-06-04 20:25:11',2,'2006-02-15 21:30:53'), +(327,'2005-05-27 01:18:57',2678,105,'2005-06-04 04:06:57',1,'2006-02-15 21:30:53'), +(328,'2005-05-27 01:29:31',2524,451,'2005-06-01 02:27:31',1,'2006-02-15 21:30:53'), +(329,'2005-05-27 01:57:14',2659,231,'2005-05-31 04:19:14',2,'2006-02-15 21:30:53'), +(330,'2005-05-27 02:15:30',1536,248,'2005-06-04 05:09:30',2,'2006-02-15 21:30:53'), +(331,'2005-05-27 02:22:26',1872,67,'2005-06-05 00:25:26',1,'2006-02-15 21:30:53'), +(332,'2005-05-27 02:27:10',1529,299,'2005-06-03 01:26:10',2,'2006-02-15 21:30:53'), +(333,'2005-05-27 02:52:21',4001,412,'2005-06-01 00:55:21',2,'2006-02-15 21:30:53'), +(334,'2005-05-27 03:03:07',3973,194,'2005-05-29 03:54:07',1,'2006-02-15 21:30:53'), +(335,'2005-05-27 03:07:10',1411,16,'2005-06-05 00:15:10',2,'2006-02-15 21:30:53'), +(336,'2005-05-27 03:15:23',1811,275,'2005-05-29 22:43:23',1,'2006-02-15 21:30:53'), +(337,'2005-05-27 03:22:30',751,19,'2005-06-02 03:27:30',1,'2006-02-15 21:30:53'), +(338,'2005-05-27 03:42:52',2596,165,'2005-06-01 05:23:52',2,'2006-02-15 21:30:53'), +(339,'2005-05-27 03:47:18',2410,516,'2005-06-04 05:46:18',2,'2006-02-15 21:30:53'), +(340,'2005-05-27 03:55:25',946,209,'2005-06-04 07:57:25',2,'2006-02-15 21:30:53'), +(341,'2005-05-27 04:01:42',4168,56,'2005-06-05 08:51:42',1,'2006-02-15 21:30:53'), +(342,'2005-05-27 04:11:04',4019,539,'2005-05-29 01:28:04',2,'2006-02-15 21:30:53'), +(343,'2005-05-27 04:13:41',3301,455,'2005-05-28 08:34:41',1,'2006-02-15 21:30:53'), +(344,'2005-05-27 04:30:22',2327,236,'2005-05-29 10:13:22',2,'2006-02-15 21:30:53'), +(345,'2005-05-27 04:32:25',1396,144,'2005-05-31 09:50:25',1,'2006-02-15 21:30:53'), +(346,'2005-05-27 04:34:41',4319,14,'2005-06-05 04:24:41',2,'2006-02-15 21:30:53'), +(347,'2005-05-27 04:40:33',1625,378,'2005-05-28 09:56:33',2,'2006-02-15 21:30:53'), +(348,'2005-05-27 04:50:56',1825,473,'2005-06-01 04:43:56',1,'2006-02-15 21:30:53'), +(349,'2005-05-27 04:53:11',2920,36,'2005-05-28 06:33:11',2,'2006-02-15 21:30:53'), +(350,'2005-05-27 05:01:28',2756,9,'2005-06-04 05:01:28',2,'2006-02-15 21:30:53'), +(351,'2005-05-27 05:39:03',3371,118,'2005-06-01 11:10:03',1,'2006-02-15 21:30:53'), +(352,'2005-05-27 05:48:19',4369,157,'2005-05-29 09:05:19',1,'2006-02-15 21:30:53'), +(353,'2005-05-27 06:03:39',3989,503,'2005-06-03 04:39:39',2,'2006-02-15 21:30:53'), +(354,'2005-05-27 06:12:26',2058,452,'2005-06-01 06:48:26',1,'2006-02-15 21:30:53'), +(355,'2005-05-27 06:15:33',141,446,'2005-06-01 02:50:33',2,'2006-02-15 21:30:53'), +(356,'2005-05-27 06:32:30',2868,382,'2005-05-30 06:24:30',2,'2006-02-15 21:30:53'), +(357,'2005-05-27 06:37:15',4417,198,'2005-05-30 07:04:15',2,'2006-02-15 21:30:53'), +(358,'2005-05-27 06:43:59',1925,102,'2005-05-29 11:28:59',2,'2006-02-15 21:30:53'), +(359,'2005-05-27 06:48:33',1156,152,'2005-05-29 03:55:33',1,'2006-02-15 21:30:53'), +(360,'2005-05-27 06:51:14',3489,594,'2005-06-03 01:58:14',1,'2006-02-15 21:30:53'), +(361,'2005-05-27 07:03:28',6,587,'2005-05-31 08:01:28',1,'2006-02-15 21:30:53'), +(362,'2005-05-27 07:10:25',2324,147,'2005-06-01 08:34:25',1,'2006-02-15 21:30:53'), +(363,'2005-05-27 07:14:00',4282,345,'2005-05-28 12:22:00',2,'2006-02-15 21:30:53'), +(364,'2005-05-27 07:20:12',833,430,'2005-05-31 10:44:12',2,'2006-02-15 21:30:53'), +(365,'2005-05-27 07:31:20',2887,167,'2005-06-04 04:46:20',1,'2006-02-15 21:30:53'), +(366,'2005-05-27 07:33:54',360,134,'2005-06-04 01:55:54',2,'2006-02-15 21:30:53'), +(367,'2005-05-27 07:37:02',3437,439,'2005-05-30 05:43:02',2,'2006-02-15 21:30:53'), +(368,'2005-05-27 07:42:29',1247,361,'2005-06-04 11:20:29',2,'2006-02-15 21:30:53'), +(369,'2005-05-27 07:46:49',944,508,'2005-06-01 06:20:49',2,'2006-02-15 21:30:53'), +(370,'2005-05-27 07:49:43',3347,22,'2005-06-05 06:39:43',2,'2006-02-15 21:30:53'), +(371,'2005-05-27 08:08:18',1235,295,'2005-06-05 03:05:18',2,'2006-02-15 21:30:53'), +(372,'2005-05-27 08:13:58',4089,510,'2005-06-04 03:50:58',2,'2006-02-15 21:30:53'), +(373,'2005-05-27 08:16:25',1649,464,'2005-06-01 11:41:25',1,'2006-02-15 21:30:53'), +(374,'2005-05-27 08:26:30',4420,337,'2005-06-05 07:13:30',1,'2006-02-15 21:30:53'), +(375,'2005-05-27 08:49:21',1815,306,'2005-06-04 14:11:21',1,'2006-02-15 21:30:53'), +(376,'2005-05-27 08:58:15',3197,542,'2005-06-02 04:48:15',1,'2006-02-15 21:30:53'), +(377,'2005-05-27 09:04:05',3012,170,'2005-06-02 03:36:05',2,'2006-02-15 21:30:53'), +(378,'2005-05-27 09:23:22',2242,53,'2005-05-29 15:20:22',1,'2006-02-15 21:30:53'), +(379,'2005-05-27 09:25:32',3462,584,'2005-06-02 06:19:32',1,'2006-02-15 21:30:53'), +(380,'2005-05-27 09:34:39',1777,176,'2005-06-04 11:45:39',1,'2006-02-15 21:30:53'), +(381,'2005-05-27 09:43:25',2748,371,'2005-05-31 12:00:25',1,'2006-02-15 21:30:53'), +(382,'2005-05-27 10:12:00',4358,183,'2005-05-31 15:03:00',1,'2006-02-15 21:30:53'), +(383,'2005-05-27 10:12:20',955,298,'2005-06-03 10:37:20',1,'2006-02-15 21:30:53'), +(384,'2005-05-27 10:18:20',910,371,'2005-06-02 09:21:20',2,'2006-02-15 21:30:53'), +(385,'2005-05-27 10:23:25',1565,213,'2005-05-30 15:27:25',2,'2006-02-15 21:30:53'), +(386,'2005-05-27 10:26:31',1288,109,'2005-05-30 08:32:31',1,'2006-02-15 21:30:53'), +(387,'2005-05-27 10:35:27',2684,506,'2005-06-01 13:37:27',2,'2006-02-15 21:30:53'), +(388,'2005-05-27 10:37:27',434,28,'2005-05-30 05:45:27',1,'2006-02-15 21:30:53'), +(389,'2005-05-27 10:45:41',691,500,'2005-06-05 06:22:41',2,'2006-02-15 21:30:53'), +(390,'2005-05-27 11:02:26',3759,48,'2005-06-02 16:09:26',2,'2006-02-15 21:30:53'), +(391,'2005-05-27 11:03:55',2193,197,'2005-06-01 11:59:55',2,'2006-02-15 21:30:53'), +(392,'2005-05-27 11:14:42',263,359,'2005-06-01 14:28:42',2,'2006-02-15 21:30:53'), +(393,'2005-05-27 11:18:25',145,251,'2005-05-28 07:10:25',2,'2006-02-15 21:30:53'), +(394,'2005-05-27 11:26:11',1890,274,'2005-06-03 16:44:11',2,'2006-02-15 21:30:53'), +(395,'2005-05-27 11:45:49',752,575,'2005-05-31 13:42:49',1,'2006-02-15 21:30:53'), +(396,'2005-05-27 11:47:04',1020,112,'2005-05-29 10:14:04',1,'2006-02-15 21:30:53'), +(397,'2005-05-27 12:29:02',4193,544,'2005-05-28 17:36:02',2,'2006-02-15 21:30:53'), +(398,'2005-05-27 12:44:03',1686,422,'2005-06-02 08:19:03',1,'2006-02-15 21:30:53'), +(399,'2005-05-27 12:48:38',553,204,'2005-05-29 15:27:38',1,'2006-02-15 21:30:53'), +(400,'2005-05-27 12:51:44',258,249,'2005-05-31 08:34:44',2,'2006-02-15 21:30:53'), +(401,'2005-05-27 12:57:55',2179,46,'2005-05-29 17:55:55',2,'2006-02-15 21:30:53'), +(402,'2005-05-27 13:17:18',461,354,'2005-05-30 08:53:18',2,'2006-02-15 21:30:53'), +(403,'2005-05-27 13:28:52',3983,424,'2005-05-29 11:47:52',2,'2006-02-15 21:30:53'), +(404,'2005-05-27 13:31:51',1293,168,'2005-05-30 16:58:51',1,'2006-02-15 21:30:53'), +(405,'2005-05-27 13:32:39',4090,272,'2005-06-05 18:53:39',2,'2006-02-15 21:30:53'), +(406,'2005-05-27 13:46:46',2136,381,'2005-05-30 12:43:46',1,'2006-02-15 21:30:53'), +(407,'2005-05-27 13:57:38',1077,44,'2005-05-31 18:23:38',1,'2006-02-15 21:30:53'), +(408,'2005-05-27 13:57:39',1438,84,'2005-05-28 11:57:39',1,'2006-02-15 21:30:53'), +(409,'2005-05-27 14:10:58',3652,220,'2005-06-02 10:40:58',2,'2006-02-15 21:30:53'), +(410,'2005-05-27 14:11:22',4010,506,'2005-06-02 20:06:22',2,'2006-02-15 21:30:53'), +(411,'2005-05-27 14:14:14',1434,388,'2005-06-03 17:39:14',1,'2006-02-15 21:30:53'), +(412,'2005-05-27 14:17:23',1400,375,'2005-05-29 15:07:23',2,'2006-02-15 21:30:53'), +(413,'2005-05-27 14:45:37',3516,307,'2005-06-03 11:11:37',1,'2006-02-15 21:30:53'), +(414,'2005-05-27 14:48:20',1019,219,'2005-05-31 14:39:20',2,'2006-02-15 21:30:53'), +(415,'2005-05-27 14:51:45',3698,304,'2005-05-28 19:07:45',2,'2006-02-15 21:30:53'), +(416,'2005-05-27 15:02:10',2371,222,'2005-05-29 10:34:10',2,'2006-02-15 21:30:53'), +(417,'2005-05-27 15:07:27',2253,475,'2005-05-29 20:01:27',2,'2006-02-15 21:30:53'), +(418,'2005-05-27 15:13:17',3063,151,'2005-06-04 12:05:17',2,'2006-02-15 21:30:53'), +(419,'2005-05-27 15:15:11',2514,77,'2005-06-02 11:53:11',1,'2006-02-15 21:30:53'), +(420,'2005-05-27 15:19:38',619,93,'2005-06-03 15:07:38',2,'2006-02-15 21:30:53'), +(421,'2005-05-27 15:30:13',2985,246,'2005-06-04 13:19:13',2,'2006-02-15 21:30:53'), +(422,'2005-05-27 15:31:55',1152,150,'2005-06-01 11:47:55',2,'2006-02-15 21:30:53'), +(423,'2005-05-27 15:32:57',1783,284,'2005-06-02 19:03:57',1,'2006-02-15 21:30:53'), +(424,'2005-05-27 15:34:01',2815,35,'2005-06-05 09:44:01',1,'2006-02-15 21:30:53'), +(425,'2005-05-27 15:51:30',1518,182,'2005-06-03 16:52:30',2,'2006-02-15 21:30:53'), +(426,'2005-05-27 15:56:57',1103,522,'2005-06-05 11:45:57',1,'2006-02-15 21:30:53'), +(427,'2005-05-27 16:10:04',1677,288,'2005-06-05 13:22:04',2,'2006-02-15 21:30:53'), +(428,'2005-05-27 16:10:58',3349,161,'2005-05-31 17:24:58',2,'2006-02-15 21:30:53'), +(429,'2005-05-27 16:21:26',129,498,'2005-06-05 20:23:26',2,'2006-02-15 21:30:53'), +(430,'2005-05-27 16:22:10',1920,190,'2005-06-05 13:10:10',1,'2006-02-15 21:30:53'), +(431,'2005-05-27 16:31:05',4507,334,'2005-06-05 11:29:05',1,'2006-02-15 21:30:53'), +(432,'2005-05-27 16:40:29',1119,46,'2005-05-29 16:20:29',1,'2006-02-15 21:30:53'), +(433,'2005-05-27 16:40:40',4364,574,'2005-05-30 19:55:40',2,'2006-02-15 21:30:53'), +(434,'2005-05-27 16:54:27',3360,246,'2005-06-04 22:26:27',1,'2006-02-15 21:30:53'), +(435,'2005-05-27 17:17:09',3328,3,'2005-06-02 11:20:09',2,'2006-02-15 21:30:53'), +(436,'2005-05-27 17:21:04',4317,267,'2005-05-30 21:26:04',2,'2006-02-15 21:30:53'), +(437,'2005-05-27 17:47:22',1800,525,'2005-06-05 14:22:22',2,'2006-02-15 21:30:53'), +(438,'2005-05-27 17:52:34',4260,249,'2005-06-05 22:23:34',2,'2006-02-15 21:30:53'), +(439,'2005-05-27 17:54:48',354,319,'2005-06-02 23:01:48',2,'2006-02-15 21:30:53'), +(440,'2005-05-27 18:00:35',4452,314,'2005-05-29 16:15:35',1,'2006-02-15 21:30:53'), +(441,'2005-05-27 18:11:05',1578,54,'2005-05-30 22:45:05',1,'2006-02-15 21:30:53'), +(442,'2005-05-27 18:12:13',1457,403,'2005-05-30 12:30:13',2,'2006-02-15 21:30:53'), +(443,'2005-05-27 18:35:20',2021,547,'2005-06-04 18:58:20',1,'2006-02-15 21:30:53'), +(444,'2005-05-27 18:39:15',723,239,'2005-06-01 15:56:15',1,'2006-02-15 21:30:53'), +(445,'2005-05-27 18:42:57',1757,293,'2005-05-30 22:35:57',2,'2006-02-15 21:30:53'), +(446,'2005-05-27 18:48:41',1955,401,'2005-06-03 16:42:41',2,'2006-02-15 21:30:53'), +(447,'2005-05-27 18:57:02',3890,133,'2005-06-05 18:38:02',1,'2006-02-15 21:30:53'), +(448,'2005-05-27 19:03:08',2671,247,'2005-06-03 20:28:08',2,'2006-02-15 21:30:53'), +(449,'2005-05-27 19:13:15',2469,172,'2005-06-04 01:08:15',2,'2006-02-15 21:30:53'), +(450,'2005-05-27 19:18:54',1343,247,'2005-06-05 23:52:54',1,'2006-02-15 21:30:53'), +(451,'2005-05-27 19:27:54',205,87,'2005-05-29 01:07:54',2,'2006-02-15 21:30:53'), +(452,'2005-05-27 19:30:33',2993,127,'2005-05-30 20:53:33',2,'2006-02-15 21:30:53'), +(453,'2005-05-27 19:31:16',4425,529,'2005-05-29 23:06:16',1,'2006-02-15 21:30:53'), +(454,'2005-05-27 19:31:36',3499,575,'2005-05-30 15:46:36',1,'2006-02-15 21:30:53'), +(455,'2005-05-27 19:43:29',3344,343,'2005-06-04 23:40:29',2,'2006-02-15 21:30:53'), +(456,'2005-05-27 19:50:06',1699,92,'2005-06-02 22:14:06',1,'2006-02-15 21:30:53'), +(457,'2005-05-27 19:52:29',2368,300,'2005-06-02 17:17:29',2,'2006-02-15 21:30:53'), +(458,'2005-05-27 19:58:36',3350,565,'2005-06-06 00:51:36',1,'2006-02-15 21:30:53'), +(459,'2005-05-27 20:00:04',597,468,'2005-05-29 22:47:04',1,'2006-02-15 21:30:53'), +(460,'2005-05-27 20:02:03',4238,240,'2005-05-28 16:14:03',1,'2006-02-15 21:30:53'), +(461,'2005-05-27 20:08:55',2077,447,'2005-06-01 14:32:55',1,'2006-02-15 21:30:53'), +(462,'2005-05-27 20:10:36',2314,364,'2005-06-03 21:12:36',2,'2006-02-15 21:30:53'), +(463,'2005-05-27 20:11:47',826,21,'2005-06-04 21:18:47',1,'2006-02-15 21:30:53'), +(464,'2005-05-27 20:42:44',1313,193,'2005-05-30 00:49:44',2,'2006-02-15 21:30:53'), +(465,'2005-05-27 20:44:36',20,261,'2005-06-02 02:43:36',1,'2006-02-15 21:30:53'), +(466,'2005-05-27 20:57:07',1786,442,'2005-05-29 15:52:07',1,'2006-02-15 21:30:53'), +(467,'2005-05-27 21:10:03',339,557,'2005-06-01 16:08:03',1,'2006-02-15 21:30:53'), +(468,'2005-05-27 21:13:10',2656,101,'2005-06-04 15:26:10',2,'2006-02-15 21:30:53'), +(469,'2005-05-27 21:14:26',4463,154,'2005-06-05 21:51:26',1,'2006-02-15 21:30:53'), +(470,'2005-05-27 21:17:08',1613,504,'2005-06-04 17:47:08',1,'2006-02-15 21:30:53'), +(471,'2005-05-27 21:32:42',2872,209,'2005-05-31 00:39:42',2,'2006-02-15 21:30:53'), +(472,'2005-05-27 21:36:15',1338,528,'2005-05-29 21:07:15',1,'2006-02-15 21:30:53'), +(473,'2005-05-27 21:36:34',802,105,'2005-06-05 17:02:34',1,'2006-02-15 21:30:53'), +(474,'2005-05-27 22:11:56',1474,274,'2005-05-31 19:07:56',1,'2006-02-15 21:30:53'), +(475,'2005-05-27 22:16:26',2520,159,'2005-05-28 19:58:26',1,'2006-02-15 21:30:53'), +(476,'2005-05-27 22:31:36',2451,543,'2005-06-03 19:12:36',1,'2006-02-15 21:30:53'), +(477,'2005-05-27 22:33:33',2437,161,'2005-06-02 18:35:33',2,'2006-02-15 21:30:53'), +(478,'2005-05-27 22:38:20',424,557,'2005-05-31 18:39:20',2,'2006-02-15 21:30:53'), +(479,'2005-05-27 22:39:10',2060,231,'2005-06-05 22:46:10',2,'2006-02-15 21:30:53'), +(480,'2005-05-27 22:47:39',2108,220,'2005-06-04 21:17:39',2,'2006-02-15 21:30:53'), +(481,'2005-05-27 22:49:27',72,445,'2005-05-30 17:46:27',2,'2006-02-15 21:30:53'), +(482,'2005-05-27 22:53:02',4178,546,'2005-06-01 22:53:02',2,'2006-02-15 21:30:53'), +(483,'2005-05-27 23:00:25',1510,32,'2005-05-28 21:30:25',1,'2006-02-15 21:30:53'), +(484,'2005-05-27 23:26:45',3115,491,'2005-05-29 21:16:45',2,'2006-02-15 21:30:53'), +(485,'2005-05-27 23:40:52',2392,105,'2005-05-28 22:40:52',2,'2006-02-15 21:30:53'), +(486,'2005-05-27 23:51:12',1822,398,'2005-05-28 20:26:12',1,'2006-02-15 21:30:53'), +(487,'2005-05-28 00:00:30',3774,569,'2005-05-28 19:18:30',2,'2006-02-15 21:30:53'), +(488,'2005-05-28 00:07:50',393,168,'2005-06-03 22:30:50',2,'2006-02-15 21:30:53'), +(489,'2005-05-28 00:09:12',1940,476,'2005-05-31 04:44:12',2,'2006-02-15 21:30:53'), +(490,'2005-05-28 00:09:56',3524,95,'2005-05-30 22:32:56',2,'2006-02-15 21:30:53'), +(491,'2005-05-28 00:13:35',1326,196,'2005-05-29 00:11:35',2,'2006-02-15 21:30:53'), +(492,'2005-05-28 00:24:58',1999,228,'2005-05-28 22:34:58',1,'2006-02-15 21:30:53'), +(493,'2005-05-28 00:34:11',184,501,'2005-05-30 18:40:11',1,'2006-02-15 21:30:53'), +(494,'2005-05-28 00:39:31',1850,64,'2005-06-02 19:35:31',1,'2006-02-15 21:30:53'), +(495,'2005-05-28 00:40:48',1007,526,'2005-05-29 06:07:48',1,'2006-02-15 21:30:53'), +(496,'2005-05-28 00:43:41',1785,56,'2005-06-04 03:56:41',1,'2006-02-15 21:30:53'), +(497,'2005-05-28 00:54:39',2636,20,'2005-06-03 20:47:39',2,'2006-02-15 21:30:53'), +(498,'2005-05-28 01:01:21',458,287,'2005-05-30 21:20:21',2,'2006-02-15 21:30:53'), +(499,'2005-05-28 01:05:07',2381,199,'2005-06-05 19:54:07',2,'2006-02-15 21:30:53'), +(500,'2005-05-28 01:05:25',4500,145,'2005-05-31 20:04:25',1,'2006-02-15 21:30:53'), +(501,'2005-05-28 01:09:36',601,162,'2005-05-30 06:14:36',2,'2006-02-15 21:30:53'), +(502,'2005-05-28 01:34:43',3131,179,'2005-05-31 01:02:43',2,'2006-02-15 21:30:53'), +(503,'2005-05-28 01:35:25',3005,288,'2005-05-28 22:12:25',2,'2006-02-15 21:30:53'), +(504,'2005-05-28 02:05:34',2086,170,'2005-05-30 23:03:34',1,'2006-02-15 21:30:53'), +(505,'2005-05-28 02:06:37',71,111,'2005-05-29 06:57:37',1,'2006-02-15 21:30:53'), +(506,'2005-05-28 02:09:19',667,469,'2005-06-05 20:34:19',1,'2006-02-15 21:30:53'), +(507,'2005-05-28 02:31:19',3621,421,'2005-06-02 05:07:19',2,'2006-02-15 21:30:53'), +(508,'2005-05-28 02:40:50',4179,434,'2005-06-05 03:05:50',1,'2006-02-15 21:30:53'), +(509,'2005-05-28 02:51:12',3416,147,'2005-05-31 06:27:12',1,'2006-02-15 21:30:53'), +(510,'2005-05-28 02:52:14',4338,113,'2005-05-30 21:20:14',2,'2006-02-15 21:30:53'), +(511,'2005-05-28 03:04:04',3827,296,'2005-06-03 04:58:04',1,'2006-02-15 21:30:53'), +(512,'2005-05-28 03:07:50',2176,231,'2005-06-05 02:12:50',2,'2006-02-15 21:30:53'), +(513,'2005-05-28 03:08:10',225,489,'2005-05-29 07:22:10',1,'2006-02-15 21:30:53'), +(514,'2005-05-28 03:09:28',1697,597,'2005-06-05 00:49:28',2,'2006-02-15 21:30:53'), +(515,'2005-05-28 03:10:10',3369,110,'2005-06-04 02:18:10',2,'2006-02-15 21:30:53'), +(516,'2005-05-28 03:11:47',4357,400,'2005-06-04 02:19:47',1,'2006-02-15 21:30:53'), +(517,'2005-05-28 03:17:57',234,403,'2005-05-29 06:33:57',1,'2006-02-15 21:30:53'), +(518,'2005-05-28 03:18:02',4087,480,'2005-05-30 05:32:02',1,'2006-02-15 21:30:53'), +(519,'2005-05-28 03:22:33',3564,245,'2005-06-03 05:06:33',1,'2006-02-15 21:30:53'), +(520,'2005-05-28 03:27:37',3845,161,'2005-06-04 05:47:37',1,'2006-02-15 21:30:53'), +(521,'2005-05-28 03:32:22',2397,374,'2005-05-28 22:37:22',1,'2006-02-15 21:30:53'), +(522,'2005-05-28 03:33:20',3195,382,'2005-05-31 04:23:20',1,'2006-02-15 21:30:53'), +(523,'2005-05-28 03:53:26',1905,138,'2005-05-31 05:58:26',2,'2006-02-15 21:30:53'), +(524,'2005-05-28 03:57:28',1962,223,'2005-05-31 05:20:28',1,'2006-02-15 21:30:53'), +(525,'2005-05-28 04:25:33',1817,14,'2005-06-06 04:18:33',1,'2006-02-15 21:30:53'), +(526,'2005-05-28 04:27:37',1387,408,'2005-05-30 07:52:37',1,'2006-02-15 21:30:53'), +(527,'2005-05-28 04:28:38',266,169,'2005-06-02 08:19:38',1,'2006-02-15 21:30:53'), +(528,'2005-05-28 04:30:05',1655,359,'2005-06-03 10:01:05',2,'2006-02-15 21:30:53'), +(529,'2005-05-28 04:34:17',2624,469,'2005-05-30 00:35:17',1,'2006-02-15 21:30:53'), +(530,'2005-05-28 05:13:01',3332,312,'2005-06-01 10:21:01',2,'2006-02-15 21:30:53'), +(531,'2005-05-28 05:23:38',1113,589,'2005-05-29 08:00:38',2,'2006-02-15 21:30:53'), +(532,'2005-05-28 05:36:58',2793,120,'2005-06-02 01:50:58',1,'2006-02-15 21:30:53'), +(533,'2005-05-28 06:14:46',4306,528,'2005-06-01 06:26:46',2,'2006-02-15 21:30:53'), +(534,'2005-05-28 06:15:25',992,184,'2005-06-06 07:51:25',1,'2006-02-15 21:30:53'), +(535,'2005-05-28 06:16:32',4209,307,'2005-05-31 02:48:32',1,'2006-02-15 21:30:53'), +(536,'2005-05-28 06:17:33',2962,514,'2005-06-03 10:02:33',2,'2006-02-15 21:30:53'), +(537,'2005-05-28 06:20:55',3095,315,'2005-06-05 11:48:55',2,'2006-02-15 21:30:53'), +(538,'2005-05-28 06:21:05',2262,110,'2005-06-02 01:22:05',2,'2006-02-15 21:30:53'), +(539,'2005-05-28 06:26:16',3427,161,'2005-05-30 02:02:16',1,'2006-02-15 21:30:53'), +(540,'2005-05-28 06:40:25',3321,119,'2005-06-06 00:47:25',1,'2006-02-15 21:30:53'), +(541,'2005-05-28 06:41:58',1662,535,'2005-06-02 09:12:58',2,'2006-02-15 21:30:53'), +(542,'2005-05-28 06:42:13',4444,261,'2005-06-03 09:05:13',1,'2006-02-15 21:30:53'), +(543,'2005-05-28 06:43:34',530,493,'2005-06-06 07:16:34',2,'2006-02-15 21:30:53'), +(544,'2005-05-28 07:03:00',2964,311,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'), +(545,'2005-05-28 07:10:20',1086,54,'2005-06-04 01:47:20',2,'2006-02-15 21:30:53'), +(546,'2005-05-28 07:16:25',487,20,'2005-06-01 08:36:25',1,'2006-02-15 21:30:53'), +(547,'2005-05-28 07:24:28',2065,506,'2005-06-06 01:31:28',2,'2006-02-15 21:30:53'), +(548,'2005-05-28 07:34:56',3704,450,'2005-06-05 03:14:56',2,'2006-02-15 21:30:53'), +(549,'2005-05-28 07:35:37',1818,159,'2005-06-02 09:08:37',1,'2006-02-15 21:30:53'), +(550,'2005-05-28 07:39:16',3632,432,'2005-06-06 12:20:16',2,'2006-02-15 21:30:53'), +(551,'2005-05-28 07:44:18',3119,315,'2005-06-02 12:55:18',2,'2006-02-15 21:30:53'), +(552,'2005-05-28 07:53:38',23,106,'2005-06-04 12:45:38',2,'2006-02-15 21:30:53'), +(553,'2005-05-28 08:14:44',1349,176,'2005-06-02 03:01:44',2,'2006-02-15 21:30:53'), +(554,'2005-05-28 08:23:16',1951,376,'2005-05-31 03:29:16',2,'2006-02-15 21:30:53'), +(555,'2005-05-28 08:31:14',4397,55,'2005-05-30 07:34:14',2,'2006-02-15 21:30:53'), +(556,'2005-05-28 08:31:36',1814,22,'2005-06-06 07:29:36',2,'2006-02-15 21:30:53'), +(557,'2005-05-28 08:36:22',158,444,'2005-06-03 10:42:22',2,'2006-02-15 21:30:53'), +(558,'2005-05-28 08:38:43',4163,442,'2005-06-06 13:52:43',1,'2006-02-15 21:30:53'), +(559,'2005-05-28 08:39:02',1227,572,'2005-06-05 08:38:02',2,'2006-02-15 21:30:53'), +(560,'2005-05-28 08:53:02',644,463,'2005-06-04 12:27:02',2,'2006-02-15 21:30:53'), +(561,'2005-05-28 08:54:06',928,77,'2005-06-05 05:54:06',1,'2006-02-15 21:30:53'), +(562,'2005-05-28 09:01:21',3390,102,'2005-06-02 05:26:21',2,'2006-02-15 21:30:53'), +(563,'2005-05-28 09:10:49',53,324,'2005-06-06 11:32:49',1,'2006-02-15 21:30:53'), +(564,'2005-05-28 09:12:09',2973,282,'2005-05-29 05:07:09',1,'2006-02-15 21:30:53'), +(565,'2005-05-28 09:26:31',1494,288,'2005-06-01 07:28:31',1,'2006-02-15 21:30:53'), +(566,'2005-05-28 09:51:39',4330,253,'2005-06-05 09:35:39',1,'2006-02-15 21:30:53'), +(567,'2005-05-28 09:56:20',3308,184,'2005-06-01 06:41:20',2,'2006-02-15 21:30:53'), +(568,'2005-05-28 09:57:36',2232,155,'2005-05-31 15:44:36',1,'2006-02-15 21:30:53'), +(569,'2005-05-28 10:12:41',4534,56,'2005-06-03 10:08:41',2,'2006-02-15 21:30:53'), +(570,'2005-05-28 10:15:04',1122,21,'2005-05-30 08:32:04',1,'2006-02-15 21:30:53'), +(571,'2005-05-28 10:17:41',4250,516,'2005-06-05 07:56:41',1,'2006-02-15 21:30:53'), +(572,'2005-05-28 10:30:13',1899,337,'2005-06-02 05:04:13',2,'2006-02-15 21:30:53'), +(573,'2005-05-28 10:35:23',4020,1,'2005-06-03 06:32:23',1,'2006-02-15 21:30:53'), +(574,'2005-05-28 10:44:28',3883,76,'2005-06-04 11:42:28',1,'2006-02-15 21:30:53'), +(575,'2005-05-28 10:56:09',4451,142,'2005-06-05 15:39:09',1,'2006-02-15 21:30:53'), +(576,'2005-05-28 10:56:10',1866,588,'2005-06-04 13:15:10',2,'2006-02-15 21:30:53'), +(577,'2005-05-28 11:09:14',375,6,'2005-06-01 13:27:14',2,'2006-02-15 21:30:53'), +(578,'2005-05-28 11:15:48',2938,173,'2005-06-02 09:59:48',1,'2006-02-15 21:30:53'), +(579,'2005-05-28 11:19:23',3481,181,'2005-06-02 13:51:23',1,'2006-02-15 21:30:53'), +(580,'2005-05-28 11:19:53',3515,17,'2005-06-01 10:44:53',2,'2006-02-15 21:30:53'), +(581,'2005-05-28 11:20:29',1380,186,'2005-06-04 12:37:29',2,'2006-02-15 21:30:53'), +(582,'2005-05-28 11:33:46',4579,198,'2005-05-29 08:33:46',1,'2006-02-15 21:30:53'), +(583,'2005-05-28 11:48:55',2679,386,'2005-06-04 07:09:55',2,'2006-02-15 21:30:53'), +(584,'2005-05-28 11:49:00',1833,69,'2005-06-01 11:54:00',1,'2006-02-15 21:30:53'), +(585,'2005-05-28 11:50:45',3544,490,'2005-06-03 15:35:45',2,'2006-02-15 21:30:53'), +(586,'2005-05-28 12:03:00',898,77,'2005-05-29 13:16:00',1,'2006-02-15 21:30:53'), +(587,'2005-05-28 12:05:33',1413,64,'2005-05-30 13:45:33',2,'2006-02-15 21:30:53'), +(588,'2005-05-28 12:08:37',95,89,'2005-05-29 16:25:37',2,'2006-02-15 21:30:53'), +(589,'2005-05-28 12:27:50',4231,308,'2005-06-03 07:15:50',2,'2006-02-15 21:30:53'), +(590,'2005-05-28 13:06:50',473,462,'2005-06-02 09:18:50',1,'2006-02-15 21:30:53'), +(591,'2005-05-28 13:11:04',377,19,'2005-05-29 17:20:04',2,'2006-02-15 21:30:53'), +(592,'2005-05-28 13:21:08',638,244,'2005-05-29 16:55:08',1,'2006-02-15 21:30:53'), +(593,'2005-05-28 13:33:23',1810,16,'2005-05-30 17:10:23',2,'2006-02-15 21:30:53'), +(594,'2005-05-28 13:41:56',2766,538,'2005-05-30 12:00:56',1,'2006-02-15 21:30:53'), +(595,'2005-05-28 13:59:54',595,294,'2005-06-05 15:16:54',1,'2006-02-15 21:30:53'), +(596,'2005-05-28 14:00:03',821,589,'2005-05-29 17:10:03',1,'2006-02-15 21:30:53'), +(597,'2005-05-28 14:01:02',4469,249,'2005-06-06 19:06:02',2,'2006-02-15 21:30:53'), +(598,'2005-05-28 14:04:50',599,159,'2005-06-03 18:00:50',2,'2006-02-15 21:30:53'), +(599,'2005-05-28 14:05:57',4136,393,'2005-06-01 16:41:57',2,'2006-02-15 21:30:53'), +(600,'2005-05-28 14:08:19',1567,332,'2005-06-03 11:57:19',2,'2006-02-15 21:30:53'), +(601,'2005-05-28 14:08:22',3225,429,'2005-06-04 10:50:22',1,'2006-02-15 21:30:53'), +(602,'2005-05-28 14:15:54',1300,590,'2005-06-05 15:16:54',2,'2006-02-15 21:30:53'), +(603,'2005-05-28 14:27:51',3248,537,'2005-05-29 13:13:51',1,'2006-02-15 21:30:53'), +(604,'2005-05-28 14:37:07',1585,426,'2005-06-03 11:03:07',2,'2006-02-15 21:30:53'), +(605,'2005-05-28 14:39:10',4232,501,'2005-06-01 09:28:10',2,'2006-02-15 21:30:53'), +(606,'2005-05-28 14:48:39',3509,299,'2005-06-04 09:44:39',2,'2006-02-15 21:30:53'), +(607,'2005-05-28 15:02:41',2561,554,'2005-05-30 12:54:41',2,'2006-02-15 21:30:53'), +(608,'2005-05-28 15:03:44',4254,494,'2005-06-04 17:14:44',2,'2006-02-15 21:30:53'), +(609,'2005-05-28 15:04:02',2944,150,'2005-06-05 14:47:02',2,'2006-02-15 21:30:53'), +(610,'2005-05-28 15:15:25',3642,500,'2005-06-02 12:30:25',2,'2006-02-15 21:30:53'), +(611,'2005-05-28 15:18:18',1230,580,'2005-05-31 20:15:18',2,'2006-02-15 21:30:53'), +(612,'2005-05-28 15:24:54',2180,161,'2005-05-30 14:22:54',2,'2006-02-15 21:30:53'), +(613,'2005-05-28 15:27:22',270,595,'2005-06-02 20:01:22',1,'2006-02-15 21:30:53'), +(614,'2005-05-28 15:33:28',280,307,'2005-06-04 12:27:28',2,'2006-02-15 21:30:53'), +(615,'2005-05-28 15:35:52',3397,533,'2005-06-03 17:35:52',2,'2006-02-15 21:30:53'), +(616,'2005-05-28 15:45:39',989,471,'2005-06-02 09:55:39',1,'2006-02-15 21:30:53'), +(617,'2005-05-28 15:49:14',4142,372,'2005-05-31 14:29:14',2,'2006-02-15 21:30:53'), +(618,'2005-05-28 15:50:07',4445,248,'2005-06-01 19:45:07',1,'2006-02-15 21:30:53'), +(619,'2005-05-28 15:52:26',2482,407,'2005-06-06 17:55:26',2,'2006-02-15 21:30:53'), +(620,'2005-05-28 15:54:45',2444,321,'2005-06-04 20:26:45',1,'2006-02-15 21:30:53'), +(621,'2005-05-28 15:58:12',1144,239,'2005-05-30 21:54:12',1,'2006-02-15 21:30:53'), +(622,'2005-05-28 15:58:22',2363,109,'2005-06-04 10:13:22',1,'2006-02-15 21:30:53'), +(623,'2005-05-28 16:01:28',1222,495,'2005-05-30 11:19:28',1,'2006-02-15 21:30:53'), +(624,'2005-05-28 16:13:22',3660,569,'2005-06-06 20:35:22',1,'2006-02-15 21:30:53'), +(625,'2005-05-28 16:35:46',2889,596,'2005-06-01 14:19:46',1,'2006-02-15 21:30:53'), +(626,'2005-05-28 16:58:09',452,584,'2005-06-01 14:02:09',2,'2006-02-15 21:30:53'), +(627,'2005-05-28 17:04:43',425,241,'2005-06-04 19:58:43',2,'2006-02-15 21:30:53'), +(628,'2005-05-28 17:05:46',2513,173,'2005-06-06 16:29:46',2,'2006-02-15 21:30:53'), +(629,'2005-05-28 17:19:15',1527,94,'2005-06-02 20:01:15',2,'2006-02-15 21:30:53'), +(630,'2005-05-28 17:24:51',1254,417,'2005-06-05 20:05:51',2,'2006-02-15 21:30:53'), +(631,'2005-05-28 17:36:32',2465,503,'2005-06-03 14:56:32',2,'2006-02-15 21:30:53'), +(632,'2005-05-28 17:37:50',1287,442,'2005-06-03 16:04:50',1,'2006-02-15 21:30:53'), +(633,'2005-05-28 17:37:59',58,360,'2005-06-03 22:49:59',2,'2006-02-15 21:30:53'), +(634,'2005-05-28 17:40:35',2630,428,'2005-06-05 16:18:35',2,'2006-02-15 21:30:53'), +(635,'2005-05-28 17:46:57',1648,42,'2005-06-06 18:24:57',1,'2006-02-15 21:30:53'), +(636,'2005-05-28 17:47:58',4213,239,'2005-06-04 16:32:58',1,'2006-02-15 21:30:53'), +(637,'2005-05-28 18:14:29',1581,250,'2005-05-29 23:48:29',2,'2006-02-15 21:30:53'), +(638,'2005-05-28 18:24:43',2685,372,'2005-06-02 19:03:43',2,'2006-02-15 21:30:53'), +(639,'2005-05-28 18:25:02',4204,198,'2005-05-29 18:22:02',1,'2006-02-15 21:30:53'), +(640,'2005-05-28 18:43:26',495,465,'2005-05-30 13:39:26',1,'2006-02-15 21:30:53'), +(641,'2005-05-28 18:45:47',3548,396,'2005-06-04 15:24:47',1,'2006-02-15 21:30:53'), +(642,'2005-05-28 18:49:12',140,157,'2005-06-01 20:50:12',2,'2006-02-15 21:30:53'), +(643,'2005-05-28 18:52:11',3105,240,'2005-05-31 15:15:11',2,'2006-02-15 21:30:53'), +(644,'2005-05-28 18:59:12',4304,316,'2005-06-04 18:06:12',1,'2006-02-15 21:30:53'), +(645,'2005-05-28 19:14:09',3128,505,'2005-06-05 14:01:09',1,'2006-02-15 21:30:53'), +(646,'2005-05-28 19:16:14',1922,185,'2005-05-31 16:50:14',2,'2006-02-15 21:30:53'), +(647,'2005-05-28 19:22:52',3435,569,'2005-06-01 00:10:52',1,'2006-02-15 21:30:53'), +(648,'2005-05-28 19:25:54',3476,253,'2005-06-03 15:57:54',2,'2006-02-15 21:30:53'), +(649,'2005-05-28 19:35:45',1781,197,'2005-06-05 16:00:45',1,'2006-02-15 21:30:53'), +(650,'2005-05-28 19:45:40',4384,281,'2005-05-29 21:02:40',1,'2006-02-15 21:30:53'), +(651,'2005-05-28 19:46:50',739,266,'2005-05-30 16:29:50',1,'2006-02-15 21:30:53'), +(652,'2005-05-28 20:08:47',1201,43,'2005-05-29 14:57:47',2,'2006-02-15 21:30:53'), +(653,'2005-05-28 20:12:20',126,327,'2005-06-04 14:44:20',2,'2006-02-15 21:30:53'), +(654,'2005-05-28 20:15:30',2312,23,'2005-05-30 22:02:30',2,'2006-02-15 21:30:53'), +(655,'2005-05-28 20:16:20',331,287,'2005-05-31 16:46:20',2,'2006-02-15 21:30:53'), +(656,'2005-05-28 20:18:24',2846,437,'2005-05-30 16:19:24',1,'2006-02-15 21:30:53'), +(657,'2005-05-28 20:23:09',848,65,'2005-06-01 02:11:09',1,'2006-02-15 21:30:53'), +(658,'2005-05-28 20:23:23',3226,103,'2005-06-06 19:31:23',2,'2006-02-15 21:30:53'), +(659,'2005-05-28 20:27:53',1382,207,'2005-05-31 01:36:53',2,'2006-02-15 21:30:53'), +(660,'2005-05-28 20:53:31',1414,578,'2005-05-30 15:26:31',1,'2006-02-15 21:30:53'), +(661,'2005-05-28 21:01:25',2247,51,'2005-06-02 01:22:25',2,'2006-02-15 21:30:53'), +(662,'2005-05-28 21:09:31',2968,166,'2005-06-01 19:00:31',2,'2006-02-15 21:30:53'), +(663,'2005-05-28 21:23:02',3997,176,'2005-06-02 17:39:02',2,'2006-02-15 21:30:53'), +(664,'2005-05-28 21:31:08',87,523,'2005-06-02 20:56:08',2,'2006-02-15 21:30:53'), +(665,'2005-05-28 21:38:39',1012,415,'2005-05-29 21:37:39',1,'2006-02-15 21:30:53'), +(666,'2005-05-28 21:48:51',3075,437,'2005-06-05 16:45:51',2,'2006-02-15 21:30:53'), +(667,'2005-05-28 21:49:02',797,596,'2005-05-31 03:07:02',1,'2006-02-15 21:30:53'), +(668,'2005-05-28 21:54:45',3528,484,'2005-05-29 22:32:45',1,'2006-02-15 21:30:53'), +(669,'2005-05-28 22:03:25',3677,313,'2005-06-03 03:39:25',1,'2006-02-15 21:30:53'), +(670,'2005-05-28 22:04:03',227,201,'2005-06-06 22:43:03',2,'2006-02-15 21:30:53'), +(671,'2005-05-28 22:04:30',1027,14,'2005-06-03 01:21:30',2,'2006-02-15 21:30:53'), +(672,'2005-05-28 22:05:29',697,306,'2005-06-06 02:10:29',2,'2006-02-15 21:30:53'), +(673,'2005-05-28 22:07:30',1769,468,'2005-06-01 23:42:30',1,'2006-02-15 21:30:53'), +(674,'2005-05-28 22:11:35',1150,87,'2005-06-01 23:58:35',2,'2006-02-15 21:30:53'), +(675,'2005-05-28 22:22:44',1273,338,'2005-06-01 02:57:44',2,'2006-02-15 21:30:53'), +(676,'2005-05-28 22:27:51',2329,490,'2005-05-29 20:36:51',2,'2006-02-15 21:30:53'), +(677,'2005-05-28 23:00:08',4558,194,'2005-06-05 19:11:08',2,'2006-02-15 21:30:53'), +(678,'2005-05-28 23:15:48',3741,269,'2005-06-03 04:43:48',2,'2006-02-15 21:30:53'), +(679,'2005-05-28 23:24:57',907,526,'2005-06-06 21:59:57',2,'2006-02-15 21:30:53'), +(680,'2005-05-28 23:27:26',4147,482,'2005-06-02 02:28:26',2,'2006-02-15 21:30:53'), +(681,'2005-05-28 23:39:44',3346,531,'2005-06-01 01:42:44',1,'2006-02-15 21:30:53'), +(682,'2005-05-28 23:53:18',3160,148,'2005-05-29 19:14:18',2,'2006-02-15 21:30:53'), +(683,'2005-05-29 00:09:48',2038,197,'2005-06-02 04:27:48',1,'2006-02-15 21:30:53'), +(684,'2005-05-29 00:13:15',3242,461,'2005-06-04 21:26:15',2,'2006-02-15 21:30:53'), +(685,'2005-05-29 00:17:51',1385,172,'2005-06-05 05:32:51',2,'2006-02-15 21:30:53'), +(686,'2005-05-29 00:27:10',2441,411,'2005-05-30 02:29:10',1,'2006-02-15 21:30:53'), +(687,'2005-05-29 00:32:09',1731,250,'2005-05-31 23:53:09',1,'2006-02-15 21:30:53'), +(688,'2005-05-29 00:45:24',4135,162,'2005-06-02 01:30:24',1,'2006-02-15 21:30:53'), +(689,'2005-05-29 00:46:53',742,571,'2005-06-03 23:48:53',2,'2006-02-15 21:30:53'), +(690,'2005-05-29 00:54:53',2646,85,'2005-06-06 00:45:53',1,'2006-02-15 21:30:53'), +(691,'2005-05-29 01:01:26',4034,433,'2005-06-07 06:21:26',1,'2006-02-15 21:30:53'), +(692,'2005-05-29 01:32:10',800,18,'2005-06-02 03:54:10',2,'2006-02-15 21:30:53'), +(693,'2005-05-29 01:42:31',635,190,'2005-06-03 02:29:31',2,'2006-02-15 21:30:53'), +(694,'2005-05-29 01:49:43',592,399,'2005-06-05 06:52:43',1,'2006-02-15 21:30:53'), +(695,'2005-05-29 01:50:53',4276,528,'2005-06-03 02:28:53',1,'2006-02-15 21:30:53'), +(696,'2005-05-29 01:59:10',2076,19,'2005-06-01 02:45:10',1,'2006-02-15 21:30:53'), +(697,'2005-05-29 02:04:04',3949,387,'2005-06-04 00:47:04',2,'2006-02-15 21:30:53'), +(698,'2005-05-29 02:10:52',1412,109,'2005-06-01 21:52:52',1,'2006-02-15 21:30:53'), +(699,'2005-05-29 02:11:44',130,246,'2005-06-04 20:23:44',2,'2006-02-15 21:30:53'), +(700,'2005-05-29 02:18:54',500,117,'2005-05-30 05:54:54',1,'2006-02-15 21:30:53'), +(701,'2005-05-29 02:26:27',372,112,'2005-06-03 04:59:27',1,'2006-02-15 21:30:53'), +(702,'2005-05-29 02:27:30',2556,475,'2005-05-30 01:52:30',2,'2006-02-15 21:30:53'), +(703,'2005-05-29 02:29:36',1123,269,'2005-06-03 04:54:36',2,'2006-02-15 21:30:53'), +(704,'2005-05-29 02:44:43',2628,330,'2005-06-06 01:51:43',2,'2006-02-15 21:30:53'), +(705,'2005-05-29 02:48:52',2809,257,'2005-05-30 06:21:52',1,'2006-02-15 21:30:53'), +(706,'2005-05-29 03:05:49',2278,60,'2005-06-04 22:48:49',1,'2006-02-15 21:30:53'), +(707,'2005-05-29 03:18:19',819,252,'2005-05-30 02:45:19',1,'2006-02-15 21:30:53'), +(708,'2005-05-29 03:23:47',3133,127,'2005-05-31 21:27:47',2,'2006-02-15 21:30:53'), +(709,'2005-05-29 03:48:01',2459,479,'2005-06-06 05:21:01',1,'2006-02-15 21:30:53'), +(710,'2005-05-29 03:48:36',194,518,'2005-06-03 05:03:36',1,'2006-02-15 21:30:53'), +(711,'2005-05-29 03:49:03',4581,215,'2005-05-31 08:29:03',2,'2006-02-15 21:30:53'), +(712,'2005-05-29 04:02:24',4191,313,'2005-05-30 03:09:24',2,'2006-02-15 21:30:53'), +(713,'2005-05-29 04:10:17',3664,507,'2005-06-07 07:13:17',1,'2006-02-15 21:30:53'), +(714,'2005-05-29 04:15:21',2010,452,'2005-06-01 23:05:21',2,'2006-02-15 21:30:53'), +(715,'2005-05-29 04:22:41',2030,545,'2005-06-05 09:28:41',1,'2006-02-15 21:30:53'), +(716,'2005-05-29 04:35:29',85,36,'2005-06-01 07:42:29',2,'2006-02-15 21:30:53'), +(717,'2005-05-29 04:37:44',1383,412,'2005-05-30 05:48:44',2,'2006-02-15 21:30:53'), +(718,'2005-05-29 04:52:23',1736,498,'2005-06-02 02:27:23',1,'2006-02-15 21:30:53'), +(719,'2005-05-29 05:16:05',267,245,'2005-06-01 07:53:05',2,'2006-02-15 21:30:53'), +(720,'2005-05-29 05:17:30',3687,480,'2005-06-06 02:47:30',2,'2006-02-15 21:30:53'), +(721,'2005-05-29 05:28:47',1116,44,'2005-05-31 11:24:47',1,'2006-02-15 21:30:53'), +(722,'2005-05-29 05:30:31',4540,259,'2005-06-06 04:51:31',1,'2006-02-15 21:30:53'), +(723,'2005-05-29 05:34:44',3407,309,'2005-05-30 05:50:44',1,'2006-02-15 21:30:53'), +(724,'2005-05-29 05:53:23',3770,416,'2005-06-05 04:01:23',2,'2006-02-15 21:30:53'), +(725,'2005-05-29 06:03:41',4088,245,'2005-06-03 08:52:41',2,'2006-02-15 21:30:53'), +(726,'2005-05-29 06:05:29',933,452,'2005-06-05 04:40:29',2,'2006-02-15 21:30:53'), +(727,'2005-05-29 06:08:15',1629,484,'2005-05-30 07:16:15',1,'2006-02-15 21:30:53'), +(728,'2005-05-29 06:12:38',242,551,'2005-06-03 07:41:38',1,'2006-02-15 21:30:53'), +(729,'2005-05-29 06:35:13',1688,323,'2005-06-04 03:23:13',2,'2006-02-15 21:30:53'), +(730,'2005-05-29 07:00:59',3473,197,'2005-06-06 01:17:59',1,'2006-02-15 21:30:53'), +(731,'2005-05-29 07:25:16',4124,5,'2005-05-30 05:21:16',1,'2006-02-15 21:30:53'), +(732,'2005-05-29 07:32:51',2530,447,'2005-05-30 10:08:51',2,'2006-02-15 21:30:53'), +(733,'2005-05-29 07:35:21',2951,363,'2005-06-05 09:14:21',1,'2006-02-15 21:30:53'), +(734,'2005-05-29 07:38:52',3084,538,'2005-06-03 10:17:52',2,'2006-02-15 21:30:53'), +(735,'2005-05-29 08:08:13',3421,454,'2005-06-07 13:35:13',1,'2006-02-15 21:30:53'), +(736,'2005-05-29 08:10:07',3689,276,'2005-06-05 10:21:07',2,'2006-02-15 21:30:53'), +(737,'2005-05-29 08:11:31',769,589,'2005-06-04 11:18:31',2,'2006-02-15 21:30:53'), +(738,'2005-05-29 08:20:08',2284,256,'2005-06-06 08:59:08',2,'2006-02-15 21:30:53'), +(739,'2005-05-29 08:28:18',1183,84,'2005-06-06 09:21:18',2,'2006-02-15 21:30:53'), +(740,'2005-05-29 08:30:36',600,89,'2005-06-04 12:47:36',2,'2006-02-15 21:30:53'), +(741,'2005-05-29 08:35:49',3189,495,'2005-06-04 11:55:49',1,'2006-02-15 21:30:53'), +(742,'2005-05-29 08:36:30',273,483,'2005-06-05 11:30:30',1,'2006-02-15 21:30:53'), +(743,'2005-05-29 08:39:02',2528,548,'2005-06-06 08:42:02',2,'2006-02-15 21:30:53'), +(744,'2005-05-29 09:13:08',3722,420,'2005-06-01 07:05:08',2,'2006-02-15 21:30:53'), +(745,'2005-05-29 09:22:57',581,152,'2005-06-01 09:10:57',1,'2006-02-15 21:30:53'), +(746,'2005-05-29 09:25:10',4272,130,'2005-06-02 04:20:10',2,'2006-02-15 21:30:53'), +(747,'2005-05-29 09:26:34',1993,291,'2005-06-05 07:28:34',1,'2006-02-15 21:30:53'), +(748,'2005-05-29 09:27:00',2803,7,'2005-06-03 04:25:00',1,'2006-02-15 21:30:53'), +(749,'2005-05-29 09:33:33',1146,375,'2005-05-31 11:45:33',2,'2006-02-15 21:30:53'), +(750,'2005-05-29 09:41:40',730,269,'2005-05-30 13:31:40',1,'2006-02-15 21:30:53'), +(751,'2005-05-29 09:55:43',2711,53,'2005-06-02 04:54:43',1,'2006-02-15 21:30:53'), +(752,'2005-05-29 10:14:15',1720,126,'2005-06-04 06:30:15',1,'2006-02-15 21:30:53'), +(753,'2005-05-29 10:16:42',1021,135,'2005-06-05 08:52:42',2,'2006-02-15 21:30:53'), +(754,'2005-05-29 10:18:59',734,281,'2005-06-04 05:03:59',2,'2006-02-15 21:30:53'), +(755,'2005-05-29 10:26:29',3090,576,'2005-06-01 10:25:29',2,'2006-02-15 21:30:53'), +(756,'2005-05-29 10:28:45',3152,201,'2005-06-04 12:50:45',1,'2006-02-15 21:30:53'), +(757,'2005-05-29 10:29:47',1067,435,'2005-06-07 15:27:47',1,'2006-02-15 21:30:53'), +(758,'2005-05-29 10:31:56',1191,563,'2005-06-01 14:53:56',2,'2006-02-15 21:30:53'), +(759,'2005-05-29 10:57:57',2367,179,'2005-06-07 16:23:57',2,'2006-02-15 21:30:53'), +(760,'2005-05-29 11:07:25',3250,77,'2005-06-02 14:16:25',1,'2006-02-15 21:30:53'), +(761,'2005-05-29 11:09:01',2342,58,'2005-06-03 16:18:01',2,'2006-02-15 21:30:53'), +(762,'2005-05-29 11:15:51',3683,146,'2005-06-06 07:48:51',1,'2006-02-15 21:30:53'), +(763,'2005-05-29 11:32:15',2022,50,'2005-05-31 17:31:15',1,'2006-02-15 21:30:53'), +(764,'2005-05-29 11:37:35',1069,149,'2005-05-31 16:47:35',1,'2006-02-15 21:30:53'), +(765,'2005-05-29 11:38:34',515,69,'2005-06-02 17:04:34',1,'2006-02-15 21:30:53'), +(766,'2005-05-29 11:47:02',2154,383,'2005-06-06 07:14:02',1,'2006-02-15 21:30:53'), +(767,'2005-05-29 12:20:19',687,67,'2005-06-02 14:15:19',2,'2006-02-15 21:30:53'), +(768,'2005-05-29 12:30:46',2895,566,'2005-06-07 09:00:46',2,'2006-02-15 21:30:53'), +(769,'2005-05-29 12:51:44',1523,575,'2005-06-01 17:43:44',1,'2006-02-15 21:30:53'), +(770,'2005-05-29 12:56:50',2491,405,'2005-06-07 15:54:50',2,'2006-02-15 21:30:53'), +(771,'2005-05-29 12:59:14',353,476,'2005-06-01 16:05:14',2,'2006-02-15 21:30:53'), +(772,'2005-05-29 13:08:06',3319,556,'2005-06-06 08:19:06',1,'2006-02-15 21:30:53'), +(773,'2005-05-29 13:18:05',245,563,'2005-06-07 17:22:05',1,'2006-02-15 21:30:53'), +(774,'2005-05-29 13:19:43',1188,575,'2005-06-01 18:51:43',1,'2006-02-15 21:30:53'), +(775,'2005-05-29 13:23:26',1197,124,'2005-05-30 07:53:26',2,'2006-02-15 21:30:53'), +(776,'2005-05-29 13:35:35',4339,113,'2005-06-03 17:33:35',1,'2006-02-15 21:30:53'), +(777,'2005-05-29 14:07:58',451,360,'2005-06-03 08:41:58',2,'2006-02-15 21:30:53'), +(778,'2005-05-29 14:09:53',1816,535,'2005-06-05 20:05:53',1,'2006-02-15 21:30:53'), +(779,'2005-05-29 14:17:17',533,105,'2005-06-06 16:46:17',1,'2006-02-15 21:30:53'), +(780,'2005-05-29 14:18:32',1919,300,'2005-06-06 20:14:32',1,'2006-02-15 21:30:53'), +(781,'2005-05-29 14:23:58',88,313,'2005-05-30 17:44:58',1,'2006-02-15 21:30:53'), +(782,'2005-05-29 14:38:57',2255,596,'2005-06-02 13:18:57',2,'2006-02-15 21:30:53'), +(783,'2005-05-29 14:41:18',3046,53,'2005-06-06 10:39:18',2,'2006-02-15 21:30:53'), +(784,'2005-05-29 14:44:22',2936,352,'2005-06-01 17:28:22',2,'2006-02-15 21:30:53'), +(785,'2005-05-29 15:08:41',39,72,'2005-05-30 15:51:41',1,'2006-02-15 21:30:53'), +(786,'2005-05-29 15:17:28',2637,439,'2005-06-07 10:07:28',2,'2006-02-15 21:30:53'), +(787,'2005-05-29 16:03:03',3919,27,'2005-06-07 11:07:03',2,'2006-02-15 21:30:53'), +(788,'2005-05-29 16:13:55',763,562,'2005-05-31 16:40:55',1,'2006-02-15 21:30:53'), +(789,'2005-05-29 16:17:07',708,553,'2005-06-06 18:15:07',1,'2006-02-15 21:30:53'), +(790,'2005-05-29 16:19:29',2858,593,'2005-06-02 17:22:29',2,'2006-02-15 21:30:53'), +(791,'2005-05-29 16:30:42',1554,284,'2005-06-01 19:11:42',1,'2006-02-15 21:30:53'), +(792,'2005-05-29 16:32:10',2841,261,'2005-05-31 18:01:10',1,'2006-02-15 21:30:53'), +(793,'2005-05-29 16:44:08',379,528,'2005-06-06 19:21:08',2,'2006-02-15 21:30:53'), +(794,'2005-05-29 16:44:11',1995,50,'2005-06-05 16:11:11',1,'2006-02-15 21:30:53'), +(795,'2005-05-29 16:57:39',609,551,'2005-06-01 11:33:39',2,'2006-02-15 21:30:53'), +(796,'2005-05-29 16:59:44',2697,26,'2005-06-03 16:22:44',2,'2006-02-15 21:30:53'), +(797,'2005-05-29 17:12:17',1446,244,'2005-06-03 16:06:17',1,'2006-02-15 21:30:53'), +(798,'2005-05-29 17:23:43',1102,134,'2005-06-01 13:06:43',2,'2006-02-15 21:30:53'), +(799,'2005-05-29 17:24:48',1713,429,'2005-06-05 12:25:48',1,'2006-02-15 21:30:53'), +(800,'2005-05-29 17:28:12',441,472,'2005-05-30 14:59:12',1,'2006-02-15 21:30:53'), +(801,'2005-05-29 17:35:50',1642,402,'2005-06-04 17:05:50',2,'2006-02-15 21:30:53'), +(802,'2005-05-29 17:38:59',785,350,'2005-05-31 22:42:59',2,'2006-02-15 21:30:53'), +(803,'2005-05-29 17:52:30',1602,32,'2005-05-30 14:35:30',2,'2006-02-15 21:30:53'), +(804,'2005-05-29 18:10:24',3909,171,'2005-06-06 22:53:24',1,'2006-02-15 21:30:53'), +(805,'2005-05-29 18:18:18',3132,232,'2005-06-07 15:11:18',2,'2006-02-15 21:30:53'), +(806,'2005-05-29 18:31:30',2386,435,'2005-05-31 00:18:30',2,'2006-02-15 21:30:53'), +(807,'2005-05-29 18:50:50',2195,235,'2005-06-03 18:36:50',2,'2006-02-15 21:30:53'), +(808,'2005-05-29 19:08:20',1928,104,'2005-06-06 20:32:20',2,'2006-02-15 21:30:53'), +(809,'2005-05-29 19:10:20',2114,222,'2005-06-05 19:05:20',2,'2006-02-15 21:30:53'), +(810,'2005-05-29 19:12:04',2533,346,'2005-06-04 21:12:04',2,'2006-02-15 21:30:53'), +(811,'2005-05-29 19:30:42',4419,401,'2005-06-02 16:19:42',2,'2006-02-15 21:30:53'), +(812,'2005-05-29 20:00:30',1099,225,'2005-05-30 19:43:30',2,'2006-02-15 21:30:53'), +(813,'2005-05-29 20:14:34',4554,344,'2005-06-05 20:56:34',1,'2006-02-15 21:30:53'), +(814,'2005-05-29 20:16:12',1572,134,'2005-06-07 17:47:12',1,'2006-02-15 21:30:53'), +(815,'2005-05-29 20:24:28',3757,14,'2005-06-03 15:32:28',1,'2006-02-15 21:30:53'), +(816,'2005-05-29 20:26:39',630,474,'2005-06-06 22:31:39',2,'2006-02-15 21:30:53'), +(817,'2005-05-29 20:39:14',186,554,'2005-05-31 18:24:14',1,'2006-02-15 21:30:53'), +(818,'2005-05-29 20:47:53',4106,321,'2005-06-02 23:18:53',2,'2006-02-15 21:30:53'), +(819,'2005-05-29 21:00:32',623,511,'2005-06-02 15:15:32',2,'2006-02-15 21:30:53'), +(820,'2005-05-29 21:07:22',2584,22,'2005-06-07 00:22:22',2,'2006-02-15 21:30:53'), +(821,'2005-05-29 21:31:12',3380,348,'2005-06-04 22:49:12',1,'2006-02-15 21:30:53'), +(822,'2005-05-29 21:36:00',2634,480,'2005-06-07 17:24:00',1,'2006-02-15 21:30:53'), +(823,'2005-05-29 21:39:37',3249,441,'2005-05-30 22:06:37',1,'2006-02-15 21:30:53'), +(824,'2005-05-29 21:45:32',3518,357,'2005-05-31 19:01:32',1,'2006-02-15 21:30:53'), +(825,'2005-05-29 21:49:41',712,371,'2005-06-04 20:27:41',2,'2006-02-15 21:30:53'), +(826,'2005-05-29 21:56:15',2263,207,'2005-06-08 03:18:15',1,'2006-02-15 21:30:53'), +(827,'2005-05-29 21:58:43',62,573,'2005-06-06 00:54:43',1,'2006-02-15 21:30:53'), +(828,'2005-05-29 22:14:55',2468,217,'2005-05-30 17:22:55',1,'2006-02-15 21:30:53'), +(829,'2005-05-29 22:16:42',1684,371,'2005-06-06 01:38:42',1,'2006-02-15 21:30:53'), +(830,'2005-05-29 22:43:55',3464,3,'2005-06-01 17:43:55',1,'2006-02-15 21:30:53'), +(831,'2005-05-29 22:50:25',3912,509,'2005-06-06 02:27:25',1,'2006-02-15 21:30:53'), +(832,'2005-05-29 22:51:20',1381,159,'2005-06-07 17:37:20',2,'2006-02-15 21:30:53'), +(833,'2005-05-29 23:21:56',2898,417,'2005-06-02 18:40:56',1,'2006-02-15 21:30:53'), +(834,'2005-05-29 23:24:30',3628,84,'2005-05-30 22:00:30',2,'2006-02-15 21:30:53'), +(835,'2005-05-29 23:37:00',299,381,'2005-06-02 23:38:00',1,'2006-02-15 21:30:53'), +(836,'2005-05-29 23:56:42',3140,368,'2005-05-31 04:11:42',2,'2006-02-15 21:30:53'), +(837,'2005-05-30 00:02:08',977,172,'2005-06-02 05:31:08',2,'2006-02-15 21:30:53'), +(838,'2005-05-30 00:27:57',2859,504,'2005-06-06 22:19:57',2,'2006-02-15 21:30:53'), +(839,'2005-05-30 00:28:12',1886,337,'2005-06-08 02:43:12',1,'2006-02-15 21:30:53'), +(840,'2005-05-30 00:28:41',4049,79,'2005-05-31 20:39:41',2,'2006-02-15 21:30:53'), +(841,'2005-05-30 00:31:17',4318,387,'2005-06-02 19:14:17',1,'2006-02-15 21:30:53'), +(842,'2005-05-30 00:32:04',2328,238,'2005-06-01 02:21:04',1,'2006-02-15 21:30:53'), +(843,'2005-05-30 00:44:24',2214,313,'2005-05-31 00:58:24',2,'2006-02-15 21:30:53'), +(844,'2005-05-30 00:58:20',536,429,'2005-06-01 00:38:20',1,'2006-02-15 21:30:53'), +(845,'2005-05-30 01:17:25',2001,72,'2005-06-07 02:00:25',1,'2006-02-15 21:30:53'), +(846,'2005-05-30 01:17:45',938,49,'2005-06-01 00:56:45',2,'2006-02-15 21:30:53'), +(847,'2005-05-30 01:18:15',4387,380,'2005-06-06 20:20:15',2,'2006-02-15 21:30:53'), +(848,'2005-05-30 01:19:53',1363,436,'2005-06-05 23:40:53',1,'2006-02-15 21:30:53'), +(849,'2005-05-30 01:23:07',2424,449,'2005-06-07 01:50:07',1,'2006-02-15 21:30:53'), +(850,'2005-05-30 01:35:12',2390,517,'2005-05-31 01:51:12',1,'2006-02-15 21:30:53'), +(851,'2005-05-30 01:35:15',2780,530,'2005-06-06 07:27:15',1,'2006-02-15 21:30:53'), +(852,'2005-05-30 01:36:57',1622,549,'2005-06-01 22:44:57',1,'2006-02-15 21:30:53'), +(853,'2005-05-30 01:43:31',3693,122,'2005-06-01 02:05:31',1,'2006-02-15 21:30:53'), +(854,'2005-05-30 01:56:11',921,369,'2005-06-01 06:34:11',2,'2006-02-15 21:30:53'), +(855,'2005-05-30 02:00:28',2527,406,'2005-06-03 20:16:28',2,'2006-02-15 21:30:53'), +(856,'2005-05-30 02:01:21',3969,53,'2005-06-07 03:25:21',1,'2006-02-15 21:30:53'), +(857,'2005-05-30 02:01:23',2569,204,'2005-06-02 06:07:23',2,'2006-02-15 21:30:53'), +(858,'2005-05-30 02:10:32',1258,358,'2005-06-01 04:42:32',1,'2006-02-15 21:30:53'), +(859,'2005-05-30 02:36:20',3032,79,'2005-06-02 07:49:20',2,'2006-02-15 21:30:53'), +(860,'2005-05-30 02:45:16',578,276,'2005-06-08 07:28:16',1,'2006-02-15 21:30:53'), +(861,'2005-05-30 02:48:32',3711,502,'2005-06-06 05:43:32',1,'2006-02-15 21:30:53'), +(862,'2005-05-30 03:09:11',1186,328,'2005-06-03 21:27:11',1,'2006-02-15 21:30:53'), +(863,'2005-05-30 03:14:59',3999,379,'2005-06-05 04:34:59',2,'2006-02-15 21:30:53'), +(864,'2005-05-30 03:27:17',2777,544,'2005-06-06 08:28:17',1,'2006-02-15 21:30:53'), +(865,'2005-05-30 03:39:44',3183,154,'2005-06-07 08:10:44',2,'2006-02-15 21:30:53'), +(866,'2005-05-30 03:43:54',2867,8,'2005-06-08 04:28:54',1,'2006-02-15 21:30:53'), +(867,'2005-05-30 03:54:43',3389,99,'2005-06-01 22:59:43',1,'2006-02-15 21:30:53'), +(868,'2005-05-30 04:19:55',3604,28,'2005-05-31 02:28:55',1,'2006-02-15 21:30:53'), +(869,'2005-05-30 04:22:06',3399,296,'2005-06-03 09:18:06',2,'2006-02-15 21:30:53'), +(870,'2005-05-30 04:25:47',2903,391,'2005-06-06 04:32:47',1,'2006-02-15 21:30:53'), +(871,'2005-05-30 05:01:30',4573,303,'2005-06-04 06:22:30',2,'2006-02-15 21:30:53'), +(872,'2005-05-30 05:03:04',3904,548,'2005-06-06 10:35:04',1,'2006-02-15 21:30:53'), +(873,'2005-05-30 05:15:20',4568,375,'2005-06-07 00:49:20',2,'2006-02-15 21:30:53'), +(874,'2005-05-30 05:36:21',363,52,'2005-06-01 09:32:21',1,'2006-02-15 21:30:53'), +(875,'2005-05-30 05:38:24',1428,326,'2005-06-06 00:34:24',2,'2006-02-15 21:30:53'), +(876,'2005-05-30 05:41:22',1471,339,'2005-06-07 09:06:22',2,'2006-02-15 21:30:53'), +(877,'2005-05-30 05:48:59',886,9,'2005-06-02 09:30:59',1,'2006-02-15 21:30:53'), +(878,'2005-05-30 05:49:13',4265,323,'2005-06-07 04:35:13',1,'2006-02-15 21:30:53'), +(879,'2005-05-30 05:49:42',4021,482,'2005-06-05 01:45:42',2,'2006-02-15 21:30:53'), +(880,'2005-05-30 06:12:33',1819,460,'2005-06-02 04:35:33',2,'2006-02-15 21:30:53'), +(881,'2005-05-30 06:15:36',602,242,'2005-06-02 10:21:36',1,'2006-02-15 21:30:53'), +(882,'2005-05-30 06:16:06',3841,477,'2005-06-02 11:57:06',1,'2006-02-15 21:30:53'), +(883,'2005-05-30 06:21:05',2271,399,'2005-06-07 04:50:05',2,'2006-02-15 21:30:53'), +(884,'2005-05-30 06:41:32',4079,17,'2005-05-31 07:39:32',1,'2006-02-15 21:30:53'), +(885,'2005-05-30 06:54:28',646,62,'2005-06-03 07:03:28',2,'2006-02-15 21:30:53'), +(886,'2005-05-30 06:54:51',4356,393,'2005-06-01 06:04:51',2,'2006-02-15 21:30:53'), +(887,'2005-05-30 07:10:00',2727,16,'2005-06-01 06:48:00',2,'2006-02-15 21:30:53'), +(888,'2005-05-30 07:13:14',387,128,'2005-06-06 09:50:14',1,'2006-02-15 21:30:53'), +(889,'2005-05-30 07:14:53',1299,114,'2005-05-31 07:56:53',2,'2006-02-15 21:30:53'), +(890,'2005-05-30 07:43:04',1464,349,'2005-06-01 11:26:04',1,'2006-02-15 21:30:53'), +(891,'2005-05-30 07:43:12',2611,391,'2005-06-08 09:21:12',1,'2006-02-15 21:30:53'), +(892,'2005-05-30 08:02:56',471,274,'2005-06-05 12:51:56',1,'2006-02-15 21:30:53'), +(893,'2005-05-30 08:06:59',3260,502,'2005-06-07 08:23:59',2,'2006-02-15 21:30:53'), +(894,'2005-05-30 08:31:31',1118,400,'2005-06-07 12:39:31',1,'2006-02-15 21:30:53'), +(895,'2005-05-30 08:50:43',2744,192,'2005-06-05 10:58:43',1,'2006-02-15 21:30:53'), +(896,'2005-05-30 09:03:52',2817,207,'2005-06-05 07:37:52',2,'2006-02-15 21:30:53'), +(897,'2005-05-30 09:10:01',1334,432,'2005-06-08 03:43:01',1,'2006-02-15 21:30:53'), +(898,'2005-05-30 09:26:19',3497,384,'2005-06-01 10:45:19',2,'2006-02-15 21:30:53'), +(899,'2005-05-30 09:29:30',1096,156,'2005-06-06 12:39:30',2,'2006-02-15 21:30:53'), +(900,'2005-05-30 09:38:41',3543,586,'2005-06-07 11:54:41',1,'2006-02-15 21:30:53'), +(901,'2005-05-30 09:40:40',760,259,'2005-06-02 10:32:40',1,'2006-02-15 21:30:53'), +(902,'2005-05-30 09:53:36',1514,561,'2005-06-07 12:10:36',1,'2006-02-15 21:30:53'), +(903,'2005-05-30 10:11:29',2423,197,'2005-06-03 09:33:29',1,'2006-02-15 21:30:53'), +(904,'2005-05-30 10:19:42',2466,44,'2005-06-05 04:58:42',2,'2006-02-15 21:30:53'), +(905,'2005-05-30 10:25:00',4372,50,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'), +(906,'2005-05-30 10:30:38',1862,549,'2005-06-07 06:44:38',2,'2006-02-15 21:30:53'), +(907,'2005-05-30 10:37:27',3320,506,'2005-06-02 09:51:27',1,'2006-02-15 21:30:53'), +(908,'2005-05-30 10:38:37',4427,85,'2005-06-03 09:56:37',1,'2006-02-15 21:30:53'), +(909,'2005-05-30 10:43:38',3775,486,'2005-06-08 12:07:38',1,'2006-02-15 21:30:53'), +(910,'2005-05-30 10:46:16',2601,374,'2005-06-04 13:32:16',1,'2006-02-15 21:30:53'), +(911,'2005-05-30 10:50:22',1404,366,'2005-06-07 12:26:22',2,'2006-02-15 21:30:53'), +(912,'2005-05-30 10:58:33',3200,390,'2005-05-31 09:31:33',2,'2006-02-15 21:30:53'), +(913,'2005-05-30 11:04:58',3213,369,'2005-06-07 13:22:58',2,'2006-02-15 21:30:53'), +(914,'2005-05-30 11:06:00',1393,596,'2005-06-04 06:07:00',2,'2006-02-15 21:30:53'), +(915,'2005-05-30 11:20:27',1859,115,'2005-06-02 11:55:27',1,'2006-02-15 21:30:53'), +(916,'2005-05-30 11:25:01',1290,6,'2005-05-31 09:06:01',1,'2006-02-15 21:30:53'), +(917,'2005-05-30 11:27:06',3629,385,'2005-06-02 08:31:06',1,'2006-02-15 21:30:53'), +(918,'2005-05-30 11:32:24',818,197,'2005-05-31 07:55:24',2,'2006-02-15 21:30:53'), +(919,'2005-05-30 11:35:06',4052,374,'2005-06-02 13:16:06',2,'2006-02-15 21:30:53'), +(920,'2005-05-30 11:44:01',3860,584,'2005-06-02 08:19:01',2,'2006-02-15 21:30:53'), +(921,'2005-05-30 11:53:09',1827,508,'2005-06-03 10:00:09',2,'2006-02-15 21:30:53'), +(922,'2005-05-30 11:55:55',2442,550,'2005-06-08 10:12:55',2,'2006-02-15 21:30:53'), +(923,'2005-05-30 11:58:50',1884,37,'2005-06-05 09:57:50',1,'2006-02-15 21:30:53'), +(924,'2005-05-30 12:10:59',3279,293,'2005-06-04 17:28:59',1,'2006-02-15 21:30:53'), +(925,'2005-05-30 12:13:52',3203,137,'2005-06-02 14:41:52',2,'2006-02-15 21:30:53'), +(926,'2005-05-30 12:15:54',4327,76,'2005-06-01 08:53:54',2,'2006-02-15 21:30:53'), +(927,'2005-05-30 12:16:40',1158,167,'2005-05-31 16:20:40',2,'2006-02-15 21:30:53'), +(928,'2005-05-30 12:27:14',246,79,'2005-06-05 13:56:14',2,'2006-02-15 21:30:53'), +(929,'2005-05-30 12:32:39',4296,536,'2005-06-06 12:17:39',1,'2006-02-15 21:30:53'), +(930,'2005-05-30 12:44:57',2835,141,'2005-06-04 10:53:57',2,'2006-02-15 21:30:53'), +(931,'2005-05-30 12:53:01',3384,421,'2005-05-31 14:28:01',1,'2006-02-15 21:30:53'), +(932,'2005-05-30 12:55:36',719,198,'2005-05-31 10:30:36',2,'2006-02-15 21:30:53'), +(933,'2005-05-30 13:08:45',3672,66,'2005-06-01 18:56:45',1,'2006-02-15 21:30:53'), +(934,'2005-05-30 13:24:46',3595,60,'2005-06-08 16:44:46',2,'2006-02-15 21:30:53'), +(935,'2005-05-30 13:29:36',2421,256,'2005-06-02 11:08:36',1,'2006-02-15 21:30:53'), +(936,'2005-05-30 13:52:49',901,469,'2005-06-07 16:56:49',1,'2006-02-15 21:30:53'), +(937,'2005-05-30 14:47:31',1054,304,'2005-06-05 09:53:31',2,'2006-02-15 21:30:53'), +(938,'2005-05-30 14:47:31',1521,46,'2005-06-04 10:10:31',2,'2006-02-15 21:30:53'), +(939,'2005-05-30 14:49:34',1314,367,'2005-06-01 19:00:34',1,'2006-02-15 21:30:53'), +(940,'2005-05-30 15:01:02',1278,534,'2005-06-01 18:26:02',1,'2006-02-15 21:30:53'), +(941,'2005-05-30 15:02:25',3630,562,'2005-06-01 17:19:25',1,'2006-02-15 21:30:53'), +(942,'2005-05-30 15:05:47',4279,473,'2005-06-08 15:59:47',2,'2006-02-15 21:30:53'), +(943,'2005-05-30 15:20:19',3737,57,'2005-06-06 18:53:19',1,'2006-02-15 21:30:53'), +(944,'2005-05-30 15:26:24',151,131,'2005-06-07 18:09:24',2,'2006-02-15 21:30:53'), +(945,'2005-05-30 15:33:17',1441,357,'2005-06-02 15:02:17',2,'2006-02-15 21:30:53'), +(946,'2005-05-30 15:35:08',1264,486,'2005-06-08 11:38:08',1,'2006-02-15 21:30:53'), +(947,'2005-05-30 15:36:57',4478,62,'2005-06-04 18:48:57',1,'2006-02-15 21:30:53'), +(948,'2005-05-30 15:44:27',585,245,'2005-06-08 17:30:27',2,'2006-02-15 21:30:53'), +(949,'2005-05-30 15:50:39',2202,368,'2005-06-03 14:25:39',1,'2006-02-15 21:30:53'), +(950,'2005-05-30 16:06:08',491,83,'2005-06-01 11:43:08',1,'2006-02-15 21:30:53'), +(951,'2005-05-30 16:10:35',1395,59,'2005-05-31 19:01:35',2,'2006-02-15 21:30:53'), +(952,'2005-05-30 16:28:07',4389,311,'2005-06-02 16:12:07',2,'2006-02-15 21:30:53'), +(953,'2005-05-30 16:34:02',2194,210,'2005-05-31 20:34:02',1,'2006-02-15 21:30:53'), +(954,'2005-05-30 16:57:29',1231,297,'2005-06-08 13:30:29',2,'2006-02-15 21:30:53'), +(955,'2005-05-30 16:59:03',4140,301,'2005-05-31 11:58:03',2,'2006-02-15 21:30:53'), +(956,'2005-05-30 17:30:28',647,296,'2005-06-07 13:54:28',2,'2006-02-15 21:30:53'), +(957,'2005-05-30 17:53:29',4428,440,'2005-06-03 15:31:29',2,'2006-02-15 21:30:53'), +(958,'2005-05-30 17:58:03',548,186,'2005-06-01 19:17:03',2,'2006-02-15 21:30:53'), +(959,'2005-05-30 18:07:00',3108,535,'2005-06-02 14:37:00',2,'2006-02-15 21:30:53'), +(960,'2005-05-30 18:13:23',1966,445,'2005-06-04 00:12:23',2,'2006-02-15 21:30:53'), +(961,'2005-05-30 18:16:44',3293,588,'2005-06-04 23:40:44',2,'2006-02-15 21:30:53'), +(962,'2005-05-30 18:45:17',4535,520,'2005-06-05 22:47:17',1,'2006-02-15 21:30:53'), +(963,'2005-05-30 18:52:53',1921,225,'2005-06-07 16:19:53',2,'2006-02-15 21:30:53'), +(964,'2005-05-30 18:53:21',657,287,'2005-06-04 22:32:21',2,'2006-02-15 21:30:53'), +(965,'2005-05-30 19:00:14',3363,502,'2005-05-31 17:10:14',2,'2006-02-15 21:30:53'), +(966,'2005-05-30 19:00:37',1294,496,'2005-05-31 23:51:37',1,'2006-02-15 21:30:53'), +(967,'2005-05-30 19:12:06',1954,330,'2005-06-09 00:02:06',2,'2006-02-15 21:30:53'), +(968,'2005-05-30 19:20:03',119,576,'2005-05-31 18:17:03',2,'2006-02-15 21:30:53'), +(969,'2005-05-30 19:23:48',443,551,'2005-05-31 21:14:48',1,'2006-02-15 21:30:53'), +(970,'2005-05-30 19:50:28',1520,307,'2005-06-09 01:19:28',1,'2006-02-15 21:30:53'), +(971,'2005-05-30 20:10:52',2911,561,'2005-06-06 20:47:52',1,'2006-02-15 21:30:53'), +(972,'2005-05-30 20:21:07',2,411,'2005-06-06 00:36:07',1,'2006-02-15 21:30:53'), +(973,'2005-05-30 20:27:45',1914,473,'2005-06-08 22:47:45',2,'2006-02-15 21:30:53'), +(974,'2005-05-30 20:28:42',2617,596,'2005-06-08 23:45:42',2,'2006-02-15 21:30:53'), +(975,'2005-05-30 21:07:15',3109,7,'2005-06-03 01:48:15',2,'2006-02-15 21:30:53'), +(976,'2005-05-30 21:11:19',2290,581,'2005-06-06 02:16:19',2,'2006-02-15 21:30:53'), +(977,'2005-05-30 21:22:26',2029,394,'2005-06-04 22:32:26',2,'2006-02-15 21:30:53'), +(978,'2005-05-30 21:30:52',407,154,'2005-06-07 16:22:52',1,'2006-02-15 21:30:53'), +(979,'2005-05-30 21:37:11',3917,279,'2005-06-08 00:24:11',2,'2006-02-15 21:30:53'), +(980,'2005-05-30 21:45:19',4169,273,'2005-06-01 20:32:19',1,'2006-02-15 21:30:53'), +(981,'2005-05-30 21:52:42',2913,326,'2005-06-01 03:15:42',2,'2006-02-15 21:30:53'), +(982,'2005-05-30 22:15:24',3560,524,'2005-06-02 16:18:24',1,'2006-02-15 21:30:53'), +(983,'2005-05-30 22:15:51',63,115,'2005-06-02 22:56:51',1,'2006-02-15 21:30:53'), +(984,'2005-05-30 22:17:17',2305,262,'2005-06-01 20:15:17',2,'2006-02-15 21:30:53'), +(985,'2005-05-30 22:18:35',1573,564,'2005-06-04 23:36:35',1,'2006-02-15 21:30:53'), +(986,'2005-05-30 22:22:52',4045,253,'2005-06-01 02:24:52',1,'2006-02-15 21:30:53'), +(987,'2005-05-30 22:59:12',390,11,'2005-06-07 20:56:12',1,'2006-02-15 21:30:53'), +(988,'2005-05-30 23:08:03',1364,12,'2005-06-07 00:22:03',1,'2006-02-15 21:30:53'), +(989,'2005-05-30 23:11:51',4388,83,'2005-06-03 20:36:51',2,'2006-02-15 21:30:53'), +(990,'2005-05-30 23:25:14',4171,311,'2005-06-06 18:41:14',2,'2006-02-15 21:30:53'), +(991,'2005-05-30 23:29:22',2863,593,'2005-06-07 23:16:22',1,'2006-02-15 21:30:53'), +(992,'2005-05-30 23:47:56',3572,123,'2005-06-05 19:01:56',1,'2006-02-15 21:30:53'), +(993,'2005-05-30 23:54:19',2080,513,'2005-06-04 21:27:19',1,'2006-02-15 21:30:53'), +(994,'2005-05-30 23:55:36',2798,472,'2005-06-04 01:00:36',2,'2006-02-15 21:30:53'), +(995,'2005-05-31 00:06:02',17,150,'2005-06-06 02:30:02',2,'2006-02-15 21:30:53'), +(996,'2005-05-31 00:06:20',2075,331,'2005-05-31 21:29:20',2,'2006-02-15 21:30:53'), +(997,'2005-05-31 00:08:25',4243,216,'2005-06-02 00:17:25',2,'2006-02-15 21:30:53'), +(998,'2005-05-31 00:16:57',3395,389,'2005-06-01 22:41:57',1,'2006-02-15 21:30:53'), +(999,'2005-05-31 00:25:10',4433,413,'2005-06-03 06:05:10',2,'2006-02-15 21:30:53'), +(1000,'2005-05-31 00:25:56',1774,332,'2005-06-08 19:42:56',2,'2006-02-15 21:30:53'), +(1001,'2005-05-31 00:46:31',1498,64,'2005-06-06 06:14:31',2,'2006-02-15 21:30:53'), +(1002,'2005-05-31 00:47:56',709,397,'2005-06-06 19:51:56',1,'2006-02-15 21:30:53'), +(1003,'2005-05-31 00:48:20',133,161,'2005-06-02 04:53:20',2,'2006-02-15 21:30:53'), +(1004,'2005-05-31 00:48:36',1588,565,'2005-06-01 20:56:36',1,'2006-02-15 21:30:53'), +(1005,'2005-05-31 00:53:25',4006,551,'2005-06-04 01:21:25',2,'2006-02-15 21:30:53'), +(1006,'2005-05-31 00:57:08',3461,222,'2005-06-02 22:35:08',1,'2006-02-15 21:30:53'), +(1007,'2005-05-31 01:02:28',3185,24,'2005-06-07 01:36:28',2,'2006-02-15 21:30:53'), +(1008,'2005-05-31 01:18:56',914,599,'2005-06-01 01:24:56',2,'2006-02-15 21:30:53'), +(1009,'2005-05-31 01:47:35',2523,485,'2005-06-03 20:26:35',1,'2006-02-15 21:30:53'), +(1010,'2005-05-31 01:57:32',4038,49,'2005-06-01 06:50:32',2,'2006-02-15 21:30:53'), +(1011,'2005-05-31 02:05:39',118,164,'2005-06-04 21:27:39',2,'2006-02-15 21:30:53'), +(1012,'2005-05-31 02:18:05',688,291,'2005-06-03 06:47:05',1,'2006-02-15 21:30:53'), +(1013,'2005-05-31 02:37:00',4522,384,'2005-06-02 06:39:00',2,'2006-02-15 21:30:53'), +(1014,'2005-05-31 02:39:16',766,280,'2005-06-01 06:03:16',2,'2006-02-15 21:30:53'), +(1015,'2005-05-31 02:44:57',3702,526,'2005-06-07 23:01:57',2,'2006-02-15 21:30:53'), +(1016,'2005-05-31 02:49:43',3423,204,'2005-06-04 03:48:43',1,'2006-02-15 21:30:53'), +(1017,'2005-05-31 02:53:36',1242,16,'2005-06-03 05:04:36',1,'2006-02-15 21:30:53'), +(1018,'2005-05-31 02:53:42',1930,594,'2005-06-03 00:47:42',2,'2006-02-15 21:30:53'), +(1019,'2005-05-31 03:05:07',3975,279,'2005-06-03 08:34:07',1,'2006-02-15 21:30:53'), +(1020,'2005-05-31 03:06:08',3402,138,'2005-06-02 08:57:08',2,'2006-02-15 21:30:53'), +(1021,'2005-05-31 03:16:15',2724,541,'2005-06-08 06:43:15',2,'2006-02-15 21:30:53'), +(1022,'2005-05-31 03:16:45',842,239,'2005-06-08 09:04:45',1,'2006-02-15 21:30:53'), +(1023,'2005-05-31 03:26:50',2483,227,'2005-06-05 08:19:50',2,'2006-02-15 21:30:53'), +(1024,'2005-05-31 03:30:19',2310,457,'2005-06-09 05:52:19',2,'2006-02-15 21:30:53'), +(1025,'2005-05-31 03:41:37',1618,93,'2005-06-08 07:05:37',2,'2006-02-15 21:30:53'), +(1026,'2005-05-31 03:45:26',632,107,'2005-06-06 22:30:26',2,'2006-02-15 21:30:53'), +(1027,'2005-05-31 03:46:19',2718,55,'2005-06-09 03:50:19',1,'2006-02-15 21:30:53'), +(1028,'2005-05-31 03:48:05',4479,51,'2005-06-01 03:51:05',1,'2006-02-15 21:30:53'), +(1029,'2005-05-31 03:52:02',2082,50,'2005-06-06 08:10:02',1,'2006-02-15 21:30:53'), +(1030,'2005-05-31 04:06:47',3948,267,'2005-06-02 02:59:47',1,'2006-02-15 21:30:53'), +(1031,'2005-05-31 04:23:01',917,416,'2005-06-06 08:35:01',1,'2006-02-15 21:30:53'), +(1032,'2005-05-31 04:28:43',2937,236,'2005-06-02 02:00:43',2,'2006-02-15 21:30:53'), +(1033,'2005-05-31 04:50:07',14,25,'2005-06-02 01:53:07',1,'2006-02-15 21:30:53'), +(1034,'2005-05-31 04:53:40',4117,293,'2005-06-09 08:25:40',2,'2006-02-15 21:30:53'), +(1035,'2005-05-31 05:01:09',949,362,'2005-06-02 03:59:09',1,'2006-02-15 21:30:53'), +(1036,'2005-05-31 05:21:10',2164,438,'2005-06-04 04:19:10',1,'2006-02-15 21:30:53'), +(1037,'2005-05-31 05:22:25',810,569,'2005-06-09 04:52:25',1,'2006-02-15 21:30:53'), +(1038,'2005-05-31 05:23:47',1253,385,'2005-06-02 03:57:47',2,'2006-02-15 21:30:53'), +(1039,'2005-05-31 05:32:29',2479,124,'2005-06-01 06:04:29',2,'2006-02-15 21:30:53'), +(1040,'2005-05-31 05:35:16',2546,270,'2005-06-09 04:14:16',1,'2006-02-15 21:30:53'), +(1041,'2005-05-31 05:46:23',4432,272,'2005-06-06 09:50:23',2,'2006-02-15 21:30:53'), +(1042,'2005-05-31 05:53:00',3155,506,'2005-06-01 05:24:00',1,'2006-02-15 21:30:53'), +(1043,'2005-05-31 06:11:40',2322,412,'2005-06-08 09:15:40',2,'2006-02-15 21:30:53'), +(1044,'2005-05-31 06:24:44',2574,70,'2005-06-03 04:51:44',1,'2006-02-15 21:30:53'), +(1045,'2005-05-31 06:29:01',3470,594,'2005-06-09 04:31:01',1,'2006-02-15 21:30:53'), +(1046,'2005-05-31 06:42:30',468,179,'2005-06-03 04:33:30',2,'2006-02-15 21:30:53'), +(1047,'2005-05-31 06:45:57',1366,72,'2005-06-04 09:49:57',2,'2006-02-15 21:30:53'), +(1048,'2005-05-31 06:49:53',2811,55,'2005-06-02 11:33:53',1,'2006-02-15 21:30:53'), +(1049,'2005-05-31 06:57:04',3913,312,'2005-06-02 11:32:04',2,'2006-02-15 21:30:53'), +(1050,'2005-05-31 07:01:27',726,303,'2005-06-03 07:50:27',2,'2006-02-15 21:30:53'), +(1051,'2005-05-31 07:02:09',1025,246,'2005-06-03 01:32:09',1,'2006-02-15 21:30:53'), +(1052,'2005-05-31 07:07:03',2157,156,'2005-06-05 09:38:03',1,'2006-02-15 21:30:53'), +(1053,'2005-05-31 07:12:44',3734,196,'2005-06-04 12:33:44',1,'2006-02-15 21:30:53'), +(1054,'2005-05-31 07:33:25',1575,126,'2005-06-02 01:40:25',2,'2006-02-15 21:30:53'), +(1055,'2005-05-31 07:47:18',1639,108,'2005-06-03 01:57:18',1,'2006-02-15 21:30:53'), +(1056,'2005-05-31 07:48:07',1591,519,'2005-06-05 08:51:07',2,'2006-02-15 21:30:53'), +(1057,'2005-05-31 07:58:06',497,124,'2005-06-06 03:21:06',1,'2006-02-15 21:30:53'), +(1058,'2005-05-31 08:04:17',40,116,'2005-06-03 11:12:17',2,'2006-02-15 21:30:53'), +(1059,'2005-05-31 08:20:43',3041,241,'2005-06-04 09:05:43',2,'2006-02-15 21:30:53'), +(1060,'2005-05-31 08:21:43',2676,570,'2005-06-09 04:02:43',2,'2006-02-15 21:30:53'), +(1061,'2005-05-31 08:27:58',965,109,'2005-06-07 02:34:58',1,'2006-02-15 21:30:53'), +(1062,'2005-05-31 08:38:20',2223,176,'2005-06-09 08:23:20',2,'2006-02-15 21:30:53'), +(1063,'2005-05-31 08:44:29',2484,7,'2005-06-09 08:00:29',1,'2006-02-15 21:30:53'), +(1064,'2005-05-31 08:50:07',2373,460,'2005-06-02 14:47:07',2,'2006-02-15 21:30:53'), +(1065,'2005-05-31 08:54:56',3379,316,'2005-06-08 09:21:56',1,'2006-02-15 21:30:53'), +(1066,'2005-05-31 09:07:33',2383,541,'2005-06-09 05:34:33',2,'2006-02-15 21:30:53'), +(1067,'2005-05-31 09:12:13',2345,32,'2005-06-01 06:15:13',1,'2006-02-15 21:30:53'), +(1068,'2005-05-31 09:32:15',150,443,'2005-06-01 11:20:15',1,'2006-02-15 21:30:53'), +(1069,'2005-05-31 09:32:31',3057,251,'2005-06-08 10:19:31',2,'2006-02-15 21:30:53'), +(1070,'2005-05-31 09:39:56',3170,228,'2005-06-05 10:23:56',1,'2006-02-15 21:30:53'), +(1071,'2005-05-31 09:48:56',469,174,'2005-06-02 03:52:56',2,'2006-02-15 21:30:53'), +(1072,'2005-05-31 09:52:50',2557,272,'2005-06-05 05:39:50',1,'2006-02-15 21:30:53'), +(1073,'2005-05-31 09:55:04',522,146,'2005-06-07 03:55:04',1,'2006-02-15 21:30:53'), +(1074,'2005-05-31 10:04:42',2508,503,'2005-06-02 15:27:42',2,'2006-02-15 21:30:53'), +(1075,'2005-05-31 10:13:34',2279,9,'2005-06-09 08:11:34',1,'2006-02-15 21:30:53'), +(1076,'2005-05-31 10:14:31',2551,214,'2005-06-05 10:13:31',2,'2006-02-15 21:30:53'), +(1077,'2005-05-31 10:22:54',1986,24,'2005-06-02 12:21:54',1,'2006-02-15 21:30:53'), +(1078,'2005-05-31 10:28:33',3682,230,'2005-06-03 14:45:33',2,'2006-02-15 21:30:53'), +(1079,'2005-05-31 10:48:17',268,312,'2005-06-08 12:30:17',1,'2006-02-15 21:30:53'), +(1080,'2005-05-31 10:55:26',3491,215,'2005-06-03 13:13:26',2,'2006-02-15 21:30:53'), +(1081,'2005-05-31 10:56:32',4524,404,'2005-06-06 11:31:32',1,'2006-02-15 21:30:53'), +(1082,'2005-05-31 11:02:01',4510,239,'2005-06-05 08:43:01',1,'2006-02-15 21:30:53'), +(1083,'2005-05-31 11:04:48',2393,556,'2005-06-05 13:32:48',1,'2006-02-15 21:30:53'), +(1084,'2005-05-31 11:10:17',4577,12,'2005-06-01 11:15:17',1,'2006-02-15 21:30:53'), +(1085,'2005-05-31 11:15:43',301,5,'2005-06-07 12:02:43',1,'2006-02-15 21:30:53'), +(1086,'2005-05-31 11:17:37',2909,549,'2005-06-06 13:58:37',2,'2006-02-15 21:30:53'), +(1087,'2005-05-31 11:18:08',431,169,'2005-06-04 08:33:08',1,'2006-02-15 21:30:53'), +(1088,'2005-05-31 11:35:13',3988,356,'2005-06-06 16:01:13',2,'2006-02-15 21:30:53'), +(1089,'2005-05-31 11:38:29',3784,367,'2005-06-02 08:06:29',1,'2006-02-15 21:30:53'), +(1090,'2005-05-31 12:03:44',3329,23,'2005-06-02 15:54:44',2,'2006-02-15 21:30:53'), +(1091,'2005-05-31 12:11:04',3853,251,'2005-06-04 11:42:04',1,'2006-02-15 21:30:53'), +(1092,'2005-05-31 12:15:57',4412,278,'2005-06-03 15:39:57',2,'2006-02-15 21:30:53'), +(1093,'2005-05-31 12:32:26',2189,214,'2005-06-03 07:51:26',2,'2006-02-15 21:30:53'), +(1094,'2005-05-31 13:03:49',3810,547,'2005-06-05 14:30:49',2,'2006-02-15 21:30:53'), +(1095,'2005-05-31 13:15:41',4546,252,'2005-06-05 12:10:41',1,'2006-02-15 21:30:53'), +(1096,'2005-05-31 13:30:49',1066,271,'2005-06-09 13:53:49',1,'2006-02-15 21:30:53'), +(1097,'2005-05-31 13:38:42',2285,491,'2005-06-01 13:54:42',2,'2006-02-15 21:30:53'), +(1098,'2005-05-31 13:51:48',1050,425,'2005-06-09 18:42:48',2,'2006-02-15 21:30:53'), +(1099,'2005-05-31 13:54:48',924,269,'2005-06-05 13:04:48',2,'2006-02-15 21:30:53'), +(1100,'2005-05-31 14:03:21',316,497,'2005-06-06 16:08:21',1,'2006-02-15 21:30:53'), +(1101,'2005-05-31 14:13:59',1174,260,'2005-06-07 15:49:59',1,'2006-02-15 21:30:53'), +(1102,'2005-05-31 14:20:29',2052,115,'2005-06-04 17:38:29',2,'2006-02-15 21:30:53'), +(1103,'2005-05-31 14:24:18',3154,353,'2005-06-09 10:27:18',1,'2006-02-15 21:30:53'), +(1104,'2005-05-31 14:30:01',1619,466,'2005-06-05 12:07:01',1,'2006-02-15 21:30:53'), +(1105,'2005-05-31 14:33:56',1708,26,'2005-06-07 11:30:56',1,'2006-02-15 21:30:53'), +(1106,'2005-05-31 14:36:52',4185,109,'2005-06-01 14:33:52',2,'2006-02-15 21:30:53'), +(1107,'2005-05-31 15:04:05',3449,53,'2005-06-07 16:42:05',2,'2006-02-15 21:30:53'), +(1108,'2005-05-31 15:05:12',2562,254,'2005-06-09 19:48:12',2,'2006-02-15 21:30:53'), +(1109,'2005-05-31 15:12:15',2031,481,'2005-06-09 16:21:15',1,'2006-02-15 21:30:53'), +(1110,'2005-05-31 15:22:51',2085,355,'2005-06-07 14:32:51',1,'2006-02-15 21:30:53'), +(1111,'2005-05-31 15:24:19',1137,300,'2005-06-08 21:18:19',1,'2006-02-15 21:30:53'), +(1112,'2005-05-31 15:51:39',2453,214,'2005-06-03 14:04:39',1,'2006-02-15 21:30:53'), +(1113,'2005-05-31 15:58:44',2078,451,'2005-06-05 18:05:44',2,'2006-02-15 21:30:53'), +(1114,'2005-05-31 16:00:33',2287,117,'2005-06-01 19:05:33',1,'2006-02-15 21:30:53'), +(1115,'2005-05-31 16:07:09',2140,109,'2005-06-04 18:51:09',1,'2006-02-15 21:30:53'), +(1116,'2005-05-31 16:10:46',1356,256,'2005-06-01 20:27:46',2,'2006-02-15 21:30:53'), +(1117,'2005-05-31 16:15:31',4125,189,'2005-06-04 17:20:31',1,'2006-02-15 21:30:53'), +(1118,'2005-05-31 16:23:02',213,510,'2005-06-03 20:00:02',1,'2006-02-15 21:30:53'), +(1119,'2005-05-31 16:34:27',4401,469,'2005-06-02 10:54:27',1,'2006-02-15 21:30:53'), +(1120,'2005-05-31 16:37:14',2897,361,'2005-06-04 12:53:14',1,'2006-02-15 21:30:53'), +(1121,'2005-05-31 16:37:36',1691,74,'2005-06-06 21:02:36',1,'2006-02-15 21:30:53'), +(1122,'2005-05-31 16:39:33',1392,180,'2005-06-04 17:25:33',1,'2006-02-15 21:30:53'), +(1123,'2005-05-31 16:48:43',142,448,'2005-06-02 19:17:43',2,'2006-02-15 21:30:53'), +(1124,'2005-05-31 16:49:34',4560,134,'2005-06-04 19:32:34',2,'2006-02-15 21:30:53'), +(1125,'2005-05-31 17:23:44',1172,234,'2005-06-01 15:02:44',1,'2006-02-15 21:30:53'), +(1126,'2005-05-31 17:27:45',2765,431,'2005-06-04 20:06:45',2,'2006-02-15 21:30:53'), +(1127,'2005-05-31 17:45:49',2412,387,'2005-06-08 22:41:49',2,'2006-02-15 21:30:53'), +(1128,'2005-05-31 17:49:26',1496,311,'2005-06-05 19:51:26',2,'2006-02-15 21:30:53'), +(1129,'2005-05-31 18:00:48',386,486,'2005-06-04 23:05:48',1,'2006-02-15 21:30:53'), +(1130,'2005-05-31 18:13:57',3186,124,'2005-06-06 22:50:57',2,'2006-02-15 21:30:53'), +(1131,'2005-05-31 18:44:19',2654,128,'2005-06-01 20:13:19',1,'2006-02-15 21:30:53'), +(1132,'2005-05-31 18:44:53',1763,198,'2005-06-07 22:02:53',2,'2006-02-15 21:30:53'), +(1133,'2005-05-31 19:12:21',4271,73,'2005-06-02 20:12:21',1,'2006-02-15 21:30:53'), +(1134,'2005-05-31 19:14:15',143,191,'2005-06-02 17:13:15',2,'2006-02-15 21:30:53'), +(1135,'2005-05-31 19:15:11',3118,122,'2005-06-01 14:44:11',2,'2006-02-15 21:30:53'), +(1136,'2005-05-31 19:19:36',3963,50,'2005-06-09 16:04:36',2,'2006-02-15 21:30:53'), +(1137,'2005-05-31 19:20:14',3259,351,'2005-06-07 16:10:14',1,'2006-02-15 21:30:53'), +(1138,'2005-05-31 19:30:27',3944,438,'2005-06-05 21:42:27',1,'2006-02-15 21:30:53'), +(1139,'2005-05-31 19:34:52',666,562,'2005-06-06 17:40:52',1,'2006-02-15 21:30:53'), +(1140,'2005-05-31 19:36:30',3731,10,'2005-06-07 18:33:30',2,'2006-02-15 21:30:53'), +(1141,'2005-05-31 19:42:02',4128,217,'2005-06-07 00:59:02',2,'2006-02-15 21:30:53'), +(1142,'2005-05-31 19:46:38',3998,5,'2005-06-05 14:03:38',1,'2006-02-15 21:30:53'), +(1143,'2005-05-31 19:53:03',2632,209,'2005-06-06 20:56:03',2,'2006-02-15 21:30:53'), +(1144,'2005-05-31 20:04:10',2450,207,'2005-06-09 16:34:10',1,'2006-02-15 21:30:53'), +(1145,'2005-05-31 20:13:45',1133,284,'2005-06-08 02:10:45',1,'2006-02-15 21:30:53'), +(1146,'2005-05-31 20:34:45',3134,250,'2005-06-03 18:12:45',2,'2006-02-15 21:30:53'), +(1147,'2005-05-31 20:37:52',622,259,'2005-06-06 19:23:52',2,'2006-02-15 21:30:53'), +(1148,'2005-05-31 20:38:40',3307,235,'2005-06-02 18:35:40',2,'2006-02-15 21:30:53'), +(1149,'2005-05-31 21:03:17',352,326,'2005-06-08 19:58:17',2,'2006-02-15 21:30:53'), +(1150,'2005-05-31 21:20:09',1632,136,'2005-06-03 19:15:09',2,'2006-02-15 21:30:53'), +(1151,'2005-05-31 21:29:00',1281,581,'2005-06-03 23:24:00',1,'2006-02-15 21:30:53'), +(1152,'2005-05-31 21:32:17',210,191,'2005-06-04 21:07:17',2,'2006-02-15 21:30:53'), +(1153,'2005-05-31 21:36:44',2725,506,'2005-06-10 01:26:44',2,'2006-02-15 21:30:53'), +(1154,'2005-05-31 21:42:09',2732,59,'2005-06-08 16:40:09',1,'2006-02-15 21:30:53'), +(1155,'2005-05-31 22:17:11',2048,251,'2005-06-04 20:27:11',2,'2006-02-15 21:30:53'), +(1156,'2005-05-31 22:37:34',460,106,'2005-06-01 23:02:34',2,'2006-02-15 21:30:53'), +(1157,'2005-05-31 22:47:45',1449,61,'2005-06-02 18:01:45',1,'2006-02-15 21:30:53'), +(1158,'2005-06-14 22:53:33',1632,416,'2005-06-18 21:37:33',2,'2006-02-15 21:30:53'), +(1159,'2005-06-14 22:55:13',4395,516,'2005-06-17 02:11:13',1,'2006-02-15 21:30:53'), +(1160,'2005-06-14 23:00:34',2795,239,'2005-06-18 01:58:34',2,'2006-02-15 21:30:53'), +(1161,'2005-06-14 23:07:08',1690,285,'2005-06-21 17:12:08',1,'2006-02-15 21:30:53'), +(1162,'2005-06-14 23:09:38',987,310,'2005-06-23 22:00:38',1,'2006-02-15 21:30:53'), +(1163,'2005-06-14 23:12:46',4209,592,'2005-06-23 21:53:46',1,'2006-02-15 21:30:53'), +(1164,'2005-06-14 23:16:26',3691,49,'2005-06-16 21:00:26',1,'2006-02-15 21:30:53'), +(1165,'2005-06-14 23:16:27',2855,264,'2005-06-20 02:40:27',2,'2006-02-15 21:30:53'), +(1166,'2005-06-14 23:17:03',2508,46,'2005-06-15 20:43:03',1,'2006-02-15 21:30:53'), +(1167,'2005-06-14 23:25:58',4021,323,'2005-06-18 05:18:58',2,'2006-02-15 21:30:53'), +(1168,'2005-06-14 23:35:09',4368,481,'2005-06-19 03:20:09',1,'2006-02-15 21:30:53'), +(1169,'2005-06-14 23:42:56',1062,139,'2005-06-16 04:02:56',2,'2006-02-15 21:30:53'), +(1170,'2005-06-14 23:47:35',2444,595,'2005-06-17 05:28:35',2,'2006-02-15 21:30:53'), +(1171,'2005-06-14 23:50:11',4082,284,'2005-06-17 21:44:11',2,'2006-02-15 21:30:53'), +(1172,'2005-06-14 23:54:34',2685,306,'2005-06-16 02:26:34',1,'2006-02-15 21:30:53'), +(1173,'2005-06-14 23:54:46',1050,191,'2005-06-19 23:26:46',2,'2006-02-15 21:30:53'), +(1174,'2005-06-15 00:12:51',2653,95,'2005-06-21 02:10:51',2,'2006-02-15 21:30:53'), +(1175,'2005-06-15 00:15:15',3255,197,'2005-06-20 19:23:15',2,'2006-02-15 21:30:53'), +(1176,'2005-06-15 00:28:37',2715,512,'2005-06-21 21:42:37',1,'2006-02-15 21:30:53'), +(1177,'2005-06-15 00:33:04',1897,210,'2005-06-16 03:47:04',2,'2006-02-15 21:30:53'), +(1178,'2005-06-15 00:36:40',2553,279,'2005-06-21 00:27:40',2,'2006-02-15 21:30:53'), +(1179,'2005-06-15 00:36:50',816,119,'2005-06-22 22:09:50',1,'2006-02-15 21:30:53'), +(1180,'2005-06-15 00:39:01',3119,432,'2005-06-21 22:44:01',2,'2006-02-15 21:30:53'), +(1181,'2005-06-15 00:42:17',2973,546,'2005-06-19 03:36:17',2,'2006-02-15 21:30:53'), +(1182,'2005-06-15 00:45:21',1061,196,'2005-06-22 03:52:21',1,'2006-02-15 21:30:53'), +(1183,'2005-06-15 00:49:19',706,329,'2005-06-20 04:33:19',1,'2006-02-15 21:30:53'), +(1184,'2005-06-15 00:49:36',473,295,'2005-06-22 23:39:36',2,'2006-02-15 21:30:53'), +(1185,'2005-06-15 00:54:12',2785,1,'2005-06-23 02:42:12',2,'2006-02-15 21:30:53'), +(1186,'2005-06-15 00:56:45',1556,368,'2005-06-16 02:23:45',1,'2006-02-15 21:30:53'), +(1187,'2005-06-15 00:58:50',1108,334,'2005-06-23 02:19:50',1,'2006-02-15 21:30:53'), +(1188,'2005-06-15 01:04:07',246,173,'2005-06-19 03:48:07',1,'2006-02-15 21:30:53'), +(1189,'2005-06-15 01:04:22',142,244,'2005-06-24 06:48:22',1,'2006-02-15 21:30:53'), +(1190,'2005-06-15 01:05:32',2572,370,'2005-06-23 02:34:32',2,'2006-02-15 21:30:53'), +(1191,'2005-06-15 01:10:35',2221,291,'2005-06-17 20:36:35',2,'2006-02-15 21:30:53'), +(1192,'2005-06-15 01:18:39',4134,186,'2005-06-19 22:46:39',1,'2006-02-15 21:30:53'), +(1193,'2005-06-15 01:24:20',4504,561,'2005-06-21 02:29:20',2,'2006-02-15 21:30:53'), +(1194,'2005-06-15 01:25:08',3774,402,'2005-06-21 01:16:08',2,'2006-02-15 21:30:53'), +(1195,'2005-06-15 01:37:38',2272,84,'2005-06-17 21:50:38',1,'2006-02-15 21:30:53'), +(1196,'2005-06-15 01:38:31',994,52,'2005-06-18 06:55:31',1,'2006-02-15 21:30:53'), +(1197,'2005-06-15 01:42:46',3812,349,'2005-06-20 00:22:46',1,'2006-02-15 21:30:53'), +(1198,'2005-06-15 01:48:58',1138,491,'2005-06-20 01:07:58',2,'2006-02-15 21:30:53'), +(1199,'2005-06-15 01:58:50',253,238,'2005-06-16 20:30:50',2,'2006-02-15 21:30:53'), +(1200,'2005-06-15 01:59:51',3329,516,'2005-06-21 21:33:51',1,'2006-02-15 21:30:53'), +(1201,'2005-06-15 02:06:28',2679,209,'2005-06-16 21:38:28',2,'2006-02-15 21:30:53'), +(1202,'2005-06-15 02:08:04',2821,451,'2005-06-16 21:56:04',1,'2006-02-15 21:30:53'), +(1203,'2005-06-15 02:09:02',2223,452,'2005-06-21 00:04:02',1,'2006-02-15 21:30:53'), +(1204,'2005-06-15 02:21:46',2450,249,'2005-06-20 07:14:46',2,'2006-02-15 21:30:53'), +(1205,'2005-06-15 02:25:56',470,340,'2005-06-22 23:19:56',1,'2006-02-15 21:30:53'), +(1206,'2005-06-15 02:27:07',1097,264,'2005-06-18 22:46:07',2,'2006-02-15 21:30:53'), +(1207,'2005-06-15 02:27:08',2277,430,'2005-06-19 08:18:08',2,'2006-02-15 21:30:53'), +(1208,'2005-06-15 02:30:03',750,376,'2005-06-18 00:04:03',1,'2006-02-15 21:30:53'), +(1209,'2005-06-15 02:31:12',1494,146,'2005-06-21 07:39:12',1,'2006-02-15 21:30:53'), +(1210,'2005-06-15 02:57:51',7,345,'2005-06-20 01:41:51',2,'2006-02-15 21:30:53'), +(1211,'2005-06-15 03:01:20',3360,122,'2005-06-18 07:52:20',2,'2006-02-15 21:30:53'), +(1212,'2005-06-15 03:03:33',3611,371,'2005-06-17 06:31:33',1,'2006-02-15 21:30:53'), +(1213,'2005-06-15 03:14:05',3191,94,'2005-06-15 21:41:05',2,'2006-02-15 21:30:53'), +(1214,'2005-06-15 03:18:40',4482,46,'2005-06-20 07:32:40',1,'2006-02-15 21:30:53'), +(1215,'2005-06-15 03:21:00',242,102,'2005-06-19 03:39:00',1,'2006-02-15 21:30:53'), +(1216,'2005-06-15 03:23:48',3973,100,'2005-06-18 03:35:48',1,'2006-02-15 21:30:53'), +(1217,'2005-06-15 03:24:14',600,203,'2005-06-18 22:37:14',2,'2006-02-15 21:30:53'), +(1218,'2005-06-15 03:24:44',239,371,'2005-06-21 22:45:44',2,'2006-02-15 21:30:53'), +(1219,'2005-06-15 03:25:59',3005,330,'2005-06-20 00:37:59',1,'2006-02-15 21:30:53'), +(1220,'2005-06-15 03:26:15',1621,290,'2005-06-23 08:17:15',1,'2006-02-15 21:30:53'), +(1221,'2005-06-15 03:35:16',2124,403,'2005-06-18 03:11:16',1,'2006-02-15 21:30:53'), +(1222,'2005-06-15 03:38:49',2799,168,'2005-06-17 22:30:49',1,'2006-02-15 21:30:53'), +(1223,'2005-06-15 03:38:53',1299,50,'2005-06-20 01:00:53',2,'2006-02-15 21:30:53'), +(1224,'2005-06-15 03:44:25',1572,369,'2005-06-17 03:49:25',2,'2006-02-15 21:30:53'), +(1225,'2005-06-15 03:45:35',1929,434,'2005-06-19 02:03:35',1,'2006-02-15 21:30:53'), +(1226,'2005-06-15 03:46:10',2290,409,'2005-06-23 02:00:10',1,'2006-02-15 21:30:53'), +(1227,'2005-06-15 03:50:03',654,428,'2005-06-21 23:48:03',2,'2006-02-15 21:30:53'), +(1228,'2005-06-15 03:50:36',4473,398,'2005-06-17 22:41:36',1,'2006-02-15 21:30:53'), +(1229,'2005-06-15 03:53:13',2140,468,'2005-06-18 04:09:13',1,'2006-02-15 21:30:53'), +(1230,'2005-06-15 04:04:09',2324,447,'2005-06-16 02:21:09',1,'2006-02-15 21:30:53'), +(1231,'2005-06-15 04:04:41',3003,302,'2005-06-20 23:52:41',2,'2006-02-15 21:30:53'), +(1232,'2005-06-15 04:18:10',2743,391,'2005-06-17 06:02:10',2,'2006-02-15 21:30:53'), +(1233,'2005-06-15 04:18:37',4214,550,'2005-06-22 03:36:37',1,'2006-02-15 21:30:53'), +(1234,'2005-06-15 04:21:52',709,529,'2005-06-22 03:25:52',1,'2006-02-15 21:30:53'), +(1235,'2005-06-15 04:31:28',1000,255,'2005-06-22 10:08:28',1,'2006-02-15 21:30:53'), +(1236,'2005-06-15 04:34:27',3182,66,'2005-06-18 08:15:27',1,'2006-02-15 21:30:53'), +(1237,'2005-06-15 04:44:10',3249,49,'2005-06-23 07:00:10',2,'2006-02-15 21:30:53'), +(1238,'2005-06-15 04:49:08',3534,205,'2005-06-20 00:06:08',1,'2006-02-15 21:30:53'), +(1239,'2005-06-15 04:53:01',3731,444,'2005-06-16 07:03:01',1,'2006-02-15 21:30:53'), +(1240,'2005-06-15 04:58:07',3841,28,'2005-06-17 23:56:07',1,'2006-02-15 21:30:53'), +(1241,'2005-06-15 04:59:43',4377,62,'2005-06-24 03:32:43',2,'2006-02-15 21:30:53'), +(1242,'2005-06-15 05:05:07',821,141,'2005-06-22 04:57:07',1,'2006-02-15 21:30:53'), +(1243,'2005-06-15 05:07:32',2629,107,'2005-06-21 08:17:32',2,'2006-02-15 21:30:53'), +(1244,'2005-06-15 05:08:40',1026,515,'2005-06-20 10:41:40',1,'2006-02-15 21:30:53'), +(1245,'2005-06-15 05:09:01',1314,234,'2005-06-22 06:55:01',2,'2006-02-15 21:30:53'), +(1246,'2005-06-15 05:11:19',431,357,'2005-06-21 02:21:19',1,'2006-02-15 21:30:53'), +(1247,'2005-06-15 05:16:40',4049,287,'2005-06-23 11:01:40',1,'2006-02-15 21:30:53'), +(1248,'2005-06-15 05:33:52',3878,544,'2005-06-19 06:56:52',2,'2006-02-15 21:30:53'), +(1249,'2005-06-15 05:38:09',2120,403,'2005-06-22 10:29:09',1,'2006-02-15 21:30:53'), +(1250,'2005-06-15 05:55:40',4360,38,'2005-06-23 03:11:40',2,'2006-02-15 21:30:53'), +(1251,'2005-06-15 05:58:55',3307,442,'2005-06-23 02:45:55',2,'2006-02-15 21:30:53'), +(1252,'2005-06-15 06:05:18',1147,89,'2005-06-24 07:40:18',1,'2006-02-15 21:30:53'), +(1253,'2005-06-15 06:06:33',3242,498,'2005-06-21 04:13:33',2,'2006-02-15 21:30:53'), +(1254,'2005-06-15 06:11:16',3986,571,'2005-06-21 06:40:16',2,'2006-02-15 21:30:53'), +(1255,'2005-06-15 06:13:45',1433,526,'2005-06-16 03:59:45',2,'2006-02-15 21:30:53'), +(1256,'2005-06-15 06:13:57',1437,470,'2005-06-16 06:54:57',2,'2006-02-15 21:30:53'), +(1257,'2005-06-15 06:15:36',1938,267,'2005-06-21 01:04:36',2,'2006-02-15 21:30:53'), +(1258,'2005-06-15 06:21:30',4530,320,'2005-06-18 05:43:30',2,'2006-02-15 21:30:53'), +(1259,'2005-06-15 06:37:55',4460,570,'2005-06-23 04:02:55',2,'2006-02-15 21:30:53'), +(1260,'2005-06-15 06:42:25',330,586,'2005-06-16 10:44:25',2,'2006-02-15 21:30:53'), +(1261,'2005-06-15 06:52:57',2447,95,'2005-06-21 01:47:57',2,'2006-02-15 21:30:53'), +(1262,'2005-06-15 06:54:53',4495,236,'2005-06-22 08:09:53',2,'2006-02-15 21:30:53'), +(1263,'2005-06-15 06:56:39',4144,540,'2005-06-16 11:08:39',1,'2006-02-15 21:30:53'), +(1264,'2005-06-15 06:59:39',4176,439,'2005-06-18 08:10:39',2,'2006-02-15 21:30:53'), +(1265,'2005-06-15 07:00:50',982,163,'2005-06-19 12:27:50',1,'2006-02-15 21:30:53'), +(1266,'2005-06-15 07:11:39',2230,96,'2005-06-21 02:59:39',2,'2006-02-15 21:30:53'), +(1267,'2005-06-15 07:21:21',4246,509,'2005-06-17 08:12:21',2,'2006-02-15 21:30:53'), +(1268,'2005-06-15 07:29:30',3641,142,'2005-06-23 12:36:30',1,'2006-02-15 21:30:53'), +(1269,'2005-06-15 07:29:59',108,59,'2005-06-16 13:26:59',2,'2006-02-15 21:30:53'), +(1270,'2005-06-15 07:30:22',62,395,'2005-06-18 11:31:22',2,'2006-02-15 21:30:53'), +(1271,'2005-06-15 07:32:24',379,560,'2005-06-21 05:12:24',1,'2006-02-15 21:30:53'), +(1272,'2005-06-15 07:42:58',3128,135,'2005-06-18 12:00:58',1,'2006-02-15 21:30:53'), +(1273,'2005-06-15 07:52:35',361,530,'2005-06-21 04:55:35',1,'2006-02-15 21:30:53'), +(1274,'2005-06-15 07:52:52',2765,430,'2005-06-20 10:01:52',1,'2006-02-15 21:30:53'), +(1275,'2005-06-15 07:55:43',950,214,'2005-06-20 06:30:43',1,'2006-02-15 21:30:53'), +(1276,'2005-06-15 08:00:13',1508,388,'2005-06-24 02:55:13',2,'2006-02-15 21:30:53'), +(1277,'2005-06-15 08:01:29',76,464,'2005-06-22 07:16:29',2,'2006-02-15 21:30:53'), +(1278,'2005-06-15 08:09:12',4471,191,'2005-06-17 04:05:12',2,'2006-02-15 21:30:53'), +(1279,'2005-06-15 08:13:57',698,183,'2005-06-18 09:36:57',2,'2006-02-15 21:30:53'), +(1280,'2005-06-15 08:16:06',2597,266,'2005-06-21 04:10:06',2,'2006-02-15 21:30:53'), +(1281,'2005-06-15 08:21:39',2963,511,'2005-06-17 11:03:39',1,'2006-02-15 21:30:53'), +(1282,'2005-06-15 08:25:33',186,539,'2005-06-21 04:02:33',1,'2006-02-15 21:30:53'), +(1283,'2005-06-15 08:27:30',3177,470,'2005-06-16 09:46:30',2,'2006-02-15 21:30:53'), +(1284,'2005-06-15 08:27:33',1387,463,'2005-06-17 03:58:33',1,'2006-02-15 21:30:53'), +(1285,'2005-06-15 08:33:06',1054,254,'2005-06-19 07:36:06',1,'2006-02-15 21:30:53'), +(1286,'2005-06-15 08:41:13',774,179,'2005-06-23 13:13:13',2,'2006-02-15 21:30:53'), +(1287,'2005-06-15 08:41:38',4204,104,'2005-06-22 14:02:38',1,'2006-02-15 21:30:53'), +(1288,'2005-06-15 08:41:52',830,456,'2005-06-19 05:30:52',2,'2006-02-15 21:30:53'), +(1289,'2005-06-15 08:44:09',3154,522,'2005-06-21 06:04:09',1,'2006-02-15 21:30:53'), +(1290,'2005-06-15 08:52:44',1921,540,'2005-06-24 13:36:44',2,'2006-02-15 21:30:53'), +(1291,'2005-06-15 08:55:01',3090,176,'2005-06-24 04:22:01',1,'2006-02-15 21:30:53'), +(1292,'2005-06-15 09:03:52',4535,178,'2005-06-21 07:53:52',1,'2006-02-15 21:30:53'), +(1293,'2005-06-15 09:06:24',2882,127,'2005-06-18 06:58:24',1,'2006-02-15 21:30:53'), +(1294,'2005-06-15 09:09:27',339,327,'2005-06-19 04:43:27',1,'2006-02-15 21:30:53'), +(1295,'2005-06-15 09:17:20',2897,449,'2005-06-18 10:14:20',2,'2006-02-15 21:30:53'), +(1296,'2005-06-15 09:23:59',1760,200,'2005-06-19 03:44:59',2,'2006-02-15 21:30:53'), +(1297,'2005-06-15 09:31:28',1075,4,'2005-06-19 04:33:28',1,'2006-02-15 21:30:53'), +(1298,'2005-06-15 09:32:53',4163,334,'2005-06-16 12:40:53',2,'2006-02-15 21:30:53'), +(1299,'2005-06-15 09:34:50',1584,91,'2005-06-21 12:07:50',1,'2006-02-15 21:30:53'), +(1300,'2005-06-15 09:36:19',2524,186,'2005-06-17 13:54:19',2,'2006-02-15 21:30:53'), +(1301,'2005-06-15 09:46:33',1484,33,'2005-06-24 08:56:33',2,'2006-02-15 21:30:53'), +(1302,'2005-06-15 09:48:37',324,285,'2005-06-22 06:18:37',1,'2006-02-15 21:30:53'), +(1303,'2005-06-15 09:55:57',2001,365,'2005-06-20 14:26:57',2,'2006-02-15 21:30:53'), +(1304,'2005-06-15 09:56:02',1304,242,'2005-06-24 07:00:02',1,'2006-02-15 21:30:53'), +(1305,'2005-06-15 09:59:16',187,8,'2005-06-19 09:48:16',2,'2006-02-15 21:30:53'), +(1306,'2005-06-15 09:59:24',2132,524,'2005-06-19 09:37:24',2,'2006-02-15 21:30:53'), +(1307,'2005-06-15 10:06:15',368,507,'2005-06-20 04:50:15',2,'2006-02-15 21:30:53'), +(1308,'2005-06-15 10:07:48',220,236,'2005-06-24 15:24:48',1,'2006-02-15 21:30:53'), +(1309,'2005-06-15 10:10:49',2356,200,'2005-06-16 12:44:49',1,'2006-02-15 21:30:53'), +(1310,'2005-06-15 10:11:42',2045,27,'2005-06-16 15:00:42',1,'2006-02-15 21:30:53'), +(1311,'2005-06-15 10:11:59',3114,326,'2005-06-17 08:44:59',2,'2006-02-15 21:30:53'), +(1312,'2005-06-15 10:16:27',3608,313,'2005-06-20 06:53:27',1,'2006-02-15 21:30:53'), +(1313,'2005-06-15 10:18:34',1657,448,'2005-06-23 06:25:34',1,'2006-02-15 21:30:53'), +(1314,'2005-06-15 10:21:45',1359,538,'2005-06-21 14:10:45',1,'2006-02-15 21:30:53'), +(1315,'2005-06-15 10:23:08',3844,405,'2005-06-21 15:06:08',1,'2006-02-15 21:30:53'), +(1316,'2005-06-15 10:26:23',3891,138,'2005-06-21 09:25:23',2,'2006-02-15 21:30:53'), +(1317,'2005-06-15 10:30:19',3696,316,'2005-06-24 08:18:19',1,'2006-02-15 21:30:53'), +(1318,'2005-06-15 10:34:26',2760,341,'2005-06-20 16:20:26',1,'2006-02-15 21:30:53'), +(1319,'2005-06-15 10:39:05',4296,190,'2005-06-18 05:25:05',1,'2006-02-15 21:30:53'), +(1320,'2005-06-15 10:42:13',4484,84,'2005-06-17 13:44:13',1,'2006-02-15 21:30:53'), +(1321,'2005-06-15 10:49:17',3516,204,'2005-06-16 15:30:17',1,'2006-02-15 21:30:53'), +(1322,'2005-06-15 10:55:09',2076,217,'2005-06-18 15:14:09',2,'2006-02-15 21:30:53'), +(1323,'2005-06-15 10:55:17',3273,187,'2005-06-24 09:51:17',1,'2006-02-15 21:30:53'), +(1324,'2005-06-15 11:02:45',764,394,'2005-06-17 07:14:45',1,'2006-02-15 21:30:53'), +(1325,'2005-06-15 11:03:24',52,193,'2005-06-20 10:54:24',1,'2006-02-15 21:30:53'), +(1326,'2005-06-15 11:07:39',59,548,'2005-06-22 05:55:39',2,'2006-02-15 21:30:53'), +(1327,'2005-06-15 11:11:39',403,539,'2005-06-22 10:45:39',1,'2006-02-15 21:30:53'), +(1328,'2005-06-15 11:23:27',3665,295,'2005-06-19 12:42:27',2,'2006-02-15 21:30:53'), +(1329,'2005-06-15 11:25:06',1154,359,'2005-06-17 16:10:06',2,'2006-02-15 21:30:53'), +(1330,'2005-06-15 11:29:17',1219,587,'2005-06-24 13:36:17',2,'2006-02-15 21:30:53'), +(1331,'2005-06-15 11:34:33',3089,277,'2005-06-21 09:46:33',1,'2006-02-15 21:30:53'), +(1332,'2005-06-15 11:36:01',1412,116,'2005-06-17 14:29:01',1,'2006-02-15 21:30:53'), +(1333,'2005-06-15 11:37:08',448,310,'2005-06-16 10:13:08',2,'2006-02-15 21:30:53'), +(1334,'2005-06-15 11:43:09',1242,269,'2005-06-20 15:45:09',2,'2006-02-15 21:30:53'), +(1335,'2005-06-15 11:51:30',1713,64,'2005-06-16 16:42:30',2,'2006-02-15 21:30:53'), +(1336,'2005-06-15 12:01:34',1696,290,'2005-06-23 12:05:34',1,'2006-02-15 21:30:53'), +(1337,'2005-06-15 12:12:42',4014,465,'2005-06-20 12:38:42',2,'2006-02-15 21:30:53'), +(1338,'2005-06-15 12:17:34',1206,25,'2005-06-19 07:40:34',2,'2006-02-15 21:30:53'), +(1339,'2005-06-15 12:21:56',424,162,'2005-06-19 07:46:56',1,'2006-02-15 21:30:53'), +(1340,'2005-06-15 12:24:15',251,100,'2005-06-22 13:02:15',1,'2006-02-15 21:30:53'), +(1341,'2005-06-15 12:26:18',3363,344,'2005-06-21 07:26:18',2,'2006-02-15 21:30:53'), +(1342,'2005-06-15 12:26:21',4429,427,'2005-06-22 11:23:21',1,'2006-02-15 21:30:53'), +(1343,'2005-06-15 12:27:19',2393,416,'2005-06-21 16:57:19',1,'2006-02-15 21:30:53'), +(1344,'2005-06-15 12:29:41',1625,585,'2005-06-22 12:45:41',2,'2006-02-15 21:30:53'), +(1345,'2005-06-15 12:32:13',1041,270,'2005-06-24 14:02:13',1,'2006-02-15 21:30:53'), +(1346,'2005-06-15 12:39:52',4540,585,'2005-06-24 17:43:52',1,'2006-02-15 21:30:53'), +(1347,'2005-06-15 12:43:43',374,190,'2005-06-16 09:55:43',1,'2006-02-15 21:30:53'), +(1348,'2005-06-15 12:45:30',2078,196,'2005-06-17 17:12:30',1,'2006-02-15 21:30:53'), +(1349,'2005-06-15 12:49:02',1131,267,'2005-06-17 15:20:02',1,'2006-02-15 21:30:53'), +(1350,'2005-06-15 12:50:25',4261,316,'2005-06-23 11:35:25',1,'2006-02-15 21:30:53'), +(1351,'2005-06-15 12:51:03',2364,484,'2005-06-22 07:23:03',1,'2006-02-15 21:30:53'), +(1352,'2005-06-15 12:58:27',4352,276,'2005-06-18 10:57:27',1,'2006-02-15 21:30:53'), +(1353,'2005-06-15 13:13:36',2711,480,'2005-06-21 08:46:36',2,'2006-02-15 21:30:53'), +(1354,'2005-06-15 13:13:49',1294,83,'2005-06-23 13:08:49',2,'2006-02-15 21:30:53'), +(1355,'2005-06-15 13:13:59',4203,499,'2005-06-20 12:23:59',1,'2006-02-15 21:30:53'), +(1356,'2005-06-15 13:17:01',1318,212,'2005-06-19 16:22:01',1,'2006-02-15 21:30:53'), +(1357,'2005-06-15 13:26:23',2285,205,'2005-06-23 14:12:23',1,'2006-02-15 21:30:53'), +(1358,'2005-06-15 13:28:48',2025,442,'2005-06-21 13:40:48',1,'2006-02-15 21:30:53'), +(1359,'2005-06-15 13:30:30',3140,353,'2005-06-17 14:55:30',1,'2006-02-15 21:30:53'), +(1360,'2005-06-15 13:32:15',4107,14,'2005-06-18 10:59:15',2,'2006-02-15 21:30:53'), +(1361,'2005-06-15 13:37:38',4338,115,'2005-06-19 17:08:38',1,'2006-02-15 21:30:53'), +(1362,'2005-06-15 13:53:32',4524,98,'2005-06-19 16:05:32',1,'2006-02-15 21:30:53'), +(1363,'2005-06-15 14:05:11',771,197,'2005-06-17 19:53:11',2,'2006-02-15 21:30:53'), +(1364,'2005-06-15 14:05:32',115,400,'2005-06-16 15:31:32',1,'2006-02-15 21:30:53'), +(1365,'2005-06-15 14:09:55',3813,25,'2005-06-19 18:11:55',2,'2006-02-15 21:30:53'), +(1366,'2005-06-15 14:21:00',4238,576,'2005-06-24 17:36:00',1,'2006-02-15 21:30:53'), +(1367,'2005-06-15 14:25:17',1505,94,'2005-06-21 19:15:17',1,'2006-02-15 21:30:53'), +(1368,'2005-06-15 14:27:47',2020,222,'2005-06-23 18:07:47',2,'2006-02-15 21:30:53'), +(1369,'2005-06-15 14:29:14',679,221,'2005-06-16 13:01:14',1,'2006-02-15 21:30:53'), +(1370,'2005-06-15 14:31:05',644,396,'2005-06-22 19:23:05',2,'2006-02-15 21:30:53'), +(1371,'2005-06-15 14:38:15',760,491,'2005-06-23 15:36:15',1,'2006-02-15 21:30:53'), +(1372,'2005-06-15 14:45:48',3740,108,'2005-06-17 18:02:48',2,'2006-02-15 21:30:53'), +(1373,'2005-06-15 14:48:04',284,51,'2005-06-22 09:48:04',1,'2006-02-15 21:30:53'), +(1374,'2005-06-15 14:49:54',3353,120,'2005-06-22 12:30:54',1,'2006-02-15 21:30:53'), +(1375,'2005-06-15 14:54:56',3555,500,'2005-06-21 14:48:56',2,'2006-02-15 21:30:53'), +(1376,'2005-06-15 14:59:06',4271,215,'2005-06-19 17:34:06',1,'2006-02-15 21:30:53'), +(1377,'2005-06-15 15:02:03',3410,245,'2005-06-22 14:54:03',2,'2006-02-15 21:30:53'), +(1378,'2005-06-15 15:03:15',4372,253,'2005-06-19 16:50:15',1,'2006-02-15 21:30:53'), +(1379,'2005-06-15 15:05:10',810,212,'2005-06-18 12:11:10',1,'2006-02-15 21:30:53'), +(1380,'2005-06-15 15:13:10',3376,158,'2005-06-18 12:42:10',2,'2006-02-15 21:30:53'), +(1381,'2005-06-15 15:17:21',3262,300,'2005-06-20 17:07:21',2,'2006-02-15 21:30:53'), +(1382,'2005-06-15 15:18:08',3133,455,'2005-06-22 09:22:08',2,'2006-02-15 21:30:53'), +(1383,'2005-06-15 15:20:06',1281,379,'2005-06-24 18:42:06',2,'2006-02-15 21:30:53'), +(1384,'2005-06-15 15:22:03',4242,242,'2005-06-18 18:11:03',1,'2006-02-15 21:30:53'), +(1385,'2005-06-15 15:28:23',4073,396,'2005-06-18 18:37:23',1,'2006-02-15 21:30:53'), +(1386,'2005-06-15 15:38:58',1296,322,'2005-06-20 16:28:58',2,'2006-02-15 21:30:53'), +(1387,'2005-06-15 15:40:56',515,278,'2005-06-17 10:39:56',1,'2006-02-15 21:30:53'), +(1388,'2005-06-15 15:48:41',3987,500,'2005-06-22 17:51:41',1,'2006-02-15 21:30:53'), +(1389,'2005-06-15 15:49:01',965,472,'2005-06-19 11:08:01',2,'2006-02-15 21:30:53'), +(1390,'2005-06-15 16:06:29',4502,254,'2005-06-19 13:11:29',1,'2006-02-15 21:30:53'), +(1391,'2005-06-15 16:11:21',4213,273,'2005-06-22 21:32:21',1,'2006-02-15 21:30:53'), +(1392,'2005-06-15 16:12:27',363,460,'2005-06-16 17:30:27',2,'2006-02-15 21:30:53'), +(1393,'2005-06-15 16:12:50',2767,177,'2005-06-19 10:40:50',2,'2006-02-15 21:30:53'), +(1394,'2005-06-15 16:17:21',2802,268,'2005-06-21 20:44:21',2,'2006-02-15 21:30:53'), +(1395,'2005-06-15 16:21:04',753,252,'2005-06-23 12:52:04',2,'2006-02-15 21:30:53'), +(1396,'2005-06-15 16:22:38',1007,103,'2005-06-17 15:53:38',2,'2006-02-15 21:30:53'), +(1397,'2005-06-15 16:25:26',1830,444,'2005-06-21 20:45:26',1,'2006-02-15 21:30:53'), +(1398,'2005-06-15 16:28:42',4402,527,'2005-06-16 12:11:42',1,'2006-02-15 21:30:53'), +(1399,'2005-06-15 16:29:51',1435,469,'2005-06-18 14:06:51',1,'2006-02-15 21:30:53'), +(1400,'2005-06-15 16:29:56',230,571,'2005-06-21 14:43:56',2,'2006-02-15 21:30:53'), +(1401,'2005-06-15 16:30:22',4081,366,'2005-06-21 11:07:22',2,'2006-02-15 21:30:53'), +(1402,'2005-06-15 16:31:08',1951,381,'2005-06-24 19:31:08',1,'2006-02-15 21:30:53'), +(1403,'2005-06-15 16:31:59',3380,546,'2005-06-22 14:23:59',2,'2006-02-15 21:30:53'), +(1404,'2005-06-15 16:38:53',2776,375,'2005-06-16 20:37:53',1,'2006-02-15 21:30:53'), +(1405,'2005-06-15 16:41:26',3184,243,'2005-06-21 18:16:26',1,'2006-02-15 21:30:53'), +(1406,'2005-06-15 16:44:00',3118,199,'2005-06-21 11:22:00',2,'2006-02-15 21:30:53'), +(1407,'2005-06-15 16:45:07',1286,89,'2005-06-23 14:01:07',1,'2006-02-15 21:30:53'), +(1408,'2005-06-15 16:57:58',2655,396,'2005-06-22 21:08:58',1,'2006-02-15 21:30:53'), +(1409,'2005-06-15 16:58:12',1398,297,'2005-06-21 11:21:12',2,'2006-02-15 21:30:53'), +(1410,'2005-06-15 16:59:46',809,356,'2005-06-21 16:38:46',1,'2006-02-15 21:30:53'), +(1411,'2005-06-15 17:05:36',2276,520,'2005-06-21 14:05:36',1,'2006-02-15 21:30:53'), +(1412,'2005-06-15 17:09:48',4236,166,'2005-06-18 17:05:48',2,'2006-02-15 21:30:53'), +(1413,'2005-06-15 17:25:07',3625,96,'2005-06-21 17:17:07',2,'2006-02-15 21:30:53'), +(1414,'2005-06-15 17:26:32',4005,304,'2005-06-22 22:30:32',1,'2006-02-15 21:30:53'), +(1415,'2005-06-15 17:31:57',1885,331,'2005-06-16 22:22:57',2,'2006-02-15 21:30:53'), +(1416,'2005-06-15 17:44:57',3816,167,'2005-06-22 20:53:57',2,'2006-02-15 21:30:53'), +(1417,'2005-06-15 17:45:51',1334,570,'2005-06-19 14:00:51',2,'2006-02-15 21:30:53'), +(1418,'2005-06-15 17:51:27',2974,591,'2005-06-18 23:20:27',2,'2006-02-15 21:30:53'), +(1419,'2005-06-15 17:54:50',1208,312,'2005-06-17 19:44:50',2,'2006-02-15 21:30:53'), +(1420,'2005-06-15 17:56:14',4149,255,'2005-06-24 15:45:14',2,'2006-02-15 21:30:53'), +(1421,'2005-06-15 17:57:04',2439,533,'2005-06-21 20:38:04',2,'2006-02-15 21:30:53'), +(1422,'2005-06-15 18:02:53',1021,1,'2005-06-19 15:54:53',2,'2006-02-15 21:30:53'), +(1423,'2005-06-15 18:08:12',1396,592,'2005-06-24 19:13:12',1,'2006-02-15 21:30:53'), +(1424,'2005-06-15 18:08:14',887,224,'2005-06-24 23:16:14',2,'2006-02-15 21:30:53'), +(1425,'2005-06-15 18:13:46',1308,108,'2005-06-18 22:50:46',2,'2006-02-15 21:30:53'), +(1426,'2005-06-15 18:16:24',4412,363,'2005-06-18 22:15:24',2,'2006-02-15 21:30:53'), +(1427,'2005-06-15 18:17:28',14,100,'2005-06-16 15:47:28',1,'2006-02-15 21:30:53'), +(1428,'2005-06-15 18:19:30',3689,583,'2005-06-22 23:05:30',2,'2006-02-15 21:30:53'), +(1429,'2005-06-15 18:24:10',4116,362,'2005-06-18 16:30:10',1,'2006-02-15 21:30:53'), +(1430,'2005-06-15 18:24:55',3412,194,'2005-06-16 12:26:55',1,'2006-02-15 21:30:53'), +(1431,'2005-06-15 18:26:29',3193,438,'2005-06-21 17:33:29',1,'2006-02-15 21:30:53'), +(1432,'2005-06-15 18:27:24',523,339,'2005-06-21 14:03:24',2,'2006-02-15 21:30:53'), +(1433,'2005-06-15 18:30:00',2310,88,'2005-06-16 15:14:00',1,'2006-02-15 21:30:53'), +(1434,'2005-06-15 18:30:46',4228,544,'2005-06-24 17:51:46',1,'2006-02-15 21:30:53'), +(1435,'2005-06-15 18:32:30',2769,510,'2005-06-24 12:44:30',2,'2006-02-15 21:30:53'), +(1436,'2005-06-15 18:35:40',924,584,'2005-06-21 15:04:40',1,'2006-02-15 21:30:53'), +(1437,'2005-06-15 18:37:04',3263,96,'2005-06-20 12:56:04',1,'2006-02-15 21:30:53'), +(1438,'2005-06-15 18:38:51',1816,82,'2005-06-17 23:50:51',1,'2006-02-15 21:30:53'), +(1439,'2005-06-15 18:45:32',3155,589,'2005-06-22 15:57:32',2,'2006-02-15 21:30:53'), +(1440,'2005-06-15 18:53:14',2921,26,'2005-06-24 15:28:14',1,'2006-02-15 21:30:53'), +(1441,'2005-06-15 18:54:21',2095,444,'2005-06-22 22:48:21',2,'2006-02-15 21:30:53'), +(1442,'2005-06-15 18:55:34',3912,122,'2005-06-22 20:41:34',2,'2006-02-15 21:30:53'), +(1443,'2005-06-15 18:57:51',2485,435,'2005-06-18 14:18:51',2,'2006-02-15 21:30:53'), +(1444,'2005-06-15 19:08:16',1303,539,'2005-06-24 15:20:16',2,'2006-02-15 21:30:53'), +(1445,'2005-06-15 19:10:07',3189,537,'2005-06-19 20:27:07',2,'2006-02-15 21:30:53'), +(1446,'2005-06-15 19:13:45',1989,506,'2005-06-23 19:43:45',2,'2006-02-15 21:30:53'), +(1447,'2005-06-15 19:13:51',984,471,'2005-06-21 22:56:51',1,'2006-02-15 21:30:53'), +(1448,'2005-06-15 19:17:16',2781,246,'2005-06-23 21:56:16',2,'2006-02-15 21:30:53'), +(1449,'2005-06-15 19:19:16',1525,471,'2005-06-18 15:24:16',2,'2006-02-15 21:30:53'), +(1450,'2005-06-15 19:22:08',4132,268,'2005-06-16 17:53:08',2,'2006-02-15 21:30:53'), +(1451,'2005-06-15 19:30:18',3560,18,'2005-06-19 19:22:18',2,'2006-02-15 21:30:53'), +(1452,'2005-06-15 19:32:52',4348,243,'2005-06-16 13:45:52',1,'2006-02-15 21:30:53'), +(1453,'2005-06-15 19:36:39',3274,457,'2005-06-19 00:16:39',2,'2006-02-15 21:30:53'), +(1454,'2005-06-15 19:49:41',102,298,'2005-06-17 15:17:41',2,'2006-02-15 21:30:53'), +(1455,'2005-06-15 19:51:06',2194,358,'2005-06-18 21:54:06',2,'2006-02-15 21:30:53'), +(1456,'2005-06-15 20:00:11',632,590,'2005-06-23 18:03:11',2,'2006-02-15 21:30:53'), +(1457,'2005-06-15 20:05:49',730,345,'2005-06-19 15:35:49',1,'2006-02-15 21:30:53'), +(1458,'2005-06-15 20:24:05',3546,178,'2005-06-21 01:22:05',1,'2006-02-15 21:30:53'), +(1459,'2005-06-15 20:25:53',1862,218,'2005-06-22 23:34:53',2,'2006-02-15 21:30:53'), +(1460,'2005-06-15 20:27:02',1405,565,'2005-06-16 16:21:02',1,'2006-02-15 21:30:53'), +(1461,'2005-06-15 20:32:08',4479,216,'2005-06-23 01:08:08',1,'2006-02-15 21:30:53'), +(1462,'2005-06-15 20:37:40',653,187,'2005-06-18 19:36:40',2,'2006-02-15 21:30:53'), +(1463,'2005-06-15 20:37:51',2984,569,'2005-06-21 16:46:51',2,'2006-02-15 21:30:53'), +(1464,'2005-06-15 20:38:14',4113,387,'2005-06-17 14:52:14',2,'2006-02-15 21:30:53'), +(1465,'2005-06-15 20:43:08',609,387,'2005-06-18 23:00:08',1,'2006-02-15 21:30:53'), +(1466,'2005-06-15 20:46:04',1057,288,'2005-06-24 22:46:04',1,'2006-02-15 21:30:53'), +(1467,'2005-06-15 20:47:10',688,506,'2005-06-22 00:30:10',1,'2006-02-15 21:30:53'), +(1468,'2005-06-15 20:48:22',228,230,'2005-06-21 19:48:22',1,'2006-02-15 21:30:53'), +(1469,'2005-06-15 20:52:36',2451,580,'2005-06-21 19:55:36',1,'2006-02-15 21:30:53'), +(1470,'2005-06-15 20:53:07',4044,11,'2005-06-25 02:12:07',1,'2006-02-15 21:30:53'), +(1471,'2005-06-15 20:53:26',565,428,'2005-06-24 18:25:26',2,'2006-02-15 21:30:53'), +(1472,'2005-06-15 20:54:55',4233,373,'2005-06-24 21:52:55',2,'2006-02-15 21:30:53'), +(1473,'2005-06-15 20:55:20',2377,249,'2005-06-21 16:40:20',2,'2006-02-15 21:30:53'), +(1474,'2005-06-15 20:55:42',164,202,'2005-06-19 02:41:42',2,'2006-02-15 21:30:53'), +(1475,'2005-06-15 21:08:01',1834,344,'2005-06-18 22:33:01',2,'2006-02-15 21:30:53'), +(1476,'2005-06-15 21:08:46',1407,1,'2005-06-25 02:26:46',1,'2006-02-15 21:30:53'), +(1477,'2005-06-15 21:11:18',418,51,'2005-06-19 02:05:18',1,'2006-02-15 21:30:53'), +(1478,'2005-06-15 21:12:13',435,336,'2005-06-18 21:43:13',2,'2006-02-15 21:30:53'), +(1479,'2005-06-15 21:13:38',172,592,'2005-06-17 01:26:38',2,'2006-02-15 21:30:53'), +(1480,'2005-06-15 21:17:17',2598,27,'2005-06-23 22:01:17',1,'2006-02-15 21:30:53'), +(1481,'2005-06-15 21:17:58',3041,125,'2005-06-18 17:53:58',2,'2006-02-15 21:30:53'), +(1482,'2005-06-15 21:18:16',3980,60,'2005-06-16 17:07:16',1,'2006-02-15 21:30:53'), +(1483,'2005-06-15 21:21:58',1926,242,'2005-06-24 00:44:58',2,'2006-02-15 21:30:53'), +(1484,'2005-06-15 21:22:35',1589,320,'2005-06-20 02:27:35',2,'2006-02-15 21:30:53'), +(1485,'2005-06-15 21:24:10',194,281,'2005-06-24 23:03:10',1,'2006-02-15 21:30:53'), +(1486,'2005-06-15 21:25:30',847,62,'2005-06-16 16:36:30',1,'2006-02-15 21:30:53'), +(1487,'2005-06-15 21:27:42',3791,76,'2005-06-22 03:09:42',2,'2006-02-15 21:30:53'), +(1488,'2005-06-15 21:39:54',1081,355,'2005-06-16 20:33:54',1,'2006-02-15 21:30:53'), +(1489,'2005-06-15 21:41:38',699,213,'2005-06-22 17:00:38',1,'2006-02-15 21:30:53'), +(1490,'2005-06-15 21:42:17',3515,123,'2005-06-22 02:01:17',2,'2006-02-15 21:30:53'), +(1491,'2005-06-15 21:48:18',848,354,'2005-06-20 16:40:18',1,'2006-02-15 21:30:53'), +(1492,'2005-06-15 21:48:35',4148,360,'2005-06-17 17:18:35',1,'2006-02-15 21:30:53'), +(1493,'2005-06-15 21:50:32',4581,235,'2005-06-17 01:02:32',2,'2006-02-15 21:30:53'), +(1494,'2005-06-15 21:54:20',244,575,'2005-06-19 18:46:20',1,'2006-02-15 21:30:53'), +(1495,'2005-06-15 21:54:31',1842,175,'2005-06-19 00:08:31',2,'2006-02-15 21:30:53'), +(1496,'2005-06-15 21:55:58',3915,290,'2005-06-17 02:28:58',2,'2006-02-15 21:30:53'), +(1497,'2005-06-15 21:56:39',2958,44,'2005-06-20 20:32:39',1,'2006-02-15 21:30:53'), +(1498,'2005-06-15 21:58:00',3690,352,'2005-06-17 21:50:00',1,'2006-02-15 21:30:53'), +(1499,'2005-06-15 21:58:07',165,375,'2005-06-22 19:37:07',2,'2006-02-15 21:30:53'), +(1500,'2005-06-15 22:00:45',2652,237,'2005-06-18 16:19:45',2,'2006-02-15 21:30:53'), +(1501,'2005-06-15 22:02:35',1780,148,'2005-06-23 18:59:35',1,'2006-02-15 21:30:53'), +(1502,'2005-06-15 22:03:14',3277,5,'2005-06-23 18:42:14',2,'2006-02-15 21:30:53'), +(1503,'2005-06-15 22:07:09',763,197,'2005-06-20 23:15:09',1,'2006-02-15 21:30:53'), +(1504,'2005-06-15 22:08:06',3621,423,'2005-06-24 01:16:06',2,'2006-02-15 21:30:53'), +(1505,'2005-06-15 22:12:50',2961,561,'2005-06-17 21:37:50',2,'2006-02-15 21:30:53'), +(1506,'2005-06-15 22:19:37',4085,404,'2005-06-22 18:28:37',1,'2006-02-15 21:30:53'), +(1507,'2005-06-15 22:25:26',2514,172,'2005-06-19 17:00:26',1,'2006-02-15 21:30:53'), +(1508,'2005-06-15 22:33:24',1141,511,'2005-06-18 02:27:24',2,'2006-02-15 21:30:53'), +(1509,'2005-06-15 22:35:53',655,167,'2005-06-23 17:09:53',2,'2006-02-15 21:30:53'), +(1510,'2005-06-15 22:39:34',989,338,'2005-06-24 19:21:34',2,'2006-02-15 21:30:53'), +(1511,'2005-06-15 22:45:06',1135,330,'2005-06-22 22:48:06',1,'2006-02-15 21:30:53'), +(1512,'2005-06-15 22:53:03',1628,452,'2005-06-23 18:56:03',1,'2006-02-15 21:30:53'), +(1513,'2005-06-15 22:53:30',1173,368,'2005-06-23 01:00:30',1,'2006-02-15 21:30:53'), +(1514,'2005-06-15 22:57:34',2937,410,'2005-06-19 20:27:34',1,'2006-02-15 21:30:53'), +(1515,'2005-06-15 23:07:50',3244,115,'2005-06-20 02:33:50',2,'2006-02-15 21:30:53'), +(1516,'2005-06-15 23:11:10',3702,530,'2005-06-17 20:37:10',1,'2006-02-15 21:30:53'), +(1517,'2005-06-15 23:20:26',3728,148,'2005-06-23 23:23:26',1,'2006-02-15 21:30:53'), +(1518,'2005-06-15 23:36:37',4537,237,'2005-06-16 18:24:37',2,'2006-02-15 21:30:53'), +(1519,'2005-06-15 23:55:27',1553,155,'2005-06-21 04:06:27',2,'2006-02-15 21:30:53'), +(1520,'2005-06-15 23:57:20',3419,341,'2005-06-24 23:46:20',1,'2006-02-15 21:30:53'), +(1521,'2005-06-15 23:58:53',4299,149,'2005-06-18 03:10:53',1,'2006-02-15 21:30:53'), +(1522,'2005-06-16 00:17:39',235,133,'2005-06-22 05:38:39',1,'2006-02-15 21:30:53'), +(1523,'2005-06-16 00:18:40',681,349,'2005-06-17 02:50:40',2,'2006-02-15 21:30:53'), +(1524,'2005-06-16 00:25:52',3439,177,'2005-06-19 03:32:52',1,'2006-02-15 21:30:53'), +(1525,'2005-06-16 00:26:07',1467,304,'2005-06-19 22:37:07',2,'2006-02-15 21:30:53'), +(1526,'2005-06-16 00:27:51',1940,499,'2005-06-19 00:19:51',1,'2006-02-15 21:30:53'), +(1527,'2005-06-16 00:31:40',296,188,'2005-06-21 05:20:40',1,'2006-02-15 21:30:53'), +(1528,'2005-06-16 00:32:52',4297,110,'2005-06-25 01:07:52',2,'2006-02-15 21:30:53'), +(1529,'2005-06-16 00:37:35',1688,362,'2005-06-22 18:58:35',2,'2006-02-15 21:30:53'), +(1530,'2005-06-16 00:38:07',2421,392,'2005-06-24 02:45:07',2,'2006-02-15 21:30:53'), +(1531,'2005-06-16 00:40:34',1388,515,'2005-06-22 02:44:34',1,'2006-02-15 21:30:53'), +(1532,'2005-06-16 00:41:31',3793,290,'2005-06-20 21:36:31',1,'2006-02-15 21:30:53'), +(1533,'2005-06-16 00:46:02',2452,116,'2005-06-17 20:11:02',1,'2006-02-15 21:30:53'), +(1534,'2005-06-16 00:49:32',3124,42,'2005-06-18 02:41:32',1,'2006-02-15 21:30:53'), +(1535,'2005-06-16 00:52:04',1096,202,'2005-06-20 22:47:04',2,'2006-02-15 21:30:53'), +(1536,'2005-06-16 00:52:22',3248,339,'2005-06-17 21:43:22',1,'2006-02-15 21:30:53'), +(1537,'2005-06-16 00:52:51',4577,594,'2005-06-20 19:33:51',2,'2006-02-15 21:30:53'), +(1538,'2005-06-16 01:05:50',708,430,'2005-06-18 19:48:50',1,'2006-02-15 21:30:53'), +(1539,'2005-06-16 01:11:25',267,390,'2005-06-23 03:43:25',2,'2006-02-15 21:30:53'), +(1540,'2005-06-16 01:14:56',2707,586,'2005-06-20 23:31:56',2,'2006-02-15 21:30:53'), +(1541,'2005-06-16 01:15:59',1911,189,'2005-06-22 21:26:59',2,'2006-02-15 21:30:53'), +(1542,'2005-06-16 01:20:05',1714,182,'2005-06-22 03:59:05',1,'2006-02-15 21:30:53'), +(1543,'2005-06-16 01:24:08',1188,28,'2005-06-18 06:24:08',2,'2006-02-15 21:30:53'), +(1544,'2005-06-16 01:28:22',269,43,'2005-06-17 06:57:22',2,'2006-02-15 21:30:53'), +(1545,'2005-06-16 01:31:23',762,563,'2005-06-24 05:50:23',1,'2006-02-15 21:30:53'), +(1546,'2005-06-16 01:34:05',3913,3,'2005-06-24 04:27:05',1,'2006-02-15 21:30:53'), +(1547,'2005-06-16 01:42:24',2909,343,'2005-06-19 01:13:24',1,'2006-02-15 21:30:53'), +(1548,'2005-06-16 01:43:33',2094,374,'2005-06-23 22:04:33',2,'2006-02-15 21:30:53'), +(1549,'2005-06-16 01:57:15',266,69,'2005-06-18 23:30:15',1,'2006-02-15 21:30:53'), +(1550,'2005-06-16 01:58:35',2003,345,'2005-06-18 23:56:35',1,'2006-02-15 21:30:53'), +(1551,'2005-06-16 02:01:15',4088,268,'2005-06-22 07:33:15',1,'2006-02-15 21:30:53'), +(1552,'2005-06-16 02:01:37',819,518,'2005-06-21 00:59:37',2,'2006-02-15 21:30:53'), +(1553,'2005-06-16 02:02:44',4026,416,'2005-06-19 07:50:44',1,'2006-02-15 21:30:53'), +(1554,'2005-06-16 02:16:47',715,155,'2005-06-22 05:15:47',1,'2006-02-15 21:30:53'), +(1555,'2005-06-16 02:17:07',4168,256,'2005-06-22 06:28:07',1,'2006-02-15 21:30:53'), +(1556,'2005-06-16 02:19:02',533,54,'2005-06-17 22:36:02',2,'2006-02-15 21:30:53'), +(1557,'2005-06-16 02:28:35',2617,439,'2005-06-16 22:11:35',2,'2006-02-15 21:30:53'), +(1558,'2005-06-16 02:33:53',4350,20,'2005-06-19 20:50:53',2,'2006-02-15 21:30:53'), +(1559,'2005-06-16 02:35:03',716,574,'2005-06-19 21:22:03',1,'2006-02-15 21:30:53'), +(1560,'2005-06-16 02:36:43',3418,239,'2005-06-24 23:10:43',2,'2006-02-15 21:30:53'), +(1561,'2005-06-16 02:41:30',2263,431,'2005-06-22 05:19:30',1,'2006-02-15 21:30:53'), +(1562,'2005-06-16 02:46:27',595,395,'2005-06-23 00:56:27',2,'2006-02-15 21:30:53'), +(1563,'2005-06-16 02:46:28',1516,262,'2005-06-18 02:37:28',1,'2006-02-15 21:30:53'), +(1564,'2005-06-16 02:47:07',145,343,'2005-06-24 03:12:07',1,'2006-02-15 21:30:53'), +(1565,'2005-06-16 03:13:09',3833,506,'2005-06-16 22:42:09',2,'2006-02-15 21:30:53'), +(1566,'2005-06-16 03:13:20',3215,174,'2005-06-24 01:59:20',2,'2006-02-15 21:30:53'), +(1567,'2005-06-16 03:13:30',3098,320,'2005-06-21 23:56:30',1,'2006-02-15 21:30:53'), +(1568,'2005-06-16 03:14:01',635,178,'2005-06-19 21:17:01',2,'2006-02-15 21:30:53'), +(1569,'2005-06-16 03:19:09',3927,363,'2005-06-18 21:55:09',2,'2006-02-15 21:30:53'), +(1570,'2005-06-16 03:21:33',3711,82,'2005-06-22 22:03:33',2,'2006-02-15 21:30:53'), +(1571,'2005-06-16 03:22:00',1019,54,'2005-06-22 23:27:00',1,'2006-02-15 21:30:53'), +(1572,'2005-06-16 03:23:22',4179,560,'2005-06-20 06:03:22',2,'2006-02-15 21:30:53'), +(1573,'2005-06-16 03:31:39',4536,371,'2005-06-25 04:04:39',1,'2006-02-15 21:30:53'), +(1574,'2005-06-16 03:39:56',161,305,'2005-06-22 05:40:56',2,'2006-02-15 21:30:53'), +(1575,'2005-06-16 03:41:38',3317,6,'2005-06-22 03:01:38',2,'2006-02-15 21:30:53'), +(1576,'2005-06-16 03:54:39',1014,442,'2005-06-24 21:55:39',2,'2006-02-15 21:30:53'), +(1577,'2005-06-16 04:03:28',367,327,'2005-06-24 22:40:28',2,'2006-02-15 21:30:53'), +(1578,'2005-06-16 04:08:16',3397,365,'2005-06-23 07:57:16',1,'2006-02-15 21:30:53'), +(1579,'2005-06-16 04:09:08',158,35,'2005-06-21 05:21:08',2,'2006-02-15 21:30:53'), +(1580,'2005-06-16 04:12:25',2479,87,'2005-06-20 06:53:25',1,'2006-02-15 21:30:53'), +(1581,'2005-06-16 04:28:45',4004,109,'2005-06-18 07:07:45',1,'2006-02-15 21:30:53'), +(1582,'2005-06-16 04:31:57',163,536,'2005-06-22 01:25:57',1,'2006-02-15 21:30:53'), +(1583,'2005-06-16 04:44:23',270,37,'2005-06-18 03:44:23',1,'2006-02-15 21:30:53'), +(1584,'2005-06-16 04:50:50',3545,434,'2005-06-21 22:51:50',2,'2006-02-15 21:30:53'), +(1585,'2005-06-16 04:51:13',1708,386,'2005-06-24 00:23:13',2,'2006-02-15 21:30:53'), +(1586,'2005-06-16 04:51:18',769,140,'2005-06-21 06:54:18',2,'2006-02-15 21:30:53'), +(1587,'2005-06-16 04:52:28',1781,62,'2005-06-23 07:36:28',1,'2006-02-15 21:30:53'), +(1588,'2005-06-16 04:53:21',4472,322,'2005-06-25 07:29:21',2,'2006-02-15 21:30:53'), +(1589,'2005-06-16 04:58:03',4307,293,'2005-06-24 08:36:03',1,'2006-02-15 21:30:53'), +(1590,'2005-06-16 05:11:41',3685,98,'2005-06-23 10:11:41',1,'2006-02-15 21:30:53'), +(1591,'2005-06-16 05:12:37',1648,83,'2005-06-25 06:28:37',2,'2006-02-15 21:30:53'), +(1592,'2005-06-16 05:14:37',3798,187,'2005-06-20 10:52:37',2,'2006-02-15 21:30:53'), +(1593,'2005-06-16 05:14:52',766,111,'2005-06-24 08:00:52',2,'2006-02-15 21:30:53'), +(1594,'2005-06-16 05:15:12',3858,470,'2005-06-25 00:38:12',1,'2006-02-15 21:30:53'), +(1595,'2005-06-16 05:23:46',1481,244,'2005-06-20 00:37:46',1,'2006-02-15 21:30:53'), +(1596,'2005-06-16 05:30:58',2552,416,'2005-06-21 04:18:58',2,'2006-02-15 21:30:53'), +(1597,'2005-06-16 05:47:03',743,432,'2005-06-18 04:21:03',1,'2006-02-15 21:30:53'), +(1598,'2005-06-16 06:02:39',4171,314,'2005-06-23 09:09:39',1,'2006-02-15 21:30:53'), +(1599,'2005-06-16 06:03:33',1476,215,'2005-06-21 07:46:33',2,'2006-02-15 21:30:53'), +(1600,'2005-06-16 06:04:12',2264,196,'2005-06-19 09:39:12',2,'2006-02-15 21:30:53'), +(1601,'2005-06-16 06:11:13',3115,428,'2005-06-21 08:57:13',2,'2006-02-15 21:30:53'), +(1602,'2005-06-16 06:12:40',1777,441,'2005-06-19 03:50:40',2,'2006-02-15 21:30:53'), +(1603,'2005-06-16 06:14:03',3308,395,'2005-06-17 06:04:03',2,'2006-02-15 21:30:53'), +(1604,'2005-06-16 06:14:25',3226,272,'2005-06-17 03:53:25',2,'2006-02-15 21:30:53'), +(1605,'2005-06-16 06:17:55',593,197,'2005-06-25 01:25:55',1,'2006-02-15 21:30:53'), +(1606,'2005-06-16 06:18:31',4290,253,'2005-06-25 09:15:31',1,'2006-02-15 21:30:53'), +(1607,'2005-06-16 06:25:35',3289,513,'2005-06-20 02:50:35',2,'2006-02-15 21:30:53'), +(1608,'2005-06-16 06:28:57',2581,386,'2005-06-24 05:20:57',2,'2006-02-15 21:30:53'), +(1609,'2005-06-16 06:34:59',2279,174,'2005-06-17 09:41:59',2,'2006-02-15 21:30:53'), +(1610,'2005-06-16 06:36:33',3551,534,'2005-06-19 07:12:33',1,'2006-02-15 21:30:53'), +(1611,'2005-06-16 06:41:35',1739,393,'2005-06-25 06:13:35',2,'2006-02-15 21:30:53'), +(1612,'2005-06-16 06:52:05',3025,355,'2005-06-19 01:51:05',1,'2006-02-15 21:30:53'), +(1613,'2005-06-16 06:55:10',4462,573,'2005-06-24 12:08:10',1,'2006-02-15 21:30:53'), +(1614,'2005-06-16 06:58:02',23,489,'2005-06-23 11:24:02',1,'2006-02-15 21:30:53'), +(1615,'2005-06-16 07:00:28',3894,362,'2005-06-25 08:53:28',1,'2006-02-15 21:30:53'), +(1616,'2005-06-16 07:04:52',2296,204,'2005-06-24 04:06:52',1,'2006-02-15 21:30:53'), +(1617,'2005-06-16 07:06:06',1382,83,'2005-06-25 03:35:06',1,'2006-02-15 21:30:53'), +(1618,'2005-06-16 07:08:38',3741,134,'2005-06-25 05:26:38',2,'2006-02-15 21:30:53'), +(1619,'2005-06-16 07:14:13',4258,232,'2005-06-19 05:50:13',2,'2006-02-15 21:30:53'), +(1620,'2005-06-16 07:21:30',389,561,'2005-06-17 09:46:30',1,'2006-02-15 21:30:53'), +(1621,'2005-06-16 07:24:12',3677,177,'2005-06-19 02:35:12',1,'2006-02-15 21:30:53'), +(1622,'2005-06-16 07:33:18',1774,311,'2005-06-21 07:23:18',1,'2006-02-15 21:30:53'), +(1623,'2005-06-16 07:48:50',4485,378,'2005-06-17 03:53:50',2,'2006-02-15 21:30:53'), +(1624,'2005-06-16 07:48:57',1066,314,'2005-06-17 05:52:57',1,'2006-02-15 21:30:53'), +(1625,'2005-06-16 07:49:08',3367,39,'2005-06-24 09:08:08',2,'2006-02-15 21:30:53'), +(1626,'2005-06-16 07:49:47',694,260,'2005-06-22 13:32:47',2,'2006-02-15 21:30:53'), +(1627,'2005-06-16 07:51:09',4135,468,'2005-06-24 02:24:09',1,'2006-02-15 21:30:53'), +(1628,'2005-06-16 07:52:55',868,427,'2005-06-25 11:09:55',1,'2006-02-15 21:30:53'), +(1629,'2005-06-16 07:53:47',4375,339,'2005-06-22 13:03:47',1,'2006-02-15 21:30:53'), +(1630,'2005-06-16 07:55:01',2413,130,'2005-06-19 06:38:01',1,'2006-02-15 21:30:53'), +(1631,'2005-06-16 08:01:02',2466,5,'2005-06-19 09:04:02',1,'2006-02-15 21:30:53'), +(1632,'2005-06-16 08:03:42',1518,319,'2005-06-17 03:40:42',1,'2006-02-15 21:30:53'), +(1633,'2005-06-16 08:08:40',280,4,'2005-06-17 11:12:40',1,'2006-02-15 21:30:53'), +(1634,'2005-06-16 08:16:05',3990,121,'2005-06-17 04:49:05',1,'2006-02-15 21:30:53'), +(1635,'2005-06-16 08:26:56',1187,566,'2005-06-25 06:17:56',2,'2006-02-15 21:30:53'), +(1636,'2005-06-16 08:28:54',2052,574,'2005-06-24 09:23:54',1,'2006-02-15 21:30:53'), +(1637,'2005-06-16 08:29:58',906,212,'2005-06-23 04:55:58',2,'2006-02-15 21:30:53'), +(1638,'2005-06-16 08:32:36',1905,181,'2005-06-18 07:11:36',2,'2006-02-15 21:30:53'), +(1639,'2005-06-16 08:33:39',176,450,'2005-06-25 07:51:39',1,'2006-02-15 21:30:53'), +(1640,'2005-06-16 08:35:39',443,86,'2005-06-17 05:37:39',2,'2006-02-15 21:30:53'), +(1641,'2005-06-16 08:46:26',2925,259,'2005-06-24 14:39:26',2,'2006-02-15 21:30:53'), +(1642,'2005-06-16 08:54:15',3875,287,'2005-06-18 12:36:15',1,'2006-02-15 21:30:53'), +(1643,'2005-06-16 08:55:35',1352,484,'2005-06-21 05:36:35',2,'2006-02-15 21:30:53'), +(1644,'2005-06-16 08:58:18',749,596,'2005-06-21 06:47:18',1,'2006-02-15 21:30:53'), +(1645,'2005-06-16 09:10:06',4434,234,'2005-06-23 04:36:06',2,'2006-02-15 21:30:53'), +(1646,'2005-06-16 09:12:53',4037,131,'2005-06-24 08:03:53',2,'2006-02-15 21:30:53'), +(1647,'2005-06-16 09:14:58',1936,454,'2005-06-17 10:46:58',1,'2006-02-15 21:30:53'), +(1648,'2005-06-16 09:17:07',457,427,'2005-06-24 06:31:07',2,'2006-02-15 21:30:53'), +(1649,'2005-06-16 09:20:33',390,352,'2005-06-18 13:42:33',1,'2006-02-15 21:30:53'), +(1650,'2005-06-16 09:23:20',4125,299,'2005-06-23 11:25:20',1,'2006-02-15 21:30:53'), +(1651,'2005-06-16 09:24:38',4444,524,'2005-06-17 09:50:38',2,'2006-02-15 21:30:53'), +(1652,'2005-06-16 09:31:37',3416,533,'2005-06-19 14:02:37',2,'2006-02-15 21:30:53'), +(1653,'2005-06-16 09:34:45',2294,517,'2005-06-18 09:13:45',1,'2006-02-15 21:30:53'), +(1654,'2005-06-16 09:42:48',1039,348,'2005-06-20 14:28:48',2,'2006-02-15 21:30:53'), +(1655,'2005-06-16 09:51:39',3693,488,'2005-06-23 14:53:39',2,'2006-02-15 21:30:53'), +(1656,'2005-06-16 10:05:40',2253,31,'2005-06-22 06:26:40',1,'2006-02-15 21:30:53'), +(1657,'2005-06-16 10:06:49',953,209,'2005-06-22 10:34:49',2,'2006-02-15 21:30:53'), +(1658,'2005-06-16 10:07:10',272,568,'2005-06-21 09:23:10',2,'2006-02-15 21:30:53'), +(1659,'2005-06-16 10:11:46',1182,296,'2005-06-20 13:51:46',1,'2006-02-15 21:30:53'), +(1660,'2005-06-16 10:12:55',2374,238,'2005-06-18 05:56:55',2,'2006-02-15 21:30:53'), +(1661,'2005-06-16 10:12:57',2403,508,'2005-06-24 09:23:57',2,'2006-02-15 21:30:53'), +(1662,'2005-06-16 10:13:35',3552,378,'2005-06-23 13:54:35',1,'2006-02-15 21:30:53'), +(1663,'2005-06-16 10:14:15',1558,186,'2005-06-23 08:34:15',2,'2006-02-15 21:30:53'), +(1664,'2005-06-16 10:15:20',2464,216,'2005-06-18 12:11:20',2,'2006-02-15 21:30:53'), +(1665,'2005-06-16 10:16:02',2613,490,'2005-06-23 09:32:02',1,'2006-02-15 21:30:53'), +(1666,'2005-06-16 10:17:19',4019,557,'2005-06-21 05:50:19',1,'2006-02-15 21:30:53'), +(1667,'2005-06-16 10:18:59',2362,333,'2005-06-22 14:45:59',2,'2006-02-15 21:30:53'), +(1668,'2005-06-16 10:19:52',2483,569,'2005-06-23 12:22:52',2,'2006-02-15 21:30:53'), +(1669,'2005-06-16 10:20:20',360,73,'2005-06-18 04:26:20',1,'2006-02-15 21:30:53'), +(1670,'2005-06-16 10:26:33',2066,328,'2005-06-19 07:15:33',1,'2006-02-15 21:30:53'), +(1671,'2005-06-16 10:30:22',3805,135,'2005-06-22 11:08:22',2,'2006-02-15 21:30:53'), +(1672,'2005-06-16 10:37:34',4206,216,'2005-06-23 05:30:34',1,'2006-02-15 21:30:53'), +(1673,'2005-06-16 10:40:17',907,534,'2005-06-18 16:13:17',1,'2006-02-15 21:30:53'), +(1674,'2005-06-16 10:57:00',3606,234,'2005-06-18 07:31:00',2,'2006-02-15 21:30:53'), +(1675,'2005-06-16 11:04:47',3048,371,'2005-06-24 06:56:47',2,'2006-02-15 21:30:53'), +(1676,'2005-06-16 11:06:09',931,171,'2005-06-21 05:17:09',1,'2006-02-15 21:30:53'), +(1677,'2005-06-16 11:07:11',240,191,'2005-06-23 10:50:11',1,'2006-02-15 21:30:53'), +(1678,'2005-06-16 11:08:28',1856,352,'2005-06-19 15:44:28',1,'2006-02-15 21:30:53'), +(1679,'2005-06-16 11:11:01',3959,227,'2005-06-23 08:11:01',1,'2006-02-15 21:30:53'), +(1680,'2005-06-16 11:17:22',4441,469,'2005-06-25 15:55:22',2,'2006-02-15 21:30:53'), +(1681,'2005-06-16 11:38:17',530,255,'2005-06-19 13:05:17',1,'2006-02-15 21:30:53'), +(1682,'2005-06-16 11:54:25',2165,476,'2005-06-22 11:09:25',2,'2006-02-15 21:30:53'), +(1683,'2005-06-16 11:54:55',2361,494,'2005-06-18 08:51:55',2,'2006-02-15 21:30:53'), +(1684,'2005-06-16 11:57:34',806,485,'2005-06-19 09:12:34',1,'2006-02-15 21:30:53'), +(1685,'2005-06-16 12:06:57',2754,85,'2005-06-21 16:53:57',2,'2006-02-15 21:30:53'), +(1686,'2005-06-16 12:08:20',3883,529,'2005-06-20 10:59:20',1,'2006-02-15 21:30:53'), +(1687,'2005-06-16 12:09:20',3686,140,'2005-06-18 06:18:20',2,'2006-02-15 21:30:53'), +(1688,'2005-06-16 12:11:20',383,49,'2005-06-18 08:39:20',2,'2006-02-15 21:30:53'), +(1689,'2005-06-16 12:18:41',4036,48,'2005-06-24 13:33:41',2,'2006-02-15 21:30:53'), +(1690,'2005-06-16 12:24:18',1099,286,'2005-06-25 15:00:18',1,'2006-02-15 21:30:53'), +(1691,'2005-06-16 12:24:28',4438,492,'2005-06-24 08:24:28',1,'2006-02-15 21:30:53'), +(1692,'2005-06-16 12:30:19',3544,514,'2005-06-17 17:31:19',2,'2006-02-15 21:30:53'), +(1693,'2005-06-16 12:39:51',2386,421,'2005-06-19 16:19:51',2,'2006-02-15 21:30:53'), +(1694,'2005-06-16 12:40:23',147,532,'2005-06-20 09:18:23',2,'2006-02-15 21:30:53'), +(1695,'2005-06-16 12:40:28',4436,159,'2005-06-22 13:41:28',1,'2006-02-15 21:30:53'), +(1696,'2005-06-16 12:50:01',3928,502,'2005-06-24 12:08:01',2,'2006-02-15 21:30:53'), +(1697,'2005-06-16 12:55:20',1801,340,'2005-06-23 17:41:20',2,'2006-02-15 21:30:53'), +(1698,'2005-06-16 13:04:42',1474,407,'2005-06-21 15:54:42',1,'2006-02-15 21:30:53'), +(1699,'2005-06-16 13:05:09',4507,27,'2005-06-17 09:53:09',2,'2006-02-15 21:30:53'), +(1700,'2005-06-16 13:18:23',4251,456,'2005-06-21 16:46:23',2,'2006-02-15 21:30:53'), +(1701,'2005-06-16 13:18:48',3000,315,'2005-06-22 15:00:48',1,'2006-02-15 21:30:53'), +(1702,'2005-06-16 13:21:05',1822,242,'2005-06-19 10:13:05',2,'2006-02-15 21:30:53'), +(1703,'2005-06-16 13:28:44',2346,589,'2005-06-17 11:03:44',1,'2006-02-15 21:30:53'), +(1704,'2005-06-16 13:45:56',4425,488,'2005-06-24 18:12:56',1,'2006-02-15 21:30:53'), +(1705,'2005-06-16 13:59:42',123,564,'2005-06-18 19:54:42',2,'2006-02-15 21:30:53'), +(1706,'2005-06-16 14:01:02',2935,26,'2005-06-25 19:29:02',1,'2006-02-15 21:30:53'), +(1707,'2005-06-16 14:01:27',185,4,'2005-06-18 09:35:27',1,'2006-02-15 21:30:53'), +(1708,'2005-06-16 14:08:44',2259,478,'2005-06-19 08:35:44',1,'2006-02-15 21:30:53'), +(1709,'2005-06-16 14:10:15',3501,426,'2005-06-24 16:38:15',2,'2006-02-15 21:30:53'), +(1710,'2005-06-16 14:11:24',144,77,'2005-06-22 15:26:24',1,'2006-02-15 21:30:53'), +(1711,'2005-06-16 14:11:52',273,347,'2005-06-25 08:49:52',1,'2006-02-15 21:30:53'), +(1712,'2005-06-16 14:25:09',1363,535,'2005-06-17 17:55:09',1,'2006-02-15 21:30:53'), +(1713,'2005-06-16 14:28:33',2580,164,'2005-06-18 09:02:33',1,'2006-02-15 21:30:53'), +(1714,'2005-06-16 14:29:59',535,477,'2005-06-24 17:27:59',2,'2006-02-15 21:30:53'), +(1715,'2005-06-16 14:37:12',1594,203,'2005-06-20 19:36:12',1,'2006-02-15 21:30:53'), +(1716,'2005-06-16 14:39:31',20,24,'2005-06-19 15:37:31',1,'2006-02-15 21:30:53'), +(1717,'2005-06-16 14:47:16',3007,277,'2005-06-19 10:11:16',2,'2006-02-15 21:30:53'), +(1718,'2005-06-16 14:52:02',288,516,'2005-06-25 10:53:02',2,'2006-02-15 21:30:53'), +(1719,'2005-06-16 14:55:53',2699,582,'2005-06-18 14:12:53',1,'2006-02-15 21:30:53'), +(1720,'2005-06-16 15:00:14',3500,543,'2005-06-21 13:57:14',2,'2006-02-15 21:30:53'), +(1721,'2005-06-16 15:01:36',3521,485,'2005-06-23 10:48:36',1,'2006-02-15 21:30:53'), +(1722,'2005-06-16 15:12:52',2142,364,'2005-06-19 13:01:52',2,'2006-02-15 21:30:53'), +(1723,'2005-06-16 15:14:18',2417,259,'2005-06-23 15:45:18',2,'2006-02-15 21:30:53'), +(1724,'2005-06-16 15:15:43',61,146,'2005-06-23 10:14:43',2,'2006-02-15 21:30:53'), +(1725,'2005-06-16 15:18:57',726,1,'2005-06-17 21:05:57',1,'2006-02-15 21:30:53'), +(1726,'2005-06-16 15:19:10',116,3,'2005-06-25 11:39:10',2,'2006-02-15 21:30:53'), +(1727,'2005-06-16 15:21:47',2951,457,'2005-06-17 14:12:47',1,'2006-02-15 21:30:53'), +(1728,'2005-06-16 15:29:29',1366,59,'2005-06-23 12:47:29',1,'2006-02-15 21:30:53'), +(1729,'2005-06-16 15:29:47',3364,523,'2005-06-25 20:55:47',2,'2006-02-15 21:30:53'), +(1730,'2005-06-16 15:30:01',1372,390,'2005-06-19 12:56:01',1,'2006-02-15 21:30:53'), +(1731,'2005-06-16 15:32:12',3698,344,'2005-06-19 18:58:12',2,'2006-02-15 21:30:53'), +(1732,'2005-06-16 15:34:41',2287,129,'2005-06-18 13:05:41',1,'2006-02-15 21:30:53'), +(1733,'2005-06-16 15:37:07',542,480,'2005-06-23 15:53:07',2,'2006-02-15 21:30:53'), +(1734,'2005-06-16 15:49:30',1113,94,'2005-06-22 13:52:30',2,'2006-02-15 21:30:53'), +(1735,'2005-06-16 15:51:52',97,4,'2005-06-20 13:27:52',1,'2006-02-15 21:30:53'), +(1736,'2005-06-16 15:52:32',3771,139,'2005-06-21 14:39:32',2,'2006-02-15 21:30:53'), +(1737,'2005-06-16 15:59:44',4029,467,'2005-06-23 12:22:44',1,'2006-02-15 21:30:53'), +(1738,'2005-06-16 16:07:27',3260,177,'2005-06-20 15:22:27',1,'2006-02-15 21:30:53'), +(1739,'2005-06-16 16:09:38',2557,450,'2005-06-22 18:04:38',2,'2006-02-15 21:30:53'), +(1740,'2005-06-16 16:29:00',2282,324,'2005-06-20 14:07:00',2,'2006-02-15 21:30:53'), +(1741,'2005-06-16 16:31:37',3722,176,'2005-06-25 21:38:37',1,'2006-02-15 21:30:53'), +(1742,'2005-06-16 16:37:48',2772,576,'2005-06-17 19:47:48',2,'2006-02-15 21:30:53'), +(1743,'2005-06-16 16:38:10',2777,258,'2005-06-17 13:13:10',1,'2006-02-15 21:30:53'), +(1744,'2005-06-16 16:39:58',3075,230,'2005-06-18 19:50:58',2,'2006-02-15 21:30:53'), +(1745,'2005-06-16 16:41:16',2812,178,'2005-06-23 21:02:16',2,'2006-02-15 21:30:53'), +(1746,'2005-06-16 16:41:19',4272,385,'2005-06-19 11:28:19',2,'2006-02-15 21:30:53'), +(1747,'2005-06-16 16:53:33',1661,273,'2005-06-25 21:48:33',2,'2006-02-15 21:30:53'), +(1748,'2005-06-16 16:54:03',2434,473,'2005-06-18 20:11:03',1,'2006-02-15 21:30:53'), +(1749,'2005-06-16 16:56:00',1554,283,'2005-06-21 21:02:00',2,'2006-02-15 21:30:53'), +(1750,'2005-06-16 16:57:36',1103,321,'2005-06-25 21:51:36',1,'2006-02-15 21:30:53'), +(1751,'2005-06-16 17:00:14',138,123,'2005-06-17 12:12:14',2,'2006-02-15 21:30:53'), +(1752,'2005-06-16 17:02:55',3529,12,'2005-06-23 19:09:55',2,'2006-02-15 21:30:53'), +(1753,'2005-06-16 17:08:17',3817,249,'2005-06-21 21:47:17',2,'2006-02-15 21:30:53'), +(1754,'2005-06-16 17:13:23',4106,25,'2005-06-22 20:46:23',1,'2006-02-15 21:30:53'), +(1755,'2005-06-16 17:18:44',1721,117,'2005-06-17 16:54:44',1,'2006-02-15 21:30:53'), +(1756,'2005-06-16 17:22:33',1401,571,'2005-06-21 16:52:33',1,'2006-02-15 21:30:53'), +(1757,'2005-06-16 17:32:24',4491,510,'2005-06-18 13:12:24',1,'2006-02-15 21:30:53'), +(1758,'2005-06-16 17:39:39',2654,474,'2005-06-25 13:06:39',1,'2006-02-15 21:30:53'), +(1759,'2005-06-16 17:46:37',1402,430,'2005-06-24 19:40:37',2,'2006-02-15 21:30:53'), +(1760,'2005-06-16 17:48:37',3929,261,'2005-06-18 16:01:37',2,'2006-02-15 21:30:53'), +(1761,'2005-06-16 17:49:57',1570,521,'2005-06-17 21:03:57',2,'2006-02-15 21:30:53'), +(1762,'2005-06-16 17:50:19',3050,116,'2005-06-19 21:35:19',2,'2006-02-15 21:30:53'), +(1763,'2005-06-16 17:51:01',1941,389,'2005-06-20 17:27:01',1,'2006-02-15 21:30:53'), +(1764,'2005-06-16 17:51:54',705,392,'2005-06-21 20:36:54',2,'2006-02-15 21:30:53'), +(1765,'2005-06-16 17:56:10',822,273,'2005-06-19 23:40:10',2,'2006-02-15 21:30:53'), +(1766,'2005-06-16 17:59:37',2041,118,'2005-06-18 16:32:37',2,'2006-02-15 21:30:53'), +(1767,'2005-06-16 18:01:36',1162,205,'2005-06-18 12:39:36',2,'2006-02-15 21:30:53'), +(1768,'2005-06-16 18:02:06',2131,131,'2005-06-23 17:19:06',2,'2006-02-15 21:30:53'), +(1769,'2005-06-16 18:07:48',1229,397,'2005-06-22 12:39:48',1,'2006-02-15 21:30:53'), +(1770,'2005-06-16 18:07:55',1681,359,'2005-06-23 23:49:55',2,'2006-02-15 21:30:53'), +(1771,'2005-06-16 18:12:17',1769,416,'2005-06-18 16:11:17',1,'2006-02-15 21:30:53'), +(1772,'2005-06-16 18:12:54',1269,525,'2005-06-24 19:55:54',1,'2006-02-15 21:30:53'), +(1773,'2005-06-16 18:13:43',4396,462,'2005-06-24 17:43:43',2,'2006-02-15 21:30:53'), +(1774,'2005-06-16 18:27:52',3058,442,'2005-06-21 13:35:52',2,'2006-02-15 21:30:53'), +(1775,'2005-06-16 18:28:19',1922,123,'2005-06-25 13:09:19',2,'2006-02-15 21:30:53'), +(1776,'2005-06-16 18:46:58',1404,472,'2005-06-24 16:01:58',1,'2006-02-15 21:30:53'), +(1777,'2005-06-16 18:52:12',3325,49,'2005-06-25 13:55:12',1,'2006-02-15 21:30:53'), +(1778,'2005-06-16 18:54:48',2512,341,'2005-06-22 16:08:48',2,'2006-02-15 21:30:53'), +(1779,'2005-06-16 18:55:11',1044,438,'2005-06-17 20:11:11',1,'2006-02-15 21:30:53'), +(1780,'2005-06-16 19:11:45',146,352,'2005-06-19 15:34:45',2,'2006-02-15 21:30:53'), +(1781,'2005-06-16 19:20:24',2841,429,'2005-06-25 17:02:24',2,'2006-02-15 21:30:53'), +(1782,'2005-06-16 19:21:12',1820,498,'2005-06-22 16:03:12',2,'2006-02-15 21:30:53'), +(1783,'2005-06-16 19:23:23',50,18,'2005-06-18 00:57:23',1,'2006-02-15 21:30:53'), +(1784,'2005-06-16 19:25:32',3792,134,'2005-06-20 00:00:32',2,'2006-02-15 21:30:53'), +(1785,'2005-06-16 19:27:12',3413,50,'2005-06-24 19:25:12',1,'2006-02-15 21:30:53'), +(1786,'2005-06-16 19:30:54',263,323,'2005-06-19 14:24:54',1,'2006-02-15 21:30:53'), +(1787,'2005-06-16 19:30:59',3823,546,'2005-06-21 18:25:59',2,'2006-02-15 21:30:53'), +(1788,'2005-06-16 19:47:18',3794,357,'2005-06-22 23:10:18',1,'2006-02-15 21:30:53'), +(1789,'2005-06-16 19:49:18',4264,105,'2005-06-23 17:07:18',2,'2006-02-15 21:30:53'), +(1790,'2005-06-16 19:58:40',1070,158,'2005-06-17 19:31:40',2,'2006-02-15 21:30:53'), +(1791,'2005-06-16 20:04:28',301,76,'2005-06-23 22:30:28',1,'2006-02-15 21:30:53'), +(1792,'2005-06-16 20:04:50',3800,351,'2005-06-26 00:57:50',1,'2006-02-15 21:30:53'), +(1793,'2005-06-16 20:07:27',4356,230,'2005-06-19 20:55:27',1,'2006-02-15 21:30:53'), +(1794,'2005-06-16 20:08:37',497,452,'2005-06-22 01:54:37',1,'2006-02-15 21:30:53'), +(1795,'2005-06-16 20:09:01',536,56,'2005-06-24 17:50:01',2,'2006-02-15 21:30:53'), +(1796,'2005-06-16 20:10:43',3229,283,'2005-06-20 19:12:43',1,'2006-02-15 21:30:53'), +(1797,'2005-06-16 20:13:03',3435,275,'2005-06-22 22:56:03',1,'2006-02-15 21:30:53'), +(1798,'2005-06-16 20:16:15',1654,429,'2005-06-20 22:23:15',2,'2006-02-15 21:30:53'), +(1799,'2005-06-16 20:17:20',2847,505,'2005-06-20 23:55:20',1,'2006-02-15 21:30:53'), +(1800,'2005-06-16 20:18:46',2058,149,'2005-06-20 17:12:46',1,'2006-02-15 21:30:53'), +(1801,'2005-06-16 20:21:53',1015,10,'2005-06-18 23:18:53',1,'2006-02-15 21:30:53'), +(1802,'2005-06-16 20:23:30',4174,455,'2005-06-21 20:02:30',1,'2006-02-15 21:30:53'), +(1803,'2005-06-16 20:32:47',3784,127,'2005-06-21 02:03:47',1,'2006-02-15 21:30:53'), +(1804,'2005-06-16 20:33:15',1152,570,'2005-06-18 02:31:15',2,'2006-02-15 21:30:53'), +(1805,'2005-06-16 20:36:00',3962,208,'2005-06-17 16:27:00',1,'2006-02-15 21:30:53'), +(1806,'2005-06-16 20:41:57',2053,45,'2005-06-18 19:25:57',2,'2006-02-15 21:30:53'), +(1807,'2005-06-16 20:58:59',1174,338,'2005-06-20 21:31:59',2,'2006-02-15 21:30:53'), +(1808,'2005-06-16 20:59:35',2424,466,'2005-06-24 15:31:35',1,'2006-02-15 21:30:53'), +(1809,'2005-06-16 21:00:20',1071,517,'2005-06-25 20:25:20',1,'2006-02-15 21:30:53'), +(1810,'2005-06-16 21:06:00',2368,7,'2005-06-21 21:24:00',1,'2006-02-15 21:30:53'), +(1811,'2005-06-16 21:06:20',3700,235,'2005-06-21 21:59:20',2,'2006-02-15 21:30:53'), +(1812,'2005-06-16 21:08:46',751,37,'2005-06-21 15:44:46',2,'2006-02-15 21:30:53'), +(1813,'2005-06-16 21:11:00',1236,259,'2005-06-24 15:30:00',1,'2006-02-15 21:30:53'), +(1814,'2005-06-16 21:15:22',39,144,'2005-06-23 17:00:22',1,'2006-02-15 21:30:53'), +(1815,'2005-06-16 21:16:07',1551,84,'2005-06-17 16:37:07',2,'2006-02-15 21:30:53'), +(1816,'2005-06-16 21:20:41',2861,594,'2005-06-18 02:21:41',1,'2006-02-15 21:30:53'), +(1817,'2005-06-16 21:20:52',1354,574,'2005-06-19 16:24:52',2,'2006-02-15 21:30:53'), +(1818,'2005-06-16 21:30:34',1218,63,'2005-06-20 03:27:34',2,'2006-02-15 21:30:53'), +(1819,'2005-06-16 21:32:50',1689,386,'2005-06-26 01:11:50',1,'2006-02-15 21:30:53'), +(1820,'2005-06-16 21:34:50',3672,120,'2005-06-20 16:50:50',1,'2006-02-15 21:30:53'), +(1821,'2005-06-16 21:42:49',3207,468,'2005-06-20 16:25:49',2,'2006-02-15 21:30:53'), +(1822,'2005-06-16 21:43:45',674,86,'2005-06-17 21:37:45',1,'2006-02-15 21:30:53'), +(1823,'2005-06-16 21:48:16',3871,448,'2005-06-22 03:09:16',1,'2006-02-15 21:30:53'), +(1824,'2005-06-16 21:51:04',2269,575,'2005-06-18 18:12:04',1,'2006-02-15 21:30:53'), +(1825,'2005-06-16 21:53:05',2908,55,'2005-06-20 17:22:05',2,'2006-02-15 21:30:53'), +(1826,'2005-06-16 21:53:52',421,578,'2005-06-25 18:46:52',2,'2006-02-15 21:30:53'), +(1827,'2005-06-16 21:54:40',3804,423,'2005-06-19 21:28:40',2,'2006-02-15 21:30:53'), +(1828,'2005-06-16 22:04:34',316,68,'2005-06-20 21:07:34',2,'2006-02-15 21:30:53'), +(1829,'2005-06-16 22:14:21',617,293,'2005-06-21 16:51:21',1,'2006-02-15 21:30:53'), +(1830,'2005-06-16 22:18:43',4010,499,'2005-06-23 21:14:43',2,'2006-02-15 21:30:53'), +(1831,'2005-06-16 22:22:17',2610,383,'2005-06-25 23:23:17',2,'2006-02-15 21:30:53'), +(1832,'2005-06-16 22:35:20',500,220,'2005-06-19 03:09:20',1,'2006-02-15 21:30:53'), +(1833,'2005-06-16 22:45:03',1337,121,'2005-06-20 22:02:03',2,'2006-02-15 21:30:53'), +(1834,'2005-06-16 22:49:08',4018,189,'2005-06-22 21:08:08',1,'2006-02-15 21:30:53'), +(1835,'2005-06-16 23:05:36',1482,112,'2005-06-19 04:46:36',1,'2006-02-15 21:30:53'), +(1836,'2005-06-16 23:13:05',2753,176,'2005-06-24 01:40:05',2,'2006-02-15 21:30:53'), +(1837,'2005-06-16 23:16:15',1259,309,'2005-06-21 21:54:15',1,'2006-02-15 21:30:53'), +(1838,'2005-06-16 23:20:16',513,31,'2005-06-20 02:34:16',1,'2006-02-15 21:30:53'), +(1839,'2005-06-16 23:22:22',2750,223,'2005-06-23 00:33:22',1,'2006-02-15 21:30:53'), +(1840,'2005-06-16 23:39:34',340,404,'2005-06-21 23:36:34',1,'2006-02-15 21:30:53'), +(1841,'2005-06-16 23:44:13',2363,6,'2005-06-22 04:09:13',1,'2006-02-15 21:30:53'), +(1842,'2005-06-16 23:45:59',1472,426,'2005-06-26 05:31:59',1,'2006-02-15 21:30:53'), +(1843,'2005-06-16 23:53:42',2714,132,'2005-06-22 18:33:42',2,'2006-02-15 21:30:53'), +(1844,'2005-06-16 23:53:53',2307,454,'2005-06-22 02:19:53',2,'2006-02-15 21:30:53'), +(1845,'2005-06-16 23:56:11',3395,215,'2005-06-19 01:41:11',2,'2006-02-15 21:30:53'), +(1846,'2005-06-17 00:02:44',1725,422,'2005-06-18 23:47:44',2,'2006-02-15 21:30:53'), +(1847,'2005-06-17 00:05:22',1189,363,'2005-06-20 21:09:22',1,'2006-02-15 21:30:53'), +(1848,'2005-06-17 00:07:07',3797,526,'2005-06-21 21:41:07',2,'2006-02-15 21:30:53'), +(1849,'2005-06-17 00:13:19',2507,341,'2005-06-23 18:37:19',2,'2006-02-15 21:30:53'), +(1850,'2005-06-17 00:31:35',761,517,'2005-06-25 05:19:35',1,'2006-02-15 21:30:53'), +(1851,'2005-06-17 00:32:26',1121,451,'2005-06-22 19:54:26',2,'2006-02-15 21:30:53'), +(1852,'2005-06-17 00:38:20',4122,271,'2005-06-22 20:04:20',2,'2006-02-15 21:30:53'), +(1853,'2005-06-17 00:39:54',2949,301,'2005-06-19 00:22:54',2,'2006-02-15 21:30:53'), +(1854,'2005-06-17 00:43:57',119,37,'2005-06-23 05:49:57',1,'2006-02-15 21:30:53'), +(1855,'2005-06-17 00:54:58',4457,492,'2005-06-20 19:29:58',1,'2006-02-15 21:30:53'), +(1856,'2005-06-17 01:02:00',3034,161,'2005-06-19 21:29:00',2,'2006-02-15 21:30:53'), +(1857,'2005-06-17 01:12:58',4257,427,'2005-06-21 04:49:58',1,'2006-02-15 21:30:53'), +(1858,'2005-06-17 01:13:11',3200,99,'2005-06-18 21:33:11',2,'2006-02-15 21:30:53'), +(1859,'2005-06-17 01:13:38',3405,533,'2005-06-18 03:13:38',1,'2006-02-15 21:30:53'), +(1860,'2005-06-17 01:17:12',1853,293,'2005-06-21 22:35:12',1,'2006-02-15 21:30:53'), +(1861,'2005-06-17 01:17:31',135,454,'2005-06-25 02:11:31',1,'2006-02-15 21:30:53'), +(1862,'2005-06-17 01:29:30',3299,553,'2005-06-25 20:43:30',1,'2006-02-15 21:30:53'), +(1863,'2005-06-17 01:31:46',4466,550,'2005-06-26 02:09:46',2,'2006-02-15 21:30:53'), +(1864,'2005-06-17 01:39:47',1815,130,'2005-06-24 19:39:47',2,'2006-02-15 21:30:53'), +(1865,'2005-06-17 01:49:36',2657,526,'2005-06-23 21:13:36',1,'2006-02-15 21:30:53'), +(1866,'2005-06-17 01:53:19',2579,575,'2005-06-19 06:14:19',2,'2006-02-15 21:30:53'), +(1867,'2005-06-17 02:01:37',3537,415,'2005-06-25 04:52:37',2,'2006-02-15 21:30:53'), +(1868,'2005-06-17 02:03:22',2412,380,'2005-06-25 04:38:22',1,'2006-02-15 21:30:53'), +(1869,'2005-06-17 02:08:00',871,351,'2005-06-19 21:43:00',1,'2006-02-15 21:30:53'), +(1870,'2005-06-17 02:24:36',895,191,'2005-06-17 23:04:36',2,'2006-02-15 21:30:53'), +(1871,'2005-06-17 02:25:12',481,204,'2005-06-23 03:16:12',2,'2006-02-15 21:30:53'), +(1872,'2005-06-17 02:27:03',3596,206,'2005-06-20 22:41:03',2,'2006-02-15 21:30:53'), +(1873,'2005-06-17 02:38:28',2933,71,'2005-06-23 04:39:28',1,'2006-02-15 21:30:53'), +(1874,'2005-06-17 02:39:20',3884,30,'2005-06-24 04:41:20',2,'2006-02-15 21:30:53'), +(1875,'2005-06-17 02:45:10',1652,528,'2005-06-22 22:54:10',2,'2006-02-15 21:30:53'), +(1876,'2005-06-17 02:50:51',384,459,'2005-06-18 07:21:51',1,'2006-02-15 21:30:53'), +(1877,'2005-06-17 02:54:16',3404,261,'2005-06-25 21:51:16',2,'2006-02-15 21:30:53'), +(1878,'2005-06-17 02:55:32',3319,381,'2005-06-21 03:44:32',1,'2006-02-15 21:30:53'), +(1879,'2005-06-17 02:57:34',3983,343,'2005-06-19 00:00:34',1,'2006-02-15 21:30:53'), +(1880,'2005-06-17 03:08:59',1133,289,'2005-06-19 07:16:59',1,'2006-02-15 21:30:53'), +(1881,'2005-06-17 03:09:56',159,134,'2005-06-18 01:49:56',1,'2006-02-15 21:30:53'), +(1882,'2005-06-17 03:17:21',1400,47,'2005-06-19 22:23:21',2,'2006-02-15 21:30:53'), +(1883,'2005-06-17 03:18:51',3504,550,'2005-06-18 05:46:51',1,'2006-02-15 21:30:53'), +(1884,'2005-06-17 03:19:20',4567,305,'2005-06-21 00:19:20',1,'2006-02-15 21:30:53'), +(1885,'2005-06-17 03:35:59',740,588,'2005-06-21 05:57:59',2,'2006-02-15 21:30:53'), +(1886,'2005-06-17 03:36:02',2367,505,'2005-06-19 08:12:02',2,'2006-02-15 21:30:53'), +(1887,'2005-06-17 03:53:18',3591,32,'2005-06-25 07:37:18',2,'2006-02-15 21:30:53'), +(1888,'2005-06-17 03:58:36',2872,405,'2005-06-22 09:28:36',1,'2006-02-15 21:30:53'), +(1889,'2005-06-17 04:05:12',3909,572,'2005-06-26 04:13:12',1,'2006-02-15 21:30:53'), +(1890,'2005-06-17 04:06:13',1764,447,'2005-06-22 07:46:13',2,'2006-02-15 21:30:53'), +(1891,'2005-06-17 04:16:44',3576,109,'2005-06-24 07:20:44',1,'2006-02-15 21:30:53'), +(1892,'2005-06-17 04:17:33',139,319,'2005-06-20 00:06:33',1,'2006-02-15 21:30:53'), +(1893,'2005-06-17 04:18:37',3346,390,'2005-06-23 23:35:37',2,'2006-02-15 21:30:53'), +(1894,'2005-06-17 04:18:48',3707,204,'2005-06-26 00:07:48',1,'2006-02-15 21:30:53'), +(1895,'2005-06-17 04:25:12',680,30,'2005-06-26 08:44:12',1,'2006-02-15 21:30:53'), +(1896,'2005-06-17 04:25:46',2077,270,'2005-06-26 09:37:46',1,'2006-02-15 21:30:53'), +(1897,'2005-06-17 04:26:23',4142,422,'2005-06-25 09:32:23',2,'2006-02-15 21:30:53'), +(1898,'2005-06-17 04:28:11',2873,143,'2005-06-25 07:04:11',2,'2006-02-15 21:30:53'), +(1899,'2005-06-17 04:29:15',858,200,'2005-06-26 08:39:15',1,'2006-02-15 21:30:53'), +(1900,'2005-06-17 04:29:58',1425,34,'2005-06-21 05:58:58',1,'2006-02-15 21:30:53'), +(1901,'2005-06-17 04:35:19',2469,292,'2005-06-25 06:09:19',2,'2006-02-15 21:30:53'), +(1902,'2005-06-17 04:35:52',2905,479,'2005-06-20 06:52:52',2,'2006-02-15 21:30:53'), +(1903,'2005-06-17 04:37:20',1939,588,'2005-06-26 09:05:20',2,'2006-02-15 21:30:53'), +(1904,'2005-06-17 04:45:41',2472,87,'2005-06-17 23:56:41',2,'2006-02-15 21:30:53'), +(1905,'2005-06-17 04:51:43',1043,39,'2005-06-24 09:35:43',1,'2006-02-15 21:30:53'), +(1906,'2005-06-17 04:53:35',1049,455,'2005-06-21 01:16:35',2,'2006-02-15 21:30:53'), +(1907,'2005-06-17 05:08:27',988,66,'2005-06-23 09:13:27',1,'2006-02-15 21:30:53'), +(1908,'2005-06-17 05:10:36',399,358,'2005-06-19 03:52:36',1,'2006-02-15 21:30:53'), +(1909,'2005-06-17 05:11:04',2599,269,'2005-06-19 04:33:04',2,'2006-02-15 21:30:53'), +(1910,'2005-06-17 05:11:27',3903,199,'2005-06-23 23:16:27',1,'2006-02-15 21:30:53'), +(1911,'2005-06-17 05:15:15',910,3,'2005-06-24 11:05:15',2,'2006-02-15 21:30:53'), +(1912,'2005-06-17 05:18:32',4136,538,'2005-06-20 10:01:32',2,'2006-02-15 21:30:53'), +(1913,'2005-06-17 05:19:47',1825,116,'2005-06-21 03:39:47',1,'2006-02-15 21:30:53'), +(1914,'2005-06-17 05:25:54',3406,450,'2005-06-24 04:25:54',2,'2006-02-15 21:30:53'), +(1915,'2005-06-17 05:28:28',2620,393,'2005-06-21 07:12:28',2,'2006-02-15 21:30:53'), +(1916,'2005-06-17 05:29:59',4428,429,'2005-06-26 05:35:59',2,'2006-02-15 21:30:53'), +(1917,'2005-06-17 05:36:07',2667,400,'2005-06-24 01:44:07',1,'2006-02-15 21:30:53'), +(1918,'2005-06-17 05:40:14',3749,310,'2005-06-21 08:53:14',2,'2006-02-15 21:30:53'), +(1919,'2005-06-17 05:40:52',3855,197,'2005-06-23 05:58:52',1,'2006-02-15 21:30:53'), +(1920,'2005-06-17 06:00:23',2199,75,'2005-06-24 04:49:23',1,'2006-02-15 21:30:53'), +(1921,'2005-06-17 06:04:16',4369,417,'2005-06-23 05:26:16',2,'2006-02-15 21:30:53'), +(1922,'2005-06-17 06:04:25',2484,343,'2005-06-18 09:15:25',2,'2006-02-15 21:30:53'), +(1923,'2005-06-17 06:06:10',691,400,'2005-06-24 04:29:10',2,'2006-02-15 21:30:53'), +(1924,'2005-06-17 06:13:34',2577,86,'2005-06-18 01:51:34',1,'2006-02-15 21:30:53'), +(1925,'2005-06-17 06:16:47',3995,510,'2005-06-21 06:03:47',1,'2006-02-15 21:30:53'), +(1926,'2005-06-17 06:24:30',3509,462,'2005-06-25 03:39:30',2,'2006-02-15 21:30:53'), +(1927,'2005-06-17 06:48:19',3304,188,'2005-06-21 03:23:19',1,'2006-02-15 21:30:53'), +(1928,'2005-06-17 06:48:31',3454,353,'2005-06-26 08:17:31',1,'2006-02-15 21:30:53'), +(1929,'2005-06-17 06:49:30',573,327,'2005-06-22 12:07:30',2,'2006-02-15 21:30:53'), +(1930,'2005-06-17 06:50:46',79,112,'2005-06-19 08:51:46',2,'2006-02-15 21:30:53'), +(1931,'2005-06-17 06:51:56',1411,391,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'), +(1932,'2005-06-17 06:54:41',3185,120,'2005-06-19 05:12:41',2,'2006-02-15 21:30:53'), +(1933,'2005-06-17 06:54:42',980,13,'2005-06-26 02:00:42',1,'2006-02-15 21:30:53'), +(1934,'2005-06-17 07:04:57',4000,16,'2005-06-25 12:21:57',2,'2006-02-15 21:30:53'), +(1935,'2005-06-17 07:14:15',1962,295,'2005-06-20 05:59:15',1,'2006-02-15 21:30:53'), +(1936,'2005-06-17 07:15:41',3037,213,'2005-06-18 11:37:41',2,'2006-02-15 21:30:53'), +(1937,'2005-06-17 07:16:46',1266,385,'2005-06-21 04:22:46',2,'2006-02-15 21:30:53'), +(1938,'2005-06-17 07:18:36',570,454,'2005-06-19 01:43:36',2,'2006-02-15 21:30:53'), +(1939,'2005-06-17 07:26:45',605,11,'2005-06-25 13:06:45',2,'2006-02-15 21:30:53'), +(1940,'2005-06-17 07:42:22',105,451,'2005-06-22 11:59:22',1,'2006-02-15 21:30:53'), +(1941,'2005-06-17 07:42:45',1063,519,'2005-06-20 07:12:45',1,'2006-02-15 21:30:53'), +(1942,'2005-06-17 07:43:39',261,143,'2005-06-25 02:24:39',1,'2006-02-15 21:30:53'), +(1943,'2005-06-17 07:49:17',4327,144,'2005-06-20 03:47:17',1,'2006-02-15 21:30:53'), +(1944,'2005-06-17 07:50:53',318,16,'2005-06-23 02:52:53',2,'2006-02-15 21:30:53'), +(1945,'2005-06-17 07:51:26',3366,207,'2005-06-23 13:22:26',2,'2006-02-15 21:30:53'), +(1946,'2005-06-17 07:58:39',2335,389,'2005-06-25 06:49:39',2,'2006-02-15 21:30:53'), +(1947,'2005-06-17 08:02:20',3344,479,'2005-06-25 10:25:20',1,'2006-02-15 21:30:53'), +(1948,'2005-06-17 08:06:53',46,89,'2005-06-21 05:00:53',1,'2006-02-15 21:30:53'), +(1949,'2005-06-17 08:19:22',1478,208,'2005-06-25 08:43:22',1,'2006-02-15 21:30:53'), +(1950,'2005-06-17 08:26:52',723,594,'2005-06-22 08:08:52',2,'2006-02-15 21:30:53'), +(1951,'2005-06-17 08:30:35',955,123,'2005-06-20 10:43:35',2,'2006-02-15 21:30:53'), +(1952,'2005-06-17 08:33:02',1823,338,'2005-06-21 14:00:02',2,'2006-02-15 21:30:53'), +(1953,'2005-06-17 08:34:57',3549,405,'2005-06-24 09:38:57',2,'2006-02-15 21:30:53'), +(1954,'2005-06-17 08:37:55',3203,533,'2005-06-20 02:55:55',2,'2006-02-15 21:30:53'), +(1955,'2005-06-17 08:40:22',811,311,'2005-06-19 10:47:22',1,'2006-02-15 21:30:53'), +(1956,'2005-06-17 08:43:32',1403,492,'2005-06-21 11:08:32',1,'2006-02-15 21:30:53'), +(1957,'2005-06-17 08:50:58',2496,68,'2005-06-26 13:39:58',2,'2006-02-15 21:30:53'), +(1958,'2005-06-17 08:52:01',1843,581,'2005-06-23 07:55:01',2,'2006-02-15 21:30:53'), +(1959,'2005-06-17 08:54:10',1464,554,'2005-06-20 05:02:10',2,'2006-02-15 21:30:53'), +(1960,'2005-06-17 08:59:57',2202,27,'2005-06-23 14:38:57',2,'2006-02-15 21:30:53'), +(1961,'2005-06-17 09:02:58',2851,384,'2005-06-20 03:07:58',1,'2006-02-15 21:30:53'), +(1962,'2005-06-17 09:08:58',4386,536,'2005-06-23 14:55:58',1,'2006-02-15 21:30:53'), +(1963,'2005-06-17 09:09:31',1943,154,'2005-06-24 13:16:31',2,'2006-02-15 21:30:53'), +(1964,'2005-06-17 09:10:09',3390,53,'2005-06-21 15:08:09',1,'2006-02-15 21:30:53'), +(1965,'2005-06-17 09:17:39',480,256,'2005-06-18 12:35:39',2,'2006-02-15 21:30:53'), +(1966,'2005-06-17 09:19:45',2085,6,'2005-06-20 11:19:45',1,'2006-02-15 21:30:53'), +(1967,'2005-06-17 09:19:52',3225,558,'2005-06-21 03:35:52',1,'2006-02-15 21:30:53'), +(1968,'2005-06-17 09:20:36',1139,246,'2005-06-18 11:06:36',2,'2006-02-15 21:30:53'), +(1969,'2005-06-17 09:22:22',4450,337,'2005-06-21 05:31:22',2,'2006-02-15 21:30:53'), +(1970,'2005-06-17 09:23:16',1358,303,'2005-06-22 09:40:16',2,'2006-02-15 21:30:53'), +(1971,'2005-06-17 09:23:59',2870,357,'2005-06-25 13:20:59',2,'2006-02-15 21:30:53'), +(1972,'2005-06-17 09:25:49',2758,526,'2005-06-24 09:59:49',2,'2006-02-15 21:30:53'), +(1973,'2005-06-17 09:26:15',3669,256,'2005-06-21 10:18:15',1,'2006-02-15 21:30:53'), +(1974,'2005-06-17 09:30:05',1979,111,'2005-06-21 12:10:05',1,'2006-02-15 21:30:53'), +(1975,'2005-06-17 09:32:10',2520,468,'2005-06-23 03:50:10',2,'2006-02-15 21:30:53'), +(1976,'2005-06-17 09:38:08',3631,184,'2005-06-23 07:23:08',2,'2006-02-15 21:30:53'), +(1977,'2005-06-17 09:38:22',2468,459,'2005-06-23 14:19:22',2,'2006-02-15 21:30:53'), +(1978,'2005-06-17 09:42:34',1590,278,'2005-06-20 09:13:34',2,'2006-02-15 21:30:53'), +(1979,'2005-06-17 09:45:30',3470,45,'2005-06-20 10:52:30',1,'2006-02-15 21:30:53'), +(1980,'2005-06-17 09:48:05',2985,328,'2005-06-23 14:43:05',1,'2006-02-15 21:30:53'), +(1981,'2005-06-17 10:03:34',3186,526,'2005-06-20 13:14:34',2,'2006-02-15 21:30:53'), +(1982,'2005-06-17 10:12:15',1091,566,'2005-06-20 13:56:15',1,'2006-02-15 21:30:53'), +(1983,'2005-06-17 10:22:13',1955,365,'2005-06-24 05:04:13',1,'2006-02-15 21:30:53'), +(1984,'2005-06-17 10:25:28',3417,380,'2005-06-23 08:18:28',2,'2006-02-15 21:30:53'), +(1985,'2005-06-17 10:31:37',87,411,'2005-06-22 11:17:37',1,'2006-02-15 21:30:53'), +(1986,'2005-06-17 10:34:59',2894,541,'2005-06-24 04:57:59',2,'2006-02-15 21:30:53'), +(1987,'2005-06-17 10:40:36',110,479,'2005-06-23 14:23:36',1,'2006-02-15 21:30:53'), +(1988,'2005-06-17 10:42:34',3054,261,'2005-06-25 11:47:34',2,'2006-02-15 21:30:53'), +(1989,'2005-06-17 10:47:24',634,35,'2005-06-19 05:12:24',1,'2006-02-15 21:30:53'), +(1990,'2005-06-17 10:48:44',1471,571,'2005-06-24 08:11:44',1,'2006-02-15 21:30:53'), +(1991,'2005-06-17 10:49:23',3963,105,'2005-06-25 10:48:23',1,'2006-02-15 21:30:53'), +(1992,'2005-06-17 10:58:53',636,233,'2005-06-19 08:42:53',2,'2006-02-15 21:30:53'), +(1993,'2005-06-17 10:59:24',168,234,'2005-06-23 07:30:24',2,'2006-02-15 21:30:53'), +(1994,'2005-06-17 11:07:06',2203,346,'2005-06-25 08:32:06',2,'2006-02-15 21:30:53'), +(1995,'2005-06-17 11:11:14',1866,10,'2005-06-26 16:37:14',1,'2006-02-15 21:30:53'), +(1996,'2005-06-17 11:17:45',3074,149,'2005-06-26 09:42:45',1,'2006-02-15 21:30:53'), +(1997,'2005-06-17 11:19:43',846,411,'2005-06-19 14:18:43',1,'2006-02-15 21:30:53'), +(1998,'2005-06-17 11:24:57',4365,562,'2005-06-26 09:48:57',1,'2006-02-15 21:30:53'), +(1999,'2005-06-17 11:30:08',3704,111,'2005-06-23 08:36:08',1,'2006-02-15 21:30:53'), +(2000,'2005-06-17 11:32:30',323,163,'2005-06-22 13:37:30',1,'2006-02-15 21:30:53'), +(2001,'2005-06-17 11:35:09',2069,260,'2005-06-21 14:52:09',2,'2006-02-15 21:30:53'), +(2002,'2005-06-17 11:39:58',2406,514,'2005-06-24 15:41:58',2,'2006-02-15 21:30:53'), +(2003,'2005-06-17 11:40:35',1581,515,'2005-06-19 08:30:35',2,'2006-02-15 21:30:53'), +(2004,'2005-06-17 11:43:38',1342,171,'2005-06-24 08:05:38',2,'2006-02-15 21:30:53'), +(2005,'2005-06-17 11:44:54',4177,234,'2005-06-19 10:53:54',1,'2006-02-15 21:30:53'), +(2006,'2005-06-17 11:47:03',992,215,'2005-06-19 13:47:03',2,'2006-02-15 21:30:53'), +(2007,'2005-06-17 11:47:17',1123,572,'2005-06-21 07:19:17',1,'2006-02-15 21:30:53'), +(2008,'2005-06-17 11:48:05',2081,570,'2005-06-25 13:16:05',1,'2006-02-15 21:30:53'), +(2009,'2005-06-17 11:48:31',1902,119,'2005-06-18 09:34:31',2,'2006-02-15 21:30:53'), +(2010,'2005-06-17 11:54:15',2845,329,'2005-06-21 05:55:15',1,'2006-02-15 21:30:53'), +(2011,'2005-06-17 11:56:09',734,350,'2005-06-24 06:47:09',2,'2006-02-15 21:30:53'), +(2012,'2005-06-17 11:57:15',3588,84,'2005-06-24 17:18:15',1,'2006-02-15 21:30:53'), +(2013,'2005-06-17 12:03:01',3256,165,'2005-06-24 10:04:01',1,'2006-02-15 21:30:53'), +(2014,'2005-06-17 12:03:28',2969,337,'2005-06-25 16:00:28',2,'2006-02-15 21:30:53'), +(2015,'2005-06-17 12:16:29',3776,484,'2005-06-18 14:40:29',2,'2006-02-15 21:30:53'), +(2016,'2005-06-17 12:18:36',4265,282,'2005-06-20 12:13:36',1,'2006-02-15 21:30:53'), +(2017,'2005-06-17 12:33:30',1434,516,'2005-06-19 10:08:30',2,'2006-02-15 21:30:53'), +(2018,'2005-06-17 12:35:58',1278,380,'2005-06-26 13:16:58',2,'2006-02-15 21:30:53'), +(2019,'2005-06-17 12:38:44',2314,528,'2005-06-23 17:38:44',2,'2006-02-15 21:30:53'), +(2020,'2005-06-17 12:39:50',1914,384,'2005-06-19 14:59:50',1,'2006-02-15 21:30:53'), +(2021,'2005-06-17 12:41:18',2852,319,'2005-06-23 17:17:18',2,'2006-02-15 21:30:53'), +(2022,'2005-06-17 12:44:39',3053,547,'2005-06-25 12:32:39',1,'2006-02-15 21:30:53'), +(2023,'2005-06-17 12:52:58',787,169,'2005-06-23 11:07:58',1,'2006-02-15 21:30:53'), +(2024,'2005-06-17 13:00:51',2566,329,'2005-06-22 07:03:51',1,'2006-02-15 21:30:53'), +(2025,'2005-06-17 13:04:00',1203,447,'2005-06-18 18:45:00',2,'2006-02-15 21:30:53'), +(2026,'2005-06-17 13:05:38',3681,491,'2005-06-21 17:19:38',1,'2006-02-15 21:30:53'), +(2027,'2005-06-17 13:06:56',4309,265,'2005-06-23 13:46:56',1,'2006-02-15 21:30:53'), +(2028,'2005-06-17 13:08:08',4451,155,'2005-06-23 10:54:08',1,'2006-02-15 21:30:53'), +(2029,'2005-06-17 13:10:59',914,512,'2005-06-19 18:15:59',1,'2006-02-15 21:30:53'), +(2030,'2005-06-17 13:13:27',4024,457,'2005-06-19 10:44:27',1,'2006-02-15 21:30:53'), +(2031,'2005-06-17 13:14:03',4275,570,'2005-06-25 10:06:03',2,'2006-02-15 21:30:53'), +(2032,'2005-06-17 13:24:07',425,316,'2005-06-18 18:18:07',1,'2006-02-15 21:30:53'), +(2033,'2005-06-17 13:24:43',58,90,'2005-06-20 12:34:43',1,'2006-02-15 21:30:53'), +(2034,'2005-06-17 13:27:16',1512,587,'2005-06-22 08:53:16',2,'2006-02-15 21:30:53'), +(2035,'2005-06-17 13:45:09',4371,158,'2005-06-26 15:30:09',2,'2006-02-15 21:30:53'), +(2036,'2005-06-17 13:46:52',100,486,'2005-06-18 15:42:52',2,'2006-02-15 21:30:53'), +(2037,'2005-06-17 13:54:20',2582,308,'2005-06-20 14:49:20',2,'2006-02-15 21:30:53'), +(2038,'2005-06-17 14:00:51',4231,138,'2005-06-19 11:54:51',2,'2006-02-15 21:30:53'), +(2039,'2005-06-17 14:03:43',1514,304,'2005-06-24 09:21:43',1,'2006-02-15 21:30:53'), +(2040,'2005-06-17 14:18:37',227,260,'2005-06-22 19:08:37',1,'2006-02-15 21:30:53'), +(2041,'2005-06-17 14:19:00',782,348,'2005-06-26 08:38:00',2,'2006-02-15 21:30:53'), +(2042,'2005-06-17 14:31:02',3102,84,'2005-06-18 14:43:02',1,'2006-02-15 21:30:53'), +(2043,'2005-06-17 14:31:12',2495,4,'2005-06-19 11:04:12',2,'2006-02-15 21:30:53'), +(2044,'2005-06-17 14:37:57',2418,484,'2005-06-22 17:15:57',2,'2006-02-15 21:30:53'), +(2045,'2005-06-17 14:38:11',561,391,'2005-06-26 13:44:11',2,'2006-02-15 21:30:53'), +(2046,'2005-06-17 14:39:50',872,374,'2005-06-24 16:02:50',1,'2006-02-15 21:30:53'), +(2047,'2005-06-17 14:40:58',2371,201,'2005-06-21 08:52:58',1,'2006-02-15 21:30:53'), +(2048,'2005-06-17 14:55:29',2055,454,'2005-06-23 16:29:29',2,'2006-02-15 21:30:53'), +(2049,'2005-06-17 14:58:36',1053,182,'2005-06-22 14:53:36',2,'2006-02-15 21:30:53'), +(2050,'2005-06-17 15:07:30',1963,549,'2005-06-18 14:43:30',1,'2006-02-15 21:30:53'), +(2051,'2005-06-17 15:10:16',2366,191,'2005-06-19 20:45:16',1,'2006-02-15 21:30:53'), +(2052,'2005-06-17 15:14:43',1686,172,'2005-06-21 11:08:43',1,'2006-02-15 21:30:53'), +(2053,'2005-06-17 15:19:34',4279,521,'2005-06-19 10:06:34',2,'2006-02-15 21:30:53'), +(2054,'2005-06-17 15:26:37',1588,295,'2005-06-26 14:22:37',1,'2006-02-15 21:30:53'), +(2055,'2005-06-17 15:27:03',1399,593,'2005-06-25 13:44:03',1,'2006-02-15 21:30:53'), +(2056,'2005-06-17 15:27:33',229,42,'2005-06-20 13:04:33',2,'2006-02-15 21:30:53'), +(2057,'2005-06-17 15:31:58',2803,190,'2005-06-25 09:39:58',1,'2006-02-15 21:30:53'), +(2058,'2005-06-17 15:34:41',1324,57,'2005-06-25 14:50:41',1,'2006-02-15 21:30:53'), +(2059,'2005-06-17 15:36:12',739,114,'2005-06-18 19:01:12',2,'2006-02-15 21:30:53'), +(2060,'2005-06-17 15:42:42',1523,64,'2005-06-22 16:39:42',1,'2006-02-15 21:30:53'), +(2061,'2005-06-17 15:47:00',4575,108,'2005-06-24 16:36:00',2,'2006-02-15 21:30:53'), +(2062,'2005-06-17 15:56:43',1749,55,'2005-06-20 21:37:43',2,'2006-02-15 21:30:53'), +(2063,'2005-06-17 15:56:53',4323,5,'2005-06-21 14:19:53',1,'2006-02-15 21:30:53'), +(2064,'2005-06-17 15:57:56',1970,67,'2005-06-23 21:04:56',2,'2006-02-15 21:30:53'), +(2065,'2005-06-17 16:03:46',844,266,'2005-06-22 16:41:46',2,'2006-02-15 21:30:53'), +(2066,'2005-06-17 16:07:08',2561,248,'2005-06-24 15:20:08',2,'2006-02-15 21:30:53'), +(2067,'2005-06-17 16:11:08',1711,297,'2005-06-22 13:01:08',2,'2006-02-15 21:30:53'), +(2068,'2005-06-17 16:11:46',4252,387,'2005-06-20 11:28:46',1,'2006-02-15 21:30:53'), +(2069,'2005-06-17 16:19:39',2746,551,'2005-06-26 16:48:39',1,'2006-02-15 21:30:53'), +(2070,'2005-06-17 16:27:51',2609,24,'2005-06-20 20:46:51',1,'2006-02-15 21:30:53'), +(2071,'2005-06-17 16:33:17',2867,479,'2005-06-23 21:51:17',1,'2006-02-15 21:30:53'), +(2072,'2005-06-17 16:33:32',86,261,'2005-06-23 13:22:32',1,'2006-02-15 21:30:53'), +(2073,'2005-06-17 16:33:59',3530,410,'2005-06-19 11:57:59',1,'2006-02-15 21:30:53'), +(2074,'2005-06-17 16:40:03',71,495,'2005-06-20 21:34:03',1,'2006-02-15 21:30:53'), +(2075,'2005-06-17 16:40:33',2415,459,'2005-06-19 13:55:33',2,'2006-02-15 21:30:53'), +(2076,'2005-06-17 16:43:47',2242,217,'2005-06-24 11:12:47',1,'2006-02-15 21:30:53'), +(2077,'2005-06-17 16:46:11',4478,113,'2005-06-19 15:10:11',1,'2006-02-15 21:30:53'), +(2078,'2005-06-17 16:48:55',2021,278,'2005-06-19 18:01:55',1,'2006-02-15 21:30:53'), +(2079,'2005-06-17 16:49:45',3853,465,'2005-06-18 18:10:45',1,'2006-02-15 21:30:53'), +(2080,'2005-06-17 16:59:40',1231,476,'2005-06-21 11:28:40',2,'2006-02-15 21:30:53'), +(2081,'2005-06-17 17:05:02',917,253,'2005-06-26 20:26:02',1,'2006-02-15 21:30:53'), +(2082,'2005-06-17 17:13:32',434,254,'2005-06-19 16:16:32',1,'2006-02-15 21:30:53'), +(2083,'2005-06-17 17:14:00',2423,97,'2005-06-18 18:31:00',2,'2006-02-15 21:30:53'), +(2084,'2005-06-17 17:17:19',428,92,'2005-06-22 14:57:19',1,'2006-02-15 21:30:53'), +(2085,'2005-06-17 17:30:56',2275,214,'2005-06-23 12:13:56',1,'2006-02-15 21:30:53'), +(2086,'2005-06-17 17:32:07',898,326,'2005-06-21 20:19:07',2,'2006-02-15 21:30:53'), +(2087,'2005-06-17 17:35:10',466,398,'2005-06-26 13:52:10',1,'2006-02-15 21:30:53'), +(2088,'2005-06-17 17:35:30',506,310,'2005-06-23 20:13:30',2,'2006-02-15 21:30:53'), +(2089,'2005-06-17 17:45:09',4030,156,'2005-06-25 16:41:09',1,'2006-02-15 21:30:53'), +(2090,'2005-06-17 18:06:14',17,197,'2005-06-22 23:52:14',1,'2006-02-15 21:30:53'), +(2091,'2005-06-17 18:09:04',4033,260,'2005-06-26 12:11:04',1,'2006-02-15 21:30:53'), +(2092,'2005-06-17 18:12:16',4427,556,'2005-06-25 15:06:16',2,'2006-02-15 21:30:53'), +(2093,'2005-06-17 18:14:08',814,26,'2005-06-26 18:10:08',1,'2006-02-15 21:30:53'), +(2094,'2005-06-17 18:18:56',2205,308,'2005-06-18 19:36:56',1,'2006-02-15 21:30:53'), +(2095,'2005-06-17 18:21:35',1907,8,'2005-06-23 23:49:35',2,'2006-02-15 21:30:53'), +(2096,'2005-06-17 18:33:04',1069,431,'2005-06-21 17:29:04',2,'2006-02-15 21:30:53'), +(2097,'2005-06-17 18:40:04',569,439,'2005-06-23 13:49:04',1,'2006-02-15 21:30:53'), +(2098,'2005-06-17 18:42:09',3951,274,'2005-06-19 20:40:09',1,'2006-02-15 21:30:53'), +(2099,'2005-06-17 18:47:26',3660,146,'2005-06-24 22:31:26',2,'2006-02-15 21:30:53'), +(2100,'2005-06-17 18:53:21',2267,387,'2005-06-19 21:49:21',2,'2006-02-15 21:30:53'), +(2101,'2005-06-17 18:57:02',2137,581,'2005-06-20 15:38:02',2,'2006-02-15 21:30:53'), +(2102,'2005-06-17 19:05:22',2316,486,'2005-06-23 23:21:22',2,'2006-02-15 21:30:53'), +(2103,'2005-06-17 19:13:10',1469,456,'2005-06-21 21:32:10',2,'2006-02-15 21:30:53'), +(2104,'2005-06-17 19:14:30',3084,136,'2005-06-19 16:26:30',1,'2006-02-15 21:30:53'), +(2105,'2005-06-17 19:15:45',4090,57,'2005-06-20 16:00:45',1,'2006-02-15 21:30:53'), +(2106,'2005-06-17 19:29:03',643,66,'2005-06-23 18:17:03',2,'2006-02-15 21:30:53'), +(2107,'2005-06-17 19:31:16',1270,104,'2005-06-18 23:33:16',1,'2006-02-15 21:30:53'), +(2108,'2005-06-17 19:35:26',1395,503,'2005-06-25 15:45:26',1,'2006-02-15 21:30:53'), +(2109,'2005-06-17 19:41:42',2292,493,'2005-06-25 17:03:42',2,'2006-02-15 21:30:53'), +(2110,'2005-06-17 19:45:49',3592,163,'2005-06-26 18:59:49',2,'2006-02-15 21:30:53'), +(2111,'2005-06-17 19:47:21',2108,76,'2005-06-19 22:46:21',2,'2006-02-15 21:30:53'), +(2112,'2005-06-17 19:52:42',1629,18,'2005-06-25 00:00:42',2,'2006-02-15 21:30:53'), +(2113,'2005-06-17 19:57:46',1509,406,'2005-06-24 00:22:46',1,'2006-02-15 21:30:53'), +(2114,'2005-06-17 20:00:25',3541,358,'2005-06-23 18:51:25',1,'2006-02-15 21:30:53'), +(2115,'2005-06-17 20:02:16',3448,270,'2005-06-25 16:56:16',2,'2006-02-15 21:30:53'), +(2116,'2005-06-17 20:16:12',2373,24,'2005-06-18 17:03:12',2,'2006-02-15 21:30:53'), +(2117,'2005-06-17 20:24:00',2,170,'2005-06-23 17:45:00',2,'2006-02-15 21:30:53'), +(2118,'2005-06-17 20:28:29',1261,103,'2005-06-23 22:47:29',1,'2006-02-15 21:30:53'), +(2119,'2005-06-17 20:34:42',2104,561,'2005-06-22 00:05:42',1,'2006-02-15 21:30:53'), +(2120,'2005-06-17 20:36:50',1498,182,'2005-06-27 01:18:50',2,'2006-02-15 21:30:53'), +(2121,'2005-06-17 20:38:54',141,467,'2005-06-22 23:06:54',2,'2006-02-15 21:30:53'), +(2122,'2005-06-17 20:48:27',2932,245,'2005-06-23 00:58:27',2,'2006-02-15 21:30:53'), +(2123,'2005-06-17 20:48:30',2497,545,'2005-06-18 19:17:30',2,'2006-02-15 21:30:53'), +(2124,'2005-06-17 20:49:14',1273,178,'2005-06-23 17:44:14',1,'2006-02-15 21:30:53'), +(2125,'2005-06-17 20:53:42',4303,473,'2005-06-19 01:53:42',2,'2006-02-15 21:30:53'), +(2126,'2005-06-17 20:54:36',4276,263,'2005-06-27 02:16:36',1,'2006-02-15 21:30:53'), +(2127,'2005-06-17 20:54:48',3757,187,'2005-06-18 16:28:48',2,'2006-02-15 21:30:53'), +(2128,'2005-06-17 20:54:58',352,2,'2005-06-24 00:41:58',2,'2006-02-15 21:30:53'), +(2129,'2005-06-17 20:58:32',1930,249,'2005-06-23 22:22:32',1,'2006-02-15 21:30:53'), +(2130,'2005-06-17 21:00:44',1369,413,'2005-06-26 00:05:44',2,'2006-02-15 21:30:53'), +(2131,'2005-06-17 21:02:25',4424,85,'2005-06-25 18:45:25',1,'2006-02-15 21:30:53'), +(2132,'2005-06-17 21:05:06',2636,186,'2005-06-20 18:10:06',1,'2006-02-15 21:30:53'), +(2133,'2005-06-17 21:10:05',932,268,'2005-06-23 22:41:05',1,'2006-02-15 21:30:53'), +(2134,'2005-06-17 21:13:44',1699,378,'2005-06-26 16:28:44',2,'2006-02-15 21:30:53'), +(2135,'2005-06-17 21:14:02',4091,39,'2005-06-19 00:59:02',1,'2006-02-15 21:30:53'), +(2136,'2005-06-17 21:16:41',2651,20,'2005-06-24 22:42:41',2,'2006-02-15 21:30:53'), +(2137,'2005-06-17 21:18:28',1158,581,'2005-06-20 21:05:28',1,'2006-02-15 21:30:53'), +(2138,'2005-06-17 21:28:14',512,254,'2005-06-22 01:16:14',2,'2006-02-15 21:30:53'), +(2139,'2005-06-17 21:29:34',807,236,'2005-06-26 21:05:34',1,'2006-02-15 21:30:53'), +(2140,'2005-06-17 21:40:29',2395,56,'2005-06-19 00:42:29',1,'2006-02-15 21:30:53'), +(2141,'2005-06-17 21:41:34',2176,86,'2005-06-19 00:15:34',1,'2006-02-15 21:30:53'), +(2142,'2005-06-17 21:55:43',1787,253,'2005-06-26 19:41:43',2,'2006-02-15 21:30:53'), +(2143,'2005-06-17 21:58:13',1257,507,'2005-06-19 23:59:13',2,'2006-02-15 21:30:53'), +(2144,'2005-06-17 22:05:40',3303,46,'2005-06-21 02:53:40',1,'2006-02-15 21:30:53'), +(2145,'2005-06-17 22:10:36',238,388,'2005-06-18 21:07:36',2,'2006-02-15 21:30:53'), +(2146,'2005-06-17 22:26:23',326,456,'2005-06-26 17:10:23',1,'2006-02-15 21:30:53'), +(2147,'2005-06-17 22:28:13',2752,279,'2005-06-22 20:50:13',1,'2006-02-15 21:30:53'), +(2148,'2005-06-17 22:44:35',315,338,'2005-06-26 19:43:35',1,'2006-02-15 21:30:53'), +(2149,'2005-06-17 22:50:00',3365,333,'2005-06-26 18:40:00',1,'2006-02-15 21:30:53'), +(2150,'2005-06-17 22:50:36',1910,406,'2005-06-21 19:33:36',1,'2006-02-15 21:30:53'), +(2151,'2005-06-17 22:52:37',407,329,'2005-06-20 22:00:37',1,'2006-02-15 21:30:53'), +(2152,'2005-06-17 22:53:27',2665,307,'2005-06-23 19:19:27',1,'2006-02-15 21:30:53'), +(2153,'2005-06-17 22:58:04',2440,357,'2005-06-24 19:38:04',2,'2006-02-15 21:30:53'), +(2154,'2005-06-17 22:59:42',1655,30,'2005-06-24 04:11:42',1,'2006-02-15 21:30:53'), +(2155,'2005-06-17 23:07:29',3640,227,'2005-06-25 03:23:29',2,'2006-02-15 21:30:53'), +(2156,'2005-06-17 23:08:12',623,237,'2005-06-22 19:44:12',2,'2006-02-15 21:30:53'), +(2157,'2005-06-17 23:30:52',1619,201,'2005-06-24 01:56:52',2,'2006-02-15 21:30:53'), +(2158,'2005-06-17 23:36:27',243,530,'2005-06-19 19:25:27',2,'2006-02-15 21:30:53'), +(2159,'2005-06-17 23:37:29',3095,465,'2005-06-25 00:18:29',2,'2006-02-15 21:30:53'), +(2160,'2005-06-17 23:39:11',1644,32,'2005-06-22 20:04:11',1,'2006-02-15 21:30:53'), +(2161,'2005-06-17 23:39:50',3149,75,'2005-06-26 23:28:50',2,'2006-02-15 21:30:53'), +(2162,'2005-06-17 23:45:47',1790,277,'2005-06-21 21:03:47',1,'2006-02-15 21:30:53'), +(2163,'2005-06-17 23:46:16',2600,130,'2005-06-22 22:48:16',2,'2006-02-15 21:30:53'), +(2164,'2005-06-17 23:46:21',3442,227,'2005-06-24 19:10:21',2,'2006-02-15 21:30:53'), +(2165,'2005-06-17 23:51:10',2392,471,'2005-06-21 23:54:10',1,'2006-02-15 21:30:53'), +(2166,'2005-06-17 23:51:21',4343,305,'2005-06-27 01:06:21',2,'2006-02-15 21:30:53'), +(2167,'2005-06-17 23:51:28',3796,307,'2005-06-21 00:43:28',2,'2006-02-15 21:30:53'), +(2168,'2005-06-17 23:53:24',802,308,'2005-06-20 01:11:24',1,'2006-02-15 21:30:53'), +(2169,'2005-06-17 23:57:23',785,120,'2005-06-19 20:14:23',2,'2006-02-15 21:30:53'), +(2170,'2005-06-17 23:57:34',3989,42,'2005-06-22 03:37:34',2,'2006-02-15 21:30:53'), +(2171,'2005-06-18 00:06:04',1768,147,'2005-06-24 18:09:04',2,'2006-02-15 21:30:53'), +(2172,'2005-06-18 00:06:16',2912,457,'2005-06-26 00:50:16',1,'2006-02-15 21:30:53'), +(2173,'2005-06-18 00:08:20',995,65,'2005-06-25 05:30:20',1,'2006-02-15 21:30:53'), +(2174,'2005-06-18 00:09:01',3279,520,'2005-06-25 23:14:01',1,'2006-02-15 21:30:53'), +(2175,'2005-06-18 00:17:58',4038,17,'2005-06-22 23:18:58',2,'2006-02-15 21:30:53'), +(2176,'2005-06-18 00:29:51',4201,282,'2005-06-21 01:41:51',1,'2006-02-15 21:30:53'), +(2177,'2005-06-18 00:34:45',492,340,'2005-06-26 18:40:45',1,'2006-02-15 21:30:53'), +(2178,'2005-06-18 00:38:35',2950,260,'2005-06-21 02:56:35',1,'2006-02-15 21:30:53'), +(2179,'2005-06-18 00:41:36',4334,338,'2005-06-19 02:17:36',1,'2006-02-15 21:30:53'), +(2180,'2005-06-18 00:47:43',3564,497,'2005-06-25 04:12:43',2,'2006-02-15 21:30:53'), +(2181,'2005-06-18 00:48:31',3481,176,'2005-06-25 06:43:31',2,'2006-02-15 21:30:53'), +(2182,'2005-06-18 00:56:18',3494,454,'2005-06-26 20:01:18',1,'2006-02-15 21:30:53'), +(2183,'2005-06-18 01:06:01',1776,340,'2005-06-22 01:20:01',1,'2006-02-15 21:30:53'), +(2184,'2005-06-18 01:10:36',3468,537,'2005-06-21 05:59:36',2,'2006-02-15 21:30:53'), +(2185,'2005-06-18 01:12:22',4326,198,'2005-06-20 20:41:22',1,'2006-02-15 21:30:53'), +(2186,'2005-06-18 01:15:27',2050,204,'2005-06-21 06:16:27',1,'2006-02-15 21:30:53'), +(2187,'2005-06-18 01:17:27',1385,477,'2005-06-20 22:18:27',1,'2006-02-15 21:30:53'), +(2188,'2005-06-18 01:19:04',712,183,'2005-06-25 03:59:04',2,'2006-02-15 21:30:53'), +(2189,'2005-06-18 01:20:26',249,500,'2005-06-25 00:30:26',1,'2006-02-15 21:30:53'), +(2190,'2005-06-18 01:29:51',4398,342,'2005-06-26 04:31:51',2,'2006-02-15 21:30:53'), +(2191,'2005-06-18 01:33:09',3369,58,'2005-06-19 20:18:09',1,'2006-02-15 21:30:53'), +(2192,'2005-06-18 01:35:47',1886,456,'2005-06-23 23:38:47',2,'2006-02-15 21:30:53'), +(2193,'2005-06-18 01:38:45',1013,112,'2005-06-22 19:51:45',1,'2006-02-15 21:30:53'), +(2194,'2005-06-18 01:41:37',1827,149,'2005-06-25 04:27:37',1,'2006-02-15 21:30:53'), +(2195,'2005-06-18 01:44:46',2247,286,'2005-06-25 20:50:46',1,'2006-02-15 21:30:53'), +(2196,'2005-06-18 01:47:07',1925,240,'2005-06-26 03:18:07',2,'2006-02-15 21:30:53'), +(2197,'2005-06-18 01:50:27',3350,103,'2005-06-19 01:31:27',2,'2006-02-15 21:30:53'), +(2198,'2005-06-18 01:51:22',1983,109,'2005-06-26 06:57:22',2,'2006-02-15 21:30:53'), +(2199,'2005-06-18 01:57:56',99,171,'2005-06-23 20:34:56',2,'2006-02-15 21:30:53'), +(2200,'2005-06-18 01:59:16',1085,229,'2005-06-26 23:25:16',2,'2006-02-15 21:30:53'), +(2201,'2005-06-18 02:08:27',1864,489,'2005-06-23 01:40:27',1,'2006-02-15 21:30:53'), +(2202,'2005-06-18 02:09:24',815,297,'2005-06-26 07:17:24',2,'2006-02-15 21:30:53'), +(2203,'2005-06-18 02:10:42',1347,46,'2005-06-22 06:25:42',2,'2006-02-15 21:30:53'), +(2204,'2005-06-18 02:11:38',1137,426,'2005-06-24 00:28:38',1,'2006-02-15 21:30:53'), +(2205,'2005-06-18 02:14:34',1245,593,'2005-06-25 05:11:34',1,'2006-02-15 21:30:53'), +(2206,'2005-06-18 02:14:45',3651,438,'2005-06-24 23:20:45',2,'2006-02-15 21:30:53'), +(2207,'2005-06-18 02:19:21',182,78,'2005-06-24 02:25:21',2,'2006-02-15 21:30:53'), +(2208,'2005-06-18 02:22:07',2345,132,'2005-06-23 07:24:07',2,'2006-02-15 21:30:53'), +(2209,'2005-06-18 02:24:01',2441,13,'2005-06-22 04:13:01',2,'2006-02-15 21:30:53'), +(2210,'2005-06-18 02:27:01',219,108,'2005-06-21 00:45:01',1,'2006-02-15 21:30:53'), +(2211,'2005-06-18 02:29:10',4114,166,'2005-06-22 02:02:10',1,'2006-02-15 21:30:53'), +(2212,'2005-06-18 02:36:10',2458,336,'2005-06-19 21:21:10',1,'2006-02-15 21:30:53'), +(2213,'2005-06-18 02:36:47',949,98,'2005-06-23 05:02:47',1,'2006-02-15 21:30:53'), +(2214,'2005-06-18 02:44:37',2430,366,'2005-06-18 23:37:37',2,'2006-02-15 21:30:53'), +(2215,'2005-06-18 02:48:21',2060,239,'2005-06-22 01:03:21',2,'2006-02-15 21:30:53'), +(2216,'2005-06-18 03:08:17',1428,320,'2005-06-19 08:13:17',1,'2006-02-15 21:30:53'), +(2217,'2005-06-18 03:12:29',2260,118,'2005-06-20 06:08:29',1,'2006-02-15 21:30:53'), +(2218,'2005-06-18 03:13:13',3577,176,'2005-06-18 21:16:13',1,'2006-02-15 21:30:53'), +(2219,'2005-06-18 03:16:54',1881,393,'2005-06-22 01:29:54',1,'2006-02-15 21:30:53'), +(2220,'2005-06-18 03:21:36',320,587,'2005-06-21 07:45:36',2,'2006-02-15 21:30:53'), +(2221,'2005-06-18 03:24:56',3905,156,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'), +(2222,'2005-06-18 03:26:23',3834,10,'2005-06-26 08:50:23',2,'2006-02-15 21:30:53'), +(2223,'2005-06-18 03:27:03',4068,303,'2005-06-27 09:19:03',2,'2006-02-15 21:30:53'), +(2224,'2005-06-18 03:33:58',1336,153,'2005-06-18 22:10:58',1,'2006-02-15 21:30:53'), +(2225,'2005-06-18 03:35:40',2829,503,'2005-06-23 03:05:40',1,'2006-02-15 21:30:53'), +(2226,'2005-06-18 03:39:56',3487,225,'2005-06-24 07:26:56',2,'2006-02-15 21:30:53'), +(2227,'2005-06-18 03:43:23',3623,200,'2005-06-19 05:55:23',2,'2006-02-15 21:30:53'), +(2228,'2005-06-18 03:44:50',490,383,'2005-06-23 00:28:50',1,'2006-02-15 21:30:53'), +(2229,'2005-06-18 03:50:18',2840,35,'2005-06-26 07:16:18',2,'2006-02-15 21:30:53'), +(2230,'2005-06-18 03:50:49',833,256,'2005-06-25 01:12:49',2,'2006-02-15 21:30:53'), +(2231,'2005-06-18 03:52:14',2280,35,'2005-06-23 06:52:14',1,'2006-02-15 21:30:53'), +(2232,'2005-06-18 03:54:31',2463,52,'2005-06-22 07:29:31',1,'2006-02-15 21:30:53'), +(2233,'2005-06-18 03:57:36',3063,31,'2005-06-21 09:42:36',2,'2006-02-15 21:30:53'), +(2234,'2005-06-18 04:01:28',234,182,'2005-06-24 04:55:28',2,'2006-02-15 21:30:53'), +(2235,'2005-06-18 04:08:50',3463,21,'2005-06-27 07:58:50',1,'2006-02-15 21:30:53'), +(2236,'2005-06-18 04:12:33',4001,375,'2005-06-23 04:07:33',1,'2006-02-15 21:30:53'), +(2237,'2005-06-18 04:17:44',1821,205,'2005-06-27 09:08:44',1,'2006-02-15 21:30:53'), +(2238,'2005-06-18 04:22:06',2859,251,'2005-06-27 03:29:06',2,'2006-02-15 21:30:53'), +(2239,'2005-06-18 04:23:54',4419,437,'2005-06-26 00:12:54',2,'2006-02-15 21:30:53'), +(2240,'2005-06-18 04:28:27',1409,122,'2005-06-22 07:48:27',2,'2006-02-15 21:30:53'), +(2241,'2005-06-18 04:31:41',921,406,'2005-06-24 22:34:41',2,'2006-02-15 21:30:53'), +(2242,'2005-06-18 04:32:28',1995,146,'2005-06-24 03:26:28',2,'2006-02-15 21:30:53'), +(2243,'2005-06-18 04:33:03',1254,328,'2005-06-23 04:14:03',2,'2006-02-15 21:30:53'), +(2244,'2005-06-18 04:46:33',3629,233,'2005-06-20 04:28:33',1,'2006-02-15 21:30:53'), +(2245,'2005-06-18 04:52:59',1496,194,'2005-06-24 05:07:59',2,'2006-02-15 21:30:53'), +(2246,'2005-06-18 04:54:29',4287,414,'2005-06-22 09:14:29',1,'2006-02-15 21:30:53'), +(2248,'2005-06-18 04:59:48',1999,446,'2005-06-19 08:51:48',2,'2006-02-15 21:30:53'), +(2249,'2005-06-18 05:03:08',117,285,'2005-06-26 05:43:08',2,'2006-02-15 21:30:53'), +(2250,'2005-06-18 05:03:36',4042,7,'2005-06-22 02:25:36',2,'2006-02-15 21:30:53'), +(2251,'2005-06-18 05:05:08',1458,143,'2005-06-23 08:34:08',1,'2006-02-15 21:30:53'), +(2252,'2005-06-18 05:05:18',1987,383,'2005-06-21 08:19:18',1,'2006-02-15 21:30:53'), +(2253,'2005-06-18 05:11:43',3719,122,'2005-06-25 03:30:43',2,'2006-02-15 21:30:53'), +(2254,'2005-06-18 05:15:14',1084,281,'2005-06-27 04:10:14',2,'2006-02-15 21:30:53'), +(2255,'2005-06-18 05:21:12',24,410,'2005-06-26 09:19:12',1,'2006-02-15 21:30:53'), +(2256,'2005-06-18 05:21:56',1863,93,'2005-06-27 02:06:56',2,'2006-02-15 21:30:53'), +(2257,'2005-06-18 05:29:52',2846,34,'2005-06-22 00:19:52',1,'2006-02-15 21:30:53'), +(2258,'2005-06-18 05:30:36',4573,292,'2005-06-24 09:09:36',1,'2006-02-15 21:30:53'), +(2259,'2005-06-18 05:37:45',4103,491,'2005-06-21 01:51:45',1,'2006-02-15 21:30:53'), +(2260,'2005-06-18 05:38:36',2773,297,'2005-06-20 08:08:36',1,'2006-02-15 21:30:53'), +(2261,'2005-06-18 05:46:15',1763,570,'2005-06-24 05:06:15',1,'2006-02-15 21:30:53'), +(2262,'2005-06-18 05:49:46',4172,218,'2005-06-20 00:25:46',2,'2006-02-15 21:30:53'), +(2263,'2005-06-18 05:57:47',3259,452,'2005-06-20 06:13:47',1,'2006-02-15 21:30:53'), +(2264,'2005-06-18 05:58:45',150,240,'2005-06-19 00:57:45',1,'2006-02-15 21:30:53'), +(2265,'2005-06-18 06:03:27',3069,267,'2005-06-20 01:16:27',1,'2006-02-15 21:30:53'), +(2266,'2005-06-18 06:05:02',2596,452,'2005-06-20 06:54:02',1,'2006-02-15 21:30:53'), +(2267,'2005-06-18 06:10:23',2086,218,'2005-06-20 00:39:23',2,'2006-02-15 21:30:53'), +(2268,'2005-06-18 06:13:41',4380,21,'2005-06-22 08:53:41',2,'2006-02-15 21:30:53'), +(2269,'2005-06-18 06:20:54',3088,431,'2005-06-25 04:51:54',2,'2006-02-15 21:30:53'), +(2270,'2005-06-18 06:29:01',3447,588,'2005-06-26 07:21:01',2,'2006-02-15 21:30:53'), +(2271,'2005-06-18 06:29:52',2416,145,'2005-06-21 09:46:52',2,'2006-02-15 21:30:53'), +(2272,'2005-06-18 06:29:53',1364,599,'2005-06-23 10:58:53',1,'2006-02-15 21:30:53'), +(2273,'2005-06-18 06:30:02',4456,327,'2005-06-20 07:07:02',1,'2006-02-15 21:30:53'), +(2274,'2005-06-18 06:31:15',3021,347,'2005-06-21 01:24:15',2,'2006-02-15 21:30:53'), +(2275,'2005-06-18 06:31:29',2805,354,'2005-06-24 10:04:29',2,'2006-02-15 21:30:53'), +(2276,'2005-06-18 06:33:48',1145,594,'2005-06-25 00:50:48',2,'2006-02-15 21:30:53'), +(2277,'2005-06-18 06:35:03',3770,224,'2005-06-19 01:26:03',1,'2006-02-15 21:30:53'), +(2278,'2005-06-18 06:37:57',1166,450,'2005-06-22 10:57:57',1,'2006-02-15 21:30:53'), +(2279,'2005-06-18 06:38:22',1953,554,'2005-06-27 07:16:22',1,'2006-02-15 21:30:53'), +(2280,'2005-06-18 06:46:54',4568,548,'2005-06-26 09:48:54',2,'2006-02-15 21:30:53'), +(2281,'2005-06-18 06:47:29',4212,431,'2005-06-20 10:27:29',2,'2006-02-15 21:30:53'), +(2282,'2005-06-18 06:48:23',4388,113,'2005-06-24 11:04:23',2,'2006-02-15 21:30:53'), +(2283,'2005-06-18 06:56:06',2056,507,'2005-06-19 05:11:06',2,'2006-02-15 21:30:53'), +(2284,'2005-06-18 06:59:51',2682,228,'2005-06-24 04:58:51',2,'2006-02-15 21:30:53'), +(2285,'2005-06-18 07:00:54',755,447,'2005-06-25 08:58:54',2,'2006-02-15 21:30:53'), +(2286,'2005-06-18 07:02:32',618,287,'2005-06-27 12:33:32',1,'2006-02-15 21:30:53'), +(2287,'2005-06-18 07:04:36',1473,317,'2005-06-27 03:00:36',2,'2006-02-15 21:30:53'), +(2288,'2005-06-18 07:23:17',877,247,'2005-06-26 07:44:17',2,'2006-02-15 21:30:53'), +(2289,'2005-06-18 07:29:43',2030,392,'2005-06-24 11:16:43',2,'2006-02-15 21:30:53'), +(2290,'2005-06-18 07:34:37',200,513,'2005-06-26 11:45:37',1,'2006-02-15 21:30:53'), +(2291,'2005-06-18 07:36:46',3949,436,'2005-06-26 04:57:46',2,'2006-02-15 21:30:53'), +(2292,'2005-06-18 07:37:48',173,130,'2005-06-20 02:45:48',2,'2006-02-15 21:30:53'), +(2293,'2005-06-18 07:45:03',3209,178,'2005-06-24 08:12:03',1,'2006-02-15 21:30:53'), +(2294,'2005-06-18 07:46:34',2096,72,'2005-06-22 12:34:34',2,'2006-02-15 21:30:53'), +(2295,'2005-06-18 07:56:18',3250,106,'2005-06-21 07:10:18',1,'2006-02-15 21:30:53'), +(2296,'2005-06-18 08:10:42',4558,481,'2005-06-20 12:26:42',2,'2006-02-15 21:30:53'), +(2297,'2005-06-18 08:17:41',2262,111,'2005-06-26 05:08:41',2,'2006-02-15 21:30:53'), +(2298,'2005-06-18 08:18:29',1227,497,'2005-06-24 11:51:29',1,'2006-02-15 21:30:53'), +(2299,'2005-06-18 08:18:52',4339,28,'2005-06-26 11:48:52',1,'2006-02-15 21:30:53'), +(2300,'2005-06-18 08:22:34',1617,291,'2005-06-24 04:51:34',2,'2006-02-15 21:30:53'), +(2301,'2005-06-18 08:24:03',869,273,'2005-06-25 10:31:03',2,'2006-02-15 21:30:53'), +(2302,'2005-06-18 08:27:33',1852,42,'2005-06-22 02:46:33',2,'2006-02-15 21:30:53'), +(2303,'2005-06-18 08:27:59',1524,329,'2005-06-22 10:58:59',1,'2006-02-15 21:30:53'), +(2304,'2005-06-18 08:30:15',3543,327,'2005-06-23 06:17:15',1,'2006-02-15 21:30:53'), +(2305,'2005-06-18 08:31:18',622,149,'2005-06-24 06:18:18',2,'2006-02-15 21:30:53'), +(2306,'2005-06-18 08:33:23',208,477,'2005-06-27 10:01:23',2,'2006-02-15 21:30:53'), +(2307,'2005-06-18 08:34:59',4576,47,'2005-06-23 04:42:59',1,'2006-02-15 21:30:53'), +(2308,'2005-06-18 08:41:48',197,1,'2005-06-22 03:36:48',2,'2006-02-15 21:30:53'), +(2309,'2005-06-18 08:43:24',611,576,'2005-06-20 03:56:24',1,'2006-02-15 21:30:53'), +(2310,'2005-06-18 08:45:59',2590,409,'2005-06-26 05:06:59',2,'2006-02-15 21:30:53'), +(2311,'2005-06-18 08:51:29',4506,236,'2005-06-25 07:51:29',1,'2006-02-15 21:30:53'), +(2312,'2005-06-18 08:55:46',402,184,'2005-06-24 04:34:46',2,'2006-02-15 21:30:53'), +(2313,'2005-06-18 08:56:45',3134,379,'2005-06-26 10:30:45',2,'2006-02-15 21:30:53'), +(2314,'2005-06-18 09:03:19',2157,160,'2005-06-19 12:14:19',1,'2006-02-15 21:30:53'), +(2315,'2005-06-18 09:03:39',2766,372,'2005-06-22 11:18:39',1,'2006-02-15 21:30:53'), +(2316,'2005-06-18 09:04:59',372,289,'2005-06-20 09:39:59',2,'2006-02-15 21:30:53'), +(2317,'2005-06-18 09:12:18',1602,326,'2005-06-21 05:50:18',2,'2006-02-15 21:30:53'), +(2318,'2005-06-18 09:13:54',2328,383,'2005-06-23 07:19:54',1,'2006-02-15 21:30:53'), +(2319,'2005-06-18 09:24:22',1521,393,'2005-06-26 14:12:22',2,'2006-02-15 21:30:53'), +(2320,'2005-06-18 09:24:50',597,552,'2005-06-24 07:59:50',1,'2006-02-15 21:30:53'), +(2321,'2005-06-18 09:42:42',1160,565,'2005-06-25 14:28:42',1,'2006-02-15 21:30:53'), +(2322,'2005-06-18 09:44:21',1893,213,'2005-06-25 09:29:21',1,'2006-02-15 21:30:53'), +(2323,'2005-06-18 09:55:02',207,54,'2005-06-23 07:19:02',1,'2006-02-15 21:30:53'), +(2324,'2005-06-18 10:00:33',2987,268,'2005-06-23 14:10:33',1,'2006-02-15 21:30:53'), +(2325,'2005-06-18 10:08:07',752,406,'2005-06-21 15:07:07',1,'2006-02-15 21:30:53'), +(2326,'2005-06-18 10:14:22',3829,174,'2005-06-24 07:01:22',2,'2006-02-15 21:30:53'), +(2327,'2005-06-18 10:16:40',1351,571,'2005-06-20 15:06:40',1,'2006-02-15 21:30:53'), +(2328,'2005-06-18 10:17:21',2304,441,'2005-06-21 04:18:21',1,'2006-02-15 21:30:53'), +(2329,'2005-06-18 10:22:52',4156,587,'2005-06-20 12:03:52',2,'2006-02-15 21:30:53'), +(2330,'2005-06-18 10:41:19',4285,390,'2005-06-25 10:48:19',1,'2006-02-15 21:30:53'), +(2331,'2005-06-18 10:50:09',1546,221,'2005-06-25 14:30:09',1,'2006-02-15 21:30:53'), +(2332,'2005-06-18 10:53:51',2152,140,'2005-06-24 12:06:51',2,'2006-02-15 21:30:53'), +(2333,'2005-06-18 10:55:54',2323,283,'2005-06-25 07:09:54',2,'2006-02-15 21:30:53'), +(2334,'2005-06-18 10:56:24',3076,223,'2005-06-22 10:38:24',2,'2006-02-15 21:30:53'), +(2335,'2005-06-18 10:59:36',3968,446,'2005-06-26 06:42:36',2,'2006-02-15 21:30:53'), +(2336,'2005-06-18 11:00:05',3888,124,'2005-06-25 06:02:05',2,'2006-02-15 21:30:53'), +(2337,'2005-06-18 11:15:27',4522,582,'2005-06-26 06:59:27',2,'2006-02-15 21:30:53'), +(2338,'2005-06-18 11:24:54',3165,316,'2005-06-19 07:34:54',1,'2006-02-15 21:30:53'), +(2339,'2005-06-18 11:29:22',313,297,'2005-06-21 10:29:22',1,'2006-02-15 21:30:53'), +(2340,'2005-06-18 11:30:56',1913,157,'2005-06-23 06:00:56',1,'2006-02-15 21:30:53'), +(2341,'2005-06-18 11:35:30',638,31,'2005-06-27 11:56:30',2,'2006-02-15 21:30:53'), +(2342,'2005-06-18 11:42:40',2169,146,'2005-06-20 14:40:40',1,'2006-02-15 21:30:53'), +(2343,'2005-06-18 11:46:26',4554,20,'2005-06-22 11:37:26',2,'2006-02-15 21:30:53'), +(2344,'2005-06-18 12:01:47',2015,498,'2005-06-19 11:56:47',2,'2006-02-15 21:30:53'), +(2345,'2005-06-18 12:03:23',1818,6,'2005-06-22 14:25:23',2,'2006-02-15 21:30:53'), +(2346,'2005-06-18 12:08:16',2575,308,'2005-06-27 15:02:16',1,'2006-02-15 21:30:53'), +(2347,'2005-06-18 12:12:29',4516,194,'2005-06-23 14:03:29',1,'2006-02-15 21:30:53'), +(2348,'2005-06-18 12:15:43',3622,449,'2005-06-24 14:03:43',2,'2006-02-15 21:30:53'), +(2349,'2005-06-18 12:25:14',1536,495,'2005-06-19 11:24:14',2,'2006-02-15 21:30:53'), +(2350,'2005-06-18 12:25:29',1179,471,'2005-06-23 11:35:29',1,'2006-02-15 21:30:53'), +(2351,'2005-06-18 12:27:57',2942,216,'2005-06-23 16:14:57',1,'2006-02-15 21:30:53'), +(2352,'2005-06-18 12:40:15',2141,590,'2005-06-22 07:07:15',2,'2006-02-15 21:30:53'), +(2353,'2005-06-18 12:53:25',3223,361,'2005-06-19 13:53:25',1,'2006-02-15 21:30:53'), +(2354,'2005-06-18 12:54:18',2793,77,'2005-06-26 07:23:18',2,'2006-02-15 21:30:53'), +(2355,'2005-06-18 12:57:06',3613,125,'2005-06-26 07:32:06',1,'2006-02-15 21:30:53'), +(2356,'2005-06-18 12:59:23',2207,455,'2005-06-21 10:12:23',2,'2006-02-15 21:30:53'), +(2357,'2005-06-18 12:59:41',1323,561,'2005-06-26 16:40:41',1,'2006-02-15 21:30:53'), +(2358,'2005-06-18 13:00:51',1728,478,'2005-06-26 12:58:51',1,'2006-02-15 21:30:53'), +(2359,'2005-06-18 13:04:42',3087,201,'2005-06-25 11:52:42',1,'2006-02-15 21:30:53'), +(2360,'2005-06-18 13:11:13',37,57,'2005-06-23 15:32:13',2,'2006-02-15 21:30:53'), +(2361,'2005-06-18 13:19:05',3547,546,'2005-06-23 07:59:05',1,'2006-02-15 21:30:53'), +(2362,'2005-06-18 13:31:15',2815,514,'2005-06-19 12:35:15',1,'2006-02-15 21:30:53'), +(2363,'2005-06-18 13:33:59',3497,1,'2005-06-19 17:40:59',1,'2006-02-15 21:30:53'), +(2364,'2005-06-18 13:37:32',2856,512,'2005-06-23 14:18:32',1,'2006-02-15 21:30:53'), +(2365,'2005-06-18 13:45:34',3109,493,'2005-06-21 12:12:34',2,'2006-02-15 21:30:53'), +(2366,'2005-06-18 13:46:39',1413,162,'2005-06-23 18:49:39',2,'2006-02-15 21:30:53'), +(2367,'2005-06-18 14:00:31',4086,566,'2005-06-22 14:45:31',2,'2006-02-15 21:30:53'), +(2368,'2005-06-18 14:10:27',1058,99,'2005-06-23 10:49:27',1,'2006-02-15 21:30:53'), +(2369,'2005-06-18 14:25:29',1515,44,'2005-06-23 18:45:29',2,'2006-02-15 21:30:53'), +(2370,'2005-06-18 14:29:54',2656,489,'2005-06-24 10:23:54',1,'2006-02-15 21:30:53'), +(2371,'2005-06-18 14:35:29',178,248,'2005-06-22 09:38:29',2,'2006-02-15 21:30:53'), +(2372,'2005-06-18 14:37:37',1567,96,'2005-06-21 08:40:37',2,'2006-02-15 21:30:53'), +(2373,'2005-06-18 14:37:57',2780,544,'2005-06-23 19:29:57',2,'2006-02-15 21:30:53'), +(2374,'2005-06-18 14:44:06',2634,71,'2005-06-22 17:14:06',1,'2006-02-15 21:30:53'), +(2375,'2005-06-18 14:47:29',2175,259,'2005-06-26 13:52:29',2,'2006-02-15 21:30:53'), +(2376,'2005-06-18 14:55:30',3664,479,'2005-06-25 17:40:30',1,'2006-02-15 21:30:53'), +(2377,'2005-06-18 14:56:23',3568,193,'2005-06-27 12:36:23',1,'2006-02-15 21:30:53'), +(2378,'2005-06-18 14:57:49',2796,384,'2005-06-26 18:23:49',2,'2006-02-15 21:30:53'), +(2379,'2005-06-18 14:59:39',2708,597,'2005-06-24 13:26:39',2,'2006-02-15 21:30:53'), +(2380,'2005-06-18 15:00:04',4413,256,'2005-06-24 13:29:04',2,'2006-02-15 21:30:53'), +(2381,'2005-06-18 15:00:30',1491,167,'2005-06-22 11:38:30',1,'2006-02-15 21:30:53'), +(2382,'2005-06-18 15:03:52',915,568,'2005-06-20 10:16:52',2,'2006-02-15 21:30:53'), +(2383,'2005-06-18 15:17:59',2459,149,'2005-06-26 18:42:59',2,'2006-02-15 21:30:53'), +(2384,'2005-06-18 15:18:49',3378,132,'2005-06-21 18:10:49',1,'2006-02-15 21:30:53'), +(2385,'2005-06-18 15:22:40',1641,298,'2005-06-26 10:02:40',1,'2006-02-15 21:30:53'), +(2386,'2005-06-18 15:22:51',1361,293,'2005-06-22 20:01:51',1,'2006-02-15 21:30:53'), +(2387,'2005-06-18 15:24:19',692,289,'2005-06-25 17:41:19',2,'2006-02-15 21:30:53'), +(2388,'2005-06-18 15:26:30',2923,53,'2005-06-20 20:24:30',1,'2006-02-15 21:30:53'), +(2389,'2005-06-18 15:27:47',731,382,'2005-06-21 12:26:47',1,'2006-02-15 21:30:53'), +(2390,'2005-06-18 15:29:26',2748,239,'2005-06-23 17:50:26',1,'2006-02-15 21:30:53'), +(2391,'2005-06-18 15:33:30',2850,491,'2005-06-25 14:30:30',1,'2006-02-15 21:30:53'), +(2392,'2005-06-18 15:34:18',2213,261,'2005-06-19 16:22:18',1,'2006-02-15 21:30:53'), +(2393,'2005-06-18 15:37:55',3143,21,'2005-06-25 17:11:55',1,'2006-02-15 21:30:53'), +(2394,'2005-06-18 15:42:30',2669,60,'2005-06-26 16:12:30',1,'2006-02-15 21:30:53'), +(2395,'2005-06-18 15:45:15',899,544,'2005-06-27 19:11:15',2,'2006-02-15 21:30:53'), +(2396,'2005-06-18 15:49:48',1986,31,'2005-06-27 20:31:48',2,'2006-02-15 21:30:53'), +(2397,'2005-06-18 15:51:25',2895,76,'2005-06-24 15:52:25',1,'2006-02-15 21:30:53'), +(2398,'2005-06-18 15:56:53',3001,526,'2005-06-27 14:25:53',2,'2006-02-15 21:30:53'), +(2399,'2005-06-18 16:06:14',2492,577,'2005-06-26 16:56:14',2,'2006-02-15 21:30:53'), +(2400,'2005-06-18 16:10:46',3194,410,'2005-06-25 20:34:46',1,'2006-02-15 21:30:53'), +(2401,'2005-06-18 16:22:03',85,359,'2005-06-19 13:49:03',2,'2006-02-15 21:30:53'), +(2402,'2005-06-18 16:24:45',2833,360,'2005-06-27 14:39:45',1,'2006-02-15 21:30:53'), +(2403,'2005-06-18 16:33:22',2697,536,'2005-06-23 19:25:22',1,'2006-02-15 21:30:53'), +(2404,'2005-06-18 16:33:48',4138,456,'2005-06-23 20:39:48',2,'2006-02-15 21:30:53'), +(2405,'2005-06-18 16:36:38',3604,356,'2005-06-21 19:15:38',1,'2006-02-15 21:30:53'), +(2406,'2005-06-18 16:39:37',1321,497,'2005-06-23 12:04:37',1,'2006-02-15 21:30:53'), +(2407,'2005-06-18 16:50:41',2547,421,'2005-06-24 15:29:41',2,'2006-02-15 21:30:53'), +(2408,'2005-06-18 16:50:44',258,87,'2005-06-19 20:11:44',1,'2006-02-15 21:30:53'), +(2409,'2005-06-18 16:53:33',656,84,'2005-06-20 18:23:33',1,'2006-02-15 21:30:53'), +(2410,'2005-06-18 16:55:08',265,381,'2005-06-20 12:40:08',2,'2006-02-15 21:30:53'), +(2411,'2005-06-18 16:55:54',3302,558,'2005-06-25 12:44:54',1,'2006-02-15 21:30:53'), +(2412,'2005-06-18 16:58:58',1946,127,'2005-06-27 22:57:58',1,'2006-02-15 21:30:53'), +(2413,'2005-06-18 16:59:34',1851,170,'2005-06-27 16:10:34',2,'2006-02-15 21:30:53'), +(2414,'2005-06-18 17:01:55',4500,275,'2005-06-20 17:42:55',1,'2006-02-15 21:30:53'), +(2415,'2005-06-18 17:02:42',3105,434,'2005-06-25 13:16:42',2,'2006-02-15 21:30:53'), +(2416,'2005-06-18 17:07:34',2868,26,'2005-06-24 19:16:34',1,'2006-02-15 21:30:53'), +(2417,'2005-06-18 17:12:01',1956,219,'2005-06-26 13:32:01',1,'2006-02-15 21:30:53'), +(2418,'2005-06-18 17:14:42',2756,381,'2005-06-26 16:33:42',1,'2006-02-15 21:30:53'), +(2419,'2005-06-18 17:21:24',1255,102,'2005-06-26 18:25:24',1,'2006-02-15 21:30:53'), +(2420,'2005-06-18 17:22:28',241,502,'2005-06-23 17:45:28',1,'2006-02-15 21:30:53'), +(2421,'2005-06-18 17:25:05',3524,26,'2005-06-23 21:09:05',2,'2006-02-15 21:30:53'), +(2422,'2005-06-18 17:28:57',3170,527,'2005-06-23 15:22:57',1,'2006-02-15 21:30:53'), +(2423,'2005-06-18 17:32:08',1744,231,'2005-06-21 11:58:08',1,'2006-02-15 21:30:53'), +(2424,'2005-06-18 17:35:08',1884,233,'2005-06-23 15:33:08',1,'2006-02-15 21:30:53'), +(2425,'2005-06-18 17:37:45',2630,579,'2005-06-27 18:40:45',2,'2006-02-15 21:30:53'), +(2426,'2005-06-18 17:40:44',474,543,'2005-06-22 14:30:44',2,'2006-02-15 21:30:53'), +(2427,'2005-06-18 17:45:00',4278,176,'2005-06-27 20:07:00',2,'2006-02-15 21:30:53'), +(2428,'2005-06-18 17:47:34',3892,241,'2005-06-19 14:39:34',2,'2006-02-15 21:30:53'), +(2429,'2005-06-18 17:48:28',3238,583,'2005-06-27 15:52:28',1,'2006-02-15 21:30:53'), +(2430,'2005-06-18 17:51:46',1984,434,'2005-06-23 19:17:46',1,'2006-02-15 21:30:53'), +(2431,'2005-06-18 17:53:03',1383,295,'2005-06-25 15:08:03',2,'2006-02-15 21:30:53'), +(2432,'2005-06-18 17:59:18',4420,250,'2005-06-25 15:19:18',2,'2006-02-15 21:30:53'), +(2433,'2005-06-18 18:10:17',937,356,'2005-06-23 14:46:17',2,'2006-02-15 21:30:53'), +(2434,'2005-06-18 18:11:51',3739,12,'2005-06-23 12:52:51',2,'2006-02-15 21:30:53'), +(2435,'2005-06-18 18:12:26',3548,173,'2005-06-22 13:43:26',2,'2006-02-15 21:30:53'), +(2436,'2005-06-18 18:13:32',3328,534,'2005-06-21 13:33:32',2,'2006-02-15 21:30:53'), +(2437,'2005-06-18 18:30:26',1799,454,'2005-06-21 18:36:26',1,'2006-02-15 21:30:53'), +(2438,'2005-06-18 18:34:21',184,31,'2005-06-19 16:50:21',1,'2006-02-15 21:30:53'), +(2439,'2005-06-18 18:35:04',909,39,'2005-06-21 19:47:04',2,'2006-02-15 21:30:53'), +(2440,'2005-06-18 18:41:09',2866,380,'2005-06-22 12:46:09',1,'2006-02-15 21:30:53'), +(2441,'2005-06-18 18:45:11',3148,593,'2005-06-20 00:42:11',1,'2006-02-15 21:30:53'), +(2442,'2005-06-18 18:49:18',4045,364,'2005-06-22 16:18:18',1,'2006-02-15 21:30:53'), +(2443,'2005-06-18 18:52:30',1622,233,'2005-06-24 21:27:30',1,'2006-02-15 21:30:53'), +(2444,'2005-06-18 18:58:12',2233,576,'2005-06-27 20:48:12',1,'2006-02-15 21:30:53'), +(2445,'2005-06-18 19:02:11',2887,98,'2005-06-23 22:25:11',1,'2006-02-15 21:30:53'), +(2446,'2005-06-18 19:04:41',1283,466,'2005-06-27 17:10:41',2,'2006-02-15 21:30:53'), +(2447,'2005-06-18 19:10:55',2353,523,'2005-06-27 16:35:55',1,'2006-02-15 21:30:53'), +(2448,'2005-06-18 19:13:45',1642,308,'2005-06-27 14:43:45',1,'2006-02-15 21:30:53'), +(2449,'2005-06-18 19:18:36',3630,498,'2005-06-27 23:49:36',1,'2006-02-15 21:30:53'), +(2450,'2005-06-18 19:25:47',863,230,'2005-06-27 15:54:47',1,'2006-02-15 21:30:53'), +(2451,'2005-06-18 19:28:02',835,24,'2005-06-23 16:41:02',1,'2006-02-15 21:30:53'), +(2452,'2005-06-18 19:29:21',4318,77,'2005-06-26 22:27:21',1,'2006-02-15 21:30:53'), +(2453,'2005-06-18 19:30:53',2562,588,'2005-06-20 17:22:53',1,'2006-02-15 21:30:53'), +(2454,'2005-06-18 19:32:51',314,253,'2005-06-24 20:03:51',2,'2006-02-15 21:30:53'), +(2455,'2005-06-18 19:33:06',870,241,'2005-06-21 15:21:06',1,'2006-02-15 21:30:53'), +(2456,'2005-06-18 19:36:50',553,147,'2005-06-23 22:48:50',1,'2006-02-15 21:30:53'), +(2457,'2005-06-18 19:38:20',1277,91,'2005-06-26 20:48:20',1,'2006-02-15 21:30:53'), +(2458,'2005-06-18 19:39:05',599,572,'2005-06-21 13:54:05',2,'2006-02-15 21:30:53'), +(2459,'2005-06-18 19:44:08',1024,185,'2005-06-23 19:14:08',2,'2006-02-15 21:30:53'), +(2460,'2005-06-18 19:54:13',3933,553,'2005-06-27 22:36:13',2,'2006-02-15 21:30:53'), +(2461,'2005-06-18 19:58:12',78,343,'2005-06-28 01:35:12',2,'2006-02-15 21:30:53'), +(2462,'2005-06-18 20:00:15',2151,468,'2005-06-21 21:54:15',2,'2006-02-15 21:30:53'), +(2463,'2005-06-18 20:01:43',1186,194,'2005-06-25 15:04:43',2,'2006-02-15 21:30:53'), +(2464,'2005-06-18 20:06:05',463,380,'2005-06-20 19:22:05',1,'2006-02-15 21:30:53'), +(2465,'2005-06-18 20:07:02',3783,160,'2005-06-25 20:55:02',1,'2006-02-15 21:30:53'), +(2466,'2005-06-18 20:18:42',1356,427,'2005-06-20 01:32:42',1,'2006-02-15 21:30:53'), +(2467,'2005-06-18 20:20:05',4387,177,'2005-06-20 17:01:05',1,'2006-02-15 21:30:53'), +(2468,'2005-06-18 20:23:52',1833,382,'2005-06-23 14:34:52',1,'2006-02-15 21:30:53'), +(2469,'2005-06-18 20:24:23',1993,137,'2005-06-27 15:39:23',1,'2006-02-15 21:30:53'), +(2470,'2005-06-18 20:28:31',4319,40,'2005-06-25 18:48:31',1,'2006-02-15 21:30:53'), +(2471,'2005-06-18 20:31:00',3399,183,'2005-06-24 18:01:00',2,'2006-02-15 21:30:53'), +(2472,'2005-06-18 20:32:40',4556,70,'2005-06-20 00:40:40',2,'2006-02-15 21:30:53'), +(2473,'2005-06-18 20:42:45',3876,221,'2005-06-19 20:17:45',1,'2006-02-15 21:30:53'), +(2474,'2005-06-18 20:51:34',3450,151,'2005-06-25 01:39:34',1,'2006-02-15 21:30:53'), +(2475,'2005-06-18 20:52:46',889,336,'2005-06-21 19:40:46',2,'2006-02-15 21:30:53'), +(2476,'2005-06-18 20:57:12',3998,334,'2005-06-20 15:42:12',1,'2006-02-15 21:30:53'), +(2477,'2005-06-18 20:58:46',2510,206,'2005-06-22 21:49:46',1,'2006-02-15 21:30:53'), +(2478,'2005-06-18 21:01:21',2798,241,'2005-06-24 00:20:21',1,'2006-02-15 21:30:53'), +(2479,'2005-06-18 21:03:08',1624,408,'2005-06-22 16:49:08',1,'2006-02-15 21:30:53'), +(2480,'2005-06-18 21:04:09',4078,310,'2005-06-22 16:24:09',1,'2006-02-15 21:30:53'), +(2481,'2005-06-18 21:08:30',800,322,'2005-06-23 02:35:30',2,'2006-02-15 21:30:53'), +(2482,'2005-06-18 21:10:44',452,122,'2005-06-19 20:39:44',1,'2006-02-15 21:30:53'), +(2483,'2005-06-18 21:22:23',4225,88,'2005-06-25 01:14:23',1,'2006-02-15 21:30:53'), +(2484,'2005-06-18 21:25:23',1511,515,'2005-06-24 16:03:23',2,'2006-02-15 21:30:53'), +(2485,'2005-06-18 21:26:03',1562,56,'2005-06-21 22:09:03',2,'2006-02-15 21:30:53'), +(2486,'2005-06-18 21:26:56',268,15,'2005-06-22 23:42:56',1,'2006-02-15 21:30:53'), +(2487,'2005-06-18 21:32:54',3683,374,'2005-06-23 21:11:54',2,'2006-02-15 21:30:53'), +(2488,'2005-06-18 21:38:26',1338,403,'2005-06-24 02:08:26',2,'2006-02-15 21:30:53'), +(2489,'2005-06-18 22:00:44',4012,382,'2005-06-22 02:06:44',2,'2006-02-15 21:30:53'), +(2490,'2005-06-18 22:00:50',1934,402,'2005-06-19 23:45:50',2,'2006-02-15 21:30:53'), +(2491,'2005-06-18 22:01:31',1779,316,'2005-06-26 02:46:31',1,'2006-02-15 21:30:53'), +(2492,'2005-06-18 22:04:15',2858,237,'2005-06-23 21:58:15',1,'2006-02-15 21:30:53'), +(2493,'2005-06-18 22:12:09',4121,269,'2005-06-27 23:44:09',1,'2006-02-15 21:30:53'), +(2494,'2005-06-18 22:15:09',1313,434,'2005-06-25 17:23:09',1,'2006-02-15 21:30:53'), +(2495,'2005-06-18 22:15:42',3826,338,'2005-06-21 23:21:42',1,'2006-02-15 21:30:53'), +(2496,'2005-06-18 22:20:11',646,527,'2005-06-20 03:08:11',2,'2006-02-15 21:30:53'), +(2497,'2005-06-18 22:50:40',2327,171,'2005-06-26 22:39:40',1,'2006-02-15 21:30:53'), +(2498,'2005-06-18 22:56:26',2291,74,'2005-06-22 20:02:26',1,'2006-02-15 21:30:53'), +(2499,'2005-06-18 23:01:36',3172,348,'2005-06-20 21:50:36',2,'2006-02-15 21:30:53'), +(2500,'2005-06-18 23:07:12',4241,12,'2005-06-26 17:27:12',1,'2006-02-15 21:30:53'), +(2501,'2005-06-18 23:10:11',1185,450,'2005-06-24 18:40:11',2,'2006-02-15 21:30:53'), +(2502,'2005-06-18 23:12:13',2622,325,'2005-06-20 04:19:13',2,'2006-02-15 21:30:53'), +(2503,'2005-06-18 23:17:19',2486,176,'2005-06-23 03:57:19',2,'2006-02-15 21:30:53'), +(2504,'2005-06-18 23:19:53',1684,452,'2005-06-21 04:43:53',2,'2006-02-15 21:30:53'), +(2505,'2005-06-18 23:28:27',1670,519,'2005-06-26 01:36:27',1,'2006-02-15 21:30:53'), +(2506,'2005-06-18 23:29:53',2308,82,'2005-06-25 18:11:53',2,'2006-02-15 21:30:53'), +(2507,'2005-06-18 23:39:22',3121,325,'2005-06-21 19:23:22',1,'2006-02-15 21:30:53'), +(2508,'2005-06-18 23:43:58',4322,476,'2005-06-20 19:26:58',2,'2006-02-15 21:30:53'), +(2509,'2005-06-18 23:44:08',4469,213,'2005-06-20 01:36:08',2,'2006-02-15 21:30:53'), +(2510,'2005-06-18 23:44:21',3827,384,'2005-06-24 00:31:21',1,'2006-02-15 21:30:53'), +(2511,'2005-06-18 23:45:30',1824,234,'2005-06-24 01:21:30',2,'2006-02-15 21:30:53'), +(2512,'2005-06-18 23:48:47',4515,27,'2005-06-21 04:58:47',2,'2006-02-15 21:30:53'), +(2513,'2005-06-18 23:53:15',3379,515,'2005-06-24 21:16:15',2,'2006-02-15 21:30:53'), +(2514,'2005-06-18 23:56:44',2559,382,'2005-06-23 21:10:44',1,'2006-02-15 21:30:53'), +(2515,'2005-06-18 23:57:31',3213,188,'2005-06-22 05:31:31',2,'2006-02-15 21:30:53'), +(2516,'2005-06-19 00:03:28',2678,87,'2005-06-21 00:30:28',2,'2006-02-15 21:30:53'), +(2517,'2005-06-19 00:11:26',53,74,'2005-06-25 02:19:26',1,'2006-02-15 21:30:53'), +(2518,'2005-06-19 00:16:23',3503,86,'2005-06-25 19:28:23',2,'2006-02-15 21:30:53'), +(2519,'2005-06-19 00:19:21',1172,128,'2005-06-25 01:46:21',1,'2006-02-15 21:30:53'), +(2520,'2005-06-19 00:29:00',4181,446,'2005-06-28 04:36:00',1,'2006-02-15 21:30:53'), +(2521,'2005-06-19 00:41:08',132,92,'2005-06-22 00:40:08',1,'2006-02-15 21:30:53'), +(2522,'2005-06-19 00:43:42',550,579,'2005-06-28 04:26:42',1,'2006-02-15 21:30:53'), +(2523,'2005-06-19 00:45:56',460,89,'2005-06-21 00:54:56',2,'2006-02-15 21:30:53'), +(2524,'2005-06-19 00:48:11',441,465,'2005-06-25 01:46:11',2,'2006-02-15 21:30:53'), +(2525,'2005-06-19 00:48:22',1307,365,'2005-06-24 19:10:22',2,'2006-02-15 21:30:53'), +(2526,'2005-06-19 01:03:07',3309,500,'2005-06-28 06:57:07',1,'2006-02-15 21:30:53'), +(2527,'2005-06-19 01:10:31',387,463,'2005-06-20 05:37:31',2,'2006-02-15 21:30:53'), +(2528,'2005-06-19 01:14:12',1836,331,'2005-06-26 05:08:12',2,'2006-02-15 21:30:53'), +(2529,'2005-06-19 01:18:27',2306,478,'2005-06-24 00:26:27',1,'2006-02-15 21:30:53'), +(2530,'2005-06-19 01:20:00',4166,31,'2005-06-23 04:10:00',1,'2006-02-15 21:30:53'), +(2531,'2005-06-19 01:20:49',768,368,'2005-06-22 01:50:49',2,'2006-02-15 21:30:53'), +(2532,'2005-06-19 01:27:46',1870,26,'2005-06-20 02:15:46',1,'2006-02-15 21:30:53'), +(2533,'2005-06-19 01:34:26',4564,187,'2005-06-22 20:19:26',1,'2006-02-15 21:30:53'), +(2534,'2005-06-19 01:38:39',2540,517,'2005-06-23 00:16:39',1,'2006-02-15 21:30:53'), +(2535,'2005-06-19 01:39:04',901,130,'2005-06-28 01:33:04',2,'2006-02-15 21:30:53'), +(2536,'2005-06-19 01:41:34',4232,163,'2005-06-27 03:11:34',1,'2006-02-15 21:30:53'), +(2537,'2005-06-19 01:52:21',3499,388,'2005-06-26 02:09:21',1,'2006-02-15 21:30:53'), +(2538,'2005-06-19 01:56:59',1287,472,'2005-06-25 00:54:59',2,'2006-02-15 21:30:53'), +(2539,'2005-06-19 01:58:39',4474,527,'2005-06-19 22:17:39',2,'2006-02-15 21:30:53'), +(2540,'2005-06-19 02:04:48',4305,363,'2005-06-20 22:42:48',2,'2006-02-15 21:30:53'), +(2541,'2005-06-19 02:08:10',129,360,'2005-06-23 23:32:10',1,'2006-02-15 21:30:53'), +(2542,'2005-06-19 02:08:39',1446,67,'2005-06-26 20:25:39',1,'2006-02-15 21:30:53'), +(2543,'2005-06-19 02:14:11',1729,58,'2005-06-21 00:40:11',2,'2006-02-15 21:30:53'), +(2544,'2005-06-19 02:16:17',1465,558,'2005-06-22 21:45:17',1,'2006-02-15 21:30:53'), +(2545,'2005-06-19 02:23:36',3237,413,'2005-06-20 03:17:36',2,'2006-02-15 21:30:53'), +(2546,'2005-06-19 02:39:39',971,272,'2005-06-23 03:56:39',2,'2006-02-15 21:30:53'), +(2547,'2005-06-19 02:44:17',4560,162,'2005-06-24 08:01:17',2,'2006-02-15 21:30:53'), +(2548,'2005-06-19 02:45:35',4292,561,'2005-06-22 06:52:35',2,'2006-02-15 21:30:53'), +(2549,'2005-06-19 02:46:39',3854,495,'2005-06-26 22:30:39',2,'2006-02-15 21:30:53'), +(2550,'2005-06-19 02:49:55',1370,38,'2005-06-24 01:37:55',1,'2006-02-15 21:30:53'), +(2551,'2005-06-19 02:51:04',2007,444,'2005-06-28 05:02:04',1,'2006-02-15 21:30:53'), +(2552,'2005-06-19 03:01:29',664,389,'2005-06-28 04:13:29',1,'2006-02-15 21:30:53'), +(2553,'2005-06-19 03:04:59',923,473,'2005-06-26 02:36:59',2,'2006-02-15 21:30:53'), +(2554,'2005-06-19 03:05:38',3916,322,'2005-06-25 23:03:38',1,'2006-02-15 21:30:53'), +(2555,'2005-06-19 03:07:02',260,191,'2005-06-25 05:25:02',2,'2006-02-15 21:30:53'), +(2556,'2005-06-19 03:07:32',125,377,'2005-06-23 23:09:32',1,'2006-02-15 21:30:53'), +(2557,'2005-06-19 03:08:51',4546,257,'2005-06-20 07:59:51',1,'2006-02-15 21:30:53'), +(2558,'2005-06-19 03:09:16',2920,361,'2005-06-24 05:29:16',1,'2006-02-15 21:30:53'), +(2559,'2005-06-19 03:09:46',4433,414,'2005-06-28 07:49:46',1,'2006-02-15 21:30:53'), +(2560,'2005-06-19 03:12:42',3340,309,'2005-06-28 02:28:42',1,'2006-02-15 21:30:53'), +(2561,'2005-06-19 03:14:52',4128,256,'2005-06-21 02:42:52',2,'2006-02-15 21:30:53'), +(2562,'2005-06-19 03:15:05',51,265,'2005-06-21 08:26:05',2,'2006-02-15 21:30:53'), +(2563,'2005-06-19 03:24:17',1935,41,'2005-06-23 04:08:17',2,'2006-02-15 21:30:53'), +(2564,'2005-06-19 03:41:10',4008,408,'2005-06-24 03:10:10',1,'2006-02-15 21:30:53'), +(2565,'2005-06-19 03:44:03',2347,128,'2005-06-24 01:26:03',2,'2006-02-15 21:30:53'), +(2566,'2005-06-19 03:45:39',495,486,'2005-06-25 08:43:39',2,'2006-02-15 21:30:53'), +(2567,'2005-06-19 04:04:46',216,496,'2005-06-19 23:39:46',2,'2006-02-15 21:30:53'), +(2568,'2005-06-19 04:09:03',3032,190,'2005-06-24 23:24:03',1,'2006-02-15 21:30:53'), +(2569,'2005-06-19 04:19:04',30,213,'2005-06-26 04:31:04',1,'2006-02-15 21:30:53'), +(2570,'2005-06-19 04:20:13',1105,5,'2005-06-25 07:00:13',1,'2006-02-15 21:30:53'), +(2571,'2005-06-19 04:20:14',1800,66,'2005-06-21 07:28:14',2,'2006-02-15 21:30:53'), +(2572,'2005-06-19 04:21:26',2449,159,'2005-06-23 09:22:26',2,'2006-02-15 21:30:53'), +(2573,'2005-06-19 04:23:18',3354,563,'2005-06-23 06:04:18',1,'2006-02-15 21:30:53'), +(2574,'2005-06-19 04:23:52',3320,143,'2005-06-20 05:24:52',1,'2006-02-15 21:30:53'), +(2575,'2005-06-19 04:32:52',354,336,'2005-06-24 09:37:52',1,'2006-02-15 21:30:53'), +(2576,'2005-06-19 04:34:15',2928,559,'2005-06-28 10:02:15',2,'2006-02-15 21:30:53'), +(2577,'2005-06-19 04:36:03',447,66,'2005-06-28 00:38:03',2,'2006-02-15 21:30:53'), +(2578,'2005-06-19 04:40:06',1695,267,'2005-06-26 09:37:06',2,'2006-02-15 21:30:53'), +(2579,'2005-06-19 04:40:44',3836,493,'2005-06-22 09:22:44',1,'2006-02-15 21:30:53'), +(2580,'2005-06-19 04:44:30',2527,219,'2005-06-23 04:15:30',1,'2006-02-15 21:30:53'), +(2581,'2005-06-19 04:54:13',376,456,'2005-06-23 23:28:13',2,'2006-02-15 21:30:53'), +(2582,'2005-06-19 04:56:27',201,267,'2005-06-26 08:56:27',2,'2006-02-15 21:30:53'), +(2583,'2005-06-19 05:01:40',3999,523,'2005-06-28 00:04:40',1,'2006-02-15 21:30:53'), +(2584,'2005-06-19 05:02:36',3733,90,'2005-06-28 04:52:36',2,'2006-02-15 21:30:53'), +(2585,'2005-06-19 05:05:03',91,406,'2005-06-20 09:28:03',1,'2006-02-15 21:30:53'), +(2586,'2005-06-19 05:05:11',4104,537,'2005-06-27 00:23:11',1,'2006-02-15 21:30:53'), +(2587,'2005-06-19 05:06:14',2188,331,'2005-06-24 10:50:14',2,'2006-02-15 21:30:53'), +(2588,'2005-06-19 05:20:31',3626,143,'2005-06-22 04:20:31',2,'2006-02-15 21:30:53'), +(2589,'2005-06-19 05:21:27',225,164,'2005-06-21 09:55:27',2,'2006-02-15 21:30:53'), +(2590,'2005-06-19 05:31:40',3572,324,'2005-06-20 07:58:40',2,'2006-02-15 21:30:53'), +(2591,'2005-06-19 05:32:22',4481,438,'2005-06-25 23:42:22',1,'2006-02-15 21:30:53'), +(2592,'2005-06-19 05:36:54',282,208,'2005-06-21 08:44:54',1,'2006-02-15 21:30:53'), +(2593,'2005-06-19 05:40:11',2031,556,'2005-06-28 08:11:11',1,'2006-02-15 21:30:53'), +(2594,'2005-06-19 05:43:43',829,123,'2005-06-25 03:41:43',2,'2006-02-15 21:30:53'), +(2595,'2005-06-19 05:43:55',3197,122,'2005-06-25 10:20:55',1,'2006-02-15 21:30:53'), +(2596,'2005-06-19 05:48:26',2229,80,'2005-06-24 10:16:26',1,'2006-02-15 21:30:53'), +(2597,'2005-06-19 05:53:46',2278,407,'2005-06-20 05:14:46',1,'2006-02-15 21:30:53'), +(2598,'2005-06-19 05:59:57',2079,265,'2005-06-24 11:44:57',2,'2006-02-15 21:30:53'), +(2599,'2005-06-19 06:06:07',461,171,'2005-06-27 01:10:07',1,'2006-02-15 21:30:53'), +(2600,'2005-06-19 06:07:25',469,423,'2005-06-28 03:37:25',2,'2006-02-15 21:30:53'), +(2601,'2005-06-19 06:09:44',2898,98,'2005-06-20 08:03:44',1,'2006-02-15 21:30:53'), +(2602,'2005-06-19 06:10:08',4124,173,'2005-06-24 00:39:08',2,'2006-02-15 21:30:53'), +(2603,'2005-06-19 06:21:25',587,222,'2005-06-26 03:19:25',1,'2006-02-15 21:30:53'), +(2604,'2005-06-19 06:30:10',2889,28,'2005-06-25 11:16:10',2,'2006-02-15 21:30:53'), +(2605,'2005-06-19 06:48:01',2342,38,'2005-06-25 07:00:01',1,'2006-02-15 21:30:53'), +(2606,'2005-06-19 06:51:32',4133,364,'2005-06-21 03:15:32',2,'2006-02-15 21:30:53'), +(2607,'2005-06-19 06:55:01',3922,340,'2005-06-25 03:21:01',2,'2006-02-15 21:30:53'), +(2608,'2005-06-19 07:10:36',1618,132,'2005-06-24 13:09:36',1,'2006-02-15 21:30:53'), +(2609,'2005-06-19 07:13:12',2254,383,'2005-06-28 12:30:12',2,'2006-02-15 21:30:53'), +(2610,'2005-06-19 07:16:20',3845,542,'2005-06-25 09:39:20',2,'2006-02-15 21:30:53'), +(2611,'2005-06-19 07:18:17',3682,301,'2005-06-21 10:19:17',1,'2006-02-15 21:30:53'), +(2612,'2005-06-19 07:19:41',1691,287,'2005-06-25 11:10:41',1,'2006-02-15 21:30:53'), +(2613,'2005-06-19 07:25:50',3830,179,'2005-06-21 03:04:50',1,'2006-02-15 21:30:53'), +(2614,'2005-06-19 07:28:11',4147,145,'2005-06-22 12:33:11',1,'2006-02-15 21:30:53'), +(2615,'2005-06-19 07:29:13',3810,578,'2005-06-27 12:50:13',1,'2006-02-15 21:30:53'), +(2616,'2005-06-19 07:33:00',581,478,'2005-06-28 03:05:00',1,'2006-02-15 21:30:53'), +(2617,'2005-06-19 07:48:31',204,313,'2005-06-27 11:56:31',1,'2006-02-15 21:30:53'), +(2618,'2005-06-19 08:03:01',2465,310,'2005-06-24 03:23:01',2,'2006-02-15 21:30:53'), +(2619,'2005-06-19 08:03:12',1848,350,'2005-06-21 05:02:12',2,'2006-02-15 21:30:53'), +(2620,'2005-06-19 08:06:29',3183,94,'2005-06-24 11:42:29',1,'2006-02-15 21:30:53'), +(2621,'2005-06-19 08:07:31',1746,439,'2005-06-28 05:36:31',1,'2006-02-15 21:30:53'), +(2622,'2005-06-19 08:10:41',1393,573,'2005-06-28 10:44:41',2,'2006-02-15 21:30:53'), +(2623,'2005-06-19 08:11:51',4477,12,'2005-06-26 12:28:51',2,'2006-02-15 21:30:53'), +(2624,'2005-06-19 08:22:09',3071,32,'2005-06-27 11:13:09',1,'2006-02-15 21:30:53'), +(2625,'2005-06-19 08:23:11',3946,25,'2005-06-26 09:52:11',2,'2006-02-15 21:30:53'), +(2626,'2005-06-19 08:28:44',2816,450,'2005-06-24 03:58:44',1,'2006-02-15 21:30:53'), +(2627,'2005-06-19 08:32:00',2779,592,'2005-06-24 04:31:00',2,'2006-02-15 21:30:53'), +(2628,'2005-06-19 08:34:53',3917,3,'2005-06-28 04:19:53',2,'2006-02-15 21:30:53'), +(2629,'2005-06-19 08:42:12',1810,458,'2005-06-28 03:38:12',2,'2006-02-15 21:30:53'), +(2630,'2005-06-19 08:47:21',3904,236,'2005-06-25 09:31:21',1,'2006-02-15 21:30:53'), +(2631,'2005-06-19 08:49:53',3471,39,'2005-06-26 03:25:53',1,'2006-02-15 21:30:53'), +(2632,'2005-06-19 08:51:47',2274,574,'2005-06-23 07:13:47',2,'2006-02-15 21:30:53'), +(2633,'2005-06-19 08:53:10',3462,68,'2005-06-20 07:56:10',1,'2006-02-15 21:30:53'), +(2634,'2005-06-19 08:55:17',3687,318,'2005-06-20 11:44:17',2,'2006-02-15 21:30:53'), +(2635,'2005-06-19 09:08:45',3332,105,'2005-06-26 09:20:45',1,'2006-02-15 21:30:53'), +(2636,'2005-06-19 09:13:06',2102,253,'2005-06-25 07:47:06',2,'2006-02-15 21:30:53'), +(2637,'2005-06-19 09:20:56',2736,327,'2005-06-27 10:09:56',2,'2006-02-15 21:30:53'), +(2638,'2005-06-19 09:23:30',2944,295,'2005-06-26 14:56:30',1,'2006-02-15 21:30:53'), +(2639,'2005-06-19 09:24:02',3971,116,'2005-06-21 14:16:02',2,'2006-02-15 21:30:53'), +(2640,'2005-06-19 09:26:13',721,540,'2005-06-20 14:38:13',1,'2006-02-15 21:30:53'), +(2641,'2005-06-19 09:38:33',231,374,'2005-06-22 09:55:33',1,'2006-02-15 21:30:53'), +(2642,'2005-06-19 09:39:01',2065,4,'2005-06-25 08:33:01',1,'2006-02-15 21:30:53'), +(2643,'2005-06-19 09:39:27',1928,318,'2005-06-26 10:27:27',2,'2006-02-15 21:30:53'), +(2644,'2005-06-19 09:42:30',1923,309,'2005-06-27 07:23:30',2,'2006-02-15 21:30:53'), +(2645,'2005-06-19 09:50:35',2284,181,'2005-06-28 06:47:35',2,'2006-02-15 21:30:53'), +(2646,'2005-06-19 09:56:01',3511,275,'2005-06-21 04:15:01',2,'2006-02-15 21:30:53'), +(2647,'2005-06-19 09:57:56',1954,54,'2005-06-22 15:55:56',1,'2006-02-15 21:30:53'), +(2648,'2005-06-19 10:06:20',1620,31,'2005-06-21 04:30:20',2,'2006-02-15 21:30:53'), +(2649,'2005-06-19 10:20:09',98,153,'2005-06-21 10:05:09',1,'2006-02-15 21:30:53'), +(2650,'2005-06-19 10:21:45',4211,209,'2005-06-21 08:01:45',1,'2006-02-15 21:30:53'), +(2651,'2005-06-19 10:22:56',2181,576,'2005-06-27 13:37:56',1,'2006-02-15 21:30:53'), +(2652,'2005-06-19 10:35:26',3108,589,'2005-06-28 08:03:26',1,'2006-02-15 21:30:53'), +(2653,'2005-06-19 10:36:53',3528,340,'2005-06-26 15:15:53',1,'2006-02-15 21:30:53'), +(2654,'2005-06-19 10:37:54',3697,405,'2005-06-27 11:44:54',2,'2006-02-15 21:30:53'), +(2655,'2005-06-19 10:38:42',1649,29,'2005-06-23 14:20:42',1,'2006-02-15 21:30:53'), +(2656,'2005-06-19 10:42:33',559,280,'2005-06-24 08:31:33',2,'2006-02-15 21:30:53'), +(2657,'2005-06-19 10:42:59',3595,19,'2005-06-28 12:37:59',1,'2006-02-15 21:30:53'), +(2658,'2005-06-19 10:43:42',3281,156,'2005-06-24 16:23:42',1,'2006-02-15 21:30:53'), +(2659,'2005-06-19 10:47:42',66,139,'2005-06-23 14:03:42',1,'2006-02-15 21:30:53'), +(2660,'2005-06-19 10:50:02',4341,221,'2005-06-28 12:49:02',1,'2006-02-15 21:30:53'), +(2661,'2005-06-19 10:50:52',3652,452,'2005-06-25 08:44:52',2,'2006-02-15 21:30:53'), +(2662,'2005-06-19 10:53:42',3936,68,'2005-06-20 11:41:42',1,'2006-02-15 21:30:53'), +(2663,'2005-06-19 10:54:00',1012,583,'2005-06-20 16:48:00',1,'2006-02-15 21:30:53'), +(2664,'2005-06-19 11:11:23',3496,299,'2005-06-28 08:30:23',2,'2006-02-15 21:30:53'), +(2665,'2005-06-19 11:12:35',4531,133,'2005-06-26 11:55:35',2,'2006-02-15 21:30:53'), +(2666,'2005-06-19 11:17:12',1872,454,'2005-06-28 12:47:12',1,'2006-02-15 21:30:53'), +(2667,'2005-06-19 11:28:46',1028,200,'2005-06-27 11:48:46',2,'2006-02-15 21:30:53'), +(2668,'2005-06-19 11:28:47',3127,568,'2005-06-24 10:12:47',2,'2006-02-15 21:30:53'), +(2669,'2005-06-19 11:28:52',2734,523,'2005-06-20 16:43:52',1,'2006-02-15 21:30:53'), +(2670,'2005-06-19 11:30:16',3518,457,'2005-06-21 17:25:16',2,'2006-02-15 21:30:53'), +(2671,'2005-06-19 11:33:11',2164,451,'2005-06-26 14:30:11',2,'2006-02-15 21:30:53'), +(2672,'2005-06-19 11:42:04',1164,420,'2005-06-25 09:14:04',2,'2006-02-15 21:30:53'), +(2673,'2005-06-19 11:42:20',2487,29,'2005-06-23 07:16:20',1,'2006-02-15 21:30:53'), +(2674,'2005-06-19 11:47:59',3744,585,'2005-06-20 08:09:59',1,'2006-02-15 21:30:53'), +(2675,'2005-06-19 11:52:15',3078,230,'2005-06-23 16:45:15',1,'2006-02-15 21:30:53'), +(2676,'2005-06-19 11:54:57',3938,477,'2005-06-24 15:34:57',2,'2006-02-15 21:30:53'), +(2677,'2005-06-19 12:01:59',4384,428,'2005-06-21 06:15:59',2,'2006-02-15 21:30:53'), +(2678,'2005-06-19 12:12:23',4230,258,'2005-06-21 16:28:23',2,'2006-02-15 21:30:53'), +(2679,'2005-06-19 12:12:30',1994,109,'2005-06-27 08:27:30',1,'2006-02-15 21:30:53'), +(2680,'2005-06-19 12:13:37',865,114,'2005-06-27 15:15:37',1,'2006-02-15 21:30:53'), +(2681,'2005-06-19 12:15:27',2704,196,'2005-06-21 16:48:27',2,'2006-02-15 21:30:53'), +(2682,'2005-06-19 12:18:17',3609,538,'2005-06-28 14:09:17',1,'2006-02-15 21:30:53'), +(2683,'2005-06-19 12:27:19',2860,241,'2005-06-21 16:26:19',2,'2006-02-15 21:30:53'), +(2684,'2005-06-19 12:29:08',1225,17,'2005-06-28 08:50:08',2,'2006-02-15 21:30:53'), +(2685,'2005-06-19 12:35:21',1170,283,'2005-06-22 16:58:21',1,'2006-02-15 21:30:53'), +(2686,'2005-06-19 12:44:20',2686,68,'2005-06-20 16:00:20',1,'2006-02-15 21:30:53'), +(2687,'2005-06-19 12:46:52',3152,254,'2005-06-23 06:58:52',2,'2006-02-15 21:30:53'), +(2688,'2005-06-19 12:50:56',4281,309,'2005-06-28 17:58:56',2,'2006-02-15 21:30:53'), +(2689,'2005-06-19 12:58:53',2478,567,'2005-06-24 17:35:53',1,'2006-02-15 21:30:53'), +(2690,'2005-06-19 13:00:02',1381,391,'2005-06-27 14:29:02',1,'2006-02-15 21:30:53'), +(2691,'2005-06-19 13:06:50',3469,242,'2005-06-26 15:56:50',1,'2006-02-15 21:30:53'), +(2692,'2005-06-19 13:08:19',3162,388,'2005-06-21 16:45:19',1,'2006-02-15 21:30:53'), +(2693,'2005-06-19 13:11:47',2570,107,'2005-06-27 11:17:47',1,'2006-02-15 21:30:53'), +(2694,'2005-06-19 13:17:21',380,368,'2005-06-24 15:09:21',1,'2006-02-15 21:30:53'), +(2695,'2005-06-19 13:25:53',190,208,'2005-06-24 17:12:53',2,'2006-02-15 21:30:53'), +(2696,'2005-06-19 13:28:42',2110,597,'2005-06-28 14:06:42',2,'2006-02-15 21:30:53'), +(2697,'2005-06-19 13:29:08',2271,448,'2005-06-23 13:21:08',1,'2006-02-15 21:30:53'), +(2698,'2005-06-19 13:29:11',3900,420,'2005-06-20 07:31:11',2,'2006-02-15 21:30:53'), +(2699,'2005-06-19 13:29:28',72,267,'2005-06-24 11:15:28',2,'2006-02-15 21:30:53'), +(2700,'2005-06-19 13:31:52',928,180,'2005-06-27 19:30:52',1,'2006-02-15 21:30:53'), +(2701,'2005-06-19 13:33:06',1623,29,'2005-06-28 15:11:06',2,'2006-02-15 21:30:53'), +(2702,'2005-06-19 13:35:56',1736,329,'2005-06-20 14:07:56',2,'2006-02-15 21:30:53'), +(2703,'2005-06-19 13:36:06',4080,319,'2005-06-28 08:26:06',2,'2006-02-15 21:30:53'), +(2704,'2005-06-19 13:50:10',2026,246,'2005-06-26 18:25:10',2,'2006-02-15 21:30:53'), +(2705,'2005-06-19 13:54:30',1191,562,'2005-06-20 12:31:30',1,'2006-02-15 21:30:53'), +(2706,'2005-06-19 13:56:51',373,559,'2005-06-21 17:23:51',2,'2006-02-15 21:30:53'), +(2707,'2005-06-19 13:57:08',4486,589,'2005-06-27 11:09:08',2,'2006-02-15 21:30:53'), +(2708,'2005-06-19 13:59:05',2659,541,'2005-06-24 10:02:05',2,'2006-02-15 21:30:53'), +(2709,'2005-06-19 14:00:26',2877,7,'2005-06-23 14:56:26',2,'2006-02-15 21:30:53'), +(2710,'2005-06-19 14:03:56',2965,446,'2005-06-21 16:15:56',1,'2006-02-15 21:30:53'), +(2711,'2005-06-19 14:12:22',3944,313,'2005-06-21 09:29:22',1,'2006-02-15 21:30:53'), +(2712,'2005-06-19 14:20:13',3132,411,'2005-06-22 19:08:13',1,'2006-02-15 21:30:53'), +(2713,'2005-06-19 14:23:09',3979,378,'2005-06-20 17:55:09',1,'2006-02-15 21:30:53'), +(2714,'2005-06-19 14:26:09',2853,81,'2005-06-23 17:24:09',2,'2006-02-15 21:30:53'), +(2715,'2005-06-19 14:29:35',2082,404,'2005-06-26 08:44:35',2,'2006-02-15 21:30:53'), +(2716,'2005-06-19 14:40:17',944,252,'2005-06-27 17:45:17',2,'2006-02-15 21:30:53'), +(2717,'2005-06-19 14:46:10',140,200,'2005-06-22 20:17:10',1,'2006-02-15 21:30:53'), +(2718,'2005-06-19 14:49:42',4443,139,'2005-06-26 19:37:42',1,'2006-02-15 21:30:53'), +(2719,'2005-06-19 14:50:19',1200,336,'2005-06-20 14:33:19',2,'2006-02-15 21:30:53'), +(2720,'2005-06-19 14:51:55',3597,504,'2005-06-27 13:06:55',1,'2006-02-15 21:30:53'), +(2721,'2005-06-19 14:53:24',3786,358,'2005-06-21 18:22:24',2,'2006-02-15 21:30:53'), +(2722,'2005-06-19 14:55:17',952,45,'2005-06-25 13:11:17',2,'2006-02-15 21:30:53'), +(2723,'2005-06-19 14:55:23',4317,277,'2005-06-20 14:28:23',1,'2006-02-15 21:30:53'), +(2724,'2005-06-19 14:57:54',3879,103,'2005-06-22 16:31:54',2,'2006-02-15 21:30:53'), +(2725,'2005-06-19 15:01:23',63,246,'2005-06-22 09:08:23',1,'2006-02-15 21:30:53'), +(2726,'2005-06-19 15:02:20',2970,420,'2005-06-21 15:38:20',1,'2006-02-15 21:30:53'), +(2727,'2005-06-19 15:02:39',3261,129,'2005-06-28 17:49:39',1,'2006-02-15 21:30:53'), +(2728,'2005-06-19 15:04:04',775,408,'2005-06-22 12:22:04',2,'2006-02-15 21:30:53'), +(2729,'2005-06-19 15:06:15',4449,510,'2005-06-27 17:58:15',2,'2006-02-15 21:30:53'), +(2730,'2005-06-19 15:10:09',1264,30,'2005-06-28 13:05:09',1,'2006-02-15 21:30:53'), +(2731,'2005-06-19 15:14:55',4218,138,'2005-06-27 14:30:55',2,'2006-02-15 21:30:53'), +(2732,'2005-06-19 15:19:39',610,386,'2005-06-25 19:39:39',2,'2006-02-15 21:30:53'), +(2733,'2005-06-19 15:21:53',1535,188,'2005-06-23 11:58:53',2,'2006-02-15 21:30:53'), +(2734,'2005-06-19 15:36:27',794,204,'2005-06-20 13:44:27',2,'2006-02-15 21:30:53'), +(2735,'2005-06-19 15:42:07',4550,29,'2005-06-22 17:28:07',1,'2006-02-15 21:30:53'), +(2736,'2005-06-19 15:43:20',4510,359,'2005-06-21 13:03:20',1,'2006-02-15 21:30:53'), +(2737,'2005-06-19 15:48:33',3131,513,'2005-06-26 18:44:33',2,'2006-02-15 21:30:53'), +(2738,'2005-06-19 15:56:30',350,75,'2005-06-20 16:14:30',2,'2006-02-15 21:30:53'), +(2739,'2005-06-19 15:58:38',213,212,'2005-06-27 15:01:38',2,'2006-02-15 21:30:53'), +(2740,'2005-06-19 15:59:04',1534,92,'2005-06-28 12:18:04',2,'2006-02-15 21:30:53'), +(2741,'2005-06-19 16:05:41',1662,36,'2005-06-20 20:48:41',1,'2006-02-15 21:30:53'), +(2742,'2005-06-19 16:05:47',4154,187,'2005-06-26 21:34:47',1,'2006-02-15 21:30:53'), +(2743,'2005-06-19 16:15:56',2611,35,'2005-06-23 12:30:56',1,'2006-02-15 21:30:53'), +(2744,'2005-06-19 16:20:40',4511,368,'2005-06-22 11:44:40',2,'2006-02-15 21:30:53'), +(2745,'2005-06-19 16:21:19',1253,26,'2005-06-21 22:07:19',2,'2006-02-15 21:30:53'), +(2746,'2005-06-19 16:21:40',933,562,'2005-06-28 11:56:40',2,'2006-02-15 21:30:53'), +(2747,'2005-06-19 16:22:07',1374,422,'2005-06-24 19:28:07',1,'2006-02-15 21:30:53'), +(2748,'2005-06-19 16:22:26',511,473,'2005-06-21 21:55:26',1,'2006-02-15 21:30:53'), +(2749,'2005-06-19 16:27:35',1540,358,'2005-06-25 21:06:35',2,'2006-02-15 21:30:53'), +(2750,'2005-06-19 16:37:24',3775,197,'2005-06-20 13:55:24',2,'2006-02-15 21:30:53'), +(2751,'2005-06-19 16:39:23',1291,148,'2005-06-25 13:57:23',1,'2006-02-15 21:30:53'), +(2752,'2005-06-19 16:44:18',386,149,'2005-06-22 12:40:18',2,'2006-02-15 21:30:53'), +(2753,'2005-06-19 16:44:35',2408,23,'2005-06-24 13:45:35',1,'2006-02-15 21:30:53'), +(2754,'2005-06-19 16:55:59',1761,267,'2005-06-26 18:11:59',1,'2006-02-15 21:30:53'), +(2755,'2005-06-19 16:56:31',946,506,'2005-06-27 12:02:31',2,'2006-02-15 21:30:53'), +(2756,'2005-06-19 16:57:42',3264,144,'2005-06-26 15:30:42',2,'2006-02-15 21:30:53'), +(2757,'2005-06-19 17:01:14',3814,243,'2005-06-28 11:38:14',1,'2006-02-15 21:30:53'), +(2758,'2005-06-19 17:04:35',3558,423,'2005-06-26 14:45:35',2,'2006-02-15 21:30:53'), +(2759,'2005-06-19 17:10:24',687,351,'2005-06-24 21:56:24',2,'2006-02-15 21:30:53'), +(2760,'2005-06-19 17:16:33',2602,192,'2005-06-26 14:58:33',1,'2006-02-15 21:30:53'), +(2761,'2005-06-19 17:22:17',2134,431,'2005-06-20 20:20:17',2,'2006-02-15 21:30:53'), +(2762,'2005-06-19 17:22:31',3431,457,'2005-06-25 22:43:31',2,'2006-02-15 21:30:53'), +(2763,'2005-06-19 17:23:34',3096,276,'2005-06-21 21:37:34',2,'2006-02-15 21:30:53'), +(2764,'2005-06-19 17:27:25',1718,479,'2005-06-28 17:18:25',2,'2006-02-15 21:30:53'), +(2765,'2005-06-19 17:34:39',1017,478,'2005-06-27 23:26:39',1,'2006-02-15 21:30:53'), +(2766,'2005-06-19 17:45:15',3421,345,'2005-06-23 20:11:15',2,'2006-02-15 21:30:53'), +(2767,'2005-06-19 17:46:35',4052,596,'2005-06-24 22:42:35',1,'2006-02-15 21:30:53'), +(2768,'2005-06-19 17:46:52',3018,129,'2005-06-25 21:49:52',1,'2006-02-15 21:30:53'), +(2769,'2005-06-19 17:52:14',1222,354,'2005-06-26 20:30:14',2,'2006-02-15 21:30:53'), +(2770,'2005-06-19 17:54:22',3042,533,'2005-06-26 23:09:22',2,'2006-02-15 21:30:53'), +(2771,'2005-06-19 17:54:48',40,262,'2005-06-27 17:14:48',1,'2006-02-15 21:30:53'), +(2772,'2005-06-19 17:59:27',1221,520,'2005-06-23 17:52:27',1,'2006-02-15 21:30:53'), +(2773,'2005-06-19 18:04:18',4155,505,'2005-06-28 23:52:18',1,'2006-02-15 21:30:53'), +(2774,'2005-06-19 18:05:11',2809,299,'2005-06-21 16:21:11',2,'2006-02-15 21:30:53'), +(2775,'2005-06-19 18:14:20',672,590,'2005-06-26 19:52:20',1,'2006-02-15 21:30:53'), +(2776,'2005-06-19 18:16:24',1726,551,'2005-06-26 14:43:24',2,'2006-02-15 21:30:53'), +(2777,'2005-06-19 18:16:26',4092,230,'2005-06-20 13:43:26',2,'2006-02-15 21:30:53'), +(2778,'2005-06-19 18:18:12',3357,422,'2005-06-28 21:43:12',1,'2006-02-15 21:30:53'), +(2779,'2005-06-19 18:19:07',1020,376,'2005-06-23 18:25:07',2,'2006-02-15 21:30:53'), +(2780,'2005-06-19 18:19:33',1513,360,'2005-06-28 22:29:33',1,'2006-02-15 21:30:53'), +(2781,'2005-06-19 18:24:42',1230,197,'2005-06-27 17:02:42',2,'2006-02-15 21:30:53'), +(2782,'2005-06-19 18:25:07',3644,156,'2005-06-22 14:10:07',1,'2006-02-15 21:30:53'), +(2783,'2005-06-19 18:29:10',2778,113,'2005-06-21 22:09:10',1,'2006-02-15 21:30:53'), +(2784,'2005-06-19 18:40:29',2305,289,'2005-06-28 15:27:29',1,'2006-02-15 21:30:53'), +(2785,'2005-06-19 18:43:57',826,137,'2005-06-24 15:36:57',2,'2006-02-15 21:30:53'), +(2786,'2005-06-19 18:46:43',2255,594,'2005-06-22 16:52:43',1,'2006-02-15 21:30:53'), +(2787,'2005-06-19 18:47:00',3371,307,'2005-06-22 20:22:00',2,'2006-02-15 21:30:53'), +(2788,'2005-06-19 18:48:11',1457,171,'2005-06-21 13:32:11',1,'2006-02-15 21:30:53'), +(2789,'2005-06-19 18:48:21',2398,514,'2005-06-21 21:50:21',1,'2006-02-15 21:30:53'), +(2790,'2005-06-19 18:49:45',202,97,'2005-06-21 00:13:45',1,'2006-02-15 21:30:53'), +(2791,'2005-06-19 18:51:27',2174,299,'2005-06-22 19:35:27',2,'2006-02-15 21:30:53'), +(2792,'2005-06-19 18:52:25',3057,437,'2005-06-23 17:39:25',1,'2006-02-15 21:30:53'), +(2793,'2005-06-19 18:52:37',732,419,'2005-06-25 19:45:37',2,'2006-02-15 21:30:53'), +(2794,'2005-06-19 18:53:05',1957,85,'2005-06-22 13:15:05',1,'2006-02-15 21:30:53'), +(2795,'2005-06-19 18:58:53',3694,129,'2005-06-28 18:56:53',1,'2006-02-15 21:30:53'), +(2796,'2005-06-19 19:00:37',2337,209,'2005-06-25 17:18:37',2,'2006-02-15 21:30:53'), +(2797,'2005-06-19 19:04:32',3222,486,'2005-06-20 22:43:32',1,'2006-02-15 21:30:53'), +(2798,'2005-06-19 19:07:48',1343,180,'2005-06-23 00:09:48',2,'2006-02-15 21:30:53'), +(2799,'2005-06-19 19:15:21',4579,576,'2005-06-21 21:35:21',1,'2006-02-15 21:30:53'), +(2800,'2005-06-19 19:15:56',183,146,'2005-06-23 00:15:56',1,'2006-02-15 21:30:53'), +(2801,'2005-06-19 19:18:09',4572,29,'2005-06-20 20:11:09',2,'2006-02-15 21:30:53'), +(2802,'2005-06-19 19:18:17',4067,489,'2005-06-21 17:58:17',2,'2006-02-15 21:30:53'), +(2803,'2005-06-19 19:18:27',103,120,'2005-06-27 21:48:27',1,'2006-02-15 21:30:53'), +(2804,'2005-06-19 19:24:54',88,426,'2005-06-25 01:19:54',2,'2006-02-15 21:30:53'), +(2805,'2005-06-19 19:29:17',2153,80,'2005-06-27 23:14:17',2,'2006-02-15 21:30:53'), +(2806,'2005-06-19 19:30:48',2114,510,'2005-06-20 19:42:48',2,'2006-02-15 21:30:53'), +(2807,'2005-06-19 19:32:53',2825,194,'2005-06-25 00:30:53',2,'2006-02-15 21:30:53'), +(2808,'2005-06-19 19:34:45',65,325,'2005-06-27 14:49:45',1,'2006-02-15 21:30:53'), +(2809,'2005-06-19 19:40:27',1786,44,'2005-06-27 15:28:27',2,'2006-02-15 21:30:53'), +(2810,'2005-06-19 19:44:12',2558,67,'2005-06-20 19:41:12',2,'2006-02-15 21:30:53'), +(2811,'2005-06-19 19:53:30',3890,457,'2005-06-22 23:21:30',2,'2006-02-15 21:30:53'), +(2812,'2005-06-19 19:58:16',3016,211,'2005-06-26 15:26:16',1,'2006-02-15 21:30:53'), +(2813,'2005-06-19 20:01:47',3420,284,'2005-06-27 01:51:47',1,'2006-02-15 21:30:53'), +(2814,'2005-06-19 20:01:59',1783,10,'2005-06-26 01:28:59',2,'2006-02-15 21:30:53'), +(2815,'2005-06-19 20:03:29',3046,27,'2005-06-25 22:50:29',2,'2006-02-15 21:30:53'), +(2816,'2005-06-19 20:04:23',2180,94,'2005-06-20 21:09:23',2,'2006-02-15 21:30:53'), +(2817,'2005-06-19 20:05:22',3476,510,'2005-06-24 23:29:22',1,'2006-02-15 21:30:53'), +(2818,'2005-06-19 20:05:52',2376,497,'2005-06-22 01:01:52',2,'2006-02-15 21:30:53'), +(2819,'2005-06-19 20:13:33',4100,82,'2005-06-26 16:44:33',1,'2006-02-15 21:30:53'), +(2820,'2005-06-19 20:20:33',851,316,'2005-06-26 20:32:33',1,'2006-02-15 21:30:53'), +(2821,'2005-06-19 20:26:52',2551,532,'2005-06-27 23:48:52',1,'2006-02-15 21:30:53'), +(2822,'2005-06-19 20:29:24',3599,48,'2005-06-23 02:21:24',1,'2006-02-15 21:30:53'), +(2823,'2005-06-19 20:30:21',3566,260,'2005-06-26 17:58:21',1,'2006-02-15 21:30:53'), +(2824,'2005-06-19 20:31:45',2878,506,'2005-06-29 00:40:45',2,'2006-02-15 21:30:53'), +(2825,'2005-06-19 20:32:19',2601,418,'2005-06-22 22:32:19',1,'2006-02-15 21:30:53'), +(2826,'2005-06-19 20:41:35',2980,125,'2005-06-25 17:23:35',1,'2006-02-15 21:30:53'), +(2827,'2005-06-19 20:50:01',2745,23,'2005-06-20 18:54:01',2,'2006-02-15 21:30:53'), +(2828,'2005-06-19 20:51:33',3230,526,'2005-06-25 17:38:33',1,'2006-02-15 21:30:53'), +(2829,'2005-06-19 21:11:30',2047,341,'2005-06-24 18:10:30',1,'2006-02-15 21:30:53'), +(2830,'2005-06-19 21:14:33',2080,21,'2005-06-21 17:46:33',1,'2006-02-15 21:30:53'), +(2831,'2005-06-19 21:17:06',4089,468,'2005-06-22 16:56:06',2,'2006-02-15 21:30:53'), +(2832,'2005-06-19 21:21:53',828,593,'2005-06-28 23:00:53',1,'2006-02-15 21:30:53'), +(2833,'2005-06-19 21:34:54',1976,232,'2005-06-28 16:21:54',1,'2006-02-15 21:30:53'), +(2834,'2005-06-19 21:41:46',2876,122,'2005-06-24 20:47:46',1,'2006-02-15 21:30:53'), +(2835,'2005-06-19 21:44:11',4411,89,'2005-06-26 16:46:11',2,'2006-02-15 21:30:53'), +(2836,'2005-06-19 21:58:21',1453,306,'2005-06-27 00:41:21',2,'2006-02-15 21:30:53'), +(2837,'2005-06-19 22:03:50',417,371,'2005-06-20 21:24:50',1,'2006-02-15 21:30:53'), +(2838,'2005-06-19 22:06:06',143,292,'2005-06-25 22:30:06',1,'2006-02-15 21:30:53'), +(2839,'2005-06-19 22:07:24',3856,256,'2005-06-23 16:37:24',2,'2006-02-15 21:30:53'), +(2840,'2005-06-19 22:17:44',1102,236,'2005-06-26 00:36:44',2,'2006-02-15 21:30:53'), +(2841,'2005-06-19 22:21:06',614,193,'2005-06-28 00:56:06',1,'2006-02-15 21:30:53'), +(2842,'2005-06-19 22:34:20',4183,217,'2005-06-22 03:46:20',2,'2006-02-15 21:30:53'), +(2843,'2005-06-19 22:36:39',1520,148,'2005-06-26 22:33:39',2,'2006-02-15 21:30:53'), +(2844,'2005-06-19 22:40:12',4452,178,'2005-06-24 03:58:12',2,'2006-02-15 21:30:53'), +(2845,'2005-06-19 22:46:37',3948,583,'2005-06-23 03:31:37',1,'2006-02-15 21:30:53'), +(2846,'2005-06-19 22:52:14',651,193,'2005-06-22 17:12:14',1,'2006-02-15 21:30:53'), +(2847,'2005-06-19 22:54:01',1247,148,'2005-06-27 23:05:01',2,'2006-02-15 21:30:53'), +(2848,'2005-06-19 22:55:37',3449,19,'2005-06-25 23:10:37',1,'2006-02-15 21:30:53'), +(2849,'2005-06-19 23:06:00',3628,283,'2005-06-25 18:36:00',1,'2006-02-15 21:30:53'), +(2850,'2005-06-19 23:06:28',206,262,'2005-06-28 03:30:28',2,'2006-02-15 21:30:53'), +(2851,'2005-06-19 23:07:03',2168,361,'2005-06-22 17:26:03',1,'2006-02-15 21:30:53'), +(2852,'2005-06-19 23:08:50',2695,453,'2005-06-26 04:00:50',1,'2006-02-15 21:30:53'), +(2853,'2005-06-19 23:09:41',2578,453,'2005-06-28 00:51:41',2,'2006-02-15 21:30:53'), +(2854,'2005-06-19 23:11:48',4453,81,'2005-06-23 19:37:48',2,'2006-02-15 21:30:53'), +(2855,'2005-06-19 23:11:49',3495,483,'2005-06-26 21:52:49',1,'2006-02-15 21:30:53'), +(2856,'2005-06-19 23:13:04',1859,210,'2005-06-23 22:47:04',1,'2006-02-15 21:30:53'), +(2857,'2005-06-19 23:15:15',2886,364,'2005-06-25 04:24:15',2,'2006-02-15 21:30:53'), +(2858,'2005-06-19 23:17:11',2628,268,'2005-06-21 19:07:11',1,'2006-02-15 21:30:53'), +(2859,'2005-06-19 23:18:42',126,147,'2005-06-20 22:38:42',1,'2006-02-15 21:30:53'), +(2860,'2005-06-19 23:20:40',3045,107,'2005-06-21 04:59:40',1,'2006-02-15 21:30:53'), +(2861,'2005-06-19 23:21:34',1489,116,'2005-06-26 17:32:34',1,'2006-02-15 21:30:53'), +(2862,'2005-06-19 23:47:24',4260,52,'2005-06-23 03:39:24',2,'2006-02-15 21:30:53'), +(2863,'2005-06-19 23:58:38',2410,228,'2005-06-23 23:27:38',2,'2006-02-15 21:30:53'), +(2864,'2005-06-20 00:00:52',1056,493,'2005-06-26 04:21:52',2,'2006-02-15 21:30:53'), +(2865,'2005-06-20 00:00:55',1569,10,'2005-06-21 02:20:55',1,'2006-02-15 21:30:53'), +(2866,'2005-06-20 00:01:36',2718,44,'2005-06-20 21:39:36',1,'2006-02-15 21:30:53'), +(2867,'2005-06-20 00:08:38',95,483,'2005-06-23 19:35:38',1,'2006-02-15 21:30:53'), +(2868,'2005-06-20 00:08:58',1213,214,'2005-06-25 21:23:58',2,'2006-02-15 21:30:53'), +(2869,'2005-06-20 00:09:25',1331,155,'2005-06-24 04:40:25',2,'2006-02-15 21:30:53'), +(2870,'2005-06-20 00:17:46',214,467,'2005-06-28 20:21:46',1,'2006-02-15 21:30:53'), +(2871,'2005-06-20 00:27:49',1731,443,'2005-06-29 01:36:49',1,'2006-02-15 21:30:53'), +(2872,'2005-06-20 00:38:21',3779,240,'2005-06-26 19:56:21',1,'2006-02-15 21:30:53'), +(2873,'2005-06-20 00:41:25',3321,160,'2005-06-25 02:06:25',1,'2006-02-15 21:30:53'), +(2874,'2005-06-20 00:42:26',331,166,'2005-06-28 01:37:26',2,'2006-02-15 21:30:53'), +(2875,'2005-06-20 00:47:18',3012,186,'2005-06-25 18:54:18',2,'2006-02-15 21:30:53'), +(2876,'2005-06-20 01:06:34',3117,39,'2005-06-23 04:55:34',1,'2006-02-15 21:30:53'), +(2877,'2005-06-20 01:07:16',485,267,'2005-06-24 01:05:16',1,'2006-02-15 21:30:53'), +(2878,'2005-06-20 01:09:14',4120,88,'2005-06-21 21:40:14',2,'2006-02-15 21:30:53'), +(2879,'2005-06-20 01:24:10',1920,583,'2005-06-28 20:12:10',2,'2006-02-15 21:30:53'), +(2880,'2005-06-20 01:24:54',1700,193,'2005-06-23 02:42:54',2,'2006-02-15 21:30:53'), +(2881,'2005-06-20 01:26:18',1391,307,'2005-06-26 23:42:18',1,'2006-02-15 21:30:53'), +(2882,'2005-06-20 01:26:26',205,152,'2005-06-21 19:33:26',1,'2006-02-15 21:30:53'), +(2883,'2005-06-20 01:29:10',585,320,'2005-06-28 06:12:10',1,'2006-02-15 21:30:53'), +(2884,'2005-06-20 01:31:16',3384,319,'2005-06-21 04:03:16',2,'2006-02-15 21:30:53'), +(2885,'2005-06-20 01:33:42',2701,330,'2005-06-22 22:23:42',1,'2006-02-15 21:30:53'), +(2886,'2005-06-20 01:38:39',1755,154,'2005-06-23 04:28:39',2,'2006-02-15 21:30:53'), +(2887,'2005-06-20 01:39:43',1073,453,'2005-06-25 05:22:43',2,'2006-02-15 21:30:53'), +(2888,'2005-06-20 01:50:56',468,7,'2005-06-22 05:05:56',2,'2006-02-15 21:30:53'), +(2889,'2005-06-20 01:54:08',151,213,'2005-06-23 06:33:08',1,'2006-02-15 21:30:53'), +(2890,'2005-06-20 02:00:45',3437,392,'2005-06-27 21:12:45',1,'2006-02-15 21:30:53'), +(2891,'2005-06-20 02:02:05',343,32,'2005-06-25 02:45:05',1,'2006-02-15 21:30:53'), +(2892,'2005-06-20 02:06:39',2993,430,'2005-06-21 02:50:39',2,'2006-02-15 21:30:53'), +(2893,'2005-06-20 02:22:08',397,153,'2005-06-26 21:01:08',2,'2006-02-15 21:30:53'), +(2894,'2005-06-20 02:22:42',4316,76,'2005-06-22 00:38:42',1,'2006-02-15 21:30:53'), +(2895,'2005-06-20 02:26:31',4445,141,'2005-06-27 23:42:31',2,'2006-02-15 21:30:53'), +(2896,'2005-06-20 02:33:42',1086,40,'2005-06-26 05:29:42',2,'2006-02-15 21:30:53'), +(2897,'2005-06-20 02:34:23',3464,107,'2005-06-25 05:29:23',1,'2006-02-15 21:30:53'), +(2898,'2005-06-20 02:38:06',3106,178,'2005-06-29 08:18:06',2,'2006-02-15 21:30:53'), +(2899,'2005-06-20 02:39:21',1919,459,'2005-06-23 06:47:21',1,'2006-02-15 21:30:53'), +(2900,'2005-06-20 02:40:04',3407,294,'2005-06-27 20:47:04',2,'2006-02-15 21:30:53'), +(2901,'2005-06-20 02:41:28',667,25,'2005-06-23 04:43:28',2,'2006-02-15 21:30:53'), +(2902,'2005-06-20 02:45:35',2787,304,'2005-06-26 07:51:35',1,'2006-02-15 21:30:53'), +(2903,'2005-06-20 02:49:01',3580,53,'2005-06-25 05:03:01',2,'2006-02-15 21:30:53'), +(2904,'2005-06-20 02:54:06',2195,55,'2005-06-21 06:57:06',2,'2006-02-15 21:30:53'), +(2905,'2005-06-20 02:56:16',3898,189,'2005-06-24 23:51:16',2,'2006-02-15 21:30:53'), +(2906,'2005-06-20 03:04:56',1087,58,'2005-06-23 05:57:56',2,'2006-02-15 21:30:53'), +(2907,'2005-06-20 03:15:09',2516,208,'2005-06-20 21:56:09',2,'2006-02-15 21:30:53'), +(2908,'2005-06-20 03:16:52',517,91,'2005-06-22 08:46:52',1,'2006-02-15 21:30:53'), +(2909,'2005-06-20 03:19:10',1701,451,'2005-06-25 06:06:10',2,'2006-02-15 21:30:53'), +(2910,'2005-06-20 03:31:18',630,57,'2005-06-28 00:35:18',1,'2006-02-15 21:30:53'), +(2911,'2005-06-20 03:32:37',3645,502,'2005-06-22 22:06:37',1,'2006-02-15 21:30:53'), +(2912,'2005-06-20 03:32:45',1076,196,'2005-06-21 23:32:45',1,'2006-02-15 21:30:53'), +(2913,'2005-06-20 03:42:27',3456,402,'2005-06-23 04:47:27',1,'2006-02-15 21:30:53'), +(2914,'2005-06-20 03:43:18',2419,342,'2005-06-25 03:44:18',2,'2006-02-15 21:30:53'), +(2915,'2005-06-20 03:57:17',1293,262,'2005-06-24 05:59:17',2,'2006-02-15 21:30:53'), +(2916,'2005-06-20 04:01:04',3086,590,'2005-06-27 22:40:04',2,'2006-02-15 21:30:53'), +(2917,'2005-06-20 04:08:35',647,451,'2005-06-24 01:17:35',1,'2006-02-15 21:30:53'), +(2918,'2005-06-20 04:09:04',1985,215,'2005-06-21 10:07:04',1,'2006-02-15 21:30:53'), +(2919,'2005-06-20 04:10:16',2835,509,'2005-06-27 06:34:16',1,'2006-02-15 21:30:53'), +(2920,'2005-06-20 04:12:46',487,588,'2005-06-26 23:34:46',2,'2006-02-15 21:30:53'), +(2921,'2005-06-20 04:13:04',1785,59,'2005-06-28 01:28:04',1,'2006-02-15 21:30:53'), +(2922,'2005-06-20 04:13:47',1671,176,'2005-06-22 04:38:47',2,'2006-02-15 21:30:53'), +(2923,'2005-06-20 04:16:07',109,29,'2005-06-21 05:04:07',1,'2006-02-15 21:30:53'), +(2924,'2005-06-20 04:20:14',580,132,'2005-06-21 01:13:14',1,'2006-02-15 21:30:53'), +(2925,'2005-06-20 04:23:49',804,301,'2005-06-22 04:37:49',2,'2006-02-15 21:30:53'), +(2926,'2005-06-20 04:37:45',1055,379,'2005-06-26 02:17:45',1,'2006-02-15 21:30:53'), +(2927,'2005-06-20 04:41:41',393,403,'2005-06-23 01:59:41',1,'2006-02-15 21:30:53'), +(2928,'2005-06-20 04:43:45',1265,104,'2005-06-21 06:58:45',2,'2006-02-15 21:30:53'), +(2929,'2005-06-20 04:47:39',3389,333,'2005-06-25 23:16:39',2,'2006-02-15 21:30:53'), +(2930,'2005-06-20 04:50:29',3615,585,'2005-06-28 06:00:29',2,'2006-02-15 21:30:53'), +(2931,'2005-06-20 04:50:45',3122,258,'2005-06-29 09:18:45',1,'2006-02-15 21:30:53'), +(2932,'2005-06-20 04:51:19',4418,526,'2005-06-29 08:31:19',1,'2006-02-15 21:30:53'), +(2933,'2005-06-20 04:52:23',4483,323,'2005-06-26 07:12:23',2,'2006-02-15 21:30:53'), +(2934,'2005-06-20 05:05:53',697,228,'2005-06-22 02:44:53',1,'2006-02-15 21:30:53'), +(2935,'2005-06-20 05:07:24',2735,384,'2005-06-28 09:17:24',2,'2006-02-15 21:30:53'), +(2936,'2005-06-20 05:09:27',2675,330,'2005-06-26 10:16:27',2,'2006-02-15 21:30:53'), +(2937,'2005-06-20 05:15:37',1998,15,'2005-06-27 02:45:37',1,'2006-02-15 21:30:53'), +(2938,'2005-06-20 05:17:22',1795,504,'2005-06-26 09:38:22',1,'2006-02-15 21:30:53'), +(2939,'2005-06-20 05:18:16',2638,203,'2005-06-26 06:56:16',1,'2006-02-15 21:30:53'), +(2940,'2005-06-20 05:20:01',2504,73,'2005-06-28 06:11:01',2,'2006-02-15 21:30:53'), +(2941,'2005-06-20 05:22:18',3632,135,'2005-06-26 07:40:18',2,'2006-02-15 21:30:53'), +(2942,'2005-06-20 05:27:31',999,242,'2005-06-29 00:35:31',1,'2006-02-15 21:30:53'), +(2943,'2005-06-20 05:43:05',2591,418,'2005-06-25 04:31:05',1,'2006-02-15 21:30:53'), +(2944,'2005-06-20 05:43:42',1550,474,'2005-06-29 09:40:42',2,'2006-02-15 21:30:53'), +(2945,'2005-06-20 05:49:27',4193,153,'2005-06-26 09:48:27',1,'2006-02-15 21:30:53'), +(2946,'2005-06-20 05:50:40',3737,213,'2005-06-21 00:42:40',2,'2006-02-15 21:30:53'), +(2947,'2005-06-20 06:00:21',4302,151,'2005-06-23 10:04:21',2,'2006-02-15 21:30:53'), +(2948,'2005-06-20 06:02:35',4254,289,'2005-06-29 09:12:35',2,'2006-02-15 21:30:53'), +(2949,'2005-06-20 06:05:53',375,78,'2005-06-29 03:19:53',2,'2006-02-15 21:30:53'), +(2950,'2005-06-20 06:08:36',1438,561,'2005-06-27 07:45:36',2,'2006-02-15 21:30:53'), +(2951,'2005-06-20 06:23:01',2903,404,'2005-06-24 00:26:01',2,'2006-02-15 21:30:53'), +(2952,'2005-06-20 06:26:57',3759,13,'2005-06-22 11:51:57',1,'2006-02-15 21:30:53'), +(2953,'2005-06-20 06:39:11',1829,540,'2005-06-26 06:19:11',1,'2006-02-15 21:30:53'), +(2954,'2005-06-20 06:45:00',377,336,'2005-06-23 11:43:00',1,'2006-02-15 21:30:53'), +(2955,'2005-06-20 06:46:35',2312,244,'2005-06-25 05:34:35',2,'2006-02-15 21:30:53'), +(2956,'2005-06-20 06:47:23',2684,533,'2005-06-22 07:24:23',2,'2006-02-15 21:30:53'), +(2957,'2005-06-20 06:53:47',4034,542,'2005-06-29 09:21:47',2,'2006-02-15 21:30:53'), +(2958,'2005-06-20 06:56:20',1380,260,'2005-06-29 02:33:20',2,'2006-02-15 21:30:53'), +(2959,'2005-06-20 07:07:54',4185,372,'2005-06-27 03:31:54',1,'2006-02-15 21:30:53'), +(2960,'2005-06-20 07:10:09',3970,16,'2005-06-26 08:14:09',2,'2006-02-15 21:30:53'), +(2961,'2005-06-20 07:29:15',4539,399,'2005-06-24 08:05:15',1,'2006-02-15 21:30:53'), +(2962,'2005-06-20 07:31:55',2978,364,'2005-06-26 04:43:55',1,'2006-02-15 21:30:53'), +(2963,'2005-06-20 07:33:09',1444,24,'2005-06-28 09:23:09',1,'2006-02-15 21:30:53'), +(2964,'2005-06-20 07:33:29',1201,590,'2005-06-29 12:48:29',1,'2006-02-15 21:30:53'), +(2965,'2005-06-20 07:33:38',27,46,'2005-06-29 11:45:38',1,'2006-02-15 21:30:53'), +(2966,'2005-06-20 07:39:33',3483,511,'2005-06-29 07:48:33',1,'2006-02-15 21:30:53'), +(2967,'2005-06-20 07:40:35',4243,311,'2005-06-29 05:50:35',2,'2006-02-15 21:30:53'), +(2968,'2005-06-20 07:41:47',4415,252,'2005-06-23 04:27:47',1,'2006-02-15 21:30:53'), +(2969,'2005-06-20 07:44:27',1748,418,'2005-06-22 06:12:27',2,'2006-02-15 21:30:53'), +(2970,'2005-06-20 07:51:51',1167,449,'2005-06-28 10:14:51',2,'2006-02-15 21:30:53'), +(2971,'2005-06-20 07:56:00',1585,410,'2005-06-27 11:38:00',2,'2006-02-15 21:30:53'), +(2972,'2005-06-20 07:57:54',2232,531,'2005-06-21 12:48:54',1,'2006-02-15 21:30:53'), +(2973,'2005-06-20 07:59:27',2626,96,'2005-06-24 12:31:27',1,'2006-02-15 21:30:53'), +(2974,'2005-06-20 08:00:24',2322,472,'2005-06-25 05:10:24',2,'2006-02-15 21:30:53'), +(2975,'2005-06-20 08:06:18',4534,46,'2005-06-21 08:01:18',1,'2006-02-15 21:30:53'), +(2976,'2005-06-20 08:09:11',4210,55,'2005-06-21 10:45:11',1,'2006-02-15 21:30:53'), +(2977,'2005-06-20 08:15:27',2645,571,'2005-06-29 04:30:27',2,'2006-02-15 21:30:53'), +(2978,'2005-06-20 08:25:16',4364,548,'2005-06-23 05:42:16',1,'2006-02-15 21:30:53'), +(2979,'2005-06-20 08:31:05',3961,589,'2005-06-27 12:25:05',1,'2006-02-15 21:30:53'), +(2980,'2005-06-20 08:35:03',310,343,'2005-06-29 07:57:03',2,'2006-02-15 21:30:53'), +(2981,'2005-06-20 08:35:17',522,387,'2005-06-28 09:14:17',1,'2006-02-15 21:30:53'), +(2982,'2005-06-20 08:38:29',2574,130,'2005-06-28 13:21:29',1,'2006-02-15 21:30:53'), +(2983,'2005-06-20 08:41:42',1349,322,'2005-06-29 04:02:42',2,'2006-02-15 21:30:53'), +(2984,'2005-06-20 08:43:44',1819,435,'2005-06-22 03:08:44',2,'2006-02-15 21:30:53'), +(2985,'2005-06-20 08:45:08',122,154,'2005-06-22 04:26:08',2,'2006-02-15 21:30:53'), +(2986,'2005-06-20 08:50:28',478,556,'2005-06-26 05:24:28',2,'2006-02-15 21:30:53'), +(2987,'2005-06-20 08:55:50',1531,349,'2005-06-28 13:02:50',2,'2006-02-15 21:30:53'), +(2988,'2005-06-20 08:59:08',3160,557,'2005-06-28 04:31:08',2,'2006-02-15 21:30:53'), +(2989,'2005-06-20 08:59:37',1586,56,'2005-06-22 03:27:37',2,'2006-02-15 21:30:53'), +(2990,'2005-06-20 09:02:51',4559,18,'2005-06-29 13:19:51',2,'2006-02-15 21:30:53'), +(2991,'2005-06-20 09:10:43',4308,472,'2005-06-23 13:04:43',1,'2006-02-15 21:30:53'), +(2992,'2005-06-20 09:11:51',3347,439,'2005-06-24 05:59:51',1,'2006-02-15 21:30:53'), +(2993,'2005-06-20 09:12:12',1527,40,'2005-06-22 13:36:12',2,'2006-02-15 21:30:53'), +(2994,'2005-06-20 09:17:05',1290,163,'2005-06-29 04:41:05',1,'2006-02-15 21:30:53'), +(2995,'2005-06-20 09:18:22',4544,573,'2005-06-26 14:31:22',1,'2006-02-15 21:30:53'), +(2996,'2005-06-20 09:20:29',4064,500,'2005-06-27 09:18:29',1,'2006-02-15 21:30:53'), +(2997,'2005-06-20 09:23:45',1449,519,'2005-06-29 08:15:45',1,'2006-02-15 21:30:53'), +(2998,'2005-06-20 09:30:22',1288,380,'2005-06-24 06:31:22',2,'2006-02-15 21:30:53'), +(2999,'2005-06-20 09:30:34',735,295,'2005-06-26 05:51:34',2,'2006-02-15 21:30:53'), +(3000,'2005-06-20 09:32:33',549,50,'2005-06-22 07:45:33',1,'2006-02-15 21:30:53'), +(3001,'2005-06-20 09:50:16',2941,393,'2005-06-28 05:13:16',2,'2006-02-15 21:30:53'), +(3002,'2005-06-20 09:56:12',2749,266,'2005-06-24 12:15:12',2,'2006-02-15 21:30:53'), +(3003,'2005-06-20 10:00:51',616,38,'2005-06-22 06:28:51',2,'2006-02-15 21:30:53'), +(3004,'2005-06-20 10:04:36',2836,113,'2005-06-23 07:38:36',2,'2006-02-15 21:30:53'), +(3005,'2005-06-20 10:10:29',286,598,'2005-06-28 15:48:29',2,'2006-02-15 21:30:53'), +(3006,'2005-06-20 10:10:29',1677,133,'2005-06-22 07:26:29',2,'2006-02-15 21:30:53'), +(3007,'2005-06-20 10:11:53',1950,7,'2005-06-25 04:51:53',2,'2006-02-15 21:30:53'), +(3008,'2005-06-20 10:23:25',3383,202,'2005-06-26 11:00:25',2,'2006-02-15 21:30:53'), +(3009,'2005-06-20 10:24:44',2721,280,'2005-06-23 13:39:44',1,'2006-02-15 21:30:53'), +(3010,'2005-06-20 10:29:59',1298,567,'2005-06-27 06:52:59',1,'2006-02-15 21:30:53'), +(3011,'2005-06-20 10:39:10',4376,147,'2005-06-28 07:02:10',2,'2006-02-15 21:30:53'), +(3012,'2005-06-20 10:43:13',1392,206,'2005-06-28 10:07:13',2,'2006-02-15 21:30:53'), +(3013,'2005-06-20 10:45:09',4146,290,'2005-06-26 04:55:09',1,'2006-02-15 21:30:53'), +(3014,'2005-06-20 10:45:20',2179,434,'2005-06-23 06:29:20',1,'2006-02-15 21:30:53'), +(3015,'2005-06-20 10:48:56',1311,23,'2005-06-26 11:30:56',2,'2006-02-15 21:30:53'), +(3016,'2005-06-20 10:55:08',3514,558,'2005-06-24 14:05:08',1,'2006-02-15 21:30:53'), +(3017,'2005-06-20 11:08:56',2513,151,'2005-06-28 16:26:56',1,'2006-02-15 21:30:53'), +(3018,'2005-06-20 11:10:35',4150,112,'2005-06-25 07:17:35',2,'2006-02-15 21:30:53'), +(3019,'2005-06-20 11:11:52',491,144,'2005-06-27 08:30:52',2,'2006-02-15 21:30:53'), +(3020,'2005-06-20 11:12:04',4363,74,'2005-06-27 07:31:04',2,'2006-02-15 21:30:53'), +(3021,'2005-06-20 11:13:01',120,62,'2005-06-28 16:15:01',2,'2006-02-15 21:30:53'), +(3022,'2005-06-20 11:17:20',3745,466,'2005-06-26 13:15:20',2,'2006-02-15 21:30:53'), +(3023,'2005-06-20 11:18:11',4304,106,'2005-06-21 12:43:11',1,'2006-02-15 21:30:53'), +(3024,'2005-06-20 11:29:17',1966,328,'2005-06-27 12:51:17',2,'2006-02-15 21:30:53'), +(3025,'2005-06-20 11:46:48',1309,293,'2005-06-22 08:43:48',1,'2006-02-15 21:30:53'), +(3026,'2005-06-20 11:48:00',4032,347,'2005-06-21 12:51:00',2,'2006-02-15 21:30:53'), +(3027,'2005-06-20 11:50:30',4028,397,'2005-06-25 15:58:30',2,'2006-02-15 21:30:53'), +(3028,'2005-06-20 11:50:52',886,264,'2005-06-21 11:05:52',2,'2006-02-15 21:30:53'), +(3029,'2005-06-20 11:51:30',327,317,'2005-06-25 16:42:30',1,'2006-02-15 21:30:53'), +(3030,'2005-06-20 11:51:59',1543,395,'2005-06-24 10:51:59',1,'2006-02-15 21:30:53'), +(3031,'2005-06-20 11:52:49',1184,491,'2005-06-22 07:00:49',1,'2006-02-15 21:30:53'), +(3032,'2005-06-20 11:58:30',3734,172,'2005-06-24 09:49:30',1,'2006-02-15 21:30:53'), +(3033,'2005-06-20 12:02:05',4422,107,'2005-06-26 15:58:05',1,'2006-02-15 21:30:53'), +(3034,'2005-06-20 12:15:50',2755,296,'2005-06-24 06:21:50',2,'2006-02-15 21:30:53'), +(3035,'2005-06-20 12:17:03',1223,62,'2005-06-26 17:42:03',2,'2006-02-15 21:30:53'), +(3036,'2005-06-20 12:18:31',4463,399,'2005-06-29 09:52:31',1,'2006-02-15 21:30:53'), +(3037,'2005-06-20 12:28:03',2033,434,'2005-06-21 08:21:03',1,'2006-02-15 21:30:53'), +(3038,'2005-06-20 12:28:59',2919,27,'2005-06-25 07:48:59',1,'2006-02-15 21:30:53'), +(3039,'2005-06-20 12:32:30',4098,186,'2005-06-21 07:38:30',1,'2006-02-15 21:30:53'), +(3040,'2005-06-20 12:34:13',2568,162,'2005-06-21 12:33:13',1,'2006-02-15 21:30:53'), +(3041,'2005-06-20 12:35:44',2676,459,'2005-06-23 18:28:44',2,'2006-02-15 21:30:53'), +(3042,'2005-06-20 12:38:27',3103,291,'2005-06-26 11:18:27',1,'2006-02-15 21:30:53'), +(3043,'2005-06-20 12:38:35',633,599,'2005-06-29 14:16:35',2,'2006-02-15 21:30:53'), +(3044,'2005-06-20 12:38:49',3216,424,'2005-06-25 07:49:49',1,'2006-02-15 21:30:53'), +(3045,'2005-06-20 12:42:00',3065,459,'2005-06-23 10:49:00',2,'2006-02-15 21:30:53'), +(3046,'2005-06-20 12:42:59',471,559,'2005-06-26 17:40:59',2,'2006-02-15 21:30:53'), +(3047,'2005-06-20 12:45:33',624,13,'2005-06-29 13:09:33',2,'2006-02-15 21:30:53'), +(3048,'2005-06-20 12:49:55',4389,482,'2005-06-26 11:06:55',1,'2006-02-15 21:30:53'), +(3049,'2005-06-20 12:51:01',518,403,'2005-06-29 10:53:01',1,'2006-02-15 21:30:53'), +(3050,'2005-06-20 13:03:03',2397,557,'2005-06-29 07:22:03',1,'2006-02-15 21:30:53'), +(3051,'2005-06-20 13:06:52',1408,65,'2005-06-25 13:03:52',2,'2006-02-15 21:30:53'), +(3052,'2005-06-20 13:09:19',2359,329,'2005-06-29 11:55:19',2,'2006-02-15 21:30:53'), +(3053,'2005-06-20 13:10:30',818,329,'2005-06-25 17:22:30',2,'2006-02-15 21:30:53'), +(3054,'2005-06-20 13:16:41',2817,322,'2005-06-28 13:45:41',2,'2006-02-15 21:30:53'), +(3055,'2005-06-20 13:19:58',1510,23,'2005-06-27 14:54:58',1,'2006-02-15 21:30:53'), +(3056,'2005-06-20 13:20:58',2010,95,'2005-06-26 08:35:58',2,'2006-02-15 21:30:53'), +(3057,'2005-06-20 13:22:48',1101,307,'2005-06-26 17:22:48',2,'2006-02-15 21:30:53'), +(3058,'2005-06-20 13:28:35',938,137,'2005-06-28 13:57:35',2,'2006-02-15 21:30:53'), +(3059,'2005-06-20 13:38:41',2911,266,'2005-06-21 10:13:41',2,'2006-02-15 21:30:53'), +(3060,'2005-06-20 13:47:20',2075,446,'2005-06-25 16:00:20',2,'2006-02-15 21:30:53'), +(3061,'2005-06-20 13:48:21',4202,330,'2005-06-22 17:36:21',2,'2006-02-15 21:30:53'), +(3062,'2005-06-20 13:50:00',591,75,'2005-06-27 08:18:00',1,'2006-02-15 21:30:53'), +(3063,'2005-06-20 13:52:03',3954,515,'2005-06-28 13:36:03',2,'2006-02-15 21:30:53'), +(3064,'2005-06-20 13:53:13',2624,276,'2005-06-25 16:33:13',2,'2006-02-15 21:30:53'), +(3065,'2005-06-20 13:53:53',1687,227,'2005-06-24 11:31:53',1,'2006-02-15 21:30:53'), +(3066,'2005-06-20 13:55:41',1116,268,'2005-06-26 09:38:41',2,'2006-02-15 21:30:53'), +(3067,'2005-06-20 13:59:21',3094,349,'2005-06-28 19:09:21',2,'2006-02-15 21:30:53'), +(3068,'2005-06-20 14:02:22',1958,516,'2005-06-22 12:52:22',2,'2006-02-15 21:30:53'), +(3069,'2005-06-20 14:13:00',1952,237,'2005-06-28 10:57:00',1,'2006-02-15 21:30:53'), +(3070,'2005-06-20 14:15:39',3860,543,'2005-06-25 12:52:39',2,'2006-02-15 21:30:53'), +(3071,'2005-06-20 14:20:42',1198,582,'2005-06-24 19:01:42',1,'2006-02-15 21:30:53'), +(3072,'2005-06-20 14:21:31',4131,423,'2005-06-27 18:46:31',2,'2006-02-15 21:30:53'), +(3073,'2005-06-20 14:33:26',3164,471,'2005-06-26 08:42:26',2,'2006-02-15 21:30:53'), +(3074,'2005-06-20 14:41:41',1441,299,'2005-06-21 15:56:41',1,'2006-02-15 21:30:53'), +(3075,'2005-06-20 14:52:19',4346,161,'2005-06-28 18:48:19',2,'2006-02-15 21:30:53'), +(3076,'2005-06-20 15:01:19',1344,109,'2005-06-28 16:53:19',2,'2006-02-15 21:30:53'), +(3077,'2005-06-20 15:05:18',1675,303,'2005-06-26 20:52:18',2,'2006-02-15 21:30:53'), +(3078,'2005-06-20 15:09:48',3642,367,'2005-06-24 16:54:48',1,'2006-02-15 21:30:53'), +(3079,'2005-06-20 15:13:40',2135,350,'2005-06-21 12:03:40',1,'2006-02-15 21:30:53'), +(3080,'2005-06-20 15:22:32',118,377,'2005-06-24 11:08:32',1,'2006-02-15 21:30:53'), +(3081,'2005-06-20 15:29:13',2071,342,'2005-06-24 21:00:13',2,'2006-02-15 21:30:53'), +(3082,'2005-06-20 15:32:11',4431,164,'2005-06-28 13:08:11',1,'2006-02-15 21:30:53'), +(3083,'2005-06-20 15:33:47',2896,257,'2005-06-26 16:14:47',2,'2006-02-15 21:30:53'), +(3084,'2005-06-20 15:35:24',3578,514,'2005-06-23 19:11:24',1,'2006-02-15 21:30:53'), +(3085,'2005-06-20 15:42:33',4282,166,'2005-06-21 16:51:33',2,'2006-02-15 21:30:53'), +(3086,'2005-06-20 15:42:40',4437,377,'2005-06-25 19:21:40',1,'2006-02-15 21:30:53'), +(3087,'2005-06-20 15:53:59',1305,111,'2005-06-27 10:54:59',2,'2006-02-15 21:30:53'), +(3088,'2005-06-20 15:56:05',3049,384,'2005-06-29 13:02:05',1,'2006-02-15 21:30:53'), +(3089,'2005-06-20 15:57:01',539,151,'2005-06-25 13:15:01',2,'2006-02-15 21:30:53'), +(3090,'2005-06-20 16:00:19',3301,267,'2005-06-23 14:55:19',1,'2006-02-15 21:30:53'), +(3091,'2005-06-20 16:02:59',854,383,'2005-06-22 21:30:59',2,'2006-02-15 21:30:53'), +(3092,'2005-06-20 16:04:42',4344,347,'2005-06-27 19:54:42',1,'2006-02-15 21:30:53'), +(3093,'2005-06-20 16:06:14',2534,556,'2005-06-22 13:22:14',2,'2006-02-15 21:30:53'), +(3094,'2005-06-20 16:06:51',2048,114,'2005-06-24 13:23:51',1,'2006-02-15 21:30:53'), +(3095,'2005-06-20 16:16:53',3937,298,'2005-06-22 10:35:53',2,'2006-02-15 21:30:53'), +(3096,'2005-06-20 16:17:56',3851,79,'2005-06-24 10:17:56',2,'2006-02-15 21:30:53'), +(3097,'2005-06-20 16:26:14',4337,280,'2005-06-23 14:46:14',1,'2006-02-15 21:30:53'), +(3098,'2005-06-20 16:37:01',3409,498,'2005-06-22 22:24:01',1,'2006-02-15 21:30:53'), +(3099,'2005-06-20 16:44:33',3756,380,'2005-06-27 12:17:33',2,'2006-02-15 21:30:53'), +(3100,'2005-06-20 16:47:57',2428,487,'2005-06-26 16:59:57',1,'2006-02-15 21:30:53'), +(3101,'2005-06-20 16:48:58',1738,384,'2005-06-27 18:13:58',2,'2006-02-15 21:30:53'), +(3102,'2005-06-20 16:55:55',1144,522,'2005-06-29 13:49:55',1,'2006-02-15 21:30:53'), +(3103,'2005-06-20 16:58:19',1877,553,'2005-06-25 21:18:19',1,'2006-02-15 21:30:53'), +(3104,'2005-06-20 17:06:46',1490,196,'2005-06-28 13:18:46',2,'2006-02-15 21:30:53'), +(3105,'2005-06-20 17:11:46',130,385,'2005-06-21 11:48:46',2,'2006-02-15 21:30:53'), +(3106,'2005-06-20 17:18:06',2637,201,'2005-06-24 14:50:06',2,'2006-02-15 21:30:53'), +(3107,'2005-06-20 17:26:05',4527,303,'2005-06-25 12:36:05',1,'2006-02-15 21:30:53'), +(3108,'2005-06-20 17:28:43',2218,189,'2005-06-27 21:23:43',1,'2006-02-15 21:30:53'), +(3109,'2005-06-20 17:33:55',977,93,'2005-06-22 23:09:55',1,'2006-02-15 21:30:53'), +(3110,'2005-06-20 17:40:12',2008,333,'2005-06-24 17:09:12',1,'2006-02-15 21:30:53'), +(3111,'2005-06-20 17:46:47',4494,579,'2005-06-29 19:45:47',1,'2006-02-15 21:30:53'), +(3112,'2005-06-20 17:53:30',3725,35,'2005-06-26 16:03:30',1,'2006-02-15 21:30:53'), +(3113,'2005-06-20 17:56:40',3620,517,'2005-06-23 14:45:40',1,'2006-02-15 21:30:53'), +(3114,'2005-06-20 17:57:47',2388,8,'2005-06-21 19:18:47',2,'2006-02-15 21:30:53'), +(3115,'2005-06-20 17:59:05',2193,457,'2005-06-26 13:28:05',1,'2006-02-15 21:30:53'), +(3116,'2005-06-20 18:04:55',276,108,'2005-06-21 12:12:55',2,'2006-02-15 21:30:53'), +(3117,'2005-06-20 18:05:15',2184,31,'2005-06-26 17:28:15',1,'2006-02-15 21:30:53'), +(3118,'2005-06-20 18:05:57',1258,125,'2005-06-23 23:01:57',1,'2006-02-15 21:30:53'), +(3119,'2005-06-20 18:11:44',683,296,'2005-06-27 16:14:44',2,'2006-02-15 21:30:53'), +(3120,'2005-06-20 18:19:29',2530,107,'2005-06-23 23:40:29',1,'2006-02-15 21:30:53'), +(3121,'2005-06-20 18:23:30',797,132,'2005-06-21 20:36:30',1,'2006-02-15 21:30:53'), +(3122,'2005-06-20 18:25:57',2720,87,'2005-06-29 16:08:57',1,'2006-02-15 21:30:53'), +(3123,'2005-06-20 18:26:14',1656,289,'2005-06-29 17:17:14',1,'2006-02-15 21:30:53'), +(3124,'2005-06-20 18:28:19',3342,113,'2005-06-28 21:08:19',1,'2006-02-15 21:30:53'), +(3125,'2005-06-20 18:31:58',3293,382,'2005-06-21 15:03:58',1,'2006-02-15 21:30:53'), +(3126,'2005-06-20 18:38:22',1183,5,'2005-06-26 00:00:22',1,'2006-02-15 21:30:53'), +(3127,'2005-06-20 18:39:43',1292,461,'2005-06-28 17:55:43',1,'2006-02-15 21:30:53'), +(3128,'2005-06-20 18:41:47',189,543,'2005-06-24 20:54:47',2,'2006-02-15 21:30:53'), +(3129,'2005-06-20 18:57:48',1789,495,'2005-06-28 13:45:48',1,'2006-02-15 21:30:53'), +(3130,'2005-06-20 19:03:22',2569,341,'2005-06-29 18:05:22',2,'2006-02-15 21:30:53'), +(3131,'2005-06-20 19:08:00',3678,146,'2005-06-24 20:59:00',2,'2006-02-15 21:30:53'), +(3132,'2005-06-20 19:09:46',711,90,'2005-06-24 19:42:46',1,'2006-02-15 21:30:53'), +(3133,'2005-06-20 19:18:32',4529,120,'2005-06-26 17:54:32',2,'2006-02-15 21:30:53'), +(3134,'2005-06-20 19:29:09',1389,537,'2005-06-29 19:31:09',2,'2006-02-15 21:30:53'), +(3135,'2005-06-20 19:33:52',1122,12,'2005-06-29 18:20:52',1,'2006-02-15 21:30:53'), +(3136,'2005-06-20 19:39:08',3349,377,'2005-06-22 23:35:08',2,'2006-02-15 21:30:53'), +(3137,'2005-06-20 19:41:28',786,505,'2005-06-28 00:32:28',1,'2006-02-15 21:30:53'), +(3138,'2005-06-20 19:43:45',2265,570,'2005-06-26 20:41:45',1,'2006-02-15 21:30:53'), +(3139,'2005-06-20 19:44:45',3474,354,'2005-06-23 16:24:45',1,'2006-02-15 21:30:53'), +(3140,'2005-06-20 19:47:12',2936,53,'2005-06-24 23:24:12',1,'2006-02-15 21:30:53'), +(3141,'2005-06-20 19:55:47',1806,398,'2005-06-30 00:31:47',1,'2006-02-15 21:30:53'), +(3142,'2005-06-20 19:59:28',3926,9,'2005-06-28 19:51:28',2,'2006-02-15 21:30:53'), +(3143,'2005-06-20 20:01:52',1355,215,'2005-06-26 19:26:52',2,'2006-02-15 21:30:53'), +(3144,'2005-06-20 20:14:20',1300,114,'2005-06-30 01:46:20',1,'2006-02-15 21:30:53'), +(3145,'2005-06-20 20:21:17',2211,144,'2005-06-22 14:44:17',1,'2006-02-15 21:30:53'), +(3146,'2005-06-20 20:21:48',2249,339,'2005-06-29 22:57:48',2,'2006-02-15 21:30:53'), +(3147,'2005-06-20 20:25:17',615,390,'2005-06-28 20:22:17',2,'2006-02-15 21:30:53'), +(3148,'2005-06-20 20:27:18',4490,202,'2005-06-24 20:30:18',2,'2006-02-15 21:30:53'), +(3149,'2005-06-20 20:34:55',3295,55,'2005-06-21 18:51:55',1,'2006-02-15 21:30:53'), +(3150,'2005-06-20 20:35:28',94,34,'2005-06-26 01:01:28',1,'2006-02-15 21:30:53'), +(3151,'2005-06-20 20:36:53',2976,77,'2005-06-25 18:56:53',1,'2006-02-15 21:30:53'), +(3152,'2005-06-20 20:42:41',1022,246,'2005-06-28 21:12:41',1,'2006-02-15 21:30:53'), +(3153,'2005-06-20 20:44:15',659,430,'2005-06-23 16:04:15',1,'2006-02-15 21:30:53'), +(3154,'2005-06-20 20:44:40',3195,550,'2005-06-23 19:10:40',1,'2006-02-15 21:30:53'), +(3155,'2005-06-20 21:02:38',458,450,'2005-06-27 19:34:38',1,'2006-02-15 21:30:53'), +(3156,'2005-06-20 21:03:46',2217,365,'2005-06-21 23:32:46',2,'2006-02-15 21:30:53'), +(3157,'2005-06-20 21:07:54',1899,245,'2005-06-23 16:01:54',1,'2006-02-15 21:30:53'), +(3158,'2005-06-20 21:08:19',3461,592,'2005-06-29 18:59:19',1,'2006-02-15 21:30:53'), +(3159,'2005-06-20 21:11:50',33,388,'2005-06-29 19:35:50',2,'2006-02-15 21:30:53'), +(3160,'2005-06-20 21:20:51',4333,561,'2005-06-29 18:06:51',2,'2006-02-15 21:30:53'), +(3161,'2005-06-20 21:21:01',1326,373,'2005-06-21 18:22:01',2,'2006-02-15 21:30:53'), +(3162,'2005-06-20 21:21:15',3220,113,'2005-06-29 18:42:15',1,'2006-02-15 21:30:53'), +(3163,'2005-06-20 21:22:13',2632,391,'2005-06-26 15:22:13',2,'2006-02-15 21:30:53'), +(3164,'2005-06-20 21:29:00',155,270,'2005-06-27 15:50:00',1,'2006-02-15 21:30:53'), +(3165,'2005-06-20 21:29:17',796,85,'2005-06-22 18:03:17',1,'2006-02-15 21:30:53'), +(3166,'2005-06-20 21:32:32',1850,424,'2005-06-27 20:29:32',1,'2006-02-15 21:30:53'), +(3167,'2005-06-20 21:42:29',353,464,'2005-06-22 00:36:29',2,'2006-02-15 21:30:53'), +(3168,'2005-06-20 21:46:01',2407,446,'2005-06-22 20:40:01',1,'2006-02-15 21:30:53'), +(3169,'2005-06-20 21:55:54',2437,50,'2005-06-25 19:45:54',1,'2006-02-15 21:30:53'), +(3170,'2005-06-20 22:02:54',1306,421,'2005-06-29 00:41:54',2,'2006-02-15 21:30:53'), +(3171,'2005-06-20 22:15:47',2838,140,'2005-06-24 18:14:47',1,'2006-02-15 21:30:53'), +(3172,'2005-06-20 22:19:25',1758,31,'2005-06-24 17:18:25',2,'2006-02-15 21:30:53'), +(3173,'2005-06-20 22:21:10',4306,33,'2005-06-27 19:41:10',2,'2006-02-15 21:30:53'), +(3174,'2005-06-20 22:24:00',3331,107,'2005-06-22 21:22:00',2,'2006-02-15 21:30:53'), +(3175,'2005-06-20 22:30:23',4093,249,'2005-06-30 03:28:23',2,'2006-02-15 21:30:53'), +(3176,'2005-06-20 22:31:54',1982,371,'2005-06-25 02:58:54',1,'2006-02-15 21:30:53'), +(3177,'2005-06-20 22:32:44',2546,300,'2005-06-22 23:01:44',1,'2006-02-15 21:30:53'), +(3178,'2005-06-20 22:35:12',3517,79,'2005-06-23 19:39:12',1,'2006-02-15 21:30:53'), +(3179,'2005-06-20 22:37:59',2214,163,'2005-06-26 22:26:59',2,'2006-02-15 21:30:53'), +(3180,'2005-06-20 22:48:44',3997,162,'2005-06-21 21:25:44',1,'2006-02-15 21:30:53'), +(3181,'2005-06-20 22:51:02',3473,238,'2005-06-27 21:21:02',1,'2006-02-15 21:30:53'), +(3182,'2005-06-20 22:52:18',4017,15,'2005-06-21 21:00:18',2,'2006-02-15 21:30:53'), +(3183,'2005-06-20 22:55:55',4397,129,'2005-06-23 17:22:55',1,'2006-02-15 21:30:53'), +(3184,'2005-06-20 22:57:44',3179,457,'2005-06-29 20:57:44',1,'2006-02-15 21:30:53'), +(3185,'2005-06-20 22:58:01',601,234,'2005-06-27 00:26:01',1,'2006-02-15 21:30:53'), +(3186,'2005-06-20 23:04:20',3198,406,'2005-06-29 02:56:20',2,'2006-02-15 21:30:53'), +(3187,'2005-06-20 23:06:07',4357,150,'2005-06-27 01:14:07',2,'2006-02-15 21:30:53'), +(3188,'2005-06-20 23:10:27',2471,522,'2005-06-25 19:37:27',2,'2006-02-15 21:30:53'), +(3189,'2005-06-20 23:19:33',1502,538,'2005-06-24 17:46:33',1,'2006-02-15 21:30:53'), +(3190,'2005-06-20 23:27:15',351,200,'2005-06-28 01:22:15',2,'2006-02-15 21:30:53'), +(3191,'2005-06-20 23:46:39',4358,522,'2005-06-25 03:21:39',2,'2006-02-15 21:30:53'), +(3192,'2005-06-20 23:49:12',3713,11,'2005-06-24 03:00:12',1,'2006-02-15 21:30:53'), +(3193,'2005-06-20 23:52:30',3176,260,'2005-06-22 21:21:30',1,'2006-02-15 21:30:53'), +(3194,'2005-06-20 23:59:57',1835,432,'2005-06-24 19:21:57',1,'2006-02-15 21:30:53'), +(3195,'2005-06-21 00:02:10',2383,165,'2005-06-21 23:11:10',2,'2006-02-15 21:30:53'), +(3196,'2005-06-21 00:02:28',1575,52,'2005-06-22 23:08:28',1,'2006-02-15 21:30:53'), +(3197,'2005-06-21 00:07:23',1811,362,'2005-06-23 00:53:23',2,'2006-02-15 21:30:53'), +(3198,'2005-06-21 00:08:54',1626,295,'2005-06-29 02:11:54',2,'2006-02-15 21:30:53'), +(3199,'2005-06-21 00:12:40',3824,234,'2005-06-27 23:26:40',1,'2006-02-15 21:30:53'), +(3200,'2005-06-21 00:22:47',4117,221,'2005-06-27 05:52:47',2,'2006-02-15 21:30:53'), +(3201,'2005-06-21 00:30:26',6,597,'2005-06-28 03:42:26',1,'2006-02-15 21:30:53'), +(3202,'2005-06-21 00:33:47',2725,273,'2005-06-24 04:05:47',2,'2006-02-15 21:30:53'), +(3203,'2005-06-21 00:34:56',442,158,'2005-06-29 23:30:56',1,'2006-02-15 21:30:53'), +(3204,'2005-06-21 00:37:50',2848,336,'2005-06-22 23:46:50',1,'2006-02-15 21:30:53'), +(3205,'2005-06-21 00:38:47',2964,31,'2005-06-21 22:49:47',1,'2006-02-15 21:30:53'), +(3206,'2005-06-21 00:39:39',2196,350,'2005-06-22 05:12:39',1,'2006-02-15 21:30:53'), +(3207,'2005-06-21 00:43:16',4020,86,'2005-06-24 22:13:16',1,'2006-02-15 21:30:53'), +(3208,'2005-06-21 00:50:03',3169,229,'2005-06-24 06:15:03',2,'2006-02-15 21:30:53'), +(3209,'2005-06-21 00:51:06',287,307,'2005-06-22 21:49:06',2,'2006-02-15 21:30:53'), +(3210,'2005-06-21 01:00:25',467,75,'2005-06-23 06:10:25',2,'2006-02-15 21:30:53'), +(3211,'2005-06-21 01:01:29',1150,415,'2005-06-23 04:05:29',1,'2006-02-15 21:30:53'), +(3212,'2005-06-21 01:04:35',4178,21,'2005-06-30 00:10:35',2,'2006-02-15 21:30:53'), +(3213,'2005-06-21 01:05:19',3832,534,'2005-06-27 21:55:19',2,'2006-02-15 21:30:53'), +(3214,'2005-06-21 01:08:26',776,142,'2005-06-23 03:24:26',2,'2006-02-15 21:30:53'), +(3215,'2005-06-21 01:11:32',4140,279,'2005-06-26 19:42:32',1,'2006-02-15 21:30:53'), +(3216,'2005-06-21 01:19:37',719,534,'2005-06-29 06:45:37',2,'2006-02-15 21:30:53'), +(3217,'2005-06-21 01:28:12',1027,463,'2005-06-25 02:51:12',2,'2006-02-15 21:30:53'), +(3218,'2005-06-21 01:38:09',1828,117,'2005-06-23 02:00:09',1,'2006-02-15 21:30:53'), +(3219,'2005-06-21 01:43:26',3024,129,'2005-06-28 23:50:26',2,'2006-02-15 21:30:53'), +(3220,'2005-06-21 01:46:25',1880,574,'2005-06-26 07:44:25',2,'2006-02-15 21:30:53'), +(3221,'2005-06-21 01:49:47',245,454,'2005-06-25 06:31:47',1,'2006-02-15 21:30:53'), +(3222,'2005-06-21 01:50:29',4023,501,'2005-06-27 00:52:29',2,'2006-02-15 21:30:53'), +(3223,'2005-06-21 02:06:45',1033,299,'2005-06-22 07:16:45',2,'2006-02-15 21:30:53'), +(3224,'2005-06-21 02:11:36',3318,173,'2005-06-23 21:17:36',1,'2006-02-15 21:30:53'), +(3225,'2005-06-21 02:16:55',1003,448,'2005-06-27 05:39:55',2,'2006-02-15 21:30:53'), +(3226,'2005-06-21 02:18:14',4079,576,'2005-06-26 22:32:14',2,'2006-02-15 21:30:53'), +(3227,'2005-06-21 02:18:25',1156,568,'2005-06-27 00:59:25',1,'2006-02-15 21:30:53'), +(3228,'2005-06-21 02:20:24',2489,535,'2005-06-29 00:50:24',2,'2006-02-15 21:30:53'), +(3229,'2005-06-21 02:20:41',2301,81,'2005-06-26 00:39:41',1,'2006-02-15 21:30:53'), +(3230,'2005-06-21 02:23:16',215,83,'2005-06-22 01:37:16',2,'2006-02-15 21:30:53'), +(3231,'2005-06-21 02:25:00',237,28,'2005-06-23 05:46:00',2,'2006-02-15 21:30:53'), +(3232,'2005-06-21 02:30:37',1972,555,'2005-06-29 03:10:37',1,'2006-02-15 21:30:53'), +(3233,'2005-06-21 02:39:31',3542,353,'2005-06-28 05:23:31',2,'2006-02-15 21:30:53'), +(3234,'2005-06-21 02:39:44',3252,459,'2005-06-29 07:27:44',1,'2006-02-15 21:30:53'), +(3235,'2005-06-21 02:46:17',212,49,'2005-06-22 20:58:17',1,'2006-02-15 21:30:53'), +(3236,'2005-06-21 02:47:43',1492,550,'2005-06-29 08:04:43',2,'2006-02-15 21:30:53'), +(3237,'2005-06-21 02:47:56',4399,466,'2005-06-27 03:16:56',2,'2006-02-15 21:30:53'), +(3238,'2005-06-21 02:48:21',2732,77,'2005-06-23 04:43:21',1,'2006-02-15 21:30:53'), +(3239,'2005-06-21 02:48:40',3402,328,'2005-06-22 02:49:40',2,'2006-02-15 21:30:53'), +(3240,'2005-06-21 02:53:17',2938,405,'2005-06-30 03:25:17',2,'2006-02-15 21:30:53'), +(3241,'2005-06-21 02:54:32',1442,499,'2005-06-26 21:56:32',2,'2006-02-15 21:30:53'), +(3242,'2005-06-21 02:56:24',1421,562,'2005-06-29 21:41:24',2,'2006-02-15 21:30:53'), +(3243,'2005-06-21 03:00:11',2556,426,'2005-06-25 21:53:11',1,'2006-02-15 21:30:53'), +(3244,'2005-06-21 03:01:10',291,53,'2005-06-24 06:59:10',2,'2006-02-15 21:30:53'), +(3245,'2005-06-21 03:06:11',2057,358,'2005-06-25 08:06:11',2,'2006-02-15 21:30:53'), +(3246,'2005-06-21 03:10:01',4432,41,'2005-06-28 00:46:01',1,'2006-02-15 21:30:53'), +(3247,'2005-06-21 03:12:15',1406,277,'2005-06-27 00:44:15',1,'2006-02-15 21:30:53'), +(3248,'2005-06-21 03:12:21',3656,78,'2005-06-28 03:54:21',2,'2006-02-15 21:30:53'), +(3249,'2005-06-21 03:13:19',703,410,'2005-06-29 04:04:19',2,'2006-02-15 21:30:53'), +(3250,'2005-06-21 03:16:36',736,467,'2005-06-29 00:53:36',2,'2006-02-15 21:30:53'), +(3251,'2005-06-21 03:20:37',1414,317,'2005-06-23 04:54:37',2,'2006-02-15 21:30:53'), +(3252,'2005-06-21 03:25:26',2009,213,'2005-06-24 00:38:26',2,'2006-02-15 21:30:53'), +(3253,'2005-06-21 03:25:37',1906,405,'2005-06-27 02:46:37',2,'2006-02-15 21:30:53'), +(3254,'2005-06-21 03:27:10',3893,472,'2005-06-22 22:01:10',2,'2006-02-15 21:30:53'), +(3255,'2005-06-21 03:39:52',2564,482,'2005-06-24 04:02:52',1,'2006-02-15 21:30:53'), +(3256,'2005-06-21 03:45:42',1235,319,'2005-06-30 02:51:42',2,'2006-02-15 21:30:53'), +(3257,'2005-06-21 03:47:19',3975,263,'2005-06-28 01:24:19',2,'2006-02-15 21:30:53'), +(3258,'2005-06-21 03:53:58',4417,241,'2005-06-22 22:49:58',2,'2006-02-15 21:30:53'), +(3259,'2005-06-21 03:57:15',2751,478,'2005-06-24 03:32:15',1,'2006-02-15 21:30:53'), +(3260,'2005-06-21 03:59:13',3627,380,'2005-06-23 03:29:13',1,'2006-02-15 21:30:53'), +(3261,'2005-06-21 04:07:41',2029,169,'2005-06-24 06:25:41',2,'2006-02-15 21:30:53'), +(3262,'2005-06-21 04:08:43',3773,9,'2005-06-28 02:55:43',1,'2006-02-15 21:30:53'), +(3263,'2005-06-21 04:15:52',3491,118,'2005-06-24 02:19:52',2,'2006-02-15 21:30:53'), +(3264,'2005-06-21 04:19:03',1666,340,'2005-06-23 01:29:03',1,'2006-02-15 21:30:53'), +(3265,'2005-06-21 04:23:13',3637,437,'2005-06-28 03:37:13',1,'2006-02-15 21:30:53'), +(3266,'2005-06-21 04:49:07',2533,175,'2005-06-26 05:19:07',2,'2006-02-15 21:30:53'), +(3267,'2005-06-21 04:55:21',1118,134,'2005-06-29 23:46:21',1,'2006-02-15 21:30:53'), +(3268,'2005-06-21 04:55:49',4366,329,'2005-06-30 00:23:49',2,'2006-02-15 21:30:53'), +(3269,'2005-06-21 05:06:30',3828,17,'2005-06-27 09:26:30',2,'2006-02-15 21:30:53'), +(3270,'2005-06-21 05:07:31',1578,86,'2005-06-22 07:45:31',2,'2006-02-15 21:30:53'), +(3271,'2005-06-21 05:16:10',4191,196,'2005-06-27 10:46:10',1,'2006-02-15 21:30:53'), +(3272,'2005-06-21 05:18:27',1090,550,'2005-06-30 02:51:27',1,'2006-02-15 21:30:53'), +(3273,'2005-06-21 05:24:17',3538,104,'2005-06-23 01:21:17',2,'2006-02-15 21:30:53'), +(3274,'2005-06-21 05:30:36',2156,277,'2005-06-24 05:12:36',1,'2006-02-15 21:30:53'), +(3275,'2005-06-21 05:33:04',2320,368,'2005-06-30 00:37:04',2,'2006-02-15 21:30:53'), +(3276,'2005-06-21 05:35:52',1890,425,'2005-06-29 03:26:52',2,'2006-02-15 21:30:53'), +(3277,'2005-06-21 05:36:37',1330,229,'2005-06-29 10:54:37',1,'2006-02-15 21:30:53'), +(3278,'2005-06-21 05:41:30',2832,554,'2005-06-22 03:43:30',1,'2006-02-15 21:30:53'), +(3279,'2005-06-21 06:05:53',1672,462,'2005-06-25 09:40:53',1,'2006-02-15 21:30:53'), +(3280,'2005-06-21 06:08:12',661,229,'2005-06-24 09:34:12',1,'2006-02-15 21:30:53'), +(3281,'2005-06-21 06:08:47',4006,363,'2005-06-24 11:22:47',1,'2006-02-15 21:30:53'), +(3282,'2005-06-21 06:18:42',1676,224,'2005-06-28 09:18:42',1,'2006-02-15 21:30:53'), +(3283,'2005-06-21 06:19:07',3988,372,'2005-06-26 10:59:07',2,'2006-02-15 21:30:53'), +(3284,'2005-06-21 06:24:45',4566,1,'2005-06-28 03:28:45',1,'2006-02-15 21:30:53'), +(3285,'2005-06-21 06:30:13',948,481,'2005-06-23 10:31:13',2,'2006-02-15 21:30:53'), +(3286,'2005-06-21 06:31:29',742,577,'2005-06-25 00:46:29',2,'2006-02-15 21:30:53'), +(3287,'2005-06-21 06:32:39',4406,62,'2005-06-24 09:29:39',2,'2006-02-15 21:30:53'), +(3288,'2005-06-21 06:36:59',1961,299,'2005-06-30 06:50:59',1,'2006-02-15 21:30:53'), +(3289,'2005-06-21 06:41:48',2248,115,'2005-06-30 00:54:48',1,'2006-02-15 21:30:53'), +(3290,'2005-06-21 06:45:34',2727,293,'2005-06-28 09:44:34',1,'2006-02-15 21:30:53'), +(3291,'2005-06-21 06:55:36',3866,274,'2005-06-29 03:41:36',1,'2006-02-15 21:30:53'), +(3292,'2005-06-21 06:59:11',3288,412,'2005-06-23 07:11:11',1,'2006-02-15 21:30:53'), +(3293,'2005-06-21 06:59:33',4407,481,'2005-06-25 06:54:33',2,'2006-02-15 21:30:53'), +(3294,'2005-06-21 07:03:23',2390,439,'2005-06-30 02:22:23',2,'2006-02-15 21:30:53'), +(3295,'2005-06-21 07:04:17',1703,573,'2005-06-29 01:52:17',1,'2006-02-15 21:30:53'), +(3296,'2005-06-21 07:04:53',2453,284,'2005-06-25 08:36:53',1,'2006-02-15 21:30:53'), +(3297,'2005-06-21 07:08:19',3969,193,'2005-06-28 11:53:19',2,'2006-02-15 21:30:53'), +(3298,'2005-06-21 07:09:44',444,492,'2005-06-30 11:26:44',2,'2006-02-15 21:30:53'), +(3299,'2005-06-21 07:23:34',3427,199,'2005-06-27 04:02:34',1,'2006-02-15 21:30:53'), +(3300,'2005-06-21 07:25:01',2505,565,'2005-06-25 01:47:01',1,'2006-02-15 21:30:53'), +(3301,'2005-06-21 07:32:25',503,444,'2005-06-28 06:26:25',2,'2006-02-15 21:30:53'), +(3302,'2005-06-21 07:33:40',562,594,'2005-06-29 06:02:40',1,'2006-02-15 21:30:53'), +(3303,'2005-06-21 07:34:14',1565,361,'2005-06-26 13:18:14',2,'2006-02-15 21:30:53'), +(3304,'2005-06-21 07:43:40',2154,431,'2005-06-27 08:06:40',2,'2006-02-15 21:30:53'), +(3305,'2005-06-21 07:46:57',2811,578,'2005-06-27 06:16:57',1,'2006-02-15 21:30:53'), +(3306,'2005-06-21 07:46:58',1669,406,'2005-06-26 11:22:58',2,'2006-02-15 21:30:53'), +(3307,'2005-06-21 07:52:30',462,85,'2005-06-25 02:36:30',2,'2006-02-15 21:30:53'), +(3308,'2005-06-21 07:58:36',3129,96,'2005-06-23 05:23:36',2,'2006-02-15 21:30:53'), +(3309,'2005-06-21 08:00:49',248,463,'2005-06-29 04:11:49',2,'2006-02-15 21:30:53'), +(3310,'2005-06-21 08:04:51',1717,395,'2005-06-22 04:20:51',2,'2006-02-15 21:30:53'), +(3311,'2005-06-21 08:05:27',3438,518,'2005-06-22 06:51:27',2,'2006-02-15 21:30:53'), +(3312,'2005-06-21 08:05:32',1008,554,'2005-06-27 03:34:32',2,'2006-02-15 21:30:53'), +(3313,'2005-06-21 08:11:18',4267,213,'2005-06-23 04:28:18',2,'2006-02-15 21:30:53'), +(3314,'2005-06-21 08:17:00',4332,185,'2005-06-22 06:00:00',2,'2006-02-15 21:30:53'), +(3315,'2005-06-21 08:17:04',4108,438,'2005-06-24 11:04:04',1,'2006-02-15 21:30:53'), +(3316,'2005-06-21 08:20:18',3271,451,'2005-06-28 07:44:18',1,'2006-02-15 21:30:53'), +(3317,'2005-06-21 08:22:32',4095,584,'2005-06-26 14:18:32',2,'2006-02-15 21:30:53'), +(3318,'2005-06-21 08:23:05',1111,414,'2005-06-27 14:07:05',2,'2006-02-15 21:30:53'), +(3319,'2005-06-21 08:25:46',2482,461,'2005-06-27 03:54:46',2,'2006-02-15 21:30:53'), +(3320,'2005-06-21 08:29:41',860,47,'2005-06-29 13:54:41',2,'2006-02-15 21:30:53'), +(3321,'2005-06-21 08:33:26',1750,144,'2005-06-24 10:09:26',2,'2006-02-15 21:30:53'), +(3322,'2005-06-21 08:42:37',4324,458,'2005-06-22 13:17:37',1,'2006-02-15 21:30:53'), +(3323,'2005-06-21 08:45:33',2252,272,'2005-06-28 08:17:33',2,'2006-02-15 21:30:53'), +(3324,'2005-06-21 08:49:16',2830,29,'2005-06-22 12:31:16',1,'2006-02-15 21:30:53'), +(3325,'2005-06-21 08:51:44',1720,185,'2005-06-27 06:16:44',1,'2006-02-15 21:30:53'), +(3326,'2005-06-21 09:04:50',1025,347,'2005-06-30 12:10:50',2,'2006-02-15 21:30:53'), +(3327,'2005-06-21 09:04:50',3083,62,'2005-06-30 05:45:50',1,'2006-02-15 21:30:53'), +(3328,'2005-06-21 09:08:44',2462,292,'2005-06-30 12:28:44',1,'2006-02-15 21:30:53'), +(3329,'2005-06-21 09:20:31',3506,335,'2005-06-22 10:00:31',2,'2006-02-15 21:30:53'), +(3330,'2005-06-21 09:22:37',299,294,'2005-06-23 07:16:37',2,'2006-02-15 21:30:53'), +(3331,'2005-06-21 09:37:53',2913,352,'2005-06-26 04:01:53',2,'2006-02-15 21:30:53'), +(3332,'2005-06-21 09:55:12',1975,82,'2005-06-25 08:32:12',2,'2006-02-15 21:30:53'), +(3333,'2005-06-21 10:01:36',3688,111,'2005-06-25 10:27:36',2,'2006-02-15 21:30:53'), +(3334,'2005-06-21 10:04:33',2491,66,'2005-06-29 06:09:33',2,'2006-02-15 21:30:53'), +(3335,'2005-06-21 10:09:08',3033,339,'2005-06-27 11:33:08',1,'2006-02-15 21:30:53'), +(3336,'2005-06-21 10:14:27',2122,173,'2005-06-22 09:29:27',1,'2006-02-15 21:30:53'), +(3337,'2005-06-21 10:24:35',1176,318,'2005-06-22 13:51:35',1,'2006-02-15 21:30:53'), +(3338,'2005-06-21 10:27:31',2097,171,'2005-06-30 14:15:31',2,'2006-02-15 21:30:53'), +(3339,'2005-06-21 10:37:11',312,526,'2005-06-30 05:04:11',2,'2006-02-15 21:30:53'), +(3340,'2005-06-21 10:37:23',2962,540,'2005-06-26 07:21:23',2,'2006-02-15 21:30:53'), +(3341,'2005-06-21 10:37:25',2189,591,'2005-06-26 15:38:25',1,'2006-02-15 21:30:53'), +(3342,'2005-06-21 10:46:36',2884,196,'2005-06-23 09:46:36',2,'2006-02-15 21:30:53'), +(3343,'2005-06-21 10:56:59',2038,466,'2005-06-25 16:41:59',1,'2006-02-15 21:30:53'), +(3344,'2005-06-21 10:57:27',4401,277,'2005-06-28 10:53:27',1,'2006-02-15 21:30:53'), +(3345,'2005-06-21 11:05:07',4442,71,'2005-06-26 15:14:07',2,'2006-02-15 21:30:53'), +(3346,'2005-06-21 11:06:53',4393,189,'2005-06-22 15:19:53',2,'2006-02-15 21:30:53'), +(3347,'2005-06-21 11:08:32',4330,448,'2005-06-28 09:59:32',1,'2006-02-15 21:30:53'), +(3348,'2005-06-21 11:16:42',2945,16,'2005-06-27 13:50:42',2,'2006-02-15 21:30:53'), +(3349,'2005-06-21 11:17:35',3885,336,'2005-06-22 12:51:35',2,'2006-02-15 21:30:53'), +(3350,'2005-06-21 11:21:38',3221,20,'2005-06-28 15:37:38',2,'2006-02-15 21:30:53'), +(3351,'2005-06-21 11:21:39',1591,386,'2005-06-23 07:23:39',2,'2006-02-15 21:30:53'), +(3352,'2005-06-21 11:26:29',578,510,'2005-06-28 07:26:29',1,'2006-02-15 21:30:53'), +(3353,'2005-06-21 11:29:23',3984,236,'2005-06-27 15:06:23',1,'2006-02-15 21:30:53'), +(3354,'2005-06-21 11:29:49',1083,529,'2005-06-25 07:39:49',2,'2006-02-15 21:30:53'), +(3355,'2005-06-21 11:30:47',1960,275,'2005-06-23 06:04:47',1,'2006-02-15 21:30:53'), +(3356,'2005-06-21 11:38:45',4532,403,'2005-06-26 17:18:45',1,'2006-02-15 21:30:53'), +(3357,'2005-06-21 11:55:42',2528,57,'2005-06-22 07:19:42',2,'2006-02-15 21:30:53'), +(3358,'2005-06-21 11:56:40',1772,69,'2005-06-26 08:28:40',2,'2006-02-15 21:30:53'), +(3359,'2005-06-21 12:08:18',3825,67,'2005-06-25 16:35:18',2,'2006-02-15 21:30:53'), +(3360,'2005-06-21 12:12:41',2792,498,'2005-06-26 06:32:41',1,'2006-02-15 21:30:53'), +(3361,'2005-06-21 12:14:23',2671,268,'2005-06-26 10:01:23',2,'2006-02-15 21:30:53'), +(3362,'2005-06-21 12:19:54',1284,454,'2005-06-23 06:59:54',2,'2006-02-15 21:30:53'), +(3363,'2005-06-21 12:25:07',538,261,'2005-06-27 11:52:07',2,'2006-02-15 21:30:53'), +(3364,'2005-06-21 12:37:46',2329,201,'2005-06-28 07:18:46',2,'2006-02-15 21:30:53'), +(3365,'2005-06-21 12:55:48',657,133,'2005-06-23 13:38:48',2,'2006-02-15 21:30:53'), +(3366,'2005-06-21 13:03:37',2584,511,'2005-06-26 16:29:37',1,'2006-02-15 21:30:53'), +(3367,'2005-06-21 13:08:21',2442,80,'2005-06-26 08:43:21',2,'2006-02-15 21:30:53'), +(3368,'2005-06-21 13:18:38',548,438,'2005-06-23 11:13:38',1,'2006-02-15 21:30:53'), +(3369,'2005-06-21 13:20:31',303,431,'2005-06-30 13:45:31',2,'2006-02-15 21:30:53'), +(3370,'2005-06-21 13:27:01',1573,559,'2005-06-25 09:27:01',1,'2006-02-15 21:30:53'), +(3371,'2005-06-21 13:27:22',2526,595,'2005-06-29 14:04:22',2,'2006-02-15 21:30:53'), +(3372,'2005-06-21 13:34:19',4169,346,'2005-06-27 08:41:19',2,'2006-02-15 21:30:53'), +(3373,'2005-06-21 13:35:32',2219,316,'2005-06-30 12:03:32',1,'2006-02-15 21:30:53'), +(3374,'2005-06-21 13:36:30',1067,279,'2005-06-23 15:10:30',2,'2006-02-15 21:30:53'), +(3375,'2005-06-21 13:37:18',912,279,'2005-06-22 11:26:18',2,'2006-02-15 21:30:53'), +(3376,'2005-06-21 13:43:02',3055,318,'2005-06-28 18:07:02',1,'2006-02-15 21:30:53'), +(3377,'2005-06-21 13:51:12',1845,428,'2005-06-22 18:16:12',1,'2006-02-15 21:30:53'), +(3378,'2005-06-21 13:51:28',35,387,'2005-06-25 09:21:28',1,'2006-02-15 21:30:53'), +(3379,'2005-06-21 13:54:58',2022,566,'2005-06-23 13:43:58',2,'2006-02-15 21:30:53'), +(3380,'2005-06-21 13:58:46',3212,483,'2005-06-30 09:29:46',1,'2006-02-15 21:30:53'), +(3381,'2005-06-21 14:02:59',1373,183,'2005-06-29 18:11:59',2,'2006-02-15 21:30:53'), +(3382,'2005-06-21 14:05:23',131,341,'2005-06-29 19:13:23',2,'2006-02-15 21:30:53'), +(3383,'2005-06-21 14:07:19',2968,239,'2005-06-29 17:00:19',2,'2006-02-15 21:30:53'), +(3384,'2005-06-21 14:07:35',409,91,'2005-06-26 16:34:35',1,'2006-02-15 21:30:53'), +(3385,'2005-06-21 14:16:48',2810,514,'2005-06-24 10:32:48',2,'2006-02-15 21:30:53'), +(3386,'2005-06-21 14:21:06',1224,190,'2005-06-24 08:32:06',2,'2006-02-15 21:30:53'), +(3387,'2005-06-21 14:21:49',2709,305,'2005-06-24 16:46:49',2,'2006-02-15 21:30:53'), +(3388,'2005-06-21 14:34:51',556,119,'2005-06-28 18:19:51',1,'2006-02-15 21:30:53'), +(3389,'2005-06-21 14:37:55',727,395,'2005-06-28 18:13:55',1,'2006-02-15 21:30:53'), +(3390,'2005-06-21 15:10:50',2034,151,'2005-06-26 12:38:50',1,'2006-02-15 21:30:53'), +(3391,'2005-06-21 15:11:02',26,45,'2005-06-25 14:12:02',1,'2006-02-15 21:30:53'), +(3392,'2005-06-21 15:12:44',3343,38,'2005-06-29 18:19:44',1,'2006-02-15 21:30:53'), +(3393,'2005-06-21 15:14:27',1631,362,'2005-06-25 19:54:27',2,'2006-02-15 21:30:53'), +(3394,'2005-06-21 15:17:39',3393,295,'2005-06-30 13:55:39',2,'2006-02-15 21:30:53'), +(3395,'2005-06-21 15:19:19',3764,66,'2005-06-29 14:23:19',2,'2006-02-15 21:30:53'), +(3396,'2005-06-21 15:23:08',2744,371,'2005-06-23 10:25:08',1,'2006-02-15 21:30:53'), +(3397,'2005-06-21 15:30:11',602,552,'2005-06-22 21:12:11',1,'2006-02-15 21:30:53'), +(3398,'2005-06-21 15:34:38',221,599,'2005-06-29 11:23:38',1,'2006-02-15 21:30:53'), +(3399,'2005-06-21 15:47:48',619,98,'2005-06-26 13:46:48',1,'2006-02-15 21:30:53'), +(3400,'2005-06-21 15:50:30',1697,298,'2005-06-25 18:07:30',1,'2006-02-15 21:30:53'), +(3401,'2005-06-21 15:52:43',3423,577,'2005-06-30 21:09:43',2,'2006-02-15 21:30:53'), +(3402,'2005-06-21 15:54:37',596,187,'2005-06-30 13:43:37',1,'2006-02-15 21:30:53'), +(3403,'2005-06-21 15:55:06',1741,264,'2005-06-27 12:34:06',1,'2006-02-15 21:30:53'), +(3404,'2005-06-21 15:57:52',2005,424,'2005-06-24 20:58:52',2,'2006-02-15 21:30:53'), +(3405,'2005-06-21 15:58:25',2344,155,'2005-06-23 10:58:25',1,'2006-02-15 21:30:53'), +(3406,'2005-06-21 16:00:18',2049,203,'2005-06-23 18:25:18',1,'2006-02-15 21:30:53'), +(3407,'2005-06-21 16:14:02',3919,343,'2005-06-24 15:38:02',2,'2006-02-15 21:30:53'), +(3408,'2005-06-21 16:15:11',3453,282,'2005-06-27 14:55:11',1,'2006-02-15 21:30:53'), +(3409,'2005-06-21 16:17:38',3374,429,'2005-06-22 14:16:38',1,'2006-02-15 21:30:53'), +(3410,'2005-06-21 16:20:47',1197,321,'2005-06-24 19:09:47',2,'2006-02-15 21:30:53'), +(3411,'2005-06-21 16:31:27',4250,12,'2005-06-28 12:27:27',2,'2006-02-15 21:30:53'), +(3412,'2005-06-21 16:44:31',3036,501,'2005-06-28 16:15:31',2,'2006-02-15 21:30:53'), +(3413,'2005-06-21 16:57:07',666,322,'2005-06-30 12:03:07',2,'2006-02-15 21:30:53'), +(3414,'2005-06-21 16:58:50',2929,226,'2005-06-24 17:26:50',1,'2006-02-15 21:30:53'), +(3415,'2005-06-21 16:59:49',3540,444,'2005-06-27 17:19:49',1,'2006-02-15 21:30:53'), +(3416,'2005-06-21 17:05:29',1215,76,'2005-06-23 17:58:29',2,'2006-02-15 21:30:53'), +(3417,'2005-06-21 17:06:20',874,282,'2005-06-23 17:00:20',2,'2006-02-15 21:30:53'), +(3418,'2005-06-21 17:06:38',4115,85,'2005-06-25 19:43:38',1,'2006-02-15 21:30:53'), +(3419,'2005-06-21 17:18:01',4022,22,'2005-06-22 15:08:01',1,'2006-02-15 21:30:53'), +(3420,'2005-06-21 17:22:36',2523,27,'2005-06-28 12:34:36',1,'2006-02-15 21:30:53'), +(3421,'2005-06-21 17:22:58',3930,346,'2005-06-24 18:57:58',1,'2006-02-15 21:30:53'), +(3422,'2005-06-21 17:24:40',2724,251,'2005-06-29 13:59:40',2,'2006-02-15 21:30:53'), +(3423,'2005-06-21 17:38:02',3612,19,'2005-06-23 19:47:02',1,'2006-02-15 21:30:53'), +(3424,'2005-06-21 17:42:51',1279,583,'2005-06-24 23:22:51',2,'2006-02-15 21:30:53'), +(3425,'2005-06-21 18:07:07',4548,381,'2005-06-27 22:59:07',2,'2006-02-15 21:30:53'), +(3426,'2005-06-21 18:12:10',3019,95,'2005-06-23 18:22:10',1,'2006-02-15 21:30:53'), +(3427,'2005-06-21 18:31:09',560,561,'2005-06-22 14:18:09',2,'2006-02-15 21:30:53'), +(3428,'2005-06-21 18:39:34',1959,40,'2005-06-22 18:23:34',2,'2006-02-15 21:30:53'), +(3429,'2005-06-21 18:46:05',456,599,'2005-06-30 17:28:05',1,'2006-02-15 21:30:53'), +(3430,'2005-06-21 18:46:08',1613,503,'2005-06-22 13:49:08',2,'2006-02-15 21:30:53'), +(3431,'2005-06-21 18:46:48',133,516,'2005-06-26 23:08:48',1,'2006-02-15 21:30:53'), +(3432,'2005-06-21 19:02:03',1814,216,'2005-06-25 00:57:03',2,'2006-02-15 21:30:53'), +(3433,'2005-06-21 19:07:19',1077,228,'2005-06-29 18:01:19',2,'2006-02-15 21:30:53'), +(3434,'2005-06-21 19:08:28',2295,141,'2005-06-23 14:25:28',1,'2006-02-15 21:30:53'), +(3435,'2005-06-21 19:14:58',451,591,'2005-06-24 19:58:58',1,'2006-02-15 21:30:53'), +(3436,'2005-06-21 19:16:09',2740,137,'2005-06-30 13:58:09',2,'2006-02-15 21:30:53'), +(3437,'2005-06-21 19:20:17',1798,211,'2005-07-01 01:09:17',2,'2006-02-15 21:30:53'), +(3438,'2005-06-21 19:31:40',1757,556,'2005-06-30 19:08:40',1,'2006-02-15 21:30:53'), +(3439,'2005-06-21 19:36:15',1529,46,'2005-06-23 14:54:15',2,'2006-02-15 21:30:53'), +(3440,'2005-06-21 19:58:18',853,491,'2005-06-27 22:08:18',1,'2006-02-15 21:30:53'), +(3441,'2005-06-21 20:00:12',2863,326,'2005-06-24 00:24:12',2,'2006-02-15 21:30:53'), +(3442,'2005-06-21 20:06:51',1896,255,'2005-06-25 17:35:51',2,'2006-02-15 21:30:53'), +(3443,'2005-06-21 20:19:00',1639,377,'2005-06-30 15:39:00',1,'2006-02-15 21:30:53'), +(3444,'2005-06-21 20:39:39',493,45,'2005-06-25 23:44:39',2,'2006-02-15 21:30:53'), +(3445,'2005-06-21 20:40:28',2381,74,'2005-06-29 00:47:28',2,'2006-02-15 21:30:53'), +(3446,'2005-06-21 20:45:51',1817,174,'2005-06-26 17:02:51',1,'2006-02-15 21:30:53'), +(3447,'2005-06-21 20:53:31',1146,25,'2005-06-24 02:20:31',2,'2006-02-15 21:30:53'), +(3448,'2005-06-21 20:59:20',592,476,'2005-06-24 15:40:20',1,'2006-02-15 21:30:53'), +(3449,'2005-06-21 21:01:27',210,181,'2005-06-27 21:20:27',1,'2006-02-15 21:30:53'), +(3450,'2005-06-21 21:01:57',2268,126,'2005-06-25 23:57:57',1,'2006-02-15 21:30:53'), +(3451,'2005-06-21 21:10:39',3489,558,'2005-06-30 19:03:39',2,'2006-02-15 21:30:53'), +(3452,'2005-06-21 21:11:27',2646,293,'2005-06-24 16:31:27',1,'2006-02-15 21:30:53'), +(3453,'2005-06-21 21:12:11',842,278,'2005-06-23 17:39:11',2,'2006-02-15 21:30:53'), +(3454,'2005-06-21 21:12:13',3009,524,'2005-06-25 23:23:13',1,'2006-02-15 21:30:53'), +(3455,'2005-06-21 21:17:51',4403,340,'2005-06-23 17:22:51',1,'2006-02-15 21:30:53'), +(3456,'2005-06-21 21:19:47',1119,150,'2005-06-28 18:18:47',2,'2006-02-15 21:30:53'), +(3457,'2005-06-21 21:42:33',883,312,'2005-06-30 19:54:33',2,'2006-02-15 21:30:53'), +(3458,'2005-06-21 21:42:49',2136,338,'2005-06-29 01:26:49',1,'2006-02-15 21:30:53'), +(3459,'2005-06-21 21:45:47',3080,97,'2005-06-25 00:46:47',1,'2006-02-15 21:30:53'), +(3460,'2005-06-21 21:46:56',1765,236,'2005-06-29 20:08:56',1,'2006-02-15 21:30:53'), +(3461,'2005-06-21 21:49:18',1715,23,'2005-06-26 19:51:18',1,'2006-02-15 21:30:53'), +(3462,'2005-06-21 21:52:52',547,568,'2005-06-28 21:41:52',1,'2006-02-15 21:30:53'), +(3463,'2005-06-21 22:00:00',3436,96,'2005-06-22 19:22:00',2,'2006-02-15 21:30:53'), +(3464,'2005-06-21 22:08:58',2698,251,'2005-06-26 16:23:58',2,'2006-02-15 21:30:53'), +(3465,'2005-06-21 22:10:01',1488,510,'2005-06-30 21:35:01',1,'2006-02-15 21:30:53'), +(3466,'2005-06-21 22:13:33',371,226,'2005-06-25 21:01:33',2,'2006-02-15 21:30:53'), +(3467,'2005-06-21 22:19:25',729,543,'2005-06-27 00:03:25',2,'2006-02-15 21:30:53'), +(3468,'2005-06-21 22:43:45',2899,100,'2005-06-30 01:49:45',1,'2006-02-15 21:30:53'), +(3469,'2005-06-21 22:48:59',4087,181,'2005-06-28 19:32:59',1,'2006-02-15 21:30:53'), +(3470,'2005-07-05 22:49:24',883,565,'2005-07-07 19:36:24',1,'2006-02-15 21:30:53'), +(3471,'2005-07-05 22:51:44',1724,242,'2005-07-13 01:38:44',2,'2006-02-15 21:30:53'), +(3472,'2005-07-05 22:56:33',841,37,'2005-07-13 17:18:33',2,'2006-02-15 21:30:53'), +(3473,'2005-07-05 22:57:34',2735,60,'2005-07-12 23:53:34',1,'2006-02-15 21:30:53'), +(3474,'2005-07-05 22:59:53',97,594,'2005-07-08 20:32:53',1,'2006-02-15 21:30:53'), +(3475,'2005-07-05 23:01:21',2189,8,'2005-07-13 23:07:21',2,'2006-02-15 21:30:53'), +(3476,'2005-07-05 23:02:37',3011,490,'2005-07-10 22:17:37',2,'2006-02-15 21:30:53'), +(3477,'2005-07-05 23:05:17',4289,476,'2005-07-15 02:20:17',2,'2006-02-15 21:30:53'), +(3478,'2005-07-05 23:05:44',2528,322,'2005-07-07 00:14:44',2,'2006-02-15 21:30:53'), +(3479,'2005-07-05 23:08:53',2277,298,'2005-07-11 21:42:53',1,'2006-02-15 21:30:53'), +(3480,'2005-07-05 23:11:43',1488,382,'2005-07-12 02:01:43',2,'2006-02-15 21:30:53'), +(3481,'2005-07-05 23:13:07',3575,138,'2005-07-07 20:36:07',2,'2006-02-15 21:30:53'), +(3482,'2005-07-05 23:13:22',1291,520,'2005-07-12 19:02:22',2,'2006-02-15 21:30:53'), +(3483,'2005-07-05 23:13:51',79,536,'2005-07-13 18:31:51',1,'2006-02-15 21:30:53'), +(3484,'2005-07-05 23:23:11',1934,114,'2005-07-11 00:27:11',2,'2006-02-15 21:30:53'), +(3485,'2005-07-05 23:25:54',117,111,'2005-07-09 17:38:54',1,'2006-02-15 21:30:53'), +(3486,'2005-07-05 23:29:55',4067,296,'2005-07-13 19:54:55',1,'2006-02-15 21:30:53'), +(3487,'2005-07-05 23:30:36',1575,586,'2005-07-11 04:00:36',1,'2006-02-15 21:30:53'), +(3488,'2005-07-05 23:32:49',898,349,'2005-07-15 02:01:49',2,'2006-02-15 21:30:53'), +(3489,'2005-07-05 23:33:40',2936,397,'2005-07-15 02:15:40',2,'2006-02-15 21:30:53'), +(3490,'2005-07-05 23:37:13',3041,369,'2005-07-12 22:07:13',1,'2006-02-15 21:30:53'), +(3491,'2005-07-05 23:41:08',1835,421,'2005-07-13 21:53:08',1,'2006-02-15 21:30:53'), +(3492,'2005-07-05 23:44:37',980,142,'2005-07-14 03:54:37',1,'2006-02-15 21:30:53'), +(3493,'2005-07-05 23:46:19',473,169,'2005-07-15 02:31:19',1,'2006-02-15 21:30:53'), +(3494,'2005-07-05 23:47:30',3149,348,'2005-07-11 18:10:30',1,'2006-02-15 21:30:53'), +(3495,'2005-07-05 23:50:04',2306,553,'2005-07-10 01:06:04',1,'2006-02-15 21:30:53'), +(3496,'2005-07-05 23:59:15',2430,295,'2005-07-09 19:39:15',2,'2006-02-15 21:30:53'), +(3497,'2005-07-06 00:00:03',1970,299,'2005-07-09 01:27:03',1,'2006-02-15 21:30:53'), +(3498,'2005-07-06 00:02:08',1869,444,'2005-07-10 00:19:08',1,'2006-02-15 21:30:53'), +(3499,'2005-07-06 00:04:20',1850,520,'2005-07-14 21:12:20',2,'2006-02-15 21:30:53'), +(3500,'2005-07-06 00:11:13',2447,32,'2005-07-13 19:01:13',2,'2006-02-15 21:30:53'), +(3501,'2005-07-06 00:11:28',2219,270,'2005-07-10 20:32:28',2,'2006-02-15 21:30:53'), +(3502,'2005-07-06 00:15:06',1026,126,'2005-07-13 01:35:06',1,'2006-02-15 21:30:53'), +(3503,'2005-07-06 00:17:24',2944,449,'2005-07-08 03:47:24',1,'2006-02-15 21:30:53'), +(3504,'2005-07-06 00:18:29',268,209,'2005-07-10 00:24:29',2,'2006-02-15 21:30:53'), +(3505,'2005-07-06 00:19:32',2630,331,'2005-07-14 20:14:32',2,'2006-02-15 21:30:53'), +(3506,'2005-07-06 00:22:29',19,459,'2005-07-07 22:15:29',1,'2006-02-15 21:30:53'), +(3507,'2005-07-06 00:23:43',166,480,'2005-07-15 04:19:43',1,'2006-02-15 21:30:53'), +(3508,'2005-07-06 00:24:25',2381,34,'2005-07-10 05:38:25',2,'2006-02-15 21:30:53'), +(3509,'2005-07-06 00:24:57',4394,182,'2005-07-09 18:48:57',2,'2006-02-15 21:30:53'), +(3510,'2005-07-06 00:27:41',2250,443,'2005-07-14 23:20:41',2,'2006-02-15 21:30:53'), +(3511,'2005-07-06 00:42:01',2128,494,'2005-07-09 23:08:01',1,'2006-02-15 21:30:53'), +(3512,'2005-07-06 00:43:06',371,291,'2005-07-12 06:18:06',2,'2006-02-15 21:30:53'), +(3513,'2005-07-06 00:45:57',4225,223,'2005-07-11 19:04:57',2,'2006-02-15 21:30:53'), +(3514,'2005-07-06 00:46:54',4546,536,'2005-07-09 05:47:54',1,'2006-02-15 21:30:53'), +(3515,'2005-07-06 00:48:55',3220,131,'2005-07-09 00:15:55',1,'2006-02-15 21:30:53'), +(3516,'2005-07-06 00:50:30',385,338,'2005-07-09 19:12:30',2,'2006-02-15 21:30:53'), +(3517,'2005-07-06 00:52:35',2762,314,'2005-07-08 20:10:35',2,'2006-02-15 21:30:53'), +(3518,'2005-07-06 00:56:03',2502,167,'2005-07-14 02:27:03',1,'2006-02-15 21:30:53'), +(3519,'2005-07-06 00:57:29',4314,320,'2005-07-10 21:12:29',2,'2006-02-15 21:30:53'), +(3520,'2005-07-06 00:58:27',2872,102,'2005-07-14 05:56:27',1,'2006-02-15 21:30:53'), +(3521,'2005-07-06 01:00:11',1440,262,'2005-07-11 19:15:11',2,'2006-02-15 21:30:53'), +(3522,'2005-07-06 01:00:21',4522,469,'2005-07-11 01:18:21',1,'2006-02-15 21:30:53'), +(3523,'2005-07-06 01:01:38',2171,549,'2005-07-10 20:24:38',2,'2006-02-15 21:30:53'), +(3524,'2005-07-06 01:01:51',1626,88,'2005-07-11 19:52:51',2,'2006-02-15 21:30:53'), +(3525,'2005-07-06 01:02:39',208,51,'2005-07-14 02:27:39',1,'2006-02-15 21:30:53'), +(3526,'2005-07-06 01:03:29',3871,469,'2005-07-15 01:22:29',2,'2006-02-15 21:30:53'), +(3527,'2005-07-06 01:11:08',4537,389,'2005-07-08 01:21:08',1,'2006-02-15 21:30:53'), +(3528,'2005-07-06 01:13:27',1954,201,'2005-07-06 23:45:27',2,'2006-02-15 21:30:53'), +(3529,'2005-07-06 01:15:26',4316,350,'2005-07-07 04:28:26',1,'2006-02-15 21:30:53'), +(3530,'2005-07-06 01:22:45',4542,168,'2005-07-10 03:23:45',1,'2006-02-15 21:30:53'), +(3531,'2005-07-06 01:24:08',1890,165,'2005-07-11 22:00:08',2,'2006-02-15 21:30:53'), +(3532,'2005-07-06 01:24:38',2635,274,'2005-07-11 06:42:38',2,'2006-02-15 21:30:53'), +(3533,'2005-07-06 01:26:44',2028,206,'2005-07-14 21:37:44',1,'2006-02-15 21:30:53'), +(3534,'2005-07-06 01:32:27',2055,283,'2005-07-08 23:14:27',1,'2006-02-15 21:30:53'), +(3535,'2005-07-06 01:32:46',4214,65,'2005-07-11 03:15:46',1,'2006-02-15 21:30:53'), +(3536,'2005-07-06 01:36:11',2328,339,'2005-07-12 20:00:11',2,'2006-02-15 21:30:53'), +(3537,'2005-07-06 01:36:53',4220,479,'2005-07-13 07:01:53',2,'2006-02-15 21:30:53'), +(3538,'2005-07-06 01:37:07',4361,228,'2005-07-11 06:02:07',2,'2006-02-15 21:30:53'), +(3539,'2005-07-06 01:39:08',4081,444,'2005-07-07 05:38:08',1,'2006-02-15 21:30:53'), +(3540,'2005-07-06 01:47:20',1295,97,'2005-07-08 23:48:20',2,'2006-02-15 21:30:53'), +(3541,'2005-07-06 01:50:11',1204,501,'2005-07-12 03:24:11',1,'2006-02-15 21:30:53'), +(3542,'2005-07-06 01:51:42',4391,593,'2005-07-11 03:29:42',1,'2006-02-15 21:30:53'), +(3543,'2005-07-06 02:01:08',3997,394,'2005-07-07 03:14:08',1,'2006-02-15 21:30:53'), +(3544,'2005-07-06 02:06:32',3098,115,'2005-07-09 04:35:32',2,'2006-02-15 21:30:53'), +(3545,'2005-07-06 02:16:17',3924,442,'2005-07-11 00:54:17',1,'2006-02-15 21:30:53'), +(3546,'2005-07-06 02:17:54',959,594,'2005-07-07 00:19:54',1,'2006-02-15 21:30:53'), +(3547,'2005-07-06 02:18:06',2730,239,'2005-07-08 05:24:06',1,'2006-02-15 21:30:53'), +(3548,'2005-07-06 02:23:39',4498,16,'2005-07-08 07:53:39',2,'2006-02-15 21:30:53'), +(3549,'2005-07-06 02:24:55',3921,19,'2005-07-06 21:40:55',2,'2006-02-15 21:30:53'), +(3550,'2005-07-06 02:29:21',2417,15,'2005-07-13 05:26:21',2,'2006-02-15 21:30:53'), +(3551,'2005-07-06 02:33:48',3602,111,'2005-07-13 04:38:48',1,'2006-02-15 21:30:53'), +(3552,'2005-07-06 02:34:09',1099,239,'2005-07-12 05:31:09',1,'2006-02-15 21:30:53'), +(3553,'2005-07-06 02:35:41',4510,422,'2005-07-08 06:38:41',2,'2006-02-15 21:30:53'), +(3554,'2005-07-06 02:37:10',793,538,'2005-07-09 01:58:10',1,'2006-02-15 21:30:53'), +(3555,'2005-07-06 02:45:35',869,537,'2005-07-10 07:17:35',1,'2006-02-15 21:30:53'), +(3556,'2005-07-06 02:46:13',3142,273,'2005-07-06 22:08:13',1,'2006-02-15 21:30:53'), +(3557,'2005-07-06 02:48:39',3832,292,'2005-07-08 22:52:39',2,'2006-02-15 21:30:53'), +(3558,'2005-07-06 02:49:06',1742,575,'2005-07-15 01:38:06',2,'2006-02-15 21:30:53'), +(3559,'2005-07-06 02:49:42',2211,483,'2005-07-12 04:44:42',1,'2006-02-15 21:30:53'), +(3560,'2005-07-06 02:51:37',888,592,'2005-07-10 01:35:37',2,'2006-02-15 21:30:53'), +(3561,'2005-07-06 02:54:33',213,231,'2005-07-14 07:44:33',2,'2006-02-15 21:30:53'), +(3562,'2005-07-06 02:54:36',1660,587,'2005-07-11 05:48:36',1,'2006-02-15 21:30:53'), +(3563,'2005-07-06 02:57:01',4261,210,'2005-07-14 02:25:01',2,'2006-02-15 21:30:53'), +(3564,'2005-07-06 03:02:13',1096,402,'2005-07-13 01:41:13',2,'2006-02-15 21:30:53'), +(3565,'2005-07-06 03:02:58',599,97,'2005-07-13 21:31:58',2,'2006-02-15 21:30:53'), +(3566,'2005-07-06 03:08:51',2774,392,'2005-07-12 05:04:51',1,'2006-02-15 21:30:53'), +(3567,'2005-07-06 03:09:36',27,355,'2005-07-12 02:15:36',1,'2006-02-15 21:30:53'), +(3568,'2005-07-06 03:11:57',2084,283,'2005-07-15 03:14:57',1,'2006-02-15 21:30:53'), +(3569,'2005-07-06 03:17:23',1929,496,'2005-07-14 03:58:23',1,'2006-02-15 21:30:53'), +(3570,'2005-07-06 03:23:43',1300,450,'2005-07-14 07:28:43',2,'2006-02-15 21:30:53'), +(3571,'2005-07-06 03:32:31',4166,580,'2005-07-11 06:15:31',1,'2006-02-15 21:30:53'), +(3572,'2005-07-06 03:33:23',1915,284,'2005-07-08 07:54:23',1,'2006-02-15 21:30:53'), +(3573,'2005-07-06 03:33:48',146,66,'2005-07-07 22:39:48',1,'2006-02-15 21:30:53'), +(3574,'2005-07-06 03:36:01',2799,225,'2005-07-10 01:29:01',2,'2006-02-15 21:30:53'), +(3575,'2005-07-06 03:36:19',3234,49,'2005-07-08 06:21:19',1,'2006-02-15 21:30:53'), +(3576,'2005-07-06 03:40:01',324,227,'2005-07-15 07:22:01',1,'2006-02-15 21:30:53'), +(3577,'2005-07-06 03:40:36',4390,152,'2005-07-10 05:54:36',2,'2006-02-15 21:30:53'), +(3578,'2005-07-06 03:47:05',2954,263,'2005-07-08 02:26:05',1,'2006-02-15 21:30:53'), +(3579,'2005-07-06 03:47:47',3309,485,'2005-07-08 02:16:47',2,'2006-02-15 21:30:53'), +(3580,'2005-07-06 03:48:44',3837,200,'2005-07-13 01:15:44',2,'2006-02-15 21:30:53'), +(3581,'2005-07-06 03:57:35',4520,235,'2005-07-07 08:07:35',2,'2006-02-15 21:30:53'), +(3582,'2005-07-06 04:10:35',1866,297,'2005-07-11 01:29:35',2,'2006-02-15 21:30:53'), +(3583,'2005-07-06 04:10:43',204,574,'2005-07-14 22:17:43',2,'2006-02-15 21:30:53'), +(3584,'2005-07-06 04:16:43',367,207,'2005-07-13 07:08:43',1,'2006-02-15 21:30:53'), +(3585,'2005-07-06 04:22:36',2726,266,'2005-07-09 06:16:36',2,'2006-02-15 21:30:53'), +(3586,'2005-07-06 04:24:42',616,493,'2005-07-09 02:37:42',1,'2006-02-15 21:30:53'), +(3587,'2005-07-06 04:27:52',462,110,'2005-07-13 08:19:52',1,'2006-02-15 21:30:53'), +(3588,'2005-07-06 04:29:13',3154,289,'2005-07-07 23:49:13',1,'2006-02-15 21:30:53'), +(3589,'2005-07-06 04:30:18',3740,137,'2005-07-10 09:18:18',1,'2006-02-15 21:30:53'), +(3590,'2005-07-06 04:35:12',1510,283,'2005-07-10 05:14:12',2,'2006-02-15 21:30:53'), +(3591,'2005-07-06 04:37:10',1241,53,'2005-07-09 23:32:10',1,'2006-02-15 21:30:53'), +(3592,'2005-07-06 04:38:50',1272,286,'2005-07-15 06:36:50',2,'2006-02-15 21:30:53'), +(3593,'2005-07-06 04:39:52',619,78,'2005-07-11 23:20:52',2,'2006-02-15 21:30:53'), +(3594,'2005-07-06 04:42:47',4566,522,'2005-07-10 00:49:47',1,'2006-02-15 21:30:53'), +(3595,'2005-07-06 04:59:49',1431,92,'2005-07-15 06:26:49',2,'2006-02-15 21:30:53'), +(3596,'2005-07-06 05:03:11',594,419,'2005-07-07 05:30:11',2,'2006-02-15 21:30:53'), +(3597,'2005-07-06 05:03:59',4080,35,'2005-07-13 06:49:59',2,'2006-02-15 21:30:53'), +(3598,'2005-07-06 05:11:04',1317,68,'2005-07-09 02:03:04',2,'2006-02-15 21:30:53'), +(3599,'2005-07-06 05:16:36',3262,577,'2005-07-13 07:14:36',2,'2006-02-15 21:30:53'), +(3600,'2005-07-06 05:19:42',2748,511,'2005-07-11 00:34:42',2,'2006-02-15 21:30:53'), +(3601,'2005-07-06 05:20:25',2806,205,'2005-07-15 03:13:25',1,'2006-02-15 21:30:53'), +(3602,'2005-07-06 05:23:10',2192,100,'2005-07-15 03:22:10',2,'2006-02-15 21:30:53'), +(3603,'2005-07-06 05:25:03',2442,330,'2005-07-12 08:14:03',1,'2006-02-15 21:30:53'), +(3604,'2005-07-06 05:25:22',1380,242,'2005-07-07 23:52:22',1,'2006-02-15 21:30:53'), +(3605,'2005-07-06 05:27:15',384,347,'2005-07-10 00:05:15',2,'2006-02-15 21:30:53'), +(3606,'2005-07-06 05:28:02',1737,166,'2005-07-10 04:51:02',1,'2006-02-15 21:30:53'), +(3607,'2005-07-06 05:30:09',542,335,'2005-07-08 01:36:09',2,'2006-02-15 21:30:53'), +(3608,'2005-07-06 05:35:39',3095,368,'2005-07-10 07:46:39',2,'2006-02-15 21:30:53'), +(3609,'2005-07-06 05:36:22',1064,373,'2005-07-10 05:55:22',1,'2006-02-15 21:30:53'), +(3610,'2005-07-06 05:36:59',1509,348,'2005-07-13 07:07:59',1,'2006-02-15 21:30:53'), +(3611,'2005-07-06 05:37:18',4502,86,'2005-07-10 05:14:18',1,'2006-02-15 21:30:53'), +(3612,'2005-07-06 05:37:26',2465,402,'2005-07-14 01:51:26',1,'2006-02-15 21:30:53'), +(3613,'2005-07-06 05:45:53',3776,331,'2005-07-07 10:02:53',1,'2006-02-15 21:30:53'), +(3614,'2005-07-06 05:46:05',853,502,'2005-07-11 01:24:05',2,'2006-02-15 21:30:53'), +(3615,'2005-07-06 05:47:47',711,49,'2005-07-11 05:01:47',1,'2006-02-15 21:30:53'), +(3616,'2005-07-06 05:52:13',557,571,'2005-07-10 10:24:13',1,'2006-02-15 21:30:53'), +(3617,'2005-07-06 05:58:06',1337,125,'2005-07-13 02:10:06',1,'2006-02-15 21:30:53'), +(3618,'2005-07-06 05:58:45',330,264,'2005-07-15 09:13:45',2,'2006-02-15 21:30:53'), +(3619,'2005-07-06 05:59:44',3350,526,'2005-07-11 08:58:44',2,'2006-02-15 21:30:53'), +(3620,'2005-07-06 06:01:50',1661,88,'2005-07-08 05:04:50',1,'2006-02-15 21:30:53'), +(3621,'2005-07-06 06:03:55',3132,171,'2005-07-11 09:25:55',2,'2006-02-15 21:30:53'), +(3622,'2005-07-06 06:05:04',3489,454,'2005-07-12 03:14:04',2,'2006-02-15 21:30:53'), +(3623,'2005-07-06 06:05:23',430,80,'2005-07-07 05:59:23',1,'2006-02-15 21:30:53'), +(3624,'2005-07-06 06:06:27',1778,115,'2005-07-13 08:30:27',2,'2006-02-15 21:30:53'), +(3625,'2005-07-06 06:12:52',1133,175,'2005-07-12 07:37:52',1,'2006-02-15 21:30:53'), +(3626,'2005-07-06 06:15:35',1599,337,'2005-07-10 10:18:35',2,'2006-02-15 21:30:53'), +(3627,'2005-07-06 06:19:25',1087,322,'2005-07-11 05:53:25',1,'2006-02-15 21:30:53'), +(3628,'2005-07-06 06:19:43',3509,588,'2005-07-07 02:23:43',1,'2006-02-15 21:30:53'), +(3629,'2005-07-06 06:23:22',4019,441,'2005-07-08 09:32:22',2,'2006-02-15 21:30:53'), +(3630,'2005-07-06 06:27:15',2448,102,'2005-07-12 10:36:15',1,'2006-02-15 21:30:53'), +(3631,'2005-07-06 06:36:53',4068,47,'2005-07-07 10:32:53',1,'2006-02-15 21:30:53'), +(3632,'2005-07-06 06:38:21',2583,366,'2005-07-11 03:19:21',1,'2006-02-15 21:30:53'), +(3633,'2005-07-06 06:43:26',2978,95,'2005-07-10 04:54:26',1,'2006-02-15 21:30:53'), +(3634,'2005-07-06 06:51:14',3688,245,'2005-07-10 02:30:14',1,'2006-02-15 21:30:53'), +(3635,'2005-07-06 06:55:36',421,250,'2005-07-09 07:57:36',2,'2006-02-15 21:30:53'), +(3636,'2005-07-06 07:03:52',3379,591,'2005-07-08 03:14:52',2,'2006-02-15 21:30:53'), +(3637,'2005-07-06 07:06:31',3823,380,'2005-07-10 02:11:31',2,'2006-02-15 21:30:53'), +(3638,'2005-07-06 07:08:17',190,452,'2005-07-13 12:30:17',1,'2006-02-15 21:30:53'), +(3639,'2005-07-06 07:09:17',2812,7,'2005-07-15 05:12:17',2,'2006-02-15 21:30:53'), +(3640,'2005-07-06 07:12:26',3432,271,'2005-07-10 04:54:26',2,'2006-02-15 21:30:53'), +(3641,'2005-07-06 07:17:09',3834,79,'2005-07-11 07:25:09',1,'2006-02-15 21:30:53'), +(3642,'2005-07-06 07:18:20',4204,166,'2005-07-09 01:37:20',1,'2006-02-15 21:30:53'), +(3643,'2005-07-06 07:20:08',845,176,'2005-07-11 07:01:08',1,'2006-02-15 21:30:53'), +(3644,'2005-07-06 07:20:11',4309,403,'2005-07-11 10:26:11',2,'2006-02-15 21:30:53'), +(3645,'2005-07-06 07:22:09',3390,236,'2005-07-10 11:45:09',1,'2006-02-15 21:30:53'), +(3646,'2005-07-06 07:28:59',3591,322,'2005-07-11 05:19:59',1,'2006-02-15 21:30:53'), +(3647,'2005-07-06 07:29:17',3762,145,'2005-07-13 08:32:17',1,'2006-02-15 21:30:53'), +(3648,'2005-07-06 07:30:41',2810,598,'2005-07-10 06:00:41',2,'2006-02-15 21:30:53'), +(3649,'2005-07-06 07:32:42',3564,24,'2005-07-12 09:37:42',1,'2006-02-15 21:30:53'), +(3650,'2005-07-06 07:34:15',3606,482,'2005-07-08 01:50:15',2,'2006-02-15 21:30:53'), +(3651,'2005-07-06 07:40:31',3323,170,'2005-07-08 03:39:31',2,'2006-02-15 21:30:53'), +(3652,'2005-07-06 07:44:30',1231,518,'2005-07-08 04:41:30',1,'2006-02-15 21:30:53'), +(3653,'2005-07-06 07:45:13',2513,148,'2005-07-10 11:51:13',2,'2006-02-15 21:30:53'), +(3654,'2005-07-06 07:45:31',1621,528,'2005-07-12 09:59:31',2,'2006-02-15 21:30:53'), +(3655,'2005-07-06 07:52:54',1540,493,'2005-07-15 10:49:54',2,'2006-02-15 21:30:53'), +(3656,'2005-07-06 07:55:22',4544,314,'2005-07-13 10:36:22',2,'2006-02-15 21:30:53'), +(3657,'2005-07-06 07:55:30',4134,113,'2005-07-11 07:18:30',1,'2006-02-15 21:30:53'), +(3658,'2005-07-06 08:01:08',3453,253,'2005-07-15 06:36:08',1,'2006-02-15 21:30:53'), +(3659,'2005-07-06 08:03:14',2271,330,'2005-07-12 09:50:14',1,'2006-02-15 21:30:53'), +(3660,'2005-07-06 08:07:29',1129,507,'2005-07-14 08:46:29',1,'2006-02-15 21:30:53'), +(3661,'2005-07-06 08:10:02',2600,442,'2005-07-10 10:17:02',1,'2006-02-15 21:30:53'), +(3662,'2005-07-06 08:11:48',3827,334,'2005-07-09 12:25:48',2,'2006-02-15 21:30:53'), +(3663,'2005-07-06 08:15:47',2646,566,'2005-07-07 08:57:47',1,'2006-02-15 21:30:53'), +(3664,'2005-07-06 08:15:57',3366,528,'2005-07-08 06:11:57',1,'2006-02-15 21:30:53'), +(3665,'2005-07-06 08:23:08',922,102,'2005-07-13 13:38:08',2,'2006-02-15 21:30:53'), +(3666,'2005-07-06 08:27:43',4212,347,'2005-07-09 07:37:43',2,'2006-02-15 21:30:53'), +(3667,'2005-07-06 08:36:34',447,373,'2005-07-15 04:25:34',2,'2006-02-15 21:30:53'), +(3668,'2005-07-06 08:36:48',269,514,'2005-07-10 11:31:48',1,'2006-02-15 21:30:53'), +(3669,'2005-07-06 08:38:29',1299,530,'2005-07-10 05:28:29',1,'2006-02-15 21:30:53'), +(3670,'2005-07-06 08:56:43',4271,268,'2005-07-11 09:11:43',1,'2006-02-15 21:30:53'), +(3671,'2005-07-06 09:01:29',2821,179,'2005-07-15 08:08:29',1,'2006-02-15 21:30:53'), +(3672,'2005-07-06 09:01:56',3883,283,'2005-07-11 14:18:56',1,'2006-02-15 21:30:53'), +(3673,'2005-07-06 09:02:09',1837,88,'2005-07-15 06:45:09',2,'2006-02-15 21:30:53'), +(3674,'2005-07-06 09:03:13',3686,559,'2005-07-13 08:43:13',1,'2006-02-15 21:30:53'), +(3675,'2005-07-06 09:09:19',3662,282,'2005-07-12 08:51:19',1,'2006-02-15 21:30:53'), +(3676,'2005-07-06 09:10:37',1967,137,'2005-07-14 08:24:37',1,'2006-02-15 21:30:53'), +(3677,'2005-07-06 09:11:58',600,5,'2005-07-08 10:50:58',2,'2006-02-15 21:30:53'), +(3678,'2005-07-06 09:15:15',3861,364,'2005-07-10 05:01:15',1,'2006-02-15 21:30:53'), +(3679,'2005-07-06 09:15:57',2186,547,'2005-07-08 03:20:57',1,'2006-02-15 21:30:53'), +(3680,'2005-07-06 09:16:10',2427,82,'2005-07-08 07:52:10',2,'2006-02-15 21:30:53'), +(3681,'2005-07-06 09:19:30',3325,294,'2005-07-11 09:40:30',1,'2006-02-15 21:30:53'), +(3682,'2005-07-06 09:22:48',2597,98,'2005-07-14 11:17:48',2,'2006-02-15 21:30:53'), +(3683,'2005-07-06 09:25:56',3020,43,'2005-07-14 12:10:56',1,'2006-02-15 21:30:53'), +(3684,'2005-07-06 09:29:22',3261,395,'2005-07-12 08:19:22',1,'2006-02-15 21:30:53'), +(3685,'2005-07-06 09:30:45',2015,58,'2005-07-11 15:16:45',2,'2006-02-15 21:30:53'), +(3686,'2005-07-06 09:37:50',376,548,'2005-07-09 10:15:50',2,'2006-02-15 21:30:53'), +(3687,'2005-07-06 09:38:33',2040,207,'2005-07-14 07:50:33',1,'2006-02-15 21:30:53'), +(3688,'2005-07-06 09:41:53',1102,380,'2005-07-14 10:30:53',2,'2006-02-15 21:30:53'), +(3689,'2005-07-06 09:43:01',3168,129,'2005-07-11 09:57:01',1,'2006-02-15 21:30:53'), +(3690,'2005-07-06 09:46:03',4405,435,'2005-07-07 12:12:03',1,'2006-02-15 21:30:53'), +(3691,'2005-07-06 09:46:12',1937,478,'2005-07-07 14:08:12',1,'2006-02-15 21:30:53'), +(3692,'2005-07-06 09:54:12',1237,286,'2005-07-11 09:42:12',2,'2006-02-15 21:30:53'), +(3693,'2005-07-06 09:56:09',2989,545,'2005-07-15 06:50:09',2,'2006-02-15 21:30:53'), +(3694,'2005-07-06 10:01:23',3848,419,'2005-07-08 11:44:23',2,'2006-02-15 21:30:53'), +(3695,'2005-07-06 10:02:08',2823,441,'2005-07-09 15:43:08',1,'2006-02-15 21:30:53'), +(3696,'2005-07-06 10:04:55',3244,497,'2005-07-11 15:58:55',2,'2006-02-15 21:30:53'), +(3697,'2005-07-06 10:07:22',1223,182,'2005-07-13 14:04:22',2,'2006-02-15 21:30:53'), +(3698,'2005-07-06 10:09:20',1263,461,'2005-07-08 15:49:20',1,'2006-02-15 21:30:53'), +(3699,'2005-07-06 10:11:25',418,262,'2005-07-14 05:18:25',1,'2006-02-15 21:30:53'), +(3700,'2005-07-06 10:12:19',343,72,'2005-07-07 14:21:19',2,'2006-02-15 21:30:53'), +(3701,'2005-07-06 10:12:45',3679,31,'2005-07-09 08:52:45',1,'2006-02-15 21:30:53'), +(3702,'2005-07-06 10:13:56',2204,428,'2005-07-10 08:12:56',1,'2006-02-15 21:30:53'), +(3703,'2005-07-06 10:15:26',4276,421,'2005-07-13 13:00:26',1,'2006-02-15 21:30:53'), +(3704,'2005-07-06 10:16:45',2687,323,'2005-07-13 12:44:45',2,'2006-02-15 21:30:53'), +(3705,'2005-07-06 10:17:59',65,223,'2005-07-10 15:31:59',1,'2006-02-15 21:30:53'), +(3706,'2005-07-06 10:18:01',681,132,'2005-07-09 09:07:01',2,'2006-02-15 21:30:53'), +(3707,'2005-07-06 10:21:49',1080,14,'2005-07-12 05:14:49',2,'2006-02-15 21:30:53'), +(3708,'2005-07-06 10:23:27',2105,201,'2005-07-14 09:26:27',1,'2006-02-15 21:30:53'), +(3709,'2005-07-06 10:26:56',4033,187,'2005-07-15 13:51:56',2,'2006-02-15 21:30:53'), +(3710,'2005-07-06 10:28:53',2596,228,'2005-07-15 06:17:53',2,'2006-02-15 21:30:53'), +(3711,'2005-07-06 10:46:15',1914,75,'2005-07-07 09:25:15',2,'2006-02-15 21:30:53'), +(3712,'2005-07-06 10:47:35',3741,504,'2005-07-15 09:39:35',1,'2006-02-15 21:30:53'), +(3713,'2005-07-06 10:49:30',1823,504,'2005-07-13 10:44:30',1,'2006-02-15 21:30:53'), +(3714,'2005-07-06 10:51:28',1985,276,'2005-07-09 13:57:28',2,'2006-02-15 21:30:53'), +(3715,'2005-07-06 10:51:48',4456,228,'2005-07-11 06:08:48',1,'2006-02-15 21:30:53'), +(3716,'2005-07-06 10:52:32',3271,92,'2005-07-14 08:45:32',2,'2006-02-15 21:30:53'), +(3717,'2005-07-06 10:53:34',1677,173,'2005-07-07 13:43:34',2,'2006-02-15 21:30:53'), +(3718,'2005-07-06 10:57:56',2624,56,'2005-07-12 12:54:56',1,'2006-02-15 21:30:53'), +(3719,'2005-07-06 11:05:55',3573,376,'2005-07-11 08:10:55',2,'2006-02-15 21:30:53'), +(3720,'2005-07-06 11:06:57',2958,96,'2005-07-09 14:16:57',1,'2006-02-15 21:30:53'), +(3721,'2005-07-06 11:10:09',2654,226,'2005-07-11 07:45:09',2,'2006-02-15 21:30:53'), +(3722,'2005-07-06 11:10:27',604,83,'2005-07-13 12:56:27',2,'2006-02-15 21:30:53'), +(3723,'2005-07-06 11:12:02',4554,501,'2005-07-14 16:45:02',2,'2006-02-15 21:30:53'), +(3724,'2005-07-06 11:12:48',3622,468,'2005-07-14 14:41:48',1,'2006-02-15 21:30:53'), +(3725,'2005-07-06 11:15:04',2789,126,'2005-07-09 06:39:04',1,'2006-02-15 21:30:53'), +(3726,'2005-07-06 11:15:49',742,363,'2005-07-11 05:54:49',2,'2006-02-15 21:30:53'), +(3727,'2005-07-06 11:16:43',2886,57,'2005-07-07 15:39:43',1,'2006-02-15 21:30:53'), +(3728,'2005-07-06 11:29:00',1798,298,'2005-07-11 06:28:00',1,'2006-02-15 21:30:53'), +(3729,'2005-07-06 11:30:29',3156,90,'2005-07-12 07:18:29',1,'2006-02-15 21:30:53'), +(3730,'2005-07-06 11:31:24',1665,355,'2005-07-15 06:53:24',1,'2006-02-15 21:30:53'), +(3731,'2005-07-06 11:33:36',4133,558,'2005-07-15 12:23:36',2,'2006-02-15 21:30:53'), +(3732,'2005-07-06 11:33:37',106,318,'2005-07-08 08:31:37',1,'2006-02-15 21:30:53'), +(3733,'2005-07-06 11:33:55',3242,586,'2005-07-09 10:08:55',2,'2006-02-15 21:30:53'), +(3734,'2005-07-06 11:40:27',4569,37,'2005-07-14 12:08:27',1,'2006-02-15 21:30:53'), +(3735,'2005-07-06 11:42:04',2262,534,'2005-07-12 14:33:04',2,'2006-02-15 21:30:53'), +(3736,'2005-07-06 11:43:44',1515,23,'2005-07-13 07:55:44',2,'2006-02-15 21:30:53'), +(3737,'2005-07-06 11:45:53',123,403,'2005-07-13 15:27:53',1,'2006-02-15 21:30:53'), +(3738,'2005-07-06 11:50:57',578,546,'2005-07-09 08:07:57',1,'2006-02-15 21:30:53'), +(3739,'2005-07-06 11:54:18',4333,157,'2005-07-09 10:48:18',1,'2006-02-15 21:30:53'), +(3740,'2005-07-06 11:55:35',1829,277,'2005-07-14 09:44:35',2,'2006-02-15 21:30:53'), +(3741,'2005-07-06 12:00:18',1449,584,'2005-07-12 09:02:18',2,'2006-02-15 21:30:53'), +(3742,'2005-07-06 12:01:38',2873,96,'2005-07-15 10:46:38',1,'2006-02-15 21:30:53'), +(3743,'2005-07-06 12:03:54',1012,456,'2005-07-13 10:56:54',2,'2006-02-15 21:30:53'), +(3744,'2005-07-06 12:10:02',3343,510,'2005-07-08 11:49:02',2,'2006-02-15 21:30:53'), +(3745,'2005-07-06 12:10:32',1518,171,'2005-07-12 15:20:32',1,'2006-02-15 21:30:53'), +(3746,'2005-07-06 12:10:51',3387,424,'2005-07-07 11:36:51',2,'2006-02-15 21:30:53'), +(3747,'2005-07-06 12:11:14',1093,437,'2005-07-09 17:14:14',2,'2006-02-15 21:30:53'), +(3748,'2005-07-06 12:11:22',2920,79,'2005-07-12 07:22:22',1,'2006-02-15 21:30:53'), +(3749,'2005-07-06 12:18:03',1531,170,'2005-07-11 07:25:03',1,'2006-02-15 21:30:53'), +(3750,'2005-07-06 12:19:28',2422,103,'2005-07-14 13:16:28',2,'2006-02-15 21:30:53'), +(3751,'2005-07-06 12:23:41',3652,128,'2005-07-10 06:58:41',1,'2006-02-15 21:30:53'), +(3752,'2005-07-06 12:30:12',4561,235,'2005-07-13 12:13:12',1,'2006-02-15 21:30:53'), +(3753,'2005-07-06 12:34:06',774,358,'2005-07-07 14:19:06',2,'2006-02-15 21:30:53'), +(3754,'2005-07-06 12:35:44',4042,83,'2005-07-08 16:28:44',1,'2006-02-15 21:30:53'), +(3755,'2005-07-06 12:37:16',3147,402,'2005-07-13 07:22:16',1,'2006-02-15 21:30:53'), +(3756,'2005-07-06 12:40:38',30,320,'2005-07-11 09:29:38',1,'2006-02-15 21:30:53'), +(3757,'2005-07-06 12:42:26',2816,66,'2005-07-11 10:30:26',1,'2006-02-15 21:30:53'), +(3758,'2005-07-06 12:43:11',2498,48,'2005-07-14 12:52:11',2,'2006-02-15 21:30:53'), +(3759,'2005-07-06 12:46:38',4165,378,'2005-07-10 11:31:38',1,'2006-02-15 21:30:53'), +(3760,'2005-07-06 12:49:28',1306,330,'2005-07-09 16:29:28',1,'2006-02-15 21:30:53'), +(3761,'2005-07-06 12:52:44',4304,464,'2005-07-08 17:22:44',1,'2006-02-15 21:30:53'), +(3762,'2005-07-06 12:52:49',1941,413,'2005-07-12 11:41:49',1,'2006-02-15 21:30:53'), +(3763,'2005-07-06 12:56:31',1573,189,'2005-07-09 14:49:31',1,'2006-02-15 21:30:53'), +(3764,'2005-07-06 13:01:03',3115,470,'2005-07-13 15:26:03',1,'2006-02-15 21:30:53'), +(3765,'2005-07-06 13:01:47',1805,547,'2005-07-09 07:10:47',1,'2006-02-15 21:30:53'), +(3766,'2005-07-06 13:04:35',4504,312,'2005-07-07 15:46:35',1,'2006-02-15 21:30:53'), +(3767,'2005-07-06 13:07:27',923,582,'2005-07-08 18:48:27',1,'2006-02-15 21:30:53'), +(3768,'2005-07-06 13:07:30',3995,573,'2005-07-09 16:26:30',2,'2006-02-15 21:30:53'), +(3769,'2005-07-06 13:11:33',467,567,'2005-07-14 17:54:33',2,'2006-02-15 21:30:53'), +(3770,'2005-07-06 13:14:28',3836,198,'2005-07-13 09:23:28',1,'2006-02-15 21:30:53'), +(3771,'2005-07-06 13:19:34',1373,56,'2005-07-10 10:27:34',2,'2006-02-15 21:30:53'), +(3772,'2005-07-06 13:22:53',434,338,'2005-07-10 11:54:53',2,'2006-02-15 21:30:53'), +(3773,'2005-07-06 13:23:34',2034,263,'2005-07-08 17:23:34',2,'2006-02-15 21:30:53'), +(3774,'2005-07-06 13:25:07',4044,439,'2005-07-15 12:56:07',2,'2006-02-15 21:30:53'), +(3775,'2005-07-06 13:27:33',3696,300,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'), +(3776,'2005-07-06 13:31:37',4387,278,'2005-07-10 10:53:37',2,'2006-02-15 21:30:53'), +(3777,'2005-07-06 13:36:48',2470,548,'2005-07-11 14:26:48',1,'2006-02-15 21:30:53'), +(3778,'2005-07-06 13:44:48',2181,122,'2005-07-13 09:31:48',2,'2006-02-15 21:30:53'), +(3779,'2005-07-06 13:46:36',634,583,'2005-07-10 15:49:36',2,'2006-02-15 21:30:53'), +(3780,'2005-07-06 13:52:02',1209,99,'2005-07-15 08:41:02',2,'2006-02-15 21:30:53'), +(3781,'2005-07-06 13:53:41',3894,23,'2005-07-15 10:03:41',1,'2006-02-15 21:30:53'), +(3782,'2005-07-06 13:57:03',3365,515,'2005-07-09 11:13:03',2,'2006-02-15 21:30:53'), +(3783,'2005-07-06 13:57:31',2345,386,'2005-07-14 10:44:31',2,'2006-02-15 21:30:53'), +(3784,'2005-07-06 13:57:56',2287,165,'2005-07-14 17:24:56',2,'2006-02-15 21:30:53'), +(3785,'2005-07-06 14:00:13',3279,577,'2005-07-14 10:13:13',2,'2006-02-15 21:30:53'), +(3786,'2005-07-06 14:00:41',4508,152,'2005-07-13 16:49:41',1,'2006-02-15 21:30:53'), +(3787,'2005-07-06 14:02:01',288,474,'2005-07-09 19:09:01',2,'2006-02-15 21:30:53'), +(3788,'2005-07-06 14:02:02',1363,379,'2005-07-10 18:24:02',1,'2006-02-15 21:30:53'), +(3789,'2005-07-06 14:02:26',3560,595,'2005-07-14 18:13:26',1,'2006-02-15 21:30:53'), +(3790,'2005-07-06 14:13:45',1711,10,'2005-07-14 13:35:45',1,'2006-02-15 21:30:53'), +(3791,'2005-07-06 14:24:56',3426,452,'2005-07-14 11:06:56',2,'2006-02-15 21:30:53'), +(3792,'2005-07-06 14:26:38',2651,312,'2005-07-11 16:34:38',1,'2006-02-15 21:30:53'), +(3793,'2005-07-06 14:32:44',4558,553,'2005-07-08 13:55:44',1,'2006-02-15 21:30:53'), +(3794,'2005-07-06 14:35:26',584,499,'2005-07-11 14:40:26',2,'2006-02-15 21:30:53'), +(3795,'2005-07-06 14:37:41',240,153,'2005-07-11 20:27:41',2,'2006-02-15 21:30:53'), +(3796,'2005-07-06 14:45:22',1649,228,'2005-07-07 11:01:22',2,'2006-02-15 21:30:53'), +(3797,'2005-07-06 14:54:52',1047,374,'2005-07-10 09:50:52',2,'2006-02-15 21:30:53'), +(3798,'2005-07-06 14:57:53',1942,479,'2005-07-07 10:48:53',2,'2006-02-15 21:30:53'), +(3799,'2005-07-06 15:00:14',4532,251,'2005-07-10 15:39:14',1,'2006-02-15 21:30:53'), +(3800,'2005-07-06 15:01:27',4004,100,'2005-07-15 11:12:27',2,'2006-02-15 21:30:53'), +(3801,'2005-07-06 15:05:50',4209,68,'2005-07-12 12:56:50',1,'2006-02-15 21:30:53'), +(3802,'2005-07-06 15:06:09',1017,91,'2005-07-08 09:33:09',2,'2006-02-15 21:30:53'), +(3803,'2005-07-06 15:06:55',2062,494,'2005-07-08 18:53:55',1,'2006-02-15 21:30:53'), +(3804,'2005-07-06 15:08:08',537,126,'2005-07-15 14:01:08',2,'2006-02-15 21:30:53'), +(3805,'2005-07-06 15:08:42',1716,418,'2005-07-07 14:34:42',1,'2006-02-15 21:30:53'), +(3806,'2005-07-06 15:09:41',3555,154,'2005-07-14 09:14:41',2,'2006-02-15 21:30:53'), +(3807,'2005-07-06 15:11:44',39,425,'2005-07-10 09:20:44',1,'2006-02-15 21:30:53'), +(3808,'2005-07-06 15:15:35',4339,314,'2005-07-07 16:10:35',1,'2006-02-15 21:30:53'), +(3809,'2005-07-06 15:16:37',2932,358,'2005-07-09 14:45:37',1,'2006-02-15 21:30:53'), +(3810,'2005-07-06 15:18:44',342,296,'2005-07-12 09:52:44',2,'2006-02-15 21:30:53'), +(3811,'2005-07-06 15:20:37',695,208,'2005-07-08 16:26:37',2,'2006-02-15 21:30:53'), +(3812,'2005-07-06 15:22:19',4490,381,'2005-07-08 13:04:19',1,'2006-02-15 21:30:53'), +(3813,'2005-07-06 15:23:34',4100,189,'2005-07-08 19:03:34',1,'2006-02-15 21:30:53'), +(3814,'2005-07-06 15:23:56',3826,306,'2005-07-13 20:51:56',2,'2006-02-15 21:30:53'), +(3815,'2005-07-06 15:26:36',4038,472,'2005-07-11 17:07:36',2,'2006-02-15 21:30:53'), +(3816,'2005-07-06 15:27:04',2941,489,'2005-07-14 13:12:04',1,'2006-02-15 21:30:53'), +(3817,'2005-07-06 15:31:45',2933,267,'2005-07-11 17:11:45',1,'2006-02-15 21:30:53'), +(3818,'2005-07-06 15:33:31',653,97,'2005-07-11 16:35:31',1,'2006-02-15 21:30:53'), +(3819,'2005-07-06 15:35:06',1814,74,'2005-07-14 19:08:06',1,'2006-02-15 21:30:53'), +(3820,'2005-07-06 15:35:26',4192,460,'2005-07-11 12:22:26',2,'2006-02-15 21:30:53'), +(3821,'2005-07-06 15:36:20',4385,354,'2005-07-11 20:04:20',1,'2006-02-15 21:30:53'), +(3822,'2005-07-06 15:41:15',1314,241,'2005-07-07 16:41:15',1,'2006-02-15 21:30:53'), +(3823,'2005-07-06 15:41:27',124,265,'2005-07-09 09:48:27',1,'2006-02-15 21:30:53'), +(3824,'2005-07-06 15:43:15',3107,107,'2005-07-13 16:05:15',2,'2006-02-15 21:30:53'), +(3825,'2005-07-06 15:50:03',630,132,'2005-07-09 19:20:03',1,'2006-02-15 21:30:53'), +(3826,'2005-07-06 15:51:58',73,451,'2005-07-13 12:35:58',1,'2006-02-15 21:30:53'), +(3827,'2005-07-06 15:52:03',2072,41,'2005-07-08 21:43:03',2,'2006-02-15 21:30:53'), +(3828,'2005-07-06 15:57:30',4493,498,'2005-07-10 12:17:30',2,'2006-02-15 21:30:53'), +(3829,'2005-07-06 15:59:40',4126,356,'2005-07-11 10:29:40',1,'2006-02-15 21:30:53'), +(3830,'2005-07-06 16:01:16',553,310,'2005-07-15 19:35:16',2,'2006-02-15 21:30:53'), +(3831,'2005-07-06 16:06:35',1338,206,'2005-07-08 15:14:35',2,'2006-02-15 21:30:53'), +(3832,'2005-07-06 16:12:23',4499,233,'2005-07-12 21:29:23',1,'2006-02-15 21:30:53'), +(3833,'2005-07-06 16:18:28',3232,416,'2005-07-14 20:09:28',2,'2006-02-15 21:30:53'), +(3834,'2005-07-06 16:19:56',3001,366,'2005-07-13 11:38:56',2,'2006-02-15 21:30:53'), +(3835,'2005-07-06 16:22:45',935,486,'2005-07-11 17:04:45',2,'2006-02-15 21:30:53'), +(3836,'2005-07-06 16:26:04',1148,351,'2005-07-10 15:08:04',1,'2006-02-15 21:30:53'), +(3837,'2005-07-06 16:27:43',3166,309,'2005-07-07 18:02:43',1,'2006-02-15 21:30:53'), +(3838,'2005-07-06 16:29:43',3404,565,'2005-07-11 20:50:43',1,'2006-02-15 21:30:53'), +(3839,'2005-07-06 16:30:30',3230,231,'2005-07-11 19:00:30',1,'2006-02-15 21:30:53'), +(3840,'2005-07-06 16:30:59',4384,468,'2005-07-15 22:08:59',2,'2006-02-15 21:30:53'), +(3841,'2005-07-06 16:34:00',4228,470,'2005-07-08 15:12:00',2,'2006-02-15 21:30:53'), +(3842,'2005-07-06 16:34:32',3119,583,'2005-07-08 11:55:32',2,'2006-02-15 21:30:53'), +(3843,'2005-07-06 16:35:40',3844,62,'2005-07-07 18:29:40',1,'2006-02-15 21:30:53'), +(3844,'2005-07-06 16:37:58',2814,179,'2005-07-09 19:54:58',2,'2006-02-15 21:30:53'), +(3845,'2005-07-06 16:38:14',4495,28,'2005-07-09 14:59:14',2,'2006-02-15 21:30:53'), +(3846,'2005-07-06 16:43:10',2829,88,'2005-07-14 11:09:10',2,'2006-02-15 21:30:53'), +(3847,'2005-07-06 16:44:41',782,206,'2005-07-07 21:54:41',2,'2006-02-15 21:30:53'), +(3848,'2005-07-06 16:47:32',2906,188,'2005-07-14 15:00:32',1,'2006-02-15 21:30:53'), +(3849,'2005-07-06 16:49:43',3660,60,'2005-07-12 17:20:43',1,'2006-02-15 21:30:53'), +(3850,'2005-07-06 16:51:21',1700,103,'2005-07-12 13:58:21',1,'2006-02-15 21:30:53'), +(3851,'2005-07-06 16:54:12',493,436,'2005-07-11 22:49:12',1,'2006-02-15 21:30:53'), +(3852,'2005-07-06 16:57:49',3329,511,'2005-07-11 17:11:49',1,'2006-02-15 21:30:53'), +(3853,'2005-07-06 16:59:20',1411,537,'2005-07-07 12:30:20',2,'2006-02-15 21:30:53'), +(3854,'2005-07-06 17:02:33',2054,243,'2005-07-12 17:32:33',2,'2006-02-15 21:30:53'), +(3855,'2005-07-06 17:03:48',2931,46,'2005-07-12 14:32:48',1,'2006-02-15 21:30:53'), +(3856,'2005-07-06 17:04:46',3083,498,'2005-07-14 19:23:46',2,'2006-02-15 21:30:53'), +(3857,'2005-07-06 17:07:54',1135,236,'2005-07-07 13:28:54',1,'2006-02-15 21:30:53'), +(3858,'2005-07-06 17:17:57',829,377,'2005-07-10 23:10:57',2,'2006-02-15 21:30:53'), +(3859,'2005-07-06 17:18:15',2548,553,'2005-07-09 16:48:15',1,'2006-02-15 21:30:53'), +(3860,'2005-07-06 17:20:24',144,514,'2005-07-09 22:33:24',1,'2006-02-15 21:30:53'), +(3861,'2005-07-06 17:24:49',4506,202,'2005-07-15 22:19:49',2,'2006-02-15 21:30:53'), +(3862,'2005-07-06 17:35:22',471,181,'2005-07-15 17:13:22',1,'2006-02-15 21:30:53'), +(3863,'2005-07-06 17:40:18',363,481,'2005-07-07 17:58:18',2,'2006-02-15 21:30:53'), +(3864,'2005-07-06 17:41:42',2811,68,'2005-07-08 14:17:42',1,'2006-02-15 21:30:53'), +(3865,'2005-07-06 17:46:57',3579,357,'2005-07-12 12:20:57',1,'2006-02-15 21:30:53'), +(3866,'2005-07-06 17:47:20',194,409,'2005-07-15 18:12:20',1,'2006-02-15 21:30:53'), +(3867,'2005-07-06 17:52:19',3620,580,'2005-07-13 21:48:19',1,'2006-02-15 21:30:53'), +(3868,'2005-07-06 17:54:13',1606,416,'2005-07-10 14:51:13',1,'2006-02-15 21:30:53'), +(3869,'2005-07-06 17:56:46',2540,183,'2005-07-10 20:44:46',1,'2006-02-15 21:30:53'), +(3870,'2005-07-06 17:57:54',3357,12,'2005-07-13 12:30:54',1,'2006-02-15 21:30:53'), +(3871,'2005-07-06 17:58:51',3114,331,'2005-07-15 22:18:51',2,'2006-02-15 21:30:53'), +(3872,'2005-07-06 18:00:19',1785,513,'2005-07-07 17:26:19',1,'2006-02-15 21:30:53'), +(3873,'2005-07-06 18:03:16',4148,394,'2005-07-15 23:58:16',2,'2006-02-15 21:30:53'), +(3874,'2005-07-06 18:06:12',1870,137,'2005-07-12 16:55:12',1,'2006-02-15 21:30:53'), +(3875,'2005-07-06 18:15:39',712,108,'2005-07-11 17:34:39',1,'2006-02-15 21:30:53'), +(3876,'2005-07-06 18:21:13',4039,295,'2005-07-14 16:57:13',2,'2006-02-15 21:30:53'), +(3877,'2005-07-06 18:22:10',2796,576,'2005-07-07 23:38:10',1,'2006-02-15 21:30:53'), +(3878,'2005-07-06 18:27:09',4022,385,'2005-07-15 20:13:09',2,'2006-02-15 21:30:53'), +(3879,'2005-07-06 18:31:20',1376,81,'2005-07-09 19:03:20',2,'2006-02-15 21:30:53'), +(3880,'2005-07-06 18:32:49',42,507,'2005-07-07 20:46:49',2,'2006-02-15 21:30:53'), +(3881,'2005-07-06 18:35:37',143,456,'2005-07-10 00:06:37',2,'2006-02-15 21:30:53'), +(3882,'2005-07-06 18:38:21',788,254,'2005-07-09 14:55:21',1,'2006-02-15 21:30:53'), +(3883,'2005-07-06 18:39:38',3238,69,'2005-07-14 15:59:38',2,'2006-02-15 21:30:53'), +(3884,'2005-07-06 18:41:33',1806,210,'2005-07-07 22:06:33',1,'2006-02-15 21:30:53'), +(3885,'2005-07-06 18:43:43',1820,282,'2005-07-12 19:48:43',2,'2006-02-15 21:30:53'), +(3886,'2005-07-06 18:44:24',2368,326,'2005-07-08 15:11:24',1,'2006-02-15 21:30:53'), +(3887,'2005-07-06 18:46:34',1695,530,'2005-07-07 13:15:34',1,'2006-02-15 21:30:53'), +(3888,'2005-07-06 18:54:20',1945,412,'2005-07-12 17:13:20',2,'2006-02-15 21:30:53'), +(3889,'2005-07-06 18:56:25',2005,576,'2005-07-08 21:22:25',2,'2006-02-15 21:30:53'), +(3890,'2005-07-06 18:58:15',2570,553,'2005-07-10 18:51:15',1,'2006-02-15 21:30:53'), +(3891,'2005-07-06 18:58:25',3216,553,'2005-07-09 23:20:25',2,'2006-02-15 21:30:53'), +(3892,'2005-07-06 18:58:58',778,549,'2005-07-10 19:29:58',1,'2006-02-15 21:30:53'), +(3893,'2005-07-06 18:59:31',1281,350,'2005-07-12 19:21:31',1,'2006-02-15 21:30:53'), +(3894,'2005-07-06 19:01:39',2087,149,'2005-07-12 21:35:39',2,'2006-02-15 21:30:53'), +(3895,'2005-07-06 19:04:24',145,584,'2005-07-15 17:48:24',2,'2006-02-15 21:30:53'), +(3896,'2005-07-06 19:09:15',1755,309,'2005-07-16 00:52:15',2,'2006-02-15 21:30:53'), +(3897,'2005-07-06 19:11:43',14,277,'2005-07-11 21:50:43',2,'2006-02-15 21:30:53'), +(3898,'2005-07-06 19:12:37',3858,53,'2005-07-11 15:50:37',1,'2006-02-15 21:30:53'), +(3899,'2005-07-06 19:12:40',4020,485,'2005-07-13 23:41:40',1,'2006-02-15 21:30:53'), +(3900,'2005-07-06 19:21:28',1497,129,'2005-07-15 21:06:28',2,'2006-02-15 21:30:53'), +(3901,'2005-07-06 19:24:55',3367,321,'2005-07-14 20:30:55',2,'2006-02-15 21:30:53'), +(3902,'2005-07-06 19:25:18',2868,192,'2005-07-10 17:42:18',2,'2006-02-15 21:30:53'), +(3903,'2005-07-06 19:27:32',3614,369,'2005-07-08 23:27:32',1,'2006-02-15 21:30:53'), +(3904,'2005-07-06 19:30:57',3600,485,'2005-07-11 18:47:57',2,'2006-02-15 21:30:53'), +(3905,'2005-07-06 19:33:34',3817,526,'2005-07-15 17:55:34',1,'2006-02-15 21:30:53'), +(3906,'2005-07-06 19:35:55',1383,293,'2005-07-15 22:35:55',1,'2006-02-15 21:30:53'), +(3907,'2005-07-06 19:39:14',2507,452,'2005-07-11 17:45:14',1,'2006-02-15 21:30:53'), +(3908,'2005-07-06 19:47:26',3980,116,'2005-07-13 19:59:26',1,'2006-02-15 21:30:53'), +(3909,'2005-07-06 19:54:41',3423,396,'2005-07-15 18:11:41',2,'2006-02-15 21:30:53'), +(3910,'2005-07-06 20:05:18',2085,248,'2005-07-10 18:51:18',1,'2006-02-15 21:30:53'), +(3911,'2005-07-06 20:09:11',4548,34,'2005-07-08 23:53:11',1,'2006-02-15 21:30:53'), +(3912,'2005-07-06 20:10:03',2449,154,'2005-07-08 18:39:03',2,'2006-02-15 21:30:53'), +(3913,'2005-07-06 20:11:00',752,494,'2005-07-08 14:42:00',1,'2006-02-15 21:30:53'), +(3914,'2005-07-06 20:11:10',4092,159,'2005-07-14 14:42:10',2,'2006-02-15 21:30:53'), +(3915,'2005-07-06 20:16:46',125,163,'2005-07-10 17:24:46',1,'2006-02-15 21:30:53'), +(3916,'2005-07-06 20:18:50',3198,46,'2005-07-12 21:56:50',1,'2006-02-15 21:30:53'), +(3917,'2005-07-06 20:19:29',2747,471,'2005-07-11 00:49:29',1,'2006-02-15 21:30:53'), +(3918,'2005-07-06 20:26:15',1111,435,'2005-07-15 20:32:15',1,'2006-02-15 21:30:53'), +(3919,'2005-07-06 20:26:21',2695,147,'2005-07-15 00:13:21',1,'2006-02-15 21:30:53'), +(3920,'2005-07-06 20:26:40',1551,321,'2005-07-15 15:00:40',2,'2006-02-15 21:30:53'), +(3921,'2005-07-06 20:29:48',949,531,'2005-07-14 01:44:48',1,'2006-02-15 21:30:53'), +(3922,'2005-07-06 20:32:27',2878,470,'2005-07-14 19:00:27',1,'2006-02-15 21:30:53'), +(3923,'2005-07-06 20:34:10',2039,63,'2005-07-13 19:20:10',1,'2006-02-15 21:30:53'), +(3924,'2005-07-06 20:38:02',187,114,'2005-07-11 23:35:02',2,'2006-02-15 21:30:53'), +(3925,'2005-07-06 20:41:44',2653,428,'2005-07-15 21:05:44',2,'2006-02-15 21:30:53'), +(3926,'2005-07-06 20:42:35',4241,500,'2005-07-09 16:30:35',2,'2006-02-15 21:30:53'), +(3927,'2005-07-06 20:48:14',2194,404,'2005-07-10 15:37:14',1,'2006-02-15 21:30:53'), +(3928,'2005-07-06 20:52:09',1960,411,'2005-07-08 18:51:09',1,'2006-02-15 21:30:53'), +(3929,'2005-07-06 20:52:39',1235,453,'2005-07-12 00:27:39',2,'2006-02-15 21:30:53'), +(3930,'2005-07-06 20:54:07',165,573,'2005-07-10 18:31:07',1,'2006-02-15 21:30:53'), +(3931,'2005-07-06 21:03:46',182,176,'2005-07-16 01:32:46',1,'2006-02-15 21:30:53'), +(3932,'2005-07-06 21:06:17',4396,490,'2005-07-07 19:25:17',2,'2006-02-15 21:30:53'), +(3933,'2005-07-06 21:06:37',1202,229,'2005-07-08 20:23:37',1,'2006-02-15 21:30:53'), +(3934,'2005-07-06 21:07:23',3187,576,'2005-07-10 18:20:23',2,'2006-02-15 21:30:53'), +(3935,'2005-07-06 21:08:29',3402,503,'2005-07-15 23:28:29',2,'2006-02-15 21:30:53'), +(3936,'2005-07-06 21:15:03',4258,129,'2005-07-08 17:45:03',2,'2006-02-15 21:30:53'), +(3937,'2005-07-06 21:15:38',2091,211,'2005-07-15 00:01:38',2,'2006-02-15 21:30:53'), +(3938,'2005-07-06 21:15:45',1991,341,'2005-07-13 20:02:45',2,'2006-02-15 21:30:53'), +(3939,'2005-07-06 21:16:32',3627,149,'2005-07-11 03:12:32',2,'2006-02-15 21:30:53'), +(3940,'2005-07-06 21:16:59',1502,116,'2005-07-07 19:17:59',2,'2006-02-15 21:30:53'), +(3941,'2005-07-06 21:20:37',382,560,'2005-07-09 01:35:37',2,'2006-02-15 21:30:53'), +(3942,'2005-07-06 21:21:34',677,553,'2005-07-15 02:34:34',1,'2006-02-15 21:30:53'), +(3943,'2005-07-06 21:22:17',1816,566,'2005-07-07 21:26:17',1,'2006-02-15 21:30:53'), +(3944,'2005-07-06 21:34:11',4213,436,'2005-07-08 23:46:11',2,'2006-02-15 21:30:53'), +(3945,'2005-07-06 21:35:00',754,86,'2005-07-08 00:31:00',2,'2006-02-15 21:30:53'), +(3946,'2005-07-06 21:39:24',294,13,'2005-07-11 16:10:24',1,'2006-02-15 21:30:53'), +(3947,'2005-07-06 21:42:21',4188,324,'2005-07-08 19:37:21',1,'2006-02-15 21:30:53'), +(3948,'2005-07-06 21:45:53',2254,161,'2005-07-08 19:24:53',2,'2006-02-15 21:30:53'), +(3949,'2005-07-06 21:46:36',1765,153,'2005-07-11 03:18:36',1,'2006-02-15 21:30:53'), +(3950,'2005-07-06 21:48:44',4153,598,'2005-07-14 02:25:44',1,'2006-02-15 21:30:53'), +(3951,'2005-07-06 21:50:41',2288,250,'2005-07-12 02:09:41',2,'2006-02-15 21:30:53'), +(3952,'2005-07-06 21:51:31',1719,417,'2005-07-13 15:54:31',1,'2006-02-15 21:30:53'), +(3953,'2005-07-06 21:54:55',3879,385,'2005-07-09 18:52:55',1,'2006-02-15 21:30:53'), +(3954,'2005-07-06 21:57:44',4250,558,'2005-07-08 02:37:44',2,'2006-02-15 21:30:53'), +(3955,'2005-07-06 21:58:08',2523,247,'2005-07-08 03:43:08',1,'2006-02-15 21:30:53'), +(3956,'2005-07-06 22:01:51',15,147,'2005-07-12 21:35:51',2,'2006-02-15 21:30:53'), +(3957,'2005-07-06 22:05:47',443,414,'2005-07-16 01:08:47',1,'2006-02-15 21:30:53'), +(3958,'2005-07-06 22:07:33',4117,288,'2005-07-10 19:31:33',2,'2006-02-15 21:30:53'), +(3959,'2005-07-06 22:07:58',40,448,'2005-07-13 02:30:58',1,'2006-02-15 21:30:53'), +(3960,'2005-07-06 22:08:53',2090,594,'2005-07-07 23:21:53',2,'2006-02-15 21:30:53'), +(3961,'2005-07-06 22:11:43',4320,364,'2005-07-09 03:14:43',1,'2006-02-15 21:30:53'), +(3962,'2005-07-06 22:13:45',379,307,'2005-07-15 00:22:45',2,'2006-02-15 21:30:53'), +(3963,'2005-07-06 22:19:17',3912,111,'2005-07-15 01:22:17',2,'2006-02-15 21:30:53'), +(3964,'2005-07-06 22:23:02',1853,30,'2005-07-07 22:21:02',1,'2006-02-15 21:30:53'), +(3965,'2005-07-06 22:36:20',2863,243,'2005-07-09 17:45:20',1,'2006-02-15 21:30:53'), +(3966,'2005-07-06 22:38:49',556,495,'2005-07-07 23:33:49',1,'2006-02-15 21:30:53'), +(3967,'2005-07-06 22:45:10',2510,31,'2005-07-09 23:54:10',2,'2006-02-15 21:30:53'), +(3968,'2005-07-06 22:47:09',558,235,'2005-07-12 21:01:09',1,'2006-02-15 21:30:53'), +(3969,'2005-07-06 22:47:59',383,587,'2005-07-08 02:11:59',1,'2006-02-15 21:30:53'), +(3970,'2005-07-06 22:48:17',701,381,'2005-07-15 19:07:17',1,'2006-02-15 21:30:53'), +(3971,'2005-07-06 22:50:40',4415,473,'2005-07-08 01:02:40',1,'2006-02-15 21:30:53'), +(3972,'2005-07-06 22:53:57',1895,598,'2005-07-11 01:32:57',1,'2006-02-15 21:30:53'), +(3973,'2005-07-06 22:58:31',2625,592,'2005-07-16 03:27:31',2,'2006-02-15 21:30:53'), +(3974,'2005-07-06 22:59:16',4282,318,'2005-07-11 22:30:16',1,'2006-02-15 21:30:53'), +(3975,'2005-07-06 23:00:09',4343,545,'2005-07-10 01:39:09',2,'2006-02-15 21:30:53'), +(3976,'2005-07-06 23:00:20',2424,329,'2005-07-07 21:51:20',2,'2006-02-15 21:30:53'), +(3977,'2005-07-06 23:00:49',1284,449,'2005-07-15 00:41:49',1,'2006-02-15 21:30:53'), +(3978,'2005-07-06 23:04:33',4341,343,'2005-07-10 17:45:33',2,'2006-02-15 21:30:53'), +(3979,'2005-07-06 23:04:35',794,550,'2005-07-13 01:38:35',2,'2006-02-15 21:30:53'), +(3980,'2005-07-06 23:11:11',1845,475,'2005-07-14 18:22:11',1,'2006-02-15 21:30:53'), +(3981,'2005-07-06 23:12:12',842,375,'2005-07-13 01:47:12',2,'2006-02-15 21:30:53'), +(3982,'2005-07-06 23:14:16',4327,64,'2005-07-08 21:21:16',2,'2006-02-15 21:30:53'), +(3983,'2005-07-06 23:14:21',1261,6,'2005-07-12 17:55:21',2,'2006-02-15 21:30:53'), +(3984,'2005-07-06 23:22:36',2205,570,'2005-07-08 21:40:36',2,'2006-02-15 21:30:53'), +(3985,'2005-07-06 23:24:03',2096,307,'2005-07-10 00:20:03',2,'2006-02-15 21:30:53'), +(3986,'2005-07-06 23:25:13',3737,122,'2005-07-09 21:26:13',2,'2006-02-15 21:30:53'), +(3987,'2005-07-06 23:28:24',3104,270,'2005-07-15 00:52:24',1,'2006-02-15 21:30:53'), +(3988,'2005-07-06 23:30:42',2981,421,'2005-07-13 03:06:42',2,'2006-02-15 21:30:53'), +(3989,'2005-07-06 23:30:54',2366,213,'2005-07-12 01:28:54',1,'2006-02-15 21:30:53'), +(3990,'2005-07-06 23:32:44',2009,558,'2005-07-14 01:35:44',2,'2006-02-15 21:30:53'), +(3991,'2005-07-06 23:33:41',587,583,'2005-07-16 01:31:41',1,'2006-02-15 21:30:53'), +(3992,'2005-07-06 23:36:56',3219,448,'2005-07-15 03:13:56',1,'2006-02-15 21:30:53'), +(3993,'2005-07-06 23:37:06',1061,525,'2005-07-14 19:31:06',1,'2006-02-15 21:30:53'), +(3994,'2005-07-06 23:39:01',902,487,'2005-07-14 00:33:01',1,'2006-02-15 21:30:53'), +(3995,'2005-07-06 23:43:03',3990,128,'2005-07-13 04:13:03',2,'2006-02-15 21:30:53'), +(3996,'2005-07-06 23:46:43',2857,551,'2005-07-14 22:34:43',2,'2006-02-15 21:30:53'), +(3997,'2005-07-06 23:46:52',3895,52,'2005-07-14 05:39:52',2,'2006-02-15 21:30:53'), +(3998,'2005-07-06 23:49:20',1245,566,'2005-07-12 20:39:20',1,'2006-02-15 21:30:53'), +(3999,'2005-07-06 23:50:54',707,390,'2005-07-09 22:09:54',1,'2006-02-15 21:30:53'), +(4000,'2005-07-06 23:58:37',2122,95,'2005-07-08 21:43:37',1,'2006-02-15 21:30:53'), +(4001,'2005-07-07 00:07:00',864,120,'2005-07-13 21:27:00',2,'2006-02-15 21:30:53'), +(4002,'2005-07-07 00:08:18',2790,308,'2005-07-14 01:29:18',2,'2006-02-15 21:30:53'), +(4003,'2005-07-07 00:09:02',4054,8,'2005-07-08 04:27:02',1,'2006-02-15 21:30:53'), +(4004,'2005-07-07 00:20:51',667,574,'2005-07-11 18:55:51',2,'2006-02-15 21:30:53'), +(4005,'2005-07-07 00:22:26',3677,190,'2005-07-15 04:34:26',2,'2006-02-15 21:30:53'), +(4006,'2005-07-07 00:25:29',397,473,'2005-07-08 05:30:29',2,'2006-02-15 21:30:53'), +(4007,'2005-07-07 00:26:05',2071,285,'2005-07-15 19:53:05',1,'2006-02-15 21:30:53'), +(4008,'2005-07-07 00:26:43',1107,505,'2005-07-16 03:58:43',2,'2006-02-15 21:30:53'), +(4009,'2005-07-07 00:28:55',3607,394,'2005-07-10 00:37:55',1,'2006-02-15 21:30:53'), +(4010,'2005-07-07 00:47:00',4509,476,'2005-07-12 06:23:00',2,'2006-02-15 21:30:53'), +(4011,'2005-07-07 00:48:25',2052,20,'2005-07-13 06:30:25',2,'2006-02-15 21:30:53'), +(4012,'2005-07-07 00:56:09',1400,104,'2005-07-10 21:49:09',1,'2006-02-15 21:30:53'), +(4013,'2005-07-07 00:58:00',2344,475,'2005-07-15 19:42:00',2,'2006-02-15 21:30:53'), +(4014,'2005-07-07 00:58:54',583,510,'2005-07-12 02:40:54',1,'2006-02-15 21:30:53'), +(4015,'2005-07-07 00:59:46',3032,233,'2005-07-14 03:16:46',2,'2006-02-15 21:30:53'), +(4016,'2005-07-07 01:05:50',3318,335,'2005-07-09 05:59:50',1,'2006-02-15 21:30:53'), +(4017,'2005-07-07 01:08:18',3117,595,'2005-07-09 01:47:18',2,'2006-02-15 21:30:53'), +(4018,'2005-07-07 01:10:33',906,207,'2005-07-12 20:54:33',2,'2006-02-15 21:30:53'), +(4019,'2005-07-07 01:27:44',3200,294,'2005-07-10 21:30:44',1,'2006-02-15 21:30:53'), +(4020,'2005-07-07 01:42:22',3760,471,'2005-07-10 00:53:22',1,'2006-02-15 21:30:53'), +(4021,'2005-07-07 01:46:44',1676,315,'2005-07-12 00:16:44',2,'2006-02-15 21:30:53'), +(4022,'2005-07-07 01:50:06',3914,390,'2005-07-09 21:47:06',2,'2006-02-15 21:30:53'), +(4023,'2005-07-07 01:55:25',274,573,'2005-07-08 02:43:25',2,'2006-02-15 21:30:53'), +(4024,'2005-07-07 02:11:23',3976,448,'2005-07-11 02:00:23',1,'2006-02-15 21:30:53'), +(4025,'2005-07-07 02:13:24',3908,114,'2005-07-08 00:47:24',1,'2006-02-15 21:30:53'), +(4026,'2005-07-07 02:15:48',4142,251,'2005-07-14 04:15:48',2,'2006-02-15 21:30:53'), +(4027,'2005-07-07 02:19:01',56,116,'2005-07-10 01:12:01',1,'2006-02-15 21:30:53'), +(4028,'2005-07-07 02:19:14',1651,344,'2005-07-15 08:09:14',2,'2006-02-15 21:30:53'), +(4029,'2005-07-07 02:19:44',4075,518,'2005-07-15 02:30:44',2,'2006-02-15 21:30:53'), +(4030,'2005-07-07 02:25:42',1734,300,'2005-07-08 22:53:42',2,'2006-02-15 21:30:53'), +(4031,'2005-07-07 02:32:07',3094,143,'2005-07-14 06:01:07',2,'2006-02-15 21:30:53'), +(4032,'2005-07-07 02:34:13',2628,335,'2005-07-14 22:43:13',1,'2006-02-15 21:30:53'), +(4033,'2005-07-07 02:35:46',203,453,'2005-07-16 01:12:46',1,'2006-02-15 21:30:53'), +(4034,'2005-07-07 02:36:33',1666,354,'2005-07-09 08:32:33',2,'2006-02-15 21:30:53'), +(4035,'2005-07-07 02:45:02',3611,539,'2005-07-14 01:41:02',1,'2006-02-15 21:30:53'), +(4036,'2005-07-07 02:48:00',500,397,'2005-07-07 22:46:00',1,'2006-02-15 21:30:53'), +(4037,'2005-07-07 02:52:52',3903,594,'2005-07-16 00:09:52',1,'2006-02-15 21:30:53'), +(4038,'2005-07-07 02:52:53',1264,27,'2005-07-11 22:32:53',2,'2006-02-15 21:30:53'), +(4039,'2005-07-07 02:57:59',4050,290,'2005-07-12 03:44:59',2,'2006-02-15 21:30:53'), +(4040,'2005-07-07 03:02:40',3046,103,'2005-07-16 06:05:40',2,'2006-02-15 21:30:53'), +(4041,'2005-07-07 03:03:33',2217,445,'2005-07-09 07:57:33',2,'2006-02-15 21:30:53'), +(4042,'2005-07-07 03:06:40',50,10,'2005-07-10 02:37:40',1,'2006-02-15 21:30:53'), +(4043,'2005-07-07 03:09:50',3427,204,'2005-07-10 07:49:50',2,'2006-02-15 21:30:53'), +(4044,'2005-07-07 03:22:23',3263,94,'2005-07-13 03:23:23',1,'2006-02-15 21:30:53'), +(4045,'2005-07-07 03:26:14',1422,529,'2005-07-11 06:52:14',1,'2006-02-15 21:30:53'), +(4046,'2005-07-07 03:27:59',3518,491,'2005-07-14 01:14:59',1,'2006-02-15 21:30:53'), +(4047,'2005-07-07 03:28:49',3475,364,'2005-07-09 02:42:49',2,'2006-02-15 21:30:53'), +(4048,'2005-07-07 03:30:52',659,474,'2005-07-14 05:05:52',2,'2006-02-15 21:30:53'), +(4049,'2005-07-07 03:34:53',4172,79,'2005-07-15 04:10:53',2,'2006-02-15 21:30:53'), +(4050,'2005-07-07 03:35:33',104,528,'2005-07-15 03:11:33',1,'2006-02-15 21:30:53'), +(4051,'2005-07-07 03:37:28',2715,331,'2005-07-09 01:40:28',1,'2006-02-15 21:30:53'), +(4052,'2005-07-07 03:38:22',206,442,'2005-07-13 02:56:22',2,'2006-02-15 21:30:53'), +(4053,'2005-07-07 03:39:22',2889,377,'2005-07-09 22:32:22',1,'2006-02-15 21:30:53'), +(4054,'2005-07-07 03:42:07',3885,260,'2005-07-10 03:22:07',1,'2006-02-15 21:30:53'), +(4055,'2005-07-07 03:49:13',2561,513,'2005-07-11 03:15:13',2,'2006-02-15 21:30:53'), +(4056,'2005-07-07 03:57:36',4211,360,'2005-07-09 08:53:36',2,'2006-02-15 21:30:53'), +(4057,'2005-07-07 04:00:20',2838,141,'2005-07-12 08:14:20',1,'2006-02-15 21:30:53'), +(4058,'2005-07-07 04:02:50',3877,442,'2005-07-10 04:30:50',2,'2006-02-15 21:30:53'), +(4059,'2005-07-07 04:04:26',292,401,'2005-07-10 22:35:26',1,'2006-02-15 21:30:53'), +(4060,'2005-07-07 04:10:13',2697,211,'2005-07-13 07:44:13',1,'2006-02-15 21:30:53'), +(4061,'2005-07-07 04:13:35',62,70,'2005-07-10 23:58:35',2,'2006-02-15 21:30:53'), +(4062,'2005-07-07 04:22:27',1323,410,'2005-07-09 03:27:27',1,'2006-02-15 21:30:53'), +(4063,'2005-07-07 04:23:57',1452,331,'2005-07-14 23:35:57',2,'2006-02-15 21:30:53'), +(4064,'2005-07-07 04:29:20',1402,47,'2005-07-14 05:48:20',2,'2006-02-15 21:30:53'), +(4065,'2005-07-07 04:32:28',1339,26,'2005-07-12 08:30:28',1,'2006-02-15 21:30:53'), +(4066,'2005-07-07 04:34:09',1975,368,'2005-07-10 23:54:09',1,'2006-02-15 21:30:53'), +(4067,'2005-07-07 04:34:23',2945,469,'2005-07-16 04:04:23',1,'2006-02-15 21:30:53'), +(4068,'2005-07-07 04:34:38',4152,206,'2005-07-11 09:16:38',2,'2006-02-15 21:30:53'), +(4069,'2005-07-07 04:35:06',3361,570,'2005-07-10 23:59:06',2,'2006-02-15 21:30:53'), +(4070,'2005-07-07 04:37:09',2926,496,'2005-07-08 04:19:09',2,'2006-02-15 21:30:53'), +(4071,'2005-07-07 04:37:26',2883,209,'2005-07-13 06:45:26',2,'2006-02-15 21:30:53'), +(4072,'2005-07-07 04:48:02',3130,310,'2005-07-12 10:32:02',2,'2006-02-15 21:30:53'), +(4073,'2005-07-07 04:49:13',647,290,'2005-07-10 03:20:13',2,'2006-02-15 21:30:53'), +(4074,'2005-07-07 04:49:49',2347,412,'2005-07-12 04:51:49',2,'2006-02-15 21:30:53'), +(4075,'2005-07-07 04:51:44',1989,593,'2005-07-09 03:07:44',2,'2006-02-15 21:30:53'), +(4076,'2005-07-07 04:52:15',3148,329,'2005-07-13 23:22:15',1,'2006-02-15 21:30:53'), +(4077,'2005-07-07 04:53:40',2445,377,'2005-07-09 09:56:40',2,'2006-02-15 21:30:53'), +(4078,'2005-07-07 05:05:05',1671,522,'2005-07-10 05:39:05',1,'2006-02-15 21:30:53'), +(4079,'2005-07-07 05:06:27',2202,84,'2005-07-16 08:46:27',1,'2006-02-15 21:30:53'), +(4080,'2005-07-07 05:09:54',1364,148,'2005-07-11 23:58:54',1,'2006-02-15 21:30:53'), +(4081,'2005-07-07 05:10:08',1138,284,'2005-07-12 00:47:08',1,'2006-02-15 21:30:53'), +(4082,'2005-07-07 05:11:53',2904,108,'2005-07-12 00:55:53',1,'2006-02-15 21:30:53'), +(4083,'2005-07-07 05:13:15',3454,490,'2005-07-08 09:11:15',1,'2006-02-15 21:30:53'), +(4084,'2005-07-07 05:16:00',2588,441,'2005-07-15 09:23:00',1,'2006-02-15 21:30:53'), +(4085,'2005-07-07 05:25:39',1683,573,'2005-07-12 04:30:39',1,'2006-02-15 21:30:53'), +(4086,'2005-07-07 05:26:06',253,494,'2005-07-12 00:45:06',2,'2006-02-15 21:30:53'), +(4087,'2005-07-07 05:30:56',3066,433,'2005-07-16 10:20:56',1,'2006-02-15 21:30:53'), +(4088,'2005-07-07 05:31:55',234,66,'2005-07-15 07:35:55',1,'2006-02-15 21:30:53'), +(4089,'2005-07-07 05:45:59',3431,102,'2005-07-16 07:34:59',2,'2006-02-15 21:30:53'), +(4090,'2005-07-07 05:47:33',3096,67,'2005-07-08 04:25:33',2,'2006-02-15 21:30:53'), +(4091,'2005-07-07 05:53:38',3928,337,'2005-07-14 03:12:38',2,'2006-02-15 21:30:53'), +(4092,'2005-07-07 05:54:18',1721,246,'2005-07-16 09:14:18',1,'2006-02-15 21:30:53'), +(4093,'2005-07-07 05:54:50',1534,337,'2005-07-12 00:34:50',1,'2006-02-15 21:30:53'), +(4094,'2005-07-07 06:00:21',2412,517,'2005-07-10 03:24:21',2,'2006-02-15 21:30:53'), +(4095,'2005-07-07 06:01:48',2900,33,'2005-07-15 02:52:48',2,'2006-02-15 21:30:53'), +(4096,'2005-07-07 06:09:11',3911,403,'2005-07-08 09:17:11',2,'2006-02-15 21:30:53'), +(4097,'2005-07-07 06:10:55',2454,56,'2005-07-11 02:45:55',1,'2006-02-15 21:30:53'), +(4098,'2005-07-07 06:14:51',2865,35,'2005-07-14 06:51:51',2,'2006-02-15 21:30:53'), +(4099,'2005-07-07 06:20:33',1930,76,'2005-07-16 08:39:33',1,'2006-02-15 21:30:53'), +(4100,'2005-07-07 06:20:52',2346,332,'2005-07-15 05:58:52',2,'2006-02-15 21:30:53'), +(4101,'2005-07-07 06:25:11',2891,588,'2005-07-12 07:44:11',2,'2006-02-15 21:30:53'), +(4102,'2005-07-07 06:25:19',3998,135,'2005-07-11 00:50:19',2,'2006-02-15 21:30:53'), +(4103,'2005-07-07 06:25:28',3632,91,'2005-07-12 11:18:28',1,'2006-02-15 21:30:53'), +(4104,'2005-07-07 06:25:41',1066,338,'2005-07-13 04:18:41',2,'2006-02-15 21:30:53'), +(4105,'2005-07-07 06:31:00',439,423,'2005-07-09 03:52:00',1,'2006-02-15 21:30:53'), +(4106,'2005-07-07 06:33:35',4083,563,'2005-07-13 04:03:35',1,'2006-02-15 21:30:53'), +(4107,'2005-07-07 06:36:32',4232,206,'2005-07-14 03:36:32',1,'2006-02-15 21:30:53'), +(4108,'2005-07-07 06:38:31',4535,66,'2005-07-08 10:44:31',1,'2006-02-15 21:30:53'), +(4109,'2005-07-07 06:39:43',532,517,'2005-07-10 06:30:43',1,'2006-02-15 21:30:53'), +(4110,'2005-07-07 06:44:27',226,486,'2005-07-12 05:43:27',2,'2006-02-15 21:30:53'), +(4111,'2005-07-07 06:47:56',1009,515,'2005-07-13 02:13:56',1,'2006-02-15 21:30:53'), +(4112,'2005-07-07 06:49:09',3284,533,'2005-07-16 06:53:09',2,'2006-02-15 21:30:53'), +(4113,'2005-07-07 06:49:52',915,170,'2005-07-12 04:00:52',1,'2006-02-15 21:30:53'), +(4114,'2005-07-07 06:51:12',4109,426,'2005-07-15 01:36:12',1,'2006-02-15 21:30:53'), +(4115,'2005-07-07 06:52:23',102,371,'2005-07-14 06:12:23',2,'2006-02-15 21:30:53'), +(4116,'2005-07-07 06:56:13',666,352,'2005-07-11 11:13:13',2,'2006-02-15 21:30:53'), +(4117,'2005-07-07 06:58:14',780,158,'2005-07-16 05:28:14',1,'2006-02-15 21:30:53'), +(4118,'2005-07-07 07:03:30',355,224,'2005-07-08 09:20:30',1,'2006-02-15 21:30:53'), +(4119,'2005-07-07 07:06:03',2078,319,'2005-07-13 01:56:03',2,'2006-02-15 21:30:53'), +(4120,'2005-07-07 07:07:03',987,559,'2005-07-16 04:07:03',1,'2006-02-15 21:30:53'), +(4121,'2005-07-07 07:13:50',2429,176,'2005-07-13 04:32:50',2,'2006-02-15 21:30:53'), +(4122,'2005-07-07 07:15:35',273,31,'2005-07-14 12:10:35',1,'2006-02-15 21:30:53'), +(4123,'2005-07-07 07:16:19',2707,469,'2005-07-10 05:23:19',1,'2006-02-15 21:30:53'), +(4124,'2005-07-07 07:19:54',2856,330,'2005-07-11 05:54:54',1,'2006-02-15 21:30:53'), +(4125,'2005-07-07 07:20:29',4131,269,'2005-07-15 06:41:29',2,'2006-02-15 21:30:53'), +(4126,'2005-07-07 07:24:11',3018,163,'2005-07-15 07:31:11',1,'2006-02-15 21:30:53'), +(4127,'2005-07-07 07:26:19',1774,15,'2005-07-14 07:50:19',2,'2006-02-15 21:30:53'), +(4128,'2005-07-07 07:35:25',3563,492,'2005-07-14 08:13:25',1,'2006-02-15 21:30:53'), +(4129,'2005-07-07 07:37:03',1413,592,'2005-07-14 13:31:03',1,'2006-02-15 21:30:53'), +(4130,'2005-07-07 07:51:53',4170,256,'2005-07-11 12:41:53',2,'2006-02-15 21:30:53'), +(4131,'2005-07-07 07:53:18',2621,58,'2005-07-08 04:48:18',1,'2006-02-15 21:30:53'), +(4132,'2005-07-07 08:06:07',993,154,'2005-07-10 14:04:07',1,'2006-02-15 21:30:53'), +(4133,'2005-07-07 08:12:26',3672,488,'2005-07-16 03:43:26',1,'2006-02-15 21:30:53'), +(4134,'2005-07-07 08:14:24',2917,183,'2005-07-09 10:42:24',1,'2006-02-15 21:30:53'), +(4135,'2005-07-07 08:15:03',3384,36,'2005-07-11 10:56:03',1,'2006-02-15 21:30:53'), +(4136,'2005-07-07 08:15:52',3461,203,'2005-07-10 04:22:52',2,'2006-02-15 21:30:53'), +(4137,'2005-07-07 08:17:06',2065,485,'2005-07-11 10:52:06',2,'2006-02-15 21:30:53'), +(4138,'2005-07-07 08:17:13',1588,317,'2005-07-14 05:18:13',2,'2006-02-15 21:30:53'), +(4139,'2005-07-07 08:17:35',2094,509,'2005-07-14 14:01:35',2,'2006-02-15 21:30:53'), +(4140,'2005-07-07 08:19:10',1897,190,'2005-07-14 07:27:10',2,'2006-02-15 21:30:53'), +(4141,'2005-07-07 08:19:20',1904,456,'2005-07-11 06:54:20',1,'2006-02-15 21:30:53'), +(4142,'2005-07-07 08:19:45',4045,492,'2005-07-08 13:55:45',1,'2006-02-15 21:30:53'), +(4143,'2005-07-07 08:22:07',597,238,'2005-07-13 11:42:07',1,'2006-02-15 21:30:53'), +(4144,'2005-07-07 08:25:44',550,431,'2005-07-16 13:10:44',2,'2006-02-15 21:30:53'), +(4145,'2005-07-07 08:26:39',3050,592,'2005-07-16 12:54:39',2,'2006-02-15 21:30:53'), +(4146,'2005-07-07 08:30:16',176,411,'2005-07-12 07:52:16',1,'2006-02-15 21:30:53'), +(4147,'2005-07-07 08:32:12',2776,274,'2005-07-12 10:10:12',2,'2006-02-15 21:30:53'), +(4148,'2005-07-07 08:36:58',260,59,'2005-07-09 05:51:58',1,'2006-02-15 21:30:53'), +(4149,'2005-07-07 08:40:17',3028,50,'2005-07-10 02:58:17',2,'2006-02-15 21:30:53'), +(4150,'2005-07-07 08:43:22',4424,188,'2005-07-08 05:21:22',2,'2006-02-15 21:30:53'), +(4151,'2005-07-07 08:49:02',4564,428,'2005-07-11 05:19:02',1,'2006-02-15 21:30:53'), +(4152,'2005-07-07 08:50:33',1761,89,'2005-07-14 10:56:33',2,'2006-02-15 21:30:53'), +(4153,'2005-07-07 08:53:08',2185,299,'2005-07-11 05:09:08',2,'2006-02-15 21:30:53'), +(4154,'2005-07-07 08:58:23',191,594,'2005-07-14 03:16:23',2,'2006-02-15 21:30:53'), +(4155,'2005-07-07 09:00:49',212,548,'2005-07-13 10:59:49',2,'2006-02-15 21:30:53'), +(4156,'2005-07-07 09:03:51',1259,585,'2005-07-12 09:46:51',2,'2006-02-15 21:30:53'), +(4157,'2005-07-07 09:04:26',304,183,'2005-07-08 09:55:26',1,'2006-02-15 21:30:53'), +(4158,'2005-07-07 09:05:42',291,433,'2005-07-09 04:28:42',1,'2006-02-15 21:30:53'), +(4159,'2005-07-07 09:10:57',3625,62,'2005-07-09 10:19:57',2,'2006-02-15 21:30:53'), +(4160,'2005-07-07 09:13:17',1909,326,'2005-07-15 11:50:17',2,'2006-02-15 21:30:53'), +(4161,'2005-07-07 09:15:11',4021,216,'2005-07-15 06:59:11',1,'2006-02-15 21:30:53'), +(4162,'2005-07-07 09:17:26',745,571,'2005-07-15 10:15:26',2,'2006-02-15 21:30:53'), +(4163,'2005-07-07 09:19:28',3176,376,'2005-07-10 06:47:28',2,'2006-02-15 21:30:53'), +(4164,'2005-07-07 09:20:11',3133,295,'2005-07-14 09:35:11',1,'2006-02-15 21:30:53'), +(4165,'2005-07-07 09:23:27',3845,66,'2005-07-15 06:00:27',1,'2006-02-15 21:30:53'), +(4166,'2005-07-07 09:33:30',3267,376,'2005-07-16 06:06:30',1,'2006-02-15 21:30:53'), +(4167,'2005-07-07 09:37:08',3771,175,'2005-07-16 06:16:08',2,'2006-02-15 21:30:53'), +(4168,'2005-07-07 09:37:24',1872,132,'2005-07-09 14:32:24',2,'2006-02-15 21:30:53'), +(4169,'2005-07-07 09:39:18',3360,580,'2005-07-11 13:43:18',1,'2006-02-15 21:30:53'), +(4170,'2005-07-07 09:44:36',2665,99,'2005-07-13 14:10:36',1,'2006-02-15 21:30:53'), +(4171,'2005-07-07 09:49:04',4199,476,'2005-07-14 03:58:04',2,'2006-02-15 21:30:53'), +(4172,'2005-07-07 09:49:09',1158,309,'2005-07-11 15:14:09',2,'2006-02-15 21:30:53'), +(4173,'2005-07-07 09:57:26',4272,320,'2005-07-10 04:05:26',1,'2006-02-15 21:30:53'), +(4174,'2005-07-07 09:59:49',3814,182,'2005-07-11 13:34:49',1,'2006-02-15 21:30:53'), +(4175,'2005-07-07 10:02:03',1979,8,'2005-07-10 06:09:03',2,'2006-02-15 21:30:53'), +(4176,'2005-07-07 10:03:34',2745,420,'2005-07-16 08:43:34',1,'2006-02-15 21:30:53'), +(4177,'2005-07-07 10:12:36',4106,317,'2005-07-15 15:48:36',2,'2006-02-15 21:30:53'), +(4178,'2005-07-07 10:14:31',2898,513,'2005-07-12 09:38:31',2,'2006-02-15 21:30:53'), +(4179,'2005-07-07 10:17:15',559,75,'2005-07-10 05:12:15',2,'2006-02-15 21:30:53'), +(4180,'2005-07-07 10:23:25',1704,3,'2005-07-10 13:18:25',1,'2006-02-15 21:30:53'), +(4181,'2005-07-07 10:27:54',3725,598,'2005-07-13 06:09:54',1,'2006-02-15 21:30:53'), +(4182,'2005-07-07 10:28:00',3080,256,'2005-07-08 12:50:00',1,'2006-02-15 21:30:53'), +(4183,'2005-07-07 10:28:33',3342,479,'2005-07-15 12:29:33',1,'2006-02-15 21:30:53'), +(4184,'2005-07-07 10:30:08',1022,468,'2005-07-14 12:56:08',1,'2006-02-15 21:30:53'), +(4185,'2005-07-07 10:31:05',2425,395,'2005-07-13 05:30:05',2,'2006-02-15 21:30:53'), +(4186,'2005-07-07 10:32:25',3910,185,'2005-07-15 06:22:25',1,'2006-02-15 21:30:53'), +(4187,'2005-07-07 10:41:31',2,161,'2005-07-11 06:25:31',1,'2006-02-15 21:30:53'), +(4188,'2005-07-07 10:45:29',3243,391,'2005-07-16 09:39:29',1,'2006-02-15 21:30:53'), +(4189,'2005-07-07 10:51:07',1492,386,'2005-07-14 14:46:07',2,'2006-02-15 21:30:53'), +(4190,'2005-07-07 10:52:39',826,349,'2005-07-11 13:19:39',1,'2006-02-15 21:30:53'), +(4191,'2005-07-07 10:56:14',2475,390,'2005-07-11 09:56:14',1,'2006-02-15 21:30:53'), +(4192,'2005-07-07 10:57:06',624,558,'2005-07-13 16:30:06',1,'2006-02-15 21:30:53'), +(4193,'2005-07-07 10:57:21',3791,445,'2005-07-09 07:33:21',2,'2006-02-15 21:30:53'), +(4194,'2005-07-07 10:59:39',1753,153,'2005-07-15 09:34:39',1,'2006-02-15 21:30:53'), +(4195,'2005-07-07 11:00:02',450,455,'2005-07-14 16:54:02',1,'2006-02-15 21:30:53'), +(4196,'2005-07-07 11:06:33',3407,564,'2005-07-14 13:46:33',1,'2006-02-15 21:30:53'), +(4197,'2005-07-07 11:07:52',2515,324,'2005-07-10 10:19:52',1,'2006-02-15 21:30:53'), +(4198,'2005-07-07 11:08:11',333,247,'2005-07-16 15:29:11',1,'2006-02-15 21:30:53'), +(4199,'2005-07-07 11:13:07',2120,259,'2005-07-11 07:17:07',1,'2006-02-15 21:30:53'), +(4200,'2005-07-07 11:15:11',1097,292,'2005-07-11 11:46:11',2,'2006-02-15 21:30:53'), +(4201,'2005-07-07 11:19:51',3682,145,'2005-07-16 08:48:51',1,'2006-02-15 21:30:53'), +(4202,'2005-07-07 11:23:48',2274,38,'2005-07-16 16:32:48',1,'2006-02-15 21:30:53'), +(4203,'2005-07-07 11:24:14',2743,189,'2005-07-11 16:26:14',1,'2006-02-15 21:30:53'), +(4204,'2005-07-07 11:24:18',1513,569,'2005-07-15 12:42:18',1,'2006-02-15 21:30:53'), +(4205,'2005-07-07 11:25:39',3922,486,'2005-07-11 06:12:39',1,'2006-02-15 21:30:53'), +(4206,'2005-07-07 11:32:16',1557,448,'2005-07-14 13:07:16',2,'2006-02-15 21:30:53'), +(4207,'2005-07-07 11:32:45',1119,588,'2005-07-14 05:49:45',2,'2006-02-15 21:30:53'), +(4208,'2005-07-07 11:34:22',3617,441,'2005-07-09 08:25:22',1,'2006-02-15 21:30:53'), +(4209,'2005-07-07 11:35:08',2010,100,'2005-07-10 10:58:08',1,'2006-02-15 21:30:53'), +(4210,'2005-07-07 11:36:20',1972,581,'2005-07-16 12:38:20',1,'2006-02-15 21:30:53'), +(4211,'2005-07-07 11:50:41',2001,214,'2005-07-09 13:58:41',2,'2006-02-15 21:30:53'), +(4212,'2005-07-07 11:53:14',1825,574,'2005-07-09 07:12:14',1,'2006-02-15 21:30:53'), +(4213,'2005-07-07 11:53:49',705,103,'2005-07-13 07:51:49',1,'2006-02-15 21:30:53'), +(4214,'2005-07-07 11:54:33',2534,484,'2005-07-08 10:49:33',2,'2006-02-15 21:30:53'), +(4215,'2005-07-07 12:00:52',1239,22,'2005-07-11 15:14:52',2,'2006-02-15 21:30:53'), +(4216,'2005-07-07 12:01:34',1216,467,'2005-07-08 09:59:34',1,'2006-02-15 21:30:53'), +(4217,'2005-07-07 12:08:59',3186,228,'2005-07-11 15:07:59',2,'2006-02-15 21:30:53'), +(4218,'2005-07-07 12:10:24',152,497,'2005-07-15 16:09:24',1,'2006-02-15 21:30:53'), +(4219,'2005-07-07 12:11:22',2800,16,'2005-07-11 11:05:22',1,'2006-02-15 21:30:53'), +(4220,'2005-07-07 12:12:36',821,513,'2005-07-10 13:37:36',1,'2006-02-15 21:30:53'), +(4221,'2005-07-07 12:18:57',4567,143,'2005-07-12 09:47:57',2,'2006-02-15 21:30:53'), +(4222,'2005-07-07 12:20:21',2053,467,'2005-07-11 11:09:21',2,'2006-02-15 21:30:53'), +(4223,'2005-07-07 12:23:54',2407,405,'2005-07-10 14:46:54',2,'2006-02-15 21:30:53'), +(4224,'2005-07-07 12:24:21',3659,419,'2005-07-10 11:48:21',1,'2006-02-15 21:30:53'), +(4225,'2005-07-07 12:24:37',1766,377,'2005-07-12 06:47:37',2,'2006-02-15 21:30:53'), +(4226,'2005-07-07 12:37:56',1692,57,'2005-07-09 08:48:56',2,'2006-02-15 21:30:53'), +(4227,'2005-07-07 12:41:36',4186,78,'2005-07-15 12:33:36',1,'2006-02-15 21:30:53'), +(4228,'2005-07-07 12:42:02',1020,38,'2005-07-12 10:52:02',1,'2006-02-15 21:30:53'), +(4229,'2005-07-07 12:43:23',953,106,'2005-07-13 15:00:23',2,'2006-02-15 21:30:53'), +(4230,'2005-07-07 12:46:47',353,205,'2005-07-15 06:52:47',1,'2006-02-15 21:30:53'), +(4231,'2005-07-07 12:48:19',3522,194,'2005-07-13 18:45:19',1,'2006-02-15 21:30:53'), +(4232,'2005-07-07 12:49:12',3841,347,'2005-07-15 16:45:12',1,'2006-02-15 21:30:53'), +(4233,'2005-07-07 13:00:20',1849,488,'2005-07-13 16:37:20',1,'2006-02-15 21:30:53'), +(4234,'2005-07-07 13:01:35',1179,195,'2005-07-15 13:05:35',1,'2006-02-15 21:30:53'), +(4235,'2005-07-07 13:05:52',3525,86,'2005-07-10 12:17:52',2,'2006-02-15 21:30:53'), +(4236,'2005-07-07 13:12:07',642,213,'2005-07-08 15:00:07',2,'2006-02-15 21:30:53'), +(4237,'2005-07-07 13:16:55',3773,477,'2005-07-15 16:33:55',1,'2006-02-15 21:30:53'), +(4238,'2005-07-07 13:22:20',3024,7,'2005-07-10 07:44:20',2,'2006-02-15 21:30:53'), +(4239,'2005-07-07 13:23:17',3866,122,'2005-07-13 17:49:17',1,'2006-02-15 21:30:53'), +(4240,'2005-07-07 13:33:12',1024,65,'2005-07-13 12:28:12',1,'2006-02-15 21:30:53'), +(4241,'2005-07-07 13:39:00',4154,595,'2005-07-12 17:49:00',2,'2006-02-15 21:30:53'), +(4242,'2005-07-07 13:39:01',3626,286,'2005-07-12 18:29:01',1,'2006-02-15 21:30:53'), +(4243,'2005-07-07 13:39:58',4559,339,'2005-07-12 19:27:58',1,'2006-02-15 21:30:53'), +(4244,'2005-07-07 13:41:58',592,581,'2005-07-09 15:32:58',2,'2006-02-15 21:30:53'), +(4245,'2005-07-07 13:48:33',3743,91,'2005-07-10 09:54:33',1,'2006-02-15 21:30:53'), +(4246,'2005-07-07 13:49:03',1141,411,'2005-07-09 13:01:03',1,'2006-02-15 21:30:53'), +(4247,'2005-07-07 13:51:54',808,539,'2005-07-10 09:43:54',2,'2006-02-15 21:30:53'), +(4248,'2005-07-07 13:59:20',773,161,'2005-07-14 15:18:20',2,'2006-02-15 21:30:53'), +(4249,'2005-07-07 14:05:17',4185,111,'2005-07-10 09:21:17',2,'2006-02-15 21:30:53'), +(4250,'2005-07-07 14:08:11',2556,423,'2005-07-13 08:09:11',2,'2006-02-15 21:30:53'), +(4251,'2005-07-07 14:11:55',3541,367,'2005-07-16 14:01:55',2,'2006-02-15 21:30:53'), +(4252,'2005-07-07 14:13:05',474,154,'2005-07-09 14:17:05',1,'2006-02-15 21:30:53'), +(4253,'2005-07-07 14:13:13',3355,157,'2005-07-16 18:55:13',2,'2006-02-15 21:30:53'), +(4254,'2005-07-07 14:13:52',3957,529,'2005-07-12 10:39:52',2,'2006-02-15 21:30:53'), +(4255,'2005-07-07 14:14:13',749,10,'2005-07-12 18:32:13',1,'2006-02-15 21:30:53'), +(4256,'2005-07-07 14:14:36',1386,129,'2005-07-10 09:41:36',1,'2006-02-15 21:30:53'), +(4257,'2005-07-07 14:18:41',3927,553,'2005-07-08 14:58:41',1,'2006-02-15 21:30:53'), +(4258,'2005-07-07 14:20:59',1562,492,'2005-07-16 10:03:59',1,'2006-02-15 21:30:53'), +(4259,'2005-07-07 14:22:18',4378,467,'2005-07-11 19:38:18',1,'2006-02-15 21:30:53'), +(4260,'2005-07-07 14:22:45',4575,305,'2005-07-08 15:10:45',2,'2006-02-15 21:30:53'), +(4261,'2005-07-07 14:23:56',1405,496,'2005-07-13 15:26:56',1,'2006-02-15 21:30:53'), +(4262,'2005-07-07 14:24:30',3122,29,'2005-07-14 13:12:30',1,'2006-02-15 21:30:53'), +(4263,'2005-07-07 14:24:44',2975,16,'2005-07-13 18:22:44',1,'2006-02-15 21:30:53'), +(4264,'2005-07-07 14:25:28',3499,406,'2005-07-08 08:49:28',2,'2006-02-15 21:30:53'), +(4265,'2005-07-07 14:27:51',1685,69,'2005-07-12 19:55:51',2,'2006-02-15 21:30:53'), +(4266,'2005-07-07 14:34:50',1578,509,'2005-07-08 09:23:50',2,'2006-02-15 21:30:53'), +(4267,'2005-07-07 14:35:30',136,410,'2005-07-11 10:41:30',1,'2006-02-15 21:30:53'), +(4268,'2005-07-07 14:36:05',432,80,'2005-07-16 14:36:05',1,'2006-02-15 21:30:53'), +(4269,'2005-07-07 14:38:33',415,496,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'), +(4270,'2005-07-07 14:38:41',183,210,'2005-07-10 19:07:41',2,'2006-02-15 21:30:53'), +(4271,'2005-07-07 14:38:52',533,150,'2005-07-15 12:05:52',1,'2006-02-15 21:30:53'), +(4272,'2005-07-07 14:39:20',488,120,'2005-07-13 08:57:20',2,'2006-02-15 21:30:53'), +(4273,'2005-07-07 14:40:22',4163,159,'2005-07-13 09:58:22',2,'2006-02-15 21:30:53'), +(4274,'2005-07-07 14:42:04',787,26,'2005-07-13 20:23:04',1,'2006-02-15 21:30:53'), +(4275,'2005-07-07 14:43:51',1167,393,'2005-07-15 18:04:51',2,'2006-02-15 21:30:53'), +(4276,'2005-07-07 14:50:59',221,366,'2005-07-09 15:42:59',2,'2006-02-15 21:30:53'), +(4277,'2005-07-07 14:52:12',1983,106,'2005-07-09 13:10:12',1,'2006-02-15 21:30:53'), +(4278,'2005-07-07 14:53:24',3693,6,'2005-07-13 14:21:24',2,'2006-02-15 21:30:53'), +(4279,'2005-07-07 15:01:53',581,335,'2005-07-08 09:43:53',1,'2006-02-15 21:30:53'), +(4280,'2005-07-07 15:09:31',1115,593,'2005-07-13 14:47:31',1,'2006-02-15 21:30:53'), +(4281,'2005-07-07 15:17:50',1182,321,'2005-07-08 11:42:50',2,'2006-02-15 21:30:53'), +(4282,'2005-07-07 15:26:31',3134,25,'2005-07-11 14:27:31',1,'2006-02-15 21:30:53'), +(4283,'2005-07-07 15:29:35',2807,477,'2005-07-11 17:12:35',1,'2006-02-15 21:30:53'), +(4284,'2005-07-07 15:31:57',1313,521,'2005-07-09 10:20:57',2,'2006-02-15 21:30:53'), +(4285,'2005-07-07 15:34:35',511,308,'2005-07-15 09:43:35',2,'2006-02-15 21:30:53'), +(4286,'2005-07-07 15:36:44',4496,111,'2005-07-11 13:04:44',2,'2006-02-15 21:30:53'), +(4287,'2005-07-07 15:37:31',3558,94,'2005-07-16 19:59:31',2,'2006-02-15 21:30:53'), +(4288,'2005-07-07 15:38:25',1508,64,'2005-07-13 16:23:25',2,'2006-02-15 21:30:53'), +(4289,'2005-07-07 15:45:58',3172,231,'2005-07-09 11:11:58',2,'2006-02-15 21:30:53'), +(4290,'2005-07-07 15:47:10',4174,277,'2005-07-15 15:03:10',1,'2006-02-15 21:30:53'), +(4291,'2005-07-07 15:47:47',2074,298,'2005-07-10 11:45:47',1,'2006-02-15 21:30:53'), +(4292,'2005-07-07 15:48:38',3084,401,'2005-07-15 17:53:38',1,'2006-02-15 21:30:53'), +(4293,'2005-07-07 15:53:47',984,221,'2005-07-10 18:11:47',1,'2006-02-15 21:30:53'), +(4294,'2005-07-07 15:56:23',2845,41,'2005-07-15 14:50:23',2,'2006-02-15 21:30:53'), +(4295,'2005-07-07 16:08:51',2490,319,'2005-07-13 13:06:51',2,'2006-02-15 21:30:53'), +(4296,'2005-07-07 16:16:03',977,407,'2005-07-08 20:16:03',2,'2006-02-15 21:30:53'), +(4297,'2005-07-07 16:24:09',882,141,'2005-07-13 15:08:09',2,'2006-02-15 21:30:53'), +(4298,'2005-07-07 16:27:25',1055,560,'2005-07-12 18:20:25',1,'2006-02-15 21:30:53'), +(4299,'2005-07-07 16:33:48',870,80,'2005-07-16 11:48:48',1,'2006-02-15 21:30:53'), +(4300,'2005-07-07 16:36:16',1189,38,'2005-07-10 13:59:16',2,'2006-02-15 21:30:53'), +(4301,'2005-07-07 16:37:23',1630,440,'2005-07-11 18:05:23',2,'2006-02-15 21:30:53'), +(4302,'2005-07-07 16:47:53',3669,332,'2005-07-16 22:22:53',2,'2006-02-15 21:30:53'), +(4303,'2005-07-07 16:57:32',818,108,'2005-07-14 17:42:32',2,'2006-02-15 21:30:53'), +(4304,'2005-07-07 17:01:19',3382,165,'2005-07-12 22:47:19',2,'2006-02-15 21:30:53'), +(4305,'2005-07-07 17:07:11',3926,240,'2005-07-08 16:15:11',2,'2006-02-15 21:30:53'), +(4306,'2005-07-07 17:12:32',1219,210,'2005-07-16 11:24:32',2,'2006-02-15 21:30:53'), +(4307,'2005-07-07 17:20:39',2827,394,'2005-07-16 14:42:39',1,'2006-02-15 21:30:53'), +(4308,'2005-07-07 17:29:16',1482,168,'2005-07-11 21:47:16',1,'2006-02-15 21:30:53'), +(4309,'2005-07-07 17:29:41',3549,209,'2005-07-14 22:22:41',2,'2006-02-15 21:30:53'), +(4310,'2005-07-07 17:30:56',3842,390,'2005-07-12 13:19:56',2,'2006-02-15 21:30:53'), +(4311,'2005-07-07 17:31:14',2985,498,'2005-07-11 19:21:14',2,'2006-02-15 21:30:53'), +(4312,'2005-07-07 17:34:59',3870,97,'2005-07-09 17:45:59',2,'2006-02-15 21:30:53'), +(4313,'2005-07-07 17:36:56',91,29,'2005-07-13 12:00:56',1,'2006-02-15 21:30:53'), +(4314,'2005-07-07 17:38:31',539,184,'2005-07-09 20:24:31',1,'2006-02-15 21:30:53'), +(4315,'2005-07-07 17:40:26',1472,195,'2005-07-09 22:58:26',2,'2006-02-15 21:30:53'), +(4316,'2005-07-07 17:44:22',517,301,'2005-07-14 15:12:22',2,'2006-02-15 21:30:53'), +(4317,'2005-07-07 17:44:49',2234,110,'2005-07-08 21:48:49',2,'2006-02-15 21:30:53'), +(4318,'2005-07-07 17:47:50',1607,321,'2005-07-14 12:15:50',2,'2006-02-15 21:30:53'), +(4319,'2005-07-07 17:50:27',3389,25,'2005-07-10 13:53:27',2,'2006-02-15 21:30:53'), +(4320,'2005-07-07 17:51:59',3437,376,'2005-07-13 18:39:59',1,'2006-02-15 21:30:53'), +(4321,'2005-07-07 17:52:38',612,91,'2005-07-11 23:37:38',1,'2006-02-15 21:30:53'), +(4322,'2005-07-07 17:54:37',1522,568,'2005-07-14 13:56:37',1,'2006-02-15 21:30:53'), +(4323,'2005-07-07 17:55:53',1287,336,'2005-07-13 16:43:53',2,'2006-02-15 21:30:53'), +(4324,'2005-07-07 17:57:56',952,226,'2005-07-13 22:34:56',1,'2006-02-15 21:30:53'), +(4325,'2005-07-07 17:59:24',3728,373,'2005-07-16 17:10:24',2,'2006-02-15 21:30:53'), +(4326,'2005-07-07 18:01:22',4037,331,'2005-07-16 15:45:22',1,'2006-02-15 21:30:53'), +(4327,'2005-07-07 18:01:39',860,73,'2005-07-12 22:40:39',1,'2006-02-15 21:30:53'), +(4328,'2005-07-07 18:03:17',2174,264,'2005-07-14 16:14:17',1,'2006-02-15 21:30:53'), +(4329,'2005-07-07 18:04:16',638,504,'2005-07-15 17:58:16',2,'2006-02-15 21:30:53'), +(4330,'2005-07-07 18:09:41',2408,408,'2005-07-14 22:05:41',1,'2006-02-15 21:30:53'), +(4331,'2005-07-07 18:22:30',419,535,'2005-07-13 18:20:30',1,'2006-02-15 21:30:53'), +(4332,'2005-07-07 18:25:26',1714,137,'2005-07-16 15:05:26',1,'2006-02-15 21:30:53'), +(4333,'2005-07-07 18:31:50',76,113,'2005-07-08 21:26:50',1,'2006-02-15 21:30:53'), +(4334,'2005-07-07 18:32:04',3021,210,'2005-07-08 16:19:04',1,'2006-02-15 21:30:53'), +(4335,'2005-07-07 18:33:57',1332,375,'2005-07-11 13:23:57',1,'2006-02-15 21:30:53'), +(4336,'2005-07-07 18:34:36',482,532,'2005-07-10 17:58:36',2,'2006-02-15 21:30:53'), +(4337,'2005-07-07 18:36:37',2313,464,'2005-07-14 14:59:37',2,'2006-02-15 21:30:53'), +(4338,'2005-07-07 18:39:56',3152,581,'2005-07-12 21:03:56',1,'2006-02-15 21:30:53'), +(4339,'2005-07-07 18:41:42',3215,130,'2005-07-08 13:00:42',1,'2006-02-15 21:30:53'), +(4340,'2005-07-07 18:41:46',3919,227,'2005-07-16 21:27:46',1,'2006-02-15 21:30:53'), +(4341,'2005-07-07 18:44:23',4523,124,'2005-07-15 18:13:23',1,'2006-02-15 21:30:53'), +(4342,'2005-07-07 18:47:03',1355,120,'2005-07-09 21:59:03',2,'2006-02-15 21:30:53'), +(4343,'2005-07-07 18:48:54',1926,293,'2005-07-12 15:19:54',1,'2006-02-15 21:30:53'), +(4344,'2005-07-07 18:50:47',1185,99,'2005-07-12 16:38:47',2,'2006-02-15 21:30:53'), +(4345,'2005-07-07 18:52:57',2235,225,'2005-07-15 21:24:57',2,'2006-02-15 21:30:53'), +(4346,'2005-07-07 18:58:45',1906,520,'2005-07-10 16:37:45',1,'2006-02-15 21:30:53'), +(4347,'2005-07-07 18:58:57',1964,344,'2005-07-14 16:35:57',2,'2006-02-15 21:30:53'), +(4348,'2005-07-07 19:02:05',1948,452,'2005-07-09 20:51:05',2,'2006-02-15 21:30:53'), +(4349,'2005-07-07 19:02:37',3430,182,'2005-07-09 17:25:37',2,'2006-02-15 21:30:53'), +(4350,'2005-07-07 19:02:41',2223,299,'2005-07-09 15:27:41',1,'2006-02-15 21:30:53'), +(4351,'2005-07-07 19:04:24',3567,382,'2005-07-14 00:03:24',2,'2006-02-15 21:30:53'), +(4352,'2005-07-07 19:15:58',2636,249,'2005-07-16 20:22:58',2,'2006-02-15 21:30:53'), +(4353,'2005-07-07 19:19:05',368,452,'2005-07-13 13:40:05',1,'2006-02-15 21:30:53'), +(4354,'2005-07-07 19:21:02',4423,208,'2005-07-15 17:03:02',2,'2006-02-15 21:30:53'), +(4355,'2005-07-07 19:21:19',4557,438,'2005-07-09 00:55:19',2,'2006-02-15 21:30:53'), +(4356,'2005-07-07 19:21:22',1907,318,'2005-07-16 15:57:22',1,'2006-02-15 21:30:53'), +(4357,'2005-07-07 19:24:39',3413,103,'2005-07-12 00:11:39',1,'2006-02-15 21:30:53'), +(4358,'2005-07-07 19:27:04',3136,446,'2005-07-14 23:46:04',1,'2006-02-15 21:30:53'), +(4359,'2005-07-07 19:30:20',3222,282,'2005-07-09 13:34:20',1,'2006-02-15 21:30:53'), +(4360,'2005-07-07 19:31:12',1811,92,'2005-07-10 23:11:12',2,'2006-02-15 21:30:53'), +(4361,'2005-07-07 19:33:23',116,425,'2005-07-12 22:36:23',1,'2006-02-15 21:30:53'), +(4362,'2005-07-07 19:35:30',3759,425,'2005-07-14 14:59:30',1,'2006-02-15 21:30:53'), +(4363,'2005-07-07 19:43:28',3202,168,'2005-07-13 00:15:28',2,'2006-02-15 21:30:53'), +(4364,'2005-07-07 19:46:51',10,145,'2005-07-08 21:55:51',1,'2006-02-15 21:30:53'), +(4365,'2005-07-07 19:47:46',3207,442,'2005-07-08 23:21:46',2,'2006-02-15 21:30:53'), +(4366,'2005-07-07 19:48:36',2961,524,'2005-07-14 01:14:36',1,'2006-02-15 21:30:53'), +(4367,'2005-07-07 19:52:01',4529,48,'2005-07-13 19:41:01',2,'2006-02-15 21:30:53'), +(4368,'2005-07-07 19:55:19',736,324,'2005-07-09 00:11:19',1,'2006-02-15 21:30:53'), +(4369,'2005-07-07 20:01:38',3552,517,'2005-07-13 01:19:38',2,'2006-02-15 21:30:53'), +(4370,'2005-07-07 20:05:36',1591,559,'2005-07-16 23:58:36',1,'2006-02-15 21:30:53'), +(4371,'2005-07-07 20:06:45',2533,90,'2005-07-08 18:50:45',1,'2006-02-15 21:30:53'), +(4372,'2005-07-07 20:09:01',2207,252,'2005-07-09 18:24:01',1,'2006-02-15 21:30:53'), +(4373,'2005-07-07 20:10:59',3593,470,'2005-07-12 21:30:59',2,'2006-02-15 21:30:53'), +(4374,'2005-07-07 20:13:58',4377,517,'2005-07-11 18:11:58',2,'2006-02-15 21:30:53'), +(4375,'2005-07-07 20:20:29',3035,560,'2005-07-16 19:29:29',2,'2006-02-15 21:30:53'), +(4376,'2005-07-07 20:24:33',1344,151,'2005-07-11 18:32:33',1,'2006-02-15 21:30:53'), +(4377,'2005-07-07 20:28:57',3294,205,'2005-07-16 02:13:57',2,'2006-02-15 21:30:53'), +(4378,'2005-07-07 20:29:08',1244,24,'2005-07-12 19:17:08',2,'2006-02-15 21:30:53'), +(4379,'2005-07-07 20:32:30',2773,316,'2005-07-11 20:40:30',2,'2006-02-15 21:30:53'), +(4380,'2005-07-07 20:35:00',3164,353,'2005-07-14 17:06:00',1,'2006-02-15 21:30:53'), +(4381,'2005-07-07 20:37:53',3727,486,'2005-07-10 16:54:53',1,'2006-02-15 21:30:53'), +(4382,'2005-07-07 20:41:03',657,26,'2005-07-14 15:15:03',1,'2006-02-15 21:30:53'), +(4383,'2005-07-07 20:45:51',2649,591,'2005-07-17 00:52:51',2,'2006-02-15 21:30:53'), +(4384,'2005-07-07 20:46:45',1178,59,'2005-07-16 21:54:45',1,'2006-02-15 21:30:53'), +(4385,'2005-07-07 20:48:38',849,564,'2005-07-11 17:03:38',2,'2006-02-15 21:30:53'), +(4386,'2005-07-07 20:55:19',499,314,'2005-07-10 21:51:19',1,'2006-02-15 21:30:53'), +(4387,'2005-07-07 20:56:47',591,335,'2005-07-16 00:51:47',1,'2006-02-15 21:30:53'), +(4388,'2005-07-07 20:58:03',3150,210,'2005-07-16 20:05:03',2,'2006-02-15 21:30:53'), +(4389,'2005-07-07 20:58:58',1672,166,'2005-07-13 19:57:58',2,'2006-02-15 21:30:53'), +(4390,'2005-07-07 20:59:06',6,44,'2005-07-09 00:04:06',2,'2006-02-15 21:30:53'), +(4391,'2005-07-07 21:09:38',2135,42,'2005-07-09 17:35:38',1,'2006-02-15 21:30:53'), +(4392,'2005-07-07 21:11:02',4236,491,'2005-07-13 21:52:02',1,'2006-02-15 21:30:53'), +(4393,'2005-07-07 21:12:36',4034,395,'2005-07-09 22:41:36',2,'2006-02-15 21:30:53'), +(4394,'2005-07-07 21:12:45',563,156,'2005-07-16 18:24:45',2,'2006-02-15 21:30:53'), +(4395,'2005-07-07 21:13:22',360,544,'2005-07-08 22:59:22',2,'2006-02-15 21:30:53'), +(4396,'2005-07-07 21:14:19',750,275,'2005-07-10 19:22:19',1,'2006-02-15 21:30:53'), +(4397,'2005-07-07 21:14:54',3085,494,'2005-07-13 19:24:54',2,'2006-02-15 21:30:53'), +(4398,'2005-07-07 21:18:44',3628,426,'2005-07-10 22:45:44',1,'2006-02-15 21:30:53'), +(4399,'2005-07-07 21:20:28',4515,402,'2005-07-12 20:57:28',2,'2006-02-15 21:30:53'), +(4400,'2005-07-07 21:22:26',49,370,'2005-07-16 00:59:26',2,'2006-02-15 21:30:53'), +(4401,'2005-07-07 21:26:27',2725,405,'2005-07-12 17:18:27',2,'2006-02-15 21:30:53'), +(4402,'2005-07-07 21:28:46',1198,26,'2005-07-08 17:04:46',1,'2006-02-15 21:30:53'), +(4403,'2005-07-07 21:29:40',3973,447,'2005-07-09 17:58:40',1,'2006-02-15 21:30:53'), +(4404,'2005-07-07 21:31:53',944,25,'2005-07-13 19:00:53',1,'2006-02-15 21:30:53'), +(4405,'2005-07-07 21:33:16',2102,145,'2005-07-15 00:33:16',2,'2006-02-15 21:30:53'), +(4406,'2005-07-07 21:35:16',438,448,'2005-07-15 16:13:16',2,'2006-02-15 21:30:53'), +(4407,'2005-07-07 21:39:45',267,20,'2005-07-11 23:40:45',1,'2006-02-15 21:30:53'), +(4408,'2005-07-07 21:41:06',2482,258,'2005-07-11 00:32:06',1,'2006-02-15 21:30:53'), +(4409,'2005-07-07 21:47:29',3153,8,'2005-07-11 20:14:29',2,'2006-02-15 21:30:53'), +(4410,'2005-07-07 21:48:16',2754,584,'2005-07-09 03:15:16',1,'2006-02-15 21:30:53'), +(4411,'2005-07-07 21:54:58',320,224,'2005-07-14 16:14:58',2,'2006-02-15 21:30:53'), +(4412,'2005-07-07 21:56:53',1181,282,'2005-07-11 19:28:53',1,'2006-02-15 21:30:53'), +(4413,'2005-07-07 22:00:04',1062,565,'2005-07-10 18:20:04',2,'2006-02-15 21:30:53'), +(4414,'2005-07-07 22:00:21',991,434,'2005-07-12 02:51:21',1,'2006-02-15 21:30:53'), +(4415,'2005-07-07 22:01:43',1403,329,'2005-07-13 03:09:43',2,'2006-02-15 21:30:53'), +(4416,'2005-07-07 22:04:36',1247,290,'2005-07-09 02:44:36',2,'2006-02-15 21:30:53'), +(4417,'2005-07-07 22:05:05',743,452,'2005-07-09 16:16:05',2,'2006-02-15 21:30:53'), +(4418,'2005-07-07 22:05:30',4368,417,'2005-07-11 18:42:30',1,'2006-02-15 21:30:53'), +(4419,'2005-07-07 22:06:24',783,39,'2005-07-15 23:59:24',1,'2006-02-15 21:30:53'), +(4420,'2005-07-07 22:07:31',4427,346,'2005-07-12 19:14:31',2,'2006-02-15 21:30:53'), +(4421,'2005-07-07 22:07:55',4103,417,'2005-07-16 20:21:55',1,'2006-02-15 21:30:53'), +(4422,'2005-07-07 22:09:45',1741,345,'2005-07-10 01:43:45',1,'2006-02-15 21:30:53'), +(4423,'2005-07-07 22:11:28',2721,526,'2005-07-14 18:49:28',2,'2006-02-15 21:30:53'), +(4424,'2005-07-07 22:14:43',662,384,'2005-07-11 01:17:43',1,'2006-02-15 21:30:53'), +(4425,'2005-07-07 22:22:44',877,345,'2005-07-08 22:23:44',2,'2006-02-15 21:30:53'), +(4426,'2005-07-07 22:28:32',364,242,'2005-07-16 02:04:32',1,'2006-02-15 21:30:53'), +(4427,'2005-07-07 22:28:51',1021,69,'2005-07-11 21:37:51',2,'2006-02-15 21:30:53'), +(4428,'2005-07-07 22:29:40',2575,181,'2005-07-11 02:46:40',2,'2006-02-15 21:30:53'), +(4429,'2005-07-07 22:32:47',2949,187,'2005-07-15 03:10:47',2,'2006-02-15 21:30:53'), +(4430,'2005-07-07 22:35:24',3436,278,'2005-07-14 23:49:24',1,'2006-02-15 21:30:53'), +(4431,'2005-07-07 22:39:02',936,26,'2005-07-16 19:24:02',1,'2006-02-15 21:30:53'), +(4432,'2005-07-07 22:40:02',2779,295,'2005-07-15 01:46:02',1,'2006-02-15 21:30:53'), +(4433,'2005-07-07 22:45:41',88,449,'2005-07-16 23:30:41',2,'2006-02-15 21:30:53'), +(4434,'2005-07-07 22:48:34',1801,32,'2005-07-09 18:55:34',1,'2006-02-15 21:30:53'), +(4435,'2005-07-07 22:51:04',3815,157,'2005-07-14 23:15:04',2,'2006-02-15 21:30:53'), +(4436,'2005-07-07 22:52:04',4326,563,'2005-07-10 04:51:04',1,'2006-02-15 21:30:53'), +(4437,'2005-07-07 22:55:41',3578,414,'2005-07-13 19:40:41',1,'2006-02-15 21:30:53'), +(4438,'2005-07-07 22:56:17',4371,104,'2005-07-16 17:28:17',1,'2006-02-15 21:30:53'), +(4439,'2005-07-07 22:57:30',2393,521,'2005-07-10 18:28:30',1,'2006-02-15 21:30:53'), +(4440,'2005-07-07 23:00:58',1236,507,'2005-07-08 21:31:58',2,'2006-02-15 21:30:53'), +(4441,'2005-07-07 23:04:23',3680,211,'2005-07-13 19:07:23',1,'2006-02-15 21:30:53'), +(4442,'2005-07-07 23:05:30',461,123,'2005-07-13 22:20:30',2,'2006-02-15 21:30:53'), +(4443,'2005-07-07 23:05:53',72,389,'2005-07-16 01:46:53',1,'2006-02-15 21:30:53'), +(4444,'2005-07-07 23:07:44',764,529,'2005-07-14 02:51:44',2,'2006-02-15 21:30:53'), +(4445,'2005-07-07 23:08:22',3328,327,'2005-07-16 03:49:22',1,'2006-02-15 21:30:53'), +(4446,'2005-07-07 23:12:16',2629,438,'2005-07-13 19:42:16',1,'2006-02-15 21:30:53'), +(4447,'2005-07-07 23:15:28',404,549,'2005-07-14 22:53:28',2,'2006-02-15 21:30:53'), +(4448,'2005-07-07 23:17:12',2768,536,'2005-07-13 18:26:12',1,'2006-02-15 21:30:53'), +(4449,'2005-07-07 23:18:58',2813,354,'2005-07-15 20:40:58',2,'2006-02-15 21:30:53'), +(4450,'2005-07-07 23:20:05',1252,345,'2005-07-13 19:50:05',2,'2006-02-15 21:30:53'), +(4451,'2005-07-07 23:29:54',179,85,'2005-07-10 23:29:54',2,'2006-02-15 21:30:53'), +(4452,'2005-07-07 23:31:54',2414,460,'2005-07-14 04:05:54',1,'2006-02-15 21:30:53'), +(4453,'2005-07-07 23:32:39',89,560,'2005-07-12 01:38:39',2,'2006-02-15 21:30:53'), +(4454,'2005-07-07 23:37:00',1395,9,'2005-07-11 02:30:00',1,'2006-02-15 21:30:53'), +(4455,'2005-07-07 23:43:46',1396,507,'2005-07-08 21:34:46',2,'2006-02-15 21:30:53'), +(4456,'2005-07-07 23:45:21',3395,421,'2005-07-13 23:03:21',2,'2006-02-15 21:30:53'), +(4457,'2005-07-07 23:45:38',407,567,'2005-07-09 20:02:38',1,'2006-02-15 21:30:53'), +(4458,'2005-07-07 23:47:47',1307,229,'2005-07-09 19:17:47',2,'2006-02-15 21:30:53'), +(4459,'2005-07-07 23:48:52',3987,227,'2005-07-13 19:37:52',2,'2006-02-15 21:30:53'), +(4460,'2005-07-07 23:50:14',4121,592,'2005-07-09 21:55:14',1,'2006-02-15 21:30:53'), +(4461,'2005-07-07 23:59:43',3656,286,'2005-07-16 19:44:43',2,'2006-02-15 21:30:53'), +(4462,'2005-07-08 00:02:49',4120,257,'2005-07-15 20:48:49',2,'2006-02-15 21:30:53'), +(4463,'2005-07-08 00:04:59',4356,422,'2005-07-16 01:19:59',1,'2006-02-15 21:30:53'), +(4464,'2005-07-08 00:07:18',4484,583,'2005-07-08 22:14:18',2,'2006-02-15 21:30:53'), +(4465,'2005-07-08 00:07:45',2877,329,'2005-07-13 18:08:45',2,'2006-02-15 21:30:53'), +(4466,'2005-07-08 00:12:53',3320,304,'2005-07-17 03:49:53',2,'2006-02-15 21:30:53'), +(4467,'2005-07-08 00:13:52',4466,339,'2005-07-09 00:52:52',1,'2006-02-15 21:30:53'), +(4468,'2005-07-08 00:17:59',3302,170,'2005-07-12 05:51:59',2,'2006-02-15 21:30:53'), +(4469,'2005-07-08 00:18:32',2173,192,'2005-07-12 21:17:32',2,'2006-02-15 21:30:53'), +(4470,'2005-07-08 00:20:57',3605,145,'2005-07-10 02:31:57',1,'2006-02-15 21:30:53'), +(4471,'2005-07-08 00:21:29',263,30,'2005-07-11 18:48:29',2,'2006-02-15 21:30:53'), +(4472,'2005-07-08 00:22:06',2089,343,'2005-07-16 20:16:06',1,'2006-02-15 21:30:53'), +(4473,'2005-07-08 00:22:10',1387,481,'2005-07-09 21:11:10',1,'2006-02-15 21:30:53'), +(4474,'2005-07-08 00:26:56',4474,137,'2005-07-12 23:07:56',1,'2006-02-15 21:30:53'), +(4475,'2005-07-08 00:27:30',3466,340,'2005-07-09 05:39:30',1,'2006-02-15 21:30:53'), +(4476,'2005-07-08 00:34:25',395,279,'2005-07-08 22:55:25',1,'2006-02-15 21:30:53'), +(4477,'2005-07-08 00:38:24',1602,552,'2005-07-13 05:14:24',1,'2006-02-15 21:30:53'), +(4478,'2005-07-08 00:39:08',1764,357,'2005-07-11 21:57:08',2,'2006-02-15 21:30:53'), +(4479,'2005-07-08 00:52:35',3516,211,'2005-07-09 20:19:35',2,'2006-02-15 21:30:53'), +(4480,'2005-07-08 00:56:30',4457,296,'2005-07-10 20:52:30',2,'2006-02-15 21:30:53'), +(4481,'2005-07-08 00:58:15',1669,474,'2005-07-11 23:22:15',2,'2006-02-15 21:30:53'), +(4482,'2005-07-08 01:01:18',3500,511,'2005-07-11 01:18:18',1,'2006-02-15 21:30:53'), +(4483,'2005-07-08 01:03:12',1222,425,'2005-07-17 00:20:12',1,'2006-02-15 21:30:53'), +(4484,'2005-07-08 01:05:57',2867,306,'2005-07-16 00:41:57',2,'2006-02-15 21:30:53'), +(4485,'2005-07-08 01:07:54',2614,130,'2005-07-16 03:19:54',2,'2006-02-15 21:30:53'), +(4486,'2005-07-08 01:09:09',837,197,'2005-07-16 23:40:09',1,'2006-02-15 21:30:53'), +(4487,'2005-07-08 01:20:22',2220,360,'2005-07-16 21:23:22',2,'2006-02-15 21:30:53'), +(4488,'2005-07-08 01:22:23',2108,89,'2005-07-13 21:17:23',1,'2006-02-15 21:30:53'), +(4489,'2005-07-08 01:23:58',4306,259,'2005-07-09 01:35:58',2,'2006-02-15 21:30:53'), +(4490,'2005-07-08 01:26:32',2690,161,'2005-07-09 01:13:32',1,'2006-02-15 21:30:53'), +(4491,'2005-07-08 01:30:46',1168,413,'2005-07-11 03:12:46',1,'2006-02-15 21:30:53'), +(4492,'2005-07-08 01:32:04',1152,247,'2005-07-10 22:11:04',1,'2006-02-15 21:30:53'), +(4493,'2005-07-08 01:40:24',1369,167,'2005-07-09 02:17:24',2,'2006-02-15 21:30:53'), +(4494,'2005-07-08 01:42:45',1655,349,'2005-07-16 22:29:45',2,'2006-02-15 21:30:53'), +(4495,'2005-07-08 01:43:46',3515,404,'2005-07-10 07:38:46',1,'2006-02-15 21:30:53'), +(4496,'2005-07-08 01:44:19',150,578,'2005-07-08 20:34:19',2,'2006-02-15 21:30:53'), +(4497,'2005-07-08 01:51:32',1995,142,'2005-07-15 22:56:32',1,'2006-02-15 21:30:53'), +(4498,'2005-07-08 02:07:50',4299,43,'2005-07-12 23:54:50',2,'2006-02-15 21:30:53'), +(4499,'2005-07-08 02:08:48',851,199,'2005-07-10 07:06:48',2,'2006-02-15 21:30:53'), +(4500,'2005-07-08 02:10:01',398,462,'2005-07-15 05:49:01',2,'2006-02-15 21:30:53'), +(4501,'2005-07-08 02:12:00',1412,262,'2005-07-10 02:16:00',2,'2006-02-15 21:30:53'), +(4502,'2005-07-08 02:12:04',225,470,'2005-07-15 02:19:04',2,'2006-02-15 21:30:53'), +(4503,'2005-07-08 02:17:12',1503,8,'2005-07-13 08:12:12',1,'2006-02-15 21:30:53'), +(4504,'2005-07-08 02:19:27',361,422,'2005-07-12 21:15:27',1,'2006-02-15 21:30:53'), +(4505,'2005-07-08 02:20:04',1864,481,'2005-07-14 20:28:04',2,'2006-02-15 21:30:53'), +(4506,'2005-07-08 02:22:18',1484,133,'2005-07-13 04:54:18',2,'2006-02-15 21:30:53'), +(4507,'2005-07-08 02:22:45',819,505,'2005-07-14 20:53:45',1,'2006-02-15 21:30:53'), +(4508,'2005-07-08 02:28:41',3996,97,'2005-07-16 23:59:41',1,'2006-02-15 21:30:53'), +(4509,'2005-07-08 02:32:38',1760,230,'2005-07-14 01:05:38',2,'2006-02-15 21:30:53'), +(4510,'2005-07-08 02:34:51',1085,27,'2005-07-17 06:03:51',2,'2006-02-15 21:30:53'), +(4511,'2005-07-08 02:36:21',4438,75,'2005-07-15 06:01:21',1,'2006-02-15 21:30:53'), +(4512,'2005-07-08 02:38:56',1569,424,'2005-07-10 20:46:56',1,'2006-02-15 21:30:53'), +(4513,'2005-07-08 02:39:59',3704,182,'2005-07-14 07:48:59',2,'2006-02-15 21:30:53'), +(4514,'2005-07-08 02:41:25',1938,576,'2005-07-15 06:17:25',1,'2006-02-15 21:30:53'), +(4515,'2005-07-08 02:42:03',1998,229,'2005-07-10 07:22:03',2,'2006-02-15 21:30:53'), +(4516,'2005-07-08 02:43:41',2314,497,'2005-07-14 02:20:41',1,'2006-02-15 21:30:53'), +(4517,'2005-07-08 02:45:19',453,16,'2005-07-12 03:04:19',2,'2006-02-15 21:30:53'), +(4518,'2005-07-08 02:48:36',697,592,'2005-07-13 04:53:36',2,'2006-02-15 21:30:53'), +(4519,'2005-07-08 02:51:23',4425,459,'2005-07-12 06:52:23',2,'2006-02-15 21:30:53'), +(4520,'2005-07-08 02:53:46',3505,104,'2005-07-08 22:27:46',2,'2006-02-15 21:30:53'), +(4521,'2005-07-08 02:57:56',2652,327,'2005-07-11 22:49:56',2,'2006-02-15 21:30:53'), +(4522,'2005-07-08 03:03:12',4114,307,'2005-07-10 04:49:12',1,'2006-02-15 21:30:53'), +(4523,'2005-07-08 03:06:59',2785,347,'2005-07-17 04:44:59',1,'2006-02-15 21:30:53'), +(4524,'2005-07-08 03:10:48',2218,185,'2005-07-09 07:49:48',2,'2006-02-15 21:30:53'), +(4525,'2005-07-08 03:15:00',3631,458,'2005-07-11 04:53:00',1,'2006-02-15 21:30:53'), +(4526,'2005-07-08 03:17:05',1443,1,'2005-07-14 01:19:05',2,'2006-02-15 21:30:53'), +(4527,'2005-07-08 03:20:10',2263,468,'2005-07-15 02:21:10',1,'2006-02-15 21:30:53'), +(4528,'2005-07-08 03:24:54',3209,439,'2005-07-09 03:50:54',2,'2006-02-15 21:30:53'), +(4529,'2005-07-08 03:26:20',1361,104,'2005-07-16 05:04:20',1,'2006-02-15 21:30:53'), +(4530,'2005-07-08 03:27:05',3775,79,'2005-07-11 07:44:05',1,'2006-02-15 21:30:53'), +(4531,'2005-07-08 03:27:59',3108,142,'2005-07-10 22:48:59',1,'2006-02-15 21:30:53'), +(4532,'2005-07-08 03:30:39',4012,481,'2005-07-11 21:49:39',1,'2006-02-15 21:30:53'), +(4533,'2005-07-08 03:32:01',1105,474,'2005-07-10 21:57:01',1,'2006-02-15 21:30:53'), +(4534,'2005-07-08 03:36:55',2518,132,'2005-07-16 00:49:55',2,'2006-02-15 21:30:53'), +(4535,'2005-07-08 03:40:46',561,29,'2005-07-13 06:53:46',2,'2006-02-15 21:30:53'), +(4536,'2005-07-08 03:43:22',220,26,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'), +(4537,'2005-07-08 03:48:40',1305,448,'2005-07-13 22:54:40',2,'2006-02-15 21:30:53'), +(4538,'2005-07-08 03:56:29',3638,451,'2005-07-15 08:24:29',1,'2006-02-15 21:30:53'), +(4539,'2005-07-08 04:01:02',2450,264,'2005-07-14 22:32:02',1,'2006-02-15 21:30:53'), +(4540,'2005-07-08 04:03:28',4160,309,'2005-07-13 03:31:28',2,'2006-02-15 21:30:53'), +(4541,'2005-07-08 04:04:19',1976,248,'2005-07-13 07:27:19',2,'2006-02-15 21:30:53'), +(4542,'2005-07-08 04:06:30',4169,293,'2005-07-16 06:54:30',2,'2006-02-15 21:30:53'), +(4543,'2005-07-08 04:06:55',913,41,'2005-07-12 23:17:55',2,'2006-02-15 21:30:53'), +(4544,'2005-07-08 04:11:04',4471,351,'2005-07-09 22:48:04',1,'2006-02-15 21:30:53'), +(4545,'2005-07-08 04:17:47',3658,271,'2005-07-13 07:19:47',1,'2006-02-15 21:30:53'), +(4546,'2005-07-08 04:18:36',4507,393,'2005-07-17 08:23:36',1,'2006-02-15 21:30:53'), +(4547,'2005-07-08 04:20:19',3386,255,'2005-07-09 00:28:19',2,'2006-02-15 21:30:53'), +(4548,'2005-07-08 04:21:54',765,164,'2005-07-14 23:16:54',2,'2006-02-15 21:30:53'), +(4549,'2005-07-08 04:25:03',2797,98,'2005-07-10 09:01:03',2,'2006-02-15 21:30:53'), +(4550,'2005-07-08 04:34:00',615,409,'2005-07-14 23:45:00',2,'2006-02-15 21:30:53'), +(4551,'2005-07-08 04:36:21',1160,494,'2005-07-17 10:23:21',2,'2006-02-15 21:30:53'), +(4552,'2005-07-08 04:36:35',2549,313,'2005-07-14 05:48:35',2,'2006-02-15 21:30:53'), +(4553,'2005-07-08 04:43:41',2114,529,'2005-07-09 23:55:41',1,'2006-02-15 21:30:53'), +(4554,'2005-07-08 04:48:03',3878,376,'2005-07-16 04:34:03',1,'2006-02-15 21:30:53'), +(4555,'2005-07-08 04:48:36',1757,68,'2005-07-17 07:57:36',1,'2006-02-15 21:30:53'), +(4556,'2005-07-08 04:48:41',4099,348,'2005-07-16 08:51:41',2,'2006-02-15 21:30:53'), +(4557,'2005-07-08 04:49:15',1191,132,'2005-07-14 00:00:15',2,'2006-02-15 21:30:53'), +(4558,'2005-07-08 04:55:26',828,448,'2005-07-09 10:53:26',2,'2006-02-15 21:30:53'), +(4559,'2005-07-08 04:56:49',1911,424,'2005-07-12 08:56:49',2,'2006-02-15 21:30:53'), +(4560,'2005-07-08 04:58:48',303,36,'2005-07-10 04:27:48',1,'2006-02-15 21:30:53'), +(4561,'2005-07-08 05:02:43',1643,500,'2005-07-11 04:56:43',1,'2006-02-15 21:30:53'), +(4562,'2005-07-08 05:08:32',963,454,'2005-07-12 08:16:32',2,'2006-02-15 21:30:53'), +(4563,'2005-07-08 05:08:55',287,522,'2005-07-16 05:44:55',2,'2006-02-15 21:30:53'), +(4564,'2005-07-08 05:09:38',2494,519,'2005-07-11 05:37:38',2,'2006-02-15 21:30:53'), +(4565,'2005-07-08 05:12:28',3755,563,'2005-07-17 03:38:28',2,'2006-02-15 21:30:53'), +(4566,'2005-07-08 05:18:50',4302,133,'2005-07-15 01:53:50',1,'2006-02-15 21:30:53'), +(4567,'2005-07-08 05:20:04',4073,202,'2005-07-10 01:35:04',1,'2006-02-15 21:30:53'), +(4568,'2005-07-08 05:23:59',2626,122,'2005-07-09 06:07:59',1,'2006-02-15 21:30:53'), +(4569,'2005-07-08 05:30:51',2925,366,'2005-07-14 04:14:51',2,'2006-02-15 21:30:53'), +(4570,'2005-07-08 05:33:59',2612,503,'2005-07-14 09:27:59',1,'2006-02-15 21:30:53'), +(4571,'2005-07-08 05:34:41',2416,86,'2005-07-17 02:15:41',1,'2006-02-15 21:30:53'), +(4572,'2005-07-08 05:36:59',1324,323,'2005-07-12 04:46:59',2,'2006-02-15 21:30:53'), +(4573,'2005-07-08 05:38:46',2478,400,'2005-07-15 07:07:46',1,'2006-02-15 21:30:53'), +(4574,'2005-07-08 05:39:42',536,257,'2005-07-08 23:44:42',2,'2006-02-15 21:30:53'), +(4575,'2005-07-08 05:49:14',231,41,'2005-07-11 04:08:14',2,'2006-02-15 21:30:53'), +(4576,'2005-07-08 05:51:19',1920,567,'2005-07-10 11:36:19',1,'2006-02-15 21:30:53'), +(4577,'2005-07-08 05:59:00',1688,442,'2005-07-16 06:23:00',2,'2006-02-15 21:30:53'), +(4578,'2005-07-08 06:00:17',1533,497,'2005-07-10 06:58:17',2,'2006-02-15 21:30:53'), +(4579,'2005-07-08 06:01:56',4290,585,'2005-07-13 11:24:56',1,'2006-02-15 21:30:53'), +(4580,'2005-07-08 06:04:23',3512,199,'2005-07-15 05:42:23',2,'2006-02-15 21:30:53'), +(4581,'2005-07-08 06:05:06',887,591,'2005-07-16 00:54:06',1,'2006-02-15 21:30:53'), +(4582,'2005-07-08 06:09:09',688,274,'2005-07-14 02:23:09',1,'2006-02-15 21:30:53'), +(4583,'2005-07-08 06:09:44',4151,365,'2005-07-12 03:44:44',1,'2006-02-15 21:30:53'), +(4584,'2005-07-08 06:11:02',2322,368,'2005-07-11 05:14:02',1,'2006-02-15 21:30:53'), +(4585,'2005-07-08 06:11:58',1622,143,'2005-07-17 01:58:58',1,'2006-02-15 21:30:53'), +(4586,'2005-07-08 06:12:33',1374,461,'2005-07-13 11:06:33',2,'2006-02-15 21:30:53'), +(4587,'2005-07-08 06:16:26',3502,63,'2005-07-13 00:59:26',1,'2006-02-15 21:30:53'), +(4588,'2005-07-08 06:18:01',3629,198,'2005-07-10 08:59:01',1,'2006-02-15 21:30:53'), +(4589,'2005-07-08 06:26:04',1192,99,'2005-07-09 10:31:04',2,'2006-02-15 21:30:53'), +(4590,'2005-07-08 06:27:48',4233,580,'2005-07-14 07:46:48',1,'2006-02-15 21:30:53'), +(4591,'2005-07-08 06:29:43',2276,182,'2005-07-17 07:20:43',1,'2006-02-15 21:30:53'), +(4592,'2005-07-08 06:31:28',2141,235,'2005-07-10 06:08:28',2,'2006-02-15 21:30:53'), +(4593,'2005-07-08 06:38:12',2897,528,'2005-07-16 10:48:12',2,'2006-02-15 21:30:53'), +(4594,'2005-07-08 06:40:06',26,506,'2005-07-16 05:51:06',2,'2006-02-15 21:30:53'), +(4595,'2005-07-08 06:40:25',760,336,'2005-07-14 08:54:25',1,'2006-02-15 21:30:53'), +(4596,'2005-07-08 06:41:25',2280,306,'2005-07-14 01:36:25',1,'2006-02-15 21:30:53'), +(4597,'2005-07-08 06:43:42',3767,545,'2005-07-13 01:32:42',1,'2006-02-15 21:30:53'), +(4598,'2005-07-08 06:46:26',258,82,'2005-07-16 01:21:26',1,'2006-02-15 21:30:53'), +(4599,'2005-07-08 06:48:26',2098,356,'2005-07-11 07:06:26',1,'2006-02-15 21:30:53'), +(4600,'2005-07-08 06:48:37',1526,457,'2005-07-15 10:11:37',1,'2006-02-15 21:30:53'), +(4601,'2005-07-08 06:49:10',3184,572,'2005-07-09 07:43:10',1,'2006-02-15 21:30:53'), +(4602,'2005-07-08 06:52:40',3616,129,'2005-07-10 06:30:40',1,'2006-02-15 21:30:53'), +(4603,'2005-07-08 06:57:07',755,334,'2005-07-17 04:32:07',1,'2006-02-15 21:30:53'), +(4604,'2005-07-08 06:58:43',4230,402,'2005-07-14 06:41:43',1,'2006-02-15 21:30:53'), +(4605,'2005-07-08 07:00:14',1139,523,'2005-07-16 08:38:14',1,'2006-02-15 21:30:53'), +(4606,'2005-07-08 07:05:50',1946,502,'2005-07-16 09:11:50',2,'2006-02-15 21:30:53'), +(4607,'2005-07-08 07:15:14',1193,281,'2005-07-11 01:32:14',1,'2006-02-15 21:30:53'), +(4608,'2005-07-08 07:19:11',758,11,'2005-07-11 01:37:11',1,'2006-02-15 21:30:53'), +(4609,'2005-07-08 07:22:29',3711,573,'2005-07-10 08:06:29',1,'2006-02-15 21:30:53'), +(4610,'2005-07-08 07:28:05',1279,265,'2005-07-14 02:10:05',1,'2006-02-15 21:30:53'), +(4611,'2005-07-08 07:33:56',3486,1,'2005-07-12 13:25:56',2,'2006-02-15 21:30:53'), +(4612,'2005-07-08 07:40:44',82,371,'2005-07-12 03:48:44',1,'2006-02-15 21:30:53'), +(4613,'2005-07-08 07:44:49',476,581,'2005-07-09 04:47:49',1,'2006-02-15 21:30:53'), +(4614,'2005-07-08 07:45:17',2579,71,'2005-07-12 02:10:17',2,'2006-02-15 21:30:53'), +(4615,'2005-07-08 07:46:53',1200,404,'2005-07-16 12:43:53',2,'2006-02-15 21:30:53'), +(4616,'2005-07-08 07:48:12',2580,280,'2005-07-10 08:13:12',2,'2006-02-15 21:30:53'), +(4617,'2005-07-08 07:55:08',3784,475,'2005-07-17 02:49:08',2,'2006-02-15 21:30:53'), +(4618,'2005-07-08 08:00:20',3691,179,'2005-07-14 05:59:20',1,'2006-02-15 21:30:53'), +(4619,'2005-07-08 08:01:09',2127,579,'2005-07-16 05:52:09',2,'2006-02-15 21:30:53'), +(4620,'2005-07-08 08:01:44',3467,210,'2005-07-16 07:43:44',2,'2006-02-15 21:30:53'), +(4621,'2005-07-08 08:02:18',1594,297,'2005-07-12 08:53:18',2,'2006-02-15 21:30:53'), +(4622,'2005-07-08 08:02:42',2710,289,'2005-07-10 07:46:42',2,'2006-02-15 21:30:53'), +(4623,'2005-07-08 08:03:22',4171,593,'2005-07-12 09:11:22',2,'2006-02-15 21:30:53'), +(4624,'2005-07-08 08:12:17',1548,341,'2005-07-15 12:24:17',2,'2006-02-15 21:30:53'), +(4625,'2005-07-08 08:14:26',318,473,'2005-07-09 03:45:26',1,'2006-02-15 21:30:53'), +(4626,'2005-07-08 08:18:21',37,268,'2005-07-10 11:36:21',1,'2006-02-15 21:30:53'), +(4627,'2005-07-08 08:24:39',2383,78,'2005-07-13 11:04:39',2,'2006-02-15 21:30:53'), +(4628,'2005-07-08 08:25:52',1888,540,'2005-07-10 11:22:52',1,'2006-02-15 21:30:53'), +(4629,'2005-07-08 08:31:26',228,563,'2005-07-17 12:07:26',1,'2006-02-15 21:30:53'), +(4630,'2005-07-08 08:33:38',3446,319,'2005-07-09 13:09:38',2,'2006-02-15 21:30:53'), +(4631,'2005-07-08 08:38:22',470,59,'2005-07-11 03:33:22',2,'2006-02-15 21:30:53'), +(4632,'2005-07-08 08:38:57',4330,393,'2005-07-15 09:33:57',1,'2006-02-15 21:30:53'), +(4633,'2005-07-08 08:39:39',3178,348,'2005-07-15 10:23:39',1,'2006-02-15 21:30:53'), +(4634,'2005-07-08 08:40:02',811,275,'2005-07-12 04:45:02',2,'2006-02-15 21:30:53'), +(4635,'2005-07-08 08:42:40',2434,65,'2005-07-14 10:31:40',1,'2006-02-15 21:30:53'), +(4636,'2005-07-08 08:44:32',1858,228,'2005-07-10 08:59:32',2,'2006-02-15 21:30:53'), +(4637,'2005-07-08 08:49:54',1917,263,'2005-07-11 13:12:54',2,'2006-02-15 21:30:53'), +(4638,'2005-07-08 08:57:20',2240,305,'2005-07-10 05:08:20',2,'2006-02-15 21:30:53'), +(4639,'2005-07-08 08:57:21',2459,75,'2005-07-14 11:22:21',2,'2006-02-15 21:30:53'), +(4640,'2005-07-08 08:59:34',1147,506,'2005-07-15 03:31:34',1,'2006-02-15 21:30:53'), +(4641,'2005-07-08 09:09:46',2436,26,'2005-07-17 03:54:46',2,'2006-02-15 21:30:53'), +(4642,'2005-07-08 09:13:28',1962,30,'2005-07-10 06:17:28',2,'2006-02-15 21:30:53'), +(4643,'2005-07-08 09:13:56',239,436,'2005-07-10 12:09:56',2,'2006-02-15 21:30:53'), +(4644,'2005-07-08 09:14:29',3239,38,'2005-07-10 07:20:29',2,'2006-02-15 21:30:53'), +(4645,'2005-07-08 09:20:09',687,400,'2005-07-09 06:07:09',2,'2006-02-15 21:30:53'), +(4646,'2005-07-08 09:23:26',618,362,'2005-07-16 04:03:26',1,'2006-02-15 21:30:53'), +(4647,'2005-07-08 09:27:36',674,312,'2005-07-16 14:56:36',2,'2006-02-15 21:30:53'), +(4648,'2005-07-08 09:31:27',3490,444,'2005-07-13 03:55:27',2,'2006-02-15 21:30:53'), +(4649,'2005-07-08 09:32:05',1116,221,'2005-07-15 08:37:05',2,'2006-02-15 21:30:53'), +(4650,'2005-07-08 09:32:08',2850,108,'2005-07-15 15:20:08',1,'2006-02-15 21:30:53'), +(4651,'2005-07-08 09:39:39',4064,557,'2005-07-09 12:14:39',2,'2006-02-15 21:30:53'), +(4652,'2005-07-08 09:47:51',4198,127,'2005-07-16 04:09:51',2,'2006-02-15 21:30:53'), +(4653,'2005-07-08 09:48:01',2511,404,'2005-07-17 05:18:01',1,'2006-02-15 21:30:53'), +(4654,'2005-07-08 09:48:03',4210,434,'2005-07-17 13:17:03',1,'2006-02-15 21:30:53'), +(4655,'2005-07-08 09:49:22',4078,213,'2005-07-15 13:08:22',1,'2006-02-15 21:30:53'), +(4656,'2005-07-08 09:50:10',839,141,'2005-07-13 15:00:10',1,'2006-02-15 21:30:53'), +(4657,'2005-07-08 09:51:02',1002,54,'2005-07-09 09:29:02',2,'2006-02-15 21:30:53'), +(4658,'2005-07-08 09:51:11',3131,166,'2005-07-10 12:30:11',2,'2006-02-15 21:30:53'), +(4659,'2005-07-08 09:53:28',4389,425,'2005-07-14 14:56:28',2,'2006-02-15 21:30:53'), +(4660,'2005-07-08 09:54:47',1208,139,'2005-07-11 15:19:47',2,'2006-02-15 21:30:53'), +(4661,'2005-07-08 09:55:06',2641,518,'2005-07-11 08:26:06',1,'2006-02-15 21:30:53'), +(4662,'2005-07-08 09:58:54',1370,553,'2005-07-10 12:51:54',1,'2006-02-15 21:30:53'), +(4663,'2005-07-08 09:59:18',2959,139,'2005-07-10 11:25:18',1,'2006-02-15 21:30:53'), +(4664,'2005-07-08 10:01:28',1318,546,'2005-07-12 10:37:28',2,'2006-02-15 21:30:53'), +(4665,'2005-07-08 10:04:24',575,106,'2005-07-14 15:13:24',1,'2006-02-15 21:30:53'), +(4666,'2005-07-08 10:05:02',4576,120,'2005-07-16 07:28:02',1,'2006-02-15 21:30:53'), +(4667,'2005-07-08 10:06:26',3348,485,'2005-07-14 04:48:26',1,'2006-02-15 21:30:53'), +(4668,'2005-07-08 10:11:45',3971,481,'2005-07-17 13:01:45',2,'2006-02-15 21:30:53'), +(4669,'2005-07-08 10:13:08',3494,581,'2005-07-16 07:52:08',1,'2006-02-15 21:30:53'), +(4670,'2005-07-08 10:14:18',3317,153,'2005-07-16 15:10:18',2,'2006-02-15 21:30:53'), +(4671,'2005-07-08 10:15:32',2139,55,'2005-07-14 08:19:32',2,'2006-02-15 21:30:53'), +(4672,'2005-07-08 10:15:38',1922,18,'2005-07-16 05:06:38',1,'2006-02-15 21:30:53'), +(4673,'2005-07-08 10:16:00',2792,91,'2005-07-17 10:03:00',2,'2006-02-15 21:30:53'), +(4674,'2005-07-08 10:19:28',1617,329,'2005-07-12 12:54:28',2,'2006-02-15 21:30:53'), +(4675,'2005-07-08 10:24:22',1309,380,'2005-07-14 11:09:22',1,'2006-02-15 21:30:53'), +(4676,'2005-07-08 10:26:02',2590,302,'2005-07-10 13:38:02',2,'2006-02-15 21:30:53'), +(4677,'2005-07-08 10:30:36',1226,258,'2005-07-14 12:40:36',1,'2006-02-15 21:30:53'), +(4678,'2005-07-08 10:30:40',241,219,'2005-07-13 11:08:40',1,'2006-02-15 21:30:53'), +(4679,'2005-07-08 10:33:14',3610,423,'2005-07-15 14:30:14',2,'2006-02-15 21:30:53'), +(4680,'2005-07-08 10:35:28',4043,227,'2005-07-14 08:42:28',1,'2006-02-15 21:30:53'), +(4681,'2005-07-08 10:36:03',1025,133,'2005-07-16 09:21:03',2,'2006-02-15 21:30:53'), +(4682,'2005-07-08 10:38:27',873,263,'2005-07-11 06:29:27',2,'2006-02-15 21:30:53'), +(4683,'2005-07-08 10:38:28',3464,283,'2005-07-09 12:07:28',1,'2006-02-15 21:30:53'), +(4684,'2005-07-08 10:41:06',503,585,'2005-07-17 10:35:06',1,'2006-02-15 21:30:53'), +(4685,'2005-07-08 10:45:13',602,590,'2005-07-12 08:29:13',1,'2006-02-15 21:30:53'), +(4686,'2005-07-08 10:53:39',1398,234,'2005-07-10 05:34:39',2,'2006-02-15 21:30:53'), +(4687,'2005-07-08 10:54:19',1156,169,'2005-07-10 08:00:19',2,'2006-02-15 21:30:53'), +(4688,'2005-07-08 11:03:29',3574,80,'2005-07-17 15:41:29',2,'2006-02-15 21:30:53'), +(4689,'2005-07-08 11:03:47',2519,364,'2005-07-16 06:07:47',2,'2006-02-15 21:30:53'), +(4690,'2005-07-08 11:04:02',3304,64,'2005-07-15 10:27:02',2,'2006-02-15 21:30:53'), +(4691,'2005-07-08 11:04:53',596,126,'2005-07-09 07:48:53',1,'2006-02-15 21:30:53'), +(4692,'2005-07-08 11:07:06',1490,288,'2005-07-09 14:08:06',1,'2006-02-15 21:30:53'), +(4693,'2005-07-08 11:07:36',1694,221,'2005-07-14 08:40:36',1,'2006-02-15 21:30:53'), +(4694,'2005-07-08 11:07:37',3637,229,'2005-07-12 06:53:37',2,'2006-02-15 21:30:53'), +(4695,'2005-07-08 11:07:59',805,39,'2005-07-17 16:35:59',1,'2006-02-15 21:30:53'), +(4696,'2005-07-08 11:12:27',1358,424,'2005-07-14 05:41:27',1,'2006-02-15 21:30:53'), +(4697,'2005-07-08 11:19:14',4143,224,'2005-07-12 07:14:14',2,'2006-02-15 21:30:53'), +(4698,'2005-07-08 11:19:31',3963,570,'2005-07-13 13:45:31',2,'2006-02-15 21:30:53'), +(4699,'2005-07-08 11:36:56',2462,348,'2005-07-14 11:35:56',2,'2006-02-15 21:30:53'), +(4700,'2005-07-08 11:37:21',3889,317,'2005-07-12 15:41:21',1,'2006-02-15 21:30:53'), +(4701,'2005-07-08 11:38:48',3012,522,'2005-07-13 15:59:48',2,'2006-02-15 21:30:53'), +(4702,'2005-07-08 11:41:36',2593,56,'2005-07-10 06:55:36',1,'2006-02-15 21:30:53'), +(4703,'2005-07-08 11:44:56',2859,544,'2005-07-13 09:17:56',1,'2006-02-15 21:30:53'), +(4704,'2005-07-08 11:45:35',2291,28,'2005-07-10 09:46:35',1,'2006-02-15 21:30:53'), +(4705,'2005-07-08 11:50:38',3709,85,'2005-07-12 15:58:38',2,'2006-02-15 21:30:53'), +(4706,'2005-07-08 11:51:41',2512,380,'2005-07-17 12:58:41',1,'2006-02-15 21:30:53'), +(4707,'2005-07-08 11:57:28',52,286,'2005-07-10 17:47:28',1,'2006-02-15 21:30:53'), +(4708,'2005-07-08 11:59:19',3249,212,'2005-07-17 07:11:19',2,'2006-02-15 21:30:53'), +(4709,'2005-07-08 12:04:34',3964,124,'2005-07-15 06:48:34',1,'2006-02-15 21:30:53'), +(4710,'2005-07-08 12:04:53',248,590,'2005-07-13 11:28:53',2,'2006-02-15 21:30:53'), +(4711,'2005-07-08 12:06:58',2327,563,'2005-07-12 08:37:58',1,'2006-02-15 21:30:53'), +(4712,'2005-07-08 12:10:50',2371,39,'2005-07-17 14:54:50',2,'2006-02-15 21:30:53'), +(4713,'2005-07-08 12:12:33',1399,207,'2005-07-16 17:13:33',1,'2006-02-15 21:30:53'), +(4714,'2005-07-08 12:12:48',1932,385,'2005-07-17 08:43:48',2,'2006-02-15 21:30:53'), +(4715,'2005-07-08 12:15:37',4010,276,'2005-07-10 10:37:37',2,'2006-02-15 21:30:53'), +(4716,'2005-07-08 12:18:51',1923,391,'2005-07-11 11:06:51',2,'2006-02-15 21:30:53'), +(4717,'2005-07-08 12:22:43',1491,453,'2005-07-11 10:24:43',2,'2006-02-15 21:30:53'), +(4718,'2005-07-08 12:32:08',1653,535,'2005-07-17 17:34:08',2,'2006-02-15 21:30:53'), +(4719,'2005-07-08 12:33:00',1315,556,'2005-07-15 12:30:00',1,'2006-02-15 21:30:53'), +(4720,'2005-07-08 12:34:34',2669,452,'2005-07-09 10:28:34',1,'2006-02-15 21:30:53'), +(4721,'2005-07-08 12:39:31',3105,234,'2005-07-15 18:07:31',1,'2006-02-15 21:30:53'), +(4722,'2005-07-08 12:42:27',3738,590,'2005-07-09 09:14:27',2,'2006-02-15 21:30:53'), +(4723,'2005-07-08 12:44:59',965,44,'2005-07-17 07:22:59',2,'2006-02-15 21:30:53'), +(4724,'2005-07-08 12:46:30',3375,18,'2005-07-14 12:39:30',1,'2006-02-15 21:30:53'), +(4725,'2005-07-08 12:47:11',2058,3,'2005-07-15 09:08:11',2,'2006-02-15 21:30:53'), +(4726,'2005-07-08 12:50:54',4369,144,'2005-07-17 07:09:54',2,'2006-02-15 21:30:53'), +(4727,'2005-07-08 12:54:15',1251,39,'2005-07-17 14:32:15',2,'2006-02-15 21:30:53'), +(4728,'2005-07-08 12:59:01',3687,462,'2005-07-13 13:00:01',1,'2006-02-15 21:30:53'), +(4729,'2005-07-08 12:59:40',1429,205,'2005-07-10 13:35:40',2,'2006-02-15 21:30:53'), +(4730,'2005-07-08 12:59:49',1619,126,'2005-07-14 16:15:49',2,'2006-02-15 21:30:53'), +(4731,'2005-07-08 13:08:18',4124,241,'2005-07-09 13:16:18',2,'2006-02-15 21:30:53'), +(4732,'2005-07-08 13:09:45',308,562,'2005-07-14 10:10:45',1,'2006-02-15 21:30:53'), +(4733,'2005-07-08 13:12:07',2230,93,'2005-07-13 07:34:07',1,'2006-02-15 21:30:53'), +(4734,'2005-07-08 13:12:12',1928,546,'2005-07-10 09:01:12',2,'2006-02-15 21:30:53'), +(4735,'2005-07-08 13:12:27',4324,381,'2005-07-13 10:06:27',2,'2006-02-15 21:30:53'), +(4736,'2005-07-08 13:22:55',3009,79,'2005-07-17 07:27:55',1,'2006-02-15 21:30:53'), +(4737,'2005-07-08 13:23:53',4286,116,'2005-07-12 18:49:53',1,'2006-02-15 21:30:53'), +(4738,'2005-07-08 13:24:58',2021,31,'2005-07-17 17:44:58',2,'2006-02-15 21:30:53'), +(4739,'2005-07-08 13:25:57',140,197,'2005-07-11 17:36:57',1,'2006-02-15 21:30:53'), +(4740,'2005-07-08 13:30:35',2559,379,'2005-07-14 18:43:35',1,'2006-02-15 21:30:53'), +(4741,'2005-07-08 13:31:23',516,260,'2005-07-17 12:02:23',2,'2006-02-15 21:30:53'), +(4742,'2005-07-08 13:35:23',3022,340,'2005-07-11 10:24:23',2,'2006-02-15 21:30:53'), +(4743,'2005-07-08 13:42:36',80,535,'2005-07-11 18:54:36',2,'2006-02-15 21:30:53'), +(4744,'2005-07-08 13:43:57',2948,507,'2005-07-12 09:21:57',2,'2006-02-15 21:30:53'), +(4745,'2005-07-08 13:45:09',1351,354,'2005-07-12 18:54:09',1,'2006-02-15 21:30:53'), +(4746,'2005-07-08 13:47:55',173,148,'2005-07-11 09:06:55',2,'2006-02-15 21:30:53'), +(4747,'2005-07-08 13:53:01',3942,383,'2005-07-12 17:10:01',2,'2006-02-15 21:30:53'), +(4748,'2005-07-08 13:59:38',4279,9,'2005-07-15 16:51:38',1,'2006-02-15 21:30:53'), +(4749,'2005-07-08 14:05:58',1190,236,'2005-07-10 18:35:58',2,'2006-02-15 21:30:53'), +(4750,'2005-07-08 14:07:03',3383,198,'2005-07-13 18:05:03',1,'2006-02-15 21:30:53'), +(4751,'2005-07-08 14:07:52',3469,436,'2005-07-13 10:37:52',2,'2006-02-15 21:30:53'), +(4752,'2005-07-08 14:15:20',3250,512,'2005-07-12 13:22:20',1,'2006-02-15 21:30:53'), +(4753,'2005-07-08 14:18:41',1642,391,'2005-07-09 10:00:41',2,'2006-02-15 21:30:53'), +(4754,'2005-07-08 14:20:01',3177,108,'2005-07-11 11:50:01',1,'2006-02-15 21:30:53'), +(4755,'2005-07-08 14:23:41',661,378,'2005-07-10 19:35:41',1,'2006-02-15 21:30:53'), +(4756,'2005-07-08 14:24:00',3068,351,'2005-07-12 16:16:00',1,'2006-02-15 21:30:53'), +(4757,'2005-07-08 14:36:51',1278,504,'2005-07-12 15:28:51',1,'2006-02-15 21:30:53'), +(4758,'2005-07-08 14:38:02',3698,288,'2005-07-13 12:09:02',2,'2006-02-15 21:30:53'), +(4759,'2005-07-08 14:39:22',3999,284,'2005-07-17 15:02:22',2,'2006-02-15 21:30:53'), +(4760,'2005-07-08 14:48:07',3718,177,'2005-07-10 12:41:07',2,'2006-02-15 21:30:53'), +(4761,'2005-07-08 14:51:45',3556,351,'2005-07-14 20:28:45',1,'2006-02-15 21:30:53'), +(4762,'2005-07-08 14:54:42',390,36,'2005-07-12 18:08:42',1,'2006-02-15 21:30:53'), +(4763,'2005-07-08 14:57:32',899,465,'2005-07-15 10:00:32',2,'2006-02-15 21:30:53'), +(4764,'2005-07-08 15:01:25',1188,89,'2005-07-17 15:16:25',1,'2006-02-15 21:30:53'), +(4765,'2005-07-08 15:08:45',469,437,'2005-07-13 10:44:45',1,'2006-02-15 21:30:53'), +(4766,'2005-07-08 15:16:04',1057,149,'2005-07-15 11:04:04',2,'2006-02-15 21:30:53'), +(4767,'2005-07-08 15:18:53',3744,350,'2005-07-13 15:48:53',1,'2006-02-15 21:30:53'), +(4768,'2005-07-08 15:28:20',2787,482,'2005-07-09 11:46:20',1,'2006-02-15 21:30:53'), +(4769,'2005-07-08 15:29:16',3462,501,'2005-07-09 18:42:16',2,'2006-02-15 21:30:53'), +(4770,'2005-07-08 15:29:46',2406,573,'2005-07-14 13:31:46',1,'2006-02-15 21:30:53'), +(4771,'2005-07-08 15:33:32',1060,32,'2005-07-10 12:38:32',1,'2006-02-15 21:30:53'), +(4772,'2005-07-08 15:41:11',2156,486,'2005-07-17 15:25:11',1,'2006-02-15 21:30:53'), +(4773,'2005-07-08 15:41:39',3025,519,'2005-07-13 18:16:39',1,'2006-02-15 21:30:53'), +(4774,'2005-07-08 15:42:28',673,489,'2005-07-16 18:29:28',2,'2006-02-15 21:30:53'), +(4775,'2005-07-08 15:44:05',4277,595,'2005-07-11 20:39:05',2,'2006-02-15 21:30:53'), +(4776,'2005-07-08 15:44:20',2598,563,'2005-07-17 10:50:20',2,'2006-02-15 21:30:53'), +(4777,'2005-07-08 15:48:34',449,102,'2005-07-16 15:25:34',1,'2006-02-15 21:30:53'), +(4778,'2005-07-08 15:51:51',611,78,'2005-07-12 16:58:51',2,'2006-02-15 21:30:53'), +(4779,'2005-07-08 15:53:41',1321,338,'2005-07-15 20:30:41',1,'2006-02-15 21:30:53'), +(4780,'2005-07-08 16:06:51',2740,115,'2005-07-13 18:34:51',1,'2006-02-15 21:30:53'), +(4781,'2005-07-08 16:06:55',1818,593,'2005-07-16 11:22:55',2,'2006-02-15 21:30:53'), +(4782,'2005-07-08 16:08:51',445,436,'2005-07-17 17:56:51',1,'2006-02-15 21:30:53'), +(4783,'2005-07-08 16:09:24',3952,214,'2005-07-16 21:53:24',2,'2006-02-15 21:30:53'), +(4784,'2005-07-08 16:09:56',549,182,'2005-07-09 20:35:56',1,'2006-02-15 21:30:53'), +(4785,'2005-07-08 16:10:19',58,474,'2005-07-11 18:52:19',1,'2006-02-15 21:30:53'), +(4786,'2005-07-08 16:13:05',2724,294,'2005-07-16 15:29:05',1,'2006-02-15 21:30:53'), +(4787,'2005-07-08 16:16:04',3929,7,'2005-07-14 18:02:04',2,'2006-02-15 21:30:53'), +(4788,'2005-07-08 16:17:35',691,533,'2005-07-11 11:56:35',2,'2006-02-15 21:30:53'), +(4789,'2005-07-08 16:22:01',20,73,'2005-07-15 18:29:01',2,'2006-02-15 21:30:53'), +(4790,'2005-07-08 16:25:27',100,500,'2005-07-11 11:35:27',1,'2006-02-15 21:30:53'), +(4791,'2005-07-08 16:27:24',2505,393,'2005-07-14 21:50:24',2,'2006-02-15 21:30:53'), +(4792,'2005-07-08 16:29:38',2132,147,'2005-07-10 16:31:38',2,'2006-02-15 21:30:53'), +(4793,'2005-07-08 16:30:01',3090,427,'2005-07-15 17:56:01',1,'2006-02-15 21:30:53'), +(4794,'2005-07-08 16:30:11',2497,451,'2005-07-17 12:41:11',2,'2006-02-15 21:30:53'), +(4795,'2005-07-08 16:32:54',3409,497,'2005-07-09 14:15:54',1,'2006-02-15 21:30:53'), +(4796,'2005-07-08 16:35:44',2484,9,'2005-07-13 11:08:44',2,'2006-02-15 21:30:53'), +(4797,'2005-07-08 16:39:05',1389,265,'2005-07-09 11:41:05',1,'2006-02-15 21:30:53'), +(4798,'2005-07-08 16:45:16',3874,212,'2005-07-16 13:45:16',2,'2006-02-15 21:30:53'), +(4799,'2005-07-08 16:49:27',4112,512,'2005-07-12 19:58:27',2,'2006-02-15 21:30:53'), +(4800,'2005-07-08 16:51:08',1940,99,'2005-07-13 14:16:08',2,'2006-02-15 21:30:53'), +(4801,'2005-07-08 16:51:36',761,431,'2005-07-13 17:23:36',1,'2006-02-15 21:30:53'), +(4802,'2005-07-08 16:55:17',22,562,'2005-07-15 19:34:17',1,'2006-02-15 21:30:53'), +(4803,'2005-07-08 16:56:34',1786,174,'2005-07-14 20:16:34',1,'2006-02-15 21:30:53'), +(4804,'2005-07-08 16:57:30',3756,269,'2005-07-10 18:25:30',1,'2006-02-15 21:30:53'), +(4805,'2005-07-08 16:59:12',377,453,'2005-07-09 15:02:12',1,'2006-02-15 21:30:53'), +(4806,'2005-07-08 17:01:02',214,506,'2005-07-15 21:41:02',1,'2006-02-15 21:30:53'), +(4807,'2005-07-08 17:01:48',4511,348,'2005-07-16 22:33:48',2,'2006-02-15 21:30:53'), +(4808,'2005-07-08 17:02:49',2544,563,'2005-07-12 22:49:49',2,'2006-02-15 21:30:53'), +(4809,'2005-07-08 17:03:22',4251,474,'2005-07-17 22:39:22',1,'2006-02-15 21:30:53'), +(4810,'2005-07-08 17:04:06',4056,209,'2005-07-09 13:41:06',1,'2006-02-15 21:30:53'), +(4811,'2005-07-08 17:04:24',4032,127,'2005-07-12 16:41:24',2,'2006-02-15 21:30:53'), +(4812,'2005-07-08 17:07:11',3281,304,'2005-07-17 21:03:11',2,'2006-02-15 21:30:53'), +(4813,'2005-07-08 17:09:56',2752,439,'2005-07-09 22:29:56',1,'2006-02-15 21:30:53'), +(4814,'2005-07-08 17:11:09',3497,244,'2005-07-17 12:43:09',2,'2006-02-15 21:30:53'), +(4815,'2005-07-08 17:12:51',840,581,'2005-07-17 13:14:51',1,'2006-02-15 21:30:53'), +(4816,'2005-07-08 17:14:14',2700,207,'2005-07-11 15:03:14',1,'2006-02-15 21:30:53'), +(4817,'2005-07-08 17:17:31',1608,145,'2005-07-09 22:32:31',2,'2006-02-15 21:30:53'), +(4818,'2005-07-08 17:18:22',115,144,'2005-07-14 14:40:22',1,'2006-02-15 21:30:53'), +(4819,'2005-07-08 17:19:15',1342,64,'2005-07-16 14:32:15',1,'2006-02-15 21:30:53'), +(4820,'2005-07-08 17:25:23',2672,172,'2005-07-17 20:32:23',2,'2006-02-15 21:30:53'), +(4821,'2005-07-08 17:28:08',1690,172,'2005-07-11 17:44:08',1,'2006-02-15 21:30:53'), +(4822,'2005-07-08 17:28:47',3970,185,'2005-07-14 13:06:47',1,'2006-02-15 21:30:53'), +(4823,'2005-07-08 17:28:54',155,206,'2005-07-11 23:10:54',1,'2006-02-15 21:30:53'), +(4824,'2005-07-08 17:37:39',1855,225,'2005-07-16 18:27:39',1,'2006-02-15 21:30:53'), +(4825,'2005-07-08 17:43:01',2419,563,'2005-07-11 20:58:01',1,'2006-02-15 21:30:53'), +(4826,'2005-07-08 17:44:25',911,180,'2005-07-16 20:14:25',2,'2006-02-15 21:30:53'), +(4827,'2005-07-08 17:46:30',4455,110,'2005-07-11 14:12:30',2,'2006-02-15 21:30:53'), +(4828,'2005-07-08 17:52:29',1100,92,'2005-07-11 14:35:29',1,'2006-02-15 21:30:53'), +(4829,'2005-07-08 17:54:18',2661,133,'2005-07-11 23:41:18',1,'2006-02-15 21:30:53'), +(4830,'2005-07-08 17:56:23',1150,359,'2005-07-17 21:40:23',2,'2006-02-15 21:30:53'), +(4831,'2005-07-08 18:00:14',2739,243,'2005-07-12 15:54:14',2,'2006-02-15 21:30:53'), +(4832,'2005-07-08 18:07:05',1838,509,'2005-07-10 19:37:05',2,'2006-02-15 21:30:53'), +(4833,'2005-07-08 18:07:35',2921,581,'2005-07-13 15:29:35',2,'2006-02-15 21:30:53'), +(4834,'2005-07-08 18:07:45',1288,301,'2005-07-14 15:27:45',1,'2006-02-15 21:30:53'), +(4835,'2005-07-08 18:08:13',2499,95,'2005-07-17 16:51:13',2,'2006-02-15 21:30:53'), +(4836,'2005-07-08 18:09:08',2756,311,'2005-07-15 20:19:08',1,'2006-02-15 21:30:53'), +(4837,'2005-07-08 18:09:12',1944,149,'2005-07-11 16:40:12',1,'2006-02-15 21:30:53'), +(4838,'2005-07-08 18:11:00',3733,84,'2005-07-17 12:57:00',2,'2006-02-15 21:30:53'), +(4839,'2005-07-08 18:13:10',1810,556,'2005-07-15 12:49:10',1,'2006-02-15 21:30:53'), +(4840,'2005-07-08 18:18:16',1670,119,'2005-07-16 14:59:16',1,'2006-02-15 21:30:53'), +(4841,'2005-07-08 18:18:23',518,248,'2005-07-11 16:51:23',2,'2006-02-15 21:30:53'), +(4842,'2005-07-08 18:21:30',1438,160,'2005-07-10 22:25:30',2,'2006-02-15 21:30:53'), +(4843,'2005-07-08 18:27:28',3640,45,'2005-07-15 00:26:28',2,'2006-02-15 21:30:53'), +(4844,'2005-07-08 18:28:13',4057,237,'2005-07-09 21:17:13',2,'2006-02-15 21:30:53'), +(4845,'2005-07-08 18:28:20',2337,553,'2005-07-09 14:38:20',2,'2006-02-15 21:30:53'), +(4846,'2005-07-08 18:29:05',417,556,'2005-07-10 22:33:05',2,'2006-02-15 21:30:53'), +(4847,'2005-07-08 18:29:13',3397,544,'2005-07-15 18:12:13',2,'2006-02-15 21:30:53'), +(4848,'2005-07-08 18:30:16',2962,251,'2005-07-12 19:53:16',2,'2006-02-15 21:30:53'), +(4849,'2005-07-08 18:34:34',4323,146,'2005-07-14 20:27:34',2,'2006-02-15 21:30:53'), +(4850,'2005-07-08 18:39:31',3039,154,'2005-07-13 00:18:31',2,'2006-02-15 21:30:53'), +(4851,'2005-07-08 18:40:05',134,557,'2005-07-12 21:46:05',1,'2006-02-15 21:30:53'), +(4852,'2005-07-08 18:43:15',3545,418,'2005-07-15 18:48:15',2,'2006-02-15 21:30:53'), +(4853,'2005-07-08 18:43:18',1454,23,'2005-07-12 14:28:18',2,'2006-02-15 21:30:53'), +(4854,'2005-07-08 18:44:44',3644,487,'2005-07-13 13:37:44',1,'2006-02-15 21:30:53'), +(4855,'2005-07-08 18:45:50',1146,337,'2005-07-11 18:23:50',2,'2006-02-15 21:30:53'), +(4856,'2005-07-08 18:47:38',2441,7,'2005-07-13 15:02:38',2,'2006-02-15 21:30:53'), +(4857,'2005-07-08 18:52:07',2069,211,'2005-07-11 22:06:07',1,'2006-02-15 21:30:53'), +(4858,'2005-07-08 18:53:24',3424,447,'2005-07-17 20:32:24',2,'2006-02-15 21:30:53'), +(4859,'2005-07-08 18:54:04',1939,369,'2005-07-13 13:04:04',1,'2006-02-15 21:30:53'), +(4860,'2005-07-08 18:54:07',428,123,'2005-07-17 15:09:07',2,'2006-02-15 21:30:53'), +(4861,'2005-07-08 18:57:30',2984,455,'2005-07-16 15:12:30',2,'2006-02-15 21:30:53'), +(4862,'2005-07-08 19:02:46',293,291,'2005-07-17 20:17:46',1,'2006-02-15 21:30:53'), +(4863,'2005-07-08 19:03:15',1,431,'2005-07-11 21:29:15',2,'2006-02-15 21:30:53'), +(4864,'2005-07-08 19:05:34',2974,281,'2005-07-17 15:05:34',2,'2006-02-15 21:30:53'), +(4865,'2005-07-08 19:09:04',1614,418,'2005-07-13 21:25:04',2,'2006-02-15 21:30:53'), +(4866,'2005-07-08 19:09:59',4036,278,'2005-07-15 00:51:59',2,'2006-02-15 21:30:53'), +(4867,'2005-07-08 19:10:52',4090,593,'2005-07-09 21:43:52',2,'2006-02-15 21:30:53'), +(4868,'2005-07-08 19:13:50',1157,307,'2005-07-14 20:59:50',2,'2006-02-15 21:30:53'), +(4869,'2005-07-08 19:14:05',2860,376,'2005-07-15 22:27:05',1,'2006-02-15 21:30:53'), +(4870,'2005-07-08 19:14:45',3089,260,'2005-07-12 18:58:45',2,'2006-02-15 21:30:53'), +(4871,'2005-07-08 19:19:52',2509,210,'2005-07-13 20:27:52',2,'2006-02-15 21:30:53'), +(4872,'2005-07-08 19:23:16',1836,103,'2005-07-10 14:17:16',2,'2006-02-15 21:30:53'), +(4873,'2005-07-08 19:23:32',4500,473,'2005-07-11 15:24:32',1,'2006-02-15 21:30:53'), +(4874,'2005-07-08 19:23:38',2386,223,'2005-07-13 14:39:38',2,'2006-02-15 21:30:53'), +(4875,'2005-07-08 19:24:17',843,555,'2005-07-11 19:15:17',2,'2006-02-15 21:30:53'), +(4876,'2005-07-08 19:27:50',1959,283,'2005-07-14 15:42:50',1,'2006-02-15 21:30:53'), +(4877,'2005-07-08 19:31:02',1846,287,'2005-07-15 19:05:02',1,'2006-02-15 21:30:53'), +(4878,'2005-07-08 19:33:49',4009,172,'2005-07-17 17:47:49',1,'2006-02-15 21:30:53'), +(4879,'2005-07-08 19:34:55',1406,196,'2005-07-09 15:53:55',1,'2006-02-15 21:30:53'), +(4880,'2005-07-08 19:36:17',4178,269,'2005-07-13 00:01:17',1,'2006-02-15 21:30:53'), +(4881,'2005-07-08 19:40:34',4346,349,'2005-07-09 17:08:34',2,'2006-02-15 21:30:53'), +(4882,'2005-07-08 19:42:03',4540,184,'2005-07-16 22:24:03',1,'2006-02-15 21:30:53'), +(4883,'2005-07-08 19:46:58',1366,563,'2005-07-10 15:48:58',1,'2006-02-15 21:30:53'), +(4884,'2005-07-08 19:49:17',3543,425,'2005-07-15 23:14:17',2,'2006-02-15 21:30:53'), +(4885,'2005-07-08 19:51:17',442,233,'2005-07-12 16:02:17',2,'2006-02-15 21:30:53'), +(4886,'2005-07-08 19:53:22',3393,474,'2005-07-09 17:05:22',1,'2006-02-15 21:30:53'), +(4887,'2005-07-08 19:59:14',3613,543,'2005-07-15 22:53:14',1,'2006-02-15 21:30:53'), +(4888,'2005-07-08 20:04:27',1220,527,'2005-07-10 14:53:27',2,'2006-02-15 21:30:53'), +(4889,'2005-07-08 20:04:43',4463,5,'2005-07-13 17:57:43',2,'2006-02-15 21:30:53'), +(4890,'2005-07-08 20:05:38',3576,574,'2005-07-14 14:55:38',2,'2006-02-15 21:30:53'), +(4891,'2005-07-08 20:06:19',1787,59,'2005-07-16 18:52:19',1,'2006-02-15 21:30:53'), +(4892,'2005-07-08 20:06:25',3566,193,'2005-07-14 20:04:25',1,'2006-02-15 21:30:53'), +(4893,'2005-07-08 20:19:55',2060,210,'2005-07-15 21:28:55',2,'2006-02-15 21:30:53'), +(4894,'2005-07-08 20:21:31',1028,286,'2005-07-11 01:59:31',1,'2006-02-15 21:30:53'), +(4895,'2005-07-08 20:22:05',2620,242,'2005-07-12 20:49:05',1,'2006-02-15 21:30:53'), +(4896,'2005-07-08 20:23:15',3006,129,'2005-07-10 15:38:15',1,'2006-02-15 21:30:53'), +(4897,'2005-07-08 20:25:11',2950,258,'2005-07-09 17:16:11',1,'2006-02-15 21:30:53'), +(4898,'2005-07-08 20:31:43',3212,218,'2005-07-15 15:58:43',2,'2006-02-15 21:30:53'), +(4899,'2005-07-08 20:37:11',414,32,'2005-07-10 21:53:11',1,'2006-02-15 21:30:53'), +(4900,'2005-07-08 20:38:06',3487,426,'2005-07-09 22:45:06',2,'2006-02-15 21:30:53'), +(4901,'2005-07-08 20:44:51',2187,507,'2005-07-10 01:04:51',1,'2006-02-15 21:30:53'), +(4902,'2005-07-08 20:49:30',2238,554,'2005-07-13 16:54:30',2,'2006-02-15 21:30:53'), +(4903,'2005-07-08 20:50:05',1769,132,'2005-07-13 15:27:05',1,'2006-02-15 21:30:53'), +(4904,'2005-07-08 20:53:27',2051,173,'2005-07-18 01:16:27',1,'2006-02-15 21:30:53'), +(4905,'2005-07-08 20:56:00',4101,246,'2005-07-12 00:19:00',2,'2006-02-15 21:30:53'), +(4906,'2005-07-08 20:59:13',1527,490,'2005-07-15 01:12:13',2,'2006-02-15 21:30:53'), +(4907,'2005-07-08 21:01:41',1206,209,'2005-07-13 02:23:41',2,'2006-02-15 21:30:53'), +(4908,'2005-07-08 21:05:44',1963,160,'2005-07-17 21:33:44',2,'2006-02-15 21:30:53'), +(4909,'2005-07-08 21:07:24',1451,228,'2005-07-10 22:34:24',1,'2006-02-15 21:30:53'), +(4910,'2005-07-08 21:13:56',3675,219,'2005-07-18 02:39:56',2,'2006-02-15 21:30:53'), +(4911,'2005-07-08 21:20:26',4479,66,'2005-07-15 03:11:26',1,'2006-02-15 21:30:53'), +(4912,'2005-07-08 21:26:11',2012,275,'2005-07-18 02:19:11',1,'2006-02-15 21:30:53'), +(4913,'2005-07-08 21:27:48',982,368,'2005-07-18 02:51:48',1,'2006-02-15 21:30:53'), +(4914,'2005-07-08 21:30:53',298,535,'2005-07-17 01:29:53',1,'2006-02-15 21:30:53'), +(4915,'2005-07-08 21:31:22',2772,178,'2005-07-13 16:45:22',2,'2006-02-15 21:30:53'), +(4916,'2005-07-08 21:32:17',2680,212,'2005-07-14 20:55:17',2,'2006-02-15 21:30:53'), +(4917,'2005-07-08 21:32:30',3231,104,'2005-07-09 15:34:30',1,'2006-02-15 21:30:53'), +(4918,'2005-07-08 21:37:31',3819,220,'2005-07-11 20:16:31',2,'2006-02-15 21:30:53'), +(4919,'2005-07-08 21:41:54',2106,157,'2005-07-11 23:14:54',1,'2006-02-15 21:30:53'), +(4920,'2005-07-08 21:42:10',4285,239,'2005-07-15 03:08:10',1,'2006-02-15 21:30:53'), +(4921,'2005-07-08 21:43:21',425,109,'2005-07-10 16:06:21',2,'2006-02-15 21:30:53'), +(4922,'2005-07-08 21:44:00',2928,577,'2005-07-10 02:58:00',2,'2006-02-15 21:30:53'), +(4923,'2005-07-08 21:44:39',932,18,'2005-07-17 15:50:39',2,'2006-02-15 21:30:53'), +(4924,'2005-07-08 21:55:25',4344,180,'2005-07-16 16:52:25',1,'2006-02-15 21:30:53'), +(4925,'2005-07-08 21:56:00',2169,68,'2005-07-14 17:17:00',2,'2006-02-15 21:30:53'), +(4926,'2005-07-08 22:01:48',4155,415,'2005-07-18 03:27:48',1,'2006-02-15 21:30:53'), +(4927,'2005-07-08 22:05:35',2566,136,'2005-07-14 23:22:35',2,'2006-02-15 21:30:53'), +(4928,'2005-07-08 22:05:41',4363,77,'2005-07-09 23:09:41',2,'2006-02-15 21:30:53'), +(4929,'2005-07-08 22:06:18',734,297,'2005-07-17 18:17:18',2,'2006-02-15 21:30:53'), +(4930,'2005-07-08 22:15:48',2057,451,'2005-07-15 21:02:48',2,'2006-02-15 21:30:53'), +(4931,'2005-07-08 22:16:18',2750,284,'2005-07-17 03:42:18',1,'2006-02-15 21:30:53'), +(4932,'2005-07-08 22:17:40',4237,558,'2005-07-15 22:13:40',2,'2006-02-15 21:30:53'), +(4933,'2005-07-08 22:18:29',322,579,'2005-07-13 03:47:29',2,'2006-02-15 21:30:53'), +(4934,'2005-07-08 22:18:42',1744,517,'2005-07-10 20:44:42',2,'2006-02-15 21:30:53'), +(4935,'2005-07-08 22:20:56',2708,230,'2005-07-12 01:01:56',2,'2006-02-15 21:30:53'), +(4936,'2005-07-08 22:24:50',2033,298,'2005-07-15 03:14:50',2,'2006-02-15 21:30:53'), +(4937,'2005-07-08 22:29:59',33,273,'2005-07-15 21:51:59',2,'2006-02-15 21:30:53'), +(4938,'2005-07-08 22:32:53',2164,418,'2005-07-14 16:48:53',2,'2006-02-15 21:30:53'), +(4939,'2005-07-08 22:35:30',3201,425,'2005-07-17 22:05:30',1,'2006-02-15 21:30:53'), +(4940,'2005-07-08 22:36:06',971,215,'2005-07-15 04:28:06',1,'2006-02-15 21:30:53'), +(4941,'2005-07-08 22:39:10',3816,553,'2005-07-15 17:49:10',2,'2006-02-15 21:30:53'), +(4942,'2005-07-08 22:42:47',4467,120,'2005-07-15 04:36:47',2,'2006-02-15 21:30:53'), +(4943,'2005-07-08 22:43:05',2732,11,'2005-07-15 18:17:05',2,'2006-02-15 21:30:53'), +(4944,'2005-07-08 22:44:28',3648,293,'2005-07-17 21:51:28',2,'2006-02-15 21:30:53'), +(4945,'2005-07-08 22:45:02',2079,165,'2005-07-11 23:59:02',2,'2006-02-15 21:30:53'), +(4946,'2005-07-08 22:46:23',272,440,'2005-07-16 17:19:23',1,'2006-02-15 21:30:53'), +(4947,'2005-07-08 22:49:37',3905,388,'2005-07-17 21:03:37',1,'2006-02-15 21:30:53'), +(4948,'2005-07-08 22:54:21',2972,518,'2005-07-17 03:52:21',2,'2006-02-15 21:30:53'), +(4949,'2005-07-08 22:57:10',1184,567,'2005-07-11 01:26:10',2,'2006-02-15 21:30:53'), +(4950,'2005-07-08 22:58:07',3291,148,'2005-07-09 20:41:07',2,'2006-02-15 21:30:53'), +(4951,'2005-07-08 22:58:21',2766,28,'2005-07-16 18:58:21',1,'2006-02-15 21:30:53'), +(4952,'2005-07-08 23:00:07',459,14,'2005-07-09 21:47:07',1,'2006-02-15 21:30:53'), +(4953,'2005-07-08 23:09:48',2460,168,'2005-07-11 02:08:48',2,'2006-02-15 21:30:53'), +(4954,'2005-07-08 23:14:16',627,99,'2005-07-14 23:23:16',2,'2006-02-15 21:30:53'), +(4955,'2005-07-08 23:16:21',1103,225,'2005-07-14 02:09:21',2,'2006-02-15 21:30:53'), +(4956,'2005-07-08 23:17:10',1512,477,'2005-07-18 00:14:10',1,'2006-02-15 21:30:53'), +(4957,'2005-07-08 23:18:48',4082,399,'2005-07-09 23:13:48',1,'2006-02-15 21:30:53'), +(4958,'2005-07-08 23:19:52',2354,346,'2005-07-17 20:31:52',1,'2006-02-15 21:30:53'), +(4959,'2005-07-08 23:22:23',3898,236,'2005-07-10 03:17:23',2,'2006-02-15 21:30:53'), +(4960,'2005-07-08 23:27:16',2176,434,'2005-07-18 02:01:16',1,'2006-02-15 21:30:53'), +(4961,'2005-07-08 23:35:53',3668,96,'2005-07-14 22:46:53',2,'2006-02-15 21:30:53'), +(4962,'2005-07-08 23:36:13',4399,532,'2005-07-15 03:39:13',1,'2006-02-15 21:30:53'), +(4963,'2005-07-08 23:38:40',737,404,'2005-07-12 05:33:40',2,'2006-02-15 21:30:53'), +(4964,'2005-07-08 23:46:38',1033,455,'2005-07-09 22:19:38',2,'2006-02-15 21:30:53'), +(4965,'2005-07-08 23:46:57',535,432,'2005-07-15 18:47:57',1,'2006-02-15 21:30:53'), +(4966,'2005-07-08 23:47:25',4360,118,'2005-07-14 03:35:25',1,'2006-02-15 21:30:53'), +(4967,'2005-07-08 23:48:03',108,339,'2005-07-15 23:51:03',2,'2006-02-15 21:30:53'), +(4968,'2005-07-08 23:49:19',3204,390,'2005-07-14 02:46:19',1,'2006-02-15 21:30:53'), +(4969,'2005-07-08 23:51:26',4563,231,'2005-07-12 03:21:26',2,'2006-02-15 21:30:53'), +(4970,'2005-07-08 23:54:29',2983,100,'2005-07-16 22:47:29',1,'2006-02-15 21:30:53'), +(4971,'2005-07-08 23:54:49',460,64,'2005-07-16 00:15:49',1,'2006-02-15 21:30:53'), +(4972,'2005-07-08 23:56:09',2451,498,'2005-07-16 19:15:09',1,'2006-02-15 21:30:53'), +(4973,'2005-07-08 23:58:18',391,432,'2005-07-14 21:42:18',1,'2006-02-15 21:30:53'), +(4974,'2005-07-09 00:00:36',1071,152,'2005-07-13 21:03:36',1,'2006-02-15 21:30:53'), +(4975,'2005-07-09 00:02:46',3730,101,'2005-07-14 18:05:46',2,'2006-02-15 21:30:53'), +(4976,'2005-07-09 00:03:30',617,199,'2005-07-10 19:05:30',1,'2006-02-15 21:30:53'), +(4977,'2005-07-09 00:15:50',3310,584,'2005-07-10 00:34:50',2,'2006-02-15 21:30:53'), +(4978,'2005-07-09 00:22:02',2578,279,'2005-07-18 04:37:02',1,'2006-02-15 21:30:53'), +(4979,'2005-07-09 00:24:34',3447,204,'2005-07-12 20:04:34',1,'2006-02-15 21:30:53'), +(4980,'2005-07-09 00:26:59',2638,100,'2005-07-14 19:42:59',1,'2006-02-15 21:30:53'), +(4981,'2005-07-09 00:29:29',3363,399,'2005-07-16 19:06:29',2,'2006-02-15 21:30:53'), +(4982,'2005-07-09 00:30:52',249,162,'2005-07-15 23:50:52',1,'2006-02-15 21:30:53'), +(4983,'2005-07-09 00:34:16',1469,81,'2005-07-17 03:21:16',2,'2006-02-15 21:30:53'), +(4984,'2005-07-09 00:35:31',1303,214,'2005-07-17 03:44:31',1,'2006-02-15 21:30:53'), +(4985,'2005-07-09 00:36:02',2146,208,'2005-07-14 04:06:02',2,'2006-02-15 21:30:53'), +(4986,'2005-07-09 00:44:33',3517,589,'2005-07-09 19:45:33',2,'2006-02-15 21:30:53'), +(4987,'2005-07-09 00:45:41',996,277,'2005-07-14 03:32:41',2,'2006-02-15 21:30:53'), +(4988,'2005-07-09 00:46:14',2718,433,'2005-07-16 01:45:14',2,'2006-02-15 21:30:53'), +(4989,'2005-07-09 00:46:56',3326,210,'2005-07-17 06:24:56',1,'2006-02-15 21:30:53'), +(4990,'2005-07-09 00:48:49',3305,35,'2005-07-10 06:36:49',2,'2006-02-15 21:30:53'), +(4991,'2005-07-09 00:49:03',1856,540,'2005-07-13 05:02:03',1,'2006-02-15 21:30:53'), +(4992,'2005-07-09 00:49:37',2081,315,'2005-07-16 02:05:37',1,'2006-02-15 21:30:53'), +(4993,'2005-07-09 00:49:47',1740,517,'2005-07-11 21:19:47',1,'2006-02-15 21:30:53'), +(4994,'2005-07-09 00:54:13',2546,246,'2005-07-09 21:02:13',1,'2006-02-15 21:30:53'), +(4995,'2005-07-09 00:57:46',2063,247,'2005-07-13 03:32:46',1,'2006-02-15 21:30:53'), +(4996,'2005-07-09 00:59:46',4440,129,'2005-07-16 01:30:46',2,'2006-02-15 21:30:53'), +(4997,'2005-07-09 01:06:03',186,102,'2005-07-18 04:21:03',2,'2006-02-15 21:30:53'), +(4998,'2005-07-09 01:07:21',202,534,'2005-07-10 05:48:21',2,'2006-02-15 21:30:53'), +(4999,'2005-07-09 01:12:57',1797,196,'2005-07-17 00:12:57',1,'2006-02-15 21:30:53'), +(5000,'2005-07-09 01:16:13',668,146,'2005-07-14 21:55:13',1,'2006-02-15 21:30:53'), +(5001,'2005-07-09 01:17:04',2025,40,'2005-07-16 03:25:04',2,'2006-02-15 21:30:53'), +(5002,'2005-07-09 01:17:08',2388,430,'2005-07-15 21:53:08',1,'2006-02-15 21:30:53'), +(5003,'2005-07-09 01:19:03',3438,569,'2005-07-10 04:28:03',2,'2006-02-15 21:30:53'), +(5004,'2005-07-09 01:20:50',2637,382,'2005-07-09 19:56:50',1,'2006-02-15 21:30:53'), +(5005,'2005-07-09 01:21:44',3034,451,'2005-07-14 20:27:44',1,'2006-02-15 21:30:53'), +(5006,'2005-07-09 01:24:07',1277,486,'2005-07-18 03:56:07',1,'2006-02-15 21:30:53'), +(5007,'2005-07-09 01:26:22',3079,207,'2005-07-12 20:48:22',1,'2006-02-15 21:30:53'), +(5008,'2005-07-09 01:31:42',824,509,'2005-07-11 22:34:42',2,'2006-02-15 21:30:53'), +(5009,'2005-07-09 01:32:17',1539,102,'2005-07-18 03:39:17',2,'2006-02-15 21:30:53'), +(5010,'2005-07-09 01:33:23',1999,574,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'), +(5011,'2005-07-09 01:44:40',463,249,'2005-07-11 00:58:40',2,'2006-02-15 21:30:53'), +(5012,'2005-07-09 01:45:04',1456,251,'2005-07-12 02:13:04',1,'2006-02-15 21:30:53'), +(5013,'2005-07-09 01:46:45',3000,35,'2005-07-16 06:57:45',1,'2006-02-15 21:30:53'), +(5014,'2005-07-09 01:51:49',4095,334,'2005-07-10 04:48:49',1,'2006-02-15 21:30:53'), +(5015,'2005-07-09 01:54:24',1564,178,'2005-07-12 20:07:24',1,'2006-02-15 21:30:53'), +(5016,'2005-07-09 01:57:57',1871,5,'2005-07-09 22:07:57',1,'2006-02-15 21:30:53'), +(5017,'2005-07-09 02:00:16',3745,241,'2005-07-14 06:28:16',1,'2006-02-15 21:30:53'), +(5018,'2005-07-09 02:01:05',2317,541,'2005-07-10 04:09:05',1,'2006-02-15 21:30:53'), +(5019,'2005-07-09 02:04:32',3534,295,'2005-07-15 07:01:32',2,'2006-02-15 21:30:53'), +(5020,'2005-07-09 02:07:56',4113,565,'2005-07-09 23:59:56',1,'2006-02-15 21:30:53'), +(5021,'2005-07-09 02:09:41',3445,73,'2005-07-13 05:47:41',1,'2006-02-15 21:30:53'), +(5022,'2005-07-09 02:10:54',928,499,'2005-07-17 08:07:54',2,'2006-02-15 21:30:53'), +(5023,'2005-07-09 02:23:16',3206,358,'2005-07-15 20:37:16',1,'2006-02-15 21:30:53'), +(5024,'2005-07-09 02:25:12',2987,335,'2005-07-12 03:15:12',1,'2006-02-15 21:30:53'), +(5025,'2005-07-09 02:28:24',153,91,'2005-07-12 04:43:24',2,'2006-02-15 21:30:53'), +(5026,'2005-07-09 02:32:34',989,463,'2005-07-13 04:39:34',2,'2006-02-15 21:30:53'), +(5027,'2005-07-09 02:32:37',2179,109,'2005-07-16 23:13:37',1,'2006-02-15 21:30:53'), +(5028,'2005-07-09 02:34:45',4531,30,'2005-07-14 20:45:45',2,'2006-02-15 21:30:53'), +(5029,'2005-07-09 02:35:32',3938,265,'2005-07-17 22:46:32',1,'2006-02-15 21:30:53'), +(5030,'2005-07-09 02:35:43',25,497,'2005-07-17 02:05:43',1,'2006-02-15 21:30:53'), +(5031,'2005-07-09 02:36:37',4224,312,'2005-07-14 03:09:37',2,'2006-02-15 21:30:53'), +(5032,'2005-07-09 02:39:47',2257,333,'2005-07-10 07:45:47',1,'2006-02-15 21:30:53'), +(5033,'2005-07-09 02:42:01',2841,299,'2005-07-14 00:29:01',1,'2006-02-15 21:30:53'), +(5034,'2005-07-09 02:48:15',340,148,'2005-07-11 23:13:15',2,'2006-02-15 21:30:53'), +(5035,'2005-07-09 02:51:34',3699,99,'2005-07-16 21:38:34',1,'2006-02-15 21:30:53'), +(5036,'2005-07-09 02:58:41',75,573,'2005-07-17 04:09:41',1,'2006-02-15 21:30:53'), +(5037,'2005-07-09 02:59:10',435,524,'2005-07-15 07:54:10',2,'2006-02-15 21:30:53'), +(5038,'2005-07-09 03:12:52',3086,10,'2005-07-17 22:27:52',2,'2006-02-15 21:30:53'), +(5039,'2005-07-09 03:14:45',2020,268,'2005-07-16 06:57:45',2,'2006-02-15 21:30:53'), +(5040,'2005-07-09 03:16:34',2479,405,'2005-07-17 01:13:34',2,'2006-02-15 21:30:53'), +(5041,'2005-07-09 03:18:51',2711,305,'2005-07-13 03:08:51',1,'2006-02-15 21:30:53'), +(5042,'2005-07-09 03:20:30',3609,254,'2005-07-15 07:22:30',1,'2006-02-15 21:30:53'), +(5043,'2005-07-09 03:25:18',2979,369,'2005-07-13 00:57:18',2,'2006-02-15 21:30:53'), +(5044,'2005-07-09 03:30:25',1625,147,'2005-07-11 02:32:25',2,'2006-02-15 21:30:53'), +(5045,'2005-07-09 03:33:32',1041,230,'2005-07-18 06:15:32',1,'2006-02-15 21:30:53'), +(5046,'2005-07-09 03:34:57',1639,227,'2005-07-17 22:36:57',2,'2006-02-15 21:30:53'), +(5047,'2005-07-09 03:44:15',230,272,'2005-07-15 09:07:15',2,'2006-02-15 21:30:53'), +(5048,'2005-07-09 03:46:33',1271,466,'2005-07-15 01:14:33',1,'2006-02-15 21:30:53'), +(5049,'2005-07-09 03:54:12',3336,144,'2005-07-11 22:39:12',2,'2006-02-15 21:30:53'), +(5050,'2005-07-09 03:54:38',3876,337,'2005-07-10 02:23:38',2,'2006-02-15 21:30:53'), +(5051,'2005-07-09 03:57:53',4091,85,'2005-07-16 08:22:53',2,'2006-02-15 21:30:53'), +(5052,'2005-07-09 03:59:43',1884,305,'2005-07-12 05:48:43',1,'2006-02-15 21:30:53'), +(5053,'2005-07-09 03:59:46',570,295,'2005-07-09 23:53:46',2,'2006-02-15 21:30:53'), +(5054,'2005-07-09 04:01:02',4001,135,'2005-07-18 05:16:02',2,'2006-02-15 21:30:53'), +(5055,'2005-07-09 04:05:28',751,54,'2005-07-14 04:26:28',2,'2006-02-15 21:30:53'), +(5056,'2005-07-09 04:13:45',2599,526,'2005-07-10 06:17:45',2,'2006-02-15 21:30:53'), +(5057,'2005-07-09 04:20:29',1076,178,'2005-07-14 23:59:29',1,'2006-02-15 21:30:53'), +(5058,'2005-07-09 04:20:35',917,221,'2005-07-18 08:09:35',2,'2006-02-15 21:30:53'), +(5059,'2005-07-09 04:28:01',3951,396,'2005-07-15 22:57:01',1,'2006-02-15 21:30:53'), +(5060,'2005-07-09 04:28:03',4317,57,'2005-07-12 07:41:03',2,'2006-02-15 21:30:53'), +(5061,'2005-07-09 04:30:50',3893,230,'2005-07-12 03:24:50',1,'2006-02-15 21:30:53'), +(5062,'2005-07-09 04:36:49',2190,141,'2005-07-10 06:26:49',1,'2006-02-15 21:30:53'), +(5063,'2005-07-09 04:37:31',1027,133,'2005-07-13 09:56:31',2,'2006-02-15 21:30:53'), +(5064,'2005-07-09 04:38:51',373,512,'2005-07-18 00:33:51',2,'2006-02-15 21:30:53'), +(5065,'2005-07-09 04:42:00',1788,599,'2005-07-12 08:55:00',1,'2006-02-15 21:30:53'), +(5066,'2005-07-09 04:48:50',1702,169,'2005-07-12 22:54:50',2,'2006-02-15 21:30:53'), +(5067,'2005-07-09 04:52:35',1480,225,'2005-07-11 23:33:35',2,'2006-02-15 21:30:53'), +(5068,'2005-07-09 04:53:18',2937,10,'2005-07-13 09:21:18',1,'2006-02-15 21:30:53'), +(5069,'2005-07-09 04:56:30',4417,183,'2005-07-13 23:53:30',2,'2006-02-15 21:30:53'), +(5070,'2005-07-09 04:58:26',2305,407,'2005-07-09 23:00:26',2,'2006-02-15 21:30:53'), +(5071,'2005-07-09 05:00:39',4358,12,'2005-07-09 23:08:39',1,'2006-02-15 21:30:53'), +(5072,'2005-07-09 05:01:58',94,254,'2005-07-18 08:17:58',2,'2006-02-15 21:30:53'), +(5073,'2005-07-09 05:02:35',546,408,'2005-07-15 01:22:35',2,'2006-02-15 21:30:53'), +(5074,'2005-07-09 05:06:24',1379,12,'2005-07-12 04:37:24',1,'2006-02-15 21:30:53'), +(5075,'2005-07-09 05:12:07',903,170,'2005-07-12 08:29:07',1,'2006-02-15 21:30:53'), +(5076,'2005-07-09 05:13:22',4388,574,'2005-07-16 09:11:22',1,'2006-02-15 21:30:53'), +(5077,'2005-07-09 05:18:01',686,574,'2005-07-17 10:39:01',2,'2006-02-15 21:30:53'), +(5078,'2005-07-09 05:20:24',1994,78,'2005-07-13 06:41:24',2,'2006-02-15 21:30:53'), +(5079,'2005-07-09 05:20:40',3948,566,'2005-07-17 00:06:40',1,'2006-02-15 21:30:53'), +(5080,'2005-07-09 05:23:55',635,254,'2005-07-11 05:56:55',2,'2006-02-15 21:30:53'), +(5081,'2005-07-09 05:25:20',1953,420,'2005-07-13 23:45:20',1,'2006-02-15 21:30:53'), +(5082,'2005-07-09 05:28:38',1584,470,'2005-07-10 02:46:38',2,'2006-02-15 21:30:53'), +(5083,'2005-07-09 05:30:32',148,494,'2005-07-11 02:20:32',1,'2006-02-15 21:30:53'), +(5084,'2005-07-09 05:33:27',3113,87,'2005-07-17 08:54:27',2,'2006-02-15 21:30:53'), +(5085,'2005-07-09 05:36:49',4164,437,'2005-07-13 09:26:49',1,'2006-02-15 21:30:53'), +(5086,'2005-07-09 05:40:04',3072,539,'2005-07-16 07:51:04',1,'2006-02-15 21:30:53'), +(5087,'2005-07-09 05:44:28',3716,395,'2005-07-10 02:25:28',2,'2006-02-15 21:30:53'), +(5088,'2005-07-09 05:45:16',3324,454,'2005-07-15 00:41:16',2,'2006-02-15 21:30:53'), +(5089,'2005-07-09 05:45:40',451,289,'2005-07-15 05:31:40',1,'2006-02-15 21:30:53'), +(5090,'2005-07-09 05:48:22',1728,296,'2005-07-11 06:50:22',2,'2006-02-15 21:30:53'), +(5091,'2005-07-09 05:52:54',4572,149,'2005-07-10 02:49:54',1,'2006-02-15 21:30:53'), +(5092,'2005-07-09 05:57:39',3256,139,'2005-07-12 00:45:39',2,'2006-02-15 21:30:53'), +(5093,'2005-07-09 05:59:12',2734,597,'2005-07-10 11:45:12',2,'2006-02-15 21:30:53'), +(5094,'2005-07-09 05:59:47',4451,178,'2005-07-18 05:34:47',2,'2006-02-15 21:30:53'), +(5095,'2005-07-09 06:08:22',2788,292,'2005-07-11 10:52:22',1,'2006-02-15 21:30:53'), +(5096,'2005-07-09 06:08:23',490,231,'2005-07-14 11:36:23',1,'2006-02-15 21:30:53'), +(5097,'2005-07-09 06:09:51',3252,343,'2005-07-10 03:55:51',2,'2006-02-15 21:30:53'), +(5098,'2005-07-09 06:13:54',1772,406,'2005-07-10 04:27:54',1,'2006-02-15 21:30:53'), +(5099,'2005-07-09 06:14:30',768,393,'2005-07-12 08:23:30',2,'2006-02-15 21:30:53'), +(5100,'2005-07-09 06:16:03',3193,101,'2005-07-10 10:21:03',1,'2006-02-15 21:30:53'), +(5101,'2005-07-09 06:21:29',2737,154,'2005-07-11 02:58:29',1,'2006-02-15 21:30:53'), +(5102,'2005-07-09 06:25:48',242,316,'2005-07-16 11:32:48',2,'2006-02-15 21:30:53'), +(5103,'2005-07-09 06:34:40',2390,397,'2005-07-10 03:44:40',2,'2006-02-15 21:30:53'), +(5104,'2005-07-09 06:37:07',2109,14,'2005-07-14 12:32:07',1,'2006-02-15 21:30:53'), +(5105,'2005-07-09 06:38:59',2555,290,'2005-07-17 03:06:59',2,'2006-02-15 21:30:53'), +(5106,'2005-07-09 06:40:24',110,137,'2005-07-13 10:28:24',1,'2006-02-15 21:30:53'), +(5107,'2005-07-09 06:42:32',1697,21,'2005-07-10 08:21:32',2,'2006-02-15 21:30:53'), +(5108,'2005-07-09 06:44:30',4229,30,'2005-07-17 04:24:30',1,'2006-02-15 21:30:53'), +(5109,'2005-07-09 06:48:49',2373,102,'2005-07-14 01:17:49',1,'2006-02-15 21:30:53'), +(5110,'2005-07-09 06:57:25',195,200,'2005-07-12 05:39:25',2,'2006-02-15 21:30:53'), +(5111,'2005-07-09 07:02:19',2875,12,'2005-07-10 06:27:19',2,'2006-02-15 21:30:53'), +(5112,'2005-07-09 07:04:04',3529,285,'2005-07-13 08:42:04',1,'2006-02-15 21:30:53'), +(5113,'2005-07-09 07:06:18',3618,282,'2005-07-13 07:10:18',2,'2006-02-15 21:30:53'), +(5114,'2005-07-09 07:07:05',3734,64,'2005-07-15 03:06:05',1,'2006-02-15 21:30:53'), +(5115,'2005-07-09 07:07:18',2296,212,'2005-07-16 03:28:18',2,'2006-02-15 21:30:53'), +(5116,'2005-07-09 07:10:12',2491,332,'2005-07-14 09:16:12',2,'2006-02-15 21:30:53'), +(5117,'2005-07-09 07:11:22',2284,208,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'), +(5118,'2005-07-09 07:13:52',957,5,'2005-07-18 05:18:52',2,'2006-02-15 21:30:53'), +(5119,'2005-07-09 07:14:18',2996,301,'2005-07-18 04:07:18',1,'2006-02-15 21:30:53'), +(5120,'2005-07-09 07:14:23',4431,373,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'), +(5121,'2005-07-09 07:18:31',3321,526,'2005-07-15 01:48:31',1,'2006-02-15 21:30:53'), +(5122,'2005-07-09 07:19:35',1423,261,'2005-07-16 03:04:35',2,'2006-02-15 21:30:53'), +(5123,'2005-07-09 07:20:30',4278,219,'2005-07-14 05:24:30',1,'2006-02-15 21:30:53'), +(5124,'2005-07-09 07:25:19',1857,565,'2005-07-15 01:51:19',1,'2006-02-15 21:30:53'), +(5125,'2005-07-09 07:25:28',990,263,'2005-07-12 12:34:28',1,'2006-02-15 21:30:53'), +(5126,'2005-07-09 07:25:35',3312,315,'2005-07-18 05:05:35',1,'2006-02-15 21:30:53'), +(5127,'2005-07-09 07:25:47',3649,129,'2005-07-13 11:44:47',2,'2006-02-15 21:30:53'), +(5128,'2005-07-09 07:25:54',3757,155,'2005-07-16 04:04:54',2,'2006-02-15 21:30:53'), +(5129,'2005-07-09 07:28:33',4516,441,'2005-07-14 05:12:33',2,'2006-02-15 21:30:53'), +(5130,'2005-07-09 07:29:45',3264,93,'2005-07-13 05:56:45',1,'2006-02-15 21:30:53'), +(5131,'2005-07-09 07:35:03',3179,167,'2005-07-10 06:05:03',1,'2006-02-15 21:30:53'), +(5132,'2005-07-09 07:40:32',4158,101,'2005-07-16 02:16:32',2,'2006-02-15 21:30:53'), +(5133,'2005-07-09 07:43:22',3403,469,'2005-07-12 04:52:22',1,'2006-02-15 21:30:53'), +(5134,'2005-07-09 07:53:12',149,491,'2005-07-16 05:30:12',1,'2006-02-15 21:30:53'), +(5135,'2005-07-09 07:53:22',3005,538,'2005-07-16 04:50:22',2,'2006-02-15 21:30:53'), +(5136,'2005-07-09 07:55:01',3498,395,'2005-07-11 05:26:01',2,'2006-02-15 21:30:53'), +(5137,'2005-07-09 08:00:34',409,126,'2005-07-12 05:34:34',1,'2006-02-15 21:30:53'), +(5138,'2005-07-09 08:00:46',1283,548,'2005-07-12 09:31:46',2,'2006-02-15 21:30:53'), +(5139,'2005-07-09 08:01:51',51,539,'2005-07-18 09:16:51',2,'2006-02-15 21:30:53'), +(5140,'2005-07-09 08:04:59',947,303,'2005-07-11 08:28:59',2,'2006-02-15 21:30:53'), +(5141,'2005-07-09 08:05:14',590,488,'2005-07-18 04:36:14',1,'2006-02-15 21:30:53'), +(5142,'2005-07-09 08:05:23',369,56,'2005-07-13 12:37:23',2,'2006-02-15 21:30:53'), +(5143,'2005-07-09 08:07:07',3803,196,'2005-07-18 10:17:07',1,'2006-02-15 21:30:53'), +(5144,'2005-07-09 08:09:53',3530,89,'2005-07-18 07:11:53',2,'2006-02-15 21:30:53'), +(5145,'2005-07-09 08:13:25',2397,204,'2005-07-10 03:56:25',2,'2006-02-15 21:30:53'), +(5146,'2005-07-09 08:14:58',776,194,'2005-07-11 07:04:58',1,'2006-02-15 21:30:53'), +(5147,'2005-07-09 08:17:41',2270,326,'2005-07-18 09:45:41',2,'2006-02-15 21:30:53'), +(5148,'2005-07-09 08:22:46',456,48,'2005-07-18 04:36:46',1,'2006-02-15 21:30:53'), +(5149,'2005-07-09 08:28:23',1500,330,'2005-07-16 06:19:23',2,'2006-02-15 21:30:53'), +(5150,'2005-07-09 08:28:40',1961,410,'2005-07-16 04:47:40',1,'2006-02-15 21:30:53'), +(5151,'2005-07-09 08:31:03',224,228,'2005-07-10 08:18:03',2,'2006-02-15 21:30:53'), +(5152,'2005-07-09 08:34:44',4005,331,'2005-07-10 05:26:44',1,'2006-02-15 21:30:53'), +(5153,'2005-07-09 08:35:05',2826,504,'2005-07-18 14:21:05',1,'2006-02-15 21:30:53'), +(5154,'2005-07-09 08:46:18',3785,361,'2005-07-14 03:19:18',1,'2006-02-15 21:30:53'), +(5155,'2005-07-09 08:46:54',988,523,'2005-07-14 04:13:54',1,'2006-02-15 21:30:53'), +(5156,'2005-07-09 08:51:42',416,5,'2005-07-15 03:59:42',2,'2006-02-15 21:30:53'), +(5157,'2005-07-09 08:52:12',637,463,'2005-07-12 04:32:12',2,'2006-02-15 21:30:53'), +(5158,'2005-07-09 08:53:09',2825,272,'2005-07-10 11:05:09',1,'2006-02-15 21:30:53'), +(5159,'2005-07-09 08:55:52',3479,213,'2005-07-10 04:32:52',1,'2006-02-15 21:30:53'), +(5160,'2005-07-09 08:57:07',1925,467,'2005-07-18 06:01:07',1,'2006-02-15 21:30:53'), +(5161,'2005-07-09 08:57:56',2617,284,'2005-07-18 07:41:56',2,'2006-02-15 21:30:53'), +(5162,'2005-07-09 09:00:11',2765,43,'2005-07-17 07:26:11',1,'2006-02-15 21:30:53'), +(5163,'2005-07-09 09:00:28',1486,103,'2005-07-17 08:07:28',2,'2006-02-15 21:30:53'), +(5164,'2005-07-09 09:03:14',1170,511,'2005-07-14 04:20:14',1,'2006-02-15 21:30:53'), +(5165,'2005-07-09 09:08:53',280,590,'2005-07-14 06:01:53',1,'2006-02-15 21:30:53'), +(5166,'2005-07-09 09:15:48',2771,298,'2005-07-16 06:04:48',1,'2006-02-15 21:30:53'), +(5167,'2005-07-09 09:18:43',2485,437,'2005-07-14 12:59:43',2,'2006-02-15 21:30:53'), +(5168,'2005-07-09 09:20:01',4096,420,'2005-07-11 14:42:01',1,'2006-02-15 21:30:53'), +(5169,'2005-07-09 09:22:25',2608,116,'2005-07-10 03:48:25',1,'2006-02-15 21:30:53'), +(5170,'2005-07-09 09:24:19',66,209,'2005-07-18 04:02:19',1,'2006-02-15 21:30:53'), +(5171,'2005-07-09 09:26:55',2099,371,'2005-07-10 10:34:55',1,'2006-02-15 21:30:53'), +(5172,'2005-07-09 09:31:27',4046,214,'2005-07-13 04:03:27',1,'2006-02-15 21:30:53'), +(5173,'2005-07-09 09:31:44',2848,490,'2005-07-15 04:20:44',2,'2006-02-15 21:30:53'), +(5174,'2005-07-09 09:31:59',3621,47,'2005-07-15 03:49:59',1,'2006-02-15 21:30:53'), +(5175,'2005-07-09 09:34:28',1003,409,'2005-07-15 15:19:28',2,'2006-02-15 21:30:53'), +(5176,'2005-07-09 09:39:31',328,119,'2005-07-17 11:56:31',2,'2006-02-15 21:30:53'), +(5177,'2005-07-09 09:43:21',1675,452,'2005-07-13 07:29:21',1,'2006-02-15 21:30:53'), +(5178,'2005-07-09 09:59:52',1750,167,'2005-07-18 13:01:52',2,'2006-02-15 21:30:53'), +(5179,'2005-07-09 10:00:44',2995,256,'2005-07-11 06:52:44',1,'2006-02-15 21:30:53'), +(5180,'2005-07-09 10:06:53',3684,494,'2005-07-12 15:25:53',1,'2006-02-15 21:30:53'), +(5181,'2005-07-09 10:07:27',2569,45,'2005-07-17 10:18:27',2,'2006-02-15 21:30:53'), +(5182,'2005-07-09 10:08:10',725,197,'2005-07-16 14:36:10',2,'2006-02-15 21:30:53'), +(5183,'2005-07-09 10:13:45',2866,394,'2005-07-16 15:55:45',2,'2006-02-15 21:30:53'), +(5184,'2005-07-09 10:14:34',1101,166,'2005-07-14 16:05:34',2,'2006-02-15 21:30:53'), +(5185,'2005-07-09 10:14:39',357,53,'2005-07-10 13:31:39',1,'2006-02-15 21:30:53'), +(5186,'2005-07-09 10:18:40',2415,276,'2005-07-13 05:05:40',2,'2006-02-15 21:30:53'), +(5187,'2005-07-09 10:19:51',2631,91,'2005-07-14 10:35:51',1,'2006-02-15 21:30:53'), +(5188,'2005-07-09 10:22:31',3265,34,'2005-07-13 04:41:31',1,'2006-02-15 21:30:53'), +(5189,'2005-07-09 10:23:21',2539,113,'2005-07-14 08:06:21',1,'2006-02-15 21:30:53'), +(5190,'2005-07-09 10:25:24',2213,532,'2005-07-18 04:33:24',1,'2006-02-15 21:30:53'), +(5191,'2005-07-09 10:26:48',2131,167,'2005-07-10 15:52:48',2,'2006-02-15 21:30:53'), +(5192,'2005-07-09 10:27:09',1225,410,'2005-07-10 12:04:09',1,'2006-02-15 21:30:53'), +(5193,'2005-07-09 10:28:18',2166,485,'2005-07-12 12:18:18',1,'2006-02-15 21:30:53'), +(5194,'2005-07-09 10:31:34',3809,202,'2005-07-15 08:50:34',2,'2006-02-15 21:30:53'), +(5195,'2005-07-09 10:39:31',3399,59,'2005-07-18 13:54:31',1,'2006-02-15 21:30:53'), +(5196,'2005-07-09 10:43:34',2278,536,'2005-07-13 12:10:34',2,'2006-02-15 21:30:53'), +(5197,'2005-07-09 10:43:54',1571,541,'2005-07-16 10:19:54',1,'2006-02-15 21:30:53'), +(5198,'2005-07-09 10:49:10',218,101,'2005-07-13 04:52:10',1,'2006-02-15 21:30:53'), +(5199,'2005-07-09 10:50:56',349,42,'2005-07-10 06:43:56',1,'2006-02-15 21:30:53'), +(5200,'2005-07-09 10:52:09',4528,125,'2005-07-13 15:12:09',1,'2006-02-15 21:30:53'), +(5201,'2005-07-09 10:52:53',2453,551,'2005-07-16 12:41:53',2,'2006-02-15 21:30:53'), +(5202,'2005-07-09 10:53:48',3417,321,'2005-07-15 13:31:48',1,'2006-02-15 21:30:53'), +(5203,'2005-07-09 10:53:59',3661,588,'2005-07-15 09:45:59',2,'2006-02-15 21:30:53'), +(5204,'2005-07-09 10:54:14',1791,432,'2005-07-12 14:29:14',2,'2006-02-15 21:30:53'), +(5205,'2005-07-09 10:56:37',161,79,'2005-07-13 05:45:37',1,'2006-02-15 21:30:53'), +(5206,'2005-07-09 11:11:01',692,517,'2005-07-17 07:23:01',2,'2006-02-15 21:30:53'), +(5207,'2005-07-09 11:15:44',3496,59,'2005-07-17 06:00:44',1,'2006-02-15 21:30:53'), +(5208,'2005-07-09 11:16:56',1881,560,'2005-07-10 07:21:56',2,'2006-02-15 21:30:53'), +(5209,'2005-07-09 11:22:39',4441,222,'2005-07-17 09:31:39',1,'2006-02-15 21:30:53'), +(5210,'2005-07-09 11:24:19',4514,355,'2005-07-11 06:27:19',1,'2006-02-15 21:30:53'), +(5211,'2005-07-09 11:26:50',2216,241,'2005-07-16 15:30:50',1,'2006-02-15 21:30:53'), +(5212,'2005-07-09 11:37:47',3240,400,'2005-07-15 14:42:47',1,'2006-02-15 21:30:53'), +(5213,'2005-07-09 11:39:43',3708,552,'2005-07-18 16:20:43',2,'2006-02-15 21:30:53'), +(5214,'2005-07-09 11:43:08',1657,290,'2005-07-17 08:58:08',2,'2006-02-15 21:30:53'), +(5215,'2005-07-09 11:47:58',3888,528,'2005-07-18 09:58:58',1,'2006-02-15 21:30:53'), +(5216,'2005-07-09 11:54:58',1644,515,'2005-07-12 09:46:58',2,'2006-02-15 21:30:53'), +(5217,'2005-07-09 11:56:50',4150,430,'2005-07-17 07:10:50',1,'2006-02-15 21:30:53'), +(5218,'2005-07-09 11:57:12',1121,83,'2005-07-13 06:34:12',2,'2006-02-15 21:30:53'), +(5219,'2005-07-09 11:57:55',3933,209,'2005-07-15 09:43:55',2,'2006-02-15 21:30:53'), +(5220,'2005-07-09 11:59:04',2577,435,'2005-07-15 06:20:04',1,'2006-02-15 21:30:53'), +(5221,'2005-07-09 12:02:23',2339,84,'2005-07-16 15:43:23',1,'2006-02-15 21:30:53'), +(5222,'2005-07-09 12:05:45',2508,400,'2005-07-13 12:11:45',1,'2006-02-15 21:30:53'), +(5223,'2005-07-09 12:06:03',2335,72,'2005-07-17 15:50:03',1,'2006-02-15 21:30:53'), +(5224,'2005-07-09 12:07:27',279,311,'2005-07-17 08:59:27',1,'2006-02-15 21:30:53'), +(5225,'2005-07-09 12:10:16',703,445,'2005-07-12 09:55:16',2,'2006-02-15 21:30:53'), +(5226,'2005-07-09 12:10:44',3128,218,'2005-07-11 17:32:44',2,'2006-02-15 21:30:53'), +(5227,'2005-07-09 12:16:39',1862,362,'2005-07-18 15:38:39',2,'2006-02-15 21:30:53'), +(5228,'2005-07-09 12:26:01',622,195,'2005-07-14 13:31:01',2,'2006-02-15 21:30:53'), +(5229,'2005-07-09 12:30:18',4472,372,'2005-07-14 15:31:18',2,'2006-02-15 21:30:53'), +(5230,'2005-07-09 12:30:23',3707,51,'2005-07-13 08:41:23',1,'2006-02-15 21:30:53'), +(5231,'2005-07-09 12:35:02',1275,405,'2005-07-10 09:22:02',1,'2006-02-15 21:30:53'), +(5232,'2005-07-09 12:35:08',3353,175,'2005-07-14 14:55:08',1,'2006-02-15 21:30:53'), +(5233,'2005-07-09 12:44:26',1401,131,'2005-07-15 12:31:26',1,'2006-02-15 21:30:53'), +(5234,'2005-07-09 12:44:47',4182,398,'2005-07-17 10:02:47',1,'2006-02-15 21:30:53'), +(5235,'2005-07-09 12:54:25',1044,122,'2005-07-18 16:28:25',1,'2006-02-15 21:30:53'), +(5236,'2005-07-09 12:56:29',1215,519,'2005-07-13 08:26:29',1,'2006-02-15 21:30:53'), +(5237,'2005-07-09 12:56:58',2341,84,'2005-07-11 15:41:58',1,'2006-02-15 21:30:53'), +(5238,'2005-07-09 13:11:14',3297,100,'2005-07-10 07:27:14',2,'2006-02-15 21:30:53'), +(5239,'2005-07-09 13:12:35',380,497,'2005-07-10 13:37:35',1,'2006-02-15 21:30:53'), +(5240,'2005-07-09 13:14:48',1378,350,'2005-07-10 18:47:48',2,'2006-02-15 21:30:53'), +(5241,'2005-07-09 13:19:14',4079,314,'2005-07-11 14:32:14',1,'2006-02-15 21:30:53'), +(5242,'2005-07-09 13:20:25',848,12,'2005-07-18 07:38:25',1,'2006-02-15 21:30:53'), +(5243,'2005-07-09 13:22:08',122,587,'2005-07-16 09:25:08',1,'2006-02-15 21:30:53'), +(5244,'2005-07-09 13:24:07',3726,1,'2005-07-14 14:01:07',2,'2006-02-15 21:30:53'), +(5245,'2005-07-09 13:24:14',3547,115,'2005-07-12 11:16:14',1,'2006-02-15 21:30:53'), +(5246,'2005-07-09 13:25:18',3548,276,'2005-07-13 18:38:18',1,'2006-02-15 21:30:53'), +(5247,'2005-07-09 13:26:28',1186,298,'2005-07-12 14:00:28',2,'2006-02-15 21:30:53'), +(5248,'2005-07-09 13:29:44',246,279,'2005-07-12 18:12:44',1,'2006-02-15 21:30:53'), +(5249,'2005-07-09 13:33:53',1950,389,'2005-07-11 12:55:53',2,'2006-02-15 21:30:53'), +(5250,'2005-07-09 13:35:32',2162,384,'2005-07-13 12:19:32',1,'2006-02-15 21:30:53'), +(5251,'2005-07-09 13:36:10',478,474,'2005-07-15 11:40:10',1,'2006-02-15 21:30:53'), +(5252,'2005-07-09 13:40:44',2581,335,'2005-07-14 09:41:44',1,'2006-02-15 21:30:53'), +(5253,'2005-07-09 13:41:17',2241,532,'2005-07-17 17:09:17',1,'2006-02-15 21:30:53'), +(5254,'2005-07-09 13:50:11',654,263,'2005-07-13 09:07:11',1,'2006-02-15 21:30:53'), +(5255,'2005-07-09 13:51:08',4418,313,'2005-07-17 13:58:08',2,'2006-02-15 21:30:53'), +(5256,'2005-07-09 13:55:45',4226,273,'2005-07-15 17:02:45',1,'2006-02-15 21:30:53'), +(5257,'2005-07-09 13:56:43',286,292,'2005-07-10 14:26:43',2,'2006-02-15 21:30:53'), +(5258,'2005-07-09 13:56:56',3125,207,'2005-07-11 16:01:56',2,'2006-02-15 21:30:53'), +(5259,'2005-07-09 14:02:50',1310,207,'2005-07-11 19:13:50',2,'2006-02-15 21:30:53'), +(5260,'2005-07-09 14:05:45',3143,75,'2005-07-14 08:41:45',2,'2006-02-15 21:30:53'), +(5261,'2005-07-09 14:06:56',2899,105,'2005-07-11 14:21:56',2,'2006-02-15 21:30:53'), +(5262,'2005-07-09 14:08:01',1092,240,'2005-07-12 16:48:01',1,'2006-02-15 21:30:53'), +(5263,'2005-07-09 14:10:36',119,406,'2005-07-12 15:07:36',1,'2006-02-15 21:30:53'), +(5264,'2005-07-09 14:11:28',3307,545,'2005-07-12 18:24:28',2,'2006-02-15 21:30:53'), +(5265,'2005-07-09 14:15:01',4482,139,'2005-07-18 14:43:01',2,'2006-02-15 21:30:53'), +(5266,'2005-07-09 14:17:40',2409,222,'2005-07-16 10:42:40',1,'2006-02-15 21:30:53'), +(5267,'2005-07-09 14:21:10',2242,233,'2005-07-15 12:02:10',1,'2006-02-15 21:30:53'), +(5268,'2005-07-09 14:22:43',1083,119,'2005-07-12 08:27:43',1,'2006-02-15 21:30:53'), +(5269,'2005-07-09 14:23:05',3886,230,'2005-07-17 14:03:05',1,'2006-02-15 21:30:53'), +(5270,'2005-07-09 14:23:46',1523,128,'2005-07-13 15:04:46',1,'2006-02-15 21:30:53'), +(5271,'2005-07-09 14:25:01',2691,522,'2005-07-16 17:28:01',1,'2006-02-15 21:30:53'), +(5272,'2005-07-09 14:26:01',1547,90,'2005-07-12 20:20:01',1,'2006-02-15 21:30:53'), +(5273,'2005-07-09 14:31:24',4570,38,'2005-07-14 13:27:24',2,'2006-02-15 21:30:53'), +(5274,'2005-07-09 14:34:09',4579,108,'2005-07-14 13:02:09',1,'2006-02-15 21:30:53'), +(5275,'2005-07-09 14:34:18',729,249,'2005-07-13 12:56:18',2,'2006-02-15 21:30:53'), +(5276,'2005-07-09 14:35:13',2524,521,'2005-07-12 14:24:13',2,'2006-02-15 21:30:53'), +(5277,'2005-07-09 14:40:42',2026,332,'2005-07-16 14:18:42',2,'2006-02-15 21:30:53'), +(5278,'2005-07-09 14:44:23',2573,532,'2005-07-15 10:48:23',1,'2006-02-15 21:30:53'), +(5279,'2005-07-09 14:46:36',709,64,'2005-07-17 10:04:36',2,'2006-02-15 21:30:53'), +(5280,'2005-07-09 14:55:07',1177,351,'2005-07-12 10:05:07',2,'2006-02-15 21:30:53'), +(5281,'2005-07-09 14:55:07',1966,71,'2005-07-13 15:24:07',2,'2006-02-15 21:30:53'), +(5282,'2005-07-09 15:01:23',4386,226,'2005-07-13 11:06:23',2,'2006-02-15 21:30:53'), +(5283,'2005-07-09 15:07:17',644,295,'2005-07-17 09:52:17',2,'2006-02-15 21:30:53'), +(5284,'2005-07-09 15:08:21',1036,585,'2005-07-16 09:53:21',2,'2006-02-15 21:30:53'), +(5285,'2005-07-09 15:10:44',676,468,'2005-07-16 13:02:44',2,'2006-02-15 21:30:53'), +(5286,'2005-07-09 15:11:41',483,498,'2005-07-10 19:19:41',2,'2006-02-15 21:30:53'), +(5287,'2005-07-09 15:11:54',3110,523,'2005-07-16 16:05:54',2,'2006-02-15 21:30:53'), +(5288,'2005-07-09 15:13:07',850,120,'2005-07-16 12:39:07',1,'2006-02-15 21:30:53'), +(5289,'2005-07-09 15:14:08',4336,30,'2005-07-12 12:51:08',2,'2006-02-15 21:30:53'), +(5290,'2005-07-09 15:14:47',277,50,'2005-07-11 20:30:47',2,'2006-02-15 21:30:53'), +(5291,'2005-07-09 15:15:02',1367,194,'2005-07-15 10:22:02',2,'2006-02-15 21:30:53'), +(5292,'2005-07-09 15:16:54',3195,62,'2005-07-11 15:21:54',1,'2006-02-15 21:30:53'), +(5293,'2005-07-09 15:17:23',2880,542,'2005-07-11 11:23:23',2,'2006-02-15 21:30:53'), +(5294,'2005-07-09 15:23:42',3237,22,'2005-07-15 15:28:42',2,'2006-02-15 21:30:53'), +(5295,'2005-07-09 15:25:06',4460,86,'2005-07-10 12:40:06',1,'2006-02-15 21:30:53'), +(5296,'2005-07-09 15:26:27',495,109,'2005-07-15 10:03:27',2,'2006-02-15 21:30:53'), +(5297,'2005-07-09 15:32:29',3434,202,'2005-07-14 14:58:29',1,'2006-02-15 21:30:53'), +(5298,'2005-07-09 15:36:17',3491,149,'2005-07-18 19:07:17',2,'2006-02-15 21:30:53'), +(5299,'2005-07-09 15:38:09',4416,469,'2005-07-15 16:39:09',2,'2006-02-15 21:30:53'), +(5300,'2005-07-09 15:40:46',2520,8,'2005-07-15 13:46:46',1,'2006-02-15 21:30:53'), +(5301,'2005-07-09 15:42:10',245,459,'2005-07-16 21:27:10',2,'2006-02-15 21:30:53'), +(5302,'2005-07-09 15:42:36',4270,72,'2005-07-10 21:04:36',2,'2006-02-15 21:30:53'), +(5303,'2005-07-09 15:44:09',3572,350,'2005-07-15 18:09:09',2,'2006-02-15 21:30:53'), +(5304,'2005-07-09 15:48:06',4411,51,'2005-07-14 19:29:06',1,'2006-02-15 21:30:53'), +(5305,'2005-07-09 15:55:36',625,309,'2005-07-18 15:59:36',1,'2006-02-15 21:30:53'), +(5306,'2005-07-09 15:56:45',2221,409,'2005-07-15 19:02:45',2,'2006-02-15 21:30:53'), +(5307,'2005-07-09 15:57:15',2847,32,'2005-07-17 13:42:15',2,'2006-02-15 21:30:53'), +(5308,'2005-07-09 15:58:38',1684,52,'2005-07-15 13:55:38',2,'2006-02-15 21:30:53'), +(5309,'2005-07-09 16:00:16',4026,338,'2005-07-17 17:56:16',1,'2006-02-15 21:30:53'), +(5310,'2005-07-09 16:00:34',1565,24,'2005-07-12 12:45:34',2,'2006-02-15 21:30:53'), +(5311,'2005-07-09 16:02:54',986,107,'2005-07-18 10:44:54',1,'2006-02-15 21:30:53'), +(5312,'2005-07-09 16:03:09',2123,258,'2005-07-13 16:41:09',2,'2006-02-15 21:30:53'), +(5313,'2005-07-09 16:04:45',1885,52,'2005-07-17 18:53:45',2,'2006-02-15 21:30:53'), +(5314,'2005-07-09 16:05:28',3770,372,'2005-07-10 18:18:28',1,'2006-02-15 21:30:53'), +(5315,'2005-07-09 16:09:19',585,134,'2005-07-14 21:10:19',1,'2006-02-15 21:30:53'), +(5316,'2005-07-09 16:09:42',3856,438,'2005-07-11 15:20:42',1,'2006-02-15 21:30:53'), +(5317,'2005-07-09 16:10:25',2693,14,'2005-07-18 17:10:25',2,'2006-02-15 21:30:53'), +(5318,'2005-07-09 16:11:33',1738,472,'2005-07-14 12:49:33',2,'2006-02-15 21:30:53'), +(5319,'2005-07-09 16:17:44',1899,282,'2005-07-18 16:35:44',1,'2006-02-15 21:30:53'), +(5320,'2005-07-09 16:23:32',3140,228,'2005-07-18 18:16:32',1,'2006-02-15 21:30:53'), +(5321,'2005-07-09 16:26:33',3347,245,'2005-07-15 15:05:33',2,'2006-02-15 21:30:53'), +(5322,'2005-07-09 16:28:13',4420,432,'2005-07-18 14:53:13',1,'2006-02-15 21:30:53'), +(5323,'2005-07-09 16:34:07',1302,35,'2005-07-13 21:37:07',1,'2006-02-15 21:30:53'), +(5324,'2005-07-09 16:34:18',4024,113,'2005-07-15 12:35:18',2,'2006-02-15 21:30:53'), +(5325,'2005-07-09 16:35:47',2703,492,'2005-07-10 11:52:47',1,'2006-02-15 21:30:53'), +(5326,'2005-07-09 16:38:01',797,1,'2005-07-13 18:02:01',1,'2006-02-15 21:30:53'), +(5327,'2005-07-09 16:39:49',3657,547,'2005-07-12 18:47:49',2,'2006-02-15 21:30:53'), +(5328,'2005-07-09 16:48:29',2444,247,'2005-07-17 20:20:29',2,'2006-02-15 21:30:53'), +(5329,'2005-07-09 16:49:46',1628,402,'2005-07-16 19:05:46',1,'2006-02-15 21:30:53'), +(5330,'2005-07-09 16:53:57',3812,410,'2005-07-18 19:54:57',1,'2006-02-15 21:30:53'), +(5331,'2005-07-09 16:54:06',4181,447,'2005-07-10 19:04:06',1,'2006-02-15 21:30:53'), +(5332,'2005-07-09 16:59:23',3269,568,'2005-07-10 16:01:23',2,'2006-02-15 21:30:53'), +(5333,'2005-07-09 16:59:38',2142,419,'2005-07-16 17:23:38',2,'2006-02-15 21:30:53'), +(5334,'2005-07-09 17:00:13',3852,482,'2005-07-11 15:50:13',1,'2006-02-15 21:30:53'), +(5335,'2005-07-09 17:00:49',2353,588,'2005-07-12 12:21:49',2,'2006-02-15 21:30:53'), +(5336,'2005-07-09 17:01:08',4144,410,'2005-07-11 19:22:08',2,'2006-02-15 21:30:53'), +(5337,'2005-07-09 17:03:50',4168,343,'2005-07-16 22:25:50',2,'2006-02-15 21:30:53'), +(5338,'2005-07-09 17:07:07',3449,191,'2005-07-14 11:15:07',1,'2006-02-15 21:30:53'), +(5339,'2005-07-09 17:09:17',698,380,'2005-07-10 21:07:17',2,'2006-02-15 21:30:53'), +(5340,'2005-07-09 17:11:35',650,267,'2005-07-17 17:59:35',2,'2006-02-15 21:30:53'), +(5341,'2005-07-09 17:13:23',2522,8,'2005-07-14 18:11:23',2,'2006-02-15 21:30:53'), +(5342,'2005-07-09 17:20:03',3828,289,'2005-07-18 12:44:03',2,'2006-02-15 21:30:53'), +(5343,'2005-07-09 17:23:43',92,485,'2005-07-18 22:14:43',1,'2006-02-15 21:30:53'), +(5344,'2005-07-09 17:27:05',159,197,'2005-07-10 15:51:05',2,'2006-02-15 21:30:53'), +(5345,'2005-07-09 17:28:18',3055,348,'2005-07-11 14:30:18',2,'2006-02-15 21:30:53'), +(5346,'2005-07-09 17:29:01',2488,287,'2005-07-14 12:47:01',2,'2006-02-15 21:30:53'), +(5347,'2005-07-09 17:31:32',1293,246,'2005-07-10 21:06:32',2,'2006-02-15 21:30:53'), +(5348,'2005-07-09 17:34:11',3495,597,'2005-07-15 18:32:11',2,'2006-02-15 21:30:53'), +(5349,'2005-07-09 17:35:35',3139,161,'2005-07-18 14:05:35',1,'2006-02-15 21:30:53'), +(5350,'2005-07-09 17:39:30',724,129,'2005-07-11 16:43:30',2,'2006-02-15 21:30:53'), +(5351,'2005-07-09 17:40:52',3722,112,'2005-07-14 16:55:52',2,'2006-02-15 21:30:53'), +(5352,'2005-07-09 17:54:58',908,372,'2005-07-15 16:20:58',1,'2006-02-15 21:30:53'), +(5353,'2005-07-09 18:04:29',2994,196,'2005-07-15 17:46:29',2,'2006-02-15 21:30:53'), +(5354,'2005-07-09 18:04:33',951,354,'2005-07-15 18:19:33',1,'2006-02-15 21:30:53'), +(5355,'2005-07-09 18:07:17',2458,100,'2005-07-16 20:33:17',2,'2006-02-15 21:30:53'), +(5356,'2005-07-09 18:08:28',2905,188,'2005-07-14 14:11:28',2,'2006-02-15 21:30:53'), +(5357,'2005-07-09 18:08:59',1988,411,'2005-07-16 17:28:59',2,'2006-02-15 21:30:53'), +(5358,'2005-07-09 18:09:21',3764,71,'2005-07-14 23:59:21',2,'2006-02-15 21:30:53'), +(5359,'2005-07-09 18:10:52',4392,453,'2005-07-18 13:34:52',2,'2006-02-15 21:30:53'), +(5360,'2005-07-09 18:14:03',679,562,'2005-07-10 15:17:03',2,'2006-02-15 21:30:53'), +(5361,'2005-07-09 18:15:32',2045,279,'2005-07-17 23:32:32',2,'2006-02-15 21:30:53'), +(5362,'2005-07-09 18:16:08',24,266,'2005-07-18 18:27:08',1,'2006-02-15 21:30:53'), +(5363,'2005-07-09 18:18:49',2180,425,'2005-07-14 22:16:49',1,'2006-02-15 21:30:53'), +(5364,'2005-07-09 18:24:48',2746,366,'2005-07-10 12:30:48',1,'2006-02-15 21:30:53'), +(5365,'2005-07-09 18:27:00',4469,527,'2005-07-11 14:18:00',1,'2006-02-15 21:30:53'), +(5366,'2005-07-09 18:28:37',886,187,'2005-07-13 20:45:37',1,'2006-02-15 21:30:53'), +(5367,'2005-07-09 18:39:15',1446,485,'2005-07-16 14:19:15',2,'2006-02-15 21:30:53'), +(5368,'2005-07-09 18:41:59',4429,502,'2005-07-16 00:32:59',2,'2006-02-15 21:30:53'), +(5369,'2005-07-09 18:42:16',1550,538,'2005-07-12 18:16:16',2,'2006-02-15 21:30:53'), +(5370,'2005-07-09 18:43:19',2193,248,'2005-07-15 19:59:19',1,'2006-02-15 21:30:53'), +(5371,'2005-07-09 18:47:48',789,425,'2005-07-14 14:39:48',2,'2006-02-15 21:30:53'), +(5372,'2005-07-09 18:48:39',3551,148,'2005-07-11 17:40:39',1,'2006-02-15 21:30:53'), +(5373,'2005-07-09 18:48:57',950,428,'2005-07-10 16:34:57',1,'2006-02-15 21:30:53'), +(5374,'2005-07-09 18:52:08',946,144,'2005-07-16 16:34:08',1,'2006-02-15 21:30:53'), +(5375,'2005-07-09 18:52:55',1407,558,'2005-07-16 15:32:55',2,'2006-02-15 21:30:53'), +(5376,'2005-07-09 18:54:08',1730,104,'2005-07-17 22:01:08',1,'2006-02-15 21:30:53'), +(5377,'2005-07-09 19:04:30',3118,578,'2005-07-11 14:42:30',1,'2006-02-15 21:30:53'), +(5378,'2005-07-09 19:05:56',1570,138,'2005-07-10 18:03:56',2,'2006-02-15 21:30:53'), +(5379,'2005-07-09 19:08:03',2110,475,'2005-07-10 17:58:03',1,'2006-02-15 21:30:53'), +(5380,'2005-07-09 19:08:44',3047,166,'2005-07-11 20:09:44',1,'2006-02-15 21:30:53'), +(5381,'2005-07-09 19:11:11',3033,332,'2005-07-13 17:10:11',2,'2006-02-15 21:30:53'), +(5382,'2005-07-09 19:12:57',78,586,'2005-07-14 15:44:57',1,'2006-02-15 21:30:53'), +(5383,'2005-07-09 19:14:32',573,14,'2005-07-11 19:57:32',1,'2006-02-15 21:30:53'), +(5384,'2005-07-09 19:17:46',1729,180,'2005-07-12 13:50:46',1,'2006-02-15 21:30:53'), +(5385,'2005-07-09 19:18:11',4291,112,'2005-07-16 18:50:11',2,'2006-02-15 21:30:53'), +(5386,'2005-07-09 19:19:09',721,594,'2005-07-13 00:13:09',2,'2006-02-15 21:30:53'), +(5387,'2005-07-09 19:25:14',4452,244,'2005-07-11 21:00:14',1,'2006-02-15 21:30:53'), +(5388,'2005-07-09 19:25:25',1546,332,'2005-07-14 19:51:25',2,'2006-02-15 21:30:53'), +(5389,'2005-07-09 19:25:45',3882,484,'2005-07-17 13:31:45',1,'2006-02-15 21:30:53'), +(5390,'2005-07-09 19:26:22',715,139,'2005-07-14 22:46:22',1,'2006-02-15 21:30:53'), +(5391,'2005-07-09 19:28:34',402,132,'2005-07-18 01:07:34',1,'2006-02-15 21:30:53'), +(5392,'2005-07-09 19:32:30',2552,499,'2005-07-16 15:01:30',1,'2006-02-15 21:30:53'), +(5393,'2005-07-09 19:35:12',1417,446,'2005-07-11 14:00:12',1,'2006-02-15 21:30:53'), +(5394,'2005-07-09 19:36:15',1828,83,'2005-07-18 18:10:15',2,'2006-02-15 21:30:53'), +(5395,'2005-07-09 19:42:37',4428,131,'2005-07-10 15:39:37',1,'2006-02-15 21:30:53'), +(5396,'2005-07-09 19:42:52',3795,559,'2005-07-15 21:45:52',1,'2006-02-15 21:30:53'), +(5397,'2005-07-09 19:43:51',4376,191,'2005-07-17 00:11:51',1,'2006-02-15 21:30:53'), +(5398,'2005-07-09 19:44:58',4352,199,'2005-07-17 00:56:58',1,'2006-02-15 21:30:53'), +(5399,'2005-07-09 19:52:44',261,67,'2005-07-10 18:31:44',2,'2006-02-15 21:30:53'), +(5400,'2005-07-09 19:56:40',3435,192,'2005-07-14 20:43:40',2,'2006-02-15 21:30:53'), +(5401,'2005-07-09 19:59:10',431,43,'2005-07-11 23:21:10',2,'2006-02-15 21:30:53'), +(5402,'2005-07-09 20:01:58',4450,379,'2005-07-10 14:07:58',1,'2006-02-15 21:30:53'), +(5403,'2005-07-09 20:07:09',3991,36,'2005-07-12 18:33:09',1,'2006-02-15 21:30:53'), +(5404,'2005-07-09 20:10:43',3685,236,'2005-07-13 15:16:43',1,'2006-02-15 21:30:53'), +(5405,'2005-07-09 20:11:49',799,45,'2005-07-18 18:37:49',2,'2006-02-15 21:30:53'), +(5406,'2005-07-09 20:13:23',1322,563,'2005-07-11 22:05:23',2,'2006-02-15 21:30:53'), +(5407,'2005-07-09 20:16:07',3641,475,'2005-07-14 21:41:07',2,'2006-02-15 21:30:53'), +(5408,'2005-07-09 20:16:51',3162,144,'2005-07-18 22:19:51',1,'2006-02-15 21:30:53'), +(5409,'2005-07-09 20:17:19',3538,446,'2005-07-13 23:30:19',1,'2006-02-15 21:30:53'), +(5410,'2005-07-09 20:21:10',2261,281,'2005-07-18 21:43:10',2,'2006-02-15 21:30:53'), +(5411,'2005-07-09 20:23:38',4292,304,'2005-07-16 01:17:38',2,'2006-02-15 21:30:53'), +(5412,'2005-07-09 20:23:52',3174,458,'2005-07-18 18:40:52',1,'2006-02-15 21:30:53'), +(5413,'2005-07-09 20:28:42',2056,167,'2005-07-10 19:23:42',2,'2006-02-15 21:30:53'), +(5414,'2005-07-09 20:29:36',1201,174,'2005-07-13 01:55:36',2,'2006-02-15 21:30:53'), +(5415,'2005-07-09 20:30:03',4413,475,'2005-07-18 00:20:03',1,'2006-02-15 21:30:53'), +(5416,'2005-07-09 20:33:50',568,219,'2005-07-14 01:50:50',2,'2006-02-15 21:30:53'), +(5417,'2005-07-09 20:34:09',3569,265,'2005-07-14 00:36:09',2,'2006-02-15 21:30:53'), +(5418,'2005-07-09 20:41:35',55,114,'2005-07-14 00:15:35',1,'2006-02-15 21:30:53'), +(5419,'2005-07-09 20:47:36',1516,226,'2005-07-12 01:36:36',1,'2006-02-15 21:30:53'), +(5420,'2005-07-09 20:48:42',1739,80,'2005-07-15 21:35:42',2,'2006-02-15 21:30:53'), +(5421,'2005-07-09 20:49:12',2437,33,'2005-07-10 16:30:12',1,'2006-02-15 21:30:53'), +(5422,'2005-07-09 20:55:47',436,409,'2005-07-15 15:15:47',2,'2006-02-15 21:30:53'), +(5423,'2005-07-09 20:56:48',1952,440,'2005-07-17 14:58:48',2,'2006-02-15 21:30:53'), +(5424,'2005-07-09 20:59:09',3694,72,'2005-07-12 00:05:09',2,'2006-02-15 21:30:53'), +(5425,'2005-07-09 21:02:26',531,37,'2005-07-16 23:38:26',2,'2006-02-15 21:30:53'), +(5426,'2005-07-09 21:04:47',251,438,'2005-07-17 00:55:47',1,'2006-02-15 21:30:53'), +(5427,'2005-07-09 21:12:26',3197,499,'2005-07-14 01:02:26',1,'2006-02-15 21:30:53'), +(5428,'2005-07-09 21:12:50',3109,346,'2005-07-14 16:25:50',2,'2006-02-15 21:30:53'), +(5429,'2005-07-09 21:14:03',2467,105,'2005-07-18 01:33:03',1,'2006-02-15 21:30:53'), +(5430,'2005-07-09 21:19:54',1441,173,'2005-07-15 22:53:54',1,'2006-02-15 21:30:53'), +(5431,'2005-07-09 21:21:11',2780,213,'2005-07-10 21:16:11',1,'2006-02-15 21:30:53'), +(5432,'2005-07-09 21:21:25',1958,64,'2005-07-14 21:34:25',2,'2006-02-15 21:30:53'), +(5433,'2005-07-09 21:22:00',2679,349,'2005-07-10 21:18:00',2,'2006-02-15 21:30:53'), +(5434,'2005-07-09 21:25:20',3790,334,'2005-07-15 03:12:20',2,'2006-02-15 21:30:53'), +(5435,'2005-07-09 21:28:07',2884,273,'2005-07-18 21:16:07',2,'2006-02-15 21:30:53'), +(5436,'2005-07-09 21:31:11',2364,89,'2005-07-13 16:59:11',2,'2006-02-15 21:30:53'), +(5437,'2005-07-09 21:32:29',3532,26,'2005-07-15 00:27:29',2,'2006-02-15 21:30:53'), +(5438,'2005-07-09 21:34:32',487,241,'2005-07-16 02:21:32',2,'2006-02-15 21:30:53'), +(5439,'2005-07-09 21:39:35',1993,58,'2005-07-13 17:45:35',2,'2006-02-15 21:30:53'), +(5440,'2005-07-09 21:45:17',138,332,'2005-07-11 22:43:17',2,'2006-02-15 21:30:53'), +(5441,'2005-07-09 21:52:05',3913,7,'2005-07-17 02:54:05',1,'2006-02-15 21:30:53'), +(5442,'2005-07-09 21:55:19',3093,29,'2005-07-19 01:18:19',2,'2006-02-15 21:30:53'), +(5443,'2005-07-09 21:56:09',2951,137,'2005-07-16 00:33:09',2,'2006-02-15 21:30:53'), +(5444,'2005-07-09 21:58:57',2968,10,'2005-07-11 03:09:57',2,'2006-02-15 21:30:53'), +(5445,'2005-07-09 21:59:41',565,578,'2005-07-15 00:40:41',1,'2006-02-15 21:30:53'), +(5446,'2005-07-09 21:59:55',2769,454,'2005-07-11 01:45:55',2,'2006-02-15 21:30:53'), +(5447,'2005-07-09 22:09:28',2530,473,'2005-07-18 20:03:28',2,'2006-02-15 21:30:53'), +(5448,'2005-07-09 22:11:14',646,463,'2005-07-15 21:08:14',2,'2006-02-15 21:30:53'), +(5449,'2005-07-09 22:12:01',921,261,'2005-07-18 01:18:01',2,'2006-02-15 21:30:53'), +(5450,'2005-07-09 22:13:25',2356,328,'2005-07-13 23:28:25',1,'2006-02-15 21:30:53'), +(5451,'2005-07-09 22:22:10',3484,39,'2005-07-11 02:43:10',1,'2006-02-15 21:30:53'), +(5452,'2005-07-09 22:23:21',2036,80,'2005-07-17 00:20:21',1,'2006-02-15 21:30:53'), +(5453,'2005-07-09 22:24:11',1780,106,'2005-07-19 04:08:11',1,'2006-02-15 21:30:53'), +(5454,'2005-07-09 22:24:25',3049,97,'2005-07-11 01:52:25',1,'2006-02-15 21:30:53'), +(5455,'2005-07-09 22:28:45',1955,464,'2005-07-18 02:50:45',2,'2006-02-15 21:30:53'), +(5456,'2005-07-09 22:31:45',3003,360,'2005-07-12 03:53:45',1,'2006-02-15 21:30:53'), +(5457,'2005-07-09 22:33:14',4179,433,'2005-07-12 02:30:14',1,'2006-02-15 21:30:53'), +(5458,'2005-07-09 22:35:49',2203,521,'2005-07-16 22:55:49',1,'2006-02-15 21:30:53'), +(5459,'2005-07-09 22:43:56',1847,168,'2005-07-12 18:05:56',1,'2006-02-15 21:30:53'), +(5460,'2005-07-09 22:46:14',2410,38,'2005-07-12 21:26:14',2,'2006-02-15 21:30:53'), +(5461,'2005-07-09 22:48:04',53,244,'2005-07-10 17:56:04',2,'2006-02-15 21:30:53'), +(5462,'2005-07-09 22:56:53',871,583,'2005-07-11 21:50:53',2,'2006-02-15 21:30:53'), +(5463,'2005-07-09 22:57:02',601,374,'2005-07-11 03:10:02',1,'2006-02-15 21:30:53'), +(5464,'2005-07-09 22:58:14',3692,434,'2005-07-15 02:48:14',1,'2006-02-15 21:30:53'), +(5465,'2005-07-09 23:01:13',723,503,'2005-07-13 01:03:13',1,'2006-02-15 21:30:53'), +(5466,'2005-07-09 23:03:21',2302,482,'2005-07-10 20:11:21',2,'2006-02-15 21:30:53'), +(5467,'2005-07-09 23:05:47',374,543,'2005-07-16 17:06:47',2,'2006-02-15 21:30:53'), +(5468,'2005-07-09 23:06:09',2196,81,'2005-07-13 00:48:09',1,'2006-02-15 21:30:53'), +(5469,'2005-07-09 23:08:07',2201,475,'2005-07-13 19:13:07',1,'2006-02-15 21:30:53'), +(5470,'2005-07-09 23:10:49',3254,325,'2005-07-18 04:30:49',1,'2006-02-15 21:30:53'), +(5471,'2005-07-09 23:11:52',4086,347,'2005-07-13 02:08:52',2,'2006-02-15 21:30:53'), +(5472,'2005-07-09 23:16:40',865,165,'2005-07-10 18:43:40',2,'2006-02-15 21:30:53'), +(5473,'2005-07-09 23:19:11',4283,51,'2005-07-19 02:30:11',2,'2006-02-15 21:30:53'), +(5474,'2005-07-09 23:23:57',3608,375,'2005-07-15 03:11:57',1,'2006-02-15 21:30:53'), +(5475,'2005-07-09 23:31:38',726,219,'2005-07-12 03:51:38',1,'2006-02-15 21:30:53'), +(5476,'2005-07-09 23:37:09',1199,427,'2005-07-15 23:57:09',1,'2006-02-15 21:30:53'), +(5477,'2005-07-09 23:43:49',994,542,'2005-07-15 05:03:49',2,'2006-02-15 21:30:53'), +(5478,'2005-07-09 23:45:15',3213,583,'2005-07-15 22:48:15',1,'2006-02-15 21:30:53'), +(5479,'2005-07-09 23:47:33',216,250,'2005-07-13 01:09:33',1,'2006-02-15 21:30:53'), +(5480,'2005-07-09 23:49:07',847,452,'2005-07-12 00:15:07',1,'2006-02-15 21:30:53'), +(5481,'2005-07-09 23:51:57',562,479,'2005-07-11 05:28:57',2,'2006-02-15 21:30:53'), +(5482,'2005-07-09 23:53:04',2136,460,'2005-07-15 04:59:04',1,'2006-02-15 21:30:53'), +(5483,'2005-07-09 23:54:09',4362,89,'2005-07-17 23:36:09',1,'2006-02-15 21:30:53'), +(5484,'2005-07-09 23:54:37',3248,495,'2005-07-15 02:05:37',1,'2006-02-15 21:30:53'), +(5485,'2005-07-09 23:55:25',3930,173,'2005-07-14 04:08:25',1,'2006-02-15 21:30:53'), +(5486,'2005-07-09 23:57:44',2864,538,'2005-07-14 00:23:44',1,'2006-02-15 21:30:53'), +(5487,'2005-07-10 00:01:50',1144,341,'2005-07-10 20:43:50',1,'2006-02-15 21:30:53'), +(5488,'2005-07-10 00:02:06',4262,173,'2005-07-15 01:45:06',2,'2006-02-15 21:30:53'), +(5489,'2005-07-10 00:07:03',2319,490,'2005-07-15 19:52:03',1,'2006-02-15 21:30:53'), +(5490,'2005-07-10 00:09:11',3044,367,'2005-07-14 21:23:11',1,'2006-02-15 21:30:53'), +(5491,'2005-07-10 00:09:45',2007,49,'2005-07-11 02:25:45',1,'2006-02-15 21:30:53'), +(5492,'2005-07-10 00:11:09',4524,558,'2005-07-14 01:27:09',1,'2006-02-15 21:30:53'), +(5493,'2005-07-10 00:11:44',2037,539,'2005-07-15 19:24:44',2,'2006-02-15 21:30:53'), +(5494,'2005-07-10 00:15:00',3087,139,'2005-07-17 01:12:00',2,'2006-02-15 21:30:53'), +(5495,'2005-07-10 00:16:54',2199,257,'2005-07-19 01:22:54',2,'2006-02-15 21:30:53'), +(5496,'2005-07-10 00:20:23',3182,369,'2005-07-18 21:10:23',2,'2006-02-15 21:30:53'), +(5497,'2005-07-10 00:23:23',4473,92,'2005-07-16 03:54:23',1,'2006-02-15 21:30:53'), +(5498,'2005-07-10 00:27:21',63,302,'2005-07-13 20:11:21',2,'2006-02-15 21:30:53'), +(5499,'2005-07-10 00:27:45',1525,127,'2005-07-17 06:11:45',1,'2006-02-15 21:30:53'), +(5500,'2005-07-10 00:28:17',3380,457,'2005-07-15 19:09:17',1,'2006-02-15 21:30:53'), +(5501,'2005-07-10 00:33:48',3979,372,'2005-07-17 02:58:48',1,'2006-02-15 21:30:53'), +(5502,'2005-07-10 00:34:15',3712,243,'2005-07-11 21:44:15',1,'2006-02-15 21:30:53'), +(5503,'2005-07-10 00:35:37',3892,262,'2005-07-12 20:29:37',1,'2006-02-15 21:30:53'), +(5504,'2005-07-10 00:36:38',3053,455,'2005-07-16 19:36:38',1,'2006-02-15 21:30:53'), +(5505,'2005-07-10 00:38:48',896,253,'2005-07-12 03:12:48',2,'2006-02-15 21:30:53'), +(5506,'2005-07-10 00:45:48',2432,117,'2005-07-18 20:35:48',2,'2006-02-15 21:30:53'), +(5507,'2005-07-10 00:49:04',716,399,'2005-07-15 22:06:04',2,'2006-02-15 21:30:53'), +(5508,'2005-07-10 00:50:01',2977,345,'2005-07-16 19:07:01',1,'2006-02-15 21:30:53'), +(5509,'2005-07-10 00:54:46',1142,102,'2005-07-16 05:10:46',1,'2006-02-15 21:30:53'), +(5510,'2005-07-10 00:58:37',1298,67,'2005-07-17 22:02:37',2,'2006-02-15 21:30:53'), +(5511,'2005-07-10 01:00:00',3678,301,'2005-07-12 20:44:00',1,'2006-02-15 21:30:53'), +(5512,'2005-07-10 01:05:38',4470,405,'2005-07-17 20:47:38',1,'2006-02-15 21:30:53'), +(5513,'2005-07-10 01:05:41',2558,356,'2005-07-11 02:05:41',2,'2006-02-15 21:30:53'), +(5514,'2005-07-10 01:09:42',1824,522,'2005-07-17 05:47:42',1,'2006-02-15 21:30:53'), +(5515,'2005-07-10 01:12:44',3772,39,'2005-07-13 00:39:44',1,'2006-02-15 21:30:53'), +(5516,'2005-07-10 01:13:52',1902,581,'2005-07-15 22:56:52',1,'2006-02-15 21:30:53'), +(5517,'2005-07-10 01:15:00',3689,42,'2005-07-19 01:59:00',1,'2006-02-15 21:30:53'), +(5518,'2005-07-10 01:15:11',3340,451,'2005-07-18 19:28:11',2,'2006-02-15 21:30:53'), +(5519,'2005-07-10 01:18:32',1312,85,'2005-07-11 20:39:32',1,'2006-02-15 21:30:53'), +(5520,'2005-07-10 01:30:41',2527,501,'2005-07-15 21:37:41',2,'2006-02-15 21:30:53'), +(5521,'2005-07-10 01:31:22',1956,182,'2005-07-17 05:42:22',2,'2006-02-15 21:30:53'), +(5522,'2005-07-10 01:46:29',2622,573,'2005-07-18 00:41:29',2,'2006-02-15 21:30:53'), +(5523,'2005-07-10 01:47:55',2233,125,'2005-07-18 22:25:55',1,'2006-02-15 21:30:53'), +(5524,'2005-07-10 01:49:24',3596,386,'2005-07-14 22:55:24',1,'2006-02-15 21:30:53'), +(5525,'2005-07-10 02:03:08',3141,241,'2005-07-18 07:32:08',1,'2006-02-15 21:30:53'), +(5526,'2005-07-10 02:04:03',3909,144,'2005-07-16 22:15:03',2,'2006-02-15 21:30:53'), +(5527,'2005-07-10 02:06:01',4462,554,'2005-07-15 00:55:01',2,'2006-02-15 21:30:53'), +(5528,'2005-07-10 02:09:21',680,551,'2005-07-17 06:22:21',2,'2006-02-15 21:30:53'), +(5529,'2005-07-10 02:11:13',1652,590,'2005-07-15 06:56:13',2,'2006-02-15 21:30:53'), +(5530,'2005-07-10 02:13:49',2701,74,'2005-07-18 08:01:49',2,'2006-02-15 21:30:53'), +(5531,'2005-07-10 02:13:59',2992,173,'2005-07-15 00:01:59',2,'2006-02-15 21:30:53'), +(5532,'2005-07-10 02:17:31',983,522,'2005-07-16 02:57:31',2,'2006-02-15 21:30:53'), +(5533,'2005-07-10 02:19:28',2567,270,'2005-07-11 01:37:28',1,'2006-02-15 21:30:53'), +(5534,'2005-07-10 02:26:49',3251,156,'2005-07-11 07:13:49',1,'2006-02-15 21:30:53'), +(5535,'2005-07-10 02:27:42',1623,394,'2005-07-12 21:13:42',1,'2006-02-15 21:30:53'), +(5536,'2005-07-10 02:29:42',1919,195,'2005-07-13 04:06:42',2,'2006-02-15 21:30:53'), +(5537,'2005-07-10 02:35:41',1781,254,'2005-07-13 07:11:41',2,'2006-02-15 21:30:53'), +(5538,'2005-07-10 02:39:40',2119,367,'2005-07-12 01:39:40',2,'2006-02-15 21:30:53'), +(5539,'2005-07-10 02:42:58',3217,90,'2005-07-16 02:27:58',2,'2006-02-15 21:30:53'), +(5540,'2005-07-10 02:44:21',132,250,'2005-07-11 07:13:21',1,'2006-02-15 21:30:53'), +(5541,'2005-07-10 02:44:27',1211,135,'2005-07-13 04:13:27',2,'2006-02-15 21:30:53'), +(5542,'2005-07-10 02:45:53',1713,105,'2005-07-15 23:23:53',2,'2006-02-15 21:30:53'), +(5543,'2005-07-10 02:48:03',1496,71,'2005-07-17 05:49:03',2,'2006-02-15 21:30:53'), +(5544,'2005-07-10 02:48:07',1014,316,'2005-07-17 01:08:07',1,'2006-02-15 21:30:53'), +(5545,'2005-07-10 02:50:29',118,236,'2005-07-16 02:11:29',1,'2006-02-15 21:30:53'), +(5546,'2005-07-10 02:50:37',2918,515,'2005-07-16 08:22:37',1,'2006-02-15 21:30:53'), +(5547,'2005-07-10 02:52:47',1432,519,'2005-07-16 02:10:47',1,'2006-02-15 21:30:53'), +(5548,'2005-07-10 02:56:45',2973,317,'2005-07-13 01:33:45',2,'2006-02-15 21:30:53'), +(5549,'2005-07-10 02:58:29',2685,163,'2005-07-17 05:24:29',2,'2006-02-15 21:30:53'), +(5550,'2005-07-10 02:58:35',1905,254,'2005-07-16 02:38:35',2,'2006-02-15 21:30:53'), +(5551,'2005-07-10 03:01:09',4238,44,'2005-07-18 02:04:09',2,'2006-02-15 21:30:53'), +(5552,'2005-07-10 03:01:19',2879,27,'2005-07-13 06:53:19',2,'2006-02-15 21:30:53'), +(5553,'2005-07-10 03:03:35',1686,6,'2005-07-14 07:49:35',2,'2006-02-15 21:30:53'), +(5554,'2005-07-10 03:03:38',4084,252,'2005-07-17 00:00:38',2,'2006-02-15 21:30:53'), +(5555,'2005-07-10 03:08:55',2551,79,'2005-07-11 01:36:55',2,'2006-02-15 21:30:53'), +(5556,'2005-07-10 03:10:17',4483,354,'2005-07-14 02:47:17',1,'2006-02-15 21:30:53'), +(5557,'2005-07-10 03:10:21',1433,346,'2005-07-11 21:34:21',1,'2006-02-15 21:30:53'), +(5558,'2005-07-10 03:12:08',1123,96,'2005-07-14 03:09:08',2,'2006-02-15 21:30:53'), +(5559,'2005-07-10 03:13:07',4122,496,'2005-07-18 08:33:07',1,'2006-02-15 21:30:53'), +(5560,'2005-07-10 03:13:24',720,231,'2005-07-19 06:03:24',2,'2006-02-15 21:30:53'), +(5561,'2005-07-10 03:15:24',1048,369,'2005-07-15 06:46:24',1,'2006-02-15 21:30:53'), +(5562,'2005-07-10 03:17:42',3604,300,'2005-07-12 03:26:42',1,'2006-02-15 21:30:53'), +(5563,'2005-07-10 03:21:02',2258,362,'2005-07-14 07:40:02',1,'2006-02-15 21:30:53'), +(5564,'2005-07-10 03:23:05',196,355,'2005-07-16 07:46:05',2,'2006-02-15 21:30:53'), +(5565,'2005-07-10 03:29:48',3368,14,'2005-07-17 04:43:48',1,'2006-02-15 21:30:53'), +(5566,'2005-07-10 03:30:17',1343,124,'2005-07-13 06:32:17',1,'2006-02-15 21:30:53'), +(5567,'2005-07-10 03:36:46',1616,147,'2005-07-15 23:22:46',2,'2006-02-15 21:30:53'), +(5568,'2005-07-10 03:36:56',1130,424,'2005-07-11 08:35:56',2,'2006-02-15 21:30:53'), +(5569,'2005-07-10 03:38:32',2835,69,'2005-07-16 00:02:32',2,'2006-02-15 21:30:53'), +(5570,'2005-07-10 03:46:47',2013,374,'2005-07-17 09:28:47',1,'2006-02-15 21:30:53'), +(5571,'2005-07-10 03:48:20',1084,76,'2005-07-11 02:09:20',2,'2006-02-15 21:30:53'), +(5572,'2005-07-10 03:49:00',2709,458,'2005-07-14 01:25:00',1,'2006-02-15 21:30:53'), +(5573,'2005-07-10 03:50:47',2957,170,'2005-07-17 06:40:47',2,'2006-02-15 21:30:53'), +(5574,'2005-07-10 03:54:38',2307,163,'2005-07-19 07:20:38',2,'2006-02-15 21:30:53'), +(5575,'2005-07-10 03:55:50',2316,107,'2005-07-12 08:40:50',1,'2006-02-15 21:30:53'), +(5576,'2005-07-10 03:57:05',1453,217,'2005-07-13 02:16:05',2,'2006-02-15 21:30:53'), +(5577,'2005-07-10 03:58:40',3779,266,'2005-07-14 03:36:40',1,'2006-02-15 21:30:53'), +(5578,'2005-07-10 04:00:31',4543,378,'2005-07-16 08:06:31',2,'2006-02-15 21:30:53'), +(5579,'2005-07-10 04:04:29',945,203,'2005-07-14 04:31:29',1,'2006-02-15 21:30:53'), +(5580,'2005-07-10 04:05:49',2753,521,'2005-07-18 22:36:49',2,'2006-02-15 21:30:53'), +(5581,'2005-07-10 04:06:06',3450,306,'2005-07-15 08:31:06',2,'2006-02-15 21:30:53'), +(5582,'2005-07-10 04:08:25',3341,305,'2005-07-13 06:04:25',1,'2006-02-15 21:30:53'), +(5583,'2005-07-10 04:08:48',1242,391,'2005-07-19 07:59:48',1,'2006-02-15 21:30:53'), +(5584,'2005-07-10 04:15:25',2606,289,'2005-07-16 22:54:25',2,'2006-02-15 21:30:53'), +(5585,'2005-07-10 04:15:43',3524,63,'2005-07-15 08:24:43',1,'2006-02-15 21:30:53'), +(5586,'2005-07-10 04:17:06',2965,427,'2005-07-18 07:11:06',1,'2006-02-15 21:30:53'), +(5587,'2005-07-10 04:17:25',4485,531,'2005-07-15 01:41:25',1,'2006-02-15 21:30:53'), +(5588,'2005-07-10 04:21:10',1166,535,'2005-07-16 02:58:10',2,'2006-02-15 21:30:53'), +(5589,'2005-07-10 04:22:58',3673,296,'2005-07-10 23:13:58',1,'2006-02-15 21:30:53'), +(5590,'2005-07-10 04:23:11',4442,407,'2005-07-19 09:03:11',1,'2006-02-15 21:30:53'), +(5591,'2005-07-10 04:25:03',378,374,'2005-07-16 04:21:03',1,'2006-02-15 21:30:53'), +(5592,'2005-07-10 04:26:13',2471,222,'2005-07-19 02:32:13',2,'2006-02-15 21:30:53'), +(5593,'2005-07-10 04:33:13',702,287,'2005-07-17 08:44:13',2,'2006-02-15 21:30:53'), +(5594,'2005-07-10 04:33:36',61,440,'2005-07-12 08:13:36',2,'2006-02-15 21:30:53'), +(5595,'2005-07-10 04:33:45',264,572,'2005-07-16 04:04:45',1,'2006-02-15 21:30:53'), +(5596,'2005-07-10 04:43:14',1662,240,'2005-07-11 22:58:14',2,'2006-02-15 21:30:53'), +(5597,'2005-07-10 04:47:57',4264,576,'2005-07-17 01:54:57',2,'2006-02-15 21:30:53'), +(5598,'2005-07-10 04:48:29',3412,397,'2005-07-18 10:33:29',2,'2006-02-15 21:30:53'), +(5599,'2005-07-10 04:52:04',3054,391,'2005-07-13 05:19:04',1,'2006-02-15 21:30:53'), +(5600,'2005-07-10 04:55:45',3713,138,'2005-07-18 03:10:45',2,'2006-02-15 21:30:53'), +(5601,'2005-07-10 04:56:55',3062,511,'2005-07-11 00:14:55',1,'2006-02-15 21:30:53'), +(5602,'2005-07-10 05:02:22',3544,253,'2005-07-14 23:40:22',2,'2006-02-15 21:30:53'), +(5603,'2005-07-10 05:04:54',1308,74,'2005-07-12 01:54:54',2,'2006-02-15 21:30:53'), +(5604,'2005-07-10 05:05:00',3702,78,'2005-07-12 08:04:00',1,'2006-02-15 21:30:53'), +(5605,'2005-07-10 05:06:45',2964,273,'2005-07-15 02:51:45',2,'2006-02-15 21:30:53'), +(5606,'2005-07-10 05:07:55',2896,51,'2005-07-15 00:14:55',2,'2006-02-15 21:30:53'), +(5607,'2005-07-10 05:08:10',4257,52,'2005-07-15 00:40:10',2,'2006-02-15 21:30:53'), +(5608,'2005-07-10 05:08:26',3854,384,'2005-07-10 23:24:26',1,'2006-02-15 21:30:53'), +(5609,'2005-07-10 05:09:46',1553,492,'2005-07-12 10:38:46',1,'2006-02-15 21:30:53'), +(5610,'2005-07-10 05:09:52',481,131,'2005-07-13 07:08:52',2,'2006-02-15 21:30:53'), +(5611,'2005-07-10 05:13:43',2832,424,'2005-07-16 05:56:43',1,'2006-02-15 21:30:53'), +(5612,'2005-07-10 05:15:12',2363,472,'2005-07-17 09:50:12',2,'2006-02-15 21:30:53'), +(5613,'2005-07-10 05:15:43',4517,220,'2005-07-13 05:17:43',2,'2006-02-15 21:30:53'), +(5614,'2005-07-10 05:16:56',133,371,'2005-07-13 02:03:56',1,'2006-02-15 21:30:53'), +(5615,'2005-07-10 05:18:51',1521,173,'2005-07-17 11:05:51',2,'2006-02-15 21:30:53'), +(5616,'2005-07-10 05:21:11',4014,238,'2005-07-18 08:42:11',2,'2006-02-15 21:30:53'), +(5617,'2005-07-10 05:28:50',2324,342,'2005-07-12 00:02:50',2,'2006-02-15 21:30:53'), +(5618,'2005-07-10 05:28:58',757,316,'2005-07-18 01:38:58',1,'2006-02-15 21:30:53'), +(5619,'2005-07-10 05:29:33',113,204,'2005-07-15 00:40:33',1,'2006-02-15 21:30:53'), +(5620,'2005-07-10 05:30:52',2980,92,'2005-07-16 04:13:52',1,'2006-02-15 21:30:53'), +(5621,'2005-07-10 05:34:10',552,310,'2005-07-14 02:49:10',1,'2006-02-15 21:30:53'), +(5622,'2005-07-10 05:39:37',1783,568,'2005-07-15 00:48:37',2,'2006-02-15 21:30:53'), +(5623,'2005-07-10 05:41:38',4464,229,'2005-07-14 01:01:38',2,'2006-02-15 21:30:53'), +(5624,'2005-07-10 05:43:16',1015,114,'2005-07-12 05:33:16',1,'2006-02-15 21:30:53'), +(5625,'2005-07-10 05:44:02',1751,114,'2005-07-12 00:03:02',2,'2006-02-15 21:30:53'), +(5626,'2005-07-10 05:49:35',3029,389,'2005-07-15 08:05:35',1,'2006-02-15 21:30:53'), +(5627,'2005-07-10 05:51:12',244,136,'2005-07-17 09:56:12',2,'2006-02-15 21:30:53'), +(5628,'2005-07-10 05:56:40',4040,87,'2005-07-17 11:13:40',1,'2006-02-15 21:30:53'), +(5629,'2005-07-10 06:02:25',400,546,'2005-07-16 07:33:25',1,'2006-02-15 21:30:53'), +(5630,'2005-07-10 06:08:14',1151,537,'2005-07-14 03:37:14',2,'2006-02-15 21:30:53'), +(5631,'2005-07-10 06:15:45',2095,595,'2005-07-17 09:53:45',2,'2006-02-15 21:30:53'), +(5632,'2005-07-10 06:17:06',2632,404,'2005-07-17 02:32:06',2,'2006-02-15 21:30:53'), +(5633,'2005-07-10 06:22:24',1056,480,'2005-07-11 05:59:24',2,'2006-02-15 21:30:53'), +(5634,'2005-07-10 06:25:48',323,487,'2005-07-17 09:07:48',2,'2006-02-15 21:30:53'), +(5635,'2005-07-10 06:28:39',1457,222,'2005-07-17 08:35:39',2,'2006-02-15 21:30:53'), +(5636,'2005-07-10 06:31:24',4116,2,'2005-07-13 02:36:24',1,'2006-02-15 21:30:53'), +(5637,'2005-07-10 06:31:37',4436,45,'2005-07-17 01:16:37',1,'2006-02-15 21:30:53'), +(5638,'2005-07-10 06:32:49',1528,570,'2005-07-13 04:32:49',2,'2006-02-15 21:30:53'), +(5639,'2005-07-10 06:33:39',2452,249,'2005-07-19 07:47:39',1,'2006-02-15 21:30:53'), +(5640,'2005-07-10 06:38:00',2706,574,'2005-07-18 08:56:00',2,'2006-02-15 21:30:53'), +(5641,'2005-07-10 06:43:43',3568,50,'2005-07-15 06:33:43',1,'2006-02-15 21:30:53'), +(5642,'2005-07-10 06:46:08',3630,299,'2005-07-13 10:03:08',1,'2006-02-15 21:30:53'), +(5643,'2005-07-10 06:49:00',796,34,'2005-07-14 01:53:00',1,'2006-02-15 21:30:53'), +(5644,'2005-07-10 06:57:44',4069,476,'2005-07-15 03:52:44',2,'2006-02-15 21:30:53'), +(5645,'2005-07-10 06:58:21',1586,333,'2005-07-18 04:19:21',2,'2006-02-15 21:30:53'), +(5646,'2005-07-10 07:08:09',1471,166,'2005-07-14 03:48:09',2,'2006-02-15 21:30:53'), +(5647,'2005-07-10 07:08:40',1466,128,'2005-07-13 05:19:40',2,'2006-02-15 21:30:53'), +(5648,'2005-07-10 07:09:21',4359,24,'2005-07-16 07:23:21',2,'2006-02-15 21:30:53'), +(5649,'2005-07-10 07:15:07',1349,336,'2005-07-12 11:57:07',2,'2006-02-15 21:30:53'), +(5650,'2005-07-10 07:17:01',2793,461,'2005-07-15 11:59:01',1,'2006-02-15 21:30:53'), +(5651,'2005-07-10 07:17:13',301,239,'2005-07-15 12:13:13',2,'2006-02-15 21:30:53'), +(5652,'2005-07-10 07:18:58',927,42,'2005-07-19 07:52:58',1,'2006-02-15 21:30:53'), +(5653,'2005-07-10 07:21:27',919,28,'2005-07-16 01:58:27',1,'2006-02-15 21:30:53'), +(5654,'2005-07-10 07:24:46',3419,490,'2005-07-14 07:39:46',2,'2006-02-15 21:30:53'), +(5655,'2005-07-10 07:31:06',3470,113,'2005-07-17 08:22:06',1,'2006-02-15 21:30:53'), +(5656,'2005-07-10 07:31:07',4138,159,'2005-07-15 04:44:07',1,'2006-02-15 21:30:53'), +(5657,'2005-07-10 07:33:43',4342,508,'2005-07-18 01:55:43',2,'2006-02-15 21:30:53'), +(5658,'2005-07-10 07:34:08',4402,165,'2005-07-19 04:21:08',2,'2006-02-15 21:30:53'), +(5659,'2005-07-10 07:45:40',4265,9,'2005-07-15 05:20:40',1,'2006-02-15 21:30:53'), +(5660,'2005-07-10 07:46:12',1404,171,'2005-07-17 07:48:12',1,'2006-02-15 21:30:53'), +(5661,'2005-07-10 07:53:51',1878,108,'2005-07-14 12:57:51',2,'2006-02-15 21:30:53'), +(5662,'2005-07-10 07:59:24',219,502,'2005-07-14 13:06:24',1,'2006-02-15 21:30:53'), +(5663,'2005-07-10 08:01:33',3078,530,'2005-07-15 03:36:33',2,'2006-02-15 21:30:53'), +(5664,'2005-07-10 08:04:41',2375,469,'2005-07-17 10:29:41',1,'2006-02-15 21:30:53'), +(5665,'2005-07-10 08:10:08',1175,415,'2005-07-11 05:22:08',2,'2006-02-15 21:30:53'), +(5666,'2005-07-10 08:10:29',2225,242,'2005-07-17 04:54:29',2,'2006-02-15 21:30:53'), +(5667,'2005-07-10 08:11:03',683,336,'2005-07-15 08:23:03',2,'2006-02-15 21:30:53'), +(5668,'2005-07-10 08:11:05',309,211,'2005-07-16 13:15:05',1,'2006-02-15 21:30:53'), +(5669,'2005-07-10 08:12:53',1173,323,'2005-07-11 05:48:53',2,'2006-02-15 21:30:53'), +(5670,'2005-07-10 08:14:52',610,121,'2005-07-14 04:13:52',2,'2006-02-15 21:30:53'), +(5671,'2005-07-10 08:18:22',1304,268,'2005-07-11 07:03:22',2,'2006-02-15 21:30:53'), +(5672,'2005-07-10 08:19:38',2326,158,'2005-07-16 06:28:38',2,'2006-02-15 21:30:53'), +(5673,'2005-07-10 08:21:54',4018,117,'2005-07-11 05:54:54',2,'2006-02-15 21:30:53'), +(5674,'2005-07-10 08:26:26',548,258,'2005-07-16 02:43:26',1,'2006-02-15 21:30:53'), +(5675,'2005-07-10 08:31:06',2134,376,'2005-07-17 11:48:06',1,'2006-02-15 21:30:53'), +(5676,'2005-07-10 08:38:32',3595,153,'2005-07-13 10:11:32',1,'2006-02-15 21:30:53'), +(5677,'2005-07-10 08:41:28',2647,105,'2005-07-12 09:05:28',2,'2006-02-15 21:30:53'), +(5678,'2005-07-10 08:42:42',4366,96,'2005-07-19 03:48:42',1,'2006-02-15 21:30:53'), +(5679,'2005-07-10 08:44:02',389,138,'2005-07-14 05:30:02',1,'2006-02-15 21:30:53'), +(5680,'2005-07-10 08:47:36',3503,199,'2005-07-17 06:10:36',1,'2006-02-15 21:30:53'), +(5681,'2005-07-10 08:48:39',4176,50,'2005-07-18 07:17:39',1,'2006-02-15 21:30:53'), +(5682,'2005-07-10 08:51:39',17,302,'2005-07-12 14:44:39',2,'2006-02-15 21:30:53'), +(5683,'2005-07-10 08:52:13',4433,285,'2005-07-19 10:25:13',1,'2006-02-15 21:30:53'), +(5684,'2005-07-10 08:59:03',99,132,'2005-07-15 07:21:03',1,'2006-02-15 21:30:53'), +(5685,'2005-07-10 09:01:38',1462,170,'2005-07-17 10:58:38',1,'2006-02-15 21:30:53'), +(5686,'2005-07-10 09:06:03',717,521,'2005-07-11 10:59:03',2,'2006-02-15 21:30:53'), +(5687,'2005-07-10 09:07:19',2170,363,'2005-07-16 11:17:19',2,'2006-02-15 21:30:53'), +(5688,'2005-07-10 09:16:08',3036,598,'2005-07-15 09:44:08',1,'2006-02-15 21:30:53'), +(5689,'2005-07-10 09:24:17',1731,381,'2005-07-15 05:36:17',1,'2006-02-15 21:30:53'), +(5690,'2005-07-10 09:26:49',1326,362,'2005-07-19 07:17:49',2,'2006-02-15 21:30:53'), +(5691,'2005-07-10 09:29:49',3526,466,'2005-07-16 13:37:49',1,'2006-02-15 21:30:53'), +(5692,'2005-07-10 09:32:22',59,244,'2005-07-15 15:20:22',2,'2006-02-15 21:30:53'), +(5693,'2005-07-10 09:35:43',2167,208,'2005-07-12 08:05:43',2,'2006-02-15 21:30:53'), +(5694,'2005-07-10 09:40:38',3476,57,'2005-07-14 09:16:38',1,'2006-02-15 21:30:53'), +(5695,'2005-07-10 09:43:40',440,459,'2005-07-13 15:04:40',2,'2006-02-15 21:30:53'), +(5696,'2005-07-10 09:44:32',128,96,'2005-07-12 13:38:32',2,'2006-02-15 21:30:53'), +(5697,'2005-07-10 09:44:44',934,515,'2005-07-12 12:13:44',2,'2006-02-15 21:30:53'), +(5698,'2005-07-10 09:47:00',639,46,'2005-07-16 06:26:00',1,'2006-02-15 21:30:53'), +(5699,'2005-07-10 09:48:04',958,211,'2005-07-17 09:07:04',1,'2006-02-15 21:30:53'), +(5700,'2005-07-10 09:49:42',3961,87,'2005-07-19 04:20:42',1,'2006-02-15 21:30:53'), +(5701,'2005-07-10 09:56:24',2395,91,'2005-07-16 15:11:24',2,'2006-02-15 21:30:53'), +(5702,'2005-07-10 10:00:01',3349,324,'2005-07-11 15:29:01',1,'2006-02-15 21:30:53'), +(5703,'2005-07-10 10:04:15',1585,132,'2005-07-16 07:43:15',1,'2006-02-15 21:30:53'), +(5704,'2005-07-10 10:06:29',2104,591,'2005-07-17 10:48:29',1,'2006-02-15 21:30:53'), +(5705,'2005-07-10 10:09:17',4030,300,'2005-07-19 07:24:17',2,'2006-02-15 21:30:53'), +(5706,'2005-07-10 10:21:46',3701,255,'2005-07-16 04:37:46',2,'2006-02-15 21:30:53'), +(5707,'2005-07-10 10:26:14',708,581,'2005-07-18 06:19:14',1,'2006-02-15 21:30:53'), +(5708,'2005-07-10 10:29:19',571,484,'2005-07-18 06:50:19',1,'2006-02-15 21:30:53'), +(5709,'2005-07-10 10:31:52',732,302,'2005-07-12 10:47:52',1,'2006-02-15 21:30:53'), +(5710,'2005-07-10 10:32:52',2843,265,'2005-07-18 06:28:52',1,'2006-02-15 21:30:53'), +(5711,'2005-07-10 10:37:20',3988,481,'2005-07-13 11:20:20',1,'2006-02-15 21:30:53'), +(5712,'2005-07-10 10:40:32',3480,304,'2005-07-12 11:45:32',1,'2006-02-15 21:30:53'), +(5713,'2005-07-10 10:46:15',1213,572,'2005-07-19 14:34:15',1,'2006-02-15 21:30:53'), +(5714,'2005-07-10 10:46:57',3706,17,'2005-07-18 14:07:57',1,'2006-02-15 21:30:53'), +(5715,'2005-07-10 10:48:03',1638,132,'2005-07-18 11:27:03',1,'2006-02-15 21:30:53'), +(5716,'2005-07-10 10:59:23',3416,102,'2005-07-16 12:25:23',2,'2006-02-15 21:30:53'), +(5717,'2005-07-10 11:02:03',529,15,'2005-07-13 13:00:03',1,'2006-02-15 21:30:53'), +(5718,'2005-07-10 11:03:20',3719,20,'2005-07-19 15:38:20',2,'2006-02-15 21:30:53'), +(5719,'2005-07-10 11:07:40',2100,94,'2005-07-15 14:14:40',2,'2006-02-15 21:30:53'), +(5720,'2005-07-10 11:09:12',576,339,'2005-07-16 07:31:12',1,'2006-02-15 21:30:53'), +(5721,'2005-07-10 11:09:35',2348,5,'2005-07-17 16:41:35',2,'2006-02-15 21:30:53'), +(5722,'2005-07-10 11:10:04',2890,556,'2005-07-12 16:31:04',2,'2006-02-15 21:30:53'), +(5723,'2005-07-10 11:14:48',605,33,'2005-07-11 15:46:48',2,'2006-02-15 21:30:53'), +(5724,'2005-07-10 11:18:12',3597,289,'2005-07-16 14:53:12',2,'2006-02-15 21:30:53'), +(5725,'2005-07-10 11:21:21',4293,426,'2005-07-14 05:34:21',2,'2006-02-15 21:30:53'), +(5726,'2005-07-10 11:22:08',3582,131,'2005-07-13 05:55:08',1,'2006-02-15 21:30:53'), +(5727,'2005-07-10 11:25:28',3338,550,'2005-07-11 11:03:28',2,'2006-02-15 21:30:53'), +(5728,'2005-07-10 11:26:14',636,335,'2005-07-15 12:55:14',1,'2006-02-15 21:30:53'), +(5729,'2005-07-10 11:27:25',4137,188,'2005-07-15 06:13:25',2,'2006-02-15 21:30:53'), +(5730,'2005-07-10 11:28:32',1903,301,'2005-07-11 11:45:32',2,'2006-02-15 21:30:53'), +(5731,'2005-07-10 11:31:52',2960,440,'2005-07-14 11:44:52',1,'2006-02-15 21:30:53'), +(5732,'2005-07-10 11:36:32',2833,597,'2005-07-12 13:09:32',2,'2006-02-15 21:30:53'), +(5733,'2005-07-10 11:37:24',3806,415,'2005-07-11 12:34:24',2,'2006-02-15 21:30:53'), +(5734,'2005-07-10 11:37:28',399,447,'2005-07-16 11:10:28',1,'2006-02-15 21:30:53'), +(5735,'2005-07-10 11:39:15',3259,65,'2005-07-19 09:52:15',1,'2006-02-15 21:30:53'), +(5736,'2005-07-10 11:45:48',1172,27,'2005-07-13 16:40:48',1,'2006-02-15 21:30:53'), +(5737,'2005-07-10 11:50:04',1118,218,'2005-07-13 10:37:04',1,'2006-02-15 21:30:53'), +(5738,'2005-07-10 11:50:51',200,187,'2005-07-19 17:46:51',1,'2006-02-15 21:30:53'), +(5739,'2005-07-10 11:51:50',163,219,'2005-07-19 17:40:50',1,'2006-02-15 21:30:53'), +(5740,'2005-07-10 11:51:58',2147,325,'2005-07-12 07:53:58',2,'2006-02-15 21:30:53'), +(5741,'2005-07-10 11:55:40',2041,513,'2005-07-16 15:02:40',2,'2006-02-15 21:30:53'), +(5742,'2005-07-10 11:56:18',3975,596,'2005-07-19 06:59:18',2,'2006-02-15 21:30:53'), +(5743,'2005-07-10 11:57:38',593,297,'2005-07-19 15:38:38',2,'2006-02-15 21:30:53'), +(5744,'2005-07-10 12:08:33',1372,437,'2005-07-14 12:34:33',2,'2006-02-15 21:30:53'), +(5745,'2005-07-10 12:10:11',41,305,'2005-07-19 06:56:11',1,'2006-02-15 21:30:53'), +(5746,'2005-07-10 12:15:12',3071,82,'2005-07-16 07:02:12',1,'2006-02-15 21:30:53'), +(5747,'2005-07-10 12:15:33',4562,583,'2005-07-18 10:11:33',1,'2006-02-15 21:30:53'), +(5748,'2005-07-10 12:19:59',1618,99,'2005-07-12 12:59:59',1,'2006-02-15 21:30:53'), +(5749,'2005-07-10 12:20:36',1768,304,'2005-07-19 10:39:36',1,'2006-02-15 21:30:53'), +(5750,'2005-07-10 12:20:41',3855,330,'2005-07-17 08:25:41',2,'2006-02-15 21:30:53'), +(5751,'2005-07-10 12:25:11',387,479,'2005-07-11 15:23:11',1,'2006-02-15 21:30:53'), +(5752,'2005-07-10 12:27:38',4444,86,'2005-07-18 09:22:38',2,'2006-02-15 21:30:53'), +(5753,'2005-07-10 12:29:43',3639,444,'2005-07-17 12:50:43',2,'2006-02-15 21:30:53'), +(5754,'2005-07-10 12:32:43',162,291,'2005-07-12 13:11:43',2,'2006-02-15 21:30:53'), +(5755,'2005-07-10 12:38:56',2760,2,'2005-07-19 17:02:56',1,'2006-02-15 21:30:53'), +(5756,'2005-07-10 12:39:28',130,183,'2005-07-11 14:08:28',2,'2006-02-15 21:30:53'), +(5757,'2005-07-10 12:40:17',1827,101,'2005-07-12 14:02:17',1,'2006-02-15 21:30:53'), +(5758,'2005-07-10 12:42:43',502,363,'2005-07-16 10:18:43',2,'2006-02-15 21:30:53'), +(5759,'2005-07-10 12:43:22',816,591,'2005-07-16 16:42:22',1,'2006-02-15 21:30:53'), +(5760,'2005-07-10 12:44:48',1050,154,'2005-07-14 12:25:48',1,'2006-02-15 21:30:53'), +(5761,'2005-07-10 12:45:36',1763,287,'2005-07-13 10:05:36',2,'2006-02-15 21:30:53'), +(5762,'2005-07-10 12:48:01',1815,217,'2005-07-18 16:43:01',1,'2006-02-15 21:30:53'), +(5763,'2005-07-10 12:58:12',753,397,'2005-07-14 08:52:12',1,'2006-02-15 21:30:53'), +(5764,'2005-07-10 12:58:16',1556,245,'2005-07-19 07:28:16',1,'2006-02-15 21:30:53'), +(5765,'2005-07-10 13:03:02',2619,293,'2005-07-16 09:31:02',1,'2006-02-15 21:30:53'), +(5766,'2005-07-10 13:07:31',7,406,'2005-07-16 13:03:31',1,'2006-02-15 21:30:53'), +(5767,'2005-07-10 13:13:18',2871,32,'2005-07-17 14:41:18',2,'2006-02-15 21:30:53'), +(5768,'2005-07-10 13:15:26',345,196,'2005-07-15 09:42:26',1,'2006-02-15 21:30:53'), +(5769,'2005-07-10 13:17:58',4052,141,'2005-07-11 11:32:58',1,'2006-02-15 21:30:53'), +(5770,'2005-07-10 13:21:28',914,71,'2005-07-11 08:59:28',2,'2006-02-15 21:30:53'), +(5771,'2005-07-10 13:26:45',3275,153,'2005-07-14 15:43:45',1,'2006-02-15 21:30:53'), +(5772,'2005-07-10 13:27:40',3635,21,'2005-07-17 08:24:40',1,'2006-02-15 21:30:53'), +(5773,'2005-07-10 13:31:09',3277,180,'2005-07-15 08:21:09',2,'2006-02-15 21:30:53'), +(5774,'2005-07-10 13:31:56',326,113,'2005-07-18 07:32:56',1,'2006-02-15 21:30:53'), +(5775,'2005-07-10 13:34:26',2175,325,'2005-07-15 10:01:26',1,'2006-02-15 21:30:53'), +(5776,'2005-07-10 13:35:22',3592,568,'2005-07-12 17:58:22',1,'2006-02-15 21:30:53'), +(5777,'2005-07-10 13:38:41',3959,40,'2005-07-17 15:48:41',2,'2006-02-15 21:30:53'), +(5778,'2005-07-10 13:41:37',4435,324,'2005-07-14 16:26:37',1,'2006-02-15 21:30:53'), +(5779,'2005-07-10 13:45:54',3266,244,'2005-07-15 18:13:54',1,'2006-02-15 21:30:53'), +(5780,'2005-07-10 13:46:23',168,516,'2005-07-14 17:19:23',2,'2006-02-15 21:30:53'), +(5781,'2005-07-10 13:49:30',3191,167,'2005-07-11 12:11:30',2,'2006-02-15 21:30:53'), +(5782,'2005-07-10 13:52:56',2514,440,'2005-07-15 09:32:56',2,'2006-02-15 21:30:53'), +(5783,'2005-07-10 13:55:33',3331,385,'2005-07-16 12:13:33',1,'2006-02-15 21:30:53'), +(5784,'2005-07-10 14:03:28',2323,422,'2005-07-16 16:22:28',1,'2006-02-15 21:30:53'), +(5785,'2005-07-10 14:06:03',142,211,'2005-07-17 17:59:03',2,'2006-02-15 21:30:53'), +(5786,'2005-07-10 14:06:44',2290,350,'2005-07-14 19:55:44',2,'2006-02-15 21:30:53'), +(5787,'2005-07-10 14:08:49',1075,44,'2005-07-19 18:29:49',1,'2006-02-15 21:30:53'), +(5788,'2005-07-10 14:10:22',1707,63,'2005-07-14 19:46:22',2,'2006-02-15 21:30:53'), +(5789,'2005-07-10 14:11:26',2601,571,'2005-07-18 16:19:26',1,'2006-02-15 21:30:53'), +(5790,'2005-07-10 14:15:21',1696,235,'2005-07-14 08:53:21',2,'2006-02-15 21:30:53'), +(5791,'2005-07-10 14:16:22',2795,319,'2005-07-19 13:38:22',2,'2006-02-15 21:30:53'), +(5792,'2005-07-10 14:22:19',4234,92,'2005-07-19 09:08:19',1,'2006-02-15 21:30:53'), +(5793,'2005-07-10 14:33:00',2927,268,'2005-07-13 19:27:00',1,'2006-02-15 21:30:53'), +(5794,'2005-07-10 14:34:53',1164,198,'2005-07-17 11:50:53',2,'2006-02-15 21:30:53'), +(5795,'2005-07-10 14:36:29',3958,304,'2005-07-14 13:26:29',1,'2006-02-15 21:30:53'), +(5796,'2005-07-10 14:42:54',1631,286,'2005-07-17 08:47:54',2,'2006-02-15 21:30:53'), +(5797,'2005-07-10 14:43:52',1880,384,'2005-07-13 16:12:52',2,'2006-02-15 21:30:53'), +(5798,'2005-07-10 14:45:09',331,107,'2005-07-16 13:43:09',1,'2006-02-15 21:30:53'), +(5799,'2005-07-10 14:53:35',3045,520,'2005-07-14 16:18:35',2,'2006-02-15 21:30:53'), +(5800,'2005-07-10 14:58:36',2466,411,'2005-07-11 19:50:36',2,'2006-02-15 21:30:53'), +(5801,'2005-07-10 14:59:05',3511,439,'2005-07-14 17:55:05',2,'2006-02-15 21:30:53'), +(5802,'2005-07-10 15:02:17',2295,520,'2005-07-19 15:43:17',2,'2006-02-15 21:30:53'), +(5803,'2005-07-10 15:05:42',1982,244,'2005-07-15 10:19:42',1,'2006-02-15 21:30:53'), +(5804,'2005-07-10 15:06:31',2168,137,'2005-07-14 11:00:31',1,'2006-02-15 21:30:53'), +(5805,'2005-07-10 15:08:41',3553,532,'2005-07-19 16:35:41',2,'2006-02-15 21:30:53'), +(5806,'2005-07-10 15:11:54',29,108,'2005-07-15 11:51:54',2,'2006-02-15 21:30:53'), +(5807,'2005-07-10 15:16:30',2092,301,'2005-07-11 14:02:30',2,'2006-02-15 21:30:53'), +(5808,'2005-07-10 15:17:33',2310,170,'2005-07-14 12:14:33',2,'2006-02-15 21:30:53'), +(5809,'2005-07-10 15:19:30',1748,461,'2005-07-13 12:31:30',2,'2006-02-15 21:30:53'), +(5810,'2005-07-10 15:22:04',1426,482,'2005-07-18 21:05:04',2,'2006-02-15 21:30:53'), +(5811,'2005-07-10 15:27:04',4007,441,'2005-07-12 17:20:04',1,'2006-02-15 21:30:53'), +(5812,'2005-07-10 15:27:56',1681,581,'2005-07-18 15:37:56',2,'2006-02-15 21:30:53'), +(5813,'2005-07-10 15:34:37',942,512,'2005-07-17 16:14:37',2,'2006-02-15 21:30:53'), +(5814,'2005-07-10 15:46:50',2537,71,'2005-07-13 15:28:50',2,'2006-02-15 21:30:53'), +(5815,'2005-07-10 15:48:19',2934,22,'2005-07-13 12:09:19',1,'2006-02-15 21:30:53'), +(5816,'2005-07-10 15:48:47',1746,382,'2005-07-13 11:51:47',2,'2006-02-15 21:30:53'), +(5817,'2005-07-10 15:49:12',2993,28,'2005-07-18 19:30:12',2,'2006-02-15 21:30:53'), +(5818,'2005-07-10 15:51:12',3940,334,'2005-07-14 14:10:12',2,'2006-02-15 21:30:53'), +(5819,'2005-07-10 15:56:20',3439,347,'2005-07-12 19:59:20',2,'2006-02-15 21:30:53'), +(5820,'2005-07-10 16:04:59',1511,485,'2005-07-16 12:10:59',1,'2006-02-15 21:30:53'), +(5821,'2005-07-10 16:07:16',147,302,'2005-07-14 19:48:16',1,'2006-02-15 21:30:53'), +(5822,'2005-07-10 16:10:39',1385,38,'2005-07-13 19:05:39',2,'2006-02-15 21:30:53'), +(5823,'2005-07-10 16:19:52',1879,483,'2005-07-11 12:33:52',2,'2006-02-15 21:30:53'), +(5824,'2005-07-10 16:19:53',1980,449,'2005-07-12 11:17:53',2,'2006-02-15 21:30:53'), +(5825,'2005-07-10 16:20:30',3843,444,'2005-07-11 18:58:30',1,'2006-02-15 21:30:53'), +(5826,'2005-07-10 16:21:02',4104,254,'2005-07-17 21:08:02',1,'2006-02-15 21:30:53'), +(5827,'2005-07-10 16:22:20',1296,290,'2005-07-15 21:13:20',2,'2006-02-15 21:30:53'), +(5828,'2005-07-10 16:27:25',2999,156,'2005-07-11 18:42:25',1,'2006-02-15 21:30:53'), +(5829,'2005-07-10 16:29:41',3405,118,'2005-07-14 22:03:41',1,'2006-02-15 21:30:53'), +(5830,'2005-07-10 16:34:00',2358,59,'2005-07-18 16:42:00',1,'2006-02-15 21:30:53'), +(5831,'2005-07-10 16:34:02',830,43,'2005-07-11 14:27:02',2,'2006-02-15 21:30:53'), +(5832,'2005-07-10 16:34:48',2387,63,'2005-07-17 17:25:48',1,'2006-02-15 21:30:53'), +(5833,'2005-07-10 16:39:24',3829,187,'2005-07-17 12:52:24',1,'2006-02-15 21:30:53'), +(5834,'2005-07-10 16:44:12',85,360,'2005-07-14 11:34:12',2,'2006-02-15 21:30:53'), +(5835,'2005-07-10 16:44:58',800,11,'2005-07-17 16:03:58',2,'2006-02-15 21:30:53'), +(5836,'2005-07-10 16:49:02',1842,310,'2005-07-11 22:35:02',2,'2006-02-15 21:30:53'), +(5837,'2005-07-10 16:57:50',1648,478,'2005-07-18 14:07:50',2,'2006-02-15 21:30:53'), +(5838,'2005-07-10 17:04:56',1627,202,'2005-07-11 15:15:56',1,'2006-02-15 21:30:53'), +(5839,'2005-07-10 17:08:30',252,367,'2005-07-13 21:21:30',2,'2006-02-15 21:30:53'), +(5840,'2005-07-10 17:09:09',1073,72,'2005-07-15 22:52:09',1,'2006-02-15 21:30:53'), +(5841,'2005-07-10 17:11:31',1230,525,'2005-07-18 15:50:31',2,'2006-02-15 21:30:53'), +(5842,'2005-07-10 17:11:37',139,247,'2005-07-14 21:43:37',1,'2006-02-15 21:30:53'), +(5843,'2005-07-10 17:14:27',1615,599,'2005-07-15 21:18:27',2,'2006-02-15 21:30:53'), +(5844,'2005-07-10 17:14:43',609,147,'2005-07-12 19:27:43',1,'2006-02-15 21:30:53'), +(5845,'2005-07-10 17:23:14',2882,334,'2005-07-12 16:29:14',2,'2006-02-15 21:30:53'), +(5846,'2005-07-10 17:25:24',938,233,'2005-07-12 13:41:24',2,'2006-02-15 21:30:53'), +(5847,'2005-07-10 17:27:42',4403,220,'2005-07-12 14:51:42',2,'2006-02-15 21:30:53'), +(5848,'2005-07-10 17:28:14',4549,409,'2005-07-14 11:54:14',1,'2006-02-15 21:30:53'), +(5849,'2005-07-10 17:32:33',1632,44,'2005-07-19 22:39:33',1,'2006-02-15 21:30:53'), +(5850,'2005-07-10 17:36:27',4015,531,'2005-07-15 16:44:27',2,'2006-02-15 21:30:53'), +(5851,'2005-07-10 17:40:47',3944,510,'2005-07-11 19:24:47',2,'2006-02-15 21:30:53'), +(5852,'2005-07-10 17:43:30',3890,484,'2005-07-15 15:05:30',2,'2006-02-15 21:30:53'), +(5853,'2005-07-10 17:45:13',3026,520,'2005-07-17 21:37:13',1,'2006-02-15 21:30:53'), +(5854,'2005-07-10 17:47:34',997,547,'2005-07-13 20:14:34',2,'2006-02-15 21:30:53'), +(5855,'2005-07-10 17:54:06',2457,166,'2005-07-18 15:41:06',2,'2006-02-15 21:30:53'), +(5856,'2005-07-10 17:57:32',497,314,'2005-07-11 13:57:32',1,'2006-02-15 21:30:53'), +(5857,'2005-07-10 17:59:29',1265,29,'2005-07-18 18:13:29',1,'2006-02-15 21:30:53'), +(5858,'2005-07-10 18:00:07',2913,257,'2005-07-11 20:01:07',2,'2006-02-15 21:30:53'), +(5859,'2005-07-10 18:02:02',131,220,'2005-07-11 23:24:02',1,'2006-02-15 21:30:53'), +(5860,'2005-07-10 18:08:49',3897,180,'2005-07-16 16:43:49',2,'2006-02-15 21:30:53'), +(5861,'2005-07-10 18:14:22',3881,277,'2005-07-14 15:32:22',1,'2006-02-15 21:30:53'), +(5862,'2005-07-10 18:20:48',2075,157,'2005-07-17 00:09:48',1,'2006-02-15 21:30:53'), +(5863,'2005-07-10 18:25:23',2557,419,'2005-07-15 23:49:23',1,'2006-02-15 21:30:53'), +(5864,'2005-07-10 18:29:57',4380,437,'2005-07-19 14:27:57',2,'2006-02-15 21:30:53'), +(5865,'2005-07-10 18:31:05',1382,126,'2005-07-12 18:29:05',2,'2006-02-15 21:30:53'), +(5866,'2005-07-10 18:35:14',457,484,'2005-07-19 19:41:14',2,'2006-02-15 21:30:53'), +(5867,'2005-07-10 18:39:01',730,321,'2005-07-19 21:56:01',2,'2006-02-15 21:30:53'), +(5868,'2005-07-10 18:39:16',452,429,'2005-07-15 21:19:16',1,'2006-02-15 21:30:53'), +(5869,'2005-07-10 18:40:09',2157,40,'2005-07-17 18:42:09',1,'2006-02-15 21:30:53'), +(5870,'2005-07-10 18:40:25',1524,438,'2005-07-12 15:39:25',2,'2006-02-15 21:30:53'), +(5871,'2005-07-10 18:46:08',3288,307,'2005-07-16 17:32:08',1,'2006-02-15 21:30:53'), +(5872,'2005-07-10 18:54:05',270,364,'2005-07-19 15:41:05',1,'2006-02-15 21:30:53'), +(5873,'2005-07-10 19:02:10',3151,354,'2005-07-14 19:13:10',2,'2006-02-15 21:30:53'), +(5874,'2005-07-10 19:02:51',2255,131,'2005-07-16 13:14:51',1,'2006-02-15 21:30:53'), +(5875,'2005-07-10 19:06:47',964,575,'2005-07-18 17:33:47',2,'2006-02-15 21:30:53'), +(5876,'2005-07-10 19:07:15',4445,578,'2005-07-14 17:29:15',2,'2006-02-15 21:30:53'), +(5877,'2005-07-10 19:08:51',1520,537,'2005-07-19 19:48:51',1,'2006-02-15 21:30:53'), +(5878,'2005-07-10 19:09:57',3805,271,'2005-07-16 17:22:57',1,'2006-02-15 21:30:53'), +(5879,'2005-07-10 19:12:47',3851,430,'2005-07-16 16:32:47',1,'2006-02-15 21:30:53'), +(5880,'2005-07-10 19:14:58',359,482,'2005-07-17 01:13:58',1,'2006-02-15 21:30:53'), +(5881,'2005-07-10 19:19:43',236,25,'2005-07-12 20:11:43',1,'2006-02-15 21:30:53'), +(5882,'2005-07-10 19:20:34',2830,319,'2005-07-11 18:39:34',2,'2006-02-15 21:30:53'), +(5883,'2005-07-10 19:25:21',2820,17,'2005-07-16 20:50:21',2,'2006-02-15 21:30:53'), +(5884,'2005-07-10 19:31:38',916,498,'2005-07-11 20:30:38',1,'2006-02-15 21:30:53'), +(5885,'2005-07-10 19:33:50',3129,331,'2005-07-17 00:26:50',2,'2006-02-15 21:30:53'), +(5886,'2005-07-10 19:36:25',907,215,'2005-07-11 22:24:25',2,'2006-02-15 21:30:53'), +(5887,'2005-07-10 19:45:47',2602,532,'2005-07-15 22:15:47',1,'2006-02-15 21:30:53'), +(5888,'2005-07-10 19:52:17',1620,268,'2005-07-18 20:32:17',2,'2006-02-15 21:30:53'), +(5889,'2005-07-10 19:54:41',1706,491,'2005-07-12 20:08:41',2,'2006-02-15 21:30:53'), +(5890,'2005-07-10 20:00:25',1463,535,'2005-07-18 17:57:25',2,'2006-02-15 21:30:53'), +(5891,'2005-07-10 20:01:17',4355,184,'2005-07-12 00:15:17',1,'2006-02-15 21:30:53'), +(5892,'2005-07-10 20:02:42',4322,333,'2005-07-11 20:02:42',1,'2006-02-15 21:30:53'), +(5893,'2005-07-10 20:05:30',1689,439,'2005-07-14 23:05:30',1,'2006-02-15 21:30:53'), +(5894,'2005-07-10 20:09:34',2264,194,'2005-07-17 15:39:34',1,'2006-02-15 21:30:53'), +(5895,'2005-07-10 20:13:19',2272,164,'2005-07-17 17:51:19',1,'2006-02-15 21:30:53'), +(5896,'2005-07-10 20:15:56',731,357,'2005-07-12 00:39:56',1,'2006-02-15 21:30:53'), +(5897,'2005-07-10 20:16:14',740,413,'2005-07-19 15:49:14',2,'2006-02-15 21:30:53'), +(5898,'2005-07-10 20:18:09',3257,538,'2005-07-16 14:44:09',1,'2006-02-15 21:30:53'), +(5899,'2005-07-10 20:21:52',1391,388,'2005-07-13 00:46:52',1,'2006-02-15 21:30:53'), +(5900,'2005-07-10 20:21:54',1081,419,'2005-07-17 00:26:54',1,'2006-02-15 21:30:53'), +(5901,'2005-07-10 20:22:12',86,165,'2005-07-19 16:43:12',2,'2006-02-15 21:30:53'), +(5902,'2005-07-10 20:31:24',2727,228,'2005-07-11 20:50:24',1,'2006-02-15 21:30:53'), +(5903,'2005-07-10 20:39:04',1388,573,'2005-07-11 17:41:04',1,'2006-02-15 21:30:53'), +(5904,'2005-07-10 20:39:44',350,531,'2005-07-13 17:57:44',2,'2006-02-15 21:30:53'), +(5905,'2005-07-10 20:41:09',3891,10,'2005-07-19 14:49:09',1,'2006-02-15 21:30:53'), +(5906,'2005-07-10 20:41:41',514,323,'2005-07-14 00:12:41',2,'2006-02-15 21:30:53'), +(5907,'2005-07-10 20:41:41',4432,168,'2005-07-15 21:18:41',2,'2006-02-15 21:30:53'), +(5908,'2005-07-10 20:44:14',810,156,'2005-07-13 15:05:14',2,'2006-02-15 21:30:53'), +(5909,'2005-07-10 20:46:13',2333,44,'2005-07-14 18:01:13',2,'2006-02-15 21:30:53'), +(5910,'2005-07-10 20:51:34',1039,464,'2005-07-19 14:54:34',1,'2006-02-15 21:30:53'), +(5911,'2005-07-10 20:51:42',4140,420,'2005-07-14 21:58:42',2,'2006-02-15 21:30:53'), +(5912,'2005-07-10 20:58:22',1187,351,'2005-07-17 01:15:22',2,'2006-02-15 21:30:53'), +(5913,'2005-07-10 20:58:55',2767,277,'2005-07-13 15:18:55',1,'2006-02-15 21:30:53'), +(5914,'2005-07-10 21:01:12',2639,372,'2005-07-16 18:27:12',2,'2006-02-15 21:30:53'), +(5915,'2005-07-10 21:12:16',2464,66,'2005-07-15 16:59:16',2,'2006-02-15 21:30:53'), +(5916,'2005-07-10 21:26:31',2267,35,'2005-07-19 20:23:31',1,'2006-02-15 21:30:53'), +(5917,'2005-07-10 21:30:22',2910,74,'2005-07-12 18:54:22',2,'2006-02-15 21:30:53'), +(5918,'2005-07-10 21:32:06',120,34,'2005-07-19 21:35:06',1,'2006-02-15 21:30:53'), +(5919,'2005-07-10 21:32:14',164,92,'2005-07-12 16:47:14',1,'2006-02-15 21:30:53'), +(5920,'2005-07-10 21:33:58',1893,221,'2005-07-17 19:41:58',2,'2006-02-15 21:30:53'), +(5921,'2005-07-10 21:35:12',3920,7,'2005-07-18 19:59:12',1,'2006-02-15 21:30:53'), +(5922,'2005-07-10 21:36:53',1392,271,'2005-07-16 02:51:53',1,'2006-02-15 21:30:53'), +(5923,'2005-07-10 21:40:06',1817,401,'2005-07-13 00:01:06',1,'2006-02-15 21:30:53'), +(5924,'2005-07-10 21:41:23',629,191,'2005-07-16 21:33:23',1,'2006-02-15 21:30:53'), +(5925,'2005-07-10 21:41:27',3724,503,'2005-07-18 18:35:27',2,'2006-02-15 21:30:53'), +(5926,'2005-07-10 21:53:42',2840,282,'2005-07-20 01:04:42',1,'2006-02-15 21:30:53'), +(5927,'2005-07-10 21:57:14',807,70,'2005-07-16 19:32:14',1,'2006-02-15 21:30:53'), +(5928,'2005-07-10 21:58:30',4132,50,'2005-07-15 19:41:30',1,'2006-02-15 21:30:53'), +(5929,'2005-07-10 21:59:29',4303,54,'2005-07-14 20:20:29',2,'2006-02-15 21:30:53'), +(5930,'2005-07-10 21:59:32',2338,254,'2005-07-11 18:40:32',2,'2006-02-15 21:30:53'), +(5931,'2005-07-10 22:04:19',2259,341,'2005-07-13 00:45:19',2,'2006-02-15 21:30:53'), +(5932,'2005-07-10 22:05:15',2269,523,'2005-07-12 17:04:15',2,'2006-02-15 21:30:53'), +(5933,'2005-07-10 22:06:48',4372,419,'2005-07-12 23:58:48',2,'2006-02-15 21:30:53'), +(5934,'2005-07-10 22:07:59',3825,576,'2005-07-15 21:07:59',2,'2006-02-15 21:30:53'), +(5935,'2005-07-10 22:11:04',3371,258,'2005-07-19 18:12:04',2,'2006-02-15 21:30:53'), +(5936,'2005-07-10 22:14:30',1951,522,'2005-07-15 01:32:30',1,'2006-02-15 21:30:53'), +(5937,'2005-07-10 22:16:08',1579,580,'2005-07-16 03:08:08',2,'2006-02-15 21:30:53'), +(5938,'2005-07-10 22:17:42',2834,236,'2005-07-16 22:38:42',2,'2006-02-15 21:30:53'), +(5939,'2005-07-10 22:30:05',4491,207,'2005-07-14 00:02:05',2,'2006-02-15 21:30:53'), +(5940,'2005-07-10 22:31:01',3295,292,'2005-07-14 00:52:01',1,'2006-02-15 21:30:53'), +(5941,'2005-07-10 22:40:47',492,43,'2005-07-17 00:19:47',2,'2006-02-15 21:30:53'), +(5942,'2005-07-10 22:47:17',2861,317,'2005-07-17 01:54:17',2,'2006-02-15 21:30:53'), +(5943,'2005-07-10 22:48:13',3019,255,'2005-07-16 01:33:13',1,'2006-02-15 21:30:53'), +(5944,'2005-07-10 22:51:44',3904,432,'2005-07-18 17:54:44',2,'2006-02-15 21:30:53'), +(5945,'2005-07-10 22:52:42',427,374,'2005-07-11 21:52:42',1,'2006-02-15 21:30:53'), +(5946,'2005-07-10 22:57:29',1629,308,'2005-07-12 00:08:29',1,'2006-02-15 21:30:53'), +(5947,'2005-07-10 23:07:42',327,331,'2005-07-18 23:13:42',1,'2006-02-15 21:30:53'), +(5948,'2005-07-10 23:12:08',3260,57,'2005-07-18 19:06:08',2,'2006-02-15 21:30:53'), +(5949,'2005-07-10 23:13:00',4397,496,'2005-07-14 01:10:00',2,'2006-02-15 21:30:53'), +(5950,'2005-07-10 23:13:45',4319,585,'2005-07-13 02:35:45',1,'2006-02-15 21:30:53'), +(5951,'2005-07-10 23:14:29',2501,589,'2005-07-13 01:01:29',1,'2006-02-15 21:30:53'), +(5952,'2005-07-10 23:18:20',3406,595,'2005-07-16 17:42:20',1,'2006-02-15 21:30:53'), +(5953,'2005-07-10 23:21:35',992,386,'2005-07-14 20:48:35',2,'2006-02-15 21:30:53'), +(5954,'2005-07-10 23:22:01',2627,32,'2005-07-14 04:42:01',2,'2006-02-15 21:30:53'), +(5955,'2005-07-10 23:22:10',834,409,'2005-07-17 17:55:10',2,'2006-02-15 21:30:53'), +(5956,'2005-07-10 23:23:08',2536,499,'2005-07-13 17:36:08',1,'2006-02-15 21:30:53'), +(5957,'2005-07-10 23:24:02',2517,210,'2005-07-12 20:28:02',1,'2006-02-15 21:30:53'), +(5958,'2005-07-10 23:31:51',3468,430,'2005-07-19 00:36:51',2,'2006-02-15 21:30:53'), +(5959,'2005-07-10 23:35:36',3169,436,'2005-07-13 02:19:36',1,'2006-02-15 21:30:53'), +(5960,'2005-07-10 23:38:34',3884,239,'2005-07-11 19:21:34',1,'2006-02-15 21:30:53'), +(5961,'2005-07-10 23:43:23',3537,21,'2005-07-15 05:21:23',2,'2006-02-15 21:30:53'), +(5962,'2005-07-10 23:45:22',1292,507,'2005-07-13 03:49:22',2,'2006-02-15 21:30:53'), +(5963,'2005-07-10 23:47:08',4434,35,'2005-07-12 04:27:08',1,'2006-02-15 21:30:53'), +(5964,'2005-07-10 23:47:18',3981,456,'2005-07-12 03:55:18',2,'2006-02-15 21:30:53'), +(5965,'2005-07-10 23:51:52',4476,348,'2005-07-11 23:29:52',1,'2006-02-15 21:30:53'), +(5966,'2005-07-10 23:59:27',2076,384,'2005-07-14 23:38:27',2,'2006-02-15 21:30:53'), +(5967,'2005-07-11 00:02:19',2125,215,'2005-07-18 23:08:19',1,'2006-02-15 21:30:53'), +(5968,'2005-07-11 00:03:11',3273,554,'2005-07-19 18:46:11',1,'2006-02-15 21:30:53'), +(5969,'2005-07-11 00:03:22',4177,433,'2005-07-18 01:28:22',2,'2006-02-15 21:30:53'), +(5970,'2005-07-11 00:04:50',1514,94,'2005-07-19 03:36:50',1,'2006-02-15 21:30:53'), +(5971,'2005-07-11 00:05:58',2191,84,'2005-07-19 04:50:58',2,'2006-02-15 21:30:53'), +(5972,'2005-07-11 00:08:54',4577,30,'2005-07-17 21:01:54',1,'2006-02-15 21:30:53'), +(5973,'2005-07-11 00:09:17',1194,165,'2005-07-14 19:18:17',1,'2006-02-15 21:30:53'), +(5974,'2005-07-11 00:10:37',3984,517,'2005-07-18 18:48:37',2,'2006-02-15 21:30:53'), +(5975,'2005-07-11 00:14:19',2997,15,'2005-07-16 04:21:19',1,'2006-02-15 21:30:53'), +(5976,'2005-07-11 00:16:35',1693,505,'2005-07-20 01:30:35',2,'2006-02-15 21:30:53'), +(5977,'2005-07-11 00:16:38',4011,484,'2005-07-19 21:00:38',1,'2006-02-15 21:30:53'), +(5978,'2005-07-11 00:16:54',1720,508,'2005-07-19 18:55:54',1,'2006-02-15 21:30:53'), +(5979,'2005-07-11 00:17:09',1736,251,'2005-07-14 00:38:09',1,'2006-02-15 21:30:53'), +(5980,'2005-07-11 00:18:21',1777,309,'2005-07-14 21:26:21',1,'2006-02-15 21:30:53'), +(5981,'2005-07-11 00:19:04',2151,241,'2005-07-13 19:10:04',1,'2006-02-15 21:30:53'), +(5982,'2005-07-11 00:24:44',2329,403,'2005-07-14 04:42:44',2,'2006-02-15 21:30:53'), +(5983,'2005-07-11 00:34:11',351,127,'2005-07-15 05:37:11',1,'2006-02-15 21:30:53'), +(5984,'2005-07-11 00:44:36',2801,178,'2005-07-15 00:04:36',1,'2006-02-15 21:30:53'), +(5985,'2005-07-11 00:51:58',1108,506,'2005-07-14 22:02:58',2,'2006-02-15 21:30:53'), +(5986,'2005-07-11 00:54:56',1624,171,'2005-07-13 22:52:56',2,'2006-02-15 21:30:53'), +(5987,'2005-07-11 00:55:31',1000,447,'2005-07-16 06:28:31',2,'2006-02-15 21:30:53'), +(5988,'2005-07-11 00:55:38',151,158,'2005-07-13 21:36:38',2,'2006-02-15 21:30:53'), +(5989,'2005-07-11 00:57:53',696,283,'2005-07-15 02:24:53',1,'2006-02-15 21:30:53'), +(5990,'2005-07-11 01:03:14',1561,432,'2005-07-15 19:32:14',1,'2006-02-15 21:30:53'), +(5991,'2005-07-11 01:03:38',3623,590,'2005-07-12 22:32:38',2,'2006-02-15 21:30:53'), +(5992,'2005-07-11 01:06:21',4216,54,'2005-07-13 19:15:21',2,'2006-02-15 21:30:53'), +(5993,'2005-07-11 01:06:41',3588,529,'2005-07-14 19:19:41',1,'2006-02-15 21:30:53'), +(5994,'2005-07-11 01:14:10',4287,295,'2005-07-12 00:42:10',2,'2006-02-15 21:30:53'), +(5995,'2005-07-11 01:15:39',4357,360,'2005-07-20 05:01:39',2,'2006-02-15 21:30:53'), +(5996,'2005-07-11 01:18:33',4263,223,'2005-07-17 04:18:33',1,'2006-02-15 21:30:53'), +(5997,'2005-07-11 01:19:50',3542,128,'2005-07-16 06:29:50',1,'2006-02-15 21:30:53'), +(5998,'2005-07-11 01:20:46',1458,250,'2005-07-15 21:41:46',1,'2006-02-15 21:30:53'), +(5999,'2005-07-11 01:21:22',211,450,'2005-07-19 01:35:22',1,'2006-02-15 21:30:53'), +(6000,'2005-07-11 01:23:06',1986,371,'2005-07-12 04:39:06',2,'2006-02-15 21:30:53'), +(6001,'2005-07-11 01:24:44',1779,45,'2005-07-11 22:55:44',1,'2006-02-15 21:30:53'), +(6002,'2005-07-11 01:27:49',4422,45,'2005-07-12 06:02:49',1,'2006-02-15 21:30:53'), +(6003,'2005-07-11 01:28:33',296,527,'2005-07-17 21:24:33',1,'2006-02-15 21:30:53'), +(6004,'2005-07-11 01:34:25',1756,204,'2005-07-18 00:48:25',2,'2006-02-15 21:30:53'), +(6005,'2005-07-11 01:36:42',809,78,'2005-07-14 04:47:42',2,'2006-02-15 21:30:53'), +(6006,'2005-07-11 01:38:42',4201,399,'2005-07-17 05:18:42',2,'2006-02-15 21:30:53'), +(6007,'2005-07-11 01:43:06',4393,289,'2005-07-17 04:46:06',1,'2006-02-15 21:30:53'), +(6008,'2005-07-11 01:51:29',1227,216,'2005-07-18 01:39:29',1,'2006-02-15 21:30:53'), +(6009,'2005-07-11 01:51:58',494,470,'2005-07-18 07:12:58',2,'2006-02-15 21:30:53'), +(6010,'2005-07-11 01:52:28',771,285,'2005-07-13 03:13:28',1,'2006-02-15 21:30:53'), +(6011,'2005-07-11 01:54:48',3899,527,'2005-07-18 07:17:48',2,'2006-02-15 21:30:53'), +(6012,'2005-07-11 02:00:12',2609,258,'2005-07-17 02:49:12',2,'2006-02-15 21:30:53'), +(6013,'2005-07-11 02:02:03',3774,543,'2005-07-14 02:07:03',1,'2006-02-15 21:30:53'), +(6014,'2005-07-11 02:02:55',3748,397,'2005-07-12 23:49:55',1,'2006-02-15 21:30:53'), +(6015,'2005-07-11 02:04:12',295,596,'2005-07-13 02:43:12',2,'2006-02-15 21:30:53'), +(6016,'2005-07-11 02:04:45',651,296,'2005-07-17 22:22:45',1,'2006-02-15 21:30:53'), +(6017,'2005-07-11 02:05:32',4088,596,'2005-07-14 22:50:32',1,'2006-02-15 21:30:53'), +(6018,'2005-07-11 02:06:36',4555,500,'2005-07-12 02:16:36',2,'2006-02-15 21:30:53'), +(6019,'2005-07-11 02:08:29',3483,9,'2005-07-13 02:19:29',2,'2006-02-15 21:30:53'), +(6020,'2005-07-11 02:08:55',1974,71,'2005-07-16 22:07:55',1,'2006-02-15 21:30:53'), +(6021,'2005-07-11 02:10:18',3949,173,'2005-07-13 05:19:18',1,'2006-02-15 21:30:53'), +(6022,'2005-07-11 02:15:53',2435,469,'2005-07-13 03:40:53',2,'2006-02-15 21:30:53'), +(6023,'2005-07-11 02:15:57',3794,456,'2005-07-15 21:30:57',2,'2006-02-15 21:30:53'), +(6024,'2005-07-11 02:16:47',2923,271,'2005-07-12 05:54:47',1,'2006-02-15 21:30:53'), +(6025,'2005-07-11 02:18:13',3306,113,'2005-07-11 23:30:13',1,'2006-02-15 21:30:53'), +(6026,'2005-07-11 02:21:43',3936,409,'2005-07-13 03:49:43',1,'2006-02-15 21:30:53'), +(6027,'2005-07-11 02:26:29',4536,513,'2005-07-18 23:05:29',1,'2006-02-15 21:30:53'), +(6028,'2005-07-11 02:31:44',784,450,'2005-07-14 03:18:44',1,'2006-02-15 21:30:53'), +(6029,'2005-07-11 02:36:46',2030,520,'2005-07-14 20:51:46',2,'2006-02-15 21:30:53'), +(6030,'2005-07-11 02:37:51',95,36,'2005-07-16 22:34:51',2,'2006-02-15 21:30:53'), +(6031,'2005-07-11 02:42:14',1530,224,'2005-07-14 03:24:14',2,'2006-02-15 21:30:53'), +(6032,'2005-07-11 02:49:01',3792,28,'2005-07-18 05:05:01',2,'2006-02-15 21:30:53'), +(6033,'2005-07-11 02:59:34',2819,322,'2005-07-16 03:48:34',2,'2006-02-15 21:30:53'), +(6034,'2005-07-11 03:00:50',1735,324,'2005-07-16 06:19:50',1,'2006-02-15 21:30:53'), +(6035,'2005-07-11 03:01:45',3474,176,'2005-07-14 01:04:45',2,'2006-02-15 21:30:53'), +(6036,'2005-07-11 03:02:28',2553,297,'2005-07-15 22:12:28',2,'2006-02-15 21:30:53'), +(6037,'2005-07-11 03:06:54',1886,386,'2005-07-12 22:46:54',2,'2006-02-15 21:30:53'), +(6038,'2005-07-11 03:10:37',1555,243,'2005-07-19 05:14:37',2,'2006-02-15 21:30:53'), +(6039,'2005-07-11 03:12:19',1776,137,'2005-07-19 05:46:19',1,'2006-02-15 21:30:53'), +(6040,'2005-07-11 03:14:26',2161,511,'2005-07-14 01:12:26',2,'2006-02-15 21:30:53'), +(6041,'2005-07-11 03:14:58',2815,551,'2005-07-13 00:48:58',2,'2006-02-15 21:30:53'), +(6042,'2005-07-11 03:17:04',2153,5,'2005-07-19 07:08:04',1,'2006-02-15 21:30:53'), +(6043,'2005-07-11 03:18:10',3303,430,'2005-07-12 05:50:10',1,'2006-02-15 21:30:53'), +(6044,'2005-07-11 03:18:39',1270,481,'2005-07-13 06:58:39',2,'2006-02-15 21:30:53'), +(6045,'2005-07-11 03:21:05',2003,39,'2005-07-17 23:10:05',1,'2006-02-15 21:30:53'), +(6046,'2005-07-11 03:21:49',1935,569,'2005-07-19 23:58:49',1,'2006-02-15 21:30:53'), +(6047,'2005-07-11 03:27:01',4147,235,'2005-07-16 06:42:01',2,'2006-02-15 21:30:53'), +(6048,'2005-07-11 03:32:23',975,154,'2005-07-14 07:39:23',1,'2006-02-15 21:30:53'), +(6049,'2005-07-11 03:32:32',2582,236,'2005-07-15 06:57:32',2,'2006-02-15 21:30:53'), +(6050,'2005-07-11 03:34:29',825,527,'2005-07-15 02:55:29',1,'2006-02-15 21:30:53'), +(6051,'2005-07-11 03:46:41',2675,435,'2005-07-11 22:36:41',2,'2006-02-15 21:30:53'), +(6052,'2005-07-11 03:51:27',881,75,'2005-07-16 02:55:27',2,'2006-02-15 21:30:53'), +(6053,'2005-07-11 03:51:59',2836,237,'2005-07-19 09:13:59',2,'2006-02-15 21:30:53'), +(6054,'2005-07-11 03:58:39',1176,354,'2005-07-13 23:08:39',1,'2006-02-15 21:30:53'), +(6055,'2005-07-11 03:59:08',595,125,'2005-07-18 05:35:08',2,'2006-02-15 21:30:53'), +(6056,'2005-07-11 04:01:27',3069,145,'2005-07-12 04:14:27',1,'2006-02-15 21:30:53'), +(6057,'2005-07-11 04:03:40',1340,187,'2005-07-17 01:34:40',2,'2006-02-15 21:30:53'), +(6058,'2005-07-11 04:03:51',3761,498,'2005-07-14 03:52:51',1,'2006-02-15 21:30:53'), +(6059,'2005-07-11 04:03:54',1437,394,'2005-07-18 01:35:54',1,'2006-02-15 21:30:53'), +(6060,'2005-07-11 04:06:17',3146,342,'2005-07-12 03:05:17',1,'2006-02-15 21:30:53'), +(6061,'2005-07-11 04:06:25',1859,392,'2005-07-11 23:11:25',1,'2006-02-15 21:30:53'), +(6062,'2005-07-11 04:11:58',3301,408,'2005-07-15 05:00:58',1,'2006-02-15 21:30:53'), +(6063,'2005-07-11 04:16:51',1715,519,'2005-07-13 08:35:51',2,'2006-02-15 21:30:53'), +(6064,'2005-07-11 04:23:18',265,297,'2005-07-19 02:21:18',1,'2006-02-15 21:30:53'), +(6065,'2005-07-11 04:25:51',1007,562,'2005-07-17 08:19:51',1,'2006-02-15 21:30:53'), +(6066,'2005-07-11 04:32:42',1877,155,'2005-07-15 03:56:42',2,'2006-02-15 21:30:53'), +(6067,'2005-07-11 04:34:49',2097,186,'2005-07-16 09:33:49',1,'2006-02-15 21:30:53'), +(6068,'2005-07-11 04:41:09',2331,265,'2005-07-14 04:45:09',1,'2006-02-15 21:30:53'), +(6069,'2005-07-11 04:44:59',256,553,'2005-07-13 01:00:59',1,'2006-02-15 21:30:53'), +(6070,'2005-07-11 04:47:42',1679,267,'2005-07-13 01:49:42',2,'2006-02-15 21:30:53'), +(6071,'2005-07-11 04:50:03',889,179,'2005-07-19 23:52:03',1,'2006-02-15 21:30:53'), +(6072,'2005-07-11 04:52:40',1790,339,'2005-07-18 01:02:40',1,'2006-02-15 21:30:53'), +(6073,'2005-07-11 04:54:31',4243,466,'2005-07-20 07:23:31',1,'2006-02-15 21:30:53'), +(6074,'2005-07-11 04:59:56',2876,259,'2005-07-13 23:31:56',1,'2006-02-15 21:30:53'), +(6075,'2005-07-11 05:03:03',2160,283,'2005-07-12 01:28:03',1,'2006-02-15 21:30:53'), +(6076,'2005-07-11 05:05:30',1792,143,'2005-07-18 04:22:30',1,'2006-02-15 21:30:53'), +(6077,'2005-07-11 05:06:08',2154,542,'2005-07-16 10:29:08',1,'2006-02-15 21:30:53'), +(6078,'2005-07-11 05:06:52',3985,91,'2005-07-17 06:13:52',2,'2006-02-15 21:30:53'), +(6079,'2005-07-11 05:07:14',1494,119,'2005-07-17 08:45:14',1,'2006-02-15 21:30:53'), +(6080,'2005-07-11 05:08:11',2682,115,'2005-07-16 09:54:11',2,'2006-02-15 21:30:53'), +(6081,'2005-07-11 05:11:09',2286,72,'2005-07-13 05:33:09',2,'2006-02-15 21:30:53'), +(6082,'2005-07-11 05:12:41',1091,82,'2005-07-16 03:40:41',2,'2006-02-15 21:30:53'), +(6083,'2005-07-11 05:12:49',3183,285,'2005-07-15 00:46:49',2,'2006-02-15 21:30:53'), +(6084,'2005-07-11 05:16:20',1334,479,'2005-07-19 01:38:20',2,'2006-02-15 21:30:53'), +(6085,'2005-07-11 05:24:36',312,155,'2005-07-16 03:49:36',2,'2006-02-15 21:30:53'), +(6086,'2005-07-11 05:29:03',1505,420,'2005-07-16 01:17:03',1,'2006-02-15 21:30:53'), +(6087,'2005-07-11 05:29:22',198,155,'2005-07-12 23:33:22',2,'2006-02-15 21:30:53'), +(6088,'2005-07-11 05:40:35',3796,498,'2005-07-17 07:14:35',2,'2006-02-15 21:30:53'), +(6089,'2005-07-11 05:45:59',3298,580,'2005-07-17 11:04:59',2,'2006-02-15 21:30:53'), +(6090,'2005-07-11 05:47:08',71,241,'2005-07-20 07:52:08',2,'2006-02-15 21:30:53'), +(6091,'2005-07-11 05:49:18',580,383,'2005-07-15 07:26:18',1,'2006-02-15 21:30:53'), +(6092,'2005-07-11 05:51:31',2129,75,'2005-07-17 03:42:31',1,'2006-02-15 21:30:53'), +(6093,'2005-07-11 05:52:50',1868,117,'2005-07-20 11:45:50',1,'2006-02-15 21:30:53'), +(6094,'2005-07-11 05:54:42',2684,285,'2005-07-18 08:19:42',2,'2006-02-15 21:30:53'), +(6095,'2005-07-11 06:06:41',727,501,'2005-07-19 06:14:41',1,'2006-02-15 21:30:53'), +(6096,'2005-07-11 06:18:04',2720,420,'2005-07-14 01:15:04',1,'2006-02-15 21:30:53'), +(6097,'2005-07-11 06:21:43',297,416,'2005-07-16 10:04:43',1,'2006-02-15 21:30:53'), +(6098,'2005-07-11 06:23:28',3016,525,'2005-07-17 04:05:28',1,'2006-02-15 21:30:53'), +(6099,'2005-07-11 06:24:44',3865,469,'2005-07-15 08:03:44',2,'2006-02-15 21:30:53'), +(6100,'2005-07-11 06:40:31',3485,16,'2005-07-14 10:59:31',2,'2006-02-15 21:30:53'), +(6101,'2005-07-11 06:50:33',2618,508,'2005-07-18 01:52:33',2,'2006-02-15 21:30:53'), +(6102,'2005-07-11 06:53:09',4305,146,'2005-07-17 07:05:09',1,'2006-02-15 21:30:53'), +(6103,'2005-07-11 06:59:55',262,540,'2005-07-16 09:30:55',1,'2006-02-15 21:30:53'), +(6104,'2005-07-11 07:01:35',3531,389,'2005-07-17 02:29:35',1,'2006-02-15 21:30:53'), +(6105,'2005-07-11 07:03:19',3501,595,'2005-07-19 06:46:19',1,'2006-02-15 21:30:53'), +(6106,'2005-07-11 07:05:06',2714,185,'2005-07-20 09:27:06',1,'2006-02-15 21:30:53'), +(6107,'2005-07-11 07:07:09',3798,304,'2005-07-14 07:32:09',2,'2006-02-15 21:30:53'), +(6108,'2005-07-11 07:19:24',4296,572,'2005-07-13 12:38:24',2,'2006-02-15 21:30:53'), +(6109,'2005-07-11 07:20:57',3603,163,'2005-07-13 07:29:57',2,'2006-02-15 21:30:53'), +(6110,'2005-07-11 07:23:47',541,405,'2005-07-20 03:17:47',2,'2006-02-15 21:30:53'), +(6111,'2005-07-11 07:26:57',3504,300,'2005-07-13 10:43:57',2,'2006-02-15 21:30:53'), +(6112,'2005-07-11 07:28:05',1311,366,'2005-07-18 07:29:05',1,'2006-02-15 21:30:53'), +(6113,'2005-07-11 07:31:08',4437,115,'2005-07-20 11:01:08',2,'2006-02-15 21:30:53'), +(6114,'2005-07-11 07:33:48',479,404,'2005-07-18 06:13:48',2,'2006-02-15 21:30:53'), +(6115,'2005-07-11 07:36:50',3415,27,'2005-07-13 11:30:50',1,'2006-02-15 21:30:53'), +(6116,'2005-07-11 07:37:38',247,381,'2005-07-14 11:53:38',2,'2006-02-15 21:30:53'), +(6117,'2005-07-11 07:39:38',2613,135,'2005-07-18 12:07:38',2,'2006-02-15 21:30:53'), +(6118,'2005-07-11 07:43:08',3013,13,'2005-07-20 03:17:08',1,'2006-02-15 21:30:53'), +(6119,'2005-07-11 07:44:46',4281,472,'2005-07-20 04:41:46',2,'2006-02-15 21:30:53'), +(6120,'2005-07-11 07:49:53',3299,268,'2005-07-19 04:56:53',2,'2006-02-15 21:30:53'), +(6121,'2005-07-11 07:55:27',1613,347,'2005-07-16 03:43:27',2,'2006-02-15 21:30:53'), +(6122,'2005-07-11 07:58:07',2212,32,'2005-07-16 09:52:07',1,'2006-02-15 21:30:53'), +(6123,'2005-07-11 08:02:27',1354,200,'2005-07-15 08:58:27',2,'2006-02-15 21:30:53'), +(6124,'2005-07-11 08:02:32',2022,368,'2005-07-12 05:58:32',2,'2006-02-15 21:30:53'), +(6125,'2005-07-11 08:03:35',2439,307,'2005-07-18 12:46:35',1,'2006-02-15 21:30:53'), +(6126,'2005-07-11 08:06:56',1069,230,'2005-07-16 11:42:56',1,'2006-02-15 21:30:53'), +(6127,'2005-07-11 08:06:59',285,355,'2005-07-12 09:01:59',1,'2006-02-15 21:30:53'), +(6128,'2005-07-11 08:15:08',2050,18,'2005-07-13 03:36:08',1,'2006-02-15 21:30:53'), +(6129,'2005-07-11 08:15:09',3875,222,'2005-07-18 13:00:09',1,'2006-02-15 21:30:53'), +(6130,'2005-07-11 08:19:56',2547,538,'2005-07-16 12:02:56',2,'2006-02-15 21:30:53'), +(6131,'2005-07-11 08:22:05',3313,107,'2005-07-14 07:40:05',1,'2006-02-15 21:30:53'), +(6132,'2005-07-11 08:24:44',3229,319,'2005-07-13 06:41:44',1,'2006-02-15 21:30:53'), +(6133,'2005-07-11 08:25:22',1992,107,'2005-07-13 13:17:22',1,'2006-02-15 21:30:53'), +(6134,'2005-07-11 08:28:19',3225,305,'2005-07-18 09:20:19',2,'2006-02-15 21:30:53'), +(6135,'2005-07-11 08:32:23',833,325,'2005-07-17 08:43:23',1,'2006-02-15 21:30:53'), +(6136,'2005-07-11 08:34:09',205,346,'2005-07-14 06:11:09',1,'2006-02-15 21:30:53'), +(6137,'2005-07-11 08:34:20',2029,67,'2005-07-13 03:31:20',2,'2006-02-15 21:30:53'), +(6138,'2005-07-11 08:36:04',1808,438,'2005-07-13 10:30:04',2,'2006-02-15 21:30:53'), +(6139,'2005-07-11 08:39:33',3065,206,'2005-07-17 08:00:33',2,'2006-02-15 21:30:53'), +(6140,'2005-07-11 08:40:47',2749,363,'2005-07-14 07:26:47',1,'2006-02-15 21:30:53'), +(6141,'2005-07-11 08:52:16',2279,228,'2005-07-17 03:00:16',1,'2006-02-15 21:30:53'), +(6142,'2005-07-11 08:54:09',1722,136,'2005-07-18 05:23:09',2,'2006-02-15 21:30:53'), +(6143,'2005-07-11 09:02:37',1030,169,'2005-07-19 05:57:37',2,'2006-02-15 21:30:53'), +(6144,'2005-07-11 09:02:53',1077,554,'2005-07-15 10:58:53',2,'2006-02-15 21:30:53'), +(6145,'2005-07-11 09:07:01',1359,540,'2005-07-19 08:21:01',1,'2006-02-15 21:30:53'), +(6146,'2005-07-11 09:09:59',3374,11,'2005-07-20 11:42:59',2,'2006-02-15 21:30:53'), +(6147,'2005-07-11 09:13:08',910,35,'2005-07-17 03:48:08',1,'2006-02-15 21:30:53'), +(6148,'2005-07-11 09:14:22',4318,410,'2005-07-12 08:01:22',1,'2006-02-15 21:30:53'), +(6149,'2005-07-11 09:19:31',4337,26,'2005-07-17 14:45:31',2,'2006-02-15 21:30:53'), +(6150,'2005-07-11 09:23:56',1110,418,'2005-07-15 10:56:56',2,'2006-02-15 21:30:53'), +(6151,'2005-07-11 09:25:17',352,476,'2005-07-12 05:11:17',1,'2006-02-15 21:30:53'), +(6152,'2005-07-11 09:25:52',560,361,'2005-07-17 07:40:52',2,'2006-02-15 21:30:53'), +(6153,'2005-07-11 09:31:04',105,47,'2005-07-19 03:41:04',1,'2006-02-15 21:30:53'), +(6154,'2005-07-11 09:32:19',2717,368,'2005-07-16 15:10:19',1,'2006-02-15 21:30:53'), +(6155,'2005-07-11 09:45:31',785,229,'2005-07-18 08:09:31',1,'2006-02-15 21:30:53'), +(6156,'2005-07-11 09:45:48',302,297,'2005-07-15 04:51:48',1,'2006-02-15 21:30:53'), +(6157,'2005-07-11 09:48:16',4481,133,'2005-07-16 05:00:16',2,'2006-02-15 21:30:53'), +(6158,'2005-07-11 09:50:24',3954,92,'2005-07-13 04:49:24',2,'2006-02-15 21:30:53'), +(6159,'2005-07-11 09:55:34',126,225,'2005-07-13 10:01:34',2,'2006-02-15 21:30:53'), +(6160,'2005-07-11 10:08:13',2716,110,'2005-07-14 08:18:13',1,'2006-02-15 21:30:53'), +(6161,'2005-07-11 10:11:54',3681,524,'2005-07-15 12:12:54',2,'2006-02-15 21:30:53'), +(6162,'2005-07-11 10:12:30',786,79,'2005-07-19 06:02:30',2,'2006-02-15 21:30:53'), +(6163,'2005-07-11 10:13:46',1330,1,'2005-07-19 13:15:46',2,'2006-02-15 21:30:53'), +(6164,'2005-07-11 10:16:23',2755,47,'2005-07-14 11:21:23',1,'2006-02-15 21:30:53'), +(6165,'2005-07-11 10:17:29',3540,9,'2005-07-17 07:27:29',1,'2006-02-15 21:30:53'), +(6166,'2005-07-11 10:19:05',967,503,'2005-07-12 14:30:05',1,'2006-02-15 21:30:53'), +(6167,'2005-07-11 10:21:21',3255,200,'2005-07-14 15:38:21',1,'2006-02-15 21:30:53'), +(6168,'2005-07-11 10:21:38',284,77,'2005-07-14 09:55:38',2,'2006-02-15 21:30:53'), +(6169,'2005-07-11 10:25:56',2781,148,'2005-07-19 07:18:56',2,'2006-02-15 21:30:53'), +(6170,'2005-07-11 10:29:21',278,580,'2005-07-16 05:13:21',2,'2006-02-15 21:30:53'), +(6171,'2005-07-11 10:29:35',448,491,'2005-07-16 12:01:35',1,'2006-02-15 21:30:53'), +(6172,'2005-07-11 10:32:09',3514,219,'2005-07-14 16:23:09',1,'2006-02-15 21:30:53'), +(6173,'2005-07-11 10:33:11',4252,419,'2005-07-15 10:57:11',1,'2006-02-15 21:30:53'), +(6174,'2005-07-11 10:36:28',3123,7,'2005-07-18 16:19:28',2,'2006-02-15 21:30:53'), +(6175,'2005-07-11 10:44:37',3037,195,'2005-07-15 08:13:37',1,'2006-02-15 21:30:53'), +(6176,'2005-07-11 10:48:21',2969,279,'2005-07-12 15:54:21',2,'2006-02-15 21:30:53'), +(6177,'2005-07-11 10:53:49',313,589,'2005-07-17 14:54:49',1,'2006-02-15 21:30:53'), +(6178,'2005-07-11 10:59:09',2777,91,'2005-07-16 11:19:09',2,'2006-02-15 21:30:53'), +(6179,'2005-07-11 10:59:59',3665,42,'2005-07-17 06:02:59',1,'2006-02-15 21:30:53'), +(6180,'2005-07-11 11:06:50',4401,351,'2005-07-19 09:03:50',2,'2006-02-15 21:30:53'), +(6181,'2005-07-11 11:10:11',4398,200,'2005-07-15 09:33:11',1,'2006-02-15 21:30:53'), +(6182,'2005-07-11 11:11:38',2562,540,'2005-07-17 08:33:38',2,'2006-02-15 21:30:53'), +(6183,'2005-07-11 11:14:35',856,402,'2005-07-16 15:35:35',1,'2006-02-15 21:30:53'), +(6184,'2005-07-11 11:19:21',1131,146,'2005-07-19 07:35:21',1,'2006-02-15 21:30:53'), +(6185,'2005-07-11 11:25:09',4331,294,'2005-07-18 12:09:09',2,'2006-02-15 21:30:53'), +(6186,'2005-07-11 11:26:41',2086,128,'2005-07-17 12:02:41',2,'2006-02-15 21:30:53'), +(6187,'2005-07-11 11:28:51',3344,500,'2005-07-12 15:44:51',1,'2006-02-15 21:30:53'), +(6188,'2005-07-11 11:31:47',189,114,'2005-07-15 09:28:47',1,'2006-02-15 21:30:53'), +(6189,'2005-07-11 11:36:03',3800,552,'2005-07-20 15:33:03',2,'2006-02-15 21:30:53'), +(6190,'2005-07-11 11:36:18',2564,321,'2005-07-19 17:05:18',2,'2006-02-15 21:30:53'), +(6191,'2005-07-11 11:37:52',3448,480,'2005-07-17 12:45:52',1,'2006-02-15 21:30:53'), +(6192,'2005-07-11 11:44:41',4573,314,'2005-07-19 10:12:41',1,'2006-02-15 21:30:53'), +(6193,'2005-07-11 11:46:57',465,189,'2005-07-19 14:11:57',2,'2006-02-15 21:30:53'), +(6194,'2005-07-11 11:51:00',1049,83,'2005-07-15 12:34:00',2,'2006-02-15 21:30:53'), +(6195,'2005-07-11 12:00:32',4193,319,'2005-07-16 15:00:32',2,'2006-02-15 21:30:53'), +(6196,'2005-07-11 12:05:46',995,429,'2005-07-18 08:27:46',2,'2006-02-15 21:30:53'), +(6197,'2005-07-11 12:09:51',4156,596,'2005-07-12 06:15:51',1,'2006-02-15 21:30:53'), +(6198,'2005-07-11 12:12:17',3345,470,'2005-07-18 07:40:17',2,'2006-02-15 21:30:53'), +(6199,'2005-07-11 12:16:03',4329,80,'2005-07-18 15:33:03',2,'2006-02-15 21:30:53'), +(6200,'2005-07-11 12:16:42',3258,137,'2005-07-17 09:27:42',2,'2006-02-15 21:30:53'), +(6201,'2005-07-11 12:18:07',4530,559,'2005-07-12 12:11:07',2,'2006-02-15 21:30:53'), +(6202,'2005-07-11 12:24:25',1424,373,'2005-07-18 08:13:25',1,'2006-02-15 21:30:53'), +(6203,'2005-07-11 12:28:57',1001,408,'2005-07-15 14:10:57',1,'2006-02-15 21:30:53'), +(6204,'2005-07-11 12:29:22',2572,362,'2005-07-13 10:41:22',2,'2006-02-15 21:30:53'), +(6205,'2005-07-11 12:31:24',3442,303,'2005-07-13 11:31:24',2,'2006-02-15 21:30:53'), +(6206,'2005-07-11 12:32:14',1368,459,'2005-07-15 15:01:14',2,'2006-02-15 21:30:53'), +(6207,'2005-07-11 12:34:24',3226,143,'2005-07-14 10:15:24',2,'2006-02-15 21:30:53'), +(6208,'2005-07-11 12:34:56',672,31,'2005-07-19 15:17:56',1,'2006-02-15 21:30:53'), +(6209,'2005-07-11 12:36:05',3091,219,'2005-07-17 14:48:05',2,'2006-02-15 21:30:53'), +(6210,'2005-07-11 12:36:43',931,209,'2005-07-17 17:45:43',2,'2006-02-15 21:30:53'), +(6211,'2005-07-11 12:39:01',2699,6,'2005-07-20 15:59:01',2,'2006-02-15 21:30:53'), +(6212,'2005-07-11 12:40:48',3962,337,'2005-07-15 17:49:48',2,'2006-02-15 21:30:53'), +(6213,'2005-07-11 12:43:07',485,23,'2005-07-16 07:23:07',2,'2006-02-15 21:30:53'), +(6214,'2005-07-11 12:49:48',1258,49,'2005-07-18 07:41:48',2,'2006-02-15 21:30:53'), +(6215,'2005-07-11 12:52:36',316,390,'2005-07-12 08:33:36',1,'2006-02-15 21:30:53'), +(6216,'2005-07-11 12:57:05',3571,387,'2005-07-13 12:31:05',1,'2006-02-15 21:30:53'), +(6217,'2005-07-11 13:13:45',1090,177,'2005-07-19 16:37:45',2,'2006-02-15 21:30:53'), +(6218,'2005-07-11 13:14:58',815,410,'2005-07-16 08:13:58',2,'2006-02-15 21:30:53'), +(6219,'2005-07-11 13:18:37',38,303,'2005-07-13 13:18:37',2,'2006-02-15 21:30:53'), +(6220,'2005-07-11 13:22:06',1717,421,'2005-07-12 17:46:06',2,'2006-02-15 21:30:53'), +(6221,'2005-07-11 13:24:27',1699,393,'2005-07-15 17:51:27',1,'2006-02-15 21:30:53'), +(6222,'2005-07-11 13:25:49',2066,386,'2005-07-13 14:32:49',1,'2006-02-15 21:30:53'), +(6223,'2005-07-11 13:27:09',3754,192,'2005-07-12 14:02:09',1,'2006-02-15 21:30:53'), +(6224,'2005-07-11 13:42:18',3274,475,'2005-07-16 09:28:18',1,'2006-02-15 21:30:53'), +(6225,'2005-07-11 13:45:14',2483,204,'2005-07-14 10:23:14',1,'2006-02-15 21:30:53'), +(6226,'2005-07-11 13:48:11',2758,134,'2005-07-15 17:18:11',2,'2006-02-15 21:30:53'), +(6227,'2005-07-11 13:56:46',1654,210,'2005-07-18 12:53:46',1,'2006-02-15 21:30:53'), +(6228,'2005-07-11 13:58:36',2281,367,'2005-07-17 19:03:36',2,'2006-02-15 21:30:53'), +(6229,'2005-07-11 13:59:50',3137,399,'2005-07-20 09:26:50',1,'2006-02-15 21:30:53'), +(6230,'2005-07-11 14:02:19',2260,490,'2005-07-17 08:11:19',2,'2006-02-15 21:30:53'), +(6231,'2005-07-11 14:02:36',2526,122,'2005-07-13 19:04:36',2,'2006-02-15 21:30:53'), +(6232,'2005-07-11 14:08:27',2492,590,'2005-07-20 19:34:27',2,'2006-02-15 21:30:53'), +(6233,'2005-07-11 14:10:47',3731,378,'2005-07-15 15:13:47',2,'2006-02-15 21:30:53'), +(6234,'2005-07-11 14:16:10',2911,232,'2005-07-19 19:55:10',1,'2006-02-15 21:30:53'), +(6235,'2005-07-11 14:17:51',2659,379,'2005-07-17 11:14:51',2,'2006-02-15 21:30:53'), +(6236,'2005-07-11 14:18:17',3813,338,'2005-07-14 08:47:17',2,'2006-02-15 21:30:53'), +(6237,'2005-07-11 14:19:12',2215,166,'2005-07-15 15:05:12',1,'2006-02-15 21:30:53'), +(6238,'2005-07-11 14:20:18',3749,23,'2005-07-14 18:34:18',1,'2006-02-15 21:30:53'), +(6239,'2005-07-11 14:20:48',4107,132,'2005-07-17 13:41:48',2,'2006-02-15 21:30:53'), +(6240,'2005-07-11 14:32:41',640,524,'2005-07-20 18:38:41',1,'2006-02-15 21:30:53'), +(6241,'2005-07-11 14:40:48',4449,74,'2005-07-18 09:51:48',1,'2006-02-15 21:30:53'), +(6242,'2005-07-11 14:45:04',670,245,'2005-07-12 18:34:04',2,'2006-02-15 21:30:53'), +(6243,'2005-07-11 14:53:25',3456,26,'2005-07-15 09:26:25',2,'2006-02-15 21:30:53'), +(6244,'2005-07-11 14:53:38',1558,383,'2005-07-12 16:42:38',1,'2006-02-15 21:30:53'), +(6245,'2005-07-11 14:56:57',512,241,'2005-07-16 14:35:57',1,'2006-02-15 21:30:53'), +(6246,'2005-07-11 14:57:51',2376,172,'2005-07-19 19:10:51',2,'2006-02-15 21:30:53'), +(6247,'2005-07-11 15:00:05',2504,589,'2005-07-18 13:47:05',1,'2006-02-15 21:30:53'), +(6248,'2005-07-11 15:01:54',2686,6,'2005-07-19 16:58:54',1,'2006-02-15 21:30:53'), +(6249,'2005-07-11 15:02:02',4334,30,'2005-07-14 11:37:02',2,'2006-02-15 21:30:53'), +(6250,'2005-07-11 15:02:04',4087,458,'2005-07-17 10:54:04',1,'2006-02-15 21:30:53'), +(6251,'2005-07-11 15:06:20',3956,230,'2005-07-18 20:11:20',2,'2006-02-15 21:30:53'), +(6252,'2005-07-11 15:06:29',1294,295,'2005-07-16 14:07:29',1,'2006-02-15 21:30:53'), +(6253,'2005-07-11 15:07:19',1425,570,'2005-07-13 11:00:19',1,'2006-02-15 21:30:53'), +(6254,'2005-07-11 15:10:18',2038,20,'2005-07-17 14:20:18',2,'2006-02-15 21:30:53'), +(6255,'2005-07-11 15:11:33',1459,319,'2005-07-15 19:55:33',2,'2006-02-15 21:30:53'), +(6256,'2005-07-11 15:19:22',480,307,'2005-07-13 12:43:22',1,'2006-02-15 21:30:53'), +(6257,'2005-07-11 15:23:46',3253,492,'2005-07-14 17:26:46',2,'2006-02-15 21:30:53'), +(6258,'2005-07-11 15:24:32',632,417,'2005-07-18 18:29:32',1,'2006-02-15 21:30:53'), +(6259,'2005-07-11 15:25:52',3007,84,'2005-07-13 11:54:52',2,'2006-02-15 21:30:53'), +(6260,'2005-07-11 15:26:29',4308,454,'2005-07-13 17:37:29',2,'2006-02-15 21:30:53'), +(6261,'2005-07-11 15:28:34',694,386,'2005-07-14 17:54:34',1,'2006-02-15 21:30:53'), +(6262,'2005-07-11 15:33:24',4136,355,'2005-07-17 12:40:24',1,'2006-02-15 21:30:53'), +(6263,'2005-07-11 15:33:50',2391,336,'2005-07-17 12:49:50',2,'2006-02-15 21:30:53'), +(6264,'2005-07-11 15:42:35',4246,565,'2005-07-12 11:29:35',2,'2006-02-15 21:30:53'), +(6265,'2005-07-11 15:43:51',3931,477,'2005-07-12 12:51:51',2,'2006-02-15 21:30:53'), +(6266,'2005-07-11 15:45:39',941,397,'2005-07-15 18:29:39',1,'2006-02-15 21:30:53'), +(6267,'2005-07-11 15:53:00',2152,20,'2005-07-17 18:09:00',2,'2006-02-15 21:30:53'), +(6268,'2005-07-11 15:55:34',1154,125,'2005-07-19 17:25:34',1,'2006-02-15 21:30:53'), +(6269,'2005-07-11 15:58:43',3915,167,'2005-07-13 13:25:43',1,'2006-02-15 21:30:53'), +(6270,'2005-07-11 15:59:10',2308,292,'2005-07-18 10:29:10',2,'2006-02-15 21:30:53'), +(6271,'2005-07-11 16:01:35',1246,467,'2005-07-20 12:07:35',2,'2006-02-15 21:30:53'), +(6272,'2005-07-11 16:03:49',3103,240,'2005-07-15 19:54:49',1,'2006-02-15 21:30:53'), +(6273,'2005-07-11 16:08:41',2403,152,'2005-07-14 16:41:41',2,'2006-02-15 21:30:53'), +(6274,'2005-07-11 16:09:42',2998,472,'2005-07-19 20:46:42',1,'2006-02-15 21:30:53'), +(6275,'2005-07-11 16:12:11',3599,333,'2005-07-17 20:19:11',2,'2006-02-15 21:30:53'), +(6276,'2005-07-11 16:15:50',1826,284,'2005-07-19 20:50:50',2,'2006-02-15 21:30:53'), +(6277,'2005-07-11 16:19:01',4023,92,'2005-07-18 21:00:01',2,'2006-02-15 21:30:53'), +(6278,'2005-07-11 16:20:02',2232,558,'2005-07-19 19:29:02',2,'2006-02-15 21:30:53'), +(6279,'2005-07-11 16:26:07',1254,49,'2005-07-17 21:05:07',2,'2006-02-15 21:30:53'), +(6280,'2005-07-11 16:36:17',4055,33,'2005-07-13 14:04:17',2,'2006-02-15 21:30:53'), +(6281,'2005-07-11 16:38:16',835,236,'2005-07-13 10:57:16',2,'2006-02-15 21:30:53'), +(6282,'2005-07-11 16:46:22',4453,60,'2005-07-15 13:19:22',1,'2006-02-15 21:30:53'), +(6283,'2005-07-11 16:47:32',3319,402,'2005-07-17 21:46:32',1,'2006-02-15 21:30:53'), +(6284,'2005-07-11 16:51:39',2938,177,'2005-07-15 19:59:39',1,'2006-02-15 21:30:53'), +(6285,'2005-07-11 16:52:07',2140,444,'2005-07-13 21:33:07',2,'2006-02-15 21:30:53'), +(6286,'2005-07-11 16:55:35',1070,140,'2005-07-13 22:51:35',1,'2006-02-15 21:30:53'), +(6287,'2005-07-11 17:00:04',35,93,'2005-07-12 13:16:04',1,'2006-02-15 21:30:53'), +(6288,'2005-07-11 17:01:52',3235,357,'2005-07-19 15:11:52',1,'2006-02-15 21:30:53'), +(6289,'2005-07-11 17:06:39',3185,99,'2005-07-12 15:54:39',2,'2006-02-15 21:30:53'), +(6290,'2005-07-11 17:12:42',2634,66,'2005-07-19 21:53:42',2,'2006-02-15 21:30:53'), +(6291,'2005-07-11 17:16:40',3126,262,'2005-07-13 18:24:40',2,'2006-02-15 21:30:53'), +(6292,'2005-07-11 17:23:33',4375,505,'2005-07-12 16:27:33',2,'2006-02-15 21:30:53'), +(6293,'2005-07-11 17:24:57',4260,471,'2005-07-13 18:45:57',2,'2006-02-15 21:30:53'), +(6294,'2005-07-11 17:25:55',1732,463,'2005-07-15 17:48:55',1,'2006-02-15 21:30:53'), +(6295,'2005-07-11 17:30:58',1393,7,'2005-07-15 15:50:58',1,'2006-02-15 21:30:53'), +(6296,'2005-07-11 17:34:04',4202,484,'2005-07-17 21:12:04',1,'2006-02-15 21:30:53'), +(6297,'2005-07-11 17:37:22',2738,69,'2005-07-19 13:54:22',2,'2006-02-15 21:30:53'), +(6298,'2005-07-11 17:42:33',3906,256,'2005-07-13 18:14:33',2,'2006-02-15 21:30:53'), +(6299,'2005-07-11 17:45:08',4125,324,'2005-07-13 16:36:08',2,'2006-02-15 21:30:53'), +(6300,'2005-07-11 17:50:09',1269,283,'2005-07-18 13:11:09',1,'2006-02-15 21:30:53'), +(6301,'2005-07-11 17:54:09',3528,275,'2005-07-18 20:42:09',2,'2006-02-15 21:30:53'), +(6302,'2005-07-11 17:55:38',3221,391,'2005-07-17 22:11:38',1,'2006-02-15 21:30:53'), +(6303,'2005-07-11 17:55:43',846,236,'2005-07-13 12:50:43',1,'2006-02-15 21:30:53'), +(6304,'2005-07-11 18:02:16',4183,579,'2005-07-14 14:01:16',1,'2006-02-15 21:30:53'), +(6305,'2005-07-11 18:02:25',1544,337,'2005-07-20 13:29:25',1,'2006-02-15 21:30:53'), +(6306,'2005-07-11 18:04:26',486,208,'2005-07-20 14:22:26',2,'2006-02-15 21:30:53'), +(6307,'2005-07-11 18:04:29',4029,345,'2005-07-17 23:40:29',2,'2006-02-15 21:30:53'), +(6308,'2005-07-11 18:08:41',3155,472,'2005-07-19 15:48:41',2,'2006-02-15 21:30:53'), +(6309,'2005-07-11 18:13:24',1054,232,'2005-07-13 23:11:24',1,'2006-02-15 21:30:53'), +(6310,'2005-07-11 18:14:05',3064,537,'2005-07-16 15:39:05',2,'2006-02-15 21:30:53'), +(6311,'2005-07-11 18:18:52',1789,373,'2005-07-16 17:52:52',2,'2006-02-15 21:30:53'), +(6312,'2005-07-11 18:19:02',2188,417,'2005-07-18 00:00:02',1,'2006-02-15 21:30:53'), +(6313,'2005-07-11 18:29:52',2976,283,'2005-07-14 21:34:52',1,'2006-02-15 21:30:53'), +(6314,'2005-07-11 18:32:44',4128,55,'2005-07-17 23:58:44',1,'2006-02-15 21:30:53'), +(6315,'2005-07-11 18:42:49',608,374,'2005-07-12 23:19:49',2,'2006-02-15 21:30:53'), +(6316,'2005-07-11 18:44:52',1910,526,'2005-07-19 23:35:52',2,'2006-02-15 21:30:53'), +(6317,'2005-07-11 18:47:41',4206,225,'2005-07-14 18:18:41',1,'2006-02-15 21:30:53'), +(6318,'2005-07-11 18:48:22',2048,425,'2005-07-12 13:39:22',1,'2006-02-15 21:30:53'), +(6319,'2005-07-11 18:50:45',3739,233,'2005-07-12 15:26:45',1,'2006-02-15 21:30:53'), +(6320,'2005-07-11 18:50:55',441,511,'2005-07-13 22:46:55',2,'2006-02-15 21:30:53'), +(6321,'2005-07-11 18:51:02',2655,388,'2005-07-14 20:57:02',2,'2006-02-15 21:30:53'), +(6322,'2005-07-11 18:58:20',4115,403,'2005-07-14 16:41:20',2,'2006-02-15 21:30:53'), +(6323,'2005-07-11 19:02:19',1352,346,'2005-07-14 15:54:19',1,'2006-02-15 21:30:53'), +(6324,'2005-07-11 19:02:34',655,386,'2005-07-17 15:57:34',1,'2006-02-15 21:30:53'), +(6325,'2005-07-11 19:06:01',4556,542,'2005-07-18 18:25:01',2,'2006-02-15 21:30:53'), +(6326,'2005-07-11 19:06:55',2137,563,'2005-07-12 20:41:55',1,'2006-02-15 21:30:53'), +(6327,'2005-07-11 19:07:29',909,146,'2005-07-15 16:09:29',1,'2006-02-15 21:30:53'), +(6328,'2005-07-11 19:09:33',999,260,'2005-07-12 20:16:33',2,'2006-02-15 21:30:53'), +(6329,'2005-07-11 19:10:38',2763,352,'2005-07-19 14:46:38',2,'2006-02-15 21:30:53'), +(6330,'2005-07-11 19:15:42',3917,119,'2005-07-17 19:10:42',1,'2006-02-15 21:30:53'), +(6331,'2005-07-11 19:17:21',1356,295,'2005-07-18 18:35:21',2,'2006-02-15 21:30:53'), +(6332,'2005-07-11 19:19:06',1733,538,'2005-07-13 13:51:06',2,'2006-02-15 21:30:53'), +(6333,'2005-07-11 19:20:16',2610,285,'2005-07-17 15:33:16',1,'2006-02-15 21:30:53'), +(6334,'2005-07-11 19:20:44',948,168,'2005-07-19 18:49:44',2,'2006-02-15 21:30:53'), +(6335,'2005-07-11 19:25:15',2757,396,'2005-07-16 17:02:15',1,'2006-02-15 21:30:53'), +(6336,'2005-07-11 19:30:13',1229,471,'2005-07-20 21:27:13',2,'2006-02-15 21:30:53'), +(6337,'2005-07-11 19:30:47',3967,47,'2005-07-19 20:27:47',2,'2006-02-15 21:30:53'), +(6338,'2005-07-11 19:39:41',1691,54,'2005-07-18 01:13:41',2,'2006-02-15 21:30:53'), +(6339,'2005-07-11 19:45:32',2401,145,'2005-07-18 22:34:32',2,'2006-02-15 21:30:53'), +(6340,'2005-07-11 19:46:05',2374,264,'2005-07-20 16:51:05',2,'2006-02-15 21:30:53'), +(6341,'2005-07-11 19:48:02',3580,448,'2005-07-15 01:31:02',1,'2006-02-15 21:30:53'), +(6342,'2005-07-11 19:48:24',1851,403,'2005-07-13 14:09:24',2,'2006-02-15 21:30:53'), +(6343,'2005-07-11 19:51:35',513,147,'2005-07-12 19:13:35',1,'2006-02-15 21:30:53'), +(6344,'2005-07-11 20:04:43',3074,78,'2005-07-18 14:35:43',2,'2006-02-15 21:30:53'), +(6345,'2005-07-11 20:05:18',4332,532,'2005-07-20 17:28:18',1,'2006-02-15 21:30:53'), +(6346,'2005-07-11 20:08:34',4066,445,'2005-07-16 16:35:34',2,'2006-02-15 21:30:53'), +(6347,'2005-07-11 20:18:53',3160,178,'2005-07-16 20:45:53',1,'2006-02-15 21:30:53'), +(6348,'2005-07-11 20:21:18',21,66,'2005-07-19 15:56:18',2,'2006-02-15 21:30:53'), +(6349,'2005-07-11 20:25:05',1581,216,'2005-07-21 00:35:05',2,'2006-02-15 21:30:53'), +(6350,'2005-07-11 20:30:15',2853,225,'2005-07-16 21:30:15',1,'2006-02-15 21:30:53'), +(6351,'2005-07-11 20:31:44',1852,507,'2005-07-18 17:16:44',2,'2006-02-15 21:30:53'), +(6352,'2005-07-11 20:34:13',1143,235,'2005-07-13 19:49:13',1,'2006-02-15 21:30:53'), +(6353,'2005-07-11 20:48:56',699,130,'2005-07-21 00:11:56',1,'2006-02-15 21:30:53'), +(6354,'2005-07-11 20:54:27',3203,176,'2005-07-18 23:46:27',2,'2006-02-15 21:30:53'), +(6355,'2005-07-11 20:56:29',2472,482,'2005-07-20 01:50:29',2,'2006-02-15 21:30:53'), +(6356,'2005-07-11 20:57:48',2645,149,'2005-07-12 22:40:48',2,'2006-02-15 21:30:53'), +(6357,'2005-07-11 20:58:51',658,252,'2005-07-12 15:06:51',1,'2006-02-15 21:30:53'), +(6358,'2005-07-11 21:03:12',4527,567,'2005-07-15 20:06:12',2,'2006-02-15 21:30:53'), +(6359,'2005-07-11 21:06:17',1656,30,'2005-07-16 02:51:17',2,'2006-02-15 21:30:53'), +(6360,'2005-07-11 21:07:40',3075,338,'2005-07-16 15:11:40',1,'2006-02-15 21:30:53'), +(6361,'2005-07-11 21:09:14',2903,561,'2005-07-14 18:26:14',2,'2006-02-15 21:30:53'), +(6362,'2005-07-11 21:09:31',4259,358,'2005-07-13 23:08:31',1,'2006-02-15 21:30:53'), +(6363,'2005-07-11 21:13:19',4167,344,'2005-07-20 15:44:19',1,'2006-02-15 21:30:53'), +(6364,'2005-07-11 21:14:48',4146,160,'2005-07-20 23:20:48',2,'2006-02-15 21:30:53'), +(6365,'2005-07-11 21:17:40',4550,566,'2005-07-14 20:53:40',1,'2006-02-15 21:30:53'), +(6366,'2005-07-11 21:18:16',3989,366,'2005-07-17 00:21:16',1,'2006-02-15 21:30:53'), +(6367,'2005-07-11 21:18:29',1465,357,'2005-07-15 01:05:29',1,'2006-02-15 21:30:53'), +(6368,'2005-07-11 21:19:01',3666,588,'2005-07-13 17:56:01',2,'2006-02-15 21:30:53'), +(6369,'2005-07-11 21:23:36',1086,252,'2005-07-13 22:23:36',2,'2006-02-15 21:30:53'), +(6370,'2005-07-11 21:28:32',1410,99,'2005-07-20 02:51:32',2,'2006-02-15 21:30:53'), +(6371,'2005-07-11 21:31:51',4297,265,'2005-07-16 23:10:51',1,'2006-02-15 21:30:53'), +(6372,'2005-07-11 21:35:06',741,64,'2005-07-15 02:30:06',2,'2006-02-15 21:30:53'), +(6373,'2005-07-11 21:35:20',1042,115,'2005-07-13 23:22:20',2,'2006-02-15 21:30:53'), +(6374,'2005-07-11 21:36:10',266,244,'2005-07-17 15:50:10',2,'2006-02-15 21:30:53'), +(6375,'2005-07-11 21:39:46',1936,8,'2005-07-18 02:12:46',2,'2006-02-15 21:30:53'), +(6376,'2005-07-11 21:40:23',1834,263,'2005-07-13 23:16:23',1,'2006-02-15 21:30:53'), +(6377,'2005-07-11 21:41:16',4017,118,'2005-07-15 20:05:16',1,'2006-02-15 21:30:53'), +(6378,'2005-07-11 21:45:23',3170,145,'2005-07-14 16:56:23',1,'2006-02-15 21:30:53'), +(6379,'2005-07-11 21:51:25',522,287,'2005-07-17 03:38:25',2,'2006-02-15 21:30:53'), +(6380,'2005-07-11 21:55:40',3378,172,'2005-07-17 20:42:40',1,'2006-02-15 21:30:53'), +(6381,'2005-07-11 21:58:48',2584,340,'2005-07-16 16:18:48',1,'2006-02-15 21:30:53'), +(6382,'2005-07-11 21:58:53',3223,336,'2005-07-17 21:18:53',2,'2006-02-15 21:30:53'), +(6383,'2005-07-11 22:06:53',4275,486,'2005-07-17 16:09:53',1,'2006-02-15 21:30:53'), +(6384,'2005-07-11 22:07:26',491,313,'2005-07-16 22:39:26',1,'2006-02-15 21:30:53'), +(6385,'2005-07-11 22:07:32',1830,69,'2005-07-20 16:57:32',1,'2006-02-15 21:30:53'), +(6386,'2005-07-11 22:14:57',633,593,'2005-07-15 16:41:57',2,'2006-02-15 21:30:53'), +(6387,'2005-07-11 22:15:56',1726,384,'2005-07-14 20:20:56',2,'2006-02-15 21:30:53'), +(6388,'2005-07-11 22:17:16',3506,525,'2005-07-19 23:50:16',2,'2006-02-15 21:30:53'), +(6389,'2005-07-11 22:18:20',2268,274,'2005-07-16 16:57:20',2,'2006-02-15 21:30:53'), +(6390,'2005-07-11 22:19:23',3057,77,'2005-07-15 20:10:23',2,'2006-02-15 21:30:53'), +(6391,'2005-07-11 22:23:09',1745,264,'2005-07-15 23:02:09',1,'2006-02-15 21:30:53'), +(6392,'2005-07-11 22:25:19',4406,468,'2005-07-16 04:24:19',1,'2006-02-15 21:30:53'), +(6393,'2005-07-11 22:28:12',3802,164,'2005-07-14 18:03:12',1,'2006-02-15 21:30:53'), +(6394,'2005-07-11 22:29:15',2574,52,'2005-07-20 02:19:15',2,'2006-02-15 21:30:53'), +(6395,'2005-07-11 22:29:29',3058,264,'2005-07-18 00:50:29',1,'2006-02-15 21:30:53'), +(6396,'2005-07-11 22:31:08',2394,507,'2005-07-19 17:19:08',2,'2006-02-15 21:30:53'), +(6397,'2005-07-11 22:34:02',2423,287,'2005-07-13 23:01:02',1,'2006-02-15 21:30:53'), +(6398,'2005-07-11 22:34:49',1409,296,'2005-07-17 17:58:49',2,'2006-02-15 21:30:53'), +(6399,'2005-07-11 22:39:05',2031,288,'2005-07-16 01:12:05',1,'2006-02-15 21:30:53'), +(6400,'2005-07-11 22:43:44',3289,536,'2005-07-19 03:58:44',2,'2006-02-15 21:30:53'), +(6401,'2005-07-11 22:44:34',1427,35,'2005-07-12 22:18:34',2,'2006-02-15 21:30:53'), +(6402,'2005-07-11 22:46:10',2576,66,'2005-07-16 04:02:10',1,'2006-02-15 21:30:53'), +(6403,'2005-07-11 22:46:25',1019,238,'2005-07-13 22:15:25',1,'2006-02-15 21:30:53'), +(6404,'2005-07-11 22:49:50',1183,526,'2005-07-14 18:29:50',2,'2006-02-15 21:30:53'), +(6405,'2005-07-11 22:53:12',3983,357,'2005-07-18 23:02:12',2,'2006-02-15 21:30:53'), +(6406,'2005-07-11 22:55:27',4439,392,'2005-07-20 04:50:27',2,'2006-02-15 21:30:53'), +(6407,'2005-07-11 23:02:19',775,140,'2005-07-21 00:30:19',1,'2006-02-15 21:30:53'), +(6408,'2005-07-11 23:03:02',2008,350,'2005-07-19 23:09:02',2,'2006-02-15 21:30:53'), +(6409,'2005-07-11 23:05:49',3859,537,'2005-07-13 00:13:49',2,'2006-02-15 21:30:53'), +(6410,'2005-07-11 23:08:06',1127,560,'2005-07-19 19:57:06',2,'2006-02-15 21:30:53'), +(6411,'2005-07-11 23:10:50',4347,124,'2005-07-19 17:15:50',1,'2006-02-15 21:30:53'), +(6412,'2005-07-11 23:19:21',3797,220,'2005-07-16 19:48:21',1,'2006-02-15 21:30:53'), +(6413,'2005-07-11 23:26:11',4446,251,'2005-07-17 21:58:11',2,'2006-02-15 21:30:53'), +(6414,'2005-07-11 23:26:13',814,502,'2005-07-18 17:29:13',1,'2006-02-15 21:30:53'), +(6415,'2005-07-11 23:27:52',4175,84,'2005-07-19 22:29:52',2,'2006-02-15 21:30:53'), +(6416,'2005-07-11 23:29:14',1063,158,'2005-07-13 20:20:14',1,'2006-02-15 21:30:53'), +(6417,'2005-07-11 23:35:11',3042,80,'2005-07-18 20:00:11',2,'2006-02-15 21:30:53'), +(6418,'2005-07-11 23:36:27',3101,185,'2005-07-16 18:42:27',1,'2006-02-15 21:30:53'), +(6419,'2005-07-11 23:36:38',3683,311,'2005-07-13 03:23:38',1,'2006-02-15 21:30:53'), +(6420,'2005-07-11 23:38:49',4443,206,'2005-07-17 17:46:49',2,'2006-02-15 21:30:53'), +(6421,'2005-07-11 23:45:25',4477,479,'2005-07-15 20:45:25',2,'2006-02-15 21:30:53'), +(6422,'2005-07-11 23:46:19',762,257,'2005-07-20 22:12:19',1,'2006-02-15 21:30:53'), +(6423,'2005-07-11 23:47:31',892,427,'2005-07-19 18:16:31',1,'2006-02-15 21:30:53'), +(6424,'2005-07-11 23:49:37',3040,359,'2005-07-21 00:53:37',1,'2006-02-15 21:30:53'), +(6425,'2005-07-11 23:54:52',2487,339,'2005-07-13 18:37:52',1,'2006-02-15 21:30:53'), +(6426,'2005-07-11 23:56:38',498,495,'2005-07-21 05:22:38',1,'2006-02-15 21:30:53'), +(6427,'2005-07-11 23:57:34',1043,122,'2005-07-14 18:05:34',2,'2006-02-15 21:30:53'), +(6428,'2005-07-12 00:01:51',4365,187,'2005-07-20 22:02:51',2,'2006-02-15 21:30:53'), +(6429,'2005-07-12 00:02:50',141,342,'2005-07-21 02:08:50',1,'2006-02-15 21:30:53'), +(6430,'2005-07-12 00:03:34',178,390,'2005-07-15 03:11:34',1,'2006-02-15 21:30:53'), +(6431,'2005-07-12 00:03:57',3471,458,'2005-07-20 03:47:57',1,'2006-02-15 21:30:53'), +(6432,'2005-07-12 00:09:41',970,293,'2005-07-20 20:06:41',1,'2006-02-15 21:30:53'), +(6433,'2005-07-12 00:12:02',1357,101,'2005-07-21 04:25:02',2,'2006-02-15 21:30:53'), +(6434,'2005-07-12 00:14:25',1478,102,'2005-07-20 19:54:25',2,'2006-02-15 21:30:53'), +(6435,'2005-07-12 00:16:19',1957,561,'2005-07-17 19:15:19',1,'2006-02-15 21:30:53'), +(6436,'2005-07-12 00:18:42',3758,122,'2005-07-13 03:57:42',2,'2006-02-15 21:30:53'), +(6437,'2005-07-12 00:20:29',4539,355,'2005-07-12 22:26:29',1,'2006-02-15 21:30:53'), +(6438,'2005-07-12 00:23:01',412,211,'2005-07-17 22:45:01',1,'2006-02-15 21:30:53'), +(6439,'2005-07-12 00:23:48',3463,406,'2005-07-13 00:54:48',2,'2006-02-15 21:30:53'), +(6440,'2005-07-12 00:25:04',2148,269,'2005-07-13 04:52:04',2,'2006-02-15 21:30:53'), +(6441,'2005-07-12 00:27:08',2489,505,'2005-07-14 03:12:08',1,'2006-02-15 21:30:53'), +(6442,'2005-07-12 00:29:45',1273,360,'2005-07-15 19:37:45',2,'2006-02-15 21:30:53'), +(6443,'2005-07-12 00:35:51',895,155,'2005-07-16 04:50:51',1,'2006-02-15 21:30:53'), +(6444,'2005-07-12 00:36:02',2214,168,'2005-07-18 05:53:02',1,'2006-02-15 21:30:53'), +(6445,'2005-07-12 00:37:02',582,385,'2005-07-17 22:05:02',2,'2006-02-15 21:30:53'), +(6446,'2005-07-12 00:44:08',3634,473,'2005-07-14 20:39:08',2,'2006-02-15 21:30:53'), +(6447,'2005-07-12 00:45:17',3945,482,'2005-07-18 05:56:17',2,'2006-02-15 21:30:53'), +(6448,'2005-07-12 00:45:59',2663,160,'2005-07-17 00:34:59',1,'2006-02-15 21:30:53'), +(6449,'2005-07-12 00:48:58',4395,117,'2005-07-21 02:57:58',1,'2006-02-15 21:30:53'), +(6450,'2005-07-12 00:49:05',2413,32,'2005-07-13 01:54:05',2,'2006-02-15 21:30:53'), +(6451,'2005-07-12 00:52:19',1008,381,'2005-07-16 21:30:19',2,'2006-02-15 21:30:53'), +(6452,'2005-07-12 00:57:31',109,388,'2005-07-14 20:41:31',1,'2006-02-15 21:30:53'), +(6453,'2005-07-12 00:59:53',2506,169,'2005-07-14 19:17:53',2,'2006-02-15 21:30:53'), +(6454,'2005-07-12 01:00:12',4028,446,'2005-07-16 22:12:12',1,'2006-02-15 21:30:53'), +(6455,'2005-07-12 01:01:58',4267,277,'2005-07-16 02:42:58',2,'2006-02-15 21:30:53'), +(6456,'2005-07-12 01:05:11',259,387,'2005-07-20 23:26:11',2,'2006-02-15 21:30:53'), +(6457,'2005-07-12 01:06:35',2970,64,'2005-07-14 03:27:35',1,'2006-02-15 21:30:53'), +(6458,'2005-07-12 01:08:52',2809,138,'2005-07-16 20:22:52',1,'2006-02-15 21:30:53'), +(6459,'2005-07-12 01:12:03',4025,557,'2005-07-15 23:48:03',1,'2006-02-15 21:30:53'), +(6460,'2005-07-12 01:13:44',2402,371,'2005-07-17 04:51:44',2,'2006-02-15 21:30:53'), +(6461,'2005-07-12 01:14:03',1799,135,'2005-07-19 21:12:03',1,'2006-02-15 21:30:53'), +(6462,'2005-07-12 01:15:24',4534,414,'2005-07-19 05:11:24',2,'2006-02-15 21:30:53'), +(6463,'2005-07-12 01:16:11',2930,391,'2005-07-13 01:37:11',1,'2006-02-15 21:30:53'), +(6464,'2005-07-12 01:16:40',3100,303,'2005-07-20 00:53:40',1,'2006-02-15 21:30:53'), +(6465,'2005-07-12 01:17:11',2047,207,'2005-07-20 00:29:11',2,'2006-02-15 21:30:53'), +(6466,'2005-07-12 01:21:03',3369,235,'2005-07-14 04:05:03',1,'2006-02-15 21:30:53'), +(6467,'2005-07-12 01:22:03',2067,457,'2005-07-20 04:37:03',2,'2006-02-15 21:30:53'), +(6468,'2005-07-12 01:27:09',4560,541,'2005-07-20 00:37:09',2,'2006-02-15 21:30:53'), +(6469,'2005-07-12 01:29:27',3830,147,'2005-07-16 20:22:27',2,'2006-02-15 21:30:53'), +(6470,'2005-07-12 01:29:41',1680,240,'2005-07-15 21:33:41',2,'2006-02-15 21:30:53'), +(6471,'2005-07-12 01:31:06',2253,397,'2005-07-13 05:26:06',1,'2006-02-15 21:30:53'), +(6472,'2005-07-12 01:33:25',3780,183,'2005-07-15 20:26:25',1,'2006-02-15 21:30:53'), +(6473,'2005-07-12 01:35:40',527,594,'2005-07-20 20:11:40',1,'2006-02-15 21:30:53'), +(6474,'2005-07-12 01:36:46',310,43,'2005-07-16 07:24:46',2,'2006-02-15 21:30:53'), +(6475,'2005-07-12 01:36:57',2035,74,'2005-07-17 21:22:57',1,'2006-02-15 21:30:53'), +(6476,'2005-07-12 01:37:48',978,28,'2005-07-12 20:21:48',2,'2006-02-15 21:30:53'), +(6477,'2005-07-12 01:38:42',804,181,'2005-07-17 05:19:42',2,'2006-02-15 21:30:53'), +(6478,'2005-07-12 01:41:44',2589,483,'2005-07-15 20:48:44',1,'2006-02-15 21:30:53'), +(6479,'2005-07-12 01:49:00',2587,558,'2005-07-21 04:26:00',1,'2006-02-15 21:30:53'), +(6480,'2005-07-12 01:49:29',3076,309,'2005-07-17 01:00:29',1,'2006-02-15 21:30:53'), +(6481,'2005-07-12 01:50:15',2392,128,'2005-07-20 03:03:15',1,'2006-02-15 21:30:53'), +(6482,'2005-07-12 01:50:21',4135,57,'2005-07-14 06:49:21',2,'2006-02-15 21:30:53'), +(6483,'2005-07-12 01:59:20',1053,263,'2005-07-12 22:22:20',2,'2006-02-15 21:30:53'), +(6484,'2005-07-12 02:04:10',4093,556,'2005-07-17 23:18:10',2,'2006-02-15 21:30:53'), +(6485,'2005-07-12 02:07:59',1224,319,'2005-07-19 22:56:59',1,'2006-02-15 21:30:53'), +(6486,'2005-07-12 02:09:36',4008,75,'2005-07-14 03:04:36',2,'2006-02-15 21:30:53'), +(6487,'2005-07-12 02:17:00',4000,277,'2005-07-19 00:57:00',2,'2006-02-15 21:30:53'), +(6488,'2005-07-12 02:20:09',3974,169,'2005-07-20 00:53:09',2,'2006-02-15 21:30:53'), +(6489,'2005-07-12 02:22:46',1821,268,'2005-07-17 06:16:46',2,'2006-02-15 21:30:53'), +(6490,'2005-07-12 02:28:03',2249,548,'2005-07-19 03:06:03',2,'2006-02-15 21:30:53'), +(6491,'2005-07-12 02:28:31',2803,415,'2005-07-21 00:38:31',1,'2006-02-15 21:30:53'), +(6492,'2005-07-12 02:28:40',466,590,'2005-07-17 05:58:40',2,'2006-02-15 21:30:53'), +(6493,'2005-07-12 02:40:41',16,184,'2005-07-16 04:56:41',1,'2006-02-15 21:30:53'), +(6494,'2005-07-12 02:42:51',1124,57,'2005-07-20 06:57:51',1,'2006-02-15 21:30:53'), +(6495,'2005-07-12 02:57:02',2440,19,'2005-07-14 08:35:02',1,'2006-02-15 21:30:53'), +(6496,'2005-07-12 02:57:39',3550,139,'2005-07-20 01:43:39',1,'2006-02-15 21:30:53'), +(6497,'2005-07-12 03:04:29',933,222,'2005-07-17 21:36:29',2,'2006-02-15 21:30:53'), +(6498,'2005-07-12 03:05:38',243,48,'2005-07-19 07:12:38',1,'2006-02-15 21:30:53'), +(6499,'2005-07-12 03:11:18',3165,474,'2005-07-21 07:50:18',2,'2006-02-15 21:30:53'), +(6500,'2005-07-12 03:11:23',4521,577,'2005-07-13 00:51:23',2,'2006-02-15 21:30:53'), +(6501,'2005-07-12 03:11:55',2851,219,'2005-07-16 02:08:55',2,'2006-02-15 21:30:53'), +(6502,'2005-07-12 03:15:45',1641,40,'2005-07-17 08:47:45',2,'2006-02-15 21:30:53'), +(6503,'2005-07-12 03:18:07',1319,120,'2005-07-15 00:05:07',1,'2006-02-15 21:30:53'), +(6504,'2005-07-12 03:19:14',3786,535,'2005-07-17 01:13:14',2,'2006-02-15 21:30:53'), +(6505,'2005-07-12 03:27:37',3986,415,'2005-07-17 22:42:37',2,'2006-02-15 21:30:53'), +(6506,'2005-07-12 03:28:22',386,423,'2005-07-17 22:43:22',1,'2006-02-15 21:30:53'), +(6507,'2005-07-12 03:33:12',2463,118,'2005-07-20 03:56:12',1,'2006-02-15 21:30:53'), +(6508,'2005-07-12 03:34:50',1474,597,'2005-07-17 02:57:50',2,'2006-02-15 21:30:53'), +(6509,'2005-07-12 03:35:01',2468,427,'2005-07-13 06:50:01',2,'2006-02-15 21:30:53'), +(6510,'2005-07-12 03:35:39',905,446,'2005-07-21 01:41:39',1,'2006-02-15 21:30:53'), +(6511,'2005-07-12 03:39:29',1350,322,'2005-07-17 01:01:29',2,'2006-02-15 21:30:53'), +(6512,'2005-07-12 03:42:49',1703,68,'2005-07-13 05:01:49',2,'2006-02-15 21:30:53'), +(6513,'2005-07-12 03:44:43',2671,393,'2005-07-13 05:54:43',1,'2006-02-15 21:30:53'), +(6514,'2005-07-12 03:47:44',3562,73,'2005-07-20 00:11:44',1,'2006-02-15 21:30:53'), +(6515,'2005-07-12 03:50:32',706,261,'2005-07-15 03:54:32',2,'2006-02-15 21:30:53'), +(6516,'2005-07-12 03:51:54',863,291,'2005-07-14 03:41:54',2,'2006-02-15 21:30:53'), +(6517,'2005-07-12 03:52:39',185,387,'2005-07-20 08:00:39',1,'2006-02-15 21:30:53'), +(6518,'2005-07-12 03:59:42',2698,288,'2005-07-19 22:21:42',2,'2006-02-15 21:30:53'), +(6519,'2005-07-12 04:00:36',4149,598,'2005-07-19 01:15:36',1,'2006-02-15 21:30:53'), +(6520,'2005-07-12 04:05:16',1535,270,'2005-07-15 08:26:16',1,'2006-02-15 21:30:53'), +(6521,'2005-07-12 04:06:11',3293,49,'2005-07-21 05:50:11',1,'2006-02-15 21:30:53'), +(6522,'2005-07-12 04:11:58',3916,142,'2005-07-15 08:32:58',1,'2006-02-15 21:30:53'), +(6523,'2005-07-12 04:14:19',1848,574,'2005-07-17 00:38:19',1,'2006-02-15 21:30:53'), +(6524,'2005-07-12 04:14:35',1467,376,'2005-07-17 03:59:35',2,'2006-02-15 21:30:53'), +(6525,'2005-07-12 04:17:15',1408,103,'2005-07-18 23:11:15',1,'2006-02-15 21:30:53'), +(6526,'2005-07-12 04:21:20',1718,225,'2005-07-18 23:45:20',2,'2006-02-15 21:30:53'), +(6527,'2005-07-12 04:23:06',538,65,'2005-07-17 00:20:06',1,'2006-02-15 21:30:53'), +(6528,'2005-07-12 04:29:44',3824,598,'2005-07-18 02:39:44',2,'2006-02-15 21:30:53'), +(6529,'2005-07-12 04:31:04',1058,503,'2005-07-17 07:09:04',2,'2006-02-15 21:30:53'), +(6530,'2005-07-12 04:33:19',3410,75,'2005-07-15 08:26:19',1,'2006-02-15 21:30:53'), +(6531,'2005-07-12 04:35:24',4231,510,'2005-07-16 05:37:24',2,'2006-02-15 21:30:53'), +(6532,'2005-07-12 04:38:32',2361,225,'2005-07-13 03:54:32',1,'2006-02-15 21:30:53'), +(6533,'2005-07-12 04:39:38',3853,366,'2005-07-18 05:29:38',1,'2006-02-15 21:30:53'), +(6534,'2005-07-12 04:39:43',2359,577,'2005-07-16 06:33:43',1,'2006-02-15 21:30:53'), +(6535,'2005-07-12 04:43:43',1921,446,'2005-07-17 04:52:43',1,'2006-02-15 21:30:53'), +(6536,'2005-07-12 04:44:25',3521,289,'2005-07-18 01:52:25',2,'2006-02-15 21:30:53'), +(6537,'2005-07-12 04:46:30',3381,207,'2005-07-19 03:04:30',2,'2006-02-15 21:30:53'), +(6538,'2005-07-12 04:50:26',1987,529,'2005-07-20 23:44:26',2,'2006-02-15 21:30:53'), +(6539,'2005-07-12 04:50:49',2275,259,'2005-07-19 03:23:49',1,'2006-02-15 21:30:53'), +(6540,'2005-07-12 04:51:13',937,156,'2005-07-21 03:38:13',1,'2006-02-15 21:30:53'), +(6541,'2005-07-12 04:53:41',1795,529,'2005-07-17 23:17:41',2,'2006-02-15 21:30:53'), +(6542,'2005-07-12 04:53:49',2421,359,'2005-07-13 01:48:49',1,'2006-02-15 21:30:53'), +(6543,'2005-07-12 04:54:32',2568,264,'2005-07-15 09:50:32',2,'2006-02-15 21:30:53'), +(6544,'2005-07-12 04:56:15',1218,97,'2005-07-17 08:28:15',1,'2006-02-15 21:30:53'), +(6545,'2005-07-12 04:56:30',4447,376,'2005-07-20 05:41:30',1,'2006-02-15 21:30:53'), +(6546,'2005-07-12 04:57:17',393,105,'2005-07-17 09:29:17',2,'2006-02-15 21:30:53'), +(6547,'2005-07-12 04:57:46',2656,262,'2005-07-18 08:36:46',2,'2006-02-15 21:30:53'), +(6548,'2005-07-12 05:00:46',2480,488,'2005-07-19 04:40:46',2,'2006-02-15 21:30:53'), +(6549,'2005-07-12 05:02:01',2688,493,'2005-07-20 06:19:01',2,'2006-02-15 21:30:53'), +(6550,'2005-07-12 05:03:14',2184,112,'2005-07-19 04:06:14',1,'2006-02-15 21:30:53'), +(6551,'2005-07-12 05:03:43',282,567,'2005-07-13 10:44:43',1,'2006-02-15 21:30:53'), +(6552,'2005-07-12 05:05:06',766,493,'2005-07-13 05:12:06',2,'2006-02-15 21:30:53'), +(6553,'2005-07-12 05:06:39',1137,265,'2005-07-21 10:37:39',1,'2006-02-15 21:30:53'), +(6554,'2005-07-12 05:07:26',2741,178,'2005-07-21 06:06:26',2,'2006-02-15 21:30:53'), +(6555,'2005-07-12 05:08:16',1282,188,'2005-07-14 04:09:16',1,'2006-02-15 21:30:53'), +(6556,'2005-07-12 05:10:16',3901,570,'2005-07-13 04:16:16',2,'2006-02-15 21:30:53'), +(6557,'2005-07-12 05:12:03',1442,116,'2005-07-20 06:49:03',1,'2006-02-15 21:30:53'), +(6558,'2005-07-12 05:16:07',2195,164,'2005-07-13 05:32:07',2,'2006-02-15 21:30:53'), +(6559,'2005-07-12 05:20:35',458,353,'2005-07-16 08:44:35',2,'2006-02-15 21:30:53'), +(6560,'2005-07-12 05:22:06',433,54,'2005-07-15 00:04:06',2,'2006-02-15 21:30:53'), +(6561,'2005-07-12 05:24:02',4568,528,'2005-07-16 03:43:02',2,'2006-02-15 21:30:53'), +(6562,'2005-07-12 05:26:26',3969,27,'2005-07-16 05:10:26',2,'2006-02-15 21:30:53'), +(6563,'2005-07-12 05:34:09',87,438,'2005-07-21 07:37:09',1,'2006-02-15 21:30:53'), +(6564,'2005-07-12 05:34:44',2320,210,'2005-07-18 06:12:44',2,'2006-02-15 21:30:53'), +(6565,'2005-07-12 05:39:50',2751,35,'2005-07-13 01:07:50',2,'2006-02-15 21:30:53'), +(6566,'2005-07-12 05:42:53',1822,178,'2005-07-19 01:23:53',2,'2006-02-15 21:30:53'), +(6567,'2005-07-12 05:43:09',1336,198,'2005-07-19 08:18:09',2,'2006-02-15 21:30:53'), +(6568,'2005-07-12 05:45:47',4203,13,'2005-07-15 05:18:47',2,'2006-02-15 21:30:53'), +(6569,'2005-07-12 05:47:40',759,183,'2005-07-20 06:23:40',2,'2006-02-15 21:30:53'), +(6570,'2005-07-12 05:50:31',2082,217,'2005-07-13 09:58:31',1,'2006-02-15 21:30:53'), +(6571,'2005-07-12 05:51:47',3700,140,'2005-07-15 11:31:47',1,'2006-02-15 21:30:53'), +(6572,'2005-07-12 05:56:38',3121,35,'2005-07-16 10:41:38',1,'2006-02-15 21:30:53'), +(6573,'2005-07-12 06:03:40',3308,239,'2005-07-13 11:49:40',2,'2006-02-15 21:30:53'), +(6574,'2005-07-12 06:04:22',621,115,'2005-07-18 03:19:22',2,'2006-02-15 21:30:53'), +(6575,'2005-07-12 06:12:53',1414,598,'2005-07-18 07:55:53',2,'2006-02-15 21:30:53'), +(6576,'2005-07-12 06:13:41',339,362,'2005-07-16 03:22:41',1,'2006-02-15 21:30:53'), +(6577,'2005-07-12 06:15:05',4191,439,'2005-07-15 06:23:05',1,'2006-02-15 21:30:53'), +(6578,'2005-07-12 06:15:41',2304,229,'2005-07-15 10:43:41',1,'2006-02-15 21:30:53'), +(6580,'2005-07-12 06:26:10',1543,31,'2005-07-13 06:44:10',1,'2006-02-15 21:30:53'), +(6581,'2005-07-12 06:26:49',2121,468,'2005-07-14 05:07:49',2,'2006-02-15 21:30:53'), +(6582,'2005-07-12 06:28:12',2077,420,'2005-07-19 06:19:12',1,'2006-02-15 21:30:53'), +(6583,'2005-07-12 06:42:31',2343,462,'2005-07-15 07:51:31',1,'2006-02-15 21:30:53'), +(6584,'2005-07-12 06:43:36',1800,472,'2005-07-16 12:18:36',2,'2006-02-15 21:30:53'), +(6585,'2005-07-12 06:50:52',2064,136,'2005-07-21 06:51:52',1,'2006-02-15 21:30:53'), +(6586,'2005-07-12 06:56:24',3860,93,'2005-07-17 09:36:24',1,'2006-02-15 21:30:53'), +(6587,'2005-07-12 06:56:26',238,419,'2005-07-20 05:53:26',2,'2006-02-15 21:30:53'), +(6588,'2005-07-12 06:57:40',1257,420,'2005-07-16 04:27:40',1,'2006-02-15 21:30:53'), +(6589,'2005-07-12 07:06:29',1595,424,'2005-07-14 12:06:29',2,'2006-02-15 21:30:53'), +(6590,'2005-07-12 07:08:21',1067,442,'2005-07-18 06:16:21',2,'2006-02-15 21:30:53'), +(6591,'2005-07-12 07:13:46',2846,509,'2005-07-16 05:15:46',2,'2006-02-15 21:30:53'), +(6592,'2005-07-12 07:19:35',3481,273,'2005-07-19 07:15:35',1,'2006-02-15 21:30:53'), +(6593,'2005-07-12 07:21:17',3441,356,'2005-07-14 02:35:17',2,'2006-02-15 21:30:53'), +(6594,'2005-07-12 07:25:43',4458,517,'2005-07-13 07:59:43',1,'2006-02-15 21:30:53'), +(6595,'2005-07-12 07:25:48',1286,458,'2005-07-20 02:24:48',2,'2006-02-15 21:30:53'), +(6596,'2005-07-12 07:32:59',890,409,'2005-07-13 02:47:59',1,'2006-02-15 21:30:53'), +(6597,'2005-07-12 07:37:02',979,479,'2005-07-16 10:24:02',2,'2006-02-15 21:30:53'), +(6598,'2005-07-12 07:38:25',2049,532,'2005-07-19 07:58:25',1,'2006-02-15 21:30:53'), +(6599,'2005-07-12 07:41:14',4348,519,'2005-07-21 02:45:14',2,'2006-02-15 21:30:53'), +(6600,'2005-07-12 07:41:48',3315,389,'2005-07-18 12:36:48',2,'2006-02-15 21:30:53'), +(6601,'2005-07-12 07:44:49',1640,464,'2005-07-20 03:22:49',2,'2006-02-15 21:30:53'), +(6602,'2005-07-12 07:50:24',2382,214,'2005-07-20 03:25:24',2,'2006-02-15 21:30:53'), +(6603,'2005-07-12 07:52:55',3583,425,'2005-07-16 13:19:55',2,'2006-02-15 21:30:53'), +(6604,'2005-07-12 07:57:45',822,365,'2005-07-16 05:41:45',2,'2006-02-15 21:30:53'), +(6605,'2005-07-12 08:01:07',2892,547,'2005-07-19 03:12:07',1,'2006-02-15 21:30:53'), +(6606,'2005-07-12 08:03:40',2805,178,'2005-07-13 09:05:40',1,'2006-02-15 21:30:53'), +(6607,'2005-07-12 08:08:50',337,562,'2005-07-20 09:17:50',1,'2006-02-15 21:30:53'), +(6608,'2005-07-12 08:16:50',3577,244,'2005-07-18 07:08:50',2,'2006-02-15 21:30:53'), +(6609,'2005-07-12 08:19:41',3332,133,'2005-07-19 08:19:41',2,'2006-02-15 21:30:53'), +(6610,'2005-07-12 08:20:02',645,353,'2005-07-21 09:16:02',2,'2006-02-15 21:30:53'), +(6611,'2005-07-12 08:20:23',1604,286,'2005-07-16 07:19:23',1,'2006-02-15 21:30:53'), +(6612,'2005-07-12 08:28:33',235,152,'2005-07-17 06:25:33',1,'2006-02-15 21:30:53'), +(6613,'2005-07-12 08:30:07',3421,460,'2005-07-14 10:25:07',2,'2006-02-15 21:30:53'), +(6614,'2005-07-12 08:33:49',3004,144,'2005-07-18 07:28:49',2,'2006-02-15 21:30:53'), +(6615,'2005-07-12 08:36:22',23,438,'2005-07-20 09:03:22',1,'2006-02-15 21:30:53'), +(6616,'2005-07-12 08:37:30',1833,179,'2005-07-20 10:33:30',1,'2006-02-15 21:30:53'), +(6617,'2005-07-12 08:39:56',2292,248,'2005-07-14 09:32:56',2,'2006-02-15 21:30:53'), +(6618,'2005-07-12 08:41:42',4266,327,'2005-07-14 05:34:42',1,'2006-02-15 21:30:53'), +(6619,'2005-07-12 08:50:48',4062,305,'2005-07-14 11:54:48',1,'2006-02-15 21:30:53'), +(6620,'2005-07-12 08:51:03',2362,337,'2005-07-16 03:59:03',2,'2006-02-15 21:30:53'), +(6621,'2005-07-12 08:57:30',2229,561,'2005-07-14 09:47:30',1,'2006-02-15 21:30:53'), +(6622,'2005-07-12 09:04:11',4350,325,'2005-07-13 04:27:11',1,'2006-02-15 21:30:53'), +(6623,'2005-07-12 09:05:34',4412,302,'2005-07-19 13:54:34',2,'2006-02-15 21:30:53'), +(6624,'2005-07-12 09:05:50',3946,335,'2005-07-18 13:59:50',2,'2006-02-15 21:30:53'), +(6625,'2005-07-12 09:06:40',735,443,'2005-07-21 04:57:40',2,'2006-02-15 21:30:53'), +(6626,'2005-07-12 09:16:24',2418,269,'2005-07-17 04:06:24',2,'2006-02-15 21:30:53'), +(6627,'2005-07-12 09:16:46',626,565,'2005-07-17 10:58:46',1,'2006-02-15 21:30:53'), +(6628,'2005-07-12 09:18:08',2894,211,'2005-07-21 04:27:08',2,'2006-02-15 21:30:53'), +(6629,'2005-07-12 09:18:35',2855,582,'2005-07-20 11:34:35',2,'2006-02-15 21:30:53'), +(6630,'2005-07-12 09:30:05',1843,462,'2005-07-14 08:29:05',2,'2006-02-15 21:30:53'), +(6631,'2005-07-12 09:31:43',2340,204,'2005-07-15 05:00:43',2,'2006-02-15 21:30:53'), +(6632,'2005-07-12 09:33:10',2929,442,'2005-07-15 11:36:10',1,'2006-02-15 21:30:53'), +(6633,'2005-07-12 09:35:42',2908,150,'2005-07-13 12:56:42',2,'2006-02-15 21:30:53'), +(6634,'2005-07-12 09:37:18',2943,50,'2005-07-13 09:28:18',1,'2006-02-15 21:30:53'), +(6635,'2005-07-12 09:47:58',515,273,'2005-07-16 15:43:58',1,'2006-02-15 21:30:53'), +(6636,'2005-07-12 09:49:46',3270,441,'2005-07-14 12:15:46',1,'2006-02-15 21:30:53'), +(6637,'2005-07-12 09:57:39',2852,164,'2005-07-19 08:40:39',1,'2006-02-15 21:30:53'), +(6638,'2005-07-12 09:58:02',207,87,'2005-07-13 09:40:02',1,'2006-02-15 21:30:53'), +(6639,'2005-07-12 10:00:44',3385,587,'2005-07-19 04:56:44',1,'2006-02-15 21:30:53'), +(6640,'2005-07-12 10:27:19',2794,148,'2005-07-21 06:28:19',2,'2006-02-15 21:30:53'), +(6641,'2005-07-12 10:33:14',2165,334,'2005-07-20 08:24:14',2,'2006-02-15 21:30:53'), +(6642,'2005-07-12 10:37:52',201,441,'2005-07-13 15:13:52',1,'2006-02-15 21:30:53'), +(6643,'2005-07-12 10:39:22',174,88,'2005-07-18 13:52:22',1,'2006-02-15 21:30:53'), +(6644,'2005-07-12 10:39:39',2667,285,'2005-07-14 11:50:39',1,'2006-02-15 21:30:53'), +(6645,'2005-07-12 10:39:55',2858,73,'2005-07-17 07:41:55',1,'2006-02-15 21:30:53'), +(6646,'2005-07-12 10:41:34',4061,508,'2005-07-15 05:31:34',1,'2006-02-15 21:30:53'), +(6647,'2005-07-12 10:43:53',1841,8,'2005-07-14 05:37:53',1,'2006-02-15 21:30:53'), +(6648,'2005-07-12 10:46:30',718,356,'2005-07-14 16:15:30',1,'2006-02-15 21:30:53'), +(6649,'2005-07-12 10:51:09',70,57,'2005-07-14 16:05:09',2,'2006-02-15 21:30:53'), +(6650,'2005-07-12 10:57:10',1589,526,'2005-07-14 07:24:10',1,'2006-02-15 21:30:53'), +(6651,'2005-07-12 10:57:28',98,447,'2005-07-15 06:06:28',2,'2006-02-15 21:30:53'), +(6652,'2005-07-12 10:59:38',2200,518,'2005-07-13 13:52:38',1,'2006-02-15 21:30:53'), +(6653,'2005-07-12 11:06:17',614,25,'2005-07-19 16:52:17',2,'2006-02-15 21:30:53'), +(6654,'2005-07-12 11:06:28',2870,458,'2005-07-20 10:27:28',1,'2006-02-15 21:30:53'), +(6655,'2005-07-12 11:08:32',3937,100,'2005-07-15 15:17:32',1,'2006-02-15 21:30:53'), +(6656,'2005-07-12 11:09:47',2282,330,'2005-07-14 05:50:47',1,'2006-02-15 21:30:53'), +(6657,'2005-07-12 11:11:36',3697,553,'2005-07-16 15:56:36',1,'2006-02-15 21:30:53'), +(6658,'2005-07-12 11:13:21',172,27,'2005-07-17 09:10:21',2,'2006-02-15 21:30:53'), +(6659,'2005-07-12 11:18:05',2285,134,'2005-07-16 16:45:05',2,'2006-02-15 21:30:53'), +(6660,'2005-07-12 11:20:12',446,598,'2005-07-20 12:58:12',2,'2006-02-15 21:30:53'), +(6661,'2005-07-12 11:20:39',2367,315,'2005-07-16 08:17:39',2,'2006-02-15 21:30:53'), +(6662,'2005-07-12 11:21:06',1464,99,'2005-07-13 13:00:06',1,'2006-02-15 21:30:53'), +(6663,'2005-07-12 11:27:35',4364,5,'2005-07-21 16:35:35',1,'2006-02-15 21:30:53'), +(6664,'2005-07-12 11:28:22',4578,351,'2005-07-15 09:30:22',1,'2006-02-15 21:30:53'), +(6665,'2005-07-12 11:29:14',2912,587,'2005-07-19 11:26:14',2,'2006-02-15 21:30:53'), +(6666,'2005-07-12 11:32:15',3194,314,'2005-07-14 16:09:15',2,'2006-02-15 21:30:53'), +(6667,'2005-07-12 11:36:22',215,50,'2005-07-19 12:53:22',1,'2006-02-15 21:30:53'), +(6668,'2005-07-12 11:37:45',1498,199,'2005-07-14 13:28:45',2,'2006-02-15 21:30:53'), +(6669,'2005-07-12 11:39:55',1420,355,'2005-07-20 05:56:55',1,'2006-02-15 21:30:53'), +(6670,'2005-07-12 11:44:33',3106,249,'2005-07-19 07:54:33',2,'2006-02-15 21:30:53'), +(6671,'2005-07-12 11:48:48',955,526,'2005-07-19 16:55:48',2,'2006-02-15 21:30:53'), +(6672,'2005-07-12 11:49:16',375,439,'2005-07-13 07:03:16',2,'2006-02-15 21:30:53'), +(6673,'2005-07-12 11:50:56',1997,322,'2005-07-13 14:27:56',1,'2006-02-15 21:30:53'), +(6674,'2005-07-12 11:51:54',2385,399,'2005-07-13 16:57:54',1,'2006-02-15 21:30:53'), +(6675,'2005-07-12 11:53:06',2124,523,'2005-07-13 06:09:06',1,'2006-02-15 21:30:53'), +(6676,'2005-07-12 11:53:40',2294,571,'2005-07-19 09:15:40',1,'2006-02-15 21:30:53'), +(6677,'2005-07-12 11:58:14',2389,516,'2005-07-21 06:05:14',2,'2006-02-15 21:30:53'), +(6678,'2005-07-12 11:58:36',3473,330,'2005-07-15 17:50:36',2,'2006-02-15 21:30:53'), +(6679,'2005-07-12 12:01:07',3664,586,'2005-07-14 11:36:07',1,'2006-02-15 21:30:53'), +(6680,'2005-07-12 12:01:56',2887,43,'2005-07-16 17:32:56',1,'2006-02-15 21:30:53'), +(6681,'2005-07-12 12:04:12',854,368,'2005-07-19 11:01:12',2,'2006-02-15 21:30:53'), +(6682,'2005-07-12 12:12:43',1984,339,'2005-07-21 10:49:43',2,'2006-02-15 21:30:53'), +(6683,'2005-07-12 12:14:05',3433,244,'2005-07-17 14:02:05',2,'2006-02-15 21:30:53'), +(6684,'2005-07-12 12:14:42',2817,583,'2005-07-21 11:07:42',2,'2006-02-15 21:30:53'), +(6685,'2005-07-12 12:16:28',1434,5,'2005-07-19 17:03:28',1,'2006-02-15 21:30:53'), +(6686,'2005-07-12 12:18:38',3804,6,'2005-07-13 17:56:38',2,'2006-02-15 21:30:53'), +(6687,'2005-07-12 12:19:23',2736,128,'2005-07-19 17:12:23',1,'2006-02-15 21:30:53'), +(6688,'2005-07-12 12:22:12',2377,246,'2005-07-14 14:05:12',1,'2006-02-15 21:30:53'), +(6689,'2005-07-12 12:22:13',1568,525,'2005-07-16 07:44:13',1,'2006-02-15 21:30:53'), +(6690,'2005-07-12 12:23:02',4254,447,'2005-07-16 15:39:02',2,'2006-02-15 21:30:53'), +(6691,'2005-07-12 12:26:38',403,192,'2005-07-18 13:26:38',2,'2006-02-15 21:30:53'), +(6692,'2005-07-12 12:35:39',2837,372,'2005-07-20 11:20:39',2,'2006-02-15 21:30:53'), +(6693,'2005-07-12 12:37:00',2014,573,'2005-07-20 09:36:00',1,'2006-02-15 21:30:53'), +(6694,'2005-07-12 12:39:23',586,204,'2005-07-19 14:47:23',1,'2006-02-15 21:30:53'), +(6695,'2005-07-12 12:39:39',3088,550,'2005-07-17 13:36:39',2,'2006-02-15 21:30:53'), +(6696,'2005-07-12 12:44:04',299,273,'2005-07-16 14:17:04',1,'2006-02-15 21:30:53'), +(6697,'2005-07-12 12:44:57',210,103,'2005-07-19 13:02:57',1,'2006-02-15 21:30:53'), +(6698,'2005-07-12 12:45:00',4419,64,'2005-07-16 11:16:00',2,'2006-02-15 21:30:53'), +(6699,'2005-07-12 12:45:21',3411,565,'2005-07-15 12:59:21',1,'2006-02-15 21:30:53'), +(6700,'2005-07-12 12:47:22',3063,184,'2005-07-21 16:04:22',1,'2006-02-15 21:30:53'), +(6701,'2005-07-12 12:47:59',3428,454,'2005-07-13 10:28:59',1,'2006-02-15 21:30:53'), +(6702,'2005-07-12 12:48:03',233,164,'2005-07-13 11:55:03',1,'2006-02-15 21:30:53'), +(6703,'2005-07-12 12:50:19',46,470,'2005-07-16 13:41:19',1,'2006-02-15 21:30:53'), +(6704,'2005-07-12 12:50:24',1590,595,'2005-07-20 16:41:24',2,'2006-02-15 21:30:53'), +(6705,'2005-07-12 12:53:11',4268,363,'2005-07-13 07:17:11',1,'2006-02-15 21:30:53'), +(6706,'2005-07-12 12:59:16',4552,267,'2005-07-19 10:37:16',1,'2006-02-15 21:30:53'), +(6707,'2005-07-12 13:07:55',406,80,'2005-07-16 16:26:55',2,'2006-02-15 21:30:53'), +(6708,'2005-07-12 13:10:55',372,82,'2005-07-21 07:36:55',1,'2006-02-15 21:30:53'), +(6709,'2005-07-12 13:20:41',4049,322,'2005-07-16 10:37:41',2,'2006-02-15 21:30:53'), +(6710,'2005-07-12 13:23:09',806,462,'2005-07-20 10:10:09',2,'2006-02-15 21:30:53'), +(6711,'2005-07-12 13:23:40',2247,257,'2005-07-20 11:45:40',2,'2006-02-15 21:30:53'), +(6712,'2005-07-12 13:24:47',4581,226,'2005-07-20 09:35:47',2,'2006-02-15 21:30:53'), +(6713,'2005-07-12 13:27:36',4218,557,'2005-07-16 11:14:36',1,'2006-02-15 21:30:53'), +(6714,'2005-07-12 13:29:06',1947,370,'2005-07-18 16:02:06',2,'2006-02-15 21:30:53'), +(6715,'2005-07-12 13:32:28',643,386,'2005-07-15 17:01:28',2,'2006-02-15 21:30:53'), +(6716,'2005-07-12 13:34:58',2783,367,'2005-07-19 15:09:58',1,'2006-02-15 21:30:53'), +(6717,'2005-07-12 13:35:02',523,273,'2005-07-20 15:03:02',1,'2006-02-15 21:30:53'), +(6718,'2005-07-12 13:38:06',2283,541,'2005-07-18 09:05:06',1,'2006-02-15 21:30:53'), +(6719,'2005-07-12 13:40:37',739,330,'2005-07-15 15:23:37',2,'2006-02-15 21:30:53'), +(6720,'2005-07-12 13:41:16',2704,151,'2005-07-13 14:41:16',2,'2006-02-15 21:30:53'), +(6721,'2005-07-12 13:42:58',2798,462,'2005-07-19 16:39:58',2,'2006-02-15 21:30:53'), +(6722,'2005-07-12 13:44:03',3124,211,'2005-07-19 12:43:03',2,'2006-02-15 21:30:53'), +(6723,'2005-07-12 13:44:57',2678,499,'2005-07-14 15:57:57',2,'2006-02-15 21:30:53'), +(6724,'2005-07-12 13:45:15',2486,262,'2005-07-19 19:18:15',1,'2006-02-15 21:30:53'), +(6725,'2005-07-12 13:47:17',831,213,'2005-07-17 13:31:17',1,'2006-02-15 21:30:53'), +(6726,'2005-07-12 13:48:14',4494,97,'2005-07-16 11:11:14',1,'2006-02-15 21:30:53'), +(6727,'2005-07-12 13:54:25',3793,407,'2005-07-14 17:29:25',1,'2006-02-15 21:30:53'), +(6728,'2005-07-12 13:56:48',2113,414,'2005-07-15 18:49:48',1,'2006-02-15 21:30:53'), +(6729,'2005-07-12 13:58:23',2495,455,'2005-07-19 09:34:23',2,'2006-02-15 21:30:53'), +(6730,'2005-07-12 13:58:25',1552,532,'2005-07-20 13:01:25',1,'2006-02-15 21:30:53'), +(6731,'2005-07-12 13:58:27',844,593,'2005-07-15 10:04:27',2,'2006-02-15 21:30:53'), +(6732,'2005-07-12 13:58:51',1913,299,'2005-07-17 17:42:51',1,'2006-02-15 21:30:53'), +(6733,'2005-07-12 14:04:01',1476,585,'2005-07-21 18:57:01',2,'2006-02-15 21:30:53'), +(6734,'2005-07-12 14:04:24',2248,446,'2005-07-21 19:47:24',1,'2006-02-15 21:30:53'), +(6735,'2005-07-12 14:08:20',276,428,'2005-07-18 09:41:20',2,'2006-02-15 21:30:53'), +(6736,'2005-07-12 14:16:50',530,342,'2005-07-15 16:26:50',1,'2006-02-15 21:30:53'), +(6737,'2005-07-12 14:16:52',315,304,'2005-07-18 19:48:52',1,'2006-02-15 21:30:53'), +(6738,'2005-07-12 14:17:55',1197,366,'2005-07-21 10:11:55',2,'2006-02-15 21:30:53'), +(6739,'2005-07-12 14:22:08',1221,71,'2005-07-18 16:57:08',2,'2006-02-15 21:30:53'), +(6740,'2005-07-12 14:22:08',2431,139,'2005-07-14 14:35:08',1,'2006-02-15 21:30:53'), +(6741,'2005-07-12 14:24:16',237,359,'2005-07-15 08:31:16',1,'2006-02-15 21:30:53'), +(6742,'2005-07-12 14:25:31',4242,558,'2005-07-17 08:50:31',2,'2006-02-15 21:30:53'), +(6743,'2005-07-12 14:29:25',158,261,'2005-07-13 13:13:25',1,'2006-02-15 21:30:53'), +(6744,'2005-07-12 14:30:28',2565,64,'2005-07-14 16:20:28',1,'2006-02-15 21:30:53'), +(6745,'2005-07-12 14:30:51',1331,524,'2005-07-13 13:42:51',2,'2006-02-15 21:30:53'), +(6746,'2005-07-12 14:33:01',3127,537,'2005-07-17 19:52:01',2,'2006-02-15 21:30:53'), +(6747,'2005-07-12 14:33:21',3651,126,'2005-07-13 09:59:21',2,'2006-02-15 21:30:53'), +(6748,'2005-07-12 14:39:27',3655,540,'2005-07-18 13:40:27',2,'2006-02-15 21:30:53'), +(6749,'2005-07-12 14:43:05',2895,334,'2005-07-21 15:13:05',2,'2006-02-15 21:30:53'), +(6750,'2005-07-12 14:49:39',3838,459,'2005-07-18 18:43:39',2,'2006-02-15 21:30:53'), +(6751,'2005-07-12 14:50:34',1749,312,'2005-07-15 19:39:34',2,'2006-02-15 21:30:53'), +(6752,'2005-07-12 14:53:15',3392,453,'2005-07-20 09:23:15',1,'2006-02-15 21:30:53'), +(6753,'2005-07-12 14:55:42',2591,147,'2005-07-18 19:16:42',1,'2006-02-15 21:30:53'), +(6754,'2005-07-12 14:59:24',1460,114,'2005-07-14 11:04:24',2,'2006-02-15 21:30:53'), +(6755,'2005-07-12 15:07:49',2542,126,'2005-07-21 18:43:49',2,'2006-02-15 21:30:53'), +(6756,'2005-07-12 15:08:28',1174,531,'2005-07-13 14:25:28',2,'2006-02-15 21:30:53'), +(6757,'2005-07-12 15:09:48',547,558,'2005-07-17 15:04:48',2,'2006-02-15 21:30:53'), +(6758,'2005-07-12 15:13:49',4098,546,'2005-07-20 09:31:49',2,'2006-02-15 21:30:53'), +(6759,'2005-07-12 15:14:48',3624,49,'2005-07-15 11:29:48',1,'2006-02-15 21:30:53'), +(6760,'2005-07-12 15:16:00',501,502,'2005-07-20 13:20:00',2,'2006-02-15 21:30:53'), +(6761,'2005-07-12 15:17:42',3645,7,'2005-07-18 17:59:42',2,'2006-02-15 21:30:53'), +(6762,'2005-07-12 15:25:33',3857,262,'2005-07-21 18:57:33',1,'2006-02-15 21:30:53'), +(6763,'2005-07-12 15:26:34',3364,314,'2005-07-18 16:38:34',2,'2006-02-15 21:30:53'), +(6764,'2005-07-12 15:29:27',4407,396,'2005-07-21 20:00:27',2,'2006-02-15 21:30:53'), +(6765,'2005-07-12 15:30:47',2571,433,'2005-07-19 14:19:47',2,'2006-02-15 21:30:53'), +(6766,'2005-07-12 15:32:01',3615,171,'2005-07-18 14:03:01',2,'2006-02-15 21:30:53'), +(6767,'2005-07-12 15:46:55',1819,208,'2005-07-17 17:36:55',2,'2006-02-15 21:30:53'), +(6768,'2005-07-12 15:47:51',3418,151,'2005-07-19 21:17:51',2,'2006-02-15 21:30:53'), +(6769,'2005-07-12 15:48:54',1687,63,'2005-07-21 14:39:54',2,'2006-02-15 21:30:53'), +(6770,'2005-07-12 15:49:40',2080,360,'2005-07-20 10:14:40',2,'2006-02-15 21:30:53'), +(6771,'2005-07-12 15:54:40',1113,396,'2005-07-17 15:56:40',2,'2006-02-15 21:30:53'), +(6772,'2005-07-12 15:55:35',3810,89,'2005-07-18 10:47:35',1,'2006-02-15 21:30:53'), +(6773,'2005-07-12 15:55:39',3346,12,'2005-07-18 17:52:39',2,'2006-02-15 21:30:53'), +(6774,'2005-07-12 15:56:08',868,171,'2005-07-13 18:42:08',1,'2006-02-15 21:30:53'), +(6775,'2005-07-12 16:01:44',2909,383,'2005-07-19 14:11:44',1,'2006-02-15 21:30:53'), +(6776,'2005-07-12 16:02:09',2398,348,'2005-07-20 16:31:09',1,'2006-02-15 21:30:53'), +(6777,'2005-07-12 16:04:40',4089,351,'2005-07-20 15:05:40',2,'2006-02-15 21:30:53'), +(6778,'2005-07-12 16:06:00',4503,381,'2005-07-14 21:57:00',2,'2006-02-15 21:30:53'), +(6779,'2005-07-12 16:10:50',4468,404,'2005-07-17 14:51:50',2,'2006-02-15 21:30:53'), +(6780,'2005-07-12 16:18:12',1255,121,'2005-07-13 17:56:12',2,'2006-02-15 21:30:53'), +(6781,'2005-07-12 16:21:47',3783,533,'2005-07-15 19:52:47',1,'2006-02-15 21:30:53'), +(6782,'2005-07-12 16:23:25',2742,199,'2005-07-20 18:46:25',2,'2006-02-15 21:30:53'), +(6783,'2005-07-12 16:27:56',3633,506,'2005-07-13 12:11:56',2,'2006-02-15 21:30:53'), +(6784,'2005-07-12 16:28:49',197,578,'2005-07-15 17:27:49',1,'2006-02-15 21:30:53'), +(6785,'2005-07-12 16:30:57',4448,69,'2005-07-18 20:46:57',1,'2006-02-15 21:30:53'), +(6786,'2005-07-12 16:32:33',2011,546,'2005-07-16 12:42:33',2,'2006-02-15 21:30:53'), +(6787,'2005-07-12 16:33:28',1481,342,'2005-07-18 21:48:28',2,'2006-02-15 21:30:53'), +(6788,'2005-07-12 16:33:44',1162,460,'2005-07-20 15:38:44',2,'2006-02-15 21:30:53'), +(6789,'2005-07-12 16:34:40',1973,76,'2005-07-14 17:02:40',2,'2006-02-15 21:30:53'), +(6790,'2005-07-12 16:34:59',4486,400,'2005-07-17 21:43:59',2,'2006-02-15 21:30:53'), +(6791,'2005-07-12 16:35:07',1495,144,'2005-07-20 15:32:07',2,'2006-02-15 21:30:53'), +(6792,'2005-07-12 16:37:28',510,571,'2005-07-20 11:20:28',2,'2006-02-15 21:30:53'), +(6793,'2005-07-12 16:37:55',103,148,'2005-07-21 16:04:55',2,'2006-02-15 21:30:53'), +(6794,'2005-07-12 16:38:23',813,233,'2005-07-20 17:36:23',2,'2006-02-15 21:30:53'), +(6795,'2005-07-12 16:41:00',1489,245,'2005-07-21 20:52:00',1,'2006-02-15 21:30:53'), +(6796,'2005-07-12 16:44:16',227,291,'2005-07-16 14:48:16',2,'2006-02-15 21:30:53'), +(6797,'2005-07-12 16:47:06',1536,469,'2005-07-14 14:38:06',2,'2006-02-15 21:30:53'), +(6798,'2005-07-12 16:49:11',275,115,'2005-07-19 12:11:11',2,'2006-02-15 21:30:53'), +(6799,'2005-07-12 16:52:13',2778,42,'2005-07-14 15:11:13',2,'2006-02-15 21:30:53'), +(6800,'2005-07-12 17:03:56',3742,599,'2005-07-21 20:32:56',2,'2006-02-15 21:30:53'), +(6801,'2005-07-12 17:09:08',872,500,'2005-07-21 22:25:08',1,'2006-02-15 21:30:53'), +(6802,'2005-07-12 17:14:17',2942,298,'2005-07-17 11:54:17',2,'2006-02-15 21:30:53'), +(6803,'2005-07-12 17:21:49',2676,490,'2005-07-14 18:01:49',2,'2006-02-15 21:30:53'), +(6804,'2005-07-12 17:22:06',1554,269,'2005-07-21 11:37:06',1,'2006-02-15 21:30:53'), +(6805,'2005-07-12 17:23:01',1758,262,'2005-07-21 19:38:01',2,'2006-02-15 21:30:53'), +(6806,'2005-07-12 17:31:43',656,179,'2005-07-17 14:36:43',1,'2006-02-15 21:30:53'), +(6807,'2005-07-12 17:33:53',669,376,'2005-07-18 16:28:53',2,'2006-02-15 21:30:53'), +(6808,'2005-07-12 17:36:42',362,263,'2005-07-18 23:33:42',2,'2006-02-15 21:30:53'), +(6809,'2005-07-12 17:51:54',3455,168,'2005-07-17 15:10:54',1,'2006-02-15 21:30:53'), +(6810,'2005-07-12 17:54:19',2802,485,'2005-07-20 16:58:19',2,'2006-02-15 21:30:53'), +(6811,'2005-07-12 17:54:33',1572,107,'2005-07-20 17:39:33',1,'2006-02-15 21:30:53'), +(6812,'2005-07-12 18:03:25',2227,553,'2005-07-20 18:33:25',2,'2006-02-15 21:30:53'), +(6813,'2005-07-12 18:03:50',135,54,'2005-07-16 16:30:50',1,'2006-02-15 21:30:53'), +(6814,'2005-07-12 18:11:58',1863,579,'2005-07-18 20:37:58',2,'2006-02-15 21:30:53'), +(6815,'2005-07-12 18:14:10',3236,468,'2005-07-17 14:16:10',1,'2006-02-15 21:30:53'), +(6816,'2005-07-12 18:18:50',2963,290,'2005-07-18 21:09:50',2,'2006-02-15 21:30:53'), +(6817,'2005-07-12 18:19:57',184,135,'2005-07-19 22:53:57',1,'2006-02-15 21:30:53'), +(6818,'2005-07-12 18:20:54',1013,153,'2005-07-21 00:03:54',2,'2006-02-15 21:30:53'), +(6819,'2005-07-12 18:21:01',1253,198,'2005-07-13 21:14:01',1,'2006-02-15 21:30:53'), +(6820,'2005-07-12 18:21:30',223,243,'2005-07-14 15:14:30',1,'2006-02-15 21:30:53'), +(6821,'2005-07-12 18:22:10',623,363,'2005-07-14 13:25:10',2,'2006-02-15 21:30:53'), +(6822,'2005-07-12 18:23:39',1592,300,'2005-07-19 21:06:39',1,'2006-02-15 21:30:53'), +(6823,'2005-07-12 18:24:31',795,557,'2005-07-17 23:13:31',1,'2006-02-15 21:30:53'), +(6824,'2005-07-12 18:26:46',858,579,'2005-07-21 15:23:46',1,'2006-02-15 21:30:53'), +(6825,'2005-07-12 18:28:12',2342,281,'2005-07-15 19:24:12',1,'2006-02-15 21:30:53'), +(6826,'2005-07-12 18:32:02',1708,408,'2005-07-16 23:21:02',1,'2006-02-15 21:30:53'), +(6827,'2005-07-12 18:33:45',1529,283,'2005-07-13 19:09:45',1,'2006-02-15 21:30:53'), +(6828,'2005-07-12 18:38:51',874,502,'2005-07-14 20:10:51',1,'2006-02-15 21:30:53'), +(6829,'2005-07-12 18:38:59',4184,361,'2005-07-16 23:25:59',1,'2006-02-15 21:30:53'), +(6830,'2005-07-12 18:42:55',1943,578,'2005-07-17 17:58:55',1,'2006-02-15 21:30:53'), +(6831,'2005-07-12 18:44:04',924,163,'2005-07-16 21:39:04',2,'2006-02-15 21:30:53'), +(6832,'2005-07-12 18:51:41',444,220,'2005-07-20 13:29:41',2,'2006-02-15 21:30:53'), +(6833,'2005-07-12 18:53:34',912,301,'2005-07-19 22:21:34',2,'2006-02-15 21:30:53'), +(6834,'2005-07-12 18:53:37',897,533,'2005-07-19 13:42:37',1,'2006-02-15 21:30:53'), +(6835,'2005-07-12 18:58:03',1444,367,'2005-07-18 00:41:03',1,'2006-02-15 21:30:53'), +(6836,'2005-07-12 18:58:05',2744,113,'2005-07-15 17:45:05',1,'2006-02-15 21:30:53'), +(6837,'2005-07-12 18:59:45',1203,533,'2005-07-21 22:47:45',2,'2006-02-15 21:30:53'), +(6838,'2005-07-12 19:01:30',3492,354,'2005-07-17 23:42:30',1,'2006-02-15 21:30:53'), +(6839,'2005-07-12 19:03:19',3900,357,'2005-07-15 23:48:19',1,'2006-02-15 21:30:53'), +(6840,'2005-07-12 19:03:22',1381,323,'2005-07-21 18:34:22',2,'2006-02-15 21:30:53'), +(6841,'2005-07-12 19:04:24',2265,108,'2005-07-14 23:58:24',1,'2006-02-15 21:30:53'), +(6842,'2005-07-12 19:07:55',3376,366,'2005-07-19 22:47:55',1,'2006-02-15 21:30:53'), +(6843,'2005-07-12 19:14:05',746,561,'2005-07-20 23:15:05',1,'2006-02-15 21:30:53'), +(6844,'2005-07-12 19:14:53',3211,482,'2005-07-18 16:07:53',2,'2006-02-15 21:30:53'), +(6845,'2005-07-12 19:20:41',3833,414,'2005-07-14 15:27:41',1,'2006-02-15 21:30:53'), +(6846,'2005-07-12 19:20:45',1214,18,'2005-07-17 00:06:45',1,'2006-02-15 21:30:53'), +(6847,'2005-07-12 19:22:37',346,63,'2005-07-21 18:53:37',2,'2006-02-15 21:30:53'), +(6848,'2005-07-12 19:24:07',1782,433,'2005-07-14 17:03:07',1,'2006-02-15 21:30:53'), +(6849,'2005-07-12 19:29:19',4307,479,'2005-07-19 22:03:19',1,'2006-02-15 21:30:53'), +(6850,'2005-07-12 19:30:42',1145,433,'2005-07-17 21:26:42',2,'2006-02-15 21:30:53'), +(6851,'2005-07-12 19:32:14',664,280,'2005-07-17 21:03:14',1,'2006-02-15 21:30:53'), +(6852,'2005-07-12 19:33:49',2182,75,'2005-07-13 20:01:49',2,'2006-02-15 21:30:53'), +(6853,'2005-07-12 19:38:11',4006,299,'2005-07-20 00:14:11',1,'2006-02-15 21:30:53'), +(6854,'2005-07-12 19:38:57',3173,151,'2005-07-16 16:28:57',1,'2006-02-15 21:30:53'), +(6855,'2005-07-12 19:46:29',2657,24,'2005-07-15 16:56:29',2,'2006-02-15 21:30:53'), +(6856,'2005-07-12 19:50:16',4338,275,'2005-07-14 22:25:16',1,'2006-02-15 21:30:53'), +(6857,'2005-07-12 19:53:30',424,196,'2005-07-13 15:22:30',1,'2006-02-15 21:30:53'), +(6858,'2005-07-12 19:53:51',1095,516,'2005-07-19 14:12:51',1,'2006-02-15 21:30:53'), +(6859,'2005-07-12 19:53:57',4108,321,'2005-07-17 19:48:57',2,'2006-02-15 21:30:53'), +(6860,'2005-07-12 19:54:17',2907,91,'2005-07-18 13:59:17',1,'2006-02-15 21:30:53'), +(6861,'2005-07-12 19:56:52',354,83,'2005-07-13 16:02:52',1,'2006-02-15 21:30:53'), +(6862,'2005-07-12 19:58:09',3477,231,'2005-07-18 15:48:09',2,'2006-02-15 21:30:53'), +(6863,'2005-07-12 19:58:34',229,484,'2005-07-21 16:57:34',1,'2006-02-15 21:30:53'), +(6864,'2005-07-12 19:59:25',2252,38,'2005-07-19 15:52:25',2,'2006-02-15 21:30:53'), +(6865,'2005-07-12 20:02:40',1428,175,'2005-07-20 00:39:40',2,'2006-02-15 21:30:53'), +(6866,'2005-07-12 20:03:44',2481,312,'2005-07-15 01:55:44',1,'2006-02-15 21:30:53'), +(6867,'2005-07-12 20:06:47',3354,190,'2005-07-19 16:59:47',1,'2006-02-15 21:30:53'), +(6868,'2005-07-12 20:10:17',719,306,'2005-07-15 22:34:17',2,'2006-02-15 21:30:53'), +(6869,'2005-07-12 20:12:06',3546,278,'2005-07-13 18:37:06',1,'2006-02-15 21:30:53'), +(6870,'2005-07-12 20:13:45',3102,13,'2005-07-16 22:09:45',2,'2006-02-15 21:30:53'), +(6871,'2005-07-12 20:13:49',3612,204,'2005-07-14 20:11:49',2,'2006-02-15 21:30:53'), +(6872,'2005-07-12 20:15:04',3246,86,'2005-07-18 18:19:04',1,'2006-02-15 21:30:53'), +(6873,'2005-07-12 20:20:50',802,161,'2005-07-17 01:51:50',1,'2006-02-15 21:30:53'), +(6874,'2005-07-12 20:20:53',4478,539,'2005-07-19 19:41:53',1,'2006-02-15 21:30:53'), +(6875,'2005-07-12 20:23:05',3420,172,'2005-07-19 00:09:05',2,'2006-02-15 21:30:53'), +(6876,'2005-07-12 20:32:50',34,531,'2005-07-16 21:12:50',1,'2006-02-15 21:30:53'), +(6877,'2005-07-12 20:32:58',3968,231,'2005-07-18 18:01:58',1,'2006-02-15 21:30:53'), +(6878,'2005-07-12 20:37:13',2428,363,'2005-07-19 20:13:13',2,'2006-02-15 21:30:53'), +(6879,'2005-07-12 20:37:37',1901,416,'2005-07-20 15:40:37',2,'2006-02-15 21:30:53'), +(6880,'2005-07-12 20:41:35',1473,229,'2005-07-17 02:22:35',1,'2006-02-15 21:30:53'), +(6881,'2005-07-12 20:46:35',2496,346,'2005-07-21 00:26:35',2,'2006-02-15 21:30:53'), +(6882,'2005-07-12 20:50:39',2469,166,'2005-07-14 21:01:39',1,'2006-02-15 21:30:53'), +(6883,'2005-07-12 20:50:48',468,596,'2005-07-19 16:00:48',2,'2006-02-15 21:30:53'), +(6884,'2005-07-12 20:52:41',3642,17,'2005-07-20 23:13:41',1,'2006-02-15 21:30:53'), +(6885,'2005-07-12 20:56:04',3972,159,'2005-07-15 19:21:04',2,'2006-02-15 21:30:53'), +(6886,'2005-07-12 20:58:04',4533,429,'2005-07-18 16:56:04',2,'2006-02-15 21:30:53'), +(6887,'2005-07-12 21:00:23',4487,542,'2005-07-21 17:46:23',1,'2006-02-15 21:30:53'), +(6888,'2005-07-12 21:01:11',1896,490,'2005-07-17 21:49:11',2,'2006-02-15 21:30:53'), +(6889,'2005-07-12 21:01:22',2919,198,'2005-07-20 20:16:22',2,'2006-02-15 21:30:53'), +(6890,'2005-07-12 21:03:03',2538,473,'2005-07-14 00:47:03',1,'2006-02-15 21:30:53'), +(6891,'2005-07-12 21:07:35',3189,507,'2005-07-14 16:59:35',2,'2006-02-15 21:30:53'), +(6892,'2005-07-12 21:10:04',1567,138,'2005-07-13 23:03:04',2,'2006-02-15 21:30:53'), +(6893,'2005-07-12 21:20:11',2611,377,'2005-07-21 18:55:11',2,'2006-02-15 21:30:53'), +(6894,'2005-07-12 21:20:50',1347,315,'2005-07-20 23:42:50',2,'2006-02-15 21:30:53'), +(6895,'2005-07-12 21:23:59',2935,599,'2005-07-19 20:47:59',2,'2006-02-15 21:30:53'), +(6896,'2005-07-12 21:25:37',1266,111,'2005-07-20 23:51:37',1,'2006-02-15 21:30:53'), +(6897,'2005-07-12 21:30:41',170,13,'2005-07-15 03:19:41',1,'2006-02-15 21:30:53'), +(6898,'2005-07-12 21:39:04',1725,557,'2005-07-15 20:30:04',1,'2006-02-15 21:30:53'), +(6899,'2005-07-12 21:44:16',3565,483,'2005-07-21 22:21:16',2,'2006-02-15 21:30:53'), +(6900,'2005-07-12 21:45:25',129,292,'2005-07-19 21:19:25',1,'2006-02-15 21:30:53'), +(6901,'2005-07-12 21:46:33',4574,158,'2005-07-16 21:36:33',1,'2006-02-15 21:30:53'), +(6902,'2005-07-12 21:57:16',314,485,'2005-07-14 20:56:16',1,'2006-02-15 21:30:53'), +(6903,'2005-07-12 21:58:15',3690,517,'2005-07-14 01:38:15',2,'2006-02-15 21:30:53'), +(6904,'2005-07-12 22:02:09',2312,465,'2005-07-17 16:42:09',1,'2006-02-15 21:30:53'), +(6905,'2005-07-12 22:02:18',763,25,'2005-07-18 23:30:18',1,'2006-02-15 21:30:53'), +(6906,'2005-07-12 22:03:02',1435,335,'2005-07-15 00:35:02',1,'2006-02-15 21:30:53'), +(6907,'2005-07-12 22:03:49',2516,575,'2005-07-18 19:18:49',1,'2006-02-15 21:30:53'), +(6908,'2005-07-12 22:08:46',3161,529,'2005-07-21 00:21:46',2,'2006-02-15 21:30:53'), +(6909,'2005-07-12 22:09:30',769,174,'2005-07-17 02:05:30',2,'2006-02-15 21:30:53'), +(6910,'2005-07-12 22:11:21',1290,546,'2005-07-21 02:35:21',1,'2006-02-15 21:30:53'), +(6911,'2005-07-12 22:14:34',901,361,'2005-07-18 20:17:34',1,'2006-02-15 21:30:53'), +(6912,'2005-07-12 22:17:16',1701,471,'2005-07-19 18:18:16',1,'2006-02-15 21:30:53'), +(6913,'2005-07-12 22:18:12',569,443,'2005-07-14 23:03:12',2,'2006-02-15 21:30:53'), +(6914,'2005-07-12 22:26:56',496,361,'2005-07-17 20:03:56',1,'2006-02-15 21:30:53'), +(6915,'2005-07-12 22:28:09',1243,559,'2005-07-14 00:53:09',1,'2006-02-15 21:30:53'), +(6916,'2005-07-12 22:29:18',3311,88,'2005-07-19 16:46:18',1,'2006-02-15 21:30:53'), +(6917,'2005-07-12 22:30:15',3048,23,'2005-07-20 03:20:15',1,'2006-02-15 21:30:53'), +(6918,'2005-07-12 22:30:29',4085,140,'2005-07-19 22:51:29',1,'2006-02-15 21:30:53'), +(6919,'2005-07-12 22:32:17',1122,540,'2005-07-18 20:09:17',1,'2006-02-15 21:30:53'), +(6920,'2005-07-12 22:32:58',2301,109,'2005-07-19 20:29:58',2,'2006-02-15 21:30:53'), +(6921,'2005-07-12 22:39:03',3322,265,'2005-07-21 18:54:03',2,'2006-02-15 21:30:53'), +(6922,'2005-07-12 22:39:48',1114,371,'2005-07-14 18:35:48',1,'2006-02-15 21:30:53'), +(6923,'2005-07-12 22:40:48',2642,490,'2005-07-19 23:07:48',2,'2006-02-15 21:30:53'), +(6924,'2005-07-26 22:51:53',1257,502,'2005-08-03 19:04:53',2,'2006-02-15 21:30:53'), +(6925,'2005-07-26 22:52:32',2919,42,'2005-07-29 21:22:32',1,'2006-02-15 21:30:53'), +(6926,'2005-07-26 22:52:45',1276,354,'2005-07-28 18:32:45',1,'2006-02-15 21:30:53'), +(6927,'2005-07-26 22:56:00',4511,470,'2005-08-05 03:16:00',2,'2006-02-15 21:30:53'), +(6928,'2005-07-26 22:56:21',3605,487,'2005-07-30 04:46:21',1,'2006-02-15 21:30:53'), +(6929,'2005-07-26 22:59:19',3339,508,'2005-08-03 22:40:19',1,'2006-02-15 21:30:53'), +(6930,'2005-07-26 23:00:01',2989,393,'2005-08-04 01:57:01',2,'2006-02-15 21:30:53'), +(6931,'2005-07-26 23:02:57',2794,333,'2005-07-28 04:48:57',2,'2006-02-15 21:30:53'), +(6932,'2005-07-26 23:08:04',4517,463,'2005-08-05 01:35:04',1,'2006-02-15 21:30:53'), +(6933,'2005-07-26 23:09:23',1334,385,'2005-07-31 20:50:23',1,'2006-02-15 21:30:53'), +(6934,'2005-07-26 23:11:03',455,107,'2005-08-04 19:18:03',1,'2006-02-15 21:30:53'), +(6935,'2005-07-26 23:13:10',2771,435,'2005-07-27 18:09:10',1,'2006-02-15 21:30:53'), +(6936,'2005-07-26 23:13:34',60,538,'2005-07-30 19:14:34',1,'2006-02-15 21:30:53'), +(6937,'2005-07-26 23:15:50',1768,592,'2005-07-27 19:14:50',1,'2006-02-15 21:30:53'), +(6938,'2005-07-26 23:16:04',2058,427,'2005-08-05 00:59:04',2,'2006-02-15 21:30:53'), +(6939,'2005-07-26 23:17:51',278,354,'2005-08-03 21:12:51',2,'2006-02-15 21:30:53'), +(6940,'2005-07-26 23:18:35',3876,149,'2005-08-05 01:44:35',2,'2006-02-15 21:30:53'), +(6941,'2005-07-26 23:18:49',1575,441,'2005-07-31 00:23:49',2,'2006-02-15 21:30:53'), +(6942,'2005-07-26 23:27:40',1203,470,'2005-07-31 03:17:40',2,'2006-02-15 21:30:53'), +(6943,'2005-07-26 23:28:13',2436,21,'2005-07-30 02:22:13',2,'2006-02-15 21:30:53'), +(6944,'2005-07-26 23:34:02',1168,373,'2005-08-05 01:27:02',1,'2006-02-15 21:30:53'), +(6945,'2005-07-26 23:35:29',1627,560,'2005-07-28 00:12:29',1,'2006-02-15 21:30:53'), +(6946,'2005-07-26 23:40:07',1854,181,'2005-08-04 01:18:07',2,'2006-02-15 21:30:53'), +(6947,'2005-07-26 23:42:03',760,200,'2005-08-02 05:06:03',2,'2006-02-15 21:30:53'), +(6948,'2005-07-26 23:43:49',3088,228,'2005-07-27 21:24:49',2,'2006-02-15 21:30:53'), +(6949,'2005-07-26 23:44:12',1594,103,'2005-07-30 05:39:12',2,'2006-02-15 21:30:53'), +(6950,'2005-07-26 23:45:33',197,503,'2005-07-31 04:40:33',2,'2006-02-15 21:30:53'), +(6951,'2005-07-26 23:47:31',3348,98,'2005-07-31 22:17:31',1,'2006-02-15 21:30:53'), +(6952,'2005-07-26 23:51:27',4288,290,'2005-07-30 02:45:27',2,'2006-02-15 21:30:53'), +(6953,'2005-07-26 23:52:47',2910,306,'2005-07-30 23:07:47',1,'2006-02-15 21:30:53'), +(6954,'2005-07-26 23:55:13',1112,584,'2005-07-28 19:01:13',2,'2006-02-15 21:30:53'), +(6955,'2005-07-26 23:55:48',1104,469,'2005-08-02 03:25:48',2,'2006-02-15 21:30:53'), +(6956,'2005-07-26 23:55:57',2499,240,'2005-08-03 21:41:57',1,'2006-02-15 21:30:53'), +(6957,'2005-07-27 00:00:00',2231,518,'2005-07-29 19:32:00',2,'2006-02-15 21:30:53'), +(6958,'2005-07-27 00:02:41',657,333,'2005-07-28 00:53:41',2,'2006-02-15 21:30:53'), +(6959,'2005-07-27 00:07:51',1618,452,'2005-07-27 20:45:51',2,'2006-02-15 21:30:53'), +(6960,'2005-07-27 00:08:33',192,421,'2005-08-03 20:58:33',2,'2006-02-15 21:30:53'), +(6961,'2005-07-27 00:10:49',2205,38,'2005-07-30 00:26:49',2,'2006-02-15 21:30:53'), +(6962,'2005-07-27 00:10:58',4500,245,'2005-07-30 02:11:58',2,'2006-02-15 21:30:53'), +(6963,'2005-07-27 00:13:02',4284,489,'2005-08-03 18:13:02',1,'2006-02-15 21:30:53'), +(6964,'2005-07-27 00:15:04',1537,404,'2005-07-31 00:04:04',2,'2006-02-15 21:30:53'), +(6965,'2005-07-27 00:15:18',74,185,'2005-07-28 04:30:18',2,'2006-02-15 21:30:53'), +(6966,'2005-07-27 00:15:35',1577,45,'2005-08-05 03:04:35',2,'2006-02-15 21:30:53'), +(6967,'2005-07-27 00:16:31',1145,296,'2005-08-03 22:19:31',1,'2006-02-15 21:30:53'), +(6968,'2005-07-27 00:16:45',1662,370,'2005-07-30 23:16:45',2,'2006-02-15 21:30:53'), +(6969,'2005-07-27 00:23:54',2650,579,'2005-08-03 04:34:54',1,'2006-02-15 21:30:53'), +(6970,'2005-07-27 00:26:14',17,418,'2005-08-03 20:00:14',2,'2006-02-15 21:30:53'), +(6971,'2005-07-27 00:26:17',3493,366,'2005-08-01 03:59:17',2,'2006-02-15 21:30:53'), +(6972,'2005-07-27 00:31:25',1716,434,'2005-07-28 22:15:25',2,'2006-02-15 21:30:53'), +(6973,'2005-07-27 00:32:04',4572,564,'2005-07-29 01:05:04',2,'2006-02-15 21:30:53'), +(6974,'2005-07-27 00:39:16',2924,122,'2005-08-04 01:59:16',2,'2006-02-15 21:30:53'), +(6975,'2005-07-27 00:39:54',3328,527,'2005-08-02 19:49:54',1,'2006-02-15 21:30:53'), +(6976,'2005-07-27 00:40:01',3096,41,'2005-07-31 22:30:01',2,'2006-02-15 21:30:53'), +(6977,'2005-07-27 00:40:50',3545,429,'2005-08-02 19:08:50',2,'2006-02-15 21:30:53'), +(6978,'2005-07-27 00:47:40',3645,132,'2005-07-31 04:32:40',2,'2006-02-15 21:30:53'), +(6979,'2005-07-27 00:49:53',1001,141,'2005-07-31 03:59:53',2,'2006-02-15 21:30:53'), +(6980,'2005-07-27 00:50:30',1127,164,'2005-08-03 23:35:30',1,'2006-02-15 21:30:53'), +(6981,'2005-07-27 00:51:38',154,362,'2005-07-28 01:06:38',2,'2006-02-15 21:30:53'), +(6982,'2005-07-27 00:53:41',3843,284,'2005-07-31 06:19:41',2,'2006-02-15 21:30:53'), +(6983,'2005-07-27 00:55:03',1758,443,'2005-08-01 21:19:03',2,'2006-02-15 21:30:53'), +(6984,'2005-07-27 00:56:30',2407,297,'2005-08-02 01:14:30',2,'2006-02-15 21:30:53'), +(6985,'2005-07-27 00:57:42',1834,448,'2005-07-31 00:53:42',1,'2006-02-15 21:30:53'), +(6986,'2005-07-27 00:59:05',2104,262,'2005-07-29 00:31:05',1,'2006-02-15 21:30:53'), +(6987,'2005-07-27 00:59:50',3134,334,'2005-07-28 01:47:50',1,'2006-02-15 21:30:53'), +(6988,'2005-07-27 01:00:08',756,316,'2005-07-31 04:35:08',2,'2006-02-15 21:30:53'), +(6989,'2005-07-27 01:00:34',4036,120,'2005-07-30 23:53:34',1,'2006-02-15 21:30:53'), +(6990,'2005-07-27 01:02:46',4065,146,'2005-07-31 00:22:46',1,'2006-02-15 21:30:53'), +(6991,'2005-07-27 01:03:06',319,307,'2005-08-05 04:18:06',2,'2006-02-15 21:30:53'), +(6992,'2005-07-27 01:04:45',3411,106,'2005-07-28 02:34:45',2,'2006-02-15 21:30:53'), +(6993,'2005-07-27 01:05:24',3114,154,'2005-07-30 06:23:24',2,'2006-02-15 21:30:53'), +(6994,'2005-07-27 01:08:26',4316,400,'2005-08-04 22:58:26',2,'2006-02-15 21:30:53'), +(6995,'2005-07-27 01:12:13',1630,66,'2005-07-29 21:26:13',1,'2006-02-15 21:30:53'), +(6996,'2005-07-27 01:13:45',3237,236,'2005-07-28 20:43:45',1,'2006-02-15 21:30:53'), +(6997,'2005-07-27 01:14:02',2130,342,'2005-07-29 01:12:02',2,'2006-02-15 21:30:53'), +(6998,'2005-07-27 01:16:29',788,300,'2005-07-30 05:50:29',2,'2006-02-15 21:30:53'), +(6999,'2005-07-27 01:21:19',12,224,'2005-07-29 20:33:19',2,'2006-02-15 21:30:53'), +(7000,'2005-07-27 01:23:24',2024,31,'2005-08-03 02:10:24',2,'2006-02-15 21:30:53'), +(7001,'2005-07-27 01:25:34',1460,240,'2005-07-31 23:30:34',2,'2006-02-15 21:30:53'), +(7002,'2005-07-27 01:26:14',4157,349,'2005-08-01 20:10:14',1,'2006-02-15 21:30:53'), +(7003,'2005-07-27 01:32:06',636,161,'2005-07-30 21:33:06',2,'2006-02-15 21:30:53'), +(7004,'2005-07-27 01:36:05',4416,314,'2005-08-03 23:46:05',1,'2006-02-15 21:30:53'), +(7005,'2005-07-27 01:38:36',2438,446,'2005-08-02 05:56:36',2,'2006-02-15 21:30:53'), +(7006,'2005-07-27 01:42:20',3522,264,'2005-08-03 03:19:20',1,'2006-02-15 21:30:53'), +(7007,'2005-07-27 01:43:39',4186,257,'2005-07-31 21:04:39',1,'2006-02-15 21:30:53'), +(7008,'2005-07-27 01:44:03',3659,12,'2005-07-28 21:19:03',2,'2006-02-15 21:30:53'), +(7009,'2005-07-27 01:45:44',1585,414,'2005-07-28 05:50:44',1,'2006-02-15 21:30:53'), +(7010,'2005-07-27 01:56:01',3016,590,'2005-07-30 04:40:01',1,'2006-02-15 21:30:53'), +(7011,'2005-07-27 01:58:34',4082,254,'2005-07-28 06:11:34',1,'2006-02-15 21:30:53'), +(7012,'2005-07-27 02:01:03',779,239,'2005-08-05 07:34:03',2,'2006-02-15 21:30:53'), +(7013,'2005-07-27 02:03:21',3919,463,'2005-07-31 22:12:21',1,'2006-02-15 21:30:53'), +(7014,'2005-07-27 02:14:40',714,524,'2005-08-03 00:32:40',2,'2006-02-15 21:30:53'), +(7015,'2005-07-27 02:15:01',376,34,'2005-07-28 07:46:01',2,'2006-02-15 21:30:53'), +(7016,'2005-07-27 02:15:16',1425,423,'2005-08-01 23:08:16',2,'2006-02-15 21:30:53'), +(7017,'2005-07-27 02:16:03',753,176,'2005-07-31 07:49:03',1,'2006-02-15 21:30:53'), +(7018,'2005-07-27 02:20:22',1078,451,'2005-08-02 05:04:22',2,'2006-02-15 21:30:53'), +(7019,'2005-07-27 02:20:26',3837,491,'2005-08-02 22:48:26',1,'2006-02-15 21:30:53'), +(7020,'2005-07-27 02:24:27',3965,506,'2005-07-29 01:27:27',2,'2006-02-15 21:30:53'), +(7021,'2005-07-27 02:26:38',2690,380,'2005-08-05 01:18:38',1,'2006-02-15 21:30:53'), +(7022,'2005-07-27 02:31:15',1711,243,'2005-07-29 02:52:15',1,'2006-02-15 21:30:53'), +(7023,'2005-07-27 02:32:44',4196,303,'2005-08-03 04:06:44',1,'2006-02-15 21:30:53'), +(7024,'2005-07-27 02:36:40',3113,252,'2005-07-28 06:58:40',1,'2006-02-15 21:30:53'), +(7025,'2005-07-27 02:40:29',3530,176,'2005-07-29 23:02:29',2,'2006-02-15 21:30:53'), +(7026,'2005-07-27 02:48:58',3456,493,'2005-07-29 03:41:58',2,'2006-02-15 21:30:53'), +(7027,'2005-07-27 02:50:15',3280,61,'2005-08-04 02:58:15',1,'2006-02-15 21:30:53'), +(7028,'2005-07-27 02:54:25',834,179,'2005-08-02 06:16:25',2,'2006-02-15 21:30:53'), +(7029,'2005-07-27 02:57:43',2862,389,'2005-07-30 08:24:43',1,'2006-02-15 21:30:53'), +(7030,'2005-07-27 03:01:40',1277,550,'2005-07-31 07:01:40',1,'2006-02-15 21:30:53'), +(7031,'2005-07-27 03:02:07',1435,530,'2005-08-02 07:14:07',1,'2006-02-15 21:30:53'), +(7032,'2005-07-27 03:03:09',3397,269,'2005-07-28 22:57:09',1,'2006-02-15 21:30:53'), +(7033,'2005-07-27 03:03:25',2803,352,'2005-07-28 01:57:25',2,'2006-02-15 21:30:53'), +(7034,'2005-07-27 03:03:37',1712,281,'2005-07-28 23:18:37',1,'2006-02-15 21:30:53'), +(7035,'2005-07-27 03:06:09',2439,90,'2005-08-02 21:59:09',2,'2006-02-15 21:30:53'), +(7036,'2005-07-27 03:06:12',2569,70,'2005-07-28 23:26:12',2,'2006-02-15 21:30:53'), +(7037,'2005-07-27 03:06:44',3155,171,'2005-08-02 04:51:44',2,'2006-02-15 21:30:53'), +(7038,'2005-07-27 03:07:29',1909,518,'2005-07-31 04:55:29',2,'2006-02-15 21:30:53'), +(7039,'2005-07-27 03:11:48',1906,99,'2005-08-01 23:55:48',1,'2006-02-15 21:30:53'), +(7040,'2005-07-27 03:17:19',470,524,'2005-07-29 07:03:19',2,'2006-02-15 21:30:53'), +(7041,'2005-07-27 03:18:32',4212,379,'2005-07-30 06:40:32',2,'2006-02-15 21:30:53'), +(7042,'2005-07-27 03:20:18',399,188,'2005-08-01 02:23:18',1,'2006-02-15 21:30:53'), +(7043,'2005-07-27 03:24:23',3422,493,'2005-08-05 02:55:23',2,'2006-02-15 21:30:53'), +(7044,'2005-07-27 03:27:29',88,147,'2005-08-01 07:00:29',2,'2006-02-15 21:30:53'), +(7045,'2005-07-27 03:27:35',1788,64,'2005-08-01 06:31:35',2,'2006-02-15 21:30:53'), +(7046,'2005-07-27 03:27:56',3740,349,'2005-07-30 00:54:56',2,'2006-02-15 21:30:53'), +(7047,'2005-07-27 03:31:11',2866,236,'2005-08-03 23:40:11',1,'2006-02-15 21:30:53'), +(7048,'2005-07-27 03:31:48',3707,581,'2005-08-05 07:30:48',2,'2006-02-15 21:30:53'), +(7049,'2005-07-27 03:32:41',3043,332,'2005-08-04 08:32:41',2,'2006-02-15 21:30:53'), +(7050,'2005-07-27 03:33:17',1135,55,'2005-08-02 03:12:17',1,'2006-02-15 21:30:53'), +(7051,'2005-07-27 03:34:37',1310,184,'2005-07-31 03:48:37',2,'2006-02-15 21:30:53'), +(7052,'2005-07-27 03:36:38',3798,75,'2005-08-03 21:51:38',1,'2006-02-15 21:30:53'), +(7053,'2005-07-27 03:38:54',149,408,'2005-07-31 01:13:54',1,'2006-02-15 21:30:53'), +(7054,'2005-07-27 03:43:28',2661,179,'2005-08-04 09:15:28',1,'2006-02-15 21:30:53'), +(7055,'2005-07-27 03:45:42',4305,154,'2005-07-30 05:11:42',1,'2006-02-15 21:30:53'), +(7056,'2005-07-27 03:46:27',805,233,'2005-08-05 07:46:27',1,'2006-02-15 21:30:53'), +(7057,'2005-07-27 03:50:03',1196,320,'2005-08-04 04:36:03',1,'2006-02-15 21:30:53'), +(7058,'2005-07-27 03:50:46',716,90,'2005-08-04 07:40:46',2,'2006-02-15 21:30:53'), +(7059,'2005-07-27 03:51:02',129,578,'2005-08-02 22:04:02',1,'2006-02-15 21:30:53'), +(7060,'2005-07-27 03:51:04',3912,479,'2005-08-03 07:53:04',1,'2006-02-15 21:30:53'), +(7061,'2005-07-27 03:51:10',880,145,'2005-07-31 05:36:10',1,'2006-02-15 21:30:53'), +(7062,'2005-07-27 03:52:01',226,469,'2005-08-03 08:26:01',1,'2006-02-15 21:30:53'), +(7063,'2005-07-27 03:52:27',2125,58,'2005-08-04 07:53:27',1,'2006-02-15 21:30:53'), +(7064,'2005-07-27 03:53:29',4204,320,'2005-08-03 06:32:29',1,'2006-02-15 21:30:53'), +(7065,'2005-07-27 03:53:43',3570,536,'2005-07-30 23:41:43',2,'2006-02-15 21:30:53'), +(7066,'2005-07-27 03:53:52',1862,185,'2005-08-05 03:32:52',1,'2006-02-15 21:30:53'), +(7067,'2005-07-27 03:55:10',870,60,'2005-08-01 02:56:10',1,'2006-02-15 21:30:53'), +(7068,'2005-07-27 03:57:50',4465,568,'2005-07-30 04:27:50',1,'2006-02-15 21:30:53'), +(7069,'2005-07-27 03:59:35',2073,343,'2005-08-05 03:33:35',1,'2006-02-15 21:30:53'), +(7070,'2005-07-27 04:01:08',4182,280,'2005-07-30 08:10:08',2,'2006-02-15 21:30:53'), +(7071,'2005-07-27 04:01:15',4361,61,'2005-08-03 05:18:15',2,'2006-02-15 21:30:53'), +(7072,'2005-07-27 04:02:33',3899,260,'2005-07-28 09:26:33',2,'2006-02-15 21:30:53'), +(7073,'2005-07-27 04:03:26',3859,92,'2005-08-03 05:50:26',1,'2006-02-15 21:30:53'), +(7074,'2005-07-27 04:06:24',1390,165,'2005-07-28 02:04:24',1,'2006-02-15 21:30:53'), +(7075,'2005-07-27 04:11:40',4414,530,'2005-08-03 08:16:40',2,'2006-02-15 21:30:53'), +(7076,'2005-07-27 04:12:14',2821,333,'2005-08-05 00:44:14',1,'2006-02-15 21:30:53'), +(7077,'2005-07-27 04:13:02',3186,155,'2005-07-31 23:15:02',1,'2006-02-15 21:30:53'), +(7078,'2005-07-27 04:16:37',4518,545,'2005-08-05 02:34:37',1,'2006-02-15 21:30:53'), +(7079,'2005-07-27 04:21:58',4356,356,'2005-08-04 08:08:58',1,'2006-02-15 21:30:53'), +(7080,'2005-07-27 04:25:25',710,466,'2005-08-04 04:22:25',2,'2006-02-15 21:30:53'), +(7081,'2005-07-27 04:25:59',462,420,'2005-08-01 00:14:59',1,'2006-02-15 21:30:53'), +(7082,'2005-07-27 04:27:32',2032,64,'2005-07-30 06:06:32',2,'2006-02-15 21:30:53'), +(7083,'2005-07-27 04:28:39',2663,575,'2005-07-30 04:35:39',2,'2006-02-15 21:30:53'), +(7084,'2005-07-27 04:34:07',785,32,'2005-08-05 00:21:07',2,'2006-02-15 21:30:53'), +(7085,'2005-07-27 04:35:44',2603,223,'2005-08-05 07:10:44',2,'2006-02-15 21:30:53'), +(7086,'2005-07-27 04:39:46',2938,595,'2005-08-05 00:32:46',2,'2006-02-15 21:30:53'), +(7087,'2005-07-27 04:42:08',1159,22,'2005-08-02 00:53:08',1,'2006-02-15 21:30:53'), +(7088,'2005-07-27 04:42:28',373,88,'2005-08-04 07:09:28',2,'2006-02-15 21:30:53'), +(7089,'2005-07-27 04:43:42',1380,446,'2005-07-30 10:04:42',1,'2006-02-15 21:30:53'), +(7090,'2005-07-27 04:43:53',3495,218,'2005-07-29 07:33:53',2,'2006-02-15 21:30:53'), +(7091,'2005-07-27 04:44:10',2593,322,'2005-07-31 07:14:10',1,'2006-02-15 21:30:53'), +(7092,'2005-07-27 04:46:00',1433,345,'2005-08-03 07:22:00',2,'2006-02-15 21:30:53'), +(7093,'2005-07-27 04:47:00',3065,574,'2005-07-31 10:15:00',1,'2006-02-15 21:30:53'), +(7094,'2005-07-27 04:47:33',867,373,'2005-07-31 04:07:33',2,'2006-02-15 21:30:53'), +(7095,'2005-07-27 04:51:15',1008,551,'2005-08-05 10:25:15',2,'2006-02-15 21:30:53'), +(7096,'2005-07-27 04:54:42',2575,3,'2005-08-03 01:42:42',2,'2006-02-15 21:30:53'), +(7097,'2005-07-27 04:56:09',258,487,'2005-07-31 05:47:09',1,'2006-02-15 21:30:53'), +(7098,'2005-07-27 05:01:08',2555,359,'2005-08-02 07:49:08',2,'2006-02-15 21:30:53'), +(7099,'2005-07-27 05:03:44',3136,6,'2005-07-29 00:12:44',2,'2006-02-15 21:30:53'), +(7100,'2005-07-27 05:05:01',4224,413,'2005-07-28 23:12:01',2,'2006-02-15 21:30:53'), +(7101,'2005-07-27 05:06:34',2006,221,'2005-07-29 06:12:34',1,'2006-02-15 21:30:53'), +(7102,'2005-07-27 05:07:21',1081,411,'2005-08-01 09:41:21',2,'2006-02-15 21:30:53'), +(7103,'2005-07-27 05:08:59',1697,403,'2005-07-29 03:42:59',2,'2006-02-15 21:30:53'), +(7104,'2005-07-27 05:15:25',118,217,'2005-08-01 05:36:25',2,'2006-02-15 21:30:53'), +(7105,'2005-07-27 05:15:37',864,15,'2005-07-28 05:49:37',2,'2006-02-15 21:30:53'), +(7106,'2005-07-27 05:21:24',1415,201,'2005-08-02 01:58:24',2,'2006-02-15 21:30:53'), +(7107,'2005-07-27 05:22:04',1883,104,'2005-08-02 06:38:04',1,'2006-02-15 21:30:53'), +(7108,'2005-07-27 05:28:32',2720,355,'2005-07-31 07:52:32',1,'2006-02-15 21:30:53'), +(7109,'2005-07-27 05:28:57',1658,406,'2005-08-04 10:41:57',2,'2006-02-15 21:30:53'), +(7110,'2005-07-27 05:30:48',3289,157,'2005-07-28 01:43:48',1,'2006-02-15 21:30:53'), +(7111,'2005-07-27 05:38:16',1252,473,'2005-07-29 04:28:16',2,'2006-02-15 21:30:53'), +(7112,'2005-07-27 05:38:42',4056,101,'2005-08-03 05:35:42',1,'2006-02-15 21:30:53'), +(7113,'2005-07-27 05:41:20',1963,534,'2005-07-30 04:50:20',1,'2006-02-15 21:30:53'), +(7114,'2005-07-27 05:42:13',3892,121,'2005-07-29 01:59:13',1,'2006-02-15 21:30:53'), +(7115,'2005-07-27 05:42:58',3620,359,'2005-08-02 05:35:58',2,'2006-02-15 21:30:53'), +(7116,'2005-07-27 05:46:43',1755,209,'2005-08-05 05:54:43',1,'2006-02-15 21:30:53'), +(7117,'2005-07-27 05:48:36',2772,326,'2005-08-01 00:33:36',1,'2006-02-15 21:30:53'), +(7118,'2005-07-27 05:53:50',582,591,'2005-08-05 04:19:50',2,'2006-02-15 21:30:53'), +(7119,'2005-07-27 05:55:32',1732,102,'2005-07-29 03:19:32',1,'2006-02-15 21:30:53'), +(7120,'2005-07-27 05:56:39',416,98,'2005-08-04 10:57:39',1,'2006-02-15 21:30:53'), +(7121,'2005-07-27 05:58:32',1264,252,'2005-07-29 06:14:32',1,'2006-02-15 21:30:53'), +(7122,'2005-07-27 06:03:18',1699,172,'2005-08-04 10:43:18',2,'2006-02-15 21:30:53'), +(7123,'2005-07-27 06:08:48',134,232,'2005-08-04 05:26:48',1,'2006-02-15 21:30:53'), +(7124,'2005-07-27 06:09:30',3449,34,'2005-08-02 09:31:30',1,'2006-02-15 21:30:53'), +(7125,'2005-07-27 06:11:00',801,460,'2005-08-04 09:41:00',2,'2006-02-15 21:30:53'), +(7126,'2005-07-27 06:13:13',3240,582,'2005-07-28 08:22:13',2,'2006-02-15 21:30:53'), +(7127,'2005-07-27 06:13:48',273,486,'2005-08-01 02:50:48',2,'2006-02-15 21:30:53'), +(7128,'2005-07-27 06:14:36',143,529,'2005-08-02 05:18:36',1,'2006-02-15 21:30:53'), +(7129,'2005-07-27 06:18:01',1930,221,'2005-07-28 02:38:01',1,'2006-02-15 21:30:53'), +(7130,'2005-07-27 06:23:36',420,81,'2005-07-28 10:23:36',1,'2006-02-15 21:30:53'), +(7131,'2005-07-27 06:25:06',2832,585,'2005-07-31 09:07:06',1,'2006-02-15 21:30:53'), +(7132,'2005-07-27 06:28:34',3201,227,'2005-08-05 06:02:34',2,'2006-02-15 21:30:53'), +(7133,'2005-07-27 06:29:23',2995,496,'2005-07-29 03:20:23',2,'2006-02-15 21:30:53'), +(7134,'2005-07-27 06:33:06',1058,574,'2005-07-28 06:15:06',1,'2006-02-15 21:30:53'), +(7135,'2005-07-27 06:34:32',2959,172,'2005-07-28 03:01:32',1,'2006-02-15 21:30:53'), +(7136,'2005-07-27 06:38:25',1929,6,'2005-08-03 05:13:25',1,'2006-02-15 21:30:53'), +(7137,'2005-07-27 06:40:41',3957,483,'2005-07-29 09:05:41',2,'2006-02-15 21:30:53'), +(7138,'2005-07-27 06:47:13',1418,31,'2005-08-03 01:12:13',2,'2006-02-15 21:30:53'), +(7139,'2005-07-27 06:52:21',846,575,'2005-07-30 01:45:21',1,'2006-02-15 21:30:53'), +(7140,'2005-07-27 06:54:12',2028,35,'2005-08-03 10:36:12',2,'2006-02-15 21:30:53'), +(7141,'2005-07-27 06:55:27',3579,423,'2005-08-01 11:10:27',1,'2006-02-15 21:30:53'), +(7142,'2005-07-27 06:55:39',1743,396,'2005-07-28 01:41:39',2,'2006-02-15 21:30:53'), +(7143,'2005-07-27 06:56:31',2877,91,'2005-07-31 04:38:31',2,'2006-02-15 21:30:53'), +(7144,'2005-07-27 07:00:37',4506,485,'2005-08-01 06:57:37',1,'2006-02-15 21:30:53'), +(7145,'2005-07-27 07:01:00',3653,109,'2005-07-31 02:31:00',1,'2006-02-15 21:30:53'), +(7146,'2005-07-27 07:02:30',2245,323,'2005-08-05 10:29:30',1,'2006-02-15 21:30:53'), +(7147,'2005-07-27 07:02:34',990,192,'2005-08-01 02:16:34',1,'2006-02-15 21:30:53'), +(7148,'2005-07-27 07:04:09',1783,354,'2005-08-03 10:20:09',2,'2006-02-15 21:30:53'), +(7149,'2005-07-27 07:10:40',3902,242,'2005-08-03 07:37:40',2,'2006-02-15 21:30:53'), +(7150,'2005-07-27 07:11:14',457,191,'2005-08-05 06:55:14',2,'2006-02-15 21:30:53'), +(7151,'2005-07-27 07:14:31',1259,289,'2005-08-01 01:35:31',2,'2006-02-15 21:30:53'), +(7152,'2005-07-27 07:15:01',2338,370,'2005-08-05 04:50:01',1,'2006-02-15 21:30:53'), +(7153,'2005-07-27 07:15:38',2657,41,'2005-07-28 09:56:38',1,'2006-02-15 21:30:53'), +(7154,'2005-07-27 07:16:17',2019,518,'2005-07-28 04:04:17',2,'2006-02-15 21:30:53'), +(7155,'2005-07-27 07:18:46',171,23,'2005-08-04 10:28:46',1,'2006-02-15 21:30:53'), +(7156,'2005-07-27 07:19:34',34,154,'2005-07-31 04:31:34',1,'2006-02-15 21:30:53'), +(7157,'2005-07-27 07:20:28',1353,423,'2005-08-02 07:19:28',1,'2006-02-15 21:30:53'), +(7158,'2005-07-27 07:23:58',2432,38,'2005-08-03 06:00:58',2,'2006-02-15 21:30:53'), +(7159,'2005-07-27 07:24:00',1220,158,'2005-08-05 11:13:00',1,'2006-02-15 21:30:53'), +(7160,'2005-07-27 07:26:06',3905,71,'2005-07-31 04:54:06',2,'2006-02-15 21:30:53'), +(7161,'2005-07-27 07:26:32',378,572,'2005-08-03 01:26:32',2,'2006-02-15 21:30:53'), +(7162,'2005-07-27 07:32:45',2251,289,'2005-07-30 03:48:45',1,'2006-02-15 21:30:53'), +(7163,'2005-07-27 07:36:11',3666,38,'2005-08-04 06:03:11',2,'2006-02-15 21:30:53'), +(7164,'2005-07-27 07:36:34',527,284,'2005-08-04 05:05:34',2,'2006-02-15 21:30:53'), +(7165,'2005-07-27 07:36:46',497,243,'2005-07-30 09:22:46',2,'2006-02-15 21:30:53'), +(7166,'2005-07-27 07:36:56',1375,562,'2005-08-02 03:46:56',1,'2006-02-15 21:30:53'), +(7167,'2005-07-27 07:37:26',238,380,'2005-08-03 06:39:26',1,'2006-02-15 21:30:53'), +(7168,'2005-07-27 07:51:11',6,252,'2005-08-01 04:08:11',2,'2006-02-15 21:30:53'), +(7169,'2005-07-27 07:51:39',735,559,'2005-08-01 06:42:39',1,'2006-02-15 21:30:53'), +(7170,'2005-07-27 07:58:26',370,140,'2005-07-28 02:30:26',1,'2006-02-15 21:30:53'), +(7171,'2005-07-27 07:58:35',4381,406,'2005-08-03 07:45:35',1,'2006-02-15 21:30:53'), +(7172,'2005-07-27 07:59:16',2405,362,'2005-08-01 04:46:16',1,'2006-02-15 21:30:53'), +(7173,'2005-07-27 07:59:24',177,592,'2005-07-28 02:23:24',2,'2006-02-15 21:30:53'), +(7174,'2005-07-27 08:00:36',46,570,'2005-08-01 03:11:36',1,'2006-02-15 21:30:53'), +(7175,'2005-07-27 08:03:22',568,190,'2005-08-01 02:47:22',2,'2006-02-15 21:30:53'), +(7176,'2005-07-27 08:04:28',227,257,'2005-07-29 14:00:28',2,'2006-02-15 21:30:53'), +(7177,'2005-07-27 08:07:39',3818,133,'2005-07-30 03:17:39',2,'2006-02-15 21:30:53'), +(7178,'2005-07-27 08:09:25',1899,31,'2005-07-29 13:00:25',2,'2006-02-15 21:30:53'), +(7179,'2005-07-27 08:10:29',2365,537,'2005-07-28 12:24:29',2,'2006-02-15 21:30:53'), +(7180,'2005-07-27 08:14:34',460,215,'2005-07-31 05:24:34',1,'2006-02-15 21:30:53'), +(7181,'2005-07-27 08:14:34',2788,130,'2005-07-28 03:09:34',1,'2006-02-15 21:30:53'), +(7182,'2005-07-27 08:15:38',3209,97,'2005-08-03 12:48:38',2,'2006-02-15 21:30:53'), +(7183,'2005-07-27 08:18:38',3384,302,'2005-08-01 03:24:38',1,'2006-02-15 21:30:53'), +(7184,'2005-07-27 08:22:26',2324,457,'2005-08-02 09:34:26',2,'2006-02-15 21:30:53'), +(7185,'2005-07-27 08:23:54',2340,121,'2005-07-30 09:50:54',1,'2006-02-15 21:30:53'), +(7186,'2005-07-27 08:26:12',4005,584,'2005-07-28 12:21:12',1,'2006-02-15 21:30:53'), +(7187,'2005-07-27 08:27:58',2733,169,'2005-08-05 09:05:58',1,'2006-02-15 21:30:53'), +(7188,'2005-07-27 08:32:08',2199,259,'2005-07-28 08:02:08',1,'2006-02-15 21:30:53'), +(7189,'2005-07-27 08:35:02',4419,151,'2005-07-30 14:00:02',2,'2006-02-15 21:30:53'), +(7190,'2005-07-27 08:36:01',1330,372,'2005-07-30 08:32:01',2,'2006-02-15 21:30:53'), +(7191,'2005-07-27 08:36:15',4292,495,'2005-08-03 08:54:15',1,'2006-02-15 21:30:53'), +(7192,'2005-07-27 08:36:55',4329,532,'2005-07-30 11:58:55',2,'2006-02-15 21:30:53'), +(7193,'2005-07-27 08:37:00',1801,237,'2005-07-30 12:51:00',2,'2006-02-15 21:30:53'), +(7194,'2005-07-27 08:39:58',254,172,'2005-08-01 03:12:58',1,'2006-02-15 21:30:53'), +(7195,'2005-07-27 08:47:01',721,157,'2005-07-30 08:40:01',2,'2006-02-15 21:30:53'), +(7196,'2005-07-27 08:49:08',2998,118,'2005-07-29 03:54:08',1,'2006-02-15 21:30:53'), +(7197,'2005-07-27 08:49:32',2109,577,'2005-07-31 13:50:32',1,'2006-02-15 21:30:53'), +(7198,'2005-07-27 08:50:07',4283,520,'2005-08-04 09:46:07',2,'2006-02-15 21:30:53'), +(7199,'2005-07-27 08:53:23',3685,292,'2005-08-03 10:01:23',1,'2006-02-15 21:30:53'), +(7200,'2005-07-27 08:57:38',4406,78,'2005-08-02 12:29:38',2,'2006-02-15 21:30:53'), +(7201,'2005-07-27 08:57:40',482,598,'2005-08-04 09:55:40',2,'2006-02-15 21:30:53'), +(7202,'2005-07-27 09:00:20',109,560,'2005-08-04 03:09:20',1,'2006-02-15 21:30:53'), +(7203,'2005-07-27 09:01:23',1685,492,'2005-08-04 14:14:23',1,'2006-02-15 21:30:53'), +(7204,'2005-07-27 09:02:31',2512,531,'2005-08-03 08:56:31',2,'2006-02-15 21:30:53'), +(7205,'2005-07-27 09:06:13',2828,36,'2005-08-05 07:11:13',1,'2006-02-15 21:30:53'), +(7206,'2005-07-27 09:07:05',3752,373,'2005-07-31 03:13:05',2,'2006-02-15 21:30:53'), +(7207,'2005-07-27 09:13:26',336,51,'2005-08-01 10:24:26',1,'2006-02-15 21:30:53'), +(7208,'2005-07-27 09:16:28',1523,138,'2005-07-28 09:40:28',1,'2006-02-15 21:30:53'), +(7209,'2005-07-27 09:16:53',3766,49,'2005-07-30 08:09:53',2,'2006-02-15 21:30:53'), +(7210,'2005-07-27 09:19:05',1984,176,'2005-07-28 04:35:05',1,'2006-02-15 21:30:53'), +(7211,'2005-07-27 09:20:00',4445,285,'2005-08-02 14:53:00',1,'2006-02-15 21:30:53'), +(7212,'2005-07-27 09:21:22',2905,591,'2005-08-01 04:47:22',2,'2006-02-15 21:30:53'), +(7213,'2005-07-27 09:22:29',2836,502,'2005-08-03 13:53:29',2,'2006-02-15 21:30:53'), +(7214,'2005-07-27 09:23:33',802,309,'2005-08-03 13:14:33',2,'2006-02-15 21:30:53'), +(7215,'2005-07-27 09:24:00',2713,473,'2005-08-05 07:37:00',2,'2006-02-15 21:30:53'), +(7216,'2005-07-27 09:27:45',1812,292,'2005-08-03 13:08:45',1,'2006-02-15 21:30:53'), +(7217,'2005-07-27 09:31:44',2646,20,'2005-07-29 10:48:44',1,'2006-02-15 21:30:53'), +(7218,'2005-07-27 09:34:24',2458,530,'2005-08-01 07:00:24',1,'2006-02-15 21:30:53'), +(7219,'2005-07-27 09:35:36',4046,512,'2005-07-29 04:44:36',1,'2006-02-15 21:30:53'), +(7220,'2005-07-27 09:35:54',3867,79,'2005-08-04 06:00:54',2,'2006-02-15 21:30:53'), +(7221,'2005-07-27 09:37:35',3820,579,'2005-07-28 11:25:35',1,'2006-02-15 21:30:53'), +(7222,'2005-07-27 09:38:43',2330,206,'2005-07-28 06:25:43',1,'2006-02-15 21:30:53'), +(7223,'2005-07-27 09:42:27',2623,325,'2005-08-04 04:02:27',1,'2006-02-15 21:30:53'), +(7224,'2005-07-27 09:44:26',2701,106,'2005-08-05 12:46:26',2,'2006-02-15 21:30:53'), +(7225,'2005-07-27 09:47:12',632,306,'2005-08-03 13:19:12',2,'2006-02-15 21:30:53'), +(7226,'2005-07-27 09:47:53',3507,370,'2005-08-01 08:24:53',1,'2006-02-15 21:30:53'), +(7227,'2005-07-27 09:53:43',791,164,'2005-08-05 09:36:43',2,'2006-02-15 21:30:53'), +(7228,'2005-07-27 09:55:33',1693,481,'2005-07-29 04:33:33',2,'2006-02-15 21:30:53'), +(7229,'2005-07-27 10:00:54',978,182,'2005-07-28 13:58:54',2,'2006-02-15 21:30:53'), +(7230,'2005-07-27 10:01:41',1152,245,'2005-08-02 11:00:41',1,'2006-02-15 21:30:53'), +(7231,'2005-07-27 10:01:51',1638,86,'2005-08-05 13:38:51',2,'2006-02-15 21:30:53'), +(7232,'2005-07-27 10:04:19',1147,306,'2005-07-28 09:43:19',2,'2006-02-15 21:30:53'), +(7233,'2005-07-27 10:08:36',213,245,'2005-07-31 16:00:36',1,'2006-02-15 21:30:53'), +(7234,'2005-07-27 10:08:45',3873,372,'2005-07-31 13:58:45',1,'2006-02-15 21:30:53'), +(7235,'2005-07-27 10:09:30',1261,354,'2005-08-05 11:44:30',2,'2006-02-15 21:30:53'), +(7236,'2005-07-27 10:09:39',3004,218,'2005-08-03 16:05:39',1,'2006-02-15 21:30:53'), +(7237,'2005-07-27 10:12:36',1904,29,'2005-07-31 08:40:36',2,'2006-02-15 21:30:53'), +(7238,'2005-07-27 10:13:41',1197,116,'2005-07-29 11:07:41',1,'2006-02-15 21:30:53'), +(7239,'2005-07-27 10:20:27',1786,278,'2005-07-29 10:15:27',1,'2006-02-15 21:30:53'), +(7240,'2005-07-27 10:21:15',4565,324,'2005-08-03 05:04:15',1,'2006-02-15 21:30:53'), +(7241,'2005-07-27 10:25:49',2433,354,'2005-07-28 05:30:49',2,'2006-02-15 21:30:53'), +(7242,'2005-07-27 10:25:51',1966,565,'2005-08-04 16:02:51',2,'2006-02-15 21:30:53'), +(7243,'2005-07-27 10:26:11',1287,238,'2005-07-29 11:43:11',2,'2006-02-15 21:30:53'), +(7244,'2005-07-27 10:27:33',1329,339,'2005-07-30 13:09:33',1,'2006-02-15 21:30:53'), +(7245,'2005-07-27 10:29:06',260,95,'2005-08-05 12:09:06',2,'2006-02-15 21:30:53'), +(7246,'2005-07-27 10:30:41',2003,333,'2005-07-30 05:44:41',1,'2006-02-15 21:30:53'), +(7247,'2005-07-27 10:32:58',1445,102,'2005-07-29 05:00:58',2,'2006-02-15 21:30:53'), +(7248,'2005-07-27 10:37:45',4256,456,'2005-08-01 13:13:45',1,'2006-02-15 21:30:53'), +(7249,'2005-07-27 10:39:53',2441,425,'2005-07-28 14:48:53',2,'2006-02-15 21:30:53'), +(7250,'2005-07-27 10:44:09',3410,589,'2005-07-28 11:47:09',1,'2006-02-15 21:30:53'), +(7251,'2005-07-27 10:44:55',1737,360,'2005-08-01 16:12:55',1,'2006-02-15 21:30:53'), +(7252,'2005-07-27 10:45:28',3107,549,'2005-08-04 06:24:28',2,'2006-02-15 21:30:53'), +(7253,'2005-07-27 10:46:37',1950,236,'2005-07-28 11:18:37',1,'2006-02-15 21:30:53'), +(7254,'2005-07-27 10:48:50',2697,286,'2005-07-28 10:34:50',1,'2006-02-15 21:30:53'), +(7255,'2005-07-27 10:49:54',2101,502,'2005-07-31 10:40:54',2,'2006-02-15 21:30:53'), +(7256,'2005-07-27 10:58:32',4275,363,'2005-07-29 08:58:32',2,'2006-02-15 21:30:53'), +(7257,'2005-07-27 11:04:17',3302,480,'2005-08-04 12:32:17',2,'2006-02-15 21:30:53'), +(7258,'2005-07-27 11:05:54',2079,494,'2005-08-02 11:36:54',1,'2006-02-15 21:30:53'), +(7259,'2005-07-27 11:06:00',2345,406,'2005-08-02 06:44:00',2,'2006-02-15 21:30:53'), +(7260,'2005-07-27 11:09:28',3827,434,'2005-08-03 09:41:28',1,'2006-02-15 21:30:53'), +(7261,'2005-07-27 11:15:01',942,172,'2005-07-28 09:42:01',2,'2006-02-15 21:30:53'), +(7262,'2005-07-27 11:15:36',4097,522,'2005-07-30 10:49:36',2,'2006-02-15 21:30:53'), +(7263,'2005-07-27 11:17:22',725,324,'2005-08-04 10:59:22',1,'2006-02-15 21:30:53'), +(7264,'2005-07-27 11:18:58',2391,299,'2005-08-03 07:43:58',2,'2006-02-15 21:30:53'), +(7265,'2005-07-27 11:19:01',3465,290,'2005-08-01 09:29:01',1,'2006-02-15 21:30:53'), +(7266,'2005-07-27 11:22:17',3379,24,'2005-08-04 05:45:17',1,'2006-02-15 21:30:53'), +(7267,'2005-07-27 11:22:55',3661,122,'2005-08-01 08:13:55',1,'2006-02-15 21:30:53'), +(7268,'2005-07-27 11:23:09',2740,260,'2005-08-01 12:42:09',2,'2006-02-15 21:30:53'), +(7269,'2005-07-27 11:23:47',2089,209,'2005-07-31 13:10:47',1,'2006-02-15 21:30:53'), +(7270,'2005-07-27 11:29:02',1888,526,'2005-08-05 08:04:02',1,'2006-02-15 21:30:53'), +(7271,'2005-07-27 11:29:11',858,469,'2005-08-05 15:33:11',1,'2006-02-15 21:30:53'), +(7272,'2005-07-27 11:30:20',250,364,'2005-07-29 17:16:20',2,'2006-02-15 21:30:53'), +(7273,'2005-07-27 11:31:22',2465,1,'2005-07-31 06:50:22',1,'2006-02-15 21:30:53'), +(7274,'2005-07-27 11:35:34',4087,180,'2005-08-01 07:10:34',1,'2006-02-15 21:30:53'), +(7275,'2005-07-27 11:39:08',775,323,'2005-07-30 13:37:08',2,'2006-02-15 21:30:53'), +(7276,'2005-07-27 11:41:57',1665,314,'2005-08-01 10:39:57',1,'2006-02-15 21:30:53'), +(7277,'2005-07-27 11:48:37',1544,67,'2005-08-03 07:20:37',1,'2006-02-15 21:30:53'), +(7278,'2005-07-27 11:50:34',531,592,'2005-08-01 10:22:34',1,'2006-02-15 21:30:53'), +(7279,'2005-07-27 11:50:47',1424,12,'2005-07-30 11:19:47',2,'2006-02-15 21:30:53'), +(7280,'2005-07-27 11:50:52',236,342,'2005-07-30 15:53:52',2,'2006-02-15 21:30:53'), +(7281,'2005-07-27 11:59:20',1350,491,'2005-08-04 12:48:20',1,'2006-02-15 21:30:53'), +(7282,'2005-07-27 12:00:19',4418,276,'2005-08-04 14:48:19',2,'2006-02-15 21:30:53'), +(7283,'2005-07-27 12:02:41',3101,508,'2005-08-05 07:25:41',1,'2006-02-15 21:30:53'), +(7284,'2005-07-27 12:12:04',2336,52,'2005-07-31 11:17:04',2,'2006-02-15 21:30:53'), +(7285,'2005-07-27 12:14:06',2855,498,'2005-08-03 14:57:06',2,'2006-02-15 21:30:53'), +(7286,'2005-07-27 12:23:49',3452,498,'2005-08-04 07:57:49',1,'2006-02-15 21:30:53'), +(7287,'2005-07-27 12:24:12',926,198,'2005-07-31 15:34:12',1,'2006-02-15 21:30:53'), +(7288,'2005-07-27 12:24:59',45,226,'2005-08-02 15:52:59',2,'2006-02-15 21:30:53'), +(7289,'2005-07-27 12:26:51',2157,187,'2005-08-02 18:20:51',2,'2006-02-15 21:30:53'), +(7290,'2005-07-27 12:28:45',3652,423,'2005-08-01 16:18:45',1,'2006-02-15 21:30:53'), +(7291,'2005-07-27 12:30:47',310,263,'2005-08-01 12:45:47',1,'2006-02-15 21:30:53'), +(7292,'2005-07-27 12:34:14',795,468,'2005-08-01 18:16:14',2,'2006-02-15 21:30:53'), +(7293,'2005-07-27 12:37:28',3333,5,'2005-07-30 15:12:28',2,'2006-02-15 21:30:53'), +(7294,'2005-07-27 12:38:14',487,313,'2005-07-30 13:01:14',1,'2006-02-15 21:30:53'), +(7295,'2005-07-27 12:38:47',3396,462,'2005-08-05 10:12:47',1,'2006-02-15 21:30:53'), +(7296,'2005-07-27 12:39:48',1681,400,'2005-08-04 18:24:48',2,'2006-02-15 21:30:53'), +(7297,'2005-07-27 12:39:48',1855,135,'2005-07-29 17:50:48',2,'2006-02-15 21:30:53'), +(7298,'2005-07-27 12:45:14',1653,121,'2005-07-30 07:02:14',1,'2006-02-15 21:30:53'), +(7299,'2005-07-27 12:49:56',3002,286,'2005-08-03 12:25:56',1,'2006-02-15 21:30:53'), +(7300,'2005-07-27 12:50:17',4561,272,'2005-08-04 18:43:17',1,'2006-02-15 21:30:53'), +(7301,'2005-07-27 12:50:23',3367,93,'2005-08-01 09:43:23',2,'2006-02-15 21:30:53'), +(7302,'2005-07-27 12:52:13',4539,477,'2005-07-29 15:13:13',2,'2006-02-15 21:30:53'), +(7303,'2005-07-27 12:54:39',1398,163,'2005-07-31 09:26:39',2,'2006-02-15 21:30:53'), +(7304,'2005-07-27 12:56:56',1162,74,'2005-08-05 09:19:56',2,'2006-02-15 21:30:53'), +(7305,'2005-07-27 12:57:06',2464,229,'2005-07-30 13:13:06',2,'2006-02-15 21:30:53'), +(7306,'2005-07-27 12:57:26',2269,207,'2005-08-03 09:35:26',2,'2006-02-15 21:30:53'), +(7307,'2005-07-27 12:59:10',3882,595,'2005-07-29 11:35:10',1,'2006-02-15 21:30:53'), +(7308,'2005-07-27 13:00:25',1452,229,'2005-08-03 16:04:25',1,'2006-02-15 21:30:53'), +(7309,'2005-07-27 13:00:29',633,317,'2005-07-29 12:15:29',2,'2006-02-15 21:30:53'), +(7310,'2005-07-27 13:00:55',3711,103,'2005-07-28 17:54:55',1,'2006-02-15 21:30:53'), +(7311,'2005-07-27 13:02:54',2807,582,'2005-08-04 09:52:54',1,'2006-02-15 21:30:53'), +(7312,'2005-07-27 13:03:14',228,543,'2005-07-31 07:56:14',2,'2006-02-15 21:30:53'), +(7313,'2005-07-27 13:11:57',1884,396,'2005-08-02 07:31:57',1,'2006-02-15 21:30:53'), +(7314,'2005-07-27 13:13:32',1376,11,'2005-08-03 09:24:32',2,'2006-02-15 21:30:53'), +(7315,'2005-07-27 13:14:56',974,208,'2005-08-03 08:44:56',2,'2006-02-15 21:30:53'), +(7316,'2005-07-27 13:19:03',3344,114,'2005-07-28 07:43:03',2,'2006-02-15 21:30:53'), +(7317,'2005-07-27 13:19:41',1518,443,'2005-07-29 16:16:41',2,'2006-02-15 21:30:53'), +(7318,'2005-07-27 13:25:31',1954,301,'2005-07-31 11:44:31',2,'2006-02-15 21:30:53'), +(7319,'2005-07-27 13:31:25',2370,576,'2005-08-04 07:31:25',1,'2006-02-15 21:30:53'), +(7320,'2005-07-27 13:33:35',4348,241,'2005-07-31 13:22:35',2,'2006-02-15 21:30:53'), +(7321,'2005-07-27 13:33:38',3525,38,'2005-08-03 07:35:38',2,'2006-02-15 21:30:53'), +(7322,'2005-07-27 13:37:26',1810,508,'2005-08-03 18:00:26',2,'2006-02-15 21:30:53'), +(7323,'2005-07-27 13:39:40',3830,125,'2005-07-29 08:45:40',2,'2006-02-15 21:30:53'), +(7324,'2005-07-27 13:42:39',2572,462,'2005-08-04 10:33:39',2,'2006-02-15 21:30:53'), +(7325,'2005-07-27 13:46:55',1727,289,'2005-07-28 14:21:55',1,'2006-02-15 21:30:53'), +(7326,'2005-07-27 13:50:40',2844,432,'2005-07-30 08:16:40',1,'2006-02-15 21:30:53'), +(7327,'2005-07-27 13:53:26',4074,508,'2005-08-04 17:58:26',2,'2006-02-15 21:30:53'), +(7328,'2005-07-27 13:55:18',663,26,'2005-08-01 19:52:18',1,'2006-02-15 21:30:53'), +(7329,'2005-07-27 13:55:34',906,226,'2005-08-04 15:15:34',1,'2006-02-15 21:30:53'), +(7330,'2005-07-27 13:56:46',3705,237,'2005-08-04 07:56:46',1,'2006-02-15 21:30:53'), +(7331,'2005-07-27 13:57:50',2090,60,'2005-07-31 08:59:50',1,'2006-02-15 21:30:53'), +(7332,'2005-07-27 13:58:57',1761,151,'2005-08-02 12:40:57',1,'2006-02-15 21:30:53'), +(7333,'2005-07-27 13:59:11',1331,230,'2005-07-30 16:04:11',1,'2006-02-15 21:30:53'), +(7334,'2005-07-27 13:59:58',3006,461,'2005-07-29 11:33:58',1,'2006-02-15 21:30:53'), +(7335,'2005-07-27 14:06:50',1219,219,'2005-08-05 18:27:50',2,'2006-02-15 21:30:53'), +(7336,'2005-07-27 14:11:45',2706,46,'2005-07-28 11:00:45',2,'2006-02-15 21:30:53'), +(7337,'2005-07-27 14:12:04',3314,525,'2005-08-03 14:57:04',2,'2006-02-15 21:30:53'), +(7338,'2005-07-27 14:13:34',107,251,'2005-08-03 18:36:34',2,'2006-02-15 21:30:53'), +(7339,'2005-07-27 14:17:48',3343,316,'2005-07-31 12:47:48',2,'2006-02-15 21:30:53'), +(7340,'2005-07-27 14:18:10',1344,567,'2005-07-30 09:57:10',1,'2006-02-15 21:30:53'), +(7341,'2005-07-27 14:23:55',3567,498,'2005-07-28 14:11:55',2,'2006-02-15 21:30:53'), +(7342,'2005-07-27 14:25:17',4083,504,'2005-08-04 10:02:17',2,'2006-02-15 21:30:53'), +(7343,'2005-07-27 14:27:13',1177,526,'2005-07-30 09:27:13',2,'2006-02-15 21:30:53'), +(7344,'2005-07-27 14:29:28',1714,366,'2005-07-31 15:36:28',1,'2006-02-15 21:30:53'), +(7345,'2005-07-27 14:29:53',2434,572,'2005-08-03 18:38:53',2,'2006-02-15 21:30:53'), +(7346,'2005-07-27 14:30:42',741,2,'2005-08-02 16:48:42',1,'2006-02-15 21:30:53'), +(7347,'2005-07-27 14:31:24',3779,225,'2005-07-31 16:19:24',1,'2006-02-15 21:30:53'), +(7348,'2005-07-27 14:32:32',3238,43,'2005-07-28 17:05:32',1,'2006-02-15 21:30:53'), +(7349,'2005-07-27 14:33:00',861,195,'2005-08-01 15:01:00',2,'2006-02-15 21:30:53'), +(7350,'2005-07-27 14:34:14',737,410,'2005-08-02 19:19:14',2,'2006-02-15 21:30:53'), +(7351,'2005-07-27 14:37:36',2147,445,'2005-07-30 09:58:36',2,'2006-02-15 21:30:53'), +(7352,'2005-07-27 14:38:29',35,429,'2005-07-28 14:24:29',1,'2006-02-15 21:30:53'), +(7353,'2005-07-27 14:38:39',1308,357,'2005-07-31 19:50:39',1,'2006-02-15 21:30:53'), +(7354,'2005-07-27 14:42:11',2395,598,'2005-08-03 18:19:11',2,'2006-02-15 21:30:53'), +(7355,'2005-07-27 14:45:59',3803,115,'2005-08-02 17:23:59',2,'2006-02-15 21:30:53'), +(7356,'2005-07-27 14:47:35',309,397,'2005-07-28 18:10:35',2,'2006-02-15 21:30:53'), +(7357,'2005-07-27 14:48:31',1917,438,'2005-08-02 18:07:31',2,'2006-02-15 21:30:53'), +(7358,'2005-07-27 14:49:44',175,245,'2005-07-28 20:00:44',1,'2006-02-15 21:30:53'), +(7359,'2005-07-27 14:51:04',174,183,'2005-07-31 16:03:04',2,'2006-02-15 21:30:53'), +(7360,'2005-07-27 14:52:06',1312,467,'2005-08-02 12:24:06',2,'2006-02-15 21:30:53'), +(7361,'2005-07-27 14:53:55',4567,463,'2005-07-31 19:48:55',2,'2006-02-15 21:30:53'), +(7362,'2005-07-27 14:58:27',1902,419,'2005-08-01 11:51:27',1,'2006-02-15 21:30:53'), +(7363,'2005-07-27 14:58:29',1649,407,'2005-08-05 09:02:29',1,'2006-02-15 21:30:53'), +(7364,'2005-07-27 14:58:40',3046,592,'2005-08-03 09:01:40',2,'2006-02-15 21:30:53'), +(7365,'2005-07-27 15:00:20',3283,450,'2005-07-30 12:58:20',1,'2006-02-15 21:30:53'), +(7366,'2005-07-27 15:01:17',461,357,'2005-08-04 20:28:17',1,'2006-02-15 21:30:53'), +(7367,'2005-07-27 15:05:45',1738,383,'2005-08-02 13:46:45',1,'2006-02-15 21:30:53'), +(7368,'2005-07-27 15:06:05',2265,286,'2005-07-31 14:10:05',2,'2006-02-15 21:30:53'), +(7369,'2005-07-27 15:07:58',3889,139,'2005-07-30 09:16:58',2,'2006-02-15 21:30:53'), +(7370,'2005-07-27 15:15:53',2022,89,'2005-08-03 19:53:53',2,'2006-02-15 21:30:53'), +(7371,'2005-07-27 15:18:42',1807,577,'2005-08-01 09:58:42',1,'2006-02-15 21:30:53'), +(7372,'2005-07-27 15:18:42',3202,584,'2005-08-01 15:18:42',2,'2006-02-15 21:30:53'), +(7373,'2005-07-27 15:19:33',3074,488,'2005-08-04 10:45:33',1,'2006-02-15 21:30:53'), +(7374,'2005-07-27 15:20:57',3184,438,'2005-08-05 13:09:57',2,'2006-02-15 21:30:53'), +(7375,'2005-07-27 15:22:33',2970,381,'2005-08-01 20:06:33',1,'2006-02-15 21:30:53'), +(7376,'2005-07-27 15:23:02',488,2,'2005-08-04 10:35:02',2,'2006-02-15 21:30:53'), +(7377,'2005-07-27 15:31:28',1369,588,'2005-08-02 19:59:28',2,'2006-02-15 21:30:53'), +(7378,'2005-07-27 15:31:33',3297,144,'2005-08-03 17:15:33',2,'2006-02-15 21:30:53'), +(7379,'2005-07-27 15:36:43',424,415,'2005-07-30 16:37:43',2,'2006-02-15 21:30:53'), +(7380,'2005-07-27 15:37:01',988,348,'2005-08-03 19:24:01',1,'2006-02-15 21:30:53'), +(7381,'2005-07-27 15:40:26',1595,483,'2005-08-02 17:26:26',2,'2006-02-15 21:30:53'), +(7382,'2005-07-27 15:43:15',356,518,'2005-07-28 11:18:15',2,'2006-02-15 21:30:53'), +(7383,'2005-07-27 15:46:53',3860,50,'2005-08-03 11:10:53',1,'2006-02-15 21:30:53'), +(7384,'2005-07-27 15:49:45',3573,585,'2005-08-04 15:17:45',1,'2006-02-15 21:30:53'), +(7385,'2005-07-27 15:49:46',2996,56,'2005-07-28 13:50:46',2,'2006-02-15 21:30:53'), +(7386,'2005-07-27 15:52:10',3569,190,'2005-08-04 15:13:10',1,'2006-02-15 21:30:53'), +(7387,'2005-07-27 15:54:19',3274,233,'2005-08-03 14:46:19',1,'2006-02-15 21:30:53'), +(7388,'2005-07-27 15:54:19',4559,455,'2005-08-01 17:02:19',2,'2006-02-15 21:30:53'), +(7389,'2005-07-27 15:56:15',3822,156,'2005-07-30 21:28:15',2,'2006-02-15 21:30:53'), +(7390,'2005-07-27 15:59:19',1723,230,'2005-08-04 10:09:19',2,'2006-02-15 21:30:53'), +(7391,'2005-07-27 16:00:00',1153,531,'2005-08-04 18:07:00',2,'2006-02-15 21:30:53'), +(7392,'2005-07-27 16:01:05',3159,204,'2005-08-01 17:23:05',2,'2006-02-15 21:30:53'), +(7393,'2005-07-27 16:02:52',2369,181,'2005-08-02 13:24:52',1,'2006-02-15 21:30:53'), +(7394,'2005-07-27 16:03:08',2399,30,'2005-08-04 11:27:08',2,'2006-02-15 21:30:53'), +(7395,'2005-07-27 16:03:11',2888,411,'2005-07-31 20:26:11',2,'2006-02-15 21:30:53'), +(7396,'2005-07-27 16:03:53',3346,595,'2005-08-05 10:36:53',2,'2006-02-15 21:30:53'), +(7397,'2005-07-27 16:05:00',4474,245,'2005-08-01 20:29:00',1,'2006-02-15 21:30:53'), +(7398,'2005-07-27 16:07:22',1572,51,'2005-08-05 16:16:22',1,'2006-02-15 21:30:53'), +(7399,'2005-07-27 16:16:02',1682,526,'2005-08-03 18:02:02',2,'2006-02-15 21:30:53'), +(7400,'2005-07-27 16:16:37',2874,133,'2005-07-31 12:34:37',2,'2006-02-15 21:30:53'), +(7401,'2005-07-27 16:17:55',2759,583,'2005-08-04 15:48:55',1,'2006-02-15 21:30:53'), +(7402,'2005-07-27 16:19:40',2707,287,'2005-08-05 14:48:40',2,'2006-02-15 21:30:53'), +(7403,'2005-07-27 16:22:09',2551,163,'2005-08-01 15:32:09',1,'2006-02-15 21:30:53'), +(7404,'2005-07-27 16:24:43',2359,190,'2005-07-29 11:40:43',2,'2006-02-15 21:30:53'), +(7405,'2005-07-27 16:25:11',2312,42,'2005-08-01 12:33:11',2,'2006-02-15 21:30:53'), +(7406,'2005-07-27 16:25:45',1412,77,'2005-08-05 20:39:45',1,'2006-02-15 21:30:53'), +(7407,'2005-07-27 16:29:04',3093,410,'2005-08-01 17:47:04',2,'2006-02-15 21:30:53'), +(7408,'2005-07-27 16:31:40',625,371,'2005-07-31 11:56:40',2,'2006-02-15 21:30:53'), +(7409,'2005-07-27 16:38:24',2352,585,'2005-07-30 18:06:24',1,'2006-02-15 21:30:53'), +(7410,'2005-07-27 16:41:59',1559,337,'2005-07-29 22:11:59',1,'2006-02-15 21:30:53'), +(7411,'2005-07-27 16:42:30',515,302,'2005-08-05 17:38:30',1,'2006-02-15 21:30:53'), +(7412,'2005-07-27 16:44:34',950,582,'2005-08-04 15:06:34',2,'2006-02-15 21:30:53'), +(7413,'2005-07-27 16:45:40',2909,254,'2005-07-31 12:02:40',1,'2006-02-15 21:30:53'), +(7414,'2005-07-27 16:46:07',3276,265,'2005-08-02 20:04:07',1,'2006-02-15 21:30:53'), +(7415,'2005-07-27 16:50:59',4410,294,'2005-08-02 11:21:59',1,'2006-02-15 21:30:53'), +(7416,'2005-07-27 16:55:25',653,350,'2005-07-29 11:27:25',1,'2006-02-15 21:30:53'), +(7417,'2005-07-27 16:58:33',2952,214,'2005-07-30 22:17:33',1,'2006-02-15 21:30:53'), +(7418,'2005-07-27 16:59:09',3029,332,'2005-07-29 15:08:09',2,'2006-02-15 21:30:53'), +(7419,'2005-07-27 17:04:15',3454,352,'2005-08-05 21:54:15',2,'2006-02-15 21:30:53'), +(7420,'2005-07-27 17:09:39',3505,547,'2005-07-30 12:30:39',2,'2006-02-15 21:30:53'), +(7421,'2005-07-27 17:10:05',3548,70,'2005-08-05 17:55:05',1,'2006-02-15 21:30:53'), +(7422,'2005-07-27 17:10:42',3954,286,'2005-08-03 19:32:42',1,'2006-02-15 21:30:53'), +(7423,'2005-07-27 17:11:47',666,277,'2005-07-29 12:29:47',2,'2006-02-15 21:30:53'), +(7424,'2005-07-27 17:14:19',660,558,'2005-08-01 19:21:19',2,'2006-02-15 21:30:53'), +(7425,'2005-07-27 17:18:35',435,263,'2005-08-02 11:18:35',1,'2006-02-15 21:30:53'), +(7426,'2005-07-27 17:19:46',4420,239,'2005-07-29 21:41:46',1,'2006-02-15 21:30:53'), +(7427,'2005-07-27 17:20:16',2548,442,'2005-08-03 20:38:16',2,'2006-02-15 21:30:53'), +(7428,'2005-07-27 17:21:52',243,90,'2005-08-05 17:13:52',2,'2006-02-15 21:30:53'), +(7429,'2005-07-27 17:24:50',2160,515,'2005-08-05 23:02:50',1,'2006-02-15 21:30:53'), +(7430,'2005-07-27 17:26:14',4205,562,'2005-08-01 13:02:14',2,'2006-02-15 21:30:53'), +(7431,'2005-07-27 17:27:27',3931,589,'2005-07-31 18:40:27',1,'2006-02-15 21:30:53'), +(7432,'2005-07-27 17:31:40',3169,132,'2005-07-28 17:44:40',2,'2006-02-15 21:30:53'), +(7433,'2005-07-27 17:32:20',1748,282,'2005-08-01 18:49:20',1,'2006-02-15 21:30:53'), +(7434,'2005-07-27 17:34:40',2927,241,'2005-07-29 15:01:40',1,'2006-02-15 21:30:53'), +(7435,'2005-07-27 17:38:44',1574,380,'2005-07-30 16:57:44',1,'2006-02-15 21:30:53'), +(7436,'2005-07-27 17:39:12',299,45,'2005-08-01 12:40:12',2,'2006-02-15 21:30:53'), +(7437,'2005-07-27 17:39:18',2617,135,'2005-07-28 18:33:18',2,'2006-02-15 21:30:53'), +(7438,'2005-07-27 17:40:40',1364,52,'2005-08-05 15:25:40',1,'2006-02-15 21:30:53'), +(7439,'2005-07-27 17:42:31',4091,102,'2005-08-05 16:34:31',1,'2006-02-15 21:30:53'), +(7440,'2005-07-27 17:43:27',1476,484,'2005-08-03 22:12:27',1,'2006-02-15 21:30:53'), +(7441,'2005-07-27 17:46:53',4039,198,'2005-07-31 23:05:53',1,'2006-02-15 21:30:53'), +(7442,'2005-07-27 17:47:00',2471,105,'2005-07-28 21:37:00',1,'2006-02-15 21:30:53'), +(7443,'2005-07-27 17:47:43',703,380,'2005-07-29 13:15:43',1,'2006-02-15 21:30:53'), +(7444,'2005-07-27 17:49:16',120,531,'2005-07-28 15:05:16',1,'2006-02-15 21:30:53'), +(7445,'2005-07-27 17:57:15',4115,394,'2005-07-31 20:24:15',1,'2006-02-15 21:30:53'), +(7446,'2005-07-27 18:00:24',2337,486,'2005-07-29 13:40:24',1,'2006-02-15 21:30:53'), +(7447,'2005-07-27 18:02:08',1795,107,'2005-07-29 21:15:08',1,'2006-02-15 21:30:53'), +(7448,'2005-07-27 18:06:30',3584,175,'2005-07-29 15:43:30',1,'2006-02-15 21:30:53'), +(7449,'2005-07-27 18:17:41',2084,421,'2005-08-01 18:52:41',1,'2006-02-15 21:30:53'), +(7450,'2005-07-27 18:18:35',3496,191,'2005-08-04 15:18:35',1,'2006-02-15 21:30:53'), +(7451,'2005-07-27 18:18:41',2382,29,'2005-08-03 13:55:41',2,'2006-02-15 21:30:53'), +(7452,'2005-07-27 18:26:39',3482,285,'2005-08-04 17:35:39',2,'2006-02-15 21:30:53'), +(7453,'2005-07-27 18:27:13',2992,29,'2005-07-29 23:52:13',1,'2006-02-15 21:30:53'), +(7454,'2005-07-27 18:27:26',3248,75,'2005-07-30 23:50:26',1,'2006-02-15 21:30:53'), +(7455,'2005-07-27 18:34:41',3815,405,'2005-07-31 17:32:41',1,'2006-02-15 21:30:53'), +(7456,'2005-07-27 18:34:53',1959,501,'2005-07-29 17:46:53',2,'2006-02-15 21:30:53'), +(7457,'2005-07-27 18:35:17',3635,510,'2005-07-30 12:41:17',2,'2006-02-15 21:30:53'), +(7458,'2005-07-27 18:36:17',2964,327,'2005-07-31 22:43:17',1,'2006-02-15 21:30:53'), +(7459,'2005-07-27 18:40:20',2053,2,'2005-08-02 21:07:20',2,'2006-02-15 21:30:53'), +(7460,'2005-07-27 18:41:35',919,442,'2005-07-29 15:16:35',2,'2006-02-15 21:30:53'), +(7461,'2005-07-27 18:45:15',1236,476,'2005-07-29 17:19:15',1,'2006-02-15 21:30:53'), +(7462,'2005-07-27 18:47:47',878,114,'2005-07-29 20:46:47',2,'2006-02-15 21:30:53'), +(7463,'2005-07-27 18:48:32',3676,284,'2005-07-29 23:54:32',2,'2006-02-15 21:30:53'), +(7464,'2005-07-27 18:49:42',845,31,'2005-07-28 20:45:42',2,'2006-02-15 21:30:53'), +(7465,'2005-07-27 18:50:30',2357,115,'2005-07-30 20:55:30',1,'2006-02-15 21:30:53'), +(7466,'2005-07-27 18:51:17',2791,53,'2005-07-31 16:58:17',1,'2006-02-15 21:30:53'), +(7467,'2005-07-27 18:51:54',3869,240,'2005-08-03 23:27:54',2,'2006-02-15 21:30:53'), +(7468,'2005-07-27 18:52:27',3166,113,'2005-08-03 19:29:27',2,'2006-02-15 21:30:53'), +(7469,'2005-07-27 18:57:40',3723,189,'2005-07-31 00:17:40',1,'2006-02-15 21:30:53'), +(7470,'2005-07-27 19:01:03',289,564,'2005-08-05 19:16:03',2,'2006-02-15 21:30:53'), +(7471,'2005-07-27 19:02:19',1776,95,'2005-07-30 15:12:19',1,'2006-02-15 21:30:53'), +(7472,'2005-07-27 19:04:19',1535,103,'2005-08-03 00:08:19',2,'2006-02-15 21:30:53'), +(7473,'2005-07-27 19:05:40',401,341,'2005-08-05 14:47:40',1,'2006-02-15 21:30:53'), +(7474,'2005-07-27 19:07:17',2971,110,'2005-07-30 00:37:17',1,'2006-02-15 21:30:53'), +(7475,'2005-07-27 19:07:43',1670,255,'2005-08-04 22:12:43',2,'2006-02-15 21:30:53'), +(7476,'2005-07-27 19:08:56',2288,64,'2005-07-31 16:36:56',2,'2006-02-15 21:30:53'), +(7477,'2005-07-27 19:11:03',2692,355,'2005-08-02 19:25:03',1,'2006-02-15 21:30:53'), +(7478,'2005-07-27 19:16:02',3791,521,'2005-08-04 22:30:02',2,'2006-02-15 21:30:53'), +(7479,'2005-07-27 19:18:17',218,434,'2005-07-30 18:55:17',1,'2006-02-15 21:30:53'), +(7480,'2005-07-27 19:19:53',452,344,'2005-08-02 01:01:53',1,'2006-02-15 21:30:53'), +(7481,'2005-07-27 19:20:25',1804,240,'2005-07-29 19:07:25',2,'2006-02-15 21:30:53'), +(7482,'2005-07-27 19:24:16',485,348,'2005-08-05 18:49:16',2,'2006-02-15 21:30:53'), +(7483,'2005-07-27 19:25:00',3678,106,'2005-07-29 21:19:00',2,'2006-02-15 21:30:53'), +(7484,'2005-07-27 19:28:17',2746,211,'2005-07-31 20:05:17',2,'2006-02-15 21:30:53'), +(7485,'2005-07-27 19:29:09',631,362,'2005-07-30 16:28:09',1,'2006-02-15 21:30:53'), +(7486,'2005-07-27 19:29:24',4362,393,'2005-08-02 20:46:24',2,'2006-02-15 21:30:53'), +(7487,'2005-07-27 19:32:45',4451,58,'2005-07-28 15:11:45',1,'2006-02-15 21:30:53'), +(7488,'2005-07-27 19:36:15',554,365,'2005-08-05 14:14:15',1,'2006-02-15 21:30:53'), +(7489,'2005-07-27 19:39:38',3732,16,'2005-07-30 23:10:38',2,'2006-02-15 21:30:53'), +(7490,'2005-07-27 19:48:12',4503,595,'2005-08-04 17:15:12',1,'2006-02-15 21:30:53'), +(7491,'2005-07-27 19:53:23',4261,239,'2005-07-28 23:25:23',2,'2006-02-15 21:30:53'), +(7492,'2005-07-27 19:54:18',908,155,'2005-07-31 15:36:18',2,'2006-02-15 21:30:53'), +(7493,'2005-07-27 19:55:46',2868,177,'2005-08-02 19:46:46',2,'2006-02-15 21:30:53'), +(7494,'2005-07-27 19:56:31',2259,60,'2005-07-30 14:28:31',1,'2006-02-15 21:30:53'), +(7495,'2005-07-27 20:01:20',3446,426,'2005-07-30 16:40:20',1,'2006-02-15 21:30:53'), +(7496,'2005-07-27 20:04:05',2449,257,'2005-08-02 20:12:05',1,'2006-02-15 21:30:53'), +(7497,'2005-07-27 20:05:27',286,387,'2005-07-30 22:47:27',1,'2006-02-15 21:30:53'), +(7498,'2005-07-27 20:09:31',1144,455,'2005-07-29 23:38:31',1,'2006-02-15 21:30:53'), +(7499,'2005-07-27 20:10:28',3503,157,'2005-07-30 16:24:28',1,'2006-02-15 21:30:53'), +(7500,'2005-07-27 20:16:03',609,160,'2005-07-29 18:50:03',1,'2006-02-15 21:30:53'), +(7501,'2005-07-27 20:16:59',1464,587,'2005-08-04 00:11:59',2,'2006-02-15 21:30:53'), +(7502,'2005-07-27 20:19:08',3229,303,'2005-07-28 18:32:08',2,'2006-02-15 21:30:53'), +(7503,'2005-07-27 20:23:12',579,3,'2005-08-05 18:46:12',2,'2006-02-15 21:30:53'), +(7504,'2005-07-27 20:24:31',3354,283,'2005-07-30 21:25:31',2,'2006-02-15 21:30:53'), +(7505,'2005-07-27 20:28:03',1342,209,'2005-08-03 17:04:03',1,'2006-02-15 21:30:53'), +(7506,'2005-07-27 20:28:34',2091,527,'2005-08-05 18:14:34',1,'2006-02-15 21:30:53'), +(7507,'2005-07-27 20:31:48',3618,512,'2005-08-02 17:27:48',1,'2006-02-15 21:30:53'), +(7508,'2005-07-27 20:33:08',3401,465,'2005-08-01 01:29:08',1,'2006-02-15 21:30:53'), +(7509,'2005-07-27 20:37:19',4134,228,'2005-08-04 19:35:19',2,'2006-02-15 21:30:53'), +(7510,'2005-07-27 20:37:57',1617,257,'2005-08-01 17:14:57',2,'2006-02-15 21:30:53'), +(7511,'2005-07-27 20:38:40',4044,591,'2005-08-04 22:36:40',2,'2006-02-15 21:30:53'), +(7512,'2005-07-27 20:40:40',1343,352,'2005-08-05 01:44:40',1,'2006-02-15 21:30:53'), +(7513,'2005-07-27 20:51:04',939,411,'2005-08-03 20:15:04',2,'2006-02-15 21:30:53'), +(7514,'2005-07-27 20:51:49',400,44,'2005-07-29 18:21:49',2,'2006-02-15 21:30:53'), +(7515,'2005-07-27 20:52:37',1211,390,'2005-08-02 20:17:37',2,'2006-02-15 21:30:53'), +(7516,'2005-07-27 20:55:28',2178,134,'2005-07-30 00:50:28',1,'2006-02-15 21:30:53'), +(7517,'2005-07-27 20:57:07',3177,41,'2005-08-04 15:08:07',1,'2006-02-15 21:30:53'), +(7518,'2005-07-27 21:01:16',2676,257,'2005-08-03 15:26:16',1,'2006-02-15 21:30:53'), +(7519,'2005-07-27 21:01:41',4009,124,'2005-08-05 19:15:41',1,'2006-02-15 21:30:53'), +(7520,'2005-07-27 21:02:02',3875,191,'2005-07-28 18:18:02',1,'2006-02-15 21:30:53'), +(7521,'2005-07-27 21:04:42',3144,176,'2005-08-03 16:06:42',1,'2006-02-15 21:30:53'), +(7522,'2005-07-27 21:11:03',2038,478,'2005-08-02 16:40:03',1,'2006-02-15 21:30:53'), +(7523,'2005-07-27 21:11:23',4153,410,'2005-07-28 16:37:23',1,'2006-02-15 21:30:53'), +(7524,'2005-07-27 21:11:44',4295,225,'2005-08-03 02:17:44',1,'2006-02-15 21:30:53'), +(7525,'2005-07-27 21:13:28',4084,281,'2005-08-04 19:44:28',2,'2006-02-15 21:30:53'), +(7526,'2005-07-27 21:13:47',696,44,'2005-08-05 15:23:47',2,'2006-02-15 21:30:53'), +(7527,'2005-07-27 21:14:28',2124,426,'2005-08-05 21:08:28',1,'2006-02-15 21:30:53'), +(7528,'2005-07-27 21:15:25',1218,213,'2005-08-03 19:12:25',1,'2006-02-15 21:30:53'), +(7529,'2005-07-27 21:18:08',3644,145,'2005-08-06 00:59:08',1,'2006-02-15 21:30:53'), +(7530,'2005-07-27 21:18:58',3810,98,'2005-07-31 01:51:58',2,'2006-02-15 21:30:53'), +(7531,'2005-07-27 21:19:34',2393,221,'2005-08-06 01:07:34',2,'2006-02-15 21:30:53'), +(7532,'2005-07-27 21:20:52',677,34,'2005-07-30 21:38:52',1,'2006-02-15 21:30:53'), +(7533,'2005-07-27 21:24:33',1791,594,'2005-08-05 16:33:33',2,'2006-02-15 21:30:53'), +(7534,'2005-07-27 21:26:17',2276,282,'2005-08-05 00:23:17',2,'2006-02-15 21:30:53'), +(7535,'2005-07-27 21:32:39',772,123,'2005-08-05 23:42:39',1,'2006-02-15 21:30:53'), +(7536,'2005-07-27 21:34:09',3417,307,'2005-08-02 03:26:09',1,'2006-02-15 21:30:53'), +(7537,'2005-07-27 21:36:09',4456,269,'2005-08-01 01:51:09',1,'2006-02-15 21:30:53'), +(7538,'2005-07-27 21:38:04',2486,361,'2005-08-02 03:14:04',1,'2006-02-15 21:30:53'), +(7539,'2005-07-27 21:39:42',1849,423,'2005-08-06 00:12:42',1,'2006-02-15 21:30:53'), +(7540,'2005-07-27 21:39:55',2198,207,'2005-08-04 18:10:55',2,'2006-02-15 21:30:53'), +(7541,'2005-07-27 21:40:05',4100,206,'2005-07-29 16:13:05',1,'2006-02-15 21:30:53'), +(7542,'2005-07-27 21:43:04',1912,110,'2005-07-30 00:02:04',1,'2006-02-15 21:30:53'), +(7543,'2005-07-27 21:44:28',1289,526,'2005-08-04 21:42:28',2,'2006-02-15 21:30:53'), +(7544,'2005-07-27 21:47:37',766,249,'2005-08-05 02:29:37',2,'2006-02-15 21:30:53'), +(7545,'2005-07-27 21:48:03',2541,292,'2005-08-01 22:23:03',2,'2006-02-15 21:30:53'), +(7546,'2005-07-27 21:50:09',3683,494,'2005-08-05 03:07:09',2,'2006-02-15 21:30:53'), +(7547,'2005-07-27 21:51:48',1733,547,'2005-08-06 01:05:48',2,'2006-02-15 21:30:53'), +(7548,'2005-07-27 21:53:18',2194,484,'2005-08-02 17:50:18',1,'2006-02-15 21:30:53'), +(7549,'2005-07-27 21:53:21',1765,591,'2005-08-05 18:53:21',1,'2006-02-15 21:30:53'), +(7550,'2005-07-27 21:55:07',4488,71,'2005-07-28 23:34:07',2,'2006-02-15 21:30:53'), +(7551,'2005-07-27 21:59:15',2635,304,'2005-07-31 19:54:15',2,'2006-02-15 21:30:53'), +(7552,'2005-07-27 22:03:41',2166,16,'2005-07-28 22:24:41',1,'2006-02-15 21:30:53'), +(7553,'2005-07-27 22:11:36',1643,275,'2005-08-03 17:52:36',1,'2006-02-15 21:30:53'), +(7554,'2005-07-27 22:12:41',1805,135,'2005-08-04 01:34:41',2,'2006-02-15 21:30:53'), +(7555,'2005-07-27 22:17:05',3421,533,'2005-08-02 02:50:05',2,'2006-02-15 21:30:53'), +(7556,'2005-07-27 22:17:17',794,188,'2005-07-28 19:17:17',2,'2006-02-15 21:30:53'), +(7557,'2005-07-27 22:18:19',3152,131,'2005-07-29 00:24:19',1,'2006-02-15 21:30:53'), +(7558,'2005-07-27 22:19:08',550,80,'2005-07-30 21:31:08',1,'2006-02-15 21:30:53'), +(7559,'2005-07-27 22:20:03',661,149,'2005-08-06 00:26:03',2,'2006-02-15 21:30:53'), +(7560,'2005-07-27 22:20:17',3574,562,'2005-08-02 23:00:17',2,'2006-02-15 21:30:53'), +(7561,'2005-07-27 22:21:05',3433,291,'2005-08-04 01:02:05',1,'2006-02-15 21:30:53'), +(7562,'2005-07-27 22:25:15',4417,366,'2005-08-01 01:21:15',2,'2006-02-15 21:30:53'), +(7563,'2005-07-27 22:25:36',2709,453,'2005-08-01 03:59:36',2,'2006-02-15 21:30:53'), +(7564,'2005-07-27 22:31:17',2887,291,'2005-08-01 01:05:17',2,'2006-02-15 21:30:53'), +(7565,'2005-07-27 22:33:59',1028,114,'2005-07-30 03:03:59',2,'2006-02-15 21:30:53'), +(7566,'2005-07-27 22:34:45',1802,144,'2005-08-01 22:20:45',1,'2006-02-15 21:30:53'), +(7567,'2005-07-27 22:38:05',1066,504,'2005-07-30 17:20:05',1,'2006-02-15 21:30:53'), +(7568,'2005-07-27 22:38:53',1578,296,'2005-07-29 00:51:53',1,'2006-02-15 21:30:53'), +(7569,'2005-07-27 22:38:53',2315,528,'2005-08-05 19:03:53',2,'2006-02-15 21:30:53'), +(7570,'2005-07-27 22:40:06',3189,110,'2005-07-28 23:14:06',1,'2006-02-15 21:30:53'), +(7571,'2005-07-27 22:43:42',3850,368,'2005-07-30 22:17:42',1,'2006-02-15 21:30:53'), +(7572,'2005-07-27 22:44:29',3068,532,'2005-08-01 03:04:29',1,'2006-02-15 21:30:53'), +(7573,'2005-07-27 22:46:20',314,467,'2005-08-04 01:55:20',1,'2006-02-15 21:30:53'), +(7574,'2005-07-27 22:53:00',298,200,'2005-07-29 18:39:00',2,'2006-02-15 21:30:53'), +(7575,'2005-07-27 22:53:52',702,582,'2005-07-29 02:02:52',1,'2006-02-15 21:30:53'), +(7576,'2005-07-27 22:54:35',3374,446,'2005-08-03 03:53:35',2,'2006-02-15 21:30:53'), +(7577,'2005-07-27 22:56:07',2723,332,'2005-08-05 21:23:07',2,'2006-02-15 21:30:53'), +(7578,'2005-07-27 22:58:17',4210,332,'2005-07-29 23:14:17',1,'2006-02-15 21:30:53'), +(7579,'2005-07-27 23:06:41',501,352,'2005-07-31 20:08:41',2,'2006-02-15 21:30:53'), +(7580,'2005-07-27 23:07:40',338,28,'2005-08-05 02:17:40',1,'2006-02-15 21:30:53'), +(7581,'2005-07-27 23:14:35',2051,166,'2005-07-29 21:30:35',1,'2006-02-15 21:30:53'), +(7582,'2005-07-27 23:15:14',3941,128,'2005-07-29 03:18:14',2,'2006-02-15 21:30:53'), +(7583,'2005-07-27 23:15:22',2890,198,'2005-08-04 04:39:22',2,'2006-02-15 21:30:53'), +(7584,'2005-07-27 23:15:46',4390,338,'2005-08-03 02:18:46',2,'2006-02-15 21:30:53'), +(7585,'2005-07-27 23:18:22',467,440,'2005-07-30 23:08:22',1,'2006-02-15 21:30:53'), +(7586,'2005-07-27 23:19:29',15,316,'2005-07-29 23:04:29',1,'2006-02-15 21:30:53'), +(7587,'2005-07-27 23:23:03',655,113,'2005-08-01 17:34:03',1,'2006-02-15 21:30:53'), +(7588,'2005-07-27 23:23:31',4033,360,'2005-08-04 02:54:31',1,'2006-02-15 21:30:53'), +(7589,'2005-07-27 23:23:36',1569,32,'2005-08-04 00:16:36',1,'2006-02-15 21:30:53'), +(7590,'2005-07-27 23:24:24',2152,73,'2005-07-28 19:53:24',2,'2006-02-15 21:30:53'), +(7591,'2005-07-27 23:25:54',651,525,'2005-08-02 22:54:54',1,'2006-02-15 21:30:53'), +(7592,'2005-07-27 23:26:04',4105,316,'2005-07-29 23:48:04',2,'2006-02-15 21:30:53'), +(7593,'2005-07-27 23:28:47',1158,436,'2005-08-02 19:51:47',1,'2006-02-15 21:30:53'), +(7594,'2005-07-27 23:30:41',3230,424,'2005-08-02 04:29:41',1,'2006-02-15 21:30:53'), +(7595,'2005-07-27 23:32:23',4313,390,'2005-08-03 05:28:23',1,'2006-02-15 21:30:53'), +(7596,'2005-07-27 23:33:57',2097,275,'2005-08-01 20:46:57',2,'2006-02-15 21:30:53'), +(7597,'2005-07-27 23:35:49',2856,169,'2005-07-30 21:38:49',1,'2006-02-15 21:30:53'), +(7598,'2005-07-27 23:36:01',4545,438,'2005-07-29 23:35:01',2,'2006-02-15 21:30:53'), +(7599,'2005-07-27 23:38:46',3272,87,'2005-07-28 22:52:46',1,'2006-02-15 21:30:53'), +(7600,'2005-07-27 23:41:18',3492,107,'2005-08-06 04:40:18',1,'2006-02-15 21:30:53'), +(7601,'2005-07-27 23:48:15',903,228,'2005-07-29 02:45:15',1,'2006-02-15 21:30:53'), +(7602,'2005-07-27 23:48:35',2516,366,'2005-08-04 17:58:35',1,'2006-02-15 21:30:53'), +(7603,'2005-07-27 23:54:44',124,497,'2005-07-29 01:24:44',1,'2006-02-15 21:30:53'), +(7604,'2005-07-27 23:54:52',3720,406,'2005-08-05 03:04:52',2,'2006-02-15 21:30:53'), +(7605,'2005-07-27 23:57:01',1391,576,'2005-08-03 04:11:01',1,'2006-02-15 21:30:53'), +(7606,'2005-07-28 00:02:15',637,201,'2005-07-29 03:14:15',2,'2006-02-15 21:30:53'), +(7607,'2005-07-28 00:05:53',3914,293,'2005-07-31 04:13:53',1,'2006-02-15 21:30:53'), +(7608,'2005-07-28 00:08:36',1256,167,'2005-07-28 18:13:36',1,'2006-02-15 21:30:53'), +(7609,'2005-07-28 00:11:00',3655,179,'2005-07-31 03:04:00',1,'2006-02-15 21:30:53'), +(7610,'2005-07-28 00:11:35',1279,450,'2005-07-31 00:33:35',1,'2006-02-15 21:30:53'), +(7611,'2005-07-28 00:11:47',3347,467,'2005-07-28 18:35:47',1,'2006-02-15 21:30:53'), +(7612,'2005-07-28 00:11:55',1411,563,'2005-07-30 00:47:55',1,'2006-02-15 21:30:53'), +(7613,'2005-07-28 00:13:58',4253,202,'2005-08-06 05:36:58',2,'2006-02-15 21:30:53'), +(7614,'2005-07-28 00:14:38',3475,440,'2005-07-29 18:18:38',1,'2006-02-15 21:30:53'), +(7615,'2005-07-28 00:15:24',3884,373,'2005-07-31 02:00:24',1,'2006-02-15 21:30:53'), +(7616,'2005-07-28 00:15:26',3790,9,'2005-07-30 21:52:26',1,'2006-02-15 21:30:53'), +(7617,'2005-07-28 00:18:40',2904,340,'2005-08-01 01:17:40',1,'2006-02-15 21:30:53'), +(7618,'2005-07-28 00:24:14',774,271,'2005-08-01 04:35:14',1,'2006-02-15 21:30:53'), +(7619,'2005-07-28 00:25:41',1057,419,'2005-07-30 04:35:41',2,'2006-02-15 21:30:53'), +(7620,'2005-07-28 00:27:17',931,580,'2005-07-31 02:04:17',1,'2006-02-15 21:30:53'), +(7621,'2005-07-28 00:34:06',1833,88,'2005-08-06 00:13:06',1,'2006-02-15 21:30:53'), +(7622,'2005-07-28 00:37:34',4014,198,'2005-07-31 23:27:34',2,'2006-02-15 21:30:53'), +(7623,'2005-07-28 00:37:41',1146,459,'2005-08-04 19:38:41',2,'2006-02-15 21:30:53'), +(7624,'2005-07-28 00:37:44',2756,415,'2005-07-30 21:26:44',1,'2006-02-15 21:30:53'), +(7625,'2005-07-28 00:47:56',3129,382,'2005-08-02 23:34:56',1,'2006-02-15 21:30:53'), +(7626,'2005-07-28 00:49:01',4200,450,'2005-07-31 00:43:01',1,'2006-02-15 21:30:53'), +(7627,'2005-07-28 00:56:47',782,52,'2005-08-02 04:16:47',1,'2006-02-15 21:30:53'), +(7628,'2005-07-28 00:58:04',1240,516,'2005-08-03 19:16:04',1,'2006-02-15 21:30:53'), +(7629,'2005-07-28 01:00:09',2453,229,'2005-07-30 06:49:09',1,'2006-02-15 21:30:53'), +(7630,'2005-07-28 01:01:03',2798,351,'2005-07-31 01:08:03',2,'2006-02-15 21:30:53'), +(7631,'2005-07-28 01:01:15',2437,132,'2005-08-01 06:16:15',2,'2006-02-15 21:30:53'), +(7632,'2005-07-28 01:02:40',3233,181,'2005-07-30 05:31:40',2,'2006-02-15 21:30:53'), +(7633,'2005-07-28 01:03:41',4171,402,'2005-08-01 23:54:41',2,'2006-02-15 21:30:53'), +(7634,'2005-07-28 01:07:01',4487,365,'2005-07-31 05:00:01',1,'2006-02-15 21:30:53'), +(7635,'2005-07-28 01:08:11',55,413,'2005-08-01 03:32:11',2,'2006-02-15 21:30:53'), +(7636,'2005-07-28 01:08:36',202,51,'2005-08-03 21:36:36',1,'2006-02-15 21:30:53'), +(7637,'2005-07-28 01:12:25',87,91,'2005-08-02 03:48:25',1,'2006-02-15 21:30:53'), +(7638,'2005-07-28 01:13:26',1890,172,'2005-07-28 20:34:26',1,'2006-02-15 21:30:53'), +(7639,'2005-07-28 01:14:36',767,459,'2005-07-29 00:19:36',1,'2006-02-15 21:30:53'), +(7640,'2005-07-28 01:14:49',3014,229,'2005-08-03 21:50:49',1,'2006-02-15 21:30:53'), +(7641,'2005-07-28 01:15:45',1868,475,'2005-08-04 23:50:45',1,'2006-02-15 21:30:53'), +(7642,'2005-07-28 01:16:51',3995,523,'2005-08-02 00:45:51',2,'2006-02-15 21:30:53'), +(7643,'2005-07-28 01:19:44',4369,407,'2005-08-04 21:16:44',1,'2006-02-15 21:30:53'), +(7644,'2005-07-28 01:27:33',882,173,'2005-07-31 22:58:33',2,'2006-02-15 21:30:53'), +(7645,'2005-07-28 01:27:42',830,381,'2005-08-03 07:16:42',2,'2006-02-15 21:30:53'), +(7646,'2005-07-28 01:31:45',1615,255,'2005-07-31 07:16:45',1,'2006-02-15 21:30:53'), +(7647,'2005-07-28 01:35:17',3079,36,'2005-08-01 00:14:17',1,'2006-02-15 21:30:53'), +(7648,'2005-07-28 01:35:33',797,310,'2005-08-04 06:21:33',2,'2006-02-15 21:30:53'), +(7649,'2005-07-28 01:37:26',2704,318,'2005-07-28 21:18:26',1,'2006-02-15 21:30:53'), +(7650,'2005-07-28 01:47:20',701,290,'2005-08-05 06:00:20',2,'2006-02-15 21:30:53'), +(7651,'2005-07-28 01:48:32',2753,401,'2005-08-03 03:10:32',2,'2006-02-15 21:30:53'), +(7652,'2005-07-28 01:50:29',92,5,'2005-07-30 22:23:29',2,'2006-02-15 21:30:53'), +(7653,'2005-07-28 01:58:30',814,232,'2005-07-28 23:32:30',2,'2006-02-15 21:30:53'), +(7654,'2005-07-28 02:00:14',1009,360,'2005-07-31 20:50:14',2,'2006-02-15 21:30:53'), +(7655,'2005-07-28 02:01:11',2665,513,'2005-07-30 23:12:11',2,'2006-02-15 21:30:53'), +(7656,'2005-07-28 02:07:19',178,148,'2005-07-31 04:05:19',1,'2006-02-15 21:30:53'), +(7657,'2005-07-28 02:09:00',2319,518,'2005-08-04 21:44:00',1,'2006-02-15 21:30:53'), +(7658,'2005-07-28 02:09:12',1798,272,'2005-07-30 00:54:12',2,'2006-02-15 21:30:53'), +(7659,'2005-07-28 02:09:45',1622,584,'2005-08-02 05:34:45',2,'2006-02-15 21:30:53'), +(7660,'2005-07-28 02:10:10',4385,4,'2005-07-30 04:29:10',2,'2006-02-15 21:30:53'), +(7661,'2005-07-28 02:10:27',3060,256,'2005-08-05 03:45:27',2,'2006-02-15 21:30:53'), +(7662,'2005-07-28 02:16:08',1017,534,'2005-08-03 21:51:08',1,'2006-02-15 21:30:53'), +(7663,'2005-07-28 02:19:48',832,470,'2005-07-30 21:43:48',2,'2006-02-15 21:30:53'), +(7664,'2005-07-28 02:24:23',1989,461,'2005-07-29 23:01:23',1,'2006-02-15 21:30:53'), +(7665,'2005-07-28 02:28:30',1455,590,'2005-07-31 20:42:30',1,'2006-02-15 21:30:53'), +(7666,'2005-07-28 02:35:12',688,196,'2005-08-05 05:43:12',2,'2006-02-15 21:30:53'), +(7667,'2005-07-28 02:37:22',2415,443,'2005-08-05 21:37:22',1,'2006-02-15 21:30:53'), +(7668,'2005-07-28 02:41:31',3880,508,'2005-08-02 06:08:31',1,'2006-02-15 21:30:53'), +(7669,'2005-07-28 02:44:07',2624,483,'2005-07-29 00:54:07',1,'2006-02-15 21:30:53'), +(7670,'2005-07-28 02:44:25',1356,252,'2005-07-29 21:55:25',2,'2006-02-15 21:30:53'), +(7671,'2005-07-28 02:48:31',3464,442,'2005-07-30 23:04:31',1,'2006-02-15 21:30:53'), +(7672,'2005-07-28 02:49:41',573,542,'2005-08-04 02:38:41',1,'2006-02-15 21:30:53'), +(7673,'2005-07-28 02:53:53',2368,409,'2005-08-06 00:07:53',1,'2006-02-15 21:30:53'), +(7674,'2005-07-28 02:54:30',682,177,'2005-08-05 23:09:30',1,'2006-02-15 21:30:53'), +(7675,'2005-07-28 02:55:20',153,189,'2005-07-31 05:27:20',1,'2006-02-15 21:30:53'), +(7676,'2005-07-28 02:55:27',1110,508,'2005-08-01 03:50:27',2,'2006-02-15 21:30:53'), +(7677,'2005-07-28 02:56:37',4464,566,'2005-07-31 02:21:37',1,'2006-02-15 21:30:53'), +(7678,'2005-07-28 02:58:16',3398,510,'2005-08-06 04:22:16',1,'2006-02-15 21:30:53'), +(7679,'2005-07-28 02:58:39',1063,444,'2005-08-02 04:58:39',1,'2006-02-15 21:30:53'), +(7680,'2005-07-28 02:59:08',1784,559,'2005-08-03 03:37:08',2,'2006-02-15 21:30:53'), +(7681,'2005-07-28 03:07:09',1176,432,'2005-07-29 08:30:09',2,'2006-02-15 21:30:53'), +(7682,'2005-07-28 03:07:29',3296,400,'2005-08-04 08:48:29',2,'2006-02-15 21:30:53'), +(7683,'2005-07-28 03:11:29',1760,73,'2005-08-04 00:14:29',1,'2006-02-15 21:30:53'), +(7684,'2005-07-28 03:11:54',3365,40,'2005-07-31 04:40:54',2,'2006-02-15 21:30:53'), +(7685,'2005-07-28 03:13:00',2213,468,'2005-08-01 00:29:00',2,'2006-02-15 21:30:53'), +(7686,'2005-07-28 03:19:23',2144,184,'2005-08-04 05:17:23',2,'2006-02-15 21:30:53'), +(7687,'2005-07-28 03:20:26',689,325,'2005-08-02 05:48:26',2,'2006-02-15 21:30:53'), +(7688,'2005-07-28 03:20:47',1179,491,'2005-08-06 06:07:47',2,'2006-02-15 21:30:53'), +(7689,'2005-07-28 03:21:24',1803,253,'2005-07-31 08:01:24',2,'2006-02-15 21:30:53'), +(7690,'2005-07-28 03:26:21',1076,150,'2005-07-29 00:08:21',1,'2006-02-15 21:30:53'), +(7691,'2005-07-28 03:30:09',1579,112,'2005-07-29 21:31:09',1,'2006-02-15 21:30:53'), +(7692,'2005-07-28 03:30:21',267,392,'2005-07-30 22:25:21',1,'2006-02-15 21:30:53'), +(7693,'2005-07-28 03:31:22',2479,148,'2005-07-31 06:42:22',2,'2006-02-15 21:30:53'), +(7694,'2005-07-28 03:39:25',2892,538,'2005-07-31 05:47:25',1,'2006-02-15 21:30:53'), +(7695,'2005-07-28 03:41:13',2742,323,'2005-08-06 05:06:13',2,'2006-02-15 21:30:53'), +(7696,'2005-07-28 03:41:35',3463,56,'2005-08-06 05:48:35',2,'2006-02-15 21:30:53'), +(7697,'2005-07-28 03:43:45',3966,377,'2005-08-03 07:55:45',2,'2006-02-15 21:30:53'), +(7698,'2005-07-28 03:44:14',3650,561,'2005-08-04 03:44:14',2,'2006-02-15 21:30:53'), +(7699,'2005-07-28 03:52:21',4332,53,'2005-08-01 05:00:21',2,'2006-02-15 21:30:53'), +(7700,'2005-07-28 03:54:14',3546,124,'2005-08-05 06:20:14',2,'2006-02-15 21:30:53'), +(7701,'2005-07-28 03:54:28',1604,306,'2005-08-01 08:39:28',2,'2006-02-15 21:30:53'), +(7702,'2005-07-28 03:56:05',253,349,'2005-07-31 03:29:05',1,'2006-02-15 21:30:53'), +(7703,'2005-07-28 03:59:21',2150,3,'2005-08-05 08:52:21',1,'2006-02-15 21:30:53'), +(7704,'2005-07-28 04:02:13',2342,265,'2005-08-04 00:51:13',1,'2006-02-15 21:30:53'), +(7705,'2005-07-28 04:02:58',1072,22,'2005-08-05 01:19:58',2,'2006-02-15 21:30:53'), +(7706,'2005-07-28 04:03:17',994,263,'2005-07-29 22:16:17',2,'2006-02-15 21:30:53'), +(7707,'2005-07-28 04:07:47',2563,232,'2005-07-29 02:02:47',1,'2006-02-15 21:30:53'), +(7708,'2005-07-28 04:19:15',398,363,'2005-08-04 04:41:15',1,'2006-02-15 21:30:53'), +(7709,'2005-07-28 04:22:14',3800,81,'2005-07-31 09:18:14',2,'2006-02-15 21:30:53'), +(7710,'2005-07-28 04:24:07',3716,77,'2005-08-03 22:49:07',2,'2006-02-15 21:30:53'), +(7711,'2005-07-28 04:26:42',2695,426,'2005-07-29 07:30:42',2,'2006-02-15 21:30:53'), +(7712,'2005-07-28 04:29:53',3256,361,'2005-08-02 00:57:53',2,'2006-02-15 21:30:53'), +(7713,'2005-07-28 04:32:14',2018,572,'2005-08-03 04:30:14',2,'2006-02-15 21:30:53'), +(7714,'2005-07-28 04:32:30',940,70,'2005-08-02 07:10:30',2,'2006-02-15 21:30:53'), +(7715,'2005-07-28 04:32:38',3210,512,'2005-08-05 00:37:38',2,'2006-02-15 21:30:53'), +(7716,'2005-07-28 04:33:15',1493,284,'2005-08-04 00:08:15',2,'2006-02-15 21:30:53'), +(7717,'2005-07-28 04:33:54',730,459,'2005-07-30 02:46:54',2,'2006-02-15 21:30:53'), +(7718,'2005-07-28 04:37:59',3587,4,'2005-07-29 09:20:59',2,'2006-02-15 21:30:53'), +(7719,'2005-07-28 04:39:09',2481,286,'2005-08-05 03:15:09',1,'2006-02-15 21:30:53'), +(7720,'2005-07-28 04:41:44',185,520,'2005-08-04 06:51:44',2,'2006-02-15 21:30:53'), +(7721,'2005-07-28 04:42:58',2228,83,'2005-07-31 07:52:58',1,'2006-02-15 21:30:53'), +(7722,'2005-07-28 04:44:58',3828,309,'2005-07-30 01:29:58',1,'2006-02-15 21:30:53'), +(7723,'2005-07-28 04:45:37',3263,147,'2005-07-30 09:03:37',2,'2006-02-15 21:30:53'), +(7724,'2005-07-28 04:46:30',346,3,'2005-08-04 08:41:30',1,'2006-02-15 21:30:53'), +(7725,'2005-07-28 04:47:14',1922,326,'2005-08-04 09:03:14',1,'2006-02-15 21:30:53'), +(7726,'2005-07-28 04:52:19',2578,219,'2005-08-04 09:05:19',1,'2006-02-15 21:30:53'), +(7727,'2005-07-28 04:52:43',2274,123,'2005-08-03 01:12:43',2,'2006-02-15 21:30:53'), +(7728,'2005-07-28 04:56:33',492,130,'2005-07-31 07:54:33',1,'2006-02-15 21:30:53'), +(7729,'2005-07-28 04:57:57',1491,89,'2005-07-30 09:38:57',1,'2006-02-15 21:30:53'), +(7730,'2005-07-28 04:59:48',3118,155,'2005-08-04 04:35:48',2,'2006-02-15 21:30:53'), +(7731,'2005-07-28 05:01:18',1533,413,'2005-07-29 02:22:18',1,'2006-02-15 21:30:53'), +(7732,'2005-07-28 05:03:32',3597,158,'2005-07-29 10:20:32',1,'2006-02-15 21:30:53'), +(7733,'2005-07-28 05:04:47',10,82,'2005-08-05 05:12:47',2,'2006-02-15 21:30:53'), +(7734,'2005-07-28 05:08:44',2726,135,'2005-07-30 09:42:44',2,'2006-02-15 21:30:53'), +(7735,'2005-07-28 05:09:56',3949,372,'2005-07-31 23:34:56',2,'2006-02-15 21:30:53'), +(7736,'2005-07-28 05:12:04',4466,205,'2005-08-05 02:28:04',2,'2006-02-15 21:30:53'), +(7737,'2005-07-28 05:15:03',1235,494,'2005-08-04 01:24:03',1,'2006-02-15 21:30:53'), +(7738,'2005-07-28 05:21:42',80,10,'2005-08-03 09:46:42',2,'2006-02-15 21:30:53'), +(7739,'2005-07-28 05:21:51',1554,186,'2005-07-30 02:06:51',2,'2006-02-15 21:30:53'), +(7740,'2005-07-28 05:23:36',3613,395,'2005-08-01 02:20:36',2,'2006-02-15 21:30:53'), +(7741,'2005-07-28 05:25:55',3917,591,'2005-08-02 02:40:55',1,'2006-02-15 21:30:53'), +(7742,'2005-07-28 05:33:16',1808,49,'2005-08-06 01:04:16',2,'2006-02-15 21:30:53'), +(7743,'2005-07-28 05:36:13',2883,210,'2005-08-03 11:28:13',2,'2006-02-15 21:30:53'), +(7744,'2005-07-28 05:38:20',1863,288,'2005-07-31 11:00:20',1,'2006-02-15 21:30:53'), +(7745,'2005-07-28 05:46:28',1014,285,'2005-08-06 07:44:28',2,'2006-02-15 21:30:53'), +(7746,'2005-07-28 05:48:56',176,299,'2005-08-04 07:33:56',1,'2006-02-15 21:30:53'), +(7747,'2005-07-28 05:50:11',1775,78,'2005-08-03 09:51:11',1,'2006-02-15 21:30:53'), +(7748,'2005-07-28 05:52:23',3523,415,'2005-07-31 01:35:23',2,'2006-02-15 21:30:53'), +(7749,'2005-07-28 05:53:36',3585,232,'2005-08-01 03:49:36',1,'2006-02-15 21:30:53'), +(7750,'2005-07-28 05:55:30',820,220,'2005-08-06 04:32:30',2,'2006-02-15 21:30:53'), +(7751,'2005-07-28 05:56:13',4425,176,'2005-08-05 08:08:13',1,'2006-02-15 21:30:53'), +(7752,'2005-07-28 06:01:00',2218,209,'2005-08-03 06:09:00',1,'2006-02-15 21:30:53'), +(7753,'2005-07-28 06:09:19',3071,531,'2005-08-06 06:17:19',1,'2006-02-15 21:30:53'), +(7754,'2005-07-28 06:10:55',1981,138,'2005-07-29 02:46:55',1,'2006-02-15 21:30:53'), +(7755,'2005-07-28 06:22:18',1247,449,'2005-08-06 11:38:18',2,'2006-02-15 21:30:53'), +(7756,'2005-07-28 06:22:52',1611,469,'2005-08-05 11:55:52',2,'2006-02-15 21:30:53'), +(7757,'2005-07-28 06:23:00',3445,502,'2005-07-30 12:02:00',1,'2006-02-15 21:30:53'), +(7758,'2005-07-28 06:23:41',4333,356,'2005-08-03 06:06:41',2,'2006-02-15 21:30:53'), +(7759,'2005-07-28 06:28:45',3381,405,'2005-08-03 11:38:45',1,'2006-02-15 21:30:53'), +(7760,'2005-07-28 06:29:45',409,307,'2005-08-03 01:36:45',1,'2006-02-15 21:30:53'), +(7761,'2005-07-28 06:31:45',3568,112,'2005-07-30 01:36:45',2,'2006-02-15 21:30:53'), +(7762,'2005-07-28 06:34:23',3234,462,'2005-08-05 09:55:23',2,'2006-02-15 21:30:53'), +(7763,'2005-07-28 06:35:16',2461,116,'2005-08-03 02:46:16',2,'2006-02-15 21:30:53'), +(7764,'2005-07-28 06:40:05',3537,142,'2005-07-30 02:51:05',2,'2006-02-15 21:30:53'), +(7765,'2005-07-28 06:40:33',4098,294,'2005-07-31 01:25:33',1,'2006-02-15 21:30:53'), +(7766,'2005-07-28 06:41:57',2774,292,'2005-08-06 11:21:57',2,'2006-02-15 21:30:53'), +(7767,'2005-07-28 06:42:02',329,139,'2005-08-05 11:19:02',2,'2006-02-15 21:30:53'), +(7768,'2005-07-28 06:44:03',2450,123,'2005-07-29 09:46:03',1,'2006-02-15 21:30:53'), +(7769,'2005-07-28 06:45:23',3250,30,'2005-07-30 12:18:23',1,'2006-02-15 21:30:53'), +(7770,'2005-07-28 06:49:35',1486,507,'2005-08-06 08:16:35',1,'2006-02-15 21:30:53'), +(7771,'2005-07-28 06:52:12',1003,175,'2005-07-30 12:48:12',1,'2006-02-15 21:30:53'), +(7772,'2005-07-28 06:59:09',986,552,'2005-08-01 10:49:09',1,'2006-02-15 21:30:53'), +(7773,'2005-07-28 07:02:17',4143,380,'2005-07-30 04:16:17',2,'2006-02-15 21:30:53'), +(7774,'2005-07-28 07:03:25',3483,259,'2005-08-03 02:05:25',1,'2006-02-15 21:30:53'), +(7775,'2005-07-28 07:04:36',3795,475,'2005-08-03 06:36:36',2,'2006-02-15 21:30:53'), +(7776,'2005-07-28 07:04:36',4170,385,'2005-08-01 09:32:36',1,'2006-02-15 21:30:53'), +(7777,'2005-07-28 07:04:42',4422,287,'2005-07-29 01:57:42',1,'2006-02-15 21:30:53'), +(7778,'2005-07-28 07:10:11',1044,248,'2005-08-05 05:09:11',1,'2006-02-15 21:30:53'), +(7779,'2005-07-28 07:11:11',3663,414,'2005-07-30 11:12:11',1,'2006-02-15 21:30:53'), +(7780,'2005-07-28 07:11:55',3069,236,'2005-08-06 05:41:55',1,'2006-02-15 21:30:53'), +(7781,'2005-07-28 07:13:20',541,539,'2005-08-06 05:43:20',2,'2006-02-15 21:30:53'), +(7782,'2005-07-28 07:13:40',3770,199,'2005-08-05 06:50:40',1,'2006-02-15 21:30:53'), +(7783,'2005-07-28 07:14:43',3817,581,'2005-08-01 05:03:43',2,'2006-02-15 21:30:53'), +(7784,'2005-07-28 07:15:32',3611,505,'2005-08-06 05:00:32',1,'2006-02-15 21:30:53'), +(7785,'2005-07-28 07:16:11',4277,460,'2005-08-02 03:43:11',1,'2006-02-15 21:30:53'), +(7786,'2005-07-28 07:18:26',2285,222,'2005-07-29 03:00:26',1,'2006-02-15 21:30:53'), +(7787,'2005-07-28 07:19:02',2191,203,'2005-08-06 02:38:02',2,'2006-02-15 21:30:53'), +(7788,'2005-07-28 07:21:55',95,487,'2005-08-03 06:33:55',1,'2006-02-15 21:30:53'), +(7789,'2005-07-28 07:22:07',2837,426,'2005-08-06 10:47:07',1,'2006-02-15 21:30:53'), +(7790,'2005-07-28 07:22:35',2327,189,'2005-07-30 02:59:35',1,'2006-02-15 21:30:53'), +(7791,'2005-07-28 07:22:51',822,514,'2005-07-30 03:09:51',1,'2006-02-15 21:30:53'), +(7792,'2005-07-28 07:24:02',3736,236,'2005-08-04 11:13:02',1,'2006-02-15 21:30:53'), +(7793,'2005-07-28 07:26:14',24,32,'2005-08-03 07:45:14',1,'2006-02-15 21:30:53'), +(7794,'2005-07-28 07:28:03',4509,510,'2005-08-06 12:32:03',2,'2006-02-15 21:30:53'), +(7795,'2005-07-28 07:28:16',1278,38,'2005-07-31 12:03:16',1,'2006-02-15 21:30:53'), +(7796,'2005-07-28 07:39:39',622,419,'2005-08-02 05:34:39',2,'2006-02-15 21:30:53'), +(7797,'2005-07-28 07:41:07',4180,370,'2005-07-31 04:13:07',1,'2006-02-15 21:30:53'), +(7798,'2005-07-28 07:41:59',3281,236,'2005-07-31 12:36:59',1,'2006-02-15 21:30:53'), +(7799,'2005-07-28 07:42:09',2163,384,'2005-08-02 10:02:09',2,'2006-02-15 21:30:53'), +(7800,'2005-07-28 07:50:59',3386,499,'2005-07-29 07:31:59',2,'2006-02-15 21:30:53'), +(7801,'2005-07-28 07:51:56',2052,9,'2005-07-30 12:18:56',1,'2006-02-15 21:30:53'), +(7802,'2005-07-28 07:51:57',1108,298,'2005-07-29 09:32:57',1,'2006-02-15 21:30:53'), +(7803,'2005-07-28 07:52:13',3438,449,'2005-08-03 13:35:13',1,'2006-02-15 21:30:53'), +(7804,'2005-07-28 07:56:00',592,249,'2005-07-30 10:33:00',2,'2006-02-15 21:30:53'), +(7805,'2005-07-28 07:56:41',3204,366,'2005-08-04 06:53:41',1,'2006-02-15 21:30:53'), +(7806,'2005-07-28 07:58:17',4317,440,'2005-08-06 10:15:17',1,'2006-02-15 21:30:53'), +(7807,'2005-07-28 07:58:27',2204,504,'2005-08-01 02:48:27',2,'2006-02-15 21:30:53'), +(7808,'2005-07-28 07:58:56',4052,327,'2005-08-02 10:49:56',1,'2006-02-15 21:30:53'), +(7809,'2005-07-28 07:59:46',4150,94,'2005-08-02 02:56:46',1,'2006-02-15 21:30:53'), +(7810,'2005-07-28 08:00:38',30,537,'2005-08-02 06:14:38',2,'2006-02-15 21:30:53'), +(7811,'2005-07-28 08:06:01',3891,347,'2005-07-30 10:08:01',2,'2006-02-15 21:30:53'), +(7812,'2005-07-28 08:06:52',4556,237,'2005-07-31 09:57:52',2,'2006-02-15 21:30:53'), +(7813,'2005-07-28 08:08:27',4216,411,'2005-07-30 03:08:27',2,'2006-02-15 21:30:53'), +(7814,'2005-07-28 08:09:48',2662,258,'2005-08-01 13:14:48',2,'2006-02-15 21:30:53'), +(7815,'2005-07-28 08:14:11',3551,300,'2005-07-30 02:34:11',2,'2006-02-15 21:30:53'), +(7816,'2005-07-28 08:14:12',1422,283,'2005-07-30 08:00:12',2,'2006-02-15 21:30:53'), +(7817,'2005-07-28 08:20:55',600,259,'2005-07-30 11:55:55',1,'2006-02-15 21:30:53'), +(7818,'2005-07-28 08:25:00',1672,301,'2005-07-29 14:07:00',1,'2006-02-15 21:30:53'), +(7819,'2005-07-28 08:27:14',3182,100,'2005-08-02 12:34:14',2,'2006-02-15 21:30:53'), +(7820,'2005-07-28 08:28:51',4475,459,'2005-08-05 10:00:51',1,'2006-02-15 21:30:53'), +(7821,'2005-07-28 08:31:23',1184,433,'2005-08-03 05:08:23',2,'2006-02-15 21:30:53'), +(7822,'2005-07-28 08:31:45',1428,156,'2005-07-31 11:06:45',1,'2006-02-15 21:30:53'), +(7823,'2005-07-28 08:32:53',84,428,'2005-08-06 11:59:53',1,'2006-02-15 21:30:53'), +(7824,'2005-07-28 08:34:47',2241,153,'2005-08-05 09:43:47',2,'2006-02-15 21:30:53'), +(7825,'2005-07-28 08:34:57',4340,348,'2005-08-06 02:45:57',1,'2006-02-15 21:30:53'), +(7826,'2005-07-28 08:35:51',1473,214,'2005-08-05 07:57:51',2,'2006-02-15 21:30:53'), +(7827,'2005-07-28 08:37:22',659,422,'2005-07-31 04:27:22',1,'2006-02-15 21:30:53'), +(7828,'2005-07-28 08:40:46',1710,212,'2005-07-30 14:22:46',1,'2006-02-15 21:30:53'), +(7829,'2005-07-28 08:43:39',111,5,'2005-08-04 14:33:39',1,'2006-02-15 21:30:53'), +(7830,'2005-07-28 08:43:49',4492,144,'2005-08-04 09:30:49',2,'2006-02-15 21:30:53'), +(7831,'2005-07-28 08:44:21',4436,499,'2005-07-30 03:25:21',2,'2006-02-15 21:30:53'), +(7832,'2005-07-28 08:46:11',284,92,'2005-08-04 06:55:11',1,'2006-02-15 21:30:53'), +(7833,'2005-07-28 08:46:14',1166,263,'2005-08-04 06:13:14',1,'2006-02-15 21:30:53'), +(7834,'2005-07-28 08:46:43',4124,278,'2005-07-31 07:09:43',2,'2006-02-15 21:30:53'), +(7835,'2005-07-28 08:49:39',43,547,'2005-08-02 07:16:39',2,'2006-02-15 21:30:53'), +(7836,'2005-07-28 08:55:27',1770,481,'2005-08-05 09:35:27',1,'2006-02-15 21:30:53'), +(7837,'2005-07-28 08:58:32',115,374,'2005-07-29 14:11:32',1,'2006-02-15 21:30:53'), +(7838,'2005-07-28 09:00:21',2222,550,'2005-07-29 05:52:21',1,'2006-02-15 21:30:53'), +(7839,'2005-07-28 09:01:13',914,518,'2005-08-04 11:46:13',1,'2006-02-15 21:30:53'), +(7840,'2005-07-28 09:03:02',2899,482,'2005-08-06 06:15:02',1,'2006-02-15 21:30:53'), +(7841,'2005-07-28 09:04:45',1092,1,'2005-07-30 12:37:45',2,'2006-02-15 21:30:53'), +(7842,'2005-07-28 09:10:06',2447,276,'2005-08-04 06:52:06',2,'2006-02-15 21:30:53'), +(7843,'2005-07-28 09:10:22',3962,75,'2005-08-01 11:27:22',2,'2006-02-15 21:30:53'), +(7844,'2005-07-28 09:16:19',4220,187,'2005-08-05 14:06:19',2,'2006-02-15 21:30:53'), +(7845,'2005-07-28 09:18:07',38,352,'2005-08-04 10:23:07',2,'2006-02-15 21:30:53'), +(7846,'2005-07-28 09:21:18',4201,309,'2005-08-06 07:10:18',2,'2006-02-15 21:30:53'), +(7847,'2005-07-28 09:23:14',3602,323,'2005-08-02 11:02:14',2,'2006-02-15 21:30:53'), +(7848,'2005-07-28 09:24:31',162,509,'2005-08-05 05:11:31',2,'2006-02-15 21:30:53'), +(7849,'2005-07-28 09:30:02',996,423,'2005-08-06 12:41:02',2,'2006-02-15 21:30:53'), +(7850,'2005-07-28 09:31:13',2913,118,'2005-08-02 14:06:13',2,'2006-02-15 21:30:53'), +(7851,'2005-07-28 09:31:58',3596,253,'2005-08-04 09:58:58',2,'2006-02-15 21:30:53'), +(7852,'2005-07-28 09:34:29',3462,123,'2005-07-30 05:48:29',1,'2006-02-15 21:30:53'), +(7853,'2005-07-28 09:36:38',4053,318,'2005-07-29 15:01:38',1,'2006-02-15 21:30:53'), +(7854,'2005-07-28 09:42:31',3531,84,'2005-08-02 09:25:31',1,'2006-02-15 21:30:53'), +(7855,'2005-07-28 09:43:02',2474,288,'2005-07-30 12:57:02',2,'2006-02-15 21:30:53'), +(7856,'2005-07-28 09:48:24',2376,375,'2005-07-29 09:49:24',2,'2006-02-15 21:30:53'), +(7857,'2005-07-28 09:49:40',4027,500,'2005-08-01 05:34:40',2,'2006-02-15 21:30:53'), +(7858,'2005-07-28 09:50:18',992,144,'2005-08-05 14:33:18',1,'2006-02-15 21:30:53'), +(7859,'2005-07-28 09:57:17',3392,547,'2005-08-04 06:04:17',1,'2006-02-15 21:30:53'), +(7860,'2005-07-28 09:58:02',2400,241,'2005-08-05 06:04:02',1,'2006-02-15 21:30:53'), +(7861,'2005-07-28 10:02:01',1781,208,'2005-08-06 13:17:01',1,'2006-02-15 21:30:53'), +(7862,'2005-07-28 10:02:25',2507,299,'2005-08-05 13:10:25',1,'2006-02-15 21:30:53'), +(7863,'2005-07-28 10:05:46',1212,182,'2005-07-29 14:42:46',1,'2006-02-15 21:30:53'), +(7864,'2005-07-28 10:06:10',1238,20,'2005-08-04 08:38:10',1,'2006-02-15 21:30:53'), +(7865,'2005-07-28 10:07:04',2334,148,'2005-08-06 08:16:04',2,'2006-02-15 21:30:53'), +(7866,'2005-07-28 10:08:01',1602,101,'2005-08-04 09:29:01',2,'2006-02-15 21:30:53'), +(7867,'2005-07-28 10:08:54',713,297,'2005-07-30 10:26:54',2,'2006-02-15 21:30:53'), +(7868,'2005-07-28 10:08:55',3589,43,'2005-07-30 11:52:55',1,'2006-02-15 21:30:53'), +(7869,'2005-07-28 10:13:15',3005,298,'2005-08-03 12:58:15',1,'2006-02-15 21:30:53'), +(7870,'2005-07-28 10:16:03',970,240,'2005-07-31 16:06:03',1,'2006-02-15 21:30:53'), +(7871,'2005-07-28 10:16:37',3990,491,'2005-08-05 11:24:37',2,'2006-02-15 21:30:53'), +(7872,'2005-07-28 10:18:16',826,66,'2005-07-31 10:57:16',1,'2006-02-15 21:30:53'), +(7873,'2005-07-28 10:19:46',2947,82,'2005-07-31 04:43:46',2,'2006-02-15 21:30:53'), +(7874,'2005-07-28 10:21:52',2981,86,'2005-08-06 16:19:52',1,'2006-02-15 21:30:53'), +(7875,'2005-07-28 10:23:48',3693,504,'2005-08-02 12:09:48',1,'2006-02-15 21:30:53'), +(7876,'2005-07-28 10:24:22',3563,577,'2005-08-04 07:15:22',1,'2006-02-15 21:30:53'), +(7877,'2005-07-28 10:25:36',2576,65,'2005-08-05 12:46:36',1,'2006-02-15 21:30:53'), +(7878,'2005-07-28 10:27:10',1564,141,'2005-07-29 11:22:10',1,'2006-02-15 21:30:53'), +(7879,'2005-07-28 10:27:46',1969,125,'2005-07-31 07:48:46',1,'2006-02-15 21:30:53'), +(7880,'2005-07-28 10:30:37',3670,182,'2005-08-03 08:05:37',2,'2006-02-15 21:30:53'), +(7881,'2005-07-28 10:33:22',533,249,'2005-08-02 12:10:22',1,'2006-02-15 21:30:53'), +(7882,'2005-07-28 10:33:42',3922,516,'2005-07-29 13:49:42',1,'2006-02-15 21:30:53'), +(7883,'2005-07-28 10:37:20',447,526,'2005-08-02 05:08:20',1,'2006-02-15 21:30:53'), +(7884,'2005-07-28 10:37:24',3871,502,'2005-07-31 10:31:24',1,'2006-02-15 21:30:53'), +(7885,'2005-07-28 10:37:41',4294,260,'2005-08-05 07:56:41',1,'2006-02-15 21:30:53'), +(7886,'2005-07-28 10:37:55',237,352,'2005-08-04 13:22:55',2,'2006-02-15 21:30:53'), +(7887,'2005-07-28 10:40:12',2820,253,'2005-08-02 06:09:12',1,'2006-02-15 21:30:53'), +(7888,'2005-07-28 10:40:24',545,378,'2005-08-01 16:18:24',1,'2006-02-15 21:30:53'), +(7889,'2005-07-28 10:43:21',3123,416,'2005-07-30 09:11:21',1,'2006-02-15 21:30:53'), +(7890,'2005-07-28 10:43:40',3443,553,'2005-07-31 06:07:40',1,'2006-02-15 21:30:53'), +(7891,'2005-07-28 10:43:56',3637,560,'2005-08-05 14:04:56',2,'2006-02-15 21:30:53'), +(7892,'2005-07-28 10:46:58',2717,397,'2005-07-30 16:03:58',1,'2006-02-15 21:30:53'), +(7893,'2005-07-28 10:49:27',3058,479,'2005-08-02 06:46:27',1,'2006-02-15 21:30:53'), +(7894,'2005-07-28 10:53:58',3532,330,'2005-08-02 13:42:58',2,'2006-02-15 21:30:53'), +(7895,'2005-07-28 10:57:15',900,67,'2005-08-02 15:10:15',2,'2006-02-15 21:30:53'), +(7896,'2005-07-28 11:00:58',3561,389,'2005-08-04 14:30:58',2,'2006-02-15 21:30:53'), +(7897,'2005-07-28 11:01:51',1396,75,'2005-07-31 13:13:51',1,'2006-02-15 21:30:53'), +(7898,'2005-07-28 11:08:22',2680,499,'2005-08-03 12:28:22',1,'2006-02-15 21:30:53'), +(7899,'2005-07-28 11:10:12',4130,452,'2005-08-02 13:20:12',2,'2006-02-15 21:30:53'), +(7900,'2005-07-28 11:11:33',2781,154,'2005-08-05 06:29:33',2,'2006-02-15 21:30:53'), +(7901,'2005-07-28 11:12:12',4435,280,'2005-08-01 08:13:12',1,'2006-02-15 21:30:53'), +(7902,'2005-07-28 11:14:19',3066,356,'2005-07-30 09:01:19',2,'2006-02-15 21:30:53'), +(7903,'2005-07-28 11:20:36',2767,588,'2005-07-31 09:16:36',1,'2006-02-15 21:30:53'), +(7904,'2005-07-28 11:25:39',316,477,'2005-08-06 08:22:39',2,'2006-02-15 21:30:53'), +(7905,'2005-07-28 11:26:57',4287,455,'2005-08-02 06:14:57',1,'2006-02-15 21:30:53'), +(7906,'2005-07-28 11:31:42',1216,85,'2005-08-01 11:56:42',2,'2006-02-15 21:30:53'), +(7907,'2005-07-28 11:32:00',3252,433,'2005-07-30 15:27:00',1,'2006-02-15 21:30:53'), +(7908,'2005-07-28 11:32:57',3646,360,'2005-08-03 13:30:57',2,'2006-02-15 21:30:53'), +(7909,'2005-07-28 11:38:08',3355,210,'2005-07-29 13:54:08',1,'2006-02-15 21:30:53'), +(7910,'2005-07-28 11:44:56',2044,480,'2005-08-05 14:37:56',2,'2006-02-15 21:30:53'), +(7911,'2005-07-28 11:46:45',390,3,'2005-07-29 07:19:45',1,'2006-02-15 21:30:53'), +(7912,'2005-07-28 11:46:58',745,127,'2005-08-05 12:50:58',1,'2006-02-15 21:30:53'), +(7913,'2005-07-28 11:47:23',4001,459,'2005-08-05 06:36:23',1,'2006-02-15 21:30:53'), +(7914,'2005-07-28 11:48:08',2796,469,'2005-07-30 14:14:08',1,'2006-02-15 21:30:53'), +(7915,'2005-07-28 11:49:46',2088,186,'2005-08-04 12:21:46',2,'2006-02-15 21:30:53'), +(7916,'2005-07-28 11:49:53',3877,13,'2005-07-29 15:01:53',1,'2006-02-15 21:30:53'), +(7917,'2005-07-28 11:56:57',2071,416,'2005-07-29 14:06:57',1,'2006-02-15 21:30:53'), +(7918,'2005-07-28 11:58:53',63,473,'2005-08-04 12:08:53',2,'2006-02-15 21:30:53'), +(7919,'2005-07-28 11:59:45',2138,36,'2005-08-06 11:19:45',1,'2006-02-15 21:30:53'), +(7920,'2005-07-28 12:01:19',66,48,'2005-08-05 07:08:19',1,'2006-02-15 21:30:53'), +(7921,'2005-07-28 12:02:46',116,100,'2005-08-01 12:08:46',2,'2006-02-15 21:30:53'), +(7922,'2005-07-28 12:05:25',817,125,'2005-08-02 12:13:25',2,'2006-02-15 21:30:53'), +(7923,'2005-07-28 12:08:29',2273,458,'2005-08-04 12:30:29',1,'2006-02-15 21:30:53'), +(7924,'2005-07-28 12:08:53',656,97,'2005-07-30 06:45:53',2,'2006-02-15 21:30:53'), +(7925,'2005-07-28 12:10:02',1763,500,'2005-08-02 15:50:02',1,'2006-02-15 21:30:53'), +(7926,'2005-07-28 12:13:02',180,78,'2005-08-05 08:54:02',1,'2006-02-15 21:30:53'), +(7927,'2005-07-28 12:13:42',1263,27,'2005-08-05 12:02:42',1,'2006-02-15 21:30:53'), +(7928,'2005-07-28 12:15:51',912,473,'2005-08-05 06:34:51',1,'2006-02-15 21:30:53'), +(7929,'2005-07-28 12:16:40',2652,307,'2005-07-31 13:09:40',2,'2006-02-15 21:30:53'), +(7930,'2005-07-28 12:21:08',4181,320,'2005-07-30 11:56:08',1,'2006-02-15 21:30:53'), +(7931,'2005-07-28 12:23:41',1923,326,'2005-08-06 09:49:41',2,'2006-02-15 21:30:53'), +(7932,'2005-07-28 12:24:54',3738,462,'2005-07-30 11:33:54',1,'2006-02-15 21:30:53'), +(7933,'2005-07-28 12:27:27',3175,297,'2005-07-29 10:34:27',2,'2006-02-15 21:30:53'), +(7934,'2005-07-28 12:33:10',2642,332,'2005-08-04 07:40:10',2,'2006-02-15 21:30:53'), +(7935,'2005-07-28 12:33:17',3664,462,'2005-08-04 14:40:17',2,'2006-02-15 21:30:53'), +(7936,'2005-07-28 12:33:21',563,520,'2005-07-30 13:31:21',2,'2006-02-15 21:30:53'), +(7937,'2005-07-28 12:38:22',3944,323,'2005-07-29 09:19:22',1,'2006-02-15 21:30:53'), +(7938,'2005-07-28 12:39:11',2579,114,'2005-08-04 16:56:11',1,'2006-02-15 21:30:53'), +(7939,'2005-07-28 12:45:47',2004,37,'2005-07-30 18:32:47',2,'2006-02-15 21:30:53'), +(7940,'2005-07-28 12:46:47',901,409,'2005-07-29 06:46:47',2,'2006-02-15 21:30:53'), +(7941,'2005-07-28 12:47:20',439,566,'2005-08-01 08:46:20',1,'2006-02-15 21:30:53'), +(7942,'2005-07-28 12:49:44',1636,56,'2005-07-31 18:07:44',2,'2006-02-15 21:30:53'), +(7943,'2005-07-28 12:50:55',2914,346,'2005-08-04 11:29:55',2,'2006-02-15 21:30:53'), +(7944,'2005-07-28 12:51:22',3148,504,'2005-07-30 12:19:22',1,'2006-02-15 21:30:53'), +(7945,'2005-07-28 12:53:58',3326,316,'2005-08-03 14:04:58',1,'2006-02-15 21:30:53'), +(7946,'2005-07-28 13:01:22',99,90,'2005-08-03 15:27:22',2,'2006-02-15 21:30:53'), +(7947,'2005-07-28 13:05:50',2504,279,'2005-08-02 11:16:50',2,'2006-02-15 21:30:53'), +(7948,'2005-07-28 13:06:16',215,589,'2005-08-05 08:38:16',1,'2006-02-15 21:30:53'), +(7949,'2005-07-28 13:07:24',2145,487,'2005-08-02 09:41:24',1,'2006-02-15 21:30:53'), +(7950,'2005-07-28 13:21:00',2286,122,'2005-08-05 18:47:00',2,'2006-02-15 21:30:53'), +(7951,'2005-07-28 13:21:16',3979,237,'2005-08-06 08:21:16',1,'2006-02-15 21:30:53'), +(7952,'2005-07-28 13:23:49',3313,158,'2005-08-01 08:50:49',1,'2006-02-15 21:30:53'), +(7953,'2005-07-28 13:24:32',4471,319,'2005-08-05 16:09:32',2,'2006-02-15 21:30:53'), +(7954,'2005-07-28 13:25:05',3735,145,'2005-07-29 18:50:05',2,'2006-02-15 21:30:53'), +(7955,'2005-07-28 13:31:36',1519,522,'2005-07-30 10:03:36',1,'2006-02-15 21:30:53'), +(7956,'2005-07-28 13:32:17',4335,118,'2005-08-06 14:51:17',2,'2006-02-15 21:30:53'), +(7957,'2005-07-28 13:34:08',1623,78,'2005-08-05 07:58:08',1,'2006-02-15 21:30:53'), +(7958,'2005-07-28 13:34:34',421,593,'2005-07-29 16:03:34',1,'2006-02-15 21:30:53'), +(7959,'2005-07-28 13:43:20',1549,178,'2005-08-02 12:13:20',2,'2006-02-15 21:30:53'), +(7960,'2005-07-28 13:47:08',2718,324,'2005-08-03 15:17:08',1,'2006-02-15 21:30:53'), +(7961,'2005-07-28 13:47:21',3284,45,'2005-08-01 09:33:21',1,'2006-02-15 21:30:53'), +(7962,'2005-07-28 13:48:09',1746,126,'2005-08-03 19:21:09',1,'2006-02-15 21:30:53'), +(7963,'2005-07-28 13:48:38',921,247,'2005-08-06 19:37:38',2,'2006-02-15 21:30:53'), +(7964,'2005-07-28 13:49:58',2528,574,'2005-08-03 10:03:58',2,'2006-02-15 21:30:53'), +(7965,'2005-07-28 13:52:57',3671,134,'2005-07-29 14:54:57',1,'2006-02-15 21:30:53'), +(7966,'2005-07-28 13:53:54',2514,91,'2005-08-06 15:32:54',1,'2006-02-15 21:30:53'), +(7967,'2005-07-28 13:56:51',2040,187,'2005-08-03 19:38:51',1,'2006-02-15 21:30:53'), +(7968,'2005-07-28 13:57:35',3865,597,'2005-08-04 13:40:35',1,'2006-02-15 21:30:53'), +(7969,'2005-07-28 13:57:37',2224,123,'2005-08-04 19:31:37',1,'2006-02-15 21:30:53'), +(7970,'2005-07-28 13:58:38',998,507,'2005-08-02 12:27:38',1,'2006-02-15 21:30:53'), +(7971,'2005-07-28 14:00:47',1910,445,'2005-08-02 10:01:47',1,'2006-02-15 21:30:53'), +(7972,'2005-07-28 14:07:46',2930,269,'2005-08-01 11:28:46',2,'2006-02-15 21:30:53'), +(7973,'2005-07-28 14:10:06',3936,339,'2005-07-29 11:26:06',2,'2006-02-15 21:30:53'), +(7974,'2005-07-28 14:11:57',2442,380,'2005-08-02 19:25:57',2,'2006-02-15 21:30:53'), +(7975,'2005-07-28 14:12:47',2565,211,'2005-08-05 09:18:47',1,'2006-02-15 21:30:53'), +(7976,'2005-07-28 14:13:24',2296,205,'2005-08-05 09:01:24',1,'2006-02-15 21:30:53'), +(7977,'2005-07-28 14:15:54',3162,389,'2005-08-01 18:58:54',2,'2006-02-15 21:30:53'), +(7978,'2005-07-28 14:16:14',508,431,'2005-08-01 12:53:14',2,'2006-02-15 21:30:53'), +(7979,'2005-07-28 14:16:30',3303,94,'2005-08-03 09:39:30',2,'2006-02-15 21:30:53'), +(7980,'2005-07-28 14:16:49',1019,329,'2005-08-05 09:20:49',1,'2006-02-15 21:30:53'), +(7981,'2005-07-28 14:18:25',90,392,'2005-08-04 15:21:25',2,'2006-02-15 21:30:53'), +(7982,'2005-07-28 14:19:59',668,71,'2005-07-29 14:09:59',2,'2006-02-15 21:30:53'), +(7983,'2005-07-28 14:23:01',1836,115,'2005-07-29 11:51:01',1,'2006-02-15 21:30:53'), +(7984,'2005-07-28 14:27:51',2893,208,'2005-08-04 17:34:51',1,'2006-02-15 21:30:53'), +(7985,'2005-07-28 14:29:01',4022,388,'2005-08-03 17:20:01',2,'2006-02-15 21:30:53'), +(7986,'2005-07-28 14:30:13',1283,395,'2005-08-05 09:35:13',1,'2006-02-15 21:30:53'), +(7987,'2005-07-28 14:36:52',288,443,'2005-08-05 16:49:52',2,'2006-02-15 21:30:53'), +(7988,'2005-07-28 14:37:18',2906,517,'2005-08-05 10:53:18',1,'2006-02-15 21:30:53'), +(7989,'2005-07-28 14:39:05',3196,149,'2005-08-05 13:58:05',2,'2006-02-15 21:30:53'), +(7990,'2005-07-28 14:43:08',188,232,'2005-08-01 10:51:08',2,'2006-02-15 21:30:53'), +(7991,'2005-07-28 14:45:45',1133,59,'2005-07-29 15:05:45',2,'2006-02-15 21:30:53'), +(7992,'2005-07-28 14:53:06',1851,33,'2005-07-29 18:17:06',1,'2006-02-15 21:30:53'), +(7993,'2005-07-28 14:56:41',2926,353,'2005-08-01 17:01:41',2,'2006-02-15 21:30:53'), +(7994,'2005-07-28 14:56:54',2431,21,'2005-07-30 09:56:54',2,'2006-02-15 21:30:53'), +(7995,'2005-07-28 15:00:09',536,89,'2005-08-01 12:33:09',2,'2006-02-15 21:30:53'), +(7996,'2005-07-28 15:00:49',2171,408,'2005-08-04 20:58:49',2,'2006-02-15 21:30:53'), +(7997,'2005-07-28 15:02:25',1845,591,'2005-08-04 14:35:25',1,'2006-02-15 21:30:53'), +(7998,'2005-07-28 15:08:48',1397,598,'2005-07-31 16:14:48',2,'2006-02-15 21:30:53'), +(7999,'2005-07-28 15:10:14',2750,170,'2005-08-06 17:08:14',2,'2006-02-15 21:30:53'), +(8000,'2005-07-28 15:10:25',1644,212,'2005-08-06 19:15:25',1,'2006-02-15 21:30:53'), +(8001,'2005-07-28 15:10:55',2570,10,'2005-08-05 18:23:55',1,'2006-02-15 21:30:53'), +(8002,'2005-07-28 15:11:00',22,449,'2005-07-31 15:46:00',2,'2006-02-15 21:30:53'), +(8003,'2005-07-28 15:11:27',2775,89,'2005-08-04 18:35:27',1,'2006-02-15 21:30:53'), +(8004,'2005-07-28 15:14:07',4428,393,'2005-07-30 19:32:07',2,'2006-02-15 21:30:53'), +(8005,'2005-07-28 15:15:11',670,488,'2005-07-29 14:54:11',1,'2006-02-15 21:30:53'), +(8006,'2005-07-28 15:15:41',3959,109,'2005-08-05 19:29:41',2,'2006-02-15 21:30:53'), +(8007,'2005-07-28 15:22:27',1942,525,'2005-07-30 13:06:27',2,'2006-02-15 21:30:53'), +(8008,'2005-07-28 15:25:55',2093,41,'2005-08-04 13:16:55',1,'2006-02-15 21:30:53'), +(8009,'2005-07-28 15:25:58',337,372,'2005-08-04 10:16:58',2,'2006-02-15 21:30:53'), +(8010,'2005-07-28 15:26:20',68,467,'2005-08-04 18:39:20',2,'2006-02-15 21:30:53'), +(8011,'2005-07-28 15:26:39',4274,497,'2005-07-30 13:59:39',1,'2006-02-15 21:30:53'), +(8012,'2005-07-28 15:29:00',1513,343,'2005-08-05 12:28:00',2,'2006-02-15 21:30:53'), +(8013,'2005-07-28 15:30:26',2074,403,'2005-08-05 16:29:26',1,'2006-02-15 21:30:53'), +(8014,'2005-07-28 15:32:07',2339,11,'2005-07-31 20:52:07',1,'2006-02-15 21:30:53'), +(8015,'2005-07-28 15:33:03',1814,23,'2005-07-30 15:32:03',2,'2006-02-15 21:30:53'), +(8016,'2005-07-28 15:35:41',516,391,'2005-07-30 20:06:41',2,'2006-02-15 21:30:53'), +(8017,'2005-07-28 15:35:41',1764,328,'2005-08-01 19:12:41',1,'2006-02-15 21:30:53'), +(8018,'2005-07-28 15:36:48',4129,377,'2005-08-06 20:04:48',1,'2006-02-15 21:30:53'), +(8019,'2005-07-28 15:37:43',1844,84,'2005-08-04 15:40:43',2,'2006-02-15 21:30:53'), +(8020,'2005-07-28 15:43:32',4459,498,'2005-08-05 12:19:32',1,'2006-02-15 21:30:53'), +(8021,'2005-07-28 15:45:24',1920,501,'2005-08-04 10:49:24',1,'2006-02-15 21:30:53'), +(8022,'2005-07-28 15:48:56',294,314,'2005-08-06 13:40:56',1,'2006-02-15 21:30:53'), +(8023,'2005-07-28 15:53:29',2133,411,'2005-07-31 12:26:29',1,'2006-02-15 21:30:53'), +(8024,'2005-07-28 15:55:40',1735,90,'2005-08-02 09:56:40',1,'2006-02-15 21:30:53'), +(8025,'2005-07-28 16:03:27',2932,421,'2005-08-03 21:58:27',2,'2006-02-15 21:30:53'), +(8026,'2005-07-28 16:05:38',4225,511,'2005-07-29 21:28:38',2,'2006-02-15 21:30:53'), +(8027,'2005-07-28 16:09:57',1335,436,'2005-08-05 18:17:57',1,'2006-02-15 21:30:53'), +(8028,'2005-07-28 16:11:15',2715,137,'2005-08-05 15:11:15',1,'2006-02-15 21:30:53'), +(8029,'2005-07-28 16:11:21',4273,61,'2005-08-05 13:52:21',1,'2006-02-15 21:30:53'), +(8030,'2005-07-28 16:12:53',2633,30,'2005-07-31 17:15:53',1,'2006-02-15 21:30:53'), +(8031,'2005-07-28 16:15:49',2196,40,'2005-08-02 18:27:49',2,'2006-02-15 21:30:53'), +(8032,'2005-07-28 16:17:00',431,230,'2005-07-29 13:32:00',1,'2006-02-15 21:30:53'), +(8033,'2005-07-28 16:18:23',4268,1,'2005-07-30 17:56:23',1,'2006-02-15 21:30:53'), +(8034,'2005-07-28 16:20:26',1997,502,'2005-08-04 19:11:26',2,'2006-02-15 21:30:53'), +(8035,'2005-07-28 16:23:01',1503,14,'2005-08-05 10:52:01',1,'2006-02-15 21:30:53'), +(8036,'2005-07-28 16:27:43',2741,412,'2005-08-01 13:41:43',2,'2006-02-15 21:30:53'), +(8037,'2005-07-28 16:31:20',3973,409,'2005-07-31 12:18:20',2,'2006-02-15 21:30:53'), +(8038,'2005-07-28 16:32:55',1225,30,'2005-07-30 21:08:55',1,'2006-02-15 21:30:53'), +(8039,'2005-07-28 16:35:16',1996,203,'2005-07-30 14:49:16',1,'2006-02-15 21:30:53'), +(8040,'2005-07-28 16:39:43',4543,163,'2005-08-02 20:00:43',2,'2006-02-15 21:30:53'), +(8041,'2005-07-28 16:39:56',763,357,'2005-07-30 18:44:56',1,'2006-02-15 21:30:53'), +(8042,'2005-07-28 16:45:11',4325,14,'2005-08-04 17:16:11',2,'2006-02-15 21:30:53'), +(8043,'2005-07-28 16:45:44',208,577,'2005-08-01 12:26:44',1,'2006-02-15 21:30:53'), +(8044,'2005-07-28 16:49:12',879,442,'2005-08-02 22:41:12',1,'2006-02-15 21:30:53'), +(8045,'2005-07-28 16:49:38',3427,368,'2005-08-03 15:42:38',1,'2006-02-15 21:30:53'), +(8046,'2005-07-28 16:49:41',2873,120,'2005-07-31 21:33:41',1,'2006-02-15 21:30:53'), +(8047,'2005-07-28 16:49:43',2936,292,'2005-08-03 14:48:43',2,'2006-02-15 21:30:53'), +(8048,'2005-07-28 16:50:26',2721,182,'2005-08-06 19:20:26',1,'2006-02-15 21:30:53'), +(8049,'2005-07-28 16:51:58',673,42,'2005-07-31 22:18:58',1,'2006-02-15 21:30:53'), +(8050,'2005-07-28 16:55:47',1864,488,'2005-08-02 13:20:47',1,'2006-02-15 21:30:53'), +(8051,'2005-07-28 16:56:16',4405,192,'2005-07-29 22:48:16',1,'2006-02-15 21:30:53'), +(8052,'2005-07-28 16:57:31',2460,166,'2005-08-03 18:03:31',2,'2006-02-15 21:30:53'), +(8053,'2005-07-28 16:59:41',1511,526,'2005-08-03 22:28:41',2,'2006-02-15 21:30:53'), +(8054,'2005-07-28 17:02:18',1062,225,'2005-08-06 11:55:18',1,'2006-02-15 21:30:53'), +(8055,'2005-07-28 17:02:32',4162,304,'2005-07-31 22:05:32',2,'2006-02-15 21:30:53'), +(8056,'2005-07-28 17:04:15',4018,589,'2005-08-03 19:11:15',2,'2006-02-15 21:30:53'), +(8057,'2005-07-28 17:07:13',4177,483,'2005-08-03 16:25:13',1,'2006-02-15 21:30:53'), +(8058,'2005-07-28 17:07:49',2148,404,'2005-08-03 22:57:49',1,'2006-02-15 21:30:53'), +(8059,'2005-07-28 17:09:59',2611,372,'2005-07-31 15:42:59',2,'2006-02-15 21:30:53'), +(8060,'2005-07-28 17:10:02',3765,577,'2005-08-05 17:11:02',1,'2006-02-15 21:30:53'), +(8061,'2005-07-28 17:12:53',650,467,'2005-08-05 13:56:53',2,'2006-02-15 21:30:53'), +(8062,'2005-07-28 17:15:06',1384,317,'2005-07-30 16:56:06',2,'2006-02-15 21:30:53'), +(8063,'2005-07-28 17:15:11',935,163,'2005-08-04 16:45:11',1,'2006-02-15 21:30:53'), +(8064,'2005-07-28 17:15:38',3788,488,'2005-08-04 18:04:38',2,'2006-02-15 21:30:53'), +(8065,'2005-07-28 17:15:48',413,220,'2005-08-04 15:49:48',2,'2006-02-15 21:30:53'), +(8066,'2005-07-28 17:20:09',3208,462,'2005-07-31 18:36:09',2,'2006-02-15 21:30:53'), +(8067,'2005-07-28 17:20:17',3923,209,'2005-07-29 21:55:17',1,'2006-02-15 21:30:53'), +(8068,'2005-07-28 17:22:28',209,216,'2005-07-29 12:24:28',2,'2006-02-15 21:30:53'), +(8069,'2005-07-28 17:23:46',2822,178,'2005-07-30 16:19:46',1,'2006-02-15 21:30:53'), +(8070,'2005-07-28 17:26:56',1606,89,'2005-08-01 17:33:56',1,'2006-02-15 21:30:53'), +(8071,'2005-07-28 17:27:48',2582,131,'2005-08-03 11:48:48',2,'2006-02-15 21:30:53'), +(8072,'2005-07-28 17:27:59',2347,99,'2005-07-30 19:08:59',1,'2006-02-15 21:30:53'), +(8073,'2005-07-28 17:29:02',630,314,'2005-08-01 22:17:02',2,'2006-02-15 21:30:53'), +(8074,'2005-07-28 17:33:39',1558,1,'2005-07-29 20:17:39',1,'2006-02-15 21:30:53'), +(8075,'2005-07-28 17:37:28',2175,61,'2005-07-29 11:56:28',2,'2006-02-15 21:30:53'), +(8076,'2005-07-28 17:45:58',214,17,'2005-08-04 18:07:58',2,'2006-02-15 21:30:53'), +(8077,'2005-07-28 17:54:35',3253,122,'2005-07-29 19:28:35',2,'2006-02-15 21:30:53'), +(8078,'2005-07-28 17:54:42',3839,407,'2005-07-30 18:18:42',2,'2006-02-15 21:30:53'), +(8079,'2005-07-28 17:58:36',3564,432,'2005-07-29 14:48:36',2,'2006-02-15 21:30:53'), +(8080,'2005-07-28 18:05:06',3035,406,'2005-07-29 22:44:06',2,'2006-02-15 21:30:53'), +(8081,'2005-07-28 18:06:46',4404,362,'2005-08-04 18:54:46',1,'2006-02-15 21:30:53'), +(8082,'2005-07-28 18:08:02',3089,423,'2005-08-04 14:33:02',2,'2006-02-15 21:30:53'), +(8083,'2005-07-28 18:09:48',2187,30,'2005-08-04 21:47:48',2,'2006-02-15 21:30:53'), +(8084,'2005-07-28 18:11:58',911,571,'2005-08-03 23:41:58',2,'2006-02-15 21:30:53'), +(8085,'2005-07-28 18:13:15',3059,552,'2005-08-04 13:45:15',2,'2006-02-15 21:30:53'), +(8086,'2005-07-28 18:17:14',1182,3,'2005-07-30 18:22:14',2,'2006-02-15 21:30:53'), +(8087,'2005-07-28 18:21:16',1913,295,'2005-08-03 12:38:16',2,'2006-02-15 21:30:53'), +(8088,'2005-07-28 18:23:49',2590,343,'2005-08-06 23:25:49',2,'2006-02-15 21:30:53'), +(8089,'2005-07-28 18:26:47',1414,50,'2005-08-03 21:28:47',1,'2006-02-15 21:30:53'), +(8090,'2005-07-28 18:27:29',1336,387,'2005-08-02 14:08:29',2,'2006-02-15 21:30:53'), +(8091,'2005-07-28 18:27:29',3025,126,'2005-08-01 19:45:29',2,'2006-02-15 21:30:53'), +(8092,'2005-07-28 18:28:07',2034,167,'2005-07-30 19:17:07',2,'2006-02-15 21:30:53'), +(8093,'2005-07-28 18:29:16',1427,533,'2005-08-05 21:49:16',1,'2006-02-15 21:30:53'), +(8094,'2005-07-28 18:30:28',4276,432,'2005-08-05 17:37:28',2,'2006-02-15 21:30:53'), +(8095,'2005-07-28 18:32:40',2685,42,'2005-08-06 23:45:40',1,'2006-02-15 21:30:53'), +(8096,'2005-07-28 18:32:46',502,506,'2005-08-06 15:00:46',1,'2006-02-15 21:30:53'), +(8097,'2005-07-28 18:32:49',2719,436,'2005-08-06 16:09:49',1,'2006-02-15 21:30:53'), +(8098,'2005-07-28 18:34:20',1757,41,'2005-07-31 19:07:20',2,'2006-02-15 21:30:53'), +(8099,'2005-07-28 18:35:12',3694,36,'2005-07-30 15:44:12',2,'2006-02-15 21:30:53'), +(8100,'2005-07-28 18:43:11',2859,11,'2005-08-02 15:56:11',2,'2006-02-15 21:30:53'), +(8101,'2005-07-28 18:47:23',731,6,'2005-07-31 16:23:23',1,'2006-02-15 21:30:53'), +(8102,'2005-07-28 18:49:43',4505,237,'2005-08-03 23:04:43',2,'2006-02-15 21:30:53'), +(8103,'2005-07-28 18:50:14',4472,397,'2005-08-04 16:53:14',1,'2006-02-15 21:30:53'), +(8104,'2005-07-28 18:59:36',1080,533,'2005-08-03 22:05:36',2,'2006-02-15 21:30:53'), +(8105,'2005-07-28 18:59:46',1316,314,'2005-07-29 22:51:46',1,'2006-02-15 21:30:53'), +(8106,'2005-07-28 19:02:46',963,137,'2005-07-30 20:48:46',2,'2006-02-15 21:30:53'), +(8107,'2005-07-28 19:03:16',1318,518,'2005-08-05 17:18:16',2,'2006-02-15 21:30:53'), +(8108,'2005-07-28 19:07:38',1600,295,'2005-08-03 15:13:38',2,'2006-02-15 21:30:53'), +(8109,'2005-07-28 19:07:44',652,407,'2005-07-31 14:59:44',1,'2006-02-15 21:30:53'), +(8110,'2005-07-28 19:07:45',1244,225,'2005-08-04 22:12:45',1,'2006-02-15 21:30:53'), +(8111,'2005-07-28 19:10:03',3226,148,'2005-07-29 22:25:03',1,'2006-02-15 21:30:53'), +(8112,'2005-07-28 19:11:07',2444,528,'2005-08-03 18:41:07',1,'2006-02-15 21:30:53'), +(8113,'2005-07-28 19:14:00',4269,541,'2005-08-06 00:05:00',2,'2006-02-15 21:30:53'), +(8114,'2005-07-28 19:14:06',815,509,'2005-08-05 13:16:06',1,'2006-02-15 21:30:53'), +(8115,'2005-07-28 19:14:17',2080,106,'2005-08-03 14:58:17',2,'2006-02-15 21:30:53'), +(8116,'2005-07-28 19:20:07',4497,1,'2005-07-29 22:54:07',1,'2006-02-15 21:30:53'), +(8117,'2005-07-28 19:20:16',1502,300,'2005-08-05 23:55:16',1,'2006-02-15 21:30:53'), +(8118,'2005-07-28 19:22:22',331,566,'2005-08-01 22:13:22',1,'2006-02-15 21:30:53'), +(8119,'2005-07-28 19:23:15',1542,398,'2005-08-04 15:53:15',2,'2006-02-15 21:30:53'), +(8120,'2005-07-28 19:24:24',3993,235,'2005-07-31 14:31:24',2,'2006-02-15 21:30:53'), +(8121,'2005-07-28 19:25:45',2229,363,'2005-08-02 13:30:45',2,'2006-02-15 21:30:53'), +(8122,'2005-07-28 19:27:37',2141,18,'2005-07-29 19:48:37',2,'2006-02-15 21:30:53'), +(8123,'2005-07-28 19:28:23',2256,138,'2005-08-04 19:41:23',1,'2006-02-15 21:30:53'), +(8124,'2005-07-28 19:28:58',1187,357,'2005-07-31 00:45:58',1,'2006-02-15 21:30:53'), +(8125,'2005-07-28 19:31:48',4330,96,'2005-07-30 01:09:48',1,'2006-02-15 21:30:53'), +(8126,'2005-07-28 19:32:41',719,537,'2005-08-05 00:33:41',2,'2006-02-15 21:30:53'), +(8127,'2005-07-28 19:45:19',4265,20,'2005-07-31 22:07:19',2,'2006-02-15 21:30:53'), +(8128,'2005-07-28 19:46:06',2872,71,'2005-08-06 16:10:06',2,'2006-02-15 21:30:53'), +(8129,'2005-07-28 19:47:02',2546,345,'2005-07-31 21:33:02',2,'2006-02-15 21:30:53'), +(8130,'2005-07-28 19:48:15',4055,499,'2005-08-05 14:18:15',2,'2006-02-15 21:30:53'), +(8131,'2005-07-28 19:55:21',437,281,'2005-08-02 21:52:21',2,'2006-02-15 21:30:53'), +(8132,'2005-07-28 19:57:31',1303,562,'2005-08-02 22:16:31',2,'2006-02-15 21:30:53'), +(8133,'2005-07-28 20:01:06',849,461,'2005-08-01 20:01:06',1,'2006-02-15 21:30:53'), +(8134,'2005-07-28 20:01:23',1695,41,'2005-08-03 01:00:23',2,'2006-02-15 21:30:53'), +(8135,'2005-07-28 20:03:25',1339,164,'2005-08-03 01:28:25',2,'2006-02-15 21:30:53'), +(8136,'2005-07-28 20:05:48',3434,429,'2005-08-01 20:31:48',2,'2006-02-15 21:30:53'), +(8137,'2005-07-28 20:07:18',3188,312,'2005-08-03 17:41:18',1,'2006-02-15 21:30:53'), +(8138,'2005-07-28 20:12:17',1258,371,'2005-08-01 15:21:17',2,'2006-02-15 21:30:53'), +(8139,'2005-07-28 20:16:30',3651,177,'2005-08-03 18:00:30',2,'2006-02-15 21:30:53'), +(8140,'2005-07-28 20:17:50',4270,119,'2005-07-30 18:07:50',1,'2006-02-15 21:30:53'), +(8141,'2005-07-28 20:21:19',361,523,'2005-07-30 19:16:19',2,'2006-02-15 21:30:53'), +(8142,'2005-07-28 20:21:54',1075,322,'2005-07-31 18:39:54',2,'2006-02-15 21:30:53'), +(8143,'2005-07-28 20:23:11',3629,429,'2005-08-01 18:17:11',1,'2006-02-15 21:30:53'), +(8144,'2005-07-28 20:30:55',3556,320,'2005-07-31 18:10:55',2,'2006-02-15 21:30:53'), +(8145,'2005-07-28 20:34:41',937,198,'2005-08-05 15:28:41',2,'2006-02-15 21:30:53'), +(8146,'2005-07-28 20:37:36',2430,476,'2005-07-31 16:03:36',2,'2006-02-15 21:30:53'), +(8147,'2005-07-28 20:37:56',628,228,'2005-07-30 18:26:56',1,'2006-02-15 21:30:53'), +(8148,'2005-07-28 20:39:47',537,347,'2005-08-02 16:29:47',1,'2006-02-15 21:30:53'), +(8149,'2005-07-28 20:48:12',1790,591,'2005-08-01 20:07:12',2,'2006-02-15 21:30:53'), +(8150,'2005-07-28 20:50:41',3489,497,'2005-08-02 00:43:41',1,'2006-02-15 21:30:53'), +(8151,'2005-07-28 20:50:52',4370,495,'2005-07-31 14:50:52',1,'2006-02-15 21:30:53'), +(8152,'2005-07-28 20:53:05',2557,46,'2005-08-06 20:03:05',2,'2006-02-15 21:30:53'), +(8153,'2005-07-28 20:55:49',2173,347,'2005-08-01 15:56:49',2,'2006-02-15 21:30:53'), +(8154,'2005-07-28 20:56:18',1180,285,'2005-08-01 21:56:18',2,'2006-02-15 21:30:53'), +(8155,'2005-07-28 20:57:06',3023,428,'2005-08-02 18:40:06',2,'2006-02-15 21:30:53'), +(8156,'2005-07-28 20:59:04',1977,257,'2005-08-01 01:52:04',1,'2006-02-15 21:30:53'), +(8157,'2005-07-28 21:06:45',915,566,'2005-08-04 16:06:45',1,'2006-02-15 21:30:53'), +(8158,'2005-07-28 21:08:46',4327,458,'2005-08-01 21:50:46',2,'2006-02-15 21:30:53'), +(8159,'2005-07-28 21:09:28',1118,47,'2005-08-04 15:34:28',1,'2006-02-15 21:30:53'), +(8160,'2005-07-28 21:10:30',2446,138,'2005-08-05 16:52:30',2,'2006-02-15 21:30:53'), +(8161,'2005-07-28 21:11:00',848,555,'2005-08-03 23:32:00',1,'2006-02-15 21:30:53'), +(8162,'2005-07-28 21:11:46',4393,107,'2005-08-04 18:26:46',1,'2006-02-15 21:30:53'), +(8163,'2005-07-28 21:11:48',1919,157,'2005-07-31 18:30:48',1,'2006-02-15 21:30:53'), +(8164,'2005-07-28 21:17:19',1674,461,'2005-07-30 21:12:19',2,'2006-02-15 21:30:53'), +(8165,'2005-07-28 21:23:06',3460,197,'2005-08-01 21:32:06',1,'2006-02-15 21:30:53'), +(8166,'2005-07-28 21:23:33',3906,42,'2005-08-03 21:07:33',2,'2006-02-15 21:30:53'), +(8167,'2005-07-28 21:25:45',3181,311,'2005-08-04 18:04:45',1,'2006-02-15 21:30:53'), +(8168,'2005-07-28 21:28:32',1120,365,'2005-07-30 02:10:32',1,'2006-02-15 21:30:53'), +(8169,'2005-07-28 21:29:46',4086,366,'2005-08-06 22:29:46',1,'2006-02-15 21:30:53'), +(8170,'2005-07-28 21:32:29',2495,40,'2005-08-03 22:02:29',1,'2006-02-15 21:30:53'), +(8171,'2005-07-28 21:32:57',3380,296,'2005-07-30 21:19:57',1,'2006-02-15 21:30:53'), +(8172,'2005-07-28 21:34:36',1237,329,'2005-08-06 23:53:36',1,'2006-02-15 21:30:53'), +(8173,'2005-07-28 21:35:44',4377,332,'2005-08-06 19:15:44',2,'2006-02-15 21:30:53'), +(8174,'2005-07-28 21:36:52',465,359,'2005-08-04 00:32:52',1,'2006-02-15 21:30:53'), +(8175,'2005-07-28 21:38:16',641,429,'2005-08-07 01:34:16',2,'2006-02-15 21:30:53'), +(8176,'2005-07-28 21:42:08',3527,347,'2005-08-03 22:59:08',2,'2006-02-15 21:30:53'), +(8177,'2005-07-28 21:43:54',3696,122,'2005-08-02 22:38:54',2,'2006-02-15 21:30:53'), +(8178,'2005-07-28 21:54:31',2825,503,'2005-08-02 23:56:31',2,'2006-02-15 21:30:53'), +(8179,'2005-07-28 22:05:13',2902,578,'2005-07-30 21:57:13',2,'2006-02-15 21:30:53'), +(8180,'2005-07-28 22:05:24',3236,281,'2005-08-01 19:09:24',1,'2006-02-15 21:30:53'), +(8181,'2005-07-28 22:18:38',357,522,'2005-08-06 02:43:38',2,'2006-02-15 21:30:53'), +(8182,'2005-07-28 22:19:12',4120,427,'2005-08-01 22:40:12',2,'2006-02-15 21:30:53'), +(8183,'2005-07-28 22:21:07',1545,119,'2005-08-04 19:20:07',2,'2006-02-15 21:30:53'), +(8184,'2005-07-28 22:22:35',1249,160,'2005-07-31 19:30:35',1,'2006-02-15 21:30:53'), +(8185,'2005-07-28 22:23:49',2452,568,'2005-07-31 00:07:49',1,'2006-02-15 21:30:53'), +(8186,'2005-07-28 22:30:27',4255,102,'2005-07-31 21:08:27',1,'2006-02-15 21:30:53'), +(8187,'2005-07-28 22:33:53',945,87,'2005-08-03 03:54:53',1,'2006-02-15 21:30:53'), +(8188,'2005-07-28 22:34:12',3826,10,'2005-08-01 02:32:12',2,'2006-02-15 21:30:53'), +(8189,'2005-07-28 22:36:26',3515,361,'2005-08-04 00:12:26',2,'2006-02-15 21:30:53'), +(8190,'2005-07-28 22:47:06',2290,267,'2005-08-04 21:51:06',1,'2006-02-15 21:30:53'), +(8191,'2005-07-28 22:47:14',1777,508,'2005-07-31 23:13:14',2,'2006-02-15 21:30:53'), +(8192,'2005-07-28 22:49:11',255,552,'2005-07-30 04:13:11',1,'2006-02-15 21:30:53'), +(8193,'2005-07-28 22:50:50',2402,15,'2005-08-01 04:14:50',2,'2006-02-15 21:30:53'), +(8194,'2005-07-28 22:51:44',1148,424,'2005-07-29 17:13:44',1,'2006-02-15 21:30:53'), +(8195,'2005-07-28 22:52:58',3989,590,'2005-08-04 02:12:58',1,'2006-02-15 21:30:53'), +(8196,'2005-07-28 22:56:11',3435,21,'2005-08-06 04:53:11',1,'2006-02-15 21:30:53'), +(8197,'2005-07-28 23:04:10',4126,407,'2005-08-05 00:06:10',2,'2006-02-15 21:30:53'), +(8198,'2005-07-28 23:08:05',1767,356,'2005-08-06 00:43:05',2,'2006-02-15 21:30:53'), +(8199,'2005-07-28 23:10:25',404,471,'2005-08-04 23:30:25',1,'2006-02-15 21:30:53'), +(8200,'2005-07-28 23:10:46',353,185,'2005-07-29 18:35:46',1,'2006-02-15 21:30:53'), +(8201,'2005-07-28 23:10:48',220,567,'2005-08-01 00:50:48',2,'2006-02-15 21:30:53'), +(8202,'2005-07-28 23:11:45',3802,75,'2005-08-03 21:57:45',2,'2006-02-15 21:30:53'), +(8203,'2005-07-28 23:14:56',3878,100,'2005-07-31 04:19:56',2,'2006-02-15 21:30:53'), +(8204,'2005-07-28 23:18:29',2472,398,'2005-08-02 04:49:29',1,'2006-02-15 21:30:53'), +(8205,'2005-07-28 23:18:48',2944,434,'2005-07-30 00:37:48',2,'2006-02-15 21:30:53'), +(8206,'2005-07-28 23:20:31',2979,422,'2005-08-04 21:36:31',1,'2006-02-15 21:30:53'), +(8207,'2005-07-28 23:26:31',1195,475,'2005-08-06 03:26:31',1,'2006-02-15 21:30:53'), +(8208,'2005-07-28 23:26:35',1362,530,'2005-08-01 23:00:35',2,'2006-02-15 21:30:53'), +(8209,'2005-07-28 23:29:28',2484,127,'2005-08-07 04:22:28',2,'2006-02-15 21:30:53'), +(8210,'2005-07-28 23:31:05',3424,300,'2005-08-06 17:36:05',1,'2006-02-15 21:30:53'), +(8211,'2005-07-28 23:34:22',1859,193,'2005-08-04 21:18:22',1,'2006-02-15 21:30:53'), +(8212,'2005-07-28 23:37:23',1305,159,'2005-08-04 04:33:23',2,'2006-02-15 21:30:53'), +(8213,'2005-07-28 23:37:33',3816,17,'2005-07-31 00:32:33',2,'2006-02-15 21:30:53'), +(8214,'2005-07-28 23:37:57',352,509,'2005-08-07 00:29:57',2,'2006-02-15 21:30:53'), +(8215,'2005-07-28 23:43:56',2921,437,'2005-08-03 19:30:56',2,'2006-02-15 21:30:53'), +(8216,'2005-07-28 23:43:59',2211,254,'2005-08-06 05:05:59',1,'2006-02-15 21:30:53'), +(8217,'2005-07-28 23:44:13',3747,206,'2005-08-03 21:27:13',2,'2006-02-15 21:30:53'), +(8218,'2005-07-28 23:45:41',2769,578,'2005-08-02 00:14:41',1,'2006-02-15 21:30:53'), +(8219,'2005-07-28 23:46:31',3609,227,'2005-08-03 00:11:31',2,'2006-02-15 21:30:53'), +(8220,'2005-07-28 23:46:41',1061,360,'2005-07-31 22:14:41',2,'2006-02-15 21:30:53'), +(8221,'2005-07-28 23:47:19',3138,496,'2005-08-02 20:42:19',1,'2006-02-15 21:30:53'), +(8222,'2005-07-28 23:51:53',2999,278,'2005-08-05 22:48:53',1,'2006-02-15 21:30:53'), +(8223,'2005-07-28 23:56:01',4508,282,'2005-08-03 22:27:01',1,'2006-02-15 21:30:53'), +(8224,'2005-07-28 23:59:02',1995,467,'2005-08-02 04:54:02',1,'2006-02-15 21:30:53'), +(8225,'2005-07-28 23:59:29',3631,41,'2005-07-30 03:27:29',2,'2006-02-15 21:30:53'), +(8226,'2005-07-29 00:01:04',3541,368,'2005-08-01 19:08:04',2,'2006-02-15 21:30:53'), +(8227,'2005-07-29 00:02:22',269,167,'2005-07-31 04:05:22',1,'2006-02-15 21:30:53'), +(8228,'2005-07-29 00:08:58',1955,72,'2005-08-03 00:12:58',2,'2006-02-15 21:30:53'), +(8229,'2005-07-29 00:09:08',4272,498,'2005-07-31 19:29:08',2,'2006-02-15 21:30:53'), +(8230,'2005-07-29 00:12:59',1937,2,'2005-08-06 19:52:59',2,'2006-02-15 21:30:53'), +(8231,'2005-07-29 00:14:37',1083,331,'2005-07-31 19:12:37',1,'2006-02-15 21:30:53'), +(8232,'2005-07-29 00:14:37',3255,526,'2005-08-06 00:57:37',1,'2006-02-15 21:30:53'), +(8233,'2005-07-29 00:16:23',1640,93,'2005-08-03 05:17:23',2,'2006-02-15 21:30:53'), +(8234,'2005-07-29 00:19:20',644,227,'2005-08-03 19:16:20',2,'2006-02-15 21:30:53'), +(8235,'2005-07-29 00:22:56',1581,320,'2005-08-03 04:03:56',2,'2006-02-15 21:30:53'), +(8236,'2005-07-29 00:27:04',1901,369,'2005-07-31 05:02:04',2,'2006-02-15 21:30:53'), +(8237,'2005-07-29 00:29:56',608,441,'2005-08-06 03:10:56',1,'2006-02-15 21:30:53'), +(8238,'2005-07-29 00:30:06',2941,320,'2005-08-02 22:52:06',2,'2006-02-15 21:30:53'), +(8239,'2005-07-29 00:31:39',3951,549,'2005-07-29 19:33:39',1,'2006-02-15 21:30:53'), +(8240,'2005-07-29 00:33:32',1975,509,'2005-08-05 21:25:32',2,'2006-02-15 21:30:53'), +(8241,'2005-07-29 00:33:36',4297,26,'2005-08-03 01:31:36',1,'2006-02-15 21:30:53'), +(8242,'2005-07-29 00:34:27',509,99,'2005-08-05 23:13:27',2,'2006-02-15 21:30:53'), +(8243,'2005-07-29 00:35:33',1873,481,'2005-08-04 06:02:33',2,'2006-02-15 21:30:53'), +(8244,'2005-07-29 00:35:34',1552,175,'2005-08-05 04:18:34',2,'2006-02-15 21:30:53'), +(8245,'2005-07-29 00:37:09',3330,555,'2005-08-05 05:48:09',2,'2006-02-15 21:30:53'), +(8246,'2005-07-29 00:38:41',1724,146,'2005-08-05 06:28:41',2,'2006-02-15 21:30:53'), +(8247,'2005-07-29 00:41:38',2607,539,'2005-08-06 20:29:38',2,'2006-02-15 21:30:53'), +(8248,'2005-07-29 00:41:56',2017,272,'2005-08-05 18:53:56',2,'2006-02-15 21:30:53'), +(8249,'2005-07-29 00:48:44',3331,57,'2005-08-07 04:25:44',2,'2006-02-15 21:30:53'), +(8250,'2005-07-29 00:49:15',4519,533,'2005-08-04 02:53:15',1,'2006-02-15 21:30:53'), +(8251,'2005-07-29 00:50:14',2317,408,'2005-08-03 23:52:14',2,'2006-02-15 21:30:53'), +(8252,'2005-07-29 00:54:17',3312,257,'2005-07-31 20:34:17',1,'2006-02-15 21:30:53'), +(8253,'2005-07-29 00:57:06',2388,76,'2005-08-07 01:46:06',1,'2006-02-15 21:30:53'), +(8254,'2005-07-29 00:59:31',1787,392,'2005-08-03 23:43:31',2,'2006-02-15 21:30:53'), +(8255,'2005-07-29 01:02:30',3715,224,'2005-08-01 22:39:30',1,'2006-02-15 21:30:53'), +(8256,'2005-07-29 01:02:42',1483,537,'2005-07-31 22:29:42',2,'2006-02-15 21:30:53'), +(8257,'2005-07-29 01:03:20',3024,566,'2005-08-04 21:54:20',1,'2006-02-15 21:30:53'), +(8258,'2005-07-29 01:03:42',1379,370,'2005-08-04 22:08:42',2,'2006-02-15 21:30:53'), +(8259,'2005-07-29 01:05:16',343,274,'2005-08-01 23:27:16',2,'2006-02-15 21:30:53'), +(8260,'2005-07-29 01:11:00',4249,366,'2005-08-06 00:36:00',1,'2006-02-15 21:30:53'), +(8261,'2005-07-29 01:11:05',1915,50,'2005-08-04 03:13:05',2,'2006-02-15 21:30:53'), +(8262,'2005-07-29 01:11:18',1341,563,'2005-08-02 05:17:18',2,'2006-02-15 21:30:53'), +(8263,'2005-07-29 01:11:23',28,5,'2005-07-31 01:53:23',2,'2006-02-15 21:30:53'), +(8264,'2005-07-29 01:18:50',2987,175,'2005-08-03 05:31:50',2,'2006-02-15 21:30:53'), +(8265,'2005-07-29 01:20:15',2389,409,'2005-08-06 19:32:15',2,'2006-02-15 21:30:53'), +(8266,'2005-07-29 01:20:16',1972,196,'2005-07-30 04:31:16',1,'2006-02-15 21:30:53'), +(8267,'2005-07-29 01:21:02',4107,131,'2005-08-04 19:34:02',2,'2006-02-15 21:30:53'), +(8268,'2005-07-29 01:23:23',4239,421,'2005-08-05 01:36:23',1,'2006-02-15 21:30:53'), +(8269,'2005-07-29 01:26:54',2778,376,'2005-08-04 22:42:54',1,'2006-02-15 21:30:53'), +(8270,'2005-07-29 01:27:22',3565,282,'2005-07-29 20:55:22',1,'2006-02-15 21:30:53'), +(8271,'2005-07-29 01:27:44',83,481,'2005-08-07 05:01:44',2,'2006-02-15 21:30:53'), +(8272,'2005-07-29 01:29:51',70,346,'2005-08-03 21:56:51',2,'2006-02-15 21:30:53'), +(8273,'2005-07-29 01:33:16',4244,532,'2005-08-06 04:26:16',2,'2006-02-15 21:30:53'), +(8274,'2005-07-29 01:34:32',2634,340,'2005-08-01 20:15:32',2,'2006-02-15 21:30:53'), +(8275,'2005-07-29 01:35:47',4432,336,'2005-07-30 02:16:47',1,'2006-02-15 21:30:53'), +(8276,'2005-07-29 01:38:43',2451,466,'2005-08-03 23:00:43',1,'2006-02-15 21:30:53'), +(8277,'2005-07-29 01:38:53',1296,13,'2005-08-04 07:09:53',2,'2006-02-15 21:30:53'), +(8278,'2005-07-29 01:42:55',768,265,'2005-08-05 01:55:55',2,'2006-02-15 21:30:53'), +(8279,'2005-07-29 01:43:37',3838,176,'2005-08-03 02:36:37',1,'2006-02-15 21:30:53'), +(8280,'2005-07-29 01:45:51',1208,195,'2005-08-05 22:51:51',2,'2006-02-15 21:30:53'), +(8281,'2005-07-29 01:46:00',899,441,'2005-08-04 23:09:00',1,'2006-02-15 21:30:53'), +(8282,'2005-07-29 01:49:04',980,462,'2005-08-05 01:51:04',2,'2006-02-15 21:30:53'), +(8283,'2005-07-29 01:52:22',2002,300,'2005-08-05 03:22:22',2,'2006-02-15 21:30:53'), +(8284,'2005-07-29 01:56:40',4371,446,'2005-08-07 07:15:40',2,'2006-02-15 21:30:53'), +(8285,'2005-07-29 02:00:18',678,56,'2005-08-03 20:43:18',2,'2006-02-15 21:30:53'), +(8286,'2005-07-29 02:02:46',4092,87,'2005-08-06 06:00:46',1,'2006-02-15 21:30:53'), +(8287,'2005-07-29 02:03:58',812,178,'2005-08-07 02:11:58',1,'2006-02-15 21:30:53'), +(8288,'2005-07-29 02:04:22',1822,55,'2005-08-05 04:21:22',2,'2006-02-15 21:30:53'), +(8289,'2005-07-29 02:23:24',4579,459,'2005-08-06 03:23:24',2,'2006-02-15 21:30:53'), +(8290,'2005-07-29 02:24:08',3823,462,'2005-08-03 01:02:08',2,'2006-02-15 21:30:53'), +(8291,'2005-07-29 02:28:25',2817,455,'2005-08-03 20:57:25',2,'2006-02-15 21:30:53'), +(8292,'2005-07-29 02:29:36',4003,192,'2005-08-07 08:06:36',1,'2006-02-15 21:30:53'), +(8293,'2005-07-29 02:30:50',831,71,'2005-08-04 03:09:50',2,'2006-02-15 21:30:53'), +(8294,'2005-07-29 02:32:41',1811,520,'2005-08-02 06:28:41',1,'2006-02-15 21:30:53'), +(8295,'2005-07-29 02:42:14',2065,406,'2005-07-30 22:22:14',1,'2006-02-15 21:30:53'), +(8296,'2005-07-29 02:43:25',2543,88,'2005-08-01 00:23:25',1,'2006-02-15 21:30:53'), +(8297,'2005-07-29 02:45:46',3774,349,'2005-07-31 20:49:46',1,'2006-02-15 21:30:53'), +(8298,'2005-07-29 02:47:36',952,493,'2005-08-05 07:58:36',2,'2006-02-15 21:30:53'), +(8299,'2005-07-29 02:56:00',1797,173,'2005-07-30 22:35:00',2,'2006-02-15 21:30:53'), +(8300,'2005-07-29 02:57:59',4364,222,'2005-08-05 01:12:59',2,'2006-02-15 21:30:53'), +(8301,'2005-07-29 03:00:08',562,101,'2005-08-01 04:26:08',2,'2006-02-15 21:30:53'), +(8302,'2005-07-29 03:01:24',1314,103,'2005-07-30 01:08:24',2,'2006-02-15 21:30:53'), +(8303,'2005-07-29 03:05:56',1620,574,'2005-08-04 06:13:56',1,'2006-02-15 21:30:53'), +(8304,'2005-07-29 03:08:30',4431,119,'2005-08-02 03:04:30',2,'2006-02-15 21:30:53'), +(8305,'2005-07-29 03:08:47',3916,566,'2005-08-06 07:49:47',2,'2006-02-15 21:30:53'), +(8306,'2005-07-29 03:12:26',1708,232,'2005-08-01 23:26:26',1,'2006-02-15 21:30:53'), +(8307,'2005-07-29 03:18:34',3197,39,'2005-08-06 05:51:34',2,'2006-02-15 21:30:53'), +(8308,'2005-07-29 03:22:15',601,582,'2005-08-04 21:38:15',2,'2006-02-15 21:30:53'), +(8309,'2005-07-29 03:22:20',2250,446,'2005-08-01 06:30:20',1,'2006-02-15 21:30:53'), +(8310,'2005-07-29 03:25:56',2637,238,'2005-08-06 23:18:56',2,'2006-02-15 21:30:53'), +(8311,'2005-07-29 03:26:07',3623,63,'2005-08-02 01:46:07',1,'2006-02-15 21:30:53'), +(8312,'2005-07-29 03:32:38',3996,143,'2005-07-31 02:12:38',1,'2006-02-15 21:30:53'), +(8313,'2005-07-29 03:34:21',2736,91,'2005-08-02 01:32:21',1,'2006-02-15 21:30:53'), +(8314,'2005-07-29 03:35:04',2182,118,'2005-08-06 08:43:04',2,'2006-02-15 21:30:53'), +(8315,'2005-07-29 03:37:07',1420,135,'2005-07-29 23:22:07',2,'2006-02-15 21:30:53'), +(8316,'2005-07-29 03:38:49',4118,549,'2005-08-03 07:41:49',1,'2006-02-15 21:30:53'), +(8317,'2005-07-29 03:39:07',3898,415,'2005-08-03 00:14:07',1,'2006-02-15 21:30:53'), +(8318,'2005-07-29 03:44:30',4524,167,'2005-07-30 05:03:30',2,'2006-02-15 21:30:53'), +(8319,'2005-07-29 03:44:52',747,280,'2005-08-01 00:35:52',2,'2006-02-15 21:30:53'), +(8320,'2005-07-29 03:49:58',1285,513,'2005-08-03 01:00:58',1,'2006-02-15 21:30:53'), +(8321,'2005-07-29 03:50:54',1875,354,'2005-08-01 02:08:54',1,'2006-02-15 21:30:53'), +(8322,'2005-07-29 03:52:49',301,541,'2005-08-02 22:53:49',1,'2006-02-15 21:30:53'), +(8323,'2005-07-29 03:52:59',2766,87,'2005-08-06 01:49:59',2,'2006-02-15 21:30:53'), +(8324,'2005-07-29 03:56:05',1467,98,'2005-08-02 01:41:05',1,'2006-02-15 21:30:53'), +(8325,'2005-07-29 03:57:27',932,362,'2005-08-06 22:30:27',1,'2006-02-15 21:30:53'), +(8326,'2005-07-29 03:58:49',108,1,'2005-08-01 05:16:49',2,'2006-02-15 21:30:53'), +(8327,'2005-07-29 04:00:52',2928,317,'2005-07-31 08:27:52',1,'2006-02-15 21:30:53'), +(8328,'2005-07-29 04:06:24',4454,314,'2005-08-03 22:24:24',1,'2006-02-15 21:30:53'), +(8329,'2005-07-29 04:06:33',3468,108,'2005-08-06 01:46:33',1,'2006-02-15 21:30:53'), +(8330,'2005-07-29 04:09:07',2294,412,'2005-08-05 05:00:07',2,'2006-02-15 21:30:53'), +(8331,'2005-07-29 04:13:29',18,148,'2005-08-04 07:09:29',1,'2006-02-15 21:30:53'), +(8332,'2005-07-29 04:16:00',1142,217,'2005-08-03 03:34:00',1,'2006-02-15 21:30:53'), +(8333,'2005-07-29 04:16:40',823,494,'2005-08-02 10:10:40',2,'2006-02-15 21:30:53'), +(8334,'2005-07-29 04:18:25',982,154,'2005-08-07 07:18:25',2,'2006-02-15 21:30:53'), +(8335,'2005-07-29 04:18:25',1719,143,'2005-07-31 08:12:25',2,'2006-02-15 21:30:53'), +(8336,'2005-07-29 04:20:42',2120,210,'2005-08-05 10:17:42',1,'2006-02-15 21:30:53'), +(8337,'2005-07-29 04:31:55',752,157,'2005-08-02 02:38:55',2,'2006-02-15 21:30:53'), +(8338,'2005-07-29 04:40:39',2257,389,'2005-08-07 04:40:39',2,'2006-02-15 21:30:53'), +(8339,'2005-07-29 04:41:13',1870,129,'2005-07-30 09:01:13',2,'2006-02-15 21:30:53'), +(8340,'2005-07-29 04:41:44',1553,386,'2005-08-07 10:33:44',1,'2006-02-15 21:30:53'), +(8341,'2005-07-29 04:42:01',4208,309,'2005-08-04 00:58:01',1,'2006-02-15 21:30:53'), +(8342,'2005-07-29 04:45:05',3301,572,'2005-08-01 07:20:05',1,'2006-02-15 21:30:53'), +(8343,'2005-07-29 04:45:16',4267,439,'2005-08-02 03:37:16',1,'2006-02-15 21:30:53'), +(8344,'2005-07-29 04:45:25',221,257,'2005-08-06 01:53:25',1,'2006-02-15 21:30:53'), +(8345,'2005-07-29 04:47:37',1034,129,'2005-08-02 07:25:37',1,'2006-02-15 21:30:53'), +(8346,'2005-07-29 04:48:22',2475,385,'2005-08-01 04:22:22',1,'2006-02-15 21:30:53'), +(8347,'2005-07-29 04:49:25',4407,157,'2005-07-31 00:57:25',2,'2006-02-15 21:30:53'), +(8348,'2005-07-29 04:49:26',4533,174,'2005-08-05 03:26:26',2,'2006-02-15 21:30:53'), +(8349,'2005-07-29 04:50:22',534,416,'2005-08-05 08:50:22',1,'2006-02-15 21:30:53'), +(8350,'2005-07-29 04:50:39',3726,513,'2005-07-31 05:36:39',2,'2006-02-15 21:30:53'), +(8351,'2005-07-29 04:50:53',2963,202,'2005-07-30 07:28:53',2,'2006-02-15 21:30:53'), +(8352,'2005-07-29 04:52:01',2710,168,'2005-08-06 07:39:01',2,'2006-02-15 21:30:53'), +(8353,'2005-07-29 04:52:10',26,585,'2005-07-30 04:01:10',1,'2006-02-15 21:30:53'), +(8354,'2005-07-29 04:56:26',4476,579,'2005-08-01 08:04:26',2,'2006-02-15 21:30:53'), +(8355,'2005-07-29 04:57:43',4569,270,'2005-08-03 06:25:43',1,'2006-02-15 21:30:53'), +(8356,'2005-07-29 04:58:56',2951,483,'2005-08-06 03:07:56',1,'2006-02-15 21:30:53'), +(8357,'2005-07-29 04:59:44',892,76,'2005-08-01 04:26:44',1,'2006-02-15 21:30:53'), +(8358,'2005-07-29 05:00:58',1449,372,'2005-08-01 02:49:58',2,'2006-02-15 21:30:53'), +(8359,'2005-07-29 05:02:12',140,531,'2005-08-04 08:52:12',1,'2006-02-15 21:30:53'), +(8360,'2005-07-29 05:08:00',4135,62,'2005-08-02 00:40:00',1,'2006-02-15 21:30:53'), +(8361,'2005-07-29 05:08:57',3404,360,'2005-08-03 02:49:57',1,'2006-02-15 21:30:53'), +(8362,'2005-07-29 05:09:11',2287,223,'2005-08-04 00:08:11',2,'2006-02-15 21:30:53'), +(8363,'2005-07-29 05:10:08',1607,302,'2005-08-06 00:11:08',1,'2006-02-15 21:30:53'), +(8364,'2005-07-29 05:10:31',1361,362,'2005-07-30 04:02:31',2,'2006-02-15 21:30:53'), +(8365,'2005-07-29 05:11:00',53,280,'2005-07-30 05:30:00',2,'2006-02-15 21:30:53'), +(8366,'2005-07-29 05:11:14',479,39,'2005-08-05 01:48:14',1,'2006-02-15 21:30:53'), +(8367,'2005-07-29 05:11:19',4551,383,'2005-08-02 00:35:19',1,'2006-02-15 21:30:53'), +(8368,'2005-07-29 05:15:41',1410,200,'2005-08-07 01:35:41',1,'2006-02-15 21:30:53'), +(8369,'2005-07-29 05:15:42',1456,507,'2005-08-01 03:36:42',2,'2006-02-15 21:30:53'), +(8370,'2005-07-29 05:16:21',1206,121,'2005-08-06 23:16:21',1,'2006-02-15 21:30:53'), +(8371,'2005-07-29 05:16:35',2466,396,'2005-07-31 01:49:35',1,'2006-02-15 21:30:53'), +(8372,'2005-07-29 05:18:08',754,523,'2005-08-06 09:39:08',1,'2006-02-15 21:30:53'), +(8373,'2005-07-29 05:19:53',2070,457,'2005-08-04 04:39:53',1,'2006-02-15 21:30:53'), +(8374,'2005-07-29 05:24:02',1084,589,'2005-08-05 03:55:02',1,'2006-02-15 21:30:53'), +(8375,'2005-07-29 05:25:30',3634,125,'2005-08-04 01:43:30',2,'2006-02-15 21:30:53'), +(8376,'2005-07-29 05:25:32',3588,43,'2005-08-01 07:42:32',2,'2006-02-15 21:30:53'), +(8377,'2005-07-29 05:27:40',270,73,'2005-07-30 02:52:40',2,'2006-02-15 21:30:53'), +(8378,'2005-07-29 05:28:35',3500,347,'2005-08-02 05:55:35',1,'2006-02-15 21:30:53'), +(8379,'2005-07-29 05:29:40',3907,193,'2005-08-06 05:56:40',2,'2006-02-15 21:30:53'), +(8380,'2005-07-29 05:31:29',2279,145,'2005-08-02 01:27:29',1,'2006-02-15 21:30:53'), +(8381,'2005-07-29 05:31:44',865,313,'2005-07-31 09:20:44',1,'2006-02-15 21:30:53'), +(8382,'2005-07-29 05:33:21',317,238,'2005-08-03 03:38:21',1,'2006-02-15 21:30:53'), +(8383,'2005-07-29 05:36:47',3809,495,'2005-08-03 05:53:47',2,'2006-02-15 21:30:53'), +(8384,'2005-07-29 05:38:43',3807,227,'2005-08-01 07:31:43',2,'2006-02-15 21:30:53'), +(8385,'2005-07-29 05:39:16',4108,233,'2005-08-03 00:30:16',1,'2006-02-15 21:30:53'), +(8386,'2005-07-29 05:45:30',388,435,'2005-08-05 03:56:30',2,'2006-02-15 21:30:53'), +(8387,'2005-07-29 05:47:27',910,428,'2005-07-31 06:26:27',1,'2006-02-15 21:30:53'), +(8388,'2005-07-29 05:48:15',770,178,'2005-08-05 06:24:15',2,'2006-02-15 21:30:53'), +(8389,'2005-07-29 05:50:09',1241,133,'2005-08-06 05:15:09',2,'2006-02-15 21:30:53'), +(8390,'2005-07-29 05:52:26',581,32,'2005-08-04 08:12:26',2,'2006-02-15 21:30:53'), +(8391,'2005-07-29 05:52:50',2134,36,'2005-08-03 04:45:50',2,'2006-02-15 21:30:53'), +(8392,'2005-07-29 06:00:27',1323,65,'2005-08-02 00:30:27',2,'2006-02-15 21:30:53'), +(8393,'2005-07-29 06:02:11',3369,504,'2005-08-07 03:23:11',1,'2006-02-15 21:30:53'), +(8394,'2005-07-29 06:02:14',3933,148,'2005-08-03 08:15:14',1,'2006-02-15 21:30:53'), +(8395,'2005-07-29 06:03:30',1471,535,'2005-07-31 09:08:30',2,'2006-02-15 21:30:53'), +(8396,'2005-07-29 06:07:00',3911,516,'2005-07-30 05:32:00',2,'2006-02-15 21:30:53'), +(8397,'2005-07-29 06:09:35',3542,518,'2005-08-01 02:08:35',1,'2006-02-15 21:30:53'), +(8398,'2005-07-29 06:12:40',348,220,'2005-08-02 05:01:40',2,'2006-02-15 21:30:53'), +(8399,'2005-07-29 06:20:18',233,286,'2005-08-04 01:26:18',1,'2006-02-15 21:30:53'), +(8400,'2005-07-29 06:23:56',3680,573,'2005-07-31 02:41:56',2,'2006-02-15 21:30:53'), +(8401,'2005-07-29 06:25:08',3121,232,'2005-08-01 06:49:08',1,'2006-02-15 21:30:53'), +(8402,'2005-07-29 06:25:45',186,47,'2005-08-07 10:48:45',1,'2006-02-15 21:30:53'), +(8403,'2005-07-29 06:26:39',1360,163,'2005-08-02 05:37:39',1,'2006-02-15 21:30:53'), +(8404,'2005-07-29 06:27:01',2086,65,'2005-08-07 04:33:01',1,'2006-02-15 21:30:53'), +(8405,'2005-07-29 06:28:19',2164,76,'2005-08-07 08:14:19',2,'2006-02-15 21:30:53'), +(8406,'2005-07-29 06:34:45',2047,274,'2005-08-06 02:28:45',1,'2006-02-15 21:30:53'), +(8407,'2005-07-29 06:37:02',2985,336,'2005-08-04 03:13:02',1,'2006-02-15 21:30:53'), +(8408,'2005-07-29 06:40:40',1841,90,'2005-07-30 10:02:40',2,'2006-02-15 21:30:53'), +(8409,'2005-07-29 06:41:22',4314,303,'2005-07-31 11:21:22',1,'2006-02-15 21:30:53'), +(8410,'2005-07-29 06:41:36',3448,277,'2005-08-02 08:38:36',1,'2006-02-15 21:30:53'), +(8411,'2005-07-29 06:44:23',3085,412,'2005-08-07 03:56:23',1,'2006-02-15 21:30:53'), +(8412,'2005-07-29 06:44:50',743,312,'2005-08-06 05:04:50',1,'2006-02-15 21:30:53'), +(8413,'2005-07-29 06:47:39',2762,104,'2005-08-02 09:15:39',2,'2006-02-15 21:30:53'), +(8414,'2005-07-29 06:48:35',1337,433,'2005-08-06 10:54:35',2,'2006-02-15 21:30:53'), +(8415,'2005-07-29 06:52:27',2903,128,'2005-08-02 10:40:27',1,'2006-02-15 21:30:53'), +(8416,'2005-07-29 06:52:54',1999,315,'2005-08-05 09:50:54',2,'2006-02-15 21:30:53'), +(8417,'2005-07-29 06:53:36',750,227,'2005-08-06 09:31:36',2,'2006-02-15 21:30:53'), +(8418,'2005-07-29 06:54:21',3081,355,'2005-08-05 06:50:21',2,'2006-02-15 21:30:53'), +(8419,'2005-07-29 06:54:48',4574,37,'2005-08-06 05:02:48',1,'2006-02-15 21:30:53'), +(8420,'2005-07-29 07:00:45',4184,376,'2005-08-06 02:20:45',1,'2006-02-15 21:30:53'), +(8421,'2005-07-29 07:00:47',3399,588,'2005-08-02 08:03:47',2,'2006-02-15 21:30:53'), +(8422,'2005-07-29 07:02:55',3104,7,'2005-08-03 12:35:55',1,'2006-02-15 21:30:53'), +(8423,'2005-07-29 07:02:57',187,468,'2005-08-06 04:59:57',1,'2006-02-15 21:30:53'), +(8424,'2005-07-29 07:06:03',366,138,'2005-08-06 12:00:03',2,'2006-02-15 21:30:53'), +(8425,'2005-07-29 07:06:21',3491,486,'2005-08-05 07:57:21',2,'2006-02-15 21:30:53'), +(8426,'2005-07-29 07:07:48',1840,564,'2005-08-07 08:56:48',2,'2006-02-15 21:30:53'), +(8427,'2005-07-29 07:08:36',1624,441,'2005-07-30 11:54:36',2,'2006-02-15 21:30:53'), +(8428,'2005-07-29 07:10:14',2545,398,'2005-08-06 02:29:14',2,'2006-02-15 21:30:53'), +(8429,'2005-07-29 07:11:49',2456,588,'2005-07-31 02:45:49',1,'2006-02-15 21:30:53'), +(8430,'2005-07-29 07:12:17',3377,219,'2005-08-03 09:53:17',2,'2006-02-15 21:30:53'), +(8431,'2005-07-29 07:12:48',1583,193,'2005-08-01 10:03:48',1,'2006-02-15 21:30:53'), +(8432,'2005-07-29 07:13:33',3896,572,'2005-07-30 03:14:33',1,'2006-02-15 21:30:53'), +(8433,'2005-07-29 07:19:16',1957,125,'2005-08-05 03:29:16',1,'2006-02-15 21:30:53'), +(8434,'2005-07-29 07:20:14',40,141,'2005-07-30 08:50:14',2,'2006-02-15 21:30:53'), +(8435,'2005-07-29 07:20:16',4462,520,'2005-08-02 09:54:16',2,'2006-02-15 21:30:53'), +(8436,'2005-07-29 07:21:20',2702,598,'2005-07-31 12:56:20',2,'2006-02-15 21:30:53'), +(8437,'2005-07-29 07:23:43',2118,96,'2005-08-04 10:52:43',1,'2006-02-15 21:30:53'), +(8438,'2005-07-29 07:25:42',720,97,'2005-08-04 07:39:42',1,'2006-02-15 21:30:53'), +(8439,'2005-07-29 07:28:43',182,224,'2005-08-04 11:22:43',1,'2006-02-15 21:30:53'), +(8440,'2005-07-29 07:31:26',489,175,'2005-08-04 07:04:26',1,'2006-02-15 21:30:53'), +(8441,'2005-07-29 07:33:05',1000,526,'2005-08-04 04:00:05',2,'2006-02-15 21:30:53'), +(8442,'2005-07-29 07:33:07',4345,185,'2005-08-03 03:09:07',2,'2006-02-15 21:30:53'), +(8443,'2005-07-29 07:33:12',1059,251,'2005-08-02 01:36:12',2,'2006-02-15 21:30:53'), +(8444,'2005-07-29 07:36:13',3329,213,'2005-08-05 04:55:13',1,'2006-02-15 21:30:53'), +(8445,'2005-07-29 07:37:48',2792,384,'2005-08-04 10:43:48',1,'2006-02-15 21:30:53'), +(8446,'2005-07-29 07:38:10',1593,235,'2005-08-06 04:39:10',2,'2006-02-15 21:30:53'), +(8447,'2005-07-29 07:38:14',930,11,'2005-08-05 02:27:14',2,'2006-02-15 21:30:53'), +(8448,'2005-07-29 07:41:54',4349,393,'2005-08-02 13:12:54',1,'2006-02-15 21:30:53'), +(8449,'2005-07-29 07:42:25',2610,273,'2005-07-30 06:07:25',2,'2006-02-15 21:30:53'), +(8450,'2005-07-29 07:44:05',484,401,'2005-08-01 12:23:05',1,'2006-02-15 21:30:53'), +(8451,'2005-07-29 07:44:56',3309,495,'2005-08-06 02:29:56',1,'2006-02-15 21:30:53'), +(8452,'2005-07-29 07:45:00',4312,16,'2005-08-05 09:46:00',2,'2006-02-15 21:30:53'), +(8453,'2005-07-29 07:46:29',2907,32,'2005-07-30 07:07:29',1,'2006-02-15 21:30:53'), +(8454,'2005-07-29 07:49:04',159,244,'2005-08-03 04:43:04',2,'2006-02-15 21:30:53'), +(8455,'2005-07-29 07:53:06',4043,404,'2005-08-05 05:29:06',1,'2006-02-15 21:30:53'), +(8456,'2005-07-29 07:58:31',671,388,'2005-08-05 07:17:31',2,'2006-02-15 21:30:53'), +(8457,'2005-07-29 07:59:03',3371,239,'2005-08-04 08:42:03',1,'2006-02-15 21:30:53'), +(8458,'2005-07-29 08:05:09',3857,317,'2005-08-02 03:42:09',1,'2006-02-15 21:30:53'), +(8459,'2005-07-29 08:05:40',3441,144,'2005-08-04 03:24:40',1,'2006-02-15 21:30:53'), +(8460,'2005-07-29 08:08:03',2826,329,'2005-08-07 06:53:03',2,'2006-02-15 21:30:53'), +(8461,'2005-07-29 08:11:31',3373,399,'2005-08-06 09:23:31',1,'2006-02-15 21:30:53'), +(8462,'2005-07-29 08:15:42',3633,200,'2005-08-04 03:57:42',1,'2006-02-15 21:30:53'), +(8463,'2005-07-29 08:17:51',466,203,'2005-08-03 13:41:51',1,'2006-02-15 21:30:53'), +(8464,'2005-07-29 08:18:20',2343,28,'2005-08-03 04:50:20',2,'2006-02-15 21:30:53'), +(8465,'2005-07-29 08:20:49',4109,238,'2005-07-31 04:02:49',2,'2006-02-15 21:30:53'), +(8466,'2005-07-29 08:24:47',4010,285,'2005-07-31 03:43:47',1,'2006-02-15 21:30:53'), +(8467,'2005-07-29 08:25:35',263,326,'2005-08-07 03:28:35',2,'2006-02-15 21:30:53'), +(8468,'2005-07-29 08:26:04',1338,282,'2005-08-02 07:18:04',1,'2006-02-15 21:30:53'), +(8469,'2005-07-29 08:26:27',2754,408,'2005-08-05 04:26:27',2,'2006-02-15 21:30:53'), +(8470,'2005-07-29 08:28:50',3717,159,'2005-07-30 13:40:50',2,'2006-02-15 21:30:53'), +(8471,'2005-07-29 08:32:11',1520,533,'2005-08-01 13:55:11',1,'2006-02-15 21:30:53'), +(8472,'2005-07-29 08:36:22',2975,196,'2005-08-02 07:55:22',1,'2006-02-15 21:30:53'), +(8473,'2005-07-29 08:36:53',4141,311,'2005-07-31 12:14:53',1,'2006-02-15 21:30:53'), +(8474,'2005-07-29 08:36:56',4346,323,'2005-08-01 03:07:56',1,'2006-02-15 21:30:53'), +(8475,'2005-07-29 08:37:41',3695,260,'2005-08-04 10:03:41',2,'2006-02-15 21:30:53'), +(8476,'2005-07-29 08:39:12',3741,470,'2005-08-06 03:03:12',1,'2006-02-15 21:30:53'), +(8477,'2005-07-29 08:40:36',3571,354,'2005-08-06 08:28:36',2,'2006-02-15 21:30:53'), +(8478,'2005-07-29 08:40:36',3742,162,'2005-08-01 10:23:36',1,'2006-02-15 21:30:53'), +(8479,'2005-07-29 08:42:04',1990,195,'2005-08-01 03:10:04',1,'2006-02-15 21:30:53'), +(8480,'2005-07-29 08:44:46',3512,467,'2005-08-05 13:22:46',1,'2006-02-15 21:30:53'), +(8481,'2005-07-29 08:45:57',1739,454,'2005-08-01 12:50:57',2,'2006-02-15 21:30:53'), +(8482,'2005-07-29 08:46:33',2686,405,'2005-07-31 11:07:33',2,'2006-02-15 21:30:53'), +(8483,'2005-07-29 08:50:18',2786,186,'2005-08-03 06:46:18',1,'2006-02-15 21:30:53'), +(8484,'2005-07-29 08:51:59',742,260,'2005-07-30 09:07:59',1,'2006-02-15 21:30:53'), +(8485,'2005-07-29 08:53:09',3172,420,'2005-07-30 11:25:09',1,'2006-02-15 21:30:53'), +(8486,'2005-07-29 08:53:38',1759,221,'2005-08-01 14:12:38',2,'2006-02-15 21:30:53'), +(8487,'2005-07-29 08:53:49',1893,82,'2005-07-31 09:10:49',2,'2006-02-15 21:30:53'), +(8488,'2005-07-29 08:57:38',2176,478,'2005-08-02 04:16:38',1,'2006-02-15 21:30:53'), +(8489,'2005-07-29 08:58:03',375,265,'2005-08-02 07:50:03',2,'2006-02-15 21:30:53'), +(8490,'2005-07-29 08:59:25',1943,367,'2005-08-05 14:02:25',2,'2006-02-15 21:30:53'), +(8491,'2005-07-29 09:02:13',1806,242,'2005-08-03 04:32:13',1,'2006-02-15 21:30:53'), +(8492,'2005-07-29 09:04:17',4553,266,'2005-08-02 08:48:17',2,'2006-02-15 21:30:53'), +(8493,'2005-07-29 09:04:31',664,390,'2005-08-04 05:17:31',2,'2006-02-15 21:30:53'), +(8494,'2005-07-29 09:04:32',3524,92,'2005-07-31 10:30:32',1,'2006-02-15 21:30:53'), +(8495,'2005-07-29 09:05:06',344,51,'2005-08-06 05:48:06',2,'2006-02-15 21:30:53'), +(8496,'2005-07-29 09:05:33',765,114,'2005-08-02 06:32:33',1,'2006-02-15 21:30:53'), +(8497,'2005-07-29 09:07:03',1837,593,'2005-08-02 09:18:03',2,'2006-02-15 21:30:53'), +(8498,'2005-07-29 09:07:38',4468,190,'2005-08-04 07:01:38',1,'2006-02-15 21:30:53'), +(8499,'2005-07-29 09:10:41',219,42,'2005-08-05 10:01:41',1,'2006-02-15 21:30:53'), +(8500,'2005-07-29 09:12:01',4516,348,'2005-07-31 10:15:01',1,'2006-02-15 21:30:53'), +(8501,'2005-07-29 09:12:51',1052,309,'2005-07-30 11:19:51',2,'2006-02-15 21:30:53'), +(8502,'2005-07-29 09:15:41',2149,457,'2005-07-30 10:41:41',1,'2006-02-15 21:30:53'), +(8503,'2005-07-29 09:16:50',1164,240,'2005-08-04 11:34:50',2,'2006-02-15 21:30:53'), +(8504,'2005-07-29 09:20:16',2295,561,'2005-08-07 04:27:16',2,'2006-02-15 21:30:53'), +(8505,'2005-07-29 09:22:52',1454,346,'2005-08-06 05:23:52',1,'2006-02-15 21:30:53'), +(8506,'2005-07-29 09:23:52',3714,506,'2005-07-31 04:42:52',1,'2006-02-15 21:30:53'), +(8507,'2005-07-29 09:29:44',3273,524,'2005-08-07 05:48:44',2,'2006-02-15 21:30:53'), +(8508,'2005-07-29 09:34:38',4173,484,'2005-08-01 14:52:38',2,'2006-02-15 21:30:53'), +(8509,'2005-07-29 09:38:19',1332,80,'2005-08-04 11:45:19',1,'2006-02-15 21:30:53'), +(8510,'2005-07-29 09:41:38',7,487,'2005-08-05 05:30:38',2,'2006-02-15 21:30:53'), +(8511,'2005-07-29 09:42:42',3667,598,'2005-08-06 14:22:42',2,'2006-02-15 21:30:53'), +(8512,'2005-07-29 09:48:03',4132,351,'2005-07-31 13:40:03',1,'2006-02-15 21:30:53'), +(8513,'2005-07-29 09:52:59',3156,142,'2005-07-31 12:05:59',1,'2006-02-15 21:30:53'), +(8514,'2005-07-29 09:53:33',3755,99,'2005-07-30 06:34:33',2,'2006-02-15 21:30:53'), +(8515,'2005-07-29 09:55:20',1071,477,'2005-08-05 07:08:20',2,'2006-02-15 21:30:53'), +(8516,'2005-07-29 10:00:03',981,337,'2005-08-02 09:34:03',1,'2006-02-15 21:30:53'), +(8517,'2005-07-29 10:00:48',2064,274,'2005-08-06 14:37:48',2,'2006-02-15 21:30:53'), +(8518,'2005-07-29 10:05:27',2311,385,'2005-08-02 05:39:27',1,'2006-02-15 21:30:53'), +(8519,'2005-07-29 10:09:43',1163,588,'2005-08-03 08:14:43',2,'2006-02-15 21:30:53'), +(8520,'2005-07-29 10:10:02',2440,103,'2005-08-02 05:25:02',2,'2006-02-15 21:30:53'), +(8521,'2005-07-29 10:12:45',2608,402,'2005-08-07 04:37:45',2,'2006-02-15 21:30:53'), +(8522,'2005-07-29 10:16:19',3636,363,'2005-08-06 14:58:19',1,'2006-02-15 21:30:53'), +(8523,'2005-07-29 10:18:27',3614,558,'2005-08-04 09:31:27',1,'2006-02-15 21:30:53'), +(8524,'2005-07-29 10:20:07',2110,124,'2005-08-03 04:30:07',1,'2006-02-15 21:30:53'), +(8525,'2005-07-29 10:20:19',1322,111,'2005-07-30 05:49:19',2,'2006-02-15 21:30:53'), +(8526,'2005-07-29 10:20:48',575,88,'2005-08-03 14:15:48',1,'2006-02-15 21:30:53'), +(8527,'2005-07-29 10:21:00',709,168,'2005-08-05 16:05:00',2,'2006-02-15 21:30:53'), +(8528,'2005-07-29 10:24:22',2107,428,'2005-08-07 10:34:22',1,'2006-02-15 21:30:53'), +(8529,'2005-07-29 10:24:31',1055,501,'2005-08-01 16:06:31',1,'2006-02-15 21:30:53'), +(8530,'2005-07-29 10:26:14',4528,233,'2005-07-31 10:24:14',1,'2006-02-15 21:30:53'), +(8531,'2005-07-29 10:26:15',1631,427,'2005-08-06 09:28:15',1,'2006-02-15 21:30:53'), +(8532,'2005-07-29 10:26:56',3045,546,'2005-08-02 13:23:56',2,'2006-02-15 21:30:53'), +(8533,'2005-07-29 10:29:16',551,542,'2005-08-01 06:52:16',1,'2006-02-15 21:30:53'), +(8534,'2005-07-29 10:30:13',4029,516,'2005-08-02 04:47:13',1,'2006-02-15 21:30:53'), +(8535,'2005-07-29 10:32:33',4489,536,'2005-07-31 05:46:33',1,'2006-02-15 21:30:53'), +(8536,'2005-07-29 10:37:23',4510,219,'2005-07-31 07:21:23',2,'2006-02-15 21:30:53'), +(8537,'2005-07-29 10:44:54',1012,447,'2005-08-06 14:55:54',2,'2006-02-15 21:30:53'), +(8538,'2005-07-29 10:45:17',3768,500,'2005-08-04 15:12:17',1,'2006-02-15 21:30:53'), +(8539,'2005-07-29 10:48:24',599,325,'2005-07-30 06:29:24',2,'2006-02-15 21:30:53'), +(8540,'2005-07-29 10:52:51',539,180,'2005-08-07 11:44:51',2,'2006-02-15 21:30:53'), +(8541,'2005-07-29 10:55:01',976,340,'2005-07-31 10:53:01',1,'2006-02-15 21:30:53'), +(8542,'2005-07-29 11:01:50',792,213,'2005-07-30 08:19:50',1,'2006-02-15 21:30:53'), +(8543,'2005-07-29 11:01:57',403,346,'2005-08-03 06:03:57',1,'2006-02-15 21:30:53'), +(8544,'2005-07-29 11:02:08',412,542,'2005-08-06 15:06:08',2,'2006-02-15 21:30:53'), +(8545,'2005-07-29 11:07:04',3261,3,'2005-08-06 13:30:04',2,'2006-02-15 21:30:53'), +(8546,'2005-07-29 11:08:48',3224,418,'2005-08-03 16:50:48',2,'2006-02-15 21:30:53'), +(8547,'2005-07-29 11:10:15',875,438,'2005-08-03 12:50:15',1,'2006-02-15 21:30:53'), +(8548,'2005-07-29 11:11:33',3366,14,'2005-08-04 11:52:33',2,'2006-02-15 21:30:53'), +(8549,'2005-07-29 11:12:13',1866,206,'2005-08-06 06:04:13',2,'2006-02-15 21:30:53'), +(8550,'2005-07-29 11:12:37',1340,70,'2005-07-30 15:05:37',2,'2006-02-15 21:30:53'), +(8551,'2005-07-29 11:13:11',2083,340,'2005-08-05 05:17:11',2,'2006-02-15 21:30:53'), +(8552,'2005-07-29 11:14:02',1987,490,'2005-08-05 14:13:02',2,'2006-02-15 21:30:53'), +(8553,'2005-07-29 11:15:36',2645,49,'2005-08-07 16:37:36',1,'2006-02-15 21:30:53'), +(8554,'2005-07-29 11:16:29',1563,582,'2005-07-31 06:38:29',2,'2006-02-15 21:30:53'), +(8555,'2005-07-29 11:18:01',2784,18,'2005-07-30 10:47:01',2,'2006-02-15 21:30:53'), +(8556,'2005-07-29 11:18:27',2793,231,'2005-07-30 05:21:27',2,'2006-02-15 21:30:53'), +(8557,'2005-07-29 11:19:59',1481,459,'2005-08-07 12:50:59',1,'2006-02-15 21:30:53'), +(8558,'2005-07-29 11:24:49',1160,169,'2005-07-31 15:03:49',1,'2006-02-15 21:30:53'), +(8559,'2005-07-29 11:25:54',2078,279,'2005-08-04 10:16:54',2,'2006-02-15 21:30:53'), +(8560,'2005-07-29 11:27:27',3499,430,'2005-08-01 12:05:27',2,'2006-02-15 21:30:53'), +(8561,'2005-07-29 11:29:12',2207,344,'2005-08-05 09:17:12',1,'2006-02-15 21:30:53'), +(8562,'2005-07-29 11:32:13',3595,255,'2005-07-30 08:23:13',2,'2006-02-15 21:30:53'), +(8563,'2005-07-29 11:32:58',61,67,'2005-08-05 07:21:58',2,'2006-02-15 21:30:53'), +(8564,'2005-07-29 11:33:00',2830,316,'2005-08-05 15:35:00',1,'2006-02-15 21:30:53'), +(8565,'2005-07-29 11:35:23',3211,280,'2005-08-06 08:28:23',1,'2006-02-15 21:30:53'), +(8566,'2005-07-29 11:35:46',2011,544,'2005-07-30 13:50:46',1,'2006-02-15 21:30:53'), +(8567,'2005-07-29 11:37:30',1612,594,'2005-08-03 05:58:30',2,'2006-02-15 21:30:53'), +(8568,'2005-07-29 11:38:22',1599,583,'2005-08-04 13:22:22',2,'2006-02-15 21:30:53'), +(8569,'2005-07-29 11:39:17',276,348,'2005-07-31 07:50:17',2,'2006-02-15 21:30:53'), +(8570,'2005-07-29 11:40:08',3094,131,'2005-08-06 10:23:08',1,'2006-02-15 21:30:53'), +(8571,'2005-07-29 11:48:39',1778,407,'2005-08-03 06:35:39',2,'2006-02-15 21:30:53'), +(8572,'2005-07-29 11:51:24',2815,267,'2005-08-02 11:44:24',1,'2006-02-15 21:30:53'), +(8573,'2005-07-29 11:51:25',1637,179,'2005-08-07 08:53:25',1,'2006-02-15 21:30:53'), +(8574,'2005-07-29 11:51:53',2949,71,'2005-08-03 05:59:53',2,'2006-02-15 21:30:53'), +(8575,'2005-07-29 11:52:47',1668,441,'2005-08-03 08:14:47',2,'2006-02-15 21:30:53'), +(8576,'2005-07-29 11:55:01',3552,157,'2005-08-03 08:41:01',2,'2006-02-15 21:30:53'), +(8577,'2005-07-29 11:56:30',520,328,'2005-08-07 15:41:30',1,'2006-02-15 21:30:53'), +(8578,'2005-07-29 11:58:14',3737,148,'2005-08-03 06:25:14',1,'2006-02-15 21:30:53'), +(8579,'2005-07-29 11:59:22',4045,250,'2005-07-30 11:41:22',2,'2006-02-15 21:30:53'), +(8580,'2005-07-29 12:00:27',4040,543,'2005-08-04 16:39:27',1,'2006-02-15 21:30:53'), +(8581,'2005-07-29 12:02:06',2102,254,'2005-08-02 10:32:06',2,'2006-02-15 21:30:53'), +(8582,'2005-07-29 12:03:27',841,162,'2005-08-03 07:02:27',1,'2006-02-15 21:30:53'), +(8583,'2005-07-29 12:04:50',3130,191,'2005-08-04 17:21:50',1,'2006-02-15 21:30:53'), +(8584,'2005-07-29 12:07:53',1656,482,'2005-07-31 09:27:53',1,'2006-02-15 21:30:53'), +(8585,'2005-07-29 12:14:18',512,516,'2005-08-03 08:31:18',2,'2006-02-15 21:30:53'), +(8586,'2005-07-29 12:16:34',2752,374,'2005-08-07 06:48:34',1,'2006-02-15 21:30:53'), +(8587,'2005-07-29 12:18:40',1941,108,'2005-08-03 14:01:40',1,'2006-02-15 21:30:53'), +(8588,'2005-07-29 12:22:20',2858,416,'2005-07-31 10:49:20',1,'2006-02-15 21:30:53'), +(8589,'2005-07-29 12:28:17',1628,293,'2005-08-05 11:40:17',1,'2006-02-15 21:30:53'), +(8590,'2005-07-29 12:32:20',2505,114,'2005-08-07 08:00:20',1,'2006-02-15 21:30:53'), +(8591,'2005-07-29 12:32:33',2568,418,'2005-08-01 16:19:33',2,'2006-02-15 21:30:53'), +(8592,'2005-07-29 12:33:58',1952,271,'2005-08-04 07:14:58',2,'2006-02-15 21:30:53'), +(8593,'2005-07-29 12:38:14',2601,181,'2005-08-07 07:04:14',1,'2006-02-15 21:30:53'), +(8594,'2005-07-29 12:42:13',4155,115,'2005-08-02 07:38:13',1,'2006-02-15 21:30:53'), +(8595,'2005-07-29 12:47:43',3225,423,'2005-08-07 13:51:43',2,'2006-02-15 21:30:53'), +(8596,'2005-07-29 12:48:54',59,233,'2005-08-04 07:19:54',2,'2006-02-15 21:30:53'), +(8597,'2005-07-29 12:55:55',4218,222,'2005-08-05 18:54:55',1,'2006-02-15 21:30:53'), +(8598,'2005-07-29 12:56:59',626,2,'2005-08-01 08:39:59',2,'2006-02-15 21:30:53'), +(8599,'2005-07-29 12:58:52',1169,545,'2005-08-03 08:19:52',1,'2006-02-15 21:30:53'), +(8600,'2005-07-29 13:01:19',1488,226,'2005-07-31 15:40:19',2,'2006-02-15 21:30:53'), +(8601,'2005-07-29 13:03:31',3247,181,'2005-08-06 16:32:31',1,'2006-02-15 21:30:53'), +(8602,'2005-07-29 13:04:27',4002,64,'2005-08-03 12:21:27',2,'2006-02-15 21:30:53'), +(8603,'2005-07-29 13:07:07',3007,594,'2005-08-04 18:32:07',2,'2006-02-15 21:30:53'), +(8604,'2005-07-29 13:07:13',3909,326,'2005-07-31 18:00:13',2,'2006-02-15 21:30:53'), +(8605,'2005-07-29 13:13:34',3805,224,'2005-08-07 08:29:34',1,'2006-02-15 21:30:53'), +(8606,'2005-07-29 13:14:24',4051,340,'2005-07-30 14:52:24',1,'2006-02-15 21:30:53'), +(8607,'2005-07-29 13:18:00',4290,336,'2005-07-30 18:51:00',2,'2006-02-15 21:30:53'), +(8608,'2005-07-29 13:18:52',2976,165,'2005-07-30 19:01:52',2,'2006-02-15 21:30:53'), +(8609,'2005-07-29 13:19:25',3997,354,'2005-08-06 08:33:25',2,'2006-02-15 21:30:53'), +(8610,'2005-07-29 13:25:02',4222,563,'2005-08-03 08:10:02',2,'2006-02-15 21:30:53'), +(8611,'2005-07-29 13:26:21',610,373,'2005-08-07 18:20:21',2,'2006-02-15 21:30:53'), +(8612,'2005-07-29 13:28:20',3518,392,'2005-08-06 14:39:20',2,'2006-02-15 21:30:53'), +(8613,'2005-07-29 13:30:58',394,411,'2005-08-05 16:21:58',2,'2006-02-15 21:30:53'), +(8614,'2005-07-29 13:32:05',604,552,'2005-08-04 15:26:05',1,'2006-02-15 21:30:53'), +(8615,'2005-07-29 13:36:01',4453,15,'2005-08-03 13:15:01',1,'2006-02-15 21:30:53'), +(8616,'2005-07-29 13:39:09',2583,493,'2005-08-01 16:49:09',1,'2006-02-15 21:30:53'), +(8617,'2005-07-29 13:46:14',385,441,'2005-08-06 13:26:14',2,'2006-02-15 21:30:53'), +(8618,'2005-07-29 13:48:20',985,270,'2005-08-06 14:12:20',2,'2006-02-15 21:30:53'), +(8619,'2005-07-29 13:50:08',2169,50,'2005-08-06 13:15:08',1,'2006-02-15 21:30:53'), +(8620,'2005-07-29 13:51:20',3718,306,'2005-08-02 13:05:20',1,'2006-02-15 21:30:53'), +(8621,'2005-07-29 13:52:42',2473,358,'2005-07-30 11:42:42',2,'2006-02-15 21:30:53'), +(8622,'2005-07-29 13:53:28',4076,98,'2005-07-31 16:12:28',2,'2006-02-15 21:30:53'), +(8623,'2005-07-29 13:55:11',458,142,'2005-08-05 11:16:11',1,'2006-02-15 21:30:53'), +(8624,'2005-07-29 13:55:36',4402,439,'2005-08-02 12:23:36',2,'2006-02-15 21:30:53'), +(8625,'2005-07-29 13:59:13',884,410,'2005-08-07 17:56:13',2,'2006-02-15 21:30:53'), +(8626,'2005-07-29 14:03:20',3092,148,'2005-08-02 09:05:20',1,'2006-02-15 21:30:53'), +(8627,'2005-07-29 14:05:12',4235,226,'2005-08-05 16:53:12',2,'2006-02-15 21:30:53'), +(8628,'2005-07-29 14:06:24',4484,550,'2005-08-06 10:42:24',2,'2006-02-15 21:30:53'), +(8629,'2005-07-29 14:06:35',853,567,'2005-08-03 16:59:35',2,'2006-02-15 21:30:53'), +(8630,'2005-07-29 14:07:59',1378,406,'2005-08-03 13:18:59',2,'2006-02-15 21:30:53'), +(8631,'2005-07-29 14:08:06',98,559,'2005-08-05 14:57:06',1,'2006-02-15 21:30:53'), +(8632,'2005-07-29 14:11:25',1666,563,'2005-08-07 15:32:25',1,'2006-02-15 21:30:53'), +(8633,'2005-07-29 14:19:53',3436,534,'2005-08-01 11:31:53',2,'2006-02-15 21:30:53'), +(8634,'2005-07-29 14:19:57',2023,335,'2005-08-07 13:44:57',1,'2006-02-15 21:30:53'), +(8635,'2005-07-29 14:22:48',2894,383,'2005-08-01 11:59:48',2,'2006-02-15 21:30:53'), +(8636,'2005-07-29 14:24:13',4308,252,'2005-08-02 14:39:13',1,'2006-02-15 21:30:53'), +(8637,'2005-07-29 14:30:11',1069,310,'2005-08-04 14:00:11',1,'2006-02-15 21:30:53'), +(8638,'2005-07-29 14:30:23',4060,571,'2005-08-01 10:32:23',1,'2006-02-15 21:30:53'), +(8639,'2005-07-29 14:30:31',3504,290,'2005-08-02 16:04:31',1,'2006-02-15 21:30:53'), +(8640,'2005-07-29 14:34:17',1874,257,'2005-08-01 13:09:17',2,'2006-02-15 21:30:53'), +(8641,'2005-07-29 14:37:30',3199,30,'2005-08-02 19:32:30',2,'2006-02-15 21:30:53'), +(8642,'2005-07-29 14:38:17',3947,522,'2005-08-03 14:41:17',1,'2006-02-15 21:30:53'), +(8643,'2005-07-29 14:45:23',381,59,'2005-08-04 18:42:23',1,'2006-02-15 21:30:53'), +(8644,'2005-07-29 14:45:45',4507,314,'2005-08-03 20:10:45',2,'2006-02-15 21:30:53'), +(8645,'2005-07-29 14:47:45',2532,535,'2005-07-30 14:56:45',2,'2006-02-15 21:30:53'), +(8646,'2005-07-29 14:48:48',89,302,'2005-08-03 18:11:48',2,'2006-02-15 21:30:53'), +(8647,'2005-07-29 14:52:59',556,307,'2005-08-06 11:09:59',2,'2006-02-15 21:30:53'), +(8648,'2005-07-29 14:56:21',160,416,'2005-07-31 16:56:21',2,'2006-02-15 21:30:53'), +(8649,'2005-07-29 14:57:33',789,69,'2005-08-07 09:43:33',2,'2006-02-15 21:30:53'), +(8650,'2005-07-29 14:59:04',1272,134,'2005-08-04 13:13:04',2,'2006-02-15 21:30:53'), +(8651,'2005-07-29 15:02:18',2095,61,'2005-08-07 09:34:18',2,'2006-02-15 21:30:53'), +(8652,'2005-07-29 15:02:54',2729,219,'2005-08-07 17:21:54',2,'2006-02-15 21:30:53'), +(8653,'2005-07-29 15:04:23',4440,230,'2005-08-02 09:39:23',2,'2006-02-15 21:30:53'), +(8654,'2005-07-29 15:04:27',3925,84,'2005-08-07 18:37:27',1,'2006-02-15 21:30:53'), +(8655,'2005-07-29 15:04:42',3986,232,'2005-08-04 11:26:42',1,'2006-02-15 21:30:53'), +(8656,'2005-07-29 15:05:52',1385,460,'2005-07-31 20:57:52',2,'2006-02-15 21:30:53'), +(8657,'2005-07-29 15:09:25',3194,236,'2005-07-31 19:10:25',1,'2006-02-15 21:30:53'), +(8658,'2005-07-29 15:16:37',2033,427,'2005-08-07 20:45:37',2,'2006-02-15 21:30:53'), +(8659,'2005-07-29 15:26:31',558,168,'2005-08-06 19:05:31',2,'2006-02-15 21:30:53'), +(8660,'2005-07-29 15:26:59',3122,566,'2005-08-05 21:04:59',2,'2006-02-15 21:30:53'), +(8661,'2005-07-29 15:28:24',3409,341,'2005-08-05 20:04:24',2,'2006-02-15 21:30:53'), +(8662,'2005-07-29 15:31:33',3758,362,'2005-07-30 09:39:33',2,'2006-02-15 21:30:53'), +(8663,'2005-07-29 15:33:18',1281,214,'2005-07-30 18:03:18',1,'2006-02-15 21:30:53'), +(8664,'2005-07-29 15:36:27',198,102,'2005-08-04 20:11:27',1,'2006-02-15 21:30:53'), +(8665,'2005-07-29 15:39:29',1113,265,'2005-08-01 10:33:29',2,'2006-02-15 21:30:53'), +(8666,'2005-07-29 15:39:38',3669,591,'2005-08-06 17:12:38',1,'2006-02-15 21:30:53'), +(8667,'2005-07-29 15:40:57',3439,25,'2005-07-31 20:59:57',1,'2006-02-15 21:30:53'), +(8668,'2005-07-29 15:41:31',4531,71,'2005-08-01 16:20:31',2,'2006-02-15 21:30:53'), +(8669,'2005-07-29 15:44:55',1667,401,'2005-08-01 14:09:55',2,'2006-02-15 21:30:53'), +(8670,'2005-07-29 15:49:03',2354,446,'2005-08-01 20:19:03',2,'2006-02-15 21:30:53'), +(8671,'2005-07-29 15:49:37',1431,577,'2005-08-05 18:20:37',1,'2006-02-15 21:30:53'), +(8672,'2005-07-29 15:49:48',405,495,'2005-08-06 17:59:48',2,'2006-02-15 21:30:53'), +(8673,'2005-07-29 15:50:14',2167,29,'2005-08-03 18:30:14',1,'2006-02-15 21:30:53'), +(8674,'2005-07-29 15:54:22',1744,412,'2005-07-31 12:15:22',1,'2006-02-15 21:30:53'), +(8675,'2005-07-29 15:56:18',1026,258,'2005-07-30 18:50:18',1,'2006-02-15 21:30:53'), +(8676,'2005-07-29 15:59:06',283,533,'2005-08-05 19:12:06',2,'2006-02-15 21:30:53'), +(8677,'2005-07-29 16:01:13',513,315,'2005-08-07 19:21:13',2,'2006-02-15 21:30:53'), +(8678,'2005-07-29 16:04:00',3991,210,'2005-08-05 12:37:00',1,'2006-02-15 21:30:53'), +(8679,'2005-07-29 16:07:47',3549,536,'2005-08-02 18:37:47',1,'2006-02-15 21:30:53'), +(8680,'2005-07-29 16:08:03',1227,330,'2005-07-31 17:26:03',1,'2006-02-15 21:30:53'), +(8681,'2005-07-29 16:12:01',4004,309,'2005-08-01 18:14:01',2,'2006-02-15 21:30:53'), +(8682,'2005-07-29 16:15:26',4328,348,'2005-08-03 20:15:26',2,'2006-02-15 21:30:53'), +(8683,'2005-07-29 16:15:43',3915,513,'2005-08-07 19:19:43',1,'2006-02-15 21:30:53'), +(8684,'2005-07-29 16:16:33',2457,185,'2005-08-07 12:27:33',2,'2006-02-15 21:30:53'), +(8685,'2005-07-29 16:17:05',1827,321,'2005-08-07 17:44:05',1,'2006-02-15 21:30:53'), +(8686,'2005-07-29 16:17:49',4160,52,'2005-08-01 12:50:49',2,'2006-02-15 21:30:53'), +(8687,'2005-07-29 16:19:17',222,117,'2005-08-01 15:28:17',1,'2006-02-15 21:30:53'), +(8688,'2005-07-29 16:31:32',2263,381,'2005-07-30 12:39:32',1,'2006-02-15 21:30:53'), +(8689,'2005-07-29 16:38:58',824,487,'2005-08-01 17:09:58',2,'2006-02-15 21:30:53'), +(8690,'2005-07-29 16:39:28',1292,291,'2005-08-01 14:03:28',2,'2006-02-15 21:30:53'), +(8691,'2005-07-29 16:41:23',672,446,'2005-08-02 12:32:23',2,'2006-02-15 21:30:53'), +(8692,'2005-07-29 16:43:39',3192,88,'2005-08-01 15:54:39',2,'2006-02-15 21:30:53'), +(8693,'2005-07-29 16:44:13',917,51,'2005-08-01 15:56:13',1,'2006-02-15 21:30:53'), +(8694,'2005-07-29 16:44:48',503,345,'2005-08-06 16:28:48',1,'2006-02-15 21:30:53'), +(8695,'2005-07-29 16:44:55',694,280,'2005-08-07 12:47:55',1,'2006-02-15 21:30:53'), +(8696,'2005-07-29 16:45:18',2553,178,'2005-08-07 18:51:18',1,'2006-02-15 21:30:53'), +(8697,'2005-07-29 16:46:07',443,291,'2005-08-02 19:27:07',2,'2006-02-15 21:30:53'), +(8698,'2005-07-29 16:52:17',2973,324,'2005-08-04 13:20:17',2,'2006-02-15 21:30:53'), +(8699,'2005-07-29 16:53:00',4080,123,'2005-08-07 20:31:00',1,'2006-02-15 21:30:53'), +(8700,'2005-07-29 16:56:01',3710,196,'2005-07-31 16:19:01',2,'2006-02-15 21:30:53'), +(8701,'2005-07-29 17:02:35',3158,245,'2005-08-07 19:55:35',2,'2006-02-15 21:30:53'), +(8702,'2005-07-29 17:04:37',2215,306,'2005-08-05 15:30:37',2,'2006-02-15 21:30:53'), +(8703,'2005-07-29 17:12:44',1065,439,'2005-07-30 19:38:44',1,'2006-02-15 21:30:53'), +(8704,'2005-07-29 17:13:45',2117,107,'2005-08-03 20:03:45',2,'2006-02-15 21:30:53'), +(8705,'2005-07-29 17:14:29',4038,2,'2005-08-02 16:01:29',1,'2006-02-15 21:30:53'), +(8706,'2005-07-29 17:19:15',2886,515,'2005-08-03 22:52:15',1,'2006-02-15 21:30:53'), +(8707,'2005-07-29 17:21:58',2525,157,'2005-08-02 14:47:58',2,'2006-02-15 21:30:53'), +(8708,'2005-07-29 17:24:13',4054,529,'2005-08-04 13:57:13',1,'2006-02-15 21:30:53'), +(8709,'2005-07-29 17:25:54',902,199,'2005-08-02 22:35:54',1,'2006-02-15 21:30:53'), +(8710,'2005-07-29 17:26:03',3391,566,'2005-07-30 19:51:03',1,'2006-02-15 21:30:53'), +(8711,'2005-07-29 17:27:15',3471,575,'2005-07-31 12:57:15',1,'2006-02-15 21:30:53'), +(8712,'2005-07-29 17:30:06',2800,41,'2005-08-03 22:55:06',2,'2006-02-15 21:30:53'), +(8713,'2005-07-29 17:31:19',473,433,'2005-08-02 16:37:19',2,'2006-02-15 21:30:53'), +(8714,'2005-07-29 17:31:40',4547,362,'2005-08-04 16:12:40',2,'2006-02-15 21:30:53'), +(8715,'2005-07-29 17:33:45',860,11,'2005-08-01 17:30:45',1,'2006-02-15 21:30:53'), +(8716,'2005-07-29 17:39:09',2123,48,'2005-08-03 20:26:09',2,'2006-02-15 21:30:53'), +(8717,'2005-07-29 17:40:45',1821,260,'2005-08-01 22:38:45',2,'2006-02-15 21:30:53'), +(8718,'2005-07-29 17:41:14',137,23,'2005-08-01 18:22:14',2,'2006-02-15 21:30:53'), +(8719,'2005-07-29 17:45:45',995,333,'2005-08-01 13:53:45',1,'2006-02-15 21:30:53'), +(8720,'2005-07-29 17:48:32',152,180,'2005-08-04 14:30:32',2,'2006-02-15 21:30:53'), +(8721,'2005-07-29 17:56:21',2416,312,'2005-08-02 21:30:21',2,'2006-02-15 21:30:53'), +(8722,'2005-07-29 17:58:58',1389,401,'2005-08-07 23:40:58',1,'2006-02-15 21:30:53'), +(8723,'2005-07-29 18:03:47',224,39,'2005-08-06 18:53:47',1,'2006-02-15 21:30:53'), +(8724,'2005-07-29 18:05:21',898,372,'2005-08-01 15:41:21',1,'2006-02-15 21:30:53'), +(8725,'2005-07-29 18:08:42',2385,421,'2005-08-04 16:01:42',2,'2006-02-15 21:30:53'), +(8726,'2005-07-29 18:09:22',897,409,'2005-08-06 16:24:22',1,'2006-02-15 21:30:53'), +(8727,'2005-07-29 18:09:57',3031,528,'2005-08-03 13:41:57',2,'2006-02-15 21:30:53'), +(8728,'2005-07-29 18:12:49',973,341,'2005-08-06 22:45:49',1,'2006-02-15 21:30:53'), +(8729,'2005-07-29 18:23:02',3342,83,'2005-07-31 16:09:02',2,'2006-02-15 21:30:53'), +(8730,'2005-07-29 18:23:34',4191,592,'2005-08-01 19:56:34',1,'2006-02-15 21:30:53'), +(8731,'2005-07-29 18:23:57',2638,179,'2005-08-05 19:38:57',1,'2006-02-15 21:30:53'), +(8732,'2005-07-29 18:25:03',1143,346,'2005-08-07 18:56:03',2,'2006-02-15 21:30:53'), +(8733,'2005-07-29 18:26:34',3187,450,'2005-08-03 15:06:34',1,'2006-02-15 21:30:53'), +(8734,'2005-07-29 18:28:15',2374,303,'2005-08-05 23:38:15',1,'2006-02-15 21:30:53'), +(8735,'2005-07-29 18:28:54',2881,570,'2005-08-03 12:43:54',2,'2006-02-15 21:30:53'), +(8736,'2005-07-29 18:31:15',1726,530,'2005-07-30 16:24:15',2,'2006-02-15 21:30:53'), +(8737,'2005-07-29 18:32:13',4154,298,'2005-08-05 21:07:13',2,'2006-02-15 21:30:53'), +(8738,'2005-07-29 18:32:47',3893,210,'2005-08-02 13:05:47',2,'2006-02-15 21:30:53'), +(8739,'2005-07-29 18:34:33',4310,326,'2005-08-02 16:05:33',1,'2006-02-15 21:30:53'), +(8740,'2005-07-29 18:41:31',3781,378,'2005-08-01 18:38:31',1,'2006-02-15 21:30:53'), +(8741,'2005-07-29 18:44:57',165,4,'2005-08-03 18:25:57',2,'2006-02-15 21:30:53'), +(8742,'2005-07-29 18:56:12',918,208,'2005-08-03 16:42:12',1,'2006-02-15 21:30:53'), +(8743,'2005-07-29 18:57:01',2664,282,'2005-07-31 22:09:01',2,'2006-02-15 21:30:53'), +(8744,'2005-07-29 18:58:24',1086,280,'2005-08-05 17:56:24',1,'2006-02-15 21:30:53'), +(8745,'2005-07-29 19:03:05',1766,293,'2005-08-06 14:06:05',2,'2006-02-15 21:30:53'), +(8746,'2005-07-29 19:03:15',2179,275,'2005-07-30 17:06:15',1,'2006-02-15 21:30:53'), +(8747,'2005-07-29 19:07:57',2584,70,'2005-07-30 16:01:57',1,'2006-02-15 21:30:53'), +(8748,'2005-07-29 19:08:37',2184,237,'2005-08-01 16:24:37',1,'2006-02-15 21:30:53'), +(8749,'2005-07-29 19:13:15',2252,456,'2005-08-01 15:02:15',1,'2006-02-15 21:30:53'), +(8750,'2005-07-29 19:14:21',3157,158,'2005-07-31 17:22:21',2,'2006-02-15 21:30:53'), +(8751,'2005-07-29 19:14:39',3467,386,'2005-07-31 23:11:39',1,'2006-02-15 21:30:53'), +(8752,'2005-07-29 19:15:07',4202,253,'2005-07-31 13:27:07',1,'2006-02-15 21:30:53'), +(8753,'2005-07-29 19:15:50',1345,560,'2005-07-31 19:13:50',2,'2006-02-15 21:30:53'), +(8754,'2005-07-29 19:18:30',1678,174,'2005-08-05 18:39:30',2,'2006-02-15 21:30:53'), +(8755,'2005-07-29 19:18:31',1498,372,'2005-07-31 19:20:31',2,'2006-02-15 21:30:53'), +(8756,'2005-07-29 19:18:57',4146,120,'2005-08-02 20:07:57',2,'2006-02-15 21:30:53'), +(8757,'2005-07-29 19:19:10',3473,462,'2005-08-02 13:47:10',2,'2006-02-15 21:30:53'), +(8758,'2005-07-29 19:20:49',2816,442,'2005-08-05 21:57:49',2,'2006-02-15 21:30:53'), +(8759,'2005-07-29 19:22:37',844,209,'2005-08-07 15:36:37',2,'2006-02-15 21:30:53'), +(8760,'2005-07-29 19:22:40',3566,118,'2005-08-05 01:09:40',2,'2006-02-15 21:30:53'), +(8761,'2005-07-29 19:26:47',1317,539,'2005-08-08 00:09:47',1,'2006-02-15 21:30:53'), +(8762,'2005-07-29 19:30:02',2765,463,'2005-08-04 18:38:02',1,'2006-02-15 21:30:53'), +(8763,'2005-07-29 19:38:24',374,510,'2005-08-04 16:51:24',1,'2006-02-15 21:30:53'), +(8764,'2005-07-29 19:39:04',2348,303,'2005-08-01 13:52:04',1,'2006-02-15 21:30:53'), +(8765,'2005-07-29 19:40:08',2631,538,'2005-07-31 14:24:08',2,'2006-02-15 21:30:53'), +(8766,'2005-07-29 19:41:04',3888,338,'2005-08-02 00:41:04',2,'2006-02-15 21:30:53'), +(8767,'2005-07-29 19:42:33',962,467,'2005-08-01 20:52:33',2,'2006-02-15 21:30:53'), +(8768,'2005-07-29 19:43:02',1601,468,'2005-08-03 23:36:02',1,'2006-02-15 21:30:53'), +(8769,'2005-07-29 19:45:33',2180,588,'2005-08-05 22:09:33',2,'2006-02-15 21:30:53'), +(8770,'2005-07-29 19:53:50',4025,499,'2005-08-05 14:22:50',1,'2006-02-15 21:30:53'), +(8771,'2005-07-29 19:54:41',3533,347,'2005-08-03 20:38:41',1,'2006-02-15 21:30:53'), +(8772,'2005-07-29 19:55:25',3526,122,'2005-08-05 18:48:25',1,'2006-02-15 21:30:53'), +(8773,'2005-07-29 19:55:34',131,592,'2005-07-30 14:11:34',1,'2006-02-15 21:30:53'), +(8774,'2005-07-29 20:05:04',315,161,'2005-07-31 14:32:04',1,'2006-02-15 21:30:53'), +(8775,'2005-07-29 20:05:38',1358,44,'2005-07-30 21:13:38',1,'2006-02-15 21:30:53'), +(8776,'2005-07-29 20:07:06',1565,587,'2005-08-06 20:42:06',2,'2006-02-15 21:30:53'), +(8777,'2005-07-29 20:10:21',2462,382,'2005-07-30 20:32:21',2,'2006-02-15 21:30:53'), +(8778,'2005-07-29 20:14:25',3654,582,'2005-08-04 00:50:25',1,'2006-02-15 21:30:53'), +(8779,'2005-07-29 20:15:00',3245,202,'2005-08-03 21:17:00',1,'2006-02-15 21:30:53'), +(8780,'2005-07-29 20:19:45',1095,328,'2005-08-03 22:22:45',2,'2006-02-15 21:30:53'), +(8781,'2005-07-29 20:20:16',3746,235,'2005-07-30 16:19:16',2,'2006-02-15 21:30:53'), +(8782,'2005-07-29 20:29:34',4379,365,'2005-08-04 02:19:34',1,'2006-02-15 21:30:53'), +(8783,'2005-07-29 20:31:28',2316,71,'2005-08-02 19:33:28',2,'2006-02-15 21:30:53'), +(8784,'2005-07-29 20:35:37',2308,580,'2005-07-30 17:22:37',1,'2006-02-15 21:30:53'), +(8785,'2005-07-29 20:36:26',216,42,'2005-07-30 15:06:26',1,'2006-02-15 21:30:53'), +(8786,'2005-07-29 20:39:49',2404,533,'2005-08-03 18:08:49',1,'2006-02-15 21:30:53'), +(8787,'2005-07-29 20:43:49',2366,222,'2005-07-31 15:15:49',1,'2006-02-15 21:30:53'), +(8788,'2005-07-29 20:46:44',3412,121,'2005-08-03 02:25:44',2,'2006-02-15 21:30:53'), +(8789,'2005-07-29 20:47:27',3062,71,'2005-08-05 18:36:27',1,'2006-02-15 21:30:53'), +(8790,'2005-07-29 20:51:41',751,323,'2005-07-30 17:30:41',2,'2006-02-15 21:30:53'), +(8791,'2005-07-29 20:53:23',1677,469,'2005-07-31 18:14:23',1,'2006-02-15 21:30:53'), +(8792,'2005-07-29 20:56:14',3764,203,'2005-08-07 16:44:14',2,'2006-02-15 21:30:53'), +(8793,'2005-07-29 20:57:22',1819,167,'2005-08-02 01:40:22',2,'2006-02-15 21:30:53'), +(8794,'2005-07-29 20:59:38',3509,320,'2005-07-31 00:15:38',2,'2006-02-15 21:30:53'), +(8795,'2005-07-29 21:04:14',1896,302,'2005-07-31 02:58:14',2,'2006-02-15 21:30:53'), +(8796,'2005-07-29 21:09:11',2234,74,'2005-08-04 22:55:11',1,'2006-02-15 21:30:53'), +(8797,'2005-07-29 21:10:37',2929,566,'2005-08-07 21:43:37',1,'2006-02-15 21:30:53'), +(8798,'2005-07-29 21:15:38',800,513,'2005-08-05 02:46:38',2,'2006-02-15 21:30:53'), +(8799,'2005-07-29 21:16:47',326,237,'2005-08-07 22:09:47',2,'2006-02-15 21:30:53'), +(8800,'2005-07-29 21:18:59',2082,207,'2005-08-06 19:59:59',2,'2006-02-15 21:30:53'), +(8801,'2005-07-29 21:25:22',1111,590,'2005-08-01 00:02:22',1,'2006-02-15 21:30:53'), +(8802,'2005-07-29 21:25:51',296,407,'2005-07-30 18:15:51',2,'2006-02-15 21:30:53'), +(8803,'2005-07-29 21:26:24',2814,86,'2005-08-06 18:05:24',2,'2006-02-15 21:30:53'), +(8804,'2005-07-29 21:28:19',4461,363,'2005-08-01 20:15:19',2,'2006-02-15 21:30:53'), +(8805,'2005-07-29 21:29:58',4041,39,'2005-08-04 23:12:58',1,'2006-02-15 21:30:53'), +(8806,'2005-07-29 21:36:34',4085,454,'2005-08-02 00:58:34',1,'2006-02-15 21:30:53'), +(8807,'2005-07-29 21:36:59',2612,396,'2005-08-01 17:40:59',1,'2006-02-15 21:30:53'), +(8808,'2005-07-29 21:39:07',593,173,'2005-08-03 02:09:07',2,'2006-02-15 21:30:53'), +(8809,'2005-07-29 21:42:49',3278,8,'2005-08-04 01:13:49',1,'2006-02-15 21:30:53'), +(8810,'2005-07-29 21:45:19',1233,431,'2005-08-08 01:45:19',2,'2006-02-15 21:30:53'), +(8811,'2005-07-29 21:46:21',2041,245,'2005-08-07 16:51:21',2,'2006-02-15 21:30:53'), +(8812,'2005-07-29 21:47:40',1172,563,'2005-08-04 01:18:40',2,'2006-02-15 21:30:53'), +(8813,'2005-07-29 21:47:55',3442,497,'2005-08-05 01:16:55',1,'2006-02-15 21:30:53'), +(8814,'2005-07-29 21:49:43',1492,487,'2005-08-01 19:56:43',1,'2006-02-15 21:30:53'), +(8815,'2005-07-29 21:51:26',3469,230,'2005-08-03 22:37:26',1,'2006-02-15 21:30:53'), +(8816,'2005-07-29 21:53:00',3984,209,'2005-08-01 21:20:00',1,'2006-02-15 21:30:53'), +(8817,'2005-07-29 22:09:08',2716,175,'2005-08-01 19:07:08',1,'2006-02-15 21:30:53'), +(8818,'2005-07-29 22:14:04',3090,98,'2005-08-07 17:26:04',1,'2006-02-15 21:30:53'), +(8819,'2005-07-29 22:14:26',3100,591,'2005-08-06 23:02:26',2,'2006-02-15 21:30:53'), +(8820,'2005-07-29 22:14:56',481,594,'2005-08-05 23:36:56',2,'2006-02-15 21:30:53'), +(8821,'2005-07-29 22:18:12',52,477,'2005-08-05 22:00:12',1,'2006-02-15 21:30:53'), +(8822,'2005-07-29 22:20:21',744,35,'2005-08-06 03:00:21',2,'2006-02-15 21:30:53'), +(8823,'2005-07-29 22:22:12',951,75,'2005-08-07 21:03:12',1,'2006-02-15 21:30:53'), +(8824,'2005-07-29 22:22:58',3506,164,'2005-07-31 21:02:58',2,'2006-02-15 21:30:53'), +(8825,'2005-07-29 22:24:16',881,101,'2005-08-05 00:27:16',2,'2006-02-15 21:30:53'), +(8826,'2005-07-29 22:30:16',1800,369,'2005-07-30 19:43:16',1,'2006-02-15 21:30:53'), +(8827,'2005-07-29 22:31:24',1517,157,'2005-08-06 21:05:24',2,'2006-02-15 21:30:53'), +(8828,'2005-07-29 22:32:54',1608,547,'2005-07-30 20:41:54',1,'2006-02-15 21:30:53'), +(8829,'2005-07-29 22:33:34',1466,173,'2005-08-05 20:23:34',2,'2006-02-15 21:30:53'), +(8830,'2005-07-29 22:34:35',1751,202,'2005-08-05 20:12:35',2,'2006-02-15 21:30:53'), +(8831,'2005-07-29 22:37:41',3520,13,'2005-08-08 04:28:41',1,'2006-02-15 21:30:53'), +(8832,'2005-07-29 22:37:49',380,125,'2005-08-04 23:32:49',1,'2006-02-15 21:30:53'), +(8833,'2005-07-29 22:39:36',1741,101,'2005-08-05 21:19:36',1,'2006-02-15 21:30:53'), +(8834,'2005-07-29 22:41:48',4477,243,'2005-08-05 03:21:48',2,'2006-02-15 21:30:53'), +(8835,'2005-07-29 22:44:35',2653,237,'2005-08-05 23:28:35',1,'2006-02-15 21:30:53'), +(8836,'2005-07-29 22:46:08',3265,14,'2005-08-02 19:53:08',2,'2006-02-15 21:30:53'), +(8837,'2005-07-29 22:49:00',42,372,'2005-08-07 21:56:00',2,'2006-02-15 21:30:53'), +(8838,'2005-07-29 22:52:23',133,550,'2005-08-03 22:49:23',1,'2006-02-15 21:30:53'), +(8839,'2005-07-29 22:52:34',3440,580,'2005-08-05 03:24:34',2,'2006-02-15 21:30:53'), +(8840,'2005-07-29 22:55:38',1484,295,'2005-08-06 02:11:38',1,'2006-02-15 21:30:53'), +(8841,'2005-07-29 22:56:07',3935,363,'2005-08-01 21:21:07',2,'2006-02-15 21:30:53'), +(8842,'2005-07-29 23:03:40',4203,292,'2005-08-06 23:23:40',2,'2006-02-15 21:30:53'), +(8843,'2005-07-29 23:04:25',406,294,'2005-08-05 22:12:25',1,'2006-02-15 21:30:53'), +(8844,'2005-07-29 23:05:08',327,244,'2005-08-06 00:24:08',2,'2006-02-15 21:30:53'), +(8845,'2005-07-29 23:06:13',3036,543,'2005-08-02 20:16:13',1,'2006-02-15 21:30:53'), +(8846,'2005-07-29 23:10:28',2912,108,'2005-08-03 22:07:28',2,'2006-02-15 21:30:53'), +(8847,'2005-07-29 23:13:41',4133,480,'2005-07-31 23:55:41',1,'2006-02-15 21:30:53'), +(8848,'2005-07-29 23:20:58',2972,545,'2005-08-03 17:28:58',2,'2006-02-15 21:30:53'), +(8849,'2005-07-29 23:21:01',4300,79,'2005-08-03 20:01:01',1,'2006-02-15 21:30:53'), +(8850,'2005-07-29 23:24:20',355,86,'2005-07-31 00:43:20',2,'2006-02-15 21:30:53'), +(8851,'2005-07-29 23:26:19',212,445,'2005-08-05 03:59:19',2,'2006-02-15 21:30:53'), +(8852,'2005-07-29 23:30:03',1138,42,'2005-08-05 05:22:03',2,'2006-02-15 21:30:53'), +(8853,'2005-07-29 23:34:21',2323,58,'2005-07-31 21:20:21',2,'2006-02-15 21:30:53'), +(8854,'2005-07-29 23:40:07',1365,527,'2005-08-01 00:35:07',2,'2006-02-15 21:30:53'), +(8855,'2005-07-29 23:40:10',4388,335,'2005-08-02 18:07:10',2,'2006-02-15 21:30:53'), +(8856,'2005-07-29 23:42:00',2942,365,'2005-08-07 03:00:00',1,'2006-02-15 21:30:53'), +(8857,'2005-07-29 23:44:22',1348,477,'2005-07-31 21:32:22',2,'2006-02-15 21:30:53'), +(8858,'2005-07-29 23:44:35',2378,558,'2005-08-01 05:25:35',2,'2006-02-15 21:30:53'), +(8859,'2005-07-29 23:44:43',603,216,'2005-08-07 18:14:43',2,'2006-02-15 21:30:53'), +(8860,'2005-07-29 23:45:57',2841,531,'2005-08-06 02:14:57',2,'2006-02-15 21:30:53'), +(8861,'2005-07-29 23:47:29',759,560,'2005-08-07 01:27:29',1,'2006-02-15 21:30:53'), +(8862,'2005-07-29 23:49:23',916,21,'2005-08-04 20:11:23',1,'2006-02-15 21:30:53'), +(8863,'2005-07-29 23:52:01',75,47,'2005-08-04 20:28:01',1,'2006-02-15 21:30:53'), +(8864,'2005-07-29 23:52:12',2321,167,'2005-07-30 22:12:12',1,'2006-02-15 21:30:53'), +(8865,'2005-07-29 23:54:54',1835,305,'2005-07-31 05:10:54',2,'2006-02-15 21:30:53'), +(8866,'2005-07-29 23:58:19',1530,44,'2005-08-01 05:19:19',2,'2006-02-15 21:30:53'), +(8867,'2005-07-30 00:02:18',1388,497,'2005-08-04 00:44:18',2,'2006-02-15 21:30:53'), +(8868,'2005-07-30 00:02:26',1229,512,'2005-08-01 22:28:26',2,'2006-02-15 21:30:53'), +(8869,'2005-07-30 00:06:32',4353,308,'2005-07-31 20:49:32',2,'2006-02-15 21:30:53'), +(8870,'2005-07-30 00:08:08',4104,90,'2005-08-08 00:15:08',2,'2006-02-15 21:30:53'), +(8871,'2005-07-30 00:12:41',4535,382,'2005-08-08 03:53:41',1,'2006-02-15 21:30:53'), +(8872,'2005-07-30 00:13:54',2669,186,'2005-08-01 18:34:54',1,'2006-02-15 21:30:53'), +(8873,'2005-07-30 00:14:32',3498,91,'2005-08-04 20:42:32',2,'2006-02-15 21:30:53'), +(8874,'2005-07-30 00:14:45',459,564,'2005-08-02 22:34:45',2,'2006-02-15 21:30:53'), +(8875,'2005-07-30 00:15:09',1294,121,'2005-08-04 02:54:09',2,'2006-02-15 21:30:53'), +(8876,'2005-07-30 00:15:09',2394,579,'2005-08-02 23:56:09',1,'2006-02-15 21:30:53'), +(8877,'2005-07-30 00:15:22',1140,417,'2005-07-31 00:53:22',1,'2006-02-15 21:30:53'), +(8878,'2005-07-30 00:15:57',440,25,'2005-08-01 00:22:57',2,'2006-02-15 21:30:53'), +(8879,'2005-07-30 00:16:02',2956,584,'2005-08-06 20:10:02',2,'2006-02-15 21:30:53'), +(8880,'2005-07-30 00:16:55',2920,51,'2005-08-01 01:05:55',1,'2006-02-15 21:30:53'), +(8881,'2005-07-30 00:22:31',2012,118,'2005-08-04 19:10:31',1,'2006-02-15 21:30:53'), +(8882,'2005-07-30 00:24:05',441,410,'2005-08-03 19:48:05',2,'2006-02-15 21:30:53'), +(8883,'2005-07-30 00:24:48',1421,168,'2005-08-04 00:24:48',2,'2006-02-15 21:30:53'), +(8884,'2005-07-30 00:26:22',3050,80,'2005-08-05 03:24:22',1,'2006-02-15 21:30:53'), +(8885,'2005-07-30 00:36:26',2984,135,'2005-08-06 03:05:26',1,'2006-02-15 21:30:53'), +(8886,'2005-07-30 00:36:31',1469,418,'2005-08-08 06:18:31',1,'2006-02-15 21:30:53'), +(8887,'2005-07-30 00:36:54',4119,389,'2005-08-04 19:07:54',1,'2006-02-15 21:30:53'), +(8888,'2005-07-30 00:39:36',2824,284,'2005-08-01 02:28:36',2,'2006-02-15 21:30:53'), +(8889,'2005-07-30 00:39:43',3457,558,'2005-08-02 23:22:43',1,'2006-02-15 21:30:53'), +(8890,'2005-07-30 00:42:06',3656,470,'2005-08-05 21:04:06',1,'2006-02-15 21:30:53'), +(8891,'2005-07-30 00:46:55',4093,435,'2005-08-06 23:32:55',2,'2006-02-15 21:30:53'), +(8892,'2005-07-30 00:47:03',1584,184,'2005-08-06 03:23:03',2,'2006-02-15 21:30:53'), +(8893,'2005-07-30 00:48:19',1048,147,'2005-08-01 03:25:19',1,'2006-02-15 21:30:53'), +(8894,'2005-07-30 00:48:31',2055,552,'2005-07-31 05:49:31',1,'2006-02-15 21:30:53'), +(8895,'2005-07-30 00:49:17',3217,494,'2005-07-31 01:56:17',1,'2006-02-15 21:30:53'), +(8896,'2005-07-30 00:51:21',3560,205,'2005-07-31 22:33:21',1,'2006-02-15 21:30:53'), +(8897,'2005-07-30 01:00:17',1964,459,'2005-08-01 03:41:17',1,'2006-02-15 21:30:53'), +(8898,'2005-07-30 01:02:20',3961,452,'2005-08-05 22:02:20',2,'2006-02-15 21:30:53'), +(8899,'2005-07-30 01:05:30',4148,252,'2005-08-01 23:32:30',1,'2006-02-15 21:30:53'), +(8900,'2005-07-30 01:07:03',3057,375,'2005-08-06 04:07:03',1,'2006-02-15 21:30:53'), +(8901,'2005-07-30 01:07:12',4392,28,'2005-08-02 06:34:12',1,'2006-02-15 21:30:53'), +(8902,'2005-07-30 01:08:06',2983,408,'2005-08-05 00:00:06',2,'2006-02-15 21:30:53'), +(8903,'2005-07-30 01:08:06',4546,406,'2005-07-30 21:47:06',2,'2006-02-15 21:30:53'), +(8904,'2005-07-30 01:08:33',3622,575,'2005-08-04 02:33:33',1,'2006-02-15 21:30:53'), +(8905,'2005-07-30 01:11:11',2154,240,'2005-08-04 22:39:11',1,'2006-02-15 21:30:53'), +(8906,'2005-07-30 01:21:39',2667,560,'2005-08-07 02:14:39',2,'2006-02-15 21:30:53'), +(8907,'2005-07-30 01:25:03',3239,576,'2005-08-03 05:41:03',1,'2006-02-15 21:30:53'), +(8908,'2005-07-30 01:26:05',4498,391,'2005-07-31 20:39:05',1,'2006-02-15 21:30:53'), +(8909,'2005-07-30 01:28:03',2606,556,'2005-08-06 04:40:03',2,'2006-02-15 21:30:53'), +(8910,'2005-07-30 01:29:48',1039,569,'2005-07-31 21:33:48',2,'2006-02-15 21:30:53'), +(8911,'2005-07-30 01:30:57',2159,445,'2005-08-02 20:01:57',1,'2006-02-15 21:30:53'), +(8912,'2005-07-30 01:31:25',1686,280,'2005-08-02 07:14:25',2,'2006-02-15 21:30:53'), +(8913,'2005-07-30 01:35:01',429,391,'2005-08-06 06:13:01',1,'2006-02-15 21:30:53'), +(8914,'2005-07-30 01:42:03',1347,32,'2005-08-04 03:53:03',1,'2006-02-15 21:30:53'), +(8915,'2005-07-30 01:42:09',3030,42,'2005-08-04 23:29:09',2,'2006-02-15 21:30:53'), +(8916,'2005-07-30 01:42:21',3852,377,'2005-08-03 05:28:21',1,'2006-02-15 21:30:53'), +(8917,'2005-07-30 01:47:02',4460,309,'2005-08-05 21:10:02',2,'2006-02-15 21:30:53'), +(8918,'2005-07-30 01:56:22',2544,424,'2005-08-04 01:58:22',2,'2006-02-15 21:30:53'), +(8919,'2005-07-30 01:57:03',4006,337,'2005-08-08 05:14:03',1,'2006-02-15 21:30:53'), +(8920,'2005-07-30 01:59:24',4079,78,'2005-08-02 22:37:24',2,'2006-02-15 21:30:53'), +(8921,'2005-07-30 02:04:02',1016,354,'2005-07-31 06:18:02',1,'2006-02-15 21:30:53'), +(8922,'2005-07-30 02:08:25',1696,446,'2005-08-08 07:19:25',2,'2006-02-15 21:30:53'), +(8923,'2005-07-30 02:08:49',2425,446,'2005-08-03 23:45:49',2,'2006-02-15 21:30:53'), +(8924,'2005-07-30 02:08:58',2291,38,'2005-08-05 02:13:58',2,'2006-02-15 21:30:53'), +(8925,'2005-07-30 02:09:14',3753,500,'2005-07-30 21:39:14',1,'2006-02-15 21:30:53'), +(8926,'2005-07-30 02:10:31',3677,510,'2005-08-03 23:56:31',1,'2006-02-15 21:30:53'), +(8927,'2005-07-30 02:13:31',272,15,'2005-08-01 01:34:31',1,'2006-02-15 21:30:53'), +(8928,'2005-07-30 02:18:19',706,366,'2005-08-05 00:49:19',2,'2006-02-15 21:30:53'), +(8929,'2005-07-30 02:28:22',3501,472,'2005-08-06 06:13:22',1,'2006-02-15 21:30:53'), +(8930,'2005-07-30 02:28:38',1107,202,'2005-08-02 01:43:38',2,'2006-02-15 21:30:53'), +(8931,'2005-07-30 02:30:07',16,268,'2005-08-02 08:24:07',2,'2006-02-15 21:30:53'), +(8932,'2005-07-30 02:31:26',4537,295,'2005-08-04 02:17:26',2,'2006-02-15 21:30:53'), +(8933,'2005-07-30 02:36:06',1664,260,'2005-08-02 23:37:06',2,'2006-02-15 21:30:53'), +(8934,'2005-07-30 02:37:05',3223,494,'2005-08-01 20:42:05',1,'2006-02-15 21:30:53'), +(8935,'2005-07-30 02:38:45',285,76,'2005-08-02 07:11:45',2,'2006-02-15 21:30:53'), +(8936,'2005-07-30 02:47:13',1408,227,'2005-08-01 02:25:13',2,'2006-02-15 21:30:53'), +(8937,'2005-07-30 02:53:21',2406,544,'2005-08-08 03:33:21',2,'2006-02-15 21:30:53'), +(8938,'2005-07-30 02:56:08',4031,92,'2005-07-31 23:08:08',2,'2006-02-15 21:30:53'), +(8939,'2005-07-30 02:56:53',4175,598,'2005-08-01 21:19:53',1,'2006-02-15 21:30:53'), +(8940,'2005-07-30 02:57:26',1566,212,'2005-08-05 22:05:26',1,'2006-02-15 21:30:53'), +(8941,'2005-07-30 02:59:21',4147,329,'2005-08-02 05:18:21',2,'2006-02-15 21:30:53'), +(8942,'2005-07-30 03:01:07',4375,77,'2005-08-06 22:50:07',2,'2006-02-15 21:30:53'), +(8943,'2005-07-30 03:06:48',3698,531,'2005-08-02 00:59:48',2,'2006-02-15 21:30:53'), +(8944,'2005-07-30 03:11:44',3513,172,'2005-08-06 23:15:44',2,'2006-02-15 21:30:53'), +(8945,'2005-07-30 03:11:48',1441,447,'2005-08-07 07:53:48',2,'2006-02-15 21:30:53'), +(8946,'2005-07-30 03:14:53',3510,257,'2005-08-04 00:50:53',1,'2006-02-15 21:30:53'), +(8947,'2005-07-30 03:15:37',341,24,'2005-08-04 07:10:37',2,'2006-02-15 21:30:53'), +(8948,'2005-07-30 03:16:18',948,597,'2005-08-04 03:16:18',1,'2006-02-15 21:30:53'), +(8949,'2005-07-30 03:17:02',2876,231,'2005-08-08 07:38:02',1,'2006-02-15 21:30:53'), +(8950,'2005-07-30 03:17:13',3015,11,'2005-08-07 00:20:13',1,'2006-02-15 21:30:53'), +(8951,'2005-07-30 03:18:24',127,336,'2005-08-08 08:50:24',2,'2006-02-15 21:30:53'), +(8952,'2005-07-30 03:20:38',4397,36,'2005-08-02 02:54:38',1,'2006-02-15 21:30:53'), +(8953,'2005-07-30 03:21:05',535,278,'2005-08-02 05:24:05',2,'2006-02-15 21:30:53'), +(8954,'2005-07-30 03:25:51',991,137,'2005-08-06 05:10:51',2,'2006-02-15 21:30:53'), +(8955,'2005-07-30 03:28:27',4532,405,'2005-08-04 04:56:27',2,'2006-02-15 21:30:53'), +(8956,'2005-07-30 03:32:29',2129,71,'2005-08-01 03:08:29',2,'2006-02-15 21:30:53'), +(8957,'2005-07-30 03:34:10',811,158,'2005-08-06 07:05:10',1,'2006-02-15 21:30:53'), +(8958,'2005-07-30 03:34:26',1556,536,'2005-08-06 08:14:26',1,'2006-02-15 21:30:53'), +(8959,'2005-07-30 03:35:49',3508,550,'2005-08-06 02:02:49',2,'2006-02-15 21:30:53'), +(8960,'2005-07-30 03:36:31',391,525,'2005-08-01 23:46:31',2,'2006-02-15 21:30:53'), +(8961,'2005-07-30 03:43:35',3679,211,'2005-08-06 07:42:35',1,'2006-02-15 21:30:53'), +(8962,'2005-07-30 03:43:45',4439,406,'2005-08-07 00:33:45',1,'2006-02-15 21:30:53'), +(8963,'2005-07-30 03:46:26',100,544,'2005-08-08 06:12:26',1,'2006-02-15 21:30:53'), +(8964,'2005-07-30 03:49:35',280,424,'2005-08-06 23:28:35',2,'2006-02-15 21:30:53'), +(8965,'2005-07-30 03:52:37',2419,599,'2005-08-05 01:28:37',2,'2006-02-15 21:30:53'), +(8966,'2005-07-30 03:54:12',1903,522,'2005-07-31 04:51:12',1,'2006-02-15 21:30:53'), +(8967,'2005-07-30 03:56:55',1536,480,'2005-08-06 05:25:55',2,'2006-02-15 21:30:53'), +(8968,'2005-07-30 03:57:32',2280,339,'2005-07-31 00:09:32',1,'2006-02-15 21:30:53'), +(8969,'2005-07-30 04:00:19',2043,121,'2005-08-06 04:39:19',1,'2006-02-15 21:30:53'), +(8970,'2005-07-30 04:02:05',2940,313,'2005-08-07 03:40:05',2,'2006-02-15 21:30:53'), +(8971,'2005-07-30 04:03:58',3572,35,'2005-08-08 04:16:58',2,'2006-02-15 21:30:53'), +(8972,'2005-07-30 04:06:25',1974,89,'2005-08-04 22:49:25',1,'2006-02-15 21:30:53'), +(8973,'2005-07-30 04:09:13',886,282,'2005-08-07 22:30:13',2,'2006-02-15 21:30:53'), +(8974,'2005-07-30 04:09:16',3376,425,'2005-08-04 06:55:16',1,'2006-02-15 21:30:53'), +(8975,'2005-07-30 04:10:18',3288,356,'2005-08-07 01:06:18',2,'2006-02-15 21:30:53'), +(8976,'2005-07-30 04:12:32',2135,507,'2005-08-04 23:08:32',1,'2006-02-15 21:30:53'), +(8977,'2005-07-30 04:14:07',4099,334,'2005-08-05 23:45:07',2,'2006-02-15 21:30:53'), +(8978,'2005-07-30 04:14:28',711,5,'2005-08-06 09:08:28',1,'2006-02-15 21:30:53'), +(8979,'2005-07-30 04:20:25',1394,529,'2005-08-08 03:39:25',2,'2006-02-15 21:30:53'), +(8980,'2005-07-30 04:22:15',3061,105,'2005-08-04 08:16:15',1,'2006-02-15 21:30:53'), +(8981,'2005-07-30 04:25:30',4413,310,'2005-08-06 02:37:30',1,'2006-02-15 21:30:53'), +(8982,'2005-07-30 04:31:02',1128,251,'2005-07-31 04:22:02',1,'2006-02-15 21:30:53'), +(8983,'2005-07-30 04:31:08',1861,144,'2005-07-31 09:28:08',1,'2006-02-15 21:30:53'), +(8984,'2005-07-30 04:31:50',2126,485,'2005-08-04 03:24:50',1,'2006-02-15 21:30:53'), +(8985,'2005-07-30 04:34:51',3179,12,'2005-08-06 00:45:51',2,'2006-02-15 21:30:53'), +(8986,'2005-07-30 04:37:20',3992,551,'2005-07-31 23:54:20',1,'2006-02-15 21:30:53'), +(8987,'2005-07-30 04:37:36',1434,135,'2005-08-08 10:14:36',2,'2006-02-15 21:30:53'), +(8988,'2005-07-30 04:38:49',777,487,'2005-08-07 07:00:49',2,'2006-02-15 21:30:53'), +(8989,'2005-07-30 04:39:19',954,575,'2005-08-06 02:11:19',1,'2006-02-15 21:30:53'), +(8990,'2005-07-30 04:41:42',1869,292,'2005-08-07 22:50:42',2,'2006-02-15 21:30:53'), +(8991,'2005-07-30 04:42:54',4540,474,'2005-08-01 23:51:54',1,'2006-02-15 21:30:53'), +(8992,'2005-07-30 04:44:18',4478,54,'2005-08-01 00:29:18',1,'2006-02-15 21:30:53'), +(8993,'2005-07-30 04:51:25',1891,382,'2005-08-01 01:04:25',1,'2006-02-15 21:30:53'), +(8994,'2005-07-30 04:51:32',1527,287,'2005-08-07 09:41:32',1,'2006-02-15 21:30:53'), +(8995,'2005-07-30 04:53:11',3575,331,'2005-08-07 00:24:11',1,'2006-02-15 21:30:53'), +(8996,'2005-07-30 04:53:23',1970,579,'2005-07-31 06:01:23',1,'2006-02-15 21:30:53'), +(8997,'2005-07-30 04:53:56',850,31,'2005-08-03 07:10:56',1,'2006-02-15 21:30:53'), +(8998,'2005-07-30 04:54:14',1573,120,'2005-08-08 08:18:14',2,'2006-02-15 21:30:53'), +(8999,'2005-07-30 04:55:46',3458,424,'2005-08-01 00:16:46',2,'2006-02-15 21:30:53'), +(9000,'2005-07-30 04:58:55',3763,290,'2005-08-08 04:01:55',2,'2006-02-15 21:30:53'), +(9001,'2005-07-30 04:59:41',3682,440,'2005-07-31 08:56:41',2,'2006-02-15 21:30:53'), +(9002,'2005-07-30 05:02:21',1936,137,'2005-07-31 04:58:21',1,'2006-02-15 21:30:53'), +(9003,'2005-07-30 05:02:52',1605,507,'2005-07-31 10:33:52',1,'2006-02-15 21:30:53'), +(9004,'2005-07-30 05:04:27',3775,178,'2005-07-31 00:49:27',1,'2006-02-15 21:30:53'), +(9005,'2005-07-30 05:04:58',157,204,'2005-08-03 07:41:58',2,'2006-02-15 21:30:53'), +(9006,'2005-07-30 05:06:32',3315,49,'2005-07-31 08:24:32',1,'2006-02-15 21:30:53'), +(9007,'2005-07-30 05:09:32',2813,63,'2005-08-02 06:12:32',2,'2006-02-15 21:30:53'), +(9008,'2005-07-30 05:10:26',3592,371,'2005-07-31 08:13:26',1,'2006-02-15 21:30:53'), +(9009,'2005-07-30 05:12:01',4136,166,'2005-08-07 10:58:01',1,'2006-02-15 21:30:53'), +(9010,'2005-07-30 05:12:04',1698,152,'2005-08-06 02:54:04',2,'2006-02-15 21:30:53'), +(9011,'2005-07-30 05:16:29',2799,236,'2005-08-05 06:57:29',1,'2006-02-15 21:30:53'), +(9012,'2005-07-30 05:18:57',3604,494,'2005-08-06 06:21:57',1,'2006-02-15 21:30:53'), +(9013,'2005-07-30 05:19:20',2367,347,'2005-08-04 01:35:20',1,'2006-02-15 21:30:53'), +(9014,'2005-07-30 05:19:27',311,297,'2005-08-01 01:10:27',2,'2006-02-15 21:30:53'), +(9015,'2005-07-30 05:21:32',4128,203,'2005-08-08 07:03:32',2,'2006-02-15 21:30:53'), +(9016,'2005-07-30 05:26:13',4309,312,'2005-08-04 00:25:13',2,'2006-02-15 21:30:53'), +(9017,'2005-07-30 05:26:20',3325,319,'2005-08-04 10:00:20',2,'2006-02-15 21:30:53'), +(9018,'2005-07-30 05:28:40',1982,218,'2005-08-07 01:34:40',1,'2006-02-15 21:30:53'), +(9019,'2005-07-30 05:28:53',946,235,'2005-08-03 02:16:53',2,'2006-02-15 21:30:53'), +(9020,'2005-07-30 05:31:27',1700,142,'2005-08-08 06:44:27',2,'2006-02-15 21:30:53'), +(9021,'2005-07-30 05:34:24',674,498,'2005-08-03 04:13:24',1,'2006-02-15 21:30:53'), +(9022,'2005-07-30 05:34:45',4473,159,'2005-08-03 23:57:45',2,'2006-02-15 21:30:53'), +(9023,'2005-07-30 05:36:40',2911,148,'2005-08-07 06:20:40',1,'2006-02-15 21:30:53'), +(9024,'2005-07-30 05:44:42',164,329,'2005-08-05 03:15:42',2,'2006-02-15 21:30:53'), +(9025,'2005-07-30 05:50:08',2244,473,'2005-07-31 09:58:08',1,'2006-02-15 21:30:53'), +(9026,'2005-07-30 05:55:31',1524,423,'2005-08-01 03:19:31',1,'2006-02-15 21:30:53'), +(9027,'2005-07-30 05:58:27',449,72,'2005-08-03 03:02:27',1,'2006-02-15 21:30:53'), +(9028,'2005-07-30 06:00:35',2687,119,'2005-08-02 01:35:35',1,'2006-02-15 21:30:53'), +(9029,'2005-07-30 06:03:11',2220,52,'2005-08-04 01:42:11',1,'2006-02-15 21:30:53'), +(9030,'2005-07-30 06:05:38',2237,367,'2005-08-03 00:19:38',1,'2006-02-15 21:30:53'), +(9031,'2005-07-30 06:06:10',2377,2,'2005-08-04 10:45:10',2,'2006-02-15 21:30:53'), +(9032,'2005-07-30 06:06:54',4448,369,'2005-08-01 05:27:54',1,'2006-02-15 21:30:53'), +(9033,'2005-07-30 06:07:42',3416,35,'2005-08-05 01:18:42',1,'2006-02-15 21:30:53'), +(9034,'2005-07-30 06:10:58',3847,144,'2005-08-08 05:00:58',2,'2006-02-15 21:30:53'), +(9035,'2005-07-30 06:16:07',3785,243,'2005-08-06 09:22:07',1,'2006-02-15 21:30:53'), +(9036,'2005-07-30 06:18:38',790,18,'2005-07-31 01:22:38',1,'2006-02-15 21:30:53'), +(9037,'2005-07-30 06:23:14',3833,356,'2005-08-08 06:25:14',1,'2006-02-15 21:30:53'), +(9038,'2005-07-30 06:23:35',217,514,'2005-08-06 11:10:35',1,'2006-02-15 21:30:53'), +(9039,'2005-07-30 06:24:28',4493,485,'2005-08-08 00:28:28',1,'2006-02-15 21:30:53'), +(9040,'2005-07-30 06:31:45',392,33,'2005-08-03 12:20:45',1,'2006-02-15 21:30:53'), +(9041,'2005-07-30 06:32:36',1103,454,'2005-08-01 10:28:36',2,'2006-02-15 21:30:53'), +(9042,'2005-07-30 06:33:55',2770,398,'2005-08-04 09:31:55',2,'2006-02-15 21:30:53'), +(9043,'2005-07-30 06:34:07',4127,9,'2005-08-02 01:16:07',1,'2006-02-15 21:30:53'), +(9044,'2005-07-30 06:35:21',3796,319,'2005-07-31 10:27:21',1,'2006-02-15 21:30:53'), +(9045,'2005-07-30 06:36:57',4521,46,'2005-08-08 01:51:57',1,'2006-02-15 21:30:53'), +(9046,'2005-07-30 06:46:55',1736,215,'2005-08-01 02:21:55',2,'2006-02-15 21:30:53'), +(9047,'2005-07-30 06:56:33',256,522,'2005-08-08 06:40:33',2,'2006-02-15 21:30:53'), +(9048,'2005-07-30 06:57:07',3929,100,'2005-08-05 00:57:07',1,'2006-02-15 21:30:53'), +(9049,'2005-07-30 06:57:28',2620,417,'2005-08-04 09:02:28',1,'2006-02-15 21:30:53'), +(9050,'2005-07-30 06:59:55',106,40,'2005-08-06 06:37:55',1,'2006-02-15 21:30:53'), +(9051,'2005-07-30 07:05:54',1847,337,'2005-08-07 09:12:54',2,'2006-02-15 21:30:53'), +(9052,'2005-07-30 07:06:08',3351,408,'2005-08-03 10:30:08',1,'2006-02-15 21:30:53'), +(9053,'2005-07-30 07:07:39',2535,485,'2005-08-01 09:22:39',2,'2006-02-15 21:30:53'), +(9054,'2005-07-30 07:11:44',2860,209,'2005-08-08 01:55:44',2,'2006-02-15 21:30:53'), +(9055,'2005-07-30 07:13:07',634,512,'2005-08-01 12:18:07',1,'2006-02-15 21:30:53'), +(9056,'2005-07-30 07:13:20',4363,380,'2005-08-03 07:36:20',1,'2006-02-15 21:30:53'), +(9057,'2005-07-30 07:14:18',3141,202,'2005-08-01 05:10:18',2,'2006-02-15 21:30:53'), +(9058,'2005-07-30 07:15:45',4214,403,'2005-07-31 02:57:45',2,'2006-02-15 21:30:53'), +(9059,'2005-07-30 07:18:44',480,267,'2005-08-08 08:39:44',1,'2006-02-15 21:30:53'), +(9060,'2005-07-30 07:20:36',4360,87,'2005-08-03 10:51:36',1,'2006-02-15 21:30:53'), +(9061,'2005-07-30 07:21:52',1933,255,'2005-08-08 10:52:52',1,'2006-02-15 21:30:53'), +(9062,'2005-07-30 07:23:17',2780,358,'2005-08-02 12:07:17',1,'2006-02-15 21:30:53'), +(9063,'2005-07-30 07:24:34',2851,564,'2005-08-05 01:28:34',2,'2006-02-15 21:30:53'), +(9064,'2005-07-30 07:24:55',1417,194,'2005-08-07 08:44:55',2,'2006-02-15 21:30:53'), +(9065,'2005-07-30 07:25:09',349,238,'2005-07-31 05:18:09',2,'2006-02-15 21:30:53'), +(9066,'2005-07-30 07:28:54',196,171,'2005-08-02 05:23:54',1,'2006-02-15 21:30:53'), +(9067,'2005-07-30 07:31:01',3628,382,'2005-08-04 11:44:01',2,'2006-02-15 21:30:53'), +(9068,'2005-07-30 07:31:45',2264,78,'2005-08-08 06:40:45',1,'2006-02-15 21:30:53'), +(9069,'2005-07-30 07:39:59',1852,258,'2005-08-02 04:10:59',1,'2006-02-15 21:30:53'), +(9070,'2005-07-30 07:40:39',3690,276,'2005-08-01 04:19:39',2,'2006-02-15 21:30:53'), +(9071,'2005-07-30 07:40:58',3151,523,'2005-08-01 06:59:58',2,'2006-02-15 21:30:53'), +(9072,'2005-07-30 07:45:49',4536,106,'2005-08-04 10:00:49',1,'2006-02-15 21:30:53'), +(9073,'2005-07-30 07:49:56',2185,141,'2005-08-05 06:25:56',2,'2006-02-15 21:30:53'), +(9074,'2005-07-30 07:50:10',3244,84,'2005-08-01 11:21:10',2,'2006-02-15 21:30:53'), +(9075,'2005-07-30 07:55:14',1931,20,'2005-08-02 13:49:14',1,'2006-02-15 21:30:53'), +(9076,'2005-07-30 07:58:12',496,447,'2005-08-08 06:04:12',1,'2006-02-15 21:30:53'), +(9077,'2005-07-30 08:00:19',4324,471,'2005-08-08 11:21:19',1,'2006-02-15 21:30:53'), +(9078,'2005-07-30 08:01:00',955,300,'2005-07-31 10:39:00',1,'2006-02-15 21:30:53'), +(9079,'2005-07-30 08:02:00',2143,193,'2005-07-31 04:02:00',2,'2006-02-15 21:30:53'), +(9080,'2005-07-30 08:02:39',94,276,'2005-08-06 12:02:39',1,'2006-02-15 21:30:53'), +(9081,'2005-07-30 08:09:58',3040,572,'2005-08-03 13:27:58',1,'2006-02-15 21:30:53'), +(9082,'2005-07-30 08:11:22',4042,438,'2005-08-06 09:26:22',2,'2006-02-15 21:30:53'), +(9083,'2005-07-30 08:14:27',456,488,'2005-08-07 14:02:27',1,'2006-02-15 21:30:53'), +(9084,'2005-07-30 08:14:29',3950,171,'2005-08-03 11:12:29',2,'2006-02-15 21:30:53'), +(9085,'2005-07-30 08:17:24',3400,33,'2005-08-03 09:35:24',2,'2006-02-15 21:30:53'), +(9086,'2005-07-30 08:18:46',2779,57,'2005-08-06 06:10:46',2,'2006-02-15 21:30:53'), +(9087,'2005-07-30 08:19:47',4048,546,'2005-08-02 07:15:47',1,'2006-02-15 21:30:53'), +(9088,'2005-07-30 08:21:02',3407,245,'2005-08-01 09:55:02',1,'2006-02-15 21:30:53'), +(9089,'2005-07-30 08:23:39',490,369,'2005-07-31 06:00:39',1,'2006-02-15 21:30:53'), +(9090,'2005-07-30 08:24:42',3426,104,'2005-08-08 06:17:42',2,'2006-02-15 21:30:53'), +(9091,'2005-07-30 08:30:45',2249,66,'2005-08-07 13:28:45',1,'2006-02-15 21:30:53'), +(9092,'2005-07-30 08:30:56',1877,17,'2005-08-06 08:09:56',2,'2006-02-15 21:30:53'), +(9093,'2005-07-30 08:33:24',2208,96,'2005-08-04 11:07:24',1,'2006-02-15 21:30:53'), +(9094,'2005-07-30 08:35:10',2699,140,'2005-08-07 08:18:10',2,'2006-02-15 21:30:53'), +(9095,'2005-07-30 08:38:36',3019,511,'2005-07-31 06:14:36',1,'2006-02-15 21:30:53'), +(9096,'2005-07-30 08:39:23',540,216,'2005-08-01 03:33:23',1,'2006-02-15 21:30:53'), +(9097,'2005-07-30 08:40:35',570,173,'2005-08-04 11:19:35',2,'2006-02-15 21:30:53'), +(9098,'2005-07-30 08:44:21',1267,144,'2005-08-08 12:31:21',1,'2006-02-15 21:30:53'), +(9099,'2005-07-30 08:45:48',594,250,'2005-08-01 03:18:48',2,'2006-02-15 21:30:53'), +(9100,'2005-07-30 08:46:09',4117,4,'2005-08-05 10:34:09',1,'2006-02-15 21:30:53'), +(9101,'2005-07-30 08:47:13',3165,566,'2005-08-02 12:52:13',1,'2006-02-15 21:30:53'), +(9102,'2005-07-30 08:48:20',1154,276,'2005-08-04 10:19:20',1,'2006-02-15 21:30:53'), +(9103,'2005-07-30 08:49:26',3806,280,'2005-07-31 14:15:26',1,'2006-02-15 21:30:53'), +(9104,'2005-07-30 08:49:55',3372,322,'2005-08-06 12:23:55',1,'2006-02-15 21:30:53'), +(9105,'2005-07-30 08:50:25',4443,262,'2005-08-05 06:08:25',1,'2006-02-15 21:30:53'), +(9106,'2005-07-30 08:52:34',2935,148,'2005-08-02 07:38:34',2,'2006-02-15 21:30:53'), +(9107,'2005-07-30 08:52:45',1068,531,'2005-08-05 08:39:45',2,'2006-02-15 21:30:53'), +(9108,'2005-07-30 08:56:36',3977,490,'2005-08-04 11:07:36',1,'2006-02-15 21:30:53'), +(9109,'2005-07-30 08:58:24',787,266,'2005-08-07 06:56:24',1,'2006-02-15 21:30:53'), +(9110,'2005-07-30 09:05:42',1474,317,'2005-08-03 05:15:42',1,'2006-02-15 21:30:53'), +(9111,'2005-07-30 09:05:44',166,211,'2005-08-04 14:27:44',2,'2006-02-15 21:30:53'), +(9112,'2005-07-30 09:06:31',395,74,'2005-08-04 05:12:31',2,'2006-02-15 21:30:53'), +(9113,'2005-07-30 09:09:03',3903,374,'2005-07-31 03:13:03',1,'2006-02-15 21:30:53'), +(9114,'2005-07-30 09:13:21',893,18,'2005-08-05 06:00:21',2,'2006-02-15 21:30:53'), +(9115,'2005-07-30 09:13:55',3750,322,'2005-08-04 04:02:55',2,'2006-02-15 21:30:53'), +(9116,'2005-07-30 09:19:41',2917,446,'2005-08-03 08:01:41',2,'2006-02-15 21:30:53'), +(9117,'2005-07-30 09:20:59',3055,371,'2005-08-07 08:47:59',1,'2006-02-15 21:30:53'), +(9118,'2005-07-30 09:24:18',4538,172,'2005-08-02 14:46:18',2,'2006-02-15 21:30:53'), +(9119,'2005-07-30 09:25:56',275,305,'2005-08-03 03:36:56',1,'2006-02-15 21:30:53'), +(9120,'2005-07-30 09:26:08',139,473,'2005-08-08 09:52:08',1,'2006-02-15 21:30:53'), +(9121,'2005-07-30 09:36:26',3098,150,'2005-08-05 15:17:26',2,'2006-02-15 21:30:53'), +(9122,'2005-07-30 09:36:52',627,365,'2005-08-05 13:20:52',1,'2006-02-15 21:30:53'), +(9123,'2005-07-30 09:39:15',3748,293,'2005-08-02 08:12:15',2,'2006-02-15 21:30:53'), +(9124,'2005-07-30 09:43:12',4552,105,'2005-08-06 06:17:12',1,'2006-02-15 21:30:53'), +(9125,'2005-07-30 09:43:39',333,335,'2005-08-07 14:02:39',1,'2006-02-15 21:30:53'), +(9126,'2005-07-30 09:44:15',4495,590,'2005-08-02 11:02:15',2,'2006-02-15 21:30:53'), +(9127,'2005-07-30 09:46:36',4114,300,'2005-07-31 07:43:36',1,'2006-02-15 21:30:53'), +(9128,'2005-07-30 09:51:14',3647,372,'2005-08-07 06:23:14',1,'2006-02-15 21:30:53'), +(9129,'2005-07-30 09:51:21',2658,125,'2005-08-07 08:50:21',2,'2006-02-15 21:30:53'), +(9130,'2005-07-30 09:55:10',1715,354,'2005-08-04 08:57:10',1,'2006-02-15 21:30:53'), +(9131,'2005-07-30 09:55:57',623,142,'2005-08-01 14:21:57',1,'2006-02-15 21:30:53'), +(9132,'2005-07-30 09:56:00',402,159,'2005-08-02 09:22:00',1,'2006-02-15 21:30:53'), +(9133,'2005-07-30 09:59:00',408,576,'2005-08-07 04:24:00',1,'2006-02-15 21:30:53'), +(9134,'2005-07-30 10:00:21',3797,559,'2005-08-01 05:01:21',1,'2006-02-15 21:30:53'), +(9135,'2005-07-30 10:06:53',821,161,'2005-08-03 13:57:53',2,'2006-02-15 21:30:53'), +(9136,'2005-07-30 10:07:20',1734,57,'2005-07-31 08:20:20',2,'2006-02-15 21:30:53'), +(9137,'2005-07-30 10:09:24',840,459,'2005-08-06 04:30:24',2,'2006-02-15 21:30:53'), +(9138,'2005-07-30 10:11:52',2550,17,'2005-07-31 07:05:52',2,'2006-02-15 21:30:53'), +(9139,'2005-07-30 10:11:52',2809,133,'2005-08-03 12:44:52',1,'2006-02-15 21:30:53'), +(9140,'2005-07-30 10:12:01',4095,25,'2005-08-06 09:16:01',2,'2006-02-15 21:30:53'), +(9141,'2005-07-30 10:16:04',3087,484,'2005-08-05 08:01:04',1,'2006-02-15 21:30:53'), +(9142,'2005-07-30 10:21:03',4467,486,'2005-08-04 15:14:03',1,'2006-02-15 21:30:53'), +(9143,'2005-07-30 10:22:11',2962,511,'2005-08-07 06:13:11',2,'2006-02-15 21:30:53'), +(9144,'2005-07-30 10:22:15',718,381,'2005-08-05 08:14:15',1,'2006-02-15 21:30:53'), +(9145,'2005-07-30 10:27:55',559,176,'2005-08-07 14:41:55',2,'2006-02-15 21:30:53'), +(9146,'2005-07-30 10:32:08',483,302,'2005-08-08 14:30:08',1,'2006-02-15 21:30:53'), +(9147,'2005-07-30 10:38:59',4167,394,'2005-08-02 11:45:59',2,'2006-02-15 21:30:53'), +(9148,'2005-07-30 10:39:10',1407,333,'2005-08-04 07:17:10',2,'2006-02-15 21:30:53'), +(9149,'2005-07-30 10:45:12',2632,21,'2005-08-01 09:40:12',1,'2006-02-15 21:30:53'), +(9150,'2005-07-30 10:49:32',2834,213,'2005-08-08 15:43:32',1,'2006-02-15 21:30:53'), +(9151,'2005-07-30 10:50:53',3956,102,'2005-08-07 08:19:53',1,'2006-02-15 21:30:53'), +(9152,'2005-07-30 10:51:27',3607,595,'2005-07-31 06:38:27',2,'2006-02-15 21:30:53'), +(9153,'2005-07-30 10:58:16',3743,589,'2005-08-03 06:16:16',2,'2006-02-15 21:30:53'), +(9154,'2005-07-30 10:59:54',576,312,'2005-08-05 16:47:54',1,'2006-02-15 21:30:53'), +(9155,'2005-07-30 11:00:00',3787,107,'2005-08-02 05:24:00',2,'2006-02-15 21:30:53'), +(9156,'2005-07-30 11:04:55',1747,145,'2005-07-31 14:10:55',2,'2006-02-15 21:30:53'), +(9157,'2005-07-30 11:06:23',146,19,'2005-08-05 05:29:23',2,'2006-02-15 21:30:53'), +(9158,'2005-07-30 11:12:03',4017,16,'2005-08-02 05:55:03',2,'2006-02-15 21:30:53'), +(9159,'2005-07-30 11:16:37',1234,217,'2005-08-03 10:32:37',1,'2006-02-15 21:30:53'), +(9160,'2005-07-30 11:17:33',183,34,'2005-08-06 15:16:33',2,'2006-02-15 21:30:53'), +(9161,'2005-07-30 11:19:18',969,433,'2005-08-02 05:32:18',1,'2006-02-15 21:30:53'), +(9162,'2005-07-30 11:21:56',4198,184,'2005-08-02 15:32:56',1,'2006-02-15 21:30:53'), +(9163,'2005-07-30 11:23:22',4562,345,'2005-07-31 07:34:22',2,'2006-02-15 21:30:53'), +(9164,'2005-07-30 11:24:14',4434,342,'2005-08-08 16:24:14',1,'2006-02-15 21:30:53'), +(9165,'2005-07-30 11:24:28',4034,291,'2005-08-03 09:38:28',1,'2006-02-15 21:30:53'), +(9166,'2005-07-30 11:26:28',308,12,'2005-08-04 12:32:28',1,'2006-02-15 21:30:53'), +(9167,'2005-07-30 11:30:37',1785,162,'2005-08-08 17:13:37',1,'2006-02-15 21:30:53'), +(9168,'2005-07-30 11:31:17',2035,75,'2005-08-08 16:56:17',2,'2006-02-15 21:30:53'), +(9169,'2005-07-30 11:35:00',1567,245,'2005-08-06 16:16:00',2,'2006-02-15 21:30:53'), +(9170,'2005-07-30 11:35:24',4279,425,'2005-08-05 05:36:24',1,'2006-02-15 21:30:53'), +(9171,'2005-07-30 11:36:24',1832,189,'2005-08-07 06:04:24',2,'2006-02-15 21:30:53'), +(9172,'2005-07-30 11:36:38',695,437,'2005-08-04 09:39:38',1,'2006-02-15 21:30:53'), +(9173,'2005-07-30 11:40:10',2103,381,'2005-08-04 05:40:10',2,'2006-02-15 21:30:53'), +(9174,'2005-07-30 11:42:10',2636,144,'2005-07-31 09:52:10',1,'2006-02-15 21:30:53'), +(9175,'2005-07-30 11:47:48',358,133,'2005-08-02 08:13:48',1,'2006-02-15 21:30:53'), +(9176,'2005-07-30 11:50:54',2659,260,'2005-08-02 14:25:54',2,'2006-02-15 21:30:53'), +(9177,'2005-07-30 11:52:40',1088,400,'2005-08-08 09:35:40',1,'2006-02-15 21:30:53'), +(9178,'2005-07-30 11:58:50',2046,448,'2005-08-08 15:24:50',2,'2006-02-15 21:30:53'), +(9179,'2005-07-30 12:02:41',62,50,'2005-08-05 15:23:41',2,'2006-02-15 21:30:53'), +(9180,'2005-07-30 12:03:15',3479,442,'2005-08-01 14:25:15',1,'2006-02-15 21:30:53'), +(9181,'2005-07-30 12:05:58',3953,224,'2005-08-02 06:22:58',1,'2006-02-15 21:30:53'), +(9182,'2005-07-30 12:06:58',2533,165,'2005-08-08 11:33:58',2,'2006-02-15 21:30:53'), +(9183,'2005-07-30 12:09:56',4320,475,'2005-08-06 11:50:56',2,'2006-02-15 21:30:53'), +(9184,'2005-07-30 12:10:19',51,365,'2005-08-01 07:35:19',2,'2006-02-15 21:30:53'), +(9185,'2005-07-30 12:10:40',2268,426,'2005-08-06 07:01:40',1,'2006-02-15 21:30:53'), +(9186,'2005-07-30 12:13:48',4513,273,'2005-07-31 11:59:48',1,'2006-02-15 21:30:53'), +(9187,'2005-07-30 12:14:03',4008,469,'2005-08-04 13:10:03',2,'2006-02-15 21:30:53'), +(9188,'2005-07-30 12:19:54',727,195,'2005-08-06 09:12:54',2,'2006-02-15 21:30:53'), +(9189,'2005-07-30 12:20:59',4529,485,'2005-08-06 16:15:59',1,'2006-02-15 21:30:53'), +(9190,'2005-07-30 12:24:17',4421,177,'2005-08-03 07:41:17',2,'2006-02-15 21:30:53'), +(9191,'2005-07-30 12:25:51',500,314,'2005-08-05 16:13:51',1,'2006-02-15 21:30:53'), +(9192,'2005-07-30 12:26:26',2372,102,'2005-08-04 07:54:26',2,'2006-02-15 21:30:53'), +(9193,'2005-07-30 12:28:42',3470,69,'2005-08-02 12:17:42',2,'2006-02-15 21:30:53'), +(9194,'2005-07-30 12:28:45',2467,294,'2005-08-06 14:38:45',1,'2006-02-15 21:30:53'), +(9195,'2005-07-30 12:29:43',944,440,'2005-08-04 12:35:43',1,'2006-02-15 21:30:53'), +(9196,'2005-07-30 12:30:19',4298,251,'2005-07-31 18:01:19',2,'2006-02-15 21:30:53'), +(9197,'2005-07-30 12:31:36',3214,168,'2005-08-03 09:05:36',1,'2006-02-15 21:30:53'), +(9198,'2005-07-30 12:37:08',2371,105,'2005-08-07 16:37:08',2,'2006-02-15 21:30:53'), +(9199,'2005-07-30 12:38:00',4336,580,'2005-08-01 07:09:00',1,'2006-02-15 21:30:53'), +(9200,'2005-07-30 12:39:52',3277,137,'2005-08-08 09:43:52',2,'2006-02-15 21:30:53'), +(9201,'2005-07-30 12:42:21',4387,291,'2005-08-08 06:50:21',1,'2006-02-15 21:30:53'), +(9202,'2005-07-30 12:43:24',4525,466,'2005-08-07 10:39:24',2,'2006-02-15 21:30:53'), +(9203,'2005-07-30 12:43:40',2112,169,'2005-08-01 09:31:40',2,'2006-02-15 21:30:53'), +(9204,'2005-07-30 12:43:58',4378,43,'2005-08-03 16:26:58',2,'2006-02-15 21:30:53'), +(9205,'2005-07-30 12:46:40',4165,259,'2005-08-08 14:58:40',1,'2006-02-15 21:30:53'), +(9206,'2005-07-30 12:46:59',2021,404,'2005-08-03 14:58:59',1,'2006-02-15 21:30:53'), +(9207,'2005-07-30 12:49:57',1346,345,'2005-07-31 14:32:57',2,'2006-02-15 21:30:53'), +(9208,'2005-07-30 12:54:03',2751,339,'2005-08-06 17:22:03',2,'2006-02-15 21:30:53'), +(9209,'2005-07-30 12:55:36',3940,23,'2005-08-03 11:31:36',2,'2006-02-15 21:30:53'), +(9210,'2005-07-30 12:56:44',101,105,'2005-08-08 09:41:44',2,'2006-02-15 21:30:53'), +(9211,'2005-07-30 12:59:45',595,57,'2005-08-07 18:17:45',2,'2006-02-15 21:30:53'), +(9212,'2005-07-30 13:03:13',2111,73,'2005-08-06 09:48:13',1,'2006-02-15 21:30:53'), +(9213,'2005-07-30 13:07:11',184,388,'2005-08-01 15:30:11',1,'2006-02-15 21:30:53'), +(9214,'2005-07-30 13:10:14',2823,181,'2005-08-06 14:22:14',2,'2006-02-15 21:30:53'), +(9215,'2005-07-30 13:11:11',3591,128,'2005-08-06 13:06:11',1,'2006-02-15 21:30:53'), +(9216,'2005-07-30 13:11:19',2783,38,'2005-07-31 11:27:19',2,'2006-02-15 21:30:53'), +(9217,'2005-07-30 13:13:55',1561,112,'2005-08-05 17:27:55',1,'2006-02-15 21:30:53'), +(9218,'2005-07-30 13:14:35',119,172,'2005-08-07 18:03:35',1,'2006-02-15 21:30:53'), +(9219,'2005-07-30 13:15:21',771,329,'2005-08-01 11:39:21',1,'2006-02-15 21:30:53'), +(9220,'2005-07-30 13:17:27',2463,569,'2005-08-07 11:34:27',2,'2006-02-15 21:30:53'), +(9221,'2005-07-30 13:20:06',2496,113,'2005-08-06 13:58:06',2,'2006-02-15 21:30:53'), +(9222,'2005-07-30 13:21:08',3648,95,'2005-08-08 10:42:08',2,'2006-02-15 21:30:53'), +(9223,'2005-07-30 13:23:20',3231,595,'2005-08-04 11:24:20',1,'2006-02-15 21:30:53'), +(9224,'2005-07-30 13:25:37',2260,406,'2005-08-01 15:13:37',2,'2006-02-15 21:30:53'), +(9225,'2005-07-30 13:29:47',1992,391,'2005-08-02 17:08:47',2,'2006-02-15 21:30:53'), +(9226,'2005-07-30 13:31:20',4315,3,'2005-08-06 16:42:20',1,'2006-02-15 21:30:53'), +(9227,'2005-07-30 13:36:13',2353,522,'2005-08-07 17:39:13',1,'2006-02-15 21:30:53'), +(9228,'2005-07-30 13:36:57',2325,91,'2005-08-05 10:43:57',1,'2006-02-15 21:30:53'), +(9229,'2005-07-30 13:38:17',3780,276,'2005-08-08 18:17:17',2,'2006-02-15 21:30:53'), +(9230,'2005-07-30 13:39:42',1199,109,'2005-07-31 19:20:42',1,'2006-02-15 21:30:53'), +(9231,'2005-07-30 13:42:15',1587,489,'2005-08-02 19:27:15',1,'2006-02-15 21:30:53'), +(9232,'2005-07-30 13:43:00',1991,502,'2005-08-02 11:39:00',2,'2006-02-15 21:30:53'), +(9233,'2005-07-30 13:44:15',2320,357,'2005-08-07 13:02:15',2,'2006-02-15 21:30:53'), +(9234,'2005-07-30 13:45:54',1660,128,'2005-08-02 15:33:54',1,'2006-02-15 21:30:53'), +(9235,'2005-07-30 13:47:17',984,181,'2005-08-06 17:15:17',2,'2006-02-15 21:30:53'), +(9236,'2005-07-30 13:47:43',4030,2,'2005-08-08 18:52:43',1,'2006-02-15 21:30:53'), +(9237,'2005-07-30 13:48:17',2777,157,'2005-07-31 13:57:17',2,'2006-02-15 21:30:53'), +(9238,'2005-07-30 13:49:43',3356,12,'2005-08-08 08:25:43',2,'2006-02-15 21:30:53'), +(9239,'2005-07-30 13:50:52',1728,580,'2005-08-06 16:28:52',1,'2006-02-15 21:30:53'), +(9240,'2005-07-30 13:57:54',587,92,'2005-08-03 12:23:54',2,'2006-02-15 21:30:53'), +(9241,'2005-07-30 13:58:41',4145,187,'2005-08-04 09:44:41',2,'2006-02-15 21:30:53'), +(9242,'2005-07-30 14:03:58',755,306,'2005-08-02 18:09:58',2,'2006-02-15 21:30:53'), +(9243,'2005-07-30 14:06:27',876,516,'2005-08-06 09:26:27',2,'2006-02-15 21:30:53'), +(9244,'2005-07-30 14:06:53',3640,27,'2005-08-03 19:46:53',1,'2006-02-15 21:30:53'), +(9245,'2005-07-30 14:07:50',2586,116,'2005-08-06 17:59:50',2,'2006-02-15 21:30:53'), +(9246,'2005-07-30 14:12:31',3390,185,'2005-08-02 14:25:31',2,'2006-02-15 21:30:53'), +(9247,'2005-07-30 14:13:56',4106,426,'2005-08-02 16:34:56',2,'2006-02-15 21:30:53'), +(9248,'2005-07-30 14:14:11',1382,2,'2005-08-05 11:19:11',1,'2006-02-15 21:30:53'), +(9249,'2005-07-30 14:15:02',2015,296,'2005-08-05 13:02:02',1,'2006-02-15 21:30:53'), +(9250,'2005-07-30 14:18:16',4544,539,'2005-08-04 12:31:16',1,'2006-02-15 21:30:53'), +(9251,'2005-07-30 14:19:25',2948,390,'2005-08-08 11:22:25',2,'2006-02-15 21:30:53'), +(9252,'2005-07-30 14:19:59',2350,322,'2005-08-07 15:17:59',1,'2006-02-15 21:30:53'), +(9253,'2005-07-30 14:20:12',4183,151,'2005-07-31 11:31:12',2,'2006-02-15 21:30:53'), +(9254,'2005-07-30 14:26:11',495,33,'2005-08-04 16:12:11',1,'2006-02-15 21:30:53'), +(9255,'2005-07-30 14:26:46',1596,23,'2005-08-07 18:16:46',1,'2006-02-15 21:30:53'), +(9256,'2005-07-30 14:29:29',4021,19,'2005-08-05 16:59:29',1,'2006-02-15 21:30:53'), +(9257,'2005-07-30 14:30:38',2615,466,'2005-08-04 17:57:38',1,'2006-02-15 21:30:53'), +(9258,'2005-07-30 14:31:31',2007,275,'2005-08-05 16:29:31',2,'2006-02-15 21:30:53'), +(9259,'2005-07-30 14:37:44',97,138,'2005-08-06 18:05:44',2,'2006-02-15 21:30:53'), +(9260,'2005-07-30 14:38:22',3969,13,'2005-08-07 18:47:22',2,'2006-02-15 21:30:53'), +(9261,'2005-07-30 14:39:35',372,380,'2005-08-08 11:26:35',1,'2006-02-15 21:30:53'), +(9262,'2005-07-30 14:45:02',2322,349,'2005-08-05 15:18:02',2,'2006-02-15 21:30:53'), +(9263,'2005-07-30 14:48:24',73,410,'2005-08-04 19:06:24',2,'2006-02-15 21:30:53'), +(9264,'2005-07-30 14:51:36',4071,157,'2005-08-02 10:06:36',1,'2006-02-15 21:30:53'), +(9265,'2005-07-30 14:55:25',3700,560,'2005-08-02 11:34:25',1,'2006-02-15 21:30:53'), +(9266,'2005-07-30 14:59:01',1705,364,'2005-07-31 17:01:01',2,'2006-02-15 21:30:53'), +(9267,'2005-07-30 14:59:05',645,409,'2005-08-04 10:17:05',1,'2006-02-15 21:30:53'), +(9268,'2005-07-30 15:02:30',3593,592,'2005-08-05 12:50:30',1,'2006-02-15 21:30:53'), +(9269,'2005-07-30 15:02:33',548,435,'2005-08-02 16:32:33',1,'2006-02-15 21:30:53'), +(9270,'2005-07-30 15:03:16',700,232,'2005-07-31 16:09:16',2,'2006-02-15 21:30:53'), +(9271,'2005-07-30 15:04:31',2660,100,'2005-07-31 20:33:31',1,'2006-02-15 21:30:53'), +(9272,'2005-07-30 15:05:22',1352,553,'2005-08-05 10:02:22',2,'2006-02-15 21:30:53'), +(9273,'2005-07-30 15:05:36',1867,497,'2005-08-08 09:07:36',1,'2006-02-15 21:30:53'), +(9274,'2005-07-30 15:07:04',4424,47,'2005-08-06 11:17:04',2,'2006-02-15 21:30:53'), +(9275,'2005-07-30 15:09:15',1916,439,'2005-07-31 10:23:15',2,'2006-02-15 21:30:53'), +(9276,'2005-07-30 15:09:28',1528,237,'2005-08-06 19:39:28',1,'2006-02-15 21:30:53'), +(9277,'2005-07-30 15:13:45',3734,82,'2005-08-05 10:25:45',2,'2006-02-15 21:30:53'), +(9278,'2005-07-30 15:15:19',3782,581,'2005-08-03 20:21:19',1,'2006-02-15 21:30:53'), +(9279,'2005-07-30 15:15:21',1070,567,'2005-08-07 18:46:21',1,'2006-02-15 21:30:53'), +(9280,'2005-07-30 15:15:38',4103,286,'2005-08-05 19:20:38',2,'2006-02-15 21:30:53'), +(9281,'2005-07-30 15:15:51',3086,398,'2005-08-05 12:58:51',1,'2006-02-15 21:30:53'), +(9282,'2005-07-30 15:17:31',736,259,'2005-08-07 20:46:31',1,'2006-02-15 21:30:53'), +(9283,'2005-07-30 15:25:19',1858,360,'2005-08-01 15:35:19',2,'2006-02-15 21:30:53'), +(9284,'2005-07-30 15:25:19',3976,38,'2005-08-01 17:45:19',2,'2006-02-15 21:30:53'), +(9285,'2005-07-30 15:26:08',3686,273,'2005-08-06 15:59:08',2,'2006-02-15 21:30:53'), +(9286,'2005-07-30 15:32:28',2477,154,'2005-07-31 20:42:28',2,'2006-02-15 21:30:53'), +(9287,'2005-07-30 15:35:39',2048,551,'2005-08-02 10:15:39',1,'2006-02-15 21:30:53'), +(9288,'2005-07-30 15:56:39',2640,447,'2005-08-04 13:25:39',2,'2006-02-15 21:30:53'), +(9289,'2005-07-30 15:57:04',389,453,'2005-08-07 18:46:04',1,'2006-02-15 21:30:53'), +(9290,'2005-07-30 15:59:08',2275,500,'2005-08-06 21:49:08',2,'2006-02-15 21:30:53'), +(9291,'2005-07-30 16:03:39',2884,406,'2005-08-05 11:11:39',2,'2006-02-15 21:30:53'), +(9292,'2005-07-30 16:08:21',1702,11,'2005-08-07 10:38:21',2,'2006-02-15 21:30:53'), +(9293,'2005-07-30 16:12:28',1676,65,'2005-08-05 18:34:28',2,'2006-02-15 21:30:53'), +(9294,'2005-07-30 16:14:37',2468,433,'2005-08-07 18:49:37',1,'2006-02-15 21:30:53'), +(9295,'2005-07-30 16:18:39',494,102,'2005-08-03 12:46:39',1,'2006-02-15 21:30:53'), +(9296,'2005-07-30 16:21:13',4088,2,'2005-08-08 11:57:13',1,'2006-02-15 21:30:53'), +(9297,'2005-07-30 16:26:29',3502,191,'2005-08-03 13:51:29',1,'2006-02-15 21:30:53'), +(9298,'2005-07-30 16:27:53',2106,208,'2005-08-07 12:32:53',2,'2006-02-15 21:30:53'), +(9299,'2005-07-30 16:32:51',1515,555,'2005-08-08 15:28:51',2,'2006-02-15 21:30:53'), +(9300,'2005-07-30 16:33:12',1639,571,'2005-08-05 15:56:12',1,'2006-02-15 21:30:53'), +(9301,'2005-07-30 16:34:29',1073,174,'2005-07-31 18:41:29',2,'2006-02-15 21:30:53'), +(9302,'2005-07-30 16:34:57',2326,55,'2005-07-31 11:08:57',2,'2006-02-15 21:30:53'), +(9303,'2005-07-30 16:35:59',4299,186,'2005-08-03 18:31:59',1,'2006-02-15 21:30:53'), +(9304,'2005-07-30 16:41:34',2937,296,'2005-08-02 13:55:34',2,'2006-02-15 21:30:53'), +(9305,'2005-07-30 16:45:56',1224,82,'2005-08-08 21:15:56',2,'2006-02-15 21:30:53'), +(9306,'2005-07-30 16:47:17',3983,336,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'), +(9307,'2005-07-30 16:52:43',3831,538,'2005-08-01 11:58:43',1,'2006-02-15 21:30:53'), +(9308,'2005-07-30 16:53:21',2202,267,'2005-08-08 15:33:21',2,'2006-02-15 21:30:53'), +(9309,'2005-07-30 16:55:53',3616,30,'2005-08-07 11:23:53',1,'2006-02-15 21:30:53'), +(9310,'2005-07-30 16:57:09',2957,529,'2005-08-03 18:14:09',1,'2006-02-15 21:30:53'), +(9311,'2005-07-30 16:58:31',1432,178,'2005-08-07 15:23:31',1,'2006-02-15 21:30:53'), +(9312,'2005-07-30 16:59:17',2483,76,'2005-08-03 17:24:17',2,'2006-02-15 21:30:53'), +(9313,'2005-07-30 16:59:43',4070,41,'2005-08-05 14:06:43',2,'2006-02-15 21:30:53'), +(9314,'2005-07-30 17:05:19',2358,390,'2005-07-31 12:19:19',1,'2006-02-15 21:30:53'), +(9315,'2005-07-30 17:05:29',444,96,'2005-08-01 12:47:29',1,'2006-02-15 21:30:53'), +(9316,'2005-07-30 17:11:58',4409,366,'2005-08-05 14:36:58',1,'2006-02-15 21:30:53'), +(9317,'2005-07-30 17:13:37',4138,217,'2005-08-08 11:33:37',1,'2006-02-15 21:30:53'), +(9318,'2005-07-30 17:14:30',2426,314,'2005-08-06 16:53:30',1,'2006-02-15 21:30:53'), +(9319,'2005-07-30 17:15:27',4066,136,'2005-08-03 14:03:27',1,'2006-02-15 21:30:53'), +(9320,'2005-07-30 17:16:39',909,221,'2005-08-06 18:43:39',2,'2006-02-15 21:30:53'), +(9321,'2005-07-30 17:19:44',3558,112,'2005-08-06 22:42:44',2,'2006-02-15 21:30:53'), +(9322,'2005-07-30 17:21:39',223,439,'2005-08-06 16:58:39',2,'2006-02-15 21:30:53'), +(9323,'2005-07-30 17:21:44',3749,131,'2005-08-03 16:28:44',1,'2006-02-15 21:30:53'), +(9324,'2005-07-30 17:28:52',1231,332,'2005-08-06 19:02:52',1,'2006-02-15 21:30:53'), +(9325,'2005-07-30 17:29:19',1938,476,'2005-08-08 12:55:19',2,'2006-02-15 21:30:53'), +(9326,'2005-07-30 17:30:03',3772,588,'2005-08-01 13:41:03',2,'2006-02-15 21:30:53'), +(9327,'2005-07-30 17:31:03',345,373,'2005-08-08 19:16:03',1,'2006-02-15 21:30:53'), +(9328,'2005-07-30 17:32:11',1087,89,'2005-08-05 13:36:11',1,'2006-02-15 21:30:53'), +(9329,'2005-07-30 17:42:38',1293,593,'2005-08-08 23:17:38',1,'2006-02-15 21:30:53'), +(9330,'2005-07-30 17:44:24',4227,232,'2005-08-08 17:39:24',1,'2006-02-15 21:30:53'), +(9331,'2005-07-30 17:46:50',2248,274,'2005-08-01 19:03:50',1,'2006-02-15 21:30:53'), +(9332,'2005-07-30 17:53:39',1156,480,'2005-08-02 12:25:39',1,'2006-02-15 21:30:53'), +(9333,'2005-07-30 17:53:45',1377,437,'2005-07-31 22:35:45',2,'2006-02-15 21:30:53'), +(9334,'2005-07-30 17:56:38',1499,25,'2005-08-03 21:27:38',1,'2006-02-15 21:30:53'), +(9335,'2005-07-30 18:00:53',1006,522,'2005-08-01 16:05:53',1,'2006-02-15 21:30:53'), +(9336,'2005-07-30 18:01:15',1911,557,'2005-08-05 23:10:15',1,'2006-02-15 21:30:53'), +(9337,'2005-07-30 18:02:25',2363,90,'2005-07-31 12:30:25',2,'2006-02-15 21:30:53'), +(9338,'2005-07-30 18:03:13',1482,333,'2005-08-08 23:57:13',2,'2006-02-15 21:30:53'), +(9339,'2005-07-30 18:03:28',3171,68,'2005-08-08 19:45:28',2,'2006-02-15 21:30:53'), +(9340,'2005-07-30 18:07:16',3228,213,'2005-08-04 14:33:16',2,'2006-02-15 21:30:53'), +(9341,'2005-07-30 18:07:58',894,557,'2005-08-01 17:43:58',1,'2006-02-15 21:30:53'), +(9342,'2005-07-30 18:09:56',2318,552,'2005-08-08 13:54:56',2,'2006-02-15 21:30:53'), +(9343,'2005-07-30 18:13:13',3521,53,'2005-08-02 13:48:13',1,'2006-02-15 21:30:53'), +(9344,'2005-07-30 18:13:45',1005,396,'2005-08-07 15:23:45',2,'2006-02-15 21:30:53'), +(9345,'2005-07-30 18:13:51',2042,436,'2005-08-07 13:45:51',2,'2006-02-15 21:30:53'), +(9346,'2005-07-30 18:13:52',2845,196,'2005-08-03 17:58:52',1,'2006-02-15 21:30:53'), +(9347,'2005-07-30 18:16:03',3557,479,'2005-08-05 18:35:03',1,'2006-02-15 21:30:53'), +(9348,'2005-07-30 18:17:09',3128,87,'2005-08-07 15:25:09',1,'2006-02-15 21:30:53'), +(9349,'2005-07-30 18:20:08',3739,579,'2005-08-08 22:06:08',1,'2006-02-15 21:30:53'), +(9350,'2005-07-30 18:24:30',798,434,'2005-08-02 15:34:30',2,'2006-02-15 21:30:53'), +(9351,'2005-07-30 18:28:30',2063,107,'2005-08-02 17:26:30',1,'2006-02-15 21:30:53'), +(9352,'2005-07-30 18:29:26',2619,360,'2005-07-31 19:43:26',1,'2006-02-15 21:30:53'), +(9353,'2005-07-30 18:30:37',3581,283,'2005-08-06 22:32:37',2,'2006-02-15 21:30:53'), +(9354,'2005-07-30 18:32:51',510,595,'2005-08-02 21:28:51',2,'2006-02-15 21:30:53'), +(9355,'2005-07-30 18:35:25',1122,201,'2005-08-03 20:33:25',2,'2006-02-15 21:30:53'), +(9356,'2005-07-30 18:36:24',4188,60,'2005-08-03 14:10:24',1,'2006-02-15 21:30:53'), +(9357,'2005-07-30 18:37:00',3927,181,'2005-08-08 19:57:00',2,'2006-02-15 21:30:53'), +(9358,'2005-07-30 18:37:24',712,302,'2005-08-07 23:34:24',2,'2006-02-15 21:30:53'), +(9359,'2005-07-30 18:39:28',21,501,'2005-07-31 15:39:28',1,'2006-02-15 21:30:53'), +(9360,'2005-07-30 18:39:43',2119,186,'2005-08-04 22:41:43',2,'2006-02-15 21:30:53'), +(9361,'2005-07-30 18:43:49',4163,335,'2005-08-06 21:24:49',1,'2006-02-15 21:30:53'), +(9362,'2005-07-30 18:44:16',3357,420,'2005-08-01 20:14:16',1,'2006-02-15 21:30:53'), +(9363,'2005-07-30 18:44:23',873,323,'2005-08-04 15:03:23',1,'2006-02-15 21:30:53'), +(9364,'2005-07-30 18:44:44',306,87,'2005-08-08 23:55:44',2,'2006-02-15 21:30:53'), +(9365,'2005-07-30 18:46:02',1539,232,'2005-08-03 20:15:02',1,'2006-02-15 21:30:53'), +(9366,'2005-07-30 18:48:57',4013,557,'2005-08-03 15:17:57',2,'2006-02-15 21:30:53'), +(9367,'2005-07-30 18:49:58',793,557,'2005-08-08 22:04:58',1,'2006-02-15 21:30:53'), +(9368,'2005-07-30 18:50:53',3026,388,'2005-08-05 17:56:53',2,'2006-02-15 21:30:53'), +(9369,'2005-07-30 18:52:19',3538,36,'2005-08-01 12:53:19',1,'2006-02-15 21:30:53'), +(9370,'2005-07-30 18:57:29',4433,588,'2005-08-01 21:35:29',2,'2006-02-15 21:30:53'), +(9371,'2005-07-30 18:58:00',2980,4,'2005-08-03 15:14:00',1,'2006-02-15 21:30:53'), +(9372,'2005-07-30 19:04:30',4075,454,'2005-08-09 00:18:30',2,'2006-02-15 21:30:53'), +(9373,'2005-07-30 19:05:36',3478,180,'2005-08-05 16:16:36',2,'2006-02-15 21:30:53'), +(9374,'2005-07-30 19:10:03',103,302,'2005-08-06 21:54:03',2,'2006-02-15 21:30:53'), +(9375,'2005-07-30 19:10:17',3063,529,'2005-08-02 23:00:17',1,'2006-02-15 21:30:53'), +(9376,'2005-07-30 19:11:49',451,86,'2005-08-04 18:14:49',1,'2006-02-15 21:30:53'), +(9377,'2005-07-30 19:12:18',4164,421,'2005-08-05 19:38:18',1,'2006-02-15 21:30:53'), +(9378,'2005-07-30 19:12:54',2209,197,'2005-08-05 18:16:54',1,'2006-02-15 21:30:53'), +(9379,'2005-07-30 19:13:01',3855,452,'2005-08-07 19:18:01',2,'2006-02-15 21:30:53'), +(9380,'2005-07-30 19:17:31',4403,264,'2005-08-01 20:46:31',1,'2006-02-15 21:30:53'), +(9381,'2005-07-30 19:23:04',4064,329,'2005-07-31 23:37:04',2,'2006-02-15 21:30:53'), +(9382,'2005-07-30 19:23:44',2127,17,'2005-08-06 16:20:44',2,'2006-02-15 21:30:53'), +(9383,'2005-07-30 19:24:50',2806,416,'2005-08-01 21:41:50',2,'2006-02-15 21:30:53'), +(9384,'2005-07-30 19:25:35',2313,220,'2005-08-08 21:50:35',1,'2006-02-15 21:30:53'), +(9385,'2005-07-30 19:25:49',3453,570,'2005-08-08 17:08:49',2,'2006-02-15 21:30:53'), +(9386,'2005-07-30 19:26:21',1123,189,'2005-08-05 21:00:21',2,'2006-02-15 21:30:53'), +(9387,'2005-07-30 19:27:05',577,495,'2005-08-07 21:19:05',2,'2006-02-15 21:30:53'), +(9388,'2005-07-30 19:27:22',2116,332,'2005-08-08 15:31:22',2,'2006-02-15 21:30:53'), +(9389,'2005-07-30 19:27:59',3124,198,'2005-08-04 18:25:59',2,'2006-02-15 21:30:53'), +(9390,'2005-07-30 19:42:07',1794,103,'2005-08-01 23:17:07',1,'2006-02-15 21:30:53'), +(9391,'2005-07-30 19:48:41',665,273,'2005-08-04 15:27:41',1,'2006-02-15 21:30:53'), +(9392,'2005-07-30 19:50:13',2797,29,'2005-08-03 22:38:13',2,'2006-02-15 21:30:53'), +(9393,'2005-07-30 20:04:48',843,158,'2005-08-02 15:52:48',2,'2006-02-15 21:30:53'), +(9394,'2005-07-30 20:06:24',161,204,'2005-08-06 22:36:24',1,'2006-02-15 21:30:53'), +(9395,'2005-07-30 20:07:06',1298,306,'2005-08-08 21:21:06',1,'2006-02-15 21:30:53'), +(9396,'2005-07-30 20:07:24',1250,91,'2005-08-03 21:20:24',2,'2006-02-15 21:30:53'), +(9397,'2005-07-30 20:07:29',1550,373,'2005-08-05 00:36:29',1,'2006-02-15 21:30:53'), +(9398,'2005-07-30 20:09:00',1175,570,'2005-08-01 23:35:00',2,'2006-02-15 21:30:53'), +(9399,'2005-07-30 20:14:50',3668,569,'2005-08-03 17:30:50',1,'2006-02-15 21:30:53'), +(9400,'2005-07-30 20:15:58',3910,368,'2005-08-03 21:21:58',1,'2006-02-15 21:30:53'), +(9401,'2005-07-30 20:18:19',2057,331,'2005-08-07 15:46:19',1,'2006-02-15 21:30:53'), +(9402,'2005-07-30 20:18:27',2424,48,'2005-08-07 21:29:27',2,'2006-02-15 21:30:53'), +(9403,'2005-07-30 20:18:53',3466,267,'2005-08-06 19:54:53',1,'2006-02-15 21:30:53'), +(9404,'2005-07-30 20:21:35',3832,140,'2005-08-02 15:52:35',1,'2006-02-15 21:30:53'), +(9405,'2005-07-30 20:22:17',1983,463,'2005-08-08 16:55:17',1,'2006-02-15 21:30:53'), +(9406,'2005-07-30 20:24:00',3419,453,'2005-08-07 19:50:00',1,'2006-02-15 21:30:53'), +(9407,'2005-07-30 20:25:24',2594,585,'2005-08-08 22:51:24',2,'2006-02-15 21:30:53'), +(9408,'2005-07-30 20:32:09',4383,571,'2005-08-04 20:14:09',2,'2006-02-15 21:30:53'), +(9409,'2005-07-30 20:33:53',3053,156,'2005-08-05 18:32:53',2,'2006-02-15 21:30:53'), +(9410,'2005-07-30 20:38:05',1789,22,'2005-07-31 19:57:05',2,'2006-02-15 21:30:53'), +(9411,'2005-07-30 20:38:22',3484,536,'2005-08-06 01:23:22',2,'2006-02-15 21:30:53'), +(9412,'2005-07-30 20:44:10',2482,522,'2005-08-06 21:13:10',2,'2006-02-15 21:30:53'), +(9413,'2005-07-30 20:44:39',2618,290,'2005-08-01 01:56:39',2,'2006-02-15 21:30:53'), +(9414,'2005-07-30 20:46:02',578,484,'2005-08-07 21:23:02',2,'2006-02-15 21:30:53'), +(9415,'2005-07-30 20:48:31',3336,139,'2005-08-05 19:45:31',2,'2006-02-15 21:30:53'), +(9416,'2005-07-30 20:52:45',1470,265,'2005-08-02 17:38:45',2,'2006-02-15 21:30:53'), +(9417,'2005-07-30 20:54:55',2509,519,'2005-08-04 00:54:55',2,'2006-02-15 21:30:53'), +(9418,'2005-07-30 21:00:52',241,168,'2005-08-08 15:56:52',2,'2006-02-15 21:30:53'), +(9419,'2005-07-30 21:04:59',4427,142,'2005-08-06 15:47:59',2,'2006-02-15 21:30:53'), +(9420,'2005-07-30 21:05:18',147,72,'2005-08-05 23:52:18',2,'2006-02-15 21:30:53'), +(9421,'2005-07-30 21:08:32',2206,161,'2005-08-02 00:43:32',1,'2006-02-15 21:30:53'), +(9422,'2005-07-30 21:08:41',1843,470,'2005-08-07 15:55:41',1,'2006-02-15 21:30:53'), +(9423,'2005-07-30 21:10:14',3145,242,'2005-08-07 16:34:14',2,'2006-02-15 21:30:53'), +(9424,'2005-07-30 21:10:56',4499,256,'2005-08-05 00:01:56',1,'2006-02-15 21:30:53'), +(9425,'2005-07-30 21:11:21',271,295,'2005-08-05 19:00:21',1,'2006-02-15 21:30:53'), +(9427,'2005-07-30 21:16:33',1494,85,'2005-08-05 17:23:33',2,'2006-02-15 21:30:53'), +(9428,'2005-07-30 21:18:37',1948,335,'2005-08-05 16:09:37',1,'2006-02-15 21:30:53'), +(9429,'2005-07-30 21:19:26',1769,288,'2005-08-07 18:39:26',1,'2006-02-15 21:30:53'), +(9430,'2005-07-30 21:20:13',1529,367,'2005-08-04 21:45:13',2,'2006-02-15 21:30:53'), +(9431,'2005-07-30 21:24:22',3364,39,'2005-08-03 01:22:22',2,'2006-02-15 21:30:53'), +(9432,'2005-07-30 21:26:18',2489,570,'2005-08-05 00:23:18',1,'2006-02-15 21:30:53'), +(9433,'2005-07-30 21:28:17',1082,128,'2005-08-08 18:20:17',2,'2006-02-15 21:30:53'), +(9434,'2005-07-30 21:29:41',3792,13,'2005-08-01 16:30:41',2,'2006-02-15 21:30:53'), +(9435,'2005-07-30 21:31:02',3116,301,'2005-08-05 22:34:02',1,'2006-02-15 21:30:53'), +(9436,'2005-07-30 21:33:01',2329,268,'2005-08-06 17:38:01',1,'2006-02-15 21:30:53'), +(9437,'2005-07-30 21:36:04',1230,592,'2005-08-08 01:26:04',1,'2006-02-15 21:30:53'), +(9438,'2005-07-30 21:36:15',121,14,'2005-08-07 16:54:15',2,'2006-02-15 21:30:53'), +(9439,'2005-07-30 21:38:12',290,479,'2005-08-06 00:03:12',1,'2006-02-15 21:30:53'), +(9440,'2005-07-30 21:40:15',414,535,'2005-08-04 15:45:15',2,'2006-02-15 21:30:53'), +(9441,'2005-07-30 21:43:28',3982,519,'2005-08-08 16:57:28',1,'2006-02-15 21:30:53'), +(9442,'2005-07-30 21:44:31',44,75,'2005-08-04 01:29:31',1,'2006-02-15 21:30:53'), +(9443,'2005-07-30 21:45:46',1675,3,'2005-08-05 21:22:46',1,'2006-02-15 21:30:53'), +(9444,'2005-07-30 21:48:44',1134,259,'2005-08-08 22:36:44',2,'2006-02-15 21:30:53'), +(9445,'2005-07-30 21:50:42',1480,549,'2005-08-05 18:34:42',2,'2006-02-15 21:30:53'), +(9446,'2005-07-30 21:53:01',1880,477,'2005-08-06 19:00:01',2,'2006-02-15 21:30:53'), +(9447,'2005-07-30 21:54:22',1053,82,'2005-08-09 01:07:22',2,'2006-02-15 21:30:53'), +(9448,'2005-07-30 21:56:13',1213,278,'2005-08-04 18:03:13',1,'2006-02-15 21:30:53'), +(9449,'2005-07-30 22:02:34',2,581,'2005-08-06 02:09:34',1,'2006-02-15 21:30:53'), +(9450,'2005-07-30 22:04:04',1371,430,'2005-08-05 18:39:04',2,'2006-02-15 21:30:53'), +(9451,'2005-07-30 22:10:17',685,584,'2005-08-07 02:53:17',2,'2006-02-15 21:30:53'), +(9452,'2005-07-30 22:19:16',3178,130,'2005-08-04 19:26:16',1,'2006-02-15 21:30:53'), +(9453,'2005-07-30 22:20:04',1988,221,'2005-08-08 02:27:04',1,'2006-02-15 21:30:53'), +(9454,'2005-07-30 22:20:09',3028,81,'2005-08-04 01:33:09',2,'2006-02-15 21:30:53'), +(9455,'2005-07-30 22:20:29',2647,220,'2005-08-08 20:08:29',1,'2006-02-15 21:30:53'), +(9456,'2005-07-30 22:22:16',2068,534,'2005-08-05 18:56:16',2,'2006-02-15 21:30:53'), +(9457,'2005-07-30 22:23:05',2172,487,'2005-07-31 23:07:05',2,'2006-02-15 21:30:53'), +(9458,'2005-07-30 22:24:34',3105,343,'2005-08-04 21:26:34',2,'2006-02-15 21:30:53'), +(9459,'2005-07-30 22:24:46',1132,489,'2005-08-02 00:44:46',2,'2006-02-15 21:30:53'), +(9460,'2005-07-30 22:25:39',4463,580,'2005-08-08 20:56:39',2,'2006-02-15 21:30:53'), +(9461,'2005-07-30 22:29:13',1679,377,'2005-08-05 20:55:13',2,'2006-02-15 21:30:53'), +(9462,'2005-07-30 22:30:44',4090,192,'2005-08-09 03:54:44',2,'2006-02-15 21:30:53'), +(9463,'2005-07-30 22:30:57',883,352,'2005-08-03 22:53:57',1,'2006-02-15 21:30:53'), +(9464,'2005-07-30 22:31:31',3904,534,'2005-08-07 01:10:31',2,'2006-02-15 21:30:53'), +(9465,'2005-07-30 22:39:53',3084,2,'2005-08-06 16:43:53',2,'2006-02-15 21:30:53'), +(9466,'2005-07-30 22:44:36',2595,137,'2005-08-07 02:35:36',2,'2006-02-15 21:30:53'), +(9467,'2005-07-30 22:45:34',1905,202,'2005-08-08 00:58:34',2,'2006-02-15 21:30:53'), +(9468,'2005-07-30 22:53:52',4366,20,'2005-08-07 00:22:52',2,'2006-02-15 21:30:53'), +(9469,'2005-07-30 22:56:34',967,59,'2005-08-07 03:16:34',2,'2006-02-15 21:30:53'), +(9470,'2005-07-30 23:01:31',3908,566,'2005-08-07 01:35:31',2,'2006-02-15 21:30:53'), +(9471,'2005-07-30 23:02:36',2390,424,'2005-08-04 17:49:36',1,'2006-02-15 21:30:53'), +(9472,'2005-07-30 23:03:32',4178,404,'2005-08-01 18:02:32',1,'2006-02-15 21:30:53'), +(9473,'2005-07-30 23:04:13',1717,185,'2005-08-04 21:48:13',2,'2006-02-15 21:30:53'), +(9474,'2005-07-30 23:05:44',3771,206,'2005-08-05 23:46:44',1,'2006-02-15 21:30:53'), +(9475,'2005-07-30 23:06:33',2186,567,'2005-08-04 23:23:33',1,'2006-02-15 21:30:53'), +(9476,'2005-07-30 23:06:40',3599,197,'2005-08-04 22:52:40',2,'2006-02-15 21:30:53'), +(9477,'2005-07-30 23:07:22',1932,213,'2005-08-04 20:54:22',1,'2006-02-15 21:30:53'), +(9478,'2005-07-30 23:12:53',1139,283,'2005-08-04 02:41:53',1,'2006-02-15 21:30:53'), +(9479,'2005-07-30 23:22:09',3461,308,'2005-07-31 22:26:09',2,'2006-02-15 21:30:53'), +(9480,'2005-07-30 23:26:03',597,373,'2005-08-04 21:18:03',2,'2006-02-15 21:30:53'), +(9481,'2005-07-30 23:26:05',613,481,'2005-08-04 17:46:05',1,'2006-02-15 21:30:53'), +(9482,'2005-07-30 23:29:16',2421,348,'2005-08-02 20:37:16',2,'2006-02-15 21:30:53'), +(9483,'2005-07-30 23:31:31',1136,593,'2005-08-09 04:29:31',2,'2006-02-15 21:30:53'), +(9484,'2005-07-30 23:31:40',3389,26,'2005-08-02 18:25:40',1,'2006-02-15 21:30:53'), +(9485,'2005-07-30 23:32:40',3722,338,'2005-08-08 17:44:40',1,'2006-02-15 21:30:53'), +(9486,'2005-07-30 23:35:42',2787,403,'2005-08-09 02:08:42',2,'2006-02-15 21:30:53'), +(9487,'2005-07-30 23:40:22',2165,406,'2005-08-01 22:29:22',1,'2006-02-15 21:30:53'), +(9488,'2005-07-30 23:42:42',4221,528,'2005-08-08 22:15:42',1,'2006-02-15 21:30:53'), +(9489,'2005-07-30 23:43:32',4011,17,'2005-07-31 20:45:32',2,'2006-02-15 21:30:53'), +(9490,'2005-07-30 23:45:09',1302,487,'2005-08-07 18:50:09',1,'2006-02-15 21:30:53'), +(9491,'2005-07-30 23:45:23',3624,179,'2005-08-01 00:33:23',2,'2006-02-15 21:30:53'), +(9492,'2005-07-30 23:52:21',639,126,'2005-08-08 20:50:21',2,'2006-02-15 21:30:53'), +(9493,'2005-07-30 23:52:30',1522,5,'2005-08-08 05:22:30',1,'2006-02-15 21:30:53'), +(9494,'2005-07-30 23:52:46',3799,254,'2005-08-05 23:13:46',2,'2006-02-15 21:30:53'), +(9495,'2005-07-30 23:54:26',2128,397,'2005-08-01 22:02:26',2,'2006-02-15 21:30:53'), +(9496,'2005-07-30 23:55:20',453,125,'2005-08-02 02:47:20',2,'2006-02-15 21:30:53'), +(9497,'2005-07-30 23:56:54',933,595,'2005-08-04 19:52:54',1,'2006-02-15 21:30:53'), +(9498,'2005-07-30 23:56:55',1035,289,'2005-08-03 18:34:55',2,'2006-02-15 21:30:53'), +(9499,'2005-07-30 23:58:30',602,461,'2005-08-01 00:55:30',2,'2006-02-15 21:30:53'), +(9500,'2005-07-30 23:58:36',2808,241,'2005-08-07 21:08:36',2,'2006-02-15 21:30:53'), +(9501,'2005-07-30 23:59:21',4398,75,'2005-08-05 19:50:21',2,'2006-02-15 21:30:53'), +(9502,'2005-07-31 00:02:10',2700,471,'2005-08-01 19:47:10',1,'2006-02-15 21:30:53'), +(9503,'2005-07-31 00:02:38',1013,311,'2005-08-06 06:01:38',1,'2006-02-15 21:30:53'), +(9504,'2005-07-31 00:09:07',91,125,'2005-08-02 05:44:07',1,'2006-02-15 21:30:53'), +(9505,'2005-07-31 00:11:19',4047,543,'2005-08-05 18:24:19',2,'2006-02-15 21:30:53'), +(9506,'2005-07-31 00:19:01',3872,189,'2005-08-02 00:20:01',1,'2006-02-15 21:30:53'), +(9507,'2005-07-31 00:22:29',387,525,'2005-08-07 05:59:29',2,'2006-02-15 21:30:53'), +(9508,'2005-07-31 00:22:39',1204,316,'2005-08-04 05:40:39',1,'2006-02-15 21:30:53'), +(9509,'2005-07-31 00:22:42',818,320,'2005-08-03 23:24:42',1,'2006-02-15 21:30:53'), +(9510,'2005-07-31 00:24:17',2301,494,'2005-08-08 18:47:17',2,'2006-02-15 21:30:53'), +(9511,'2005-07-31 00:25:05',964,549,'2005-08-09 02:46:05',1,'2006-02-15 21:30:53'), +(9512,'2005-07-31 00:26:30',3786,173,'2005-08-04 23:43:30',2,'2006-02-15 21:30:53'), +(9513,'2005-07-31 00:28:30',396,317,'2005-08-01 00:22:30',2,'2006-02-15 21:30:53'), +(9514,'2005-07-31 00:29:44',1892,243,'2005-08-02 23:49:44',1,'2006-02-15 21:30:53'), +(9515,'2005-07-31 00:35:05',3099,264,'2005-08-02 23:35:05',2,'2006-02-15 21:30:53'), +(9516,'2005-07-31 00:40:58',3519,424,'2005-08-07 02:13:58',2,'2006-02-15 21:30:53'), +(9517,'2005-07-31 00:41:23',3299,170,'2005-08-02 23:08:23',1,'2006-02-15 21:30:53'), +(9518,'2005-07-31 00:43:26',2714,215,'2005-08-04 19:12:26',2,'2006-02-15 21:30:53'), +(9519,'2005-07-31 00:45:57',3767,235,'2005-08-06 00:59:57',2,'2006-02-15 21:30:53'), +(9520,'2005-07-31 00:50:54',1306,299,'2005-08-04 20:05:54',1,'2006-02-15 21:30:53'), +(9521,'2005-07-31 00:52:24',1423,227,'2005-08-06 03:33:24',2,'2006-02-15 21:30:53'), +(9522,'2005-07-31 00:55:11',4266,294,'2005-08-03 06:41:11',2,'2006-02-15 21:30:53'), +(9523,'2005-07-31 00:56:09',891,356,'2005-08-05 05:44:09',2,'2006-02-15 21:30:53'), +(9524,'2005-07-31 01:01:06',1796,535,'2005-08-04 04:06:06',2,'2006-02-15 21:30:53'), +(9525,'2005-07-31 01:02:18',2990,246,'2005-08-06 21:31:18',1,'2006-02-15 21:30:53'), +(9526,'2005-07-31 01:02:22',417,342,'2005-08-04 03:00:22',1,'2006-02-15 21:30:53'), +(9527,'2005-07-31 01:02:24',2539,200,'2005-08-09 02:08:24',2,'2006-02-15 21:30:53'), +(9528,'2005-07-31 01:05:04',193,241,'2005-08-07 01:16:04',1,'2006-02-15 21:30:53'), +(9529,'2005-07-31 01:05:26',816,123,'2005-08-02 22:30:26',2,'2006-02-15 21:30:53'), +(9530,'2005-07-31 01:09:06',1718,148,'2005-08-04 23:47:06',2,'2006-02-15 21:30:53'), +(9531,'2005-07-31 01:11:53',4550,268,'2005-08-07 02:49:53',1,'2006-02-15 21:30:53'), +(9532,'2005-07-31 01:16:51',1309,488,'2005-08-01 20:23:51',1,'2006-02-15 21:30:53'), +(9533,'2005-07-31 01:18:10',4156,522,'2005-08-07 19:58:10',1,'2006-02-15 21:30:53'), +(9534,'2005-07-31 01:18:27',4457,519,'2005-08-06 00:28:27',1,'2006-02-15 21:30:53'), +(9535,'2005-07-31 01:18:53',2413,485,'2005-08-04 03:04:53',2,'2006-02-15 21:30:53'), +(9536,'2005-07-31 01:19:02',2547,310,'2005-08-02 19:38:02',1,'2006-02-15 21:30:53'), +(9537,'2005-07-31 01:23:00',546,488,'2005-08-01 01:16:00',2,'2006-02-15 21:30:53'), +(9538,'2005-07-31 01:25:22',3402,68,'2005-08-06 00:10:22',2,'2006-02-15 21:30:53'), +(9539,'2005-07-31 01:36:19',3793,436,'2005-08-04 23:47:19',1,'2006-02-15 21:30:53'), +(9540,'2005-07-31 01:40:06',2200,365,'2005-08-01 01:09:06',1,'2006-02-15 21:30:53'), +(9541,'2005-07-31 01:40:14',1774,422,'2005-08-05 06:34:14',2,'2006-02-15 21:30:53'), +(9542,'2005-07-31 01:41:48',2243,595,'2005-08-01 00:49:48',2,'2006-02-15 21:30:53'), +(9543,'2005-07-31 01:43:34',956,369,'2005-08-01 06:49:34',1,'2006-02-15 21:30:53'), +(9544,'2005-07-31 01:44:51',2383,28,'2005-08-05 05:25:51',2,'2006-02-15 21:30:53'), +(9545,'2005-07-31 01:46:24',3451,594,'2005-08-09 06:11:24',1,'2006-02-15 21:30:53'), +(9546,'2005-07-31 01:47:40',211,63,'2005-08-02 07:25:40',2,'2006-02-15 21:30:53'), +(9547,'2005-07-31 01:52:34',2414,440,'2005-08-03 23:12:34',2,'2006-02-15 21:30:53'), +(9548,'2005-07-31 01:54:19',3038,576,'2005-08-05 00:50:19',2,'2006-02-15 21:30:53'), +(9549,'2005-07-31 01:57:04',2409,63,'2005-08-07 21:00:04',2,'2006-02-15 21:30:53'), +(9550,'2005-07-31 01:57:34',2233,583,'2005-08-08 23:33:34',1,'2006-02-15 21:30:53'), +(9551,'2005-07-31 02:04:58',1260,30,'2005-08-06 04:07:58',2,'2006-02-15 21:30:53'), +(9552,'2005-07-31 02:05:32',3544,261,'2005-08-01 06:59:32',1,'2006-02-15 21:30:53'), +(9553,'2005-07-31 02:06:34',4187,579,'2005-08-08 02:20:34',1,'2006-02-15 21:30:53'), +(9554,'2005-07-31 02:06:49',2581,490,'2005-08-01 22:27:49',1,'2006-02-15 21:30:53'), +(9555,'2005-07-31 02:11:16',2108,382,'2005-08-03 06:58:16',2,'2006-02-15 21:30:53'), +(9556,'2005-07-31 02:13:30',3269,521,'2005-08-08 06:46:30',1,'2006-02-15 21:30:53'), +(9557,'2005-07-31 02:14:01',708,328,'2005-08-05 23:55:01',1,'2006-02-15 21:30:53'), +(9558,'2005-07-31 02:14:35',1161,418,'2005-08-06 03:00:35',1,'2006-02-15 21:30:53'), +(9559,'2005-07-31 02:15:53',2882,159,'2005-08-08 02:38:53',1,'2006-02-15 21:30:53'), +(9560,'2005-07-31 02:17:27',4236,471,'2005-08-07 03:33:27',1,'2006-02-15 21:30:53'), +(9561,'2005-07-31 02:22:13',1079,58,'2005-08-03 07:00:13',2,'2006-02-15 21:30:53'), +(9562,'2005-07-31 02:23:20',1571,116,'2005-08-06 21:01:20',2,'2006-02-15 21:30:53'), +(9563,'2005-07-31 02:28:39',3858,167,'2005-08-05 22:10:39',1,'2006-02-15 21:30:53'), +(9564,'2005-07-31 02:31:37',383,377,'2005-08-03 22:57:37',2,'2006-02-15 21:30:53'), +(9565,'2005-07-31 02:32:00',3621,485,'2005-08-04 05:45:00',1,'2006-02-15 21:30:53'), +(9566,'2005-07-31 02:32:10',643,346,'2005-08-02 23:54:10',2,'2006-02-15 21:30:53'), +(9567,'2005-07-31 02:36:11',3688,37,'2005-08-07 01:19:11',2,'2006-02-15 21:30:53'), +(9568,'2005-07-31 02:37:44',1248,358,'2005-08-02 07:07:44',2,'2006-02-15 21:30:53'), +(9569,'2005-07-31 02:39:38',813,405,'2005-08-02 05:09:38',2,'2006-02-15 21:30:53'), +(9570,'2005-07-31 02:40:37',591,385,'2005-08-01 01:59:37',1,'2006-02-15 21:30:53'), +(9571,'2005-07-31 02:42:18',2219,1,'2005-08-02 23:26:18',2,'2006-02-15 21:30:53'), +(9572,'2005-07-31 02:44:10',1453,283,'2005-08-01 03:30:10',2,'2006-02-15 21:30:53'), +(9573,'2005-07-31 02:45:38',3745,59,'2005-08-09 04:31:38',2,'2006-02-15 21:30:53'), +(9574,'2005-07-31 02:49:20',2782,233,'2005-08-05 02:36:20',2,'2006-02-15 21:30:53'), +(9575,'2005-07-31 02:51:53',3971,193,'2005-08-03 20:54:53',2,'2006-02-15 21:30:53'), +(9576,'2005-07-31 02:52:59',3327,145,'2005-08-05 23:35:59',2,'2006-02-15 21:30:53'), +(9577,'2005-07-31 02:53:33',2423,526,'2005-08-07 05:56:33',1,'2006-02-15 21:30:53'), +(9578,'2005-07-31 02:54:31',2965,115,'2005-08-02 02:48:31',1,'2006-02-15 21:30:53'), +(9579,'2005-07-31 02:59:20',3547,35,'2005-08-06 03:52:20',2,'2006-02-15 21:30:53'), +(9580,'2005-07-31 03:01:11',532,22,'2005-08-05 06:01:11',1,'2006-02-15 21:30:53'), +(9581,'2005-07-31 03:03:07',2588,302,'2005-08-05 23:01:07',1,'2006-02-15 21:30:53'), +(9582,'2005-07-31 03:05:19',3913,347,'2005-08-04 07:26:19',1,'2006-02-15 21:30:53'), +(9583,'2005-07-31 03:05:21',3543,568,'2005-08-06 00:14:21',2,'2006-02-15 21:30:53'), +(9584,'2005-07-31 03:05:48',419,141,'2005-08-01 05:50:48',2,'2006-02-15 21:30:53'), +(9585,'2005-07-31 03:05:55',3249,197,'2005-08-02 23:54:55',2,'2006-02-15 21:30:53'), +(9586,'2005-07-31 03:07:16',3987,415,'2005-08-04 00:39:16',1,'2006-02-15 21:30:53'), +(9587,'2005-07-31 03:10:30',2966,235,'2005-08-06 06:54:30',2,'2006-02-15 21:30:53'), +(9588,'2005-07-31 03:13:13',1368,499,'2005-08-02 04:06:13',1,'2006-02-15 21:30:53'), +(9589,'2005-07-31 03:13:29',2604,574,'2005-08-09 01:51:29',2,'2006-02-15 21:30:53'), +(9590,'2005-07-31 03:17:16',2293,585,'2005-08-08 04:24:16',1,'2006-02-15 21:30:53'), +(9591,'2005-07-31 03:19:28',504,97,'2005-08-01 07:30:28',1,'2006-02-15 21:30:53'), +(9592,'2005-07-31 03:21:16',1828,14,'2005-08-05 08:32:16',1,'2006-02-15 21:30:53'), +(9593,'2005-07-31 03:22:30',1223,28,'2005-08-05 08:23:30',1,'2006-02-15 21:30:53'), +(9594,'2005-07-31 03:23:52',4382,148,'2005-08-04 23:06:52',1,'2006-02-15 21:30:53'), +(9595,'2005-07-31 03:27:58',2829,3,'2005-08-03 05:58:58',1,'2006-02-15 21:30:53'), +(9596,'2005-07-31 03:28:47',2847,55,'2005-08-04 03:43:47',2,'2006-02-15 21:30:53'), +(9597,'2005-07-31 03:29:07',3317,61,'2005-08-09 03:33:07',2,'2006-02-15 21:30:53'), +(9598,'2005-07-31 03:30:41',1105,468,'2005-08-04 03:54:41',1,'2006-02-15 21:30:53'), +(9599,'2005-07-31 03:32:06',3164,502,'2005-08-04 07:47:06',2,'2006-02-15 21:30:53'), +(9600,'2005-07-31 03:35:34',3731,464,'2005-08-08 22:50:34',1,'2006-02-15 21:30:53'), +(9601,'2005-07-31 03:42:17',1592,553,'2005-08-04 02:02:17',2,'2006-02-15 21:30:53'), +(9602,'2005-07-31 03:42:51',3173,386,'2005-08-01 08:39:51',1,'2006-02-15 21:30:53'), +(9603,'2005-07-31 03:43:43',2266,541,'2005-08-02 00:11:43',2,'2006-02-15 21:30:53'), +(9604,'2005-07-31 03:47:12',4342,580,'2005-08-03 06:48:12',1,'2006-02-15 21:30:53'), +(9605,'2005-07-31 03:50:07',1477,94,'2005-08-07 09:15:07',2,'2006-02-15 21:30:53'), +(9606,'2005-07-31 03:50:46',1357,253,'2005-08-01 05:29:46',2,'2006-02-15 21:30:53'), +(9607,'2005-07-31 03:51:06',3414,294,'2005-08-02 00:18:06',2,'2006-02-15 21:30:53'), +(9608,'2005-07-31 03:51:52',363,397,'2005-08-06 05:38:52',2,'2006-02-15 21:30:53'), +(9609,'2005-07-31 03:53:24',693,112,'2005-08-05 08:32:24',2,'2006-02-15 21:30:53'), +(9610,'2005-07-31 03:54:05',3110,16,'2005-08-06 23:11:05',1,'2006-02-15 21:30:53'), +(9611,'2005-07-31 03:54:43',1976,215,'2005-08-05 03:54:43',2,'2006-02-15 21:30:53'), +(9612,'2005-07-31 03:58:31',2142,69,'2005-08-04 07:34:31',2,'2006-02-15 21:30:53'), +(9613,'2005-07-31 03:58:53',3251,188,'2005-08-02 00:10:53',1,'2006-02-15 21:30:53'), +(9614,'2005-07-31 03:59:31',2955,548,'2005-08-08 04:19:31',1,'2006-02-15 21:30:53'), +(9615,'2005-07-31 03:59:56',3370,50,'2005-08-02 00:46:56',2,'2006-02-15 21:30:53'), +(9616,'2005-07-31 04:05:01',1210,550,'2005-08-05 00:10:01',1,'2006-02-15 21:30:53'), +(9617,'2005-07-31 04:15:38',529,102,'2005-08-02 04:24:38',1,'2006-02-15 21:30:53'), +(9618,'2005-07-31 04:16:14',2688,253,'2005-08-07 02:43:14',2,'2006-02-15 21:30:53'), +(9619,'2005-07-31 04:17:02',1730,138,'2005-08-05 06:36:02',2,'2006-02-15 21:30:53'), +(9620,'2005-07-31 04:19:18',2177,576,'2005-08-08 09:20:18',1,'2006-02-15 21:30:53'), +(9621,'2005-07-31 04:21:08',325,38,'2005-08-08 03:50:08',2,'2006-02-15 21:30:53'), +(9622,'2005-07-31 04:21:45',2255,411,'2005-08-02 09:20:45',1,'2006-02-15 21:30:53'), +(9623,'2005-07-31 04:30:02',113,360,'2005-08-06 23:34:02',1,'2006-02-15 21:30:53'), +(9624,'2005-07-31 04:30:03',3480,7,'2005-08-06 09:13:03',1,'2006-02-15 21:30:53'), +(9625,'2005-07-31 04:30:48',1703,445,'2005-08-03 01:12:48',1,'2006-02-15 21:30:53'), +(9626,'2005-07-31 04:37:41',2216,546,'2005-08-08 04:00:41',1,'2006-02-15 21:30:53'), +(9627,'2005-07-31 04:42:46',471,12,'2005-08-08 00:42:46',2,'2006-02-15 21:30:53'), +(9628,'2005-07-31 04:51:11',1387,565,'2005-07-31 23:11:11',2,'2006-02-15 21:30:53'), +(9629,'2005-07-31 04:54:43',2773,8,'2005-08-02 08:36:43',1,'2006-02-15 21:30:53'), +(9630,'2005-07-31 04:57:07',2008,599,'2005-08-07 10:55:07',2,'2006-02-15 21:30:53'), +(9631,'2005-07-31 05:02:00',321,595,'2005-08-02 02:04:00',2,'2006-02-15 21:30:53'), +(9632,'2005-07-31 05:02:23',3368,217,'2005-08-06 04:49:23',2,'2006-02-15 21:30:53'), +(9633,'2005-07-31 05:04:08',1141,334,'2005-08-06 00:52:08',2,'2006-02-15 21:30:53'), +(9634,'2005-07-31 05:06:02',924,444,'2005-08-04 06:53:02',1,'2006-02-15 21:30:53'), +(9635,'2005-07-31 05:12:27',1687,371,'2005-08-02 00:24:27',2,'2006-02-15 21:30:53'), +(9636,'2005-07-31 05:12:59',1725,27,'2005-08-09 07:31:59',2,'2006-02-15 21:30:53'), +(9637,'2005-07-31 05:18:54',3013,130,'2005-08-03 01:23:54',2,'2006-02-15 21:30:53'), +(9638,'2005-07-31 05:30:27',1616,436,'2005-08-09 02:04:27',1,'2006-02-15 21:30:53'), +(9639,'2005-07-31 05:32:10',1373,459,'2005-08-03 07:04:10',2,'2006-02-15 21:30:53'), +(9640,'2005-07-31 05:33:25',1067,67,'2005-08-09 09:41:25',1,'2006-02-15 21:30:53'), +(9641,'2005-07-31 05:33:48',1085,30,'2005-08-04 07:43:48',1,'2006-02-15 21:30:53'), +(9642,'2005-07-31 05:33:57',3550,68,'2005-08-05 04:54:57',1,'2006-02-15 21:30:53'), +(9643,'2005-07-31 05:35:48',3576,538,'2005-08-08 04:28:48',2,'2006-02-15 21:30:53'), +(9644,'2005-07-31 05:40:35',4577,441,'2005-08-09 08:18:35',1,'2006-02-15 21:30:53'), +(9645,'2005-07-31 05:42:49',3413,519,'2005-08-04 00:08:49',1,'2006-02-15 21:30:53'), +(9646,'2005-07-31 05:43:28',3756,89,'2005-08-08 04:00:28',1,'2006-02-15 21:30:53'), +(9647,'2005-07-31 05:45:15',3415,475,'2005-08-06 08:54:15',1,'2006-02-15 21:30:53'), +(9648,'2005-07-31 05:46:03',4063,72,'2005-08-09 04:36:03',2,'2006-02-15 21:30:53'), +(9649,'2005-07-31 05:46:54',1588,51,'2005-08-04 08:42:54',2,'2006-02-15 21:30:53'), +(9650,'2005-07-31 05:47:32',2997,414,'2005-08-04 00:50:32',2,'2006-02-15 21:30:53'), +(9651,'2005-07-31 05:48:49',4059,324,'2005-08-04 06:53:49',1,'2006-02-15 21:30:53'), +(9652,'2005-07-31 05:49:53',448,207,'2005-08-06 07:38:53',2,'2006-02-15 21:30:53'), +(9653,'2005-07-31 05:55:38',1451,383,'2005-08-03 09:35:38',2,'2006-02-15 21:30:53'), +(9654,'2005-07-31 05:57:42',3286,506,'2005-08-06 04:19:42',1,'2006-02-15 21:30:53'), +(9655,'2005-07-31 05:57:54',3403,435,'2005-08-06 02:00:54',1,'2006-02-15 21:30:53'), +(9656,'2005-07-31 06:00:21',4215,39,'2005-08-05 04:36:21',1,'2006-02-15 21:30:53'), +(9657,'2005-07-31 06:00:41',2681,402,'2005-08-06 06:51:41',2,'2006-02-15 21:30:53'), +(9658,'2005-07-31 06:00:52',2332,282,'2005-08-09 04:47:52',2,'2006-02-15 21:30:53'), +(9659,'2005-07-31 06:02:14',4262,360,'2005-08-07 00:54:14',2,'2006-02-15 21:30:53'), +(9660,'2005-07-31 06:03:17',1090,406,'2005-08-07 06:59:17',2,'2006-02-15 21:30:53'), +(9661,'2005-07-31 06:06:37',2693,237,'2005-08-04 07:37:37',1,'2006-02-15 21:30:53'), +(9662,'2005-07-31 06:09:53',2757,96,'2005-08-08 00:50:53',2,'2006-02-15 21:30:53'), +(9663,'2005-07-31 06:10:48',2099,339,'2005-08-01 11:40:48',2,'2006-02-15 21:30:53'), +(9664,'2005-07-31 06:12:08',360,13,'2005-08-04 02:19:08',2,'2006-02-15 21:30:53'), +(9665,'2005-07-31 06:17:33',2863,478,'2005-08-04 08:53:33',1,'2006-02-15 21:30:53'), +(9666,'2005-07-31 06:20:58',4318,592,'2005-08-06 06:09:58',2,'2006-02-15 21:30:53'), +(9667,'2005-07-31 06:23:52',4289,523,'2005-08-09 09:12:52',1,'2006-02-15 21:30:53'), +(9668,'2005-07-31 06:31:03',1647,378,'2005-08-07 06:19:03',2,'2006-02-15 21:30:53'), +(9669,'2005-07-31 06:31:36',4496,277,'2005-08-08 03:05:36',2,'2006-02-15 21:30:53'), +(9670,'2005-07-31 06:33:33',3709,349,'2005-08-07 04:51:33',1,'2006-02-15 21:30:53'), +(9671,'2005-07-31 06:33:41',920,133,'2005-08-02 07:50:41',1,'2006-02-15 21:30:53'), +(9672,'2005-07-31 06:34:06',4394,183,'2005-08-08 10:29:06',2,'2006-02-15 21:30:53'), +(9673,'2005-07-31 06:34:55',339,27,'2005-08-09 09:15:55',2,'2006-02-15 21:30:53'), +(9674,'2005-07-31 06:36:53',3213,297,'2005-08-06 02:50:53',2,'2006-02-15 21:30:53'), +(9675,'2005-07-31 06:37:07',2523,243,'2005-08-03 07:03:07',1,'2006-02-15 21:30:53'), +(9676,'2005-07-31 06:39:13',681,239,'2005-08-05 09:31:13',2,'2006-02-15 21:30:53'), +(9677,'2005-07-31 06:39:45',3200,274,'2005-08-01 02:37:45',2,'2006-02-15 21:30:53'), +(9678,'2005-07-31 06:40:47',3430,383,'2005-08-02 00:57:47',2,'2006-02-15 21:30:53'), +(9679,'2005-07-31 06:41:19',3819,599,'2005-08-02 07:23:19',1,'2006-02-15 21:30:53'), +(9680,'2005-07-31 06:41:46',3010,84,'2005-08-01 11:02:46',2,'2006-02-15 21:30:53'), +(9681,'2005-07-31 06:42:09',64,160,'2005-08-06 08:21:09',1,'2006-02-15 21:30:53'), +(9682,'2005-07-31 06:47:10',2427,425,'2005-08-04 09:07:10',1,'2006-02-15 21:30:53'), +(9683,'2005-07-31 06:47:13',856,141,'2005-08-04 05:52:13',2,'2006-02-15 21:30:53'), +(9684,'2005-07-31 06:48:33',362,591,'2005-08-01 07:07:33',2,'2006-02-15 21:30:53'), +(9685,'2005-07-31 06:49:18',3097,165,'2005-08-04 03:19:18',1,'2006-02-15 21:30:53'), +(9686,'2005-07-31 06:50:06',3825,386,'2005-08-06 08:41:06',1,'2006-02-15 21:30:53'), +(9687,'2005-07-31 06:52:54',3540,470,'2005-08-01 03:40:54',2,'2006-02-15 21:30:53'), +(9688,'2005-07-31 06:56:08',1304,566,'2005-08-08 03:31:08',2,'2006-02-15 21:30:53'), +(9689,'2005-07-31 07:00:08',819,498,'2005-08-04 03:33:08',2,'2006-02-15 21:30:53'), +(9690,'2005-07-31 07:06:29',4449,468,'2005-08-06 09:45:29',2,'2006-02-15 21:30:53'), +(9691,'2005-07-31 07:09:55',2626,50,'2005-08-09 02:29:55',1,'2006-02-15 21:30:53'), +(9692,'2005-07-31 07:11:04',3481,295,'2005-08-07 06:34:04',2,'2006-02-15 21:30:53'), +(9693,'2005-07-31 07:11:50',1031,273,'2005-08-08 09:55:50',1,'2006-02-15 21:30:53'), +(9694,'2005-07-31 07:13:16',3447,508,'2005-08-06 09:12:16',2,'2006-02-15 21:30:53'), +(9695,'2005-07-31 07:13:30',726,95,'2005-08-07 05:38:30',2,'2006-02-15 21:30:53'), +(9696,'2005-07-31 07:13:46',2703,156,'2005-08-03 10:49:46',2,'2006-02-15 21:30:53'), +(9697,'2005-07-31 07:23:11',762,479,'2005-08-05 08:04:11',2,'2006-02-15 21:30:53'), +(9698,'2005-07-31 07:24:35',3477,594,'2005-08-09 04:52:35',2,'2006-02-15 21:30:53'), +(9699,'2005-07-31 07:29:25',199,21,'2005-08-06 01:35:25',1,'2006-02-15 21:30:53'), +(9700,'2005-07-31 07:29:59',2678,40,'2005-08-02 09:53:59',1,'2006-02-15 21:30:53'), +(9701,'2005-07-31 07:32:21',4581,401,'2005-08-01 05:07:21',2,'2006-02-15 21:30:53'), +(9702,'2005-07-31 07:34:07',3353,525,'2005-08-02 06:13:07',2,'2006-02-15 21:30:53'), +(9703,'2005-07-31 07:34:52',2708,57,'2005-08-03 13:33:52',2,'2006-02-15 21:30:53'), +(9704,'2005-07-31 07:39:32',1402,385,'2005-08-06 01:50:32',2,'2006-02-15 21:30:53'), +(9705,'2005-07-31 07:40:33',4158,28,'2005-08-01 03:50:33',2,'2006-02-15 21:30:53'), +(9706,'2005-07-31 07:43:19',142,508,'2005-08-05 11:11:19',1,'2006-02-15 21:30:53'), +(9707,'2005-07-31 07:44:18',203,351,'2005-08-08 12:45:18',1,'2006-02-15 21:30:53'), +(9708,'2005-07-31 07:45:33',3264,12,'2005-08-08 08:56:33',1,'2006-02-15 21:30:53'), +(9709,'2005-07-31 08:04:55',2096,137,'2005-08-07 08:58:55',1,'2006-02-15 21:30:53'), +(9710,'2005-07-31 08:05:31',3486,380,'2005-08-09 03:29:31',2,'2006-02-15 21:30:53'), +(9711,'2005-07-31 08:06:41',1525,231,'2005-08-02 10:30:41',2,'2006-02-15 21:30:53'), +(9712,'2005-07-31 08:13:11',2487,219,'2005-08-08 12:40:11',2,'2006-02-15 21:30:53'), +(9713,'2005-07-31 08:13:28',929,158,'2005-08-07 10:11:28',1,'2006-02-15 21:30:53'), +(9714,'2005-07-31 08:15:32',1532,144,'2005-08-03 08:33:32',2,'2006-02-15 21:30:53'), +(9715,'2005-07-31 08:16:58',3319,237,'2005-08-04 11:13:58',1,'2006-02-15 21:30:53'), +(9716,'2005-07-31 08:23:53',3385,287,'2005-08-08 12:03:53',2,'2006-02-15 21:30:53'), +(9717,'2005-07-31 08:24:41',4207,114,'2005-08-04 02:51:41',1,'2006-02-15 21:30:53'), +(9718,'2005-07-31 08:25:03',2747,23,'2005-08-08 04:16:03',2,'2006-02-15 21:30:53'), +(9719,'2005-07-31 08:25:13',335,584,'2005-08-05 08:22:13',1,'2006-02-15 21:30:53'), +(9720,'2005-07-31 08:25:21',1282,587,'2005-08-07 11:30:21',2,'2006-02-15 21:30:53'), +(9721,'2005-07-31 08:28:46',3942,196,'2005-08-05 14:03:46',1,'2006-02-15 21:30:53'), +(9722,'2005-07-31 08:29:48',4260,125,'2005-08-07 07:52:48',2,'2006-02-15 21:30:53'), +(9723,'2005-07-31 08:31:18',3968,24,'2005-08-03 10:25:18',1,'2006-02-15 21:30:53'), +(9724,'2005-07-31 08:33:08',518,130,'2005-08-08 04:50:08',1,'2006-02-15 21:30:53'), +(9725,'2005-07-31 08:35:18',3960,503,'2005-08-03 03:46:18',2,'2006-02-15 21:30:53'), +(9726,'2005-07-31 08:37:07',1701,162,'2005-08-09 06:09:07',1,'2006-02-15 21:30:53'), +(9727,'2005-07-31 08:39:13',3076,536,'2005-08-03 07:54:13',1,'2006-02-15 21:30:53'), +(9728,'2005-07-31 08:40:54',3630,399,'2005-08-03 04:14:54',2,'2006-02-15 21:30:53'), +(9729,'2005-07-31 08:43:43',4199,273,'2005-08-01 13:25:43',2,'2006-02-15 21:30:53'), +(9730,'2005-07-31 08:50:08',2605,242,'2005-08-08 12:21:08',2,'2006-02-15 21:30:53'), +(9731,'2005-07-31 08:54:47',3713,349,'2005-08-05 03:47:47',1,'2006-02-15 21:30:53'), +(9732,'2005-07-31 08:56:08',3262,288,'2005-08-07 11:05:08',2,'2006-02-15 21:30:53'), +(9733,'2005-07-31 08:57:35',1255,575,'2005-08-04 04:47:35',1,'2006-02-15 21:30:53'), +(9734,'2005-07-31 08:57:45',3320,125,'2005-08-05 11:57:45',1,'2006-02-15 21:30:53'), +(9735,'2005-07-31 08:57:49',4228,315,'2005-08-08 13:51:49',2,'2006-02-15 21:30:53'), +(9736,'2005-07-31 08:58:40',2072,13,'2005-08-09 08:34:40',2,'2006-02-15 21:30:53'), +(9737,'2005-07-31 08:59:18',1720,475,'2005-08-03 12:19:18',2,'2006-02-15 21:30:53'), +(9738,'2005-07-31 09:04:14',2278,568,'2005-08-05 14:40:14',2,'2006-02-15 21:30:53'), +(9739,'2005-07-31 09:08:03',1328,343,'2005-08-04 13:57:03',1,'2006-02-15 21:30:53'), +(9740,'2005-07-31 09:08:03',3497,443,'2005-08-06 04:48:03',2,'2006-02-15 21:30:53'), +(9741,'2005-07-31 09:09:22',1971,495,'2005-08-07 10:01:22',1,'2006-02-15 21:30:53'), +(9742,'2005-07-31 09:10:20',4058,48,'2005-08-08 10:07:20',1,'2006-02-15 21:30:53'), +(9743,'2005-07-31 09:12:42',1740,476,'2005-08-06 11:57:42',2,'2006-02-15 21:30:53'), +(9744,'2005-07-31 09:15:38',839,459,'2005-08-03 10:31:38',2,'2006-02-15 21:30:53'), +(9745,'2005-07-31 09:16:14',3610,217,'2005-08-07 12:11:14',1,'2006-02-15 21:30:53'), +(9746,'2005-07-31 09:16:48',1459,308,'2005-08-07 06:36:48',2,'2006-02-15 21:30:53'), +(9747,'2005-07-31 09:16:57',2455,106,'2005-08-08 06:47:57',2,'2006-02-15 21:30:53'), +(9748,'2005-07-31 09:17:56',3308,550,'2005-08-02 14:54:56',1,'2006-02-15 21:30:53'), +(9749,'2005-07-31 09:18:33',658,52,'2005-08-06 07:41:33',1,'2006-02-15 21:30:53'), +(9750,'2005-07-31 09:19:46',3174,527,'2005-08-06 08:07:46',1,'2006-02-15 21:30:53'), +(9751,'2005-07-31 09:20:50',36,202,'2005-08-01 05:34:50',2,'2006-02-15 21:30:53'), +(9752,'2005-07-31 09:22:02',249,199,'2005-08-02 14:34:02',1,'2006-02-15 21:30:53'), +(9753,'2005-07-31 09:22:38',3529,98,'2005-08-01 08:45:38',1,'2006-02-15 21:30:53'), +(9754,'2005-07-31 09:23:43',3751,479,'2005-08-08 06:04:43',1,'2006-02-15 21:30:53'), +(9755,'2005-07-31 09:24:55',86,108,'2005-08-07 06:00:55',2,'2006-02-15 21:30:53'), +(9756,'2005-07-31 09:25:00',207,400,'2005-08-02 05:11:00',1,'2006-02-15 21:30:53'), +(9757,'2005-07-31 09:25:14',2596,408,'2005-08-01 14:43:14',2,'2006-02-15 21:30:53'), +(9758,'2005-07-31 09:25:38',1307,160,'2005-08-03 14:16:38',1,'2006-02-15 21:30:53'), +(9759,'2005-07-31 09:25:57',2950,574,'2005-08-07 12:56:57',2,'2006-02-15 21:30:53'), +(9760,'2005-07-31 09:29:33',426,511,'2005-08-09 07:32:33',2,'2006-02-15 21:30:53'), +(9761,'2005-07-31 09:31:54',3778,60,'2005-08-03 11:02:54',2,'2006-02-15 21:30:53'), +(9762,'2005-07-31 09:32:54',155,540,'2005-08-05 04:55:54',1,'2006-02-15 21:30:53'), +(9763,'2005-07-31 09:34:03',126,393,'2005-08-08 05:30:03',1,'2006-02-15 21:30:53'), +(9764,'2005-07-31 09:42:58',3761,136,'2005-08-07 07:22:58',2,'2006-02-15 21:30:53'), +(9765,'2005-07-31 09:44:40',472,551,'2005-08-05 10:57:40',1,'2006-02-15 21:30:53'), +(9766,'2005-07-31 09:46:29',4049,570,'2005-08-01 05:08:29',1,'2006-02-15 21:30:53'), +(9767,'2005-07-31 09:46:49',3432,89,'2005-08-03 11:20:49',1,'2006-02-15 21:30:53'), +(9768,'2005-07-31 09:48:41',2656,582,'2005-08-08 11:40:41',2,'2006-02-15 21:30:53'), +(9769,'2005-07-31 09:52:16',2958,484,'2005-08-06 09:26:16',1,'2006-02-15 21:30:53'), +(9770,'2005-07-31 09:52:40',1226,317,'2005-08-09 06:44:40',1,'2006-02-15 21:30:53'), +(9771,'2005-07-31 09:55:36',4123,398,'2005-08-04 10:11:36',2,'2006-02-15 21:30:53'), +(9772,'2005-07-31 09:56:07',3639,147,'2005-08-01 13:50:07',2,'2006-02-15 21:30:53'), +(9773,'2005-07-31 09:56:56',4555,376,'2005-08-04 09:38:56',1,'2006-02-15 21:30:53'), +(9774,'2005-07-31 09:57:51',4174,306,'2005-08-02 09:08:51',2,'2006-02-15 21:30:53'), +(9775,'2005-07-31 10:00:00',2818,162,'2005-08-01 08:57:00',2,'2006-02-15 21:30:53'), +(9776,'2005-07-31 10:01:03',2524,73,'2005-08-03 07:20:03',2,'2006-02-15 21:30:53'), +(9777,'2005-07-31 10:01:06',225,539,'2005-08-08 04:44:06',2,'2006-02-15 21:30:53'), +(9778,'2005-07-31 10:02:04',304,230,'2005-08-04 07:44:04',2,'2006-02-15 21:30:53'), +(9779,'2005-07-31 10:08:33',1280,402,'2005-08-03 14:56:33',1,'2006-02-15 21:30:53'), +(9780,'2005-07-31 10:10:22',3241,102,'2005-08-02 11:43:22',1,'2006-02-15 21:30:53'), +(9781,'2005-07-31 10:13:02',2310,155,'2005-08-09 14:46:02',1,'2006-02-15 21:30:53'), +(9782,'2005-07-31 10:14:26',2397,438,'2005-08-06 16:11:26',1,'2006-02-15 21:30:53'), +(9783,'2005-07-31 10:15:46',836,75,'2005-08-09 13:22:46',2,'2006-02-15 21:30:53'), +(9784,'2005-07-31 10:21:32',2761,362,'2005-08-07 09:20:32',2,'2006-02-15 21:30:53'), +(9785,'2005-07-31 10:22:15',4101,587,'2005-08-02 10:02:15',1,'2006-02-15 21:30:53'), +(9786,'2005-07-31 10:25:21',2560,586,'2005-08-03 04:28:21',1,'2006-02-15 21:30:53'), +(9787,'2005-07-31 10:26:19',3559,272,'2005-08-09 09:02:19',1,'2006-02-15 21:30:53'), +(9788,'2005-07-31 10:28:21',4367,344,'2005-08-09 13:45:21',1,'2006-02-15 21:30:53'), +(9789,'2005-07-31 10:30:25',619,137,'2005-08-03 14:58:25',1,'2006-02-15 21:30:53'), +(9790,'2005-07-31 10:34:08',3643,284,'2005-08-04 11:19:08',2,'2006-02-15 21:30:53'), +(9791,'2005-07-31 10:35:22',3642,300,'2005-08-03 05:34:22',1,'2006-02-15 21:30:53'), +(9792,'2005-07-31 10:43:41',3163,292,'2005-08-07 10:18:41',1,'2006-02-15 21:30:53'), +(9793,'2005-07-31 10:45:11',4576,295,'2005-08-03 14:29:11',1,'2006-02-15 21:30:53'), +(9794,'2005-07-31 10:47:01',1771,403,'2005-08-02 06:52:01',2,'2006-02-15 21:30:53'), +(9795,'2005-07-31 10:47:19',2005,63,'2005-08-04 09:32:19',2,'2006-02-15 21:30:53'), +(9796,'2005-07-31 10:52:43',1038,539,'2005-08-09 06:08:43',1,'2006-02-15 21:30:53'), +(9797,'2005-07-31 10:53:44',687,52,'2005-08-09 05:51:44',1,'2006-02-15 21:30:53'), +(9798,'2005-07-31 10:55:18',3759,55,'2005-08-01 07:37:18',2,'2006-02-15 21:30:53'), +(9799,'2005-07-31 10:58:32',3008,494,'2005-08-01 12:08:32',1,'2006-02-15 21:30:53'), +(9800,'2005-07-31 11:00:58',2153,257,'2005-08-02 10:13:58',2,'2006-02-15 21:30:53'), +(9801,'2005-07-31 11:03:13',3033,158,'2005-08-04 10:55:13',2,'2006-02-15 21:30:53'), +(9802,'2005-07-31 11:04:20',2156,594,'2005-08-03 05:28:20',1,'2006-02-15 21:30:53'), +(9803,'2005-07-31 11:06:02',3783,520,'2005-08-01 06:25:02',1,'2006-02-15 21:30:53'), +(9804,'2005-07-31 11:07:39',2490,196,'2005-08-09 11:57:39',1,'2006-02-15 21:30:53'), +(9805,'2005-07-31 11:11:10',4179,36,'2005-08-03 07:36:10',2,'2006-02-15 21:30:53'), +(9806,'2005-07-31 11:13:49',245,46,'2005-08-04 06:18:49',1,'2006-02-15 21:30:53'), +(9807,'2005-07-31 11:13:52',2137,267,'2005-08-02 07:34:52',1,'2006-02-15 21:30:53'), +(9808,'2005-07-31 11:17:22',3259,583,'2005-08-07 15:54:22',1,'2006-02-15 21:30:53'), +(9809,'2005-07-31 11:19:21',359,286,'2005-08-08 12:43:21',2,'2006-02-15 21:30:53'), +(9810,'2005-07-31 11:22:41',2066,545,'2005-08-01 09:40:41',2,'2006-02-15 21:30:53'), +(9811,'2005-07-31 11:23:45',3305,77,'2005-08-06 15:51:45',1,'2006-02-15 21:30:53'), +(9812,'2005-07-31 11:28:07',1540,57,'2005-08-01 12:35:07',2,'2006-02-15 21:30:53'), +(9813,'2005-07-31 11:29:23',1706,245,'2005-08-07 08:01:23',2,'2006-02-15 21:30:53'), +(9814,'2005-07-31 11:29:46',136,79,'2005-08-08 15:49:46',1,'2006-02-15 21:30:53'), +(9815,'2005-07-31 11:30:51',2728,540,'2005-08-08 12:52:51',1,'2006-02-15 21:30:53'), +(9816,'2005-07-31 11:32:58',4560,3,'2005-08-04 17:12:58',2,'2006-02-15 21:30:53'), +(9817,'2005-07-31 11:33:31',4019,170,'2005-08-08 14:49:31',2,'2006-02-15 21:30:53'), +(9818,'2005-07-31 11:34:32',1254,183,'2005-08-04 08:20:32',1,'2006-02-15 21:30:53'), +(9819,'2005-07-31 11:39:13',1927,292,'2005-08-06 09:11:13',2,'2006-02-15 21:30:53'), +(9820,'2005-07-31 11:46:57',499,279,'2005-08-08 13:35:57',1,'2006-02-15 21:30:53'), +(9821,'2005-07-31 11:47:54',386,271,'2005-08-08 06:21:54',2,'2006-02-15 21:30:53'), +(9822,'2005-07-31 11:48:25',2469,381,'2005-08-05 15:52:25',2,'2006-02-15 21:30:53'), +(9823,'2005-07-31 11:49:00',4423,129,'2005-08-07 09:06:00',2,'2006-02-15 21:30:53'), +(9824,'2005-07-31 11:49:55',4368,404,'2005-08-07 16:54:55',2,'2006-02-15 21:30:53'), +(9825,'2005-07-31 11:50:51',4322,390,'2005-08-02 07:18:51',1,'2006-02-15 21:30:53'), +(9826,'2005-07-31 11:51:46',2649,595,'2005-08-09 17:18:46',1,'2006-02-15 21:30:53'), +(9827,'2005-07-31 11:56:55',3840,329,'2005-08-09 16:29:55',1,'2006-02-15 21:30:53'), +(9828,'2005-07-31 11:56:57',3845,376,'2005-08-02 17:05:57',1,'2006-02-15 21:30:53'), +(9829,'2005-07-31 11:58:38',231,435,'2005-08-07 08:11:38',2,'2006-02-15 21:30:53'), +(9830,'2005-07-31 11:59:05',170,112,'2005-08-06 10:38:05',1,'2006-02-15 21:30:53'), +(9831,'2005-07-31 11:59:32',1961,192,'2005-08-04 07:14:32',1,'2006-02-15 21:30:53'), +(9832,'2005-07-31 12:01:49',3126,64,'2005-08-08 09:21:49',1,'2006-02-15 21:30:53'), +(9833,'2005-07-31 12:05:01',4243,368,'2005-08-09 09:25:01',2,'2006-02-15 21:30:53'), +(9834,'2005-07-31 12:05:42',2292,340,'2005-08-07 15:26:42',1,'2006-02-15 21:30:53'), +(9835,'2005-07-31 12:07:35',1051,328,'2005-08-04 07:32:35',2,'2006-02-15 21:30:53'), +(9836,'2005-07-31 12:12:00',2870,313,'2005-08-09 06:53:00',1,'2006-02-15 21:30:53'), +(9837,'2005-07-31 12:14:19',3488,573,'2005-08-09 17:08:19',1,'2006-02-15 21:30:53'), +(9838,'2005-07-31 12:18:49',3866,208,'2005-08-03 16:49:49',2,'2006-02-15 21:30:53'), +(9839,'2005-07-31 12:21:16',1591,561,'2005-08-09 13:41:16',2,'2006-02-15 21:30:53'), +(9840,'2005-07-31 12:23:18',364,388,'2005-08-06 15:59:18',1,'2006-02-15 21:30:53'), +(9841,'2005-07-31 12:24:19',4554,238,'2005-08-09 15:31:19',1,'2006-02-15 21:30:53'), +(9842,'2005-07-31 12:24:58',2896,261,'2005-08-02 11:01:58',2,'2006-02-15 21:30:53'), +(9843,'2005-07-31 12:25:28',2923,532,'2005-08-01 09:51:28',2,'2006-02-15 21:30:53'), +(9844,'2005-07-31 12:26:31',3930,181,'2005-08-05 13:58:31',1,'2006-02-15 21:30:53'), +(9845,'2005-07-31 12:28:05',2417,79,'2005-08-06 06:47:05',1,'2006-02-15 21:30:53'), +(9846,'2005-07-31 12:30:12',4240,573,'2005-08-05 08:24:12',2,'2006-02-15 21:30:53'), +(9847,'2005-07-31 12:33:43',1137,174,'2005-08-04 14:15:43',2,'2006-02-15 21:30:53'), +(9848,'2005-07-31 12:44:33',3290,346,'2005-08-07 13:49:33',2,'2006-02-15 21:30:53'), +(9849,'2005-07-31 12:44:34',2230,429,'2005-08-02 16:49:34',1,'2006-02-15 21:30:53'), +(9850,'2005-07-31 12:46:52',1461,497,'2005-08-04 10:52:52',2,'2006-02-15 21:30:53'), +(9851,'2005-07-31 12:50:24',25,49,'2005-08-08 08:30:24',2,'2006-02-15 21:30:53'), +(9852,'2005-07-31 12:52:17',4257,415,'2005-08-05 07:59:17',2,'2006-02-15 21:30:53'), +(9853,'2005-07-31 12:58:20',1782,221,'2005-08-04 10:47:20',1,'2006-02-15 21:30:53'), +(9854,'2005-07-31 12:59:34',1049,441,'2005-08-03 07:20:34',2,'2006-02-15 21:30:53'), +(9855,'2005-07-31 13:00:33',1246,326,'2005-08-03 16:18:33',2,'2006-02-15 21:30:53'), +(9856,'2005-07-31 13:00:35',723,347,'2005-08-07 18:07:35',1,'2006-02-15 21:30:53'), +(9857,'2005-07-31 13:00:53',3316,168,'2005-08-09 15:56:53',1,'2006-02-15 21:30:53'), +(9858,'2005-07-31 13:02:07',252,128,'2005-08-03 15:14:07',2,'2006-02-15 21:30:53'), +(9859,'2005-07-31 13:02:55',4094,127,'2005-08-05 11:04:55',1,'2006-02-15 21:30:53'), +(9860,'2005-07-31 13:03:24',3266,585,'2005-08-07 07:28:24',2,'2006-02-15 21:30:53'), +(9861,'2005-07-31 13:04:14',1050,264,'2005-08-09 15:22:14',1,'2006-02-15 21:30:53'), +(9862,'2005-07-31 13:05:03',474,513,'2005-08-01 09:05:03',2,'2006-02-15 21:30:53'), +(9863,'2005-07-31 13:05:29',19,239,'2005-08-08 12:33:29',1,'2006-02-15 21:30:53'), +(9864,'2005-07-31 13:06:54',3619,394,'2005-08-02 11:47:54',2,'2006-02-15 21:30:53'), +(9865,'2005-07-31 13:10:45',1355,580,'2005-08-02 09:19:45',2,'2006-02-15 21:30:53'), +(9866,'2005-07-31 13:13:50',3555,374,'2005-08-07 15:11:50',1,'2006-02-15 21:30:53'), +(9867,'2005-07-31 13:17:04',2485,83,'2005-08-05 07:17:04',2,'2006-02-15 21:30:53'), +(9868,'2005-07-31 13:20:08',266,378,'2005-08-01 18:17:08',2,'2006-02-15 21:30:53'), +(9869,'2005-07-31 13:21:54',783,261,'2005-08-07 09:09:54',1,'2006-02-15 21:30:53'), +(9870,'2005-07-31 13:22:51',442,195,'2005-08-05 16:04:51',1,'2006-02-15 21:30:53'), +(9871,'2005-07-31 13:25:46',194,109,'2005-08-01 13:12:46',2,'2006-02-15 21:30:53'), +(9872,'2005-07-31 13:27:55',1021,376,'2005-08-04 14:33:55',1,'2006-02-15 21:30:53'), +(9873,'2005-07-31 13:32:18',667,442,'2005-08-06 11:15:18',2,'2006-02-15 21:30:53'), +(9874,'2005-07-31 13:32:31',2476,482,'2005-08-07 09:50:31',2,'2006-02-15 21:30:53'), +(9875,'2005-07-31 13:37:41',2878,421,'2005-08-03 15:17:41',2,'2006-02-15 21:30:53'), +(9876,'2005-07-31 13:37:51',828,347,'2005-08-07 18:05:51',2,'2006-02-15 21:30:53'), +(9877,'2005-07-31 13:41:57',1299,559,'2005-08-06 15:27:57',2,'2006-02-15 21:30:53'), +(9878,'2005-07-31 13:42:02',1753,424,'2005-08-05 10:15:02',2,'2006-02-15 21:30:53'), +(9879,'2005-07-31 13:45:32',1935,178,'2005-08-07 17:12:32',1,'2006-02-15 21:30:53'), +(9880,'2005-07-31 13:49:02',3590,64,'2005-08-08 10:31:02',2,'2006-02-15 21:30:53'), +(9881,'2005-07-31 13:50:38',4209,412,'2005-08-06 08:58:38',1,'2006-02-15 21:30:53'), +(9882,'2005-07-31 13:53:33',1429,311,'2005-08-09 15:55:33',1,'2006-02-15 21:30:53'), +(9883,'2005-07-31 13:53:37',4286,356,'2005-08-06 15:45:37',1,'2006-02-15 21:30:53'), +(9884,'2005-07-31 13:56:24',511,590,'2005-08-01 16:59:24',1,'2006-02-15 21:30:53'), +(9885,'2005-07-31 13:59:32',3600,461,'2005-08-07 12:30:32',2,'2006-02-15 21:30:53'), +(9886,'2005-07-31 14:00:13',1386,519,'2005-08-08 19:30:13',1,'2006-02-15 21:30:53'), +(9887,'2005-07-31 14:00:32',436,549,'2005-08-05 19:16:32',1,'2006-02-15 21:30:53'), +(9888,'2005-07-31 14:00:53',4400,5,'2005-08-08 18:51:53',2,'2006-02-15 21:30:53'), +(9889,'2005-07-31 14:02:50',2842,143,'2005-08-05 12:09:50',2,'2006-02-15 21:30:53'), +(9890,'2005-07-31 14:04:44',1024,151,'2005-08-01 11:24:44',1,'2006-02-15 21:30:53'), +(9891,'2005-07-31 14:05:44',3359,462,'2005-08-02 16:21:44',2,'2006-02-15 21:30:53'), +(9892,'2005-07-31 14:06:25',1045,251,'2005-08-03 18:11:25',2,'2006-02-15 21:30:53'), +(9893,'2005-07-31 14:07:21',2445,179,'2005-08-01 09:20:21',2,'2006-02-15 21:30:53'), +(9894,'2005-07-31 14:07:44',3724,199,'2005-08-05 18:01:44',2,'2006-02-15 21:30:53'), +(9895,'2005-07-31 14:07:56',835,560,'2005-08-05 14:56:56',1,'2006-02-15 21:30:53'), +(9896,'2005-07-31 14:09:48',2591,586,'2005-08-01 20:02:48',1,'2006-02-15 21:30:53'), +(9897,'2005-07-31 14:11:57',3945,538,'2005-08-02 12:20:57',1,'2006-02-15 21:30:53'), +(9898,'2005-07-31 14:12:03',2151,359,'2005-08-01 12:27:03',1,'2006-02-15 21:30:53'), +(9899,'2005-07-31 14:12:36',3352,168,'2005-08-08 08:59:36',1,'2006-02-15 21:30:53'), +(9900,'2005-07-31 14:15:05',3132,453,'2005-08-07 11:58:05',2,'2006-02-15 21:30:53'), +(9901,'2005-07-31 14:20:59',3332,277,'2005-08-03 09:30:59',1,'2006-02-15 21:30:53'), +(9902,'2005-07-31 14:24:33',486,218,'2005-08-09 11:11:33',2,'2006-02-15 21:30:53'), +(9903,'2005-07-31 14:31:44',1621,316,'2005-08-08 20:03:44',1,'2006-02-15 21:30:53'), +(9904,'2005-07-31 14:34:17',4089,428,'2005-08-08 17:19:17',1,'2006-02-15 21:30:53'), +(9905,'2005-07-31 14:37:03',2839,519,'2005-08-01 15:55:03',2,'2006-02-15 21:30:53'), +(9906,'2005-07-31 14:38:12',4241,204,'2005-08-01 13:56:12',1,'2006-02-15 21:30:53'), +(9907,'2005-07-31 14:39:50',4282,120,'2005-08-09 09:39:50',1,'2006-02-15 21:30:53'), +(9908,'2005-07-31 14:39:52',4408,27,'2005-08-09 09:46:52',2,'2006-02-15 21:30:53'), +(9909,'2005-07-31 14:43:34',2600,587,'2005-08-09 15:31:34',1,'2006-02-15 21:30:53'), +(9910,'2005-07-31 14:47:57',368,122,'2005-08-05 18:20:57',1,'2006-02-15 21:30:53'), +(9911,'2005-07-31 14:48:01',3879,112,'2005-08-06 11:55:01',1,'2006-02-15 21:30:53'), +(9912,'2005-07-31 14:49:04',3119,367,'2005-08-03 15:40:04',1,'2006-02-15 21:30:53'), +(9913,'2005-07-31 14:51:04',3744,229,'2005-08-06 12:12:04',1,'2006-02-15 21:30:53'), +(9914,'2005-07-31 14:51:19',3147,530,'2005-08-05 09:51:19',1,'2006-02-15 21:30:53'), +(9915,'2005-07-31 14:52:26',2933,566,'2005-08-03 11:53:26',1,'2006-02-15 21:30:53'), +(9916,'2005-07-31 14:54:52',949,432,'2005-08-07 13:18:52',1,'2006-02-15 21:30:53'), +(9917,'2005-07-31 14:55:11',3829,159,'2005-08-02 13:58:11',2,'2006-02-15 21:30:53'), +(9918,'2005-07-31 14:55:22',2519,283,'2005-08-04 09:02:22',2,'2006-02-15 21:30:53'), +(9919,'2005-07-31 14:55:46',3205,291,'2005-08-08 11:43:46',2,'2006-02-15 21:30:53'), +(9920,'2005-07-31 14:57:13',3108,139,'2005-08-03 18:58:13',2,'2006-02-15 21:30:53'), +(9921,'2005-07-31 14:59:21',1004,332,'2005-08-01 12:40:21',2,'2006-02-15 21:30:53'), +(9922,'2005-07-31 14:59:37',3615,25,'2005-08-06 14:05:37',1,'2006-02-15 21:30:53'), +(9923,'2005-07-31 15:00:15',1635,209,'2005-08-05 11:09:15',2,'2006-02-15 21:30:53'), +(9924,'2005-07-31 15:04:57',1986,64,'2005-08-05 20:07:57',2,'2006-02-15 21:30:53'), +(9925,'2005-07-31 15:08:47',2351,24,'2005-08-02 20:27:47',1,'2006-02-15 21:30:53'), +(9926,'2005-07-31 15:11:51',3733,472,'2005-08-09 18:26:51',1,'2006-02-15 21:30:53'), +(9927,'2005-07-31 15:12:13',999,346,'2005-08-01 11:37:13',1,'2006-02-15 21:30:53'), +(9928,'2005-07-31 15:13:57',3627,53,'2005-08-06 20:39:57',1,'2006-02-15 21:30:53'), +(9929,'2005-07-31 15:17:24',2521,564,'2005-08-03 17:27:24',1,'2006-02-15 21:30:53'), +(9930,'2005-07-31 15:18:03',4491,304,'2005-08-01 12:36:03',2,'2006-02-15 21:30:53'), +(9931,'2005-07-31 15:18:19',3455,183,'2005-08-04 14:23:19',2,'2006-02-15 21:30:53'), +(9932,'2005-07-31 15:19:48',1691,264,'2005-08-05 21:09:48',1,'2006-02-15 21:30:53'), +(9933,'2005-07-31 15:24:46',2349,111,'2005-08-01 10:00:46',1,'2006-02-15 21:30:53'), +(9934,'2005-07-31 15:25:26',2492,236,'2005-08-05 17:13:26',1,'2006-02-15 21:30:53'), +(9935,'2005-07-31 15:27:07',2247,10,'2005-08-05 11:23:07',1,'2006-02-15 21:30:53'), +(9936,'2005-07-31 15:27:41',979,153,'2005-08-06 16:25:41',1,'2006-02-15 21:30:53'), +(9937,'2005-07-31 15:28:10',3697,521,'2005-08-06 21:20:10',2,'2006-02-15 21:30:53'), +(9938,'2005-07-31 15:28:47',2871,63,'2005-08-09 21:24:47',2,'2006-02-15 21:30:53'), +(9939,'2005-07-31 15:29:00',3049,538,'2005-08-08 11:09:00',1,'2006-02-15 21:30:53'), +(9940,'2005-07-31 15:29:06',3975,388,'2005-08-06 14:26:06',2,'2006-02-15 21:30:53'), +(9941,'2005-07-31 15:31:25',1756,175,'2005-08-05 17:23:25',1,'2006-02-15 21:30:53'), +(9942,'2005-07-31 15:35:43',4573,545,'2005-08-07 17:37:43',2,'2006-02-15 21:30:53'), +(9943,'2005-07-31 15:37:29',887,494,'2005-08-09 18:25:29',1,'2006-02-15 21:30:53'), +(9944,'2005-07-31 15:44:43',2540,241,'2005-08-08 10:30:43',1,'2006-02-15 21:30:53'), +(9945,'2005-07-31 15:47:51',2075,309,'2005-08-02 19:06:51',1,'2006-02-15 21:30:53'), +(9946,'2005-07-31 15:48:54',2100,29,'2005-08-03 12:42:54',2,'2006-02-15 21:30:53'), +(9947,'2005-07-31 15:49:40',1173,138,'2005-08-08 11:11:40',1,'2006-02-15 21:30:53'), +(9948,'2005-07-31 15:49:41',806,342,'2005-08-06 12:36:41',1,'2006-02-15 21:30:53'), +(9949,'2005-07-31 15:50:10',3258,309,'2005-08-01 17:53:10',2,'2006-02-15 21:30:53'), +(9950,'2005-07-31 15:50:22',1657,572,'2005-08-08 19:10:22',2,'2006-02-15 21:30:53'), +(9951,'2005-07-31 15:51:16',4412,95,'2005-08-03 14:54:16',1,'2006-02-15 21:30:53'), +(9952,'2005-07-31 15:52:37',1634,128,'2005-08-06 10:50:37',2,'2006-02-15 21:30:53'), +(9953,'2005-07-31 15:56:35',1646,211,'2005-08-02 12:01:35',2,'2006-02-15 21:30:53'), +(9954,'2005-07-31 15:57:07',1830,463,'2005-08-05 12:04:07',2,'2006-02-15 21:30:53'), +(9955,'2005-07-31 16:01:26',1745,342,'2005-08-04 11:15:26',2,'2006-02-15 21:30:53'), +(9956,'2005-07-31 16:03:47',4485,342,'2005-08-01 16:40:47',2,'2006-02-15 21:30:53'), +(9957,'2005-07-31 16:03:55',1857,85,'2005-08-04 15:16:55',2,'2006-02-15 21:30:53'), +(9958,'2005-07-31 16:03:56',4142,157,'2005-08-04 15:21:56',2,'2006-02-15 21:30:53'), +(9959,'2005-07-31 16:04:22',340,199,'2005-08-03 21:51:22',2,'2006-02-15 21:30:53'), +(9960,'2005-07-31 16:05:52',1022,569,'2005-08-05 14:15:52',2,'2006-02-15 21:30:53'), +(9961,'2005-07-31 16:07:50',1856,40,'2005-08-07 18:37:50',2,'2006-02-15 21:30:53'), +(9962,'2005-07-31 16:10:36',1951,576,'2005-08-02 17:09:36',1,'2006-02-15 21:30:53'), +(9963,'2005-07-31 16:16:46',1609,573,'2005-08-02 22:00:46',1,'2006-02-15 21:30:53'), +(9964,'2005-07-31 16:17:39',3149,191,'2005-08-03 15:03:39',1,'2006-02-15 21:30:53'), +(9965,'2005-07-31 16:19:32',3946,101,'2005-08-05 20:18:32',2,'2006-02-15 21:30:53'), +(9966,'2005-07-31 16:26:46',4137,373,'2005-08-03 14:29:46',1,'2006-02-15 21:30:53'), +(9967,'2005-07-31 16:31:17',958,537,'2005-08-06 13:52:17',1,'2006-02-15 21:30:53'), +(9968,'2005-07-31 16:32:16',2666,363,'2005-08-08 12:23:16',1,'2006-02-15 21:30:53'), +(9969,'2005-07-31 16:38:12',938,151,'2005-08-05 11:45:12',2,'2006-02-15 21:30:53'), +(9970,'2005-07-31 16:38:24',2846,578,'2005-08-02 12:59:24',2,'2006-02-15 21:30:53'), +(9971,'2005-07-31 16:42:16',2674,573,'2005-08-09 18:08:16',2,'2006-02-15 21:30:53'), +(9972,'2005-07-31 16:42:43',190,506,'2005-08-02 11:05:43',2,'2006-02-15 21:30:53'), +(9973,'2005-07-31 16:49:31',1850,369,'2005-08-03 22:03:31',2,'2006-02-15 21:30:53'), +(9974,'2005-07-31 16:51:11',430,503,'2005-08-05 16:04:11',1,'2006-02-15 21:30:53'), +(9975,'2005-07-31 16:53:43',2564,40,'2005-08-07 20:13:43',2,'2006-02-15 21:30:53'), +(9976,'2005-07-31 16:57:49',4219,579,'2005-08-03 16:33:49',2,'2006-02-15 21:30:53'), +(9977,'2005-07-31 16:58:42',2300,363,'2005-08-09 13:34:42',1,'2006-02-15 21:30:53'), +(9978,'2005-07-31 16:59:51',2812,427,'2005-08-06 16:48:51',2,'2006-02-15 21:30:53'), +(9979,'2005-07-31 17:00:07',646,576,'2005-08-08 20:40:07',1,'2006-02-15 21:30:53'), +(9980,'2005-07-31 17:02:00',122,225,'2005-08-08 11:11:00',2,'2006-02-15 21:30:53'), +(9981,'2005-07-31 17:08:31',1354,321,'2005-08-01 22:46:31',2,'2006-02-15 21:30:53'), +(9982,'2005-07-31 17:09:02',2698,428,'2005-08-02 13:02:02',2,'2006-02-15 21:30:53'), +(9983,'2005-07-31 17:09:36',350,129,'2005-08-08 20:26:36',1,'2006-02-15 21:30:53'), +(9984,'2005-07-31 17:12:23',433,432,'2005-08-01 21:04:23',2,'2006-02-15 21:30:53'), +(9985,'2005-07-31 17:14:47',1831,85,'2005-08-01 12:11:47',2,'2006-02-15 21:30:53'), +(9986,'2005-07-31 17:16:50',1242,124,'2005-08-05 18:34:50',2,'2006-02-15 21:30:53'), +(9987,'2005-07-31 17:22:35',1619,15,'2005-08-01 21:19:35',2,'2006-02-15 21:30:53'), +(9988,'2005-07-31 17:22:36',3844,243,'2005-08-07 18:35:36',2,'2006-02-15 21:30:53'), +(9989,'2005-07-31 17:22:39',1713,79,'2005-08-01 18:55:39',1,'2006-02-15 21:30:53'), +(9990,'2005-07-31 17:24:21',4481,555,'2005-08-09 17:14:21',2,'2006-02-15 21:30:53'), +(9991,'2005-07-31 17:26:27',3662,414,'2005-08-03 17:36:27',1,'2006-02-15 21:30:53'), +(9992,'2005-07-31 17:29:48',4242,304,'2005-08-09 13:02:48',2,'2006-02-15 21:30:53'), +(9993,'2005-07-31 17:30:20',2503,225,'2005-08-01 20:53:20',2,'2006-02-15 21:30:53'), +(9994,'2005-07-31 17:30:31',2155,195,'2005-08-01 11:35:31',1,'2006-02-15 21:30:53'), +(9995,'2005-07-31 17:30:47',1978,180,'2005-08-04 12:20:47',2,'2006-02-15 21:30:53'), +(9996,'2005-07-31 17:32:03',3271,104,'2005-08-06 16:17:03',2,'2006-02-15 21:30:53'), +(9997,'2005-07-31 17:37:30',640,579,'2005-08-02 14:49:30',1,'2006-02-15 21:30:53'), +(9998,'2005-07-31 17:40:35',2549,30,'2005-08-04 18:15:35',1,'2006-02-15 21:30:53'), +(9999,'2005-07-31 17:40:53',1438,543,'2005-08-01 14:25:53',1,'2006-02-15 21:30:53'), +(10000,'2005-07-31 17:41:05',3221,576,'2005-08-02 20:51:05',1,'2006-02-15 21:30:53'), +(10001,'2005-07-31 17:46:18',2188,244,'2005-08-07 20:38:18',1,'2006-02-15 21:30:53'), +(10002,'2005-07-31 17:48:16',1002,323,'2005-08-06 16:15:16',1,'2006-02-15 21:30:53'), +(10003,'2005-07-31 17:48:51',1603,13,'2005-08-02 14:23:51',1,'2006-02-15 21:30:53'), +(10004,'2005-07-31 17:51:23',2396,570,'2005-08-03 19:12:23',1,'2006-02-15 21:30:53'), +(10005,'2005-07-31 17:53:51',928,454,'2005-08-09 21:39:51',1,'2006-02-15 21:30:53'), +(10006,'2005-07-31 17:54:35',2538,470,'2005-08-02 20:40:35',2,'2006-02-15 21:30:53'), +(10007,'2005-07-31 17:54:58',293,445,'2005-08-05 17:24:58',2,'2006-02-15 21:30:53'), +(10008,'2005-07-31 17:59:36',2589,91,'2005-08-03 22:43:36',2,'2006-02-15 21:30:53'), +(10009,'2005-07-31 18:00:28',4441,437,'2005-08-08 22:24:28',2,'2006-02-15 21:30:53'), +(10010,'2005-07-31 18:01:36',2655,373,'2005-08-07 20:27:36',2,'2006-02-15 21:30:53'), +(10011,'2005-07-31 18:02:41',606,128,'2005-08-08 17:04:41',1,'2006-02-15 21:30:53'), +(10012,'2005-07-31 18:06:06',2554,513,'2005-08-09 16:47:06',2,'2006-02-15 21:30:53'), +(10013,'2005-07-31 18:08:21',2364,377,'2005-08-08 13:22:21',2,'2006-02-15 21:30:53'), +(10014,'2005-07-31 18:10:56',2344,443,'2005-08-02 23:36:56',1,'2006-02-15 21:30:53'), +(10015,'2005-07-31 18:11:17',67,153,'2005-08-03 15:48:17',2,'2006-02-15 21:30:53'), +(10016,'2005-07-31 18:13:06',2183,478,'2005-08-09 22:11:06',1,'2006-02-15 21:30:53'), +(10017,'2005-07-31 18:13:22',1495,424,'2005-08-05 16:03:22',1,'2006-02-15 21:30:53'), +(10018,'2005-07-31 18:15:14',3708,481,'2005-08-05 14:44:14',2,'2006-02-15 21:30:53'), +(10019,'2005-07-31 18:20:56',2114,536,'2005-08-07 14:25:56',1,'2006-02-15 21:30:53'), +(10020,'2005-07-31 18:21:08',302,526,'2005-08-02 14:03:08',2,'2006-02-15 21:30:53'), +(10021,'2005-07-31 18:24:39',3235,597,'2005-08-01 19:16:39',1,'2006-02-15 21:30:53'), +(10022,'2005-07-31 18:25:30',1900,115,'2005-08-04 13:35:30',1,'2006-02-15 21:30:53'), +(10023,'2005-07-31 18:25:51',384,318,'2005-08-09 18:00:51',1,'2006-02-15 21:30:53'), +(10024,'2005-07-31 18:26:36',265,129,'2005-08-09 16:16:36',1,'2006-02-15 21:30:53'), +(10025,'2005-07-31 18:29:09',475,565,'2005-08-07 14:20:09',2,'2006-02-15 21:30:53'), +(10026,'2005-07-31 18:31:51',39,332,'2005-08-03 21:14:51',2,'2006-02-15 21:30:53'), +(10027,'2005-07-31 18:33:51',525,287,'2005-08-09 18:40:51',1,'2006-02-15 21:30:53'), +(10028,'2005-07-31 18:35:54',2305,323,'2005-08-01 13:01:54',2,'2006-02-15 21:30:53'), +(10029,'2005-07-31 18:37:47',505,578,'2005-08-06 14:58:47',2,'2006-02-15 21:30:53'), +(10030,'2005-07-31 18:39:36',1392,325,'2005-08-03 15:29:36',2,'2006-02-15 21:30:53'), +(10031,'2005-07-31 18:40:15',3048,96,'2005-08-03 14:38:15',1,'2006-02-15 21:30:53'), +(10032,'2005-07-31 18:41:55',2331,126,'2005-08-04 22:45:55',1,'2006-02-15 21:30:53'), +(10033,'2005-07-31 18:44:29',4480,381,'2005-08-04 19:52:29',1,'2006-02-15 21:30:53'), +(10034,'2005-07-31 18:45:30',354,442,'2005-08-04 21:13:30',2,'2006-02-15 21:30:53'), +(10035,'2005-07-31 18:46:46',2694,333,'2005-08-04 20:33:46',1,'2006-02-15 21:30:53'), +(10036,'2005-07-31 18:47:20',41,491,'2005-08-03 22:53:20',1,'2006-02-15 21:30:53'), +(10037,'2005-07-31 18:48:08',438,58,'2005-08-09 19:11:08',2,'2006-02-15 21:30:53'), +(10038,'2005-07-31 18:49:12',3727,112,'2005-08-01 18:02:12',1,'2006-02-15 21:30:53'), +(10039,'2005-07-31 18:50:40',4391,111,'2005-08-01 18:49:40',2,'2006-02-15 21:30:53'), +(10040,'2005-07-31 18:54:15',2281,268,'2005-08-05 17:33:15',2,'2006-02-15 21:30:53'), +(10041,'2005-07-31 19:01:02',2994,379,'2005-08-07 21:32:02',1,'2006-02-15 21:30:53'), +(10042,'2005-07-31 19:01:25',123,204,'2005-08-06 14:21:25',1,'2006-02-15 21:30:53'), +(10043,'2005-07-31 19:02:07',2558,222,'2005-08-07 17:58:07',1,'2006-02-15 21:30:53'), +(10044,'2005-07-31 19:02:33',3349,388,'2005-08-05 13:24:33',2,'2006-02-15 21:30:53'), +(10045,'2005-07-31 19:04:35',58,118,'2005-08-07 16:53:35',1,'2006-02-15 21:30:53'), +(10046,'2005-07-31 19:07:11',4302,50,'2005-08-03 13:25:11',1,'2006-02-15 21:30:53'), +(10047,'2005-07-31 19:07:43',4195,244,'2005-08-07 00:20:43',2,'2006-02-15 21:30:53'), +(10048,'2005-07-31 19:08:56',3821,267,'2005-08-05 20:15:56',2,'2006-02-15 21:30:53'), +(10049,'2005-07-31 19:11:11',854,457,'2005-08-03 22:15:11',1,'2006-02-15 21:30:53'), +(10050,'2005-07-31 19:13:29',295,230,'2005-08-06 15:44:29',1,'2006-02-15 21:30:53'), +(10051,'2005-07-31 19:14:20',163,74,'2005-08-05 19:45:20',1,'2006-02-15 21:30:53'), +(10052,'2005-07-31 19:15:13',3307,39,'2005-08-07 22:47:13',2,'2006-02-15 21:30:53'), +(10053,'2005-07-31 19:15:39',4102,223,'2005-08-07 22:32:39',1,'2006-02-15 21:30:53'), +(10054,'2005-07-31 19:15:52',2303,598,'2005-08-04 19:54:52',1,'2006-02-15 21:30:53'), +(10055,'2005-07-31 19:15:58',2725,336,'2005-08-05 20:23:58',1,'2006-02-15 21:30:53'), +(10056,'2005-07-31 19:19:13',281,237,'2005-08-01 16:09:13',2,'2006-02-15 21:30:53'), +(10057,'2005-07-31 19:20:18',3485,230,'2005-08-08 17:59:18',2,'2006-02-15 21:30:53'), +(10058,'2005-07-31 19:20:21',758,237,'2005-08-04 00:41:21',2,'2006-02-15 21:30:53'), +(10059,'2005-07-31 19:20:49',2020,274,'2005-08-03 14:39:49',1,'2006-02-15 21:30:53'), +(10060,'2005-07-31 19:23:00',1979,42,'2005-08-08 19:07:00',1,'2006-02-15 21:30:53'), +(10061,'2005-07-31 19:23:25',1401,390,'2005-08-04 19:38:25',1,'2006-02-15 21:30:53'), +(10062,'2005-07-31 19:24:55',1815,333,'2005-08-03 22:51:55',2,'2006-02-15 21:30:53'), +(10063,'2005-07-31 19:25:13',3003,517,'2005-08-09 15:55:13',1,'2006-02-15 21:30:53'), +(10064,'2005-07-31 19:27:02',3140,41,'2005-08-06 21:15:02',1,'2006-02-15 21:30:53'), +(10065,'2005-07-31 19:27:34',1426,495,'2005-08-01 13:45:34',2,'2006-02-15 21:30:53'), +(10066,'2005-07-31 19:30:01',4285,123,'2005-08-01 14:45:01',2,'2006-02-15 21:30:53'), +(10067,'2005-07-31 19:37:58',1940,148,'2005-08-04 17:32:58',2,'2006-02-15 21:30:53'), +(10068,'2005-07-31 19:39:38',4000,58,'2005-08-05 22:49:38',1,'2006-02-15 21:30:53'), +(10069,'2005-07-31 19:43:18',2168,270,'2005-08-06 19:40:18',2,'2006-02-15 21:30:53'), +(10070,'2005-07-31 19:46:29',1010,325,'2005-08-03 22:21:29',1,'2006-02-15 21:30:53'), +(10071,'2005-07-31 19:49:35',2360,353,'2005-08-03 00:00:35',2,'2006-02-15 21:30:53'), +(10072,'2005-07-31 19:50:37',3963,520,'2005-08-03 00:25:37',2,'2006-02-15 21:30:53'), +(10073,'2005-07-31 19:53:15',4246,584,'2005-08-05 23:12:15',2,'2006-02-15 21:30:53'), +(10074,'2005-07-31 19:57:16',1268,69,'2005-08-04 00:54:16',1,'2006-02-15 21:30:53'), +(10075,'2005-07-31 19:58:42',2037,469,'2005-08-08 19:49:42',1,'2006-02-15 21:30:53'), +(10076,'2005-07-31 20:00:34',1117,555,'2005-08-10 00:37:34',2,'2006-02-15 21:30:53'), +(10077,'2005-07-31 20:01:06',2333,19,'2005-08-09 16:07:06',1,'2006-02-15 21:30:53'), +(10078,'2005-07-31 20:02:02',3198,151,'2005-08-04 00:45:02',1,'2006-02-15 21:30:53'), +(10079,'2005-07-31 20:05:45',4541,486,'2005-08-04 16:25:45',2,'2006-02-15 21:30:53'), +(10080,'2005-07-31 20:07:10',4355,62,'2005-08-04 23:07:10',2,'2006-02-15 21:30:53'), +(10081,'2005-07-31 20:07:44',3183,443,'2005-08-06 20:04:44',1,'2006-02-15 21:30:53'), +(10082,'2005-07-31 20:09:32',1275,76,'2005-08-01 15:41:32',2,'2006-02-15 21:30:53'), +(10083,'2005-07-31 20:10:19',2585,449,'2005-08-06 23:18:19',1,'2006-02-15 21:30:53'), +(10084,'2005-07-31 20:11:29',524,528,'2005-08-06 22:28:29',2,'2006-02-15 21:30:53'), +(10085,'2005-07-31 20:12:02',2556,392,'2005-08-03 00:03:02',2,'2006-02-15 21:30:53'), +(10086,'2005-07-31 20:14:08',2853,205,'2005-08-07 01:33:08',2,'2006-02-15 21:30:53'), +(10087,'2005-07-31 20:15:22',1393,245,'2005-08-07 01:33:22',1,'2006-02-15 21:30:53'), +(10088,'2005-07-31 20:16:21',4293,46,'2005-08-01 22:47:21',2,'2006-02-15 21:30:53'), +(10089,'2005-07-31 20:17:09',248,160,'2005-08-01 19:14:09',2,'2006-02-15 21:30:53'), +(10090,'2005-07-31 20:22:01',4023,533,'2005-08-04 17:30:01',1,'2006-02-15 21:30:53'), +(10091,'2005-07-31 20:23:13',1878,135,'2005-08-02 21:58:13',2,'2006-02-15 21:30:53'), +(10092,'2005-07-31 20:28:09',4151,364,'2005-08-01 21:37:09',1,'2006-02-15 21:30:53'), +(10093,'2005-07-31 20:30:32',3943,162,'2005-08-04 00:04:32',2,'2006-02-15 21:30:53'), +(10094,'2005-07-31 20:31:18',2865,596,'2005-08-06 18:31:18',2,'2006-02-15 21:30:53'), +(10095,'2005-07-31 20:38:35',4062,370,'2005-08-02 02:33:35',1,'2006-02-15 21:30:53'), +(10096,'2005-07-31 20:38:58',3606,290,'2005-08-06 02:34:58',1,'2006-02-15 21:30:53'), +(10097,'2005-07-31 20:39:38',784,519,'2005-08-08 22:22:38',1,'2006-02-15 21:30:53'), +(10098,'2005-07-31 20:41:17',1324,155,'2005-08-02 00:06:17',2,'2006-02-15 21:30:53'), +(10099,'2005-07-31 20:47:14',1960,220,'2005-08-02 17:25:14',1,'2006-02-15 21:30:53'), +(10100,'2005-07-31 20:47:18',4050,330,'2005-08-03 16:58:18',2,'2006-02-15 21:30:53'), +(10101,'2005-07-31 20:47:29',2513,119,'2005-08-04 21:28:29',1,'2006-02-15 21:30:53'), +(10102,'2005-07-31 20:49:10',4078,170,'2005-08-08 20:15:10',1,'2006-02-15 21:30:53'), +(10103,'2005-07-31 20:49:13',77,25,'2005-08-05 15:55:13',2,'2006-02-15 21:30:53'), +(10104,'2005-07-31 20:49:14',3358,186,'2005-08-05 01:11:14',2,'2006-02-15 21:30:53'), +(10105,'2005-07-31 20:54:20',112,286,'2005-08-09 17:45:20',1,'2006-02-15 21:30:53'), +(10106,'2005-07-31 21:00:47',3444,556,'2005-08-02 20:11:47',2,'2006-02-15 21:30:53'), +(10107,'2005-07-31 21:01:46',1326,414,'2005-08-09 01:33:46',2,'2006-02-15 21:30:53'), +(10108,'2005-07-31 21:02:14',3703,326,'2005-08-01 18:28:14',1,'2006-02-15 21:30:53'), +(10109,'2005-07-31 21:04:49',2852,403,'2005-08-08 19:25:49',1,'2006-02-15 21:30:53'), +(10110,'2005-07-31 21:06:12',4081,138,'2005-08-03 02:03:12',2,'2006-02-15 21:30:53'), +(10111,'2005-07-31 21:08:33',3474,38,'2005-08-06 02:58:33',2,'2006-02-15 21:30:53'), +(10112,'2005-07-31 21:08:56',2643,198,'2005-08-01 23:35:56',2,'2006-02-15 21:30:53'), +(10113,'2005-07-31 21:10:03',3974,461,'2005-08-02 21:13:03',2,'2006-02-15 21:30:53'), +(10114,'2005-07-31 21:12:58',3881,218,'2005-08-02 19:45:58',2,'2006-02-15 21:30:53'), +(10115,'2005-07-31 21:13:47',2731,68,'2005-08-10 00:44:47',1,'2006-02-15 21:30:53'), +(10116,'2005-07-31 21:14:02',738,28,'2005-08-03 01:48:02',2,'2006-02-15 21:30:53'), +(10117,'2005-07-31 21:14:31',1894,459,'2005-08-01 15:59:31',2,'2006-02-15 21:30:53'), +(10118,'2005-07-31 21:16:31',1209,143,'2005-08-03 02:32:31',1,'2006-02-15 21:30:53'), +(10119,'2005-07-31 21:20:59',54,351,'2005-08-02 23:14:59',2,'2006-02-15 21:30:53'), +(10120,'2005-07-31 21:24:24',1709,396,'2005-08-03 17:44:24',2,'2006-02-15 21:30:53'), +(10121,'2005-07-31 21:24:53',2969,425,'2005-08-03 22:24:53',1,'2006-02-15 21:30:53'), +(10122,'2005-07-31 21:29:28',4229,196,'2005-08-09 00:04:28',1,'2006-02-15 21:30:53'), +(10123,'2005-07-31 21:30:46',4564,487,'2005-08-06 16:28:46',1,'2006-02-15 21:30:53'), +(10124,'2005-07-31 21:31:49',1956,396,'2005-08-04 00:06:49',1,'2006-02-15 21:30:53'), +(10125,'2005-07-31 21:33:03',493,178,'2005-08-01 19:10:03',1,'2006-02-15 21:30:53'), +(10126,'2005-07-31 21:36:07',3,39,'2005-08-03 23:59:07',1,'2006-02-15 21:30:53'), +(10127,'2005-07-31 21:39:48',717,478,'2005-08-06 00:10:48',1,'2006-02-15 21:30:53'), +(10128,'2005-07-31 21:40:04',2559,508,'2005-08-02 02:21:04',1,'2006-02-15 21:30:53'), +(10129,'2005-07-31 21:41:35',2848,564,'2005-08-05 17:05:35',1,'2006-02-15 21:30:53'), +(10130,'2005-07-31 21:44:30',3964,95,'2005-08-04 17:06:30',1,'2006-02-15 21:30:53'), +(10131,'2005-07-31 21:45:28',4169,510,'2005-08-04 00:19:28',2,'2006-02-15 21:30:53'), +(10132,'2005-07-31 21:50:24',3934,23,'2005-08-07 23:37:24',2,'2006-02-15 21:30:53'), +(10133,'2005-07-31 21:55:07',614,234,'2005-08-08 23:04:07',1,'2006-02-15 21:30:53'), +(10134,'2005-07-31 21:56:10',4483,311,'2005-08-06 21:20:10',1,'2006-02-15 21:30:53'), +(10135,'2005-07-31 21:57:32',4193,307,'2005-08-05 22:23:32',1,'2006-02-15 21:30:53'), +(10136,'2005-07-31 21:58:56',3142,2,'2005-08-03 19:44:56',1,'2006-02-15 21:30:53'), +(10137,'2005-07-31 22:01:41',612,236,'2005-08-07 22:24:41',1,'2006-02-15 21:30:53'), +(10138,'2005-07-31 22:02:09',179,225,'2005-08-07 20:46:09',2,'2006-02-15 21:30:53'), +(10139,'2005-07-31 22:02:20',407,441,'2005-08-04 02:09:20',1,'2006-02-15 21:30:53'), +(10140,'2005-07-31 22:03:20',2494,550,'2005-08-07 23:15:20',2,'2006-02-15 21:30:53'), +(10141,'2005-07-31 22:08:29',8,8,'2005-08-06 16:59:29',1,'2006-02-15 21:30:53'), +(10142,'2005-07-31 22:10:54',1839,257,'2005-08-09 19:04:54',2,'2006-02-15 21:30:53'), +(10143,'2005-07-31 22:11:43',2139,271,'2005-08-09 17:48:43',2,'2006-02-15 21:30:53'), +(10144,'2005-07-31 22:13:52',3011,49,'2005-08-05 19:27:52',1,'2006-02-15 21:30:53'), +(10145,'2005-07-31 22:15:13',2511,361,'2005-08-06 23:26:13',1,'2006-02-15 21:30:53'), +(10146,'2005-07-31 22:17:56',1721,559,'2005-08-02 21:27:56',1,'2006-02-15 21:30:53'), +(10147,'2005-07-31 22:18:43',1351,198,'2005-08-02 23:08:43',2,'2006-02-15 21:30:53'), +(10148,'2005-07-31 22:19:16',1381,63,'2005-08-05 00:15:16',2,'2006-02-15 21:30:53'), +(10149,'2005-07-31 22:20:46',890,276,'2005-08-07 23:12:46',2,'2006-02-15 21:30:53'), +(10150,'2005-07-31 22:22:00',2328,419,'2005-08-05 01:17:00',2,'2006-02-15 21:30:53'), +(10151,'2005-07-31 22:22:37',4442,361,'2005-08-01 22:20:37',1,'2006-02-15 21:30:53'), +(10152,'2005-07-31 22:28:05',1114,244,'2005-08-08 22:39:05',2,'2006-02-15 21:30:53'), +(10153,'2005-07-31 22:30:10',2945,297,'2005-08-06 02:32:10',2,'2006-02-15 21:30:53'), +(10154,'2005-07-31 22:30:49',2745,149,'2005-08-07 03:05:49',2,'2006-02-15 21:30:53'), +(10155,'2005-07-31 22:31:43',3176,235,'2005-08-07 02:43:43',1,'2006-02-15 21:30:53'), +(10156,'2005-07-31 22:36:00',141,179,'2005-08-02 00:03:00',2,'2006-02-15 21:30:53'), +(10157,'2005-07-31 22:38:48',2960,232,'2005-08-01 21:38:48',1,'2006-02-15 21:30:53'), +(10158,'2005-07-31 22:40:31',1626,393,'2005-08-08 18:25:31',2,'2006-02-15 21:30:53'), +(10159,'2005-07-31 22:54:30',1174,515,'2005-08-03 00:43:30',2,'2006-02-15 21:30:53'), +(10160,'2005-07-31 23:07:40',863,295,'2005-08-05 23:34:40',1,'2006-02-15 21:30:53'), +(10161,'2005-07-31 23:09:41',2651,120,'2005-08-02 20:46:41',2,'2006-02-15 21:30:53'), +(10162,'2005-07-31 23:11:01',1327,475,'2005-08-07 01:52:01',2,'2006-02-15 21:30:53'), +(10163,'2005-07-31 23:12:34',2811,425,'2005-08-01 22:47:34',2,'2006-02-15 21:30:53'), +(10164,'2005-07-31 23:17:57',1405,89,'2005-08-05 19:43:57',1,'2006-02-15 21:30:53'), +(10165,'2005-07-31 23:21:23',3476,50,'2005-08-06 18:06:23',1,'2006-02-15 21:30:53'), +(10166,'2005-07-31 23:22:20',4304,484,'2005-08-07 18:06:20',2,'2006-02-15 21:30:53'), +(10167,'2005-07-31 23:24:31',1222,129,'2005-08-06 17:42:31',2,'2006-02-15 21:30:53'), +(10168,'2005-07-31 23:25:24',4548,570,'2005-08-02 19:03:24',1,'2006-02-15 21:30:53'), +(10169,'2005-07-31 23:27:13',2675,57,'2005-08-05 20:32:13',2,'2006-02-15 21:30:53'), +(10170,'2005-07-31 23:27:31',804,41,'2005-08-08 04:53:31',2,'2006-02-15 21:30:53'), +(10171,'2005-07-31 23:29:05',1367,401,'2005-08-03 19:39:05',1,'2006-02-15 21:30:53'), +(10172,'2005-07-31 23:29:51',2506,426,'2005-08-09 01:57:51',1,'2006-02-15 21:30:53'), +(10173,'2005-07-31 23:36:59',2527,326,'2005-08-08 20:20:59',2,'2006-02-15 21:30:53'), +(10174,'2005-07-31 23:40:08',2459,359,'2005-08-06 21:08:08',2,'2006-02-15 21:30:53'), +(10175,'2005-07-31 23:40:11',3672,137,'2005-08-09 02:22:11',1,'2006-02-15 21:30:53'), +(10176,'2005-07-31 23:40:35',1181,19,'2005-08-09 00:46:35',2,'2006-02-15 21:30:53'), +(10177,'2005-07-31 23:42:33',2242,279,'2005-08-03 01:30:33',2,'2006-02-15 21:30:53'), +(10178,'2005-07-31 23:43:04',1582,491,'2005-08-03 00:43:04',1,'2006-02-15 21:30:53'), +(10179,'2005-07-31 23:49:54',2136,131,'2005-08-01 20:46:54',2,'2006-02-15 21:30:53'), +(10180,'2005-07-31 23:57:43',757,50,'2005-08-09 04:04:43',2,'2006-02-15 21:30:53'), +(10181,'2005-08-01 00:00:44',3111,113,'2005-08-04 19:33:44',1,'2006-02-15 21:30:53'), +(10182,'2005-08-01 00:08:01',4112,578,'2005-08-09 18:14:01',2,'2006-02-15 21:30:53'), +(10183,'2005-08-01 00:08:01',4319,377,'2005-08-09 20:41:01',1,'2006-02-15 21:30:53'), +(10184,'2005-08-01 00:09:33',2785,77,'2005-08-05 04:12:33',2,'2006-02-15 21:30:53'), +(10185,'2005-08-01 00:12:11',1266,64,'2005-08-03 03:03:11',1,'2006-02-15 21:30:53'), +(10186,'2005-08-01 00:12:36',4563,294,'2005-08-07 05:08:36',1,'2006-02-15 21:30:53'), +(10187,'2005-08-01 00:15:49',1629,400,'2005-08-05 01:00:49',2,'2006-02-15 21:30:53'), +(10188,'2005-08-01 00:19:41',1221,331,'2005-08-08 00:19:41',2,'2006-02-15 21:30:53'), +(10189,'2005-08-01 00:25:00',616,509,'2005-08-03 06:01:00',2,'2006-02-15 21:30:53'), +(10190,'2005-08-01 00:27:53',4411,138,'2005-08-01 20:32:53',2,'2006-02-15 21:30:53'), +(10191,'2005-08-01 00:28:38',1131,196,'2005-08-06 02:23:38',1,'2006-02-15 21:30:53'), +(10192,'2005-08-01 00:33:00',1632,569,'2005-08-05 03:37:00',2,'2006-02-15 21:30:53'), +(10193,'2005-08-01 00:33:27',2036,358,'2005-08-07 20:15:27',1,'2006-02-15 21:30:53'), +(10194,'2005-08-01 00:33:52',1447,290,'2005-08-06 04:50:52',2,'2006-02-15 21:30:53'), +(10195,'2005-08-01 00:34:42',2691,396,'2005-08-08 05:04:42',2,'2006-02-15 21:30:53'), +(10196,'2005-08-01 00:34:51',3070,199,'2005-08-05 03:43:51',1,'2006-02-15 21:30:53'), +(10197,'2005-08-01 00:35:25',1186,127,'2005-08-07 06:04:25',2,'2006-02-15 21:30:53'), +(10198,'2005-08-01 00:36:15',1297,366,'2005-08-07 06:18:15',2,'2006-02-15 21:30:53'), +(10199,'2005-08-01 00:38:55',3665,526,'2005-08-05 03:41:55',1,'2006-02-15 21:30:53'), +(10200,'2005-08-01 00:39:05',580,421,'2005-08-05 01:07:05',1,'2006-02-15 21:30:53'), +(10201,'2005-08-01 00:42:18',3649,299,'2005-08-08 20:49:18',2,'2006-02-15 21:30:53'), +(10202,'2005-08-01 00:43:18',1099,306,'2005-08-08 23:26:18',1,'2006-02-15 21:30:53'), +(10203,'2005-08-01 00:45:27',1096,157,'2005-08-04 22:45:27',2,'2006-02-15 21:30:53'), +(10204,'2005-08-01 00:47:39',764,572,'2005-08-05 01:11:39',1,'2006-02-15 21:30:53'), +(10205,'2005-08-01 00:48:24',33,87,'2005-08-06 23:53:24',1,'2006-02-15 21:30:53'), +(10206,'2005-08-01 00:52:40',4479,90,'2005-08-10 02:36:40',2,'2006-02-15 21:30:53'), +(10207,'2005-08-01 00:53:01',2925,334,'2005-08-05 05:51:01',2,'2006-02-15 21:30:53'), +(10208,'2005-08-01 00:54:51',3324,246,'2005-08-04 22:39:51',2,'2006-02-15 21:30:53'), +(10209,'2005-08-01 00:56:47',2429,303,'2005-08-03 19:58:47',2,'2006-02-15 21:30:53'), +(10210,'2005-08-01 00:58:52',49,391,'2005-08-10 01:16:52',1,'2006-02-15 21:30:53'), +(10211,'2005-08-01 01:01:16',810,530,'2005-08-10 01:31:16',1,'2006-02-15 21:30:53'), +(10212,'2005-08-01 01:01:35',3728,324,'2005-08-02 23:02:35',1,'2006-02-15 21:30:53'), +(10213,'2005-08-01 01:03:18',1462,106,'2005-08-09 20:07:18',1,'2006-02-15 21:30:53'), +(10214,'2005-08-01 01:04:15',648,597,'2005-08-01 19:31:15',2,'2006-02-15 21:30:53'), +(10215,'2005-08-01 01:04:28',838,345,'2005-08-09 21:43:28',2,'2006-02-15 21:30:53'), +(10216,'2005-08-01 01:06:27',3603,436,'2005-08-08 22:41:27',2,'2006-02-15 21:30:53'), +(10217,'2005-08-01 01:07:27',1193,389,'2005-08-09 00:42:27',1,'2006-02-15 21:30:53'), +(10218,'2005-08-01 01:09:44',3886,101,'2005-08-05 20:08:44',1,'2006-02-15 21:30:53'), +(10219,'2005-08-01 01:10:33',2262,505,'2005-08-10 02:45:33',2,'2006-02-15 21:30:53'), +(10220,'2005-08-01 01:13:22',3920,294,'2005-08-04 22:57:22',2,'2006-02-15 21:30:53'), +(10221,'2005-08-01 01:16:50',3051,373,'2005-08-03 05:35:50',2,'2006-02-15 21:30:53'), +(10222,'2005-08-01 01:17:42',1214,295,'2005-08-08 02:45:42',1,'2006-02-15 21:30:53'), +(10223,'2005-08-01 01:23:15',1370,522,'2005-08-02 19:39:15',1,'2006-02-15 21:30:53'), +(10224,'2005-08-01 01:31:56',1443,587,'2005-08-05 21:21:56',2,'2006-02-15 21:30:53'), +(10225,'2005-08-01 01:38:40',3131,498,'2005-08-06 20:00:40',1,'2006-02-15 21:30:53'), +(10226,'2005-08-01 01:40:04',3067,107,'2005-08-08 01:02:04',1,'2006-02-15 21:30:53'), +(10227,'2005-08-01 01:42:22',872,571,'2005-08-09 23:45:22',2,'2006-02-15 21:30:53'), +(10228,'2005-08-01 01:43:18',1742,106,'2005-08-06 22:10:18',2,'2006-02-15 21:30:53'), +(10229,'2005-08-01 01:45:26',3459,175,'2005-08-10 06:21:26',1,'2006-02-15 21:30:53'), +(10230,'2005-08-01 01:49:36',76,398,'2005-08-05 01:29:36',2,'2006-02-15 21:30:53'), +(10231,'2005-08-01 01:50:49',1056,511,'2005-08-06 03:12:49',1,'2006-02-15 21:30:53'), +(10232,'2005-08-01 01:50:55',586,512,'2005-08-03 04:12:55',1,'2006-02-15 21:30:53'), +(10233,'2005-08-01 01:54:23',4571,459,'2005-08-10 00:23:23',2,'2006-02-15 21:30:53'), +(10234,'2005-08-01 01:56:20',1641,207,'2005-08-09 01:51:20',2,'2006-02-15 21:30:53'), +(10235,'2005-08-01 01:57:48',2850,30,'2005-08-10 07:38:48',2,'2006-02-15 21:30:53'), +(10236,'2005-08-01 02:05:34',3754,470,'2005-08-01 23:40:34',1,'2006-02-15 21:30:53'), +(10237,'2005-08-01 02:07:32',432,313,'2005-08-07 03:54:32',1,'2006-02-15 21:30:53'), +(10238,'2005-08-01 02:08:05',561,192,'2005-08-02 01:52:05',1,'2006-02-15 21:30:53'), +(10239,'2005-08-01 02:09:22',1232,467,'2005-08-04 01:35:22',2,'2006-02-15 21:30:53'), +(10240,'2005-08-01 02:09:33',4494,109,'2005-08-07 02:22:33',2,'2006-02-15 21:30:53'), +(10241,'2005-08-01 02:12:25',1526,161,'2005-08-08 00:37:25',1,'2006-02-15 21:30:53'), +(10242,'2005-08-01 02:18:12',1825,342,'2005-08-02 22:32:12',2,'2006-02-15 21:30:53'), +(10243,'2005-08-01 02:18:46',2236,132,'2005-08-06 21:45:46',1,'2006-02-15 21:30:53'), +(10244,'2005-08-01 02:20:01',567,51,'2005-08-06 23:06:01',2,'2006-02-15 21:30:53'), +(10245,'2005-08-01 02:24:09',2880,163,'2005-08-02 02:31:09',1,'2006-02-15 21:30:53'), +(10246,'2005-08-01 02:29:50',3598,261,'2005-08-09 01:17:50',2,'2006-02-15 21:30:53'), +(10247,'2005-08-01 02:34:06',4035,189,'2005-08-09 02:33:06',1,'2006-02-15 21:30:53'), +(10248,'2005-08-01 02:35:28',2146,298,'2005-08-08 02:24:28',2,'2006-02-15 21:30:53'), +(10249,'2005-08-01 02:35:39',135,437,'2005-08-06 06:50:39',1,'2006-02-15 21:30:53'), +(10250,'2005-08-01 02:38:42',3706,116,'2005-08-07 03:59:42',2,'2006-02-15 21:30:53'), +(10251,'2005-08-01 02:39:12',2986,39,'2005-08-06 03:51:12',1,'2006-02-15 21:30:53'), +(10252,'2005-08-01 02:39:39',2380,86,'2005-08-10 00:40:39',2,'2006-02-15 21:30:53'), +(10253,'2005-08-01 02:39:49',1406,101,'2005-08-08 04:28:49',2,'2006-02-15 21:30:53'), +(10254,'2005-08-01 02:42:03',2238,416,'2005-08-05 23:31:03',1,'2006-02-15 21:30:53'), +(10255,'2005-08-01 02:46:13',4558,459,'2005-08-03 05:54:13',1,'2006-02-15 21:30:53'), +(10256,'2005-08-01 02:47:11',780,58,'2005-08-05 05:21:11',2,'2006-02-15 21:30:53'), +(10257,'2005-08-01 02:49:43',2403,543,'2005-08-04 04:45:43',2,'2006-02-15 21:30:53'), +(10258,'2005-08-01 02:51:09',2062,469,'2005-08-08 23:57:09',2,'2006-02-15 21:30:53'), +(10259,'2005-08-01 02:52:05',1881,566,'2005-08-03 20:54:05',1,'2006-02-15 21:30:53'), +(10260,'2005-08-01 02:58:07',2864,461,'2005-08-05 02:06:07',2,'2006-02-15 21:30:53'), +(10261,'2005-08-01 02:58:27',2346,50,'2005-08-01 21:55:27',2,'2006-02-15 21:30:53'), +(10262,'2005-08-01 03:01:26',3842,181,'2005-08-08 08:03:26',2,'2006-02-15 21:30:53'), +(10263,'2005-08-01 03:02:48',2420,415,'2005-08-08 02:16:48',2,'2006-02-15 21:30:53'), +(10264,'2005-08-01 03:03:12',1374,297,'2005-08-08 00:34:12',2,'2006-02-15 21:30:53'), +(10265,'2005-08-01 03:05:04',3338,510,'2005-08-08 08:09:04',1,'2006-02-15 21:30:53'), +(10266,'2005-08-01 03:05:59',476,49,'2005-08-06 06:23:59',1,'2006-02-15 21:30:53'), +(10267,'2005-08-01 03:07:26',3883,72,'2005-08-07 22:49:26',1,'2006-02-15 21:30:53'), +(10268,'2005-08-01 03:08:56',2755,138,'2005-08-08 02:41:56',1,'2006-02-15 21:30:53'), +(10269,'2005-08-01 03:09:26',2537,39,'2005-08-02 00:01:26',1,'2006-02-15 21:30:53'), +(10270,'2005-08-01 03:10:24',2025,168,'2005-08-07 03:04:24',2,'2006-02-15 21:30:53'), +(10271,'2005-08-01 03:13:39',3692,6,'2005-08-07 23:40:39',1,'2006-02-15 21:30:53'), +(10272,'2005-08-01 03:14:34',128,273,'2005-08-10 05:56:34',2,'2006-02-15 21:30:53'), +(10273,'2005-08-01 03:14:47',1458,212,'2005-08-07 03:59:47',1,'2006-02-15 21:30:53'), +(10274,'2005-08-01 03:16:51',2916,375,'2005-08-04 22:22:51',2,'2006-02-15 21:30:53'), +(10275,'2005-08-01 03:20:08',669,463,'2005-08-08 06:48:08',1,'2006-02-15 21:30:53'), +(10276,'2005-08-01 03:22:23',2201,48,'2005-08-03 07:59:23',1,'2006-02-15 21:30:53'), +(10277,'2005-08-01 03:22:41',1472,176,'2005-08-05 05:07:41',1,'2006-02-15 21:30:53'), +(10278,'2005-08-01 03:25:27',2497,154,'2005-08-08 07:52:27',1,'2006-02-15 21:30:53'), +(10279,'2005-08-01 03:26:44',3794,247,'2005-08-07 22:35:44',2,'2006-02-15 21:30:53'), +(10280,'2005-08-01 03:27:15',1457,542,'2005-08-07 23:01:15',2,'2006-02-15 21:30:53'), +(10281,'2005-08-01 03:28:33',1047,549,'2005-08-02 05:06:33',1,'2006-02-15 21:30:53'), +(10282,'2005-08-01 03:29:10',617,472,'2005-08-07 06:16:10',1,'2006-02-15 21:30:53'), +(10283,'2005-08-01 03:29:45',4237,462,'2005-08-07 04:19:45',1,'2006-02-15 21:30:53'), +(10284,'2005-08-01 03:33:19',2879,20,'2005-08-09 07:58:19',1,'2006-02-15 21:30:53'), +(10285,'2005-08-01 03:35:11',4523,167,'2005-08-05 03:55:11',2,'2006-02-15 21:30:53'), +(10286,'2005-08-01 03:35:58',498,532,'2005-08-10 05:17:58',2,'2006-02-15 21:30:53'), +(10287,'2005-08-01 03:37:01',125,141,'2005-08-05 23:03:01',2,'2006-02-15 21:30:53'), +(10288,'2005-08-01 03:38:42',572,63,'2005-08-06 04:34:42',1,'2006-02-15 21:30:53'), +(10289,'2005-08-01 03:39:48',3153,566,'2005-08-08 02:56:48',1,'2006-02-15 21:30:53'), +(10290,'2005-08-01 03:39:50',4542,364,'2005-08-08 22:29:50',2,'2006-02-15 21:30:53'), +(10291,'2005-08-01 03:39:57',2056,420,'2005-08-05 02:05:57',2,'2006-02-15 21:30:53'), +(10292,'2005-08-01 03:42:40',2562,340,'2005-08-01 23:36:40',2,'2006-02-15 21:30:53'), +(10293,'2005-08-01 03:44:26',1570,258,'2005-08-05 04:16:26',2,'2006-02-15 21:30:53'), +(10294,'2005-08-01 03:48:12',528,28,'2005-08-09 01:19:12',2,'2006-02-15 21:30:53'), +(10295,'2005-08-01 03:53:49',2355,123,'2005-08-10 03:56:49',1,'2006-02-15 21:30:53'), +(10296,'2005-08-01 04:04:37',1958,573,'2005-08-01 23:59:37',1,'2006-02-15 21:30:53'), +(10297,'2005-08-01 04:05:04',2795,289,'2005-08-09 06:08:04',1,'2006-02-15 21:30:53'), +(10298,'2005-08-01 04:06:03',1383,323,'2005-08-05 05:59:03',2,'2006-02-15 21:30:53'), +(10299,'2005-08-01 04:08:04',1125,369,'2005-08-04 08:11:04',1,'2006-02-15 21:30:53'), +(10300,'2005-08-01 04:08:11',4334,207,'2005-08-04 00:24:11',1,'2006-02-15 21:30:53'), +(10301,'2005-08-01 04:09:37',3072,583,'2005-08-04 23:14:37',2,'2006-02-15 21:30:53'), +(10302,'2005-08-01 04:12:08',1043,144,'2005-08-01 22:12:08',2,'2006-02-15 21:30:53'), +(10303,'2005-08-01 04:13:33',936,479,'2005-08-06 02:16:33',2,'2006-02-15 21:30:53'), +(10304,'2005-08-01 04:14:12',1538,346,'2005-08-07 22:38:12',1,'2006-02-15 21:30:53'), +(10305,'2005-08-01 04:16:16',2946,160,'2005-08-07 23:47:16',1,'2006-02-15 21:30:53'), +(10306,'2005-08-01 04:19:18',2819,541,'2005-08-09 02:16:18',1,'2006-02-15 21:30:53'), +(10307,'2005-08-01 04:21:54',975,332,'2005-08-04 09:24:54',2,'2006-02-15 21:30:53'), +(10308,'2005-08-01 04:22:49',588,240,'2005-08-09 04:39:49',2,'2006-02-15 21:30:53'), +(10309,'2005-08-01 04:24:18',1505,156,'2005-08-09 08:32:18',2,'2006-02-15 21:30:53'), +(10310,'2005-08-01 04:24:47',9,271,'2005-08-04 05:36:47',2,'2006-02-15 21:30:53'), +(10311,'2005-08-01 04:27:59',4211,151,'2005-08-02 08:51:59',1,'2006-02-15 21:30:53'), +(10312,'2005-08-01 04:29:06',4389,172,'2005-08-08 04:52:06',2,'2006-02-15 21:30:53'), +(10313,'2005-08-01 04:29:29',1194,80,'2005-08-04 08:12:29',2,'2006-02-15 21:30:53'), +(10314,'2005-08-01 04:31:18',1548,252,'2005-08-06 01:49:18',2,'2006-02-15 21:30:53'), +(10315,'2005-08-01 04:34:45',895,258,'2005-08-07 05:27:45',1,'2006-02-15 21:30:53'), +(10316,'2005-08-01 04:34:57',1907,469,'2005-08-06 02:34:57',2,'2006-02-15 21:30:53'), +(10317,'2005-08-01 04:35:34',110,561,'2005-08-06 02:27:34',2,'2006-02-15 21:30:53'), +(10318,'2005-08-01 04:36:53',885,548,'2005-08-04 00:54:53',1,'2006-02-15 21:30:53'), +(10319,'2005-08-01 04:37:19',3120,394,'2005-08-05 03:18:19',2,'2006-02-15 21:30:53'), +(10320,'2005-08-01 04:39:26',2298,152,'2005-08-08 06:01:26',1,'2006-02-15 21:30:53'), +(10321,'2005-08-01 04:40:02',4512,177,'2005-08-03 04:18:02',1,'2006-02-15 21:30:53'), +(10322,'2005-08-01 04:44:13',1543,535,'2005-08-08 00:20:13',2,'2006-02-15 21:30:53'), +(10323,'2005-08-01 04:44:58',3539,577,'2005-08-06 07:56:58',1,'2006-02-15 21:30:53'), +(10324,'2005-08-01 04:49:06',523,25,'2005-08-09 08:04:06',2,'2006-02-15 21:30:53'), +(10325,'2005-08-01 04:52:12',2749,258,'2005-08-08 09:31:12',1,'2006-02-15 21:30:53'), +(10326,'2005-08-01 04:55:34',3856,325,'2005-08-02 05:18:34',1,'2006-02-15 21:30:53'), +(10327,'2005-08-01 04:55:35',328,382,'2005-08-07 08:17:35',2,'2006-02-15 21:30:53'), +(10328,'2005-08-01 04:56:10',1191,85,'2005-08-01 23:22:10',2,'2006-02-15 21:30:53'), +(10329,'2005-08-01 04:56:13',2289,302,'2005-08-03 03:54:13',1,'2006-02-15 21:30:53'), +(10330,'2005-08-01 04:57:04',1580,7,'2005-08-07 23:00:04',2,'2006-02-15 21:30:53'), +(10331,'2005-08-01 04:57:14',4152,575,'2005-08-07 06:46:14',1,'2006-02-15 21:30:53'), +(10332,'2005-08-01 04:57:32',642,258,'2005-08-10 02:42:32',2,'2006-02-15 21:30:53'), +(10333,'2005-08-01 04:58:32',3955,499,'2005-08-04 00:51:32',2,'2006-02-15 21:30:53'), +(10334,'2005-08-01 04:58:42',3387,445,'2005-08-09 02:00:42',1,'2006-02-15 21:30:53'), +(10335,'2005-08-01 04:59:30',323,33,'2005-08-05 02:26:30',1,'2006-02-15 21:30:53'), +(10336,'2005-08-01 04:59:53',1091,370,'2005-08-03 08:05:53',2,'2006-02-15 21:30:53'), +(10337,'2005-08-01 05:01:46',307,451,'2005-08-10 02:41:46',1,'2006-02-15 21:30:53'), +(10338,'2005-08-01 05:03:03',1295,339,'2005-08-09 05:13:03',2,'2006-02-15 21:30:53'), +(10339,'2005-08-01 05:05:50',615,363,'2005-08-10 07:15:50',2,'2006-02-15 21:30:53'), +(10340,'2005-08-01 05:07:03',3608,568,'2005-08-06 01:03:03',1,'2006-02-15 21:30:53'), +(10341,'2005-08-01 05:10:02',3304,445,'2005-08-07 11:01:02',1,'2006-02-15 21:30:53'), +(10342,'2005-08-01 05:11:11',332,140,'2005-08-10 00:27:11',1,'2006-02-15 21:30:53'), +(10343,'2005-08-01 05:15:47',2627,267,'2005-08-02 04:48:47',2,'2006-02-15 21:30:53'), +(10344,'2005-08-01 05:18:23',3673,367,'2005-08-06 05:20:23',1,'2006-02-15 21:30:53'), +(10345,'2005-08-01 05:18:56',3985,42,'2005-08-04 01:34:56',2,'2006-02-15 21:30:53'), +(10346,'2005-08-01 05:19:23',4192,476,'2005-08-06 01:00:23',1,'2006-02-15 21:30:53'), +(10347,'2005-08-01 05:20:03',953,574,'2005-08-04 10:03:03',1,'2006-02-15 21:30:53'), +(10348,'2005-08-01 05:23:00',2076,14,'2005-08-04 01:12:00',2,'2006-02-15 21:30:53'), +(10349,'2005-08-01 05:27:13',114,295,'2005-08-08 10:15:13',1,'2006-02-15 21:30:53'), +(10350,'2005-08-01 05:30:05',2067,78,'2005-08-05 09:59:05',1,'2006-02-15 21:30:53'), +(10351,'2005-08-01 05:32:13',3725,173,'2005-08-08 09:48:13',1,'2006-02-15 21:30:53'), +(10352,'2005-08-01 05:44:36',1288,564,'2005-08-05 07:15:36',2,'2006-02-15 21:30:53'), +(10353,'2005-08-01 05:46:33',1446,535,'2005-08-08 09:14:33',1,'2006-02-15 21:30:53'), +(10354,'2005-08-01 05:47:10',1680,416,'2005-08-06 09:04:10',1,'2006-02-15 21:30:53'), +(10355,'2005-08-01 05:47:37',2158,161,'2005-08-02 09:28:37',2,'2006-02-15 21:30:53'), +(10356,'2005-08-01 05:49:17',313,56,'2005-08-10 05:57:17',1,'2006-02-15 21:30:53'), +(10357,'2005-08-01 05:49:49',3102,475,'2005-08-04 02:34:49',2,'2006-02-15 21:30:53'), +(10358,'2005-08-01 05:50:07',3039,517,'2005-08-03 08:18:07',1,'2006-02-15 21:30:53'), +(10359,'2005-08-01 05:52:21',259,369,'2005-08-06 05:52:21',2,'2006-02-15 21:30:53'), +(10360,'2005-08-01 05:52:53',1129,443,'2005-08-05 10:55:53',1,'2006-02-15 21:30:53'), +(10361,'2005-08-01 05:53:49',318,529,'2005-08-10 00:42:49',2,'2006-02-15 21:30:53'), +(10362,'2005-08-01 05:55:13',72,181,'2005-08-10 10:23:13',2,'2006-02-15 21:30:53'), +(10363,'2005-08-01 06:01:52',320,174,'2005-08-05 03:56:52',1,'2006-02-15 21:30:53'), +(10364,'2005-08-01 06:06:49',1842,317,'2005-08-09 06:05:49',2,'2006-02-15 21:30:53'), +(10365,'2005-08-01 06:08:44',4032,442,'2005-08-06 02:07:44',1,'2006-02-15 21:30:53'), +(10366,'2005-08-01 06:09:37',2654,119,'2005-08-05 03:19:37',1,'2006-02-15 21:30:53'), +(10367,'2005-08-01 06:12:19',3408,242,'2005-08-04 12:11:19',2,'2006-02-15 21:30:53'), +(10368,'2005-08-01 06:13:38',3535,593,'2005-08-08 04:40:38',2,'2006-02-15 21:30:53'), +(10369,'2005-08-01 06:13:44',2534,424,'2005-08-07 09:46:44',1,'2006-02-15 21:30:53'), +(10370,'2005-08-01 06:18:04',4358,546,'2005-08-05 01:41:04',2,'2006-02-15 21:30:53'), +(10371,'2005-08-01 06:20:29',923,327,'2005-08-04 00:31:29',2,'2006-02-15 21:30:53'), +(10372,'2005-08-01 06:23:48',635,419,'2005-08-06 03:47:48',1,'2006-02-15 21:30:53'), +(10373,'2005-08-01 06:24:26',1754,588,'2005-08-02 12:07:26',1,'2006-02-15 21:30:53'), +(10374,'2005-08-01 06:25:27',4351,307,'2005-08-07 05:44:27',2,'2006-02-15 21:30:53'), +(10375,'2005-08-01 06:26:22',857,202,'2005-08-06 02:51:22',2,'2006-02-15 21:30:53'), +(10376,'2005-08-01 06:27:13',4194,474,'2005-08-07 06:11:13',2,'2006-02-15 21:30:53'), +(10377,'2005-08-01 06:28:28',2401,559,'2005-08-10 05:45:28',2,'2006-02-15 21:30:53'), +(10378,'2005-08-01 06:30:04',4110,113,'2005-08-06 09:10:04',1,'2006-02-15 21:30:53'), +(10379,'2005-08-01 06:34:29',3103,141,'2005-08-06 07:49:29',1,'2006-02-15 21:30:53'), +(10380,'2005-08-01 06:34:36',2225,533,'2005-08-02 09:08:36',1,'2006-02-15 21:30:53'), +(10381,'2005-08-01 06:36:37',522,412,'2005-08-05 11:17:37',1,'2006-02-15 21:30:53'), +(10382,'2005-08-01 06:36:45',4455,242,'2005-08-02 06:06:45',1,'2006-02-15 21:30:53'), +(10383,'2005-08-01 06:37:16',4166,592,'2005-08-03 07:36:16',2,'2006-02-15 21:30:53'), +(10384,'2005-08-01 06:39:14',2622,366,'2005-08-02 03:06:14',1,'2006-02-15 21:30:53'), +(10385,'2005-08-01 06:39:55',778,179,'2005-08-06 02:16:55',1,'2006-02-15 21:30:53'), +(10386,'2005-08-01 06:42:20',1568,26,'2005-08-07 06:12:20',2,'2006-02-15 21:30:53'), +(10387,'2005-08-01 06:42:31',1651,87,'2005-08-08 07:44:31',1,'2006-02-15 21:30:53'), +(10388,'2005-08-01 06:42:44',3180,99,'2005-08-09 11:43:44',2,'2006-02-15 21:30:53'), +(10389,'2005-08-01 06:46:43',3534,346,'2005-08-08 07:07:43',2,'2006-02-15 21:30:53'), +(10390,'2005-08-01 06:46:48',1489,502,'2005-08-09 02:55:48',2,'2006-02-15 21:30:53'), +(10391,'2005-08-01 06:49:05',2203,357,'2005-08-04 01:51:05',2,'2006-02-15 21:30:53'), +(10392,'2005-08-01 06:50:26',3017,12,'2005-08-10 10:52:26',1,'2006-02-15 21:30:53'), +(10393,'2005-08-01 06:52:50',808,258,'2005-08-05 08:45:50',1,'2006-02-15 21:30:53'), +(10394,'2005-08-01 06:58:17',1655,128,'2005-08-05 02:09:17',1,'2006-02-15 21:30:53'), +(10395,'2005-08-01 07:08:22',279,129,'2005-08-05 08:00:22',2,'2006-02-15 21:30:53'), +(10396,'2005-08-01 07:08:46',2982,284,'2005-08-08 03:47:46',1,'2006-02-15 21:30:53'), +(10397,'2005-08-01 07:11:27',4168,504,'2005-08-03 07:51:27',1,'2006-02-15 21:30:53'), +(10398,'2005-08-01 07:11:49',4306,174,'2005-08-04 05:54:49',1,'2006-02-15 21:30:53'), +(10399,'2005-08-01 07:13:39',2515,204,'2005-08-10 06:56:39',1,'2006-02-15 21:30:53'), +(10400,'2005-08-01 07:18:24',3897,132,'2005-08-10 08:38:24',1,'2006-02-15 21:30:53'), +(10401,'2005-08-01 07:27:09',1560,564,'2005-08-02 01:38:09',1,'2006-02-15 21:30:53'), +(10402,'2005-08-01 07:27:19',274,410,'2005-08-04 12:30:19',1,'2006-02-15 21:30:53'), +(10403,'2005-08-01 07:30:45',1968,494,'2005-08-03 03:03:45',2,'2006-02-15 21:30:53'), +(10404,'2005-08-01 07:31:25',2580,253,'2005-08-07 09:23:25',1,'2006-02-15 21:30:53'), +(10405,'2005-08-01 07:35:25',3641,463,'2005-08-05 05:38:25',2,'2006-02-15 21:30:53'), +(10406,'2005-08-01 07:37:05',2614,391,'2005-08-02 06:11:05',1,'2006-02-15 21:30:53'), +(10407,'2005-08-01 07:38:07',543,101,'2005-08-02 05:38:07',2,'2006-02-15 21:30:53'), +(10408,'2005-08-01 07:42:10',4144,334,'2005-08-09 02:29:10',2,'2006-02-15 21:30:53'), +(10409,'2005-08-01 07:49:15',2804,449,'2005-08-02 13:42:15',2,'2006-02-15 21:30:53'), +(10410,'2005-08-01 07:53:29',3901,247,'2005-08-10 08:56:29',1,'2006-02-15 21:30:53'), +(10411,'2005-08-01 07:56:32',1946,522,'2005-08-10 04:58:32',2,'2006-02-15 21:30:53'), +(10412,'2005-08-01 07:57:16',1555,325,'2005-08-04 11:44:16',2,'2006-02-15 21:30:53'), +(10413,'2005-08-01 07:59:39',1018,376,'2005-08-08 03:55:39',1,'2006-02-15 21:30:53'), +(10414,'2005-08-01 08:03:55',1271,361,'2005-08-04 08:44:55',2,'2006-02-15 21:30:53'), +(10415,'2005-08-01 08:05:59',2597,591,'2005-08-04 13:46:59',1,'2006-02-15 21:30:53'), +(10416,'2005-08-01 08:08:39',2629,449,'2005-08-10 09:26:39',2,'2006-02-15 21:30:53'), +(10417,'2005-08-01 08:10:36',3675,427,'2005-08-02 03:42:36',2,'2006-02-15 21:30:53'), +(10418,'2005-08-01 08:11:07',1692,248,'2005-08-04 11:12:07',2,'2006-02-15 21:30:53'), +(10419,'2005-08-01 08:13:22',415,66,'2005-08-06 04:45:22',2,'2006-02-15 21:30:53'), +(10420,'2005-08-01 08:13:53',3490,354,'2005-08-06 08:05:53',2,'2006-02-15 21:30:53'), +(10421,'2005-08-01 08:14:10',925,262,'2005-08-03 05:56:10',2,'2006-02-15 21:30:53'), +(10422,'2005-08-01 08:17:11',37,166,'2005-08-10 10:08:11',2,'2006-02-15 21:30:53'), +(10423,'2005-08-01 08:19:53',739,7,'2005-08-08 10:25:53',1,'2006-02-15 21:30:53'), +(10424,'2005-08-01 08:22:54',1921,88,'2005-08-06 13:44:54',1,'2006-02-15 21:30:53'), +(10425,'2005-08-01 08:23:25',322,447,'2005-08-05 04:29:25',1,'2006-02-15 21:30:53'), +(10426,'2005-08-01 08:26:08',1325,305,'2005-08-09 04:09:08',1,'2006-02-15 21:30:53'), +(10427,'2005-08-01 08:30:11',2978,356,'2005-08-07 06:18:11',2,'2006-02-15 21:30:53'), +(10428,'2005-08-01 08:30:11',4245,46,'2005-08-02 09:30:11',2,'2006-02-15 21:30:53'), +(10429,'2005-08-01 08:34:18',3894,511,'2005-08-10 12:38:18',1,'2006-02-15 21:30:53'), +(10430,'2005-08-01 08:37:06',1150,471,'2005-08-03 07:25:06',1,'2006-02-15 21:30:53'), +(10431,'2005-08-01 08:41:54',1074,138,'2005-08-07 09:44:54',2,'2006-02-15 21:30:53'), +(10432,'2005-08-01 08:43:21',4238,450,'2005-08-08 13:09:21',2,'2006-02-15 21:30:53'), +(10433,'2005-08-01 08:45:56',1508,517,'2005-08-05 09:46:56',2,'2006-02-15 21:30:53'), +(10434,'2005-08-01 08:47:00',4073,73,'2005-08-06 08:34:00',1,'2006-02-15 21:30:53'), +(10435,'2005-08-01 08:50:51',1934,392,'2005-08-08 12:23:51',1,'2006-02-15 21:30:53'), +(10436,'2005-08-01 08:50:59',4026,455,'2005-08-04 05:23:59',1,'2006-02-15 21:30:53'), +(10437,'2005-08-01 08:51:04',14,1,'2005-08-10 12:12:04',1,'2006-02-15 21:30:53'), +(10438,'2005-08-01 08:53:04',4217,316,'2005-08-09 06:39:04',2,'2006-02-15 21:30:53'), +(10439,'2005-08-01 08:54:26',2711,332,'2005-08-08 14:04:26',1,'2006-02-15 21:30:53'), +(10440,'2005-08-01 08:54:32',842,299,'2005-08-02 10:59:32',2,'2006-02-15 21:30:53'), +(10441,'2005-08-01 08:55:56',4122,176,'2005-08-03 10:26:56',2,'2006-02-15 21:30:53'), +(10442,'2005-08-01 08:58:08',4570,40,'2005-08-05 09:07:08',2,'2006-02-15 21:30:53'), +(10443,'2005-08-01 09:01:04',1965,403,'2005-08-04 09:07:04',2,'2006-02-15 21:30:53'), +(10444,'2005-08-01 09:01:40',3242,106,'2005-08-09 11:31:40',1,'2006-02-15 21:30:53'), +(10445,'2005-08-01 09:02:15',3582,211,'2005-08-08 10:26:15',2,'2006-02-15 21:30:53'), +(10446,'2005-08-01 09:02:17',2671,95,'2005-08-04 10:00:17',2,'2006-02-15 21:30:53'), +(10447,'2005-08-01 09:04:58',1198,241,'2005-08-08 06:24:58',1,'2006-02-15 21:30:53'), +(10448,'2005-08-01 09:09:31',2254,311,'2005-08-02 09:55:31',2,'2006-02-15 21:30:53'), +(10449,'2005-08-01 09:09:59',1395,213,'2005-08-05 11:25:59',1,'2006-02-15 21:30:53'), +(10450,'2005-08-01 09:10:03',234,380,'2005-08-08 12:34:03',1,'2006-02-15 21:30:53'), +(10451,'2005-08-01 09:11:25',2435,9,'2005-08-03 12:37:25',2,'2006-02-15 21:30:53'), +(10452,'2005-08-01 09:11:36',1973,442,'2005-08-04 13:28:36',2,'2006-02-15 21:30:53'), +(10453,'2005-08-01 09:13:27',1531,188,'2005-08-08 11:34:27',2,'2006-02-15 21:30:53'), +(10454,'2005-08-01 09:14:00',397,9,'2005-08-04 04:52:00',2,'2006-02-15 21:30:53'), +(10455,'2005-08-01 09:15:00',4197,99,'2005-08-05 13:35:00',1,'2006-02-15 21:30:53'), +(10456,'2005-08-01 09:17:21',4339,81,'2005-08-06 10:30:21',1,'2006-02-15 21:30:53'), +(10457,'2005-08-01 09:17:34',3052,121,'2005-08-06 07:28:34',2,'2006-02-15 21:30:53'), +(10458,'2005-08-01 09:19:48',1500,309,'2005-08-02 10:16:48',1,'2006-02-15 21:30:53'), +(10459,'2005-08-01 09:20:09',201,131,'2005-08-03 11:36:09',1,'2006-02-15 21:30:53'), +(10460,'2005-08-01 09:31:00',4504,197,'2005-08-09 09:28:00',1,'2006-02-15 21:30:53'), +(10461,'2005-08-01 09:32:53',3212,270,'2005-08-09 10:19:53',1,'2006-02-15 21:30:53'), +(10462,'2005-08-01 09:38:28',4526,193,'2005-08-02 09:52:28',2,'2006-02-15 21:30:53'), +(10463,'2005-08-01 09:39:43',1301,291,'2005-08-10 03:42:43',1,'2006-02-15 21:30:53'), +(10464,'2005-08-01 09:43:14',464,427,'2005-08-06 09:01:14',1,'2006-02-15 21:30:53'), +(10465,'2005-08-01 09:45:25',4384,534,'2005-08-10 09:08:25',2,'2006-02-15 21:30:53'), +(10466,'2005-08-01 09:45:26',138,2,'2005-08-06 06:28:26',1,'2006-02-15 21:30:53'), +(10467,'2005-08-01 09:45:58',3773,412,'2005-08-09 10:17:58',2,'2006-02-15 21:30:53'), +(10468,'2005-08-01 09:48:29',2115,129,'2005-08-05 09:58:29',2,'2006-02-15 21:30:53'), +(10469,'2005-08-01 09:51:11',3054,466,'2005-08-05 06:53:11',2,'2006-02-15 21:30:53'), +(10470,'2005-08-01 09:52:26',82,523,'2005-08-05 06:52:26',1,'2006-02-15 21:30:53'), +(10471,'2005-08-01 09:52:37',1684,135,'2005-08-07 09:40:37',2,'2006-02-15 21:30:53'), +(10472,'2005-08-01 09:54:41',506,405,'2005-08-04 13:31:41',1,'2006-02-15 21:30:53'), +(10473,'2005-08-01 09:56:24',3034,329,'2005-08-10 12:36:24',2,'2006-02-15 21:30:53'), +(10474,'2005-08-01 10:01:42',4482,488,'2005-08-08 12:32:42',1,'2006-02-15 21:30:53'), +(10475,'2005-08-01 10:03:17',2931,115,'2005-08-10 15:50:17',2,'2006-02-15 21:30:53'), +(10476,'2005-08-01 10:03:20',1993,263,'2005-08-10 06:52:20',1,'2006-02-15 21:30:53'), +(10477,'2005-08-01 10:04:17',235,506,'2005-08-06 11:32:17',2,'2006-02-15 21:30:53'), +(10478,'2005-08-01 10:09:06',3885,417,'2005-08-06 05:05:06',1,'2006-02-15 21:30:53'), +(10479,'2005-08-01 10:11:25',4580,275,'2005-08-06 04:52:25',1,'2006-02-15 21:30:53'), +(10480,'2005-08-01 10:13:41',553,560,'2005-08-03 10:27:41',1,'2006-02-15 21:30:53'), +(10481,'2005-08-01 10:17:26',229,170,'2005-08-09 08:50:26',1,'2006-02-15 21:30:53'), +(10482,'2005-08-01 10:17:47',48,358,'2005-08-02 15:04:47',2,'2006-02-15 21:30:53'), +(10483,'2005-08-01 10:19:45',1521,129,'2005-08-04 09:29:45',1,'2006-02-15 21:30:53'), +(10484,'2005-08-01 10:19:53',1908,400,'2005-08-03 05:36:53',1,'2006-02-15 21:30:53'), +(10485,'2005-08-01 10:20:34',29,50,'2005-08-09 09:20:34',1,'2006-02-15 21:30:53'), +(10486,'2005-08-01 10:23:43',2454,527,'2005-08-05 07:11:43',2,'2006-02-15 21:30:53'), +(10487,'2005-08-01 10:26:34',1121,577,'2005-08-07 16:11:34',1,'2006-02-15 21:30:53'), +(10488,'2005-08-01 10:27:27',297,423,'2005-08-02 11:05:27',2,'2006-02-15 21:30:53'), +(10489,'2005-08-01 10:27:42',4067,54,'2005-08-07 12:56:42',1,'2006-02-15 21:30:53'), +(10490,'2005-08-01 10:37:11',4365,329,'2005-08-03 10:01:11',2,'2006-02-15 21:30:53'), +(10491,'2005-08-01 10:38:27',3091,24,'2005-08-04 04:55:27',2,'2006-02-15 21:30:53'), +(10492,'2005-08-01 10:42:28',1669,334,'2005-08-02 07:05:28',1,'2006-02-15 21:30:53'), +(10493,'2005-08-01 10:43:12',2375,285,'2005-08-07 08:13:12',2,'2006-02-15 21:30:53'), +(10494,'2005-08-01 10:45:21',847,188,'2005-08-02 12:34:21',1,'2006-02-15 21:30:53'), +(10495,'2005-08-01 10:45:51',2232,41,'2005-08-06 08:11:51',1,'2006-02-15 21:30:53'), +(10496,'2005-08-01 10:53:16',411,525,'2005-08-08 10:34:16',2,'2006-02-15 21:30:53'), +(10497,'2005-08-01 10:55:59',1060,499,'2005-08-07 11:15:59',1,'2006-02-15 21:30:53'), +(10498,'2005-08-01 10:56:48',2672,355,'2005-08-03 15:46:48',2,'2006-02-15 21:30:53'), +(10499,'2005-08-01 11:00:20',3293,459,'2005-08-10 11:52:20',2,'2006-02-15 21:30:53'), +(10500,'2005-08-01 11:01:01',469,477,'2005-08-06 08:59:01',2,'2006-02-15 21:30:53'), +(10501,'2005-08-01 11:04:46',1792,351,'2005-08-02 12:10:46',2,'2006-02-15 21:30:53'), +(10502,'2005-08-01 11:06:39',3193,357,'2005-08-05 07:11:39',1,'2006-02-15 21:30:53'), +(10503,'2005-08-01 11:07:44',1823,357,'2005-08-08 08:22:44',1,'2006-02-15 21:30:53'), +(10504,'2005-08-01 11:10:55',3345,530,'2005-08-10 10:16:55',1,'2006-02-15 21:30:53'), +(10505,'2005-08-01 11:13:59',2977,426,'2005-08-05 07:20:59',2,'2006-02-15 21:30:53'), +(10506,'2005-08-01 11:16:05',1171,216,'2005-08-03 05:37:05',2,'2006-02-15 21:30:53'), +(10507,'2005-08-01 11:22:20',367,45,'2005-08-04 13:18:20',2,'2006-02-15 21:30:53'), +(10508,'2005-08-01 11:23:27',3890,431,'2005-08-02 10:17:27',1,'2006-02-15 21:30:53'), +(10509,'2005-08-01 11:25:28',96,504,'2005-08-10 09:19:28',2,'2006-02-15 21:30:53'), +(10510,'2005-08-01 11:28:30',410,259,'2005-08-07 11:37:30',1,'2006-02-15 21:30:53'), +(10511,'2005-08-01 11:32:16',3874,487,'2005-08-04 09:38:16',1,'2006-02-15 21:30:53'), +(10512,'2005-08-01 11:36:19',3294,438,'2005-08-09 06:52:19',2,'2006-02-15 21:30:53'), +(10513,'2005-08-01 11:37:34',4057,105,'2005-08-02 17:15:34',2,'2006-02-15 21:30:53'), +(10514,'2005-08-01 11:39:26',1512,7,'2005-08-03 07:53:26',2,'2006-02-15 21:30:53'), +(10515,'2005-08-01 11:41:33',874,383,'2005-08-08 06:23:33',2,'2006-02-15 21:30:53'), +(10516,'2005-08-01 11:41:55',3924,449,'2005-08-08 17:16:55',1,'2006-02-15 21:30:53'), +(10517,'2005-08-01 11:41:57',2299,199,'2005-08-05 06:14:57',1,'2006-02-15 21:30:53'), +(10518,'2005-08-01 11:44:08',4444,556,'2005-08-07 07:58:08',2,'2006-02-15 21:30:53'), +(10519,'2005-08-01 11:44:13',1967,456,'2005-08-09 16:57:13',1,'2006-02-15 21:30:53'), +(10520,'2005-08-01 11:45:58',4396,543,'2005-08-06 17:28:58',2,'2006-02-15 21:30:53'), +(10521,'2005-08-01 11:46:17',662,346,'2005-08-05 11:06:17',2,'2006-02-15 21:30:53'), +(10522,'2005-08-01 11:48:51',4159,254,'2005-08-05 12:40:51',1,'2006-02-15 21:30:53'), +(10523,'2005-08-01 11:52:32',2408,34,'2005-08-02 10:47:32',1,'2006-02-15 21:30:53'), +(10524,'2005-08-01 11:53:12',4116,38,'2005-08-08 10:40:12',2,'2006-02-15 21:30:53'), +(10525,'2005-08-01 11:53:17',3811,36,'2005-08-07 07:24:17',1,'2006-02-15 21:30:53'), +(10526,'2005-08-01 11:55:33',27,14,'2005-08-08 16:42:33',1,'2006-02-15 21:30:53'), +(10527,'2005-08-01 11:55:54',4530,431,'2005-08-05 15:56:54',2,'2006-02-15 21:30:53'), +(10528,'2005-08-01 11:56:22',4401,564,'2005-08-07 07:13:22',1,'2006-02-15 21:30:53'), +(10529,'2005-08-01 12:00:02',851,444,'2005-08-08 16:18:02',1,'2006-02-15 21:30:53'), +(10530,'2005-08-01 12:01:17',3216,520,'2005-08-06 09:55:17',2,'2006-02-15 21:30:53'), +(10531,'2005-08-01 12:06:30',3846,459,'2005-08-04 10:23:30',2,'2006-02-15 21:30:53'), +(10532,'2005-08-01 12:06:35',746,191,'2005-08-07 16:04:35',2,'2006-02-15 21:30:53'), +(10533,'2005-08-01 12:14:16',1924,593,'2005-08-09 17:13:16',2,'2006-02-15 21:30:53'), +(10534,'2005-08-01 12:15:11',4354,397,'2005-08-04 17:06:11',1,'2006-02-15 21:30:53'), +(10535,'2005-08-01 12:21:13',1838,284,'2005-08-09 08:58:13',1,'2006-02-15 21:30:53'), +(10536,'2005-08-01 12:21:53',1251,86,'2005-08-04 13:08:53',2,'2006-02-15 21:30:53'), +(10537,'2005-08-01 12:22:28',2140,418,'2005-08-08 07:27:28',1,'2006-02-15 21:30:53'), +(10538,'2005-08-01 12:22:41',686,37,'2005-08-02 10:31:41',2,'2006-02-15 21:30:53'), +(10539,'2005-08-01 12:23:00',3341,232,'2005-08-07 10:25:00',2,'2006-02-15 21:30:53'), +(10540,'2005-08-01 12:24:42',4121,84,'2005-08-03 08:39:42',2,'2006-02-15 21:30:53'), +(10541,'2005-08-01 12:24:54',1413,234,'2005-08-03 16:18:54',1,'2006-02-15 21:30:53'), +(10542,'2005-08-01 12:32:23',1102,465,'2005-08-08 16:26:23',1,'2006-02-15 21:30:53'), +(10543,'2005-08-01 12:36:09',624,29,'2005-08-07 07:42:09',1,'2006-02-15 21:30:53'), +(10544,'2005-08-01 12:36:21',3195,589,'2005-08-07 12:25:21',2,'2006-02-15 21:30:53'), +(10545,'2005-08-01 12:37:46',4230,425,'2005-08-04 16:02:46',2,'2006-02-15 21:30:53'), +(10546,'2005-08-01 12:44:17',1589,362,'2005-08-06 16:26:17',2,'2006-02-15 21:30:53'), +(10547,'2005-08-01 12:44:17',1707,403,'2005-08-08 06:53:17',1,'2006-02-15 21:30:53'), +(10548,'2005-08-01 12:44:32',1914,85,'2005-08-07 09:17:32',1,'2006-02-15 21:30:53'), +(10549,'2005-08-01 12:46:39',3719,61,'2005-08-06 17:17:39',1,'2006-02-15 21:30:53'), +(10550,'2005-08-01 12:46:52',1980,129,'2005-08-05 16:48:52',2,'2006-02-15 21:30:53'), +(10551,'2005-08-01 12:48:55',2974,294,'2005-08-10 16:11:55',1,'2006-02-15 21:30:53'), +(10552,'2005-08-01 12:49:44',4263,119,'2005-08-04 16:20:44',2,'2006-02-15 21:30:53'), +(10553,'2005-08-01 12:54:06',2768,415,'2005-08-06 15:27:06',1,'2006-02-15 21:30:53'), +(10554,'2005-08-01 12:56:19',3220,209,'2005-08-03 09:44:19',2,'2006-02-15 21:30:53'), +(10555,'2005-08-01 12:56:38',377,487,'2005-08-10 18:19:38',1,'2006-02-15 21:30:53'), +(10556,'2005-08-01 12:58:42',144,117,'2005-08-03 07:18:42',2,'2006-02-15 21:30:53'), +(10557,'2005-08-01 12:59:24',240,385,'2005-08-04 17:08:24',2,'2006-02-15 21:30:53'), +(10558,'2005-08-01 13:00:20',4399,117,'2005-08-05 16:31:20',1,'2006-02-15 21:30:53'), +(10559,'2005-08-01 13:02:58',2861,174,'2005-08-09 10:03:58',2,'2006-02-15 21:30:53'), +(10560,'2005-08-01 13:04:57',1534,427,'2005-08-05 18:25:57',2,'2006-02-15 21:30:53'), +(10561,'2005-08-01 13:05:35',2195,8,'2005-08-04 08:34:35',2,'2006-02-15 21:30:53'), +(10562,'2005-08-01 13:05:52',1947,178,'2005-08-02 17:05:52',1,'2006-02-15 21:30:53'), +(10563,'2005-08-01 13:06:03',1885,214,'2005-08-09 08:39:03',2,'2006-02-15 21:30:53'), +(10564,'2005-08-01 13:07:34',4469,387,'2005-08-06 15:14:34',2,'2006-02-15 21:30:53'), +(10565,'2005-08-01 13:08:27',347,165,'2005-08-02 10:30:27',1,'2006-02-15 21:30:53'), +(10566,'2005-08-01 13:12:11',3988,269,'2005-08-05 11:16:11',2,'2006-02-15 21:30:53'), +(10567,'2005-08-01 13:16:01',2744,212,'2005-08-05 14:59:01',1,'2006-02-15 21:30:53'), +(10568,'2005-08-01 13:17:28',3009,130,'2005-08-08 17:04:28',1,'2006-02-15 21:30:53'), +(10569,'2005-08-01 13:18:23',611,179,'2005-08-10 13:33:23',1,'2006-02-15 21:30:53'), +(10570,'2005-08-01 13:23:06',369,21,'2005-08-05 15:30:06',2,'2006-02-15 21:30:53'), +(10571,'2005-08-01 13:25:30',3660,308,'2005-08-02 16:43:30',2,'2006-02-15 21:30:53'), +(10572,'2005-08-01 13:26:53',1239,386,'2005-08-07 18:47:53',2,'2006-02-15 21:30:53'), +(10573,'2005-08-01 13:27:24',4252,585,'2005-08-04 15:09:24',2,'2006-02-15 21:30:53'), +(10574,'2005-08-01 13:36:51',679,287,'2005-08-10 13:25:51',2,'2006-02-15 21:30:53'), +(10575,'2005-08-01 13:41:41',4447,251,'2005-08-08 11:30:41',1,'2006-02-15 21:30:53'), +(10576,'2005-08-01 13:46:02',1876,180,'2005-08-05 10:19:02',1,'2006-02-15 21:30:53'), +(10577,'2005-08-01 13:46:38',2240,428,'2005-08-06 11:35:38',2,'2006-02-15 21:30:53'), +(10578,'2005-08-01 13:48:02',3704,113,'2005-08-07 13:40:02',1,'2006-02-15 21:30:53'), +(10579,'2005-08-01 13:48:22',4068,270,'2005-08-07 11:51:22',1,'2006-02-15 21:30:53'), +(10580,'2005-08-01 13:51:14',590,234,'2005-08-08 11:49:14',2,'2006-02-15 21:30:53'), +(10581,'2005-08-01 13:52:30',2801,217,'2005-08-10 19:11:30',1,'2006-02-15 21:30:53'), +(10582,'2005-08-01 13:54:22',2536,233,'2005-08-05 16:46:22',2,'2006-02-15 21:30:53'), +(10583,'2005-08-01 13:54:35',704,125,'2005-08-03 18:21:35',1,'2006-02-15 21:30:53'), +(10584,'2005-08-01 13:58:47',715,86,'2005-08-06 13:38:47',2,'2006-02-15 21:30:53'), +(10585,'2005-08-01 14:00:42',2670,228,'2005-08-09 11:42:42',2,'2006-02-15 21:30:53'), +(10586,'2005-08-01 14:00:59',3306,583,'2005-08-06 10:00:59',2,'2006-02-15 21:30:53'), +(10587,'2005-08-01 14:03:38',3000,521,'2005-08-08 19:59:38',2,'2006-02-15 21:30:53'), +(10588,'2005-08-01 14:10:21',2384,49,'2005-08-03 13:47:21',2,'2006-02-15 21:30:53'), +(10589,'2005-08-01 14:11:09',4280,375,'2005-08-09 09:28:09',2,'2006-02-15 21:30:53'), +(10590,'2005-08-01 14:11:53',740,78,'2005-08-04 20:04:53',1,'2006-02-15 21:30:53'), +(10591,'2005-08-01 14:12:29',3360,52,'2005-08-04 08:46:29',2,'2006-02-15 21:30:53'), +(10592,'2005-08-01 14:13:00',829,265,'2005-08-09 13:03:00',2,'2006-02-15 21:30:53'), +(10593,'2005-08-01 14:13:19',1886,144,'2005-08-06 08:48:19',2,'2006-02-15 21:30:53'), +(10594,'2005-08-01 14:14:59',1826,53,'2005-08-07 10:48:59',2,'2006-02-15 21:30:53'), +(10595,'2005-08-01 14:16:28',966,137,'2005-08-03 10:37:28',1,'2006-02-15 21:30:53'), +(10596,'2005-08-01 14:18:57',803,112,'2005-08-07 14:59:57',2,'2006-02-15 21:30:53'), +(10597,'2005-08-01 14:19:48',3292,3,'2005-08-08 20:01:48',1,'2006-02-15 21:30:53'), +(10598,'2005-08-01 14:23:36',2341,397,'2005-08-10 14:07:36',2,'2006-02-15 21:30:53'), +(10599,'2005-08-01 14:23:58',2422,271,'2005-08-06 10:45:58',2,'2006-02-15 21:30:53'), +(10600,'2005-08-01 14:25:21',3900,294,'2005-08-06 18:00:21',1,'2006-02-15 21:30:53'), +(10601,'2005-08-01 14:25:40',2843,420,'2005-08-10 09:07:40',1,'2006-02-15 21:30:53'), +(10602,'2005-08-01 14:30:23',1506,111,'2005-08-07 15:20:23',1,'2006-02-15 21:30:53'), +(10603,'2005-08-01 14:30:35',4024,394,'2005-08-05 11:13:35',2,'2006-02-15 21:30:53'), +(10604,'2005-08-01 14:35:08',2833,250,'2005-08-08 10:19:08',2,'2006-02-15 21:30:53'), +(10605,'2005-08-01 14:36:26',680,341,'2005-08-06 12:04:26',2,'2006-02-15 21:30:53'), +(10606,'2005-08-01 14:39:15',81,335,'2005-08-08 11:31:15',1,'2006-02-15 21:30:53'), +(10607,'2005-08-01 14:44:43',3999,438,'2005-08-02 16:39:43',2,'2006-02-15 21:30:53'), +(10608,'2005-08-01 14:48:41',3835,381,'2005-08-04 17:32:41',2,'2006-02-15 21:30:53'), +(10609,'2005-08-01 14:48:45',2587,5,'2005-08-04 13:41:45',2,'2006-02-15 21:30:53'), +(10610,'2005-08-01 14:49:41',1865,396,'2005-08-03 13:07:41',1,'2006-02-15 21:30:53'), +(10611,'2005-08-01 14:53:52',957,135,'2005-08-07 09:15:52',2,'2006-02-15 21:30:53'), +(10612,'2005-08-01 14:55:31',287,554,'2005-08-06 19:01:31',1,'2006-02-15 21:30:53'), +(10613,'2005-08-01 14:56:14',4357,527,'2005-08-07 09:33:14',1,'2006-02-15 21:30:53'), +(10614,'2005-08-01 14:57:00',232,533,'2005-08-10 09:31:00',2,'2006-02-15 21:30:53'), +(10615,'2005-08-01 14:58:14',2639,34,'2005-08-02 13:38:14',1,'2006-02-15 21:30:53'), +(10616,'2005-08-01 14:59:50',1094,20,'2005-08-07 11:38:50',2,'2006-02-15 21:30:53'), +(10617,'2005-08-01 15:05:52',4344,476,'2005-08-09 18:54:52',1,'2006-02-15 21:30:53'), +(10618,'2005-08-01 15:06:38',3729,386,'2005-08-06 15:52:38',2,'2006-02-15 21:30:53'), +(10619,'2005-08-01 15:07:04',2189,132,'2005-08-07 11:42:04',2,'2006-02-15 21:30:53'), +(10620,'2005-08-01 15:09:17',3064,183,'2005-08-09 13:58:17',1,'2006-02-15 21:30:53'), +(10621,'2005-08-01 15:10:26',1650,172,'2005-08-04 10:58:26',1,'2006-02-15 21:30:53'), +(10622,'2005-08-01 15:12:00',3044,171,'2005-08-08 14:09:00',1,'2006-02-15 21:30:53'), +(10623,'2005-08-01 15:22:38',4426,494,'2005-08-03 11:03:38',2,'2006-02-15 21:30:53'), +(10624,'2005-08-01 15:27:05',3801,74,'2005-08-05 19:50:05',1,'2006-02-15 21:30:53'), +(10625,'2005-08-01 15:27:10',3022,5,'2005-08-02 13:16:10',1,'2006-02-15 21:30:53'), +(10626,'2005-08-01 15:32:41',1042,122,'2005-08-05 18:08:41',1,'2006-02-15 21:30:53'), +(10627,'2005-08-01 15:33:03',2026,472,'2005-08-02 21:26:03',1,'2006-02-15 21:30:53'), +(10628,'2005-08-01 15:33:19',427,285,'2005-08-05 17:27:19',1,'2006-02-15 21:30:53'), +(10629,'2005-08-01 15:33:32',997,575,'2005-08-08 12:40:32',2,'2006-02-15 21:30:53'), +(10630,'2005-08-01 15:34:46',2335,39,'2005-08-03 10:50:46',1,'2006-02-15 21:30:53'), +(10631,'2005-08-01 15:35:14',2712,304,'2005-08-03 10:48:14',1,'2006-02-15 21:30:53'), +(10632,'2005-08-01 15:36:56',1290,406,'2005-08-05 17:32:56',1,'2006-02-15 21:30:53'), +(10633,'2005-08-01 15:37:17',3125,475,'2005-08-10 14:30:17',2,'2006-02-15 21:30:53'), +(10634,'2005-08-01 15:37:48',445,592,'2005-08-02 12:11:48',2,'2006-02-15 21:30:53'), +(10635,'2005-08-01 15:37:58',547,52,'2005-08-07 11:15:58',2,'2006-02-15 21:30:53'), +(10636,'2005-08-01 15:40:35',621,385,'2005-08-05 18:46:35',1,'2006-02-15 21:30:53'), +(10637,'2005-08-01 15:44:09',1243,161,'2005-08-04 14:42:09',1,'2006-02-15 21:30:53'), +(10638,'2005-08-01 15:44:20',2239,132,'2005-08-08 16:05:20',2,'2006-02-15 21:30:53'), +(10639,'2005-08-01 15:44:43',1015,39,'2005-08-10 13:51:43',1,'2006-02-15 21:30:53'), +(10640,'2005-08-01 15:44:51',3020,375,'2005-08-06 15:52:51',1,'2006-02-15 21:30:53'), +(10641,'2005-08-01 15:44:57',972,285,'2005-08-04 18:15:57',2,'2006-02-15 21:30:53'), +(10642,'2005-08-01 15:45:11',2573,294,'2005-08-02 20:13:11',1,'2006-02-15 21:30:53'), +(10643,'2005-08-01 15:48:33',3853,495,'2005-08-06 20:24:33',2,'2006-02-15 21:30:53'), +(10644,'2005-08-01 15:52:00',4374,7,'2005-08-08 16:08:00',1,'2006-02-15 21:30:53'), +(10645,'2005-08-01 15:52:01',3864,130,'2005-08-09 18:58:01',1,'2006-02-15 21:30:53'), +(10646,'2005-08-01 15:57:55',1752,209,'2005-08-02 19:08:55',1,'2006-02-15 21:30:53'), +(10647,'2005-08-01 16:08:46',3137,115,'2005-08-06 20:37:46',2,'2006-02-15 21:30:53'), +(10648,'2005-08-01 16:08:52',691,270,'2005-08-05 20:17:52',1,'2006-02-15 21:30:53'), +(10649,'2005-08-01 16:11:40',1032,278,'2005-08-06 14:09:40',2,'2006-02-15 21:30:53'), +(10650,'2005-08-01 16:18:45',2306,242,'2005-08-09 16:29:45',1,'2006-02-15 21:30:53'), +(10651,'2005-08-01 16:20:22',1541,404,'2005-08-03 15:53:22',1,'2006-02-15 21:30:53'), +(10652,'2005-08-01 16:24:08',1633,241,'2005-08-03 16:00:08',2,'2006-02-15 21:30:53'), +(10653,'2005-08-01 16:28:07',1190,75,'2005-08-07 21:22:07',2,'2006-02-15 21:30:53'), +(10654,'2005-08-01 16:31:35',2522,399,'2005-08-05 12:04:35',2,'2006-02-15 21:30:53'), +(10655,'2005-08-01 16:33:27',1399,385,'2005-08-08 17:17:27',2,'2006-02-15 21:30:53'), +(10656,'2005-08-01 16:38:04',2571,80,'2005-08-09 19:37:04',2,'2006-02-15 21:30:53'), +(10657,'2005-08-01 16:38:44',3075,590,'2005-08-06 16:05:44',2,'2006-02-15 21:30:53'), +(10658,'2005-08-01 16:39:18',2943,469,'2005-08-09 18:17:18',2,'2006-02-15 21:30:53'), +(10659,'2005-08-01 16:40:34',786,238,'2005-08-09 21:00:34',2,'2006-02-15 21:30:53'), +(10660,'2005-08-01 16:48:01',2518,253,'2005-08-07 14:42:01',2,'2006-02-15 21:30:53'), +(10661,'2005-08-01 16:48:31',3311,177,'2005-08-02 21:02:31',1,'2006-02-15 21:30:53'), +(10662,'2005-08-01 16:50:57',2857,151,'2005-08-03 17:19:57',1,'2006-02-15 21:30:53'), +(10663,'2005-08-01 16:51:08',4258,433,'2005-08-08 21:17:08',2,'2006-02-15 21:30:53'), +(10664,'2005-08-01 16:51:15',3167,337,'2005-08-04 19:14:15',2,'2006-02-15 21:30:53'), +(10665,'2005-08-01 16:56:17',3594,133,'2005-08-03 18:58:17',1,'2006-02-15 21:30:53'), +(10666,'2005-08-01 16:56:36',1945,197,'2005-08-07 22:23:36',2,'2006-02-15 21:30:53'), +(10667,'2005-08-01 16:58:22',3937,340,'2005-08-10 15:41:22',1,'2006-02-15 21:30:53'), +(10668,'2005-08-01 17:00:27',2085,58,'2005-08-02 14:49:27',2,'2006-02-15 21:30:53'), +(10669,'2005-08-01 17:03:28',2121,559,'2005-08-08 21:34:28',2,'2006-02-15 21:30:53'), +(10670,'2005-08-01 17:07:16',156,512,'2005-08-10 11:46:16',2,'2006-02-15 21:30:53'), +(10671,'2005-08-01 17:09:59',4430,10,'2005-08-09 21:36:59',1,'2006-02-15 21:30:53'), +(10672,'2005-08-01 17:10:54',3674,375,'2005-08-07 12:19:54',2,'2006-02-15 21:30:53'), +(10673,'2005-08-01 17:11:51',2735,528,'2005-08-03 13:32:51',1,'2006-02-15 21:30:53'), +(10674,'2005-08-01 17:11:52',1962,340,'2005-08-08 19:34:52',1,'2006-02-15 21:30:53'), +(10675,'2005-08-01 17:11:57',649,522,'2005-08-10 17:18:57',1,'2006-02-15 21:30:53'), +(10676,'2005-08-01 17:14:15',629,79,'2005-08-04 12:34:15',1,'2006-02-15 21:30:53'), +(10677,'2005-08-01 17:24:35',4350,483,'2005-08-04 20:03:35',1,'2006-02-15 21:30:53'), +(10678,'2005-08-01 17:26:24',4438,56,'2005-08-05 22:55:24',1,'2006-02-15 21:30:53'), +(10679,'2005-08-01 17:27:58',4437,198,'2005-08-08 16:06:58',1,'2006-02-15 21:30:53'), +(10680,'2005-08-01 17:28:05',2498,60,'2005-08-04 19:34:05',1,'2006-02-15 21:30:53'), +(10681,'2005-08-01 17:30:35',1468,119,'2005-08-02 14:48:35',2,'2006-02-15 21:30:53'), +(10682,'2005-08-01 17:32:53',4557,18,'2005-08-06 15:49:53',2,'2006-02-15 21:30:53'), +(10683,'2005-08-01 17:33:03',244,246,'2005-08-04 23:12:03',1,'2006-02-15 21:30:53'), +(10684,'2005-08-01 17:47:00',1985,244,'2005-08-09 15:00:00',2,'2006-02-15 21:30:53'), +(10685,'2005-08-01 17:49:38',2029,200,'2005-08-07 21:04:38',2,'2006-02-15 21:30:53'), +(10686,'2005-08-01 17:51:21',2542,150,'2005-08-03 19:01:21',1,'2006-02-15 21:30:53'), +(10687,'2005-08-01 17:53:02',3191,16,'2005-08-05 19:16:02',2,'2006-02-15 21:30:53'), +(10688,'2005-08-01 17:53:43',3161,449,'2005-08-09 21:50:43',1,'2006-02-15 21:30:53'), +(10689,'2005-08-01 18:04:18',1442,568,'2005-08-05 21:17:18',2,'2006-02-15 21:30:53'), +(10690,'2005-08-01 18:05:54',807,80,'2005-08-10 21:43:54',2,'2006-02-15 21:30:53'), +(10691,'2005-08-01 18:09:53',4281,276,'2005-08-03 16:32:53',1,'2006-02-15 21:30:53'), +(10692,'2005-08-01 18:12:35',371,596,'2005-08-07 13:06:35',1,'2006-02-15 21:30:53'), +(10693,'2005-08-01 18:14:14',2387,444,'2005-08-03 22:00:14',2,'2006-02-15 21:30:53'), +(10694,'2005-08-01 18:15:07',3429,98,'2005-08-10 15:38:07',1,'2006-02-15 21:30:53'), +(10695,'2005-08-01 18:16:20',3612,374,'2005-08-03 12:21:20',2,'2006-02-15 21:30:53'), +(10696,'2005-08-01 18:18:13',47,120,'2005-08-04 14:09:13',1,'2006-02-15 21:30:53'), +(10697,'2005-08-01 18:20:23',3115,519,'2005-08-07 21:18:23',1,'2006-02-15 21:30:53'), +(10698,'2005-08-01 18:24:41',2738,135,'2005-08-08 18:59:41',2,'2006-02-15 21:30:53'), +(10699,'2005-08-01 18:24:51',1029,125,'2005-08-06 20:18:51',1,'2006-02-15 21:30:53'), +(10700,'2005-08-01 18:26:31',4259,203,'2005-08-07 19:51:31',2,'2006-02-15 21:30:53'), +(10701,'2005-08-01 18:28:17',3958,538,'2005-08-09 21:51:17',1,'2006-02-15 21:30:53'), +(10702,'2005-08-01 18:34:59',2802,560,'2005-08-09 23:44:59',2,'2006-02-15 21:30:53'), +(10703,'2005-08-01 18:37:39',1818,181,'2005-08-07 23:50:39',2,'2006-02-15 21:30:53'), +(10704,'2005-08-01 18:38:02',960,594,'2005-08-08 20:19:02',1,'2006-02-15 21:30:53'), +(10705,'2005-08-01 18:38:54',4338,381,'2005-08-04 18:00:54',1,'2006-02-15 21:30:53'), +(10706,'2005-08-01 18:41:28',1183,147,'2005-08-10 14:30:28',1,'2006-02-15 21:30:53'), +(10707,'2005-08-01 18:41:34',1165,558,'2005-08-06 12:41:34',1,'2006-02-15 21:30:53'), +(10708,'2005-08-01 18:43:28',3978,567,'2005-08-09 15:24:28',1,'2006-02-15 21:30:53'), +(10709,'2005-08-01 18:43:57',282,418,'2005-08-06 13:17:57',2,'2006-02-15 21:30:53'), +(10710,'2005-08-01 18:44:36',3082,177,'2005-08-03 13:17:36',1,'2006-02-15 21:30:53'), +(10711,'2005-08-01 18:45:09',4278,400,'2005-08-02 19:47:09',2,'2006-02-15 21:30:53'), +(10712,'2005-08-01 18:47:56',1188,532,'2005-08-07 19:26:56',2,'2006-02-15 21:30:53'), +(10713,'2005-08-01 18:50:05',2030,369,'2005-08-05 00:43:05',2,'2006-02-15 21:30:53'), +(10714,'2005-08-01 18:51:29',1465,64,'2005-08-04 18:49:29',2,'2006-02-15 21:30:53'), +(10715,'2005-08-01 18:51:48',1054,386,'2005-08-06 14:44:48',1,'2006-02-15 21:30:53'), +(10716,'2005-08-01 18:53:48',3405,515,'2005-08-04 13:49:48',1,'2006-02-15 21:30:53'), +(10717,'2005-08-01 18:53:53',2934,365,'2005-08-05 21:28:53',1,'2006-02-15 21:30:53'), +(10718,'2005-08-01 18:55:38',2763,394,'2005-08-04 14:45:38',1,'2006-02-15 21:30:53'), +(10719,'2005-08-01 19:00:28',3861,188,'2005-08-07 17:04:28',1,'2006-02-15 21:30:53'), +(10720,'2005-08-01 19:04:33',3712,326,'2005-08-06 23:12:33',2,'2006-02-15 21:30:53'), +(10721,'2005-08-01 19:05:18',904,18,'2005-08-09 20:45:18',2,'2006-02-15 21:30:53'), +(10722,'2005-08-01 19:07:08',2849,90,'2005-08-04 14:09:08',2,'2006-02-15 21:30:53'), +(10723,'2005-08-01 19:10:49',2526,580,'2005-08-08 19:21:49',2,'2006-02-15 21:30:53'), +(10724,'2005-08-01 19:10:59',3425,576,'2005-08-07 18:44:59',1,'2006-02-15 21:30:53'), +(10725,'2005-08-01 19:11:04',4486,534,'2005-08-07 18:16:04',2,'2006-02-15 21:30:53'), +(10726,'2005-08-01 19:14:53',749,75,'2005-08-08 23:56:53',2,'2006-02-15 21:30:53'), +(10727,'2005-08-01 19:15:08',2049,16,'2005-08-03 13:52:08',1,'2006-02-15 21:30:53'), +(10728,'2005-08-01 19:15:09',3133,309,'2005-08-04 19:35:09',1,'2006-02-15 21:30:53'), +(10729,'2005-08-01 19:21:11',2918,595,'2005-08-07 21:20:11',2,'2006-02-15 21:30:53'), +(10730,'2005-08-01 19:21:42',1793,368,'2005-08-10 21:18:42',1,'2006-02-15 21:30:53'), +(10731,'2005-08-01 19:21:48',4248,278,'2005-08-08 22:01:48',2,'2006-02-15 21:30:53'), +(10732,'2005-08-01 19:25:18',2810,538,'2005-08-10 22:26:18',1,'2006-02-15 21:30:53'), +(10733,'2005-08-01 19:28:01',3980,560,'2005-08-09 18:41:01',1,'2006-02-15 21:30:53'), +(10734,'2005-08-01 19:28:47',1130,21,'2005-08-03 00:41:47',2,'2006-02-15 21:30:53'), +(10735,'2005-08-01 19:29:45',4061,544,'2005-08-02 19:50:45',2,'2006-02-15 21:30:53'), +(10736,'2005-08-01 19:30:21',2227,272,'2005-08-02 22:37:21',1,'2006-02-15 21:30:53'), +(10737,'2005-08-01 19:31:24',1773,149,'2005-08-10 19:17:24',1,'2006-02-15 21:30:53'), +(10738,'2005-08-01 19:39:08',544,377,'2005-08-10 20:37:08',1,'2006-02-15 21:30:53'), +(10739,'2005-08-01 19:46:11',3160,197,'2005-08-06 21:08:11',2,'2006-02-15 21:30:53'), +(10740,'2005-08-01 19:50:32',3215,144,'2005-08-07 23:25:32',1,'2006-02-15 21:30:53'), +(10741,'2005-08-01 19:52:52',3300,469,'2005-08-04 19:58:52',1,'2006-02-15 21:30:53'), +(10742,'2005-08-01 19:53:13',3658,416,'2005-08-10 15:05:13',1,'2006-02-15 21:30:53'), +(10743,'2005-08-01 19:55:09',4206,197,'2005-08-03 19:29:09',1,'2006-02-15 21:30:53'), +(10744,'2005-08-01 19:56:49',565,439,'2005-08-09 16:33:49',2,'2006-02-15 21:30:53'), +(10745,'2005-08-01 19:57:06',446,307,'2005-08-07 18:04:06',1,'2006-02-15 21:30:53'), +(10746,'2005-08-01 19:58:49',305,508,'2005-08-10 19:00:49',2,'2006-02-15 21:30:53'), +(10747,'2005-08-01 19:59:41',4527,266,'2005-08-10 00:00:41',2,'2006-02-15 21:30:53'), +(10748,'2005-08-01 20:01:24',3769,181,'2005-08-05 19:55:24',1,'2006-02-15 21:30:53'), +(10749,'2005-08-01 20:02:01',2953,214,'2005-08-03 14:20:01',1,'2006-02-15 21:30:53'), +(10750,'2005-08-01 20:06:00',3206,201,'2005-08-07 15:48:00',1,'2006-02-15 21:30:53'), +(10751,'2005-08-01 20:06:10',3257,518,'2005-08-10 22:36:10',2,'2006-02-15 21:30:53'), +(10752,'2005-08-01 20:08:49',3203,147,'2005-08-10 15:41:49',2,'2006-02-15 21:30:53'), +(10753,'2005-08-01 20:09:24',1557,273,'2005-08-09 19:31:24',1,'2006-02-15 21:30:53'), +(10754,'2005-08-01 20:12:33',2122,460,'2005-08-10 01:07:33',2,'2006-02-15 21:30:53'), +(10755,'2005-08-01 20:14:14',1217,239,'2005-08-07 01:04:14',1,'2006-02-15 21:30:53'), +(10756,'2005-08-01 20:17:03',4247,596,'2005-08-08 18:31:03',2,'2006-02-15 21:30:53'), +(10757,'2005-08-01 20:22:44',102,188,'2005-08-04 19:48:44',2,'2006-02-15 21:30:53'), +(10758,'2005-08-01 20:22:51',191,373,'2005-08-10 16:11:51',1,'2006-02-15 21:30:53'), +(10759,'2005-08-01 20:22:51',3528,256,'2005-08-07 22:07:51',1,'2006-02-15 21:30:53'), +(10760,'2005-08-01 20:25:20',1311,497,'2005-08-09 16:57:20',1,'2006-02-15 21:30:53'), +(10761,'2005-08-01 20:25:35',3967,36,'2005-08-08 15:20:35',2,'2006-02-15 21:30:53'), +(10762,'2005-08-01 20:28:39',1363,208,'2005-08-05 17:36:39',1,'2006-02-15 21:30:53'), +(10763,'2005-08-01 20:32:27',987,276,'2005-08-05 01:24:27',2,'2006-02-15 21:30:53'), +(10764,'2005-08-01 20:32:42',3808,357,'2005-08-03 22:14:42',2,'2006-02-15 21:30:53'), +(10765,'2005-08-01 20:34:51',566,337,'2005-08-04 00:02:51',1,'2006-02-15 21:30:53'), +(10766,'2005-08-01 20:36:29',947,420,'2005-08-04 00:30:29',1,'2006-02-15 21:30:53'), +(10767,'2005-08-01 20:37:23',2875,488,'2005-08-04 23:15:23',2,'2006-02-15 21:30:53'), +(10768,'2005-08-01 20:39:32',454,273,'2005-08-10 19:41:32',1,'2006-02-15 21:30:53'), +(10769,'2005-08-01 20:43:02',3222,348,'2005-08-05 02:32:02',1,'2006-02-15 21:30:53'), +(10770,'2005-08-01 20:45:39',2567,262,'2005-08-04 19:21:39',1,'2006-02-15 21:30:53'), +(10771,'2005-08-01 20:49:35',1274,485,'2005-08-10 16:58:35',1,'2006-02-15 21:30:53'), +(10772,'2005-08-01 20:51:10',132,485,'2005-08-10 15:50:10',1,'2006-02-15 21:30:53'), +(10773,'2005-08-01 20:53:45',3854,181,'2005-08-07 00:16:45',1,'2006-02-15 21:30:53'), +(10774,'2005-08-01 20:54:33',4231,407,'2005-08-08 20:59:33',2,'2006-02-15 21:30:53'), +(10775,'2005-08-01 20:59:52',4190,263,'2005-08-04 19:31:52',2,'2006-02-15 21:30:53'), +(10776,'2005-08-01 20:59:58',1598,565,'2005-08-10 20:33:58',2,'2006-02-15 21:30:53'), +(10777,'2005-08-01 21:03:50',3487,493,'2005-08-06 19:29:50',1,'2006-02-15 21:30:53'), +(10778,'2005-08-01 21:11:39',1939,220,'2005-08-02 22:59:39',2,'2006-02-15 21:30:53'), +(10779,'2005-08-01 21:11:54',2092,578,'2005-08-09 21:00:54',2,'2006-02-15 21:30:53'), +(10780,'2005-08-01 21:14:24',1450,51,'2005-08-07 16:32:24',2,'2006-02-15 21:30:53'), +(10781,'2005-08-01 21:22:41',1321,259,'2005-08-06 01:02:41',1,'2006-02-15 21:30:53'), +(10782,'2005-08-01 21:23:25',1507,577,'2005-08-03 20:15:25',2,'2006-02-15 21:30:53'), +(10783,'2005-08-01 21:23:37',1192,495,'2005-08-09 20:18:37',1,'2006-02-15 21:30:53'), +(10784,'2005-08-01 21:24:28',3494,208,'2005-08-09 19:23:28',1,'2006-02-15 21:30:53'), +(10785,'2005-08-01 21:24:55',2282,397,'2005-08-06 17:47:55',1,'2006-02-15 21:30:53'), +(10786,'2005-08-01 21:29:34',50,490,'2005-08-10 17:27:34',1,'2006-02-15 21:30:53'), +(10787,'2005-08-01 21:35:01',3246,127,'2005-08-10 23:30:01',1,'2006-02-15 21:30:53'), +(10788,'2005-08-01 21:37:10',3350,160,'2005-08-03 01:33:10',1,'2006-02-15 21:30:53'), +(10789,'2005-08-01 21:37:55',3298,403,'2005-08-07 17:01:55',2,'2006-02-15 21:30:53'), +(10790,'2005-08-01 21:38:37',3080,274,'2005-08-08 17:20:37',2,'2006-02-15 21:30:53'), +(10791,'2005-08-01 21:41:52',2061,338,'2005-08-04 03:28:52',2,'2006-02-15 21:30:53'), +(10792,'2005-08-01 21:44:24',1037,264,'2005-08-02 19:48:24',2,'2006-02-15 21:30:53'), +(10793,'2005-08-01 21:48:03',3018,225,'2005-08-10 19:16:03',1,'2006-02-15 21:30:53'), +(10794,'2005-08-01 21:51:15',889,27,'2005-08-10 18:51:15',2,'2006-02-15 21:30:53'), +(10795,'2005-08-01 21:56:37',2748,76,'2005-08-03 01:36:37',1,'2006-02-15 21:30:53'), +(10796,'2005-08-01 21:56:41',2113,534,'2005-08-05 01:09:41',1,'2006-02-15 21:30:53'), +(10797,'2005-08-01 22:02:51',1731,308,'2005-08-03 23:07:51',1,'2006-02-15 21:30:53'), +(10798,'2005-08-01 22:03:10',382,141,'2005-08-08 01:34:10',1,'2006-02-15 21:30:53'), +(10799,'2005-08-01 22:03:31',3282,145,'2005-08-06 20:19:31',2,'2006-02-15 21:30:53'), +(10800,'2005-08-01 22:07:44',507,583,'2005-08-05 22:45:44',1,'2006-02-15 21:30:53'), +(10801,'2005-08-01 22:09:35',3757,116,'2005-08-08 22:23:35',1,'2006-02-15 21:30:53'), +(10802,'2005-08-01 22:18:32',3998,178,'2005-08-10 18:41:32',2,'2006-02-15 21:30:53'), +(10803,'2005-08-01 22:22:07',3318,46,'2005-08-08 02:37:07',2,'2006-02-15 21:30:53'), +(10804,'2005-08-01 22:22:11',2915,596,'2005-08-03 03:42:11',2,'2006-02-15 21:30:53'), +(10805,'2005-08-01 22:23:37',557,203,'2005-08-05 01:22:37',2,'2006-02-15 21:30:53'), +(10806,'2005-08-01 22:25:29',3553,89,'2005-08-04 18:46:29',2,'2006-02-15 21:30:53'), +(10807,'2005-08-01 22:26:10',1673,287,'2005-08-05 21:55:10',1,'2006-02-15 21:30:53'), +(10808,'2005-08-01 22:37:11',596,480,'2005-08-09 02:37:11',1,'2006-02-15 21:30:53'), +(10809,'2005-08-01 22:39:27',1167,340,'2005-08-03 03:44:27',2,'2006-02-15 21:30:53'), +(10810,'2005-08-01 22:40:39',2314,376,'2005-08-06 19:47:39',1,'2006-02-15 21:30:53'), +(10811,'2005-08-01 22:41:15',4012,209,'2005-08-10 00:10:15',1,'2006-02-15 21:30:53'), +(10812,'2005-08-01 22:41:16',3762,11,'2005-08-07 00:50:16',1,'2006-02-15 21:30:53'), +(10813,'2005-08-01 22:43:00',3580,456,'2005-08-03 21:43:00',1,'2006-02-15 21:30:53'), +(10814,'2005-08-01 22:43:12',2758,49,'2005-08-05 02:35:12',2,'2006-02-15 21:30:53'), +(10815,'2005-08-01 22:46:21',877,62,'2005-08-03 02:43:21',2,'2006-02-15 21:30:53'), +(10816,'2005-08-01 22:48:57',905,129,'2005-08-10 04:39:57',2,'2006-02-15 21:30:53'), +(10817,'2005-08-01 22:51:08',3056,501,'2005-08-10 16:55:08',2,'2006-02-15 21:30:53'), +(10818,'2005-08-01 22:52:45',4549,309,'2005-08-06 04:07:45',1,'2006-02-15 21:30:53'), +(10819,'2005-08-01 22:52:57',983,308,'2005-08-06 00:08:57',1,'2006-02-15 21:30:53'), +(10820,'2005-08-01 22:53:40',1487,97,'2005-08-02 17:59:40',2,'2006-02-15 21:30:53'), +(10821,'2005-08-01 22:54:27',2016,522,'2005-08-07 02:15:27',2,'2006-02-15 21:30:53'), +(10822,'2005-08-01 22:54:28',3895,343,'2005-08-02 17:19:28',1,'2006-02-15 21:30:53'), +(10823,'2005-08-01 22:59:10',3322,405,'2005-08-08 23:44:10',1,'2006-02-15 21:30:53'), +(10824,'2005-08-01 23:00:22',3948,482,'2005-08-04 04:14:22',2,'2006-02-15 21:30:53'), +(10825,'2005-08-01 23:05:33',4386,587,'2005-08-04 04:33:33',1,'2006-02-15 21:30:53'), +(10826,'2005-08-01 23:07:56',1228,476,'2005-08-08 04:10:56',2,'2006-02-15 21:30:53'), +(10827,'2005-08-01 23:13:00',1590,46,'2005-08-08 02:51:00',1,'2006-02-15 21:30:53'), +(10828,'2005-08-01 23:16:10',2448,471,'2005-08-09 21:17:10',1,'2006-02-15 21:30:53'), +(10829,'2005-08-01 23:17:06',168,554,'2005-08-09 17:22:06',2,'2006-02-15 21:30:53'), +(10830,'2005-08-01 23:18:06',4176,148,'2005-08-06 23:15:06',2,'2006-02-15 21:30:53'), +(10831,'2005-08-01 23:22:45',1496,78,'2005-08-07 01:05:45',2,'2006-02-15 21:30:53'), +(10832,'2005-08-01 23:24:53',4096,487,'2005-08-06 23:18:53',1,'2006-02-15 21:30:53'), +(10833,'2005-08-01 23:25:55',4380,422,'2005-08-10 18:01:55',1,'2006-02-15 21:30:53'), +(10834,'2005-08-01 23:28:00',2270,252,'2005-08-07 01:21:00',1,'2006-02-15 21:30:53'), +(10835,'2005-08-01 23:28:49',351,90,'2005-08-10 21:28:49',2,'2006-02-15 21:30:53'), +(10836,'2005-08-01 23:29:58',4534,217,'2005-08-07 23:03:58',2,'2006-02-15 21:30:53'), +(10837,'2005-08-01 23:30:22',1816,410,'2005-08-07 23:02:22',1,'2006-02-15 21:30:53'), +(10838,'2005-08-01 23:36:10',69,387,'2005-08-05 04:55:10',2,'2006-02-15 21:30:53'), +(10839,'2005-08-01 23:37:39',2867,482,'2005-08-02 20:18:39',1,'2006-02-15 21:30:53'), +(10840,'2005-08-01 23:38:34',583,593,'2005-08-07 02:36:34',2,'2006-02-15 21:30:53'), +(10841,'2005-08-01 23:39:21',4337,102,'2005-08-07 20:47:21',1,'2006-02-15 21:30:53'), +(10842,'2005-08-01 23:41:24',1300,137,'2005-08-11 03:48:24',1,'2006-02-15 21:30:53'), +(10843,'2005-08-01 23:43:03',1286,192,'2005-08-09 23:49:03',2,'2006-02-15 21:30:53'), +(10844,'2005-08-01 23:46:58',1516,333,'2005-08-09 19:42:58',2,'2006-02-15 21:30:53'), +(10845,'2005-08-01 23:47:03',2737,42,'2005-08-08 01:57:03',1,'2006-02-15 21:30:53'), +(10846,'2005-08-01 23:47:54',2277,441,'2005-08-08 01:10:54',1,'2006-02-15 21:30:53'), +(10847,'2005-08-01 23:49:33',1200,280,'2005-08-10 05:37:33',2,'2006-02-15 21:30:53'), +(10848,'2005-08-01 23:50:22',2630,368,'2005-08-06 00:52:22',1,'2006-02-15 21:30:53'), +(10849,'2005-08-01 23:51:00',1683,278,'2005-08-10 19:59:00',2,'2006-02-15 21:30:53'), +(10850,'2005-08-01 23:53:45',1853,199,'2005-08-10 21:11:45',1,'2006-02-15 21:30:53'), +(10851,'2005-08-01 23:58:45',1359,154,'2005-08-04 00:59:45',1,'2006-02-15 21:30:53'), +(10852,'2005-08-02 00:00:33',3862,27,'2005-08-03 23:09:33',1,'2006-02-15 21:30:53'), +(10853,'2005-08-02 00:00:54',2682,41,'2005-08-10 05:37:54',2,'2006-02-15 21:30:53'), +(10854,'2005-08-02 00:02:06',3295,356,'2005-08-02 21:55:06',2,'2006-02-15 21:30:53'), +(10855,'2005-08-02 00:06:37',1366,274,'2005-08-03 00:39:37',1,'2006-02-15 21:30:53'), +(10856,'2005-08-02 00:07:14',2010,451,'2005-08-04 02:48:14',2,'2006-02-15 21:30:53'), +(10857,'2005-08-02 00:07:20',2961,360,'2005-08-04 02:35:20',1,'2006-02-15 21:30:53'), +(10858,'2005-08-02 00:08:39',852,312,'2005-08-05 00:58:39',2,'2006-02-15 21:30:53'), +(10859,'2005-08-02 00:11:39',277,375,'2005-08-08 19:52:39',1,'2006-02-15 21:30:53'), +(10860,'2005-08-02 00:12:32',2827,25,'2005-08-04 03:50:32',1,'2006-02-15 21:30:53'), +(10861,'2005-08-02 00:12:46',2162,131,'2005-08-09 04:09:46',2,'2006-02-15 21:30:53'), +(10862,'2005-08-02 00:17:34',1077,176,'2005-08-08 00:31:34',2,'2006-02-15 21:30:53'), +(10863,'2005-08-02 00:18:07',1170,161,'2005-08-10 06:16:07',2,'2006-02-15 21:30:53'), +(10864,'2005-08-02 00:18:59',1694,134,'2005-08-08 22:20:59',1,'2006-02-15 21:30:53'), +(10865,'2005-08-02 00:22:46',1485,201,'2005-08-09 05:08:46',2,'2006-02-15 21:30:53'), +(10866,'2005-08-02 00:22:49',117,424,'2005-08-07 04:38:49',1,'2006-02-15 21:30:53'), +(10867,'2005-08-02 00:24:15',2577,473,'2005-08-05 21:09:15',1,'2006-02-15 21:30:53'), +(10868,'2005-08-02 00:25:15',2443,562,'2005-08-10 02:31:15',2,'2006-02-15 21:30:53'), +(10869,'2005-08-02 00:26:54',2967,568,'2005-08-04 03:40:54',2,'2006-02-15 21:30:53'), +(10870,'2005-08-02 00:27:12',1509,33,'2005-08-02 20:00:12',2,'2006-02-15 21:30:53'), +(10871,'2005-08-02 00:27:24',104,75,'2005-08-05 06:25:24',1,'2006-02-15 21:30:53'), +(10872,'2005-08-02 00:27:50',2470,84,'2005-08-06 20:34:50',2,'2006-02-15 21:30:53'), +(10873,'2005-08-02 00:30:34',169,506,'2005-08-07 00:16:34',2,'2006-02-15 21:30:53'), +(10874,'2005-08-02 00:31:00',2552,230,'2005-08-07 05:04:00',1,'2006-02-15 21:30:53'), +(10875,'2005-08-02 00:31:44',862,175,'2005-08-05 22:24:44',2,'2006-02-15 21:30:53'), +(10876,'2005-08-02 00:31:58',2161,559,'2005-08-05 21:45:58',1,'2006-02-15 21:30:53'), +(10877,'2005-08-02 00:32:04',3337,487,'2005-08-07 19:44:04',2,'2006-02-15 21:30:53'), +(10878,'2005-08-02 00:33:12',3511,45,'2005-08-07 06:02:12',1,'2006-02-15 21:30:53'), +(10879,'2005-08-02 00:33:20',4415,334,'2005-08-09 04:13:20',2,'2006-02-15 21:30:53'), +(10880,'2005-08-02 00:34:12',450,528,'2005-08-06 21:15:12',2,'2006-02-15 21:30:53'), +(10881,'2005-08-02 00:38:14',781,253,'2005-08-09 22:02:14',2,'2006-02-15 21:30:53'), +(10882,'2005-08-02 00:47:16',1349,54,'2005-08-09 22:11:16',1,'2006-02-15 21:30:53'), +(10883,'2005-08-02 00:47:19',4,301,'2005-08-03 00:02:19',1,'2006-02-15 21:30:53'), +(10884,'2005-08-02 00:47:33',3702,569,'2005-08-03 04:38:33',1,'2006-02-15 21:30:53'), +(10885,'2005-08-02 00:51:37',4223,493,'2005-08-09 20:49:37',2,'2006-02-15 21:30:53'), +(10886,'2005-08-02 00:52:34',943,77,'2005-08-08 00:30:34',1,'2006-02-15 21:30:53'), +(10887,'2005-08-02 00:52:35',3450,573,'2005-08-03 05:37:35',1,'2006-02-15 21:30:53'), +(10888,'2005-08-02 00:52:45',2412,428,'2005-08-03 03:07:45',1,'2006-02-15 21:30:53'), +(10889,'2005-08-02 00:54:33',2098,64,'2005-08-07 19:42:33',1,'2006-02-15 21:30:53'), +(10890,'2005-08-02 00:58:46',78,210,'2005-08-10 02:13:46',1,'2006-02-15 21:30:53'), +(10891,'2005-08-02 01:09:55',1269,201,'2005-08-05 05:03:55',2,'2006-02-15 21:30:53'), +(10892,'2005-08-02 01:12:06',3243,109,'2005-08-09 23:53:06',1,'2006-02-15 21:30:53'), +(10893,'2005-08-02 01:12:13',2529,306,'2005-08-11 05:53:13',2,'2006-02-15 21:30:53'), +(10894,'2005-08-02 01:12:35',598,51,'2005-08-09 22:55:35',1,'2006-02-15 21:30:53'), +(10895,'2005-08-02 01:16:59',93,77,'2005-08-03 02:41:59',2,'2006-02-15 21:30:53'), +(10896,'2005-08-02 01:19:33',2283,505,'2005-08-08 06:54:33',1,'2006-02-15 21:30:53'), +(10897,'2005-08-02 01:23:42',291,338,'2005-08-03 23:27:42',1,'2006-02-15 21:30:53'), +(10898,'2005-08-02 01:29:57',3814,23,'2005-08-06 00:07:57',2,'2006-02-15 21:30:53'), +(10899,'2005-08-02 01:30:21',859,29,'2005-08-06 05:01:21',2,'2006-02-15 21:30:53'), +(10900,'2005-08-02 01:34:26',1749,139,'2005-08-07 00:52:26',2,'2006-02-15 21:30:53'), +(10901,'2005-08-02 01:35:44',3813,290,'2005-08-04 21:20:44',2,'2006-02-15 21:30:53'), +(10902,'2005-08-02 01:35:46',3863,486,'2005-08-09 01:59:46',1,'2006-02-15 21:30:53'), +(10903,'2005-08-02 01:41:59',2696,547,'2005-08-06 23:03:59',1,'2006-02-15 21:30:53'), +(10904,'2005-08-02 01:43:02',3681,593,'2005-08-04 04:34:02',1,'2006-02-15 21:30:53'), +(10905,'2005-08-02 01:45:59',2835,439,'2005-08-04 22:28:59',1,'2006-02-15 21:30:53'), +(10906,'2005-08-02 01:47:04',3139,463,'2005-08-07 20:41:04',2,'2006-02-15 21:30:53'), +(10907,'2005-08-02 01:51:48',1430,561,'2005-08-02 19:53:48',1,'2006-02-15 21:30:53'), +(10908,'2005-08-02 01:53:06',1284,269,'2005-08-04 02:46:06',2,'2006-02-15 21:30:53'), +(10909,'2005-08-02 01:53:59',3516,413,'2005-08-03 04:36:59',2,'2006-02-15 21:30:53'), +(10910,'2005-08-02 01:54:34',2428,266,'2005-08-10 04:04:34',2,'2006-02-15 21:30:53'), +(10911,'2005-08-02 01:58:36',769,195,'2005-08-08 07:37:36',2,'2006-02-15 21:30:53'), +(10912,'2005-08-02 02:00:03',732,477,'2005-08-06 05:55:03',1,'2006-02-15 21:30:53'), +(10913,'2005-08-02 02:04:03',3388,565,'2005-08-09 03:21:03',1,'2006-02-15 21:30:53'), +(10914,'2005-08-02 02:04:43',585,584,'2005-08-06 03:00:43',1,'2006-02-15 21:30:53'), +(10915,'2005-08-02 02:05:04',4568,418,'2005-08-10 21:58:04',2,'2006-02-15 21:30:53'), +(10916,'2005-08-02 02:05:59',3841,25,'2005-08-06 03:46:59',2,'2006-02-15 21:30:53'), +(10917,'2005-08-02 02:06:18',3146,378,'2005-08-03 22:42:18',1,'2006-02-15 21:30:53'), +(10918,'2005-08-02 02:10:56',3418,2,'2005-08-02 21:23:56',1,'2006-02-15 21:30:53'), +(10919,'2005-08-02 02:11:03',868,115,'2005-08-04 01:49:03',1,'2006-02-15 21:30:53'), +(10920,'2005-08-02 02:14:10',3106,531,'2005-08-06 23:36:10',1,'2006-02-15 21:30:53'), +(10921,'2005-08-02 02:14:33',1820,555,'2005-08-09 20:58:33',2,'2006-02-15 21:30:53'), +(10922,'2005-08-02 02:14:40',4522,539,'2005-08-06 06:04:40',1,'2006-02-15 21:30:53'), +(10923,'2005-08-02 02:15:01',2602,239,'2005-08-03 04:18:01',1,'2006-02-15 21:30:53'), +(10924,'2005-08-02 02:20:19',589,540,'2005-08-11 05:50:19',2,'2006-02-15 21:30:53'), +(10925,'2005-08-02 02:24:38',1475,98,'2005-08-03 05:06:38',1,'2006-02-15 21:30:53'), +(10926,'2005-08-02 02:26:37',4016,460,'2005-08-09 20:55:37',1,'2006-02-15 21:30:53'), +(10927,'2005-08-02 02:31:15',4125,288,'2005-08-10 20:41:15',1,'2006-02-15 21:30:53'), +(10928,'2005-08-02 02:34:12',2885,211,'2005-08-07 21:13:12',1,'2006-02-15 21:30:53'), +(10929,'2005-08-02 02:35:44',913,305,'2005-08-05 03:52:44',1,'2006-02-15 21:30:53'), +(10930,'2005-08-02 02:38:07',2027,206,'2005-08-08 05:15:07',2,'2006-02-15 21:30:53'), +(10931,'2005-08-02 02:44:59',3268,545,'2005-08-04 02:02:59',1,'2006-02-15 21:30:53'), +(10932,'2005-08-02 02:46:22',1688,595,'2005-08-06 01:49:22',2,'2006-02-15 21:30:53'), +(10933,'2005-08-02 02:50:49',3970,313,'2005-08-08 04:39:49',1,'2006-02-15 21:30:53'), +(10934,'2005-08-02 02:52:18',4458,142,'2005-08-06 01:23:18',2,'2006-02-15 21:30:53'), +(10935,'2005-08-02 02:54:53',4373,42,'2005-08-10 00:07:53',2,'2006-02-15 21:30:53'), +(10936,'2005-08-02 02:55:04',463,445,'2005-08-11 07:56:04',1,'2006-02-15 21:30:53'), +(10937,'2005-08-02 03:00:18',1320,416,'2005-08-11 03:44:18',2,'2006-02-15 21:30:53'), +(10938,'2005-08-02 03:05:22',3918,502,'2005-08-05 08:31:22',1,'2006-02-15 21:30:53'), +(10939,'2005-08-02 03:06:20',2131,161,'2005-08-04 01:22:20',2,'2006-02-15 21:30:53'), +(10940,'2005-08-02 03:08:29',3760,120,'2005-08-07 21:28:29',2,'2006-02-15 21:30:53'), +(10941,'2005-08-02 03:11:33',2132,531,'2005-08-10 07:31:33',1,'2006-02-15 21:30:53'), +(10942,'2005-08-02 03:16:31',2304,78,'2005-08-11 02:46:31',2,'2006-02-15 21:30:53'), +(10943,'2005-08-02 03:17:29',1036,377,'2005-08-03 00:50:29',2,'2006-02-15 21:30:53'), +(10944,'2005-08-02 03:20:03',2373,470,'2005-08-04 04:13:03',2,'2006-02-15 21:30:53'), +(10945,'2005-08-02 03:20:23',3684,532,'2005-08-09 03:23:23',1,'2006-02-15 21:30:53'), +(10946,'2005-08-02 03:20:39',4271,56,'2005-08-05 02:59:39',1,'2006-02-15 21:30:53'), +(10947,'2005-08-02 03:23:17',2510,500,'2005-08-07 05:25:17',1,'2006-02-15 21:30:53'), +(10948,'2005-08-02 03:23:23',4429,220,'2005-08-05 23:18:23',1,'2006-02-15 21:30:53'), +(10949,'2005-08-02 03:24:04',2309,389,'2005-08-06 08:36:04',2,'2006-02-15 21:30:53'), +(10950,'2005-08-02 03:25:08',707,451,'2005-08-07 23:11:08',2,'2006-02-15 21:30:53'), +(10951,'2005-08-02 03:26:35',173,144,'2005-08-07 22:03:35',1,'2006-02-15 21:30:53'), +(10952,'2005-08-02 03:28:21',3218,111,'2005-08-09 01:41:21',1,'2006-02-15 21:30:53'), +(10953,'2005-08-02 03:28:38',1510,483,'2005-08-11 03:53:38',1,'2006-02-15 21:30:53'), +(10954,'2005-08-02 03:30:24',3406,20,'2005-08-08 05:52:24',2,'2006-02-15 21:30:53'), +(10955,'2005-08-02 03:32:34',618,490,'2005-08-09 21:53:34',2,'2006-02-15 21:30:53'), +(10956,'2005-08-02 03:33:14',4372,54,'2005-08-09 09:20:14',2,'2006-02-15 21:30:53'), +(10957,'2005-08-02 03:33:30',1652,447,'2005-08-10 06:19:30',2,'2006-02-15 21:30:53'), +(10958,'2005-08-02 03:37:13',2174,160,'2005-08-04 23:28:13',2,'2006-02-15 21:30:53'), +(10959,'2005-08-02 03:39:39',4233,431,'2005-08-11 07:20:39',1,'2006-02-15 21:30:53'), +(10960,'2005-08-02 03:46:18',3536,399,'2005-08-11 01:29:18',1,'2006-02-15 21:30:53'), +(10961,'2005-08-02 03:47:55',1416,375,'2005-08-09 02:03:55',1,'2006-02-15 21:30:53'), +(10962,'2005-08-02 03:48:13',1953,538,'2005-08-07 00:04:13',1,'2006-02-15 21:30:53'), +(10963,'2005-08-02 03:48:17',4501,36,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'), +(10964,'2005-08-02 03:56:23',2356,36,'2005-08-09 23:11:23',2,'2006-02-15 21:30:53'), +(10965,'2005-08-02 04:00:19',2192,580,'2005-08-09 03:27:19',1,'2006-02-15 21:30:53'), +(10966,'2005-08-02 04:00:47',478,584,'2005-08-08 01:58:47',2,'2006-02-15 21:30:53'), +(10967,'2005-08-02 04:02:16',683,149,'2005-08-09 07:57:16',1,'2006-02-15 21:30:53'), +(10968,'2005-08-02 04:03:13',888,234,'2005-08-11 08:36:13',1,'2006-02-15 21:30:53'), +(10969,'2005-08-02 04:04:32',1898,244,'2005-08-09 23:18:32',1,'2006-02-15 21:30:53'), +(10970,'2005-08-02 04:06:46',1202,260,'2005-08-10 04:27:46',1,'2006-02-15 21:30:53'), +(10971,'2005-08-02 04:08:17',2789,383,'2005-08-09 00:02:17',1,'2006-02-15 21:30:53'), +(10972,'2005-08-02 04:08:25',1928,348,'2005-08-09 23:25:25',1,'2006-02-15 21:30:53'), +(10973,'2005-08-02 04:09:42',3562,127,'2005-08-08 05:24:42',2,'2006-02-15 21:30:53'), +(10974,'2005-08-02 04:10:52',690,491,'2005-08-09 08:26:52',1,'2006-02-15 21:30:53'), +(10975,'2005-08-02 04:11:25',2616,361,'2005-08-04 04:39:25',2,'2006-02-15 21:30:53'), +(10976,'2005-08-02 04:11:48',2418,326,'2005-08-06 06:30:48',2,'2006-02-15 21:30:53'), +(10977,'2005-08-02 04:12:17',2302,300,'2005-08-06 06:52:17',2,'2006-02-15 21:30:53'), +(10978,'2005-08-02 04:12:27',1597,487,'2005-08-10 08:19:27',2,'2006-02-15 21:30:53'), +(10979,'2005-08-02 04:16:37',2625,160,'2005-08-06 00:01:37',2,'2006-02-15 21:30:53'), +(10980,'2005-08-02 04:17:32',150,547,'2005-08-04 05:12:32',1,'2006-02-15 21:30:53'), +(10981,'2005-08-02 04:17:53',3699,305,'2005-08-09 03:45:53',2,'2006-02-15 21:30:53'), +(10982,'2005-08-02 04:19:11',2508,345,'2005-08-04 00:20:11',2,'2006-02-15 21:30:53'), +(10983,'2005-08-02 04:24:23',4502,380,'2005-08-09 08:05:23',2,'2006-02-15 21:30:53'), +(10984,'2005-08-02 04:30:02',1813,450,'2005-08-10 02:51:02',1,'2006-02-15 21:30:53'), +(10985,'2005-08-02 04:30:19',2734,186,'2005-08-03 05:18:19',1,'2006-02-15 21:30:53'), +(10986,'2005-08-02 04:35:24',555,597,'2005-08-09 07:34:24',2,'2006-02-15 21:30:53'), +(10987,'2005-08-02 04:36:52',968,349,'2005-08-04 00:03:52',1,'2006-02-15 21:30:53'), +(10988,'2005-08-02 04:38:17',1157,509,'2005-08-09 00:09:17',1,'2006-02-15 21:30:53'), +(10989,'2005-08-02 04:40:54',2272,7,'2005-08-09 03:39:54',2,'2006-02-15 21:30:53'), +(10990,'2005-08-02 04:41:06',262,111,'2005-08-10 05:02:06',2,'2006-02-15 21:30:53'), +(10991,'2005-08-02 04:41:12',2854,77,'2005-08-05 05:36:12',2,'2006-02-15 21:30:53'), +(10992,'2005-08-02 04:41:17',11,180,'2005-08-09 02:13:17',1,'2006-02-15 21:30:53'), +(10993,'2005-08-02 04:45:01',292,383,'2005-08-04 03:32:01',1,'2006-02-15 21:30:53'), +(10994,'2005-08-02 04:46:53',647,323,'2005-08-11 10:30:53',1,'2006-02-15 21:30:53'), +(10995,'2005-08-02 04:48:00',2891,340,'2005-08-07 05:00:00',1,'2006-02-15 21:30:53'), +(10996,'2005-08-02 04:48:11',2235,26,'2005-08-06 08:00:11',1,'2006-02-15 21:30:53'), +(10997,'2005-08-02 04:49:02',300,334,'2005-08-10 08:13:02',2,'2006-02-15 21:30:53'), +(10998,'2005-08-02 04:50:55',1479,435,'2005-08-11 03:43:55',1,'2006-02-15 21:30:53'), +(10999,'2005-08-02 04:53:13',2013,227,'2005-08-06 04:36:13',2,'2006-02-15 21:30:53'), +(11000,'2005-08-02 04:56:14',264,265,'2005-08-07 01:39:14',2,'2006-02-15 21:30:53'), +(11001,'2005-08-02 04:56:45',3701,5,'2005-08-11 08:04:45',1,'2006-02-15 21:30:53'), +(11002,'2005-08-02 05:02:56',3073,583,'2005-08-05 07:04:56',2,'2006-02-15 21:30:53'), +(11003,'2005-08-02 05:03:05',4301,272,'2005-08-05 10:48:05',2,'2006-02-15 21:30:53'), +(11004,'2005-08-02 05:04:18',200,45,'2005-08-11 00:03:18',2,'2006-02-15 21:30:53'), +(11005,'2005-08-02 05:05:23',1547,216,'2005-08-07 23:28:23',2,'2006-02-15 21:30:53'), +(11006,'2005-08-02 05:05:52',2776,473,'2005-08-05 03:33:52',1,'2006-02-15 21:30:53'), +(11007,'2005-08-02 05:05:53',4172,98,'2005-08-05 01:56:53',2,'2006-02-15 21:30:53'), +(11008,'2005-08-02 05:06:17',2831,375,'2005-08-10 01:22:17',2,'2006-02-15 21:30:53'), +(11009,'2005-08-02 05:06:23',2574,596,'2005-08-08 03:02:23',1,'2006-02-15 21:30:53'), +(11010,'2005-08-02 05:06:27',869,326,'2005-08-03 23:47:27',2,'2006-02-15 21:30:53'), +(11011,'2005-08-02 05:07:07',3981,256,'2005-08-09 07:16:07',1,'2006-02-15 21:30:53'), +(11012,'2005-08-02 05:09:42',542,162,'2005-08-05 07:22:42',2,'2006-02-15 21:30:53'), +(11013,'2005-08-02 05:10:54',2993,527,'2005-08-10 08:59:54',1,'2006-02-15 21:30:53'), +(11014,'2005-08-02 05:12:22',393,269,'2005-08-07 09:33:22',1,'2006-02-15 21:30:53'), +(11015,'2005-08-02 05:13:00',4331,138,'2005-08-08 04:18:00',2,'2006-02-15 21:30:53'), +(11016,'2005-08-02 05:19:13',4446,116,'2005-08-05 05:31:13',1,'2006-02-15 21:30:53'), +(11017,'2005-08-02 05:19:51',4140,480,'2005-08-09 00:36:51',2,'2006-02-15 21:30:53'), +(11018,'2005-08-02 05:27:53',2988,197,'2005-08-07 10:48:53',1,'2006-02-15 21:30:53'), +(11019,'2005-08-02 05:29:31',3227,112,'2005-08-04 00:42:31',1,'2006-02-15 21:30:53'), +(11020,'2005-08-02 05:29:48',1645,242,'2005-08-06 05:36:48',2,'2006-02-15 21:30:53'), +(11021,'2005-08-02 05:30:11',2069,385,'2005-08-05 05:50:11',2,'2006-02-15 21:30:53'), +(11022,'2005-08-02 05:35:03',827,206,'2005-08-09 10:20:03',2,'2006-02-15 21:30:53'), +(11023,'2005-08-02 05:36:38',3617,6,'2005-08-10 05:39:38',1,'2006-02-15 21:30:53'), +(11024,'2005-08-02 05:38:31',2284,427,'2005-08-11 04:47:31',1,'2006-02-15 21:30:53'), +(11025,'2005-08-02 05:39:12',2253,419,'2005-08-08 00:09:12',2,'2006-02-15 21:30:53'), +(11026,'2005-08-02 05:46:05',3554,531,'2005-08-07 06:27:05',2,'2006-02-15 21:30:53'), +(11027,'2005-08-02 05:47:10',571,412,'2005-08-05 23:51:10',1,'2006-02-15 21:30:53'), +(11028,'2005-08-02 05:48:20',2764,66,'2005-08-10 11:21:20',1,'2006-02-15 21:30:53'), +(11029,'2005-08-02 05:51:10',1023,45,'2005-08-05 04:15:10',1,'2006-02-15 21:30:53'), +(11030,'2005-08-02 05:51:20',1437,569,'2005-08-06 04:20:20',1,'2006-02-15 21:30:53'), +(11031,'2005-08-02 05:52:58',1205,361,'2005-08-07 07:14:58',2,'2006-02-15 21:30:53'), +(11032,'2005-08-02 05:53:35',1119,359,'2005-08-05 02:58:35',2,'2006-02-15 21:30:53'), +(11033,'2005-08-02 05:54:17',3323,155,'2005-08-09 10:50:17',2,'2006-02-15 21:30:53'), +(11034,'2005-08-02 05:54:53',2939,586,'2005-08-09 04:14:53',1,'2006-02-15 21:30:53'), +(11035,'2005-08-02 05:55:39',3776,305,'2005-08-08 06:46:39',2,'2006-02-15 21:30:53'), +(11036,'2005-08-02 05:56:29',2054,502,'2005-08-05 05:00:29',2,'2006-02-15 21:30:53'), +(11037,'2005-08-02 05:58:12',4291,220,'2005-08-07 11:26:12',1,'2006-02-15 21:30:53'), +(11038,'2005-08-02 05:59:42',4452,403,'2005-08-08 04:37:42',2,'2006-02-15 21:30:53'), +(11039,'2005-08-02 06:00:53',549,170,'2005-08-05 06:19:53',2,'2006-02-15 21:30:53'), +(11040,'2005-08-02 06:03:22',2297,223,'2005-08-03 07:58:22',1,'2006-02-15 21:30:53'), +(11041,'2005-08-02 06:03:53',1897,435,'2005-08-03 11:57:53',1,'2006-02-15 21:30:53'), +(11042,'2005-08-02 06:04:33',4149,439,'2005-08-11 01:30:33',1,'2006-02-15 21:30:53'), +(11043,'2005-08-02 06:04:44',65,573,'2005-08-06 11:37:44',1,'2006-02-15 21:30:53'), +(11044,'2005-08-02 06:05:27',2922,122,'2005-08-06 05:15:27',1,'2006-02-15 21:30:53'), +(11045,'2005-08-02 06:07:54',2214,402,'2005-08-08 00:37:54',1,'2006-02-15 21:30:53'), +(11046,'2005-08-02 06:08:34',2105,526,'2005-08-06 08:45:34',2,'2006-02-15 21:30:53'), +(11047,'2005-08-02 06:09:20',2267,416,'2005-08-11 08:36:20',1,'2006-02-15 21:30:53'), +(11048,'2005-08-02 06:15:07',206,491,'2005-08-04 02:47:07',2,'2006-02-15 21:30:53'), +(11049,'2005-08-02 06:15:40',4352,38,'2005-08-11 10:09:40',2,'2006-02-15 21:30:53'), +(11050,'2005-08-02 06:17:16',2077,234,'2005-08-09 05:58:16',1,'2006-02-15 21:30:53'), +(11051,'2005-08-02 06:23:39',4189,446,'2005-08-06 06:46:39',2,'2006-02-15 21:30:53'), +(11052,'2005-08-02 06:26:19',1089,331,'2005-08-06 04:20:19',2,'2006-02-15 21:30:53'), +(11053,'2005-08-02 06:27:13',2599,50,'2005-08-09 11:24:13',2,'2006-02-15 21:30:53'), +(11054,'2005-08-02 06:33:07',728,577,'2005-08-10 02:52:07',2,'2006-02-15 21:30:53'), +(11055,'2005-08-02 06:36:05',3851,182,'2005-08-06 00:36:05',1,'2006-02-15 21:30:53'), +(11056,'2005-08-02 06:36:27',1404,88,'2005-08-10 06:02:27',1,'2006-02-15 21:30:53'), +(11057,'2005-08-02 06:38:19',3143,137,'2005-08-11 03:43:19',1,'2006-02-15 21:30:53'), +(11058,'2005-08-02 06:38:44',3270,274,'2005-08-06 06:45:44',1,'2006-02-15 21:30:53'), +(11059,'2005-08-02 06:41:38',428,189,'2005-08-09 04:34:38',1,'2006-02-15 21:30:53'), +(11060,'2005-08-02 06:48:18',3395,496,'2005-08-10 11:49:18',1,'2006-02-15 21:30:53'), +(11061,'2005-08-02 06:50:18',809,245,'2005-08-07 07:41:18',2,'2006-02-15 21:30:53'), +(11062,'2005-08-02 06:52:54',2014,346,'2005-08-07 10:59:54',1,'2006-02-15 21:30:53'), +(11063,'2005-08-02 06:53:48',2261,461,'2005-08-05 03:38:48',2,'2006-02-15 21:30:53'), +(11064,'2005-08-02 06:55:17',3012,338,'2005-08-06 03:29:17',1,'2006-02-15 21:30:53'), +(11065,'2005-08-02 06:57:55',2226,357,'2005-08-06 01:31:55',2,'2006-02-15 21:30:53'), +(11066,'2005-08-02 06:58:32',4213,373,'2005-08-10 01:27:32',2,'2006-02-15 21:30:53'), +(11067,'2005-08-02 07:03:24',965,85,'2005-08-10 08:59:24',2,'2006-02-15 21:30:53'), +(11068,'2005-08-02 07:08:07',1262,52,'2005-08-09 11:15:07',2,'2006-02-15 21:30:53'), +(11069,'2005-08-02 07:09:34',57,4,'2005-08-08 08:39:34',1,'2006-02-15 21:30:53'), +(11070,'2005-08-02 07:10:39',4020,298,'2005-08-03 07:43:39',1,'2006-02-15 21:30:53'), +(11071,'2005-08-02 07:10:53',4264,294,'2005-08-07 09:58:53',1,'2006-02-15 21:30:53'), +(11072,'2005-08-02 07:10:57',3078,21,'2005-08-04 07:42:57',1,'2006-02-15 21:30:53'), +(11073,'2005-08-02 07:13:03',4232,234,'2005-08-03 05:46:03',1,'2006-02-15 21:30:53'), +(11074,'2005-08-02 07:21:43',1439,277,'2005-08-08 05:18:43',1,'2006-02-15 21:30:53'), +(11075,'2005-08-02 07:24:23',3027,503,'2005-08-08 04:55:23',1,'2006-02-15 21:30:53'), +(11076,'2005-08-02 07:24:47',837,211,'2005-08-10 09:16:47',1,'2006-02-15 21:30:53'), +(11077,'2005-08-02 07:26:43',4254,158,'2005-08-09 10:34:43',2,'2006-02-15 21:30:53'), +(11078,'2005-08-02 07:26:58',2362,587,'2005-08-07 01:59:58',2,'2006-02-15 21:30:53'), +(11079,'2005-08-02 07:29:10',3185,29,'2005-08-07 01:59:10',2,'2006-02-15 21:30:53'), +(11080,'2005-08-02 07:29:56',4303,571,'2005-08-08 05:58:56',1,'2006-02-15 21:30:53'), +(11081,'2005-08-02 07:30:14',3804,513,'2005-08-09 08:50:14',1,'2006-02-15 21:30:53'), +(11082,'2005-08-02 07:30:19',3037,190,'2005-08-07 05:20:19',2,'2006-02-15 21:30:53'), +(11083,'2005-08-02 07:32:01',4395,295,'2005-08-08 02:23:01',1,'2006-02-15 21:30:53'), +(11084,'2005-08-02 07:34:19',32,369,'2005-08-07 09:30:19',1,'2006-02-15 21:30:53'), +(11085,'2005-08-02 07:36:44',3207,276,'2005-08-04 03:32:44',1,'2006-02-15 21:30:53'), +(11086,'2005-08-02 07:38:44',552,371,'2005-08-11 06:30:44',1,'2006-02-15 21:30:53'), +(11087,'2005-08-02 07:41:41',654,2,'2005-08-10 10:37:41',2,'2006-02-15 21:30:53'), +(11088,'2005-08-02 07:48:31',2739,138,'2005-08-05 08:09:31',2,'2006-02-15 21:30:53'), +(11089,'2005-08-02 07:52:20',825,421,'2005-08-07 07:24:20',1,'2006-02-15 21:30:53'), +(11090,'2005-08-02 07:56:40',2743,89,'2005-08-10 07:58:40',1,'2006-02-15 21:30:53'), +(11091,'2005-08-02 07:56:41',1659,423,'2005-08-07 05:35:41',2,'2006-02-15 21:30:53'), +(11092,'2005-08-02 07:58:50',569,60,'2005-08-04 03:23:50',2,'2006-02-15 21:30:53'), +(11093,'2005-08-02 07:59:49',239,82,'2005-08-11 06:01:49',1,'2006-02-15 21:30:53'), +(11094,'2005-08-02 08:03:02',3095,18,'2005-08-03 11:34:02',1,'2006-02-15 21:30:53'), +(11095,'2005-08-02 08:03:20',3517,278,'2005-08-10 05:20:20',1,'2006-02-15 21:30:53'), +(11096,'2005-08-02 08:05:19',1436,34,'2005-08-04 07:28:19',2,'2006-02-15 21:30:53'), +(11097,'2005-08-02 08:05:46',2493,575,'2005-08-10 12:00:46',2,'2006-02-15 21:30:53'), +(11098,'2005-08-02 08:06:18',158,570,'2005-08-11 04:50:18',2,'2006-02-15 21:30:53'), +(11099,'2005-08-02 08:07:12',1444,102,'2005-08-07 12:11:12',2,'2006-02-15 21:30:53'), +(11100,'2005-08-02 08:08:00',3047,65,'2005-08-10 07:19:00',1,'2006-02-15 21:30:53'), +(11101,'2005-08-02 08:08:24',2621,80,'2005-08-06 05:55:24',1,'2006-02-15 21:30:53'), +(11102,'2005-08-02 08:08:30',3112,73,'2005-08-04 09:16:30',1,'2006-02-15 21:30:53'), +(11103,'2005-08-02 08:09:54',1879,158,'2005-08-07 12:05:54',1,'2006-02-15 21:30:53'), +(11104,'2005-08-02 08:09:58',3042,196,'2005-08-05 11:55:58',1,'2006-02-15 21:30:53'), +(11105,'2005-08-02 08:13:31',3170,245,'2005-08-03 11:08:31',1,'2006-02-15 21:30:53'), +(11106,'2005-08-02 08:17:38',2307,287,'2005-08-03 07:54:38',1,'2006-02-15 21:30:53'), +(11107,'2005-08-02 08:19:38',2217,410,'2005-08-07 08:46:38',2,'2006-02-15 21:30:53'), +(11108,'2005-08-02 08:20:01',560,447,'2005-08-03 13:22:01',2,'2006-02-15 21:30:53'), +(11109,'2005-08-02 08:20:29',2683,479,'2005-08-09 11:35:29',2,'2006-02-15 21:30:53'), +(11110,'2005-08-02 08:20:31',4311,4,'2005-08-04 05:06:31',2,'2006-02-15 21:30:53'), +(11111,'2005-08-02 08:21:27',334,378,'2005-08-06 07:48:27',2,'2006-02-15 21:30:53'), +(11112,'2005-08-02 08:25:14',526,207,'2005-08-03 08:41:14',1,'2006-02-15 21:30:53'), +(11113,'2005-08-02 08:26:24',1654,231,'2005-08-07 09:24:24',2,'2006-02-15 21:30:53'), +(11114,'2005-08-02 08:26:45',1273,572,'2005-08-03 08:41:45',2,'2006-02-15 21:30:53'), +(11115,'2005-08-02 08:31:06',3812,408,'2005-08-04 02:36:06',2,'2006-02-15 21:30:53'), +(11116,'2005-08-02 08:34:40',434,344,'2005-08-09 04:56:40',1,'2006-02-15 21:30:53'), +(11117,'2005-08-02 08:36:03',1613,474,'2005-08-05 06:56:03',2,'2006-02-15 21:30:53'), +(11118,'2005-08-02 08:44:18',2411,15,'2005-08-05 08:08:18',2,'2006-02-15 21:30:53'), +(11119,'2005-08-02 08:44:44',4307,489,'2005-08-10 11:32:44',2,'2006-02-15 21:30:53'), +(11120,'2005-08-02 08:47:04',4185,322,'2005-08-05 05:33:04',1,'2006-02-15 21:30:53'), +(11121,'2005-08-02 08:48:31',1025,572,'2005-08-04 05:08:31',2,'2006-02-15 21:30:53'), +(11122,'2005-08-02 08:49:09',3021,383,'2005-08-08 04:33:09',1,'2006-02-15 21:30:53'), +(11123,'2005-08-02 08:54:17',1926,150,'2005-08-09 11:11:17',2,'2006-02-15 21:30:53'), +(11124,'2005-08-02 08:55:25',698,249,'2005-08-10 10:59:25',1,'2006-02-15 21:30:53'), +(11125,'2005-08-02 08:55:35',2081,237,'2005-08-03 09:12:35',1,'2006-02-15 21:30:53'), +(11126,'2005-08-02 08:59:04',3310,47,'2005-08-04 11:00:04',1,'2006-02-15 21:30:53'), +(11127,'2005-08-02 09:00:59',1106,351,'2005-08-05 11:54:59',2,'2006-02-15 21:30:53'), +(11128,'2005-08-02 09:03:25',3472,386,'2005-08-09 04:36:25',1,'2006-02-15 21:30:53'), +(11129,'2005-08-02 09:08:44',23,566,'2005-08-04 04:00:44',1,'2006-02-15 21:30:53'), +(11130,'2005-08-02 09:08:59',684,329,'2005-08-09 07:50:59',2,'2006-02-15 21:30:53'), +(11131,'2005-08-02 09:10:04',1860,293,'2005-08-08 09:59:04',2,'2006-02-15 21:30:53'), +(11132,'2005-08-02 09:14:09',2212,398,'2005-08-08 06:39:09',1,'2006-02-15 21:30:53'), +(11133,'2005-08-02 09:15:45',675,120,'2005-08-04 10:39:45',1,'2006-02-15 21:30:53'), +(11134,'2005-08-02 09:19:22',2641,372,'2005-08-11 03:56:22',1,'2006-02-15 21:30:53'), +(11135,'2005-08-02 09:22:25',799,32,'2005-08-04 14:30:25',2,'2006-02-15 21:30:53'), +(11136,'2005-08-02 09:22:57',1315,559,'2005-08-08 14:12:57',2,'2006-02-15 21:30:53'), +(11137,'2005-08-02 09:25:31',2500,310,'2005-08-08 08:10:31',1,'2006-02-15 21:30:53'), +(11138,'2005-08-02 09:26:16',4250,458,'2005-08-11 07:50:16',2,'2006-02-15 21:30:53'), +(11139,'2005-08-02 09:27:36',1011,236,'2005-08-08 14:07:36',2,'2006-02-15 21:30:53'), +(11140,'2005-08-02 09:27:45',3836,132,'2005-08-05 04:10:45',1,'2006-02-15 21:30:53'), +(11141,'2005-08-02 09:29:11',1614,15,'2005-08-04 07:50:11',1,'2006-02-15 21:30:53'), +(11142,'2005-08-02 09:30:11',2954,306,'2005-08-05 06:52:11',1,'2006-02-15 21:30:53'), +(11143,'2005-08-02 09:32:54',3382,100,'2005-08-05 12:04:54',2,'2006-02-15 21:30:53'), +(11144,'2005-08-02 09:39:17',2724,376,'2005-08-03 11:53:17',2,'2006-02-15 21:30:53'), +(11145,'2005-08-02 09:43:24',1270,291,'2005-08-05 15:29:24',1,'2006-02-15 21:30:53'), +(11146,'2005-08-02 09:45:32',2488,552,'2005-08-07 07:33:32',1,'2006-02-15 21:30:53'), +(11147,'2005-08-02 09:45:54',1562,597,'2005-08-07 07:28:54',1,'2006-02-15 21:30:53'), +(11148,'2005-08-02 09:47:08',2991,230,'2005-08-08 10:57:08',1,'2006-02-15 21:30:53'), +(11149,'2005-08-02 09:51:43',3254,358,'2005-08-11 09:40:43',2,'2006-02-15 21:30:53'), +(11150,'2005-08-02 09:51:46',2193,527,'2005-08-05 09:03:46',2,'2006-02-15 21:30:53'), +(11151,'2005-08-02 09:52:44',3939,391,'2005-08-05 06:29:44',2,'2006-02-15 21:30:53'), +(11152,'2005-08-02 09:53:36',3887,494,'2005-08-11 14:58:36',1,'2006-02-15 21:30:53'), +(11153,'2005-08-02 09:54:19',1546,220,'2005-08-10 14:57:19',1,'2006-02-15 21:30:53'), +(11154,'2005-08-02 09:54:50',697,160,'2005-08-06 14:48:50',2,'2006-02-15 21:30:53'), +(11155,'2005-08-02 09:55:28',2001,73,'2005-08-03 06:00:28',2,'2006-02-15 21:30:53'), +(11156,'2005-08-02 09:56:06',907,465,'2005-08-04 13:36:06',2,'2006-02-15 21:30:53'), +(11157,'2005-08-02 09:58:15',1313,244,'2005-08-06 04:23:15',2,'2006-02-15 21:30:53'), +(11158,'2005-08-02 09:58:28',530,190,'2005-08-10 13:54:28',2,'2006-02-15 21:30:53'), +(11159,'2005-08-02 10:00:55',4575,249,'2005-08-05 10:38:55',1,'2006-02-15 21:30:53'), +(11160,'2005-08-02 10:05:30',3260,436,'2005-08-07 08:30:30',1,'2006-02-15 21:30:53'), +(11161,'2005-08-02 10:05:57',3321,503,'2005-08-06 05:05:57',2,'2006-02-15 21:30:53'), +(11162,'2005-08-02 10:07:54',1809,277,'2005-08-05 11:35:54',2,'2006-02-15 21:30:53'), +(11163,'2005-08-02 10:08:40',1925,505,'2005-08-05 14:59:40',1,'2006-02-15 21:30:53'), +(11164,'2005-08-02 10:10:56',4450,580,'2005-08-10 11:20:56',2,'2006-02-15 21:30:53'), +(11165,'2005-08-02 10:12:17',2059,513,'2005-08-04 11:09:17',1,'2006-02-15 21:30:53'), +(11166,'2005-08-02 10:14:58',638,11,'2005-08-11 11:43:58',1,'2006-02-15 21:30:53'), +(11167,'2005-08-02 10:15:51',148,451,'2005-08-09 09:18:51',1,'2006-02-15 21:30:53'), +(11168,'2005-08-02 10:19:42',468,555,'2005-08-04 08:42:42',1,'2006-02-15 21:30:53'), +(11169,'2005-08-02 10:19:42',2392,329,'2005-08-07 05:45:42',1,'2006-02-15 21:30:53'), +(11170,'2005-08-02 10:21:53',1333,547,'2005-08-08 11:08:53',1,'2006-02-15 21:30:53'), +(11171,'2005-08-02 10:23:41',3117,339,'2005-08-04 14:22:41',2,'2006-02-15 21:30:53'), +(11172,'2005-08-02 10:27:52',1207,76,'2005-08-11 12:47:52',1,'2006-02-15 21:30:53'), +(11173,'2005-08-02 10:28:00',4296,146,'2005-08-10 14:53:00',1,'2006-02-15 21:30:53'), +(11174,'2005-08-02 10:32:11',1551,328,'2005-08-09 12:30:11',1,'2006-02-15 21:30:53'), +(11175,'2005-08-02 10:38:47',85,164,'2005-08-07 07:11:47',2,'2006-02-15 21:30:53'), +(11176,'2005-08-02 10:39:43',1448,37,'2005-08-09 14:42:43',2,'2006-02-15 21:30:53'), +(11177,'2005-08-02 10:43:48',1149,2,'2005-08-10 10:55:48',2,'2006-02-15 21:30:53'), +(11178,'2005-08-02 10:48:10',2613,342,'2005-08-06 06:07:10',1,'2006-02-15 21:30:53'), +(11179,'2005-08-02 10:50:06',4376,5,'2005-08-04 05:24:06',1,'2006-02-15 21:30:53'), +(11180,'2005-08-02 10:54:30',3632,534,'2005-08-11 15:55:30',1,'2006-02-15 21:30:53'), +(11181,'2005-08-02 10:55:03',3127,557,'2005-08-07 10:43:03',1,'2006-02-15 21:30:53'), +(11182,'2005-08-02 10:55:14',605,54,'2005-08-06 05:58:14',1,'2006-02-15 21:30:53'), +(11183,'2005-08-02 11:00:32',833,102,'2005-08-04 08:59:32',2,'2006-02-15 21:30:53'), +(11184,'2005-08-02 11:01:26',871,259,'2005-08-11 06:29:26',1,'2006-02-15 21:30:53'), +(11185,'2005-08-02 11:04:35',1215,469,'2005-08-05 13:48:35',2,'2006-02-15 21:30:53'), +(11186,'2005-08-02 11:12:08',733,353,'2005-08-03 10:46:08',1,'2006-02-15 21:30:53'), +(11187,'2005-08-02 11:16:19',3626,410,'2005-08-11 06:11:19',1,'2006-02-15 21:30:53'), +(11188,'2005-08-02 11:17:11',1372,485,'2005-08-08 16:46:11',2,'2006-02-15 21:30:53'), +(11189,'2005-08-02 11:17:23',729,565,'2005-08-09 16:30:23',2,'2006-02-15 21:30:53'), +(11190,'2005-08-02 11:21:34',922,254,'2005-08-05 05:23:34',1,'2006-02-15 21:30:53'), +(11191,'2005-08-02 11:24:07',1097,571,'2005-08-10 10:39:07',1,'2006-02-15 21:30:53'), +(11192,'2005-08-02 11:29:41',1998,349,'2005-08-07 06:01:41',2,'2006-02-15 21:30:53'), +(11193,'2005-08-02 11:31:33',2246,292,'2005-08-04 14:00:33',1,'2006-02-15 21:30:53'), +(11194,'2005-08-02 11:35:53',2732,135,'2005-08-10 11:28:53',1,'2006-02-15 21:30:53'), +(11195,'2005-08-02 11:42:23',4359,177,'2005-08-03 08:29:23',1,'2006-02-15 21:30:53'), +(11196,'2005-08-02 11:42:40',2648,126,'2005-08-10 11:58:40',2,'2006-02-15 21:30:53'), +(11197,'2005-08-02 11:45:07',3041,122,'2005-08-03 09:07:07',1,'2006-02-15 21:30:53'), +(11198,'2005-08-02 11:45:15',2908,540,'2005-08-10 11:42:15',2,'2006-02-15 21:30:53'), +(11199,'2005-08-02 11:47:40',3926,578,'2005-08-10 06:52:40',2,'2006-02-15 21:30:53'), +(11200,'2005-08-02 11:48:36',2730,98,'2005-08-07 08:35:36',2,'2006-02-15 21:30:53'), +(11201,'2005-08-02 11:49:16',1501,195,'2005-08-11 08:39:16',1,'2006-02-15 21:30:53'), +(11202,'2005-08-02 11:51:57',3625,231,'2005-08-08 09:41:57',1,'2006-02-15 21:30:53'), +(11203,'2005-08-02 11:52:41',4520,92,'2005-08-10 15:52:41',2,'2006-02-15 21:30:53'), +(11204,'2005-08-02 11:56:31',3578,247,'2005-08-06 14:16:31',2,'2006-02-15 21:30:53'), +(11205,'2005-08-02 11:56:54',4321,552,'2005-08-05 08:24:54',1,'2006-02-15 21:30:53'), +(11206,'2005-08-02 11:58:03',4131,72,'2005-08-07 12:36:03',2,'2006-02-15 21:30:53'), +(11207,'2005-08-02 12:01:30',4470,481,'2005-08-05 07:56:30',1,'2006-02-15 21:30:53'), +(11208,'2005-08-02 12:02:37',4566,320,'2005-08-05 10:56:37',1,'2006-02-15 21:30:53'), +(11209,'2005-08-02 12:09:45',3219,24,'2005-08-07 08:52:45',1,'2006-02-15 21:30:53'), +(11210,'2005-08-02 12:15:54',422,202,'2005-08-04 16:18:54',2,'2006-02-15 21:30:53'), +(11211,'2005-08-02 12:16:48',1722,245,'2005-08-03 10:40:48',1,'2006-02-15 21:30:53'), +(11212,'2005-08-02 12:18:29',4007,343,'2005-08-05 16:05:29',2,'2006-02-15 21:30:53'), +(11213,'2005-08-02 12:18:35',1007,584,'2005-08-05 08:44:35',2,'2006-02-15 21:30:53'), +(11214,'2005-08-02 12:19:50',2722,407,'2005-08-11 06:38:50',1,'2006-02-15 21:30:53'), +(11215,'2005-08-02 12:20:42',379,197,'2005-08-06 14:01:42',1,'2006-02-15 21:30:53'), +(11216,'2005-08-02 12:23:43',1109,473,'2005-08-03 13:19:43',1,'2006-02-15 21:30:53'), +(11217,'2005-08-02 12:26:31',1201,417,'2005-08-09 09:53:31',2,'2006-02-15 21:30:53'), +(11218,'2005-08-02 12:29:12',1126,500,'2005-08-10 16:13:12',2,'2006-02-15 21:30:53'), +(11219,'2005-08-02 12:30:20',2889,461,'2005-08-08 13:42:20',2,'2006-02-15 21:30:53'), +(11220,'2005-08-02 12:31:41',3777,84,'2005-08-05 08:23:41',2,'2006-02-15 21:30:53'), +(11221,'2005-08-02 12:32:12',1689,146,'2005-08-03 17:13:12',1,'2006-02-15 21:30:53'), +(11222,'2005-08-02 12:32:28',1780,407,'2005-08-11 18:15:28',2,'2006-02-15 21:30:53'), +(11223,'2005-08-02 12:34:27',1994,597,'2005-08-07 14:21:27',1,'2006-02-15 21:30:53'), +(11224,'2005-08-02 12:40:38',3938,181,'2005-08-04 10:02:38',2,'2006-02-15 21:30:53'), +(11225,'2005-08-02 12:43:27',3721,159,'2005-08-04 18:41:27',2,'2006-02-15 21:30:53'), +(11226,'2005-08-02 12:47:30',79,282,'2005-08-06 11:24:30',1,'2006-02-15 21:30:53'), +(11227,'2005-08-02 12:48:05',1101,65,'2005-08-11 14:08:05',1,'2006-02-15 21:30:53'), +(11228,'2005-08-02 12:55:23',2561,144,'2005-08-08 12:31:23',1,'2006-02-15 21:30:53'), +(11229,'2005-08-02 12:56:37',941,332,'2005-08-11 11:13:37',2,'2006-02-15 21:30:53'), +(11230,'2005-08-02 12:59:08',1463,257,'2005-08-04 13:42:08',1,'2006-02-15 21:30:53'), +(11231,'2005-08-02 13:02:11',1100,90,'2005-08-07 10:05:11',2,'2006-02-15 21:30:53'), +(11232,'2005-08-02 13:04:12',971,8,'2005-08-10 15:39:12',1,'2006-02-15 21:30:53'), +(11233,'2005-08-02 13:06:11',2221,266,'2005-08-08 15:02:11',1,'2006-02-15 21:30:53'), +(11234,'2005-08-02 13:12:17',1020,27,'2005-08-05 17:37:17',1,'2006-02-15 21:30:53'), +(11235,'2005-08-02 13:13:21',2501,127,'2005-08-03 07:17:21',1,'2006-02-15 21:30:53'), +(11236,'2005-08-02 13:17:21',145,420,'2005-08-09 09:53:21',2,'2006-02-15 21:30:53'), +(11237,'2005-08-02 13:24:01',2668,426,'2005-08-05 11:41:01',2,'2006-02-15 21:30:53'), +(11238,'2005-08-02 13:25:50',2705,506,'2005-08-08 19:12:50',2,'2006-02-15 21:30:53'), +(11239,'2005-08-02 13:27:11',189,111,'2005-08-03 14:36:11',1,'2006-02-15 21:30:53'), +(11240,'2005-08-02 13:28:30',2170,597,'2005-08-05 11:40:30',1,'2006-02-15 21:30:53'), +(11241,'2005-08-02 13:29:24',3657,543,'2005-08-11 11:36:24',2,'2006-02-15 21:30:53'), +(11242,'2005-08-02 13:32:00',1041,434,'2005-08-10 19:24:00',2,'2006-02-15 21:30:53'), +(11243,'2005-08-02 13:32:48',2517,361,'2005-08-11 18:55:48',1,'2006-02-15 21:30:53'), +(11244,'2005-08-02 13:33:24',3423,142,'2005-08-10 10:18:24',2,'2006-02-15 21:30:53'), +(11245,'2005-08-02 13:33:50',2609,92,'2005-08-04 10:20:50',2,'2006-02-15 21:30:53'), +(11246,'2005-08-02 13:33:56',3577,550,'2005-08-03 08:52:56',2,'2006-02-15 21:30:53'), +(11247,'2005-08-02 13:34:08',1661,441,'2005-08-06 16:23:08',2,'2006-02-15 21:30:53'), +(11248,'2005-08-02 13:35:34',4139,312,'2005-08-03 10:37:34',1,'2006-02-15 21:30:53'), +(11249,'2005-08-02 13:35:40',3394,157,'2005-08-07 11:22:40',1,'2006-02-15 21:30:53'), +(11250,'2005-08-02 13:35:42',2223,279,'2005-08-10 12:32:42',2,'2006-02-15 21:30:53'), +(11251,'2005-08-02 13:40:49',2181,532,'2005-08-09 14:16:49',2,'2006-02-15 21:30:53'), +(11252,'2005-08-02 13:42:13',2410,337,'2005-08-06 19:04:13',2,'2006-02-15 21:30:53'), +(11253,'2005-08-02 13:42:44',2898,303,'2005-08-09 17:06:44',2,'2006-02-15 21:30:53'), +(11254,'2005-08-02 13:43:49',56,315,'2005-08-08 13:16:49',1,'2006-02-15 21:30:53'), +(11255,'2005-08-02 13:44:30',3393,569,'2005-08-03 12:00:30',1,'2006-02-15 21:30:53'), +(11256,'2005-08-02 13:44:53',2060,2,'2005-08-04 16:39:53',1,'2006-02-15 21:30:53'), +(11257,'2005-08-02 13:45:05',105,468,'2005-08-11 16:37:05',1,'2006-02-15 21:30:53'), +(11258,'2005-08-02 13:45:39',1576,242,'2005-08-06 07:57:39',1,'2006-02-15 21:30:53'), +(11259,'2005-08-02 13:46:30',896,330,'2005-08-07 14:03:30',1,'2006-02-15 21:30:53'), +(11260,'2005-08-02 13:52:19',4015,207,'2005-08-06 08:13:19',2,'2006-02-15 21:30:53'), +(11261,'2005-08-02 13:54:26',31,204,'2005-08-10 19:04:26',2,'2006-02-15 21:30:53'), +(11262,'2005-08-02 13:58:55',71,348,'2005-08-05 18:09:55',2,'2006-02-15 21:30:53'), +(11263,'2005-08-02 14:02:19',1189,421,'2005-08-07 14:03:19',2,'2006-02-15 21:30:53'), +(11264,'2005-08-02 14:05:18',3420,360,'2005-08-10 08:46:18',2,'2006-02-15 21:30:53'), +(11265,'2005-08-02 14:05:42',3870,531,'2005-08-11 15:27:42',2,'2006-02-15 21:30:53'), +(11266,'2005-08-02 14:07:35',3972,99,'2005-08-04 13:31:35',1,'2006-02-15 21:30:53'), +(11267,'2005-08-02 14:09:08',2045,244,'2005-08-10 12:33:08',1,'2006-02-15 21:30:53'), +(11268,'2005-08-02 14:10:39',3275,558,'2005-08-04 14:35:39',1,'2006-02-15 21:30:53'), +(11269,'2005-08-02 14:11:41',2398,297,'2005-08-08 18:53:41',1,'2006-02-15 21:30:53'), +(11270,'2005-08-02 14:18:07',1882,418,'2005-08-03 08:20:07',1,'2006-02-15 21:30:53'), +(11271,'2005-08-02 14:18:22',4323,93,'2005-08-07 09:35:22',2,'2006-02-15 21:30:53'), +(11272,'2005-08-02 14:20:27',4111,158,'2005-08-07 12:24:27',2,'2006-02-15 21:30:53'), +(11273,'2005-08-02 14:20:55',3383,541,'2005-08-07 12:57:55',1,'2006-02-15 21:30:53'), +(11274,'2005-08-02 14:24:08',1253,70,'2005-08-11 14:56:08',1,'2006-02-15 21:30:53'), +(11275,'2005-08-02 14:25:58',2838,464,'2005-08-07 11:20:58',1,'2006-02-15 21:30:53'), +(11276,'2005-08-02 14:28:46',4226,190,'2005-08-04 14:00:46',1,'2006-02-15 21:30:53'), +(11277,'2005-08-02 14:28:50',2050,68,'2005-08-04 13:50:50',1,'2006-02-15 21:30:53'), +(11278,'2005-08-02 14:29:43',961,143,'2005-08-07 10:13:43',1,'2006-02-15 21:30:53'), +(11279,'2005-08-02 14:30:03',151,125,'2005-08-10 09:49:03',2,'2006-02-15 21:30:53'), +(11280,'2005-08-02 14:34:33',1846,134,'2005-08-08 15:40:33',2,'2006-02-15 21:30:53'), +(11281,'2005-08-02 14:35:01',2210,137,'2005-08-07 17:28:01',1,'2006-02-15 21:30:53'), +(11282,'2005-08-02 14:35:03',1824,273,'2005-08-03 16:02:03',2,'2006-02-15 21:30:53'), +(11283,'2005-08-02 14:39:46',312,134,'2005-08-05 10:19:46',2,'2006-02-15 21:30:53'), +(11284,'2005-08-02 14:42:45',172,8,'2005-08-04 11:55:45',2,'2006-02-15 21:30:53'), +(11285,'2005-08-02 14:44:02',3849,585,'2005-08-11 16:45:02',2,'2006-02-15 21:30:53'), +(11286,'2005-08-02 14:44:22',1319,207,'2005-08-10 09:01:22',2,'2006-02-15 21:30:53'), +(11287,'2005-08-02 14:49:51',927,55,'2005-08-09 09:19:51',2,'2006-02-15 21:30:53'), +(11288,'2005-08-02 14:54:08',1478,298,'2005-08-11 12:22:08',1,'2006-02-15 21:30:53'), +(11289,'2005-08-02 14:55:00',2869,10,'2005-08-11 13:57:00',1,'2006-02-15 21:30:53'), +(11290,'2005-08-02 14:57:44',425,582,'2005-08-09 19:36:44',2,'2006-02-15 21:30:53'), +(11291,'2005-08-02 14:57:58',491,417,'2005-08-11 09:04:58',2,'2006-02-15 21:30:53'), +(11292,'2005-08-02 14:58:41',210,13,'2005-08-06 14:38:41',2,'2006-02-15 21:30:53'), +(11293,'2005-08-02 15:00:43',1514,475,'2005-08-11 17:49:43',1,'2006-02-15 21:30:53'), +(11294,'2005-08-02 15:08:27',855,411,'2005-08-03 18:28:27',1,'2006-02-15 21:30:53'), +(11295,'2005-08-02 15:10:06',423,67,'2005-08-10 09:52:06',1,'2006-02-15 21:30:53'), +(11296,'2005-08-02 15:15:27',247,154,'2005-08-11 16:12:27',1,'2006-02-15 21:30:53'), +(11297,'2005-08-02 15:22:47',2531,62,'2005-08-11 18:45:47',1,'2006-02-15 21:30:53'), +(11298,'2005-08-02 15:32:32',1663,35,'2005-08-06 20:22:32',1,'2006-02-15 21:30:53'), +(11299,'2005-08-02 15:36:52',3232,1,'2005-08-10 16:40:52',2,'2006-02-15 21:30:53'), +(11300,'2005-08-02 15:37:42',3032,552,'2005-08-11 14:25:42',1,'2006-02-15 21:30:53'), +(11301,'2005-08-02 15:37:59',676,502,'2005-08-04 10:57:59',2,'2006-02-15 21:30:53'), +(11302,'2005-08-02 15:38:03',1918,51,'2005-08-09 10:33:03',2,'2006-02-15 21:30:53'), +(11303,'2005-08-02 15:39:18',1817,417,'2005-08-05 10:59:18',1,'2006-02-15 21:30:53'), +(11304,'2005-08-02 15:40:10',2592,413,'2005-08-06 16:12:10',2,'2006-02-15 21:30:53'), +(11305,'2005-08-02 15:44:55',1690,341,'2005-08-08 16:42:55',2,'2006-02-15 21:30:53'), +(11306,'2005-08-02 15:45:10',13,247,'2005-08-03 21:14:10',2,'2006-02-15 21:30:53'), +(11307,'2005-08-02 15:48:08',1490,15,'2005-08-06 20:33:08',2,'2006-02-15 21:30:53'), +(11308,'2005-08-02 15:50:44',699,16,'2005-08-05 11:38:44',2,'2006-02-15 21:30:53'), +(11309,'2005-08-02 15:50:55',607,275,'2005-08-09 18:28:55',1,'2006-02-15 21:30:53'), +(11310,'2005-08-02 15:51:58',3601,415,'2005-08-07 12:34:58',1,'2006-02-15 21:30:53'), +(11311,'2005-08-02 15:53:48',204,197,'2005-08-03 16:32:48',1,'2006-02-15 21:30:53'), +(11312,'2005-08-02 15:56:51',1093,190,'2005-08-07 20:56:51',2,'2006-02-15 21:30:53'), +(11313,'2005-08-02 16:02:51',2689,419,'2005-08-03 14:54:51',1,'2006-02-15 21:30:53'), +(11314,'2005-08-02 16:04:08',2790,26,'2005-08-04 18:47:08',1,'2006-02-15 21:30:53'), +(11315,'2005-08-02 16:05:17',1116,13,'2005-08-05 16:33:17',1,'2006-02-15 21:30:53'), +(11316,'2005-08-02 16:07:49',521,108,'2005-08-10 13:22:49',1,'2006-02-15 21:30:53'), +(11317,'2005-08-02 16:08:52',1889,502,'2005-08-08 21:12:52',1,'2006-02-15 21:30:53'), +(11318,'2005-08-02 16:09:11',2386,532,'2005-08-07 11:28:11',2,'2006-02-15 21:30:53'), +(11319,'2005-08-02 16:10:09',4069,178,'2005-08-09 11:21:09',2,'2006-02-15 21:30:53'), +(11320,'2005-08-02 16:13:28',3362,550,'2005-08-05 21:23:28',1,'2006-02-15 21:30:53'), +(11321,'2005-08-02 16:15:07',205,266,'2005-08-04 20:35:07',2,'2006-02-15 21:30:53'), +(11322,'2005-08-02 16:23:17',761,418,'2005-08-09 19:55:17',2,'2006-02-15 21:30:53'), +(11323,'2005-08-02 16:29:57',3784,419,'2005-08-06 16:01:57',1,'2006-02-15 21:30:53'), +(11324,'2005-08-02 16:31:17',2900,540,'2005-08-08 15:38:17',2,'2006-02-15 21:30:53'), +(11325,'2005-08-02 16:33:11',4514,422,'2005-08-08 13:42:11',1,'2006-02-15 21:30:53'), +(11326,'2005-08-02 16:34:29',1762,530,'2005-08-03 17:40:29',2,'2006-02-15 21:30:53'), +(11327,'2005-08-02 16:40:47',773,361,'2005-08-03 22:13:47',1,'2006-02-15 21:30:53'), +(11328,'2005-08-02 16:42:38',2031,219,'2005-08-04 21:02:38',1,'2006-02-15 21:30:53'), +(11329,'2005-08-02 16:42:52',2677,399,'2005-08-08 16:45:52',1,'2006-02-15 21:30:53'), +(11330,'2005-08-02 16:45:33',4326,75,'2005-08-04 15:15:33',2,'2006-02-15 21:30:53'), +(11331,'2005-08-02 16:49:01',3789,568,'2005-08-09 19:15:01',1,'2006-02-15 21:30:53'), +(11332,'2005-08-02 16:52:57',2381,467,'2005-08-04 14:13:57',1,'2006-02-15 21:30:53'), +(11333,'2005-08-02 16:53:00',3335,225,'2005-08-07 20:49:00',2,'2006-02-15 21:30:53'), +(11334,'2005-08-02 16:53:20',1504,560,'2005-08-11 20:47:20',1,'2006-02-15 21:30:53'), +(11335,'2005-08-02 16:57:37',2968,157,'2005-08-09 19:43:37',1,'2006-02-15 21:30:53'), +(11336,'2005-08-02 16:58:56',1949,473,'2005-08-06 16:56:56',1,'2006-02-15 21:30:53'), +(11337,'2005-08-02 16:59:09',3428,366,'2005-08-10 20:41:09',2,'2006-02-15 21:30:53'), +(11338,'2005-08-02 17:00:12',3689,26,'2005-08-03 18:54:12',1,'2006-02-15 21:30:53'), +(11339,'2005-08-02 17:02:06',705,263,'2005-08-08 21:12:06',1,'2006-02-15 21:30:53'), +(11340,'2005-08-02 17:05:43',1403,366,'2005-08-09 13:25:43',1,'2006-02-15 21:30:53'), +(11341,'2005-08-02 17:09:24',3586,15,'2005-08-09 19:48:24',2,'2006-02-15 21:30:53'), +(11342,'2005-08-02 17:11:35',4251,179,'2005-08-07 15:04:35',1,'2006-02-15 21:30:53'), +(11343,'2005-08-02 17:12:30',564,466,'2005-08-09 12:08:30',1,'2006-02-15 21:30:53'), +(11344,'2005-08-02 17:13:26',365,38,'2005-08-07 16:44:26',1,'2006-02-15 21:30:53'), +(11345,'2005-08-02 17:14:19',1895,405,'2005-08-11 14:02:19',2,'2006-02-15 21:30:53'), +(11346,'2005-08-02 17:15:38',584,100,'2005-08-04 13:31:38',2,'2006-02-15 21:30:53'), +(11347,'2005-08-02 17:18:07',195,217,'2005-08-05 12:30:07',1,'2006-02-15 21:30:53'), +(11348,'2005-08-02 17:18:38',1704,389,'2005-08-06 16:11:38',2,'2006-02-15 21:30:53'), +(11349,'2005-08-02 17:21:49',1871,73,'2005-08-06 18:40:49',1,'2006-02-15 21:30:53'), +(11350,'2005-08-02 17:22:59',1265,598,'2005-08-09 19:56:59',2,'2006-02-15 21:30:53'), +(11351,'2005-08-02 17:28:07',242,198,'2005-08-09 21:55:07',1,'2006-02-15 21:30:53'), +(11352,'2005-08-02 17:29:39',2760,546,'2005-08-10 15:31:39',1,'2006-02-15 21:30:53'), +(11353,'2005-08-02 17:34:45',1729,444,'2005-08-09 16:01:45',1,'2006-02-15 21:30:53'), +(11354,'2005-08-02 17:35:10',1887,569,'2005-08-09 12:07:10',2,'2006-02-15 21:30:53'), +(11355,'2005-08-02 17:37:43',2673,185,'2005-08-05 19:59:43',1,'2006-02-15 21:30:53'), +(11356,'2005-08-02 17:42:40',303,200,'2005-08-11 23:29:40',1,'2006-02-15 21:30:53'), +(11357,'2005-08-02 17:42:49',2644,148,'2005-08-11 18:14:49',1,'2006-02-15 21:30:53'), +(11358,'2005-08-02 17:45:02',2361,56,'2005-08-11 18:16:02',1,'2006-02-15 21:30:53'), +(11359,'2005-08-02 17:45:55',1648,466,'2005-08-10 20:53:55',2,'2006-02-15 21:30:53'), +(11360,'2005-08-02 17:46:04',1750,66,'2005-08-04 21:02:04',2,'2006-02-15 21:30:53'), +(11361,'2005-08-02 17:46:34',1124,547,'2005-08-03 15:21:34',1,'2006-02-15 21:30:53'), +(11362,'2005-08-02 17:47:25',2628,331,'2005-08-07 20:14:25',1,'2006-02-15 21:30:53'), +(11363,'2005-08-02 17:48:39',3190,274,'2005-08-05 17:20:39',1,'2006-02-15 21:30:53'), +(11364,'2005-08-02 17:53:36',4515,44,'2005-08-03 14:16:36',1,'2006-02-15 21:30:53'), +(11365,'2005-08-02 18:00:09',1151,508,'2005-08-04 13:40:09',2,'2006-02-15 21:30:53'), +(11366,'2005-08-02 18:01:25',3583,280,'2005-08-11 15:02:25',1,'2006-02-15 21:30:53'), +(11367,'2005-08-02 18:01:38',1440,1,'2005-08-04 13:19:38',1,'2006-02-15 21:30:53'), +(11368,'2005-08-02 18:03:05',866,153,'2005-08-07 20:40:05',1,'2006-02-15 21:30:53'), +(11369,'2005-08-02 18:04:41',2480,480,'2005-08-09 18:41:41',1,'2006-02-15 21:30:53'), +(11370,'2005-08-02 18:06:01',3077,146,'2005-08-04 15:10:01',1,'2006-02-15 21:30:53'), +(11371,'2005-08-02 18:07:36',324,561,'2005-08-06 17:52:36',1,'2006-02-15 21:30:53'), +(11372,'2005-08-02 18:10:50',796,327,'2005-08-07 17:58:50',1,'2006-02-15 21:30:53'), +(11373,'2005-08-02 18:14:12',181,267,'2005-08-06 23:37:12',1,'2006-02-15 21:30:53'), +(11374,'2005-08-02 18:14:54',2805,424,'2005-08-04 18:22:54',1,'2006-02-15 21:30:53'), +(11375,'2005-08-02 18:14:56',1064,346,'2005-08-08 23:29:56',1,'2006-02-15 21:30:53'), +(11376,'2005-08-02 18:16:00',2530,177,'2005-08-11 23:38:00',2,'2006-02-15 21:30:53'), +(11377,'2005-08-02 18:16:47',3334,119,'2005-08-08 13:46:47',1,'2006-02-15 21:30:53'), +(11378,'2005-08-02 18:16:52',3824,188,'2005-08-03 14:25:52',1,'2006-02-15 21:30:53'), +(11379,'2005-08-02 18:16:55',251,61,'2005-08-07 18:12:55',1,'2006-02-15 21:30:53'), +(11380,'2005-08-02 18:17:32',1046,551,'2005-08-03 19:26:32',2,'2006-02-15 21:30:53'), +(11381,'2005-08-02 18:19:29',993,451,'2005-08-08 20:39:29',2,'2006-02-15 21:30:53'), +(11382,'2005-08-02 18:20:52',3848,407,'2005-08-07 17:06:52',1,'2006-02-15 21:30:53'), +(11383,'2005-08-02 18:22:05',257,445,'2005-08-11 17:18:05',1,'2006-02-15 21:30:53'), +(11384,'2005-08-02 18:23:01',2840,225,'2005-08-05 17:59:01',1,'2006-02-15 21:30:53'), +(11385,'2005-08-02 18:23:11',2478,192,'2005-08-06 12:37:11',1,'2006-02-15 21:30:53'), +(11386,'2005-08-02 18:24:03',519,183,'2005-08-06 21:22:03',1,'2006-02-15 21:30:53'), +(11387,'2005-08-02 18:32:38',2491,481,'2005-08-07 19:08:38',2,'2006-02-15 21:30:53'), +(11388,'2005-08-02 18:35:55',477,369,'2005-08-09 21:56:55',1,'2006-02-15 21:30:53'), +(11389,'2005-08-02 18:39:12',3267,270,'2005-08-03 23:23:12',2,'2006-02-15 21:30:53'), +(11390,'2005-08-02 18:39:16',3135,294,'2005-08-04 21:43:16',1,'2006-02-15 21:30:53'), +(11391,'2005-08-02 18:40:12',2039,403,'2005-08-10 15:55:12',1,'2006-02-15 21:30:53'), +(11392,'2005-08-02 18:41:11',261,146,'2005-08-11 21:41:11',1,'2006-02-15 21:30:53'), +(11393,'2005-08-02 18:44:29',1033,501,'2005-08-11 23:58:29',1,'2006-02-15 21:30:53'), +(11394,'2005-08-02 18:44:45',2087,257,'2005-08-06 22:51:45',2,'2006-02-15 21:30:53'), +(11395,'2005-08-02 18:47:44',4234,225,'2005-08-10 17:07:44',2,'2006-02-15 21:30:53'), +(11396,'2005-08-02 18:48:29',1155,59,'2005-08-04 16:05:29',2,'2006-02-15 21:30:53'), +(11397,'2005-08-02 18:53:14',2566,470,'2005-08-09 18:09:14',1,'2006-02-15 21:30:53'), +(11398,'2005-08-02 18:55:15',3952,6,'2005-08-10 19:50:15',2,'2006-02-15 21:30:53'), +(11399,'2005-08-02 18:56:28',2094,565,'2005-08-11 23:19:28',1,'2006-02-15 21:30:53'), +(11400,'2005-08-02 19:00:52',3150,9,'2005-08-09 19:45:52',2,'2006-02-15 21:30:53'), +(11401,'2005-08-02 19:05:06',1799,544,'2005-08-09 22:34:06',1,'2006-02-15 21:30:53'), +(11402,'2005-08-02 19:07:21',3291,561,'2005-08-07 20:59:21',1,'2006-02-15 21:30:53'), +(11403,'2005-08-02 19:10:21',4072,587,'2005-08-04 00:44:21',2,'2006-02-15 21:30:53'), +(11404,'2005-08-02 19:12:40',3285,60,'2005-08-11 22:38:40',2,'2006-02-15 21:30:53'), +(11405,'2005-08-02 19:13:39',418,10,'2005-08-07 19:19:39',2,'2006-02-15 21:30:53'), +(11406,'2005-08-02 19:16:10',2502,525,'2005-08-04 20:51:10',2,'2006-02-15 21:30:53'), +(11407,'2005-08-02 19:18:43',3437,513,'2005-08-08 16:15:43',2,'2006-02-15 21:30:53'), +(11408,'2005-08-02 19:25:13',1779,83,'2005-08-06 17:12:13',1,'2006-02-15 21:30:53'), +(11409,'2005-08-02 19:26:51',3691,418,'2005-08-07 19:55:51',1,'2006-02-15 21:30:53'), +(11410,'2005-08-02 19:29:01',692,592,'2005-08-11 16:50:01',1,'2006-02-15 21:30:53'), +(11411,'2005-08-02 19:29:47',1497,141,'2005-08-09 16:27:47',2,'2006-02-15 21:30:53'), +(11412,'2005-08-02 19:32:51',2271,141,'2005-08-11 22:16:51',1,'2006-02-15 21:30:53'), +(11413,'2005-08-02 19:35:19',1115,297,'2005-08-05 21:33:19',2,'2006-02-15 21:30:53'), +(11414,'2005-08-02 19:43:07',1772,353,'2005-08-07 15:22:07',2,'2006-02-15 21:30:53'), +(11415,'2005-08-02 19:43:38',2197,572,'2005-08-10 15:13:38',1,'2006-02-15 21:30:53'), +(11416,'2005-08-02 19:44:04',1848,58,'2005-08-11 15:30:04',1,'2006-02-15 21:30:53'), +(11417,'2005-08-02 19:44:46',3083,437,'2005-08-11 21:43:46',2,'2006-02-15 21:30:53'), +(11418,'2005-08-02 19:45:33',4490,91,'2005-08-06 17:40:33',1,'2006-02-15 21:30:53'), +(11419,'2005-08-02 19:46:38',514,444,'2005-08-11 14:49:38',1,'2006-02-15 21:30:53'), +(11420,'2005-08-02 19:47:56',3928,158,'2005-08-05 21:48:56',2,'2006-02-15 21:30:53'), +(11421,'2005-08-02 19:51:53',3361,473,'2005-08-12 00:50:53',2,'2006-02-15 21:30:53'), +(11422,'2005-08-02 19:52:08',342,72,'2005-08-11 18:40:08',2,'2006-02-15 21:30:53'), +(11423,'2005-08-02 19:57:13',3431,241,'2005-08-06 00:54:13',2,'2006-02-15 21:30:53'), +(11424,'2005-08-02 19:57:42',1030,84,'2005-08-10 16:57:42',2,'2006-02-15 21:30:53'), +(11425,'2005-08-02 19:58:48',989,419,'2005-08-03 19:30:48',2,'2006-02-15 21:30:53'), +(11426,'2005-08-02 20:00:09',130,572,'2005-08-09 01:30:09',2,'2006-02-15 21:30:53'), +(11427,'2005-08-02 20:02:39',3287,403,'2005-08-04 22:26:39',2,'2006-02-15 21:30:53'), +(11428,'2005-08-02 20:03:10',722,326,'2005-08-04 01:55:10',1,'2006-02-15 21:30:53'), +(11429,'2005-08-02 20:03:52',1098,348,'2005-08-10 16:38:52',2,'2006-02-15 21:30:53'), +(11430,'2005-08-02 20:04:36',2258,140,'2005-08-08 19:43:36',1,'2006-02-15 21:30:53'), +(11431,'2005-08-02 20:05:16',1409,271,'2005-08-04 00:05:16',2,'2006-02-15 21:30:53'), +(11432,'2005-08-02 20:10:01',959,540,'2005-08-07 01:28:01',1,'2006-02-15 21:30:53'), +(11433,'2005-08-02 20:13:10',1,518,'2005-08-11 21:35:10',1,'2006-02-15 21:30:53'), +(11434,'2005-08-02 20:13:14',3154,391,'2005-08-05 15:01:14',1,'2006-02-15 21:30:53'), +(11435,'2005-08-02 20:14:23',1625,502,'2005-08-05 20:40:23',1,'2006-02-15 21:30:53'), +(11436,'2005-08-02 20:16:06',3834,106,'2005-08-05 20:40:06',2,'2006-02-15 21:30:53'), +(11437,'2005-08-02 20:20:06',2679,225,'2005-08-05 22:17:06',2,'2006-02-15 21:30:53'), +(11438,'2005-08-02 20:21:08',1040,372,'2005-08-10 22:12:08',1,'2006-02-15 21:30:53'), +(11439,'2005-08-02 20:22:45',2897,18,'2005-08-04 18:30:45',1,'2006-02-15 21:30:53'), +(11440,'2005-08-02 20:24:02',2727,306,'2005-08-07 16:42:02',2,'2006-02-15 21:30:53'), +(11441,'2005-08-02 20:25:41',1027,389,'2005-08-05 00:05:41',2,'2006-02-15 21:30:53'), +(11442,'2005-08-02 20:26:19',2598,208,'2005-08-07 00:33:19',2,'2006-02-15 21:30:53'), +(11443,'2005-08-02 20:29:30',1291,581,'2005-08-07 01:08:30',2,'2006-02-15 21:30:53'), +(11444,'2005-08-02 20:32:55',1419,28,'2005-08-08 23:21:55',2,'2006-02-15 21:30:53'), +(11445,'2005-08-02 20:33:35',3340,108,'2005-08-08 16:02:35',2,'2006-02-15 21:30:53'), +(11446,'2005-08-02 20:33:37',748,342,'2005-08-03 18:22:37',1,'2006-02-15 21:30:53'), +(11447,'2005-08-02 20:36:25',3868,508,'2005-08-07 18:52:25',1,'2006-02-15 21:30:53'), +(11448,'2005-08-02 20:44:33',1185,496,'2005-08-05 22:58:33',2,'2006-02-15 21:30:53'), +(11449,'2005-08-02 20:44:43',3279,443,'2005-08-07 23:47:43',2,'2006-02-15 21:30:53'), +(11450,'2005-08-02 20:45:54',2009,214,'2005-08-08 17:17:54',2,'2006-02-15 21:30:53'), +(11451,'2005-08-02 20:45:56',776,515,'2005-08-06 21:42:56',2,'2006-02-15 21:30:53'), +(11452,'2005-08-02 20:59:52',1245,35,'2005-08-12 01:16:52',1,'2006-02-15 21:30:53'), +(11453,'2005-08-02 21:00:05',4578,84,'2005-08-08 22:03:05',2,'2006-02-15 21:30:53'), +(11454,'2005-08-02 21:04:39',2901,199,'2005-08-05 19:03:39',1,'2006-02-15 21:30:53'), +(11455,'2005-08-02 21:07:06',2000,498,'2005-08-12 01:21:06',1,'2006-02-15 21:30:53'), +(11456,'2005-08-02 21:14:04',3638,322,'2005-08-07 19:49:04',2,'2006-02-15 21:30:53'), +(11457,'2005-08-02 21:14:16',1642,379,'2005-08-10 02:39:16',2,'2006-02-15 21:30:53'), +(11458,'2005-08-02 21:24:02',3514,575,'2005-08-04 01:32:02',2,'2006-02-15 21:30:53'), +(11459,'2005-08-02 21:25:25',3730,392,'2005-08-04 19:57:25',2,'2006-02-15 21:30:53'), +(11460,'2005-08-02 21:28:03',4113,403,'2005-08-08 18:24:03',1,'2006-02-15 21:30:53'), +(11461,'2005-08-02 21:35:00',4343,65,'2005-08-05 01:34:00',1,'2006-02-15 21:30:53'), +(11462,'2005-08-02 21:36:46',167,268,'2005-08-10 01:48:46',1,'2006-02-15 21:30:53'), +(11463,'2005-08-02 21:37:36',1944,138,'2005-08-08 03:11:36',2,'2006-02-15 21:30:53'), +(11464,'2005-08-02 21:42:07',538,577,'2005-08-03 21:44:07',2,'2006-02-15 21:30:53'), +(11465,'2005-08-02 21:43:52',2190,447,'2005-08-10 22:24:52',1,'2006-02-15 21:30:53'), +(11466,'2005-08-02 21:46:46',3363,556,'2005-08-06 01:42:46',1,'2006-02-15 21:30:53'), +(11467,'2005-08-02 21:47:07',246,117,'2005-08-09 00:50:07',1,'2006-02-15 21:30:53'), +(11468,'2005-08-02 21:47:26',3168,413,'2005-08-05 02:30:26',2,'2006-02-15 21:30:53'), +(11469,'2005-08-02 21:48:09',230,77,'2005-08-06 18:37:09',1,'2006-02-15 21:30:53'), +(11470,'2005-08-02 21:48:28',2379,346,'2005-08-05 23:58:28',2,'2006-02-15 21:30:53'), +(11471,'2005-08-02 21:49:03',3378,355,'2005-08-08 00:17:03',1,'2006-02-15 21:30:53'), +(11472,'2005-08-02 21:49:06',1829,410,'2005-08-11 20:17:06',1,'2006-02-15 21:30:53'), +(11473,'2005-08-02 21:52:03',620,536,'2005-08-09 02:01:03',1,'2006-02-15 21:30:53'), +(11474,'2005-08-02 21:53:08',574,214,'2005-08-05 22:36:08',1,'2006-02-15 21:30:53'), +(11475,'2005-08-02 21:55:09',3687,194,'2005-08-09 20:28:09',2,'2006-02-15 21:30:53'), +(11476,'2005-08-02 22:03:47',724,144,'2005-08-09 02:19:47',1,'2006-02-15 21:30:53'), +(11477,'2005-08-02 22:09:01',1671,47,'2005-08-07 03:46:01',2,'2006-02-15 21:30:53'), +(11478,'2005-08-02 22:09:05',3932,197,'2005-08-04 18:02:05',1,'2006-02-15 21:30:53'), +(11479,'2005-08-02 22:18:13',4077,237,'2005-08-12 00:43:13',1,'2006-02-15 21:30:53'), +(11480,'2005-08-02 22:18:24',4161,14,'2005-08-04 21:22:24',2,'2006-02-15 21:30:53'), +(11481,'2005-08-02 22:18:41',4028,234,'2005-08-09 23:43:41',2,'2006-02-15 21:30:53'), +(11482,'2005-08-02 22:24:31',1400,134,'2005-08-04 01:48:31',1,'2006-02-15 21:30:53'), +(11483,'2005-08-02 22:28:22',1586,45,'2005-08-11 18:06:22',1,'2006-02-15 21:30:53'), +(11484,'2005-08-02 22:28:23',330,165,'2005-08-04 20:51:23',2,'2006-02-15 21:30:53'), +(11485,'2005-08-02 22:33:25',1872,326,'2005-08-04 23:26:25',2,'2006-02-15 21:30:53'), +(11486,'2005-08-02 22:34:06',1610,236,'2005-08-09 00:46:06',2,'2006-02-15 21:30:53'), +(11487,'2005-08-02 22:35:05',734,239,'2005-08-08 00:54:05',2,'2006-02-15 21:30:53'), +(11488,'2005-08-02 22:35:15',2520,45,'2005-08-09 00:28:15',2,'2006-02-15 21:30:53'), +(11489,'2005-08-02 22:35:28',3001,474,'2005-08-04 00:29:28',2,'2006-02-15 21:30:53'), +(11490,'2005-08-02 22:36:00',1178,156,'2005-08-09 16:36:00',1,'2006-02-15 21:30:53'), +(11491,'2005-08-02 22:44:50',268,307,'2005-08-11 01:55:50',2,'2006-02-15 21:30:53'), +(11492,'2005-08-02 22:46:47',4037,349,'2005-08-09 19:54:47',2,'2006-02-15 21:30:53'), +(11493,'2005-08-02 22:47:00',3375,124,'2005-08-10 20:53:00',2,'2006-02-15 21:30:53'), +(11494,'2005-08-02 22:51:23',3994,579,'2005-08-09 01:52:23',1,'2006-02-15 21:30:53'), +(11495,'2005-08-16 22:51:20',1265,247,'2005-08-23 00:44:20',1,'2006-02-15 21:30:53'), +(11496,'2006-02-14 15:16:03',2047,155,NULL,1,'2006-02-15 21:30:53'), +(11497,'2005-08-16 22:52:30',436,12,'2005-08-21 19:52:30',1,'2006-02-15 21:30:53'), +(11498,'2005-08-16 22:52:54',487,482,'2005-08-25 03:27:54',2,'2006-02-15 21:30:53'), +(11499,'2005-08-16 22:54:12',3857,172,'2005-08-24 03:37:12',2,'2006-02-15 21:30:53'), +(11500,'2005-08-16 23:01:22',4003,584,'2005-08-24 22:54:22',1,'2006-02-15 21:30:53'), +(11501,'2005-08-16 23:04:53',2147,23,'2005-08-19 20:57:53',2,'2006-02-15 21:30:53'), +(11502,'2005-08-16 23:06:30',4470,11,'2005-08-19 03:49:30',1,'2006-02-15 21:30:53'), +(11503,'2005-08-16 23:10:34',1496,526,'2005-08-25 03:55:34',1,'2006-02-15 21:30:53'), +(11504,'2005-08-16 23:16:46',2132,350,'2005-08-18 20:49:46',2,'2006-02-15 21:30:53'), +(11505,'2005-08-16 23:18:47',3344,34,'2005-08-23 19:52:47',2,'2006-02-15 21:30:53'), +(11506,'2005-08-16 23:25:48',1529,565,'2005-08-22 18:17:48',1,'2006-02-15 21:30:53'), +(11507,'2005-08-16 23:26:43',4197,236,'2005-08-24 22:48:43',2,'2006-02-15 21:30:53'), +(11508,'2005-08-16 23:27:36',2688,19,'2005-08-25 01:34:36',2,'2006-02-15 21:30:53'), +(11509,'2005-08-16 23:29:53',2750,273,'2005-08-19 02:09:53',1,'2006-02-15 21:30:53'), +(11510,'2005-08-16 23:30:07',2997,400,'2005-08-25 17:35:07',1,'2006-02-15 21:30:53'), +(11511,'2005-08-16 23:39:59',2127,397,'2005-08-18 18:04:59',1,'2006-02-15 21:30:53'), +(11512,'2005-08-16 23:51:06',1248,373,'2005-08-26 02:06:06',2,'2006-02-15 21:30:53'), +(11513,'2005-08-16 23:51:33',4473,499,'2005-08-24 01:37:33',2,'2006-02-15 21:30:53'), +(11514,'2005-08-16 23:53:10',4240,423,'2005-08-23 22:04:10',1,'2006-02-15 21:30:53'), +(11515,'2005-08-16 23:54:34',1053,279,'2005-08-21 19:00:34',1,'2006-02-15 21:30:53'), +(11516,'2005-08-16 23:54:47',1860,90,'2005-08-17 20:05:47',1,'2006-02-15 21:30:53'), +(11517,'2005-08-16 23:56:28',4266,280,'2005-08-21 22:40:28',1,'2006-02-15 21:30:53'), +(11518,'2005-08-16 23:59:49',3297,407,'2005-08-17 22:51:49',2,'2006-02-15 21:30:53'), +(11519,'2005-08-17 00:01:27',1034,381,'2005-08-19 04:54:27',2,'2006-02-15 21:30:53'), +(11520,'2005-08-17 00:04:28',3536,119,'2005-08-26 02:03:28',1,'2006-02-15 21:30:53'), +(11521,'2005-08-17 00:04:54',463,229,'2005-08-21 00:57:54',1,'2006-02-15 21:30:53'), +(11522,'2005-08-17 00:05:05',2033,599,'2005-08-24 04:56:05',1,'2006-02-15 21:30:53'), +(11523,'2005-08-17 00:10:10',1329,421,'2005-08-24 22:39:10',1,'2006-02-15 21:30:53'), +(11524,'2005-08-17 00:10:55',317,533,'2005-08-23 05:30:55',1,'2006-02-15 21:30:53'), +(11525,'2005-08-17 00:15:31',1107,174,'2005-08-20 21:14:31',1,'2006-02-15 21:30:53'), +(11526,'2005-08-17 00:17:38',2419,572,'2005-08-18 03:59:38',2,'2006-02-15 21:30:53'), +(11527,'2005-08-17 00:25:06',162,264,'2005-08-22 21:13:06',1,'2006-02-15 21:30:53'), +(11528,'2005-08-17 00:27:23',893,14,'2005-08-22 06:12:23',2,'2006-02-15 21:30:53'), +(11529,'2005-08-17 00:28:01',3071,4,'2005-08-19 04:47:01',2,'2006-02-15 21:30:53'), +(11530,'2005-08-17 00:29:00',365,400,'2005-08-22 03:22:00',1,'2006-02-15 21:30:53'), +(11531,'2005-08-17 00:30:04',1817,278,'2005-08-20 01:12:04',2,'2006-02-15 21:30:53'), +(11532,'2005-08-17 00:34:14',1947,413,'2005-08-22 19:37:14',2,'2006-02-15 21:30:53'), +(11533,'2005-08-17 00:34:53',4252,264,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'), +(11534,'2005-08-17 00:35:27',2414,144,'2005-08-24 01:36:27',1,'2006-02-15 21:30:53'), +(11535,'2005-08-17 00:39:54',1649,356,'2005-08-24 20:46:54',2,'2006-02-15 21:30:53'), +(11536,'2005-08-17 00:40:03',2735,428,'2005-08-21 19:11:03',1,'2006-02-15 21:30:53'), +(11537,'2005-08-17 00:41:08',190,474,'2005-08-19 00:25:08',2,'2006-02-15 21:30:53'), +(11538,'2005-08-17 00:44:04',554,431,'2005-08-18 03:43:04',2,'2006-02-15 21:30:53'), +(11539,'2005-08-17 00:45:41',2064,264,'2005-08-19 06:03:41',1,'2006-02-15 21:30:53'), +(11540,'2005-08-17 00:48:03',3385,370,'2005-08-25 03:46:03',1,'2006-02-15 21:30:53'), +(11541,'2006-02-14 15:16:03',2026,335,NULL,1,'2006-02-15 21:30:53'), +(11542,'2005-08-17 00:51:32',2155,7,'2005-08-24 20:29:32',2,'2006-02-15 21:30:53'), +(11543,'2005-08-17 00:54:28',2860,238,'2005-08-25 04:31:28',2,'2006-02-15 21:30:53'), +(11544,'2005-08-17 00:55:07',836,439,'2005-08-22 19:25:07',1,'2006-02-15 21:30:53'), +(11545,'2005-08-17 00:56:06',3198,257,'2005-08-25 22:47:06',1,'2006-02-15 21:30:53'), +(11546,'2005-08-17 00:57:36',2522,24,'2005-08-18 23:16:36',1,'2006-02-15 21:30:53'), +(11547,'2005-08-17 00:59:24',737,114,'2005-08-20 04:03:24',2,'2006-02-15 21:30:53'), +(11548,'2005-08-17 00:59:47',480,323,'2005-08-22 05:09:47',1,'2006-02-15 21:30:53'), +(11549,'2005-08-17 01:01:48',945,402,'2005-08-19 21:24:48',2,'2006-02-15 21:30:53'), +(11550,'2005-08-17 01:02:06',2972,339,'2005-08-22 21:44:06',1,'2006-02-15 21:30:53'), +(11551,'2005-08-17 01:03:49',3356,168,'2005-08-18 22:31:49',1,'2006-02-15 21:30:53'), +(11552,'2005-08-17 01:04:29',1143,230,'2005-08-23 23:07:29',1,'2006-02-15 21:30:53'), +(11553,'2005-08-17 01:04:31',3317,360,'2005-08-24 00:44:31',1,'2006-02-15 21:30:53'), +(11554,'2005-08-17 01:05:17',2212,460,'2005-08-20 06:20:17',2,'2006-02-15 21:30:53'), +(11555,'2005-08-17 01:08:59',2569,372,'2005-08-18 06:09:59',2,'2006-02-15 21:30:53'), +(11556,'2005-08-17 01:11:53',373,9,'2005-08-18 23:41:53',1,'2006-02-15 21:30:53'), +(11557,'2005-08-17 01:19:20',2376,416,'2005-08-24 02:25:20',1,'2006-02-15 21:30:53'), +(11558,'2005-08-17 01:19:52',1681,403,'2005-08-19 00:47:52',2,'2006-02-15 21:30:53'), +(11559,'2005-08-17 01:20:26',1812,385,'2005-08-24 03:11:26',1,'2006-02-15 21:30:53'), +(11560,'2005-08-17 01:20:30',2316,320,'2005-08-18 04:29:30',2,'2006-02-15 21:30:53'), +(11561,'2005-08-17 01:23:09',189,149,'2005-08-23 21:02:09',2,'2006-02-15 21:30:53'), +(11562,'2005-08-17 01:23:39',2992,424,'2005-08-26 06:16:39',1,'2006-02-15 21:30:53'), +(11563,'2006-02-14 15:16:03',1545,83,NULL,1,'2006-02-15 21:30:53'), +(11564,'2005-08-17 01:27:49',2237,332,'2005-08-19 22:07:49',1,'2006-02-15 21:30:53'), +(11565,'2005-08-17 01:28:05',173,83,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'), +(11566,'2005-08-17 01:28:35',4020,520,'2005-08-20 22:42:35',1,'2006-02-15 21:30:53'), +(11567,'2005-08-17 01:28:43',567,558,'2005-08-24 20:20:43',2,'2006-02-15 21:30:53'), +(11568,'2005-08-17 01:30:01',183,342,'2005-08-18 22:21:01',2,'2006-02-15 21:30:53'), +(11569,'2005-08-17 01:31:04',2592,504,'2005-08-24 03:36:04',2,'2006-02-15 21:30:53'), +(11570,'2005-08-17 01:34:32',2466,343,'2005-08-24 05:47:32',1,'2006-02-15 21:30:53'), +(11571,'2005-08-17 01:37:51',203,296,'2005-08-17 20:30:51',1,'2006-02-15 21:30:53'), +(11572,'2005-08-17 01:37:55',3512,515,'2005-08-19 06:22:55',2,'2006-02-15 21:30:53'), +(11573,'2005-08-17 01:38:18',639,146,'2005-08-19 05:06:18',2,'2006-02-15 21:30:53'), +(11574,'2005-08-17 01:38:19',3596,277,'2005-08-18 20:30:19',2,'2006-02-15 21:30:53'), +(11575,'2005-08-17 01:50:26',1725,319,'2005-08-18 00:43:26',1,'2006-02-15 21:30:53'), +(11576,'2005-08-17 01:53:20',327,293,'2005-08-19 00:15:20',1,'2006-02-15 21:30:53'), +(11577,'2006-02-14 15:16:03',4106,219,NULL,2,'2006-02-15 21:30:53'), +(11578,'2005-08-17 01:54:13',192,590,'2005-08-26 02:00:13',2,'2006-02-15 21:30:53'), +(11579,'2005-08-17 01:57:49',4256,356,'2005-08-22 02:42:49',1,'2006-02-15 21:30:53'), +(11580,'2005-08-17 01:59:07',1346,436,'2005-08-21 06:18:07',2,'2006-02-15 21:30:53'), +(11581,'2005-08-17 02:03:02',1249,231,'2005-08-24 03:53:02',2,'2006-02-15 21:30:53'), +(11582,'2005-08-17 02:03:49',2115,339,'2005-08-24 03:29:49',1,'2006-02-15 21:30:53'), +(11583,'2005-08-17 02:08:13',133,542,'2005-08-20 23:13:13',2,'2006-02-15 21:30:53'), +(11584,'2005-08-17 02:13:26',3906,479,'2005-08-22 01:24:26',2,'2006-02-15 21:30:53'), +(11585,'2005-08-17 02:14:36',753,297,'2005-08-20 07:37:36',2,'2006-02-15 21:30:53'), +(11586,'2005-08-17 02:20:42',3140,465,'2005-08-26 05:01:42',1,'2006-02-15 21:30:53'), +(11587,'2005-08-17 02:21:03',1319,156,'2005-08-25 21:02:03',2,'2006-02-15 21:30:53'), +(11588,'2005-08-17 02:26:23',2480,565,'2005-08-22 02:32:23',1,'2006-02-15 21:30:53'), +(11589,'2005-08-17 02:28:22',3480,554,'2005-08-25 00:08:22',1,'2006-02-15 21:30:53'), +(11590,'2005-08-17 02:28:33',3600,491,'2005-08-20 03:13:33',1,'2006-02-15 21:30:53'), +(11591,'2005-08-17 02:29:41',1670,6,'2005-08-23 20:47:41',1,'2006-02-15 21:30:53'), +(11592,'2005-08-17 02:36:04',720,383,'2005-08-19 00:31:04',1,'2006-02-15 21:30:53'), +(11593,'2006-02-14 15:16:03',817,99,NULL,1,'2006-02-15 21:30:53'), +(11594,'2005-08-17 02:47:02',319,198,'2005-08-22 05:14:02',2,'2006-02-15 21:30:53'), +(11595,'2005-08-17 02:53:14',466,350,'2005-08-26 02:05:14',1,'2006-02-15 21:30:53'), +(11596,'2005-08-17 02:53:55',1674,290,'2005-08-26 02:19:55',1,'2006-02-15 21:30:53'), +(11597,'2005-08-17 03:02:56',4073,272,'2005-08-26 04:47:56',1,'2006-02-15 21:30:53'), +(11598,'2005-08-17 03:03:07',1949,319,'2005-08-22 21:05:07',2,'2006-02-15 21:30:53'), +(11599,'2005-08-17 03:08:10',3749,112,'2005-08-25 05:01:10',2,'2006-02-15 21:30:53'), +(11600,'2005-08-17 03:12:04',1978,400,'2005-08-23 07:10:04',1,'2006-02-15 21:30:53'), +(11601,'2005-08-17 03:14:47',1098,471,'2005-08-20 00:21:47',2,'2006-02-15 21:30:53'), +(11602,'2005-08-17 03:21:19',2082,391,'2005-08-19 05:23:19',1,'2006-02-15 21:30:53'), +(11603,'2005-08-17 03:22:10',3910,406,'2005-08-18 06:48:10',1,'2006-02-15 21:30:53'), +(11604,'2005-08-17 03:28:27',1820,388,'2005-08-19 05:38:27',2,'2006-02-15 21:30:53'), +(11605,'2005-08-17 03:30:57',1292,455,'2005-08-24 07:02:57',2,'2006-02-15 21:30:53'), +(11606,'2005-08-17 03:32:43',4138,499,'2005-08-18 04:30:43',1,'2006-02-15 21:30:53'), +(11607,'2005-08-17 03:36:06',4345,242,'2005-08-20 01:06:06',1,'2006-02-15 21:30:53'), +(11608,'2005-08-17 03:36:52',1673,448,'2005-08-25 07:17:52',2,'2006-02-15 21:30:53'), +(11609,'2005-08-17 03:41:11',351,73,'2005-08-25 01:30:11',2,'2006-02-15 21:30:53'), +(11610,'2005-08-17 03:43:37',3048,275,'2005-08-20 22:14:37',1,'2006-02-15 21:30:53'), +(11611,'2006-02-14 15:16:03',1857,192,NULL,2,'2006-02-15 21:30:53'), +(11612,'2005-08-17 03:48:51',375,526,'2005-08-20 03:03:51',1,'2006-02-15 21:30:53'), +(11613,'2005-08-17 03:50:33',2486,126,'2005-08-25 00:37:33',2,'2006-02-15 21:30:53'), +(11614,'2005-08-17 03:52:18',805,2,'2005-08-20 07:04:18',1,'2006-02-15 21:30:53'), +(11615,'2005-08-17 03:54:35',4331,436,'2005-08-23 06:54:35',2,'2006-02-15 21:30:53'), +(11616,'2005-08-17 04:00:01',2588,36,'2005-08-20 23:03:01',2,'2006-02-15 21:30:53'), +(11617,'2005-08-17 04:00:40',1898,324,'2005-08-18 00:36:40',1,'2006-02-15 21:30:53'), +(11618,'2005-08-17 04:01:36',954,175,'2005-08-23 01:02:36',1,'2006-02-15 21:30:53'), +(11619,'2005-08-17 04:03:26',3652,374,'2005-08-22 03:07:26',1,'2006-02-15 21:30:53'), +(11620,'2005-08-17 04:06:22',3801,502,'2005-08-17 23:53:22',1,'2006-02-15 21:30:53'), +(11621,'2005-08-17 04:13:45',3708,216,'2005-08-26 01:00:45',1,'2006-02-15 21:30:53'), +(11622,'2005-08-17 04:15:46',499,220,'2005-08-24 04:48:46',1,'2006-02-15 21:30:53'), +(11623,'2005-08-17 04:15:47',759,163,'2005-08-19 04:11:47',2,'2006-02-15 21:30:53'), +(11624,'2005-08-17 04:17:42',606,527,'2005-08-18 02:46:42',1,'2006-02-15 21:30:53'), +(11625,'2005-08-17 04:18:52',712,521,'2005-08-25 03:05:52',2,'2006-02-15 21:30:53'), +(11626,'2005-08-17 04:25:42',4279,266,'2005-08-23 05:46:42',1,'2006-02-15 21:30:53'), +(11627,'2005-08-17 04:25:47',3945,168,'2005-08-26 02:54:47',2,'2006-02-15 21:30:53'), +(11628,'2005-08-17 04:27:18',3656,256,'2005-08-25 01:12:18',2,'2006-02-15 21:30:53'), +(11629,'2005-08-17 04:27:24',786,299,'2005-08-26 10:25:24',2,'2006-02-15 21:30:53'), +(11630,'2005-08-17 04:27:46',688,72,'2005-08-19 09:58:46',2,'2006-02-15 21:30:53'), +(11631,'2005-08-17 04:28:56',59,168,'2005-08-24 00:42:56',2,'2006-02-15 21:30:53'), +(11632,'2005-08-17 04:29:32',2551,238,'2005-08-22 03:44:32',1,'2006-02-15 21:30:53'), +(11633,'2005-08-17 04:30:09',1706,468,'2005-08-20 06:56:09',1,'2006-02-15 21:30:53'), +(11634,'2005-08-17 04:31:49',2576,206,'2005-08-21 02:51:49',1,'2006-02-15 21:30:53'), +(11635,'2005-08-17 04:33:17',2642,98,'2005-08-21 07:50:17',2,'2006-02-15 21:30:53'), +(11636,'2005-08-17 04:36:31',791,276,'2005-08-24 00:03:31',2,'2006-02-15 21:30:53'), +(11637,'2005-08-17 04:36:39',479,283,'2005-08-18 02:17:39',1,'2006-02-15 21:30:53'), +(11638,'2005-08-17 04:39:09',3421,152,'2005-08-25 06:42:09',2,'2006-02-15 21:30:53'), +(11639,'2005-08-17 04:43:29',3985,462,'2005-08-25 01:04:29',2,'2006-02-15 21:30:53'), +(11640,'2005-08-17 04:44:33',1718,501,'2005-08-21 09:29:33',2,'2006-02-15 21:30:53'), +(11641,'2005-08-17 04:45:39',2717,79,'2005-08-20 10:38:39',1,'2006-02-15 21:30:53'), +(11642,'2005-08-17 04:48:05',3790,25,'2005-08-18 01:53:05',2,'2006-02-15 21:30:53'), +(11643,'2005-08-17 04:49:35',1378,197,'2005-08-24 07:05:35',1,'2006-02-15 21:30:53'), +(11644,'2005-08-17 04:49:46',1760,438,'2005-08-24 08:49:46',1,'2006-02-15 21:30:53'), +(11645,'2005-08-17 04:50:56',4261,35,'2005-08-25 23:03:56',1,'2006-02-15 21:30:53'), +(11646,'2006-02-14 15:16:03',478,11,NULL,2,'2006-02-15 21:30:53'), +(11647,'2005-08-17 04:54:14',3016,110,'2005-08-23 04:16:14',2,'2006-02-15 21:30:53'), +(11648,'2005-08-17 04:56:16',3362,465,'2005-08-26 00:53:16',2,'2006-02-15 21:30:53'), +(11649,'2005-08-17 04:59:26',3222,217,'2005-08-20 04:02:26',2,'2006-02-15 21:30:53'), +(11650,'2005-08-17 05:00:03',3979,418,'2005-08-22 01:45:03',2,'2006-02-15 21:30:53'), +(11651,'2005-08-17 05:02:25',3681,143,'2005-08-24 08:15:25',2,'2006-02-15 21:30:53'), +(11652,'2006-02-14 15:16:03',1622,597,NULL,2,'2006-02-15 21:30:53'), +(11653,'2005-08-17 05:06:10',4475,358,'2005-08-24 03:09:10',2,'2006-02-15 21:30:53'), +(11654,'2005-08-17 05:06:19',1048,218,'2005-08-18 04:32:19',2,'2006-02-15 21:30:53'), +(11655,'2005-08-17 05:11:07',1699,113,'2005-08-26 10:18:07',1,'2006-02-15 21:30:53'), +(11656,'2005-08-17 05:11:09',1451,56,'2005-08-25 07:51:09',1,'2006-02-15 21:30:53'), +(11657,'2006-02-14 15:16:03',3043,53,NULL,2,'2006-02-15 21:30:53'), +(11658,'2005-08-17 05:19:17',2008,422,'2005-08-24 07:03:17',2,'2006-02-15 21:30:53'), +(11659,'2005-08-17 05:20:45',2881,112,'2005-08-22 10:18:45',1,'2006-02-15 21:30:53'), +(11660,'2005-08-17 05:22:42',4081,525,'2005-08-23 01:03:42',1,'2006-02-15 21:30:53'), +(11661,'2005-08-17 05:25:57',1008,27,'2005-08-25 04:37:57',1,'2006-02-15 21:30:53'), +(11662,'2005-08-17 05:27:37',2730,177,'2005-08-26 09:56:37',2,'2006-02-15 21:30:53'), +(11663,'2005-08-17 05:30:19',3798,373,'2005-08-25 08:14:19',1,'2006-02-15 21:30:53'), +(11664,'2005-08-17 05:35:52',1343,433,'2005-08-18 02:40:52',1,'2006-02-15 21:30:53'), +(11665,'2005-08-17 05:36:57',334,254,'2005-08-23 01:38:57',1,'2006-02-15 21:30:53'), +(11666,'2005-08-17 05:45:10',250,531,'2005-08-19 06:47:10',2,'2006-02-15 21:30:53'), +(11667,'2005-08-17 05:46:55',1516,582,'2005-08-26 08:19:55',1,'2006-02-15 21:30:53'), +(11668,'2005-08-17 05:47:32',2162,249,'2005-08-20 03:11:32',1,'2006-02-15 21:30:53'), +(11669,'2005-08-17 05:48:51',3224,487,'2005-08-22 01:22:51',1,'2006-02-15 21:30:53'), +(11670,'2005-08-17 05:48:59',4437,286,'2005-08-19 08:51:59',1,'2006-02-15 21:30:53'), +(11671,'2005-08-17 05:50:21',3569,338,'2005-08-20 03:43:21',1,'2006-02-15 21:30:53'), +(11672,'2006-02-14 15:16:03',3947,521,NULL,2,'2006-02-15 21:30:53'), +(11673,'2005-08-17 05:54:15',823,303,'2005-08-21 08:12:15',2,'2006-02-15 21:30:53'), +(11674,'2005-08-17 05:56:27',582,306,'2005-08-24 08:50:27',2,'2006-02-15 21:30:53'), +(11675,'2005-08-17 05:57:54',1322,514,'2005-08-21 23:57:54',1,'2006-02-15 21:30:53'), +(11676,'2006-02-14 15:16:03',4496,216,NULL,2,'2006-02-15 21:30:53'), +(11677,'2005-08-17 06:06:26',2206,407,'2005-08-20 04:35:26',2,'2006-02-15 21:30:53'), +(11678,'2005-08-17 06:07:39',3511,176,'2005-08-21 10:51:39',2,'2006-02-15 21:30:53'), +(11679,'2005-08-17 06:08:54',3337,72,'2005-08-21 07:50:54',1,'2006-02-15 21:30:53'), +(11680,'2005-08-17 06:12:27',4538,221,'2005-08-23 08:54:27',1,'2006-02-15 21:30:53'), +(11681,'2005-08-17 06:13:30',1260,543,'2005-08-26 01:29:30',2,'2006-02-15 21:30:53'), +(11682,'2005-08-17 06:13:40',2544,387,'2005-08-18 06:11:40',1,'2006-02-15 21:30:53'), +(11683,'2005-08-17 06:15:17',2603,66,'2005-08-26 05:33:17',1,'2006-02-15 21:30:53'), +(11684,'2005-08-17 06:27:15',4277,517,'2005-08-22 02:11:15',2,'2006-02-15 21:30:53'), +(11685,'2005-08-17 06:39:16',3552,51,'2005-08-22 04:20:16',2,'2006-02-15 21:30:53'), +(11686,'2005-08-17 06:39:30',1393,392,'2005-08-21 10:19:30',2,'2006-02-15 21:30:53'), +(11687,'2005-08-17 06:39:59',1977,169,'2005-08-23 04:53:59',1,'2006-02-15 21:30:53'), +(11688,'2005-08-17 06:41:58',2229,82,'2005-08-25 04:38:58',1,'2006-02-15 21:30:53'), +(11689,'2005-08-17 06:42:08',2390,419,'2005-08-26 06:09:08',1,'2006-02-15 21:30:53'), +(11690,'2005-08-17 06:44:22',3934,267,'2005-08-24 03:49:22',1,'2006-02-15 21:30:53'), +(11691,'2005-08-17 06:51:05',2529,515,'2005-08-24 09:53:05',1,'2006-02-15 21:30:53'), +(11692,'2005-08-17 06:52:41',1222,350,'2005-08-24 12:17:41',2,'2006-02-15 21:30:53'), +(11693,'2005-08-17 06:56:56',793,221,'2005-08-24 06:20:56',2,'2006-02-15 21:30:53'), +(11694,'2005-08-17 06:57:30',3540,410,'2005-08-24 07:52:30',1,'2006-02-15 21:30:53'), +(11695,'2005-08-17 07:01:08',1110,386,'2005-08-21 09:21:08',1,'2006-02-15 21:30:53'), +(11696,'2005-08-17 07:01:09',3816,522,'2005-08-21 09:12:09',2,'2006-02-15 21:30:53'), +(11697,'2005-08-17 07:09:19',383,329,'2005-08-19 02:02:19',1,'2006-02-15 21:30:53'), +(11698,'2005-08-17 07:09:59',3946,353,'2005-08-19 04:31:59',1,'2006-02-15 21:30:53'), +(11699,'2005-08-17 07:11:58',3997,339,'2005-08-26 12:08:58',1,'2006-02-15 21:30:53'), +(11700,'2005-08-17 07:12:31',2365,104,'2005-08-18 04:21:31',2,'2006-02-15 21:30:53'), +(11701,'2005-08-17 07:15:47',993,34,'2005-08-19 01:44:47',2,'2006-02-15 21:30:53'), +(11702,'2005-08-17 07:18:56',3286,526,'2005-08-24 06:33:56',1,'2006-02-15 21:30:53'), +(11703,'2005-08-17 07:19:29',1692,279,'2005-08-20 09:35:29',2,'2006-02-15 21:30:53'), +(11704,'2005-08-17 07:21:22',1099,135,'2005-08-25 06:06:22',1,'2006-02-15 21:30:53'), +(11705,'2005-08-17 07:22:25',4242,489,'2005-08-18 06:42:25',1,'2006-02-15 21:30:53'), +(11706,'2005-08-17 07:23:46',4234,414,'2005-08-18 10:13:46',2,'2006-02-15 21:30:53'), +(11707,'2005-08-17 07:24:59',1030,581,'2005-08-24 10:40:59',1,'2006-02-15 21:30:53'), +(11708,'2005-08-17 07:26:47',76,582,'2005-08-22 04:11:47',1,'2006-02-15 21:30:53'), +(11709,'2006-02-14 15:16:03',1720,330,NULL,1,'2006-02-15 21:30:53'), +(11710,'2005-08-17 07:29:44',613,553,'2005-08-19 02:06:44',2,'2006-02-15 21:30:53'), +(11711,'2005-08-17 07:30:55',1503,470,'2005-08-18 09:21:55',1,'2006-02-15 21:30:53'), +(11712,'2005-08-17 07:32:51',3607,203,'2005-08-21 09:18:51',2,'2006-02-15 21:30:53'), +(11713,'2005-08-17 07:34:05',1919,590,'2005-08-25 07:49:05',1,'2006-02-15 21:30:53'), +(11714,'2005-08-17 07:34:55',17,151,'2005-08-18 04:07:55',1,'2006-02-15 21:30:53'), +(11715,'2005-08-17 07:40:55',1615,452,'2005-08-25 11:19:55',1,'2006-02-15 21:30:53'), +(11716,'2005-08-17 07:40:55',3054,287,'2005-08-21 05:56:55',1,'2006-02-15 21:30:53'), +(11717,'2005-08-17 07:44:09',1371,566,'2005-08-20 09:39:09',2,'2006-02-15 21:30:53'), +(11718,'2005-08-17 07:44:42',3673,555,'2005-08-23 03:02:42',2,'2006-02-15 21:30:53'), +(11719,'2005-08-17 07:46:05',2054,338,'2005-08-23 08:52:05',1,'2006-02-15 21:30:53'), +(11720,'2005-08-17 07:46:54',1707,121,'2005-08-26 04:19:54',2,'2006-02-15 21:30:53'), +(11721,'2005-08-17 07:49:17',1923,46,'2005-08-18 04:08:17',1,'2006-02-15 21:30:53'), +(11722,'2005-08-17 07:53:03',2430,321,'2005-08-22 06:56:03',2,'2006-02-15 21:30:53'), +(11723,'2005-08-17 07:56:22',1665,341,'2005-08-22 03:49:22',1,'2006-02-15 21:30:53'), +(11724,'2005-08-17 08:04:44',4484,207,'2005-08-25 03:25:44',2,'2006-02-15 21:30:53'), +(11725,'2005-08-17 08:09:00',519,45,'2005-08-18 09:50:00',1,'2006-02-15 21:30:53'), +(11726,'2005-08-17 08:11:10',4438,266,'2005-08-22 05:45:10',1,'2006-02-15 21:30:53'), +(11727,'2005-08-17 08:12:20',98,6,'2005-08-19 12:45:20',1,'2006-02-15 21:30:53'), +(11728,'2005-08-17 08:12:26',726,444,'2005-08-18 03:26:26',1,'2006-02-15 21:30:53'), +(11729,'2005-08-17 08:14:41',2819,215,'2005-08-22 02:54:41',1,'2006-02-15 21:30:53'), +(11730,'2005-08-17 08:22:00',3817,98,'2005-08-22 05:43:00',2,'2006-02-15 21:30:53'), +(11731,'2005-08-17 08:24:35',917,52,'2005-08-24 02:54:35',2,'2006-02-15 21:30:53'), +(11732,'2005-08-17 08:29:46',460,137,'2005-08-23 14:21:46',2,'2006-02-15 21:30:53'), +(11733,'2005-08-17 08:31:03',439,251,'2005-08-21 05:44:03',2,'2006-02-15 21:30:53'), +(11734,'2005-08-17 08:34:22',4063,337,'2005-08-25 11:56:22',2,'2006-02-15 21:30:53'), +(11735,'2005-08-17 08:35:42',2555,452,'2005-08-26 11:04:42',1,'2006-02-15 21:30:53'), +(11736,'2005-08-17 08:40:55',4217,535,'2005-08-26 09:03:55',1,'2006-02-15 21:30:53'), +(11737,'2005-08-17 08:42:08',4128,549,'2005-08-19 08:14:08',1,'2006-02-15 21:30:53'), +(11738,'2005-08-17 08:45:55',3042,347,'2005-08-26 07:09:55',1,'2006-02-15 21:30:53'), +(11739,'2006-02-14 15:16:03',4568,373,NULL,2,'2006-02-15 21:30:53'), +(11740,'2005-08-17 08:48:31',2441,27,'2005-08-24 07:47:31',2,'2006-02-15 21:30:53'), +(11741,'2005-08-17 08:48:39',1819,473,'2005-08-20 07:37:39',1,'2006-02-15 21:30:53'), +(11742,'2005-08-17 08:48:43',596,470,'2005-08-23 07:18:43',2,'2006-02-15 21:30:53'), +(11743,'2005-08-17 08:49:05',294,336,'2005-08-22 08:53:05',2,'2006-02-15 21:30:53'), +(11744,'2005-08-17 08:54:30',297,26,'2005-08-25 03:28:30',1,'2006-02-15 21:30:53'), +(11745,'2005-08-17 09:00:01',4018,240,'2005-08-26 14:29:01',2,'2006-02-15 21:30:53'), +(11746,'2005-08-17 09:03:24',4571,299,'2005-08-25 06:08:24',2,'2006-02-15 21:30:53'), +(11747,'2005-08-17 09:03:31',1041,555,'2005-08-19 08:23:31',2,'2006-02-15 21:30:53'), +(11748,'2005-08-17 09:04:02',1175,595,'2005-08-21 12:22:02',2,'2006-02-15 21:30:53'), +(11749,'2005-08-17 09:04:03',4141,567,'2005-08-19 09:32:03',2,'2006-02-15 21:30:53'), +(11750,'2005-08-17 09:07:00',665,190,'2005-08-23 08:16:00',2,'2006-02-15 21:30:53'), +(11751,'2005-08-17 09:07:56',3309,51,'2005-08-26 13:16:56',1,'2006-02-15 21:30:53'), +(11752,'2005-08-17 09:10:55',1833,481,'2005-08-18 06:22:55',1,'2006-02-15 21:30:53'), +(11753,'2005-08-17 09:11:52',2599,43,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'), +(11754,'2006-02-14 15:16:03',3747,163,NULL,2,'2006-02-15 21:30:53'), +(11755,'2005-08-17 09:15:35',3457,513,'2005-08-23 06:28:35',2,'2006-02-15 21:30:53'), +(11756,'2005-08-17 09:29:22',1798,198,'2005-08-21 12:17:22',1,'2006-02-15 21:30:53'), +(11757,'2006-02-14 15:16:03',1295,550,NULL,2,'2006-02-15 21:30:53'), +(11758,'2005-08-17 09:33:02',11,533,'2005-08-24 05:03:02',2,'2006-02-15 21:30:53'), +(11759,'2005-08-17 09:41:23',2655,108,'2005-08-19 11:58:23',2,'2006-02-15 21:30:53'), +(11760,'2005-08-17 09:44:22',626,545,'2005-08-24 14:39:22',2,'2006-02-15 21:30:53'), +(11761,'2005-08-17 09:44:59',2230,13,'2005-08-25 07:46:59',1,'2006-02-15 21:30:53'), +(11762,'2005-08-17 09:48:06',1204,244,'2005-08-26 13:12:06',2,'2006-02-15 21:30:53'), +(11763,'2005-08-17 09:51:39',872,586,'2005-08-21 10:15:39',2,'2006-02-15 21:30:53'), +(11764,'2005-08-17 09:51:54',4502,252,'2005-08-20 07:11:54',1,'2006-02-15 21:30:53'), +(11765,'2005-08-17 09:55:28',4311,308,'2005-08-19 15:53:28',2,'2006-02-15 21:30:53'), +(11766,'2005-08-17 09:58:40',2999,544,'2005-08-21 04:59:40',1,'2006-02-15 21:30:53'), +(11767,'2005-08-17 10:00:40',2374,77,'2005-08-25 04:14:40',2,'2006-02-15 21:30:53'), +(11768,'2005-08-17 10:02:29',1307,564,'2005-08-23 10:26:29',1,'2006-02-15 21:30:53'), +(11769,'2005-08-17 10:04:49',1406,418,'2005-08-20 09:22:49',1,'2006-02-15 21:30:53'), +(11770,'2005-08-17 10:05:05',2862,475,'2005-08-20 15:59:05',1,'2006-02-15 21:30:53'), +(11771,'2005-08-17 10:17:09',2575,324,'2005-08-25 10:58:09',1,'2006-02-15 21:30:53'), +(11772,'2005-08-17 10:18:57',1021,237,'2005-08-26 12:48:57',2,'2006-02-15 21:30:53'), +(11773,'2005-08-17 10:19:51',1886,384,'2005-08-23 04:30:51',1,'2006-02-15 21:30:53'), +(11774,'2005-08-17 10:20:39',1679,488,'2005-08-23 13:37:39',1,'2006-02-15 21:30:53'), +(11775,'2005-08-17 10:25:53',256,574,'2005-08-22 08:37:53',2,'2006-02-15 21:30:53'), +(11776,'2005-08-17 10:27:19',2400,306,'2005-08-20 14:02:19',2,'2006-02-15 21:30:53'), +(11777,'2005-08-17 10:27:19',4065,83,'2005-08-26 13:10:19',1,'2006-02-15 21:30:53'), +(11778,'2005-08-17 10:31:40',1306,213,'2005-08-25 13:53:40',2,'2006-02-15 21:30:53'), +(11779,'2005-08-17 10:31:58',181,126,'2005-08-24 15:28:58',2,'2006-02-15 21:30:53'), +(11780,'2005-08-17 10:34:24',2268,297,'2005-08-21 04:55:24',1,'2006-02-15 21:30:53'), +(11781,'2005-08-17 10:37:00',1853,506,'2005-08-21 12:03:00',2,'2006-02-15 21:30:53'), +(11782,'2006-02-14 15:16:03',4098,354,NULL,1,'2006-02-15 21:30:53'), +(11783,'2005-08-17 10:39:24',979,152,'2005-08-21 12:43:24',2,'2006-02-15 21:30:53'), +(11784,'2005-08-17 10:48:05',3101,297,'2005-08-19 06:47:05',1,'2006-02-15 21:30:53'), +(11785,'2005-08-17 10:54:46',2760,182,'2005-08-23 14:15:46',2,'2006-02-15 21:30:53'), +(11786,'2005-08-17 10:57:40',1487,435,'2005-08-24 06:48:40',2,'2006-02-15 21:30:53'), +(11787,'2005-08-17 10:59:00',1980,195,'2005-08-19 05:56:00',1,'2006-02-15 21:30:53'), +(11788,'2005-08-17 10:59:18',1310,560,'2005-08-22 11:12:18',1,'2006-02-15 21:30:53'), +(11789,'2005-08-17 10:59:24',851,150,'2005-08-26 16:17:24',1,'2006-02-15 21:30:53'), +(11790,'2005-08-17 11:00:08',2384,451,'2005-08-20 05:15:08',2,'2006-02-15 21:30:53'), +(11791,'2005-08-17 11:01:11',3640,219,'2005-08-22 06:31:11',2,'2006-02-15 21:30:53'), +(11792,'2005-08-17 11:03:53',3703,376,'2005-08-26 06:34:53',1,'2006-02-15 21:30:53'), +(11793,'2005-08-17 11:05:53',1955,352,'2005-08-25 12:25:53',1,'2006-02-15 21:30:53'), +(11794,'2005-08-17 11:08:48',3486,453,'2005-08-20 13:36:48',2,'2006-02-15 21:30:53'), +(11795,'2005-08-17 11:13:38',2220,565,'2005-08-19 14:20:38',2,'2006-02-15 21:30:53'), +(11796,'2005-08-17 11:16:47',3983,435,'2005-08-18 16:55:47',2,'2006-02-15 21:30:53'), +(11797,'2005-08-17 11:17:21',1142,546,'2005-08-18 09:14:21',2,'2006-02-15 21:30:53'), +(11798,'2005-08-17 11:21:43',3974,448,'2005-08-25 07:43:43',2,'2006-02-15 21:30:53'), +(11799,'2005-08-17 11:25:25',40,501,'2005-08-25 13:03:25',2,'2006-02-15 21:30:53'), +(11800,'2005-08-17 11:29:52',2284,350,'2005-08-21 08:37:52',1,'2006-02-15 21:30:53'), +(11801,'2005-08-17 11:30:11',659,126,'2005-08-23 09:54:11',1,'2006-02-15 21:30:53'), +(11802,'2005-08-17 11:32:51',2815,221,'2005-08-22 10:56:51',1,'2006-02-15 21:30:53'), +(11803,'2005-08-17 11:42:08',3648,160,'2005-08-22 07:45:08',2,'2006-02-15 21:30:53'), +(11804,'2005-08-17 11:42:45',1040,556,'2005-08-25 07:11:45',1,'2006-02-15 21:30:53'), +(11805,'2005-08-17 11:48:47',1208,208,'2005-08-26 11:06:47',2,'2006-02-15 21:30:53'), +(11806,'2005-08-17 11:49:28',3203,125,'2005-08-22 15:42:28',1,'2006-02-15 21:30:53'), +(11807,'2005-08-17 11:51:15',4052,201,'2005-08-21 11:47:15',2,'2006-02-15 21:30:53'), +(11808,'2005-08-17 11:51:16',4042,462,'2005-08-18 14:01:16',2,'2006-02-15 21:30:53'), +(11809,'2005-08-17 11:51:39',1136,305,'2005-08-24 17:14:39',1,'2006-02-15 21:30:53'), +(11810,'2005-08-17 11:56:48',1548,270,'2005-08-20 17:39:48',1,'2006-02-15 21:30:53'), +(11811,'2005-08-17 11:59:18',195,130,'2005-08-18 09:13:18',2,'2006-02-15 21:30:53'), +(11812,'2005-08-17 12:00:54',119,132,'2005-08-18 16:08:54',1,'2006-02-15 21:30:53'), +(11813,'2005-08-17 12:06:54',1074,36,'2005-08-21 17:52:54',2,'2006-02-15 21:30:53'), +(11814,'2005-08-17 12:09:20',3462,509,'2005-08-25 16:56:20',2,'2006-02-15 21:30:53'), +(11815,'2005-08-17 12:13:26',272,192,'2005-08-22 17:15:26',2,'2006-02-15 21:30:53'), +(11816,'2005-08-17 12:14:16',3897,224,'2005-08-19 06:15:16',2,'2006-02-15 21:30:53'), +(11817,'2005-08-17 12:20:01',2297,38,'2005-08-19 18:06:01',1,'2006-02-15 21:30:53'), +(11818,'2005-08-17 12:22:04',213,512,'2005-08-25 15:59:04',2,'2006-02-15 21:30:53'), +(11819,'2005-08-17 12:25:17',656,208,'2005-08-19 16:12:17',1,'2006-02-15 21:30:53'), +(11820,'2005-08-17 12:25:33',2801,401,'2005-08-19 07:04:33',2,'2006-02-15 21:30:53'), +(11821,'2005-08-17 12:27:55',2711,20,'2005-08-18 07:07:55',1,'2006-02-15 21:30:53'), +(11822,'2005-08-17 12:32:39',1317,263,'2005-08-18 12:30:39',2,'2006-02-15 21:30:53'), +(11823,'2005-08-17 12:36:37',2626,352,'2005-08-22 11:10:37',2,'2006-02-15 21:30:53'), +(11824,'2005-08-17 12:37:54',2639,1,'2005-08-19 10:11:54',2,'2006-02-15 21:30:53'), +(11825,'2005-08-17 12:43:30',2656,296,'2005-08-20 15:25:30',1,'2006-02-15 21:30:53'), +(11826,'2005-08-17 12:43:46',1837,536,'2005-08-19 16:59:46',2,'2006-02-15 21:30:53'), +(11827,'2005-08-17 12:44:27',3064,523,'2005-08-24 13:31:27',1,'2006-02-15 21:30:53'), +(11828,'2005-08-17 12:48:28',2593,268,'2005-08-24 09:24:28',2,'2006-02-15 21:30:53'), +(11829,'2005-08-17 12:52:04',2207,563,'2005-08-19 10:50:04',2,'2006-02-15 21:30:53'), +(11830,'2005-08-17 12:53:15',3713,522,'2005-08-25 08:08:15',1,'2006-02-15 21:30:53'), +(11831,'2005-08-17 12:54:47',4562,32,'2005-08-21 11:21:47',1,'2006-02-15 21:30:53'), +(11832,'2005-08-17 12:55:31',2331,125,'2005-08-19 08:31:31',1,'2006-02-15 21:30:53'), +(11833,'2005-08-17 13:00:33',3728,424,'2005-08-18 13:45:33',2,'2006-02-15 21:30:53'), +(11834,'2005-08-17 13:00:40',2407,261,'2005-08-22 12:50:40',1,'2006-02-15 21:30:53'), +(11835,'2005-08-17 13:03:13',2796,479,'2005-08-19 10:50:13',1,'2006-02-15 21:30:53'), +(11836,'2005-08-17 13:03:36',2253,198,'2005-08-19 17:15:36',1,'2006-02-15 21:30:53'), +(11837,'2005-08-17 13:04:41',1085,81,'2005-08-26 14:19:41',1,'2006-02-15 21:30:53'), +(11838,'2005-08-17 13:06:00',3576,161,'2005-08-20 11:44:00',1,'2006-02-15 21:30:53'), +(11839,'2005-08-17 13:08:45',2282,80,'2005-08-18 15:05:45',2,'2006-02-15 21:30:53'), +(11840,'2005-08-17 13:09:01',1824,491,'2005-08-19 17:42:01',1,'2006-02-15 21:30:53'), +(11841,'2005-08-17 13:12:20',1524,270,'2005-08-21 11:16:20',2,'2006-02-15 21:30:53'), +(11842,'2005-08-17 13:13:37',2680,422,'2005-08-20 08:32:37',1,'2006-02-15 21:30:53'), +(11843,'2005-08-17 13:14:50',3091,187,'2005-08-22 11:31:50',2,'2006-02-15 21:30:53'), +(11844,'2005-08-17 13:16:04',3791,368,'2005-08-18 10:16:04',1,'2006-02-15 21:30:53'), +(11845,'2005-08-17 13:16:38',14,65,'2005-08-18 11:21:38',1,'2006-02-15 21:30:53'), +(11846,'2005-08-17 13:18:29',3306,283,'2005-08-22 18:05:29',2,'2006-02-15 21:30:53'), +(11847,'2006-02-14 15:16:03',1784,337,NULL,1,'2006-02-15 21:30:53'), +(11848,'2006-02-14 15:16:03',3680,152,NULL,1,'2006-02-15 21:30:53'), +(11849,'2005-08-17 13:24:55',1191,92,'2005-08-22 12:50:55',2,'2006-02-15 21:30:53'), +(11850,'2005-08-17 13:30:15',1437,80,'2005-08-21 17:24:15',1,'2006-02-15 21:30:53'), +(11851,'2005-08-17 13:30:27',3225,376,'2005-08-20 15:34:27',2,'2006-02-15 21:30:53'), +(11852,'2005-08-17 13:38:27',2358,596,'2005-08-24 08:50:27',1,'2006-02-15 21:30:53'), +(11853,'2005-08-17 13:39:32',3888,6,'2005-08-23 18:44:32',2,'2006-02-15 21:30:53'), +(11854,'2005-08-17 13:42:52',137,313,'2005-08-26 14:04:52',1,'2006-02-15 21:30:53'), +(11855,'2005-08-17 13:43:07',1062,535,'2005-08-26 08:07:07',1,'2006-02-15 21:30:53'), +(11856,'2005-08-17 13:44:49',305,28,'2005-08-21 17:20:49',1,'2006-02-15 21:30:53'), +(11857,'2005-08-17 13:48:30',101,146,'2005-08-18 15:55:30',1,'2006-02-15 21:30:53'), +(11858,'2005-08-17 13:50:31',3483,503,'2005-08-19 08:45:31',2,'2006-02-15 21:30:53'), +(11859,'2005-08-17 13:51:20',423,144,'2005-08-21 13:47:20',2,'2006-02-15 21:30:53'), +(11860,'2005-08-17 13:52:26',4354,257,'2005-08-24 14:47:26',1,'2006-02-15 21:30:53'), +(11861,'2005-08-17 13:53:47',2674,232,'2005-08-21 16:07:47',1,'2006-02-15 21:30:53'), +(11862,'2005-08-17 13:54:53',2604,529,'2005-08-19 10:48:53',1,'2006-02-15 21:30:53'), +(11863,'2005-08-17 13:56:01',1003,112,'2005-08-23 18:38:01',1,'2006-02-15 21:30:53'), +(11864,'2005-08-17 14:02:01',2985,96,'2005-08-21 19:54:01',1,'2006-02-15 21:30:53'), +(11865,'2005-08-17 14:03:46',2577,345,'2005-08-19 08:39:46',1,'2006-02-15 21:30:53'), +(11866,'2006-02-14 15:16:03',2758,200,NULL,2,'2006-02-15 21:30:53'), +(11867,'2005-08-17 14:04:28',938,434,'2005-08-21 10:08:28',1,'2006-02-15 21:30:53'), +(11868,'2005-08-17 14:05:34',2909,445,'2005-08-19 15:47:34',1,'2006-02-15 21:30:53'), +(11869,'2005-08-17 14:10:22',3453,19,'2005-08-24 18:39:22',1,'2006-02-15 21:30:53'), +(11870,'2005-08-17 14:11:28',4251,432,'2005-08-24 16:43:28',1,'2006-02-15 21:30:53'), +(11871,'2005-08-17 14:11:44',3013,484,'2005-08-18 17:50:44',1,'2006-02-15 21:30:53'), +(11872,'2005-08-17 14:11:45',4306,113,'2005-08-21 17:02:45',2,'2006-02-15 21:30:53'), +(11873,'2005-08-17 14:14:39',4021,554,'2005-08-18 17:20:39',2,'2006-02-15 21:30:53'), +(11874,'2005-08-17 14:16:40',2637,467,'2005-08-18 15:51:40',2,'2006-02-15 21:30:53'), +(11875,'2005-08-17 14:16:48',1787,294,'2005-08-26 14:20:48',1,'2006-02-15 21:30:53'), +(11876,'2005-08-17 14:18:21',3982,426,'2005-08-20 19:48:21',1,'2006-02-15 21:30:53'), +(11877,'2005-08-17 14:21:11',4528,445,'2005-08-25 19:46:11',1,'2006-02-15 21:30:53'), +(11878,'2005-08-17 14:23:52',255,549,'2005-08-21 14:23:52',1,'2006-02-15 21:30:53'), +(11879,'2005-08-17 14:25:09',2500,312,'2005-08-26 09:19:09',1,'2006-02-15 21:30:53'), +(11880,'2005-08-17 14:28:28',1539,597,'2005-08-26 12:32:28',2,'2006-02-15 21:30:53'), +(11881,'2005-08-17 14:31:56',3124,272,'2005-08-21 11:05:56',1,'2006-02-15 21:30:53'), +(11882,'2005-08-17 14:33:41',2401,234,'2005-08-26 17:25:41',2,'2006-02-15 21:30:53'), +(11883,'2005-08-17 14:41:28',221,551,'2005-08-19 09:54:28',1,'2006-02-15 21:30:53'), +(11884,'2005-08-17 14:43:23',797,178,'2005-08-25 15:38:23',1,'2006-02-15 21:30:53'), +(11885,'2005-08-17 14:53:53',3931,481,'2005-08-22 10:59:53',1,'2006-02-15 21:30:53'), +(11886,'2005-08-17 14:58:51',608,204,'2005-08-19 16:07:51',2,'2006-02-15 21:30:53'), +(11887,'2005-08-17 15:03:13',3290,54,'2005-08-19 09:49:13',1,'2006-02-15 21:30:53'), +(11888,'2005-08-17 15:04:05',1100,160,'2005-08-25 18:52:05',2,'2006-02-15 21:30:53'), +(11889,'2005-08-17 15:08:27',293,395,'2005-08-18 17:10:27',1,'2006-02-15 21:30:53'), +(11890,'2005-08-17 15:08:43',3023,487,'2005-08-26 14:56:43',2,'2006-02-15 21:30:53'), +(11891,'2005-08-17 15:11:55',2619,115,'2005-08-22 11:11:55',2,'2006-02-15 21:30:53'), +(11892,'2005-08-17 15:13:21',746,227,'2005-08-21 09:19:21',2,'2006-02-15 21:30:53'), +(11893,'2005-08-17 15:13:29',2321,496,'2005-08-25 11:09:29',1,'2006-02-15 21:30:53'), +(11894,'2005-08-17 15:15:01',1223,67,'2005-08-26 13:49:01',1,'2006-02-15 21:30:53'), +(11895,'2005-08-17 15:15:07',2156,236,'2005-08-18 11:00:07',2,'2006-02-15 21:30:53'), +(11896,'2005-08-17 15:19:54',259,436,'2005-08-24 18:22:54',2,'2006-02-15 21:30:53'), +(11897,'2005-08-17 15:24:06',3904,238,'2005-08-23 11:50:06',2,'2006-02-15 21:30:53'), +(11898,'2005-08-17 15:24:12',3163,169,'2005-08-24 13:36:12',2,'2006-02-15 21:30:53'), +(11899,'2005-08-17 15:29:12',3179,84,'2005-08-24 17:41:12',1,'2006-02-15 21:30:53'), +(11900,'2005-08-17 15:30:44',1931,239,'2005-08-19 16:12:44',1,'2006-02-15 21:30:53'), +(11901,'2005-08-17 15:35:47',4274,70,'2005-08-20 10:33:47',2,'2006-02-15 21:30:53'), +(11902,'2005-08-17 15:37:34',1387,63,'2005-08-22 17:28:34',2,'2006-02-15 21:30:53'), +(11903,'2005-08-17 15:37:45',1196,542,'2005-08-23 18:31:45',2,'2006-02-15 21:30:53'), +(11904,'2005-08-17 15:39:26',2846,145,'2005-08-21 18:24:26',2,'2006-02-15 21:30:53'), +(11905,'2005-08-17 15:40:18',2725,349,'2005-08-26 15:14:18',2,'2006-02-15 21:30:53'), +(11906,'2005-08-17 15:40:46',325,478,'2005-08-20 15:20:46',2,'2006-02-15 21:30:53'), +(11907,'2005-08-17 15:40:47',3928,505,'2005-08-20 19:55:47',2,'2006-02-15 21:30:53'), +(11908,'2005-08-17 15:43:09',3390,314,'2005-08-24 14:32:09',2,'2006-02-15 21:30:53'), +(11909,'2006-02-14 15:16:03',871,474,NULL,1,'2006-02-15 21:30:53'), +(11910,'2005-08-17 15:44:37',4254,418,'2005-08-19 10:58:37',2,'2006-02-15 21:30:53'), +(11911,'2005-08-17 15:51:35',3578,472,'2005-08-26 20:26:35',2,'2006-02-15 21:30:53'), +(11912,'2005-08-17 15:51:49',744,573,'2005-08-24 18:48:49',1,'2006-02-15 21:30:53'), +(11913,'2005-08-17 15:53:17',741,295,'2005-08-24 18:50:17',2,'2006-02-15 21:30:53'), +(11914,'2005-08-17 16:04:42',1634,230,'2005-08-22 19:29:42',1,'2006-02-15 21:30:53'), +(11915,'2005-08-17 16:05:28',1557,269,'2005-08-25 19:53:28',2,'2006-02-15 21:30:53'), +(11916,'2005-08-17 16:05:51',2631,86,'2005-08-20 10:23:51',1,'2006-02-15 21:30:53'), +(11917,'2005-08-17 16:08:17',1608,270,'2005-08-20 20:01:17',1,'2006-02-15 21:30:53'), +(11918,'2005-08-17 16:08:42',2169,533,'2005-08-20 20:12:42',1,'2006-02-15 21:30:53'), +(11919,'2005-08-17 16:08:49',4497,40,'2005-08-20 16:59:49',2,'2006-02-15 21:30:53'), +(11920,'2005-08-17 16:10:19',4253,402,'2005-08-20 13:54:19',2,'2006-02-15 21:30:53'), +(11921,'2005-08-17 16:12:27',494,485,'2005-08-25 22:07:27',1,'2006-02-15 21:30:53'), +(11922,'2005-08-17 16:20:37',3707,15,'2005-08-26 16:53:37',2,'2006-02-15 21:30:53'), +(11923,'2005-08-17 16:21:47',1907,72,'2005-08-18 14:26:47',2,'2006-02-15 21:30:53'), +(11924,'2005-08-17 16:22:05',1711,202,'2005-08-26 12:34:05',1,'2006-02-15 21:30:53'), +(11925,'2005-08-17 16:23:04',1441,370,'2005-08-21 11:38:04',1,'2006-02-15 21:30:53'), +(11926,'2005-08-17 16:25:02',2111,516,'2005-08-22 11:36:02',1,'2006-02-15 21:30:53'), +(11927,'2005-08-17 16:25:03',3134,178,'2005-08-23 16:41:03',1,'2006-02-15 21:30:53'), +(11928,'2005-08-17 16:28:24',79,261,'2005-08-23 17:50:24',2,'2006-02-15 21:30:53'), +(11929,'2005-08-17 16:28:51',3765,327,'2005-08-25 19:36:51',1,'2006-02-15 21:30:53'), +(11930,'2005-08-17 16:28:53',1299,5,'2005-08-25 10:31:53',1,'2006-02-15 21:30:53'), +(11931,'2005-08-17 16:35:14',2022,242,'2005-08-19 19:16:14',1,'2006-02-15 21:30:53'), +(11932,'2005-08-17 16:36:12',151,364,'2005-08-18 19:34:12',2,'2006-02-15 21:30:53'), +(11933,'2005-08-17 16:38:20',2574,438,'2005-08-22 14:31:20',1,'2006-02-15 21:30:53'), +(11934,'2005-08-17 16:40:00',1230,596,'2005-08-20 20:13:00',2,'2006-02-15 21:30:53'), +(11935,'2005-08-17 16:42:13',1640,66,'2005-08-22 20:38:13',2,'2006-02-15 21:30:53'), +(11936,'2005-08-17 16:45:34',1127,380,'2005-08-21 13:33:34',2,'2006-02-15 21:30:53'), +(11937,'2005-08-17 16:48:36',2926,515,'2005-08-24 19:01:36',1,'2006-02-15 21:30:53'), +(11938,'2005-08-17 16:54:54',3927,426,'2005-08-24 19:18:54',1,'2006-02-15 21:30:53'), +(11939,'2005-08-17 16:55:57',3305,516,'2005-08-24 21:36:57',1,'2006-02-15 21:30:53'), +(11940,'2005-08-17 16:56:28',1188,163,'2005-08-18 15:09:28',1,'2006-02-15 21:30:53'), +(11941,'2005-08-17 16:56:57',159,566,'2005-08-24 16:29:57',1,'2006-02-15 21:30:53'), +(11942,'2006-02-14 15:16:03',4094,576,NULL,2,'2006-02-15 21:30:53'), +(11943,'2005-08-17 17:00:42',4466,69,'2005-08-26 22:07:42',1,'2006-02-15 21:30:53'), +(11944,'2005-08-17 17:02:42',27,389,'2005-08-21 16:40:42',2,'2006-02-15 21:30:53'), +(11945,'2005-08-17 17:05:33',1108,380,'2005-08-20 18:37:33',2,'2006-02-15 21:30:53'), +(11946,'2005-08-17 17:05:53',2953,569,'2005-08-19 13:56:53',1,'2006-02-15 21:30:53'), +(11947,'2005-08-17 17:08:13',2928,220,'2005-08-23 21:53:13',1,'2006-02-15 21:30:53'), +(11948,'2005-08-17 17:11:05',3329,40,'2005-08-25 21:16:05',2,'2006-02-15 21:30:53'), +(11949,'2005-08-17 17:12:26',854,198,'2005-08-23 20:48:26',1,'2006-02-15 21:30:53'), +(11950,'2005-08-17 17:13:16',4412,190,'2005-08-26 21:25:16',1,'2006-02-15 21:30:53'), +(11951,'2005-08-17 17:14:02',1394,155,'2005-08-26 12:04:02',2,'2006-02-15 21:30:53'), +(11952,'2005-08-17 17:14:57',2411,288,'2005-08-19 19:15:57',1,'2006-02-15 21:30:53'), +(11953,'2005-08-17 17:16:42',2993,399,'2005-08-23 18:28:42',1,'2006-02-15 21:30:53'), +(11954,'2005-08-17 17:18:36',220,145,'2005-08-18 19:49:36',1,'2006-02-15 21:30:53'), +(11955,'2005-08-17 17:21:35',1221,319,'2005-08-24 22:06:35',1,'2006-02-15 21:30:53'), +(11956,'2005-08-17 17:22:05',2533,457,'2005-08-25 22:19:05',2,'2006-02-15 21:30:53'), +(11957,'2005-08-17 17:22:29',1924,198,'2005-08-23 21:47:29',2,'2006-02-15 21:30:53'), +(11958,'2005-08-17 17:23:20',2061,217,'2005-08-24 14:47:20',2,'2006-02-15 21:30:53'), +(11959,'2005-08-17 17:23:35',2694,101,'2005-08-20 20:57:35',1,'2006-02-15 21:30:53'), +(11960,'2005-08-17 17:24:30',3924,84,'2005-08-18 14:28:30',1,'2006-02-15 21:30:53'), +(11961,'2005-08-17 17:28:01',2015,276,'2005-08-21 20:43:01',1,'2006-02-15 21:30:53'), +(11962,'2005-08-17 17:34:38',4384,29,'2005-08-21 12:59:38',2,'2006-02-15 21:30:53'), +(11963,'2005-08-17 17:35:47',232,211,'2005-08-23 16:19:47',2,'2006-02-15 21:30:53'), +(11964,'2005-08-17 17:37:03',2225,309,'2005-08-25 11:55:03',2,'2006-02-15 21:30:53'), +(11965,'2005-08-17 17:39:45',194,490,'2005-08-19 12:05:45',1,'2006-02-15 21:30:53'), +(11966,'2005-08-17 17:40:04',3702,283,'2005-08-20 15:45:04',1,'2006-02-15 21:30:53'), +(11967,'2005-08-17 17:45:00',1151,521,'2005-08-22 13:03:00',1,'2006-02-15 21:30:53'), +(11968,'2005-08-17 17:47:34',698,239,'2005-08-18 19:40:34',1,'2006-02-15 21:30:53'), +(11969,'2005-08-17 17:49:37',668,550,'2005-08-19 19:45:37',2,'2006-02-15 21:30:53'), +(11970,'2005-08-17 17:53:09',1779,21,'2005-08-24 14:41:09',1,'2006-02-15 21:30:53'), +(11971,'2005-08-17 17:53:42',2756,131,'2005-08-18 12:11:42',2,'2006-02-15 21:30:53'), +(11972,'2005-08-17 17:55:46',1282,308,'2005-08-22 15:31:46',2,'2006-02-15 21:30:53'), +(11973,'2005-08-17 17:55:58',1472,131,'2005-08-21 19:55:58',2,'2006-02-15 21:30:53'), +(11974,'2005-08-17 17:56:48',1609,485,'2005-08-21 19:14:48',2,'2006-02-15 21:30:53'), +(11975,'2005-08-17 17:58:39',3843,458,'2005-08-20 19:11:39',2,'2006-02-15 21:30:53'), +(11976,'2005-08-17 17:59:19',498,373,'2005-08-23 14:51:19',2,'2006-02-15 21:30:53'), +(11977,'2005-08-17 18:01:15',1528,536,'2005-08-23 23:03:15',1,'2006-02-15 21:30:53'), +(11978,'2005-08-17 18:02:10',4380,499,'2005-08-18 20:40:10',2,'2006-02-15 21:30:53'), +(11979,'2005-08-17 18:07:13',568,255,'2005-08-19 23:12:13',1,'2006-02-15 21:30:53'), +(11980,'2005-08-17 18:10:18',4165,589,'2005-08-20 13:28:18',1,'2006-02-15 21:30:53'), +(11981,'2005-08-17 18:10:40',3228,294,'2005-08-20 16:56:40',1,'2006-02-15 21:30:53'), +(11982,'2005-08-17 18:13:07',118,186,'2005-08-18 19:06:07',1,'2006-02-15 21:30:53'), +(11983,'2005-08-17 18:13:55',2580,304,'2005-08-23 18:27:55',2,'2006-02-15 21:30:53'), +(11984,'2005-08-17 18:16:30',3577,96,'2005-08-24 21:09:30',2,'2006-02-15 21:30:53'), +(11985,'2005-08-17 18:19:44',2208,198,'2005-08-18 19:14:44',2,'2006-02-15 21:30:53'), +(11986,'2005-08-17 18:21:58',1610,352,'2005-08-18 13:05:58',1,'2006-02-15 21:30:53'), +(11987,'2005-08-17 18:21:59',1478,494,'2005-08-25 19:20:59',1,'2006-02-15 21:30:53'), +(11988,'2005-08-17 18:23:50',3429,62,'2005-08-18 22:30:50',2,'2006-02-15 21:30:53'), +(11989,'2005-08-17 18:23:58',3686,439,'2005-08-20 20:31:58',2,'2006-02-15 21:30:53'), +(11990,'2005-08-17 18:26:22',3012,17,'2005-08-19 14:34:22',2,'2006-02-15 21:30:53'), +(11991,'2005-08-17 18:27:08',940,361,'2005-08-25 14:07:08',1,'2006-02-15 21:30:53'), +(11992,'2005-08-17 18:27:22',4132,136,'2005-08-26 22:38:22',2,'2006-02-15 21:30:53'), +(11993,'2005-08-17 18:27:49',295,303,'2005-08-21 00:04:49',1,'2006-02-15 21:30:53'), +(11994,'2005-08-17 18:29:35',3428,319,'2005-08-25 23:39:35',1,'2006-02-15 21:30:53'), +(11995,'2006-02-14 15:16:03',3953,69,NULL,1,'2006-02-15 21:30:53'), +(11996,'2005-08-17 18:34:37',2720,510,'2005-08-20 22:25:37',2,'2006-02-15 21:30:53'), +(11997,'2005-08-17 18:34:38',2193,411,'2005-08-26 00:12:38',2,'2006-02-15 21:30:53'), +(11998,'2005-08-17 18:46:21',4258,299,'2005-08-18 20:29:21',1,'2006-02-15 21:30:53'), +(11999,'2005-08-17 18:47:07',4333,125,'2005-08-20 23:26:07',2,'2006-02-15 21:30:53'), +(12000,'2005-08-17 18:49:44',2256,149,'2005-08-24 16:34:44',2,'2006-02-15 21:30:53'), +(12001,'2006-02-14 15:16:03',4158,52,NULL,2,'2006-02-15 21:30:53'), +(12002,'2005-08-17 18:56:02',1386,75,'2005-08-20 17:36:02',1,'2006-02-15 21:30:53'), +(12003,'2005-08-17 18:56:05',3868,70,'2005-08-18 23:52:05',1,'2006-02-15 21:30:53'), +(12004,'2005-08-17 18:56:53',2690,499,'2005-08-26 14:56:53',1,'2006-02-15 21:30:53'), +(12005,'2005-08-17 18:56:55',2062,403,'2005-08-25 20:23:55',2,'2006-02-15 21:30:53'), +(12006,'2005-08-17 19:09:12',4072,272,'2005-08-24 13:50:12',1,'2006-02-15 21:30:53'), +(12007,'2005-08-17 19:10:34',3007,268,'2005-08-24 14:09:34',1,'2006-02-15 21:30:53'), +(12008,'2005-08-17 19:16:18',865,562,'2005-08-18 14:24:18',2,'2006-02-15 21:30:53'), +(12009,'2006-02-14 15:16:03',2134,296,NULL,2,'2006-02-15 21:30:53'), +(12010,'2005-08-17 19:17:54',1076,554,'2005-08-26 00:41:54',1,'2006-02-15 21:30:53'), +(12011,'2005-08-17 19:19:44',495,313,'2005-08-23 00:56:44',2,'2006-02-15 21:30:53'), +(12012,'2005-08-17 19:20:48',2698,69,'2005-08-22 16:50:48',1,'2006-02-15 21:30:53'), +(12013,'2005-08-17 19:23:02',3530,586,'2005-08-23 00:31:02',2,'2006-02-15 21:30:53'), +(12014,'2005-08-17 19:29:44',1778,554,'2005-08-23 20:40:44',1,'2006-02-15 21:30:53'), +(12015,'2005-08-17 19:32:44',593,11,'2005-08-23 13:36:44',2,'2006-02-15 21:30:53'), +(12016,'2005-08-17 19:33:24',2109,327,'2005-08-21 19:59:24',2,'2006-02-15 21:30:53'), +(12017,'2005-08-17 19:33:49',344,573,'2005-08-22 01:16:49',2,'2006-02-15 21:30:53'), +(12018,'2005-08-17 19:44:46',1921,319,'2005-08-26 20:24:46',1,'2006-02-15 21:30:53'), +(12019,'2005-08-17 19:48:55',2566,90,'2005-08-21 18:20:55',1,'2006-02-15 21:30:53'), +(12020,'2005-08-17 19:50:33',3258,72,'2005-08-25 17:54:33',1,'2006-02-15 21:30:53'), +(12021,'2005-08-17 19:52:43',3977,27,'2005-08-23 21:49:43',1,'2006-02-15 21:30:53'), +(12022,'2005-08-17 19:52:45',2067,461,'2005-08-18 18:26:45',2,'2006-02-15 21:30:53'), +(12023,'2005-08-17 19:54:54',247,22,'2005-08-26 23:03:54',1,'2006-02-15 21:30:53'), +(12024,'2005-08-17 19:57:34',2398,484,'2005-08-21 23:00:34',2,'2006-02-15 21:30:53'), +(12025,'2005-08-17 19:59:06',4019,209,'2005-08-23 14:39:06',2,'2006-02-15 21:30:53'), +(12026,'2005-08-17 20:00:10',1568,468,'2005-08-26 01:54:10',1,'2006-02-15 21:30:53'), +(12027,'2005-08-17 20:01:12',45,285,'2005-08-26 21:08:12',2,'2006-02-15 21:30:53'), +(12028,'2005-08-17 20:03:47',607,316,'2005-08-23 17:09:47',2,'2006-02-15 21:30:53'), +(12029,'2005-08-17 20:07:01',3516,148,'2005-08-19 19:36:01',2,'2006-02-15 21:30:53'), +(12030,'2005-08-17 20:10:48',449,434,'2005-08-19 00:32:48',1,'2006-02-15 21:30:53'), +(12031,'2005-08-17 20:11:35',2793,10,'2005-08-24 23:48:35',2,'2006-02-15 21:30:53'), +(12032,'2005-08-17 20:14:26',1106,141,'2005-08-26 16:01:26',1,'2006-02-15 21:30:53'), +(12033,'2005-08-17 20:14:34',2731,321,'2005-08-26 00:22:34',2,'2006-02-15 21:30:53'), +(12034,'2005-08-17 20:15:31',834,321,'2005-08-24 15:46:31',2,'2006-02-15 21:30:53'), +(12035,'2005-08-17 20:18:06',2335,469,'2005-08-21 16:41:06',2,'2006-02-15 21:30:53'), +(12036,'2005-08-17 20:19:06',3620,85,'2005-08-18 19:57:06',2,'2006-02-15 21:30:53'), +(12037,'2005-08-17 20:21:35',766,356,'2005-08-22 17:16:35',2,'2006-02-15 21:30:53'), +(12038,'2005-08-17 20:28:26',3794,148,'2005-08-20 23:09:26',2,'2006-02-15 21:30:53'), +(12039,'2005-08-17 20:29:08',4404,563,'2005-08-23 21:20:08',2,'2006-02-15 21:30:53'), +(12040,'2005-08-17 20:29:56',1288,558,'2005-08-26 22:17:56',1,'2006-02-15 21:30:53'), +(12041,'2005-08-17 20:34:33',2389,295,'2005-08-19 00:47:33',1,'2006-02-15 21:30:53'), +(12042,'2005-08-17 20:36:37',1772,570,'2005-08-21 15:03:37',1,'2006-02-15 21:30:53'), +(12043,'2005-08-17 20:38:21',3706,592,'2005-08-22 16:52:21',2,'2006-02-15 21:30:53'), +(12044,'2005-08-17 20:39:37',3377,388,'2005-08-19 18:34:37',1,'2006-02-15 21:30:53'), +(12045,'2005-08-17 20:40:46',469,556,'2005-08-20 18:18:46',2,'2006-02-15 21:30:53'), +(12046,'2005-08-17 20:47:46',3895,435,'2005-08-19 16:09:46',2,'2006-02-15 21:30:53'), +(12047,'2005-08-17 20:48:32',3886,251,'2005-08-26 00:07:32',1,'2006-02-15 21:30:53'), +(12048,'2005-08-17 20:49:24',3773,466,'2005-08-27 02:01:24',2,'2006-02-15 21:30:53'), +(12049,'2005-08-17 20:53:27',2433,178,'2005-08-26 19:45:27',2,'2006-02-15 21:30:53'), +(12050,'2005-08-17 20:55:25',2348,405,'2005-08-22 20:31:25',2,'2006-02-15 21:30:53'), +(12051,'2005-08-17 20:56:15',4001,579,'2005-08-25 19:08:15',1,'2006-02-15 21:30:53'), +(12052,'2005-08-17 20:57:02',99,536,'2005-08-25 19:04:02',1,'2006-02-15 21:30:53'), +(12053,'2005-08-17 20:57:27',4448,280,'2005-08-20 19:51:27',1,'2006-02-15 21:30:53'), +(12054,'2005-08-17 20:59:56',3780,53,'2005-08-23 19:57:56',1,'2006-02-15 21:30:53'), +(12055,'2005-08-17 21:02:19',1481,35,'2005-08-18 15:24:19',1,'2006-02-15 21:30:53'), +(12056,'2005-08-17 21:03:48',1091,460,'2005-08-21 22:42:48',2,'2006-02-15 21:30:53'), +(12057,'2005-08-17 21:04:35',1878,263,'2005-08-25 00:17:35',1,'2006-02-15 21:30:53'), +(12058,'2005-08-17 21:07:41',2438,540,'2005-08-26 16:07:41',1,'2006-02-15 21:30:53'), +(12059,'2005-08-17 21:09:23',4111,393,'2005-08-25 23:09:23',1,'2006-02-15 21:30:53'), +(12060,'2005-08-17 21:11:57',2373,127,'2005-08-21 01:42:57',1,'2006-02-15 21:30:53'), +(12061,'2005-08-17 21:13:35',144,532,'2005-08-22 19:18:35',1,'2006-02-15 21:30:53'), +(12062,'2005-08-17 21:24:47',1791,330,'2005-08-20 20:35:47',2,'2006-02-15 21:30:53'), +(12063,'2005-08-17 21:24:48',1141,550,'2005-08-23 22:10:48',2,'2006-02-15 21:30:53'), +(12064,'2006-02-14 15:16:03',298,284,NULL,1,'2006-02-15 21:30:53'), +(12065,'2005-08-17 21:31:46',3644,77,'2005-08-26 02:26:46',2,'2006-02-15 21:30:53'), +(12066,'2006-02-14 15:16:03',2474,267,NULL,2,'2006-02-15 21:30:53'), +(12067,'2005-08-17 21:36:47',2013,514,'2005-08-22 01:10:47',2,'2006-02-15 21:30:53'), +(12068,'2005-08-17 21:37:08',4327,388,'2005-08-26 00:10:08',1,'2006-02-15 21:30:53'), +(12069,'2005-08-17 21:39:40',631,389,'2005-08-22 01:12:40',2,'2006-02-15 21:30:53'), +(12070,'2005-08-17 21:46:47',1357,158,'2005-08-22 22:59:47',1,'2006-02-15 21:30:53'), +(12071,'2005-08-17 21:49:14',1874,507,'2005-08-22 18:20:14',1,'2006-02-15 21:30:53'), +(12072,'2005-08-17 21:50:25',209,61,'2005-08-25 22:36:25',2,'2006-02-15 21:30:53'), +(12073,'2005-08-17 21:50:39',2939,173,'2005-08-21 02:59:39',1,'2006-02-15 21:30:53'), +(12074,'2005-08-17 21:50:57',711,417,'2005-08-20 00:58:57',2,'2006-02-15 21:30:53'), +(12075,'2005-08-17 21:54:55',3147,125,'2005-08-23 23:04:55',1,'2006-02-15 21:30:53'), +(12076,'2005-08-17 21:58:19',4278,298,'2005-08-20 22:10:19',1,'2006-02-15 21:30:53'), +(12077,'2005-08-17 21:59:14',3589,550,'2005-08-22 03:23:14',1,'2006-02-15 21:30:53'), +(12078,'2005-08-17 22:00:22',684,137,'2005-08-24 02:54:22',2,'2006-02-15 21:30:53'), +(12079,'2005-08-17 22:04:17',646,230,'2005-08-24 20:22:17',2,'2006-02-15 21:30:53'), +(12080,'2005-08-17 22:08:04',1491,394,'2005-08-19 22:55:04',2,'2006-02-15 21:30:53'), +(12081,'2005-08-17 22:10:46',620,597,'2005-08-22 22:37:46',1,'2006-02-15 21:30:53'), +(12082,'2005-08-17 22:13:15',3435,521,'2005-08-24 18:30:15',1,'2006-02-15 21:30:53'), +(12083,'2005-08-17 22:13:37',1985,474,'2005-08-19 19:01:37',2,'2006-02-15 21:30:53'), +(12084,'2005-08-17 22:16:49',2706,60,'2005-08-24 17:42:49',2,'2006-02-15 21:30:53'), +(12085,'2005-08-17 22:17:09',600,31,'2005-08-21 01:45:09',1,'2006-02-15 21:30:53'), +(12086,'2005-08-17 22:20:01',3963,140,'2005-08-26 02:14:01',1,'2006-02-15 21:30:53'), +(12087,'2005-08-17 22:20:12',324,144,'2005-08-20 02:11:12',2,'2006-02-15 21:30:53'), +(12088,'2005-08-17 22:20:16',1754,360,'2005-08-25 23:30:16',2,'2006-02-15 21:30:53'), +(12089,'2005-08-17 22:20:29',651,538,'2005-08-24 02:12:29',1,'2006-02-15 21:30:53'), +(12090,'2005-08-17 22:21:43',3392,391,'2005-08-20 23:53:43',2,'2006-02-15 21:30:53'), +(12091,'2005-08-17 22:22:50',2161,555,'2005-08-27 03:55:50',1,'2006-02-15 21:30:53'), +(12092,'2005-08-17 22:28:15',3964,38,'2005-08-18 16:46:15',2,'2006-02-15 21:30:53'), +(12093,'2005-08-17 22:28:40',216,141,'2005-08-22 02:05:40',1,'2006-02-15 21:30:53'), +(12094,'2005-08-17 22:31:04',1050,130,'2005-08-23 22:45:04',1,'2006-02-15 21:30:53'), +(12095,'2005-08-17 22:32:37',1089,46,'2005-08-20 04:00:37',1,'2006-02-15 21:30:53'), +(12096,'2005-08-17 22:32:50',44,463,'2005-08-25 03:33:50',1,'2006-02-15 21:30:53'), +(12097,'2005-08-17 22:35:24',4135,325,'2005-08-18 20:31:24',2,'2006-02-15 21:30:53'), +(12098,'2005-08-17 22:38:31',534,545,'2005-08-20 01:56:31',1,'2006-02-15 21:30:53'), +(12099,'2005-08-17 22:38:54',1743,195,'2005-08-18 21:29:54',2,'2006-02-15 21:30:53'), +(12100,'2005-08-17 22:41:10',4365,391,'2005-08-24 21:31:10',2,'2006-02-15 21:30:53'), +(12101,'2006-02-14 15:16:03',1556,479,NULL,1,'2006-02-15 21:30:53'), +(12102,'2005-08-17 22:45:26',4268,392,'2005-08-24 01:47:26',2,'2006-02-15 21:30:53'), +(12103,'2005-08-17 22:49:09',4363,153,'2005-08-24 21:53:09',1,'2006-02-15 21:30:53'), +(12104,'2005-08-17 22:53:00',4551,16,'2005-08-23 19:49:00',1,'2006-02-15 21:30:53'), +(12105,'2005-08-17 22:54:45',2848,390,'2005-08-21 00:33:45',2,'2006-02-15 21:30:53'), +(12106,'2005-08-17 22:55:32',3234,465,'2005-08-19 23:55:32',2,'2006-02-15 21:30:53'), +(12107,'2005-08-17 22:56:24',1060,141,'2005-08-24 19:36:24',1,'2006-02-15 21:30:53'), +(12108,'2005-08-17 22:56:39',1675,207,'2005-08-26 19:37:39',1,'2006-02-15 21:30:53'), +(12109,'2005-08-17 22:58:35',1423,509,'2005-08-25 19:44:35',2,'2006-02-15 21:30:53'), +(12110,'2005-08-17 22:59:46',2984,511,'2005-08-23 17:51:46',1,'2006-02-15 21:30:53'), +(12111,'2005-08-17 22:59:55',2905,317,'2005-08-22 19:33:55',2,'2006-02-15 21:30:53'), +(12112,'2005-08-17 23:00:31',4290,576,'2005-08-25 02:05:31',1,'2006-02-15 21:30:53'), +(12113,'2005-08-17 23:01:00',2707,393,'2005-08-25 03:57:00',2,'2006-02-15 21:30:53'), +(12114,'2005-08-17 23:02:00',1405,65,'2005-08-26 18:02:00',1,'2006-02-15 21:30:53'), +(12115,'2005-08-17 23:04:15',1228,457,'2005-08-20 22:25:15',2,'2006-02-15 21:30:53'), +(12116,'2006-02-14 15:16:03',3082,560,NULL,2,'2006-02-15 21:30:53'), +(12117,'2005-08-17 23:11:12',4140,303,'2005-08-22 23:56:12',1,'2006-02-15 21:30:53'), +(12118,'2005-08-17 23:14:25',158,89,'2005-08-26 22:26:25',1,'2006-02-15 21:30:53'), +(12119,'2005-08-17 23:16:44',4298,567,'2005-08-20 02:13:44',2,'2006-02-15 21:30:53'), +(12120,'2005-08-17 23:16:46',2912,323,'2005-08-19 00:11:46',2,'2006-02-15 21:30:53'), +(12121,'2005-08-17 23:20:40',3423,69,'2005-08-22 21:30:40',2,'2006-02-15 21:30:53'), +(12122,'2005-08-17 23:20:45',4030,375,'2005-08-25 04:23:45',2,'2006-02-15 21:30:53'), +(12123,'2005-08-17 23:22:18',361,497,'2005-08-19 23:36:18',2,'2006-02-15 21:30:53'), +(12124,'2005-08-17 23:22:46',2036,22,'2005-08-21 01:40:46',1,'2006-02-15 21:30:53'), +(12125,'2005-08-17 23:24:25',136,573,'2005-08-25 03:08:25',2,'2006-02-15 21:30:53'), +(12126,'2005-08-17 23:25:21',2304,302,'2005-08-23 21:51:21',1,'2006-02-15 21:30:53'), +(12127,'2006-02-14 15:16:03',4218,582,NULL,2,'2006-02-15 21:30:53'), +(12128,'2005-08-17 23:31:09',2252,415,'2005-08-24 05:07:09',2,'2006-02-15 21:30:53'), +(12129,'2005-08-17 23:31:25',891,146,'2005-08-26 19:10:25',2,'2006-02-15 21:30:53'), +(12130,'2006-02-14 15:16:03',1358,516,NULL,2,'2006-02-15 21:30:53'), +(12131,'2005-08-17 23:34:16',3380,21,'2005-08-26 01:18:16',1,'2006-02-15 21:30:53'), +(12132,'2005-08-17 23:37:03',2600,403,'2005-08-22 04:53:03',2,'2006-02-15 21:30:53'), +(12133,'2005-08-17 23:47:16',1958,132,'2005-08-19 03:46:16',2,'2006-02-15 21:30:53'), +(12134,'2005-08-17 23:49:43',2682,288,'2005-08-21 21:00:43',1,'2006-02-15 21:30:53'), +(12135,'2005-08-17 23:50:24',1019,381,'2005-08-23 18:01:24',2,'2006-02-15 21:30:53'), +(12136,'2005-08-17 23:51:30',3944,527,'2005-08-23 01:35:30',1,'2006-02-15 21:30:53'), +(12137,'2005-08-17 23:52:26',3632,109,'2005-08-27 00:19:26',1,'2006-02-15 21:30:53'), +(12138,'2005-08-17 23:55:54',388,317,'2005-08-26 23:32:54',1,'2006-02-15 21:30:53'), +(12139,'2005-08-17 23:57:13',1537,342,'2005-08-24 19:13:13',1,'2006-02-15 21:30:53'), +(12140,'2005-08-17 23:57:55',322,408,'2005-08-21 20:09:55',2,'2006-02-15 21:30:53'), +(12141,'2006-02-14 15:16:03',731,101,NULL,1,'2006-02-15 21:30:53'), +(12142,'2005-08-18 00:04:12',3748,373,'2005-08-24 01:24:12',2,'2006-02-15 21:30:53'), +(12143,'2005-08-18 00:06:26',2876,117,'2005-08-24 02:45:26',2,'2006-02-15 21:30:53'), +(12144,'2006-02-14 15:16:03',512,587,NULL,1,'2006-02-15 21:30:53'), +(12145,'2005-08-18 00:10:04',3482,5,'2005-08-26 00:51:04',1,'2006-02-15 21:30:53'), +(12146,'2005-08-18 00:10:04',3833,434,'2005-08-25 19:18:04',2,'2006-02-15 21:30:53'), +(12147,'2005-08-18 00:10:20',705,41,'2005-08-23 20:36:20',2,'2006-02-15 21:30:53'), +(12148,'2005-08-18 00:13:15',2409,254,'2005-08-20 01:27:15',2,'2006-02-15 21:30:53'), +(12149,'2005-08-18 00:13:51',3696,277,'2005-08-26 19:47:51',1,'2006-02-15 21:30:53'), +(12150,'2005-08-18 00:13:55',3781,555,'2005-08-20 23:35:55',2,'2006-02-15 21:30:53'), +(12151,'2005-08-18 00:14:03',1976,4,'2005-08-18 23:52:03',2,'2006-02-15 21:30:53'), +(12152,'2005-08-18 00:21:35',2797,367,'2005-08-22 02:51:35',1,'2006-02-15 21:30:53'), +(12153,'2005-08-18 00:22:30',3929,387,'2005-08-23 04:13:30',2,'2006-02-15 21:30:53'), +(12154,'2005-08-18 00:23:56',2491,163,'2005-08-21 00:31:56',2,'2006-02-15 21:30:53'), +(12155,'2005-08-18 00:24:30',2065,315,'2005-08-18 19:12:30',2,'2006-02-15 21:30:53'), +(12156,'2005-08-18 00:27:33',3270,212,'2005-08-26 01:43:33',1,'2006-02-15 21:30:53'), +(12157,'2005-08-18 00:33:45',2311,569,'2005-08-22 19:33:45',1,'2006-02-15 21:30:53'), +(12158,'2005-08-18 00:34:20',4121,289,'2005-08-22 20:10:20',2,'2006-02-15 21:30:53'), +(12159,'2005-08-18 00:36:09',2243,106,'2005-08-27 06:31:09',1,'2006-02-15 21:30:53'), +(12160,'2005-08-18 00:37:59',1328,481,'2005-08-19 20:51:59',1,'2006-02-15 21:30:53'), +(12161,'2005-08-18 00:41:46',2420,444,'2005-08-26 22:59:46',2,'2006-02-15 21:30:53'), +(12162,'2005-08-18 00:44:30',2697,284,'2005-08-25 03:34:30',1,'2006-02-15 21:30:53'), +(12163,'2005-08-18 00:46:01',1349,455,'2005-08-22 06:16:01',1,'2006-02-15 21:30:53'), +(12164,'2005-08-18 00:46:38',3849,587,'2005-08-19 04:38:38',2,'2006-02-15 21:30:53'), +(12165,'2005-08-18 00:53:37',4215,24,'2005-08-27 00:09:37',2,'2006-02-15 21:30:53'), +(12166,'2005-08-18 00:57:06',3627,184,'2005-08-26 03:13:06',2,'2006-02-15 21:30:53'), +(12167,'2005-08-18 01:00:02',3085,338,'2005-08-21 00:04:02',2,'2006-02-15 21:30:53'), +(12168,'2005-08-18 01:03:52',2859,535,'2005-08-18 20:19:52',1,'2006-02-15 21:30:53'), +(12169,'2005-08-18 01:05:54',2281,323,'2005-08-24 02:16:54',2,'2006-02-15 21:30:53'), +(12170,'2005-08-18 01:06:10',1125,289,'2005-08-25 02:40:10',2,'2006-02-15 21:30:53'), +(12171,'2005-08-18 01:06:13',454,457,'2005-08-22 19:39:13',2,'2006-02-15 21:30:53'), +(12172,'2005-08-18 01:07:00',1162,226,'2005-08-22 21:01:00',2,'2006-02-15 21:30:53'), +(12173,'2005-08-18 01:08:34',2830,41,'2005-08-24 20:52:34',1,'2006-02-15 21:30:53'), +(12174,'2005-08-18 01:08:53',1458,101,'2005-08-20 03:28:53',1,'2006-02-15 21:30:53'), +(12175,'2005-08-18 01:10:17',4558,328,'2005-08-19 05:25:17',2,'2006-02-15 21:30:53'), +(12176,'2005-08-18 01:10:33',3873,255,'2005-08-24 02:45:33',2,'2006-02-15 21:30:53'), +(12177,'2005-08-18 01:15:47',522,470,'2005-08-24 23:23:47',2,'2006-02-15 21:30:53'), +(12178,'2005-08-18 01:17:32',1152,276,'2005-08-25 19:32:32',1,'2006-02-15 21:30:53'), +(12179,'2005-08-18 01:21:21',1499,222,'2005-08-19 00:59:21',1,'2006-02-15 21:30:53'), +(12180,'2005-08-18 01:28:15',2276,20,'2005-08-20 20:52:15',2,'2006-02-15 21:30:53'), +(12181,'2005-08-18 01:28:18',532,81,'2005-08-23 21:17:18',2,'2006-02-15 21:30:53'), +(12182,'2005-08-18 01:30:19',296,555,'2005-08-21 05:52:19',1,'2006-02-15 21:30:53'), +(12183,'2005-08-18 01:34:13',3153,344,'2005-08-24 04:38:13',1,'2006-02-15 21:30:53'), +(12184,'2005-08-18 01:36:00',1723,51,'2005-08-21 01:59:00',1,'2006-02-15 21:30:53'), +(12185,'2005-08-18 01:40:14',1558,588,'2005-08-25 05:04:14',1,'2006-02-15 21:30:53'), +(12186,'2005-08-18 01:43:36',1342,312,'2005-08-23 07:13:36',1,'2006-02-15 21:30:53'), +(12187,'2005-08-18 01:45:50',3360,38,'2005-08-22 20:12:50',1,'2006-02-15 21:30:53'), +(12188,'2005-08-18 01:51:43',2989,456,'2005-08-18 22:23:43',1,'2006-02-15 21:30:53'), +(12189,'2005-08-18 01:51:44',1764,363,'2005-08-26 01:01:44',1,'2006-02-15 21:30:53'), +(12190,'2005-08-18 01:54:44',2464,28,'2005-08-27 04:32:44',1,'2006-02-15 21:30:53'), +(12191,'2005-08-18 01:57:11',2667,316,'2005-08-22 22:53:11',2,'2006-02-15 21:30:53'), +(12192,'2005-08-18 02:01:40',3450,270,'2005-08-21 05:45:40',1,'2006-02-15 21:30:53'), +(12193,'2005-08-18 02:03:59',1086,290,'2005-08-25 05:32:59',2,'2006-02-15 21:30:53'), +(12194,'2005-08-18 02:04:47',292,558,'2005-08-25 20:45:47',2,'2006-02-15 21:30:53'), +(12195,'2005-08-18 02:07:49',943,347,'2005-08-19 23:54:49',2,'2006-02-15 21:30:53'), +(12196,'2005-08-18 02:08:48',4302,111,'2005-08-26 00:39:48',1,'2006-02-15 21:30:53'), +(12197,'2005-08-18 02:08:58',3687,564,'2005-08-26 21:54:58',2,'2006-02-15 21:30:53'), +(12198,'2005-08-18 02:09:20',1628,86,'2005-08-21 21:28:20',2,'2006-02-15 21:30:53'), +(12199,'2005-08-18 02:09:23',424,96,'2005-08-22 20:33:23',1,'2006-02-15 21:30:53'), +(12200,'2005-08-18 02:12:33',840,52,'2005-08-18 20:47:33',2,'2006-02-15 21:30:53'), +(12201,'2005-08-18 02:14:06',3676,540,'2005-08-23 04:44:06',1,'2006-02-15 21:30:53'), +(12202,'2005-08-18 02:14:08',672,563,'2005-08-24 04:35:08',1,'2006-02-15 21:30:53'), +(12203,'2005-08-18 02:18:52',4228,591,'2005-08-22 21:01:52',1,'2006-02-15 21:30:53'), +(12204,'2005-08-18 02:20:35',304,575,'2005-08-26 01:27:35',2,'2006-02-15 21:30:53'), +(12205,'2005-08-18 02:21:08',774,437,'2005-08-27 00:08:08',2,'2006-02-15 21:30:53'), +(12206,'2005-08-18 02:22:20',3275,254,'2005-08-23 05:36:20',1,'2006-02-15 21:30:53'), +(12207,'2005-08-18 02:24:07',3745,265,'2005-08-22 07:53:07',1,'2006-02-15 21:30:53'), +(12208,'2005-08-18 02:25:25',2039,551,'2005-08-20 04:53:25',2,'2006-02-15 21:30:53'), +(12209,'2005-08-18 02:27:20',279,243,'2005-08-21 00:41:20',2,'2006-02-15 21:30:53'), +(12210,'2005-08-18 02:27:29',3035,217,'2005-08-20 23:32:29',2,'2006-02-15 21:30:53'), +(12211,'2005-08-18 02:31:18',1484,19,'2005-08-26 02:36:18',1,'2006-02-15 21:30:53'), +(12212,'2005-08-18 02:33:29',3898,449,'2005-08-25 07:10:29',2,'2006-02-15 21:30:53'), +(12213,'2005-08-18 02:33:55',4058,157,'2005-08-24 03:14:55',1,'2006-02-15 21:30:53'), +(12214,'2005-08-18 02:34:22',2094,231,'2005-08-21 07:48:22',2,'2006-02-15 21:30:53'), +(12215,'2005-08-18 02:35:39',4095,47,'2005-08-24 00:36:39',1,'2006-02-15 21:30:53'), +(12216,'2005-08-18 02:37:07',4139,131,'2005-08-19 02:09:07',2,'2006-02-15 21:30:53'), +(12217,'2005-08-18 02:44:44',2556,105,'2005-08-24 03:27:44',1,'2006-02-15 21:30:53'), +(12218,'2005-08-18 02:48:14',1933,70,'2005-08-21 01:52:14',2,'2006-02-15 21:30:53'), +(12219,'2005-08-18 02:49:54',2249,271,'2005-08-23 07:52:54',1,'2006-02-15 21:30:53'), +(12220,'2005-08-18 02:50:02',982,530,'2005-08-22 00:20:02',1,'2006-02-15 21:30:53'), +(12221,'2005-08-18 02:50:51',2488,98,'2005-08-27 06:22:51',2,'2006-02-15 21:30:53'), +(12222,'2006-02-14 15:16:03',3949,22,NULL,1,'2006-02-15 21:30:53'), +(12223,'2005-08-18 02:58:40',4142,397,'2005-08-23 23:30:40',2,'2006-02-15 21:30:53'), +(12224,'2005-08-18 02:59:09',1781,372,'2005-08-19 06:22:09',1,'2006-02-15 21:30:53'), +(12225,'2005-08-18 03:00:11',1876,306,'2005-08-24 05:01:11',1,'2006-02-15 21:30:53'), +(12226,'2005-08-18 03:00:48',682,234,'2005-08-25 00:43:48',2,'2006-02-15 21:30:53'), +(12227,'2005-08-18 03:04:28',3671,591,'2005-08-21 08:52:28',2,'2006-02-15 21:30:53'), +(12228,'2005-08-18 03:08:10',2772,9,'2005-08-20 02:48:10',1,'2006-02-15 21:30:53'), +(12229,'2005-08-18 03:08:23',1123,382,'2005-08-22 03:42:23',1,'2006-02-15 21:30:53'), +(12230,'2005-08-18 03:11:04',1910,231,'2005-08-27 04:06:04',1,'2006-02-15 21:30:53'), +(12231,'2005-08-18 03:11:44',1115,231,'2005-08-24 03:26:44',1,'2006-02-15 21:30:53'), +(12232,'2005-08-18 03:14:14',2399,87,'2005-08-19 05:44:14',2,'2006-02-15 21:30:53'), +(12233,'2005-08-18 03:16:54',174,535,'2005-08-22 04:48:54',2,'2006-02-15 21:30:53'), +(12234,'2005-08-18 03:17:33',3823,352,'2005-08-25 04:44:33',2,'2006-02-15 21:30:53'), +(12235,'2005-08-18 03:17:50',957,595,'2005-08-20 02:49:50',1,'2006-02-15 21:30:53'), +(12236,'2005-08-18 03:19:29',1190,474,'2005-08-23 07:39:29',2,'2006-02-15 21:30:53'), +(12237,'2005-08-18 03:24:38',4422,381,'2005-08-25 09:05:38',1,'2006-02-15 21:30:53'), +(12238,'2005-08-18 03:25:08',4043,46,'2005-08-20 02:41:08',2,'2006-02-15 21:30:53'), +(12239,'2005-08-18 03:26:42',1948,75,'2005-08-24 23:48:42',1,'2006-02-15 21:30:53'), +(12240,'2005-08-18 03:27:11',1168,30,'2005-08-26 04:34:11',2,'2006-02-15 21:30:53'), +(12241,'2005-08-18 03:33:17',1261,248,'2005-08-21 03:13:17',2,'2006-02-15 21:30:53'), +(12242,'2005-08-18 03:37:31',2095,121,'2005-08-25 06:50:31',1,'2006-02-15 21:30:53'), +(12243,'2005-08-18 03:38:54',1829,354,'2005-08-27 06:56:54',2,'2006-02-15 21:30:53'), +(12244,'2005-08-18 03:39:11',4441,362,'2005-08-21 02:57:11',2,'2006-02-15 21:30:53'), +(12245,'2005-08-18 03:46:40',2960,576,'2005-08-24 22:27:40',2,'2006-02-15 21:30:53'), +(12246,'2005-08-18 03:48:41',3199,258,'2005-08-25 05:12:41',1,'2006-02-15 21:30:53'), +(12247,'2005-08-18 03:51:51',2264,254,'2005-08-24 05:36:51',2,'2006-02-15 21:30:53'), +(12248,'2005-08-18 03:53:18',2120,562,'2005-08-22 04:53:18',1,'2006-02-15 21:30:53'), +(12249,'2005-08-18 03:53:34',3586,135,'2005-08-21 01:14:34',1,'2006-02-15 21:30:53'), +(12250,'2005-08-18 03:57:29',921,1,'2005-08-22 23:05:29',1,'2006-02-15 21:30:53'), +(12251,'2005-08-18 03:59:02',3044,276,'2005-08-19 02:38:02',1,'2006-02-15 21:30:53'), +(12252,'2005-08-18 03:59:51',127,350,'2005-08-25 08:54:51',2,'2006-02-15 21:30:53'), +(12253,'2005-08-18 04:00:50',566,446,'2005-08-19 04:43:50',1,'2006-02-15 21:30:53'), +(12254,'2005-08-18 04:05:29',2858,6,'2005-08-23 04:17:29',1,'2006-02-15 21:30:53'), +(12255,'2005-08-18 04:07:20',2100,266,'2005-08-21 22:19:20',1,'2006-02-15 21:30:53'), +(12256,'2005-08-18 04:09:39',2975,572,'2005-08-22 01:53:39',2,'2006-02-15 21:30:53'), +(12257,'2005-08-18 04:11:03',269,87,'2005-08-25 01:20:03',2,'2006-02-15 21:30:53'), +(12258,'2005-08-18 04:11:13',2861,83,'2005-08-21 23:40:13',2,'2006-02-15 21:30:53'), +(12259,'2005-08-18 04:14:35',2904,429,'2005-08-18 22:30:35',2,'2006-02-15 21:30:53'), +(12260,'2005-08-18 04:15:43',1352,150,'2005-08-26 23:31:43',1,'2006-02-15 21:30:53'), +(12261,'2005-08-18 04:16:06',4076,485,'2005-08-27 08:04:06',1,'2006-02-15 21:30:53'), +(12262,'2005-08-18 04:16:15',591,125,'2005-08-20 09:16:15',1,'2006-02-15 21:30:53'), +(12263,'2005-08-18 04:16:18',4053,131,'2005-08-21 07:22:18',1,'2006-02-15 21:30:53'), +(12264,'2005-08-18 04:17:33',3073,87,'2005-08-26 08:07:33',1,'2006-02-15 21:30:53'), +(12265,'2005-08-18 04:22:01',537,247,'2005-08-20 03:22:01',1,'2006-02-15 21:30:53'), +(12266,'2005-08-18 04:22:31',2192,467,'2005-08-19 04:25:31',2,'2006-02-15 21:30:53'), +(12267,'2005-08-18 04:24:30',652,388,'2005-08-26 03:01:30',2,'2006-02-15 21:30:53'), +(12268,'2005-08-18 04:26:54',93,39,'2005-08-23 06:40:54',2,'2006-02-15 21:30:53'), +(12269,'2005-08-18 04:27:54',724,573,'2005-08-25 07:03:54',1,'2006-02-15 21:30:53'), +(12270,'2005-08-18 04:32:05',2456,190,'2005-08-21 01:37:05',2,'2006-02-15 21:30:53'), +(12271,'2005-08-18 04:33:11',3866,471,'2005-08-20 23:10:11',1,'2006-02-15 21:30:53'), +(12272,'2005-08-18 04:39:10',1964,15,'2005-08-24 09:41:10',1,'2006-02-15 21:30:53'), +(12273,'2005-08-18 04:40:50',3539,431,'2005-08-25 01:44:50',2,'2006-02-15 21:30:53'), +(12274,'2005-08-18 04:41:47',265,47,'2005-08-27 07:00:47',1,'2006-02-15 21:30:53'), +(12275,'2005-08-18 04:42:02',1474,507,'2005-08-25 00:50:02',1,'2006-02-15 21:30:53'), +(12276,'2005-08-18 04:43:22',4491,397,'2005-08-22 01:49:22',2,'2006-02-15 21:30:53'), +(12277,'2006-02-14 15:16:03',407,33,NULL,2,'2006-02-15 21:30:53'), +(12278,'2005-08-18 04:46:45',3205,294,'2005-08-24 08:59:45',2,'2006-02-15 21:30:53'), +(12279,'2005-08-18 04:47:30',4159,421,'2005-08-19 09:47:30',2,'2006-02-15 21:30:53'), +(12280,'2005-08-18 04:49:27',4032,46,'2005-08-21 03:39:27',2,'2006-02-15 21:30:53'), +(12281,'2005-08-18 04:50:32',4576,417,'2005-08-21 00:14:32',2,'2006-02-15 21:30:53'), +(12282,'2005-08-18 04:54:20',3623,173,'2005-08-23 05:28:20',2,'2006-02-15 21:30:53'), +(12283,'2005-08-18 04:54:25',574,240,'2005-08-23 04:02:25',1,'2006-02-15 21:30:53'), +(12284,'2005-08-18 04:55:49',3162,147,'2005-08-22 08:45:49',2,'2006-02-15 21:30:53'), +(12285,'2005-08-18 04:56:43',3531,215,'2005-08-19 23:32:43',2,'2006-02-15 21:30:53'), +(12286,'2005-08-18 04:57:59',3729,34,'2005-08-18 23:20:59',2,'2006-02-15 21:30:53'), +(12287,'2005-08-18 04:58:06',2238,136,'2005-08-24 00:06:06',1,'2006-02-15 21:30:53'), +(12288,'2005-08-18 05:01:20',4401,523,'2005-08-25 09:51:20',2,'2006-02-15 21:30:53'), +(12289,'2005-08-18 05:05:28',443,575,'2005-08-26 09:02:28',1,'2006-02-15 21:30:53'), +(12290,'2005-08-18 05:08:03',4100,283,'2005-08-23 08:10:03',2,'2006-02-15 21:30:53'), +(12291,'2005-08-18 05:08:37',4270,73,'2005-08-23 09:01:37',1,'2006-02-15 21:30:53'), +(12292,'2005-08-18 05:08:54',1417,58,'2005-08-27 02:51:54',1,'2006-02-15 21:30:53'), +(12293,'2005-08-18 05:13:36',614,514,'2005-08-25 04:00:36',2,'2006-02-15 21:30:53'), +(12294,'2005-08-18 05:14:44',2479,4,'2005-08-27 01:32:44',2,'2006-02-15 21:30:53'), +(12295,'2005-08-18 05:15:46',1651,532,'2005-08-26 02:23:46',2,'2006-02-15 21:30:53'), +(12296,'2005-08-18 05:16:28',2091,258,'2005-08-22 10:32:28',1,'2006-02-15 21:30:53'), +(12297,'2005-08-18 05:19:57',903,436,'2005-08-21 00:53:57',1,'2006-02-15 21:30:53'), +(12298,'2005-08-18 05:30:31',904,46,'2005-08-27 07:33:31',1,'2006-02-15 21:30:53'), +(12299,'2005-08-18 05:32:32',892,176,'2005-08-22 08:14:32',2,'2006-02-15 21:30:53'), +(12300,'2005-08-18 05:36:14',3213,540,'2005-08-25 00:20:14',2,'2006-02-15 21:30:53'), +(12301,'2005-08-18 05:36:20',2293,317,'2005-08-23 03:15:20',1,'2006-02-15 21:30:53'), +(12302,'2005-08-18 05:41:39',765,514,'2005-08-22 06:02:39',1,'2006-02-15 21:30:53'), +(12303,'2005-08-18 05:43:22',1604,245,'2005-08-27 08:54:22',2,'2006-02-15 21:30:53'), +(12304,'2005-08-18 05:44:29',1381,228,'2005-08-24 04:31:29',1,'2006-02-15 21:30:53'), +(12305,'2005-08-18 05:46:29',4463,534,'2005-08-22 11:14:29',2,'2006-02-15 21:30:53'), +(12306,'2005-08-18 05:47:55',3853,541,'2005-08-21 01:56:55',1,'2006-02-15 21:30:53'), +(12307,'2005-08-18 05:48:23',2679,187,'2005-08-26 02:32:23',1,'2006-02-15 21:30:53'), +(12308,'2005-08-18 05:48:53',2877,569,'2005-08-22 09:03:53',1,'2006-02-15 21:30:53'), +(12309,'2005-08-18 05:58:40',762,9,'2005-08-20 02:20:40',2,'2006-02-15 21:30:53'), +(12310,'2005-08-18 06:02:34',3814,385,'2005-08-24 01:08:34',2,'2006-02-15 21:30:53'), +(12311,'2005-08-18 06:07:00',1650,211,'2005-08-21 07:54:00',2,'2006-02-15 21:30:53'), +(12312,'2005-08-18 06:07:26',80,185,'2005-08-21 02:07:26',2,'2006-02-15 21:30:53'), +(12313,'2005-08-18 06:07:31',2053,180,'2005-08-27 00:20:31',1,'2006-02-15 21:30:53'), +(12314,'2005-08-18 06:10:02',2204,455,'2005-08-25 02:48:02',1,'2006-02-15 21:30:53'), +(12315,'2005-08-18 06:15:06',2012,579,'2005-08-24 07:45:06',2,'2006-02-15 21:30:53'), +(12316,'2005-08-18 06:16:09',4325,94,'2005-08-27 05:54:09',2,'2006-02-15 21:30:53'), +(12317,'2005-08-18 06:17:06',90,510,'2005-08-22 08:56:06',1,'2006-02-15 21:30:53'), +(12318,'2005-08-18 06:21:56',3694,332,'2005-08-27 06:07:56',1,'2006-02-15 21:30:53'), +(12319,'2005-08-18 06:26:45',999,368,'2005-08-23 01:35:45',1,'2006-02-15 21:30:53'), +(12320,'2005-08-18 06:26:51',3248,267,'2005-08-20 04:00:51',1,'2006-02-15 21:30:53'), +(12321,'2005-08-18 06:27:05',516,274,'2005-08-24 02:26:05',1,'2006-02-15 21:30:53'), +(12322,'2005-08-18 06:35:28',4235,365,'2005-08-23 07:34:28',1,'2006-02-15 21:30:53'), +(12323,'2005-08-18 06:36:22',4107,336,'2005-08-26 11:36:22',1,'2006-02-15 21:30:53'), +(12324,'2005-08-18 06:38:20',2436,221,'2005-08-20 02:28:20',2,'2006-02-15 21:30:53'), +(12325,'2005-08-18 06:41:30',1844,404,'2005-08-26 02:49:30',1,'2006-02-15 21:30:53'), +(12326,'2005-08-18 06:41:59',1865,114,'2005-08-19 10:16:59',2,'2006-02-15 21:30:53'), +(12327,'2005-08-18 06:43:22',2425,261,'2005-08-25 10:50:22',2,'2006-02-15 21:30:53'), +(12328,'2005-08-18 06:43:56',1355,77,'2005-08-23 10:19:56',2,'2006-02-15 21:30:53'), +(12329,'2005-08-18 06:44:30',3127,397,'2005-08-25 04:05:30',1,'2006-02-15 21:30:53'), +(12330,'2005-08-18 06:46:33',889,587,'2005-08-26 11:35:33',2,'2006-02-15 21:30:53'), +(12331,'2005-08-18 06:47:19',4565,483,'2005-08-25 05:51:19',2,'2006-02-15 21:30:53'), +(12332,'2005-08-18 06:51:05',627,235,'2005-08-20 04:28:05',2,'2006-02-15 21:30:53'), +(12333,'2005-08-18 06:51:39',4370,18,'2005-08-21 01:44:39',2,'2006-02-15 21:30:53'), +(12334,'2005-08-18 06:52:36',2629,160,'2005-08-25 12:06:36',1,'2006-02-15 21:30:53'), +(12335,'2005-08-18 06:59:15',2776,150,'2005-08-20 06:47:15',1,'2006-02-15 21:30:53'), +(12336,'2005-08-18 06:59:41',2484,75,'2005-08-23 01:36:41',1,'2006-02-15 21:30:53'), +(12337,'2005-08-18 07:02:24',4221,117,'2005-08-20 10:11:24',1,'2006-02-15 21:30:53'), +(12338,'2005-08-18 07:04:24',274,408,'2005-08-19 08:36:24',2,'2006-02-15 21:30:53'), +(12339,'2005-08-18 07:05:06',1600,370,'2005-08-19 02:27:06',2,'2006-02-15 21:30:53'), +(12340,'2005-08-18 07:07:01',3561,239,'2005-08-20 05:06:01',1,'2006-02-15 21:30:53'), +(12341,'2005-08-18 07:09:27',130,154,'2005-08-21 03:44:27',1,'2006-02-15 21:30:53'), +(12342,'2005-08-18 07:12:46',1408,63,'2005-08-21 07:44:46',1,'2006-02-15 21:30:53'), +(12343,'2005-08-18 07:15:13',448,507,'2005-08-27 11:07:13',1,'2006-02-15 21:30:53'), +(12344,'2005-08-18 07:15:19',3675,269,'2005-08-24 04:58:19',2,'2006-02-15 21:30:53'), +(12345,'2005-08-18 07:16:58',2359,44,'2005-08-25 05:50:58',1,'2006-02-15 21:30:53'), +(12346,'2005-08-18 07:17:55',1200,265,'2005-08-21 11:35:55',2,'2006-02-15 21:30:53'), +(12347,'2005-08-18 07:18:10',1788,454,'2005-08-19 05:49:10',1,'2006-02-15 21:30:53'), +(12348,'2005-08-18 07:21:47',434,186,'2005-08-25 04:41:47',2,'2006-02-15 21:30:53'), +(12349,'2005-08-18 07:23:42',4191,545,'2005-08-19 04:25:42',1,'2006-02-15 21:30:53'), +(12350,'2005-08-18 07:29:46',1333,172,'2005-08-21 12:50:46',1,'2006-02-15 21:30:53'), +(12351,'2005-08-18 07:32:12',2299,95,'2005-08-24 04:29:12',2,'2006-02-15 21:30:53'), +(12352,'2006-02-14 15:16:03',643,155,NULL,1,'2006-02-15 21:30:53'), +(12353,'2005-08-18 07:33:08',1594,141,'2005-08-21 03:42:08',2,'2006-02-15 21:30:53'), +(12354,'2005-08-18 07:34:07',2913,499,'2005-08-26 05:56:07',1,'2006-02-15 21:30:53'), +(12355,'2005-08-18 07:36:23',4112,452,'2005-08-20 08:59:23',1,'2006-02-15 21:30:53'), +(12356,'2005-08-18 07:37:05',493,529,'2005-08-24 10:49:05',1,'2006-02-15 21:30:53'), +(12357,'2005-08-18 07:40:52',166,19,'2005-08-22 02:51:52',1,'2006-02-15 21:30:53'), +(12358,'2005-08-18 07:41:43',504,16,'2005-08-20 03:46:43',1,'2006-02-15 21:30:53'), +(12359,'2005-08-18 07:44:05',4172,28,'2005-08-19 02:26:05',1,'2006-02-15 21:30:53'), +(12360,'2005-08-18 07:46:35',929,123,'2005-08-26 12:01:35',1,'2006-02-15 21:30:53'), +(12361,'2005-08-18 07:47:31',1418,250,'2005-08-22 12:08:31',2,'2006-02-15 21:30:53'), +(12362,'2005-08-18 07:48:05',3131,367,'2005-08-20 05:16:05',2,'2006-02-15 21:30:53'), +(12363,'2005-08-18 07:52:49',3447,181,'2005-08-26 03:20:49',2,'2006-02-15 21:30:53'), +(12364,'2005-08-18 07:55:09',3398,84,'2005-08-19 05:29:09',2,'2006-02-15 21:30:53'), +(12365,'2005-08-18 07:55:09',4350,303,'2005-08-24 05:42:09',1,'2006-02-15 21:30:53'), +(12366,'2005-08-18 07:55:14',3799,115,'2005-08-22 06:12:14',1,'2006-02-15 21:30:53'), +(12367,'2005-08-18 07:57:14',1822,7,'2005-08-27 07:07:14',2,'2006-02-15 21:30:53'), +(12368,'2005-08-18 07:57:38',3777,392,'2005-08-25 05:49:38',2,'2006-02-15 21:30:53'), +(12369,'2005-08-18 07:57:43',484,337,'2005-08-26 09:36:43',1,'2006-02-15 21:30:53'), +(12370,'2005-08-18 07:57:47',3343,503,'2005-08-22 11:32:47',1,'2006-02-15 21:30:53'), +(12371,'2005-08-18 08:02:46',622,451,'2005-08-19 02:50:46',2,'2006-02-15 21:30:53'), +(12372,'2005-08-18 08:04:35',2982,131,'2005-08-27 08:13:35',2,'2006-02-15 21:30:53'), +(12373,'2005-08-18 08:07:25',777,367,'2005-08-27 03:41:25',1,'2006-02-15 21:30:53'), +(12374,'2005-08-18 08:07:45',939,74,'2005-08-26 10:42:45',2,'2006-02-15 21:30:53'), +(12375,'2005-08-18 08:20:08',3508,365,'2005-08-21 08:50:08',2,'2006-02-15 21:30:53'), +(12376,'2005-08-18 08:20:29',852,116,'2005-08-20 13:20:29',1,'2006-02-15 21:30:53'), +(12377,'2005-08-18 08:26:05',4564,31,'2005-08-23 02:51:05',2,'2006-02-15 21:30:53'), +(12378,'2005-08-18 08:26:13',4418,266,'2005-08-19 07:21:13',1,'2006-02-15 21:30:53'), +(12379,'2005-08-18 08:26:48',2879,99,'2005-08-19 10:08:48',2,'2006-02-15 21:30:53'), +(12380,'2005-08-18 08:27:28',55,215,'2005-08-25 02:58:28',2,'2006-02-15 21:30:53'), +(12381,'2005-08-18 08:31:43',3651,190,'2005-08-23 12:24:43',2,'2006-02-15 21:30:53'); +INSERT INTO rental VALUES (12382,'2005-08-18 08:32:33',3049,566,'2005-08-26 03:45:33',2,'2006-02-15 21:30:53'), +(12383,'2005-08-18 08:36:03',1641,295,'2005-08-23 03:30:03',2,'2006-02-15 21:30:53'), +(12384,'2005-08-18 08:36:58',2557,193,'2005-08-23 05:08:58',1,'2006-02-15 21:30:53'), +(12385,'2005-08-18 08:39:33',3143,146,'2005-08-21 14:22:33',1,'2006-02-15 21:30:53'), +(12386,'2005-08-18 08:45:57',3303,199,'2005-08-24 04:50:57',2,'2006-02-15 21:30:53'), +(12387,'2005-08-18 08:46:24',3604,530,'2005-08-21 02:56:24',2,'2006-02-15 21:30:53'), +(12388,'2005-08-18 08:48:09',4016,555,'2005-08-26 09:05:09',2,'2006-02-15 21:30:53'), +(12389,'2005-08-18 08:48:36',1891,394,'2005-08-22 08:59:36',2,'2006-02-15 21:30:53'), +(12390,'2005-08-18 08:51:42',3603,377,'2005-08-23 13:06:42',1,'2006-02-15 21:30:53'), +(12391,'2005-08-18 08:52:53',1507,307,'2005-08-22 12:15:53',2,'2006-02-15 21:30:53'), +(12392,'2005-08-18 08:57:58',2695,113,'2005-08-25 05:20:58',2,'2006-02-15 21:30:53'), +(12393,'2005-08-18 09:02:41',2435,396,'2005-08-26 12:47:41',1,'2006-02-15 21:30:53'), +(12394,'2005-08-18 09:05:15',3605,330,'2005-08-23 11:10:15',1,'2006-02-15 21:30:53'), +(12395,'2005-08-18 09:06:30',2020,541,'2005-08-21 12:09:30',2,'2006-02-15 21:30:53'), +(12396,'2005-08-18 09:11:23',3624,40,'2005-08-26 05:35:23',2,'2006-02-15 21:30:53'), +(12397,'2005-08-18 09:12:52',1872,371,'2005-08-27 10:44:52',2,'2006-02-15 21:30:53'), +(12398,'2005-08-18 09:13:24',4247,321,'2005-08-27 14:58:24',1,'2006-02-15 21:30:53'), +(12399,'2005-08-18 09:13:42',3950,347,'2005-08-27 11:44:42',1,'2006-02-15 21:30:53'), +(12400,'2005-08-18 09:19:12',1767,10,'2005-08-26 06:52:12',1,'2006-02-15 21:30:53'), +(12401,'2005-08-18 09:20:51',4314,479,'2005-08-21 05:50:51',2,'2006-02-15 21:30:53'), +(12402,'2005-08-18 09:27:34',385,123,'2005-08-25 13:10:34',2,'2006-02-15 21:30:53'), +(12403,'2005-08-18 09:31:05',2124,440,'2005-08-23 09:54:05',2,'2006-02-15 21:30:53'), +(12404,'2005-08-18 09:36:34',1097,342,'2005-08-23 10:12:34',2,'2006-02-15 21:30:53'), +(12405,'2005-08-18 09:37:30',228,266,'2005-08-27 13:11:30',2,'2006-02-15 21:30:53'), +(12406,'2005-08-18 09:38:02',4368,510,'2005-08-22 12:56:02',1,'2006-02-15 21:30:53'), +(12407,'2005-08-18 09:39:26',391,220,'2005-08-24 05:19:26',2,'2006-02-15 21:30:53'), +(12408,'2005-08-18 09:40:38',2360,143,'2005-08-19 04:45:38',1,'2006-02-15 21:30:53'), +(12409,'2005-08-18 09:43:58',2568,64,'2005-08-19 15:02:58',2,'2006-02-15 21:30:53'), +(12410,'2005-08-18 09:45:33',1904,210,'2005-08-27 08:50:33',1,'2006-02-15 21:30:53'), +(12411,'2005-08-18 09:47:57',1234,181,'2005-08-21 05:54:57',2,'2006-02-15 21:30:53'), +(12412,'2005-08-18 09:49:52',1578,75,'2005-08-23 12:32:52',2,'2006-02-15 21:30:53'), +(12413,'2005-08-18 09:50:34',3466,366,'2005-08-23 05:57:34',2,'2006-02-15 21:30:53'), +(12414,'2005-08-18 09:50:40',4454,32,'2005-08-26 06:45:40',2,'2006-02-15 21:30:53'), +(12415,'2005-08-18 09:54:01',392,443,'2005-08-24 15:41:01',1,'2006-02-15 21:30:53'), +(12416,'2005-08-18 09:56:48',3784,515,'2005-08-22 12:34:48',1,'2006-02-15 21:30:53'), +(12417,'2005-08-18 09:57:00',3500,71,'2005-08-19 08:56:00',1,'2006-02-15 21:30:53'), +(12418,'2005-08-18 09:59:36',4186,241,'2005-08-19 11:35:36',2,'2006-02-15 21:30:53'), +(12419,'2005-08-18 10:01:48',3111,133,'2005-08-19 13:40:48',1,'2006-02-15 21:30:53'), +(12420,'2005-08-18 10:01:50',452,477,'2005-08-22 08:14:50',1,'2006-02-15 21:30:53'), +(12421,'2005-08-18 10:04:06',4067,158,'2005-08-24 08:45:06',2,'2006-02-15 21:30:53'), +(12422,'2005-08-18 10:13:12',1855,451,'2005-08-20 14:36:12',2,'2006-02-15 21:30:53'), +(12423,'2005-08-18 10:14:52',1014,470,'2005-08-26 13:16:52',2,'2006-02-15 21:30:53'), +(12424,'2005-08-18 10:16:57',2055,319,'2005-08-27 04:41:57',1,'2006-02-15 21:30:53'), +(12425,'2005-08-18 10:18:06',2000,405,'2005-08-27 08:16:06',2,'2006-02-15 21:30:53'), +(12426,'2005-08-18 10:24:11',799,75,'2005-08-22 15:34:11',2,'2006-02-15 21:30:53'), +(12427,'2005-08-18 10:24:17',1759,333,'2005-08-27 14:22:17',1,'2006-02-15 21:30:53'), +(12428,'2005-08-18 10:24:21',3735,121,'2005-08-24 05:12:21',1,'2006-02-15 21:30:53'), +(12429,'2005-08-18 10:26:46',2994,436,'2005-08-27 13:23:46',1,'2006-02-15 21:30:53'), +(12430,'2005-08-18 10:32:41',2840,196,'2005-08-22 16:16:41',1,'2006-02-15 21:30:53'), +(12431,'2005-08-18 10:34:59',4461,89,'2005-08-22 14:42:59',1,'2006-02-15 21:30:53'), +(12432,'2005-08-18 10:35:13',2543,263,'2005-08-26 08:20:13',2,'2006-02-15 21:30:53'), +(12433,'2005-08-18 10:37:49',1776,552,'2005-08-19 08:00:49',1,'2006-02-15 21:30:53'), +(12434,'2005-08-18 10:38:08',3078,314,'2005-08-22 16:14:08',2,'2006-02-15 21:30:53'), +(12435,'2005-08-18 10:38:31',3211,160,'2005-08-26 15:18:31',1,'2006-02-15 21:30:53'), +(12436,'2005-08-18 10:41:05',3761,499,'2005-08-23 07:36:05',2,'2006-02-15 21:30:53'), +(12437,'2005-08-18 10:42:43',4036,467,'2005-08-26 11:58:43',2,'2006-02-15 21:30:53'), +(12438,'2005-08-18 10:42:52',2043,186,'2005-08-25 11:42:52',1,'2006-02-15 21:30:53'), +(12439,'2005-08-18 10:44:57',3204,153,'2005-08-22 06:51:57',1,'2006-02-15 21:30:53'), +(12440,'2005-08-18 10:47:35',2779,474,'2005-08-21 11:10:35',2,'2006-02-15 21:30:53'), +(12441,'2005-08-18 10:47:57',2163,561,'2005-08-26 07:11:57',2,'2006-02-15 21:30:53'), +(12442,'2005-08-18 10:50:07',78,270,'2005-08-21 08:06:07',1,'2006-02-15 21:30:53'), +(12443,'2005-08-18 10:50:59',2048,233,'2005-08-26 07:48:59',2,'2006-02-15 21:30:53'), +(12444,'2005-08-18 10:53:12',1639,285,'2005-08-19 13:54:12',2,'2006-02-15 21:30:53'), +(12445,'2005-08-18 10:56:20',3347,350,'2005-08-21 16:46:20',1,'2006-02-15 21:30:53'), +(12446,'2005-08-18 10:56:29',2138,448,'2005-08-23 05:30:29',1,'2006-02-15 21:30:53'), +(12447,'2005-08-18 10:57:01',4084,469,'2005-08-27 06:05:01',1,'2006-02-15 21:30:53'), +(12448,'2005-08-18 10:59:04',3889,72,'2005-08-21 06:45:04',2,'2006-02-15 21:30:53'), +(12449,'2005-08-18 11:03:04',663,285,'2005-08-19 07:34:04',1,'2006-02-15 21:30:53'), +(12450,'2005-08-18 11:04:04',3439,518,'2005-08-22 07:24:04',1,'2006-02-15 21:30:53'), +(12451,'2005-08-18 11:04:42',2780,183,'2005-08-20 08:20:42',1,'2006-02-15 21:30:53'), +(12452,'2005-08-18 11:14:35',4260,358,'2005-08-27 09:09:35',1,'2006-02-15 21:30:53'), +(12453,'2005-08-18 11:17:07',2487,104,'2005-08-25 12:34:07',1,'2006-02-15 21:30:53'), +(12454,'2005-08-18 11:19:02',4219,184,'2005-08-19 12:00:02',2,'2006-02-15 21:30:53'), +(12455,'2005-08-18 11:19:47',4478,46,'2005-08-22 16:08:47',2,'2006-02-15 21:30:53'), +(12456,'2005-08-18 11:21:51',4578,85,'2005-08-21 13:28:51',1,'2006-02-15 21:30:53'), +(12457,'2006-02-14 15:16:03',2145,80,NULL,2,'2006-02-15 21:30:53'), +(12458,'2005-08-18 11:22:53',4579,277,'2005-08-22 14:30:53',2,'2006-02-15 21:30:53'), +(12459,'2005-08-18 11:25:11',421,39,'2005-08-22 06:13:11',1,'2006-02-15 21:30:53'), +(12460,'2005-08-18 11:25:13',3550,419,'2005-08-27 06:27:13',2,'2006-02-15 21:30:53'), +(12461,'2005-08-18 11:28:14',1569,27,'2005-08-21 09:47:14',1,'2006-02-15 21:30:53'), +(12462,'2005-08-18 11:28:55',890,574,'2005-08-20 12:06:55',2,'2006-02-15 21:30:53'), +(12463,'2005-08-18 11:31:34',30,214,'2005-08-23 12:04:34',1,'2006-02-15 21:30:53'), +(12464,'2005-08-18 11:33:34',1954,157,'2005-08-27 14:33:34',1,'2006-02-15 21:30:53'), +(12465,'2005-08-18 11:35:02',1733,486,'2005-08-21 11:52:02',2,'2006-02-15 21:30:53'), +(12466,'2005-08-18 11:36:55',2686,462,'2005-08-23 13:46:55',1,'2006-02-15 21:30:53'), +(12467,'2005-08-18 11:40:09',1414,212,'2005-08-19 13:33:09',2,'2006-02-15 21:30:53'), +(12468,'2005-08-18 11:41:47',1689,80,'2005-08-24 16:43:47',2,'2006-02-15 21:30:53'), +(12469,'2005-08-18 11:53:07',2395,237,'2005-08-24 16:00:07',1,'2006-02-15 21:30:53'), +(12470,'2005-08-18 11:55:42',1290,82,'2005-08-24 08:27:42',2,'2006-02-15 21:30:53'), +(12471,'2005-08-18 11:57:00',242,101,'2005-08-26 13:17:00',2,'2006-02-15 21:30:53'), +(12472,'2005-08-18 11:58:48',4458,297,'2005-08-27 16:37:48',2,'2006-02-15 21:30:53'), +(12473,'2005-08-18 11:59:44',1237,303,'2005-08-21 13:38:44',1,'2006-02-15 21:30:53'), +(12474,'2005-08-18 12:10:03',2240,78,'2005-08-27 17:05:03',1,'2006-02-15 21:30:53'), +(12475,'2005-08-18 12:14:21',3118,401,'2005-08-24 14:43:21',2,'2006-02-15 21:30:53'), +(12476,'2005-08-18 12:22:40',2784,122,'2005-08-20 17:29:40',2,'2006-02-15 21:30:53'), +(12477,'2005-08-18 12:25:01',4516,74,'2005-08-25 17:25:01',2,'2006-02-15 21:30:53'), +(12478,'2005-08-18 12:25:16',4512,42,'2005-08-22 06:27:16',2,'2006-02-15 21:30:53'), +(12479,'2005-08-18 12:26:37',1119,401,'2005-08-21 18:08:37',2,'2006-02-15 21:30:53'), +(12480,'2005-08-18 12:26:43',3339,446,'2005-08-26 13:23:43',1,'2006-02-15 21:30:53'), +(12481,'2005-08-18 12:31:34',2424,218,'2005-08-21 16:08:34',2,'2006-02-15 21:30:53'), +(12482,'2005-08-18 12:37:36',3778,247,'2005-08-26 09:53:36',1,'2006-02-15 21:30:53'), +(12483,'2005-08-18 12:38:37',1805,488,'2005-08-24 13:26:37',1,'2006-02-15 21:30:53'), +(12484,'2005-08-18 12:39:37',3690,300,'2005-08-24 08:47:37',2,'2006-02-15 21:30:53'), +(12485,'2005-08-18 12:41:41',422,345,'2005-08-22 16:38:41',2,'2006-02-15 21:30:53'), +(12486,'2005-08-18 12:42:50',2991,515,'2005-08-27 13:41:50',2,'2006-02-15 21:30:53'), +(12487,'2005-08-18 12:45:24',2554,485,'2005-08-22 12:39:24',1,'2006-02-15 21:30:53'), +(12488,'2005-08-18 12:48:22',3323,29,'2005-08-19 16:19:22',1,'2006-02-15 21:30:53'), +(12489,'2006-02-14 15:16:03',387,60,NULL,2,'2006-02-15 21:30:53'), +(12490,'2005-08-18 12:48:45',1577,187,'2005-08-27 15:53:45',1,'2006-02-15 21:30:53'), +(12491,'2005-08-18 12:48:45',2354,247,'2005-08-22 12:40:45',2,'2006-02-15 21:30:53'), +(12492,'2005-08-18 12:49:04',2839,224,'2005-08-26 17:55:04',1,'2006-02-15 21:30:53'), +(12493,'2005-08-18 12:53:38',3029,487,'2005-08-27 13:15:38',2,'2006-02-15 21:30:53'), +(12494,'2005-08-18 12:53:49',3845,522,'2005-08-26 15:52:49',1,'2006-02-15 21:30:53'), +(12495,'2005-08-18 12:56:37',1225,102,'2005-08-22 06:58:37',1,'2006-02-15 21:30:53'), +(12496,'2005-08-18 12:58:25',456,489,'2005-08-27 18:43:25',2,'2006-02-15 21:30:53'), +(12497,'2005-08-18 12:58:40',824,388,'2005-08-24 08:24:40',1,'2006-02-15 21:30:53'), +(12498,'2005-08-18 13:01:08',1063,408,'2005-08-21 13:12:08',1,'2006-02-15 21:30:53'), +(12499,'2005-08-18 13:05:37',2611,42,'2005-08-19 07:41:37',1,'2006-02-15 21:30:53'), +(12500,'2005-08-18 13:05:51',36,310,'2005-08-19 14:54:51',2,'2006-02-15 21:30:53'), +(12501,'2005-08-18 13:13:13',728,173,'2005-08-23 07:24:13',2,'2006-02-15 21:30:53'), +(12502,'2005-08-18 13:16:31',2153,235,'2005-08-19 17:47:31',1,'2006-02-15 21:30:53'), +(12503,'2005-08-18 13:16:46',3548,379,'2005-08-19 10:24:46',2,'2006-02-15 21:30:53'), +(12504,'2005-08-18 13:17:07',4429,44,'2005-08-24 09:13:07',2,'2006-02-15 21:30:53'), +(12505,'2005-08-18 13:17:30',3741,406,'2005-08-23 18:03:30',1,'2006-02-15 21:30:53'), +(12506,'2006-02-14 15:16:03',1132,114,NULL,2,'2006-02-15 21:30:53'), +(12507,'2005-08-18 13:19:13',199,584,'2005-08-27 11:48:13',2,'2006-02-15 21:30:53'), +(12508,'2005-08-18 13:20:13',1059,29,'2005-08-22 12:55:13',1,'2006-02-15 21:30:53'), +(12509,'2005-08-18 13:21:52',2462,175,'2005-08-20 12:14:52',2,'2006-02-15 21:30:53'), +(12510,'2005-08-18 13:22:25',3051,394,'2005-08-27 17:38:25',2,'2006-02-15 21:30:53'), +(12511,'2005-08-18 13:23:19',919,447,'2005-08-22 11:43:19',2,'2006-02-15 21:30:53'), +(12512,'2005-08-18 13:28:27',3959,148,'2005-08-26 19:08:27',2,'2006-02-15 21:30:53'), +(12513,'2005-08-18 13:31:45',29,527,'2005-08-25 08:26:45',1,'2006-02-15 21:30:53'), +(12514,'2005-08-18 13:33:55',3310,400,'2005-08-23 12:50:55',2,'2006-02-15 21:30:53'), +(12515,'2005-08-18 13:39:26',2703,63,'2005-08-22 09:05:26',1,'2006-02-15 21:30:53'), +(12516,'2005-08-18 13:39:53',1332,302,'2005-08-20 08:33:53',1,'2006-02-15 21:30:53'), +(12517,'2005-08-18 13:40:20',2908,520,'2005-08-27 14:04:20',1,'2006-02-15 21:30:53'), +(12518,'2005-08-18 13:41:32',3860,264,'2005-08-23 13:01:32',1,'2006-02-15 21:30:53'), +(12519,'2005-08-18 13:42:14',2394,203,'2005-08-24 16:44:14',1,'2006-02-15 21:30:53'), +(12520,'2005-08-18 13:42:45',681,52,'2005-08-23 12:54:45',2,'2006-02-15 21:30:53'), +(12521,'2005-08-18 13:43:07',1022,369,'2005-08-21 07:53:07',1,'2006-02-15 21:30:53'), +(12522,'2005-08-18 13:45:40',4435,342,'2005-08-27 17:05:40',1,'2006-02-15 21:30:53'), +(12523,'2005-08-18 13:45:41',888,230,'2005-08-27 10:46:41',1,'2006-02-15 21:30:53'), +(12524,'2006-02-14 15:16:03',857,438,NULL,1,'2006-02-15 21:30:53'), +(12525,'2005-08-18 13:48:31',2357,96,'2005-08-23 13:04:31',2,'2006-02-15 21:30:53'), +(12526,'2005-08-18 13:48:43',3541,54,'2005-08-19 10:05:43',1,'2006-02-15 21:30:53'), +(12527,'2005-08-18 13:48:46',2536,459,'2005-08-26 13:31:46',2,'2006-02-15 21:30:53'), +(12528,'2005-08-18 13:52:41',3381,398,'2005-08-27 09:09:41',2,'2006-02-15 21:30:53'), +(12529,'2005-08-18 13:53:36',1956,382,'2005-08-19 18:20:36',2,'2006-02-15 21:30:53'), +(12530,'2005-08-18 13:54:48',1054,521,'2005-08-26 08:58:48',2,'2006-02-15 21:30:53'), +(12531,'2005-08-18 13:57:50',2771,27,'2005-08-22 09:46:50',2,'2006-02-15 21:30:53'), +(12532,'2005-08-18 13:57:58',114,184,'2005-08-24 14:58:58',2,'2006-02-15 21:30:53'), +(12533,'2005-08-18 14:01:40',795,331,'2005-08-20 15:32:40',1,'2006-02-15 21:30:53'), +(12534,'2005-08-18 14:04:41',995,187,'2005-08-25 16:57:41',1,'2006-02-15 21:30:53'), +(12535,'2005-08-18 14:05:22',2944,516,'2005-08-25 16:35:22',1,'2006-02-15 21:30:53'), +(12536,'2005-08-18 14:06:06',2343,373,'2005-08-25 14:21:06',1,'2006-02-15 21:30:53'), +(12537,'2005-08-18 14:06:39',57,56,'2005-08-25 09:36:39',2,'2006-02-15 21:30:53'), +(12538,'2005-08-18 14:09:09',1373,118,'2005-08-23 19:12:09',1,'2006-02-15 21:30:53'), +(12539,'2005-08-18 14:10:09',3259,136,'2005-08-19 19:44:09',2,'2006-02-15 21:30:53'), +(12540,'2005-08-18 14:17:30',2826,304,'2005-08-26 15:33:30',2,'2006-02-15 21:30:53'), +(12541,'2005-08-18 14:18:30',4357,584,'2005-08-26 10:24:30',1,'2006-02-15 21:30:53'), +(12542,'2005-08-18 14:21:11',1920,230,'2005-08-20 16:06:11',2,'2006-02-15 21:30:53'), +(12543,'2005-08-18 14:23:55',330,324,'2005-08-20 12:42:55',1,'2006-02-15 21:30:53'), +(12544,'2005-08-18 14:25:51',3783,354,'2005-08-26 18:42:51',1,'2006-02-15 21:30:53'), +(12545,'2005-08-18 14:28:00',1988,168,'2005-08-26 14:10:00',1,'2006-02-15 21:30:53'), +(12546,'2005-08-18 14:29:37',610,30,'2005-08-26 09:47:37',1,'2006-02-15 21:30:53'), +(12547,'2005-08-18 14:29:39',3046,591,'2005-08-22 16:52:39',2,'2006-02-15 21:30:53'), +(12548,'2005-08-18 14:35:26',750,426,'2005-08-27 18:58:26',1,'2006-02-15 21:30:53'), +(12549,'2005-08-18 14:38:07',1010,377,'2005-08-21 08:45:07',1,'2006-02-15 21:30:53'), +(12550,'2005-08-18 14:40:38',4267,138,'2005-08-19 13:33:38',2,'2006-02-15 21:30:53'), +(12551,'2005-08-18 14:46:26',2195,15,'2005-08-19 16:59:26',2,'2006-02-15 21:30:53'), +(12552,'2005-08-18 14:46:34',4303,413,'2005-08-20 11:02:34',2,'2006-02-15 21:30:53'), +(12553,'2005-08-18 14:46:54',2893,454,'2005-08-22 13:41:54',1,'2006-02-15 21:30:53'), +(12554,'2005-08-18 14:47:28',715,404,'2005-08-25 14:34:28',2,'2006-02-15 21:30:53'), +(12555,'2005-08-18 14:49:22',4434,557,'2005-08-26 14:11:22',2,'2006-02-15 21:30:53'), +(12556,'2005-08-18 14:49:55',1984,3,'2005-08-24 15:20:55',2,'2006-02-15 21:30:53'), +(12557,'2005-08-18 14:51:03',313,364,'2005-08-19 13:30:03',2,'2006-02-15 21:30:53'), +(12558,'2005-08-18 14:52:35',167,289,'2005-08-26 09:45:35',2,'2006-02-15 21:30:53'), +(12559,'2005-08-18 14:53:58',39,513,'2005-08-25 20:22:58',1,'2006-02-15 21:30:53'), +(12560,'2005-08-18 14:54:19',829,596,'2005-08-27 13:39:19',1,'2006-02-15 21:30:53'), +(12561,'2005-08-18 14:58:51',812,392,'2005-08-20 10:53:51',1,'2006-02-15 21:30:53'), +(12562,'2005-08-18 15:00:03',529,212,'2005-08-23 12:55:03',2,'2006-02-15 21:30:53'), +(12563,'2005-08-18 15:08:29',2552,393,'2005-08-27 15:15:29',1,'2006-02-15 21:30:53'), +(12564,'2005-08-18 15:11:35',263,348,'2005-08-22 11:45:35',2,'2006-02-15 21:30:53'), +(12565,'2005-08-18 15:12:17',1284,211,'2005-08-19 12:26:17',2,'2006-02-15 21:30:53'), +(12566,'2005-08-18 15:13:04',1684,407,'2005-08-21 19:29:04',2,'2006-02-15 21:30:53'), +(12567,'2005-08-18 15:14:36',2931,308,'2005-08-26 18:56:36',1,'2006-02-15 21:30:53'), +(12568,'2005-08-18 15:15:44',2654,569,'2005-08-22 19:32:44',2,'2006-02-15 21:30:53'), +(12569,'2005-08-18 15:20:46',1009,29,'2005-08-24 12:38:46',2,'2006-02-15 21:30:53'), +(12570,'2005-08-18 15:23:31',3973,211,'2005-08-22 09:59:31',2,'2006-02-15 21:30:53'), +(12571,'2005-08-18 15:31:18',1013,591,'2005-08-23 15:20:18',2,'2006-02-15 21:30:53'), +(12572,'2005-08-18 15:32:54',1366,253,'2005-08-21 10:30:54',1,'2006-02-15 21:30:53'), +(12573,'2005-08-18 15:32:57',1416,182,'2005-08-21 18:29:57',2,'2006-02-15 21:30:53'), +(12574,'2006-02-14 15:16:03',177,317,NULL,2,'2006-02-15 21:30:53'), +(12575,'2005-08-18 15:37:42',3441,117,'2005-08-25 19:17:42',1,'2006-02-15 21:30:53'), +(12576,'2005-08-18 15:38:31',329,119,'2005-08-22 21:29:31',2,'2006-02-15 21:30:53'), +(12577,'2005-08-18 15:39:46',4134,16,'2005-08-25 18:05:46',2,'2006-02-15 21:30:53'), +(12578,'2005-08-18 15:47:11',930,514,'2005-08-21 10:55:11',1,'2006-02-15 21:30:53'), +(12579,'2005-08-18 15:47:49',3021,547,'2005-08-20 18:12:49',2,'2006-02-15 21:30:53'), +(12580,'2005-08-18 15:49:08',1197,53,'2005-08-24 11:03:08',2,'2006-02-15 21:30:53'), +(12581,'2005-08-18 15:49:15',4309,70,'2005-08-23 20:18:15',1,'2006-02-15 21:30:53'), +(12582,'2005-08-18 15:51:12',4467,462,'2005-08-20 12:05:12',1,'2006-02-15 21:30:53'), +(12583,'2005-08-18 15:51:36',3090,108,'2005-08-20 18:47:36',2,'2006-02-15 21:30:53'), +(12584,'2005-08-18 15:51:36',4487,371,'2005-08-25 19:21:36',1,'2006-02-15 21:30:53'), +(12585,'2005-08-18 15:52:12',773,110,'2005-08-22 21:00:12',1,'2006-02-15 21:30:53'), +(12586,'2005-08-18 15:54:39',4245,460,'2005-08-21 19:29:39',1,'2006-02-15 21:30:53'), +(12587,'2005-08-18 16:03:13',3081,499,'2005-08-25 19:30:13',1,'2006-02-15 21:30:53'), +(12588,'2005-08-18 16:04:45',694,415,'2005-08-23 20:30:45',1,'2006-02-15 21:30:53'), +(12589,'2005-08-18 16:06:31',956,275,'2005-08-27 17:20:31',1,'2006-02-15 21:30:53'), +(12590,'2005-08-18 16:11:35',2624,308,'2005-08-23 10:35:35',1,'2006-02-15 21:30:53'), +(12591,'2005-08-18 16:16:41',723,546,'2005-08-24 10:29:41',2,'2006-02-15 21:30:53'), +(12592,'2005-08-18 16:17:50',1618,305,'2005-08-25 20:20:50',1,'2006-02-15 21:30:53'), +(12593,'2005-08-18 16:17:54',4092,72,'2005-08-21 18:02:54',2,'2006-02-15 21:30:53'), +(12594,'2005-08-18 16:24:24',4421,198,'2005-08-25 15:45:24',1,'2006-02-15 21:30:53'), +(12595,'2005-08-18 16:27:08',1662,286,'2005-08-19 14:53:08',1,'2006-02-15 21:30:53'), +(12596,'2005-08-18 16:29:35',3662,378,'2005-08-24 16:48:35',1,'2006-02-15 21:30:53'), +(12597,'2005-08-18 16:34:02',3804,474,'2005-08-25 17:30:02',2,'2006-02-15 21:30:53'), +(12598,'2005-08-18 16:34:03',3159,340,'2005-08-22 16:44:03',1,'2006-02-15 21:30:53'), +(12599,'2005-08-18 16:42:45',2032,34,'2005-08-23 18:27:45',2,'2006-02-15 21:30:53'), +(12600,'2005-08-18 16:44:24',1475,171,'2005-08-25 17:28:24',1,'2006-02-15 21:30:53'), +(12601,'2005-08-18 16:47:52',3099,598,'2005-08-24 11:05:52',1,'2006-02-15 21:30:53'), +(12602,'2005-08-18 16:49:50',2001,533,'2005-08-21 11:13:50',2,'2006-02-15 21:30:53'), +(12603,'2005-08-18 16:56:20',2769,119,'2005-08-25 11:50:20',2,'2006-02-15 21:30:53'), +(12604,'2005-08-18 16:58:48',4127,12,'2005-08-19 19:36:48',1,'2006-02-15 21:30:53'), +(12605,'2005-08-18 16:59:37',1359,496,'2005-08-20 18:09:37',1,'2006-02-15 21:30:53'), +(12606,'2005-08-18 17:02:21',359,275,'2005-08-24 22:38:21',1,'2006-02-15 21:30:53'), +(12607,'2005-08-18 17:03:49',2130,526,'2005-08-19 18:29:49',1,'2006-02-15 21:30:53'), +(12608,'2005-08-18 17:05:15',624,366,'2005-08-23 17:00:15',2,'2006-02-15 21:30:53'), +(12609,'2005-08-18 17:06:22',2327,486,'2005-08-20 21:30:22',1,'2006-02-15 21:30:53'), +(12610,'2006-02-14 15:16:03',3181,269,NULL,1,'2006-02-15 21:30:53'), +(12611,'2005-08-18 17:09:42',1925,359,'2005-08-24 11:57:42',2,'2006-02-15 21:30:53'), +(12612,'2005-08-18 17:10:05',1035,129,'2005-08-26 15:55:05',2,'2006-02-15 21:30:53'), +(12613,'2005-08-18 17:16:01',3877,8,'2005-08-23 18:40:01',2,'2006-02-15 21:30:53'), +(12614,'2005-08-18 17:16:03',2233,60,'2005-08-26 16:56:03',2,'2006-02-15 21:30:53'), +(12615,'2005-08-18 17:16:07',2191,29,'2005-08-27 12:57:07',1,'2006-02-15 21:30:53'), +(12616,'2005-08-18 17:22:41',2952,476,'2005-08-25 18:52:41',2,'2006-02-15 21:30:53'), +(12617,'2005-08-18 17:22:48',3573,564,'2005-08-24 17:40:48',2,'2006-02-15 21:30:53'), +(12618,'2005-08-18 17:24:02',302,117,'2005-08-19 15:22:02',1,'2006-02-15 21:30:53'), +(12619,'2005-08-18 17:24:15',980,592,'2005-08-21 15:56:15',1,'2006-02-15 21:30:53'), +(12620,'2005-08-18 17:26:38',2663,221,'2005-08-25 13:24:38',1,'2006-02-15 21:30:53'), +(12621,'2005-08-18 17:31:36',4566,439,'2005-08-24 16:43:36',2,'2006-02-15 21:30:53'), +(12622,'2005-08-18 17:34:11',278,529,'2005-08-24 16:10:11',1,'2006-02-15 21:30:53'), +(12623,'2005-08-18 17:34:19',3670,177,'2005-08-20 21:30:19',1,'2006-02-15 21:30:53'), +(12624,'2005-08-18 17:35:00',1135,434,'2005-08-27 12:18:00',2,'2006-02-15 21:30:53'), +(12625,'2005-08-18 17:36:19',2645,108,'2005-08-23 11:42:19',1,'2006-02-15 21:30:53'), +(12626,'2005-08-18 17:36:45',4230,361,'2005-08-26 17:12:45',1,'2006-02-15 21:30:53'), +(12627,'2005-08-18 17:37:11',3760,150,'2005-08-19 14:59:11',2,'2006-02-15 21:30:53'), +(12628,'2005-08-18 17:40:25',3210,520,'2005-08-25 13:39:25',1,'2006-02-15 21:30:53'), +(12629,'2005-08-18 17:40:33',1705,459,'2005-08-26 21:09:33',1,'2006-02-15 21:30:53'), +(12630,'2005-08-18 17:49:28',1457,452,'2005-08-24 12:23:28',1,'2006-02-15 21:30:53'), +(12631,'2005-08-18 17:52:51',2782,339,'2005-08-25 14:40:51',2,'2006-02-15 21:30:53'), +(12632,'2005-08-18 17:54:21',827,381,'2005-08-22 18:58:21',1,'2006-02-15 21:30:53'), +(12633,'2005-08-18 17:55:38',4341,469,'2005-08-23 17:19:38',2,'2006-02-15 21:30:53'), +(12634,'2005-08-18 17:58:14',1037,549,'2005-08-19 21:08:14',2,'2006-02-15 21:30:53'), +(12635,'2005-08-18 18:00:23',331,15,'2005-08-23 16:40:23',2,'2006-02-15 21:30:53'), +(12636,'2005-08-18 18:00:29',1645,380,'2005-08-26 20:08:29',2,'2006-02-15 21:30:53'), +(12637,'2005-08-18 18:06:53',4005,145,'2005-08-19 17:36:53',1,'2006-02-15 21:30:53'), +(12638,'2005-08-18 18:11:39',2849,172,'2005-08-25 21:54:39',2,'2006-02-15 21:30:53'), +(12639,'2005-08-18 18:13:05',562,500,'2005-08-27 16:00:05',2,'2006-02-15 21:30:53'), +(12640,'2005-08-18 18:14:49',1715,544,'2005-08-24 21:25:49',1,'2006-02-15 21:30:53'), +(12641,'2005-08-18 18:18:08',776,467,'2005-08-19 23:17:08',1,'2006-02-15 21:30:53'), +(12642,'2005-08-18 18:19:16',2080,167,'2005-08-20 17:30:16',2,'2006-02-15 21:30:53'), +(12643,'2005-08-18 18:21:06',2245,165,'2005-08-24 14:26:06',1,'2006-02-15 21:30:53'), +(12644,'2005-08-18 18:22:27',1511,300,'2005-08-26 00:01:27',1,'2006-02-15 21:30:53'), +(12645,'2006-02-14 15:16:03',1658,457,NULL,1,'2006-02-15 21:30:53'), +(12646,'2005-08-18 18:25:06',3103,388,'2005-08-24 18:45:06',1,'2006-02-15 21:30:53'), +(12647,'2005-08-18 18:29:51',323,520,'2005-08-27 22:51:51',1,'2006-02-15 21:30:53'), +(12648,'2005-08-18 18:30:21',3545,519,'2005-08-25 19:17:21',1,'2006-02-15 21:30:53'), +(12649,'2005-08-18 18:31:47',3201,530,'2005-08-22 21:07:47',2,'2006-02-15 21:30:53'), +(12650,'2005-08-18 18:33:20',3237,276,'2005-08-21 17:45:20',2,'2006-02-15 21:30:53'), +(12651,'2005-08-18 18:36:16',8,34,'2005-08-22 22:01:16',1,'2006-02-15 21:30:53'), +(12652,'2005-08-18 18:48:58',2118,9,'2005-08-21 14:15:58',1,'2006-02-15 21:30:53'), +(12653,'2005-08-18 18:53:17',3353,78,'2005-08-26 14:08:17',1,'2006-02-15 21:30:53'), +(12654,'2005-08-18 18:56:40',2217,438,'2005-08-20 17:51:40',2,'2006-02-15 21:30:53'), +(12655,'2005-08-18 18:57:44',859,533,'2005-08-27 22:40:44',2,'2006-02-15 21:30:53'), +(12656,'2005-08-18 18:58:35',3981,286,'2005-08-21 00:41:35',1,'2006-02-15 21:30:53'), +(12657,'2005-08-18 19:02:16',3621,100,'2005-08-21 14:59:16',1,'2006-02-15 21:30:53'), +(12658,'2005-08-18 19:05:42',4320,193,'2005-08-19 19:08:42',1,'2006-02-15 21:30:53'), +(12659,'2005-08-18 19:05:49',336,329,'2005-08-24 22:12:49',2,'2006-02-15 21:30:53'), +(12660,'2005-08-18 19:07:23',414,21,'2005-08-27 17:20:23',2,'2006-02-15 21:30:53'), +(12661,'2005-08-18 19:10:10',1547,333,'2005-08-22 20:30:10',1,'2006-02-15 21:30:53'), +(12662,'2005-08-18 19:10:41',1412,75,'2005-08-23 16:59:41',1,'2006-02-15 21:30:53'), +(12663,'2005-08-18 19:10:52',1163,375,'2005-08-19 15:46:52',1,'2006-02-15 21:30:53'), +(12664,'2005-08-18 19:10:54',2732,577,'2005-08-25 19:19:54',1,'2006-02-15 21:30:53'), +(12665,'2006-02-14 15:16:03',1701,410,NULL,2,'2006-02-15 21:30:53'), +(12666,'2005-08-18 19:11:41',4156,251,'2005-08-21 18:04:41',2,'2006-02-15 21:30:53'), +(12667,'2005-08-18 19:11:45',104,545,'2005-08-27 13:34:45',2,'2006-02-15 21:30:53'), +(12668,'2005-08-18 19:16:47',1986,14,'2005-08-19 16:31:47',1,'2006-02-15 21:30:53'), +(12669,'2005-08-18 19:17:47',4530,433,'2005-08-24 14:55:47',1,'2006-02-15 21:30:53'), +(12670,'2005-08-18 19:17:58',1716,580,'2005-08-23 20:54:58',2,'2006-02-15 21:30:53'), +(12671,'2005-08-18 19:19:59',1734,577,'2005-08-23 17:53:59',2,'2006-02-15 21:30:53'), +(12672,'2006-02-14 15:16:03',1722,228,NULL,1,'2006-02-15 21:30:53'), +(12673,'2005-08-18 19:21:56',4204,535,'2005-08-26 22:44:56',2,'2006-02-15 21:30:53'), +(12674,'2005-08-18 19:24:56',636,185,'2005-08-26 22:16:56',2,'2006-02-15 21:30:53'), +(12675,'2005-08-18 19:34:02',569,140,'2005-08-23 13:36:02',2,'2006-02-15 21:30:53'), +(12676,'2005-08-18 19:34:40',2581,393,'2005-08-20 18:03:40',2,'2006-02-15 21:30:53'), +(12677,'2005-08-18 19:36:05',1311,334,'2005-08-22 21:23:05',2,'2006-02-15 21:30:53'), +(12678,'2005-08-18 19:41:27',2504,181,'2005-08-23 15:14:27',2,'2006-02-15 21:30:53'), +(12679,'2005-08-18 19:42:11',1535,463,'2005-08-25 01:01:11',1,'2006-02-15 21:30:53'), +(12680,'2005-08-18 19:43:46',833,259,'2005-08-27 00:08:46',2,'2006-02-15 21:30:53'), +(12681,'2005-08-18 19:48:06',1570,518,'2005-08-23 15:05:06',2,'2006-02-15 21:30:53'), +(12682,'2006-02-14 15:16:03',1148,245,NULL,2,'2006-02-15 21:30:53'), +(12683,'2005-08-18 19:50:43',1802,166,'2005-08-26 00:47:43',1,'2006-02-15 21:30:53'), +(12684,'2005-08-18 19:51:27',978,196,'2005-08-19 15:56:27',1,'2006-02-15 21:30:53'), +(12685,'2005-08-18 19:51:29',4283,114,'2005-08-27 14:58:29',2,'2006-02-15 21:30:53'), +(12686,'2005-08-18 19:55:09',501,385,'2005-08-26 14:17:09',1,'2006-02-15 21:30:53'), +(12687,'2005-08-18 19:57:39',3092,285,'2005-08-27 01:36:39',2,'2006-02-15 21:30:53'), +(12688,'2005-08-18 19:59:54',2315,65,'2005-08-26 18:52:54',2,'2006-02-15 21:30:53'), +(12689,'2005-08-18 20:06:34',1066,296,'2005-08-22 20:11:34',2,'2006-02-15 21:30:53'), +(12690,'2005-08-18 20:06:57',3574,361,'2005-08-24 20:54:57',2,'2006-02-15 21:30:53'), +(12691,'2005-08-18 20:07:46',3744,534,'2005-08-26 18:49:46',2,'2006-02-15 21:30:53'), +(12692,'2005-08-18 20:09:19',2781,273,'2005-08-21 00:14:19',1,'2006-02-15 21:30:53'), +(12693,'2005-08-18 20:10:19',1543,584,'2005-08-25 21:11:19',1,'2006-02-15 21:30:53'), +(12694,'2005-08-18 20:10:39',1741,268,'2005-08-25 20:47:39',1,'2006-02-15 21:30:53'), +(12695,'2005-08-18 20:11:35',446,483,'2005-08-25 18:29:35',1,'2006-02-15 21:30:53'), +(12696,'2005-08-18 20:13:08',3989,374,'2005-08-19 18:02:08',2,'2006-02-15 21:30:53'), +(12697,'2005-08-18 20:14:56',2774,152,'2005-08-23 21:54:56',1,'2006-02-15 21:30:53'), +(12698,'2006-02-14 15:16:03',3657,497,NULL,1,'2006-02-15 21:30:53'), +(12699,'2005-08-18 20:20:59',3695,66,'2005-08-22 17:00:59',1,'2006-02-15 21:30:53'), +(12700,'2005-08-18 20:24:46',540,397,'2005-08-23 21:50:46',1,'2006-02-15 21:30:53'), +(12701,'2005-08-18 20:26:47',2337,489,'2005-08-26 23:36:47',2,'2006-02-15 21:30:53'), +(12702,'2005-08-18 20:30:33',1884,474,'2005-08-27 01:22:33',2,'2006-02-15 21:30:53'), +(12703,'2005-08-18 20:37:13',1278,453,'2005-08-26 16:13:13',1,'2006-02-15 21:30:53'), +(12704,'2005-08-18 20:43:00',51,93,'2005-08-21 22:28:00',2,'2006-02-15 21:30:53'), +(12705,'2005-08-18 20:44:14',2342,517,'2005-08-23 20:46:14',1,'2006-02-15 21:30:53'), +(12706,'2005-08-18 20:44:34',1079,170,'2005-08-26 21:47:34',1,'2006-02-15 21:30:53'), +(12707,'2005-08-18 20:52:02',1565,426,'2005-08-25 19:03:02',2,'2006-02-15 21:30:53'), +(12708,'2005-08-18 20:59:17',3448,28,'2005-08-24 22:40:17',1,'2006-02-15 21:30:53'), +(12709,'2005-08-18 20:59:51',3878,476,'2005-08-26 01:21:51',2,'2006-02-15 21:30:53'), +(12710,'2005-08-18 21:02:50',3011,310,'2005-08-26 15:07:50',2,'2006-02-15 21:30:53'), +(12711,'2005-08-18 21:03:32',2530,122,'2005-08-26 17:31:32',1,'2006-02-15 21:30:53'), +(12712,'2005-08-18 21:04:13',2628,444,'2005-08-25 18:15:13',2,'2006-02-15 21:30:53'), +(12713,'2005-08-18 21:07:28',1505,56,'2005-08-24 17:46:28',1,'2006-02-15 21:30:53'), +(12714,'2005-08-18 21:08:01',868,372,'2005-08-27 17:09:01',2,'2006-02-15 21:30:53'), +(12715,'2005-08-18 21:09:38',3768,266,'2005-08-21 20:25:38',1,'2006-02-15 21:30:53'), +(12716,'2006-02-14 15:16:03',858,570,NULL,2,'2006-02-15 21:30:53'), +(12717,'2005-08-18 21:15:40',3551,167,'2005-08-20 00:59:40',2,'2006-02-15 21:30:53'), +(12718,'2005-08-18 21:21:44',3221,176,'2005-08-20 01:01:44',1,'2006-02-15 21:30:53'), +(12719,'2006-02-14 15:16:03',1094,87,NULL,2,'2006-02-15 21:30:53'), +(12720,'2005-08-18 21:28:42',2676,419,'2005-08-25 18:02:42',1,'2006-02-15 21:30:53'), +(12721,'2005-08-18 21:30:12',1045,239,'2005-08-22 22:45:12',1,'2006-02-15 21:30:53'), +(12722,'2005-08-18 21:33:53',913,416,'2005-08-27 23:47:53',2,'2006-02-15 21:30:53'), +(12723,'2005-08-18 21:34:16',4167,430,'2005-08-22 22:37:16',1,'2006-02-15 21:30:53'), +(12724,'2005-08-18 21:37:20',2224,242,'2005-08-27 21:56:20',2,'2006-02-15 21:30:53'), +(12725,'2005-08-18 21:43:09',4071,51,'2005-08-23 18:50:09',1,'2006-02-15 21:30:53'), +(12726,'2005-08-18 21:44:46',20,397,'2005-08-19 21:58:46',2,'2006-02-15 21:30:53'), +(12727,'2005-08-18 21:45:15',15,178,'2005-08-24 15:52:15',1,'2006-02-15 21:30:53'), +(12728,'2005-08-18 21:47:48',3156,129,'2005-08-25 16:13:48',1,'2006-02-15 21:30:53'), +(12729,'2005-08-18 21:52:59',3711,424,'2005-08-21 00:02:59',1,'2006-02-15 21:30:53'), +(12730,'2005-08-18 21:55:01',75,7,'2005-08-22 01:23:01',1,'2006-02-15 21:30:53'), +(12731,'2005-08-18 21:55:38',1719,128,'2005-08-23 20:30:38',1,'2006-02-15 21:30:53'), +(12732,'2005-08-18 21:57:50',3307,535,'2005-08-19 18:28:50',2,'2006-02-15 21:30:53'), +(12733,'2005-08-18 21:59:00',3243,144,'2005-08-24 02:25:00',1,'2006-02-15 21:30:53'), +(12734,'2005-08-18 22:04:52',3619,121,'2005-08-25 00:34:52',1,'2006-02-15 21:30:53'), +(12735,'2005-08-18 22:04:54',3679,383,'2005-08-23 21:19:54',2,'2006-02-15 21:30:53'), +(12736,'2006-02-14 15:16:03',3591,244,NULL,2,'2006-02-15 21:30:53'), +(12737,'2005-08-18 22:11:37',736,204,'2005-08-26 04:08:37',1,'2006-02-15 21:30:53'), +(12738,'2005-08-18 22:11:47',4313,589,'2005-08-27 17:55:47',2,'2006-02-15 21:30:53'), +(12739,'2005-08-18 22:15:18',4129,292,'2005-08-27 00:37:18',2,'2006-02-15 21:30:53'), +(12740,'2005-08-18 22:17:04',1157,330,'2005-08-23 23:42:04',1,'2006-02-15 21:30:53'), +(12741,'2005-08-18 22:17:05',2084,435,'2005-08-25 20:07:05',2,'2006-02-15 21:30:53'), +(12742,'2005-08-18 22:22:03',1742,68,'2005-08-22 04:01:03',1,'2006-02-15 21:30:53'), +(12743,'2005-08-18 22:22:31',2630,565,'2005-08-27 00:31:31',1,'2006-02-15 21:30:53'), +(12744,'2005-08-18 22:22:36',3815,593,'2005-08-24 00:26:36',1,'2006-02-15 21:30:53'), +(12745,'2005-08-18 22:22:45',262,24,'2005-08-20 01:44:45',2,'2006-02-15 21:30:53'), +(12746,'2006-02-14 15:16:03',1012,211,NULL,1,'2006-02-15 21:30:53'), +(12747,'2005-08-18 22:28:22',4075,549,'2005-08-22 22:25:22',2,'2006-02-15 21:30:53'), +(12748,'2005-08-18 22:29:05',3249,373,'2005-08-24 18:25:05',2,'2006-02-15 21:30:53'), +(12749,'2005-08-18 22:31:21',828,388,'2005-08-20 22:53:21',1,'2006-02-15 21:30:53'), +(12750,'2005-08-18 22:32:39',3717,535,'2005-08-26 01:54:39',1,'2006-02-15 21:30:53'), +(12751,'2005-08-18 22:33:22',2791,352,'2005-08-20 20:28:22',2,'2006-02-15 21:30:53'), +(12752,'2005-08-18 22:33:36',3595,514,'2005-08-27 23:55:36',1,'2006-02-15 21:30:53'), +(12753,'2005-08-18 22:37:39',1494,470,'2005-08-27 00:21:39',2,'2006-02-15 21:30:53'), +(12754,'2005-08-18 22:37:41',4154,134,'2005-08-27 20:17:41',2,'2006-02-15 21:30:53'), +(12755,'2005-08-18 22:38:47',105,439,'2005-08-22 23:58:47',1,'2006-02-15 21:30:53'), +(12756,'2005-08-18 22:52:13',1840,89,'2005-08-21 17:22:13',1,'2006-02-15 21:30:53'), +(12757,'2005-08-18 22:57:45',1095,147,'2005-08-21 22:43:45',1,'2006-02-15 21:30:53'), +(12758,'2005-08-18 22:58:34',2279,30,'2005-08-22 23:33:34',1,'2006-02-15 21:30:53'), +(12759,'2006-02-14 15:16:03',4193,354,NULL,2,'2006-02-15 21:30:53'), +(12760,'2005-08-18 23:03:19',4188,363,'2005-08-24 17:53:19',1,'2006-02-15 21:30:53'), +(12761,'2005-08-18 23:05:22',2684,364,'2005-08-22 01:08:22',2,'2006-02-15 21:30:53'), +(12762,'2005-08-18 23:06:54',3909,502,'2005-08-21 18:30:54',1,'2006-02-15 21:30:53'), +(12763,'2005-08-18 23:07:01',393,472,'2005-08-21 18:45:01',1,'2006-02-15 21:30:53'), +(12764,'2005-08-18 23:14:15',26,183,'2005-08-22 20:23:15',1,'2006-02-15 21:30:53'), +(12765,'2005-08-18 23:21:50',2244,298,'2005-08-28 04:42:50',2,'2006-02-15 21:30:53'), +(12766,'2005-08-18 23:25:20',3737,50,'2005-08-27 04:43:20',1,'2006-02-15 21:30:53'), +(12767,'2005-08-18 23:25:49',3351,432,'2005-08-28 02:40:49',2,'2006-02-15 21:30:53'), +(12768,'2005-08-18 23:26:11',1993,458,'2005-08-19 20:31:11',2,'2006-02-15 21:30:53'), +(12769,'2005-08-18 23:26:40',926,504,'2005-08-25 03:03:40',1,'2006-02-15 21:30:53'), +(12770,'2005-08-18 23:29:00',1654,575,'2005-08-26 20:57:00',2,'2006-02-15 21:30:53'), +(12771,'2005-08-18 23:29:23',3076,484,'2005-08-22 17:31:23',2,'2006-02-15 21:30:53'), +(12772,'2005-08-18 23:29:25',1179,397,'2005-08-23 20:32:25',1,'2006-02-15 21:30:53'), +(12773,'2005-08-18 23:32:19',4390,360,'2005-08-27 04:40:19',1,'2006-02-15 21:30:53'), +(12774,'2005-08-18 23:34:22',3601,21,'2005-08-28 05:00:22',2,'2006-02-15 21:30:53'), +(12775,'2005-08-18 23:35:56',4374,54,'2005-08-26 18:37:56',1,'2006-02-15 21:30:53'), +(12776,'2005-08-18 23:37:33',2345,55,'2005-08-23 03:07:33',1,'2006-02-15 21:30:53'), +(12777,'2005-08-18 23:39:22',3467,130,'2005-08-27 20:28:22',1,'2006-02-15 21:30:53'), +(12778,'2005-08-18 23:40:23',3626,290,'2005-08-19 18:14:23',2,'2006-02-15 21:30:53'), +(12779,'2005-08-18 23:44:00',1814,325,'2005-08-26 05:27:00',2,'2006-02-15 21:30:53'), +(12780,'2005-08-18 23:48:16',54,373,'2005-08-20 18:13:16',2,'2006-02-15 21:30:53'), +(12781,'2005-08-18 23:50:24',1187,168,'2005-08-21 02:31:24',1,'2006-02-15 21:30:53'), +(12782,'2005-08-18 23:56:23',1454,495,'2005-08-25 18:47:23',1,'2006-02-15 21:30:53'), +(12783,'2005-08-19 00:01:14',1109,503,'2005-08-21 22:02:14',2,'2006-02-15 21:30:53'), +(12784,'2005-08-19 00:02:46',447,513,'2005-08-20 04:39:46',1,'2006-02-15 21:30:53'), +(12785,'2005-08-19 00:05:49',4190,145,'2005-08-21 04:39:49',2,'2006-02-15 21:30:53'), +(12786,'2006-02-14 15:16:03',97,512,NULL,1,'2006-02-15 21:30:53'), +(12787,'2005-08-19 00:07:58',2023,278,'2005-08-24 00:42:58',2,'2006-02-15 21:30:53'), +(12788,'2005-08-19 00:15:09',644,90,'2005-08-27 21:54:09',1,'2006-02-15 21:30:53'), +(12789,'2005-08-19 00:16:19',2412,557,'2005-08-25 00:18:19',2,'2006-02-15 21:30:53'), +(12790,'2005-08-19 00:16:54',1281,44,'2005-08-26 02:00:54',1,'2006-02-15 21:30:53'), +(12791,'2005-08-19 00:17:09',3594,573,'2005-08-22 23:46:09',1,'2006-02-15 21:30:53'), +(12792,'2006-02-14 15:16:03',1435,405,NULL,2,'2006-02-15 21:30:53'), +(12793,'2005-08-19 00:20:36',1195,403,'2005-08-28 02:43:36',1,'2006-02-15 21:30:53'), +(12794,'2005-08-19 00:20:37',1586,336,'2005-08-26 01:48:37',1,'2006-02-15 21:30:53'), +(12795,'2005-08-19 00:21:52',2745,360,'2005-08-22 22:13:52',2,'2006-02-15 21:30:53'), +(12796,'2005-08-19 00:22:24',1285,368,'2005-08-19 22:53:24',2,'2006-02-15 21:30:53'), +(12797,'2005-08-19 00:24:08',1595,5,'2005-08-21 22:53:08',2,'2006-02-15 21:30:53'), +(12798,'2005-08-19 00:24:33',4244,534,'2005-08-21 23:01:33',2,'2006-02-15 21:30:53'), +(12799,'2005-08-19 00:27:01',3885,197,'2005-08-22 03:30:01',2,'2006-02-15 21:30:53'), +(12800,'2005-08-19 00:27:11',257,545,'2005-08-22 01:08:11',1,'2006-02-15 21:30:53'), +(12801,'2005-08-19 00:27:19',960,202,'2005-08-26 03:10:19',1,'2006-02-15 21:30:53'), +(12802,'2005-08-19 00:27:41',2461,462,'2005-08-28 03:24:41',1,'2006-02-15 21:30:53'), +(12803,'2005-08-19 00:28:21',1058,390,'2005-08-23 02:02:21',1,'2006-02-15 21:30:53'), +(12804,'2005-08-19 00:33:15',147,365,'2005-08-28 02:16:15',2,'2006-02-15 21:30:53'), +(12805,'2005-08-19 00:36:34',2964,345,'2005-08-26 20:38:34',1,'2006-02-15 21:30:53'), +(12806,'2005-08-19 00:37:26',4488,423,'2005-08-23 18:49:26',2,'2006-02-15 21:30:53'), +(12807,'2005-08-19 00:38:46',2323,513,'2005-08-28 03:37:46',2,'2006-02-15 21:30:53'), +(12808,'2005-08-19 00:40:41',3920,55,'2005-08-21 06:39:41',2,'2006-02-15 21:30:53'), +(12809,'2005-08-19 00:42:24',2005,22,'2005-08-23 06:06:24',1,'2006-02-15 21:30:53'), +(12810,'2005-08-19 00:44:10',1340,250,'2005-08-22 22:30:10',2,'2006-02-15 21:30:53'), +(12811,'2005-08-19 00:51:28',641,54,'2005-08-24 01:57:28',2,'2006-02-15 21:30:53'), +(12812,'2005-08-19 00:54:02',4024,450,'2005-08-22 20:35:02',2,'2006-02-15 21:30:53'), +(12813,'2005-08-19 00:54:22',3285,500,'2005-08-19 21:17:22',2,'2006-02-15 21:30:53'), +(12814,'2005-08-19 00:58:24',204,465,'2005-08-21 05:46:24',1,'2006-02-15 21:30:53'), +(12815,'2005-08-19 00:59:42',435,588,'2005-08-25 21:43:42',2,'2006-02-15 21:30:53'), +(12816,'2005-08-19 01:04:05',4051,342,'2005-08-24 01:25:05',1,'2006-02-15 21:30:53'), +(12817,'2005-08-19 01:04:35',1246,113,'2005-08-25 21:14:35',1,'2006-02-15 21:30:53'), +(12818,'2005-08-19 01:04:59',3069,528,'2005-08-26 21:39:59',2,'2006-02-15 21:30:53'), +(12819,'2005-08-19 01:05:05',1117,542,'2005-08-22 05:50:05',1,'2006-02-15 21:30:53'), +(12820,'2005-08-19 01:05:08',2936,127,'2005-08-21 05:37:08',2,'2006-02-15 21:30:53'), +(12821,'2005-08-19 01:07:02',3418,41,'2005-08-23 01:22:02',2,'2006-02-15 21:30:53'), +(12822,'2005-08-19 01:15:24',419,426,'2005-08-20 06:38:24',1,'2006-02-15 21:30:53'), +(12823,'2005-08-19 01:15:47',426,316,'2005-08-22 05:32:47',2,'2006-02-15 21:30:53'), +(12824,'2005-08-19 01:18:00',1875,247,'2005-08-22 01:12:00',2,'2006-02-15 21:30:53'), +(12825,'2005-08-19 01:23:58',4495,328,'2005-08-20 00:19:58',2,'2006-02-15 21:30:53'), +(12826,'2005-08-19 01:25:11',1277,439,'2005-08-27 01:22:11',1,'2006-02-15 21:30:53'), +(12827,'2005-08-19 01:27:23',880,253,'2005-08-27 02:22:23',2,'2006-02-15 21:30:53'), +(12828,'2005-08-19 01:37:47',4208,378,'2005-08-24 22:31:47',2,'2006-02-15 21:30:53'), +(12829,'2005-08-19 01:38:18',1129,326,'2005-08-25 22:23:18',2,'2006-02-15 21:30:53'), +(12830,'2005-08-19 01:40:25',4080,409,'2005-08-20 23:49:25',2,'2006-02-15 21:30:53'), +(12831,'2005-08-19 01:40:43',1916,183,'2005-08-28 05:22:43',1,'2006-02-15 21:30:53'), +(12832,'2005-08-19 01:41:44',2820,563,'2005-08-24 23:15:44',2,'2006-02-15 21:30:53'), +(12833,'2005-08-19 01:42:28',3723,59,'2005-08-26 20:13:28',1,'2006-02-15 21:30:53'), +(12834,'2005-08-19 01:47:30',757,133,'2005-08-24 20:08:30',1,'2006-02-15 21:30:53'), +(12835,'2005-08-19 01:47:45',1477,124,'2005-08-26 00:58:45',2,'2006-02-15 21:30:53'), +(12836,'2005-08-19 01:48:33',1380,196,'2005-08-23 04:46:33',1,'2006-02-15 21:30:53'), +(12837,'2005-08-19 01:51:09',2288,495,'2005-08-22 07:14:09',2,'2006-02-15 21:30:53'), +(12838,'2005-08-19 01:51:50',1207,308,'2005-08-27 23:12:50',1,'2006-02-15 21:30:53'), +(12839,'2005-08-19 01:53:43',1970,360,'2005-08-28 02:27:43',2,'2006-02-15 21:30:53'), +(12840,'2005-08-19 01:54:11',2098,182,'2005-08-28 01:11:11',2,'2006-02-15 21:30:53'), +(12841,'2005-08-19 01:55:55',4233,257,'2005-08-24 02:56:55',1,'2006-02-15 21:30:53'), +(12842,'2005-08-19 01:57:21',2540,119,'2005-08-28 01:10:21',1,'2006-02-15 21:30:53'), +(12843,'2005-08-19 01:58:54',3279,128,'2005-08-20 00:20:54',2,'2006-02-15 21:30:53'), +(12844,'2005-08-19 01:59:08',4146,584,'2005-08-24 22:21:08',1,'2006-02-15 21:30:53'), +(12845,'2005-08-19 02:02:37',1698,106,'2005-08-22 01:08:37',1,'2006-02-15 21:30:53'), +(12846,'2005-08-19 02:03:26',286,305,'2005-08-25 07:39:26',2,'2006-02-15 21:30:53'), +(12847,'2005-08-19 02:04:07',384,91,'2005-08-23 20:13:07',2,'2006-02-15 21:30:53'), +(12848,'2005-08-19 02:05:11',2833,539,'2005-08-24 05:27:11',2,'2006-02-15 21:30:53'), +(12849,'2005-08-19 02:05:37',3489,280,'2005-08-23 07:00:37',1,'2006-02-15 21:30:53'), +(12850,'2005-08-19 02:08:06',1816,440,'2005-08-20 21:06:06',2,'2006-02-15 21:30:53'), +(12851,'2005-08-19 02:12:12',3311,194,'2005-08-25 23:51:12',1,'2006-02-15 21:30:53'), +(12852,'2005-08-19 02:12:40',2446,260,'2005-08-19 23:42:40',1,'2006-02-15 21:30:53'), +(12853,'2005-08-19 02:15:32',3753,232,'2005-08-27 21:26:32',2,'2006-02-15 21:30:53'), +(12854,'2005-08-19 02:18:51',4577,362,'2005-08-24 04:16:51',2,'2006-02-15 21:30:53'), +(12855,'2005-08-19 02:18:58',2900,242,'2005-08-19 20:50:58',1,'2006-02-15 21:30:53'), +(12856,'2005-08-19 02:19:13',132,4,'2005-08-23 07:49:13',2,'2006-02-15 21:30:53'), +(12857,'2005-08-19 02:20:13',4307,443,'2005-08-20 20:20:13',1,'2006-02-15 21:30:53'), +(12858,'2005-08-19 02:22:16',3024,144,'2005-08-26 07:25:16',2,'2006-02-15 21:30:53'), +(12859,'2005-08-19 02:23:23',2289,139,'2005-08-28 04:55:23',2,'2006-02-15 21:30:53'), +(12860,'2005-08-19 02:24:41',778,548,'2005-08-25 07:43:41',1,'2006-02-15 21:30:53'), +(12861,'2005-08-19 02:30:24',3115,287,'2005-08-22 08:23:24',1,'2006-02-15 21:30:53'), +(12862,'2005-08-19 02:31:59',473,198,'2005-08-26 08:16:59',2,'2006-02-15 21:30:53'), +(12863,'2005-08-19 02:35:59',780,234,'2005-08-21 21:13:59',1,'2006-02-15 21:30:53'), +(12864,'2005-08-19 02:38:26',4481,465,'2005-08-22 21:42:26',2,'2006-02-15 21:30:53'), +(12865,'2005-08-19 02:38:50',3437,460,'2005-08-21 02:33:50',1,'2006-02-15 21:30:53'), +(12866,'2005-08-19 02:39:47',1766,229,'2005-08-27 02:14:47',1,'2006-02-15 21:30:53'), +(12867,'2005-08-19 02:40:11',4499,330,'2005-08-20 04:01:11',1,'2006-02-15 21:30:53'), +(12868,'2005-08-19 02:47:19',4054,551,'2005-08-20 00:30:19',2,'2006-02-15 21:30:53'), +(12869,'2005-08-19 02:50:36',3939,99,'2005-08-26 21:38:36',2,'2006-02-15 21:30:53'), +(12870,'2005-08-19 02:54:38',991,86,'2005-08-27 00:45:38',1,'2006-02-15 21:30:53'), +(12871,'2005-08-19 02:55:36',2625,217,'2005-08-22 01:00:36',2,'2006-02-15 21:30:53'), +(12872,'2005-08-19 02:57:37',1975,54,'2005-08-22 23:23:37',1,'2006-02-15 21:30:53'), +(12873,'2005-08-19 03:05:41',2140,138,'2005-08-22 06:57:41',2,'2006-02-15 21:30:53'), +(12874,'2005-08-19 03:07:57',848,254,'2005-08-22 22:42:57',2,'2006-02-15 21:30:53'), +(12875,'2005-08-19 03:10:21',1708,483,'2005-08-26 01:00:21',2,'2006-02-15 21:30:53'), +(12876,'2005-08-19 03:12:19',803,356,'2005-08-20 02:24:19',2,'2006-02-15 21:30:53'), +(12877,'2005-08-19 03:16:58',1016,40,'2005-08-25 02:10:58',2,'2006-02-15 21:30:53'), +(12878,'2005-08-19 03:17:08',1182,596,'2005-08-23 03:44:08',1,'2006-02-15 21:30:53'), +(12879,'2005-08-19 03:22:55',3556,210,'2005-08-24 22:00:55',1,'2006-02-15 21:30:53'), +(12880,'2005-08-19 03:27:17',3386,552,'2005-08-28 06:16:17',2,'2006-02-15 21:30:53'), +(12881,'2005-08-19 03:28:13',1432,121,'2005-08-25 05:25:13',1,'2006-02-15 21:30:53'), +(12882,'2005-08-19 03:33:46',911,153,'2005-08-21 22:49:46',1,'2006-02-15 21:30:53'), +(12883,'2005-08-19 03:33:47',964,555,'2005-08-23 21:55:47',1,'2006-02-15 21:30:53'), +(12884,'2005-08-19 03:34:04',2768,348,'2005-08-28 01:00:04',2,'2006-02-15 21:30:53'), +(12885,'2005-08-19 03:37:25',883,185,'2005-08-20 22:10:25',1,'2006-02-15 21:30:53'), +(12886,'2005-08-19 03:38:32',2157,174,'2005-08-26 02:17:32',1,'2006-02-15 21:30:53'), +(12887,'2005-08-19 03:38:54',1214,150,'2005-08-27 08:45:54',1,'2006-02-15 21:30:53'), +(12888,'2005-08-19 03:41:09',4398,146,'2005-08-24 07:09:09',2,'2006-02-15 21:30:53'), +(12889,'2005-08-19 03:41:31',4376,515,'2005-08-27 00:46:31',2,'2006-02-15 21:30:53'), +(12890,'2005-08-19 03:42:08',3831,150,'2005-08-19 23:08:08',1,'2006-02-15 21:30:53'), +(12891,'2006-02-14 15:16:03',2764,388,NULL,2,'2006-02-15 21:30:53'), +(12892,'2005-08-19 03:46:34',1044,121,'2005-08-21 05:11:34',2,'2006-02-15 21:30:53'), +(12893,'2005-08-19 03:46:43',168,498,'2005-08-20 08:38:43',2,'2006-02-15 21:30:53'), +(12894,'2005-08-19 03:49:28',4581,541,'2005-08-25 01:51:28',2,'2006-02-15 21:30:53'), +(12895,'2005-08-19 03:50:48',4372,396,'2005-08-26 09:13:48',1,'2006-02-15 21:30:53'), +(12896,'2005-08-19 03:52:44',148,220,'2005-08-24 22:27:44',1,'2006-02-15 21:30:53'), +(12897,'2006-02-14 15:16:03',1512,178,NULL,2,'2006-02-15 21:30:53'), +(12898,'2005-08-19 03:54:34',1555,586,'2005-08-23 08:14:34',2,'2006-02-15 21:30:53'), +(12899,'2005-08-19 04:03:34',830,105,'2005-08-20 08:34:34',2,'2006-02-15 21:30:53'), +(12900,'2005-08-19 04:03:49',849,408,'2005-08-24 22:11:49',2,'2006-02-15 21:30:53'), +(12901,'2006-02-14 15:16:03',2799,180,NULL,2,'2006-02-15 21:30:53'), +(12902,'2006-02-14 15:16:03',464,91,NULL,2,'2006-02-15 21:30:53'), +(12903,'2005-08-19 04:09:38',2340,302,'2005-08-26 03:24:38',2,'2006-02-15 21:30:53'), +(12904,'2005-08-19 04:10:50',459,257,'2005-08-27 23:24:50',1,'2006-02-15 21:30:53'), +(12905,'2005-08-19 04:13:37',1043,480,'2005-08-26 23:52:37',1,'2006-02-15 21:30:53'), +(12906,'2005-08-19 04:13:43',2060,401,'2005-08-20 04:24:43',1,'2006-02-15 21:30:53'), +(12907,'2005-08-19 04:16:13',2844,422,'2005-08-27 02:43:13',1,'2006-02-15 21:30:53'), +(12908,'2005-08-19 04:19:05',175,340,'2005-08-25 09:50:05',1,'2006-02-15 21:30:53'), +(12909,'2005-08-19 04:20:25',4300,210,'2005-08-24 06:40:25',2,'2006-02-15 21:30:53'), +(12910,'2005-08-19 04:23:13',3968,128,'2005-08-20 22:27:13',1,'2006-02-15 21:30:53'), +(12911,'2005-08-19 04:24:10',1770,367,'2005-08-26 00:35:10',2,'2006-02-15 21:30:53'), +(12912,'2005-08-19 04:24:35',1747,364,'2005-08-27 07:13:35',2,'2006-02-15 21:30:53'), +(12913,'2005-08-19 04:25:39',3719,356,'2005-08-25 07:23:39',1,'2006-02-15 21:30:53'), +(12914,'2005-08-19 04:25:59',4396,501,'2005-08-23 08:04:59',2,'2006-02-15 21:30:53'), +(12915,'2006-02-14 15:16:03',2651,516,NULL,1,'2006-02-15 21:30:53'), +(12916,'2005-08-19 04:27:05',2277,157,'2005-08-21 02:33:05',2,'2006-02-15 21:30:53'), +(12917,'2005-08-19 04:27:11',107,152,'2005-08-20 03:04:11',2,'2006-02-15 21:30:53'), +(12918,'2005-08-19 04:31:36',972,13,'2005-08-25 05:50:36',1,'2006-02-15 21:30:53'), +(12919,'2005-08-19 04:32:15',2121,263,'2005-08-24 05:56:15',2,'2006-02-15 21:30:53'), +(12920,'2005-08-19 04:32:32',2516,511,'2005-08-27 00:44:32',2,'2006-02-15 21:30:53'), +(12921,'2005-08-19 04:47:48',781,234,'2005-08-25 00:07:48',2,'2006-02-15 21:30:53'), +(12922,'2005-08-19 04:48:48',342,25,'2005-08-23 23:32:48',1,'2006-02-15 21:30:53'), +(12923,'2005-08-19 04:50:20',1390,531,'2005-08-22 10:42:20',1,'2006-02-15 21:30:53'), +(12924,'2005-08-19 04:51:47',3807,519,'2005-08-26 07:50:47',1,'2006-02-15 21:30:53'), +(12925,'2005-08-19 04:59:01',3361,57,'2005-08-27 02:03:01',2,'2006-02-15 21:30:53'), +(12926,'2005-08-19 05:00:16',23,336,'2005-08-26 06:12:16',2,'2006-02-15 21:30:53'), +(12927,'2005-08-19 05:02:46',1171,223,'2005-08-23 01:08:46',1,'2006-02-15 21:30:53'), +(12928,'2005-08-19 05:04:09',4531,353,'2005-08-24 09:09:09',2,'2006-02-15 21:30:53'), +(12929,'2005-08-19 05:05:23',1531,310,'2005-08-25 04:37:23',1,'2006-02-15 21:30:53'), +(12930,'2005-08-19 05:11:32',4410,414,'2005-08-22 02:20:32',2,'2006-02-15 21:30:53'), +(12931,'2005-08-19 05:11:47',3070,407,'2005-08-21 00:59:47',1,'2006-02-15 21:30:53'), +(12932,'2005-08-19 05:17:30',2295,416,'2005-08-21 09:24:30',1,'2006-02-15 21:30:53'), +(12933,'2005-08-19 05:18:20',4103,589,'2005-08-27 00:13:20',1,'2006-02-15 21:30:53'), +(12934,'2005-08-19 05:18:42',3242,591,'2005-08-24 10:42:42',1,'2006-02-15 21:30:53'), +(12935,'2005-08-19 05:20:25',193,279,'2005-08-21 03:10:25',2,'2006-02-15 21:30:53'), +(12936,'2005-08-19 05:25:06',654,387,'2005-08-28 08:21:06',1,'2006-02-15 21:30:53'), +(12937,'2005-08-19 05:25:30',3826,348,'2005-08-22 10:40:30',2,'2006-02-15 21:30:53'), +(12938,'2006-02-14 15:16:03',3987,28,NULL,1,'2006-02-15 21:30:53'), +(12939,'2005-08-19 05:38:25',3375,181,'2005-08-23 23:52:25',1,'2006-02-15 21:30:53'), +(12940,'2005-08-19 05:38:29',2222,340,'2005-08-20 08:15:29',1,'2006-02-15 21:30:53'), +(12941,'2005-08-19 05:39:26',2951,195,'2005-08-22 09:50:26',2,'2006-02-15 21:30:53'), +(12942,'2005-08-19 05:40:36',3938,103,'2005-08-27 02:04:36',1,'2006-02-15 21:30:53'), +(12943,'2005-08-19 05:46:26',3930,547,'2005-08-22 03:26:26',2,'2006-02-15 21:30:53'), +(12944,'2005-08-19 05:48:12',2956,148,'2005-08-28 10:10:12',1,'2006-02-15 21:30:53'), +(12945,'2005-08-19 05:51:46',3638,312,'2005-08-23 11:22:46',2,'2006-02-15 21:30:53'), +(12946,'2005-08-19 05:53:34',2066,444,'2005-08-20 07:30:34',1,'2006-02-15 21:30:53'), +(12947,'2005-08-19 05:54:21',935,499,'2005-08-22 09:17:21',1,'2006-02-15 21:30:53'), +(12948,'2005-08-19 05:55:14',4173,442,'2005-08-22 01:05:14',2,'2006-02-15 21:30:53'), +(12949,'2005-08-19 05:55:52',4209,279,'2005-08-23 00:01:52',1,'2006-02-15 21:30:53'), +(12950,'2005-08-19 05:55:58',1064,463,'2005-08-23 08:05:58',1,'2006-02-15 21:30:53'), +(12951,'2005-08-19 05:56:44',2143,70,'2005-08-24 11:28:44',2,'2006-02-15 21:30:53'), +(12952,'2005-08-19 06:00:52',2460,228,'2005-08-20 02:17:52',1,'2006-02-15 21:30:53'), +(12953,'2005-08-19 06:04:07',3954,429,'2005-08-28 11:05:07',1,'2006-02-15 21:30:53'), +(12954,'2005-08-19 06:04:34',3592,63,'2005-08-28 02:12:34',2,'2006-02-15 21:30:53'), +(12955,'2005-08-19 06:05:58',2040,410,'2005-08-26 04:24:58',2,'2006-02-15 21:30:53'), +(12956,'2005-08-19 06:06:26',3613,241,'2005-08-28 08:37:26',2,'2006-02-15 21:30:53'), +(12957,'2005-08-19 06:12:44',2219,512,'2005-08-28 10:49:44',2,'2006-02-15 21:30:53'), +(12958,'2005-08-19 06:19:21',4214,569,'2005-08-20 02:21:21',1,'2006-02-15 21:30:53'), +(12959,'2006-02-14 15:16:03',1540,284,NULL,2,'2006-02-15 21:30:53'), +(12960,'2005-08-19 06:21:52',3498,152,'2005-08-25 04:16:52',1,'2006-02-15 21:30:53'), +(12961,'2005-08-19 06:22:37',4529,386,'2005-08-23 00:49:37',1,'2006-02-15 21:30:53'), +(12962,'2005-08-19 06:22:48',575,171,'2005-08-27 07:47:48',1,'2006-02-15 21:30:53'), +(12963,'2005-08-19 06:26:04',1521,2,'2005-08-23 11:37:04',2,'2006-02-15 21:30:53'), +(12964,'2005-08-19 06:29:13',2854,142,'2005-08-22 12:23:13',2,'2006-02-15 21:30:53'), +(12965,'2005-08-19 06:33:00',4308,430,'2005-08-22 02:02:00',1,'2006-02-15 21:30:53'), +(12966,'2005-08-19 06:37:48',3196,69,'2005-08-26 03:59:48',2,'2006-02-15 21:30:53'), +(12967,'2005-08-19 06:37:51',3404,170,'2005-08-25 06:58:51',2,'2006-02-15 21:30:53'), +(12968,'2005-08-19 06:38:18',3108,166,'2005-08-20 08:29:18',1,'2006-02-15 21:30:53'), +(12969,'2005-08-19 06:38:59',191,224,'2005-08-25 09:09:59',2,'2006-02-15 21:30:53'), +(12970,'2006-02-14 15:16:03',3999,216,NULL,1,'2006-02-15 21:30:53'), +(12971,'2005-08-19 06:42:43',3504,492,'2005-08-23 10:49:43',2,'2006-02-15 21:30:53'), +(12972,'2005-08-19 06:43:28',1218,55,'2005-08-27 11:30:28',1,'2006-02-15 21:30:53'), +(12973,'2005-08-19 06:48:11',128,163,'2005-08-22 07:18:11',2,'2006-02-15 21:30:53'), +(12974,'2005-08-19 06:51:02',3599,218,'2005-08-25 11:48:02',2,'2006-02-15 21:30:53'), +(12975,'2005-08-19 06:51:19',3300,236,'2005-08-25 04:22:19',1,'2006-02-15 21:30:53'), +(12976,'2005-08-19 06:52:58',66,592,'2005-08-26 11:23:58',2,'2006-02-15 21:30:53'), +(12977,'2005-08-19 06:55:33',2004,388,'2005-08-27 07:38:33',2,'2006-02-15 21:30:53'), +(12978,'2005-08-19 06:57:27',3252,167,'2005-08-20 09:10:27',2,'2006-02-15 21:30:53'), +(12979,'2005-08-19 07:00:35',1227,267,'2005-08-21 06:12:35',2,'2006-02-15 21:30:53'), +(12980,'2005-08-19 07:03:14',1854,144,'2005-08-26 05:07:14',1,'2006-02-15 21:30:53'), +(12981,'2005-08-19 07:04:00',3925,481,'2005-08-21 09:17:00',1,'2006-02-15 21:30:53'), +(12982,'2005-08-19 07:06:34',1258,44,'2005-08-21 06:53:34',1,'2006-02-15 21:30:53'), +(12983,'2005-08-19 07:06:51',406,148,'2005-08-28 10:35:51',2,'2006-02-15 21:30:53'), +(12984,'2005-08-19 07:06:51',4211,537,'2005-08-22 04:04:51',1,'2006-02-15 21:30:53'), +(12985,'2005-08-19 07:08:05',4133,83,'2005-08-24 02:25:05',1,'2006-02-15 21:30:53'), +(12986,'2005-08-19 07:09:36',1145,210,'2005-08-22 05:01:36',1,'2006-02-15 21:30:53'), +(12987,'2005-08-19 07:11:44',3665,134,'2005-08-20 04:17:44',1,'2006-02-15 21:30:53'), +(12988,'2006-02-14 15:16:03',81,236,NULL,2,'2006-02-15 21:30:53'), +(12989,'2005-08-19 07:19:04',2929,306,'2005-08-21 10:58:04',1,'2006-02-15 21:30:53'), +(12990,'2005-08-19 07:20:39',1825,360,'2005-08-21 12:31:39',2,'2006-02-15 21:30:53'), +(12991,'2005-08-19 07:21:24',2227,126,'2005-08-21 04:31:24',2,'2006-02-15 21:30:53'), +(12992,'2005-08-19 07:23:06',3022,597,'2005-08-23 06:11:06',2,'2006-02-15 21:30:53'), +(12993,'2005-08-19 07:24:03',4225,484,'2005-08-26 07:15:03',2,'2006-02-15 21:30:53'), +(12994,'2005-08-19 07:26:10',3809,506,'2005-08-20 07:02:10',2,'2006-02-15 21:30:53'), +(12995,'2005-08-19 07:26:30',2069,566,'2005-08-25 12:47:30',2,'2006-02-15 21:30:53'), +(12996,'2005-08-19 07:31:32',4445,380,'2005-08-25 11:59:32',1,'2006-02-15 21:30:53'), +(12997,'2005-08-19 07:31:46',1661,311,'2005-08-24 09:20:46',2,'2006-02-15 21:30:53'), +(12998,'2005-08-19 07:32:16',2301,354,'2005-08-24 01:56:16',2,'2006-02-15 21:30:53'), +(12999,'2005-08-19 07:34:53',661,24,'2005-08-26 03:57:53',1,'2006-02-15 21:30:53'), +(13000,'2005-08-19 07:36:42',2341,141,'2005-08-22 08:50:42',1,'2006-02-15 21:30:53'), +(13001,'2005-08-19 07:36:44',2505,254,'2005-08-22 13:06:44',1,'2006-02-15 21:30:53'), +(13002,'2005-08-19 07:37:58',3892,477,'2005-08-26 11:32:58',2,'2006-02-15 21:30:53'), +(13003,'2005-08-19 07:39:29',3431,451,'2005-08-23 05:48:29',2,'2006-02-15 21:30:53'), +(13004,'2005-08-19 07:40:08',771,442,'2005-08-20 11:49:08',1,'2006-02-15 21:30:53'), +(13005,'2005-08-19 07:45:42',3417,104,'2005-08-20 12:45:42',2,'2006-02-15 21:30:53'), +(13006,'2005-08-19 07:47:16',3157,134,'2005-08-21 06:17:16',1,'2006-02-15 21:30:53'), +(13007,'2005-08-19 07:47:43',4280,430,'2005-08-26 02:48:43',2,'2006-02-15 21:30:53'), +(13008,'2006-02-14 15:16:03',1838,181,NULL,1,'2006-02-15 21:30:53'), +(13009,'2005-08-19 07:50:35',677,376,'2005-08-21 06:04:35',1,'2006-02-15 21:30:53'), +(13010,'2005-08-19 07:52:21',825,413,'2005-08-27 12:51:21',1,'2006-02-15 21:30:53'), +(13011,'2005-08-19 07:53:58',1998,529,'2005-08-24 12:00:58',1,'2006-02-15 21:30:53'), +(13012,'2005-08-19 07:54:59',1690,145,'2005-08-26 09:50:59',2,'2006-02-15 21:30:53'), +(13013,'2005-08-19 07:55:51',841,293,'2005-08-26 05:14:51',1,'2006-02-15 21:30:53'), +(13014,'2005-08-19 07:56:08',3400,344,'2005-08-21 10:20:08',2,'2006-02-15 21:30:53'), +(13015,'2005-08-19 07:56:51',3461,126,'2005-08-28 07:05:51',2,'2006-02-15 21:30:53'), +(13016,'2005-08-19 07:57:14',3095,175,'2005-08-23 03:29:14',1,'2006-02-15 21:30:53'), +(13017,'2005-08-19 08:02:24',2160,104,'2005-08-26 07:32:24',1,'2006-02-15 21:30:53'), +(13018,'2005-08-19 08:04:50',2122,168,'2005-08-26 11:46:50',1,'2006-02-15 21:30:53'), +(13019,'2005-08-19 08:07:43',2827,597,'2005-08-20 12:09:43',2,'2006-02-15 21:30:53'), +(13020,'2005-08-19 08:07:50',4501,92,'2005-08-28 11:42:50',1,'2006-02-15 21:30:53'), +(13021,'2005-08-19 08:08:04',1242,309,'2005-08-26 12:04:04',2,'2006-02-15 21:30:53'), +(13022,'2006-02-14 15:16:03',2266,336,NULL,2,'2006-02-15 21:30:53'), +(13023,'2005-08-19 08:13:54',1566,69,'2005-08-27 13:18:54',1,'2006-02-15 21:30:53'), +(13024,'2005-08-19 08:19:21',2917,401,'2005-08-27 05:18:21',1,'2006-02-15 21:30:53'), +(13025,'2006-02-14 15:16:03',4066,269,NULL,1,'2006-02-15 21:30:53'), +(13026,'2005-08-19 08:22:45',3026,79,'2005-08-21 09:31:45',1,'2006-02-15 21:30:53'), +(13027,'2005-08-19 08:25:16',3756,128,'2005-08-25 13:42:16',1,'2006-02-15 21:30:53'), +(13028,'2005-08-19 08:27:23',2165,371,'2005-08-24 03:46:23',1,'2006-02-15 21:30:53'), +(13029,'2005-08-19 08:28:04',3283,293,'2005-08-22 12:25:04',2,'2006-02-15 21:30:53'), +(13030,'2005-08-19 08:28:11',2614,240,'2005-08-24 07:20:11',1,'2006-02-15 21:30:53'), +(13031,'2005-08-19 08:30:04',1525,567,'2005-08-23 09:35:04',2,'2006-02-15 21:30:53'), +(13032,'2005-08-19 08:31:50',3699,82,'2005-08-23 04:00:50',2,'2006-02-15 21:30:53'), +(13033,'2005-08-19 08:34:39',1682,344,'2005-08-28 10:13:39',1,'2006-02-15 21:30:53'), +(13034,'2005-08-19 08:41:29',990,387,'2005-08-20 07:36:29',2,'2006-02-15 21:30:53'), +(13035,'2005-08-19 08:46:45',4082,135,'2005-08-22 11:42:45',1,'2006-02-15 21:30:53'), +(13036,'2005-08-19 08:48:37',1469,20,'2005-08-22 04:13:37',2,'2006-02-15 21:30:53'), +(13037,'2005-08-19 08:53:57',65,275,'2005-08-28 08:56:57',2,'2006-02-15 21:30:53'), +(13038,'2005-08-19 08:55:16',2226,532,'2005-08-25 12:23:16',2,'2006-02-15 21:30:53'), +(13039,'2005-08-19 08:55:19',1952,370,'2005-08-20 07:39:19',2,'2006-02-15 21:30:53'), +(13040,'2005-08-19 09:04:24',4113,425,'2005-08-23 12:36:24',2,'2006-02-15 21:30:53'), +(13041,'2005-08-19 09:05:38',1576,462,'2005-08-27 06:34:38',1,'2006-02-15 21:30:53'), +(13042,'2005-08-19 09:06:08',1047,414,'2005-08-22 13:46:08',2,'2006-02-15 21:30:53'), +(13043,'2005-08-19 09:07:13',24,127,'2005-08-27 07:49:13',1,'2006-02-15 21:30:53'), +(13044,'2005-08-19 09:14:31',809,142,'2005-08-20 11:16:31',1,'2006-02-15 21:30:53'), +(13045,'2005-08-19 09:17:35',389,254,'2005-08-23 12:04:35',1,'2006-02-15 21:30:53'), +(13046,'2005-08-19 09:21:10',965,37,'2005-08-26 13:00:10',2,'2006-02-15 21:30:53'), +(13047,'2005-08-19 09:24:49',2704,394,'2005-08-24 11:06:49',2,'2006-02-15 21:30:53'), +(13048,'2005-08-19 09:25:06',1029,486,'2005-08-28 11:18:06',2,'2006-02-15 21:30:53'), +(13049,'2005-08-19 09:25:40',4122,53,'2005-08-27 10:19:40',2,'2006-02-15 21:30:53'), +(13050,'2005-08-19 09:31:23',3682,131,'2005-08-26 06:56:23',2,'2006-02-15 21:30:53'), +(13051,'2005-08-19 09:31:33',4064,90,'2005-08-28 06:15:33',1,'2006-02-15 21:30:53'), +(13052,'2005-08-19 09:31:42',3036,502,'2005-08-28 15:11:42',2,'2006-02-15 21:30:53'), +(13053,'2005-08-19 09:31:48',2044,140,'2005-08-28 07:51:48',2,'2006-02-15 21:30:53'), +(13054,'2005-08-19 09:34:02',2983,325,'2005-08-23 05:25:02',2,'2006-02-15 21:30:53'), +(13055,'2005-08-19 09:36:28',3580,485,'2005-08-24 05:53:28',2,'2006-02-15 21:30:53'), +(13056,'2006-02-14 15:16:03',3751,115,NULL,2,'2006-02-15 21:30:53'), +(13057,'2005-08-19 09:40:05',876,105,'2005-08-28 13:22:05',2,'2006-02-15 21:30:53'), +(13058,'2005-08-19 09:40:53',2437,24,'2005-08-26 05:48:53',2,'2006-02-15 21:30:53'), +(13059,'2005-08-19 09:42:01',3810,341,'2005-08-21 12:07:01',1,'2006-02-15 21:30:53'), +(13060,'2005-08-19 09:43:25',507,22,'2005-08-28 15:22:25',1,'2006-02-15 21:30:53'), +(13061,'2005-08-19 09:43:39',730,576,'2005-08-24 10:03:39',1,'2006-02-15 21:30:53'), +(13062,'2005-08-19 09:44:17',1790,385,'2005-08-27 11:42:17',1,'2006-02-15 21:30:53'), +(13063,'2005-08-19 09:45:41',1192,5,'2005-08-24 09:11:41',2,'2006-02-15 21:30:53'), +(13064,'2005-08-19 09:46:53',4131,588,'2005-08-21 08:29:53',1,'2006-02-15 21:30:53'), +(13065,'2005-08-19 09:48:52',1887,518,'2005-08-22 07:12:52',1,'2006-02-15 21:30:53'), +(13066,'2005-08-19 09:50:39',3730,336,'2005-08-22 14:01:39',1,'2006-02-15 21:30:53'), +(13067,'2005-08-19 09:51:17',3825,172,'2005-08-25 09:58:17',2,'2006-02-15 21:30:53'), +(13068,'2005-08-19 09:55:16',3019,1,'2005-08-20 14:44:16',2,'2006-02-15 21:30:53'), +(13069,'2005-08-19 09:55:20',368,299,'2005-08-24 04:10:20',2,'2006-02-15 21:30:53'), +(13070,'2005-08-19 09:56:23',2214,235,'2005-08-24 09:08:23',2,'2006-02-15 21:30:53'), +(13071,'2005-08-19 10:01:07',527,578,'2005-08-26 14:26:07',1,'2006-02-15 21:30:53'), +(13072,'2005-08-19 10:03:30',2313,447,'2005-08-22 14:27:30',2,'2006-02-15 21:30:53'), +(13073,'2005-08-19 10:05:38',855,506,'2005-08-26 07:37:38',2,'2006-02-15 21:30:53'), +(13074,'2005-08-19 10:06:53',3266,341,'2005-08-28 09:56:53',2,'2006-02-15 21:30:53'), +(13075,'2005-08-19 10:10:10',4125,224,'2005-08-21 08:44:10',2,'2006-02-15 21:30:53'), +(13076,'2005-08-19 10:10:26',1226,201,'2005-08-22 05:41:26',1,'2006-02-15 21:30:53'), +(13077,'2005-08-19 10:15:19',433,241,'2005-08-21 06:51:19',2,'2006-02-15 21:30:53'), +(13078,'2005-08-19 10:16:43',4104,479,'2005-08-27 11:35:43',2,'2006-02-15 21:30:53'), +(13079,'2006-02-14 15:16:03',733,107,NULL,1,'2006-02-15 21:30:53'), +(13080,'2005-08-19 10:18:00',4222,452,'2005-08-22 06:37:00',2,'2006-02-15 21:30:53'), +(13081,'2005-08-19 10:19:06',3077,170,'2005-08-20 05:49:06',1,'2006-02-15 21:30:53'), +(13082,'2005-08-19 10:19:19',2117,387,'2005-08-28 05:02:19',1,'2006-02-15 21:30:53'), +(13083,'2005-08-19 10:26:45',3469,455,'2005-08-23 05:31:45',2,'2006-02-15 21:30:53'), +(13084,'2005-08-19 10:27:25',3792,204,'2005-08-26 07:32:25',2,'2006-02-15 21:30:53'), +(13085,'2005-08-19 10:28:22',360,215,'2005-08-22 07:37:22',2,'2006-02-15 21:30:53'), +(13086,'2005-08-19 10:32:28',3712,350,'2005-08-26 07:57:28',2,'2006-02-15 21:30:53'), +(13087,'2005-08-19 10:33:52',2693,171,'2005-08-27 09:15:52',2,'2006-02-15 21:30:53'), +(13088,'2005-08-19 10:36:11',4281,457,'2005-08-21 09:12:11',1,'2006-02-15 21:30:53'), +(13089,'2005-08-19 10:38:56',1783,63,'2005-08-24 12:41:56',1,'2006-02-15 21:30:53'), +(13090,'2005-08-19 10:39:54',1447,52,'2005-08-28 10:31:54',1,'2006-02-15 21:30:53'), +(13091,'2005-08-19 10:40:10',1815,127,'2005-08-23 09:03:10',1,'2006-02-15 21:30:53'), +(13092,'2005-08-19 10:41:09',4359,480,'2005-08-25 05:11:09',2,'2006-02-15 21:30:53'), +(13093,'2005-08-19 10:46:16',1667,160,'2005-08-26 08:05:16',1,'2006-02-15 21:30:53'), +(13094,'2005-08-19 10:47:58',3178,494,'2005-08-21 06:20:58',1,'2006-02-15 21:30:53'), +(13095,'2005-08-19 10:48:10',520,508,'2005-08-28 06:15:10',1,'2006-02-15 21:30:53'), +(13096,'2005-08-19 10:49:03',420,13,'2005-08-21 05:33:03',1,'2006-02-15 21:30:53'), +(13097,'2005-08-19 10:50:43',4194,157,'2005-08-24 11:10:43',2,'2006-02-15 21:30:53'), +(13098,'2005-08-19 10:51:59',3770,51,'2005-08-24 11:27:59',1,'2006-02-15 21:30:53'), +(13099,'2005-08-19 10:55:19',969,436,'2005-08-27 10:54:19',1,'2006-02-15 21:30:53'), +(13100,'2005-08-19 10:55:45',916,451,'2005-08-25 12:28:45',1,'2006-02-15 21:30:53'), +(13101,'2005-08-19 11:01:54',1804,39,'2005-08-27 16:06:54',2,'2006-02-15 21:30:53'), +(13102,'2005-08-19 11:02:03',2885,285,'2005-08-28 13:05:03',2,'2006-02-15 21:30:53'), +(13103,'2005-08-19 11:05:51',1751,274,'2005-08-26 09:16:51',2,'2006-02-15 21:30:53'), +(13104,'2005-08-19 11:06:06',310,591,'2005-08-21 13:50:06',2,'2006-02-15 21:30:53'), +(13105,'2005-08-19 11:06:16',729,279,'2005-08-27 15:21:16',1,'2006-02-15 21:30:53'), +(13106,'2006-02-14 15:16:03',3212,440,NULL,1,'2006-02-15 21:30:53'), +(13107,'2005-08-19 11:13:58',3870,356,'2005-08-20 15:03:58',2,'2006-02-15 21:30:53'), +(13108,'2006-02-14 15:16:03',3630,73,NULL,1,'2006-02-15 21:30:53'), +(13109,'2005-08-19 11:23:20',46,259,'2005-08-25 17:05:20',1,'2006-02-15 21:30:53'), +(13110,'2005-08-19 11:24:37',62,447,'2005-08-21 05:48:37',1,'2006-02-15 21:30:53'), +(13111,'2005-08-19 11:25:10',580,26,'2005-08-21 05:52:10',2,'2006-02-15 21:30:53'), +(13112,'2005-08-19 11:27:10',2074,259,'2005-08-22 05:32:10',1,'2006-02-15 21:30:53'), +(13113,'2005-08-19 11:27:20',2393,573,'2005-08-23 12:40:20',1,'2006-02-15 21:30:53'), +(13114,'2005-08-19 11:27:32',4342,550,'2005-08-28 11:21:32',2,'2006-02-15 21:30:53'), +(13115,'2005-08-19 11:27:43',1961,84,'2005-08-20 10:58:43',1,'2006-02-15 21:30:53'), +(13116,'2005-08-19 11:31:41',1544,150,'2005-08-27 16:05:41',1,'2006-02-15 21:30:53'), +(13117,'2005-08-19 11:33:20',3430,385,'2005-08-20 11:55:20',2,'2006-02-15 21:30:53'), +(13118,'2005-08-19 11:39:58',470,181,'2005-08-25 14:44:58',1,'2006-02-15 21:30:53'), +(13119,'2005-08-19 11:44:59',1401,240,'2005-08-20 12:30:59',2,'2006-02-15 21:30:53'), +(13120,'2005-08-19 11:47:38',2273,314,'2005-08-26 08:20:38',2,'2006-02-15 21:30:53'), +(13121,'2005-08-19 11:51:39',3517,251,'2005-08-22 11:50:39',2,'2006-02-15 21:30:53'), +(13122,'2005-08-19 11:53:49',3319,277,'2005-08-26 16:01:49',2,'2006-02-15 21:30:53'), +(13123,'2005-08-19 11:55:13',2804,220,'2005-08-21 05:55:13',2,'2006-02-15 21:30:53'), +(13124,'2005-08-19 11:55:59',2105,78,'2005-08-26 06:01:59',2,'2006-02-15 21:30:53'), +(13125,'2005-08-19 11:57:49',3722,192,'2005-08-26 07:53:49',1,'2006-02-15 21:30:53'), +(13126,'2005-08-19 12:00:28',1392,253,'2005-08-28 17:27:28',1,'2006-02-15 21:30:53'), +(13127,'2005-08-19 12:04:03',2582,178,'2005-08-27 13:56:03',1,'2006-02-15 21:30:53'), +(13128,'2005-08-19 12:04:16',485,206,'2005-08-26 16:06:16',2,'2006-02-15 21:30:53'), +(13129,'2005-08-19 12:05:04',4455,274,'2005-08-26 10:24:04',1,'2006-02-15 21:30:53'), +(13130,'2005-08-19 12:06:42',2006,254,'2005-08-23 12:08:42',1,'2006-02-15 21:30:53'), +(13131,'2005-08-19 12:08:13',1466,480,'2005-08-27 13:43:13',2,'2006-02-15 21:30:53'), +(13132,'2005-08-19 12:10:57',1748,529,'2005-08-27 12:22:57',2,'2006-02-15 21:30:53'), +(13133,'2005-08-19 12:11:03',1635,523,'2005-08-28 12:36:03',2,'2006-02-15 21:30:53'), +(13134,'2005-08-19 12:14:14',1354,184,'2005-08-20 11:52:14',1,'2006-02-15 21:30:53'), +(13135,'2005-08-19 12:22:52',1585,361,'2005-08-21 14:04:52',2,'2006-02-15 21:30:53'), +(13136,'2005-08-19 12:24:23',2532,50,'2005-08-28 08:37:23',2,'2006-02-15 21:30:53'), +(13137,'2005-08-19 12:26:32',4431,20,'2005-08-22 13:26:32',1,'2006-02-15 21:30:53'), +(13138,'2005-08-19 12:30:01',3138,214,'2005-08-21 06:35:01',2,'2006-02-15 21:30:53'), +(13139,'2005-08-19 12:32:10',2099,554,'2005-08-24 12:12:10',1,'2006-02-15 21:30:53'), +(13140,'2005-08-19 12:35:56',4210,323,'2005-08-27 18:24:56',2,'2006-02-15 21:30:53'), +(13141,'2005-08-19 12:41:41',4545,376,'2005-08-21 08:17:41',2,'2006-02-15 21:30:53'), +(13142,'2005-08-19 12:42:28',1404,269,'2005-08-26 14:52:28',1,'2006-02-15 21:30:53'), +(13143,'2005-08-19 12:44:38',1655,371,'2005-08-25 10:59:38',2,'2006-02-15 21:30:53'), +(13144,'2005-08-19 12:45:55',3766,456,'2005-08-27 10:37:55',2,'2006-02-15 21:30:53'), +(13145,'2005-08-19 12:53:53',1383,72,'2005-08-23 08:06:53',1,'2006-02-15 21:30:53'), +(13146,'2005-08-19 12:54:42',1463,116,'2005-08-26 07:31:42',1,'2006-02-15 21:30:53'), +(13147,'2005-08-19 12:55:09',3490,37,'2005-08-22 18:10:09',1,'2006-02-15 21:30:53'), +(13148,'2005-08-19 12:55:30',1762,137,'2005-08-21 11:01:30',1,'2006-02-15 21:30:53'), +(13149,'2005-08-19 13:07:12',1436,40,'2005-08-28 18:12:12',1,'2006-02-15 21:30:53'), +(13150,'2005-08-19 13:08:19',1514,457,'2005-08-25 18:00:19',1,'2006-02-15 21:30:53'), +(13151,'2005-08-19 13:08:23',3045,16,'2005-08-20 12:38:23',2,'2006-02-15 21:30:53'), +(13152,'2005-08-19 13:09:32',3571,597,'2005-08-25 14:47:32',1,'2006-02-15 21:30:53'), +(13153,'2005-08-19 13:09:47',3896,431,'2005-08-23 17:35:47',2,'2006-02-15 21:30:53'), +(13154,'2005-08-19 13:09:54',2465,255,'2005-08-26 16:40:54',1,'2006-02-15 21:30:53'), +(13155,'2005-08-19 13:10:23',290,442,'2005-08-25 19:07:23',2,'2006-02-15 21:30:53'), +(13156,'2005-08-19 13:10:42',770,512,'2005-08-25 15:08:42',2,'2006-02-15 21:30:53'), +(13157,'2005-08-19 13:12:28',4391,592,'2005-08-20 10:41:28',1,'2006-02-15 21:30:53'), +(13158,'2005-08-19 13:18:10',944,327,'2005-08-25 09:27:10',1,'2006-02-15 21:30:53'), +(13159,'2005-08-19 13:19:59',2300,497,'2005-08-21 09:22:59',2,'2006-02-15 21:30:53'), +(13160,'2005-08-19 13:21:04',410,484,'2005-08-22 18:49:04',1,'2006-02-15 21:30:53'), +(13161,'2006-02-14 15:16:03',986,175,NULL,1,'2006-02-15 21:30:53'), +(13162,'2005-08-19 13:28:26',1845,478,'2005-08-24 17:37:26',1,'2006-02-15 21:30:53'), +(13163,'2005-08-19 13:29:46',3068,57,'2005-08-22 07:48:46',2,'2006-02-15 21:30:53'), +(13164,'2005-08-19 13:30:55',1104,145,'2005-08-26 10:12:55',2,'2006-02-15 21:30:53'), +(13165,'2005-08-19 13:34:10',138,289,'2005-08-21 18:33:10',2,'2006-02-15 21:30:53'), +(13166,'2005-08-19 13:36:28',4386,504,'2005-08-22 07:57:28',1,'2006-02-15 21:30:53'), +(13167,'2005-08-19 13:36:41',557,120,'2005-08-23 15:29:41',2,'2006-02-15 21:30:53'), +(13168,'2005-08-19 13:37:28',2210,186,'2005-08-27 17:54:28',2,'2006-02-15 21:30:53'), +(13169,'2005-08-19 13:43:35',1709,141,'2005-08-26 09:31:35',1,'2006-02-15 21:30:53'), +(13170,'2005-08-19 13:45:48',1072,176,'2005-08-27 11:00:48',2,'2006-02-15 21:30:53'), +(13171,'2005-08-19 13:48:54',1765,122,'2005-08-27 18:57:54',1,'2006-02-15 21:30:53'), +(13172,'2005-08-19 13:49:07',1301,298,'2005-08-20 19:39:07',2,'2006-02-15 21:30:53'), +(13173,'2005-08-19 13:50:36',1304,29,'2005-08-26 12:34:36',2,'2006-02-15 21:30:53'), +(13174,'2005-08-19 13:52:50',2303,482,'2005-08-22 14:43:50',2,'2006-02-15 21:30:53'), +(13175,'2005-08-19 13:54:53',3187,239,'2005-08-20 16:25:53',2,'2006-02-15 21:30:53'), +(13176,'2005-08-19 13:56:54',2269,1,'2005-08-23 08:50:54',2,'2006-02-15 21:30:53'), +(13177,'2005-08-19 13:56:58',3172,126,'2005-08-23 13:13:58',2,'2006-02-15 21:30:53'), +(13178,'2006-02-14 15:16:03',693,394,NULL,1,'2006-02-15 21:30:53'), +(13179,'2005-08-19 13:59:53',1624,104,'2005-08-25 12:10:53',1,'2006-02-15 21:30:53'), +(13180,'2005-08-19 14:00:38',3443,322,'2005-08-20 09:56:38',1,'2006-02-15 21:30:53'), +(13181,'2005-08-19 14:00:56',1256,128,'2005-08-24 13:52:56',2,'2006-02-15 21:30:53'), +(13182,'2006-02-14 15:16:03',364,496,NULL,2,'2006-02-15 21:30:53'), +(13183,'2005-08-19 14:09:26',2404,301,'2005-08-28 08:44:26',2,'2006-02-15 21:30:53'), +(13184,'2005-08-19 14:16:18',4395,393,'2005-08-20 08:44:18',1,'2006-02-15 21:30:53'), +(13185,'2005-08-19 14:22:30',241,174,'2005-08-20 10:13:30',2,'2006-02-15 21:30:53'), +(13186,'2005-08-19 14:23:19',2802,176,'2005-08-28 11:26:19',1,'2006-02-15 21:30:53'), +(13187,'2005-08-19 14:24:48',1944,543,'2005-08-20 19:37:48',1,'2006-02-15 21:30:53'), +(13188,'2005-08-19 14:27:03',583,472,'2005-08-28 09:15:03',2,'2006-02-15 21:30:53'), +(13189,'2005-08-19 14:27:16',3444,368,'2005-08-28 10:34:16',1,'2006-02-15 21:30:53'), +(13190,'2005-08-19 14:27:59',4316,290,'2005-08-26 13:45:59',1,'2006-02-15 21:30:53'), +(13191,'2005-08-19 14:28:48',2753,371,'2005-08-23 12:53:48',2,'2006-02-15 21:30:53'), +(13192,'2005-08-19 14:30:06',966,532,'2005-08-27 15:20:06',1,'2006-02-15 21:30:53'), +(13193,'2005-08-19 14:33:45',523,118,'2005-08-28 08:46:45',2,'2006-02-15 21:30:53'), +(13194,'2005-08-19 14:34:12',2473,58,'2005-08-26 10:18:12',2,'2006-02-15 21:30:53'), +(13195,'2005-08-19 14:39:14',2537,565,'2005-08-24 10:30:14',2,'2006-02-15 21:30:53'), +(13196,'2005-08-19 14:40:32',458,202,'2005-08-26 18:15:32',2,'2006-02-15 21:30:53'), +(13197,'2005-08-19 14:44:03',3190,358,'2005-08-22 10:11:03',1,'2006-02-15 21:30:53'), +(13198,'2005-08-19 14:47:18',4273,169,'2005-08-21 18:09:18',2,'2006-02-15 21:30:53'), +(13199,'2005-08-19 14:53:22',4291,339,'2005-08-27 19:03:22',2,'2006-02-15 21:30:53'), +(13200,'2005-08-19 14:55:58',2746,577,'2005-08-27 11:35:58',2,'2006-02-15 21:30:53'), +(13201,'2005-08-19 14:56:05',111,508,'2005-08-25 14:37:05',1,'2006-02-15 21:30:53'), +(13202,'2005-08-19 14:58:30',3546,381,'2005-08-27 17:10:30',1,'2006-02-15 21:30:53'), +(13203,'2005-08-19 15:00:58',804,257,'2005-08-27 15:38:58',2,'2006-02-15 21:30:53'), +(13204,'2005-08-19 15:02:48',4524,152,'2005-08-24 18:07:48',1,'2006-02-15 21:30:53'), +(13205,'2005-08-19 15:05:26',2616,495,'2005-08-25 10:41:26',2,'2006-02-15 21:30:53'), +(13206,'2005-08-19 15:05:34',2477,504,'2005-08-21 20:37:34',2,'2006-02-15 21:30:53'), +(13207,'2005-08-19 15:14:38',674,58,'2005-08-27 16:09:38',1,'2006-02-15 21:30:53'), +(13208,'2005-08-19 15:18:55',609,435,'2005-08-24 11:59:55',1,'2006-02-15 21:30:53'), +(13209,'2006-02-14 15:16:03',1574,5,NULL,2,'2006-02-15 21:30:53'), +(13210,'2005-08-19 15:23:38',2789,487,'2005-08-21 11:57:38',1,'2006-02-15 21:30:53'), +(13211,'2005-08-19 15:23:41',1968,289,'2005-08-22 16:58:41',1,'2006-02-15 21:30:53'), +(13212,'2005-08-19 15:24:07',3691,158,'2005-08-24 21:03:07',1,'2006-02-15 21:30:53'), +(13213,'2005-08-19 15:25:48',1546,13,'2005-08-22 09:32:48',1,'2006-02-15 21:30:53'), +(13214,'2005-08-19 15:31:06',2675,157,'2005-08-20 19:58:06',2,'2006-02-15 21:30:53'), +(13215,'2005-08-19 15:35:38',3740,460,'2005-08-27 12:16:38',1,'2006-02-15 21:30:53'), +(13216,'2005-08-19 15:36:05',4335,422,'2005-08-25 19:03:05',2,'2006-02-15 21:30:53'), +(13217,'2005-08-19 15:38:39',616,565,'2005-08-21 14:33:39',1,'2006-02-15 21:30:53'), +(13218,'2005-08-19 15:39:39',4148,257,'2005-08-22 17:28:39',1,'2006-02-15 21:30:53'), +(13219,'2005-08-19 15:40:28',2075,288,'2005-08-22 21:20:28',2,'2006-02-15 21:30:53'), +(13220,'2005-08-19 15:42:32',1017,448,'2005-08-25 13:37:32',1,'2006-02-15 21:30:53'), +(13221,'2005-08-19 15:45:47',120,468,'2005-08-26 21:10:47',1,'2006-02-15 21:30:53'), +(13222,'2005-08-19 15:47:58',1656,91,'2005-08-26 12:43:58',1,'2006-02-15 21:30:53'), +(13223,'2005-08-19 15:52:04',332,461,'2005-08-22 16:27:04',1,'2006-02-15 21:30:53'), +(13224,'2005-08-19 15:52:13',3086,526,'2005-08-28 20:53:13',2,'2006-02-15 21:30:53'), +(13225,'2005-08-19 15:54:33',1420,562,'2005-08-25 16:40:33',1,'2006-02-15 21:30:53'), +(13226,'2005-08-19 16:05:36',2850,46,'2005-08-21 10:07:36',2,'2006-02-15 21:30:53'), +(13227,'2005-08-19 16:05:38',2759,288,'2005-08-20 21:39:38',1,'2006-02-15 21:30:53'), +(13228,'2005-08-19 16:08:16',2497,571,'2005-08-20 18:55:16',1,'2006-02-15 21:30:53'), +(13229,'2005-08-19 16:08:33',634,283,'2005-08-22 19:54:33',2,'2006-02-15 21:30:53'), +(13230,'2005-08-19 16:12:07',3645,151,'2005-08-21 12:19:07',1,'2006-02-15 21:30:53'), +(13231,'2005-08-19 16:12:49',2126,280,'2005-08-27 17:14:49',2,'2006-02-15 21:30:53'), +(13232,'2005-08-19 16:13:32',2370,206,'2005-08-28 14:42:32',2,'2006-02-15 21:30:53'), +(13233,'2005-08-19 16:14:41',1057,279,'2005-08-24 21:13:41',1,'2006-02-15 21:30:53'), +(13234,'2005-08-19 16:17:15',976,559,'2005-08-27 12:36:15',1,'2006-02-15 21:30:53'), +(13235,'2005-08-19 16:17:53',3902,367,'2005-08-27 14:57:53',1,'2006-02-15 21:30:53'), +(13236,'2005-08-19 16:18:24',4574,267,'2005-08-27 17:48:24',2,'2006-02-15 21:30:53'), +(13237,'2005-08-19 16:18:36',1272,169,'2005-08-25 15:22:36',2,'2006-02-15 21:30:53'), +(13238,'2005-08-19 16:20:56',985,348,'2005-08-23 15:51:56',2,'2006-02-15 21:30:53'), +(13239,'2005-08-19 16:22:13',3296,541,'2005-08-23 19:26:13',1,'2006-02-15 21:30:53'), +(13240,'2005-08-19 16:22:14',1411,179,'2005-08-20 13:24:14',1,'2006-02-15 21:30:53'), +(13241,'2005-08-19 16:25:00',3106,33,'2005-08-26 12:27:00',2,'2006-02-15 21:30:53'), +(13242,'2005-08-19 16:28:47',230,414,'2005-08-24 22:13:47',2,'2006-02-15 21:30:53'), +(13243,'2005-08-19 16:33:16',355,251,'2005-08-25 13:19:16',2,'2006-02-15 21:30:53'), +(13244,'2005-08-19 16:43:04',3246,298,'2005-08-22 15:21:04',2,'2006-02-15 21:30:53'), +(13245,'2005-08-19 16:43:41',1001,261,'2005-08-20 21:17:41',1,'2006-02-15 21:30:53'), +(13246,'2006-02-14 15:16:03',1849,411,NULL,2,'2006-02-15 21:30:53'), +(13247,'2005-08-19 16:45:59',1271,24,'2005-08-25 15:25:59',1,'2006-02-15 21:30:53'), +(13248,'2005-08-19 16:47:41',2864,559,'2005-08-28 18:11:41',2,'2006-02-15 21:30:53'), +(13249,'2005-08-19 16:47:41',3084,377,'2005-08-20 13:30:41',1,'2006-02-15 21:30:53'), +(13250,'2005-08-19 16:47:55',2524,448,'2005-08-26 16:54:55',2,'2006-02-15 21:30:53'), +(13251,'2005-08-19 16:48:37',4216,111,'2005-08-20 16:33:37',1,'2006-02-15 21:30:53'), +(13252,'2005-08-19 16:50:50',775,451,'2005-08-22 22:09:50',2,'2006-02-15 21:30:53'), +(13253,'2005-08-19 16:53:56',472,399,'2005-08-20 11:38:56',2,'2006-02-15 21:30:53'), +(13254,'2005-08-19 16:54:01',3412,532,'2005-08-27 19:50:01',2,'2006-02-15 21:30:53'), +(13255,'2005-08-19 16:54:12',1101,150,'2005-08-28 17:00:12',1,'2006-02-15 21:30:53'), +(13256,'2005-08-19 16:54:12',2719,289,'2005-08-28 16:54:12',1,'2006-02-15 21:30:53'), +(13257,'2005-08-19 17:01:20',164,300,'2005-08-24 17:26:20',1,'2006-02-15 21:30:53'), +(13258,'2005-08-19 17:05:37',2246,349,'2005-08-24 17:36:37',2,'2006-02-15 21:30:53'), +(13259,'2005-08-19 17:08:53',2518,458,'2005-08-23 14:14:53',1,'2006-02-15 21:30:53'), +(13260,'2005-08-19 17:09:22',578,251,'2005-08-24 21:31:22',2,'2006-02-15 21:30:53'), +(13261,'2006-02-14 15:16:03',3538,417,NULL,1,'2006-02-15 21:30:53'), +(13262,'2005-08-19 17:20:15',4483,184,'2005-08-26 18:28:15',2,'2006-02-15 21:30:53'), +(13263,'2005-08-19 17:26:55',214,206,'2005-08-28 20:07:55',2,'2006-02-15 21:30:53'), +(13264,'2005-08-19 17:27:10',1881,109,'2005-08-27 16:00:10',1,'2006-02-15 21:30:53'), +(13265,'2005-08-19 17:29:00',3933,314,'2005-08-20 12:59:00',2,'2006-02-15 21:30:53'), +(13266,'2005-08-19 17:31:20',1326,571,'2005-08-21 11:41:20',2,'2006-02-15 21:30:53'), +(13267,'2005-08-19 17:31:36',550,335,'2005-08-21 13:47:36',1,'2006-02-15 21:30:53'), +(13268,'2005-08-19 17:33:50',1166,255,'2005-08-25 17:15:50',2,'2006-02-15 21:30:53'), +(13269,'2005-08-19 17:34:00',2382,461,'2005-08-20 15:17:00',2,'2006-02-15 21:30:53'), +(13270,'2005-08-19 17:41:16',405,159,'2005-08-23 20:22:16',2,'2006-02-15 21:30:53'), +(13271,'2005-08-19 17:42:06',3872,242,'2005-08-27 18:39:06',2,'2006-02-15 21:30:53'), +(13272,'2005-08-19 17:49:13',2531,145,'2005-08-23 15:49:13',2,'2006-02-15 21:30:53'), +(13273,'2005-08-19 17:49:13',4181,433,'2005-08-21 14:15:13',1,'2006-02-15 21:30:53'), +(13274,'2005-08-19 17:50:03',704,272,'2005-08-20 14:39:03',2,'2006-02-15 21:30:53'), +(13275,'2005-08-19 17:53:38',710,377,'2005-08-23 16:29:38',2,'2006-02-15 21:30:53'), +(13276,'2005-08-19 17:53:42',625,516,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'), +(13277,'2005-08-19 17:57:35',3820,316,'2005-08-25 15:45:35',2,'2006-02-15 21:30:53'), +(13278,'2005-08-19 17:57:53',2691,282,'2005-08-22 23:16:53',1,'2006-02-15 21:30:53'), +(13279,'2005-08-19 18:02:18',2472,343,'2005-08-24 22:15:18',2,'2006-02-15 21:30:53'), +(13280,'2005-08-19 18:02:51',218,368,'2005-08-21 23:17:51',2,'2006-02-15 21:30:53'), +(13281,'2005-08-19 18:07:47',113,220,'2005-08-20 21:51:47',2,'2006-02-15 21:30:53'), +(13282,'2005-08-19 18:08:18',4373,59,'2005-08-24 14:08:18',1,'2006-02-15 21:30:53'), +(13283,'2005-08-19 18:10:19',2602,180,'2005-08-23 16:09:19',2,'2006-02-15 21:30:53'), +(13284,'2005-08-19 18:12:31',2128,338,'2005-08-25 21:26:31',2,'2006-02-15 21:30:53'), +(13285,'2005-08-19 18:18:44',2139,182,'2005-08-20 12:33:44',1,'2006-02-15 21:30:53'), +(13286,'2005-08-19 18:28:07',2685,245,'2005-08-22 17:23:07',2,'2006-02-15 21:30:53'), +(13287,'2005-08-19 18:28:24',2716,569,'2005-08-26 20:13:24',2,'2006-02-15 21:30:53'), +(13288,'2005-08-19 18:30:10',3558,162,'2005-08-20 19:20:10',2,'2006-02-15 21:30:53'), +(13289,'2005-08-19 18:31:30',3527,497,'2005-08-20 13:43:30',1,'2006-02-15 21:30:53'), +(13290,'2005-08-19 18:31:50',4174,23,'2005-08-25 15:49:50',2,'2006-02-15 21:30:53'), +(13291,'2005-08-19 18:32:11',1631,243,'2005-08-20 18:22:11',2,'2006-02-15 21:30:53'), +(13292,'2005-08-19 18:35:32',1336,171,'2005-08-22 00:27:32',1,'2006-02-15 21:30:53'), +(13293,'2005-08-19 18:35:52',380,399,'2005-08-23 17:18:52',2,'2006-02-15 21:30:53'), +(13294,'2005-08-19 18:36:35',156,534,'2005-08-20 13:57:35',1,'2006-02-15 21:30:53'), +(13295,'2006-02-14 15:16:03',2408,229,NULL,1,'2006-02-15 21:30:53'), +(13296,'2005-08-19 18:43:53',1728,300,'2005-08-21 23:30:53',2,'2006-02-15 21:30:53'), +(13297,'2005-08-19 18:45:49',3818,359,'2005-08-22 14:58:49',2,'2006-02-15 21:30:53'), +(13298,'2006-02-14 15:16:03',2133,361,NULL,2,'2006-02-15 21:30:53'), +(13299,'2005-08-19 18:46:33',4385,373,'2005-08-22 20:45:33',1,'2006-02-15 21:30:53'), +(13300,'2005-08-19 18:46:56',842,531,'2005-08-28 20:23:56',2,'2006-02-15 21:30:53'), +(13301,'2005-08-19 18:53:15',2261,494,'2005-08-26 21:37:15',1,'2006-02-15 21:30:53'), +(13302,'2005-08-19 18:54:26',4041,51,'2005-08-21 23:01:26',1,'2006-02-15 21:30:53'), +(13303,'2005-08-19 18:55:21',34,184,'2005-08-23 18:49:21',2,'2006-02-15 21:30:53'), +(13304,'2005-08-19 18:56:32',2979,405,'2005-08-23 20:04:32',2,'2006-02-15 21:30:53'), +(13305,'2005-08-19 18:57:05',2386,337,'2005-08-28 22:28:05',1,'2006-02-15 21:30:53'), +(13306,'2005-08-19 18:57:29',2742,229,'2005-08-20 20:09:29',2,'2006-02-15 21:30:53'), +(13307,'2005-08-19 18:58:44',2242,547,'2005-08-22 00:15:44',1,'2006-02-15 21:30:53'), +(13308,'2005-08-19 18:59:42',3189,414,'2005-08-28 13:21:42',2,'2006-02-15 21:30:53'), +(13309,'2005-08-19 19:04:00',2108,91,'2005-08-28 23:08:00',2,'2006-02-15 21:30:53'), +(13310,'2005-08-19 19:05:16',2563,311,'2005-08-23 22:47:16',1,'2006-02-15 21:30:53'), +(13311,'2005-08-19 19:07:09',3890,520,'2005-08-20 23:07:09',1,'2006-02-15 21:30:53'), +(13312,'2005-08-19 19:09:14',2891,418,'2005-08-23 00:50:14',2,'2006-02-15 21:30:53'), +(13313,'2005-08-19 19:11:41',3709,580,'2005-08-21 23:53:41',2,'2006-02-15 21:30:53'), +(13314,'2005-08-19 19:12:43',2899,347,'2005-08-27 00:20:43',2,'2006-02-15 21:30:53'), +(13315,'2005-08-19 19:16:18',3151,54,'2005-08-21 20:58:18',1,'2006-02-15 21:30:53'), +(13316,'2005-08-19 19:23:30',4450,10,'2005-08-22 23:37:30',1,'2006-02-15 21:30:53'), +(13317,'2005-08-19 19:25:42',3349,20,'2005-08-20 20:57:42',2,'2006-02-15 21:30:53'), +(13318,'2005-08-19 19:33:57',1389,413,'2005-08-21 17:52:57',2,'2006-02-15 21:30:53'), +(13319,'2005-08-19 19:35:13',2496,438,'2005-08-27 17:59:13',1,'2006-02-15 21:30:53'), +(13320,'2005-08-19 19:35:33',4522,172,'2005-08-24 20:09:33',2,'2006-02-15 21:30:53'), +(13321,'2005-08-19 19:40:37',4183,280,'2005-08-21 19:09:37',2,'2006-02-15 21:30:53'), +(13322,'2005-08-19 19:43:08',2149,559,'2005-08-24 16:30:08',2,'2006-02-15 21:30:53'), +(13323,'2005-08-19 19:48:07',1055,133,'2005-08-23 15:28:07',1,'2006-02-15 21:30:53'), +(13324,'2005-08-19 19:51:00',4349,564,'2005-08-20 20:26:00',1,'2006-02-15 21:30:53'), +(13325,'2005-08-19 19:52:02',2388,334,'2005-08-22 21:14:02',1,'2006-02-15 21:30:53'), +(13326,'2005-08-19 19:52:52',429,576,'2005-08-20 18:56:52',1,'2006-02-15 21:30:53'), +(13327,'2005-08-19 19:55:45',1808,72,'2005-08-22 15:05:45',2,'2006-02-15 21:30:53'), +(13328,'2005-08-19 19:56:01',605,462,'2005-08-20 22:16:01',2,'2006-02-15 21:30:53'), +(13329,'2005-08-19 19:56:55',3136,373,'2005-08-25 01:19:55',2,'2006-02-15 21:30:53'), +(13330,'2005-08-19 19:59:21',4276,297,'2005-08-20 15:34:21',2,'2006-02-15 21:30:53'), +(13331,'2005-08-19 20:00:25',3867,23,'2005-08-21 17:03:25',1,'2006-02-15 21:30:53'), +(13332,'2005-08-19 20:00:51',3144,503,'2005-08-25 14:30:51',1,'2006-02-15 21:30:53'), +(13333,'2006-02-14 15:16:03',1092,64,NULL,2,'2006-02-15 21:30:53'), +(13334,'2005-08-19 20:02:33',461,379,'2005-08-22 00:45:33',1,'2006-02-15 21:30:53'), +(13335,'2005-08-19 20:03:18',1861,74,'2005-08-24 20:09:18',2,'2006-02-15 21:30:53'), +(13336,'2005-08-19 20:03:22',1011,289,'2005-08-24 23:42:22',1,'2006-02-15 21:30:53'), +(13337,'2005-08-19 20:06:57',3584,374,'2005-08-20 16:31:57',1,'2006-02-15 21:30:53'), +(13338,'2005-08-19 20:09:59',3739,86,'2005-08-23 22:59:59',2,'2006-02-15 21:30:53'), +(13339,'2005-08-19 20:18:36',1428,15,'2005-08-28 21:34:36',1,'2006-02-15 21:30:53'), +(13340,'2005-08-19 20:18:39',4358,45,'2005-08-28 21:06:39',2,'2006-02-15 21:30:53'), +(13341,'2005-08-19 20:18:53',1749,460,'2005-08-27 14:36:53',1,'2006-02-15 21:30:53'), +(13342,'2005-08-19 20:21:36',3476,172,'2005-08-21 16:26:36',1,'2006-02-15 21:30:53'), +(13343,'2005-08-19 20:22:08',1032,591,'2005-08-27 17:21:08',1,'2006-02-15 21:30:53'), +(13344,'2005-08-19 20:22:44',4392,514,'2005-08-25 18:39:44',1,'2006-02-15 21:30:53'), +(13345,'2005-08-19 20:25:24',47,55,'2005-08-27 20:38:24',1,'2006-02-15 21:30:53'), +(13346,'2005-08-19 20:28:21',4541,131,'2005-08-28 00:28:21',2,'2006-02-15 21:30:53'), +(13347,'2005-08-19 20:28:48',4038,562,'2005-08-28 19:33:48',2,'2006-02-15 21:30:53'), +(13348,'2005-08-19 20:31:48',275,456,'2005-08-21 21:01:48',1,'2006-02-15 21:30:53'), +(13349,'2005-08-19 20:43:16',4262,234,'2005-08-20 16:21:16',1,'2006-02-15 21:30:53'), +(13350,'2005-08-19 20:44:00',3523,214,'2005-08-27 01:23:00',2,'2006-02-15 21:30:53'), +(13351,'2006-02-14 15:16:03',4130,42,NULL,2,'2006-02-15 21:30:53'), +(13352,'2005-08-19 20:51:40',2689,80,'2005-08-24 01:22:40',1,'2006-02-15 21:30:53'), +(13353,'2005-08-19 20:53:43',2790,131,'2005-08-25 01:25:43',1,'2006-02-15 21:30:53'), +(13354,'2005-08-19 20:55:23',1356,213,'2005-08-27 20:09:23',2,'2006-02-15 21:30:53'), +(13355,'2005-08-19 20:59:19',585,396,'2005-08-23 21:44:19',1,'2006-02-15 21:30:53'), +(13356,'2005-08-19 21:02:21',2713,324,'2005-08-24 00:31:21',1,'2006-02-15 21:30:53'), +(13357,'2005-08-19 21:02:59',3295,393,'2005-08-25 23:46:59',2,'2006-02-15 21:30:53'), +(13358,'2005-08-19 21:04:20',1510,439,'2005-08-24 20:49:20',2,'2006-02-15 21:30:53'), +(13359,'2005-08-19 21:04:49',4175,434,'2005-08-27 01:46:49',1,'2006-02-15 21:30:53'), +(13360,'2005-08-19 21:05:11',3396,327,'2005-08-24 16:05:11',2,'2006-02-15 21:30:53'), +(13361,'2005-08-19 21:07:22',4289,107,'2005-08-21 21:26:22',2,'2006-02-15 21:30:53'), +(13362,'2005-08-19 21:07:54',869,565,'2005-08-20 17:29:54',2,'2006-02-15 21:30:53'), +(13363,'2005-08-19 21:07:59',588,288,'2005-08-21 17:08:59',1,'2006-02-15 21:30:53'), +(13364,'2005-08-19 21:09:30',2773,236,'2005-08-25 18:37:30',1,'2006-02-15 21:30:53'), +(13365,'2005-08-19 21:12:37',4136,307,'2005-08-25 19:56:37',2,'2006-02-15 21:30:53'), +(13366,'2005-08-19 21:14:45',602,259,'2005-08-21 03:06:45',1,'2006-02-15 21:30:53'), +(13367,'2005-08-19 21:19:27',4569,290,'2005-08-24 15:22:27',2,'2006-02-15 21:30:53'), +(13368,'2005-08-19 21:19:35',1073,342,'2005-08-21 16:12:35',2,'2006-02-15 21:30:53'), +(13369,'2005-08-19 21:19:47',2728,116,'2005-08-24 23:25:47',1,'2006-02-15 21:30:53'), +(13370,'2005-08-19 21:20:11',239,101,'2005-08-25 22:51:11',1,'2006-02-15 21:30:53'), +(13371,'2005-08-19 21:21:47',3401,34,'2005-08-26 16:17:47',2,'2006-02-15 21:30:53'), +(13372,'2005-08-19 21:23:19',3366,150,'2005-08-24 22:12:19',1,'2006-02-15 21:30:53'), +(13373,'2005-08-19 21:23:31',4045,7,'2005-08-25 22:38:31',1,'2006-02-15 21:30:53'), +(13374,'2006-02-14 15:16:03',2721,227,NULL,1,'2006-02-15 21:30:53'), +(13375,'2005-08-19 21:31:31',949,120,'2005-08-29 00:17:31',1,'2006-02-15 21:30:53'), +(13376,'2005-08-19 21:31:45',898,40,'2005-08-22 01:14:45',2,'2006-02-15 21:30:53'), +(13377,'2005-08-19 21:32:23',1316,572,'2005-08-25 22:24:23',1,'2006-02-15 21:30:53'), +(13378,'2005-08-19 21:33:35',2708,368,'2005-08-20 22:47:35',1,'2006-02-15 21:30:53'), +(13379,'2005-08-19 21:33:39',1623,227,'2005-08-22 21:00:39',1,'2006-02-15 21:30:53'), +(13380,'2005-08-19 21:36:58',4250,451,'2005-08-22 23:55:58',1,'2006-02-15 21:30:53'), +(13381,'2005-08-19 21:37:57',2823,21,'2005-08-21 18:07:57',2,'2006-02-15 21:30:53'), +(13382,'2005-08-19 21:38:41',3720,436,'2005-08-28 15:49:41',1,'2006-02-15 21:30:53'), +(13383,'2005-08-19 21:38:44',3193,434,'2005-08-28 23:22:44',2,'2006-02-15 21:30:53'), +(13384,'2005-08-19 21:38:51',1462,440,'2005-08-23 17:55:51',1,'2006-02-15 21:30:53'), +(13385,'2005-08-19 21:39:35',4323,252,'2005-08-22 22:38:35',2,'2006-02-15 21:30:53'), +(13386,'2005-08-19 21:43:58',4476,324,'2005-08-24 20:29:58',2,'2006-02-15 21:30:53'), +(13387,'2005-08-19 21:46:10',123,504,'2005-08-24 01:16:10',1,'2006-02-15 21:30:53'), +(13388,'2005-08-19 21:46:49',942,317,'2005-08-27 16:18:49',1,'2006-02-15 21:30:53'), +(13389,'2005-08-19 21:52:51',3352,257,'2005-08-25 02:38:51',1,'2006-02-15 21:30:53'), +(13390,'2006-02-14 15:16:03',2855,135,NULL,1,'2006-02-15 21:30:53'), +(13391,'2005-08-19 22:01:42',4220,16,'2005-08-24 22:20:42',2,'2006-02-15 21:30:53'), +(13392,'2005-08-19 22:03:22',692,409,'2005-08-28 19:27:22',1,'2006-02-15 21:30:53'), +(13393,'2005-08-19 22:03:46',958,15,'2005-08-28 19:19:46',2,'2006-02-15 21:30:53'), +(13394,'2005-08-19 22:05:19',2597,45,'2005-08-21 23:53:19',1,'2006-02-15 21:30:53'), +(13395,'2005-08-19 22:05:40',53,80,'2005-08-22 01:31:40',2,'2006-02-15 21:30:53'), +(13396,'2005-08-19 22:06:09',4169,517,'2005-08-23 23:26:09',2,'2006-02-15 21:30:53'), +(13397,'2005-08-19 22:06:35',3863,379,'2005-08-29 01:11:35',2,'2006-02-15 21:30:53'), +(13398,'2005-08-19 22:08:48',3376,405,'2005-08-23 03:24:48',1,'2006-02-15 21:30:53'), +(13399,'2005-08-19 22:09:28',2309,21,'2005-08-25 20:25:28',2,'2006-02-15 21:30:53'), +(13400,'2005-08-19 22:11:44',2173,179,'2005-08-20 23:27:44',2,'2006-02-15 21:30:53'), +(13401,'2005-08-19 22:16:16',488,139,'2005-08-25 19:01:16',2,'2006-02-15 21:30:53'), +(13402,'2005-08-19 22:16:53',3264,372,'2005-08-22 22:28:53',1,'2006-02-15 21:30:53'), +(13403,'2005-08-19 22:18:07',3241,3,'2005-08-27 19:23:07',1,'2006-02-15 21:30:53'), +(13404,'2005-08-19 22:18:42',416,414,'2005-08-23 16:29:42',2,'2006-02-15 21:30:53'), +(13405,'2005-08-19 22:20:49',1554,181,'2005-08-28 21:21:49',1,'2006-02-15 21:30:53'), +(13406,'2005-08-19 22:22:01',3031,113,'2005-08-22 18:16:01',1,'2006-02-15 21:30:53'), +(13407,'2005-08-19 22:26:26',2512,131,'2005-08-22 16:34:26',1,'2006-02-15 21:30:53'), +(13408,'2005-08-19 22:34:51',2795,575,'2005-08-21 03:30:51',1,'2006-02-15 21:30:53'), +(13409,'2005-08-19 22:36:26',873,214,'2005-08-22 01:52:26',2,'2006-02-15 21:30:53'), +(13410,'2005-08-19 22:41:44',1421,104,'2005-08-26 18:05:44',2,'2006-02-15 21:30:53'), +(13411,'2005-08-19 22:43:38',4425,21,'2005-08-26 18:29:38',2,'2006-02-15 21:30:53'), +(13412,'2005-08-19 22:46:35',2806,404,'2005-08-26 18:06:35',1,'2006-02-15 21:30:53'), +(13413,'2005-08-19 22:46:46',1501,390,'2005-08-24 22:52:46',1,'2006-02-15 21:30:53'), +(13414,'2005-08-19 22:47:34',4126,438,'2005-08-21 02:50:34',1,'2006-02-15 21:30:53'), +(13415,'2005-08-19 22:48:09',1105,181,'2005-08-25 02:09:09',1,'2006-02-15 21:30:53'), +(13416,'2005-08-19 22:48:48',1075,204,'2005-08-21 22:09:48',2,'2006-02-15 21:30:53'), +(13417,'2005-08-19 22:51:39',92,468,'2005-08-23 03:34:39',1,'2006-02-15 21:30:53'), +(13418,'2005-08-19 22:53:56',2113,246,'2005-08-28 02:05:56',2,'2006-02-15 21:30:53'), +(13419,'2006-02-14 15:16:03',3507,537,NULL,1,'2006-02-15 21:30:53'), +(13420,'2005-08-19 22:57:25',1796,102,'2005-08-28 22:46:25',1,'2006-02-15 21:30:53'), +(13421,'2006-02-14 15:16:03',9,366,NULL,1,'2006-02-15 21:30:53'), +(13422,'2005-08-19 23:07:24',3835,404,'2005-08-28 04:12:24',2,'2006-02-15 21:30:53'), +(13423,'2005-08-19 23:07:42',546,311,'2005-08-26 20:45:42',1,'2006-02-15 21:30:53'), +(13424,'2005-08-19 23:10:09',4340,216,'2005-08-23 02:25:09',1,'2006-02-15 21:30:53'), +(13425,'2005-08-19 23:11:44',2274,340,'2005-08-25 21:19:44',2,'2006-02-15 21:30:53'), +(13426,'2005-08-19 23:15:00',3409,213,'2005-08-21 01:53:00',2,'2006-02-15 21:30:53'), +(13427,'2005-08-19 23:19:02',3120,239,'2005-08-21 18:30:02',1,'2006-02-15 21:30:53'), +(13428,'2006-02-14 15:16:03',106,44,NULL,2,'2006-02-15 21:30:53'), +(13429,'2005-08-19 23:25:37',3677,23,'2005-08-28 01:04:37',2,'2006-02-15 21:30:53'), +(13430,'2005-08-19 23:25:43',2852,381,'2005-08-22 18:41:43',1,'2006-02-15 21:30:53'), +(13431,'2005-08-19 23:28:15',1700,229,'2005-08-25 04:44:15',1,'2006-02-15 21:30:53'), +(13432,'2005-08-19 23:29:06',2216,78,'2005-08-23 00:57:06',1,'2006-02-15 21:30:53'), +(13433,'2005-08-19 23:30:53',1647,171,'2005-08-22 05:18:53',2,'2006-02-15 21:30:53'), +(13434,'2005-08-19 23:34:26',2073,221,'2005-08-23 18:33:26',1,'2006-02-15 21:30:53'), +(13435,'2005-08-19 23:35:44',3919,30,'2005-08-24 18:14:44',2,'2006-02-15 21:30:53'), +(13436,'2005-08-19 23:36:25',2499,29,'2005-08-23 18:38:25',1,'2006-02-15 21:30:53'), +(13437,'2005-08-19 23:37:52',2292,67,'2005-08-28 22:17:52',1,'2006-02-15 21:30:53'), +(13438,'2005-08-19 23:38:02',1750,520,'2005-08-26 21:36:02',1,'2006-02-15 21:30:53'), +(13439,'2005-08-19 23:42:16',3535,551,'2005-08-26 21:24:16',2,'2006-02-15 21:30:53'), +(13440,'2005-08-19 23:42:52',2842,260,'2005-08-25 19:19:52',1,'2006-02-15 21:30:53'), +(13441,'2005-08-19 23:48:23',3188,125,'2005-08-28 23:47:23',1,'2006-02-15 21:30:53'), +(13442,'2005-08-19 23:50:45',2432,356,'2005-08-27 22:01:45',2,'2006-02-15 21:30:53'), +(13443,'2005-08-19 23:53:42',3161,236,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'), +(13444,'2005-08-20 00:00:24',2564,37,'2005-08-21 05:59:24',2,'2006-02-15 21:30:53'), +(13445,'2005-08-20 00:05:33',1630,495,'2005-08-21 21:20:33',1,'2006-02-15 21:30:53'), +(13446,'2005-08-20 00:06:13',3226,488,'2005-08-22 19:56:13',1,'2006-02-15 21:30:53'), +(13447,'2005-08-20 00:09:36',285,542,'2005-08-25 01:22:36',1,'2006-02-15 21:30:53'), +(13448,'2005-08-20 00:12:43',2870,327,'2005-08-25 02:33:43',1,'2006-02-15 21:30:53'), +(13449,'2005-08-20 00:17:01',1297,400,'2005-08-23 20:42:01',2,'2006-02-15 21:30:53'), +(13450,'2005-08-20 00:18:15',135,61,'2005-08-24 19:36:15',1,'2006-02-15 21:30:53'), +(13451,'2005-08-20 00:18:25',3837,6,'2005-08-29 01:08:25',1,'2006-02-15 21:30:53'), +(13452,'2005-08-20 00:20:07',2449,430,'2005-08-25 05:43:07',1,'2006-02-15 21:30:53'), +(13453,'2005-08-20 00:30:51',2203,164,'2005-08-28 18:43:51',2,'2006-02-15 21:30:53'), +(13454,'2005-08-20 00:30:52',1553,430,'2005-08-27 19:45:52',2,'2006-02-15 21:30:53'), +(13455,'2005-08-20 00:32:17',1315,133,'2005-08-26 19:33:17',1,'2006-02-15 21:30:53'), +(13456,'2005-08-20 00:33:19',1644,13,'2005-08-22 01:47:19',1,'2006-02-15 21:30:53'), +(13457,'2005-08-20 00:33:22',1220,256,'2005-08-26 21:37:22',2,'2006-02-15 21:30:53'), +(13458,'2005-08-20 00:35:30',4223,228,'2005-08-21 20:51:30',1,'2006-02-15 21:30:53'), +(13459,'2005-08-20 00:45:40',3666,114,'2005-08-29 02:53:40',2,'2006-02-15 21:30:53'), +(13460,'2005-08-20 00:48:24',244,410,'2005-08-28 04:13:24',2,'2006-02-15 21:30:53'), +(13461,'2005-08-20 00:49:04',2621,421,'2005-08-28 02:49:04',2,'2006-02-15 21:30:53'), +(13462,'2005-08-20 00:49:19',3865,489,'2005-08-26 06:21:19',2,'2006-02-15 21:30:53'), +(13463,'2005-08-20 00:50:54',510,21,'2005-08-28 23:00:54',1,'2006-02-15 21:30:53'), +(13464,'2006-02-14 15:16:03',4292,576,NULL,1,'2006-02-15 21:30:53'), +(13465,'2005-08-20 00:54:14',1305,575,'2005-08-21 20:55:14',2,'2006-02-15 21:30:53'), +(13466,'2005-08-20 00:55:16',3088,262,'2005-08-22 22:48:16',1,'2006-02-15 21:30:53'), +(13467,'2005-08-20 00:56:44',696,373,'2005-08-20 20:16:44',1,'2006-02-15 21:30:53'), +(13468,'2005-08-20 00:56:44',1851,266,'2005-08-29 06:26:44',1,'2006-02-15 21:30:53'), +(13469,'2005-08-20 00:59:36',1410,235,'2005-08-24 22:41:36',1,'2006-02-15 21:30:53'), +(13470,'2005-08-20 01:01:16',3097,141,'2005-08-21 03:19:16',1,'2006-02-15 21:30:53'), +(13471,'2005-08-20 01:02:26',1391,296,'2005-08-25 06:37:26',2,'2006-02-15 21:30:53'), +(13472,'2005-08-20 01:03:31',3074,137,'2005-08-28 02:54:31',1,'2006-02-15 21:30:53'), +(13473,'2005-08-20 01:03:50',381,390,'2005-08-22 02:33:50',2,'2006-02-15 21:30:53'), +(13474,'2005-08-20 01:04:32',1209,116,'2005-08-21 20:26:32',2,'2006-02-15 21:30:53'), +(13475,'2005-08-20 01:05:05',3214,68,'2005-08-20 20:22:05',2,'2006-02-15 21:30:53'), +(13476,'2005-08-20 01:06:04',2866,7,'2005-08-24 23:56:04',1,'2006-02-15 21:30:53'), +(13477,'2005-08-20 01:07:00',1442,222,'2005-08-26 02:47:00',1,'2006-02-15 21:30:53'), +(13478,'2005-08-20 01:07:14',2190,466,'2005-08-22 03:41:14',1,'2006-02-15 21:30:53'), +(13479,'2005-08-20 01:09:11',1262,87,'2005-08-26 05:35:11',2,'2006-02-15 21:30:53'), +(13480,'2005-08-20 01:10:27',206,16,'2005-08-27 22:18:27',2,'2006-02-15 21:30:53'), +(13481,'2005-08-20 01:11:12',2678,157,'2005-08-26 23:07:12',2,'2006-02-15 21:30:53'), +(13482,'2005-08-20 01:14:30',1627,183,'2005-08-24 04:57:30',1,'2006-02-15 21:30:53'), +(13483,'2005-08-20 01:16:38',2550,441,'2005-08-21 20:43:38',2,'2006-02-15 21:30:53'), +(13484,'2005-08-20 01:16:52',1533,152,'2005-08-22 23:47:52',2,'2006-02-15 21:30:53'), +(13485,'2005-08-20 01:20:14',3802,379,'2005-08-22 01:28:14',2,'2006-02-15 21:30:53'), +(13486,'2006-02-14 15:16:03',4460,274,NULL,1,'2006-02-15 21:30:53'), +(13487,'2005-08-20 01:27:05',2609,458,'2005-08-24 00:41:05',2,'2006-02-15 21:30:53'), +(13488,'2005-08-20 01:28:42',867,444,'2005-08-25 06:17:42',2,'2006-02-15 21:30:53'), +(13489,'2005-08-20 01:29:06',2934,443,'2005-08-27 21:11:06',1,'2006-02-15 21:30:53'), +(13490,'2005-08-20 01:29:29',238,18,'2005-08-21 22:36:29',2,'2006-02-15 21:30:53'), +(13491,'2005-08-20 01:30:56',2503,258,'2005-08-28 23:26:56',2,'2006-02-15 21:30:53'), +(13492,'2005-08-20 01:32:04',1155,462,'2005-08-29 02:14:04',2,'2006-02-15 21:30:53'), +(13493,'2005-08-20 01:33:36',2927,37,'2005-08-24 06:32:36',1,'2006-02-15 21:30:53'), +(13494,'2005-08-20 01:36:34',1632,414,'2005-08-21 06:52:34',1,'2006-02-15 21:30:53'), +(13495,'2005-08-20 01:40:25',3881,92,'2005-08-23 06:32:25',2,'2006-02-15 21:30:53'), +(13496,'2005-08-20 01:42:29',3040,454,'2005-08-29 06:47:29',2,'2006-02-15 21:30:53'), +(13497,'2005-08-20 01:46:38',1296,481,'2005-08-26 05:37:38',2,'2006-02-15 21:30:53'), +(13498,'2005-08-20 01:51:23',1603,578,'2005-08-24 05:32:23',1,'2006-02-15 21:30:53'), +(13499,'2005-08-20 01:52:30',1893,300,'2005-08-28 04:57:30',1,'2006-02-15 21:30:53'), +(13500,'2005-08-20 01:54:39',1353,577,'2005-08-25 21:23:39',1,'2006-02-15 21:30:53'), +(13501,'2005-08-20 01:56:20',4369,390,'2005-08-22 23:07:20',2,'2006-02-15 21:30:53'), +(13502,'2005-08-20 01:58:15',1324,309,'2005-08-21 20:21:15',1,'2006-02-15 21:30:53'), +(13503,'2005-08-20 02:00:33',453,15,'2005-08-28 21:03:33',1,'2006-02-15 21:30:53'), +(13504,'2005-08-20 02:01:48',4322,293,'2005-08-25 21:52:48',2,'2006-02-15 21:30:53'), +(13505,'2005-08-20 02:05:57',914,536,'2005-08-23 05:52:57',1,'2006-02-15 21:30:53'), +(13506,'2005-08-20 02:07:06',1334,261,'2005-08-26 08:06:06',1,'2006-02-15 21:30:53'), +(13507,'2005-08-20 02:10:27',3324,478,'2005-08-23 04:03:27',2,'2006-02-15 21:30:53'), +(13508,'2005-08-20 02:12:54',4120,408,'2005-08-28 21:47:54',2,'2006-02-15 21:30:53'), +(13509,'2005-08-20 02:14:16',3698,128,'2005-08-22 06:36:16',2,'2006-02-15 21:30:53'), +(13510,'2005-08-20 02:18:30',691,107,'2005-08-27 01:33:30',1,'2006-02-15 21:30:53'), +(13511,'2005-08-20 02:21:40',2973,23,'2005-08-21 03:26:40',1,'2006-02-15 21:30:53'), +(13512,'2005-08-20 02:27:13',4508,62,'2005-08-28 04:40:13',2,'2006-02-15 21:30:53'), +(13513,'2005-08-20 02:27:53',1653,454,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'), +(13514,'2005-08-20 02:28:09',3407,96,'2005-08-25 00:41:09',1,'2006-02-15 21:30:53'), +(13515,'2005-08-20 02:29:47',3438,194,'2005-08-23 08:12:47',2,'2006-02-15 21:30:53'), +(13516,'2005-08-20 02:32:45',4286,95,'2005-08-27 04:38:45',1,'2006-02-15 21:30:53'), +(13517,'2005-08-20 02:33:17',533,186,'2005-08-23 22:40:17',2,'2006-02-15 21:30:53'), +(13518,'2005-08-20 02:36:17',352,528,'2005-08-24 08:06:17',1,'2006-02-15 21:30:53'), +(13519,'2005-08-20 02:37:07',182,12,'2005-08-23 01:26:07',2,'2006-02-15 21:30:53'), +(13520,'2005-08-20 02:41:46',3326,74,'2005-08-22 01:53:46',1,'2006-02-15 21:30:53'), +(13521,'2005-08-20 02:42:28',2586,384,'2005-08-22 06:12:28',1,'2006-02-15 21:30:53'), +(13522,'2005-08-20 02:44:06',2940,343,'2005-08-28 05:30:06',1,'2006-02-15 21:30:53'), +(13523,'2005-08-20 02:47:03',163,572,'2005-08-28 07:43:03',1,'2006-02-15 21:30:53'), +(13524,'2005-08-20 02:48:43',4557,593,'2005-08-27 03:14:43',2,'2006-02-15 21:30:53'), +(13525,'2005-08-20 02:50:44',3514,111,'2005-08-26 22:58:44',2,'2006-02-15 21:30:53'), +(13526,'2005-08-20 02:58:42',1966,277,'2005-08-27 22:36:42',2,'2006-02-15 21:30:53'), +(13527,'2005-08-20 03:00:47',4424,521,'2005-08-25 01:03:47',1,'2006-02-15 21:30:53'), +(13528,'2005-08-20 03:03:31',1847,202,'2005-08-26 03:09:31',1,'2006-02-15 21:30:53'), +(13529,'2005-08-20 03:07:47',1979,193,'2005-08-21 21:50:47',1,'2006-02-15 21:30:53'), +(13530,'2005-08-20 03:12:43',597,156,'2005-08-23 09:01:43',2,'2006-02-15 21:30:53'), +(13531,'2005-08-20 03:26:10',2778,156,'2005-08-25 03:41:10',1,'2006-02-15 21:30:53'), +(13532,'2005-08-20 03:29:28',1433,168,'2005-08-23 22:53:28',2,'2006-02-15 21:30:53'), +(13533,'2005-08-20 03:30:00',1801,436,'2005-08-27 05:53:00',1,'2006-02-15 21:30:53'), +(13534,'2006-02-14 15:16:03',2476,75,NULL,1,'2006-02-15 21:30:53'), +(13535,'2005-08-20 03:30:25',1563,86,'2005-08-28 04:35:25',1,'2006-02-15 21:30:53'), +(13536,'2005-08-20 03:35:16',667,183,'2005-08-25 04:06:16',2,'2006-02-15 21:30:53'), +(13537,'2005-08-20 03:39:15',2521,418,'2005-08-23 22:03:15',2,'2006-02-15 21:30:53'), +(13538,'2006-02-14 15:16:03',581,279,NULL,1,'2006-02-15 21:30:53'), +(13539,'2005-08-20 03:40:27',3110,518,'2005-08-27 07:15:27',1,'2006-02-15 21:30:53'), +(13540,'2005-08-20 03:41:23',3785,557,'2005-08-27 09:09:23',2,'2006-02-15 21:30:53'), +(13541,'2005-08-20 03:41:41',1363,15,'2005-08-24 23:14:41',1,'2006-02-15 21:30:53'), +(13542,'2005-08-20 03:41:57',4543,147,'2005-08-29 03:21:57',2,'2006-02-15 21:30:53'), +(13543,'2005-08-20 03:43:13',2142,163,'2005-08-29 07:14:13',2,'2006-02-15 21:30:53'), +(13544,'2005-08-20 03:44:26',58,538,'2005-08-27 22:11:26',1,'2006-02-15 21:30:53'), +(13545,'2005-08-20 03:50:15',615,417,'2005-08-27 22:24:15',1,'2006-02-15 21:30:53'), +(13546,'2005-08-20 03:50:24',2492,390,'2005-08-28 03:04:24',2,'2006-02-15 21:30:53'), +(13547,'2005-08-20 03:53:16',3122,456,'2005-08-25 04:02:16',1,'2006-02-15 21:30:53'), +(13548,'2005-08-20 03:53:20',4389,319,'2005-08-27 21:54:20',1,'2006-02-15 21:30:53'), +(13549,'2005-08-20 03:58:41',508,274,'2005-08-28 22:49:41',1,'2006-02-15 21:30:53'), +(13550,'2005-08-20 03:58:51',208,206,'2005-08-28 00:45:51',2,'2006-02-15 21:30:53'), +(13551,'2005-08-20 04:00:30',1049,503,'2005-08-21 06:26:30',2,'2006-02-15 21:30:53'), +(13552,'2005-08-20 04:03:51',758,578,'2005-08-23 02:48:51',2,'2006-02-15 21:30:53'), +(13553,'2005-08-20 04:07:21',4407,314,'2005-08-28 09:55:21',1,'2006-02-15 21:30:53'), +(13554,'2005-08-20 04:08:39',2648,569,'2005-08-28 07:11:39',2,'2006-02-15 21:30:53'), +(13555,'2005-08-20 04:09:50',3176,93,'2005-08-29 05:20:50',1,'2006-02-15 21:30:53'), +(13556,'2005-08-20 04:10:26',3914,266,'2005-08-26 06:45:26',2,'2006-02-15 21:30:53'), +(13557,'2005-08-20 04:12:41',2290,23,'2005-08-21 02:33:41',2,'2006-02-15 21:30:53'), +(13558,'2005-08-20 04:13:17',1551,564,'2005-08-24 06:38:17',1,'2006-02-15 21:30:53'), +(13559,'2005-08-20 04:16:07',2413,444,'2005-08-24 23:23:07',1,'2006-02-15 21:30:53'), +(13560,'2005-08-20 04:17:16',820,56,'2005-08-28 08:38:16',1,'2006-02-15 21:30:53'), +(13561,'2006-02-14 15:16:03',3202,530,NULL,1,'2006-02-15 21:30:53'), +(13562,'2005-08-20 04:31:45',4547,36,'2005-08-25 09:59:45',1,'2006-02-15 21:30:53'), +(13563,'2005-08-20 04:33:31',599,366,'2005-08-24 07:08:31',2,'2006-02-15 21:30:53'), +(13564,'2005-08-20 04:34:46',678,36,'2005-08-28 23:18:46',2,'2006-02-15 21:30:53'), +(13565,'2005-08-20 04:38:52',3378,214,'2005-08-27 07:17:52',1,'2006-02-15 21:30:53'), +(13566,'2005-08-20 04:45:32',4397,558,'2005-08-28 02:12:32',2,'2006-02-15 21:30:53'), +(13567,'2005-08-20 04:49:21',543,242,'2005-08-26 10:27:21',1,'2006-02-15 21:30:53'), +(13568,'2005-08-20 05:02:46',1243,151,'2005-08-27 03:12:46',2,'2006-02-15 21:30:53'), +(13569,'2005-08-20 05:02:59',1934,496,'2005-08-28 00:51:59',1,'2006-02-15 21:30:53'), +(13570,'2005-08-20 05:04:57',2808,188,'2005-08-24 06:19:57',2,'2006-02-15 21:30:53'), +(13571,'2005-08-20 05:05:14',1251,458,'2005-08-25 03:59:14',2,'2006-02-15 21:30:53'), +(13572,'2005-08-20 05:07:27',660,11,'2005-08-23 23:33:27',1,'2006-02-15 21:30:53'), +(13573,'2005-08-20 05:10:14',3032,59,'2005-08-22 00:59:14',1,'2006-02-15 21:30:53'), +(13574,'2005-08-20 05:10:39',2383,552,'2005-08-21 02:21:39',2,'2006-02-15 21:30:53'), +(13575,'2005-08-20 05:15:20',2729,339,'2005-08-28 07:36:20',2,'2006-02-15 21:30:53'), +(13576,'2005-08-20 05:19:56',2669,223,'2005-08-22 09:08:56',2,'2006-02-15 21:30:53'), +(13577,'2006-02-14 15:16:03',3844,448,NULL,2,'2006-02-15 21:30:53'), +(13578,'2006-02-14 15:16:03',4301,352,NULL,2,'2006-02-15 21:30:53'), +(13579,'2005-08-20 05:22:06',4237,333,'2005-08-28 02:33:06',2,'2006-02-15 21:30:53'), +(13580,'2005-08-20 05:23:34',4419,526,'2005-08-23 02:45:34',1,'2006-02-15 21:30:53'), +(13581,'2005-08-20 05:26:15',1753,119,'2005-08-21 11:07:15',2,'2006-02-15 21:30:53'), +(13582,'2005-08-20 05:28:11',211,166,'2005-08-23 02:06:11',2,'2006-02-15 21:30:53'), +(13583,'2005-08-20 05:29:45',176,74,'2005-08-26 06:49:45',1,'2006-02-15 21:30:53'), +(13584,'2006-02-14 15:16:03',3966,548,NULL,2,'2006-02-15 21:30:53'), +(13585,'2005-08-20 05:32:23',3314,470,'2005-08-27 23:36:23',1,'2006-02-15 21:30:53'), +(13586,'2005-08-20 05:40:33',4544,445,'2005-08-25 01:32:33',2,'2006-02-15 21:30:53'), +(13587,'2006-02-14 15:16:03',2455,431,NULL,2,'2006-02-15 21:30:53'), +(13588,'2005-08-20 05:47:11',702,279,'2005-08-28 02:45:11',2,'2006-02-15 21:30:53'), +(13589,'2005-08-20 05:47:25',3216,574,'2005-08-23 01:29:25',2,'2006-02-15 21:30:53'), +(13590,'2005-08-20 05:48:59',4417,264,'2005-08-25 00:44:59',2,'2006-02-15 21:30:53'), +(13591,'2005-08-20 05:50:05',3089,390,'2005-08-27 08:43:05',2,'2006-02-15 21:30:53'), +(13592,'2005-08-20 05:50:35',1509,470,'2005-08-23 04:52:35',1,'2006-02-15 21:30:53'), +(13593,'2005-08-20 05:50:52',261,585,'2005-08-27 05:28:52',2,'2006-02-15 21:30:53'), +(13594,'2005-08-20 05:53:31',3424,7,'2005-08-23 09:01:31',1,'2006-02-15 21:30:53'), +(13595,'2005-08-20 05:54:27',673,545,'2005-08-29 01:25:27',1,'2006-02-15 21:30:53'), +(13596,'2005-08-20 05:58:58',482,513,'2005-08-27 08:35:58',1,'2006-02-15 21:30:53'), +(13597,'2005-08-20 05:59:05',3697,72,'2005-08-24 05:38:05',2,'2006-02-15 21:30:53'), +(13598,'2005-08-20 05:59:17',2803,259,'2005-08-29 01:02:17',1,'2006-02-15 21:30:53'), +(13599,'2005-08-20 06:00:03',3333,150,'2005-08-29 07:56:03',1,'2006-02-15 21:30:53'), +(13600,'2005-08-20 06:00:25',431,528,'2005-08-28 02:39:25',1,'2006-02-15 21:30:53'), +(13601,'2005-08-20 06:01:15',2166,189,'2005-08-29 06:14:15',2,'2006-02-15 21:30:53'), +(13602,'2005-08-20 06:02:02',2805,348,'2005-08-27 04:51:02',1,'2006-02-15 21:30:53'), +(13603,'2005-08-20 06:02:48',937,362,'2005-08-29 09:39:48',1,'2006-02-15 21:30:53'), +(13604,'2005-08-20 06:03:33',4352,353,'2005-08-21 07:06:33',1,'2006-02-15 21:30:53'), +(13605,'2005-08-20 06:06:17',4446,522,'2005-08-26 00:53:17',2,'2006-02-15 21:30:53'), +(13606,'2005-08-20 06:07:01',83,146,'2005-08-27 04:59:01',2,'2006-02-15 21:30:53'), +(13607,'2005-08-20 06:08:42',2692,491,'2005-08-21 01:59:42',2,'2006-02-15 21:30:53'), +(13608,'2005-08-20 06:10:44',4110,193,'2005-08-24 07:08:44',1,'2006-02-15 21:30:53'), +(13609,'2005-08-20 06:11:51',299,328,'2005-08-23 04:13:51',2,'2006-02-15 21:30:53'), +(13610,'2005-08-20 06:14:12',2526,3,'2005-08-26 00:44:12',2,'2006-02-15 21:30:53'), +(13611,'2005-08-20 06:20:42',1460,112,'2005-08-28 10:07:42',1,'2006-02-15 21:30:53'), +(13612,'2005-08-20 06:22:08',675,505,'2005-08-28 02:22:08',1,'2006-02-15 21:30:53'), +(13613,'2005-08-20 06:23:53',2415,201,'2005-08-29 11:40:53',2,'2006-02-15 21:30:53'), +(13614,'2005-08-20 06:28:37',3736,381,'2005-08-22 07:54:37',2,'2006-02-15 21:30:53'), +(13615,'2005-08-20 06:28:53',1864,539,'2005-08-27 11:40:53',2,'2006-02-15 21:30:53'), +(13616,'2005-08-20 06:30:33',1694,194,'2005-08-27 09:29:33',2,'2006-02-15 21:30:53'), +(13617,'2005-08-20 06:35:30',4059,526,'2005-08-29 09:03:30',1,'2006-02-15 21:30:53'), +(13618,'2005-08-20 06:36:46',390,390,'2005-08-29 05:17:46',2,'2006-02-15 21:30:53'), +(13619,'2005-08-20 06:39:26',1068,365,'2005-08-23 05:22:26',2,'2006-02-15 21:30:53'), +(13620,'2005-08-20 06:41:27',2361,92,'2005-08-24 11:02:27',1,'2006-02-15 21:30:53'), +(13621,'2005-08-20 06:43:44',3754,581,'2005-08-23 06:25:44',2,'2006-02-15 21:30:53'), +(13622,'2005-08-20 06:45:32',3355,335,'2005-08-25 02:40:32',1,'2006-02-15 21:30:53'), +(13623,'2005-08-20 06:49:46',3948,321,'2005-08-25 05:19:46',2,'2006-02-15 21:30:53'), +(13624,'2005-08-20 06:51:02',430,63,'2005-08-29 02:39:02',1,'2006-02-15 21:30:53'), +(13625,'2005-08-20 06:52:03',60,422,'2005-08-27 07:43:03',1,'2006-02-15 21:30:53'), +(13626,'2005-08-20 06:55:24',594,524,'2005-08-29 12:32:24',1,'2006-02-15 21:30:53'), +(13627,'2005-08-20 06:59:00',603,329,'2005-08-29 11:43:00',2,'2006-02-15 21:30:53'), +(13628,'2005-08-20 07:03:53',1006,500,'2005-08-22 11:27:53',2,'2006-02-15 21:30:53'), +(13629,'2005-08-20 07:04:07',1834,392,'2005-08-25 12:36:07',1,'2006-02-15 21:30:53'), +(13630,'2005-08-20 07:05:56',3346,244,'2005-08-29 04:15:56',1,'2006-02-15 21:30:53'), +(13631,'2005-08-20 07:07:37',1015,535,'2005-08-22 04:01:37',1,'2006-02-15 21:30:53'), +(13632,'2005-08-20 07:10:52',4008,409,'2005-08-29 10:19:52',2,'2006-02-15 21:30:53'), +(13633,'2005-08-20 07:13:47',3227,301,'2005-08-24 11:25:47',1,'2006-02-15 21:30:53'), +(13634,'2005-08-20 07:16:45',850,411,'2005-08-22 03:38:45',1,'2006-02-15 21:30:53'), +(13635,'2005-08-20 07:17:35',669,286,'2005-08-29 06:27:35',1,'2006-02-15 21:30:53'), +(13636,'2005-08-20 07:20:09',1467,349,'2005-08-23 09:58:09',1,'2006-02-15 21:30:53'), +(13637,'2005-08-20 07:21:15',2298,342,'2005-08-24 10:13:15',2,'2006-02-15 21:30:53'), +(13638,'2005-08-20 07:21:15',3255,493,'2005-08-23 11:09:15',2,'2006-02-15 21:30:53'), +(13639,'2005-08-20 07:22:07',2489,562,'2005-08-23 11:24:07',2,'2006-02-15 21:30:53'), +(13640,'2005-08-20 07:22:53',3427,541,'2005-08-21 11:54:53',2,'2006-02-15 21:30:53'), +(13641,'2005-08-20 07:34:42',367,281,'2005-08-26 05:18:42',1,'2006-02-15 21:30:53'), +(13642,'2005-08-20 07:42:17',4415,452,'2005-08-29 10:49:17',1,'2006-02-15 21:30:53'), +(13643,'2005-08-20 07:42:24',2443,398,'2005-08-26 09:13:24',2,'2006-02-15 21:30:53'), +(13644,'2005-08-20 07:46:30',970,464,'2005-08-27 01:54:30',1,'2006-02-15 21:30:53'), +(13645,'2005-08-20 07:47:05',157,387,'2005-08-23 02:58:05',1,'2006-02-15 21:30:53'), +(13646,'2005-08-20 07:47:08',1347,242,'2005-08-29 08:33:08',1,'2006-02-15 21:30:53'), +(13647,'2005-08-20 07:48:07',3269,519,'2005-08-28 07:56:07',2,'2006-02-15 21:30:53'), +(13648,'2005-08-20 07:48:10',3921,596,'2005-08-22 12:15:10',2,'2006-02-15 21:30:53'), +(13649,'2005-08-20 07:48:38',1495,259,'2005-08-23 07:43:38',2,'2006-02-15 21:30:53'), +(13650,'2005-08-20 07:49:06',2644,322,'2005-08-28 10:11:06',1,'2006-02-15 21:30:53'), +(13651,'2005-08-20 07:50:08',1082,256,'2005-08-21 07:11:08',1,'2006-02-15 21:30:53'), +(13652,'2005-08-20 07:52:34',2548,67,'2005-08-23 08:58:34',2,'2006-02-15 21:30:53'), +(13653,'2005-08-20 07:54:54',4029,129,'2005-08-29 06:43:54',1,'2006-02-15 21:30:53'), +(13654,'2005-08-20 07:58:21',1582,469,'2005-08-21 09:40:21',2,'2006-02-15 21:30:53'), +(13655,'2005-08-20 07:59:13',4294,207,'2005-08-22 12:04:13',1,'2006-02-15 21:30:53'), +(13656,'2005-08-20 08:01:07',3180,411,'2005-08-28 13:16:07',2,'2006-02-15 21:30:53'), +(13657,'2005-08-20 08:01:39',1752,414,'2005-08-23 07:31:39',1,'2006-02-15 21:30:53'), +(13658,'2005-08-20 08:02:22',3827,487,'2005-08-28 06:00:22',1,'2006-02-15 21:30:53'), +(13659,'2005-08-20 08:05:52',3610,520,'2005-08-24 12:38:52',1,'2006-02-15 21:30:53'), +(13660,'2005-08-20 08:05:56',3972,72,'2005-08-22 13:22:56',1,'2006-02-15 21:30:53'), +(13661,'2005-08-20 08:05:59',3996,471,'2005-08-29 12:15:59',1,'2006-02-15 21:30:53'), +(13662,'2005-08-20 08:11:58',3880,592,'2005-08-26 13:34:58',1,'2006-02-15 21:30:53'), +(13663,'2005-08-20 08:12:33',3969,240,'2005-08-27 03:23:33',2,'2006-02-15 21:30:53'), +(13664,'2005-08-20 08:18:36',3750,264,'2005-08-26 11:04:36',1,'2006-02-15 21:30:53'), +(13665,'2005-08-20 08:19:20',117,291,'2005-08-28 06:26:20',1,'2006-02-15 21:30:53'), +(13666,'2005-08-20 08:20:19',2007,451,'2005-08-22 03:22:19',1,'2006-02-15 21:30:53'), +(13667,'2005-08-20 08:25:34',3856,280,'2005-08-24 07:04:34',2,'2006-02-15 21:30:53'), +(13668,'2005-08-20 08:26:06',3659,123,'2005-08-25 05:52:06',2,'2006-02-15 21:30:53'), +(13669,'2005-08-20 08:26:32',4504,261,'2005-08-27 08:10:32',2,'2006-02-15 21:30:53'), +(13670,'2005-08-20 08:27:01',1951,147,'2005-08-29 05:59:01',2,'2006-02-15 21:30:53'), +(13671,'2005-08-20 08:27:03',1473,201,'2005-08-26 03:56:03',1,'2006-02-15 21:30:53'), +(13672,'2005-08-20 08:27:27',2068,201,'2005-08-22 06:15:27',2,'2006-02-15 21:30:53'), +(13673,'2005-08-20 08:27:30',343,332,'2005-08-26 05:14:30',1,'2006-02-15 21:30:53'), +(13674,'2005-08-20 08:30:54',3397,36,'2005-08-22 02:59:54',1,'2006-02-15 21:30:53'), +(13675,'2005-08-20 08:32:51',350,493,'2005-08-27 03:52:51',2,'2006-02-15 21:30:53'), +(13676,'2005-08-20 08:33:21',3170,103,'2005-08-25 02:51:21',1,'2006-02-15 21:30:53'), +(13677,'2005-08-20 08:34:41',4013,15,'2005-08-26 11:51:41',2,'2006-02-15 21:30:53'), +(13678,'2005-08-20 08:38:24',1118,337,'2005-08-27 13:54:24',2,'2006-02-15 21:30:53'), +(13679,'2005-08-20 08:39:34',2878,229,'2005-08-29 10:06:34',2,'2006-02-15 21:30:53'), +(13680,'2005-08-20 08:44:06',2822,70,'2005-08-27 09:58:06',2,'2006-02-15 21:30:53'), +(13681,'2005-08-20 08:47:37',3039,328,'2005-08-27 09:47:37',1,'2006-02-15 21:30:53'), +(13682,'2005-08-20 08:50:39',287,30,'2005-08-21 09:05:39',2,'2006-02-15 21:30:53'), +(13683,'2005-08-20 08:54:55',1729,255,'2005-08-24 14:10:55',2,'2006-02-15 21:30:53'), +(13684,'2005-08-20 08:55:53',2213,348,'2005-08-25 08:11:53',1,'2006-02-15 21:30:53'), +(13685,'2005-08-20 08:57:11',3336,260,'2005-08-27 07:26:11',1,'2006-02-15 21:30:53'), +(13686,'2005-08-20 08:57:28',666,306,'2005-08-24 07:21:28',2,'2006-02-15 21:30:53'), +(13687,'2005-08-20 08:57:51',3629,290,'2005-08-22 07:02:51',2,'2006-02-15 21:30:53'), +(13688,'2005-08-20 08:59:38',1116,572,'2005-08-28 04:54:38',2,'2006-02-15 21:30:53'), +(13689,'2005-08-20 09:04:30',819,336,'2005-08-22 05:38:30',2,'2006-02-15 21:30:53'), +(13690,'2005-08-20 09:07:27',3721,513,'2005-08-23 08:03:27',2,'2006-02-15 21:30:53'), +(13691,'2005-08-20 09:07:39',676,548,'2005-08-28 15:03:39',1,'2006-02-15 21:30:53'), +(13692,'2005-08-20 09:07:52',1928,65,'2005-08-21 05:17:52',1,'2006-02-15 21:30:53'), +(13693,'2005-08-20 09:11:42',933,552,'2005-08-24 15:00:42',2,'2006-02-15 21:30:53'), +(13694,'2005-08-20 09:13:23',3654,454,'2005-08-28 06:10:23',1,'2006-02-15 21:30:53'), +(13695,'2005-08-20 09:13:25',3114,258,'2005-08-27 11:51:25',2,'2006-02-15 21:30:53'), +(13696,'2005-08-20 09:16:15',1279,206,'2005-08-21 03:33:15',1,'2006-02-15 21:30:53'), +(13697,'2005-08-20 09:21:08',291,76,'2005-08-29 12:33:08',1,'2006-02-15 21:30:53'), +(13698,'2005-08-20 09:24:26',3829,364,'2005-08-22 05:04:26',2,'2006-02-15 21:30:53'), +(13699,'2005-08-20 09:26:14',3913,21,'2005-08-29 08:16:14',2,'2006-02-15 21:30:53'), +(13700,'2005-08-20 09:26:17',4229,265,'2005-08-27 05:49:17',2,'2006-02-15 21:30:53'), +(13701,'2005-08-20 09:27:05',1643,564,'2005-08-21 14:54:05',1,'2006-02-15 21:30:53'), +(13702,'2005-08-20 09:27:20',700,296,'2005-08-29 15:04:20',2,'2006-02-15 21:30:53'), +(13703,'2005-08-20 09:29:35',2296,356,'2005-08-27 08:03:35',2,'2006-02-15 21:30:53'), +(13704,'2005-08-20 09:32:04',3373,4,'2005-08-23 14:29:04',2,'2006-02-15 21:30:53'), +(13705,'2005-08-20 09:32:23',3663,451,'2005-08-21 13:51:23',1,'2006-02-15 21:30:53'), +(13706,'2005-08-20 09:32:56',3005,363,'2005-08-28 05:22:56',2,'2006-02-15 21:30:53'), +(13707,'2005-08-20 09:33:58',826,232,'2005-08-23 07:44:58',2,'2006-02-15 21:30:53'), +(13708,'2005-08-20 09:34:07',2236,218,'2005-08-26 10:17:07',1,'2006-02-15 21:30:53'), +(13709,'2005-08-20 09:34:51',4089,422,'2005-08-23 04:13:51',1,'2006-02-15 21:30:53'), +(13710,'2005-08-20 09:35:20',756,333,'2005-08-21 05:29:20',2,'2006-02-15 21:30:53'), +(13711,'2005-08-20 09:35:20',2318,453,'2005-08-28 09:06:20',2,'2006-02-15 21:30:53'), +(13712,'2005-08-20 09:38:04',1039,581,'2005-08-21 06:10:04',1,'2006-02-15 21:30:53'), +(13713,'2006-02-14 15:16:03',3075,267,NULL,1,'2006-02-15 21:30:53'), +(13714,'2005-08-20 09:41:09',2659,277,'2005-08-22 06:28:09',1,'2006-02-15 21:30:53'), +(13715,'2005-08-20 09:43:06',1028,292,'2005-08-27 10:22:06',1,'2006-02-15 21:30:53'), +(13716,'2005-08-20 09:48:32',86,386,'2005-08-26 07:20:32',2,'2006-02-15 21:30:53'), +(13717,'2005-08-20 09:50:52',1629,300,'2005-08-28 11:32:52',2,'2006-02-15 21:30:53'), +(13718,'2005-08-20 09:53:44',205,19,'2005-08-29 13:46:44',2,'2006-02-15 21:30:53'), +(13719,'2006-02-14 15:16:03',3547,208,NULL,1,'2006-02-15 21:30:53'), +(13720,'2005-08-20 10:01:39',813,427,'2005-08-27 08:26:39',1,'2006-02-15 21:30:53'), +(13721,'2005-08-20 10:02:59',1444,297,'2005-08-24 07:02:59',2,'2006-02-15 21:30:53'), +(13722,'2005-08-20 10:03:45',1581,422,'2005-08-25 04:26:45',1,'2006-02-15 21:30:53'), +(13723,'2005-08-20 10:05:30',411,110,'2005-08-27 07:43:30',2,'2006-02-15 21:30:53'), +(13724,'2005-08-20 10:07:28',200,80,'2005-08-24 07:47:28',2,'2006-02-15 21:30:53'), +(13725,'2005-08-20 10:08:27',3861,306,'2005-08-28 06:52:27',2,'2006-02-15 21:30:53'), +(13726,'2005-08-20 10:08:40',2258,214,'2005-08-23 14:58:40',1,'2006-02-15 21:30:53'), +(13727,'2005-08-20 10:08:53',4201,85,'2005-08-27 09:30:53',1,'2006-02-15 21:30:53'), +(13728,'2005-08-20 10:11:07',1962,157,'2005-08-23 10:32:07',1,'2006-02-15 21:30:53'), +(13729,'2005-08-20 10:17:08',4108,415,'2005-08-28 15:35:08',1,'2006-02-15 21:30:53'), +(13730,'2005-08-20 10:17:09',1330,548,'2005-08-28 10:45:09',1,'2006-02-15 21:30:53'), +(13731,'2005-08-20 10:22:08',1133,450,'2005-08-21 12:04:08',2,'2006-02-15 21:30:53'), +(13732,'2005-08-20 10:24:41',1138,17,'2005-08-22 04:44:41',1,'2006-02-15 21:30:53'), +(13733,'2005-08-20 10:25:12',3994,85,'2005-08-21 10:49:12',2,'2006-02-15 21:30:53'), +(13734,'2005-08-20 10:29:57',4561,374,'2005-08-25 14:41:57',2,'2006-02-15 21:30:53'), +(13735,'2005-08-20 10:31:01',1813,35,'2005-08-26 05:00:01',1,'2006-02-15 21:30:53'), +(13736,'2005-08-20 10:31:23',3369,32,'2005-08-28 06:51:23',1,'2006-02-15 21:30:53'), +(13737,'2005-08-20 10:41:50',4319,200,'2005-08-25 14:33:50',2,'2006-02-15 21:30:53'), +(13738,'2005-08-20 10:42:42',2748,273,'2005-08-25 09:32:42',1,'2006-02-15 21:30:53'), +(13739,'2005-08-20 10:45:10',3027,441,'2005-08-28 08:46:10',2,'2006-02-15 21:30:53'), +(13740,'2005-08-20 10:48:43',4366,21,'2005-08-29 15:30:43',1,'2006-02-15 21:30:53'), +(13741,'2005-08-20 10:48:47',3887,195,'2005-08-21 11:19:47',1,'2006-02-15 21:30:53'), +(13742,'2005-08-20 10:49:15',1377,580,'2005-08-21 11:05:15',2,'2006-02-15 21:30:53'), +(13743,'2005-08-20 10:51:27',3693,57,'2005-08-24 15:54:27',1,'2006-02-15 21:30:53'), +(13744,'2005-08-20 10:51:45',2962,408,'2005-08-25 06:42:45',2,'2006-02-15 21:30:53'), +(13745,'2005-08-20 10:53:49',1264,142,'2005-08-25 13:25:49',1,'2006-02-15 21:30:53'), +(13746,'2005-08-20 10:55:28',3742,520,'2005-08-25 07:48:28',2,'2006-02-15 21:30:53'), +(13747,'2005-08-20 10:56:06',3332,74,'2005-08-29 10:29:06',1,'2006-02-15 21:30:53'), +(13748,'2005-08-20 10:59:54',2198,410,'2005-08-23 12:33:54',1,'2006-02-15 21:30:53'), +(13749,'2005-08-20 11:00:37',2811,282,'2005-08-26 12:04:37',1,'2006-02-15 21:30:53'), +(13750,'2005-08-20 11:11:42',3363,246,'2005-08-29 16:16:42',2,'2006-02-15 21:30:53'), +(13751,'2005-08-20 11:17:03',185,105,'2005-08-22 14:12:03',2,'2006-02-15 21:30:53'), +(13752,'2005-08-20 11:17:45',1794,77,'2005-08-29 13:25:45',2,'2006-02-15 21:30:53'), +(13753,'2006-02-14 15:16:03',3746,495,NULL,1,'2006-02-15 21:30:53'), +(13754,'2005-08-20 11:18:08',1740,108,'2005-08-22 11:55:08',1,'2006-02-15 21:30:53'), +(13755,'2005-08-20 11:18:53',1927,342,'2005-08-27 06:51:53',2,'2006-02-15 21:30:53'), +(13756,'2006-02-14 15:16:03',1146,252,NULL,2,'2006-02-15 21:30:53'), +(13757,'2005-08-20 11:20:12',1147,14,'2005-08-23 10:14:12',2,'2006-02-15 21:30:53'), +(13758,'2005-08-20 11:21:26',864,255,'2005-08-29 14:37:26',2,'2006-02-15 21:30:53'), +(13759,'2005-08-20 11:24:48',595,269,'2005-08-29 10:29:48',1,'2006-02-15 21:30:53'), +(13760,'2005-08-20 11:26:33',3459,436,'2005-08-27 11:12:33',2,'2006-02-15 21:30:53'), +(13761,'2005-08-20 11:28:50',3149,376,'2005-08-21 12:05:50',2,'2006-02-15 21:30:53'), +(13762,'2005-08-20 11:29:32',451,566,'2005-08-23 17:25:32',1,'2006-02-15 21:30:53'), +(13763,'2005-08-20 11:37:56',4171,469,'2005-08-26 13:12:56',1,'2006-02-15 21:30:53'), +(13764,'2005-08-20 11:38:16',989,386,'2005-08-27 08:01:16',1,'2006-02-15 21:30:53'), +(13765,'2005-08-20 11:39:00',2104,219,'2005-08-21 06:05:00',1,'2006-02-15 21:30:53'), +(13766,'2005-08-20 11:42:01',1313,189,'2005-08-27 13:44:01',2,'2006-02-15 21:30:53'), +(13767,'2005-08-20 11:43:36',2739,506,'2005-08-22 17:10:36',1,'2006-02-15 21:30:53'), +(13768,'2005-08-20 11:43:43',3847,198,'2005-08-27 07:56:43',2,'2006-02-15 21:30:53'), +(13769,'2005-08-20 11:43:52',2868,56,'2005-08-28 13:19:52',1,'2006-02-15 21:30:53'), +(13770,'2005-08-20 11:45:54',998,538,'2005-08-22 17:08:54',1,'2006-02-15 21:30:53'), +(13771,'2005-08-20 11:47:21',2278,512,'2005-08-22 17:09:21',1,'2006-02-15 21:30:53'), +(13772,'2005-08-20 11:47:52',2038,387,'2005-08-28 05:50:52',2,'2006-02-15 21:30:53'), +(13773,'2005-08-20 11:50:14',3389,64,'2005-08-26 12:35:14',1,'2006-02-15 21:30:53'), +(13774,'2005-08-20 11:54:01',735,244,'2005-08-22 13:25:01',2,'2006-02-15 21:30:53'), +(13775,'2005-08-20 11:56:30',1858,116,'2005-08-28 12:48:30',2,'2006-02-15 21:30:53'), +(13776,'2005-08-20 11:57:06',2439,137,'2005-08-26 10:55:06',1,'2006-02-15 21:30:53'), +(13777,'2005-08-20 12:03:35',3587,29,'2005-08-27 10:13:35',1,'2006-02-15 21:30:53'), +(13778,'2005-08-20 12:03:44',2385,539,'2005-08-28 12:09:44',1,'2006-02-15 21:30:53'), +(13779,'2005-08-20 12:03:54',63,440,'2005-08-28 15:24:54',2,'2006-02-15 21:30:53'), +(13780,'2006-02-14 15:16:03',1775,14,NULL,2,'2006-02-15 21:30:53'), +(13781,'2005-08-20 12:06:45',971,368,'2005-08-26 06:50:45',2,'2006-02-15 21:30:53'), +(13782,'2005-08-20 12:09:26',577,305,'2005-08-23 08:31:26',2,'2006-02-15 21:30:53'), +(13783,'2005-08-20 12:11:03',2643,28,'2005-08-21 15:53:03',2,'2006-02-15 21:30:53'), +(13784,'2005-08-20 12:11:28',3087,431,'2005-08-25 08:11:28',1,'2006-02-15 21:30:53'), +(13785,'2005-08-20 12:11:46',379,453,'2005-08-21 06:39:46',1,'2006-02-15 21:30:53'), +(13786,'2005-08-20 12:13:24',515,94,'2005-08-28 07:24:24',2,'2006-02-15 21:30:53'), +(13787,'2005-08-20 12:15:23',253,188,'2005-08-27 06:24:23',2,'2006-02-15 21:30:53'), +(13788,'2005-08-20 12:15:41',3177,393,'2005-08-28 16:28:41',2,'2006-02-15 21:30:53'), +(13789,'2005-08-20 12:16:38',2523,53,'2005-08-25 07:29:38',1,'2006-02-15 21:30:53'), +(13790,'2005-08-20 12:17:27',1385,11,'2005-08-25 12:20:27',1,'2006-02-15 21:30:53'), +(13791,'2005-08-20 12:21:05',1890,67,'2005-08-22 17:58:05',1,'2006-02-15 21:30:53'), +(13792,'2005-08-20 12:21:37',4157,78,'2005-08-27 14:28:37',1,'2006-02-15 21:30:53'), +(13793,'2005-08-20 12:22:04',2598,424,'2005-08-27 09:51:04',2,'2006-02-15 21:30:53'), +(13794,'2005-08-20 12:25:32',2148,557,'2005-08-23 06:38:32',2,'2006-02-15 21:30:53'), +(13795,'2005-08-20 12:32:09',2837,331,'2005-08-21 17:28:09',1,'2006-02-15 21:30:53'), +(13796,'2005-08-20 12:32:32',28,209,'2005-08-29 10:48:32',2,'2006-02-15 21:30:53'), +(13797,'2005-08-20 12:33:36',2857,529,'2005-08-25 18:03:36',1,'2006-02-15 21:30:53'), +(13798,'2006-02-14 15:16:03',526,15,NULL,2,'2006-02-15 21:30:53'), +(13799,'2005-08-20 12:36:42',4413,196,'2005-08-28 08:47:42',1,'2006-02-15 21:30:53'), +(13800,'2005-08-20 12:40:48',1552,407,'2005-08-22 15:06:48',1,'2006-02-15 21:30:53'), +(13801,'2005-08-20 12:40:53',1464,433,'2005-08-21 16:29:53',1,'2006-02-15 21:30:53'), +(13802,'2005-08-20 12:44:53',2079,156,'2005-08-22 09:18:53',2,'2006-02-15 21:30:53'), +(13803,'2005-08-20 12:46:17',1084,486,'2005-08-24 15:44:17',2,'2006-02-15 21:30:53'), +(13804,'2005-08-20 12:46:32',2232,19,'2005-08-29 14:04:32',2,'2006-02-15 21:30:53'), +(13805,'2005-08-20 12:53:12',349,454,'2005-08-27 15:21:12',1,'2006-02-15 21:30:53'), +(13806,'2005-08-20 12:53:46',444,341,'2005-08-21 10:36:46',1,'2006-02-15 21:30:53'), +(13807,'2005-08-20 12:55:40',3822,4,'2005-08-28 09:06:40',2,'2006-02-15 21:30:53'), +(13808,'2005-08-20 12:55:43',3689,262,'2005-08-29 11:01:43',2,'2006-02-15 21:30:53'), +(13809,'2005-08-20 12:56:03',1597,207,'2005-08-27 11:58:03',1,'2006-02-15 21:30:53'), +(13810,'2005-08-20 12:59:38',2228,450,'2005-08-21 17:40:38',1,'2006-02-15 21:30:53'), +(13811,'2005-08-20 13:00:30',1235,168,'2005-08-24 10:18:30',1,'2006-02-15 21:30:53'), +(13812,'2005-08-20 13:01:43',2788,122,'2005-08-22 16:32:43',2,'2006-02-15 21:30:53'), +(13813,'2005-08-20 13:03:26',601,455,'2005-08-25 08:42:26',1,'2006-02-15 21:30:53'), +(13814,'2005-08-20 13:07:23',2129,436,'2005-08-22 16:23:23',2,'2006-02-15 21:30:53'), +(13815,'2005-08-20 13:08:53',3388,582,'2005-08-29 13:11:53',2,'2006-02-15 21:30:53'), +(13816,'2005-08-20 13:13:56',273,27,'2005-08-25 09:46:56',1,'2006-02-15 21:30:53'), +(13817,'2005-08-20 13:15:30',1935,293,'2005-08-22 18:48:30',2,'2006-02-15 21:30:53'), +(13818,'2005-08-20 13:20:09',1283,495,'2005-08-21 18:41:09',1,'2006-02-15 21:30:53'), +(13819,'2005-08-20 13:23:15',1459,296,'2005-08-22 16:02:15',2,'2006-02-15 21:30:53'), +(13820,'2005-08-20 13:26:37',3191,81,'2005-08-27 14:05:37',1,'2006-02-15 21:30:53'), +(13821,'2005-08-20 13:33:47',2402,355,'2005-08-25 18:09:47',1,'2006-02-15 21:30:53'), +(13822,'2005-08-20 13:39:28',807,499,'2005-08-24 07:40:28',1,'2006-02-15 21:30:53'), +(13823,'2005-08-20 13:42:10',3875,89,'2005-08-22 18:45:10',1,'2006-02-15 21:30:53'), +(13824,'2005-08-20 13:43:12',2845,413,'2005-08-22 17:26:12',1,'2006-02-15 21:30:53'), +(13825,'2005-08-20 13:43:22',2135,167,'2005-08-29 19:13:22',1,'2006-02-15 21:30:53'), +(13826,'2005-08-20 13:46:38',401,436,'2005-08-29 13:07:38',1,'2006-02-15 21:30:53'), +(13827,'2005-08-20 13:47:19',1103,342,'2005-08-28 09:13:19',1,'2006-02-15 21:30:53'), +(13828,'2005-08-20 13:49:52',2391,450,'2005-08-25 07:49:52',2,'2006-02-15 21:30:53'), +(13829,'2005-08-20 13:50:17',3980,146,'2005-08-24 11:30:17',2,'2006-02-15 21:30:53'), +(13830,'2005-08-20 13:57:59',2874,61,'2005-08-25 11:29:59',1,'2006-02-15 21:30:53'), +(13831,'2005-08-20 13:59:35',570,480,'2005-08-24 12:50:35',1,'2006-02-15 21:30:53'), +(13832,'2005-08-20 14:00:25',3299,29,'2005-08-28 10:11:25',1,'2006-02-15 21:30:53'), +(13833,'2005-08-20 14:00:29',792,175,'2005-08-29 12:01:29',2,'2006-02-15 21:30:53'), +(13834,'2005-08-20 14:03:08',875,426,'2005-08-22 10:12:08',1,'2006-02-15 21:30:53'), +(13835,'2005-08-20 14:06:33',3738,143,'2005-08-26 12:15:33',2,'2006-02-15 21:30:53'), +(13836,'2005-08-20 14:18:16',4271,375,'2005-08-21 18:13:16',2,'2006-02-15 21:30:53'), +(13837,'2005-08-20 14:19:03',3220,67,'2005-08-22 16:25:03',2,'2006-02-15 21:30:53'), +(13838,'2005-08-20 14:22:46',1134,437,'2005-08-29 12:28:46',2,'2006-02-15 21:30:53'), +(13839,'2005-08-20 14:23:16',1056,437,'2005-08-26 19:11:16',2,'2006-02-15 21:30:53'), +(13840,'2005-08-20 14:23:20',1211,40,'2005-08-28 11:53:20',1,'2006-02-15 21:30:53'), +(13841,'2005-08-20 14:25:18',3277,203,'2005-08-29 15:49:18',1,'2006-02-15 21:30:53'), +(13842,'2005-08-20 14:29:37',4337,180,'2005-08-29 18:19:37',1,'2006-02-15 21:30:53'), +(13843,'2005-08-20 14:30:01',3058,308,'2005-08-27 10:06:01',2,'2006-02-15 21:30:53'), +(13844,'2005-08-20 14:30:26',983,179,'2005-08-29 17:08:26',1,'2006-02-15 21:30:53'), +(13845,'2005-08-20 14:31:21',3993,559,'2005-08-29 18:29:21',1,'2006-02-15 21:30:53'), +(13846,'2005-08-20 14:32:31',3289,257,'2005-08-28 16:58:31',1,'2006-02-15 21:30:53'), +(13847,'2005-08-20 14:33:59',2647,82,'2005-08-25 08:49:59',1,'2006-02-15 21:30:53'), +(13848,'2005-08-20 14:37:49',802,447,'2005-08-25 13:15:49',1,'2006-02-15 21:30:53'), +(13849,'2005-08-20 14:42:34',3774,261,'2005-08-24 13:09:34',2,'2006-02-15 21:30:53'), +(13850,'2005-08-20 14:43:03',3030,546,'2005-08-27 11:41:03',2,'2006-02-15 21:30:53'), +(13851,'2005-08-20 14:44:22',3278,80,'2005-08-22 18:10:22',1,'2006-02-15 21:30:53'), +(13852,'2005-08-20 14:45:23',85,535,'2005-08-22 16:47:23',2,'2006-02-15 21:30:53'), +(13853,'2005-08-20 14:47:02',1680,186,'2005-08-26 20:32:02',1,'2006-02-15 21:30:53'), +(13854,'2005-08-20 14:48:42',4192,158,'2005-08-21 14:55:42',2,'2006-02-15 21:30:53'), +(13855,'2005-08-20 14:48:55',1617,96,'2005-08-28 14:45:55',1,'2006-02-15 21:30:53'), +(13856,'2005-08-20 14:49:32',4196,407,'2005-08-29 12:37:32',2,'2006-02-15 21:30:53'), +(13857,'2005-08-20 14:50:06',2542,366,'2005-08-24 10:38:06',2,'2006-02-15 21:30:53'), +(13858,'2005-08-20 14:50:57',2167,33,'2005-08-23 12:10:57',2,'2006-02-15 21:30:53'), +(13859,'2005-08-20 14:53:43',4381,504,'2005-08-28 09:50:43',1,'2006-02-15 21:30:53'), +(13860,'2005-08-20 14:55:09',558,275,'2005-08-22 20:42:09',1,'2006-02-15 21:30:53'), +(13861,'2005-08-20 14:56:53',303,154,'2005-08-22 18:13:53',2,'2006-02-15 21:30:53'), +(13862,'2005-08-20 14:57:01',3271,170,'2005-08-27 10:48:01',2,'2006-02-15 21:30:53'), +(13863,'2005-08-20 14:57:50',2417,563,'2005-08-29 15:36:50',2,'2006-02-15 21:30:53'), +(13864,'2005-08-20 14:59:55',3935,214,'2005-08-22 09:30:55',2,'2006-02-15 21:30:53'), +(13865,'2005-08-20 15:04:09',3647,275,'2005-08-24 10:06:09',2,'2006-02-15 21:30:53'), +(13866,'2005-08-20 15:05:29',3432,343,'2005-08-23 11:27:29',2,'2006-02-15 21:30:53'), +(13867,'2005-08-20 15:05:42',4514,591,'2005-08-29 10:48:42',2,'2006-02-15 21:30:53'), +(13868,'2005-08-20 15:06:26',3173,51,'2005-08-22 19:08:26',2,'2006-02-15 21:30:53'), +(13869,'2005-08-20 15:08:57',1990,386,'2005-08-29 13:13:57',2,'2006-02-15 21:30:53'), +(13870,'2005-08-20 15:09:16',563,167,'2005-08-28 10:00:16',2,'2006-02-15 21:30:53'), +(13871,'2005-08-20 15:10:13',3206,372,'2005-08-29 19:43:13',2,'2006-02-15 21:30:53'), +(13872,'2005-08-20 15:10:30',2416,421,'2005-08-24 10:14:30',2,'2006-02-15 21:30:53'), +(13873,'2005-08-20 15:11:11',1683,306,'2005-08-22 20:13:11',2,'2006-02-15 21:30:53'), +(13874,'2005-08-20 15:11:48',72,86,'2005-08-21 18:26:48',2,'2006-02-15 21:30:53'), +(13875,'2005-08-20 15:13:11',348,83,'2005-08-21 13:11:11',1,'2006-02-15 21:30:53'), +(13876,'2005-08-20 15:15:28',3137,334,'2005-08-23 12:42:28',2,'2006-02-15 21:30:53'), +(13877,'2005-08-20 15:16:18',3387,5,'2005-08-22 18:20:18',1,'2006-02-15 21:30:53'), +(13878,'2005-08-20 15:17:38',49,481,'2005-08-21 21:11:38',2,'2006-02-15 21:30:53'), +(13879,'2005-08-20 15:18:10',4022,112,'2005-08-22 19:23:10',2,'2006-02-15 21:30:53'), +(13880,'2005-08-20 15:18:20',3911,268,'2005-08-24 18:03:20',2,'2006-02-15 21:30:53'), +(13881,'2005-08-20 15:18:55',2831,144,'2005-08-25 11:25:55',1,'2006-02-15 21:30:53'), +(13882,'2005-08-20 15:23:26',3245,51,'2005-08-22 13:03:26',1,'2006-02-15 21:30:53'), +(13883,'2005-08-20 15:28:53',584,568,'2005-08-21 13:11:53',1,'2006-02-15 21:30:53'), +(13884,'2005-08-20 15:30:51',3182,466,'2005-08-26 13:34:51',1,'2006-02-15 21:30:53'), +(13885,'2005-08-20 15:32:09',3195,537,'2005-08-26 15:54:09',1,'2006-02-15 21:30:53'), +(13886,'2005-08-20 15:34:43',2248,73,'2005-08-26 11:48:43',2,'2006-02-15 21:30:53'), +(13887,'2005-08-20 15:39:00',4002,413,'2005-08-24 16:17:00',2,'2006-02-15 21:30:53'), +(13888,'2005-08-20 15:39:42',1943,297,'2005-08-28 13:41:42',1,'2006-02-15 21:30:53'), +(13889,'2005-08-20 15:40:06',4406,501,'2005-08-22 14:09:06',2,'2006-02-15 21:30:53'), +(13890,'2005-08-20 15:41:00',2965,54,'2005-08-22 16:00:00',1,'2006-02-15 21:30:53'), +(13891,'2005-08-20 15:42:05',2042,289,'2005-08-25 13:26:05',1,'2006-02-15 21:30:53'), +(13892,'2005-08-20 15:50:17',1236,337,'2005-08-29 13:33:17',2,'2006-02-15 21:30:53'), +(13893,'2005-08-20 15:52:52',3503,390,'2005-08-27 16:21:52',2,'2006-02-15 21:30:53'), +(13894,'2005-08-20 15:55:20',2649,360,'2005-08-26 17:26:20',2,'2006-02-15 21:30:53'), +(13895,'2005-08-20 15:58:28',3060,12,'2005-08-26 15:07:28',2,'2006-02-15 21:30:53'), +(13896,'2005-08-20 15:59:56',1338,278,'2005-08-21 20:14:56',2,'2006-02-15 21:30:53'), +(13897,'2005-08-20 16:02:28',628,258,'2005-08-23 14:29:28',1,'2006-02-15 21:30:53'), +(13898,'2006-02-14 15:16:03',4007,369,NULL,2,'2006-02-15 21:30:53'), +(13899,'2005-08-20 16:05:11',427,204,'2005-08-23 15:14:11',2,'2006-02-15 21:30:53'), +(13900,'2005-08-20 16:05:41',1140,66,'2005-08-22 15:13:41',1,'2006-02-15 21:30:53'), +(13901,'2005-08-20 16:06:53',3281,166,'2005-08-28 11:30:53',1,'2006-02-15 21:30:53'), +(13902,'2005-08-20 16:07:08',1165,275,'2005-08-24 16:43:08',2,'2006-02-15 21:30:53'), +(13903,'2005-08-20 16:07:55',1676,272,'2005-08-25 18:26:55',1,'2006-02-15 21:30:53'), +(13904,'2005-08-20 16:11:34',721,93,'2005-08-26 12:46:34',1,'2006-02-15 21:30:53'), +(13905,'2005-08-20 16:12:48',2714,437,'2005-08-28 16:05:48',1,'2006-02-15 21:30:53'), +(13906,'2005-08-20 16:16:03',3960,87,'2005-08-21 13:29:03',2,'2006-02-15 21:30:53'), +(13907,'2005-08-20 16:17:27',806,328,'2005-08-24 20:14:27',2,'2006-02-15 21:30:53'), +(13908,'2005-08-20 16:21:40',3661,532,'2005-08-29 21:16:40',1,'2006-02-15 21:30:53'), +(13909,'2005-08-20 16:26:36',1508,309,'2005-08-21 20:59:36',2,'2006-02-15 21:30:53'), +(13910,'2005-08-20 16:30:49',252,133,'2005-08-24 13:30:49',2,'2006-02-15 21:30:53'), +(13911,'2005-08-20 16:31:33',4400,304,'2005-08-28 19:26:33',2,'2006-02-15 21:30:53'), +(13912,'2005-08-20 16:32:10',968,207,'2005-08-29 17:37:10',2,'2006-02-15 21:30:53'), +(13913,'2005-08-20 16:37:35',4259,197,'2005-08-26 13:12:35',2,'2006-02-15 21:30:53'), +(13914,'2005-08-20 16:38:57',3037,237,'2005-08-26 14:53:57',2,'2006-02-15 21:30:53'), +(13915,'2005-08-20 16:42:53',1180,129,'2005-08-23 20:30:53',2,'2006-02-15 21:30:53'), +(13916,'2005-08-20 16:43:02',2971,302,'2005-08-25 19:21:02',1,'2006-02-15 21:30:53'), +(13917,'2005-08-20 16:43:28',4326,10,'2005-08-29 16:44:28',2,'2006-02-15 21:30:53'), +(13918,'2005-08-20 16:47:32',3301,248,'2005-08-21 12:00:32',2,'2006-02-15 21:30:53'), +(13919,'2005-08-20 16:47:34',909,129,'2005-08-23 21:27:34',2,'2006-02-15 21:30:53'), +(13920,'2005-08-20 16:51:18',3200,460,'2005-08-27 16:05:18',2,'2006-02-15 21:30:53'), +(13921,'2005-08-20 16:57:11',3943,59,'2005-08-22 19:25:11',2,'2006-02-15 21:30:53'), +(13922,'2005-08-20 17:02:37',1398,237,'2005-08-29 19:28:37',1,'2006-02-15 21:30:53'), +(13923,'2005-08-20 17:05:02',3129,588,'2005-08-27 11:22:02',2,'2006-02-15 21:30:53'), +(13924,'2005-08-20 17:05:18',3066,444,'2005-08-23 16:54:18',2,'2006-02-15 21:30:53'), +(13925,'2005-08-20 17:05:34',4034,565,'2005-08-27 15:32:34',2,'2006-02-15 21:30:53'), +(13926,'2005-08-20 17:09:27',932,158,'2005-08-28 13:42:27',2,'2006-02-15 21:30:53'), +(13927,'2005-08-20 17:11:58',4284,417,'2005-08-24 12:44:58',1,'2006-02-15 21:30:53'), +(13928,'2005-08-20 17:12:28',1121,244,'2005-08-21 13:33:28',1,'2006-02-15 21:30:53'), +(13929,'2005-08-20 17:13:48',946,57,'2005-08-28 15:19:48',1,'2006-02-15 21:30:53'), +(13930,'2005-08-20 17:15:06',3585,58,'2005-08-21 14:29:06',1,'2006-02-15 21:30:53'), +(13931,'2005-08-20 17:16:10',3884,32,'2005-08-27 12:03:10',2,'2006-02-15 21:30:53'), +(13932,'2005-08-20 17:17:00',471,441,'2005-08-24 14:06:00',1,'2006-02-15 21:30:53'), +(13933,'2005-08-20 17:17:07',647,159,'2005-08-22 18:10:07',2,'2006-02-15 21:30:53'), +(13934,'2005-08-20 17:18:48',4567,457,'2005-08-26 15:31:48',1,'2006-02-15 21:30:53'), +(13935,'2005-08-20 17:20:49',4426,205,'2005-08-24 16:52:49',2,'2006-02-15 21:30:53'), +(13936,'2005-08-20 17:22:35',1731,364,'2005-08-23 20:07:35',2,'2006-02-15 21:30:53'), +(13937,'2005-08-20 17:22:51',1755,172,'2005-08-27 15:51:51',1,'2006-02-15 21:30:53'), +(13938,'2005-08-20 17:24:45',3743,463,'2005-08-21 18:39:45',1,'2006-02-15 21:30:53'), +(13939,'2005-08-20 17:28:01',2700,585,'2005-08-23 14:40:01',2,'2006-02-15 21:30:53'), +(13940,'2005-08-20 17:28:57',2638,187,'2005-08-27 22:07:57',1,'2006-02-15 21:30:53'), +(13941,'2006-02-14 15:16:03',2727,476,NULL,2,'2006-02-15 21:30:53'), +(13942,'2005-08-20 17:30:52',4403,211,'2005-08-25 13:46:52',2,'2006-02-15 21:30:53'), +(13943,'2005-08-20 17:31:18',22,464,'2005-08-24 11:33:18',1,'2006-02-15 21:30:53'), +(13944,'2005-08-20 17:41:16',3685,408,'2005-08-23 12:02:16',1,'2006-02-15 21:30:53'), +(13945,'2005-08-20 17:43:56',3328,270,'2005-08-26 19:19:56',1,'2006-02-15 21:30:53'), +(13946,'2005-08-20 17:44:32',3564,529,'2005-08-28 19:19:32',1,'2006-02-15 21:30:53'), +(13947,'2005-08-20 17:46:06',2562,218,'2005-08-29 23:44:06',2,'2006-02-15 21:30:53'), +(13948,'2005-08-20 17:50:48',4033,410,'2005-08-25 20:56:48',2,'2006-02-15 21:30:53'), +(13949,'2005-08-20 17:55:13',1518,34,'2005-08-22 20:49:13',1,'2006-02-15 21:30:53'), +(13950,'2005-08-20 17:58:00',3978,93,'2005-08-29 23:23:00',1,'2006-02-15 21:30:53'), +(13951,'2005-08-20 17:58:11',2034,40,'2005-08-26 14:50:11',2,'2006-02-15 21:30:53'), +(13952,'2006-02-14 15:16:03',224,199,NULL,2,'2006-02-15 21:30:53'), +(13953,'2005-08-20 18:00:37',1818,371,'2005-08-28 14:52:37',1,'2006-02-15 21:30:53'), +(13954,'2005-08-20 18:02:41',3812,207,'2005-08-27 21:52:41',2,'2006-02-15 21:30:53'), +(13955,'2005-08-20 18:05:12',2613,273,'2005-08-29 18:25:12',1,'2006-02-15 21:30:53'), +(13956,'2005-08-20 18:08:19',3757,484,'2005-08-29 17:03:19',1,'2006-02-15 21:30:53'), +(13957,'2005-08-20 18:09:04',2889,179,'2005-08-23 16:52:04',1,'2006-02-15 21:30:53'), +(13958,'2005-08-20 18:11:44',2380,33,'2005-08-28 14:59:44',1,'2006-02-15 21:30:53'), +(13959,'2005-08-20 18:16:21',2283,142,'2005-08-22 13:56:21',2,'2006-02-15 21:30:53'), +(13960,'2005-08-20 18:16:26',4177,459,'2005-08-29 14:06:26',1,'2006-02-15 21:30:53'), +(13961,'2005-08-20 18:16:34',2271,129,'2005-08-21 16:14:34',1,'2006-02-15 21:30:53'), +(13962,'2005-08-20 18:18:06',1434,348,'2005-08-24 22:16:06',2,'2006-02-15 21:30:53'), +(13963,'2005-08-20 18:20:18',4145,368,'2005-08-24 21:26:18',1,'2006-02-15 21:30:53'), +(13964,'2005-08-20 18:24:26',108,128,'2005-08-21 21:19:26',2,'2006-02-15 21:30:53'), +(13965,'2006-02-14 15:16:03',670,324,NULL,2,'2006-02-15 21:30:53'), +(13966,'2005-08-20 18:28:28',4520,260,'2005-08-22 16:49:28',2,'2006-02-15 21:30:53'), +(13967,'2005-08-20 18:28:46',2751,459,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'), +(13968,'2006-02-14 15:16:03',3715,15,NULL,2,'2006-02-15 21:30:53'), +(13969,'2005-08-20 18:42:40',1836,237,'2005-08-27 17:33:40',2,'2006-02-15 21:30:53'), +(13970,'2005-08-20 18:43:34',1942,418,'2005-08-22 15:17:34',2,'2006-02-15 21:30:53'), +(13971,'2005-08-20 18:44:53',1678,64,'2005-08-22 16:25:53',2,'2006-02-15 21:30:53'), +(13972,'2005-08-20 18:52:17',1687,553,'2005-08-28 15:19:17',1,'2006-02-15 21:30:53'), +(13973,'2005-08-20 18:52:43',1181,58,'2005-08-21 19:11:43',1,'2006-02-15 21:30:53'), +(13974,'2005-08-20 18:54:59',1912,479,'2005-08-28 13:02:59',1,'2006-02-15 21:30:53'), +(13975,'2005-08-20 18:58:23',3821,286,'2005-08-25 20:58:23',1,'2006-02-15 21:30:53'), +(13976,'2005-08-20 19:02:16',1785,278,'2005-08-25 17:58:16',2,'2006-02-15 21:30:53'), +(13977,'2005-08-20 19:02:34',1126,115,'2005-08-24 14:14:34',1,'2006-02-15 21:30:53'), +(13978,'2005-08-20 19:03:25',1263,260,'2005-08-27 18:02:25',2,'2006-02-15 21:30:53'), +(13979,'2005-08-20 19:03:49',2998,211,'2005-08-24 21:23:49',1,'2006-02-15 21:30:53'), +(13980,'2005-08-20 19:04:40',1067,391,'2005-08-21 18:36:40',2,'2006-02-15 21:30:53'), +(13981,'2005-08-20 19:07:20',3342,249,'2005-08-23 15:13:20',1,'2006-02-15 21:30:53'), +(13982,'2005-08-20 19:08:25',2901,448,'2005-08-28 15:59:25',2,'2006-02-15 21:30:53'), +(13983,'2005-08-20 19:08:32',457,231,'2005-08-29 23:45:32',1,'2006-02-15 21:30:53'), +(13984,'2005-08-20 19:12:30',2183,473,'2005-08-29 22:04:30',1,'2006-02-15 21:30:53'), +(13985,'2005-08-20 19:13:06',1081,339,'2005-08-24 21:24:06',2,'2006-02-15 21:30:53'), +(13986,'2005-08-20 19:13:23',3701,152,'2005-08-22 20:59:23',2,'2006-02-15 21:30:53'), +(13987,'2005-08-20 19:19:30',1443,246,'2005-08-23 15:37:30',2,'2006-02-15 21:30:53'), +(13988,'2005-08-20 19:21:28',3567,466,'2005-08-21 22:20:28',2,'2006-02-15 21:30:53'), +(13989,'2005-08-20 19:27:50',1470,252,'2005-08-28 15:17:50',2,'2006-02-15 21:30:53'), +(13990,'2005-08-20 19:29:23',2272,481,'2005-08-25 18:50:23',2,'2006-02-15 21:30:53'), +(13991,'2005-08-20 19:29:44',1971,296,'2005-08-24 21:10:44',1,'2006-02-15 21:30:53'), +(13992,'2005-08-20 19:30:35',2798,136,'2005-08-24 19:09:35',2,'2006-02-15 21:30:53'), +(13993,'2005-08-20 19:32:29',1158,93,'2005-08-26 16:59:29',2,'2006-02-15 21:30:53'), +(13994,'2005-08-20 19:33:21',142,180,'2005-08-24 20:55:21',1,'2006-02-15 21:30:53'), +(13995,'2005-08-20 19:34:43',3789,381,'2005-08-25 22:25:43',2,'2006-02-15 21:30:53'), +(13996,'2005-08-20 19:45:43',3341,306,'2005-08-22 16:47:43',2,'2006-02-15 21:30:53'), +(13997,'2005-08-20 19:51:28',2330,175,'2005-08-26 01:29:28',2,'2006-02-15 21:30:53'), +(13998,'2005-08-20 19:52:38',3936,530,'2005-08-26 14:57:38',1,'2006-02-15 21:30:53'), +(13999,'2005-08-20 19:53:32',4149,239,'2005-08-26 19:01:32',1,'2006-02-15 21:30:53'), +(14000,'2005-08-20 20:06:05',3907,276,'2005-08-28 17:02:05',1,'2006-02-15 21:30:53'), +(14001,'2005-08-20 20:07:15',1318,120,'2005-08-27 00:50:15',2,'2006-02-15 21:30:53'), +(14002,'2005-08-20 20:12:19',87,33,'2005-08-23 00:23:19',1,'2006-02-15 21:30:53'), +(14003,'2005-08-20 20:16:06',3165,256,'2005-08-28 14:36:06',1,'2006-02-15 21:30:53'), +(14004,'2005-08-20 20:16:35',3445,358,'2005-08-28 17:23:35',2,'2006-02-15 21:30:53'), +(14005,'2005-08-20 20:19:05',1415,135,'2005-08-26 01:42:05',2,'2006-02-15 21:30:53'), +(14006,'2005-08-20 20:21:36',2189,186,'2005-08-21 15:26:36',1,'2006-02-15 21:30:53'), +(14007,'2005-08-20 20:22:47',374,284,'2005-08-28 20:40:47',2,'2006-02-15 21:30:53'), +(14008,'2005-08-20 20:26:00',2427,560,'2005-08-28 17:23:00',2,'2006-02-15 21:30:53'), +(14009,'2005-08-20 20:26:53',3004,382,'2005-08-21 23:32:53',2,'2006-02-15 21:30:53'), +(14010,'2005-08-20 20:29:46',934,537,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'), +(14011,'2005-08-20 20:32:56',1212,379,'2005-08-28 21:44:56',1,'2006-02-15 21:30:53'), +(14012,'2005-08-20 20:42:12',1866,274,'2005-08-23 23:10:12',2,'2006-02-15 21:30:53'), +(14013,'2005-08-20 20:42:50',3941,496,'2005-08-25 21:37:50',2,'2006-02-15 21:30:53'), +(14014,'2005-08-20 20:47:09',2188,335,'2005-08-21 22:08:09',2,'2006-02-15 21:30:53'), +(14015,'2005-08-20 20:47:43',3145,554,'2005-08-26 19:37:43',1,'2006-02-15 21:30:53'), +(14016,'2005-08-20 20:52:03',509,220,'2005-08-23 18:04:03',2,'2006-02-15 21:30:53'), +(14017,'2005-08-20 20:55:32',920,230,'2005-08-23 16:12:32',1,'2006-02-15 21:30:53'), +(14018,'2006-02-14 15:16:03',2136,533,NULL,2,'2006-02-15 21:30:53'), +(14019,'2005-08-20 20:59:15',1929,202,'2005-08-28 17:29:15',2,'2006-02-15 21:30:53'), +(14020,'2005-08-20 20:59:43',2257,72,'2005-08-23 17:11:43',2,'2006-02-15 21:30:53'), +(14021,'2005-08-20 21:02:12',4394,147,'2005-08-27 22:15:12',1,'2006-02-15 21:30:53'), +(14022,'2005-08-20 21:08:49',4068,170,'2005-08-29 21:57:49',1,'2006-02-15 21:30:53'), +(14023,'2005-08-20 21:10:32',2668,304,'2005-08-23 20:57:32',1,'2006-02-15 21:30:53'), +(14024,'2005-08-20 21:13:58',1492,87,'2005-08-29 23:02:58',1,'2006-02-15 21:30:53'), +(14025,'2005-08-20 21:19:36',4521,37,'2005-08-29 23:39:36',1,'2006-02-15 21:30:53'), +(14026,'2005-08-20 21:21:08',115,231,'2005-08-22 23:19:08',2,'2006-02-15 21:30:53'), +(14027,'2005-08-20 21:21:34',284,432,'2005-08-28 17:46:34',1,'2006-02-15 21:30:53'), +(14028,'2005-08-20 21:23:03',4061,158,'2005-08-25 17:29:03',2,'2006-02-15 21:30:53'), +(14029,'2005-08-20 21:23:11',2653,219,'2005-08-22 18:01:11',2,'2006-02-15 21:30:53'), +(14030,'2005-08-20 21:23:54',1027,127,'2005-08-27 01:19:54',1,'2006-02-15 21:30:53'), +(14031,'2005-08-20 21:24:24',440,361,'2005-08-23 21:47:24',2,'2006-02-15 21:30:53'), +(14032,'2005-08-20 21:26:55',3542,317,'2005-08-26 19:19:55',1,'2006-02-15 21:30:53'), +(14033,'2005-08-20 21:30:53',525,243,'2005-08-23 01:45:53',2,'2006-02-15 21:30:53'), +(14034,'2005-08-20 21:31:52',3484,200,'2005-08-29 00:13:52',1,'2006-02-15 21:30:53'), +(14035,'2005-08-20 21:31:58',2035,260,'2005-08-22 16:28:58',1,'2006-02-15 21:30:53'), +(14036,'2005-08-20 21:35:27',202,256,'2005-08-23 03:29:27',1,'2006-02-15 21:30:53'), +(14037,'2005-08-20 21:35:58',3655,372,'2005-08-29 23:06:58',2,'2006-02-15 21:30:53'), +(14038,'2005-08-20 21:39:23',1069,589,'2005-08-27 23:57:23',2,'2006-02-15 21:30:53'), +(14039,'2005-08-20 21:39:43',4187,383,'2005-08-24 19:03:43',1,'2006-02-15 21:30:53'), +(14040,'2005-08-20 21:43:44',905,17,'2005-08-25 16:30:44',1,'2006-02-15 21:30:53'), +(14041,'2005-08-20 21:45:23',52,247,'2005-08-26 01:42:23',1,'2006-02-15 21:30:53'), +(14042,'2005-08-20 21:45:51',505,322,'2005-08-23 19:57:51',2,'2006-02-15 21:30:53'), +(14043,'2005-08-20 21:46:43',1485,586,'2005-08-21 18:27:43',2,'2006-02-15 21:30:53'), +(14044,'2005-08-20 21:48:38',1422,145,'2005-08-29 02:56:38',1,'2006-02-15 21:30:53'), +(14045,'2005-08-20 21:50:11',3010,509,'2005-08-25 19:03:11',2,'2006-02-15 21:30:53'), +(14046,'2005-08-20 21:53:21',2352,524,'2005-08-23 17:51:21',2,'2006-02-15 21:30:53'), +(14047,'2005-08-20 22:00:43',186,579,'2005-08-24 03:17:43',2,'2006-02-15 21:30:53'), +(14048,'2005-08-20 22:03:18',3475,105,'2005-08-25 02:57:18',2,'2006-02-15 21:30:53'), +(14049,'2005-08-20 22:08:55',1335,112,'2005-08-28 20:24:55',1,'2006-02-15 21:30:53'), +(14050,'2005-08-20 22:09:04',1737,596,'2005-08-26 01:39:04',2,'2006-02-15 21:30:53'), +(14051,'2005-08-20 22:09:51',4012,362,'2005-08-29 04:04:51',2,'2006-02-15 21:30:53'), +(14052,'2005-08-20 22:11:46',3893,514,'2005-08-22 20:26:46',2,'2006-02-15 21:30:53'), +(14053,'2005-08-20 22:13:59',2177,5,'2005-08-26 20:50:59',2,'2006-02-15 21:30:53'), +(14054,'2005-08-20 22:17:01',338,50,'2005-08-21 21:34:01',1,'2006-02-15 21:30:53'), +(14055,'2005-08-20 22:18:00',1571,148,'2005-08-22 02:09:00',2,'2006-02-15 21:30:53'), +(14056,'2005-08-20 22:18:53',1300,22,'2005-08-27 01:05:53',2,'2006-02-15 21:30:53'), +(14057,'2005-08-20 22:22:59',1526,333,'2005-08-25 16:58:59',2,'2006-02-15 21:30:53'), +(14058,'2005-08-20 22:24:35',178,430,'2005-08-30 02:26:35',1,'2006-02-15 21:30:53'), +(14059,'2005-08-20 22:24:44',2045,141,'2005-08-26 21:25:44',2,'2006-02-15 21:30:53'), +(14060,'2006-02-14 15:16:03',3100,175,NULL,2,'2006-02-15 21:30:53'), +(14061,'2005-08-20 22:32:11',73,53,'2005-08-22 19:28:11',1,'2006-02-15 21:30:53'), +(14062,'2005-08-20 22:34:34',2841,239,'2005-08-25 17:11:34',2,'2006-02-15 21:30:53'), +(14063,'2005-08-20 22:36:40',1215,275,'2005-08-25 00:18:40',2,'2006-02-15 21:30:53'), +(14064,'2005-08-20 22:39:16',2938,103,'2005-08-22 00:45:16',2,'2006-02-15 21:30:53'), +(14065,'2005-08-20 22:40:47',3758,190,'2005-08-24 01:47:47',1,'2006-02-15 21:30:53'), +(14066,'2005-08-20 22:45:58',2444,274,'2005-08-29 00:23:58',2,'2006-02-15 21:30:53'), +(14067,'2005-08-20 22:49:23',1376,259,'2005-08-29 22:28:23',2,'2006-02-15 21:30:53'), +(14068,'2005-08-20 22:50:59',818,412,'2005-08-29 00:45:59',1,'2006-02-15 21:30:53'), +(14069,'2005-08-20 22:51:25',2239,197,'2005-08-30 00:30:25',2,'2006-02-15 21:30:53'), +(14070,'2005-08-20 22:56:34',846,581,'2005-08-29 22:02:34',1,'2006-02-15 21:30:53'), +(14071,'2005-08-20 23:01:56',2471,550,'2005-08-22 02:14:56',1,'2006-02-15 21:30:53'), +(14072,'2005-08-20 23:07:10',2387,515,'2005-08-23 03:38:10',2,'2006-02-15 21:30:53'), +(14073,'2005-08-20 23:12:57',2996,230,'2005-08-28 18:47:57',2,'2006-02-15 21:30:53'), +(14074,'2005-08-20 23:16:07',1303,506,'2005-08-26 04:45:07',1,'2006-02-15 21:30:53'), +(14075,'2005-08-20 23:18:54',3793,32,'2005-08-26 21:59:54',2,'2006-02-15 21:30:53'), +(14076,'2005-08-20 23:20:10',1070,574,'2005-08-24 04:00:10',1,'2006-02-15 21:30:53'), +(14077,'2005-08-20 23:24:07',3184,21,'2005-08-29 02:53:07',1,'2006-02-15 21:30:53'), +(14078,'2005-08-20 23:26:40',1642,396,'2005-08-28 02:30:40',1,'2006-02-15 21:30:53'), +(14079,'2005-08-20 23:29:25',3528,348,'2005-08-25 04:16:25',2,'2006-02-15 21:30:53'), +(14080,'2005-08-20 23:29:50',3962,266,'2005-08-26 00:33:50',1,'2006-02-15 21:30:53'), +(14081,'2005-08-20 23:35:13',589,392,'2005-08-28 01:41:13',2,'2006-02-15 21:30:53'), +(14082,'2005-08-20 23:42:00',3767,179,'2005-08-27 00:59:00',1,'2006-02-15 21:30:53'), +(14083,'2005-08-20 23:42:31',1823,176,'2005-08-28 21:44:31',1,'2006-02-15 21:30:53'), +(14084,'2005-08-20 23:42:46',900,37,'2005-08-24 20:06:46',1,'2006-02-15 21:30:53'), +(14085,'2005-08-20 23:46:24',3506,471,'2005-08-29 02:31:24',2,'2006-02-15 21:30:53'), +(14086,'2005-08-20 23:47:54',3244,253,'2005-08-27 22:49:54',1,'2006-02-15 21:30:53'), +(14087,'2005-08-20 23:53:40',2368,289,'2005-08-26 20:22:40',1,'2006-02-15 21:30:53'), +(14088,'2005-08-20 23:57:24',1184,518,'2005-08-28 21:49:24',1,'2006-02-15 21:30:53'), +(14089,'2005-08-20 23:59:02',1400,425,'2005-08-27 00:19:02',1,'2006-02-15 21:30:53'), +(14090,'2005-08-21 00:11:16',3254,168,'2005-08-23 19:48:16',2,'2006-02-15 21:30:53'), +(14091,'2005-08-21 00:11:17',3304,53,'2005-08-27 18:38:17',1,'2006-02-15 21:30:53'), +(14092,'2005-08-21 00:14:32',1596,273,'2005-08-24 22:22:32',2,'2006-02-15 21:30:53'), +(14093,'2005-08-21 00:21:29',1176,177,'2005-08-22 04:01:29',1,'2006-02-15 21:30:53'), +(14094,'2005-08-21 00:21:35',3674,471,'2005-08-23 05:27:35',2,'2006-02-15 21:30:53'), +(14095,'2005-08-21 00:25:45',1550,489,'2005-08-28 23:00:45',1,'2006-02-15 21:30:53'), +(14096,'2005-08-21 00:27:46',2089,342,'2005-08-22 22:53:46',1,'2006-02-15 21:30:53'), +(14097,'2005-08-21 00:28:48',4351,88,'2005-08-29 22:15:48',1,'2006-02-15 21:30:53'), +(14098,'2005-08-21 00:30:32',6,554,NULL,2,'2006-02-23 04:12:08'), +(14099,'2005-08-21 00:31:03',2452,224,'2005-08-27 03:18:03',2,'2006-02-15 21:30:53'), +(14100,'2005-08-21 00:31:07',4295,397,'2005-08-25 05:31:07',2,'2006-02-15 21:30:53'), +(14101,'2005-08-21 00:33:03',1892,19,'2005-08-24 01:59:03',1,'2006-02-15 21:30:53'), +(14102,'2005-08-21 00:35:21',3772,584,'2005-08-30 04:51:21',2,'2006-02-15 21:30:53'), +(14103,'2005-08-21 00:37:00',1438,409,'2005-08-25 22:09:00',2,'2006-02-15 21:30:53'), +(14104,'2005-08-21 00:37:44',912,178,'2005-08-21 22:55:44',2,'2006-02-15 21:30:53'), +(14105,'2005-08-21 00:44:34',1111,71,'2005-08-29 19:00:34',1,'2006-02-15 21:30:53'), +(14106,'2005-08-21 00:46:01',2673,315,'2005-08-27 23:44:01',1,'2006-02-15 21:30:53'), +(14107,'2006-02-14 15:16:03',3998,251,NULL,1,'2006-02-15 21:30:53'), +(14108,'2005-08-21 00:52:45',4339,243,'2005-08-21 19:35:45',2,'2006-02-15 21:30:53'), +(14109,'2005-08-21 00:52:58',1046,180,'2005-08-22 00:09:58',2,'2006-02-15 21:30:53'), +(14110,'2005-08-21 00:53:09',2709,35,'2005-08-24 05:33:09',2,'2006-02-15 21:30:53'), +(14111,'2005-08-21 00:59:01',1294,130,'2005-08-22 20:43:01',2,'2006-02-15 21:30:53'), +(14112,'2005-08-21 01:00:46',734,141,'2005-08-27 03:46:46',1,'2006-02-15 21:30:53'), +(14113,'2005-08-21 01:03:30',931,288,'2005-08-23 06:46:30',2,'2006-02-15 21:30:53'), +(14114,'2005-08-21 01:07:11',2270,8,'2005-08-24 20:33:11',1,'2006-02-15 21:30:53'), +(14115,'2005-08-21 01:10:29',1945,257,'2005-08-24 01:21:29',1,'2006-02-15 21:30:53'), +(14116,'2005-08-21 01:11:17',2356,142,'2005-08-24 23:45:17',2,'2006-02-15 21:30:53'), +(14117,'2005-08-21 01:11:59',573,493,'2005-08-22 06:56:59',1,'2006-02-15 21:30:53'), +(14118,'2005-08-21 01:13:37',2605,337,'2005-08-28 02:35:37',2,'2006-02-15 21:30:53'), +(14119,'2005-08-21 01:15:59',129,53,'2005-08-27 23:36:59',2,'2006-02-15 21:30:53'), +(14120,'2005-08-21 01:25:00',4069,302,'2005-08-24 23:21:00',2,'2006-02-15 21:30:53'), +(14121,'2005-08-21 01:26:33',4207,417,'2005-08-28 22:47:33',2,'2006-02-15 21:30:53'), +(14122,'2005-08-21 01:29:01',3955,86,'2005-08-27 05:31:01',1,'2006-02-15 21:30:53'), +(14123,'2005-08-21 01:31:25',143,66,'2005-08-23 02:32:25',1,'2006-02-15 21:30:53'), +(14124,'2005-08-21 01:31:51',311,35,'2005-08-24 22:20:51',2,'2006-02-15 21:30:53'), +(14125,'2005-08-21 01:32:16',2174,265,'2005-08-26 00:09:16',1,'2006-02-15 21:30:53'), +(14126,'2005-08-21 01:32:17',2738,215,'2005-08-23 01:02:17',1,'2006-02-15 21:30:53'), +(14127,'2005-08-21 01:33:32',4532,550,'2005-08-22 02:47:32',2,'2006-02-15 21:30:53'), +(14128,'2005-08-21 01:35:58',2594,81,'2005-08-21 21:23:58',2,'2006-02-15 21:30:53'), +(14129,'2005-08-21 01:42:15',3572,362,'2005-08-23 20:04:15',2,'2006-02-15 21:30:53'), +(14130,'2005-08-21 01:43:11',3859,352,'2005-08-27 21:16:11',2,'2006-02-15 21:30:53'), +(14131,'2005-08-21 01:43:40',4382,267,'2005-08-29 02:00:40',2,'2006-02-15 21:30:53'), +(14132,'2005-08-21 01:43:58',3806,91,'2005-08-26 20:16:58',2,'2006-02-15 21:30:53'), +(14133,'2005-08-21 01:44:14',2463,453,'2005-08-30 02:19:14',2,'2006-02-15 21:30:53'), +(14134,'2005-08-21 01:45:54',2159,497,'2005-08-24 01:36:54',1,'2006-02-15 21:30:53'), +(14135,'2005-08-21 01:53:54',347,59,'2005-08-27 05:57:54',1,'2006-02-15 21:30:53'), +(14136,'2005-08-21 01:57:26',268,135,'2005-08-28 01:11:26',1,'2006-02-15 21:30:53'), +(14137,'2006-02-14 15:16:03',2346,53,NULL,2,'2006-02-15 21:30:53'), +(14138,'2005-08-21 01:59:37',1238,121,'2005-08-30 01:17:37',2,'2006-02-15 21:30:53'), +(14139,'2005-08-21 02:04:33',2280,561,'2005-08-22 04:16:33',2,'2006-02-15 21:30:53'), +(14140,'2005-08-21 02:04:57',2070,65,'2005-08-29 06:41:57',2,'2006-02-15 21:30:53'), +(14141,'2005-08-21 02:07:22',4527,190,'2005-08-30 07:32:22',1,'2006-02-15 21:30:53'), +(14142,'2005-08-21 02:07:43',1479,544,'2005-08-23 02:37:43',2,'2006-02-15 21:30:53'), +(14143,'2005-08-21 02:10:32',2549,146,'2005-08-23 23:50:32',1,'2006-02-15 21:30:53'), +(14144,'2005-08-21 02:10:57',2366,46,'2005-08-28 01:02:57',1,'2006-02-15 21:30:53'), +(14145,'2005-08-21 02:11:38',150,314,'2005-08-22 22:19:38',2,'2006-02-15 21:30:53'), +(14146,'2005-08-21 02:13:31',2151,192,'2005-08-24 22:47:31',2,'2006-02-15 21:30:53'), +(14147,'2005-08-21 02:14:03',1476,366,'2005-08-27 22:38:03',1,'2006-02-15 21:30:53'), +(14148,'2005-08-21 02:17:49',1605,528,'2005-08-22 00:12:49',1,'2006-02-15 21:30:53'), +(14149,'2005-08-21 02:22:47',3371,518,'2005-08-24 02:36:47',1,'2006-02-15 21:30:53'), +(14150,'2005-08-21 02:23:03',2324,161,'2005-08-25 22:50:03',2,'2006-02-15 21:30:53'), +(14151,'2005-08-21 02:23:25',2785,426,'2005-08-30 07:08:25',1,'2006-02-15 21:30:53'), +(14152,'2005-08-21 02:23:50',2561,379,'2005-08-25 06:05:50',1,'2006-02-15 21:30:53'), +(14153,'2005-08-21 02:24:33',1502,120,'2005-08-27 05:28:33',2,'2006-02-15 21:30:53'), +(14154,'2005-08-21 02:30:00',951,468,'2005-08-28 01:41:00',2,'2006-02-15 21:30:53'), +(14155,'2005-08-21 02:31:35',769,148,'2005-08-27 06:00:35',2,'2006-02-15 21:30:53'), +(14156,'2005-08-21 02:35:16',437,147,'2005-08-27 01:32:16',2,'2006-02-15 21:30:53'), +(14157,'2005-08-21 02:43:15',4471,128,'2005-08-24 02:47:15',1,'2006-02-15 21:30:53'), +(14158,'2005-08-21 02:43:20',474,114,'2005-08-28 02:19:20',1,'2006-02-15 21:30:53'), +(14159,'2005-08-21 02:45:58',3231,144,'2005-08-27 04:53:58',1,'2006-02-15 21:30:53'), +(14160,'2006-02-14 15:16:03',2428,493,NULL,2,'2006-02-15 21:30:53'), +(14161,'2005-08-21 02:51:59',2744,21,'2005-08-28 21:38:59',2,'2006-02-15 21:30:53'), +(14162,'2005-08-21 02:55:34',3788,315,'2005-08-27 00:13:34',1,'2006-02-15 21:30:53'), +(14163,'2005-08-21 02:56:52',1007,204,'2005-08-21 21:03:52',2,'2006-02-15 21:30:53'), +(14164,'2005-08-21 02:58:02',2381,274,'2005-08-29 23:17:02',2,'2006-02-15 21:30:53'), +(14165,'2005-08-21 02:59:17',4151,150,'2005-08-24 23:09:17',2,'2006-02-15 21:30:53'), +(14166,'2005-08-21 02:59:31',2457,190,'2005-08-24 23:19:31',2,'2006-02-15 21:30:53'), +(14167,'2005-08-21 02:59:48',1005,64,'2005-08-29 22:17:48',1,'2006-02-15 21:30:53'), +(14168,'2005-08-21 03:00:03',1321,49,'2005-08-29 06:04:03',2,'2006-02-15 21:30:53'), +(14169,'2005-08-21 03:00:31',3800,396,'2005-08-30 01:16:31',1,'2006-02-15 21:30:53'), +(14170,'2005-08-21 03:00:39',894,259,'2005-08-27 23:07:39',1,'2006-02-15 21:30:53'), +(14171,'2005-08-21 03:00:42',4179,320,'2005-08-24 00:54:42',1,'2006-02-15 21:30:53'), +(14172,'2006-02-14 15:16:03',2158,450,NULL,2,'2006-02-15 21:30:53'), +(14173,'2005-08-21 03:01:01',3175,152,'2005-08-22 02:40:01',1,'2006-02-15 21:30:53'), +(14174,'2005-08-21 03:01:45',1862,29,'2005-08-22 07:19:45',2,'2006-02-15 21:30:53'), +(14175,'2006-02-14 15:16:03',2021,452,NULL,1,'2006-02-15 21:30:53'), +(14176,'2005-08-21 03:09:23',4420,556,'2005-08-26 21:26:23',1,'2006-02-15 21:30:53'), +(14177,'2005-08-21 03:11:33',409,121,'2005-08-28 21:41:33',2,'2006-02-15 21:30:53'), +(14178,'2005-08-21 03:13:45',2178,524,'2005-08-22 01:50:45',1,'2006-02-15 21:30:53'), +(14179,'2005-08-21 03:14:27',3956,79,'2005-08-26 00:46:27',2,'2006-02-15 21:30:53'), +(14180,'2005-08-21 03:16:15',796,262,'2005-08-24 22:31:15',2,'2006-02-15 21:30:53'), +(14181,'2005-08-21 03:16:30',197,210,'2005-08-29 06:25:30',2,'2006-02-15 21:30:53'), +(14182,'2005-08-21 03:17:10',2422,519,'2005-08-24 21:46:10',1,'2006-02-15 21:30:53'), +(14183,'2005-08-21 03:24:29',1888,26,'2005-08-22 07:25:29',2,'2006-02-15 21:30:53'), +(14184,'2005-08-21 03:24:50',3759,148,'2005-08-29 01:46:50',2,'2006-02-15 21:30:53'), +(14185,'2005-08-21 03:28:37',3957,579,'2005-08-26 01:15:37',1,'2006-02-15 21:30:53'), +(14186,'2005-08-21 03:31:07',3158,461,'2005-08-28 07:29:07',2,'2006-02-15 21:30:53'), +(14187,'2005-08-21 03:32:03',4031,275,'2005-08-25 03:29:03',2,'2006-02-15 21:30:53'), +(14188,'2005-08-21 03:32:04',4492,548,'2005-08-22 07:26:04',1,'2006-02-15 21:30:53'), +(14189,'2005-08-21 03:32:17',2209,127,'2005-08-22 04:46:17',2,'2006-02-15 21:30:53'), +(14190,'2005-08-21 03:35:21',4203,517,'2005-08-29 07:35:21',2,'2006-02-15 21:30:53'), +(14191,'2005-08-21 03:35:58',301,423,'2005-08-28 00:28:58',1,'2006-02-15 21:30:53'), +(14192,'2005-08-21 03:37:42',3563,26,'2005-08-28 05:31:42',2,'2006-02-15 21:30:53'), +(14193,'2005-08-21 03:38:27',513,25,'2005-08-28 09:16:27',1,'2006-02-15 21:30:53'), +(14194,'2005-08-21 03:40:11',2003,138,'2005-08-26 07:38:11',1,'2006-02-15 21:30:53'), +(14195,'2005-08-21 03:40:35',3732,93,'2005-08-23 01:22:35',1,'2006-02-15 21:30:53'), +(14196,'2005-08-21 03:40:40',4477,281,'2005-08-25 05:55:40',1,'2006-02-15 21:30:53'), +(14197,'2005-08-21 03:47:25',340,469,'2005-08-30 09:15:25',2,'2006-02-15 21:30:53'), +(14198,'2005-08-21 03:48:31',465,381,'2005-08-24 07:10:31',2,'2006-02-15 21:30:53'), +(14199,'2005-08-21 03:48:43',658,442,'2005-08-23 04:01:43',1,'2006-02-15 21:30:53'), +(14200,'2005-08-21 03:51:27',2339,349,'2005-08-29 22:00:27',1,'2006-02-15 21:30:53'), +(14201,'2005-08-21 03:51:34',314,427,'2005-08-30 03:42:34',2,'2006-02-15 21:30:53'), +(14202,'2005-08-21 03:51:52',1995,473,'2005-08-22 09:35:52',1,'2006-02-15 21:30:53'), +(14203,'2005-08-21 03:51:52',3668,95,'2005-08-24 06:13:52',2,'2006-02-15 21:30:53'), +(14204,'2006-02-14 15:16:03',4334,287,NULL,1,'2006-02-15 21:30:53'), +(14205,'2005-08-21 03:57:15',315,406,'2005-08-30 08:46:15',2,'2006-02-15 21:30:53'), +(14206,'2005-08-21 03:59:26',860,279,'2005-08-26 03:52:26',1,'2006-02-15 21:30:53'), +(14207,'2005-08-21 04:08:19',1327,569,'2005-08-29 07:59:19',2,'2006-02-15 21:30:53'), +(14208,'2005-08-21 04:09:18',4180,299,'2005-08-22 03:29:18',1,'2006-02-15 21:30:53'), +(14209,'2005-08-21 04:17:56',896,472,'2005-08-27 06:57:56',1,'2006-02-15 21:30:53'), +(14210,'2005-08-21 04:28:02',1867,468,'2005-08-24 02:14:02',2,'2006-02-15 21:30:53'), +(14211,'2005-08-21 04:29:11',300,372,'2005-08-24 02:50:11',2,'2006-02-15 21:30:53'), +(14212,'2005-08-21 04:29:26',4540,354,'2005-08-24 00:46:26',2,'2006-02-15 21:30:53'), +(14213,'2005-08-21 04:30:47',382,511,'2005-08-24 23:01:47',1,'2006-02-15 21:30:53'), +(14214,'2005-08-21 04:30:49',4510,198,'2005-08-26 04:42:49',1,'2006-02-15 21:30:53'), +(14215,'2005-08-21 04:34:11',35,54,'2005-08-27 10:30:11',2,'2006-02-15 21:30:53'), +(14216,'2006-02-14 15:16:03',3763,186,NULL,1,'2006-02-15 21:30:53'), +(14217,'2005-08-21 04:37:56',2847,66,'2005-08-26 03:55:56',2,'2006-02-15 21:30:53'), +(14218,'2005-08-21 04:43:59',4087,104,'2005-08-27 10:29:59',1,'2006-02-15 21:30:53'), +(14219,'2006-02-14 15:16:03',3718,334,NULL,2,'2006-02-15 21:30:53'), +(14220,'2006-02-14 15:16:03',2618,162,NULL,1,'2006-02-15 21:30:53'), +(14221,'2005-08-21 04:49:41',3824,51,'2005-08-29 23:52:41',1,'2006-02-15 21:30:53'), +(14222,'2005-08-21 04:49:48',714,7,'2005-08-25 05:34:48',2,'2006-02-15 21:30:53'), +(14223,'2005-08-21 04:51:51',514,392,'2005-08-29 00:37:51',1,'2006-02-15 21:30:53'), +(14224,'2005-08-21 04:53:08',3634,323,'2005-08-27 04:12:08',2,'2006-02-15 21:30:53'), +(14225,'2005-08-21 04:53:37',984,4,'2005-08-25 23:39:37',2,'2006-02-15 21:30:53'), +(14226,'2005-08-21 04:55:37',1793,316,'2005-08-24 04:32:37',1,'2006-02-15 21:30:53'), +(14227,'2005-08-21 04:56:31',4102,277,'2005-08-22 05:04:31',2,'2006-02-15 21:30:53'), +(14228,'2005-08-21 04:57:08',2016,71,'2005-08-25 00:06:08',2,'2006-02-15 21:30:53'), +(14229,'2005-08-21 04:57:15',4479,186,'2005-08-26 10:00:15',1,'2006-02-15 21:30:53'), +(14230,'2005-08-21 04:57:29',844,584,'2005-08-27 08:14:29',2,'2006-02-15 21:30:53'), +(14231,'2005-08-21 05:04:34',1244,307,'2005-08-23 04:58:34',1,'2006-02-15 21:30:53'), +(14232,'2005-08-21 05:07:02',2710,176,'2005-08-29 06:57:02',1,'2006-02-15 21:30:53'), +(14233,'2005-08-21 05:07:08',2943,599,'2005-08-28 03:20:08',1,'2006-02-15 21:30:53'), +(14234,'2005-08-21 05:07:12',1439,271,'2005-08-23 06:44:12',2,'2006-02-15 21:30:53'), +(14235,'2005-08-21 05:08:42',125,558,'2005-08-29 23:36:42',1,'2006-02-15 21:30:53'), +(14236,'2005-08-21 05:13:16',172,25,'2005-08-26 04:03:16',2,'2006-02-15 21:30:53'), +(14237,'2005-08-21 05:15:00',3284,410,'2005-08-25 10:06:00',1,'2006-02-15 21:30:53'), +(14238,'2005-08-21 05:16:40',3148,192,'2005-08-30 02:13:40',2,'2006-02-15 21:30:53'), +(14239,'2005-08-21 05:18:57',1559,416,'2005-08-22 00:12:57',2,'2006-02-15 21:30:53'), +(14240,'2005-08-21 05:19:39',3294,12,'2005-08-22 23:25:39',2,'2006-02-15 21:30:53'), +(14241,'2005-08-21 05:24:55',2547,291,'2005-08-30 03:33:55',1,'2006-02-15 21:30:53'), +(14242,'2005-08-21 05:25:59',1588,68,'2005-08-27 07:22:59',1,'2006-02-15 21:30:53'), +(14243,'2006-02-14 15:16:03',1489,264,NULL,1,'2006-02-15 21:30:53'), +(14244,'2005-08-21 05:29:55',1150,43,'2005-08-24 01:06:55',1,'2006-02-15 21:30:53'), +(14245,'2005-08-21 05:30:54',975,354,'2005-08-26 07:02:54',1,'2006-02-15 21:30:53'), +(14246,'2005-08-21 05:34:09',3499,120,'2005-08-26 06:12:09',1,'2006-02-15 21:30:53'), +(14247,'2005-08-21 05:35:17',267,302,'2005-08-26 03:22:17',1,'2006-02-15 21:30:53'), +(14248,'2005-08-21 05:35:57',725,293,'2005-08-28 05:53:57',2,'2006-02-15 21:30:53'), +(14249,'2005-08-21 05:38:05',695,268,'2005-08-28 09:07:05',2,'2006-02-15 21:30:53'), +(14250,'2005-08-21 05:39:35',3008,313,'2005-08-28 10:06:35',2,'2006-02-15 21:30:53'), +(14251,'2005-08-21 05:42:20',139,486,'2005-08-26 06:20:20',2,'2006-02-15 21:30:53'), +(14252,'2005-08-21 05:44:07',2660,13,'2005-08-29 08:53:07',1,'2006-02-15 21:30:53'), +(14253,'2005-08-21 05:47:52',4246,456,'2005-08-25 04:28:52',1,'2006-02-15 21:30:53'), +(14254,'2005-08-21 05:51:28',1549,589,'2005-08-29 06:05:28',2,'2006-02-15 21:30:53'), +(14255,'2005-08-21 05:51:37',3125,492,'2005-08-29 10:00:37',1,'2006-02-15 21:30:53'), +(14256,'2005-08-21 05:52:27',2922,331,'2005-08-29 02:10:27',2,'2006-02-15 21:30:53'), +(14257,'2005-08-21 05:52:57',3830,178,'2005-08-29 03:18:57',2,'2006-02-15 21:30:53'), +(14258,'2005-08-21 05:56:36',752,359,'2005-08-26 06:14:36',1,'2006-02-15 21:30:53'), +(14259,'2005-08-21 06:00:22',3705,583,'2005-08-22 05:38:22',2,'2006-02-15 21:30:53'), +(14260,'2005-08-21 06:01:08',2961,40,'2005-08-29 09:01:08',2,'2006-02-15 21:30:53'), +(14261,'2005-08-21 06:07:24',1426,166,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'), +(14262,'2005-08-21 06:08:13',1430,324,'2005-08-30 10:55:13',1,'2006-02-15 21:30:53'), +(14263,'2005-08-21 06:08:15',2595,533,'2005-08-29 09:22:15',2,'2006-02-15 21:30:53'), +(14264,'2005-08-21 06:18:22',3426,295,'2005-08-25 08:08:22',1,'2006-02-15 21:30:53'), +(14265,'2005-08-21 06:20:14',3116,134,'2005-08-23 09:05:14',1,'2006-02-15 21:30:53'), +(14266,'2005-08-21 06:20:51',3543,269,'2005-08-23 00:44:51',1,'2006-02-15 21:30:53'), +(14267,'2006-02-14 15:16:03',2199,527,NULL,2,'2006-02-15 21:30:53'), +(14268,'2005-08-21 06:21:24',2442,278,'2005-08-23 05:39:24',2,'2006-02-15 21:30:53'), +(14269,'2005-08-21 06:22:07',531,241,'2005-08-30 00:41:07',2,'2006-02-15 21:30:53'), +(14270,'2005-08-21 06:22:18',4083,171,'2005-08-27 08:04:18',1,'2006-02-15 21:30:53'), +(14271,'2005-08-21 06:23:29',4506,224,'2005-08-27 04:49:29',1,'2006-02-15 21:30:53'), +(14272,'2005-08-21 06:24:55',3908,243,'2005-08-28 02:25:55',1,'2006-02-15 21:30:53'), +(14273,'2005-08-21 06:26:48',2640,388,'2005-08-30 10:34:48',1,'2006-02-15 21:30:53'), +(14274,'2005-08-21 06:29:20',3183,405,'2005-08-26 06:25:20',2,'2006-02-15 21:30:53'), +(14275,'2005-08-21 06:30:30',3238,163,'2005-08-25 12:28:30',1,'2006-02-15 21:30:53'), +(14276,'2005-08-21 06:34:05',3637,318,'2005-08-28 10:13:05',2,'2006-02-15 21:30:53'), +(14277,'2005-08-21 06:34:41',2652,566,'2005-08-28 10:53:41',2,'2006-02-15 21:30:53'), +(14278,'2006-02-14 15:16:03',2334,557,NULL,2,'2006-02-15 21:30:53'), +(14279,'2005-08-21 06:39:08',3325,387,'2005-08-29 11:01:08',2,'2006-02-15 21:30:53'), +(14280,'2005-08-21 06:39:58',1561,481,'2005-08-23 04:50:58',1,'2006-02-15 21:30:53'), +(14281,'2005-08-21 06:40:48',1848,166,'2005-08-26 11:42:48',2,'2006-02-15 21:30:53'), +(14282,'2005-08-21 06:41:29',3107,450,'2005-08-22 12:37:29',1,'2006-02-15 21:30:53'), +(14283,'2005-08-21 06:44:14',3052,253,'2005-08-24 01:01:14',1,'2006-02-15 21:30:53'), +(14284,'2005-08-21 06:44:37',633,486,'2005-08-28 05:03:37',1,'2006-02-15 21:30:53'), +(14285,'2005-08-21 06:50:48',402,249,'2005-08-28 11:35:48',1,'2006-02-15 21:30:53'), +(14286,'2005-08-21 06:53:53',2377,558,'2005-08-27 11:37:53',2,'2006-02-15 21:30:53'), +(14287,'2005-08-21 06:53:59',2426,427,'2005-08-25 03:10:59',2,'2006-02-15 21:30:53'), +(14288,'2005-08-21 06:57:34',587,512,'2005-08-26 11:32:34',1,'2006-02-15 21:30:53'), +(14289,'2005-08-21 06:58:49',1185,103,'2005-08-25 11:29:49',2,'2006-02-15 21:30:53'), +(14290,'2005-08-21 07:02:59',790,366,'2005-08-28 02:57:59',1,'2006-02-15 21:30:53'), +(14291,'2005-08-21 07:03:05',3988,56,'2005-08-26 12:56:05',2,'2006-02-15 21:30:53'), +(14292,'2005-08-21 07:06:20',1959,251,'2005-08-22 01:39:20',2,'2006-02-15 21:30:53'), +(14293,'2005-08-21 07:06:47',3555,364,'2005-08-22 05:07:47',2,'2006-02-15 21:30:53'), +(14294,'2005-08-21 07:07:26',354,455,'2005-08-22 02:20:26',2,'2006-02-15 21:30:53'), +(14295,'2005-08-21 07:09:27',2187,336,'2005-08-22 01:27:27',2,'2006-02-15 21:30:53'), +(14296,'2005-08-21 07:13:23',3813,275,'2005-08-26 11:14:23',1,'2006-02-15 21:30:53'), +(14297,'2005-08-21 07:13:46',1712,566,'2005-08-25 09:07:46',1,'2006-02-15 21:30:53'), +(14298,'2005-08-21 07:17:10',4317,410,'2005-08-25 10:10:10',1,'2006-02-15 21:30:53'), +(14299,'2005-08-21 07:18:57',4028,342,'2005-08-24 01:28:57',1,'2006-02-15 21:30:53'), +(14300,'2005-08-21 07:19:37',690,382,'2005-08-25 12:06:37',2,'2006-02-15 21:30:53'), +(14301,'2005-08-21 07:19:48',283,162,'2005-08-28 02:06:48',1,'2006-02-15 21:30:53'), +(14302,'2005-08-21 07:19:57',1287,511,'2005-08-28 02:59:57',1,'2006-02-15 21:30:53'), +(14303,'2005-08-21 07:22:43',992,475,'2005-08-24 11:52:43',1,'2006-02-15 21:30:53'), +(14304,'2005-08-21 07:23:10',2650,417,'2005-08-26 11:21:10',2,'2006-02-15 21:30:53'), +(14305,'2005-08-21 07:29:05',2056,58,'2005-08-27 08:18:05',1,'2006-02-15 21:30:53'), +(14306,'2005-08-21 07:32:35',4027,453,'2005-08-30 05:53:35',1,'2006-02-15 21:30:53'), +(14307,'2005-08-21 07:34:52',2894,328,'2005-08-29 09:45:52',1,'2006-02-15 21:30:53'), +(14308,'2005-08-21 07:43:21',3478,419,'2005-08-25 02:39:21',2,'2006-02-15 21:30:53'), +(14309,'2005-08-21 07:44:17',4447,468,'2005-08-30 07:23:17',2,'2006-02-15 21:30:53'), +(14310,'2005-08-21 07:44:32',95,177,'2005-08-22 09:02:32',1,'2006-02-15 21:30:53'), +(14311,'2005-08-21 07:45:47',1761,69,'2005-08-27 02:23:47',2,'2006-02-15 21:30:53'), +(14312,'2005-08-21 07:48:34',1090,238,'2005-08-23 04:45:34',1,'2006-02-15 21:30:53'), +(14313,'2005-08-21 07:49:53',3384,468,'2005-08-30 05:52:53',2,'2006-02-15 21:30:53'), +(14314,'2005-08-21 07:50:14',4115,178,'2005-08-24 10:47:14',2,'2006-02-15 21:30:53'), +(14315,'2005-08-21 07:56:39',1164,459,'2005-08-27 04:52:39',1,'2006-02-15 21:30:53'), +(14316,'2005-08-21 07:59:47',386,64,'2005-08-23 02:20:47',2,'2006-02-15 21:30:53'), +(14317,'2005-08-21 08:00:40',2090,471,'2005-08-27 06:52:40',1,'2006-02-15 21:30:53'), +(14318,'2006-02-14 15:16:03',1042,508,NULL,2,'2006-02-15 21:30:53'), +(14319,'2005-08-21 08:00:55',4480,410,'2005-08-26 05:04:55',1,'2006-02-15 21:30:53'), +(14320,'2005-08-21 08:04:40',3121,199,'2005-08-22 02:09:40',1,'2006-02-15 21:30:53'), +(14321,'2005-08-21 08:05:12',967,236,'2005-08-23 02:17:12',1,'2006-02-15 21:30:53'), +(14322,'2005-08-21 08:06:30',2818,221,'2005-08-29 10:12:30',2,'2006-02-15 21:30:53'), +(14323,'2005-08-21 08:08:43',1257,97,'2005-08-25 10:44:43',1,'2006-02-15 21:30:53'), +(14324,'2005-08-21 08:10:56',1361,155,'2005-08-30 12:09:56',1,'2006-02-15 21:30:53'), +(14325,'2005-08-21 08:15:38',4432,313,'2005-08-23 08:08:38',2,'2006-02-15 21:30:53'), +(14326,'2005-08-21 08:15:41',1052,17,'2005-08-27 05:22:41',1,'2006-02-15 21:30:53'), +(14327,'2005-08-21 08:18:18',553,457,'2005-08-30 02:21:18',2,'2006-02-15 21:30:53'), +(14328,'2005-08-21 08:18:20',3194,489,'2005-08-25 03:05:20',2,'2006-02-15 21:30:53'), +(14329,'2005-08-21 08:22:56',3544,6,'2005-08-28 02:22:56',2,'2006-02-15 21:30:53'), +(14330,'2005-08-21 08:29:20',763,84,'2005-08-30 03:59:20',2,'2006-02-15 21:30:53'), +(14331,'2005-08-21 08:29:38',3128,372,'2005-08-29 13:18:38',2,'2006-02-15 21:30:53'), +(14332,'2005-08-21 08:30:43',1388,496,'2005-08-29 10:51:43',1,'2006-02-15 21:30:53'), +(14333,'2005-08-21 08:31:03',2976,93,'2005-08-28 03:39:03',2,'2006-02-15 21:30:53'), +(14334,'2005-08-21 08:32:32',1448,595,'2005-08-25 02:53:32',2,'2006-02-15 21:30:53'), +(14335,'2005-08-21 08:33:07',2610,263,'2005-08-26 14:16:07',1,'2006-02-15 21:30:53'), +(14336,'2005-08-21 08:33:42',3166,362,'2005-08-23 03:27:42',1,'2006-02-15 21:30:53'), +(14337,'2005-08-21 08:34:26',3529,506,'2005-08-24 11:31:26',1,'2006-02-15 21:30:53'), +(14338,'2005-08-21 08:36:03',1789,205,'2005-08-24 12:31:03',2,'2006-02-15 21:30:53'), +(14339,'2005-08-21 08:37:15',1744,30,'2005-08-26 03:37:15',2,'2006-02-15 21:30:53'), +(14340,'2005-08-21 08:38:21',2181,230,'2005-08-25 09:25:21',1,'2006-02-15 21:30:53'), +(14341,'2005-08-21 08:38:24',4498,560,'2005-08-26 12:36:24',1,'2006-02-15 21:30:53'), +(14342,'2005-08-21 08:39:26',2749,559,'2005-08-23 11:40:26',2,'2006-02-15 21:30:53'), +(14343,'2005-08-21 08:40:21',3769,238,'2005-08-29 03:06:21',1,'2006-02-15 21:30:53'), +(14344,'2005-08-21 08:40:56',1562,341,'2005-08-27 12:40:56',1,'2006-02-15 21:30:53'), +(14345,'2005-08-21 08:41:15',1726,598,'2005-08-24 11:59:15',1,'2006-02-15 21:30:53'), +(14346,'2005-08-21 08:42:26',109,17,'2005-08-23 09:18:26',2,'2006-02-15 21:30:53'), +(14347,'2005-08-21 08:42:31',3862,214,'2005-08-25 07:11:31',2,'2006-02-15 21:30:53'), +(14348,'2005-08-21 08:54:26',885,496,'2005-08-24 02:55:26',2,'2006-02-15 21:30:53'), +(14349,'2005-08-21 08:54:53',96,119,'2005-08-30 14:27:53',1,'2006-02-15 21:30:53'), +(14350,'2005-08-21 08:58:38',3174,222,'2005-08-30 03:29:38',2,'2006-02-15 21:30:53'), +(14351,'2005-08-21 09:04:20',2037,66,'2005-08-25 05:27:20',1,'2006-02-15 21:30:53'), +(14352,'2005-08-21 09:06:29',1224,527,'2005-08-28 13:36:29',1,'2006-02-15 21:30:53'), +(14353,'2005-08-21 09:07:50',1612,129,'2005-08-22 10:31:50',2,'2006-02-15 21:30:53'), +(14354,'2005-08-21 09:08:14',1137,382,'2005-08-30 05:27:14',1,'2006-02-15 21:30:53'), +(14355,'2005-08-21 09:08:29',649,271,'2005-08-27 10:08:29',2,'2006-02-15 21:30:53'), +(14356,'2005-08-21 09:08:51',3169,65,'2005-08-24 04:36:51',2,'2006-02-15 21:30:53'), +(14357,'2005-08-21 09:13:09',2906,233,'2005-08-22 05:41:09',2,'2006-02-15 21:30:53'), +(14358,'2005-08-21 09:14:28',861,112,'2005-08-24 05:05:28',1,'2006-02-15 21:30:53'), +(14359,'2005-08-21 09:16:19',1841,401,'2005-08-22 09:28:19',1,'2006-02-15 21:30:53'), +(14360,'2005-08-21 09:16:40',2677,246,'2005-08-29 11:43:40',2,'2006-02-15 21:30:53'), +(14361,'2006-02-14 15:16:03',1231,191,NULL,2,'2006-02-15 21:30:53'), +(14362,'2005-08-21 09:19:49',1992,312,'2005-08-26 11:06:49',1,'2006-02-15 21:30:53'), +(14363,'2005-08-21 09:20:03',2579,560,'2005-08-23 14:26:03',1,'2006-02-15 21:30:53'), +(14364,'2005-08-21 09:25:11',3513,236,'2005-08-29 09:04:11',1,'2006-02-15 21:30:53'), +(14365,'2005-08-21 09:25:13',618,457,'2005-08-27 11:48:13',1,'2006-02-15 21:30:53'), +(14366,'2005-08-21 09:31:39',4011,524,'2005-08-26 11:55:39',2,'2006-02-15 21:30:53'), +(14367,'2005-08-21 09:31:44',870,244,'2005-08-26 03:54:44',2,'2006-02-15 21:30:53'), +(14368,'2005-08-21 09:31:47',2063,351,'2005-08-30 04:17:47',1,'2006-02-15 21:30:53'), +(14369,'2005-08-21 09:33:44',1636,392,'2005-08-25 08:56:44',1,'2006-02-15 21:30:53'), +(14370,'2005-08-21 09:35:14',3520,161,'2005-08-27 05:21:14',2,'2006-02-15 21:30:53'), +(14371,'2005-08-21 09:37:16',2197,221,'2005-08-27 13:50:16',2,'2006-02-15 21:30:53'), +(14372,'2005-08-21 09:39:50',1953,520,'2005-08-28 13:36:50',1,'2006-02-15 21:30:53'), +(14373,'2005-08-21 09:44:53',4433,268,'2005-08-25 15:37:53',1,'2006-02-15 21:30:53'), +(14374,'2006-02-14 15:16:03',236,213,NULL,2,'2006-02-15 21:30:53'), +(14375,'2005-08-21 09:46:35',2507,550,'2005-08-26 10:24:35',2,'2006-02-15 21:30:53'), +(14376,'2005-08-21 09:48:56',1936,582,'2005-08-22 12:15:56',2,'2006-02-15 21:30:53'), +(14377,'2005-08-21 09:49:28',1325,6,'2005-08-29 13:34:28',1,'2006-02-15 21:30:53'), +(14378,'2005-08-21 09:50:02',810,515,'2005-08-30 09:07:02',1,'2006-02-15 21:30:53'), +(14379,'2005-08-21 09:53:03',3062,136,'2005-08-24 14:32:03',1,'2006-02-15 21:30:53'), +(14380,'2005-08-21 09:53:52',1523,198,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'), +(14381,'2005-08-21 09:55:47',811,391,'2005-08-25 08:23:47',1,'2006-02-15 21:30:53'), +(14382,'2005-08-21 10:01:03',4119,119,'2005-08-22 13:21:03',2,'2006-02-15 21:30:53'), +(14383,'2005-08-21 10:02:05',1941,482,'2005-08-24 12:21:05',2,'2006-02-15 21:30:53'), +(14384,'2005-08-21 10:02:37',2429,371,'2005-08-26 08:20:37',1,'2006-02-15 21:30:53'), +(14385,'2005-08-21 10:02:55',4356,317,'2005-08-25 07:19:55',2,'2006-02-15 21:30:53'), +(14386,'2005-08-21 10:06:34',3402,514,'2005-08-25 14:19:34',1,'2006-02-15 21:30:53'), +(14387,'2005-08-21 10:10:01',1286,295,'2005-08-28 14:16:01',2,'2006-02-15 21:30:53'), +(14388,'2005-08-21 10:15:13',1078,274,'2005-08-30 13:41:13',2,'2006-02-15 21:30:53'), +(14389,'2005-08-21 10:15:20',2718,145,'2005-08-27 05:39:20',1,'2006-02-15 21:30:53'), +(14390,'2005-08-21 10:15:38',3951,366,'2005-08-28 05:50:38',2,'2006-02-15 21:30:53'), +(14391,'2005-08-21 10:16:27',3117,205,'2005-08-23 07:00:27',2,'2006-02-15 21:30:53'), +(14392,'2005-08-21 10:19:25',847,586,'2005-08-28 15:57:25',2,'2006-02-15 21:30:53'), +(14393,'2005-08-21 10:22:51',3937,368,'2005-08-29 08:28:51',1,'2006-02-15 21:30:53'), +(14394,'2005-08-21 10:23:10',4555,118,'2005-08-28 09:33:10',1,'2006-02-15 21:30:53'), +(14395,'2005-08-21 10:24:00',632,506,'2005-08-28 12:23:00',2,'2006-02-15 21:30:53'), +(14396,'2005-08-21 10:24:54',3855,353,'2005-08-22 04:49:54',2,'2006-02-15 21:30:53'), +(14397,'2005-08-21 10:25:56',3883,47,'2005-08-24 07:48:56',1,'2006-02-15 21:30:53'), +(14398,'2005-08-21 10:27:21',357,505,'2005-08-23 10:46:21',2,'2006-02-15 21:30:53'), +(14399,'2005-08-21 10:33:23',3582,188,'2005-08-27 08:00:23',1,'2006-02-15 21:30:53'), +(14400,'2005-08-21 10:33:45',3891,569,'2005-08-26 12:05:45',1,'2006-02-15 21:30:53'), +(14401,'2005-08-21 10:36:20',3468,407,'2005-08-30 06:45:20',1,'2006-02-15 21:30:53'), +(14402,'2005-08-21 10:38:17',749,467,'2005-08-27 08:36:17',2,'2006-02-15 21:30:53'), +(14403,'2005-08-21 10:40:34',3581,297,'2005-08-29 11:29:34',1,'2006-02-15 21:30:53'), +(14404,'2005-08-21 10:43:04',3660,192,'2005-08-30 10:00:04',1,'2006-02-15 21:30:53'), +(14405,'2005-08-21 10:45:01',2777,470,'2005-08-30 04:48:01',2,'2006-02-15 21:30:53'), +(14406,'2005-08-21 10:46:35',2741,181,'2005-08-28 15:55:35',1,'2006-02-15 21:30:53'), +(14407,'2005-08-21 10:46:51',2403,500,'2005-08-25 09:28:51',2,'2006-02-15 21:30:53'), +(14408,'2005-08-21 10:47:24',222,593,'2005-08-27 08:18:24',1,'2006-02-15 21:30:53'), +(14409,'2005-08-21 10:53:35',1161,314,'2005-08-25 10:40:35',2,'2006-02-15 21:30:53'), +(14410,'2005-08-21 10:54:49',839,196,'2005-08-26 08:28:49',2,'2006-02-15 21:30:53'), +(14411,'2005-08-21 10:54:57',2125,502,'2005-08-22 13:17:57',2,'2006-02-15 21:30:53'), +(14412,'2005-08-21 11:02:09',212,121,'2005-08-29 06:44:09',1,'2006-02-15 21:30:53'), +(14413,'2005-08-21 11:06:33',50,367,'2005-08-29 16:10:33',1,'2006-02-15 21:30:53'), +(14414,'2005-08-21 11:08:17',1757,515,'2005-08-23 08:37:17',2,'2006-02-15 21:30:53'), +(14415,'2006-02-14 15:16:03',2670,561,NULL,2,'2006-02-15 21:30:53'), +(14416,'2005-08-21 11:11:46',3002,384,'2005-08-25 12:33:46',1,'2006-02-15 21:30:53'), +(14417,'2005-08-21 11:13:35',1768,596,'2005-08-25 11:27:35',1,'2006-02-15 21:30:53'), +(14418,'2005-08-21 11:14:26',89,442,'2005-08-28 08:34:26',2,'2006-02-15 21:30:53'), +(14419,'2005-08-21 11:15:46',3146,221,'2005-08-30 16:37:46',1,'2006-02-15 21:30:53'), +(14420,'2005-08-21 11:16:15',2495,551,'2005-08-24 06:06:15',2,'2006-02-15 21:30:53'), +(14421,'2005-08-21 11:20:21',4402,406,'2005-08-24 06:26:21',1,'2006-02-15 21:30:53'), +(14422,'2005-08-21 11:21:46',1382,361,'2005-08-25 13:15:46',1,'2006-02-15 21:30:53'), +(14423,'2005-08-21 11:23:59',2873,521,'2005-08-26 11:52:59',2,'2006-02-15 21:30:53'), +(14424,'2005-08-21 11:24:11',2535,489,'2005-08-29 13:13:11',2,'2006-02-15 21:30:53'), +(14425,'2006-02-14 15:16:03',2752,560,NULL,2,'2006-02-15 21:30:53'), +(14426,'2006-02-14 15:16:03',2902,315,NULL,1,'2006-02-15 21:30:53'), +(14427,'2005-08-21 11:26:06',2353,163,'2005-08-27 10:39:06',1,'2006-02-15 21:30:53'), +(14428,'2005-08-21 11:27:07',1614,458,'2005-08-29 09:50:07',1,'2006-02-15 21:30:53'), +(14429,'2005-08-21 11:29:43',2513,66,'2005-08-24 12:05:43',1,'2006-02-15 21:30:53'), +(14430,'2005-08-21 11:31:11',2623,5,'2005-08-26 06:29:11',1,'2006-02-15 21:30:53'), +(14431,'2005-08-21 11:31:15',1572,106,'2005-08-26 11:22:15',2,'2006-02-15 21:30:53'), +(14432,'2005-08-21 11:36:15',2294,138,'2005-08-24 08:02:15',2,'2006-02-15 21:30:53'), +(14433,'2005-08-21 11:36:34',732,401,'2005-08-26 08:51:34',1,'2006-02-15 21:30:53'), +(14434,'2005-08-21 11:40:46',2085,549,'2005-08-24 05:50:46',1,'2006-02-15 21:30:53'), +(14435,'2005-08-21 11:44:37',2919,169,'2005-08-24 08:04:37',1,'2006-02-15 21:30:53'), +(14436,'2005-08-21 11:48:27',3473,560,'2005-08-25 15:49:27',2,'2006-02-15 21:30:53'), +(14437,'2005-08-21 11:48:32',1504,136,'2005-08-25 11:06:32',2,'2006-02-15 21:30:53'), +(14438,'2005-08-21 11:51:10',1621,392,'2005-08-28 17:10:10',1,'2006-02-15 21:30:53'), +(14439,'2005-08-21 11:52:41',3903,564,'2005-08-30 10:36:41',1,'2006-02-15 21:30:53'), +(14440,'2005-08-21 11:59:04',3495,194,'2005-08-23 10:10:04',1,'2006-02-15 21:30:53'), +(14441,'2005-08-21 11:59:38',1210,260,'2005-08-26 11:17:38',2,'2006-02-15 21:30:53'), +(14442,'2005-08-21 12:00:21',122,205,'2005-08-23 17:00:21',2,'2006-02-15 21:30:53'), +(14443,'2005-08-21 12:06:32',376,447,'2005-08-29 13:44:32',2,'2006-02-15 21:30:53'), +(14444,'2005-08-21 12:07:25',2211,225,'2005-08-28 08:36:25',2,'2006-02-15 21:30:53'), +(14445,'2005-08-21 12:07:42',3186,256,'2005-08-22 17:51:42',2,'2006-02-15 21:30:53'), +(14446,'2005-08-21 12:10:41',4367,21,'2005-08-26 14:42:41',1,'2006-02-15 21:30:53'), +(14447,'2005-08-21 12:12:05',1889,584,'2005-08-27 14:47:05',2,'2006-02-15 21:30:53'), +(14448,'2005-08-21 12:13:10',1937,263,'2005-08-30 08:46:10',1,'2006-02-15 21:30:53'), +(14449,'2005-08-21 12:13:18',653,529,'2005-08-27 15:41:18',2,'2006-02-15 21:30:53'), +(14450,'2005-08-21 12:21:25',1194,48,'2005-08-26 14:35:25',2,'2006-02-15 21:30:53'), +(14451,'2005-08-21 12:21:44',3967,467,'2005-08-22 15:07:44',2,'2006-02-15 21:30:53'), +(14452,'2005-08-21 12:23:20',4231,325,'2005-08-27 06:26:20',1,'2006-02-15 21:30:53'), +(14453,'2005-08-21 12:33:34',3312,237,'2005-08-27 11:10:34',1,'2006-02-15 21:30:53'), +(14454,'2005-08-21 12:35:49',2475,150,'2005-08-22 16:28:49',2,'2006-02-15 21:30:53'), +(14455,'2005-08-21 12:36:11',3442,68,'2005-08-27 08:12:11',2,'2006-02-15 21:30:53'), +(14456,'2005-08-21 12:38:09',2520,125,'2005-08-26 08:29:09',1,'2006-02-15 21:30:53'), +(14457,'2005-08-21 12:47:38',4288,340,'2005-08-25 13:07:38',1,'2006-02-15 21:30:53'), +(14458,'2005-08-21 12:47:53',1769,256,'2005-08-30 17:09:53',2,'2006-02-15 21:30:53'), +(14459,'2005-08-21 12:48:08',1532,98,'2005-08-27 10:50:08',2,'2006-02-15 21:30:53'), +(14460,'2005-08-21 12:48:48',4137,120,'2005-08-30 16:34:48',2,'2006-02-15 21:30:53'), +(14461,'2005-08-21 12:50:33',371,42,'2005-08-30 13:35:33',1,'2006-02-15 21:30:53'), +(14462,'2005-08-21 12:50:57',2201,96,'2005-08-27 10:42:57',2,'2006-02-15 21:30:53'), +(14463,'2005-08-21 12:51:49',1403,365,'2005-08-29 12:17:49',1,'2006-02-15 21:30:53'), +(14464,'2005-08-21 12:52:54',2310,121,'2005-08-25 16:42:54',1,'2006-02-15 21:30:53'), +(14465,'2005-08-21 12:54:22',4206,262,'2005-08-28 10:46:22',2,'2006-02-15 21:30:53'), +(14466,'2005-08-21 13:03:13',923,442,'2005-08-22 15:19:13',2,'2006-02-15 21:30:53'), +(14467,'2005-08-21 13:03:33',1498,522,'2005-08-28 15:28:33',1,'2006-02-15 21:30:53'), +(14468,'2005-08-21 13:07:10',4168,224,'2005-08-30 19:05:10',2,'2006-02-15 21:30:53'), +(14469,'2005-08-21 13:07:24',1957,554,'2005-08-24 10:37:24',1,'2006-02-15 21:30:53'), +(14470,'2005-08-21 13:09:41',3899,379,'2005-08-23 10:20:41',2,'2006-02-15 21:30:53'), +(14471,'2005-08-21 13:10:40',1254,395,'2005-08-26 16:49:40',1,'2006-02-15 21:30:53'), +(14472,'2005-08-21 13:13:57',4097,184,'2005-08-23 14:04:57',2,'2006-02-15 21:30:53'), +(14473,'2005-08-21 13:19:03',2747,298,'2005-08-23 15:12:03',1,'2006-02-15 21:30:53'), +(14474,'2005-08-21 13:22:48',2632,294,'2005-08-27 14:13:48',2,'2006-02-15 21:30:53'), +(14475,'2005-08-21 13:24:32',3164,2,'2005-08-27 08:59:32',2,'2006-02-15 21:30:53'), +(14476,'2005-08-21 13:31:07',2821,101,'2005-08-23 17:06:07',1,'2006-02-15 21:30:53'), +(14477,'2005-08-21 13:32:38',1564,126,'2005-08-25 18:02:38',2,'2006-02-15 21:30:53'), +(14478,'2005-08-21 13:33:28',2990,231,'2005-08-25 13:33:28',2,'2006-02-15 21:30:53'), +(14479,'2005-08-21 13:35:54',2235,324,'2005-08-29 12:12:54',2,'2006-02-15 21:30:53'), +(14480,'2005-08-21 13:36:40',229,411,'2005-08-26 08:39:40',1,'2006-02-15 21:30:53'), +(14481,'2005-08-21 13:41:14',4099,367,'2005-08-30 07:53:14',2,'2006-02-15 21:30:53'), +(14482,'2005-08-21 13:42:45',2765,23,'2005-08-27 11:55:45',1,'2006-02-15 21:30:53'), +(14483,'2005-08-21 13:43:59',37,275,'2005-08-28 16:38:59',2,'2006-02-15 21:30:53'), +(14484,'2005-08-21 13:47:29',3714,418,'2005-08-23 18:25:29',1,'2006-02-15 21:30:53'), +(14485,'2005-08-21 13:52:07',1637,241,'2005-08-30 13:06:07',2,'2006-02-15 21:30:53'), +(14486,'2005-08-21 13:52:54',3119,138,'2005-08-23 07:58:54',1,'2006-02-15 21:30:53'), +(14487,'2005-08-21 13:53:33',2578,526,'2005-08-29 19:32:33',1,'2006-02-15 21:30:53'), +(14488,'2006-02-14 15:16:03',4202,75,NULL,2,'2006-02-15 21:30:53'), +(14489,'2005-08-21 13:53:59',2312,9,'2005-08-30 15:45:59',2,'2006-02-15 21:30:53'), +(14490,'2005-08-21 13:54:15',1771,205,'2005-08-28 19:08:15',2,'2006-02-15 21:30:53'), +(14491,'2005-08-21 13:55:39',2072,226,'2005-08-29 17:51:39',1,'2006-02-15 21:30:53'), +(14492,'2005-08-21 13:59:08',1591,266,'2005-08-23 11:09:08',1,'2006-02-15 21:30:53'), +(14493,'2005-08-21 14:01:44',2590,389,'2005-08-28 17:20:44',1,'2006-02-15 21:30:53'), +(14494,'2005-08-21 14:02:50',169,5,'2005-08-22 16:45:50',2,'2006-02-15 21:30:53'), +(14495,'2005-08-21 14:04:39',3215,429,'2005-08-22 16:53:39',2,'2006-02-15 21:30:53'), +(14496,'2005-08-21 14:07:35',2185,223,'2005-08-24 12:31:35',1,'2006-02-15 21:30:53'), +(14497,'2005-08-21 14:09:47',3240,254,'2005-08-22 11:10:47',2,'2006-02-15 21:30:53'), +(14498,'2005-08-21 14:10:44',3971,544,'2005-08-23 08:29:44',1,'2006-02-15 21:30:53'), +(14499,'2005-08-21 14:11:19',4109,292,'2005-08-23 16:10:19',2,'2006-02-15 21:30:53'), +(14500,'2005-08-21 14:11:30',2024,451,'2005-08-27 12:19:30',1,'2006-02-15 21:30:53'), +(14501,'2005-08-21 14:14:38',3588,576,'2005-08-25 17:58:38',1,'2006-02-15 21:30:53'), +(14502,'2005-08-21 14:22:28',2986,378,'2005-08-23 10:40:28',1,'2006-02-15 21:30:53'), +(14503,'2006-02-14 15:16:03',2144,188,NULL,1,'2006-02-15 21:30:53'), +(14504,'2005-08-21 14:23:01',4536,312,'2005-08-27 13:56:01',1,'2006-02-15 21:30:53'), +(14505,'2005-08-21 14:26:28',2172,203,'2005-08-29 17:34:28',1,'2006-02-15 21:30:53'), +(14506,'2005-08-21 14:32:27',4493,537,'2005-08-24 19:02:27',2,'2006-02-15 21:30:53'), +(14507,'2005-08-21 14:32:45',1969,175,'2005-08-28 09:50:45',2,'2006-02-15 21:30:53'), +(14508,'2005-08-21 14:33:58',703,396,'2005-08-27 10:45:58',2,'2006-02-15 21:30:53'), +(14509,'2005-08-21 14:39:58',541,520,'2005-08-26 13:19:58',1,'2006-02-15 21:30:53'), +(14510,'2005-08-21 14:44:41',1868,547,'2005-08-30 20:19:41',1,'2006-02-15 21:30:53'), +(14511,'2005-08-21 14:45:34',4452,16,'2005-08-28 10:36:34',2,'2006-02-15 21:30:53'), +(14512,'2005-08-21 14:47:09',579,51,'2005-08-24 18:10:09',2,'2006-02-15 21:30:53'), +(14513,'2005-08-21 14:51:35',4265,185,'2005-08-24 13:24:35',2,'2006-02-15 21:30:53'), +(14514,'2005-08-21 14:51:52',1259,295,'2005-08-30 10:40:52',2,'2006-02-15 21:30:53'), +(14515,'2005-08-21 14:52:14',2215,242,'2005-08-27 10:27:14',1,'2006-02-15 21:30:53'), +(14516,'2006-02-14 15:16:03',713,457,NULL,2,'2006-02-15 21:30:53'), +(14517,'2005-08-21 14:57:03',3568,311,'2005-08-24 13:52:03',2,'2006-02-15 21:30:53'), +(14518,'2005-08-21 14:58:58',2734,82,'2005-08-24 13:19:58',2,'2006-02-15 21:30:53'), +(14519,'2005-08-21 14:59:29',1541,403,'2005-08-22 11:48:29',2,'2006-02-15 21:30:53'), +(14520,'2005-08-21 15:00:49',4533,150,'2005-08-30 19:04:49',1,'2006-02-15 21:30:53'), +(14521,'2005-08-21 15:01:32',1538,200,'2005-08-28 19:12:32',1,'2006-02-15 21:30:53'), +(14522,'2005-08-21 15:01:34',2101,535,'2005-08-25 16:37:34',1,'2006-02-15 21:30:53'), +(14523,'2005-08-21 15:03:45',345,433,'2005-08-22 18:06:45',2,'2006-02-15 21:30:53'), +(14524,'2005-08-21 15:05:27',4409,374,'2005-08-29 12:07:27',2,'2006-02-15 21:30:53'), +(14525,'2005-08-21 15:06:49',3020,420,'2005-08-22 16:30:49',1,'2006-02-15 21:30:53'), +(14526,'2006-02-14 15:16:03',1799,534,NULL,1,'2006-02-15 21:30:53'), +(14527,'2005-08-21 15:07:42',3496,232,'2005-08-23 12:31:42',1,'2006-02-15 21:30:53'), +(14528,'2005-08-21 15:08:05',4305,46,'2005-08-26 15:58:05',2,'2006-02-15 21:30:53'), +(14529,'2005-08-21 15:08:31',1774,380,'2005-08-29 17:15:31',1,'2006-02-15 21:30:53'), +(14530,'2005-08-21 15:10:50',1905,77,'2005-08-26 09:20:50',2,'2006-02-15 21:30:53'), +(14531,'2006-02-14 15:16:03',4296,568,NULL,2,'2006-02-15 21:30:53'), +(14532,'2005-08-21 15:15:03',2057,37,'2005-08-25 17:41:03',2,'2006-02-15 21:30:53'), +(14533,'2005-08-21 15:15:19',2202,586,'2005-08-26 12:47:19',1,'2006-02-15 21:30:53'), +(14534,'2005-08-21 15:16:29',2514,56,'2005-08-26 16:18:29',1,'2006-02-15 21:30:53'), +(14535,'2005-08-21 15:22:37',530,412,'2005-08-29 19:23:37',2,'2006-02-15 21:30:53'), +(14536,'2005-08-21 15:22:50',2615,48,'2005-08-27 17:03:50',1,'2006-02-15 21:30:53'), +(14537,'2005-08-21 15:24:24',3755,405,'2005-08-23 17:14:24',2,'2006-02-15 21:30:53'), +(14538,'2005-08-21 15:28:15',3348,471,'2005-08-22 19:55:15',2,'2006-02-15 21:30:53'), +(14539,'2005-08-21 15:29:47',3340,41,'2005-08-28 19:01:47',1,'2006-02-15 21:30:53'), +(14540,'2005-08-21 15:34:23',2362,28,'2005-08-27 11:51:23',2,'2006-02-15 21:30:53'), +(14541,'2005-08-21 15:34:32',1275,576,'2005-08-25 13:18:32',1,'2006-02-15 21:30:53'), +(14542,'2005-08-21 15:36:34',1247,101,'2005-08-27 20:24:34',2,'2006-02-15 21:30:53'), +(14543,'2005-08-21 15:39:01',709,579,'2005-08-28 09:47:01',1,'2006-02-15 21:30:53'), +(14544,'2005-08-21 15:41:01',2445,589,'2005-08-24 15:20:01',1,'2006-02-15 21:30:53'), +(14545,'2005-08-21 15:44:23',2459,13,'2005-08-29 20:09:23',2,'2006-02-15 21:30:53'), +(14546,'2005-08-21 15:50:50',1515,466,'2005-08-23 11:37:50',2,'2006-02-15 21:30:53'), +(14547,'2005-08-21 15:51:38',1172,265,'2005-08-26 15:35:38',1,'2006-02-15 21:30:53'), +(14548,'2005-08-21 15:53:52',226,299,'2005-08-25 15:39:52',2,'2006-02-15 21:30:53'), +(14549,'2005-08-21 15:54:21',4117,155,'2005-08-22 17:22:21',1,'2006-02-15 21:30:53'), +(14550,'2005-08-21 15:56:39',2814,473,'2005-08-23 21:40:39',1,'2006-02-15 21:30:53'), +(14551,'2005-08-21 15:57:25',496,521,'2005-08-28 11:10:25',2,'2006-02-15 21:30:53'), +(14552,'2005-08-21 15:59:27',1991,477,'2005-08-27 11:46:27',1,'2006-02-15 21:30:53'), +(14553,'2005-08-21 15:59:40',3160,434,'2005-08-23 11:54:40',2,'2006-02-15 21:30:53'), +(14554,'2005-08-21 16:03:01',31,38,'2005-08-26 13:09:01',2,'2006-02-15 21:30:53'), +(14555,'2005-08-21 16:03:02',1926,440,'2005-08-23 14:18:02',1,'2006-02-15 21:30:53'), +(14556,'2005-08-21 16:03:27',475,265,'2005-08-29 15:49:27',1,'2006-02-15 21:30:53'), +(14557,'2005-08-21 16:05:11',483,490,'2005-08-27 16:37:11',1,'2006-02-15 21:30:53'), +(14558,'2005-08-21 16:10:50',3958,273,'2005-08-28 16:36:50',2,'2006-02-15 21:30:53'), +(14559,'2005-08-21 16:11:35',3842,433,'2005-08-30 15:26:35',1,'2006-02-15 21:30:53'), +(14560,'2005-08-21 16:13:47',1616,579,'2005-08-26 15:19:47',1,'2006-02-15 21:30:53'), +(14561,'2005-08-21 16:20:43',2498,443,'2005-08-27 16:48:43',1,'2006-02-15 21:30:53'), +(14562,'2005-08-21 16:22:59',3501,107,'2005-08-22 21:15:59',1,'2006-02-15 21:30:53'), +(14563,'2005-08-21 16:23:53',3984,212,'2005-08-25 11:30:53',2,'2006-02-15 21:30:53'), +(14564,'2005-08-21 16:24:43',3250,22,'2005-08-26 16:58:43',1,'2006-02-15 21:30:53'), +(14565,'2005-08-21 16:24:45',4160,250,'2005-08-25 14:42:45',1,'2006-02-15 21:30:53'), +(14566,'2005-08-21 16:25:05',84,87,'2005-08-26 10:31:05',1,'2006-02-15 21:30:53'), +(14567,'2005-08-21 16:27:25',3805,214,'2005-08-26 10:47:25',1,'2006-02-15 21:30:53'), +(14568,'2005-08-21 16:30:48',3331,582,'2005-08-22 13:49:48',1,'2006-02-15 21:30:53'), +(14569,'2005-08-21 16:31:22',884,15,'2005-08-25 21:27:22',2,'2006-02-15 21:30:53'), +(14570,'2005-08-21 16:32:32',955,32,'2005-08-30 12:03:32',2,'2006-02-15 21:30:53'), +(14571,'2005-08-21 16:40:26',2218,296,'2005-08-29 17:10:26',1,'2006-02-15 21:30:53'), +(14572,'2005-08-21 16:44:31',1397,538,'2005-08-26 16:35:31',2,'2006-02-15 21:30:53'), +(14573,'2005-08-21 16:44:32',2423,240,'2005-08-23 14:01:32',2,'2006-02-15 21:30:53'), +(14574,'2005-08-21 16:50:34',1611,62,'2005-08-26 14:24:34',2,'2006-02-15 21:30:53'), +(14575,'2005-08-21 16:51:34',3752,159,'2005-08-30 20:13:34',2,'2006-02-15 21:30:53'), +(14576,'2005-08-21 16:52:03',1189,45,'2005-08-28 19:43:03',2,'2006-02-15 21:30:53'), +(14577,'2005-08-21 16:52:29',1965,126,'2005-08-26 12:30:29',1,'2006-02-15 21:30:53'), +(14578,'2005-08-21 16:53:38',3141,389,'2005-08-28 20:36:38',2,'2006-02-15 21:30:53'), +(14579,'2005-08-21 16:54:47',1205,260,'2005-08-28 12:35:47',1,'2006-02-15 21:30:53'), +(14580,'2005-08-21 16:56:39',1440,448,'2005-08-28 15:25:39',1,'2006-02-15 21:30:53'), +(14581,'2005-08-21 17:07:08',751,243,'2005-08-26 16:02:08',1,'2006-02-15 21:30:53'), +(14582,'2005-08-21 17:08:33',1004,438,'2005-08-29 18:04:33',2,'2006-02-15 21:30:53'), +(14583,'2005-08-21 17:11:47',1203,455,'2005-08-24 16:16:47',2,'2006-02-15 21:30:53'), +(14584,'2005-08-21 17:15:33',2617,481,'2005-08-24 20:24:33',2,'2006-02-15 21:30:53'), +(14585,'2005-08-21 17:18:33',82,30,'2005-08-26 11:36:33',1,'2006-02-15 21:30:53'), +(14586,'2005-08-21 17:19:09',3094,182,'2005-08-26 17:00:09',1,'2006-02-15 21:30:53'), +(14587,'2005-08-21 17:20:55',2329,250,'2005-08-26 17:17:55',1,'2006-02-15 21:30:53'), +(14588,'2005-08-21 17:25:53',1350,219,'2005-08-28 21:47:53',2,'2006-02-15 21:30:53'), +(14589,'2005-08-21 17:28:55',2810,179,'2005-08-22 23:06:55',1,'2006-02-15 21:30:53'), +(14590,'2005-08-21 17:29:10',2633,526,'2005-08-28 20:15:10',1,'2006-02-15 21:30:53'), +(14591,'2005-08-21 17:30:09',3410,538,'2005-08-24 12:27:09',1,'2006-02-15 21:30:53'), +(14592,'2005-08-21 17:30:17',2681,563,'2005-08-22 20:06:17',2,'2006-02-15 21:30:53'), +(14593,'2005-08-21 17:33:18',1399,564,'2005-08-24 22:11:18',1,'2006-02-15 21:30:53'), +(14594,'2005-08-21 17:34:24',2978,62,'2005-08-26 22:04:24',2,'2006-02-15 21:30:53'), +(14595,'2005-08-21 17:35:17',1879,118,'2005-08-27 12:11:17',1,'2006-02-15 21:30:53'), +(14596,'2005-08-21 17:38:37',2010,472,'2005-08-30 20:28:37',1,'2006-02-15 21:30:53'), +(14597,'2005-08-21 17:39:41',1160,472,'2005-08-25 14:07:41',1,'2006-02-15 21:30:53'), +(14598,'2005-08-21 17:40:05',1113,359,'2005-08-29 18:16:05',2,'2006-02-15 21:30:53'), +(14599,'2005-08-21 17:43:42',4575,599,'2005-08-22 18:53:42',1,'2006-02-15 21:30:53'), +(14600,'2005-08-21 17:45:21',3532,255,'2005-08-28 19:03:21',1,'2006-02-15 21:30:53'), +(14601,'2005-08-21 17:45:52',548,406,'2005-08-29 15:10:52',1,'2006-02-15 21:30:53'), +(14602,'2005-08-21 17:48:49',3771,370,'2005-08-28 21:38:49',1,'2006-02-15 21:30:53'), +(14603,'2005-08-21 17:51:06',94,26,'2005-08-28 15:36:06',1,'2006-02-15 21:30:53'), +(14604,'2006-02-14 15:16:03',1024,585,NULL,2,'2006-02-15 21:30:53'), +(14605,'2005-08-21 17:56:06',476,394,'2005-08-24 18:35:06',1,'2006-02-15 21:30:53'), +(14606,'2006-02-14 15:16:03',2291,592,NULL,2,'2006-02-15 21:30:53'), +(14607,'2005-08-21 17:56:50',4518,417,'2005-08-22 17:44:50',2,'2006-02-15 21:30:53'), +(14608,'2005-08-21 17:57:22',3321,90,'2005-08-25 13:20:22',1,'2006-02-15 21:30:53'), +(14609,'2005-08-21 17:57:26',1206,551,'2005-08-25 14:04:26',2,'2006-02-15 21:30:53'), +(14610,'2005-08-21 17:59:09',1894,260,'2005-08-29 21:36:09',2,'2006-02-15 21:30:53'), +(14611,'2005-08-21 18:01:41',4078,443,'2005-08-26 12:34:41',1,'2006-02-15 21:30:53'), +(14612,'2005-08-21 18:03:15',4105,445,'2005-08-27 13:39:15',1,'2006-02-15 21:30:53'), +(14613,'2005-08-21 18:03:20',3841,20,'2005-08-26 19:46:20',1,'2006-02-15 21:30:53'), +(14614,'2005-08-21 18:03:51',3053,468,'2005-08-30 13:37:51',1,'2006-02-15 21:30:53'), +(14615,'2005-08-21 18:06:32',2332,171,'2005-08-30 13:19:32',2,'2006-02-15 21:30:53'), +(14616,'2006-02-14 15:16:03',4537,532,NULL,1,'2006-02-15 21:30:53'), +(14617,'2005-08-21 18:07:40',3562,51,'2005-08-24 23:48:40',2,'2006-02-15 21:30:53'), +(14618,'2005-08-21 18:09:51',4490,270,'2005-08-28 22:47:51',1,'2006-02-15 21:30:53'), +(14619,'2005-08-21 18:10:03',1589,338,'2005-08-23 13:40:03',2,'2006-02-15 21:30:53'), +(14620,'2005-08-21 18:10:43',3272,78,'2005-08-22 15:19:43',2,'2006-02-15 21:30:53'), +(14621,'2005-08-21 18:17:59',3622,344,'2005-08-23 14:16:59',1,'2006-02-15 21:30:53'), +(14622,'2005-08-21 18:25:59',2702,559,'2005-08-31 00:11:59',2,'2006-02-15 21:30:53'), +(14623,'2005-08-21 18:29:13',901,33,'2005-08-26 20:48:13',2,'2006-02-15 21:30:53'), +(14624,'2005-08-21 18:32:42',4,344,'2005-08-23 21:09:42',1,'2006-02-15 21:30:53'), +(14625,'2005-08-21 18:34:21',2661,507,'2005-08-29 21:41:21',1,'2006-02-15 21:30:53'), +(14626,'2005-08-21 18:35:44',1038,554,'2005-08-25 23:54:44',2,'2006-02-15 21:30:53'), +(14627,'2005-08-21 18:35:54',2470,49,'2005-08-30 21:17:54',1,'2006-02-15 21:30:53'), +(14628,'2005-08-21 18:37:24',3636,331,'2005-08-27 20:25:24',2,'2006-02-15 21:30:53'), +(14629,'2005-08-21 18:39:52',761,148,'2005-08-25 19:14:52',2,'2006-02-15 21:30:53'), +(14630,'2005-08-21 18:43:44',4049,294,'2005-08-29 17:08:44',2,'2006-02-15 21:30:53'), +(14631,'2005-08-21 18:47:49',782,209,'2005-08-28 16:54:49',1,'2006-02-15 21:30:53'), +(14632,'2005-08-21 18:48:06',2807,38,'2005-08-25 00:33:06',2,'2006-02-15 21:30:53'), +(14633,'2005-08-21 18:51:10',2137,551,'2005-08-25 13:07:10',1,'2006-02-15 21:30:53'), +(14634,'2005-08-21 18:51:28',486,494,'2005-08-29 19:30:28',2,'2006-02-15 21:30:53'), +(14635,'2005-08-21 18:51:43',2171,108,'2005-08-27 16:30:43',2,'2006-02-15 21:30:53'), +(14636,'2005-08-21 18:59:17',1671,339,'2005-08-23 13:19:17',2,'2006-02-15 21:30:53'), +(14637,'2005-08-21 19:01:00',1846,76,'2005-08-26 23:03:00',2,'2006-02-15 21:30:53'), +(14638,'2005-08-21 19:01:36',3583,216,'2005-08-22 15:09:36',2,'2006-02-15 21:30:53'), +(14639,'2005-08-21 19:01:39',3510,210,'2005-08-26 14:08:39',1,'2006-02-15 21:30:53'), +(14640,'2005-08-21 19:03:19',1880,253,'2005-08-27 00:37:19',2,'2006-02-15 21:30:53'), +(14641,'2005-08-21 19:05:23',2205,147,'2005-08-22 22:30:23',2,'2006-02-15 21:30:53'), +(14642,'2005-08-21 19:09:40',1280,81,'2005-08-30 13:25:40',2,'2006-02-15 21:30:53'), +(14643,'2005-08-21 19:11:58',798,119,'2005-08-29 19:52:58',1,'2006-02-15 21:30:53'), +(14644,'2005-08-21 19:12:12',3905,453,'2005-08-29 17:08:12',1,'2006-02-15 21:30:53'), +(14645,'2005-08-21 19:12:47',2369,334,'2005-08-25 21:42:47',1,'2006-02-15 21:30:53'), +(14646,'2005-08-21 19:14:48',948,186,'2005-08-23 17:15:48',1,'2006-02-15 21:30:53'), +(14647,'2005-08-21 19:15:33',3854,36,'2005-08-30 18:58:33',2,'2006-02-15 21:30:53'), +(14648,'2005-08-21 19:18:01',2250,284,'2005-08-25 14:59:01',2,'2006-02-15 21:30:53'), +(14649,'2005-08-21 19:19:21',4074,43,'2005-08-22 17:23:21',1,'2006-02-15 21:30:53'), +(14650,'2005-08-21 19:24:51',1274,190,'2005-08-25 13:58:51',2,'2006-02-15 21:30:53'), +(14651,'2005-08-21 19:31:09',4037,544,'2005-08-28 14:26:09',2,'2006-02-15 21:30:53'), +(14652,'2005-08-21 19:32:05',4163,453,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'), +(14653,'2005-08-21 19:35:59',491,593,'2005-08-24 15:31:59',1,'2006-02-15 21:30:53'), +(14654,'2005-08-21 19:36:59',687,173,'2005-08-23 22:03:59',2,'2006-02-15 21:30:53'), +(14655,'2005-08-21 19:37:10',785,253,'2005-08-22 15:43:10',1,'2006-02-15 21:30:53'), +(14656,'2005-08-21 19:39:28',4205,201,'2005-08-24 01:36:28',2,'2006-02-15 21:30:53'), +(14657,'2005-08-21 19:39:43',477,244,'2005-08-26 22:39:43',2,'2006-02-15 21:30:53'), +(14658,'2005-08-21 19:41:50',1465,473,'2005-08-25 16:11:50',1,'2006-02-15 21:30:53'), +(14659,'2005-08-21 19:42:36',928,119,'2005-08-26 14:06:36',1,'2006-02-15 21:30:53'), +(14660,'2005-08-21 19:43:21',3433,452,'2005-08-22 20:42:21',1,'2006-02-15 21:30:53'), +(14661,'2005-08-21 19:44:21',745,469,'2005-08-27 14:35:21',1,'2006-02-15 21:30:53'), +(14662,'2005-08-21 19:45:27',2969,403,'2005-08-23 14:44:27',2,'2006-02-15 21:30:53'), +(14663,'2005-08-21 19:47:55',2351,150,'2005-08-27 17:36:55',2,'2006-02-15 21:30:53'), +(14664,'2005-08-21 19:48:47',4377,153,'2005-08-27 16:47:47',1,'2006-02-15 21:30:53'), +(14665,'2005-08-21 19:49:46',2896,58,'2005-08-30 18:00:46',1,'2006-02-15 21:30:53'), +(14666,'2005-08-21 19:51:09',2560,122,'2005-08-30 22:42:09',2,'2006-02-15 21:30:53'), +(14667,'2005-08-21 19:51:11',2608,55,'2005-08-23 17:37:11',1,'2006-02-15 21:30:53'), +(14668,'2005-08-21 19:51:30',1450,152,'2005-08-29 19:38:30',2,'2006-02-15 21:30:53'), +(14669,'2005-08-21 19:54:06',3154,317,'2005-08-25 23:12:06',1,'2006-02-15 21:30:53'), +(14670,'2005-08-21 19:54:11',4324,537,'2005-08-27 21:42:11',2,'2006-02-15 21:30:53'), +(14671,'2005-08-21 19:59:30',2622,53,'2005-08-22 19:39:30',1,'2006-02-15 21:30:53'), +(14672,'2005-08-21 19:59:33',4144,325,'2005-08-30 19:40:33',1,'2006-02-15 21:30:53'), +(14673,'2005-08-21 20:01:18',1827,445,'2005-08-25 18:55:18',1,'2006-02-15 21:30:53'), +(14674,'2005-08-21 20:01:34',572,300,'2005-08-27 18:33:34',1,'2006-02-15 21:30:53'), +(14675,'2005-08-21 20:01:51',328,170,'2005-08-26 14:30:51',2,'2006-02-15 21:30:53'), +(14676,'2005-08-21 20:02:18',877,49,'2005-08-26 21:55:18',1,'2006-02-15 21:30:53'), +(14677,'2005-08-21 20:12:30',4411,26,'2005-08-28 15:11:30',1,'2006-02-15 21:30:53'), +(14678,'2005-08-21 20:12:43',1911,383,'2005-08-31 02:11:43',2,'2006-02-15 21:30:53'), +(14679,'2005-08-21 20:14:58',1520,193,'2005-08-23 23:39:58',1,'2006-02-15 21:30:53'), +(14680,'2005-08-21 20:19:52',4469,524,'2005-08-28 17:10:52',1,'2006-02-15 21:30:53'), +(14681,'2005-08-21 20:25:13',1083,212,'2005-08-30 19:48:13',1,'2006-02-15 21:30:53'), +(14682,'2005-08-21 20:25:57',2974,314,'2005-08-28 00:42:57',2,'2006-02-15 21:30:53'), +(14683,'2005-08-21 20:27:44',3850,342,'2005-08-29 16:54:44',1,'2006-02-15 21:30:53'), +(14684,'2005-08-21 20:28:26',3593,369,'2005-08-28 19:01:26',2,'2006-02-15 21:30:53'), +(14685,'2005-08-21 20:31:25',1320,69,'2005-08-22 21:02:25',1,'2006-02-15 21:30:53'), +(14686,'2005-08-21 20:32:08',814,34,'2005-08-26 18:07:08',1,'2006-02-15 21:30:53'), +(14687,'2005-08-21 20:32:16',306,550,'2005-08-26 16:17:16',2,'2006-02-15 21:30:53'), +(14688,'2005-08-21 20:32:37',2573,219,'2005-08-27 00:06:37',2,'2006-02-15 21:30:53'), +(14689,'2005-08-21 20:33:00',1124,463,'2005-08-22 18:10:00',1,'2006-02-15 21:30:53'), +(14690,'2005-08-21 20:42:25',3649,456,'2005-08-29 18:42:25',2,'2006-02-15 21:30:53'), +(14691,'2005-08-21 20:42:29',2131,404,'2005-08-24 01:22:29',1,'2006-02-15 21:30:53'), +(14692,'2005-08-21 20:43:21',1908,192,'2005-08-28 19:02:21',1,'2006-02-15 21:30:53'), +(14693,'2005-08-21 20:44:19',3454,269,'2005-08-29 00:37:19',2,'2006-02-15 21:30:53'), +(14694,'2005-08-21 20:46:42',2767,363,'2005-08-23 16:18:42',1,'2006-02-15 21:30:53'), +(14695,'2005-08-21 20:46:47',412,206,'2005-08-22 22:25:47',2,'2006-02-15 21:30:53'), +(14696,'2005-08-21 20:48:05',3776,435,'2005-08-25 14:55:05',1,'2006-02-15 21:30:53'), +(14697,'2005-08-21 20:49:21',48,409,'2005-08-26 01:39:21',2,'2006-02-15 21:30:53'), +(14698,'2005-08-21 20:49:58',4255,196,'2005-08-29 20:13:58',2,'2006-02-15 21:30:53'), +(14699,'2005-08-21 20:50:48',1427,3,'2005-08-29 18:08:48',2,'2006-02-15 21:30:53'), +(14700,'2005-08-21 20:53:40',3446,360,'2005-08-23 22:01:40',1,'2006-02-15 21:30:53'), +(14701,'2005-08-21 20:54:32',3034,34,'2005-08-30 16:46:32',1,'2006-02-15 21:30:53'), +(14702,'2005-08-21 21:00:03',4096,345,'2005-08-30 16:59:03',1,'2006-02-15 21:30:53'), +(14703,'2005-08-21 21:01:19',4329,29,'2005-08-22 15:13:19',2,'2006-02-15 21:30:53'), +(14704,'2005-08-21 21:02:22',4062,248,'2005-08-27 23:10:22',2,'2006-02-15 21:30:53'), +(14705,'2005-08-21 21:02:55',2493,243,'2005-08-25 20:20:55',2,'2006-02-15 21:30:53'), +(14706,'2005-08-21 21:04:42',4494,589,'2005-08-22 19:55:42',2,'2006-02-15 21:30:53'), +(14707,'2005-08-21 21:06:29',2916,530,'2005-08-30 23:37:29',1,'2006-02-15 21:30:53'), +(14708,'2005-08-21 21:07:23',2828,226,'2005-08-28 15:47:23',1,'2006-02-15 21:30:53'), +(14709,'2005-08-21 21:07:59',1856,300,'2005-08-31 02:19:59',1,'2006-02-15 21:30:53'), +(14710,'2005-08-21 21:15:23',1922,587,'2005-08-30 19:45:23',1,'2006-02-15 21:30:53'), +(14711,'2005-08-21 21:22:07',1973,448,'2005-08-30 16:24:07',2,'2006-02-15 21:30:53'), +(14712,'2005-08-21 21:22:56',1198,226,'2005-08-25 01:53:56',1,'2006-02-15 21:30:53'), +(14713,'2005-08-21 21:27:24',3350,148,'2005-08-23 20:26:24',1,'2006-02-15 21:30:53'), +(14714,'2005-08-21 21:27:43',1,279,'2005-08-30 22:26:43',1,'2006-02-15 21:30:53'), +(14715,'2005-08-21 21:28:18',4453,287,'2005-08-26 22:13:18',2,'2006-02-15 21:30:53'), +(14716,'2005-08-21 21:29:55',2285,78,'2005-08-23 18:34:55',2,'2006-02-15 21:30:53'), +(14717,'2005-08-21 21:30:39',3839,366,'2005-08-26 16:58:39',2,'2006-02-15 21:30:53'), +(14718,'2005-08-21 21:39:25',3618,340,'2005-08-26 22:07:25',2,'2006-02-15 21:30:53'), +(14719,'2005-08-21 21:41:57',4091,599,'2005-08-25 20:37:57',1,'2006-02-15 21:30:53'), +(14720,'2005-08-21 21:43:53',3617,395,'2005-08-25 18:21:53',1,'2006-02-15 21:30:53'), +(14721,'2005-08-21 21:50:51',4257,349,'2005-08-30 19:21:51',1,'2006-02-15 21:30:53'), +(14722,'2005-08-21 21:50:53',2930,236,'2005-08-30 03:13:53',1,'2006-02-15 21:30:53'), +(14723,'2005-08-21 21:52:32',2755,548,'2005-08-31 00:03:32',2,'2006-02-15 21:30:53'), +(14724,'2005-08-21 21:53:47',3559,552,'2005-08-23 20:14:47',2,'2006-02-15 21:30:53'), +(14725,'2005-08-21 22:02:08',4427,403,'2005-08-23 03:59:08',2,'2006-02-15 21:30:53'), +(14726,'2005-08-21 22:08:52',4556,216,'2005-08-22 18:28:52',1,'2006-02-15 21:30:53'), +(14727,'2005-08-21 22:12:45',650,275,'2005-08-25 00:46:45',1,'2006-02-15 21:30:53'), +(14728,'2005-08-21 22:15:36',2671,474,'2005-08-25 17:14:36',2,'2006-02-15 21:30:53'), +(14729,'2005-08-21 22:16:57',2483,289,'2005-08-27 21:32:57',1,'2006-02-15 21:30:53'), +(14730,'2005-08-21 22:21:11',2949,439,'2005-08-30 03:02:11',1,'2006-02-15 21:30:53'), +(14731,'2005-08-21 22:21:49',1351,154,'2005-08-24 16:27:49',1,'2006-02-15 21:30:53'), +(14732,'2005-08-21 22:22:29',1915,482,'2005-08-23 18:34:29',1,'2006-02-15 21:30:53'), +(14733,'2005-08-21 22:22:33',398,408,'2005-08-26 21:01:33',1,'2006-02-15 21:30:53'), +(14734,'2006-02-14 15:16:03',1369,448,NULL,2,'2006-02-15 21:30:53'), +(14735,'2005-08-21 22:25:09',950,35,'2005-08-23 21:16:09',1,'2006-02-15 21:30:53'), +(14736,'2005-08-21 22:25:53',207,139,'2005-08-25 19:01:53',2,'2006-02-15 21:30:53'), +(14737,'2005-08-21 22:27:11',1842,124,'2005-08-25 18:51:11',2,'2006-02-15 21:30:53'), +(14738,'2005-08-21 22:29:13',3315,521,'2005-08-29 21:19:13',1,'2006-02-15 21:30:53'), +(14739,'2005-08-21 22:33:22',4026,226,'2005-08-22 19:45:22',1,'2006-02-15 21:30:53'), +(14740,'2005-08-21 22:35:33',1717,333,'2005-08-26 17:49:33',1,'2006-02-15 21:30:53'), +(14741,'2006-02-14 15:16:03',612,60,NULL,2,'2006-02-15 21:30:53'), +(14742,'2005-08-21 22:39:01',2988,421,'2005-08-26 00:17:01',1,'2006-02-15 21:30:53'), +(14743,'2005-08-21 22:41:56',4570,2,'2005-08-29 00:18:56',1,'2006-02-15 21:30:53'), +(14744,'2005-08-21 22:45:21',800,213,'2005-08-29 23:57:21',1,'2006-02-15 21:30:53'), +(14745,'2005-08-21 22:53:01',4399,277,'2005-08-23 23:22:01',1,'2006-02-15 21:30:53'), +(14746,'2005-08-21 22:54:02',3197,284,'2005-08-27 17:04:02',2,'2006-02-15 21:30:53'), +(14747,'2005-08-21 23:00:02',201,153,'2005-08-26 18:58:02',2,'2006-02-15 21:30:53'), +(14748,'2005-08-21 23:02:02',1697,81,'2005-08-28 05:01:02',2,'2006-02-15 21:30:53'), +(14749,'2005-08-21 23:08:33',831,235,'2005-08-29 20:46:33',2,'2006-02-15 21:30:53'), +(14750,'2005-08-21 23:09:32',918,303,'2005-08-30 00:46:32',2,'2006-02-15 21:30:53'), +(14751,'2005-08-21 23:11:23',1156,195,'2005-08-30 20:01:23',2,'2006-02-15 21:30:53'), +(14752,'2005-08-21 23:11:42',1252,362,'2005-08-28 22:12:42',1,'2006-02-15 21:30:53'), +(14753,'2005-08-21 23:11:43',1803,155,'2005-08-22 22:25:43',2,'2006-02-15 21:30:53'), +(14754,'2005-08-21 23:17:26',2355,137,'2005-08-29 18:55:26',2,'2006-02-15 21:30:53'), +(14755,'2005-08-21 23:18:08',862,328,'2005-08-27 01:06:08',2,'2006-02-15 21:30:53'), +(14756,'2005-08-21 23:21:23',564,288,'2005-08-24 01:44:23',1,'2006-02-15 21:30:53'), +(14757,'2005-08-21 23:23:37',1154,473,'2005-08-26 23:24:37',2,'2006-02-15 21:30:53'), +(14758,'2005-08-21 23:24:52',2372,339,'2005-08-27 04:25:52',2,'2006-02-15 21:30:53'), +(14759,'2005-08-21 23:28:58',3871,362,'2005-08-31 00:35:58',2,'2006-02-15 21:30:53'), +(14760,'2006-02-14 15:16:03',1367,355,NULL,1,'2006-02-15 21:30:53'), +(14761,'2005-08-21 23:30:28',2657,490,'2005-08-26 03:26:28',1,'2006-02-15 21:30:53'), +(14762,'2005-08-21 23:33:57',4249,1,'2005-08-23 01:30:57',1,'2006-02-15 21:30:53'), +(14763,'2005-08-21 23:34:00',1480,116,'2005-08-31 03:58:00',2,'2006-02-15 21:30:53'), +(14764,'2005-08-21 23:37:47',1270,529,'2005-08-24 00:23:47',2,'2006-02-15 21:30:53'), +(14765,'2005-08-21 23:40:28',2817,435,'2005-08-25 04:55:28',2,'2006-02-15 21:30:53'), +(14766,'2005-08-21 23:42:20',768,523,'2005-08-26 03:46:20',1,'2006-02-15 21:30:53'), +(14767,'2005-08-21 23:43:00',1232,69,'2005-08-29 05:26:00',1,'2006-02-15 21:30:53'), +(14768,'2005-08-21 23:44:53',3465,570,'2005-08-27 20:33:53',1,'2006-02-15 21:30:53'), +(14769,'2006-02-14 15:16:03',1800,361,NULL,1,'2006-02-15 21:30:53'), +(14770,'2005-08-21 23:47:16',2977,372,'2005-08-25 04:48:16',1,'2006-02-15 21:30:53'), +(14771,'2005-08-21 23:50:15',2665,149,'2005-08-28 22:55:15',2,'2006-02-15 21:30:53'), +(14772,'2005-08-21 23:50:39',4047,411,'2005-08-30 20:44:39',2,'2006-02-15 21:30:53'), +(14773,'2005-08-21 23:50:57',2541,413,'2005-08-26 04:45:57',2,'2006-02-15 21:30:53'), +(14774,'2005-08-21 23:52:32',3185,252,'2005-08-26 23:42:32',2,'2006-02-15 21:30:53'), +(14775,'2005-08-21 23:53:07',4044,400,'2005-08-22 18:07:07',2,'2006-02-15 21:30:53'), +(14776,'2005-08-21 23:53:35',3488,15,'2005-08-24 02:00:35',2,'2006-02-15 21:30:53'), +(14777,'2005-08-21 23:55:50',237,389,'2005-08-28 04:31:50',1,'2006-02-15 21:30:53'), +(14778,'2005-08-21 23:56:30',2152,396,'2005-08-26 00:07:30',2,'2006-02-15 21:30:53'), +(14779,'2005-08-22 00:00:56',1087,279,'2005-08-31 00:01:56',2,'2006-02-15 21:30:53'), +(14780,'2005-08-22 00:06:33',3171,491,'2005-08-22 22:02:33',2,'2006-02-15 21:30:53'), +(14781,'2005-08-22 00:15:12',3458,71,'2005-08-29 21:02:12',1,'2006-02-15 21:30:53'), +(14782,'2005-08-22 00:17:20',1727,211,'2005-08-23 01:24:20',1,'2006-02-15 21:30:53'), +(14783,'2005-08-22 00:21:57',3419,332,'2005-08-28 01:27:57',2,'2006-02-15 21:30:53'), +(14784,'2005-08-22 00:23:13',441,117,'2005-08-28 03:42:13',1,'2006-02-15 21:30:53'), +(14785,'2005-08-22 00:24:37',1981,560,'2005-08-25 04:15:37',1,'2006-02-15 21:30:53'), +(14786,'2005-08-22 00:24:42',2959,370,'2005-08-25 19:36:42',1,'2006-02-15 21:30:53'), +(14787,'2005-08-22 00:25:59',2634,38,'2005-08-28 22:30:59',2,'2006-02-15 21:30:53'), +(14788,'2005-08-22 00:27:59',1917,139,'2005-08-29 23:54:59',2,'2006-02-15 21:30:53'), +(14789,'2005-08-22 00:29:39',2344,279,'2005-08-25 02:25:39',1,'2006-02-15 21:30:53'), +(14790,'2005-08-22 00:34:17',1002,397,'2005-08-31 02:27:17',1,'2006-02-15 21:30:53'), +(14791,'2005-08-22 00:35:55',1490,317,'2005-08-30 20:23:55',1,'2006-02-15 21:30:53'), +(14792,'2005-08-22 00:36:41',4436,396,'2005-08-30 18:58:41',1,'2006-02-15 21:30:53'), +(14793,'2005-08-22 00:37:57',4285,154,'2005-08-29 05:44:57',2,'2006-02-15 21:30:53'), +(14794,'2005-08-22 00:39:31',413,156,'2005-08-28 20:08:31',2,'2006-02-15 21:30:53'), +(14795,'2005-08-22 00:40:22',1695,303,'2005-08-26 01:37:22',1,'2006-02-15 21:30:53'), +(14796,'2005-08-22 00:40:49',941,441,'2005-08-30 03:59:49',1,'2006-02-15 21:30:53'), +(14797,'2005-08-22 00:41:24',1131,546,'2005-08-23 18:51:24',1,'2006-02-15 21:30:53'), +(14798,'2005-08-22 00:44:08',7,92,'2005-08-27 02:18:08',2,'2006-02-15 21:30:53'), +(14799,'2005-08-22 00:44:57',1276,454,'2005-08-24 20:08:57',2,'2006-02-15 21:30:53'), +(14800,'2005-08-22 00:46:18',3554,533,'2005-08-26 01:44:18',2,'2006-02-15 21:30:53'), +(14801,'2005-08-22 00:46:54',1677,184,'2005-08-30 19:03:54',1,'2006-02-15 21:30:53'), +(14802,'2005-08-22 00:48:23',707,505,'2005-08-28 01:02:23',1,'2006-02-15 21:30:53'), +(14803,'2005-08-22 00:49:10',2525,278,'2005-08-22 23:44:10',2,'2006-02-15 21:30:53'), +(14804,'2005-08-22 00:51:25',372,94,'2005-08-26 21:15:25',1,'2006-02-15 21:30:53'), +(14805,'2005-08-22 00:52:01',783,169,'2005-08-23 03:28:01',2,'2006-02-15 21:30:53'), +(14806,'2005-08-22 00:53:08',2049,231,'2005-08-23 06:26:08',2,'2006-02-15 21:30:53'), +(14807,'2005-08-22 00:57:43',335,90,'2005-08-26 23:40:43',1,'2006-02-15 21:30:53'), +(14808,'2005-08-22 00:58:35',1657,362,'2005-08-29 20:16:35',2,'2006-02-15 21:30:53'), +(14809,'2005-08-22 01:00:42',1077,188,'2005-08-29 19:55:42',1,'2006-02-15 21:30:53'), +(14810,'2005-08-22 01:08:34',1982,78,'2005-08-25 07:00:34',2,'2006-02-15 21:30:53'), +(14811,'2005-08-22 01:09:04',1613,53,'2005-08-26 19:30:04',1,'2006-02-15 21:30:53'), +(14812,'2005-08-22 01:10:32',4282,211,'2005-08-26 05:21:32',1,'2006-02-15 21:30:53'), +(14813,'2005-08-22 01:11:37',3364,142,'2005-08-24 05:57:37',2,'2006-02-15 21:30:53'), +(14814,'2005-08-22 01:12:14',3109,250,'2005-08-27 23:24:14',2,'2006-02-15 21:30:53'), +(14815,'2005-08-22 01:12:44',1183,314,'2005-08-24 01:42:44',2,'2006-02-15 21:30:53'), +(14816,'2005-08-22 01:15:51',4086,534,'2005-08-28 04:11:51',1,'2006-02-15 21:30:53'), +(14817,'2005-08-22 01:17:16',910,215,'2005-08-27 02:43:16',1,'2006-02-15 21:30:53'), +(14818,'2005-08-22 01:17:18',1619,580,'2005-08-26 05:40:18',1,'2006-02-15 21:30:53'), +(14819,'2005-08-22 01:17:19',2890,410,'2005-08-30 05:54:19',1,'2006-02-15 21:30:53'), +(14820,'2005-08-22 01:18:37',1409,52,'2005-08-23 19:44:37',1,'2006-02-15 21:30:53'), +(14821,'2005-08-22 01:20:19',3155,62,'2005-08-29 03:06:19',2,'2006-02-15 21:30:53'), +(14822,'2005-08-22 01:21:14',2835,52,'2005-08-30 03:59:14',1,'2006-02-15 21:30:53'), +(14823,'2005-08-22 01:24:42',680,503,'2005-08-22 19:45:42',2,'2006-02-15 21:30:53'), +(14824,'2005-08-22 01:27:51',4162,594,'2005-08-23 03:24:51',2,'2006-02-15 21:30:53'), +(14825,'2005-08-22 01:27:57',1449,1,'2005-08-27 07:01:57',2,'2006-02-15 21:30:53'), +(14826,'2005-08-22 01:32:14',4023,426,'2005-08-23 03:52:14',2,'2006-02-15 21:30:53'), +(14827,'2005-08-22 01:32:32',2267,88,'2005-08-31 06:21:32',2,'2006-02-15 21:30:53'), +(14828,'2005-08-22 01:34:05',4114,319,'2005-08-27 06:27:05',2,'2006-02-15 21:30:53'), +(14829,'2005-08-22 01:35:37',3606,546,'2005-08-23 19:55:37',2,'2006-02-15 21:30:53'), +(14830,'2005-08-22 01:37:19',637,590,'2005-08-27 20:10:19',1,'2006-02-15 21:30:53'), +(14831,'2005-08-22 01:40:49',3370,156,'2005-08-23 02:47:49',1,'2006-02-15 21:30:53'), +(14832,'2005-08-22 01:43:29',1828,494,'2005-08-29 07:19:29',2,'2006-02-15 21:30:53'), +(14833,'2005-08-22 01:45:18',1960,551,'2005-08-28 21:24:18',1,'2006-02-15 21:30:53'), +(14834,'2005-08-22 01:45:58',3105,262,'2005-08-28 20:52:58',1,'2006-02-15 21:30:53'), +(14835,'2005-08-22 01:49:07',755,404,'2005-08-30 04:28:07',1,'2006-02-15 21:30:53'), +(14836,'2005-08-22 01:52:26',4287,418,'2005-08-22 23:39:26',1,'2006-02-15 21:30:53'), +(14837,'2005-08-22 01:54:52',2251,43,'2005-08-29 02:24:52',1,'2006-02-15 21:30:53'), +(14838,'2005-08-22 01:57:34',506,404,'2005-08-25 06:34:34',1,'2006-02-15 21:30:53'), +(14839,'2005-08-22 01:58:15',3440,567,'2005-08-24 05:24:15',2,'2006-02-15 21:30:53'), +(14840,'2005-08-22 01:58:42',1240,354,'2005-08-29 22:32:42',2,'2006-02-15 21:30:53'), +(14841,'2005-08-22 02:03:30',4017,384,'2005-08-28 02:08:30',2,'2006-02-15 21:30:53'), +(14842,'2005-08-22 02:04:38',2511,467,'2005-08-30 06:46:38',2,'2006-02-15 21:30:53'), +(14843,'2005-08-22 02:05:25',3000,454,'2005-08-28 22:11:25',1,'2006-02-15 21:30:53'), +(14844,'2005-08-22 02:09:12',145,513,'2005-08-31 05:43:12',1,'2006-02-15 21:30:53'), +(14845,'2005-08-22 02:12:44',69,292,'2005-08-24 02:36:44',2,'2006-02-15 21:30:53'), +(14846,'2005-08-22 02:13:48',3840,309,'2005-08-30 05:39:48',1,'2006-02-15 21:30:53'), +(14847,'2005-08-22 02:13:51',2995,327,'2005-08-29 03:42:51',2,'2006-02-15 21:30:53'), +(14848,'2005-08-22 02:14:19',395,218,'2005-08-26 02:54:19',2,'2006-02-15 21:30:53'), +(14849,'2005-08-22 02:15:26',3354,177,'2005-08-28 00:56:26',2,'2006-02-15 21:30:53'), +(14850,'2005-08-22 02:16:55',2405,435,'2005-08-26 21:08:55',1,'2006-02-15 21:30:53'), +(14851,'2005-08-22 02:20:44',1139,180,'2005-08-26 08:02:44',2,'2006-02-15 21:30:53'), +(14852,'2005-08-22 02:25:53',2262,352,'2005-08-25 04:27:53',1,'2006-02-15 21:30:53'), +(14853,'2005-08-22 02:26:33',3575,388,'2005-08-31 02:49:33',2,'2006-02-15 21:30:53'), +(14854,'2005-08-22 02:26:47',1989,117,'2005-08-23 05:53:47',1,'2006-02-15 21:30:53'), +(14855,'2005-08-22 02:27:32',1668,187,'2005-08-31 03:35:32',1,'2006-02-15 21:30:53'), +(14856,'2005-08-22 02:31:51',3292,151,'2005-08-26 23:41:51',2,'2006-02-15 21:30:53'), +(14857,'2005-08-22 02:42:39',4150,232,'2005-08-24 21:26:39',2,'2006-02-15 21:30:53'), +(14858,'2005-08-22 02:46:18',366,499,'2005-08-30 08:22:18',1,'2006-02-15 21:30:53'), +(14859,'2005-08-22 02:46:35',2150,463,'2005-08-24 22:37:35',2,'2006-02-15 21:30:53'), +(14860,'2005-08-22 02:47:07',1368,418,'2005-08-28 00:00:07',1,'2006-02-15 21:30:53'), +(14861,'2005-08-22 02:48:05',1806,422,'2005-08-27 00:50:05',1,'2006-02-15 21:30:53'), +(14862,'2005-08-22 02:51:41',3479,78,'2005-08-28 06:30:41',2,'2006-02-15 21:30:53'), +(14863,'2005-08-22 02:57:04',779,440,'2005-08-30 03:24:04',2,'2006-02-15 21:30:53'), +(14864,'2005-08-22 02:57:06',2872,460,'2005-08-22 22:19:06',1,'2006-02-15 21:30:53'), +(14865,'2005-08-22 03:06:38',3775,94,'2005-08-23 04:26:38',1,'2006-02-15 21:30:53'), +(14866,'2005-08-22 03:11:35',2607,445,'2005-08-30 00:10:35',1,'2006-02-15 21:30:53'), +(14867,'2005-08-22 03:14:46',271,114,'2005-08-25 03:53:46',2,'2006-02-15 21:30:53'), +(14868,'2005-08-22 03:15:01',4383,160,'2005-08-25 01:24:01',1,'2006-02-15 21:30:53'), +(14869,'2005-08-22 03:20:26',455,21,'2005-08-23 05:25:26',2,'2006-02-15 21:30:53'), +(14870,'2005-08-22 03:23:20',2170,512,'2005-08-23 06:50:20',2,'2006-02-15 21:30:53'), +(14871,'2005-08-22 03:23:24',3411,204,'2005-08-23 22:23:24',2,'2006-02-15 21:30:53'), +(14872,'2005-08-22 03:23:41',962,15,'2005-08-29 23:25:41',1,'2006-02-15 21:30:53'), +(14873,'2005-08-22 03:31:06',3533,314,'2005-08-31 05:34:06',1,'2006-02-15 21:30:53'), +(14874,'2005-08-22 03:32:05',1782,268,'2005-08-24 07:02:05',2,'2006-02-15 21:30:53'), +(14875,'2005-08-22 03:34:39',3912,513,'2005-08-26 03:40:39',1,'2006-02-15 21:30:53'), +(14876,'2005-08-22 03:39:29',3669,210,'2005-08-23 06:53:29',1,'2006-02-15 21:30:53'), +(14877,'2005-08-22 03:39:56',974,266,'2005-08-24 03:41:56',2,'2006-02-15 21:30:53'), +(14878,'2006-02-14 15:16:03',1202,441,NULL,2,'2006-02-15 21:30:53'), +(14879,'2005-08-22 03:42:12',2154,148,'2005-08-27 06:14:12',1,'2006-02-15 21:30:53'), +(14880,'2005-08-22 03:44:36',3615,224,'2005-08-24 05:45:36',2,'2006-02-15 21:30:53'), +(14881,'2005-08-22 03:47:39',210,425,'2005-08-26 05:58:39',2,'2006-02-15 21:30:53'), +(14882,'2005-08-22 03:52:21',12,417,'2005-08-25 04:50:21',2,'2006-02-15 21:30:53'), +(14883,'2005-08-22 03:55:02',1946,177,'2005-08-28 02:51:02',1,'2006-02-15 21:30:53'), +(14884,'2005-08-22 03:57:08',2957,547,'2005-08-23 07:11:08',1,'2006-02-15 21:30:53'), +(14885,'2005-08-22 03:58:29',2097,248,'2005-08-30 05:26:29',1,'2006-02-15 21:30:53'), +(14886,'2005-08-22 03:59:01',4330,379,'2005-08-23 01:22:01',1,'2006-02-15 21:30:53'), +(14887,'2005-08-22 04:04:31',56,421,'2005-08-31 02:30:31',1,'2006-02-15 21:30:53'), +(14888,'2005-08-22 04:09:18',3345,91,'2005-08-23 07:34:18',2,'2006-02-15 21:30:53'), +(14889,'2005-08-22 04:10:10',1579,299,'2005-08-24 06:23:10',2,'2006-02-15 21:30:53'), +(14890,'2005-08-22 04:10:49',517,346,'2005-08-30 23:23:49',1,'2006-02-15 21:30:53'), +(14891,'2005-08-22 04:11:02',288,482,'2005-08-27 03:22:02',1,'2006-02-15 21:30:53'), +(14892,'2005-08-22 04:15:05',3061,82,'2005-08-31 06:07:05',1,'2006-02-15 21:30:53'), +(14893,'2005-08-22 04:15:48',2336,461,'2005-08-30 08:05:48',1,'2006-02-15 21:30:53'), +(14894,'2005-08-22 04:16:56',3494,347,'2005-08-24 00:30:56',2,'2006-02-15 21:30:53'), +(14895,'2005-08-22 04:19:23',4462,340,'2005-08-27 04:02:23',1,'2006-02-15 21:30:53'), +(14896,'2005-08-22 04:20:55',2508,569,'2005-08-29 05:11:55',2,'2006-02-15 21:30:53'), +(14897,'2005-08-22 04:22:31',1607,175,'2005-08-26 00:09:31',1,'2006-02-15 21:30:53'), +(14898,'2005-08-22 04:26:34',1736,299,'2005-08-31 10:04:34',1,'2006-02-15 21:30:53'), +(14899,'2005-08-22 04:26:38',3700,304,'2005-08-31 08:36:38',2,'2006-02-15 21:30:53'), +(14900,'2005-08-22 04:27:48',3420,329,'2005-08-25 03:50:48',2,'2006-02-15 21:30:53'), +(14901,'2005-08-22 04:31:37',4297,258,'2005-08-29 08:24:37',1,'2006-02-15 21:30:53'), +(14902,'2005-08-22 04:31:50',866,423,'2005-08-23 23:47:50',2,'2006-02-15 21:30:53'), +(14903,'2005-08-22 04:31:50',1795,51,'2005-08-25 22:53:50',2,'2006-02-15 21:30:53'), +(14904,'2005-08-22 04:32:01',722,71,'2005-08-29 05:21:01',1,'2006-02-15 21:30:53'), +(14905,'2005-08-22 04:34:22',4166,286,'2005-08-26 04:00:22',2,'2006-02-15 21:30:53'), +(14906,'2005-08-22 04:38:18',153,366,'2005-08-29 23:03:18',1,'2006-02-15 21:30:53'), +(14907,'2005-08-22 04:44:09',2469,116,'2005-08-25 09:53:09',1,'2006-02-15 21:30:53'), +(14908,'2005-08-22 04:44:10',102,349,'2005-08-25 05:09:10',2,'2006-02-15 21:30:53'), +(14909,'2005-08-22 04:48:44',1997,155,'2005-08-25 04:59:44',1,'2006-02-15 21:30:53'), +(14910,'2005-08-22 04:50:52',1266,540,'2005-08-25 04:14:52',1,'2006-02-15 21:30:53'), +(14911,'2005-08-22 04:51:42',353,273,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'), +(14912,'2005-08-22 04:51:42',2658,404,'2005-08-23 23:50:42',1,'2006-02-15 21:30:53'), +(14913,'2005-08-22 04:52:13',3609,503,'2005-08-23 06:49:13',2,'2006-02-15 21:30:53'), +(14914,'2005-08-22 04:53:35',4348,156,'2005-08-26 10:35:35',1,'2006-02-15 21:30:53'), +(14915,'2006-02-14 15:16:03',112,349,NULL,1,'2006-02-15 21:30:53'), +(14916,'2005-08-22 04:56:57',2110,80,'2005-08-24 06:36:57',2,'2006-02-15 21:30:53'), +(14917,'2005-08-22 05:03:59',377,289,'2005-08-29 04:00:59',2,'2006-02-15 21:30:53'), +(14918,'2005-08-22 05:06:38',4056,154,'2005-08-30 01:44:38',2,'2006-02-15 21:30:53'), +(14919,'2005-08-22 05:07:17',1587,244,'2005-08-30 06:41:17',2,'2006-02-15 21:30:53'), +(14920,'2005-08-22 05:08:58',3357,106,'2005-08-23 02:51:58',1,'2006-02-15 21:30:53'), +(14921,'2005-08-22 05:12:24',3724,284,'2005-08-26 08:20:24',2,'2006-02-15 21:30:53'), +(14922,'2005-08-22 05:13:05',2322,151,'2005-08-30 04:59:05',1,'2006-02-15 21:30:53'), +(14923,'2005-08-22 05:13:33',3434,460,'2005-08-28 01:39:33',2,'2006-02-15 21:30:53'), +(14924,'2005-08-22 05:15:17',4189,118,'2005-08-23 10:11:17',1,'2006-02-15 21:30:53'), +(14925,'2005-08-22 05:16:16',442,128,'2005-08-30 02:47:16',2,'2006-02-15 21:30:53'), +(14926,'2005-08-22 05:18:44',2448,357,'2005-08-26 02:18:44',1,'2006-02-15 21:30:53'), +(14927,'2005-08-22 05:31:53',952,193,'2005-08-27 07:04:53',1,'2006-02-15 21:30:53'), +(14928,'2006-02-14 15:16:03',4375,472,NULL,1,'2006-02-15 21:30:53'), +(14929,'2005-08-22 05:32:38',4195,546,'2005-08-28 00:02:38',1,'2006-02-15 21:30:53'), +(14930,'2005-08-22 05:38:32',2875,584,'2005-08-30 07:21:32',1,'2006-02-15 21:30:53'), +(14931,'2005-08-22 05:38:55',657,63,'2005-08-28 04:15:55',2,'2006-02-15 21:30:53'), +(14932,'2005-08-22 05:40:39',2259,516,'2005-08-23 11:02:39',2,'2006-02-15 21:30:53'), +(14933,'2006-02-14 15:16:03',1186,21,NULL,2,'2006-02-15 21:30:53'), +(14934,'2005-08-22 05:47:15',815,226,'2005-08-26 11:32:15',1,'2006-02-15 21:30:53'), +(14935,'2005-08-22 05:47:31',2025,380,'2005-08-29 00:33:31',2,'2006-02-15 21:30:53'), +(14936,'2005-08-22 05:51:26',3710,241,'2005-08-29 10:21:26',2,'2006-02-15 21:30:53'), +(14937,'2005-08-22 05:51:59',1241,348,'2005-08-31 01:45:59',2,'2006-02-15 21:30:53'), +(14938,'2005-08-22 05:52:39',408,541,'2005-08-31 11:43:39',1,'2006-02-15 21:30:53'), +(14939,'2005-08-22 05:53:52',719,328,'2005-08-27 06:20:52',1,'2006-02-15 21:30:53'), +(14940,'2005-08-22 05:54:03',2635,46,'2005-08-24 05:52:03',2,'2006-02-15 21:30:53'), +(14941,'2005-08-22 05:58:23',2328,574,'2005-08-28 10:58:23',1,'2006-02-15 21:30:53'), +(14942,'2005-08-22 05:58:27',32,471,'2005-08-31 10:08:27',1,'2006-02-15 21:30:53'), +(14943,'2005-08-22 05:59:59',3515,265,'2005-08-26 10:31:59',2,'2006-02-15 21:30:53'), +(14944,'2005-08-22 06:01:26',535,153,'2005-08-24 10:33:26',2,'2006-02-15 21:30:53'), +(14945,'2005-08-22 06:05:38',1567,304,'2005-08-29 12:01:38',1,'2006-02-15 21:30:53'), +(14946,'2005-08-22 06:07:10',1395,308,'2005-08-28 05:25:10',1,'2006-02-15 21:30:53'), +(14947,'2005-08-22 06:07:52',3497,68,'2005-08-28 01:12:52',2,'2006-02-15 21:30:53'), +(14948,'2005-08-22 06:10:53',2914,488,'2005-08-28 11:24:53',2,'2006-02-15 21:30:53'), +(14949,'2005-08-22 06:12:16',2434,111,'2005-08-25 08:25:16',2,'2006-02-15 21:30:53'), +(14950,'2005-08-22 06:17:12',635,362,'2005-08-27 08:48:12',2,'2006-02-15 21:30:53'), +(14951,'2005-08-22 06:19:37',2800,197,'2005-08-30 05:51:37',2,'2006-02-15 21:30:53'), +(14952,'2005-08-22 06:20:07',2950,575,'2005-08-28 01:18:07',1,'2006-02-15 21:30:53'), +(14953,'2005-08-22 06:23:54',816,182,'2005-08-28 03:19:54',1,'2006-02-15 21:30:53'), +(14954,'2006-02-14 15:16:03',3608,525,NULL,1,'2006-02-15 21:30:53'), +(14955,'2005-08-22 06:25:52',1534,445,'2005-08-25 12:13:52',2,'2006-02-15 21:30:53'), +(14956,'2005-08-22 06:26:16',3650,571,'2005-08-25 11:06:16',2,'2006-02-15 21:30:53'), +(14957,'2005-08-22 06:29:34',1384,323,'2005-08-26 04:52:34',2,'2006-02-15 21:30:53'), +(14958,'2005-08-22 06:30:10',1710,347,'2005-08-28 09:43:10',2,'2006-02-15 21:30:53'), +(14959,'2005-08-22 06:30:28',2009,569,'2005-08-25 09:48:28',1,'2006-02-15 21:30:53'), +(14960,'2005-08-22 06:31:36',3316,147,'2005-08-29 07:10:36',2,'2006-02-15 21:30:53'), +(14961,'2005-08-22 06:35:50',3274,52,'2005-08-31 04:07:50',2,'2006-02-15 21:30:53'), +(14962,'2005-08-22 06:37:43',3104,449,'2005-08-29 03:44:43',2,'2006-02-15 21:30:53'), +(14963,'2005-08-22 06:38:10',2672,384,'2005-08-31 05:35:10',2,'2006-02-15 21:30:53'), +(14964,'2005-08-22 06:39:24',2302,500,'2005-08-26 06:05:24',1,'2006-02-15 21:30:53'), +(14965,'2005-08-22 06:45:53',1036,148,'2005-08-27 10:05:53',1,'2006-02-15 21:30:53'), +(14966,'2005-08-22 06:45:57',679,259,'2005-08-31 10:02:57',1,'2006-02-15 21:30:53'), +(14967,'2005-08-22 06:46:03',289,67,'2005-08-23 01:02:03',2,'2006-02-15 21:30:53'), +(14968,'2005-08-22 06:46:59',3302,129,'2005-08-29 07:36:59',1,'2006-02-15 21:30:53'), +(14969,'2005-08-22 06:49:15',4060,120,'2005-08-29 05:52:15',1,'2006-02-15 21:30:53'), +(14970,'2005-08-22 06:49:29',536,529,'2005-08-29 08:47:29',1,'2006-02-15 21:30:53'), +(14971,'2005-08-22 06:52:49',1883,378,'2005-08-28 06:27:49',2,'2006-02-15 21:30:53'), +(14972,'2005-08-22 06:53:21',3422,310,'2005-08-29 02:25:21',1,'2006-02-15 21:30:53'), +(14973,'2005-08-22 06:59:28',2888,201,'2005-08-30 02:28:28',1,'2006-02-15 21:30:53'), +(14974,'2005-08-22 07:04:25',2596,157,'2005-08-27 12:39:25',1,'2006-02-15 21:30:53'), +(14975,'2005-08-22 07:07:50',924,244,'2005-08-28 07:23:50',2,'2006-02-15 21:30:53'), +(14976,'2005-08-22 07:10:26',77,581,'2005-08-28 07:22:26',1,'2006-02-15 21:30:53'), +(14977,'2005-08-22 07:12:53',4093,59,'2005-08-30 08:11:53',2,'2006-02-15 21:30:53'), +(14978,'2005-08-22 07:13:15',699,94,'2005-08-25 12:26:15',1,'2006-02-15 21:30:53'), +(14979,'2005-08-22 07:16:36',2320,387,'2005-08-24 02:29:36',2,'2006-02-15 21:30:53'), +(14980,'2005-08-22 07:16:45',2701,518,'2005-08-26 06:04:45',2,'2006-02-15 21:30:53'), +(14981,'2005-08-22 07:19:05',1239,544,'2005-08-26 03:08:05',2,'2006-02-15 21:30:53'), +(14982,'2005-08-22 07:20:55',2333,542,'2005-08-31 04:35:55',2,'2006-02-15 21:30:53'), +(14983,'2005-08-22 07:32:23',3579,363,'2005-08-30 11:39:23',2,'2006-02-15 21:30:53'), +(14984,'2005-08-22 07:35:31',1704,334,'2005-08-30 02:32:31',1,'2006-02-15 21:30:53'), +(14985,'2005-08-22 07:35:56',2017,29,'2005-08-29 13:17:56',1,'2006-02-15 21:30:53'), +(14986,'2005-08-22 07:37:24',1493,278,'2005-08-23 04:22:24',2,'2006-02-15 21:30:53'), +(14987,'2005-08-22 07:41:08',1513,138,'2005-08-24 03:15:08',2,'2006-02-15 21:30:53'), +(14988,'2005-08-22 07:46:05',2114,186,'2005-08-29 06:43:05',1,'2006-02-15 21:30:53'), +(14989,'2005-08-22 07:47:07',1431,58,'2005-08-26 04:42:07',2,'2006-02-15 21:30:53'), +(14990,'2005-08-22 07:48:01',4057,198,'2005-08-24 06:41:01',2,'2006-02-15 21:30:53'), +(14991,'2005-08-22 07:50:44',708,172,'2005-08-30 06:32:44',2,'2006-02-15 21:30:53'), +(14992,'2005-08-22 07:51:47',4430,415,'2005-08-25 08:17:47',2,'2006-02-15 21:30:53'), +(14993,'2005-08-22 07:52:18',3416,437,'2005-08-27 02:13:18',1,'2006-02-15 21:30:53'), +(14994,'2005-08-22 07:52:24',1601,509,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'), +(14995,'2005-08-22 07:52:31',4178,482,'2005-08-24 05:16:31',1,'2006-02-15 21:30:53'), +(14996,'2005-08-22 07:52:41',1178,411,'2005-08-29 02:35:41',1,'2006-02-15 21:30:53'), +(14997,'2005-08-22 07:53:00',2724,29,'2005-08-28 03:47:00',2,'2006-02-15 21:30:53'), +(14998,'2005-08-22 07:53:14',3852,92,'2005-08-24 03:46:14',2,'2006-02-15 21:30:53'), +(14999,'2005-08-22 07:54:47',3399,594,'2005-08-23 08:39:47',1,'2006-02-15 21:30:53'), +(15000,'2005-08-22 07:54:58',3080,161,'2005-08-24 12:46:58',2,'2006-02-15 21:30:53'), +(15001,'2005-08-22 08:00:49',2869,186,'2005-08-27 05:53:49',2,'2006-02-15 21:30:53'), +(15002,'2005-08-22 08:06:00',4198,242,'2005-08-24 10:48:00',1,'2006-02-15 21:30:53'), +(15003,'2005-08-22 08:11:24',4009,167,'2005-08-28 08:49:24',1,'2006-02-15 21:30:53'), +(15004,'2005-08-22 08:15:21',4464,375,'2005-08-28 10:35:21',1,'2006-02-15 21:30:53'), +(15005,'2005-08-22 08:15:44',2897,335,'2005-08-24 09:52:44',2,'2006-02-15 21:30:53'), +(15006,'2005-08-22 08:20:15',2967,97,'2005-08-23 11:57:15',1,'2006-02-15 21:30:53'), +(15007,'2005-08-22 08:21:21',3692,165,'2005-08-27 04:44:21',2,'2006-02-15 21:30:53'), +(15008,'2005-08-22 08:24:32',961,277,'2005-08-31 13:48:32',2,'2006-02-15 21:30:53'), +(15009,'2005-08-22 08:27:27',4025,325,'2005-08-26 05:57:27',2,'2006-02-15 21:30:53'), +(15010,'2005-08-22 08:30:17',171,508,'2005-08-29 13:24:17',2,'2006-02-15 21:30:53'), +(15011,'2005-08-22 08:31:07',2722,329,'2005-08-24 04:47:07',1,'2006-02-15 21:30:53'), +(15012,'2005-08-22 08:42:32',1584,454,'2005-08-28 05:04:32',1,'2006-02-15 21:30:53'), +(15013,'2005-08-22 08:42:45',141,141,'2005-08-24 05:20:45',2,'2006-02-15 21:30:53'), +(15014,'2005-08-22 08:43:11',3678,373,'2005-08-31 02:55:11',1,'2006-02-15 21:30:53'), +(15015,'2005-08-22 08:43:50',3067,14,'2005-08-31 06:53:50',2,'2006-02-15 21:30:53'), +(15016,'2005-08-22 08:47:35',879,434,'2005-08-28 14:23:35',2,'2006-02-15 21:30:53'), +(15017,'2005-08-22 08:47:44',3975,144,'2005-08-29 08:16:44',1,'2006-02-15 21:30:53'), +(15018,'2005-08-22 08:52:38',394,504,'2005-08-25 08:08:38',1,'2006-02-15 21:30:53'), +(15019,'2005-08-22 08:52:53',3425,450,'2005-08-25 13:07:53',2,'2006-02-15 21:30:53'), +(15020,'2005-08-22 08:54:12',3460,267,'2005-08-27 04:54:12',1,'2006-02-15 21:30:53'), +(15021,'2006-02-14 15:16:03',418,100,NULL,2,'2006-02-15 21:30:53'), +(15022,'2005-08-22 08:55:43',249,506,'2005-08-31 05:35:43',2,'2006-02-15 21:30:53'), +(15023,'2005-08-22 08:56:48',358,296,'2005-08-29 08:13:48',1,'2006-02-15 21:30:53'), +(15024,'2005-08-22 08:57:10',1831,139,'2005-08-24 10:39:10',1,'2006-02-15 21:30:53'), +(15025,'2005-08-22 08:57:24',2107,257,'2005-08-24 06:09:24',2,'2006-02-15 21:30:53'), +(15026,'2005-08-22 09:01:52',4328,66,'2005-08-28 09:21:52',1,'2006-02-15 21:30:53'), +(15027,'2005-08-22 09:03:04',326,478,'2005-08-29 04:03:04',2,'2006-02-15 21:30:53'), +(15028,'2005-08-22 09:03:44',4248,37,'2005-08-30 11:28:44',1,'2006-02-15 21:30:53'), +(15029,'2005-08-22 09:04:53',2234,139,'2005-08-25 09:03:53',1,'2006-02-15 21:30:53'), +(15030,'2005-08-22 09:10:21',3168,341,'2005-08-24 06:00:21',2,'2006-02-15 21:30:53'), +(15031,'2005-08-22 09:11:48',3926,430,'2005-08-27 06:11:48',1,'2006-02-15 21:30:53'), +(15032,'2005-08-22 09:14:09',3414,467,'2005-08-25 09:50:09',2,'2006-02-15 21:30:53'), +(15033,'2005-08-22 09:25:24',2431,168,'2005-08-28 09:56:24',2,'2006-02-15 21:30:53'), +(15034,'2005-08-22 09:33:08',1331,235,'2005-08-29 13:04:08',1,'2006-02-15 21:30:53'), +(15035,'2005-08-22 09:34:32',339,513,'2005-08-28 10:23:32',1,'2006-02-15 21:30:53'), +(15036,'2005-08-22 09:36:00',874,280,'2005-08-23 08:12:00',2,'2006-02-15 21:30:53'), +(15037,'2005-08-22 09:36:33',4517,234,'2005-08-31 11:20:33',2,'2006-02-15 21:30:53'), +(15038,'2005-08-22 09:37:27',1685,3,'2005-08-23 14:39:27',1,'2006-02-15 21:30:53'), +(15039,'2005-08-22 09:37:54',895,180,'2005-08-28 12:23:54',1,'2006-02-15 21:30:53'), +(15040,'2005-08-22 09:41:09',3207,523,'2005-08-23 12:49:09',2,'2006-02-15 21:30:53'), +(15041,'2005-08-22 09:43:18',1913,372,'2005-08-23 11:04:18',2,'2006-02-15 21:30:53'), +(15042,'2005-08-22 09:47:37',3796,553,'2005-08-31 04:42:37',1,'2006-02-15 21:30:53'), +(15043,'2005-08-22 09:49:32',3797,182,'2005-08-28 13:50:32',1,'2006-02-15 21:30:53'), +(15044,'2005-08-22 09:51:54',4513,439,'2005-08-31 12:45:54',1,'2006-02-15 21:30:53'), +(15045,'2005-08-22 09:53:23',3485,161,'2005-08-26 10:09:23',2,'2006-02-15 21:30:53'), +(15046,'2005-08-22 09:54:54',1536,474,'2005-08-26 07:34:54',1,'2006-02-15 21:30:53'), +(15047,'2005-08-22 09:57:16',1309,19,'2005-08-23 11:39:16',1,'2006-02-15 21:30:53'), +(15048,'2005-08-22 10:00:04',2895,27,'2005-08-26 08:26:04',1,'2006-02-15 21:30:53'), +(15049,'2005-08-22 10:06:28',1573,102,'2005-08-26 15:12:28',1,'2006-02-15 21:30:53'), +(15050,'2005-08-22 10:07:52',3961,167,'2005-08-23 04:45:52',1,'2006-02-15 21:30:53'), +(15051,'2005-08-22 10:08:50',1419,300,'2005-08-28 10:23:50',1,'2006-02-15 21:30:53'), +(15052,'2005-08-22 10:09:19',2349,147,'2005-08-31 09:27:19',2,'2006-02-15 21:30:53'), +(15053,'2005-08-22 10:13:09',1065,374,'2005-08-28 12:42:09',2,'2006-02-15 21:30:53'), +(15054,'2005-08-22 10:14:33',2314,44,'2005-08-25 15:07:33',1,'2006-02-15 21:30:53'), +(15055,'2005-08-22 10:14:39',623,125,'2005-08-25 07:25:39',2,'2006-02-15 21:30:53'), +(15056,'2005-08-22 10:15:54',1871,503,'2005-08-25 07:21:54',1,'2006-02-15 21:30:53'), +(15057,'2005-08-22 10:19:58',4534,20,'2005-08-28 05:12:58',1,'2006-02-15 21:30:53'), +(15058,'2005-08-22 10:20:55',3537,288,'2005-08-26 12:37:55',1,'2006-02-15 21:30:53'), +(15059,'2005-08-22 10:22:00',4079,564,'2005-08-29 07:01:00',2,'2006-02-15 21:30:53'), +(15060,'2005-08-22 10:24:32',2740,63,'2005-08-31 11:17:32',2,'2006-02-15 21:30:53'), +(15061,'2005-08-22 10:29:44',3436,90,'2005-08-24 14:40:44',1,'2006-02-15 21:30:53'), +(15062,'2005-08-22 10:34:39',4393,139,'2005-08-26 13:09:39',2,'2006-02-15 21:30:53'), +(15063,'2005-08-22 10:39:51',1159,30,'2005-08-25 16:03:51',2,'2006-02-15 21:30:53'), +(15064,'2005-08-22 10:41:58',1233,425,'2005-08-28 13:34:58',2,'2006-02-15 21:30:53'), +(15065,'2005-08-22 10:46:44',468,510,'2005-08-27 09:40:44',2,'2006-02-15 21:30:53'), +(15066,'2005-08-22 10:49:06',2712,530,'2005-08-23 10:25:06',1,'2006-02-15 21:30:53'), +(15067,'2005-08-22 10:49:21',3684,461,'2005-08-24 09:01:21',1,'2006-02-15 21:30:53'), +(15068,'2005-08-22 10:50:13',3268,373,'2005-08-26 05:04:13',2,'2006-02-15 21:30:53'), +(15069,'2005-08-22 10:55:42',592,568,'2005-08-28 06:59:42',2,'2006-02-15 21:30:53'), +(15070,'2005-08-22 10:55:45',2687,441,'2005-08-26 09:23:45',1,'2006-02-15 21:30:53'), +(15071,'2005-08-22 10:58:43',417,541,'2005-08-31 14:53:43',1,'2006-02-15 21:30:53'), +(15072,'2005-08-22 10:58:45',2871,405,'2005-08-30 16:18:45',1,'2006-02-15 21:30:53'), +(15073,'2005-08-22 11:01:15',3970,336,'2005-08-31 09:23:15',1,'2006-02-15 21:30:53'), +(15074,'2005-08-22 11:02:52',3112,567,'2005-08-28 07:59:52',2,'2006-02-15 21:30:53'), +(15075,'2005-08-22 11:04:52',1938,535,'2005-08-30 05:06:52',1,'2006-02-15 21:30:53'), +(15076,'2005-08-22 11:05:34',4170,287,'2005-08-27 14:40:34',1,'2006-02-15 21:30:53'), +(15077,'2005-08-22 11:09:18',3142,503,'2005-08-29 08:41:18',1,'2006-02-15 21:30:53'), +(15078,'2005-08-22 11:09:31',3001,197,'2005-08-25 12:16:31',1,'2006-02-15 21:30:53'), +(15079,'2005-08-22 11:09:56',4552,540,'2005-08-24 15:40:56',2,'2006-02-15 21:30:53'), +(15080,'2005-08-22 11:11:51',927,133,'2005-08-23 13:09:51',1,'2006-02-15 21:30:53'), +(15081,'2005-08-22 11:14:31',2501,313,'2005-08-28 14:23:31',2,'2006-02-15 21:30:53'), +(15082,'2005-08-22 11:17:06',2046,137,'2005-08-28 06:40:06',1,'2006-02-15 21:30:53'), +(15083,'2005-08-22 11:17:37',1691,397,'2005-08-28 06:27:37',2,'2006-02-15 21:30:53'), +(15084,'2005-08-22 11:17:59',821,287,'2005-08-23 09:23:59',1,'2006-02-15 21:30:53'), +(15085,'2005-08-22 11:19:22',1669,67,'2005-08-25 09:04:22',2,'2006-02-15 21:30:53'), +(15086,'2005-08-22 11:21:08',264,494,'2005-08-30 08:18:08',2,'2006-02-15 21:30:53'), +(15087,'2005-08-22 11:24:09',233,404,'2005-08-27 16:42:09',2,'2006-02-15 21:30:53'), +(15088,'2005-08-22 11:28:26',4199,377,'2005-08-24 15:46:26',2,'2006-02-15 21:30:53'), +(15089,'2005-08-22 11:34:06',3288,61,'2005-08-31 12:45:06',1,'2006-02-15 21:30:53'), +(15090,'2005-08-22 11:34:33',2918,582,'2005-08-31 06:09:33',2,'2006-02-15 21:30:53'), +(15091,'2005-08-22 11:34:43',2092,477,'2005-08-23 16:52:43',2,'2006-02-15 21:30:53'), +(15092,'2005-08-22 11:36:16',2418,464,'2005-08-28 09:49:16',2,'2006-02-15 21:30:53'), +(15093,'2005-08-22 11:39:03',3534,60,'2005-08-23 06:16:03',2,'2006-02-15 21:30:53'), +(15094,'2006-02-14 15:16:03',922,424,NULL,1,'2006-02-15 21:30:53'), +(15095,'2005-08-22 11:41:35',489,202,'2005-08-25 16:44:35',2,'2006-02-15 21:30:53'), +(15096,'2005-08-22 11:43:04',1983,33,'2005-08-29 12:16:04',2,'2006-02-15 21:30:53'), +(15097,'2005-08-22 11:43:42',2838,475,'2005-08-27 10:25:42',1,'2006-02-15 21:30:53'), +(15098,'2005-08-22 11:48:19',4414,88,'2005-08-31 11:07:19',2,'2006-02-15 21:30:53'), +(15099,'2005-08-22 11:49:16',1940,86,'2005-08-26 06:38:16',2,'2006-02-15 21:30:53'), +(15100,'2005-08-22 11:55:03',4489,312,'2005-08-25 14:55:03',1,'2006-02-15 21:30:53'), +(15101,'2005-08-22 11:56:02',683,335,'2005-08-28 13:08:02',2,'2006-02-15 21:30:53'), +(15102,'2005-08-22 11:58:58',2317,555,'2005-08-29 08:37:58',1,'2006-02-15 21:30:53'), +(15103,'2005-08-22 12:01:06',853,101,'2005-08-25 14:40:06',2,'2006-02-15 21:30:53'), +(15104,'2005-08-22 12:01:16',4550,359,'2005-08-27 17:48:16',1,'2006-02-15 21:30:53'), +(15105,'2005-08-22 12:01:33',3965,338,'2005-08-26 14:29:33',2,'2006-02-15 21:30:53'), +(15106,'2005-08-22 12:01:48',399,155,'2005-08-27 16:12:48',1,'2006-02-15 21:30:53'), +(15107,'2005-08-22 12:05:02',2378,376,'2005-08-23 11:09:02',1,'2006-02-15 21:30:53'), +(15108,'2005-08-22 12:10:07',3463,447,'2005-08-26 14:46:07',2,'2006-02-15 21:30:53'), +(15109,'2005-08-22 12:12:58',565,588,'2005-08-30 07:20:58',1,'2006-02-15 21:30:53'), +(15110,'2005-08-22 12:16:46',1379,72,'2005-08-26 13:36:46',1,'2006-02-15 21:30:53'), +(15111,'2005-08-22 12:21:43',4101,119,'2005-08-24 09:31:43',1,'2006-02-15 21:30:53'), +(15112,'2005-08-22 12:21:49',2832,160,'2005-08-27 11:03:49',1,'2006-02-15 21:30:53'), +(15113,'2005-08-22 12:23:59',4338,424,'2005-08-27 09:59:59',1,'2006-02-15 21:30:53'), +(15114,'2005-08-22 12:24:55',2481,121,'2005-08-31 17:06:55',1,'2006-02-15 21:30:53'), +(15115,'2005-08-22 12:28:01',1739,33,'2005-08-26 16:12:01',1,'2006-02-15 21:30:53'), +(15116,'2005-08-22 12:35:40',518,217,'2005-08-23 17:58:40',1,'2006-02-15 21:30:53'), +(15117,'2005-08-22 12:38:20',2502,292,'2005-08-27 07:36:20',2,'2006-02-15 21:30:53'), +(15118,'2005-08-22 12:38:37',2081,473,'2005-08-29 14:01:37',2,'2006-02-15 21:30:53'), +(15119,'2005-08-22 12:41:33',4526,288,'2005-08-23 14:44:33',2,'2006-02-15 21:30:53'), +(15120,'2005-08-22 12:42:47',3083,11,'2005-08-23 14:21:47',1,'2006-02-15 21:30:53'), +(15121,'2005-08-22 12:46:37',2981,415,'2005-08-25 17:42:37',1,'2006-02-15 21:30:53'), +(15122,'2005-08-22 12:47:45',1686,91,'2005-08-29 13:18:45',2,'2006-02-15 21:30:53'), +(15123,'2005-08-22 12:48:44',1455,445,'2005-08-27 11:07:44',1,'2006-02-15 21:30:53'), +(15124,'2005-08-22 12:51:38',1598,39,'2005-08-26 09:05:38',1,'2006-02-15 21:30:53'), +(15125,'2005-08-22 12:53:22',3942,221,'2005-08-29 18:44:22',1,'2006-02-15 21:30:53'), +(15126,'2005-08-22 12:53:58',1902,459,'2005-08-28 07:39:58',1,'2006-02-15 21:30:53'), +(15127,'2005-08-22 12:56:29',2397,287,'2005-08-26 10:58:29',1,'2006-02-15 21:30:53'), +(15128,'2005-08-22 12:57:26',3229,457,'2005-08-30 11:35:26',2,'2006-02-15 21:30:53'), +(15129,'2005-08-22 13:03:52',3782,234,'2005-08-29 10:56:52',2,'2006-02-15 21:30:53'), +(15130,'2005-08-22 13:04:32',2375,536,'2005-08-30 17:24:32',1,'2006-02-15 21:30:53'), +(15131,'2005-08-22 13:06:26',1930,119,'2005-08-30 16:43:26',1,'2006-02-15 21:30:53'), +(15132,'2005-08-22 13:11:25',3474,393,'2005-08-27 17:04:25',2,'2006-02-15 21:30:53'), +(15133,'2005-08-22 13:17:43',3408,137,'2005-08-26 08:40:43',1,'2006-02-15 21:30:53'), +(15134,'2005-08-22 13:18:25',4442,22,'2005-08-29 18:03:25',1,'2006-02-15 21:30:53'), +(15135,'2005-08-22 13:19:19',555,284,'2005-08-27 17:09:19',2,'2006-02-15 21:30:53'), +(15136,'2005-08-22 13:19:25',2606,435,'2005-08-24 07:28:25',2,'2006-02-15 21:30:53'), +(15137,'2005-08-22 13:20:28',856,241,'2005-08-26 09:35:28',1,'2006-02-15 21:30:53'), +(15138,'2005-08-22 13:36:30',2467,50,'2005-08-27 15:35:30',1,'2006-02-15 21:30:53'), +(15139,'2005-08-22 13:38:11',2018,237,'2005-08-30 09:00:11',1,'2006-02-15 21:30:53'), +(15140,'2005-08-22 13:39:20',1402,414,'2005-08-30 18:19:20',2,'2006-02-15 21:30:53'), +(15141,'2005-08-22 13:41:49',227,541,'2005-08-28 15:25:49',2,'2006-02-15 21:30:53'), +(15142,'2005-08-22 13:44:32',1337,351,'2005-08-29 14:19:32',1,'2006-02-15 21:30:53'), +(15143,'2005-08-22 13:46:24',1519,274,'2005-08-25 09:47:24',2,'2006-02-15 21:30:53'), +(15144,'2005-08-22 13:49:18',559,527,'2005-08-26 11:11:18',2,'2006-02-15 21:30:53'), +(15145,'2005-08-22 13:53:04',2179,2,'2005-08-31 15:51:04',1,'2006-02-15 21:30:53'), +(15146,'2005-08-22 13:57:55',3102,72,'2005-08-28 12:57:55',2,'2006-02-15 21:30:53'), +(15147,'2005-08-22 13:58:23',2553,4,'2005-08-28 14:33:23',2,'2006-02-15 21:30:53'), +(15148,'2005-08-22 13:59:19',3704,359,'2005-08-31 13:59:19',2,'2006-02-15 21:30:53'), +(15149,'2005-08-22 14:08:06',3059,537,'2005-08-25 08:25:06',1,'2006-02-15 21:30:53'), +(15150,'2005-08-22 14:12:05',1797,161,'2005-08-27 12:47:05',1,'2006-02-15 21:30:53'), +(15151,'2005-08-22 14:23:11',4070,463,'2005-08-30 14:01:11',1,'2006-02-15 21:30:53'), +(15152,'2005-08-22 14:25:21',739,123,'2005-08-31 14:28:21',1,'2006-02-15 21:30:53'), +(15153,'2005-08-22 14:26:01',1051,512,'2005-08-27 14:17:01',2,'2006-02-15 21:30:53'), +(15154,'2005-08-22 14:27:37',3395,106,'2005-08-29 20:04:37',2,'2006-02-15 21:30:53'), +(15155,'2005-08-22 14:27:46',2641,43,'2005-08-23 17:46:46',2,'2006-02-15 21:30:53'), +(15156,'2005-08-22 14:29:11',1174,494,'2005-08-30 17:48:11',2,'2006-02-15 21:30:53'), +(15157,'2005-08-22 14:30:09',1909,580,'2005-08-29 18:28:09',1,'2006-02-15 21:30:53'), +(15158,'2005-08-22 14:30:39',3614,588,'2005-08-27 15:55:39',1,'2006-02-15 21:30:53'), +(15159,'2005-08-22 14:32:25',4355,525,'2005-08-24 11:19:25',2,'2006-02-15 21:30:53'), +(15160,'2005-08-22 14:33:50',4321,249,'2005-08-28 11:26:50',1,'2006-02-15 21:30:53'), +(15161,'2005-08-22 14:37:22',1445,20,'2005-08-27 17:40:22',1,'2006-02-15 21:30:53'), +(15162,'2005-08-22 14:41:05',1756,439,'2005-08-27 20:23:05',2,'2006-02-15 21:30:53'), +(15163,'2005-08-22 14:43:13',3597,100,'2005-08-26 14:26:13',1,'2006-02-15 21:30:53'), +(15164,'2005-08-22 14:47:53',997,193,'2005-08-25 16:05:53',1,'2006-02-15 21:30:53'), +(15165,'2005-08-22 14:59:30',3664,168,'2005-08-29 15:46:30',2,'2006-02-15 21:30:53'), +(15166,'2005-08-22 15:05:37',1530,504,'2005-08-30 12:22:37',2,'2006-02-15 21:30:53'), +(15167,'2006-02-14 15:16:03',973,190,NULL,2,'2006-02-15 21:30:53'), +(15168,'2005-08-22 15:14:20',3218,526,'2005-08-25 20:12:20',2,'2006-02-15 21:30:53'), +(15169,'2005-08-22 15:21:56',794,76,'2005-08-28 09:40:56',1,'2006-02-15 21:30:53'), +(15170,'2005-08-22 15:22:15',2123,521,'2005-08-23 20:32:15',1,'2006-02-15 21:30:53'), +(15171,'2005-08-22 15:23:59',1201,119,'2005-08-28 12:05:59',2,'2006-02-15 21:30:53'), +(15172,'2005-08-22 15:25:33',2367,511,'2005-08-23 17:29:33',1,'2006-02-15 21:30:53'), +(15173,'2005-08-22 15:26:29',2585,338,'2005-08-29 14:03:29',1,'2006-02-15 21:30:53'), +(15174,'2005-08-22 15:26:36',19,111,'2005-08-31 10:47:36',2,'2006-02-15 21:30:53'), +(15175,'2005-08-22 15:29:15',4318,380,'2005-08-27 15:11:15',2,'2006-02-15 21:30:53'), +(15176,'2005-08-22 15:30:25',3063,115,'2005-08-31 20:00:25',1,'2006-02-15 21:30:53'), +(15177,'2005-08-22 15:34:49',838,493,'2005-08-26 12:54:49',1,'2006-02-15 21:30:53'), +(15178,'2005-08-22 15:36:04',1745,15,'2005-08-26 21:00:04',2,'2006-02-15 21:30:53'), +(15179,'2005-08-22 15:36:22',450,328,'2005-08-31 19:57:22',1,'2006-02-15 21:30:53'), +(15180,'2005-08-22 15:42:57',234,532,'2005-08-24 12:49:57',2,'2006-02-15 21:30:53'), +(15181,'2005-08-22 15:46:20',3900,266,'2005-08-27 09:56:20',1,'2006-02-15 21:30:53'), +(15182,'2005-08-22 15:47:05',645,443,'2005-08-25 11:55:05',1,'2006-02-15 21:30:53'), +(15183,'2005-08-22 15:49:54',2696,268,'2005-08-25 12:29:54',1,'2006-02-15 21:30:53'), +(15184,'2005-08-22 15:51:12',1193,471,'2005-08-24 19:23:12',2,'2006-02-15 21:30:53'), +(15185,'2005-08-22 15:52:50',2948,472,'2005-08-31 20:38:50',1,'2006-02-15 21:30:53'), +(15186,'2005-08-22 15:52:57',1323,104,'2005-08-24 21:12:57',1,'2006-02-15 21:30:53'), +(15187,'2005-08-22 15:53:32',2338,461,'2005-08-27 14:21:32',1,'2006-02-15 21:30:53'), +(15188,'2005-08-22 15:55:48',131,478,'2005-08-29 19:10:48',1,'2006-02-15 21:30:53'), +(15189,'2005-08-22 15:56:42',2559,398,'2005-08-29 12:20:42',1,'2006-02-15 21:30:53'), +(15190,'2005-08-22 15:57:38',2096,84,'2005-08-24 13:46:38',1,'2006-02-15 21:30:53'), +(15191,'2006-02-14 15:16:03',3688,75,NULL,1,'2006-02-15 21:30:53'), +(15192,'2005-08-22 16:06:23',4213,216,'2005-08-27 13:12:23',1,'2006-02-15 21:30:53'), +(15193,'2005-08-22 16:06:49',1033,40,'2005-08-25 17:23:49',1,'2006-02-15 21:30:53'), +(15194,'2005-08-22 16:07:34',1217,332,'2005-08-26 19:16:34',1,'2006-02-15 21:30:53'), +(15195,'2005-08-22 16:08:23',1080,508,'2005-08-30 17:56:23',2,'2006-02-15 21:30:53'), +(15196,'2005-08-22 16:11:32',1413,181,'2005-08-30 22:06:32',1,'2006-02-15 21:30:53'), +(15197,'2005-08-22 16:14:25',2915,159,'2005-08-26 16:22:25',2,'2006-02-15 21:30:53'), +(15198,'2005-08-22 16:15:33',1253,396,'2005-08-29 20:49:33',1,'2006-02-15 21:30:53'), +(15199,'2005-08-22 16:17:49',18,216,'2005-08-25 20:12:49',1,'2006-02-15 21:30:53'), +(15200,'2005-08-22 16:22:53',1000,374,'2005-08-24 10:25:53',2,'2006-02-15 21:30:53'), +(15201,'2005-08-22 16:24:42',4456,301,'2005-08-31 17:54:42',1,'2006-02-15 21:30:53'), +(15202,'2005-08-22 16:26:53',2119,374,'2005-08-23 13:49:53',2,'2006-02-15 21:30:53'), +(15203,'2005-08-22 16:28:00',743,568,'2005-08-26 16:55:00',2,'2006-02-15 21:30:53'), +(15204,'2005-08-22 16:30:43',1471,317,'2005-08-26 20:37:43',2,'2006-02-15 21:30:53'), +(15205,'2005-08-22 16:32:23',3276,489,'2005-08-27 16:08:23',1,'2006-02-15 21:30:53'), +(15206,'2005-08-22 16:33:39',3901,524,'2005-08-31 11:41:39',1,'2006-02-15 21:30:53'), +(15207,'2005-08-22 16:35:25',1149,442,'2005-08-23 14:06:25',1,'2006-02-15 21:30:53'), +(15208,'2005-08-22 16:35:47',4346,267,'2005-08-30 15:16:47',1,'2006-02-15 21:30:53'), +(15209,'2005-08-22 16:37:32',1620,588,'2005-08-25 19:04:32',1,'2006-02-15 21:30:53'), +(15210,'2005-08-22 16:37:36',3811,332,'2005-08-29 11:54:36',1,'2006-02-15 21:30:53'), +(15211,'2005-08-22 16:40:21',3025,410,'2005-08-28 13:33:21',2,'2006-02-15 21:30:53'), +(15212,'2005-08-22 16:44:26',2182,562,'2005-08-27 20:26:26',1,'2006-02-15 21:30:53'), +(15213,'2005-08-22 16:49:02',2002,166,'2005-08-31 20:22:02',1,'2006-02-15 21:30:53'), +(15214,'2005-08-22 16:53:29',1500,574,'2005-08-24 14:17:29',1,'2006-02-15 21:30:53'), +(15215,'2005-08-22 16:55:26',1906,344,'2005-08-25 20:19:26',1,'2006-02-15 21:30:53'), +(15216,'2005-08-22 16:57:02',1633,166,'2005-08-24 16:11:02',2,'2006-02-15 21:30:53'), +(15217,'2005-08-22 16:58:31',91,90,'2005-08-23 22:33:31',1,'2006-02-15 21:30:53'), +(15218,'2005-08-22 16:59:05',10,139,'2005-08-30 17:01:05',1,'2006-02-15 21:30:53'), +(15219,'2005-08-22 17:00:31',3313,544,'2005-08-31 20:16:31',1,'2006-02-15 21:30:53'), +(15220,'2005-08-22 17:02:23',187,128,'2005-08-28 21:02:23',1,'2006-02-15 21:30:53'), +(15221,'2005-08-22 17:12:29',110,253,'2005-08-24 20:46:29',2,'2006-02-15 21:30:53'), +(15222,'2005-08-22 17:12:30',1360,390,'2005-08-27 15:10:30',2,'2006-02-15 21:30:53'), +(15223,'2005-08-22 17:13:39',2263,541,'2005-08-27 11:17:39',2,'2006-02-15 21:30:53'), +(15224,'2005-08-22 17:18:05',33,81,'2005-08-29 14:35:05',2,'2006-02-15 21:30:53'), +(15225,'2005-08-22 17:18:32',1646,224,'2005-08-24 17:25:32',1,'2006-02-15 21:30:53'), +(15226,'2005-08-22 17:20:17',318,54,'2005-08-31 15:36:17',1,'2006-02-15 21:30:53'), +(15227,'2005-08-22 17:22:41',2987,151,'2005-08-23 20:59:41',1,'2006-02-15 21:30:53'), +(15228,'2005-08-22 17:27:23',2485,48,'2005-08-29 11:38:23',2,'2006-02-15 21:30:53'), +(15229,'2005-08-22 17:30:25',320,63,'2005-08-23 14:13:25',1,'2006-02-15 21:30:53'), +(15230,'2005-08-22 17:31:41',2572,466,'2005-08-25 21:57:41',2,'2006-02-15 21:30:53'), +(15231,'2005-08-22 17:32:57',2980,187,'2005-08-25 13:06:57',1,'2006-02-15 21:30:53'), +(15232,'2005-08-22 17:37:02',61,5,'2005-08-25 18:45:02',1,'2006-02-15 21:30:53'), +(15233,'2005-08-22 17:41:53',4405,197,'2005-08-24 12:59:53',2,'2006-02-15 21:30:53'), +(15234,'2006-02-14 15:16:03',908,228,NULL,2,'2006-02-15 21:30:53'), +(15235,'2005-08-22 17:43:12',2726,416,'2005-08-29 23:03:12',2,'2006-02-15 21:30:53'), +(15236,'2005-08-22 17:44:27',4124,557,'2005-08-24 23:25:27',1,'2006-02-15 21:30:53'), +(15237,'2005-08-22 17:44:30',4485,148,'2005-08-24 12:51:30',1,'2006-02-15 21:30:53'), +(15238,'2005-08-22 17:46:12',403,70,'2005-08-29 16:41:12',1,'2006-02-15 21:30:53'), +(15239,'2005-08-22 17:46:17',1809,501,'2005-08-26 19:03:17',1,'2006-02-15 21:30:53'), +(15240,'2005-08-22 17:46:41',2014,11,'2005-08-23 15:08:41',2,'2006-02-15 21:30:53'), +(15241,'2005-08-22 17:47:40',832,337,'2005-08-29 15:28:40',2,'2006-02-15 21:30:53'), +(15242,'2005-08-22 17:48:10',2106,364,'2005-08-27 23:32:10',1,'2006-02-15 21:30:53'), +(15243,'2005-08-22 17:48:28',4408,308,'2005-08-31 13:22:28',1,'2006-02-15 21:30:53'), +(15244,'2005-08-22 17:48:42',1486,271,'2005-08-28 13:17:42',2,'2006-02-15 21:30:53'), +(15245,'2005-08-22 17:49:35',2545,298,'2005-08-26 18:25:35',2,'2006-02-15 21:30:53'), +(15246,'2005-08-22 17:50:49',3786,100,'2005-08-30 22:21:49',1,'2006-02-15 21:30:53'), +(15247,'2005-08-22 17:52:05',4572,250,'2005-08-31 21:37:05',1,'2006-02-15 21:30:53'), +(15248,'2005-08-22 17:53:06',977,20,'2005-08-25 18:43:06',2,'2006-02-15 21:30:53'), +(15249,'2005-08-22 17:58:27',121,444,'2005-08-30 14:55:27',1,'2006-02-15 21:30:53'), +(15250,'2005-08-22 18:03:11',2176,143,'2005-08-27 12:19:11',2,'2006-02-15 21:30:53'), +(15251,'2005-08-22 18:03:57',1994,285,'2005-08-23 20:56:57',2,'2006-02-15 21:30:53'), +(15252,'2005-08-22 18:04:22',1821,453,'2005-08-25 17:14:22',2,'2006-02-15 21:30:53'), +(15253,'2005-08-22 18:05:21',4143,333,'2005-08-23 18:06:21',2,'2006-02-15 21:30:53'), +(15254,'2005-08-22 18:13:07',3762,209,'2005-08-24 21:55:07',1,'2006-02-15 21:30:53'), +(15255,'2005-08-22 18:16:50',3415,84,'2005-08-28 14:14:50',2,'2006-02-15 21:30:53'), +(15256,'2005-08-22 18:20:07',1873,198,'2005-08-28 12:57:07',1,'2006-02-15 21:30:53'), +(15257,'2005-08-22 18:21:04',915,223,'2005-08-30 20:13:04',1,'2006-02-15 21:30:53'), +(15258,'2005-08-22 18:22:44',788,293,'2005-08-25 16:54:44',1,'2006-02-15 21:30:53'), +(15259,'2005-08-22 18:23:23',3261,488,'2005-08-27 13:06:23',1,'2006-02-15 21:30:53'), +(15260,'2005-08-22 18:24:16',3135,274,'2005-08-24 21:26:16',1,'2006-02-15 21:30:53'), +(15261,'2005-08-22 18:24:34',2200,140,'2005-08-27 19:53:34',1,'2006-02-15 21:30:53'), +(15262,'2005-08-22 18:25:21',2534,298,'2005-08-28 22:19:21',1,'2006-02-15 21:30:53'), +(15263,'2005-08-22 18:27:33',184,324,'2005-08-30 14:05:33',1,'2006-02-15 21:30:53'), +(15264,'2005-08-22 18:27:38',4459,440,'2005-08-24 12:39:38',1,'2006-02-15 21:30:53'), +(15265,'2005-08-22 18:35:59',1763,512,'2005-08-28 21:18:59',2,'2006-02-15 21:30:53'), +(15266,'2005-08-22 18:37:24',1870,124,'2005-08-23 17:34:24',2,'2006-02-15 21:30:53'), +(15267,'2005-08-22 18:37:48',2966,153,'2005-08-24 00:22:48',1,'2006-02-15 21:30:53'), +(15268,'2005-08-22 18:39:11',1245,301,'2005-08-26 21:46:11',1,'2006-02-15 21:30:53'), +(15269,'2005-08-22 18:39:44',524,275,'2005-08-24 17:29:44',1,'2006-02-15 21:30:53'), +(15270,'2005-08-22 18:48:42',4123,262,'2005-08-28 15:38:42',2,'2006-02-15 21:30:53'), +(15271,'2005-08-22 18:48:48',4232,59,'2005-08-30 00:45:48',2,'2006-02-15 21:30:53'), +(15272,'2005-08-22 18:49:40',1664,422,'2005-08-28 21:22:40',1,'2006-02-15 21:30:53'), +(15273,'2005-08-22 18:53:28',2558,422,'2005-08-30 18:58:28',2,'2006-02-15 21:30:53'), +(15274,'2005-08-22 18:55:52',3519,515,'2005-08-23 20:02:52',1,'2006-02-15 21:30:53'), +(15275,'2005-08-22 18:57:39',1522,597,'2005-08-23 19:00:39',2,'2006-02-15 21:30:53'), +(15276,'2005-08-22 18:59:01',4523,490,'2005-08-23 19:49:01',2,'2006-02-15 21:30:53'), +(15277,'2005-08-22 19:02:48',1780,217,'2005-08-31 18:53:48',2,'2006-02-15 21:30:53'), +(15278,'2005-08-22 19:06:47',2454,472,'2005-08-25 01:00:47',2,'2006-02-15 21:30:53'), +(15279,'2005-08-22 19:08:49',1088,363,'2005-08-30 00:38:49',2,'2006-02-15 21:30:53'), +(15280,'2005-08-22 19:09:52',3464,317,'2005-08-28 00:39:52',1,'2006-02-15 21:30:53'), +(15281,'2005-08-22 19:10:26',3992,543,'2005-08-27 21:55:26',2,'2006-02-15 21:30:53'), +(15282,'2006-02-14 15:16:03',1932,163,NULL,1,'2006-02-15 21:30:53'), +(15283,'2005-08-22 19:16:04',1688,219,'2005-08-31 21:05:04',1,'2006-02-15 21:30:53'), +(15284,'2005-08-22 19:17:08',2265,393,'2005-08-29 13:28:08',2,'2006-02-15 21:30:53'), +(15285,'2005-08-22 19:17:24',481,233,'2005-08-25 00:25:24',1,'2006-02-15 21:30:53'), +(15286,'2005-08-22 19:17:56',3731,74,'2005-08-29 16:08:56',2,'2006-02-15 21:30:53'), +(15287,'2005-08-22 19:19:37',308,535,'2005-08-29 16:05:37',1,'2006-02-15 21:30:53'), +(15288,'2005-08-22 19:23:58',1999,475,'2005-08-26 23:28:58',1,'2006-02-15 21:30:53'), +(15289,'2005-08-22 19:27:24',1026,513,'2005-08-30 22:21:24',1,'2006-02-15 21:30:53'), +(15290,'2005-08-22 19:28:02',270,404,'2005-08-31 20:04:02',2,'2006-02-15 21:30:53'), +(15291,'2005-08-22 19:28:04',1461,494,'2005-08-26 15:07:04',1,'2006-02-15 21:30:53'), +(15292,'2005-08-22 19:28:56',3072,337,'2005-08-28 22:39:56',2,'2006-02-15 21:30:53'), +(15293,'2006-02-14 15:16:03',1219,263,NULL,2,'2006-02-15 21:30:53'), +(15294,'2006-02-14 15:16:03',70,108,NULL,1,'2006-02-15 21:30:53'), +(15295,'2005-08-22 19:36:21',2164,186,'2005-08-31 00:07:21',2,'2006-02-15 21:30:53'), +(15296,'2005-08-22 19:37:20',2715,55,'2005-08-24 15:16:20',1,'2006-02-15 21:30:53'), +(15297,'2006-02-14 15:16:03',3192,327,NULL,2,'2006-02-15 21:30:53'), +(15298,'2005-08-22 19:41:37',1446,1,'2005-08-28 22:49:37',1,'2006-02-15 21:30:53'), +(15299,'2005-08-22 19:42:57',767,381,'2005-08-23 15:29:57',2,'2006-02-15 21:30:53'), +(15300,'2005-08-22 19:44:00',2319,399,'2005-08-25 22:49:00',2,'2006-02-15 21:30:53'), +(15301,'2005-08-22 19:44:16',619,454,'2005-08-26 22:57:16',2,'2006-02-15 21:30:53'), +(15302,'2005-08-22 19:44:53',188,320,'2005-08-24 18:13:53',2,'2006-02-15 21:30:53'), +(15303,'2005-08-22 19:44:59',1672,390,'2005-08-30 21:59:59',1,'2006-02-15 21:30:53'), +(15304,'2005-08-22 19:45:57',4332,112,'2005-08-28 00:21:57',2,'2006-02-15 21:30:53'), +(15305,'2005-08-22 19:46:05',671,529,'2005-08-27 19:11:05',2,'2006-02-15 21:30:53'), +(15306,'2005-08-22 19:46:36',521,340,'2005-08-27 14:09:36',1,'2006-02-15 21:30:53'), +(15307,'2005-08-22 19:54:26',4525,598,'2005-08-29 01:38:26',2,'2006-02-15 21:30:53'), +(15308,'2005-08-22 19:54:31',987,329,'2005-08-26 23:09:31',1,'2006-02-15 21:30:53'), +(15309,'2005-08-22 19:54:52',2743,141,'2005-08-24 23:00:52',2,'2006-02-15 21:30:53'), +(15310,'2005-08-22 19:56:41',2546,360,'2005-08-24 16:32:41',2,'2006-02-15 21:30:53'), +(15311,'2005-08-22 19:56:52',3612,176,'2005-08-31 20:15:52',2,'2006-02-15 21:30:53'), +(15312,'2005-08-22 19:58:15',2509,280,'2005-08-25 19:21:15',2,'2006-02-15 21:30:53'), +(15313,'2005-08-22 19:59:42',2587,333,'2005-08-24 15:03:42',2,'2006-02-15 21:30:53'), +(15314,'2006-02-14 15:16:03',2754,412,NULL,1,'2006-02-15 21:30:53'), +(15315,'2005-08-22 20:03:46',312,1,'2005-08-30 01:51:46',2,'2006-02-15 21:30:53'), +(15316,'2005-08-22 20:07:03',1830,422,'2005-08-27 18:45:03',1,'2006-02-15 21:30:53'), +(15317,'2005-08-22 20:14:13',2325,512,'2005-08-29 18:32:13',1,'2006-02-15 21:30:53'), +(15318,'2005-08-22 20:15:16',1738,60,'2005-08-25 14:17:16',1,'2006-02-15 21:30:53'), +(15319,'2005-08-22 20:17:17',3041,188,'2005-08-25 01:06:17',2,'2006-02-15 21:30:53'), +(15320,'2005-08-22 20:17:49',648,407,'2005-08-28 17:31:49',1,'2006-02-15 21:30:53'), +(15321,'2005-08-22 20:20:04',4152,384,'2005-08-24 23:26:04',2,'2006-02-15 21:30:53'), +(15322,'2005-08-22 20:20:30',3553,263,'2005-08-25 01:26:30',2,'2006-02-15 21:30:53'), +(15323,'2005-08-22 20:22:40',1153,178,'2005-08-26 00:35:40',1,'2006-02-15 21:30:53'), +(15324,'2005-08-22 20:23:13',161,93,'2005-08-29 18:23:13',1,'2006-02-15 21:30:53'), +(15325,'2005-08-22 20:27:38',3549,74,'2005-08-23 15:24:38',1,'2006-02-15 21:30:53'), +(15326,'2006-02-14 15:16:03',3320,58,NULL,1,'2006-02-15 21:30:53'), +(15327,'2005-08-22 20:31:24',1018,450,'2005-08-30 23:52:24',1,'2006-02-15 21:30:53'), +(15328,'2005-08-22 20:31:38',4546,274,'2005-08-29 20:17:38',1,'2006-02-15 21:30:53'), +(15329,'2005-08-22 20:32:39',1900,521,'2005-08-23 17:15:39',1,'2006-02-15 21:30:53'), +(15330,'2005-08-22 20:35:30',689,427,'2005-08-30 21:54:30',1,'2006-02-15 21:30:53'), +(15331,'2005-08-22 20:37:57',146,147,'2005-08-25 21:56:57',1,'2006-02-15 21:30:53'), +(15332,'2005-08-22 20:41:53',3368,162,'2005-08-24 01:45:53',1,'2006-02-15 21:30:53'), +(15333,'2005-08-22 20:44:06',1839,142,'2005-08-29 22:34:06',2,'2006-02-15 21:30:53'), +(15334,'2005-08-22 20:44:35',3882,407,'2005-08-29 23:03:35',2,'2006-02-15 21:30:53'), +(15335,'2005-08-22 20:44:55',1593,363,'2005-08-28 21:43:55',1,'2006-02-15 21:30:53'), +(15336,'2005-08-22 20:47:48',490,461,'2005-08-31 18:17:48',2,'2006-02-15 21:30:53'), +(15337,'2005-08-22 20:49:51',280,237,'2005-08-26 23:27:51',1,'2006-02-15 21:30:53'), +(15338,'2005-08-22 20:51:24',502,13,'2005-08-24 23:41:24',2,'2006-02-15 21:30:53'), +(15339,'2005-08-22 20:52:12',1660,331,'2005-08-26 00:36:12',2,'2006-02-15 21:30:53'), +(15340,'2005-08-22 20:55:56',3653,313,'2005-08-27 18:52:56',1,'2006-02-15 21:30:53'), +(15341,'2005-08-22 20:56:31',3359,91,'2005-08-30 17:25:31',1,'2006-02-15 21:30:53'), +(15342,'2005-08-22 20:56:41',3287,459,'2005-08-26 22:51:41',2,'2006-02-15 21:30:53'), +(15343,'2005-08-22 21:01:25',2589,538,'2005-08-28 16:15:25',1,'2006-02-15 21:30:53'), +(15344,'2005-08-22 21:01:48',3560,193,'2005-08-27 15:47:48',1,'2006-02-15 21:30:53'), +(15345,'2005-08-22 21:05:50',3481,277,'2005-08-26 20:30:50',1,'2006-02-15 21:30:53'), +(15346,'2005-08-22 21:06:00',3525,266,'2005-08-28 22:08:00',1,'2006-02-15 21:30:53'), +(15347,'2005-08-22 21:12:19',3764,519,'2005-08-24 20:12:19',1,'2006-02-15 21:30:53'), +(15348,'2005-08-22 21:13:46',3846,587,'2005-08-24 17:06:46',1,'2006-02-15 21:30:53'), +(15349,'2005-08-22 21:13:51',4055,587,'2005-08-23 20:55:51',1,'2006-02-15 21:30:53'), +(15350,'2005-08-22 21:15:29',1170,488,'2005-08-24 02:56:29',1,'2006-02-15 21:30:53'), +(15351,'2005-08-22 21:15:46',3260,154,'2005-08-23 17:38:46',1,'2006-02-15 21:30:53'), +(15352,'2005-08-22 21:16:54',16,560,'2005-08-31 00:38:54',2,'2006-02-15 21:30:53'), +(15353,'2005-08-22 21:18:08',3470,368,'2005-08-25 20:29:08',2,'2006-02-15 21:30:53'), +(15354,'2005-08-22 21:18:59',4212,412,'2005-08-27 20:12:59',2,'2006-02-15 21:30:53'), +(15355,'2005-08-22 21:19:24',3477,493,'2005-08-28 20:36:24',2,'2006-02-15 21:30:53'), +(15356,'2005-08-22 21:24:19',4507,539,'2005-08-25 22:32:19',2,'2006-02-15 21:30:53'), +(15357,'2005-08-22 21:28:59',727,24,'2005-08-25 17:15:59',1,'2006-02-15 21:30:53'), +(15358,'2005-08-22 21:29:14',822,448,'2005-08-31 00:10:14',2,'2006-02-15 21:30:53'), +(15359,'2005-08-22 21:34:00',4505,77,'2005-08-29 18:59:00',1,'2006-02-15 21:30:53'), +(15360,'2005-08-22 21:36:51',1950,531,'2005-08-24 16:46:51',1,'2006-02-15 21:30:53'), +(15361,'2005-08-22 21:39:45',1407,380,'2005-08-23 17:32:45',2,'2006-02-15 21:30:53'), +(15362,'2005-08-22 21:40:20',1023,497,'2005-08-29 15:55:20',1,'2006-02-15 21:30:53'), +(15363,'2005-08-22 21:41:40',2326,480,'2005-08-23 21:40:40',1,'2006-02-15 21:30:53'), +(15364,'2005-08-22 21:41:41',4184,204,'2005-08-28 00:49:41',1,'2006-02-15 21:30:53'), +(15365,'2005-08-22 21:42:17',3382,327,'2005-09-01 03:14:17',2,'2006-02-15 21:30:53'), +(15366,'2005-08-22 21:45:57',1453,374,'2005-08-30 16:35:57',1,'2006-02-15 21:30:53'), +(15367,'2005-08-22 21:47:53',160,355,'2005-08-27 17:54:53',2,'2006-02-15 21:30:53'), +(15368,'2005-08-22 21:57:15',1130,370,'2005-08-29 16:28:15',1,'2006-02-15 21:30:53'), +(15369,'2005-08-22 21:58:06',881,121,'2005-08-26 00:27:06',2,'2006-02-15 21:30:53'), +(15370,'2005-08-22 21:59:29',67,10,'2005-08-27 16:32:29',1,'2006-02-15 21:30:53'), +(15371,'2006-02-14 15:16:03',3672,94,NULL,2,'2006-02-15 21:30:53'), +(15372,'2005-08-22 21:59:51',3876,273,'2005-08-23 17:01:51',1,'2006-02-15 21:30:53'), +(15373,'2005-08-22 22:08:11',4439,14,'2005-08-24 01:05:11',2,'2006-02-15 21:30:53'), +(15374,'2005-08-22 22:09:09',4275,8,'2005-08-31 01:10:09',1,'2006-02-15 21:30:53'), +(15375,'2005-08-22 22:12:02',3864,191,'2005-08-24 00:50:02',2,'2006-02-15 21:30:53'), +(15376,'2005-08-22 22:21:35',2963,390,'2005-08-28 20:56:35',1,'2006-02-15 21:30:53'), +(15377,'2005-08-22 22:22:33',3405,551,'2005-08-29 18:41:33',1,'2006-02-15 21:30:53'), +(15378,'2005-08-22 22:25:17',1483,340,'2005-08-30 17:04:17',1,'2006-02-15 21:30:53'), +(15379,'2005-08-22 22:26:13',1899,148,'2005-08-31 18:19:13',1,'2006-02-15 21:30:53'), +(15380,'2005-08-22 22:28:15',3642,423,'2005-08-28 23:21:15',1,'2006-02-15 21:30:53'), +(15381,'2005-08-22 22:28:36',845,110,'2005-08-24 19:26:36',2,'2006-02-15 21:30:53'), +(15382,'2005-08-22 22:30:50',333,376,'2005-08-24 04:07:50',2,'2006-02-15 21:30:53'), +(15383,'2005-08-22 22:31:20',686,405,'2005-08-28 17:43:20',1,'2006-02-15 21:30:53'), +(15384,'2005-08-22 22:34:44',3208,26,'2005-08-23 23:25:44',2,'2006-02-15 21:30:53'), +(15385,'2005-08-22 22:37:34',140,434,'2005-08-26 00:36:34',2,'2006-02-15 21:30:53'), +(15386,'2005-08-22 22:41:14',3056,327,'2005-08-29 22:29:14',1,'2006-02-15 21:30:53'), +(15387,'2005-08-22 22:49:13',3879,323,'2005-08-29 01:49:13',2,'2006-02-15 21:30:53'), +(15388,'2005-08-22 22:49:23',3995,50,'2005-09-01 03:50:23',2,'2006-02-15 21:30:53'), +(15389,'2005-08-22 22:51:13',2077,231,'2005-08-28 23:46:13',1,'2006-02-15 21:30:53'), +(15390,'2005-08-22 22:57:25',462,551,'2005-08-31 18:06:25',1,'2006-02-15 21:30:53'), +(15391,'2005-08-22 23:01:45',3918,482,'2005-08-29 02:59:45',2,'2006-02-15 21:30:53'), +(15392,'2005-08-22 23:02:15',538,410,'2005-09-01 01:14:15',2,'2006-02-15 21:30:53'), +(15393,'2005-08-22 23:04:09',2924,443,'2005-08-27 02:23:09',2,'2006-02-15 21:30:53'), +(15394,'2005-08-22 23:04:21',3455,507,'2005-08-25 20:53:21',2,'2006-02-15 21:30:53'), +(15395,'2005-08-22 23:06:25',2880,526,'2005-08-30 19:18:25',1,'2006-02-15 21:30:53'), +(15396,'2005-08-22 23:07:57',4050,319,'2005-08-28 19:39:57',2,'2006-02-15 21:30:53'), +(15397,'2005-08-22 23:08:46',1482,261,'2005-08-25 20:58:46',1,'2006-02-15 21:30:53'), +(15398,'2005-08-22 23:10:49',4451,109,'2005-08-28 00:49:49',2,'2006-02-15 21:30:53'), +(15399,'2005-08-22 23:11:59',3858,379,'2005-08-26 22:16:59',2,'2006-02-15 21:30:53'), +(15400,'2005-08-22 23:13:03',2664,473,'2005-08-28 18:34:03',1,'2006-02-15 21:30:53'), +(15401,'2005-08-22 23:13:10',1721,103,'2005-09-01 03:44:10',1,'2006-02-15 21:30:53'), +(15402,'2005-08-22 23:17:41',1575,293,'2005-08-30 20:07:41',2,'2006-02-15 21:30:53'), +(15403,'2005-08-22 23:18:10',4315,581,'2005-08-23 18:08:10',2,'2006-02-15 21:30:53'), +(15404,'2005-08-22 23:19:44',3557,211,'2005-08-30 19:58:44',2,'2006-02-15 21:30:53'), +(15405,'2005-08-22 23:20:41',3263,596,'2005-08-25 23:53:41',1,'2006-02-15 21:30:53'), +(15406,'2005-08-22 23:21:22',400,227,'2005-08-28 22:21:22',1,'2006-02-15 21:30:53'), +(15407,'2006-02-14 15:16:03',3330,42,NULL,2,'2006-02-15 21:30:53'), +(15408,'2005-08-22 23:26:32',165,156,'2005-08-30 20:22:32',1,'2006-02-15 21:30:53'), +(15409,'2005-08-22 23:26:32',560,188,'2005-08-24 22:44:32',1,'2006-02-15 21:30:53'), +(15410,'2005-08-22 23:27:43',2052,403,'2005-08-29 05:12:43',2,'2006-02-15 21:30:53'), +(15411,'2005-08-22 23:35:41',4423,461,'2005-08-26 00:51:41',1,'2006-02-15 21:30:53'), +(15412,'2005-08-22 23:37:11',1267,199,'2005-08-28 23:26:11',2,'2006-02-15 21:30:53'), +(15413,'2005-08-22 23:38:01',2494,476,'2005-08-23 19:27:01',2,'2006-02-15 21:30:53'), +(15414,'2005-08-22 23:43:54',718,532,'2005-08-30 18:26:54',1,'2006-02-15 21:30:53'), +(15415,'2005-08-22 23:48:56',4176,204,'2005-09-01 02:05:56',1,'2006-02-15 21:30:53'), +(15416,'2005-08-22 23:51:23',1167,383,'2005-08-29 20:03:23',1,'2006-02-15 21:30:53'), +(15417,'2005-08-22 23:54:04',1826,305,'2005-08-26 22:25:04',1,'2006-02-15 21:30:53'), +(15418,'2005-08-22 23:54:14',808,205,'2005-08-28 04:23:14',2,'2006-02-15 21:30:53'), +(15419,'2005-08-22 23:54:36',1120,450,'2005-08-25 00:52:36',1,'2006-02-15 21:30:53'), +(15420,'2005-08-22 23:55:51',1396,161,'2005-08-31 20:09:51',2,'2006-02-15 21:30:53'), +(15421,'2005-08-22 23:56:37',3,541,'2005-08-25 18:58:37',2,'2006-02-15 21:30:53'), +(15422,'2005-08-22 23:58:09',2601,309,'2005-08-30 19:03:09',2,'2006-02-15 21:30:53'), +(15423,'2006-02-14 15:16:03',1786,596,NULL,1,'2006-02-15 21:30:53'), +(15424,'2005-08-23 00:03:01',3452,138,'2005-08-27 23:27:01',2,'2006-02-15 21:30:53'), +(15425,'2005-08-23 00:05:57',551,259,'2005-09-01 05:08:57',1,'2006-02-15 21:30:53'), +(15426,'2005-08-23 00:07:19',3280,347,'2005-08-26 23:19:19',1,'2006-02-15 21:30:53'), +(15427,'2005-08-23 00:07:53',2775,448,'2005-09-01 02:55:53',2,'2006-02-15 21:30:53'), +(15428,'2005-08-23 00:11:52',4379,402,'2005-08-24 02:35:52',1,'2006-02-15 21:30:53'), +(15429,'2005-08-23 00:20:31',740,241,'2005-08-23 20:22:31',1,'2006-02-15 21:30:53'), +(15430,'2006-02-14 15:16:03',4353,282,NULL,1,'2006-02-15 21:30:53'), +(15431,'2005-08-23 00:26:47',3251,550,'2005-08-31 23:26:47',2,'2006-02-15 21:30:53'), +(15432,'2005-08-23 00:26:52',1896,117,'2005-08-27 06:11:52',1,'2006-02-15 21:30:53'), +(15433,'2005-08-23 00:27:18',155,198,'2005-08-26 21:36:18',1,'2006-02-15 21:30:53'), +(15434,'2005-08-23 00:28:16',4378,518,'2005-08-26 04:27:16',2,'2006-02-15 21:30:53'), +(15435,'2005-08-23 00:28:19',2103,468,'2005-08-26 00:44:19',2,'2006-02-15 21:30:53'), +(15436,'2005-08-23 00:30:26',1527,505,'2005-08-28 06:29:26',1,'2006-02-15 21:30:53'), +(15437,'2005-08-23 00:31:09',4236,368,'2005-08-30 06:17:09',2,'2006-02-15 21:30:53'), +(15438,'2005-08-23 00:31:57',2030,46,'2005-08-26 20:02:57',1,'2006-02-15 21:30:53'), +(15439,'2005-08-23 00:34:28',3848,136,'2005-08-27 01:07:28',1,'2006-02-15 21:30:53'), +(15440,'2005-08-23 00:37:21',2254,559,'2005-08-24 23:24:21',1,'2006-02-15 21:30:53'), +(15441,'2006-02-14 15:16:03',258,422,NULL,2,'2006-02-15 21:30:53'), +(15442,'2005-08-23 00:42:49',1452,42,'2005-08-27 00:35:49',1,'2006-02-15 21:30:53'), +(15443,'2005-08-23 00:44:15',742,598,'2005-09-01 05:33:15',2,'2006-02-15 21:30:53'), +(15444,'2005-08-23 00:46:52',959,153,'2005-08-29 20:37:52',2,'2006-02-15 21:30:53'), +(15445,'2005-08-23 00:48:29',196,28,'2005-08-28 00:33:29',1,'2006-02-15 21:30:53'), +(15446,'2005-08-23 00:49:24',503,379,'2005-08-26 02:09:24',2,'2006-02-15 21:30:53'), +(15447,'2005-08-23 00:53:57',4090,331,'2005-08-29 06:19:57',2,'2006-02-15 21:30:53'), +(15448,'2005-08-23 00:55:24',2903,490,'2005-08-25 02:20:24',1,'2006-02-15 21:30:53'), +(15449,'2005-08-23 00:55:43',2856,461,'2005-08-28 03:41:43',1,'2006-02-15 21:30:53'), +(15450,'2005-08-23 00:56:01',1102,322,'2005-08-24 01:00:01',2,'2006-02-15 21:30:53'), +(15451,'2005-08-23 00:56:27',231,514,'2005-08-24 00:15:27',2,'2006-02-15 21:30:53'), +(15452,'2005-08-23 00:57:12',717,115,'2005-08-28 00:19:12',1,'2006-02-15 21:30:53'), +(15453,'2005-08-23 01:01:01',2,359,'2005-08-30 20:08:01',1,'2006-02-15 21:30:53'), +(15454,'2006-02-14 15:16:03',2946,142,NULL,2,'2006-02-15 21:30:53'), +(15455,'2005-08-23 01:05:00',3991,238,'2005-08-26 22:56:00',1,'2006-02-15 21:30:53'), +(15456,'2005-08-23 01:07:01',2451,262,'2005-08-24 23:28:01',2,'2006-02-15 21:30:53'), +(15457,'2005-08-23 01:07:37',4539,306,'2005-08-26 19:46:37',1,'2006-02-15 21:30:53'), +(15458,'2006-02-14 15:16:03',25,590,NULL,2,'2006-02-15 21:30:53'), +(15459,'2005-08-23 01:09:48',2058,346,'2005-08-24 04:52:48',1,'2006-02-15 21:30:53'), +(15460,'2005-08-23 01:10:42',2907,20,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'), +(15461,'2005-08-23 01:13:52',4542,103,'2005-08-30 00:44:52',1,'2006-02-15 21:30:53'), +(15462,'2005-08-23 01:14:01',3267,389,'2005-08-29 19:52:01',1,'2006-02-15 21:30:53'), +(15463,'2005-08-23 01:15:07',863,127,'2005-08-29 06:50:07',1,'2006-02-15 21:30:53'), +(15464,'2005-08-23 01:15:18',3235,62,'2005-08-29 02:58:18',2,'2006-02-15 21:30:53'), +(15465,'2005-08-23 01:16:33',362,520,'2005-08-28 20:08:33',2,'2006-02-15 21:30:53'), +(15466,'2005-08-23 01:16:55',571,418,'2005-08-29 22:57:55',1,'2006-02-15 21:30:53'), +(15467,'2005-08-23 01:22:12',3658,103,'2005-08-29 23:42:12',2,'2006-02-15 21:30:53'), +(15468,'2005-08-23 01:25:30',2440,399,'2005-08-28 01:40:30',2,'2006-02-15 21:30:53'), +(15469,'2005-08-23 01:29:59',1939,597,'2005-08-27 04:02:59',1,'2006-02-15 21:30:53'), +(15470,'2005-08-23 01:35:12',3009,416,'2005-09-01 05:33:12',1,'2006-02-15 21:30:53'), +(15471,'2005-08-23 01:38:48',2591,139,'2005-08-31 19:47:48',1,'2006-02-15 21:30:53'), +(15472,'2005-08-23 01:39:05',4293,226,'2005-08-25 04:43:05',1,'2006-02-15 21:30:53'), +(15473,'2005-08-23 01:39:10',356,259,'2005-08-25 03:48:10',1,'2006-02-15 21:30:53'), +(15474,'2005-08-23 01:39:10',3015,188,'2005-08-23 21:46:10',2,'2006-02-15 21:30:53'), +(15475,'2005-08-23 01:44:43',4503,562,'2005-08-23 23:53:43',2,'2006-02-15 21:30:53'), +(15476,'2005-08-23 01:45:07',2478,433,'2005-08-26 21:07:07',2,'2006-02-15 21:30:53'), +(15477,'2005-08-23 01:46:35',2406,142,'2005-08-28 22:12:35',1,'2006-02-15 21:30:53'), +(15478,'2005-08-23 01:50:31',4563,167,'2005-08-27 21:40:31',2,'2006-02-15 21:30:53'), +(15479,'2005-08-23 01:50:53',4182,149,'2005-08-29 00:53:53',1,'2006-02-15 21:30:53'), +(15480,'2005-08-23 01:57:20',3298,577,'2005-08-26 04:43:20',2,'2006-02-15 21:30:53'), +(15481,'2005-08-23 01:59:14',3262,414,'2005-08-27 04:38:14',1,'2006-02-15 21:30:53'), +(15482,'2005-08-23 02:01:20',3923,181,'2005-08-24 03:25:20',2,'2006-02-15 21:30:53'), +(15483,'2005-08-23 02:02:53',2970,173,'2005-08-26 04:13:53',1,'2006-02-15 21:30:53'), +(15484,'2005-08-23 02:04:49',642,342,'2005-08-24 05:46:49',1,'2006-02-15 21:30:53'), +(15485,'2005-08-23 02:04:57',281,114,'2005-08-28 07:05:57',2,'2006-02-15 21:30:53'), +(15486,'2005-08-23 02:05:20',1666,502,'2005-08-29 07:52:20',2,'2006-02-15 21:30:53'), +(15487,'2005-08-23 02:05:51',2636,469,'2005-08-25 04:45:51',1,'2006-02-15 21:30:53'), +(15488,'2005-08-23 02:06:01',4535,385,'2005-08-29 21:35:01',2,'2006-02-15 21:30:53'), +(15489,'2005-08-23 02:06:41',764,285,'2005-08-25 06:50:41',1,'2006-02-15 21:30:53'), +(15490,'2005-08-23 02:08:18',3922,493,'2005-08-30 06:15:18',1,'2006-02-15 21:30:53'), +(15491,'2005-08-23 02:08:40',2059,28,'2005-08-23 20:23:40',2,'2006-02-15 21:30:53'), +(15492,'2005-08-23 02:13:46',1298,520,'2005-08-26 21:53:46',2,'2006-02-15 21:30:53'), +(15493,'2005-08-23 02:20:53',3521,308,'2005-08-25 23:02:53',1,'2006-02-15 21:30:53'), +(15494,'2005-08-23 02:25:09',2968,455,'2005-08-27 00:18:09',1,'2006-02-15 21:30:53'), +(15495,'2005-08-23 02:26:10',4310,193,'2005-08-30 01:07:10',2,'2006-02-15 21:30:53'), +(15496,'2005-08-23 02:30:23',1863,275,'2005-08-31 03:31:23',2,'2006-02-15 21:30:53'), +(15497,'2006-02-14 15:16:03',363,107,NULL,1,'2006-02-15 21:30:53'), +(15498,'2005-08-23 02:33:27',1583,83,'2005-08-23 22:30:27',1,'2006-02-15 21:30:53'), +(15499,'2005-08-23 02:37:19',630,488,'2005-08-23 20:57:19',1,'2006-02-15 21:30:53'), +(15500,'2005-08-23 02:39:37',886,74,'2005-08-27 06:42:37',1,'2006-02-15 21:30:53'), +(15501,'2005-08-23 02:39:56',4468,138,'2005-08-25 04:39:56',1,'2006-02-15 21:30:53'), +(15502,'2005-08-23 02:40:04',3219,433,'2005-08-31 00:36:04',2,'2006-02-15 21:30:53'), +(15503,'2005-08-23 02:44:49',4519,582,'2005-08-27 06:33:49',2,'2006-02-15 21:30:53'), +(15504,'2005-08-23 02:45:21',1967,315,'2005-09-01 03:24:21',2,'2006-02-15 21:30:53'), +(15505,'2005-08-23 02:46:13',1144,375,'2005-08-26 23:34:13',2,'2006-02-15 21:30:53'), +(15506,'2005-08-23 02:48:24',1914,553,'2005-08-28 04:10:24',1,'2006-02-15 21:30:53'), +(15507,'2005-08-23 02:48:26',3130,563,'2005-08-27 01:32:26',1,'2006-02-15 21:30:53'), +(15508,'2005-08-23 02:49:04',4035,293,'2005-08-29 00:58:04',1,'2006-02-15 21:30:53'), +(15509,'2005-08-23 02:51:24',1291,6,'2005-08-31 06:21:24',2,'2006-02-15 21:30:53'), +(15510,'2005-08-23 02:51:27',3239,209,'2005-09-01 02:44:27',2,'2006-02-15 21:30:53'), +(15511,'2005-08-23 02:55:42',3327,303,'2005-08-31 03:14:42',2,'2006-02-15 21:30:53'), +(15512,'2005-08-23 02:57:30',4336,25,'2005-08-25 01:47:30',2,'2006-02-15 21:30:53'), +(15513,'2005-08-23 03:01:56',3779,147,'2005-08-24 23:46:56',2,'2006-02-15 21:30:53'), +(15514,'2005-08-23 03:03:40',2824,366,'2005-08-24 01:06:40',1,'2006-02-15 21:30:53'), +(15515,'2005-08-23 03:03:53',3940,307,'2005-08-25 08:27:53',2,'2006-02-15 21:30:53'), +(15516,'2005-08-23 03:12:54',219,82,'2005-08-30 04:02:54',1,'2006-02-15 21:30:53'), +(15517,'2005-08-23 03:13:01',2221,187,'2005-08-25 21:14:01',2,'2006-02-15 21:30:53'), +(15518,'2005-08-23 03:19:34',3522,410,'2005-08-24 02:55:34',1,'2006-02-15 21:30:53'), +(15519,'2005-08-23 03:23:32',542,443,'2005-08-25 03:48:32',1,'2006-02-15 21:30:53'), +(15520,'2005-08-23 03:30:45',1792,163,'2005-09-01 00:20:45',1,'2006-02-15 21:30:53'), +(15521,'2005-08-23 03:30:51',134,331,'2005-08-28 22:09:51',1,'2006-02-15 21:30:53'), +(15522,'2005-08-23 03:32:31',2396,468,'2005-08-30 02:17:31',2,'2006-02-15 21:30:53'), +(15523,'2005-08-23 03:32:36',2570,432,'2005-08-26 22:08:36',2,'2006-02-15 21:30:53'), +(15524,'2005-08-23 03:36:26',2886,68,'2005-08-26 06:28:26',2,'2006-02-15 21:30:53'), +(15525,'2005-08-23 03:43:32',3509,123,'2005-08-25 07:31:32',2,'2006-02-15 21:30:53'), +(15526,'2005-08-23 03:44:30',2892,516,'2005-08-30 08:19:30',1,'2006-02-15 21:30:53'), +(15527,'2005-08-23 03:44:51',88,393,'2005-08-25 03:09:51',1,'2006-02-15 21:30:53'), +(15528,'2005-08-23 03:45:40',3033,114,'2005-08-25 01:16:40',1,'2006-02-15 21:30:53'), +(15529,'2005-08-23 03:46:47',4015,19,'2005-08-24 00:59:47',1,'2006-02-15 21:30:53'), +(15530,'2005-08-23 03:50:48',154,167,'2005-08-28 22:17:48',2,'2006-02-15 21:30:53'), +(15531,'2005-08-23 03:52:36',2410,355,'2005-08-25 23:21:36',1,'2006-02-15 21:30:53'), +(15532,'2006-02-14 15:16:03',1061,23,NULL,1,'2006-02-15 21:30:53'), +(15533,'2005-08-23 03:54:39',1895,400,'2005-08-26 08:27:39',2,'2006-02-15 21:30:53'), +(15534,'2005-08-23 03:55:54',544,169,'2005-08-24 03:54:54',1,'2006-02-15 21:30:53'), +(15535,'2005-08-23 03:58:02',2371,346,'2005-08-25 05:06:02',2,'2006-02-15 21:30:53'), +(15536,'2005-08-23 03:58:28',4004,98,'2005-08-31 03:28:28',2,'2006-02-15 21:30:53'), +(15537,'2005-08-23 04:00:30',2958,137,'2005-08-24 01:45:30',2,'2006-02-15 21:30:53'), +(15538,'2005-08-23 04:07:37',4226,211,'2005-08-28 07:37:37',1,'2006-02-15 21:30:53'), +(15539,'2005-08-23 04:09:03',2853,582,'2005-08-26 04:01:03',1,'2006-02-15 21:30:53'), +(15540,'2005-08-23 04:12:52',1696,197,'2005-08-31 04:25:52',1,'2006-02-15 21:30:53'), +(15541,'2005-08-23 04:13:53',2762,148,'2005-08-29 05:51:53',1,'2006-02-15 21:30:53'), +(15542,'2006-02-14 15:16:03',21,111,NULL,1,'2006-02-15 21:30:53'), +(15543,'2005-08-23 04:15:41',3836,282,'2005-09-01 05:09:41',2,'2006-02-15 21:30:53'), +(15544,'2005-08-23 04:17:56',1918,30,'2005-09-01 00:43:56',2,'2006-02-15 21:30:53'), +(15545,'2005-08-23 04:20:16',843,513,'2005-08-29 08:22:16',1,'2006-02-15 21:30:53'), +(15546,'2005-08-23 04:20:38',2087,223,'2005-09-01 09:57:38',2,'2006-02-15 21:30:53'), +(15547,'2005-08-23 04:25:50',1488,69,'2005-08-26 00:57:50',1,'2006-02-15 21:30:53'), +(15548,'2005-08-23 04:26:20',2350,334,'2005-08-28 01:27:20',1,'2006-02-15 21:30:53'), +(15549,'2005-08-23 04:27:06',369,170,'2005-09-01 06:07:06',1,'2006-02-15 21:30:53'), +(15550,'2005-08-23 04:27:54',1375,465,'2005-08-29 01:29:54',1,'2006-02-15 21:30:53'), +(15551,'2005-08-23 04:28:25',3570,345,'2005-08-26 07:19:25',1,'2006-02-15 21:30:53'), +(15552,'2005-08-23 04:33:23',4347,527,'2005-09-01 10:25:23',2,'2006-02-15 21:30:53'), +(15553,'2005-08-23 04:33:39',1659,232,'2005-08-25 07:53:39',2,'2006-02-15 21:30:53'), +(15554,'2005-08-23 04:48:12',198,280,'2005-08-29 05:11:12',1,'2006-02-15 21:30:53'), +(15555,'2005-08-23 04:51:52',1869,347,'2005-08-24 01:01:52',1,'2006-02-15 21:30:53'), +(15556,'2005-08-23 04:52:16',3683,108,'2005-09-01 02:05:16',2,'2006-02-15 21:30:53'), +(15557,'2005-08-23 04:52:17',3641,444,'2005-08-30 02:15:17',2,'2006-02-15 21:30:53'), +(15558,'2005-08-23 04:52:22',638,474,'2005-09-01 02:26:22',1,'2006-02-15 21:30:53'), +(15559,'2005-08-23 04:55:05',1773,517,'2005-08-30 09:01:05',2,'2006-02-15 21:30:53'), +(15560,'2005-08-23 05:01:13',3616,107,'2005-09-01 05:02:13',1,'2006-02-15 21:30:53'), +(15561,'2005-08-23 05:02:31',68,469,'2005-09-01 02:51:31',1,'2006-02-15 21:30:53'), +(15562,'2005-08-23 05:04:33',4238,149,'2005-08-27 09:58:33',1,'2006-02-15 21:30:53'), +(15563,'2005-08-23 05:08:58',170,372,'2005-08-24 04:24:58',1,'2006-02-15 21:30:53'), +(15564,'2005-08-23 05:10:42',1268,353,'2005-08-30 03:17:42',1,'2006-02-15 21:30:53'), +(15565,'2005-08-23 05:13:09',71,546,'2005-08-30 08:58:09',2,'2006-02-15 21:30:53'), +(15566,'2005-08-23 05:17:23',4344,76,'2005-09-01 08:09:23',2,'2006-02-15 21:30:53'), +(15567,'2005-08-23 05:20:36',2506,54,'2005-08-24 10:09:36',2,'2006-02-15 21:30:53'), +(15568,'2005-08-23 05:24:09',988,556,'2005-08-27 08:57:09',2,'2006-02-15 21:30:53'), +(15569,'2005-08-23 05:24:29',1071,313,'2005-08-30 08:23:29',2,'2006-02-15 21:30:53'), +(15570,'2005-08-23 05:24:55',4014,557,'2005-08-31 07:06:55',2,'2006-02-15 21:30:53'), +(15571,'2005-08-23 05:26:30',716,57,'2005-08-29 00:54:30',2,'2006-02-15 21:30:53'), +(15572,'2005-08-23 05:28:01',2816,506,'2005-08-27 00:14:01',2,'2006-02-15 21:30:53'), +(15573,'2005-08-23 05:28:36',3133,561,'2005-08-27 05:37:36',2,'2006-02-15 21:30:53'), +(15574,'2005-08-23 05:29:32',3253,130,'2005-09-01 01:25:32',2,'2006-02-15 21:30:53'), +(15575,'2005-08-23 05:30:19',3916,218,'2005-08-27 05:19:19',2,'2006-02-15 21:30:53'), +(15576,'2005-08-23 05:32:03',3257,595,'2005-08-26 02:31:03',1,'2006-02-15 21:30:53'), +(15577,'2006-02-14 15:16:03',539,29,NULL,2,'2006-02-15 21:30:53'), +(15578,'2005-08-23 05:37:13',2829,302,'2005-08-27 01:11:13',1,'2006-02-15 21:30:53'), +(15579,'2005-08-23 05:38:41',3986,480,'2005-08-29 09:18:41',1,'2006-02-15 21:30:53'), +(15580,'2005-08-23 05:39:06',754,279,'2005-09-01 01:14:06',2,'2006-02-15 21:30:53'), +(15581,'2005-08-23 05:42:13',4010,462,'2005-08-28 00:03:13',1,'2006-02-15 21:30:53'), +(15582,'2005-08-23 05:45:44',4264,297,'2005-08-25 07:54:44',2,'2006-02-15 21:30:53'), +(15583,'2005-08-23 05:47:55',4299,215,'2005-08-26 01:46:55',1,'2006-02-15 21:30:53'), +(15584,'2005-08-23 05:49:21',3526,500,'2005-08-27 04:49:21',1,'2006-02-15 21:30:53'), +(15585,'2005-08-23 05:55:22',1177,545,'2005-08-24 11:45:22',2,'2006-02-15 21:30:53'), +(15586,'2005-08-23 05:57:04',3232,148,'2005-08-31 01:59:04',1,'2006-02-15 21:30:53'), +(15587,'2005-08-23 06:00:28',2510,499,'2005-08-29 10:15:28',1,'2006-02-15 21:30:53'), +(15588,'2005-08-23 06:02:35',1810,503,'2005-08-30 04:01:35',2,'2006-02-15 21:30:53'), +(15589,'2005-08-23 06:03:31',2379,22,'2005-08-30 07:44:31',2,'2006-02-15 21:30:53'), +(15590,'2005-08-23 06:09:44',4048,599,'2005-09-01 06:53:44',2,'2006-02-15 21:30:53'), +(15591,'2005-08-23 06:11:52',64,62,'2005-08-25 05:34:52',1,'2006-02-15 21:30:53'), +(15593,'2005-08-23 06:15:09',3734,153,'2005-08-27 07:47:09',2,'2006-02-15 21:30:53'), +(15594,'2005-08-23 06:18:43',4227,567,'2005-09-01 09:09:43',2,'2006-02-15 21:30:53'), +(15595,'2005-08-23 06:19:12',4046,264,'2005-08-31 04:52:12',1,'2006-02-15 21:30:53'), +(15596,'2005-08-23 06:19:51',3834,186,'2005-08-25 03:32:51',1,'2006-02-15 21:30:53'), +(15597,'2005-08-23 06:21:20',3795,420,'2005-08-28 02:47:20',2,'2006-02-15 21:30:53'), +(15598,'2005-08-23 06:23:26',2794,66,'2005-09-01 05:43:26',1,'2006-02-15 21:30:53'), +(15599,'2005-08-23 06:25:07',4560,103,'2005-08-29 00:48:07',1,'2006-02-15 21:30:53'), +(15600,'2005-08-23 06:31:24',2260,113,'2005-08-28 06:53:24',1,'2006-02-15 21:30:53'), +(15601,'2005-08-23 06:33:26',3643,579,'2005-08-24 04:10:26',1,'2006-02-15 21:30:53'), +(15602,'2005-08-23 06:41:07',1429,81,'2005-08-24 07:16:07',1,'2006-02-15 21:30:53'), +(15603,'2005-08-23 06:41:32',2565,6,'2005-08-28 08:51:32',1,'2006-02-15 21:30:53'), +(15604,'2005-08-23 06:44:19',4000,458,'2005-08-29 07:17:19',1,'2006-02-15 21:30:53'), +(15605,'2005-08-23 06:48:47',3152,544,'2005-08-28 06:09:47',1,'2006-02-15 21:30:53'), +(15606,'2005-08-23 06:50:27',1811,279,'2005-08-28 04:23:27',2,'2006-02-15 21:30:53'), +(15607,'2005-08-23 06:54:06',4118,484,'2005-08-26 05:03:06',2,'2006-02-15 21:30:53'), +(15608,'2005-08-23 06:55:26',2921,454,'2005-08-28 10:24:26',1,'2006-02-15 21:30:53'), +(15609,'2005-08-23 06:56:04',1730,256,'2005-09-01 03:25:04',1,'2006-02-15 21:30:53'), +(15610,'2005-08-23 06:56:15',2076,215,'2005-08-24 07:37:15',2,'2006-02-15 21:30:53'), +(15611,'2005-08-23 06:56:18',1713,184,'2005-08-25 06:10:18',1,'2006-02-15 21:30:53'), +(15612,'2005-08-23 06:59:07',3367,305,'2005-09-01 11:26:07',2,'2006-02-15 21:30:53'), +(15613,'2005-08-23 07:03:19',307,461,'2005-08-31 07:50:19',2,'2006-02-15 21:30:53'), +(15614,'2005-08-23 07:05:15',1216,287,'2005-09-01 11:41:15',1,'2006-02-15 21:30:53'), +(15615,'2005-08-23 07:06:00',899,584,'2005-08-30 11:21:00',2,'2006-02-15 21:30:53'), +(15616,'2005-08-23 07:06:38',2947,70,'2005-08-30 04:16:38',1,'2006-02-15 21:30:53'), +(15617,'2005-08-23 07:07:22',4085,569,'2005-08-27 01:24:22',2,'2006-02-15 21:30:53'), +(15618,'2005-08-23 07:07:58',1903,60,'2005-08-29 03:48:58',1,'2006-02-15 21:30:53'), +(15619,'2005-08-23 07:10:14',2468,3,'2005-08-26 07:21:14',2,'2006-02-15 21:30:53'), +(15620,'2005-08-23 07:10:22',1173,270,'2005-08-28 06:51:22',2,'2006-02-15 21:30:53'), +(15621,'2005-08-23 07:13:43',3832,123,'2005-08-29 08:19:43',1,'2006-02-15 21:30:53'), +(15622,'2005-08-23 07:22:02',3335,302,'2005-09-01 06:08:02',2,'2006-02-15 21:30:53'), +(15623,'2005-08-23 07:23:29',3003,525,'2005-08-31 01:47:29',1,'2006-02-15 21:30:53'), +(15624,'2005-08-23 07:24:27',396,105,'2005-08-29 12:36:27',2,'2006-02-15 21:30:53'), +(15625,'2005-08-23 07:25:29',4200,207,'2005-08-27 13:17:29',2,'2006-02-15 21:30:53'), +(15626,'2005-08-23 07:25:34',640,370,'2005-08-28 11:01:34',1,'2006-02-15 21:30:53'), +(15627,'2005-08-23 07:25:38',1364,453,'2005-08-31 02:53:38',2,'2006-02-15 21:30:53'), +(15628,'2005-08-23 07:28:04',1348,408,'2005-08-26 04:23:04',1,'2006-02-15 21:30:53'), +(15629,'2005-08-23 07:28:22',3725,286,'2005-08-29 06:29:22',2,'2006-02-15 21:30:53'), +(15630,'2005-08-23 07:29:13',3590,580,'2005-08-31 04:33:13',2,'2006-02-15 21:30:53'), +(15631,'2005-08-23 07:30:23',2458,93,'2005-08-24 07:23:23',1,'2006-02-15 21:30:53'), +(15632,'2005-08-23 07:30:26',2941,60,'2005-08-24 07:53:26',2,'2006-02-15 21:30:53'), +(15633,'2005-08-23 07:31:10',882,497,'2005-08-26 04:35:10',2,'2006-02-15 21:30:53'), +(15634,'2005-08-23 07:34:18',2517,576,'2005-08-24 12:00:18',2,'2006-02-15 21:30:53'), +(15635,'2005-08-23 07:43:00',3308,4,'2005-08-27 10:47:00',1,'2006-02-15 21:30:53'), +(15636,'2005-08-23 07:50:46',1169,380,'2005-08-26 07:59:46',2,'2006-02-15 21:30:53'), +(15637,'2005-08-23 07:53:38',445,172,'2005-08-29 03:16:38',2,'2006-02-15 21:30:53'), +(15638,'2005-08-23 07:54:54',3358,563,'2005-08-30 13:33:54',2,'2006-02-15 21:30:53'), +(15639,'2005-08-23 08:03:25',42,214,'2005-08-24 10:21:25',2,'2006-02-15 21:30:53'), +(15640,'2005-08-23 08:04:40',3505,262,'2005-08-24 06:38:40',1,'2006-02-15 21:30:53'), +(15641,'2005-08-23 08:06:49',3126,240,'2005-08-24 13:17:49',1,'2006-02-15 21:30:53'), +(15642,'2005-08-23 08:09:11',2627,160,'2005-08-28 05:57:11',1,'2006-02-15 21:30:53'), +(15643,'2005-08-23 08:13:26',103,298,'2005-08-25 05:18:26',2,'2006-02-15 21:30:53'), +(15644,'2006-02-14 15:16:03',3139,43,NULL,2,'2006-02-15 21:30:53'), +(15645,'2006-02-14 15:16:03',3838,214,NULL,2,'2006-02-15 21:30:53'), +(15646,'2005-08-23 08:19:55',3217,114,'2005-08-29 02:32:55',1,'2006-02-15 21:30:53'), +(15647,'2005-08-23 08:23:56',2051,251,'2005-08-26 11:00:56',1,'2006-02-15 21:30:53'), +(15648,'2005-08-23 08:27:57',4039,80,'2005-08-30 08:53:57',2,'2006-02-15 21:30:53'), +(15649,'2005-08-23 08:28:03',415,60,'2005-08-30 05:11:03',1,'2006-02-15 21:30:53'), +(15650,'2005-08-23 08:29:53',2447,353,'2005-08-25 07:23:53',2,'2006-02-15 21:30:53'), +(15651,'2005-08-23 08:31:49',3393,451,'2005-08-26 02:57:49',1,'2006-02-15 21:30:53'), +(15652,'2005-08-23 08:34:10',4440,578,'2005-08-30 12:31:10',1,'2006-02-15 21:30:53'), +(15653,'2005-08-23 08:34:42',2736,439,'2005-09-01 03:07:42',1,'2006-02-15 21:30:53'), +(15654,'2005-08-23 08:34:53',4360,471,'2005-08-30 04:18:53',2,'2006-02-15 21:30:53'), +(15655,'2006-02-14 15:16:03',604,359,NULL,1,'2006-02-15 21:30:53'), +(15656,'2005-08-23 08:38:58',4239,334,'2005-08-24 04:08:58',2,'2006-02-15 21:30:53'), +(15657,'2005-08-23 08:42:40',1897,36,'2005-09-01 13:08:40',1,'2006-02-15 21:30:53'), +(15658,'2005-08-23 08:48:43',3565,22,'2005-08-25 05:38:43',1,'2006-02-15 21:30:53'), +(15659,'2005-08-23 08:48:43',4573,131,'2005-08-27 14:19:43',2,'2006-02-15 21:30:53'), +(15660,'2005-08-23 08:51:21',3223,388,'2005-08-28 06:26:21',2,'2006-02-15 21:30:53'), +(15661,'2005-08-23 08:52:03',1599,346,'2005-08-30 08:17:03',2,'2006-02-15 21:30:53'), +(15662,'2005-08-23 08:52:50',3028,223,'2005-08-24 08:08:50',1,'2006-02-15 21:30:53'), +(15663,'2005-08-23 08:54:26',3291,291,'2005-08-29 02:56:26',1,'2006-02-15 21:30:53'), +(15664,'2005-08-23 08:57:11',2029,351,'2005-08-31 14:19:11',2,'2006-02-15 21:30:53'), +(15665,'2005-08-23 08:59:12',3471,487,'2005-08-24 12:50:12',2,'2006-02-15 21:30:53'), +(15666,'2005-08-23 09:01:10',3406,586,'2005-08-31 12:32:10',2,'2006-02-15 21:30:53'), +(15667,'2005-08-23 09:02:03',1302,73,'2005-08-24 05:47:03',1,'2006-02-15 21:30:53'), +(15668,'2005-08-23 09:02:04',1963,38,'2005-08-29 03:17:04',2,'2006-02-15 21:30:53'), +(15669,'2005-08-23 09:06:17',1542,334,'2005-08-30 08:10:17',2,'2006-02-15 21:30:53'), +(15670,'2005-08-23 09:07:11',2834,211,'2005-08-31 04:32:11',2,'2006-02-15 21:30:53'), +(15671,'2005-08-23 09:08:16',3716,112,'2005-08-29 14:01:16',1,'2006-02-15 21:30:53'), +(15672,'2005-08-23 09:09:18',701,210,'2005-08-27 06:19:18',1,'2006-02-15 21:30:53'), +(15673,'2005-08-23 09:12:50',3096,321,'2005-08-29 12:45:50',2,'2006-02-15 21:30:53'), +(15674,'2005-08-23 09:16:39',4482,90,'2005-09-01 11:57:39',1,'2006-02-15 21:30:53'), +(15675,'2005-08-23 09:18:52',4153,293,'2005-08-30 14:59:52',2,'2006-02-15 21:30:53'), +(15676,'2005-08-23 09:23:08',3874,353,'2005-08-30 06:19:08',2,'2006-02-15 21:30:53'), +(15677,'2005-08-23 09:23:36',2050,109,'2005-08-27 05:01:36',1,'2006-02-15 21:30:53'), +(15678,'2005-08-23 09:23:45',1345,413,'2005-08-27 11:38:45',2,'2006-02-15 21:30:53'), +(15679,'2005-08-23 09:27:29',2945,103,'2005-08-28 09:14:29',1,'2006-02-15 21:30:53'), +(15680,'2005-08-23 09:33:22',1370,169,'2005-08-31 13:29:22',2,'2006-02-15 21:30:53'), +(15681,'2005-08-23 09:35:34',2813,61,'2005-08-27 08:33:34',1,'2006-02-15 21:30:53'), +(15682,'2005-08-23 09:37:34',3293,31,'2005-08-31 06:01:34',1,'2006-02-15 21:30:53'), +(15683,'2005-08-23 09:38:17',3787,168,'2005-08-30 12:31:17',2,'2006-02-15 21:30:53'), +(15684,'2005-08-23 09:40:04',3976,586,'2005-08-28 15:28:04',1,'2006-02-15 21:30:53'), +(15685,'2005-08-23 09:41:28',370,491,'2005-08-30 10:11:28',1,'2006-02-15 21:30:53'), +(15686,'2005-08-23 09:42:21',2041,206,'2005-08-29 12:22:21',1,'2006-02-15 21:30:53'), +(15687,'2005-08-23 09:46:33',276,112,'2005-09-01 06:07:33',1,'2006-02-15 21:30:53'), +(15688,'2005-08-23 09:48:45',2851,105,'2005-08-30 10:28:45',2,'2006-02-15 21:30:53'), +(15689,'2005-08-23 09:52:55',248,259,'2005-08-29 11:15:55',1,'2006-02-15 21:30:53'), +(15690,'2005-08-23 09:53:30',2102,554,'2005-08-29 10:27:30',1,'2006-02-15 21:30:53'), +(15691,'2005-08-23 09:53:54',784,200,'2005-08-27 10:14:54',1,'2006-02-15 21:30:53'), +(15692,'2005-08-23 10:00:02',1852,503,'2005-08-24 05:25:02',1,'2006-02-15 21:30:53'), +(15693,'2005-08-23 10:00:24',748,94,'2005-08-25 08:23:24',1,'2006-02-15 21:30:53'), +(15694,'2005-08-23 10:02:46',3017,506,'2005-08-31 05:46:46',2,'2006-02-15 21:30:53'), +(15695,'2006-02-14 15:16:03',2954,300,NULL,1,'2006-02-15 21:30:53'), +(15696,'2005-08-23 10:04:17',2836,93,'2005-08-25 08:47:17',2,'2006-02-15 21:30:53'), +(15697,'2005-08-23 10:04:36',1987,380,'2005-08-24 05:00:36',2,'2006-02-15 21:30:53'), +(15698,'2005-08-23 10:11:40',4465,395,'2005-08-28 08:50:40',2,'2006-02-15 21:30:53'), +(15699,'2005-08-23 10:20:35',4155,501,'2005-08-30 13:56:35',1,'2006-02-15 21:30:53'), +(15700,'2005-08-23 10:21:21',2935,552,'2005-08-24 15:37:21',1,'2006-02-15 21:30:53'), +(15701,'2005-08-23 10:22:21',2942,516,'2005-08-24 10:52:21',1,'2006-02-15 21:30:53'), +(15702,'2005-08-23 10:23:28',1602,56,'2005-08-29 11:08:28',2,'2006-02-15 21:30:53'), +(15703,'2005-08-23 10:23:48',2883,322,'2005-09-01 06:54:48',2,'2006-02-15 21:30:53'), +(15704,'2005-08-23 10:25:45',738,71,'2005-08-29 16:06:45',2,'2006-02-15 21:30:53'), +(15705,'2005-08-23 10:32:52',936,356,'2005-08-29 13:18:52',2,'2006-02-15 21:30:53'), +(15706,'2005-08-23 10:32:52',4486,220,'2005-08-24 07:03:52',2,'2006-02-15 21:30:53'), +(15707,'2005-08-23 10:35:45',3646,91,'2005-08-27 10:57:45',1,'2006-02-15 21:30:53'), +(15708,'2005-08-23 10:35:51',1974,46,'2005-08-27 16:02:51',1,'2006-02-15 21:30:53'), +(15709,'2005-08-23 10:36:00',346,206,'2005-08-28 06:18:00',2,'2006-02-15 21:30:53'), +(15710,'2006-02-14 15:16:03',1020,421,NULL,1,'2006-02-15 21:30:53'), +(15711,'2005-08-23 10:43:00',789,297,'2005-08-29 16:29:00',1,'2006-02-15 21:30:53'), +(15712,'2005-08-23 10:43:56',1882,351,'2005-08-29 15:35:56',2,'2006-02-15 21:30:53'), +(15713,'2005-08-23 10:56:15',337,432,'2005-08-29 09:14:15',2,'2006-02-15 21:30:53'), +(15714,'2006-02-14 15:16:03',2083,56,NULL,1,'2006-02-15 21:30:53'), +(15715,'2005-08-23 10:57:40',3808,86,'2005-08-28 12:40:40',1,'2006-02-15 21:30:53'), +(15716,'2005-08-23 11:02:00',2812,408,'2005-08-28 14:46:00',1,'2006-02-15 21:30:53'), +(15717,'2006-02-14 15:16:03',902,208,NULL,2,'2006-02-15 21:30:53'), +(15718,'2005-08-23 11:05:17',2180,276,'2005-08-28 12:50:17',1,'2006-02-15 21:30:53'), +(15719,'2005-08-23 11:08:46',3990,599,'2005-08-25 07:25:46',1,'2006-02-15 21:30:53'), +(15720,'2005-08-23 11:15:20',2490,456,'2005-08-31 09:49:20',1,'2006-02-15 21:30:53'), +(15721,'2005-08-23 11:16:16',685,154,'2005-08-28 10:21:16',1,'2006-02-15 21:30:53'), +(15722,'2005-08-23 11:16:29',2809,26,'2005-09-01 13:24:29',2,'2006-02-15 21:30:53'), +(15723,'2005-08-23 11:17:26',3915,504,'2005-08-31 13:58:26',2,'2006-02-15 21:30:53'), +(15724,'2005-08-23 11:22:09',1025,478,'2005-08-28 12:56:09',2,'2006-02-15 21:30:53'), +(15725,'2005-08-23 11:25:00',378,599,'2005-08-26 11:46:00',1,'2006-02-15 21:30:53'), +(15726,'2005-08-23 11:28:26',906,503,'2005-08-28 11:23:26',2,'2006-02-15 21:30:53'), +(15727,'2005-08-23 11:28:49',2184,416,'2005-08-24 06:24:49',2,'2006-02-15 21:30:53'), +(15728,'2005-08-23 11:30:32',2567,323,'2005-08-28 09:52:32',2,'2006-02-15 21:30:53'), +(15729,'2006-02-14 15:16:03',2699,193,NULL,2,'2006-02-15 21:30:53'), +(15730,'2005-08-23 11:32:35',947,147,'2005-08-30 13:46:35',2,'2006-02-15 21:30:53'), +(15731,'2005-08-23 11:33:25',3403,118,'2005-08-24 07:19:25',2,'2006-02-15 21:30:53'), +(15732,'2005-08-23 11:35:12',3247,412,'2005-08-26 12:50:12',2,'2006-02-15 21:30:53'), +(15733,'2005-08-23 11:37:32',4185,512,'2005-08-28 16:27:32',1,'2006-02-15 21:30:53'), +(15734,'2005-08-23 11:40:08',3952,302,'2005-08-27 08:16:08',1,'2006-02-15 21:30:53'), +(15735,'2006-02-14 15:16:03',3167,295,NULL,1,'2006-02-15 21:30:53'), +(15736,'2005-08-23 11:40:30',4272,127,'2005-08-30 12:40:30',1,'2006-02-15 21:30:53'), +(15737,'2005-08-23 11:52:18',996,83,'2005-08-28 15:28:18',1,'2006-02-15 21:30:53'), +(15738,'2005-08-23 11:55:50',556,38,'2005-08-30 15:07:50',1,'2006-02-15 21:30:53'), +(15739,'2005-08-23 11:56:22',266,74,'2005-08-29 16:10:22',2,'2006-02-15 21:30:53'), +(15740,'2005-08-23 12:07:51',100,229,'2005-08-24 13:23:51',2,'2006-02-15 21:30:53'), +(15741,'2005-08-23 12:10:54',4243,126,'2005-08-24 10:08:54',2,'2006-02-15 21:30:53'), +(15742,'2005-08-23 12:11:37',1339,200,'2005-08-31 07:28:37',2,'2006-02-15 21:30:53'), +(15743,'2005-08-23 12:12:05',1625,139,'2005-08-26 11:35:05',1,'2006-02-15 21:30:53'), +(15744,'2005-08-23 12:15:51',2364,59,'2005-08-31 17:19:51',1,'2006-02-15 21:30:53'), +(15745,'2006-02-14 15:16:03',2737,43,NULL,1,'2006-02-15 21:30:53'), +(15746,'2005-08-23 12:26:19',2241,246,'2005-08-26 09:51:19',2,'2006-02-15 21:30:53'), +(15747,'2005-08-23 12:29:24',1517,381,'2005-08-31 08:27:24',2,'2006-02-15 21:30:53'), +(15748,'2005-08-23 12:33:00',2757,380,'2005-08-25 15:15:00',2,'2006-02-15 21:30:53'), +(15749,'2005-08-23 12:33:41',4224,575,'2005-08-24 10:52:41',1,'2006-02-15 21:30:53'), +(15750,'2005-08-23 12:36:05',4474,496,'2005-08-24 17:40:05',2,'2006-02-15 21:30:53'), +(15751,'2005-08-23 12:41:07',697,199,'2005-08-29 07:03:07',2,'2006-02-15 21:30:53'), +(15752,'2005-08-23 12:41:38',2112,17,'2005-09-01 14:06:38',1,'2006-02-15 21:30:53'), +(15753,'2005-08-23 12:43:30',3451,144,'2005-09-01 09:07:30',2,'2006-02-15 21:30:53'), +(15754,'2005-08-23 12:43:42',2306,356,'2005-08-27 17:45:42',2,'2006-02-15 21:30:53'), +(15755,'2005-08-23 12:46:38',511,423,'2005-08-25 12:59:38',1,'2006-02-15 21:30:53'), +(15756,'2005-08-23 12:47:05',878,112,'2005-08-28 08:34:05',2,'2006-02-15 21:30:53'), +(15757,'2005-08-23 12:47:16',1308,356,'2005-08-29 17:19:16',1,'2006-02-15 21:30:53'), +(15758,'2005-08-23 12:47:26',152,46,'2005-08-29 11:05:26',2,'2006-02-15 21:30:53'), +(15759,'2005-08-23 12:47:37',1341,361,'2005-09-01 11:28:37',2,'2006-02-15 21:30:53'), +(15760,'2005-08-23 12:50:00',3050,273,'2005-08-29 15:41:00',2,'2006-02-15 21:30:53'), +(15761,'2005-08-23 12:55:51',4362,416,'2005-08-26 16:51:51',1,'2006-02-15 21:30:53'), +(15762,'2005-08-23 13:01:43',887,351,'2005-08-26 16:35:43',1,'2006-02-15 21:30:53'), +(15763,'2005-08-23 13:02:59',124,158,'2005-08-24 17:45:59',2,'2006-02-15 21:30:53'), +(15764,'2005-08-23 13:05:10',2937,8,'2005-08-25 16:15:10',1,'2006-02-15 21:30:53'), +(15765,'2005-08-23 13:06:19',1250,408,'2005-08-31 12:18:19',1,'2006-02-15 21:30:53'), +(15766,'2005-08-23 13:10:16',1996,436,'2005-08-30 09:27:16',1,'2006-02-15 21:30:53'), +(15767,'2005-08-23 13:14:15',3492,241,'2005-08-27 14:43:15',2,'2006-02-15 21:30:53'), +(15768,'2005-08-23 13:14:47',662,267,'2005-08-29 14:17:47',2,'2006-02-15 21:30:53'), +(15769,'2005-08-23 13:16:15',2392,276,'2005-08-28 18:31:15',1,'2006-02-15 21:30:53'), +(15770,'2005-08-23 13:18:16',1424,113,'2005-08-29 11:31:16',1,'2006-02-15 21:30:53'), +(15771,'2005-08-23 13:18:46',3667,262,'2005-08-26 07:29:46',1,'2006-02-15 21:30:53'), +(15772,'2005-08-23 13:22:56',4343,202,'2005-08-26 10:35:56',2,'2006-02-15 21:30:53'), +(15773,'2005-08-23 13:24:57',1626,189,'2005-08-31 14:16:57',2,'2006-02-15 21:30:53'), +(15774,'2005-08-23 13:25:08',1273,254,'2005-08-28 10:08:08',2,'2006-02-15 21:30:53'), +(15775,'2005-08-23 13:25:44',2146,173,'2005-09-01 16:56:44',1,'2006-02-15 21:30:53'), +(15776,'2005-08-23 13:26:01',43,514,'2005-08-29 18:17:01',1,'2006-02-15 21:30:53'), +(15777,'2005-08-23 13:29:08',4241,130,'2005-08-27 18:50:08',2,'2006-02-15 21:30:53'), +(15778,'2006-02-14 15:16:03',1269,234,NULL,1,'2006-02-15 21:30:53'), +(15779,'2005-08-23 13:33:46',1560,419,'2005-08-28 08:40:46',2,'2006-02-15 21:30:53'), +(15780,'2006-02-14 15:16:03',2911,120,NULL,2,'2006-02-15 21:30:53'), +(15781,'2005-08-23 13:41:05',4449,412,'2005-08-31 13:11:05',1,'2006-02-15 21:30:53'), +(15782,'2005-08-23 13:43:26',3282,245,'2005-08-30 14:03:26',1,'2006-02-15 21:30:53'), +(15783,'2005-08-23 13:45:44',397,247,'2005-08-26 09:18:44',2,'2006-02-15 21:30:53'), +(15784,'2005-08-23 13:46:00',126,425,'2005-08-30 11:49:00',2,'2006-02-15 21:30:53'), +(15785,'2005-08-23 13:46:27',1758,543,'2005-08-27 10:16:27',2,'2006-02-15 21:30:53'), +(15786,'2005-08-23 13:48:34',3132,371,'2005-08-27 15:59:34',1,'2006-02-15 21:30:53'), +(15787,'2005-08-23 13:51:57',2932,123,'2005-08-27 17:06:57',1,'2006-02-15 21:30:53'), +(15788,'2005-08-23 13:54:39',13,269,'2005-08-26 10:17:39',1,'2006-02-15 21:30:53'), +(15789,'2005-08-23 13:56:40',1213,350,'2005-08-27 15:25:40',1,'2006-02-15 21:30:53'), +(15790,'2005-08-23 14:01:07',2887,233,'2005-08-30 10:32:07',2,'2006-02-15 21:30:53'), +(15791,'2005-08-23 14:02:13',4147,445,'2005-09-01 09:03:13',2,'2006-02-15 21:30:53'), +(15792,'2005-08-23 14:05:37',2175,581,'2005-08-28 10:54:37',1,'2006-02-15 21:30:53'), +(15793,'2005-08-23 14:06:19',2863,22,'2005-08-24 19:59:19',2,'2006-02-15 21:30:53'), +(15794,'2006-02-14 15:16:03',3917,579,NULL,2,'2006-02-15 21:30:53'), +(15795,'2005-08-23 14:07:56',4371,417,'2005-08-25 12:10:56',2,'2006-02-15 21:30:53'), +(15796,'2005-08-23 14:12:22',1425,158,'2005-08-28 17:03:22',2,'2006-02-15 21:30:53'), +(15797,'2005-08-23 14:13:47',497,503,'2005-08-25 09:16:47',2,'2006-02-15 21:30:53'), +(15798,'2005-08-23 14:23:03',3803,203,'2005-08-30 17:39:03',2,'2006-02-15 21:30:53'), +(15799,'2005-08-23 14:23:23',2519,215,'2005-08-24 17:15:23',2,'2006-02-15 21:30:53'), +(15800,'2005-08-23 14:23:44',963,43,'2005-08-29 17:04:44',2,'2006-02-15 21:30:53'), +(15801,'2005-08-23 14:26:04',1590,165,'2005-08-28 15:04:04',1,'2006-02-15 21:30:53'), +(15802,'2005-08-23 14:26:51',41,158,'2005-08-29 16:28:51',2,'2006-02-15 21:30:53'), +(15803,'2005-08-23 14:27:07',500,105,'2005-08-28 12:01:07',2,'2006-02-15 21:30:53'), +(15804,'2005-08-23 14:29:16',3338,585,'2005-08-26 08:41:16',1,'2006-02-15 21:30:53'), +(15805,'2005-08-23 14:31:19',4511,8,'2005-08-25 19:01:19',2,'2006-02-15 21:30:53'), +(15806,'2005-08-23 14:31:50',2683,166,'2005-08-27 16:08:50',2,'2006-02-15 21:30:53'), +(15807,'2005-08-23 14:35:10',2705,350,'2005-08-29 19:06:10',2,'2006-02-15 21:30:53'), +(15808,'2005-08-23 14:38:37',1663,446,'2005-08-27 14:45:37',2,'2006-02-15 21:30:53'), +(15809,'2005-08-23 14:42:07',1885,431,'2005-08-27 15:00:07',2,'2006-02-15 21:30:53'), +(15810,'2005-08-23 14:43:15',2196,171,'2005-08-25 17:41:15',1,'2006-02-15 21:30:53'), +(15811,'2005-08-23 14:43:46',3487,300,'2005-08-27 16:43:46',1,'2006-02-15 21:30:53'), +(15812,'2005-08-23 14:47:26',4457,45,'2005-09-01 10:51:26',2,'2006-02-15 21:30:53'), +(15813,'2006-02-14 15:16:03',981,9,NULL,1,'2006-02-15 21:30:53'), +(15814,'2005-08-23 14:52:50',4361,459,'2005-08-27 16:12:50',2,'2006-02-15 21:30:53'), +(15815,'2005-08-23 14:55:47',316,444,'2005-08-24 12:37:47',1,'2006-02-15 21:30:53'), +(15816,'2005-08-23 14:58:06',3628,31,'2005-08-28 13:30:06',1,'2006-02-15 21:30:53'), +(15817,'2005-08-23 14:59:51',598,348,'2005-08-25 15:27:51',1,'2006-02-15 21:30:53'), +(15818,'2005-08-23 14:59:58',2620,439,'2005-08-27 13:13:58',2,'2006-02-15 21:30:53'), +(15819,'2005-08-23 15:01:54',3639,274,'2005-08-31 20:01:54',2,'2006-02-15 21:30:53'), +(15820,'2005-08-23 15:03:13',4553,308,'2005-08-25 20:12:13',1,'2006-02-15 21:30:53'), +(15821,'2005-08-23 15:03:58',1714,233,'2005-08-24 17:46:58',2,'2006-02-15 21:30:53'), +(15822,'2005-08-23 15:05:59',3602,492,'2005-08-24 11:13:59',1,'2006-02-15 21:30:53'), +(15823,'2005-08-23 15:08:00',3047,81,'2005-08-24 17:52:00',2,'2006-02-15 21:30:53'), +(15824,'2005-08-23 15:09:17',2933,371,'2005-08-28 15:14:17',2,'2006-02-15 21:30:53'), +(15825,'2005-08-23 15:10:42',149,346,'2005-08-29 09:28:42',2,'2006-02-15 21:30:53'), +(15826,'2005-08-23 15:15:02',215,311,'2005-08-31 20:39:02',2,'2006-02-15 21:30:53'), +(15827,'2005-08-23 15:15:19',1732,346,'2005-08-24 10:50:19',2,'2006-02-15 21:30:53'), +(15828,'2005-08-23 15:16:32',428,327,'2005-08-29 12:20:32',1,'2006-02-15 21:30:53'), +(15829,'2005-08-23 15:17:14',4387,30,'2005-08-27 13:04:14',1,'2006-02-15 21:30:53'), +(15830,'2005-08-23 15:19:15',309,467,'2005-08-25 18:42:15',2,'2006-02-15 21:30:53'), +(15831,'2005-08-23 15:21:19',3123,401,'2005-08-24 15:47:19',2,'2006-02-15 21:30:53'), +(15832,'2005-08-23 15:21:35',1468,537,'2005-08-30 15:01:35',2,'2006-02-15 21:30:53'), +(15833,'2005-08-23 15:22:15',801,349,'2005-08-31 14:54:15',1,'2006-02-15 21:30:53'), +(15834,'2005-08-23 15:23:50',217,165,'2005-09-01 19:31:50',1,'2006-02-15 21:30:53'), +(15835,'2005-08-23 15:25:27',1362,128,'2005-09-01 16:14:27',2,'2006-02-15 21:30:53'), +(15836,'2005-08-23 15:29:17',260,468,'2005-08-26 11:44:17',2,'2006-02-15 21:30:53'), +(15837,'2005-08-23 15:29:41',4388,283,'2005-08-27 18:17:41',1,'2006-02-15 21:30:53'), +(15838,'2005-08-23 15:30:48',2194,579,'2005-08-31 11:20:48',2,'2006-02-15 21:30:53'), +(15839,'2005-08-23 15:34:46',3726,294,'2005-08-30 21:00:46',2,'2006-02-15 21:30:53'), +(15840,'2005-08-23 15:34:49',1901,316,'2005-08-24 16:54:49',1,'2006-02-15 21:30:53'), +(15841,'2005-08-23 15:35:59',2865,571,'2005-08-30 19:30:59',2,'2006-02-15 21:30:53'), +(15842,'2005-08-23 15:36:05',1850,146,'2005-08-30 14:05:05',2,'2006-02-15 21:30:53'), +(15843,'2005-08-23 15:37:31',611,215,'2005-08-28 18:41:31',2,'2006-02-15 21:30:53'), +(15844,'2005-08-23 15:38:12',2027,119,'2005-08-26 15:18:12',1,'2006-02-15 21:30:53'), +(15845,'2005-08-23 15:38:34',4312,89,'2005-08-25 10:06:34',1,'2006-02-15 21:30:53'), +(15846,'2005-08-23 15:39:18',3635,47,'2005-08-27 14:28:18',2,'2006-02-15 21:30:53'), +(15847,'2005-08-23 15:39:38',2287,163,'2005-08-24 11:46:38',1,'2006-02-15 21:30:53'), +(15848,'2005-08-23 15:41:12',2141,336,'2005-08-26 10:29:12',2,'2006-02-15 21:30:53'), +(15849,'2005-08-23 15:41:20',4077,482,'2005-08-27 15:47:20',2,'2006-02-15 21:30:53'), +(15850,'2005-08-23 15:45:42',586,563,'2005-08-27 19:24:42',1,'2006-02-15 21:30:53'), +(15851,'2005-08-23 15:46:33',2286,469,'2005-08-29 15:52:33',1,'2006-02-15 21:30:53'), +(15852,'2005-08-23 15:47:02',1506,140,'2005-08-25 19:37:02',1,'2006-02-15 21:30:53'), +(15853,'2005-08-23 15:54:20',225,500,'2005-08-24 18:53:20',2,'2006-02-15 21:30:53'), +(15854,'2005-08-23 15:58:05',1648,464,'2005-08-26 19:23:05',1,'2006-02-15 21:30:53'), +(15855,'2005-08-23 15:59:01',2528,192,'2005-08-29 20:26:01',1,'2006-02-15 21:30:53'), +(15856,'2005-08-23 15:59:12',3379,395,'2005-08-25 15:36:12',1,'2006-02-15 21:30:53'), +(15857,'2005-08-23 15:59:51',2733,575,'2005-08-26 12:01:51',2,'2006-02-15 21:30:53'), +(15858,'2005-08-23 16:07:15',4515,81,'2005-08-25 19:36:15',2,'2006-02-15 21:30:53'), +(15859,'2005-08-23 16:08:15',4269,465,'2005-08-28 11:08:15',1,'2006-02-15 21:30:53'), +(15860,'2005-08-23 16:08:40',2583,41,'2005-08-28 15:35:40',1,'2006-02-15 21:30:53'), +(15861,'2005-08-23 16:15:45',1859,256,'2005-09-01 11:37:45',2,'2006-02-15 21:30:53'), +(15862,'2006-02-14 15:16:03',925,215,NULL,1,'2006-02-15 21:30:53'), +(15863,'2005-08-23 16:17:09',2783,328,'2005-08-28 16:10:09',2,'2006-02-15 21:30:53'), +(15864,'2005-08-23 16:18:12',3014,256,'2005-08-29 17:10:12',2,'2006-02-15 21:30:53'), +(15865,'2005-08-23 16:18:25',2031,482,'2005-08-26 10:57:25',2,'2006-02-15 21:30:53'), +(15866,'2005-08-23 16:19:02',3828,296,'2005-08-31 12:29:02',2,'2006-02-15 21:30:53'), +(15867,'2006-02-14 15:16:03',837,505,NULL,2,'2006-02-15 21:30:53'), +(15868,'2005-08-23 16:19:14',2186,306,'2005-08-29 16:14:14',2,'2006-02-15 21:30:53'), +(15869,'2005-08-23 16:22:20',1344,357,'2005-08-27 11:52:20',1,'2006-02-15 21:30:53'), +(15870,'2005-08-23 16:23:08',590,251,'2005-08-28 20:30:08',2,'2006-02-15 21:30:53'), +(15871,'2005-08-23 16:24:24',425,57,'2005-09-01 13:48:24',2,'2006-02-15 21:30:53'), +(15872,'2005-08-23 16:27:24',3391,212,'2005-08-31 11:57:24',1,'2006-02-15 21:30:53'), +(15873,'2005-08-23 16:27:59',4548,577,'2005-08-26 11:11:59',2,'2006-02-15 21:30:53'), +(15874,'2005-08-23 16:30:55',621,132,'2005-08-28 20:57:55',1,'2006-02-15 21:30:53'), +(15875,'2006-02-14 15:16:03',3611,41,NULL,1,'2006-02-15 21:30:53'), +(15876,'2005-08-23 16:32:10',1735,87,'2005-08-24 18:16:10',1,'2006-02-15 21:30:53'), +(15877,'2005-08-23 16:33:33',2307,559,'2005-08-26 10:36:33',2,'2006-02-15 21:30:53'), +(15878,'2005-08-23 16:34:31',1592,493,'2005-08-27 21:51:31',2,'2006-02-15 21:30:53'), +(15879,'2005-08-23 16:42:53',235,482,'2005-08-29 16:21:53',2,'2006-02-15 21:30:53'), +(15880,'2005-08-23 16:43:54',2538,528,'2005-08-31 14:40:54',2,'2006-02-15 21:30:53'), +(15881,'2005-08-23 16:44:25',617,383,'2005-08-29 13:58:25',1,'2006-02-15 21:30:53'), +(15882,'2005-08-23 16:44:31',2028,312,'2005-09-01 15:44:31',2,'2006-02-15 21:30:53'), +(15883,'2005-08-23 16:44:56',2792,550,'2005-08-24 22:42:56',1,'2006-02-15 21:30:53'), +(15884,'2005-08-23 16:45:28',2255,81,'2005-08-27 20:18:28',1,'2006-02-15 21:30:53'), +(15885,'2005-08-23 16:50:43',2116,565,'2005-08-29 20:19:43',1,'2006-02-15 21:30:53'), +(15886,'2005-08-23 16:50:53',3038,91,'2005-08-26 15:38:53',2,'2006-02-15 21:30:53'), +(15887,'2005-08-23 16:54:09',4263,201,'2005-08-26 13:20:09',2,'2006-02-15 21:30:53'), +(15888,'2005-08-23 16:56:14',2955,321,'2005-08-31 14:32:14',1,'2006-02-15 21:30:53'), +(15889,'2005-08-23 16:57:43',787,137,'2005-08-27 22:14:43',1,'2006-02-15 21:30:53'), +(15890,'2005-08-23 16:58:12',3625,87,'2005-08-24 12:23:12',1,'2006-02-15 21:30:53'), +(15891,'2005-08-23 17:00:12',2168,52,'2005-08-31 21:12:12',1,'2006-02-15 21:30:53'), +(15892,'2005-08-23 17:01:00',1365,174,'2005-08-28 12:50:00',1,'2006-02-15 21:30:53'), +(15893,'2005-08-23 17:02:00',2571,438,'2005-08-30 12:45:00',2,'2006-02-15 21:30:53'), +(15894,'2006-02-14 15:16:03',4416,168,NULL,1,'2006-02-15 21:30:53'), +(15895,'2005-08-23 17:09:31',2275,342,'2005-08-30 17:15:31',1,'2006-02-15 21:30:53'), +(15896,'2005-08-23 17:09:56',528,585,'2005-08-31 14:51:56',2,'2006-02-15 21:30:53'), +(15897,'2005-08-23 17:12:31',1652,15,'2005-08-30 17:22:31',1,'2006-02-15 21:30:53'), +(15898,'2005-08-23 17:13:01',3502,88,'2005-08-29 11:22:01',2,'2006-02-15 21:30:53'), +(15899,'2005-08-23 17:16:28',3851,596,'2005-08-29 21:46:28',2,'2006-02-15 21:30:53'), +(15900,'2005-08-23 17:16:30',1112,562,'2005-08-27 18:02:30',1,'2006-02-15 21:30:53'), +(15901,'2005-08-23 17:19:17',2761,226,'2005-08-30 14:24:17',2,'2006-02-15 21:30:53'), +(15902,'2005-08-23 17:28:03',4500,172,'2005-08-30 18:36:03',1,'2006-02-15 21:30:53'), +(15903,'2005-08-23 17:30:40',1289,267,'2005-08-29 14:12:40',1,'2006-02-15 21:30:53'), +(15904,'2005-08-23 17:32:19',179,37,'2005-08-24 21:05:19',2,'2006-02-15 21:30:53'), +(15905,'2005-08-23 17:33:04',3631,59,'2005-08-26 17:38:04',2,'2006-02-15 21:30:53'), +(15906,'2005-08-23 17:36:00',3230,445,'2005-08-28 15:32:00',2,'2006-02-15 21:30:53'), +(15907,'2005-08-23 17:39:35',2898,2,'2005-08-25 23:23:35',1,'2006-02-15 21:30:53'), +(15908,'2005-08-23 17:42:00',2453,135,'2005-08-31 22:32:00',1,'2006-02-15 21:30:53'), +(15909,'2005-08-23 17:42:42',404,452,'2005-08-26 20:25:42',1,'2006-02-15 21:30:53'), +(15910,'2005-08-23 17:43:16',254,456,'2005-08-24 21:55:16',2,'2006-02-15 21:30:53'), +(15911,'2005-08-23 17:44:53',3006,582,'2005-09-01 19:14:53',1,'2006-02-15 21:30:53'), +(15912,'2005-08-23 17:47:40',3079,229,'2005-08-31 14:43:40',2,'2006-02-15 21:30:53'), +(15913,'2005-08-23 17:48:30',3894,93,'2005-08-31 21:17:30',2,'2006-02-15 21:30:53'), +(15914,'2005-08-23 17:49:26',747,557,'2005-08-24 12:20:26',1,'2006-02-15 21:30:53'), +(15915,'2005-08-23 17:52:01',3566,167,'2005-08-24 20:40:01',2,'2006-02-15 21:30:53'), +(15916,'2005-08-23 17:56:01',4580,327,'2005-08-31 21:49:01',2,'2006-02-15 21:30:53'), +(15917,'2005-08-23 17:57:28',2093,589,'2005-08-29 20:03:28',1,'2006-02-15 21:30:53'), +(15918,'2005-08-23 17:57:35',1456,262,'2005-08-28 14:16:35',2,'2006-02-15 21:30:53'), +(15919,'2005-08-23 18:01:31',1746,497,'2005-08-24 16:27:31',1,'2006-02-15 21:30:53'), +(15920,'2005-08-23 18:05:10',243,212,'2005-08-26 18:09:10',1,'2006-02-15 21:30:53'), +(15921,'2005-08-23 18:06:54',223,522,'2005-08-30 20:19:54',2,'2006-02-15 21:30:53'), +(15922,'2005-08-23 18:07:31',1702,263,'2005-09-01 22:27:31',1,'2006-02-15 21:30:53'), +(15923,'2005-08-23 18:08:19',1693,276,'2005-08-26 18:06:19',2,'2006-02-15 21:30:53'), +(15924,'2005-08-23 18:08:59',1114,541,'2005-08-27 12:20:59',2,'2006-02-15 21:30:53'), +(15925,'2005-08-23 18:15:06',3394,440,'2005-08-26 18:09:06',2,'2006-02-15 21:30:53'), +(15926,'2005-08-23 18:20:56',2231,151,'2005-08-24 18:20:56',2,'2006-02-15 21:30:53'), +(15927,'2005-08-23 18:23:11',2450,401,'2005-08-24 15:09:11',1,'2006-02-15 21:30:53'), +(15928,'2005-08-23 18:23:24',2086,75,'2005-09-01 23:43:24',2,'2006-02-15 21:30:53'), +(15929,'2005-08-23 18:23:30',1832,477,'2005-08-27 17:04:30',1,'2006-02-15 21:30:53'), +(15930,'2005-08-23 18:26:51',180,379,'2005-08-31 16:12:51',1,'2006-02-15 21:30:53'), +(15931,'2005-08-23 18:28:09',1128,237,'2005-08-28 23:08:09',1,'2006-02-15 21:30:53'), +(15932,'2005-08-23 18:31:40',4554,405,'2005-08-24 16:30:40',2,'2006-02-15 21:30:53'), +(15933,'2005-08-23 18:36:44',3493,176,'2005-08-26 12:41:44',2,'2006-02-15 21:30:53'), +(15934,'2005-08-23 18:40:41',994,216,'2005-08-25 00:18:41',2,'2006-02-15 21:30:53'), +(15935,'2005-08-23 18:41:11',907,361,'2005-08-25 20:59:11',1,'2006-02-15 21:30:53'), +(15936,'2005-08-23 18:43:11',1293,411,'2005-08-26 00:19:11',1,'2006-02-15 21:30:53'), +(15937,'2005-08-23 18:43:22',2882,194,'2005-08-24 22:53:22',1,'2006-02-15 21:30:53'), +(15938,'2005-08-23 18:43:31',2884,341,'2005-08-31 00:26:31',2,'2006-02-15 21:30:53'), +(15939,'2005-08-23 18:44:21',3209,382,'2005-09-01 17:25:21',2,'2006-02-15 21:30:53'), +(15940,'2005-08-23 18:45:06',1606,86,'2005-08-30 13:00:06',2,'2006-02-15 21:30:53'), +(15941,'2005-08-23 18:46:44',4304,424,'2005-08-31 17:31:44',1,'2006-02-15 21:30:53'), +(15942,'2005-08-23 18:48:40',1096,210,'2005-09-01 18:39:40',2,'2006-02-15 21:30:53'), +(15943,'2005-08-23 18:49:32',706,462,'2005-08-27 19:20:32',1,'2006-02-15 21:30:53'), +(15944,'2005-08-23 18:50:54',4559,348,'2005-08-25 18:04:54',2,'2006-02-15 21:30:53'), +(15945,'2005-08-23 18:51:41',3633,43,'2005-08-28 18:42:41',1,'2006-02-15 21:30:53'), +(15946,'2005-08-23 18:54:07',4549,561,'2005-08-28 21:21:07',1,'2006-02-15 21:30:53'), +(15947,'2005-08-23 18:54:32',1877,580,'2005-08-24 22:39:32',2,'2006-02-15 21:30:53'), +(15948,'2005-08-23 18:59:33',432,520,'2005-08-31 13:02:33',2,'2006-02-15 21:30:53'), +(15949,'2005-08-23 19:06:04',1199,386,'2005-08-26 18:39:04',2,'2006-02-15 21:30:53'), +(15950,'2005-08-23 19:09:39',1374,280,'2005-08-31 17:03:39',2,'2006-02-15 21:30:53'), +(15951,'2005-08-23 19:10:32',3018,446,'2005-08-29 14:17:32',1,'2006-02-15 21:30:53'), +(15952,'2005-08-23 19:11:29',1314,224,'2005-08-28 14:41:29',1,'2006-02-15 21:30:53'), +(15953,'2005-08-23 19:13:46',3727,540,'2005-08-28 23:05:46',1,'2006-02-15 21:30:53'), +(15954,'2005-08-23 19:14:07',576,460,'2005-08-24 20:21:07',1,'2006-02-15 21:30:53'), +(15955,'2005-08-23 19:19:06',2247,349,'2005-08-31 23:34:06',1,'2006-02-15 21:30:53'), +(15956,'2005-08-23 19:19:21',2763,354,'2005-08-25 22:15:21',2,'2006-02-15 21:30:53'), +(15957,'2005-08-23 19:21:22',74,418,'2005-08-31 16:42:22',1,'2006-02-15 21:30:53'), +(15958,'2005-08-23 19:22:36',4164,492,'2005-08-30 01:03:36',1,'2006-02-15 21:30:53'), +(15959,'2005-08-23 19:27:04',547,415,'2005-08-24 15:24:04',1,'2006-02-15 21:30:53'), +(15960,'2005-08-23 19:35:42',1497,431,'2005-08-26 17:36:42',2,'2006-02-15 21:30:53'), +(15961,'2005-08-23 19:35:42',4006,200,'2005-08-30 22:52:42',1,'2006-02-15 21:30:53'), +(15962,'2005-08-23 19:42:04',3491,160,'2005-08-25 23:53:04',1,'2006-02-15 21:30:53'), +(15963,'2005-08-23 19:42:46',3819,134,'2005-08-25 22:12:46',1,'2006-02-15 21:30:53'), +(15964,'2005-08-23 19:45:25',251,141,'2005-08-26 22:43:25',2,'2006-02-15 21:30:53'), +(15965,'2005-08-23 19:46:39',3449,509,'2005-08-24 20:08:39',2,'2006-02-15 21:30:53'), +(15966,'2006-02-14 15:16:03',4472,374,NULL,1,'2006-02-15 21:30:53'), +(15967,'2005-08-23 19:50:06',321,257,'2005-08-29 14:51:06',1,'2006-02-15 21:30:53'), +(15968,'2005-08-23 19:51:29',3598,257,'2005-08-24 15:07:29',1,'2006-02-15 21:30:53'), +(15969,'2005-08-23 19:51:30',1807,327,'2005-08-31 23:50:30',1,'2006-02-15 21:30:53'), +(15970,'2005-08-23 19:54:24',4509,395,'2005-08-24 18:07:24',1,'2006-02-15 21:30:53'), +(15971,'2005-08-23 19:59:33',3456,187,'2005-09-02 01:28:33',1,'2006-02-15 21:30:53'), +(15972,'2005-08-23 20:00:30',4428,25,'2005-08-30 00:25:30',1,'2006-02-15 21:30:53'), +(15973,'2005-08-23 20:04:41',2766,343,'2005-09-01 20:08:41',2,'2006-02-15 21:30:53'), +(15974,'2005-08-23 20:06:04',3518,201,'2005-08-27 17:33:04',2,'2006-02-15 21:30:53'), +(15975,'2005-08-23 20:06:23',2723,174,'2005-08-27 19:52:23',1,'2006-02-15 21:30:53'), +(15976,'2005-08-23 20:07:08',835,227,'2005-08-25 01:47:08',2,'2006-02-15 21:30:53'), +(15977,'2005-08-23 20:07:10',1031,550,'2005-09-01 22:12:10',2,'2006-02-15 21:30:53'), +(15978,'2005-08-23 20:08:18',4444,536,'2005-08-31 17:35:18',2,'2006-02-15 21:30:53'), +(15979,'2005-08-23 20:08:26',3733,536,'2005-08-26 19:19:26',1,'2006-02-15 21:30:53'), +(15980,'2005-08-23 20:10:13',3365,196,'2005-08-24 17:44:13',2,'2006-02-15 21:30:53'), +(15981,'2005-08-23 20:12:17',2867,489,'2005-08-30 20:43:17',1,'2006-02-15 21:30:53'), +(15982,'2005-08-23 20:13:31',2920,370,'2005-09-01 21:51:31',2,'2006-02-15 21:30:53'), +(15983,'2005-08-23 20:13:38',3318,464,'2005-08-30 18:42:38',1,'2006-02-15 21:30:53'), +(15984,'2005-08-23 20:16:27',2011,495,'2005-08-27 01:43:27',1,'2006-02-15 21:30:53'), +(15985,'2005-08-23 20:20:23',2646,179,'2005-08-26 20:55:23',1,'2006-02-15 21:30:53'), +(15986,'2005-08-23 20:20:37',3472,226,'2005-08-29 20:49:37',1,'2006-02-15 21:30:53'), +(15987,'2005-08-23 20:22:17',3150,302,'2005-08-31 21:46:17',2,'2006-02-15 21:30:53'), +(15988,'2005-08-23 20:23:08',3932,400,'2005-08-28 20:50:08',1,'2006-02-15 21:30:53'), +(15989,'2005-08-23 20:24:36',38,96,'2005-08-26 20:35:36',1,'2006-02-15 21:30:53'), +(15990,'2005-08-23 20:25:11',3233,512,'2005-08-25 15:01:11',2,'2006-02-15 21:30:53'), +(15991,'2005-08-23 20:27:34',2078,203,'2005-08-28 16:48:34',2,'2006-02-15 21:30:53'), +(15992,'2005-08-23 20:28:32',3334,589,'2005-08-24 21:35:32',1,'2006-02-15 21:30:53'), +(15993,'2005-08-23 20:28:44',1638,12,'2005-08-27 16:23:44',2,'2006-02-15 21:30:53'), +(15994,'2005-08-23 20:29:10',438,595,'2005-08-28 01:41:10',2,'2006-02-15 21:30:53'), +(15995,'2005-08-23 20:29:56',1122,377,'2005-08-30 18:09:56',1,'2006-02-15 21:30:53'), +(15996,'2005-08-23 20:31:38',3098,151,'2005-08-29 20:58:38',1,'2006-02-15 21:30:53'), +(15997,'2005-08-23 20:40:31',2843,447,'2005-08-26 19:47:31',1,'2006-02-15 21:30:53'), +(15998,'2005-08-23 20:41:09',1229,545,'2005-08-27 00:20:09',1,'2006-02-15 21:30:53'), +(15999,'2005-08-23 20:44:10',2584,377,'2005-08-31 02:38:10',2,'2006-02-15 21:30:53'), +(16000,'2005-08-23 20:44:36',282,71,'2005-08-25 02:29:36',1,'2006-02-15 21:30:53'), +(16001,'2005-08-23 20:45:53',245,108,'2005-08-27 15:52:53',1,'2006-02-15 21:30:53'), +(16002,'2005-08-23 20:47:12',2770,73,'2005-08-27 23:07:12',1,'2006-02-15 21:30:53'), +(16003,'2005-08-23 20:47:28',3413,577,'2005-08-31 23:22:28',1,'2006-02-15 21:30:53'), +(16004,'2005-08-23 20:53:20',2223,147,'2005-08-31 15:15:20',2,'2006-02-15 21:30:53'), +(16005,'2005-08-23 21:00:22',3265,466,'2005-09-02 02:35:22',1,'2006-02-15 21:30:53'), +(16006,'2005-08-23 21:01:09',240,533,'2005-08-25 19:33:09',1,'2006-02-15 21:30:53'), +(16007,'2005-08-23 21:02:43',3236,126,'2005-08-30 23:37:43',2,'2006-02-15 21:30:53'), +(16008,'2005-08-23 21:04:51',3273,189,'2005-08-31 22:09:51',1,'2006-02-15 21:30:53'), +(16009,'2005-08-23 21:07:59',3055,133,'2005-08-29 16:54:59',2,'2006-02-15 21:30:53'), +(16010,'2005-08-23 21:10:24',2539,173,'2005-08-25 17:58:24',1,'2006-02-15 21:30:53'), +(16011,'2005-08-23 21:11:33',1093,389,'2005-08-31 17:51:33',1,'2006-02-15 21:30:53'), +(16012,'2005-08-23 21:13:39',2421,80,'2005-08-30 23:52:39',2,'2006-02-15 21:30:53'), +(16013,'2005-08-23 21:17:17',561,462,'2005-08-26 21:15:17',1,'2006-02-15 21:30:53'), +(16014,'2005-08-23 21:18:31',3322,532,'2005-08-31 17:28:31',2,'2006-02-15 21:30:53'), +(16015,'2005-08-23 21:25:03',3113,50,'2005-08-24 20:05:03',2,'2006-02-15 21:30:53'), +(16016,'2005-08-23 21:26:35',3374,595,'2005-08-28 16:06:35',2,'2006-02-15 21:30:53'), +(16017,'2005-08-23 21:27:11',664,535,'2005-08-24 23:22:11',1,'2006-02-15 21:30:53'), +(16018,'2005-08-23 21:27:35',897,439,'2005-08-30 00:36:35',1,'2006-02-15 21:30:53'), +(16019,'2005-08-23 21:30:45',3093,278,'2005-08-27 23:45:45',2,'2006-02-15 21:30:53'), +(16020,'2005-08-23 21:34:33',277,311,'2005-09-01 18:17:33',1,'2006-02-15 21:30:53'), +(16021,'2005-08-23 21:37:59',3057,314,'2005-08-31 01:52:59',1,'2006-02-15 21:30:53'), +(16022,'2005-08-23 21:44:27',2925,504,'2005-08-28 01:52:27',1,'2006-02-15 21:30:53'), +(16023,'2005-08-23 21:45:02',2347,124,'2005-08-24 21:28:02',1,'2006-02-15 21:30:53'), +(16024,'2005-08-23 21:46:47',2910,473,'2005-08-27 02:06:47',1,'2006-02-15 21:30:53'), +(16025,'2005-08-23 21:48:54',1777,569,'2005-08-24 22:05:54',2,'2006-02-15 21:30:53'), +(16026,'2005-08-23 21:49:22',467,484,'2005-08-27 00:47:22',1,'2006-02-15 21:30:53'), +(16027,'2005-08-23 21:49:33',1724,160,'2005-08-30 16:19:33',2,'2006-02-15 21:30:53'), +(16028,'2005-08-23 21:52:56',2515,119,'2005-08-30 18:16:56',2,'2006-02-15 21:30:53'), +(16029,'2005-08-23 21:54:02',953,143,'2005-08-29 23:55:02',1,'2006-02-15 21:30:53'), +(16030,'2005-08-23 21:56:04',4161,137,'2005-08-31 01:24:04',2,'2006-02-15 21:30:53'), +(16031,'2005-08-23 21:59:26',1843,102,'2005-08-29 20:15:26',1,'2006-02-15 21:30:53'), +(16032,'2005-08-23 21:59:57',2527,447,'2005-08-31 22:46:57',2,'2006-02-15 21:30:53'), +(16033,'2005-08-23 22:06:15',760,226,'2005-09-01 02:36:15',2,'2006-02-15 21:30:53'), +(16034,'2005-08-23 22:06:34',655,502,'2005-08-29 18:44:34',1,'2006-02-15 21:30:53'), +(16035,'2005-08-23 22:08:04',549,37,'2005-08-28 03:46:04',1,'2006-02-15 21:30:53'), +(16036,'2005-08-23 22:12:44',1372,425,'2005-08-25 17:48:44',2,'2006-02-15 21:30:53'), +(16037,'2005-08-23 22:13:04',341,45,'2005-09-01 02:48:04',2,'2006-02-15 21:30:53'), +(16038,'2005-08-23 22:14:31',2612,172,'2005-08-30 03:28:31',1,'2006-02-15 21:30:53'), +(16039,'2005-08-23 22:18:51',545,78,'2005-08-31 19:55:51',2,'2006-02-15 21:30:53'), +(16040,'2005-08-23 22:19:33',3524,195,'2005-09-02 02:19:33',2,'2006-02-15 21:30:53'), +(16041,'2005-08-23 22:20:26',4116,121,'2005-08-25 20:14:26',2,'2006-02-15 21:30:53'), +(16042,'2005-08-23 22:20:40',629,131,'2005-08-24 17:54:40',1,'2006-02-15 21:30:53'), +(16043,'2005-08-23 22:21:03',3869,526,'2005-08-31 03:09:03',2,'2006-02-15 21:30:53'), +(16044,'2005-08-23 22:24:39',1312,468,'2005-08-25 04:08:39',1,'2006-02-15 21:30:53'), +(16045,'2005-08-23 22:25:26',772,14,'2005-08-25 23:54:26',1,'2006-02-15 21:30:53'), +(16046,'2005-08-23 22:26:47',4364,74,'2005-08-27 18:02:47',2,'2006-02-15 21:30:53'), +(16047,'2005-08-23 22:42:48',2088,114,'2005-08-25 02:48:48',2,'2006-02-15 21:30:53'), +(16048,'2005-08-23 22:43:07',2019,103,'2005-08-31 21:33:07',1,'2006-02-15 21:30:53'), +(16049,'2005-08-23 22:50:12',2666,393,'2005-08-30 01:01:12',2,'2006-02-15 21:30:53'); +COMMIT; + +-- +-- Trigger to enforce rental_date on INSERT +-- + +CREATE TRIGGER rental_date BEFORE INSERT ON rental + FOR EACH ROW SET NEW.rental_date = NOW(); + +-- +-- Dumping data for table staff +-- + +SET AUTOCOMMIT=0; + +-- +-- Dumping data for table `staff` +-- + +LOCK TABLES `staff` WRITE; +INSERT INTO `staff` VALUES (1,'Mike','Hillyer',3,0x89504E470D0A1A0A0000000D4948445200000079000000750802000000E55AD965000000097048597300000EC300000EC301C76FA8640000200049444154789C4CBB7794246779FFBBF78F7B7EBE466177677772CE3D9D667AA67BA62776CE39545557CE3974EE9EB049AB95563922104142580830D10203061BB049064CB031D916C160100284505AEDEE4CDD3F16B8B7CE73DE53F5D61F75CEE7BCF53CCFF7FB561DBB7CE9AD972FBDF5AECB6FBD74E7A3B75F7EF4CE7BDE72E9AE375FBAFFCD676EBFF7E29D0F9F3D7BD9303A92AC8360A5522E61088A00300622188051204102385644C8124E950912204880C0F21853A6A92209676012C06990A0CB3859C62808C3CB3003A1641921CB180D6234003325902D95C94C86C966A86C9ACEA5CA81CDB27F1D8DF9F14490CDC5D95C5CCE27B472522EC49844B05E29184056C945D552422D25D84C90CD04F95C984985F8748C4F44D46C522F64D864442EA6A572462C25996C8429249098BF12D9C1E20120B8C91653643E51490489428A2E66987249ACA002849145982EA322C112658C864812C0E90ACEC0040D123AAD8A284F950906205810672B140D900226B218C713028F0A5C85E32A0C03522C44E34504875008A8C8927EEEFCA5BBEE7DE8AE871EBDF0C003F73CFAC8B1BB2EBFEDF29D8F5FB8F8F0A5BB1EBD7CEF5BCEDD71FF85CB0F9EBD78E7DE99DB74AD45E10250444B0510016014800800C14B2809E07809C54B1851C689328E17501220D0324602045E40C9124E02C48DBB1480D365942CC26C056311944711122813C5229ECBE2990C914E9603DB807F13086CD0F190988DC9F94415CCB570A0854335B824173242294D6782423E24E443423E822536E1B897486DD3A91D3AB5C366FC74C2C7A5836C3CC0C6035C2C40C5FC7432C8642368C247A4835436CC64634C22C8A7237236C6A5C27C3AC2656242298D6523C5F0269189C2B11099CF50C502532EB330C256300AC2049C61119C81310240280067408A0648B642B1158286480A2469882201820249A642B310CD801403527C85E1209A85691663A1228C54F05AB5D5DADDBBE7D147EE7AF8A163E72F3E7AFB9D8F9DBFFD814B773D7C70F1AE33B7DDD1E81E08A24A935C2A9C2EA64A4809C5000C2FA16419A3009C2A134419BFF124B480604594047012C0310027CA380D90741967201C2F827419654A0857869862498241B298C6F3712413CEFAD7C0C8361A0F10C980524AE950BA43011DA2A8436915CAF2C514920856627E20E4A3B2692693147209261562124134B84DC6FD74324865C3487C07087841DF1AB0B30AFBD74B1B1E787B1DDCF696FDEBE5C00618D929873673016F251980C2DB68CC4FC6836C3A7C23986C84CC84A85C8407E25A252396E22290620A09BA98A24A19B29CC70A39A602321590864012006910E16092063106C24910254194A9504C85A20192020916A6599826CA1803910C48B120C5C32C0B3354851571A152A8948B2545931B9DEEB14BF7BFE5D2BD8F9EBD748F5A6BC98A41537C269E85CB289005299044F2305644711027011C2F22371063008E9631285F21CA380352148451084102385142D9322A962B7CB1CC95CB5CBE48C49368288004B6A84480CB47944ABACD426DBA52830B6A31A514925C2622E6E364CA4F27835822145F77D3A57C53128058ACC5F1171BEDBE1327FA7A4F0C8EF44E4E8DF69C38393F3A3BD33FE199B56CDAEC6BB3B39BF316EFCCECDAF48CCF66DFB6D9B61D8E759B6DDD665BB558D66D36AFD5BA323BBB3C35E5181EF4DB6DA125BBCF3A1B5D7164B63CA98D95D4C64A39B0412676D88C9F48FAB0A49FCAC5987C98CE45D8629203334C39451412443EC3944B3C54E64080AB54681061419C2EE31C4453004E43248D92144290304E02380D512C44B3104D81340D0B6C45A0218A822914C62A25F8D8F93B1F508DB6C8A918846300564A9780220C1730B48C61008E9410A484A005182FA11C4C13259402701AA2D03286161034073300C15530AA5CE12A0857A960D90C968997039B683450F6AF51898001645B70B105E7CFF26815CA08F988988DB1C98896CF70B1041E89947C3B21CFF2A6C3E15B5983A2D9C72EDCDDA0C58991C11DFFA6DD6E8F6D47DE7AFB83055F86CEE1E570E1AECE9D5327A7C74E8FCF0E4C0596BC2B13733BB6C5B06B25EEF6445CCB21B72BE45A0CB95C81C5C56DABDD333BE7999DF33B1683CEA51D8B6D7BDEBABD60DDB25A5DE3E37EBBC33B37B36D5BF03916226E477AD35DF07B8B813534E1C3E2DB543AC0E4A35426CA1693742949151364362694F31C50E421882D43540961008C054906227984A1009CA9504C85A6409A85580A247954A0409AA9B03444B13043812455618FF19C0697513007DD286568BE82830454ACA020766304732005925499C0F3085644E15C052FA14C85C28B150EC0D862450041329FC1B309A694CEFBD6887490C946A4726297812E6A740B2B1AA5A4928BF2C90019DBD6F34922E8CB6DAC6FCCDBE6FBC6E6FBA796275D3E977F71CADDF3D7438E593703323ECFF6DA8ADBBFB1E1B63993A1D4AA737D62CAB9B916298481B7DDF97630494C4D2EF69D189BEA9F754E39DDF3CE7224CE148B125886A37E381C404301381CA0B3C962C85F8A04CBC120140815BC9BE995B5AC7733E1590BDA9D914557C8B1E85BB06D5AACDB56FBD6826DDB6ADFB6D9422E47C2EBCA6CB9735BAB40700B8D07F144904A87B84C84CBC4F044902F66D9428E2E1479A02240185F2139886020122FA11CC252204D012C0B334C85A6409204081EE5688864619A01A963A574192D205499C072305140A9124E0244A504574A3090072B25B852A8E0258C2CE168B6821511BA8233102A61049EC98A00C017F248D457F2AFA3091F96DCA1B2FE265DEAB2151D4A8BA538990AF2D9A8544849B92416F2C51C76F7D4C4DAFCFCF8ADA7E77B266FD72E9CE5CF465CC9A953D6FBF61E640BF4A7DEFD91AF7EE4D3C5ED6868C3679FB7B99D4B81ADE0F0F0F49B4E0E5A2CCBBDBDA354857FF4F263B3D34BCB4BDB7DA7272D73AE9E937D03A74FAD2DDA7DEEA5947F0B4E46E86C92CBA5B9420A4985E174188A07E068108FC7A04008F487E048140947E14000DCF617D7B7B3EB3BE9B5ADE0E2CAEAF4BC676ACE3536611F1A724F4D6D5AAC3EBB33EE5E2DEE6C83812D2CECA713113A192693112A93A033693A9763F345AE0CD045808550B64250204143140B7302C6B33073A372F208C3C1348F5064193B861551BC84B1108D6610228F93058228E34809858B085C84310043CB2892AF50004E14501EA1F002C043105D28E0A918998E96031B5422241512B7E9CC818434C882588E4AC5189B0E93E90818DA8A7B167DD679F7F8987B6CC237B7B03636B338343DDF3BB9A79EF9CE3F7FBFEC87B3DE9C06AABFFAF62F7EF895EF7CE2BD1F4C6C04FA6FE9EB3F3DDA7362787AC2F657379D762FED6029E2E1330FC6E3C5891947AB7EC6625D8D07F3B37D0BF99DF2A6D377FAE4C0C0E070DF70BFCD6AF13AED602CCC17B37C31CD43D94A2A88E642702A486793543A852792642A4DA553783CC6263354328D4513782255094791700C8B26B26BDBE9B5ADE0A2C73BEFD8B42E3B4666BCB30B5B566B687129ED5DCB6FAF43E11D3C1946E3612C1EA3B3C91BD0E95289AB60375A141AA2B0224E02140D312C44B3154A4458BE428A047B8C2893952C8C1630AC886345F4461626CA185EC2F012861610BC841225B8CA8A54A18C65F26034866753E5E00E14F5E1C95087410F44AA8A16A5728A4A07C8949F4A872AD1ADE4DA926766747566C23339B1393FE7199FDC9CB284AD9EB873B3E88D9C97DBEF79E4C9076E7BE4AD0FBCEBD5DF5CF9FAE7BEEA77BBFD5ECFCCD0000BC1B1EDE82DA7C7FA86E68E9F1A5F746CCC2E2CF7F74F6EAF852EECDE21D3DA7D17EF8532151EE2C60627D2C18C757E7966CAD1DF3736303CD173AADF32679B1C1D9B9D1849473665129091928C9578282B560A742EC516726CA1C0158B54362B56003C9BA2D2593693E7B205269BA73359B15066B2F94A2496F70722ABEBC165CFDABC7571646A7966C63936B969B3FB975DD13537120FC3611F9608A1F1209A0C6199289ECB9225808371B642D0659C0609A28C513045FFB939218BF0B11B94D102F627D0650C0330B80863204200085E045908E640A0928822A9786667BD1209A0D180544875A9CA059996C034960A20091F9208147DDEF4FACAFADCC48E6DD6353EBC3A35B93A3519762EE5D6D64AEB1B44284E470A6A1A3B4355DF7EFBA37489424AE8F9B317280CFDC033EFFADEBFFEEB45BD3172B29F28A05812A172F43DDA25280A1752F0A99323E56CE52DF7BDB9C6AB3A275F689F7DDF934FEB185723C50F3DFC546A3B3D3562ED1B9A3D3934DD3734776270AA7F6CE664DFE0C050BFD33613D9710B58C9A0611ACCC3F914512A4838CA43A008410C04F010284215B654668A25B654624B25329F21F319269F253319229DC6532920120522D1B87733B8ECD998B72D4E4CAF596CEB0BD66D9B2DBFEDCBEFEC94833B9564008CFB2AA90859C852C52253020508612A300154E80A4E96311E6138883886E531BC8063798428627811C14A15048091729904402C9FA74B45329F02233B50D497D958A1D2915D0E3F2391B7A994588ADF900CB9E07A62CBBDB368F5CECDAC4E4D7A26A7DC139341E76276DD8B04C25236A7E6B25C3CC6A7B24CBCF0CCFD6FA73395DB9BE72E76CF7FEF6BDF345F7BED4B9FFED403976E0FF9FCE303E32B4E8F8A2BF18D58EFE941B7C3ED5FF73F7CDB7D3ECF8E460A3A4EBDF9EECB0FDF7D9902219D65E85229B0B989E5C091BE89C153E3AB2B3B3373CBBDC3F3C70726DF746AE4E4C0544FFF68EFE0C0E0D0E96DEF32944F8A389A8F86C9524925491682781896494A262909C6040851304CC410B6027230C440000D1629A080E7D264214B15B2782683A5334CAE804653B9ADE096CDE599B5D847C6D72DCE4DEBD2966329B6EE2D4782E5C80E1C0F208920934BD1B9140B142502A32B3003A13CC2A0F9CA312A8F72108D6440B20833208297CA2450C68B59BA9841E2E17260B3ECDB108B993A0E9E535815C943B18DF496034B050AC1CDF8BA7B67D1EA1C1B738E8DBBC626020E676A6DB5E4DB2192292C9EC4E2093A93653269369B497BD7F164765FAD3D7ED7231F7FFF473EF9B1673FF8DEBF3138C6E772CD8F8E2D599D17C5FD3BF4B36C119B1C9F9A1B9DA8F3F2D30FBD850660AB6DCE62B1CC4C4FEA0205A6433A85843CEE9999A9E9D999C1C1E1F1A189E1D3239363F3A3A3F376FB6A3E0E8C0D4FC5A2D9F1516BCF89B15B8E0FDFDA3B7CD39B8E3B2CF644284657D0A4DFA731549DE70D8613704263059D93658A574856A16885226592127082C5710AAAC8384E978A2C50E411900620B2502073792E57A652792A51C02299CC7A30E2DEB28ECED9261796666DFEE5E5E89A3BBFBD0E057D4070AB1CD981B2312497A10A65B942F115F21856C4498020CB185600A872998740AA904512C1ECA69B48863420776755BE54935B2C9AD85C2E86372B495F7C63716D61626972646972CC3539E99D9B0BBB56B21B9B6030406512442A82262254364D65B36CA1C0154A78322DC3D83BEE7BF0E37FFB810F3FF3F4673EF1EC57FEE51FDF7CFF1DB968C0B7B2B2ED5E1F3835B4BDBC5A8EA46580FAC0DB9F79E0ECE56D9767C5B6B0B2EC08EFF8458C991D199F9D1CF3781CB353A3BE8D35DB9CB5E7446F7FDF484FCFD0891343030353836333A706C6A6A71D9313B36B9E8D9D359F7DC675FAC458CF89D1D3FD63274F0F8E8D4EC100584E278972B1C6B367EB759DE34582964951177485165486D7395E657891667992E6495A24480E814512E330844350A602536590072A3C0032C512932B109912922840D17CDC1B5C9B77D947671C63939ED9B9A0D351F06D17433B85A8BF140F83F1185D285265F0185242A06C09C91744B842E653703C000637A974A886951EDAAF5E5048BE10AFC47CB9E0466AC71B5F75EF2C5A9726879C93C3CBD313EE999990CB5509879068048946C8749CCE27F06C0CCF27D14C922A16381024F3253C5BFAD87BDFFFD98F7FACA50A4F3C76CF079F7EFC0BFFF091671E7FF01B9FFDE4279E79E652736F6DDE550AA62B89FCD966EBF2D983E9B121EBCCCCC2F4ECE4F0F8D4C4349AAFACD9DDD36353535353531393F393D3B3C3D3237D13A74F8EF41C1FEA3B3132D6373D3F6E9D9BB49C1E1C1D181C9D199FF6D85D5B8BDEA981E9C193133323B6B909E760DFF89AC71B0D06B28948259FE9EA5A5BD35BAAA189BACCA9222349ACAC098AC249322B0A342F509C4CB13C490B0C2BB28CC20902C570284101B088E23400B0104496002455A472309D47CAC16CD21B0EB83657E79D6BF356AFC5B66577A4B6B7D281ED4C70078885E154F218552853C5229E4D8091EDD4FA6225BC5E437277D5E5F32A45A4FDB980BB10F216829B51F7D2B6D5BE69B17BA6A76D23836B96E9E89A1B0805A050904CC78964824826D04404CBC48952062FE76808A44B251A00F042E1AEB3075FFED4DF1F18D2C5B6FEAF9F79F6814BFB675A3209678AA90005E5AD03036778F5EFDEF2AE80CBEDF7AE62859CDD323F3B3EBD30639B1B9A999F9A9B9F989F1A98589C754E0D4F8F0D8E8F0E8F8D0E8C0DF78D0E9E1AED3F393C706278BC776CAC7F6C667CBAE7C4A9533D03837DA3B639AB656A6E7C607CF0F4F0D8C0DCF4B863626C616EDEB6B4ECDA58F7847D5B3C863765A92AC88AA4CB922189BA2C6AAAA0A982268B8ACC49322BCA14AF32A240F30CC54AAC28D2BC444B554EA3009447081A44C872850260AC006105184E03957811CF40D9ED987F6563D3E95999B1392667B75DAEF8CE563AB49309EE1CC3324920B88344FCE5ED35A590BC6C884D12E4C05472CB05C67D05BF37BEB6B4B930BF3E3FBF3C3EB9343AE9B55A239BEB99E00E1409A0F130998C6199389E4D51852C59C8E3C53C059619B84C43000D403C526970F42FBEFFEF77765B89B595F39AD055E865DBE4CCE4C0827D7A7A66ECF4F19B6518FEC1E73F0BFB433A04D76906CE16EDB30EDBB4D33669B74FD8A7062696E69C0B6373F3A3B3AEF9C5F989F989E1F1D1BED1C19EC1FE13FD233DA343C7474FDD3470F2D6DE5B6FE93979FCF4F15BFB6EB9A5B7E764FFE0C068DFE9FEBED383274E8DF40C4EF78ECCDC7C6A706074727276CEE6B00603BE7C324D21982A6B8AA2C98AA1C8862A6812AF899C2A8B9A24A822AF48ACACB0AA44CB0AAF72A4C053224F0802C6F3282B621C07E30C4CF0188D1560A280D00594CC4395441E8DE50BFE78D0B5BE3C6B772F385C16DB8E6735B1B17D0C8C8589540C0BFB0F18F44E836B92E5A8D796DB59CD6CAEC557DDCB1313CBA353AEB129E7F0A877763EBFEDCB0783F958B0140FC2E9289A8EE1A904954D53F93C5B2A89302C2008538178149671DC20992A4D3FF3D8638F5CB8B0BD60958AE5BB6AC69B77BB17758D2E021B8B1E4BDF946F764988E7E10D5F6E736B71623AE4DD5998B22E59561646173CD3AE886B7B7D61C539695D18B72C8C5BA64766A607A7C67BC7267A47077B067B4EF49EBCB5BFE7F8D0F19B066F7953EF4D6FEAB9E94D3DB7DC3470EBCD83274F0C9C3E39D073BCAFEFE440EFF1D1A1BE99FEFEE9E1B1F9BEE1C9DEA1B1DEC111ABCD914DE47882D7D59AAC18A2A4297255167459A80AACA28886C8A912AB28ACAA31AAC6A832A748ACCC5382408A322989382F138240711CC110304E54300A40C164162F95B17C194E16D074A91CCEA67DF1ADC5F5E5B925FB84D533673B96F36FD7C8CADD9DEA1989C453BEB8D7960AAC25D63CA145D7FACC827BDCE29958F04E5BC32E0F180E23C954391AA96412703E05E753582143E6724CAEC09501B60CF130CAC2088F622ACD180CD3E4C403D540E3C926497709AE59C1DF7BF7BD2B1323B3C38343BD837FF57FFD3F68ACF8ECA34F7CFCCD6FBB535323AE9535CBE29A6D2DB59D2E050A882FFB9EBBDEDA86A56DBBDB36363F3F3A3B333A3BDC373A7C6A6CA86774E8C4707FCF607FDFF0F1E3FDC78F0FF69C183D7ED3E02D7FDD7FFC96A15BFE7AA8E7D6D1D327C67A8F0F9FBE75A8E7E6A113378F1EBF69A4E7C4E8E99ED1A1C1C9E1A1A9A971CBDC843D164CD4E4BA26EA8656576443936B865CD3D4BAA6D60551E30595E71481554446D2445D14654190785E147985A70481160552100956A03806A3880A2662140BC13400502044952B58BE8C648B3788A736A32BD3CEE5C98563B7D7B4068D00B19D6C7035B6BD92F16F6CDA6C2BD373CEE149C7D0C4CAD87464C953F205A050048D258048144FA5F04C062B64D0521E2DE4895C512801328C8828AED09C4CB11ACBA90C5BE3E506AFB578A51C8E9D95AAEFB9F7E1CFBCEB3D77A97A6A6D756BC161ED9B4CACF8BEF881BFFBE3F7BEFBC67FFFB05ACAC75736D6665D22C03FFBF60F3C75DB437BB000AC46BDA3CEE99BC75C43CEB99333F3A7E7674FCF4FF6CC8EF7CC0C9F9A3A7D72E454CF407FDF48CFF181DEE3C3276F1A3C79CB70EFF1D1C11393C33DD3433D93FDC7C74EDF327AEAE6B1DE9BA67B6F9E3C75F3C8895B067A4F8F0CF48FF79D1A9B9F59B4CEDA399C93295613A4AAAC1B9C5665F586566B190D43D67549D34455979566B5A6F2BCA1C88AC04B1CAFF2B2C12B355E6D2BB57DBD5517B48E5A6FF0DA9E526FB1729564BA92AEA00C55A8A0E9828E712248492083A76028523A16D95CCE84367291ADF8F6FA9ACDB6383DEB989CB60C8E6DD8968AC108148E22F138994955A2613293C253292295C1D2391E840504112A904191225C9170B4C671755150285AA1E82A2F7434BD29AA4D56F8C83B9EB86F77EFDDF7DDFBC977BEE32E454283D1BC67EB6D676E7BEF030F986FBCF48EBBCF4EDEF27F9C23439955BF7BD0725939F795F7FCD325A28BB932CC52495F27D575525CC7293750B22722D33B9BA36BAB236B967EEB54EFFCC4C0FC58DFF454FFEC74FFECDCB0CD3AEA5C1A756D5B36B7E637BCB35ED794C736E1EA3B3E3970F354DF2D13278F8FFCF55F9FEC393978FAE4C8C0E9A98911AB7D6129B011886DF9F39154D217CB0553397F2CB5158A6F06635BFEF87620B2E5DBF17A53914878C7EF5D5973D91C6E9BD3B7BABE6C5F5A5D727B9DABAB8EE5F9B169C7BC6DC3EDB54ECEB9E6ECAE19DBA67D25B4BCE15FDA70CF38379DDE0DAB67DBE1F55A563616568E1563A16C68DBE75ADAB42F3AC6669726AC1B56777865138AA6CB81483918AC44C34034508E05C058984865B8324466CB54BEC495011182340C3728AACEF0128C7115A4C6092A46CA084EE64B1AC51DA8C613F7DE7B57BBFED885837F7AE65DE7782AE158B853129E7DEC913BABF2036D63E14D7FF568B5C9049272A8F244FBC1A7F7DFFE54F76D5F7CFB3F993F78C3FCDE15F3EB2F1E7EF9977FFCF4F77FF8D4673F79DB130F1207ED18C7788AC04AD63BB6B63AB1B63CE9764D795C539E55CBBAD7BA99742732EE44692357F101900F0838C31B16BF63C23D707CA2E7D6919E9EB19B6FEEEBE919E9ED1D3FDD37353232E3B2AF6C2C7957AD6EB7D5E3985AB28E3BBC76EFCAFCCABA636D7D71CD396377D91697ED4B8BB38EC5E9C5558BC735695F995B5C9E5BF22CAC6C3937D79D5B3E77706379DBE3F0BA16DCCB9695CDC54DC7A4C33EB3689F59F438BC4BB32B2BF39EC5C925F79CC7B7B875CCE77285573D8ED109D7E89C67D2EE997478E75DA1E5ADF0CA66606935BABA1E5A598D7ABD51AF37B2BE1E5AF76E2DAF84BC5B3EB737BAB1B5ED72F9DDAB1EFBA273D6BABDB2B9B1E45D73AEAC3BDD6E8B7DDDBA58DC893D75CFFD4FDF7BF99EA6FAED4F7FE873EF7FC77D2DE9BEAAF889C71F69C0650329CCDDF27F1ED2D58F5EBA3F36E67C4FE7D14FDCF78157BFFF92F9AA695E33CD43D3BC669AAF1F9A3FFBA5F99F3FFEE3E7BFFEEB4FFCCBCF3FF2F99F7DE80BDF7AFC631FD87D0C5B29A41CB1882316B08603CE70D81549AC26F21B39C807200108D82A96B7CAF9F5526239BB3CB13A3F641F393577EAF8C4F15B864F9E18EB393D716BCFE8C8F0C2C49025B0E40F2E06E36BC9A4371B5F4D473DF1DC4E21BF9DCF6E664BFE526E279FDCCA647CF962A00C8640305C2E45F3C568114E55CA51000883501404E3502952248A049EC3D00C82A7313483605914CD20953890DB4E6131904E22496FF4987D7462AEAF7F757ADE33B1E01EB37AC6EDDE19C7F294DD6B59599D5DDCB6AF6ED93CEE19E7967D75656EC96D5D765B966DE336D7F4D2BA7DD53DBFB4346D5F9C5D5AB2AC2C8C5B972D2B6ECBB273D2B632B7E89D7765D702EFBDF7A1A72EDD7687427EEDA34FD591F8ED1AF2E65DBDE475013BDE75CB58D831FB9BAF7C89F2EC109EC83FBFF393E68BA6F9AA79EDDAE175F3F0E8E8BA79EDC8FCDDCBD7BFFBBD173FF7B95F7DF463FFF1C4BB9EFBD0477FFCBE0FFDE793EFFFD203EFBD8C74E1B522B80E14BC40691300B6818A1FACF8003C5021823019C2103F0A6E41C57530E408AE4C79660717474E597A4FCCF4F64CBFE9E6815B7B477BFA2627C716344C6E12D536D3AEE1F53DE9A0C5B615581601DE80952AA2AA15B546D6254891408D2F8B7245E2619604080111144C6D732DA1C25365022F22148093658C2CE16409C74B2851C6907C4540388356906439ECDED9747A8F2D8F4FAF4E5A3C130B2BA30BCB2316CFA47D79D2E69AB0AECDBBB69D9E807B33E0DE8C78039BB6D5D0CA4EC41B8C6D84F3FE54CE970442B9FC4EB21CCC2219084E8344010513252C0DE26990C9227C962213009BCCEF91440BCE3FD8148D62F8C1B604FA3D21D77C66C3BD70FAE4072EDFFB9E33776C1D9F79F68EA7CC3F9AE675F32FC7E1E1A179649A57AEBCFCF5AFBFF80FFFF0D3F77CE04B0F3E76F46FDFF8EE537FF3E587DEF2E1FDBBBB195689B37C9C43FC2819C2983041053136424A714A8CD24284E1223CEE27E06D30E349F99DE1D9E195B1C1C5E17E4B7FEFF4A993E3A77A676EED9B9C9C710059B0CAEA0226CAB8AC108A408A1CCE4B842011028F3002C2B1102B618A848812264898C0B3024B730C4E73042393A280712C42722845000803130C8C912588292174199550A6104D07D77CAB768F6B7EC93A613916727A5C23B32BA30BAE61CBCAB86D79C2BE6EF780B17425912D8563595F104E66A07806CB94E16481CA237C9990209A29A0741E618B980852780160419C830816C425985011A68A0A4D5CB9A775DBDD8D7D3691D4F219BD98D2CA4928B09A5BF3C456DC8BC3A32B83530FB1DDC2E4FA6E5AFCF9E77F7C74DD3C324DD33C348FCC1B67E6D1A1F9EAAB2F7FED5F7FFDEC477FF8D4D35F79E42DE68F7EF8B9071EF8E0998B0FB07AA7C0F271824D5268B0C22629220873715A4AF34A8253E3422357ADA63531CAD32112DC2947DD49EB987BACCF36D6BFD07F6AAAF7D464CFC9C953C396D303D3384A7138A7B3AAC22A122D2994A45092C64A12CECA0477E352C07881142542940881A7388E643982516841664589E1789266608443311127B80AA662748757A91C90F545D7ECEE0DA7D735BFE49874EC2C6F1D0B2FAEBAC72DCB238F89FB0000200049444154A373DB0BEEED05F7F2A4CD35BBB0E9F4045737F2813007545800A04B25325F22F325B20411C5325E2891258006201646980AC4A1D80DF9C463B484D30242A8247BAEDA79DB5D0F7CECC9A7F0700C0DF8F9745CC82613AB4B5B76C7FCE9016023E4EE99AED8231FB8F484F9AA69BE6E1E99E675F3D0340FCDC3A33FADEBD75F3B7AFED72F7DE95FFEF7231FFCEE934F7EF8E0DCD1BF7DEB5DF5D6E37AB79545AB5952C9D06DB84A475025CB496956CE0B5256D4B28A92E01A79B95E90B5ACC4C739245849AFE7562DBEE9A1C591DED9FE5393BDBD93274F4DF40D5A4EF74D6108A9B3AA464A554E33244DE33583D3545A36385D262583D36546D1054316749953355E57249DA1788116554E151941E16599E5159A5169C620B936A7F065AC18486CD89617A76CF3A3738E499BDFBD03A74111A18F8596DC4BA3D3CEC1A9D4AAAFB8134B7877366CCE158BD33A3EBF383D1F72AF15C3611E023918A2CA6516426900E62A9842300282F128C621A880920A298A182713824C300A41D5686E5FD11FBF74FBFB1F7A4848263A950ABCBEA1E573E0D676CCB9DC05C9CF3FF8AE2F3DFAFE5F7CEADFCDD74DF3D0BC625E378FCCA3A323D334CD23F3E806ED177F6FFECFCF5EF8ECA7FEFB7DEFFEEA238FBCAFD9FD8F279FBE07659B49A49DA7B50459CB8B6A861793949C66E40CA7E6043EC32A59B19A136B79BE5612F5B22CE644324210317AD316B18C2C8F0F5806FA264FF78FF58ECC0C0C5B87A7ECDB3BC14EBD5BE50D8DD734A5AA4B5595AFEA7C4D650D8DAB1A42DD10EA55B1A14A7595AF1A724D91744DAD29A2210BBAC82B3C2BE8B222B3EC41B58EA50A255FDC3BB3B832B7681BB32CCD3813BEB888F24DA12AC32C9A2F1FF339576D43538EC1A9C256080A456E88432C91C9FB62BEC5F59579D7E2B4C335BBB8B5B85A0AA70C826E8BA24A9206C72A0C25919442732A2D6BB46CB0AA42493AABE98CD295AA1765FD2E43A71309369B092F3AFDB63924E2DF5998B940D1FFF9771F7AEE9F3EF1AB6F7DC3BC76CD340F0FFFFF79FAE8CFE395D7CC3FFCDEFC9F9FFCF263CF7EFDC1473FD23E7890E0DEAE75F672F86E896B141825811919464BB35A9AD333BC9AE5D42CA7A7C566516C14B86691AF978566453500A58337A938135E4E3BA7BCD323F6A181E9BEC189FEE199C161CBF4F4E2D6BA9F230555D06B7AABAA350DB95655EA9ADCD095A6263754A9AE2B4D5DA96B724D97AA55A956556A8656AF197543ABD6557DAFD66C882A98CC6E3856D717DC4B130EDB9035B8189461A123D46482D3399982101641191839E65FD9B08D4C2F4F2E147682370C7E349EA633393A5D600A7021908EAC451D938BCE29A76BC6115E590722718D209A92D0942595615586D7184567359556645A9328B52ED676C5EAE57AF3FE76F3DE66FDED775C0A2C2E2E4D4CB827C69DA74FDD8681DFFFFBF7FFEADF3E73ED85E7CCC3374CF3DA9179F817C87F617DEDA53F9A7F7CF9DA7FFFF8971FFBC4D71F7EFC83CD338FF1F5F300DBCA518D126FE4E86A9E5153949666F50CA7A55925496A695649324686A9E59856496896857A59A8019294E36A60B5BC0D6DD8FC3323B6A971EBA953A3FD83B3E363F6B91957702BAAF255436DD4AAED5AB55B37DA0DBDD5A8EEEA5ACBD0BABAD632F4B6AEB5AA5ABBAEB61B6AD390344D506AA2B267346A9C548EA4BD36F7F2ECE2D2F8E2A6758BC89012209DD3CF56194D26381E23798C94299AC3101A458F4556B7E7FBC69646A7A1600C8DC5D1589C48E5A874964CE6981C406400325BC13395CC76D235E974CD2E2ECD3AD69DCB50268D150B1777BB555ED05849675595D3645657B89A2E1867F4061C0E6970E99987EE7DE2EEBB626B5EDFD2CAEAD48CA77FF0A96EFD7B1FFD9B2B3FFEAAF9879F9B575E368FAE99E6E15FCAA1691E9AE6E1D1D56BE6EB578E7EF382F93F3FFBED673EFB1F6F7FEA1F2E3D743F6D9C87A54E9957F3AC96639524A92449394D8949424AD142921292149F20D51425C5F15A9ED7F39C5E106B90D6451B35B0CA2499D052D839E19A18981D1E981E1FB5CECD2C2FCCAE90105757BB55AD6DE8ED6AB55BAFB5EBD556DD686B4ADBD0F66E84AEEE56D5BDBADC69CA8D3BF62FDCB177562758389E5D9CB15AC7E797A6169746970A3BC57D71BF2B74AAB4B1AB75244290188E235991E6798C960986238863999DC8C2C0C4EAF44261C78FC51378228927B3642AC3E44A6C09E441940620AE82E9048F2421DF4AC035EB5A18B758672C8B367B707D83875183E1349AD70445936B92A86BA27E60B44B3BA14A28F8E49D173FF68EC7341808BBD7FC0ED7FAC8D88322F95F7FFFCC8BFFF985EBBF79CE7CE315D3BC7A74F88679787464FE395F9BE6D1D537CC2BAF9BBFFD9DF93FBFFCFD17BFF4930F3FFBC5071E7F52DD3FC8B39D92A8E705218A2A499A4F507C821213341BC1F938C1C6703649B251444BD34696D5F3829617F592D6429A67A82E1B23B2DE8C6BDA3DDA3F7BBA677472DC3E3BB93C3034DFD03ABB7BE714BD5533F6DA8DB3F55AA75EEB34EA7B55AD5D533A3565D750767575AF661CECD70EF695964250B140C83A61599E5B9EEB9D5D9A5A89AF252540BEA05FE8485D9DD57441AFF286CCC83223F324CB1194CCF22C4E720C7F2CE1DDB1F48F2E8ECD542231229D445271BA54C2331916006800A24088811111273818674152256516604AA1FCAAC5E398B4D9262CAE393B94CAB4657557ABEDEACD86546BC8C6B9E65E2118B10CF62556972AE1ED77DD73F9CE46CB677186E62C9D6CF46BEF79B3F98BEF982F3FFFFFB13EFA53CA3E3A3A3A3A3A328F0ECDD75E35FFF007F3D7CFFFF4539FFAF5273FF3BDA7DEFFC98B0F5EC8310705FE5C45DF2B291D4051322C1B23D818C1C5493A4E60A14AC50708494AC9B04641AC9614BDA455A16AA3526F80D52654CB6FE43C968D9961FB50DF8CDDBA363DEDE81D9C22604AD31B7AADDBA81D34AB676BDA7EA376B65ADDABD7F7EA46B765ECD6A46657DF3D573FE80875289AF53A56E626E717A6ACD671476E3BD3A49AE76AB735F84E8D6FCA8C7263B741E3759192245A921841A0380167648A6730EA5872D36F1D1C5F1818C3D219249D220B592893C68A790A045804A55194230816C7798C14304E40E92AA9EC0AAD2AAEA3496C65D6ED9A5E5A9E77B82DF6F466A046F27B4AF58EBDB3BB5AAD1C89AFDBAC9115D7FADC8458CC5D9024B5503E43D2A27FFD679FF9B0F99B1FBFFEFC73E6F537CCA3378E0EAF9847578F8E8E4CF3F0F0FA55F3E8BA79FD0DF3CA6BE64B2F992FFCEE0F5FFDDA1FFEE58BCF7FFCD35FBEFFF13331E81397DEFA44EDD2C3E241354B4B29524CD1540CA762389BA4980489071031C5A8395EC97206A0D62AB53A5C6FA1F51A583DCF9F0343F0F2ECFADCA87364607EC9B9393A65E91B9B2CA44BD56AD730766BB53355FDA0619CAF1967AA8D835AB5DDAAB6F76BBBB775CE9DADED6503C94DE79A6BC6E19C72DA279CB940B1C9B42EB66E6B2BBBBAD854A5BAC4681AAFABB45C13AA9A5093584564E4AA54A5115A26451E6539843D16F3FAE607C62D83137032C794CB74A988170A1408D0159842301A27789A12288A232811E7154E92295EA5A43A675C685DD049038E23AB56EFE2B46379D6B9615BCEEC84885CF940A9754839B3BA53DC0E82C15076DD1B73D89FBC70E173EF7AE276A4FCD37FFCE8D5FFF9AEF9C64BE6D1B5EB8757CCA337CCA3AB4747D76FB03E3A7CE34FAC5F7DD9FCE3CBE64F9EBBFACD6FFCE6539FF9D9079F7DF6ECDD5F7BDBFB1E661A0F0BDD7A8E5252B89022D41C8FEC007C82A2C2281326942CAFE5050350EA15BD8D351A48A38E181DA2755E3C0F45D06D5764AC7FDE32B33C3262E91D9BFDBF8FF796B358BD7ED6D00F0CFDACA19E33F4034DEB687AA3A1D7CF36769B9C5A891757E75C8E498775CC6A1F732009EC8C71FE62F78E83E6859A5CD7444395AA8A5833A48621D475BEA6F2D51B9B3B02ABE89221D1124F0812210A98782CBD1999EF9B708CCE677D51225726F325BA54622B188B902C427238C713BC48892C4E53082153BC420B2A236ABC2ED39ACAD6DAFA6E936F4111C0EFF0DBC71CF629877DCAEA77ADB6318A4A66B8542E6475CAF912ECF34BC9F8C71F7AE05111FBAF4F7DF0CA2F7E6C5E7DC53CBA6A1E5DBF510FAF1F1D1E1E5E33CDC3AB6FBCFAC69557CCA36BE6EBAF9AAFBE72E57BFFF9C2E7FEF1854F7FE2DBEF7CC7B3172EBD43DFBF13D53A39464B5142821453B492618D2CDF2C286A82E363A49AE58C826814A51AA4D560DD0035159655503E279CC1126472BBB030E1B2CE2C0F0FCEDD7C7ABCBF775A645B8DFAED9A7A50D5CED6AAE76BB533B56A7BB7B3A7906CDA17754DDA17C79C8B63AECD797FD8155341F962EB8E33F5DB6A4A47D35A9A68D4958621566FF4E0BA58574443127551D0784E91C4AAC06A022D09A4C8138244C8C7525B21CBE0C4F2B4B5104920D9229A2B60F93C55AEB020CE2394440837C4ABC8082223889428B3A2C22A32A70A94C2110A4FAA0AA3B7E4EE9EBA4F97B89037BA32EF5A9973E437834C3A776FAD9D5FDED0B3E53604BF7DB7FBE1CB97DE77A6F9DBAFFDB3F9FB5F9B47576F50368FAE9AE6B53FC78D996BE6F537CC575E32FFF882F9931F3CFFD94F7DFFA9A7DE576B7EEEDE47CE17B0BD3CD5CE3346861112A49C62950CAB24692DCD4A714A4DD0529C34B2AC92A18DA254AFE85550954A4C1DD3CF4B6774C42846A0E9219B6D76657CD47AD3C9F14D6F626FF72EA376BE513B575376F7EAE7CE36CF74B5165680D6ACAEE5D945E7A8C333B3165F4DB7D9BDB3DAF98BAD3B6A7CBBA91FE8725757DA75ADA9F3B59AD4D4C5BA26D434A1A62B7545ACA95253959A1CAD09BCCE332A474B3C258AB47A2CBD1D768ECF59C7A632810805C05801204A300B9202CCF0082360BC44CB2AA7898CCC5302C7CA22AFA882A6B0AA4C6B22A9A8ACA12B758937AA5A77BF75B1A51DECEA0775B6965C0F65573612F39EBB893ABD1C55B7939FBCFBBE1F3DFBB75F7CD7A3577FF203F3EAEBA67978F8A7BEE306E5ABE6D11BE6D115F3F015F3F025F3F5E7CDD77E75F4B36FBDF68DCF7CEB9D0FBF8D219F10D4C745FD224475F2683B8DE9314C89E15A8AD293849A40A43824252A721C9693081D05D050010EE5CBBE6C6E3B15F106032B7E34899DAFDDCE80CAE2DCBA7DD6333BE65C9EF776E48386B2B75B3B7BB17DFEBCB18B65CA5EE7AA75C2B6306AF3DAB632BEFC59E3B6DB5B97CF546FD3E56E55EBB66BDD86D6A929BB55B95B95BB2A5FAFAB5D43EDDC80ABF25585330CB966087595AF2B5C4DE46B02AF73ACCA328A2818C7921B61CBE08473D25288246810C18B2005E02C44F328C7C20C878922A908842CD39AC26B3CA7F0ACA4F15A9537EA62C3E0AA8658D559CD901A9250E7F9BA24340DA179C7DE1D68B21C9875DD2FEC99BF33CD6F3DBF17842E152A5F7FE2ADAF7CE78B47BFFE6FF3EA6BA6695E37FFEC3799D75EFBD54FDFF8E58F5EFEFE575FFEF63FFEF6CB1FF9DF4F3FF5938F3EF6DF1F78F8F30FEEBE852EDD0314AADBFE7339E0A08818D15C3552D0A3B01EC38410A44621255AE64259642B5A5A0F479CDEF0A2D76FF7AC2FACACCC2DBA2DCB8BF3CBABCE4D8F6543C1EB688E8FED942CE3EEA5D95509E4CE889DBB76EF38ABEFE6B7E2DB0B6EE7F89C75C2B638B5B269F735B9BD5DED42BB7E41D37615A35B6D1C548D4E5D6B34B55653EDD494DD1B4B5B608DBAB1A74A4D5D696B7243136A55B1A1F1BA2AE8BAD29484BA24D479D6E0688DA1D463595FD43238611F9D4192653C03E179982C635499E01086C3398E96385AE1195DE10C895554D950055DE37583D3ABBC5113AA35B96E480D4D6EE862B321B69B52A7AEB6778DAE01D1E846C0FCE36BE6B557CD6B87E6CBD7BFF4E05B9F69377FF0C9F799D75E348FAEFE59BA5C3F32AF9A4787BFFF8F6FFDEC0B9F79FE0B9FFAE9479FFE97FBCEBD5BC61E80538F32A55A78AD6C9F8297ECDCC6A6BA131236C3D5484E0FE58C08A08641350A09FE0CEB4BA01B8192673BE658B5F48FCEF68D2E0C4E5B87666D6316E794D33DE759B36FA5B6CB1C586B52E7D08C387A7A8188A0FB901A5BF0A800BD386E774E381CA3D6B599B5E052B4C1EE77E58B75FD8CA67524BD296B6D556D1B7AB36AB4EA46B7A5B71B5AA7AE7635A953537635A953FD8BBC549A86DAD295A6AA3454A5A14A4D4568497C4DE4748E56445A3D16DDD8B18FCE38C7E78AA1249E872900C740E4C62F37122D49AC2272BAC4D724DE105845E1355D306E24A91B6557E3AA9A68A852FD06EB96D46A29CD5DA9B157A19F68B7CD577F7BF4BB1F9B872F99575E315F7BCDFCAF1F3D7DAE63BEFC8279FDB5A31B86DE8DECFCEAAB7FFCE1770F7FFA83E7BFF40F3F7FF699BFEB1A8FC24023E8A7BDAB59DB7CD66E05979791152FE1D9AE86B35A20A5055246B8A8040ABC2F2D05739837585ED94A39D676661637E797DCD38ECDF9E5F5D9A52D8B7BC7EE8DAF8633BE6C2108B08056A3F665B8B561F1DF4EEE29FE726CDA55D9CE5A4F2FCCF45AB25BC51AD63D5BBDF3A071B9A59FAFEA07B2D696F58EA2B7B46A47D35AAAD2A86ADDBADA6ED6F60CB5A3295D43D9ABAA7B9AD2ADEABBBADE5594962AB774B5A3CA2D5D692B62A3AA7525BEF627DC8C7E2CBAEEB78ECED84767C0689E28204419C3109C82299160658A971959E53499ADCAC28DCF277455AA1A5243136ABAD8AC299D9AD2B961D6D4944E43E9B694764B69EE29F53328F3ED27DF6AFED737EF0B7BCDEF7DE38D9FFED8BCFA8AF9DA4B5F79FA89D77EFE63F3F0F523F3AA691E1E5EBF621EBEF6C2CF7E605EF99DF9FAEFCD5FFFF4671F79DFFBEAD5CB10A445E2B5745E0BA7D5684608C48D68965AF5939E801C48EB812CBF99E0B7D2F46692DC8CC1DE50D1BD13B3AD25ACEB51E76669335E588F029BF1D2663CEF8D94B79248B84027113ACFD499EEEDEDFBD2DBE507944B8AAFE41F5A903254722D75AE7EFBD9D6E533B53B3BFA859A7620CB4D596B6BDAAEAEEF695A4735DAAADAD4B48EA1755BF57D436D35EB6714A95DD30EDAD5B35575CFD0F674BDABAA6D55EDDE10F486DA51C48626B774A52D0A86C0EB0CA31DCB0553B3BDE3B6E1592C0D120584047002232984B8C15A67559DD514A66A480D453464C950959AAEB534B569A89DBADA35A4564D69196AA7AA75EB6AB7A5755B7AFB4CB553CB81E6733F323FF9E1277371F395DFFDEA1BDFBCFEDC73AF7DFB1BAFFCC7BF9B575E79E9B7FFFB87DF3E6F1E5E37CDABE6B53F9AD75F34AFBCF8EA77FEFD9B6F7BE2BD6AFD2194BD50C43A69B01E2BD4D3652351B89310DFD938F3E1F3F7FD4DF54233546A4421D69B42DD517C3D565ED94939D60A6BC19C2758F6C6428EF580DD13595A4FAFF9F39BE1EC46888C958534A4E5493289F2A02CD1CDA193730FD7EF967D406C6AE53CD7BD50BFB45B3BDFAC9F6935CEB78C33CDDA5EB5D6D6F5B6A175ABEA5EA3BAAFAACD6AB55BABED1B5AB751DDAD1BDDBAB167687B9DDAB94EED5C4DDBD7D58E61EC6A5A47D3767575D750760DB5A3C92D55AA2B628DA6245569B0AC7A2CBAEA9FEA1D5B9CB295A2391624F1128A222483B32CC62AACA2F1BA42A93A6B684243955B8A5C57959AAE3534B5AE6B0D5D6BE94AF3C69B65E8EDAAD6EE56F79B5A6BCF68750AB0F9FBDFFDFC91073E46A2E66BAF5DFBD5FFBEF89D6F5FF9EEBF1FFEF267E6D557CDA3AB7FF8C52F7EF08DAF1FBDF4C2ABCFFDC0BCFAA2F9DB9FBFC5D0DEA535DF293405B77FFBD4B86FC2E2E819DC9E99DF9898CE2DAF229B0139927BF7EE9DFB599C580C404BA1AC7D1B5C8B669777505FAABC1DF3DBD7DC13B685D185B19EB1D193A3B651AB63626171CAE61CB1ACCF2E7169188B00AB0B9BDB2B6930CADE215D56C2F8DA49CBFD7B97BAB5DDBADA6E68BBB56AB7AAB50DB561E86D5DED68DAAEA6EE19DA5EADDA35B46E55DFAD197BF5EA7E55DFADD7761BF5BD86B6DB32F66BFAAEAEB40DADAB69BB9AB6ABCA1D5DEE6A5247111BB25C97E5BA2CD514B1C131FAB1E446787660DC31310F26B32C8452004A112C47F21CC9F3ACA4F09A2ED6AB7253111B9A72A34AB475AD55ABB675AD51ABB6AB5AB3A677EA6ABBAAB5EB46BBA9765A7A7BBFDA3E0071F3F72F3E77EF83EF2B95CC37AE98E6CBE6E14BE61B2F1FBEF0ABC3D7FE609A574DF3DAD16B2F9B2FFDEE936F7EE4E94EF3871F7CBFF9DC7F99575E335FBB66FEE2F79F79F0A98B80CCEFE4A1F54872D19B707AB24B5E6C2B062EFBDFD9B8F36FDBF7319E34E1CD9556E3157F968897539EC0C68CCB3BE7F658D63DF3DEC05230B19AC8AEA5B0085405D5BC374E468AE04E96C9B197DA8F3C76DB7BDBD0593E84794E2F9CD53A0DBD5537BA35A565E8ED4675BFAAB50DB5A5295D43DB37B4FD8671A66EECB5AB078DEA7E4DDFAD197B8DFA5EADB65BADB55BF5FDA6DEADE9BB9AD2D6D55DC3D8D7B45D55ED6AEA9E243415A9CD4B75596E4A4253E69B02AB1D0BAF07C6FB866747C6A16C81284134485008C7E01C430A3CA78882210B7585ABC97C53E69B8AD2529496A23434B5A92A0D4D6D1A6A4B97BB3565D7D0BA55ADDDD03AAD6AA75B6FB701C4FCE6B7AF7FFAB3FF7CE19C79F5C557BFFE99E7DE71EFD71FBBC3BCFEF29F2C27F3DAD15F9CBD2B47CF7FF56BBFFCDA17CC5FFDD07CFEFB2F7DF99FDED3E9EC264AED04B89FA3BA19BA1AC1854D905ACDFEE6F33FF8C187BF687EF7056D0390B6206A0B0C2EEC544260713B9F594D66D752D9ED5C76330B068A5808A442101502B0AD02E607F92C5303AB757CF77CF59EC7EF78BA8DEC611B001F42F7B5BDBAD1ADE9BB2D635F57DA55754F57DA86DE6ED40E1AB5B38DDAD9BA7ED0A8EED76BBB8DEA6EDDD86B18671AB5B3F5FAD96AF5A051DFAB57F755B9A36BFB9ABAF79790D5AE2CB715B92B295D59EA085C5D64EB2A5B3B960BA7C74E0DCF0C8E130042810453A13958A4099E65149ED304AE2AF23549A88B6C5D91DA9C5813E486A4B634ADA3AA6D49A82B5253573B357DD7903A4D75BFA5ED75F54E476E1C70DAA71F79CC7CF1A51FFEEDBBCD577FFBC3872EFEECFCEEC778D4BCFAB2F9C6CBE6F5D7FFAC12CD1B5B8DE6ABAFFCEE9BFFF66F6F7BFCE37BDDBFDBED3E2E886732C06E12D84DE3CD04ADFB716313811D51F3E77F3CFCF10BAF7CF5471F6C3D7C5B4A35A234E603CA9B7934580177C0A2AF04FA4A68102243301180A82042F82B6408E6E264136CB4D14E13EB34C9DD47CF3FDE463BF87A494D317BFAC15EE77CBB71B6631C1852A75E3F5BAF9F6DD40E1AD5FD4EF39CA1756FCCD48CBD66FD4CDDD86BD5CE35EBE76AD5B38DFAF956E3EC0DFAF5EA19CDD8D7AB67547DBF6A9CD1D55D5DDDD3D5BDAABEAFABBB8AD212C5BACCD68F6582C9A1E3FDB689B97222C740240D912CCC7184C4522ACFE8225B17D9FF978AEF8E6EE3BAB386889901D8AB8A6DD9922DC96AA63A7B4721409020584082047B033BD131BD577480942DD7D829B6E39475BC291BA7387136D59BB25FB289B3E9C58913775B9225ABCDF70768EF2ECE3DEFCCE19973005EDC777FF7FD30EF05563CA1D5E5C8CA52786525B4B212D936A635C4EFC5C241CAB781073688B097DC588AA0411AF1E1B81F5342F4D646587DEFE23B3F78517DEFCD97D0F08BA3235F59F5A8372EA957DFBB75FDFDFFE13A47F707D7D4D7DF505FFECD6F3EF9D433BEC8D6A4E75301EAD36854766FE05DF3CB670739C7C62B2FBEAC5E55D56BEA1BBF78F9AD6FFDBFF87060B5CDED318E8D36F42D744DCF77CF0CB5395D6D43E326F770CBE058DBF0B46962CA383E6B9D59ED5D090E8702A391C8141A99C5A3E114E56186EBFBD6FA3CB0170B87C9508888042938CC05FD7438C886FD341260C25E3CECA7837E0A0E739108130C9218C2E3088F450424C247422C1C64910003FBE9A0970C04287F900E87D9B09F0E7BC9D00601FB18D8C7F857D11CBCABA8A6D7D87D47C9EE7B6FBB67B86B606164667E746661D2935BBF2CCE7B7344AF2D45D65660EF3AB6B612F66DA0EBEBA8CF47048374D04F047C78284087834CC847A11116833934C2E2615A80596666597DE79D57BFFD75F59D777F9FD8FAB4A9E7D6B7FF5DFDE0A27AF53DF5C6955B373FB8B5DD78FAF00799772FDDFCCD9FFEF2C5AFFFE8FCC79E67D289614F72640DB78E7D49BCF0E7AFBEA4BEAFAA1FA8B76EDC546F5CBB75F1ED4B3F7EF9E1396CA57E08ED5F5BB3CDC1AE8DD5BEB9FEC6DE51C3F068876BAE7B6EACC33DD13E3E65989CEB9A5FEA5DF53A838151383C89E18B0CBB2E25C2E98EA36DCBCE452488FAC3483882C3211289B0E1301B0AD0413F110A90C10006472804A611840BA1344AF0E13089C0244908084C4722542444C361060ED1E120B3EE4383113A182111940A04E14010F6FBC2411F9C837F23BCB11ED6D85A4CC7EE3C7864CF3DD37D6ECFF0F4F2A4C733E5F1CC2C2DCFAD2FCEAFAF2E05375623DE35D8EFC5BC1B11EF1A1CF0E1E120E5F7628100110A51A120EEF7A3C1200E4728384261288B232C09B332CCB173ABEAC577AFFCF425F5ADB7D4EFFFF4E343A3EAEFFFA05E7947FDE0A27AFD8A7AFDEACD1B573FEAF3A9B754F5E2E55B7FFEDB3BDFFBF1DF9FFBFACF1F7EFA291FF5B1653C3632FFFBCF3DAB5E7C5B7DFF2D55BDAAAAD73F78FB2DF5FAF55F7EF6F94F2CB1EB75AE40D7B2AF7771DE384C8CAFCE989D5326D7B87164DC38EAB1CDCD5B6796BB1716ED9E35C7AADF190C8EC0A109149927A38154CC9F3AB1E724B74E2181088E623C49B31122BC118603281EA6D1108604613810A1714260D89818A53186426981E258842422188BD3702022D2BC48897136265212470A0C2910308987510A438908C2E22407933CC270308DAC87512FACB1341BEEAEBAE3BE3B0F7A862656466756A6165696563796BD2B4BEB2B4BABABCB6B5EAF7F6DD5170CC0C1001208223E6F381C4231948A84B170180E04C3C1603812820982884422300CA330C2A1541CA1C4C5C5CB3FFFB1FAC6DF5FFDECE7D55FFDFAE66F7F73F31FAFDEBCFA9E7AED927AFDB27AE38A7AE3835B373FEAEDA9372F5E52FFF1FADBDFFBD1EF9EFCCC9770E1EBE2D65341EE774F3FF7558CFC7E9C7FFD9B5F50AFBFA65E7C457DE79FEAF5EBAFBEF09F9F09A4379A47E9FE8D70D7ACBF6F66DDEE5E300FCC1A07E74DA3739DE333E6F109937BA16776B17B7EB17BDE3BB4B131BC111A0F61F37834185302D1B6C32D4A50E0BD08BB11A256FDF48A5FF1E3DC061A0B319199157C6903595C879756C39EE58D890564DE0BCF6D042617C3332BBEA985C0CC22B6EA0BCC2C7B273D4BCE89B59139CFC044606675AC6770617462C9ED9E19189A1D1C9976B872BB6966FBC726BA5D9A9E76D3D13D7755DFBEDFD33F822DAEC34BEB81E535643D48FAC3BE8565CC1B44BC013C1096291EF72151421242341720C975580851714A96508EF263714A6682588C14648C1523A4E04592EB487466F69BE733EAC5377FFDB9CFFFFE8B5F56AFBDAD771EBF080000200049444154DEBA7CEB838BEAB54BEAB5F7D51B576EDEB8FA3F4E72F396FAC1956B7FFAE36BDF7EF1E5273EF99D68E6692FB635B9F43C293EED5999DFBFEF298FE78FCF7EF677CF7E46FDDB9FD5AB57D5ABEADF9EFBA1605F11DD6162D83B6F1C9E6CEEB19F6C986EB72F989DB3C6C139D3F0A26D72D136BDDC3DB76C9FF7395742E301782A8CCE2189485209449D8D83E422517BECDCBD7B0F9E3E76FADCB1B3C7F71D3D79E8C4A943D5678F9C3A7BECE4C9A3C70FECDB7FEEC4A993F71EAFBEE7D88903C78FED3F527D6FF5A9A3A70EDF73E4AEBDFBF6DFB1EF9EBDFBF7EDD9577DE0F88983D507EF3C74F7DE03C7EFBDEFF0DD07EEBBF7D8917BEEBDEF9E63F7DD73FCBEFDC78EDD75ECDEBD873586D37547F7DC756CF79D7D2DC6FE5653674D93C3D0D5DB66EA6D330D5ABA1C46B3C364B5B67474B59A06CCBDE69A36C3D946736D8BADA9BDE9444DFDF1332D671A1B4E9CAB3D7EBAA3B6F9C481A3CDA7EB1AAA4F9B4ED774569F6EBDE7EE9EFDFBD48BEFAAD72EBEFBF3FF54AFBDA35E7A5DBDFE9E7AFDB27AE3AA7AE38A7AE38A7AF3EAB52BEFA937AFAAD72EA91FBC7BE5573FBBF2D2F7BE93CA7C26889E1F5F880F4F4A8EA1B5D37553878FA9972FA9972F7E277BFEBB171E7DFBAF7F53AF5CFBFED6A7226DC3C4B0D7EB58749EB64CD4DBCC87CED9ABEBA7DB6C1ED3C0B2C5B5DAE5F6D9E7BCBD33EBBDD3A19145787C9D580887A67CF41A2D069431D3E4EAC8C6C13DF79E3D5C53BDEFC4D13D47EA0ED69DB8F3D4893B4FD6DD5B7FF6D0B9E3FBAA4F1F3A5B7FB8AEE69E9ADA437575F7D6D71EAA3B7ED7C9D3076BAAEF39537BBCC978C6D07EA2D574DA5477B0AEE94853EBF1B6A6632DC633E6D6EA96FAC375F5C71A5A4EB6B7DCD75677B0B1ED68BBB1DAA039BCF7E0C1DBEE3E7BE4D4A1DB0EDCB7FFD83DBBF6571F3871F6C08993FB8E1DBBF3DED307ABEFBDFDE0E13B0E9F3B525B7BACFEECFEB367F69FAA3974E6DCC1D3CD279A4E1FAC693D6B6A3F6B3E77B8C15CDFD37CCAD4D5EAB0B5F6F436DB06EB3A67DAFBAD474F7CF9C14DF5DADB377FF35F7FF8FC336FFCEC47EA8DF76F5DBFA4DEB8ACDEB8ACDE785FBDFA8E7AE92DF5F29BEA6B7FBCFAAB97DEFAF6177FB499DC724F47DAED94CD15313916EA1A1B4ACB3ECB11EAB5B7D5F75EFF463AA15EB9A8DEBC76FDD7BF7B60C2136EEF93DCFEA0DDB3DE331372CCAC5BDD3DF79EB61E3C32D9D8BC68B22E77DA7D3D2341BBDBDBED5AB30FC1A373C4AC975808E31E3889C4910554F289FC0ACD2C93EC1ACD785936242968228E24F0154242A25C48A43758D12B64908CE097591F8FAF90C80ACA073821C4B25E52090AE8224C6F506C900B79C2C1C520B286D07E8A58C543F37E62030F2E04B065343C1B46E790D05C50E36CEF9AE8728E5B9D431DF65173DF7CDFE844B76BB26BC4E398591D5E5C19F278DDAB91297F707C039F0D0746D7E8258CF420C1492F3C1BC49751620523D7287C85E0FC02B64C880151F032D100C7AE60719857560259EF867AE56DF5EA9BAF7EEB9BAFFDC70FD56BEFA9D72EA937AEA8D72EA957DFB975E975F5AD57AEBFFABB5B7FF87F6FBFF8A55F7EECC2A3CB9E88B91BB60E444C8EE5C676C7F1939D77ED639DFDEAA57FA8BFF9F133DE79F5CDDFAB37DFF8F1830FF3260766EAE707E7320B91F87C04195C58E9740E9DA9EF3A7CA4EFC4C9A9A6B68576CB5A67FFBA6560A5AB6FA9CB018F4C12934B21F722B904F3010E5FC1B00D0CF34790753FE60DA31B91C85A38B41246FD446403857D081AC0502F420508CA8F633E04F7A3B931E20B2181081288900104F3C2F07A040D60FE950016C4A8304606228837006F04317F04D98820EBE1F04A00590D21AB214D70DC13995C5D77CDCDF5BA9686C6165DEE95B1D9D5B105DFDC5A6829B03AB3E25FF4F917BCFEF98DF0923FBC14087A7CFEF90D782514F4F8222BA1C84A28B21A44362291B530E643432B01D40BE3BE0813C4E81046F97CA161E73FFEFDEBEAFBAFA97FFBCDADD7FEAC5E7F4FBD7151BDFE9E7AF59D5B975E53DFF9ABFA8FDFDCFCF32FAEFDEC5B7FFACCC7FE05F6E1B64EB4BBD76BB0ACB61AA7EB9AECD5675C0D4DB63BF747ED8EA8B573E6D09D7FFFC253EAA5BF7E83C0168F9EC0ADFDA4631C714CCCB5750F56372E59FAC61BDA5C35B58EE3D58EE3D539BA17DA2D6B965E5FF780BF77081D9D0F8E7AD0D98010E0181F498729381CA130948844A8304206103288A30114F687B110424770C21B61FC08E385A94084F48789409089C064288C078254384286602288207E04F12378080F7B83F0869F8EA04410417D613C0023EB4164DD8F6D0470AF1F59F76B424B2BB837B83A35B330E65E9D995A9F9B599B9B0FCC7982F3CBBEF925BF67CDB7B816585C8FACFAE1157F687523B21E40D6C3C87A185EDB66990E21B82F8207603284D2119C0C207410A602113610E642216E69F1637040FDEF9FA8EFFEF9EA6F7FA2DEBCA45E7B4FBDF28EFAFE9BB7DEFCABFAEA6F6FFDE167577FF1E2E517BFF43516233A4D6BADEDCB6D1D8BAD86D19ABABEEAD3FDA71A469BCC23B5A6B11AC340758DF98E3B470F1CF8D166FA6B343B71FCC44A5BE74A7BCF6C47CF508D61AAC53E6DE8996CB38CD4B5F69E386B3C70AFE5F0317763CB5473BBC7D0E9B3F6ADDBFAFD8313FE510F3CEBA73728D24F623E140E2348280CFB832C4262FE48C41B817D301642607F98082264204207502E88517E84F487715F880C85317F08F505D16038EC0D86D643C1B56078231C58F285567DC87A7075DA135A0984560291B510BC16C2D643B8371859D9082D7B35F0DA0AE65DDF989EF2CE4C861667FCB353C1B9F9E0C242C0B3E45F5C0AAD6E0457D603CB6BFEA555BF6705F16D8457D722CB3E742D8CAC8622CB01CC0BA3BE7070DD0FFB60D807E37E940AA2843742FAC35420C204312588898BCB8F86375EF9D2675E7AE2BC7AE3A27AE51DF5F2DBEAC5D76EBDF6C7CB2FFFF8F2CFBEF3C68B5FF8415696FBEC4BB50D1B26EB5247E774436BF791137D67EB6D0D1DB646737F63CF68D3E0788363BCBEB3FE8E7D03878E054D36FBC16363B52D13750677936DA4A577A27DC0DD6E9F6CEF196D300DD5B6F69FA937DE7BACFDC0E1A1BA86D936E36CA361D1685F758C79473DC1192FBE4E84D731C487237E04F321749824C20401937888C043040193481025601CF687C910CA46283A48D221820C603C46533085870812A1893049230C8D305488A042041BA1083FCA842826C2221B2819A4081F46FA713A40507E8CF0A39AB0672AB2381B5A989D773AA7FAFBA7FAFBE78787E79D43F0F2F2DAF4ECCA8CC7BBBCEEF5ACFA97D67D8B6B1B0B4BB90B9F6723B41240D683C87A10F60723BE10E247103F8AF85164030EAF06A930460551264C8A615A09E3CA865FF12CA4973DEAF54BEAD5776F5D7C537DEF9FB7FEFEBBF7FFEB87AFBDF0DCEF3EF7046FEF5EACAB5968A85F686999AC6BB41F3B3570A6C551D3DED76CE96DB00E36F7B95B9D93AD8333EDFDCE731DAEDAB60543D75CBB65AAD532D9DA3DD1DA3B61189C340ECF5B5D331DBDB3C66E577387E35CC3405DB3F94875FFD99AE976A3A7B37BD9D6E71B9A5C77CDF92637D03592C6A32C2EF3A82011A244883C210884CC913C87F33C2E71382F609C80711CC2F2A810A5631CC2CBA42260A2408A3C2170384F632C87F312218A289F0387B0222E7008CFA2028D8A34427308C3451821C44A88A8F14F0D8567C710CF2CB5B1E19F995D9B98F6CD2FF91796D18D50642D145A0FE780F8112C8891411C0FE15810A3609A8C90144C31304161381EC1688CA1108EC1241A15595CA43196C1590E136522A660F13419DF2224797955FDE0B27AED927AF14DF5ADBF5FFFD3CB1FFCD77FBCF6C2975F7A68D35D7D6AB1A563A1D538D9D8EAAE6D1C385D3F54D7E66EB3BADA7AE6ACAEF1B6FE198373BAA57FDE30B86076CE1B0666DBFBE60D03F38681658B6BC33EE9734C7BCC23A181B9F0E0CC5AB773AEB3DBD9D0EA6C6875D4363A6A6A67CD5D0B9D3DABBD83EB4EB767606C7D62850A30513ECBE3B1289590494524159E94395A115845626212155508254ACA0A210984CCE2324B45394211E9B840C54452D9062571382FE2DBDF96880B3C21F084C021AC80891CC2730823E16C9410654C106141135918833D53E8CA22B2B282AEFB43CBDEF06A10F386512F8C7A112244E3C1DC94A1089824231405D334CAA31192C2398A60598211198123798E14184CE0C9680E02A5F0A42C52529456643A166752193A2A2C6FA81F5C523F784FBDF4E6AD37FF76F36FBFBDFAAB9FFCE35BCFFFF4E31F5B69B3AE1A6C6B26FB545D9BBBA679B2C930D2D0613FD3D47BAE65A8C9E4AC37B91B2D130D1677BD75ACC936DDDA3BDBDE3F6F1874D758A65A7A3DA6A139E3C09CB16FD13C386DB0B9DB4CE623D5DDA76A869A0DCE3693DB6459E81958B20DACF60EAEF58F04263CBEC93536CC0B4C4AE132321153C8B8482A02A548AC22F28AC02A3C29C7B8648C89F2B8C49351914E72748C67E2029BE06845A0148152643A2693520E12218A942452124F893C21C8B828208244C802C6C90417A36585901442D2445697236B2B886F3DECF546FC613880C03E18F5C25488C023188E12384A10184D22148BB13CCCB230C7E30A854B2421502447911C89332CC18B7494C1241697052AC6118A48C6382216653332118B92D1F342F67E36F10021BEF18B9FA9D72EAA175FBBF9FA9F6FBCF2EBCBFFFDD3D7BFFFC28F1E7D68E464CD93A4880D4D8CD71B46EA0CDD279B4EDD76E050F9DE03157BAD27EAE64C3DA13EF7648B75D6E0186BEE9E6BB3F79FE9301EA91BA8B18C77F48D770E8C1BBAC9498F6FC8BD475BB05757766ACF21F3F15A574BE74847D7A4C5BED0ED5CEE1E5AED71FAFAC602230BC1197F8ADDE488984827376317E27C466192329D90A838CFC822171558456063021B13E9A8C4C4625C5261E2513621D2518E8DF25C4C6063321D8B314A9456245A162845A4A33C1915085920648996E36C4C26258196045A1248512625911235D8DA1AE65DC7833E34184483613484E0619408605488206092C41912A7489CC9712D209C888A3C223188C860024DF02C25B2B8C89012434A1C1D63A928472B3C23F34C94A3920A9711C9589C4D64F94C868A5D6062BFFEC6F3EAB58B37DFFEBBFAFA9FD457FEFBD2AFFEE3F5EF7EF3574F7DCA6BB6FCEE8BFF96F26C4CD61B5D3546C7A9B6FE5AB3B9BA659F7EEF9DFA3B06EA6CDC982F6076C76682C1A199AD30EB1B9D83C7961FA3524FB0D96490F1589DE4CCFA893B0F1FA9D8D779A2B9F9E099F6233543ADD6714BEF8C6D60DE36E8B10D2F58FAD7FAC6D75DF3E1F9508C4EF34C9C67E20CA9487C4AE4920A9712E9B84044252A2E3109818AC96C52E152321B979898C22514262E31315148F06C426013329D50A8A842450542CEDD2051519154142A1AA56585926394225292C4CA3223CBA428329286F206A840800CFAF170180FC378182522181522A81099E39A22588A602994A6608A8B303CCCB31141406581905954E0712537B95846F91012C7CA2C23714C52E253312195903229219D15520F8999E72E3CA05EBBA8BEF5CAADD7FEA8BEF2EBCBBFFCE13F5F7CFEE5A73E218FB9FFFA95E71FF6C3534DE6F1E62EDB899629D3D0BC65A2BAF4F8C992EA9D9A8AE6DBEA8EE6DFED6CB0594E354A6BB07F6C71B6676463786ECC3278E2EEE347EF3C7C7BD16DFB4BEF1E6872CC59C7BA4E7718AB1B075A3AC72D7DD35DFD735D4E4FCFE86AFFE4B2637C65681E5DC7793CC63371868A0A7C5C129351252309699E4D284C5A2253717E53E132329B8E0999289F8CF249918EF2A4AC7009814B8A7C4AE2530A975298B44425052A96D3B5C2C4A3B422934A9456A2A49C6062122D49AC2CB3A2420B122B6BA840840E86C950180FC3780423609284713A4C32119A446802A3499C21303AD754E4708E27041E974452C98D2C1EA5708926649A923836CAD032C328021F178504C7C4452E2E0B719157626222CEC6D25CFC419E51AF5D54DFFBE7ADD7FE78F3AFBF7AFF573FFAC7779EFFCD334F3E11F2FFF8634F7C02A63C46DB684BD76053D748937DB6CD35DF34AAFE5955DF507FF7D40F11E3CC6263BFE9CE53BD27DB1A0E9CB29E69EB3EDB613F63EC3AD3D971A8D9784FCB608D7DCD36BBDC33ED6CB699CEB6F4359BC73A1D9E9EA1E9CEFE799B6BDA3AB43430B93AE689ACA2229DE4F0384F27099C67D9A828C464292172518E90443AAE88199E898B5C3C2AA565212E725159486E93CE25453E25B26985CB086452A012029B10D898CCC6653A1663E20A198FD2B118158B51318955245691394561158995355418C1FC2112C6B1304AC0E4B67E1196851902A6088CA6498EC618066779826722148BB1342192B8C45051914EB2A8C2E3124748142193A48C5332412BA2981485842CA465361E9792929C1095A42C25B2522AEAF7ABD72EAA1FBCABBEF177F595DF5F79F9C7AF7FEFABBF7AE6939FC422FF7EE1FC37CE9FF7F60C8CB674BBDB06E68D23CEFB4CDF7EE473EAFB37D56B37D5CBAAFAF7ABAF7CE63B3F4C3CF90524BB50D33D53671FAFB50F9EB20E9CB42C9927A65A86562C531B8E998DC1F9B1CEA1EE3AE370876DBAD3316373CE5A07C70D8E599B6BC631E1712F05573199CF4A4296A7938A9811A5382FC7784111B9284BC98A989285A4C845253E260B718989494C8C671392909685B4C424A27C5AE492029312C5EC871A4FC8744C2064998E45A9448C4CC5C8548C4ECA744CE11232179585B8CC4535144290304EA13401933842132843632C8B710CCA92084D622C857324C6B2B8C860028B0A1C21D1844CE2124DC6783A2931098190453ACA3371964E304C82A513229F12B9A42CA4152E119792921897A454544AA7F924BFEE555FFB9B7AFDA2FAD6ABEA2BBFBDF59B9FFEE3DB5FFAF707B35B6B8B5F8ACB2F3EF27078C8EDAAB774DFD73AD5DCE738D2A8BE7359BD76457DE79FEA2B7F79F7DBDF7DEDB9AFFD24FBD80BE283947D7AA9A56FB6A977A6D1315E6B9F6A1858EB9A090D2EF99C73F33DE38EC6AEBE269BABA377D2D23F6B1F1E35F44C5AFAA72CCEE5A19995F165780D4B8AE7253EC5D34949C84A528A136382189385A42C666429254B29498C8B4242E2132297E49938C72504212509699E898B5C521133229FE2D994CC67152E15E5D3312E19E75351361165530A938E71D9289B5298B8CCC6395A11B9B8C4C4345818276092C6581A63199CA3700EC71812630994C9514F1202854B2426529842E1128D47294CA1882843C5695261A8284BC9221DE7E9A4C0A4793A23305985CD8A548A27E3129310B938CF4425211D17B3312E99C6E8FFF7FCF3EAB58BEA3BFF50DFF8CBDF5FF8D2EF9FFBF4D7B652F4B83BD8EF48ACAF72734BA30DA6F146EBA311FE9FDFFD0FF5EA25F5CADBEAEB7FBAF6CB9FBCF3CD6F7C8DE69136EBEC89A685DA4E4F53CF6C937DA2B66BC538E2B34D11A35E62627DD531396D1D19EE18186C75385BECB3B6918156CB50876DCCDC3F6975CE0F4C863CC1F9D145854966942D994D0A5C5A1052A29896A40CCF2745312D8A69514C4A524AE0E3029794B88CC867583E2D499BB298E199B8C4A724219D7392A8B8A570A95C92897169854B295C4AE132B9BAAA700981520436267271918E6AD0084922348D304498A4609AC1399260499CA1498EA54486141852A2708944650A8BB25494A5A22C19E7A8044F27192ACAD231868A72748CA793229B1198AC48A56426A3306985CB28624614128A945584CDA47C7F52DE1242F0E3B1A87AF55DF58377D48BFFF8F5173EFDB18D95D4CACA6ACFC08CC93A69B6FA86DCDEBE914F09D1375EFA917AF96DF5F2ABEAEBBF575FFDEDD59F7CF70FCF3CF9C0CCE2CC89B6C5D6DE55CBD0A27968CE30B86074AE9846033D331BF6699F736ECEEA9A300F8D5BDC032D7D231DFDAEB69E114BBFABB3CF6D754EF68C4CF54FC25EE2F489864E63EFA71EFC444CC848C2A6C465B72D45CC725C4AFC904A41480942461236453E2B0A9BA2B029099B329F15D9B4C86724219BBB96D9F4878925998B34129F8AF2E9289F56B8445C4CCB6C5CA014898A6A72FAA5508682690665189C235086C06812A7688C61099EC54506531822461332432A0CA970548227E32C15656899A2059E89B2649C63923C9BE2D984226638221665B6647E5364D3029312F96CEE5F92B8CC03D14D7EDDAB5E7A53BDF1B67AE99F3F7DF2F1A0CDEA7538273AFB9C6D9D83ED9D2346DBB8A17BB8A175A3DB119D9BFD179EF8F113F7BFFAFCE7AE7CFF5B2F3FFDF443AB619F7978E0B461B8A17BB8C1DE7FCE3AD6DC3BDDD13F6F1C5EEA1A9BEB1E9BB48C4E748E8C189D333D13032D3DC31D7D831D76A7C9316E1B9EEC1F9B1F5EA0D7E883074E6B80C2381B7DE0FE876525C9B3099E4D8BC279893F2F8B9B029714B8A42426652925096941C888C2A6C0657288CB0F084C8AA1E23C9B90B88C2266643193BB59E453329F959894442515262DD3A9289F8E0919854B494C42A2E21A02A3199CA531265718698C253116C73802656882A709912664964C30448CC6A3242E51844C93319A8C51449426158A92185AE499284BC7783641E0BCC026382AA1B05B229592D9B4CC67252EAB08F78BECA6CC6F26F97886C07FFFA3EFA837DE563F78FB5B0F3DB06432ADF438C7CC032326C780A1A7B7A3BBBFA377B0AD7BB8B57BA0D6B062B62F1B2CF490EBC908F1F5E8E66749E5212F498DAF4DB539FB4E59461A07DC2D8353C6D1F9AEF169937BD4E09CB08E8E5A5C2EF3507F9BC369E8EB6FEBEE33DA9D26C7986570A2DBB53834876E103B0A2A3560FEB0D3F5C8FD0F65B25B5C2C29082989CB726C5A923625695392328A9455A4AC2C66143123F359964CB0644260D2329389729B129761885854DE9484B428242429254929514C2BCA7999DF94998C48A5243A2D31A9289F1598144F27453AAEA1509AC1590AA5719422500683190A97705440618EC07902132922CA10711A8FD284CCD03245C824AEB0749226E3341963E9184BC72421CD31498E494A429A67532C9D94D8FB652623B369914D8B6C4616B7647E53E2320FA41F38CF708FF0B47AFDA2FAC1C55F7FE5CB7346EB8CC5E9EEEC771AEDF6768BDDD86337F6DA9ABB068DBD93B6E1C59E8955C7E4B2C535DFE258E918A4DDABC955FC313CFAB4F4083E1698318E8DB50D8F1B47C74C23A31DAE11A373C43C32699F70599C43E63E7B73A7B3BDDB69E81D35F78D5B0727EDAE55F7FCF8D084264FA7ADD8A9D1E53736B56DA5361FB8F0483491653999E714864F704286E5D39C9091C5CDA8B8151336653A2571598149F3745266D30A9789F15B0A9B9584ACC867783E29CB5949CA705C4A96CE0B5C46E2B2229B51D8ACCC6464262330699E4E494C4A43221485D234C1E3088D232C8172242A53441443781C17094222718522A20CA90894C232CA87BA8ED3649C25132C19E79814C7A4042E23F2DB6F2FF2599EDAFC1FAEF98C246415292B89C90B9907D786C6DA0EDDAB5E7D4FBDFAFEF5DFFE2EE874AFF54F8F750E0D77F6F71A7ABA8DBDA6E6AEEE367B57936DA2677CD43A36DAE91E6973CE98DC33ED43B366D7946568B16B2832E499358C4E1BDC63869109D3A8DBE81AE9181A35385DE6A169C7545FBBDDDE6271B476F636758C187BC68C7DB3BDAE49FB103CB776F4E0318D162ADB79075479874697BFEFEEFD9303C38F64CE6F9EDFA2A2222DC76829C508499A4F094246E2B2516E33CE6D495C46E6B3029B90D9A4C265443AC9D329993F2F099B3C9B92E52D4148715C8AE732029F15F98CC0A4657E5361B3129D96F94D9E4DF3745283233489B134CA13A880E780B00C26919888E3224A880415A3E938454479324E6151868831549426159A54182ACE9209964EF26C5AE0D21C9314F98CC86FD71381CBC87C36F7296571331ADD52C484CFB3D170E8D4998ABBD56BAA7AE39AFAC61BA267CD6D708CD99C23D6C10153BFC3D8DFDDDEDBD5DA6369EA1AB40CBA3A4706DA06C7CCEE31E3A8DB30326E1C196D1F5CB24FBADA1CA306E768FB90BB63D8DD313C6A708E740E0F773847ADEEF1DE315B4BA7F15C93BDD9E432F6F4379B5D9DBD53B6C185BED1A981318D465751B1B7A4E8F6C2923BC1D23D1A9D4E03688E1F3F1A1585679F792673FEC2F90B8FA6372FD08CC87232CFC51439ADC86959CC48425664330293E299384F27453E23F39B229B11B88C246C8AC2A6C06773A296E8B444A7252EAB089B12B7EDD71CAD681098C6111683391CE1094C243091C2051266295CC07111A7648C8A12541C23A21411A3B02885456932CED2899CB4192A41D3718649F06CEA237C540C453623B26999CF8A7C4611330F641F3434771EDB7B74CA38A0DE50D59B37D50FAE7FF9C2E30B5D43D38ED171DBF09079C0DED6DBDD66B7B6745B5BBBCC4D9DC3B69141F3F090C935D8EE1C31B85CEDCE31D3C854E7D842D794BB6378C63A36D3393A6118727738478C036EEB88B373A8A7ADABFD6C634F8BA1BBD1D0DB68761ABBFBDBAD4E63B7CBE63CB2BF1AD0941415DE56567C5769D1BEE2FCDBF5FA320D006900A062CF9EBA33B53673D7D8D028EE8B3C9A7EE0E9873FFEC9071FBD3F9D4DC613BC101584842C67793E297049914DCBFCA6CC9F17D84D81DD1485F3A2705EE0B3398589DC96C06E0A5C46E43322978CF2E9389F8909190D0A732426128884450402132952A450060FD304CAE1388F91124E2B181525A8188E290C91A4F11845C4483C9A239AA5931C97A049856753029312983447E5E6D7A6C46D495C5664D339638909994D255B7FA6F9C0EE038FF119F5A67AEBD62DF59AFAD71FFC029F58F68E2EB83B07C6BA5CFD1DBDDD2DB6EEB6EECE66B3B9C9E830F7F599061C1D7D7D6DFD03ED7DAEF601B76160B4B977B26370BCA3CFDD6A9F6A774CB53BC6DA7A478D7DC3A63E7B7B97A9AED5DCD0646B6AED6FEFEC6B363B5A3B075A2D2E4B7FFDD9C63C4D61BEAEAAA8604F7EE1ED0545B7E5EB77E9C08AD2D23BF4453B35BA420DA8D3E46B347A8D46A7014A0B0F1C3AE8EA1F6403E127325B1F7FE491F399AC2C2ABCA0F082C2738A2CA465719367532C93B38E2D81CFCAE296C867456E4BE2CF8B7C561637653E1BE5B3312E2BF3590D0A0B0422D1A84C201289891429B20447133C8E71042190A448D00AC944095AA1A8184B261822CE90290A4F50649C65522C93A22949E4531C951098B4C86E4A7456A2B33C9D11D84D89CBE68C85E7D3D9D443E1D5505FF7C09EC2AAE7EEFF78EEB132F5BAAABE7BE37389873CBD63F3BD63535DC36EB373C060B7B7DBBA5A3B0DF5ED96964E5BABADA7D5EE68EBB13775395BBBC73A7A879B2DC36D5D231D5D83CDA6E166F3689BCDD56E7334987B9ACCC6734DE686264B5393ADB9B9A7B96DB0D5DCDF6A9AB0F6773518F56091565BA803CB0A0B77EB0A77E90BAB8A0A76EAC04A3D5405E49516EB76960255A5BA2A28AFACA868577ED91E0DA4D7E8418D4E53CE72EF8E000020004944415458513860300808F2C4230F4A3297CA2465598E4553C9C4663AF58028A6192621F0D91CD7DB36C265453E9B4B04516E5366323C9BD6E0A8940381290426939848E11C458A393FC9F53D284AA1288564A22419A5E9B8C0A5593AC9D2498E49716C9A61623C9BE2E994C46D89544660B2B919C4335991DB92844D49C846E5CD989CB277F7F5D81C1550D9C35C66FBA1C99BB7D4EBEABB3FFF33EA5EDB189CF738A6DC56E78875B0B7C3D6DD6AB1B5749A1B0DBD1DB69EC64E4753676FBDA9AFC1E8A86F1FE9B00C347574D7D40F34B4F4D7373BEA5B1D8D1DB69A66F3E946736D8BE16CADBDA5B5BBBEB1ABB6D1DE6C72B45A07DB6C77DF7E779E062A82CA0AF495F9F93BF3753B0BF277EB753B21A01C02CAF540453E58990F56EAC04A3D50990F56EA814A3DB80BD455EA4AAA76141669A03C0DA83D70E0EEC9A1618560CE0BA907E3F73F9A7DE8B10B8F7CFCF1272E3CF460229995C4644C3A1FE3B7243E1595B25129AB485945DA12C5AC246D8A7C4683213C8E0A249EA35B26718540240C91084C61C9782E56D3648C22621411A3C83845C6593AC151098149714C926593349560A8044BA5057693A5D22C93E1842D86DFE4842C27645936298B9BA9F8036BCB015387D5D0DC795BE1ED1F8F5E506FAADB0F4EDE52D56BEA7F7CEE05658944267C73BD33239651A771D065E8EF6BB4D89B4DDD8DED5D0DCD96BA46734DBDF1D4B98E13676A0E1D693F75D674BAC670F2747BF5E9CEB375C633F5D6BA96AEDAE68E3375C6BA264B7D8BA9A6D9DA64EE38671EB44C34D6D9B43B4A8B753B0B7415F9F99505FA9D45FA5D85BA9D85BA9D05BA8A625D791154A6CF2B82340585DA927C6DB10E2CD382E55AA81482CA20A0B4505FA9D757E9A1F2F292DD50618906823420A0D1EB34851A4D814653AADB7BCF3DBDA61E31443D113FFFE4E6831FBBFFC1471F78702BB51993535129CD3351918BF36C4283A23C8E8B2429E3B8886139D205028F1278747BB542446932C77292A6520C99E2A8B4CC6C4A749A63521C97A2D914C7665926257019964EF25C4690B6683ECD706949DC9284CD64F4021EE6A747162C6DB6FDB71FD1690A7FF18D9FAA1FE47692DECC39C9F5572E7DEB135F391F8A0B1E2A341E705BC6DC4697ABB5BFAFD9D2D364EC6A6C31373419CFD5996A1A8DE79A8C679A3B4E359A4E35D8EA5ABA6A9BAD354D9D671BCCE71A3BCE34981A0DA646A3A1DE587BA2A5EEA4C5669C1DED5B2FDD7514D4ED2AD1561682E505FACA02A8AA08AA2A04AA0A808A02A0AC102CD5834505BA123D58940F1440DA02102C05746580AE04048A8A0B7616829525E0AE02A0A200AAD28165F9507959C1AE5D85B795E92BCB4B766A0B8B357AAD46BF43A3DBA129D4DD7ED73E7373CB68EF4064D5FF48F6A1F3E9AD6C764B94255989696054443009252518663194C5310EC3389410094221088526630C15A788184D24692A4513699ED962A92C4F6D0A645A61B31C93A2A90443A7397A93A3D22295E2A8842C9DA7D80CC5A5182E2570E984F200EC27A75CF33D1D8E83BBAA6DF5BD975FCD1DA7A5DECA3DA4AAAAEA0DF5F25F2F7EF7A9179E141ECF0693C41CEA75AF4FF6B8FBDABA1CED96AE968ECEC6E6AEC616736D43674D93F55C8BE56CABF95C6B675D6B577DABB5A6C97CBAD174B6C5D2686A3ADBDE586BDEB7BFE6E851F3D418B132CDDF7DDCA4C9DBA9052B7460453E58A9072A8AF2AB8AA0B202A8AA505B51A4ADD2ED28D541253AA808020B20B018D49668B5C55A6D3100944040290416EBC0323D50A1072AA0BCB202A82A1FACD4811585F9BB8A8BAA0AF3ABF4506561C19EA2C2DBCACAF61617EFCE038B3400A8C90734F99ADB0FDDDDDB6527FCE803D1CD0712E735282CA0A81882191C177154205001C7451497094221718526632C196788384B27293CC1D119864ED34492A733029996E82C4B26786E93A453389960B814CFC7053ECA71319A8B734286E7D39290F6AD44BC8BA1B9D1F9C6138D0932F3E9FB3FFD979FFF51FDDF07F26D6F2D50D5D7AEBFF8E96F3E93796A13C972CB74D0ED1BEB1C721AEDDDCD46737D9BA9AED55CD3663A971BDBCC35EDD65A83B5AEC37CB6CD70A6ADE55447DB19D38993A623C76D1D1D8BE1C063FEE04375ED531AED1D1A60B70EAACA715D00ED2CD45716EA4B754071BEB6B408A8D40315A0B604028B21B010D016024009006CD30D41652058AAD5160379A53A6D798E713D5896AFABD043E57AA83C5F57A587AA0AF4BBC0BC4A08AC2C28D85558B8B3B8F8B622FDAEB2923B34804EA30334853AA0B8E0F8F16A0D0673488447100185050C11715442511EC5651C974932CA507186887154F2A384C7D0498A4C52788221923C91E2A8244327713286B17156497172ECFE071E8CC5D389C4F970980D85281C15C201DCB7141C1F9868A8AEFBFC639FF9DCC39F7E28BAF5D18602F5D687C34D55BDA1AAD7D45F7CFB174FA79FFE98F078C21B5FEA9F99EE71398D5DB6A676E3B9868E330DEDA71A3B4ED5779C6A349F6D339D69379FEA309DED34D5DA6BEF331FBBB7A3A3797E662A8311CF7A361EED1C8CEC3AD8AAD15442FADD7AA8B2B870971EAAD481953AB04C0714E643C5054049BEB6540796415019A82D81805250BB4D748E71002881A012082AD3E92AF550A51EAACC87CA216D891E2C8380521D58A687CA21A01CD49683DA723D5455A0DF59A8DB5904951517DF06E8ABF2F57B4A8BEF28AFDC97575CA901410D1E66B18880C2021C113044C25109C6058490114CCAD908892B3419CF056A964C9078942462241163E9044DC6683A4AB2315A88F14A2A993D2F8AB277DD37313ED3D8689A9A59F705289F0FDB580F6F2C05861DAED3874F7D62F3F1C7940BBEA9E5FF39296E7B2FD8CDED5DD3B754F59AFAEE1FDE7B2AFDCC83D423A131FF986978C4E4E8693276D6B4184F36B6DF57D771BCCE70A6ADF96447C32973F3B99E73C77A4E1D71185B96E767B728E1AB1BF01796439FEB9F489E699BD5807B77E455E9B4E57AB0440F964150050455E875A53AB040071541DA221D509C23779B38B018028B41A008F8086001001401500500940179A57AA042A72D2F80AAF4404581AE4C071417E8CA7440694EECF9BA0A1D5896AFAB28D2EF2A2BD85354789BBE60B75EB7BB38FFF67CFD1E0D1AA17154C0510989086858C0101121448C50104CC288288646093C8EA1510C954922469149028F13789C22930C9DA42885A4F8782CCD738A67716D7874BAB6C57CE464DDD1EAFAF1F1259F8FD8F011CBEB919595D0D2826FB86FBCB9D6406F5017840BF3FDF3EA0739FFB8BE7D3EDF878C6F0FD754F59AFACBEFBE1CF3A7967A57274D13D6B39DD65A53EB7DCD75F79C6DAB6E3A73ACE15C75DBD9EAAEA6BAF1D17ECEE379D88F7F21227E632AFC2FAED5A7C6D63ED5E5E4EE38D6A581F616E8771541158560A90E282CD095E443C53AA0F0236C6B39AF18D49640403900948060695E5E415E5E010815825021001680603104940279A51050A183760140990E2CD34125DB008A7540693E54FED15F0AA0AA7CA8BC30BF0AD09643E04E1DB40BD096EB0A776B309425301145790C933044446101C6051497093C8A630A81C670244A600A814751444211892462141523C9A8226553C9FB498C9D995D6CEDE83C7EAAB6FA7463F5E9E6BA06B3C1D0BB341F585CF4AFAC4796D6C20B0BDE85F9B5B191993E9B73C9BDFCA5C7FF75A677F60FFFF947F5C6B69CFFD75188376FA9376FDDBAA5DEDA3E56E4E67BEA05E5F1BE6657DDA11663ADADE9A4F1F491A65307CED59F3287D7E222FF594AFA322E7D8390BFE5639FDF10BF3EE8FBF4E0F2272D23A98E3E5C53784CA3D909021585BA9D7AB04C0714EBC1927CA834275E1D500CE6150279DBA6AC03CB746019081481401104168240810E2AD2EB4A41B018D4966CD746A042AB2907F24AB7B9DE76928A1C20A80C008AF2F565F950794EEF7AA022E7E63AB0A248BF7BBB36C2A84850311415314C82510945241C53084C26303997BE192A4A1132852951292B4BA9B555FFF0A0DBD0D6696CEF329B1DE7EA8DF5EDDDE71A3B6BEB2D3D56D7ECD8EAD2AC2FB777756525B4E4F12FCCAEAE2E78FBECC3D666DB579F7C7ED5B9119A8BA8D772277ADEF8E874BEFFFDCA1D69A67EA07EFEFE277FFEB97F7FEDDBBF62DC5E8FD93DDA3278EEE069CD8EC27B4F18371FFD5664F36B9ED8D7D613DFF1882F8C125F716C3CED987FACA99BB8F3E4A066C7ED5A6837A02D0773B31EDC9EEC10500E6ACB20B018008A3EF4E522002882A0129DBE18D0E68379F9605EBE1E2CC995CA9C9B7F28FC3200D836770028D3415520500168CB21B0520B9683BA4A4057A6D79542607181AEAC00AA2AD4EDD1013B756065917EB70687150496C3B010414414911058C6D02846C5104CC6300945798696498C674829937C50A493EB2BE13EFB707B9BB9A9B1BDADB5B3A3CD666CB39B8D7DCDED3DC7AA9BCD26E7A46B7962D83337B3B1B604AF2E865796C22B8B81354FC0B71474740D1A6A4D5F7DFA6BD140C2651EBBFAE6CD0F6BE2CDFF4BF387B8A9FEE05FBF3E78ACFEFE292FD6DCCD1807C49EB107E64293A7CDE585BB359A8A10FE60FAC99FAE64BE351B7F7188FC6A7FF05FBB3C4F5846321627AB29BC4FA3BD0D042A40A002D496E58395F9DAD27C6D69BEB61CCA2B03B565397EB550B1565B0882C50058A005F2B5DA426D5E019857A8030AC1BCFC8F8C1B028B75BA5210DC466E2A404039A4AD02F32A41A00A042A00A8420B966B7565507EC58713A55207ECD6417BB4609516ACD004C3420411FD61360C0B28A2206129024723A882E20A824914A5908440E14232B63537B1DC6D196AAC373735749A0C8E1EEBB0CD3460EAE831B4DB3B0D7D16E340976160766CD5D5373DE6F2AC2FC36BCBA1354F6879CEBF30E70BFBE9354FA0B5C9D454DDF88DCF7FE7F1CCE73D83FEFB850B391BB97EF3C636C3B7B653F7FB17AFFDED2FAFBFFDCA7BE6FD67FCAD0E6F8D71E5BE26DF998EB533EDAE43A7DA6F3F7C7AD7618DA6545372F0C2932F118FBD34257D7318F9B7FE8D2F18A71FB5BA52351DAB9ABCBD00785B01B4331FDC050115A0B60C82CA00A004C82B86807228AF2C17A541B01C00CAB4DA62102CD602F93BF274795A3DA02DCC95CD9CF641A0480F9615EA2B7372868052102C0580921D40B1162C07810A08A880A00A102CCD83CA77E82BF2A072BDBE2A5F57A5032B7550950EDA05813BF3753B3541980BC25C1815C2B080C0221C91602C1A8AF008266198C0F349494C1238EF764DDB2C0386B63EABC5D5691EEC774CF4DBC72CC6FE8ED62E8BB1BFBDD1DA631E1A1D98EDB38D0CF54F4D8C2E2ECC6DAC2F0637E6FCF3E3ABEBCB70C447ADCE6DB4D4B61EBBEBC8E71EFBC226FF04E7DFDA98443F78EB867A4BBD79F3BA7A4BBD91E3FA86AADE52DFBFA15E7E4F7DF6A12F0C1FEB183FD2DA7F57B56DEF51F3EE8375C5BB0F43C5C7F4BBEE29BE2B1FDCA5C9DB39B5914C3CFDF331EEEBCEF057ED2BFFD2EEBED03B9AD6DDD6A281EECAD3EED4439505D0CEFFC335500201E53AB00204738A2ED56A0B01A0480BE4E769F5795ABD16C807B4F93AA804048A3EF499A20F4DA3E4A3FBB73D072CD34395B9780E82C579409916AC0081AA02FD2E9DB6420F5569F32A40DD2E10D8A583AA3441980B44D840840D45B848844351112164825672BF6C057C786F8FCBD4DE6B350DD83A9D56D3A0CD3A6CED745A3B07BBAD836683DD60B0B5B47419DA7BDDC3F38E2E57AF757864687A7AC2B3ECF12ECFADCF8F2F4FBB97D656600CE696A6577B0CB6BD15B77FEBB9EF6C898F33A10743CBF1A71EFE57F5DAFF718F9BD7D5FFFAED9B3FFEAFD77FF1937FF69CED6FDA79AC6DE7D1E6DD471B6EBFEF4CC5E1EAB27B8F571CBA277FEF6DF90776686ED78007EE3CDEAB3CF6D22CF7CDBE8D2FF52CFE8B7DE211AB53D2E41DD08077E8A0AA7CA85CA72D07B56540DEF65210044BB5DA520828D76A8B7391439B570068F3B579FABC1DBA1D793A2D900F0045793BF23F2A9B00500200DB17B96F28C7B50E2AD2832505BA0A1028D2412520580A00655AB00A0476E543BBF3C12A9DAE520B5600D04E10A882A00A4D30CC86103E0873C1300BC33C8AF22423B28C343BB56435F7B53575195AEDF6AE117B97BBD736D66D1EB4981C76DB505767BFC5E4686D317798BA4DD6417B8FBBBB6BB8C73ADCDB3DEC76CDCE4D2FAF2DFBA6273C33638B4BF301BF9F84C38CD3317CE6BE53BB2BF6FCE7F77EF9EC275E40D6EF5F7073EBD3548EEB6D13B9A9FEEE2FEF7DF5FB7FFAE2377E1FF166CA347BDAF6D5B6DE79A6E6F6E3F7ED3E72A4FCC091D27B0E96DE7547C1DE7CCD5E103C5E7DDFF059C3EA02FAD945F685EEB5E7CC134F0EB81FDA7B6444B3E32E207FAF1EA8C80532505BA603B70D3A2FAF48A7AB04810AADB614004A72C143ABD1E56920302F1F840AF3F20A727ACF4D02102C8772E11A28D16A8BA1ED60570481857AB0A4082A83B44590B608028B41B05C9B5706682BF3804A405B0E6ACBA0FC0A5D41250896EBC04A08AAD04410210CF3A108178A70C1088D12E2EA6AD835346D35F70D3A26FA7AC61CDD6E47B7BBDB3264EB74DA3B87AD863EABB9CF6CEAE9B4F4983BBBCD9DDDCE21F7C080DB60E8ED6875F4585D9323F3CBF3ABD3139E6EEBE0E49827182471845F5DF29FAA6928DF755BE18EFCE73EF1E5EF7DE3E547D25FF6AE6CAE2C249FFDCC8BEAF50FCDFAA6FAB517FEFB99AFFFF12B2FFCB5EEBEDE52707FCB3D358DFB4E9DDD73BCBAEAF0E1CA7D07CAF7ED2FDEBFB3F04071FE89C347863B2CB8DD9D3E50EF1F43BE6459FEB469EA5363B30F690A4E6834B7EBA03D05FA5D05DA4A9DB602D496E54C390FCC2D05CB80BCE23CB004044B016D3EB0430FECD0E7EDC8CFDB919FB308102880805228AF0CC82B03B565A0B644079681DA92BCBC22082ACB798B0E28D683657AB00CD296E4F262CE9A74DA0A10A882C04A08AAD08115F9BA9D7A7017A4AD02B5E51A38CC60080FC32C45292C9B5C5A0A593B077B7B467B7B4607FA26FA7AC7ECDD2339F4F68CF6F58EDAAC8366538FD1D46534596D5DBDF69E81A1E1B173E79A5B5B6D6663BFAB7F626674DEBBE2EFB30FF7760FAFAD8451982371A9A9D50295EEDAB9F71E30AF5080A3CF3DFB83CF3FF3523CFEDCFC5C72719E57AF6F57C53FFDFE9D4F3CFD934F7CF18FB1F4BFDD7D7BD3DED2A34DFB6A6AEE3C7EE2B6234776DD7BB4EAC081927D7716DE9D0FEE3F7E62ACD940197B33F6F1C78FB7D3AD235BC3C167BBA71F37F6919A1D776980DD20500141157AA032D7C180C0621D540480053AFDF6CA500B958260718E6860871ED2E63A7CC580B610048A2060BB01920B8B90AE08D2158160B11E2A8780523D5091AF2DD781953AB012022A20A022777321585E0055E9753B735910022A406D39A4AD82B4553A6D9506C33804E1705C9C9959B5778F8C386747076607FBC6FA7B47071C23CEC1B1DE1E577797B3B373C06A755AAD03566B5F4ECE5D36474FF7E0A86BB6AED178B6A6A3B9D96A310F0C39467D4BC1A9D185B616DBC2FCDAD2922F1C20FB1D6E4DF1CEFC3DFB4A2BF769F4551383ABCF3CF96D2CF290CC3EAB285FF3463E41E31FCB19C8131FFFF6439FF9D5E3CFFEA5A669F5E4E991C633AE8315C78E941FDA5F71F71D65FBEF28BE6BA7EE2E00D87FC7FE4E63AF649FFC64CFF433C3EB5F6C1CD83CD004774E6C8D7A1ED6000735DADBF450950E2CD3E92AF3C12A1D580901E53AA804020B21B01002738BF252505B960B24605E31985708680BB5797A485BA0038A732A068022102AD46A8B01A00C022A746065CEFA739D905CBE86A00A405B0E68CB7374EB80D202A00C028B732D1408DC0901157AA0B200A800B5651A98927C21B2B76FDCE59A1BEC9F720DCE0E3A2687FBDCC3FD23CEFE91C13E577FAFABDB366031F7F5F6B89CFDE316739FD96CB7581C36EBA0DD3634D83FD9691D6A37F49E3EDDD46519181C9C181D9D3B7BBA756A6C79717E75797E351224F6EE3B925FB6A764E7BE92B23B750577380C93BFF8C1EB78E889F5E54782F0D311EC339E8D47AFDF52AFA8EAFD4FFCFF26BDB449B2EA4CEFDCB39F73F7256FEEB55775373483C440831034BD5655566E95FBCDE5E65A5B37DDD02C12308C101A8B9160D04802216B24C4CC74E0A625B460B0253934310E3C580A3BFC451F663C1361FB1FD8FFC0617F38590D11E74365454665D67BDEFBBCCFFB3CCFDFFDF0A7FFF3CFDEFCFDF2E95EF1F233DDD273F7A41F38E99C5CD69772FA424ACF0B9C05207FE60B7BB5D1DB9BF1DF1626EFC5CFFFF64CF5BBF76FBF528EBE73E3F99F0094433CAB7A4A109F11076347D3744A1D84E68543D041D021C8C5D051FD489145A0AE0EC3E6675907C616633E4521813E41AEE21B945A84988C5A0459043958F310700972297439F60836287528F518F189E6E8D0B75020340B44A32B8DCEB4D99ED66BA3A8BDD7AA8D3B8D69ABDA6F56A266ADD7D8EDD6AABD72B15DDA6995763A9B172BDB9BB59D9DE6F666ADBCD3AA577BCD7A5CA9F51A8DB8B8DDE8B627A59DCED9470AC5ADF67470753A38B832BB5EDE6905C142905AB5FD05DB5D00C87BE8F4A57FFEAFFFFBC7DFFB8FCF3CF9B78757DE7EFCE95B4F3CFFFEBF7EF7F7FFE7FFFEBF773EF8E737DFFB1FFDEB7FBD764F7B7FF6CDCDC7868BEEC9656B7981E773229F9679475F017071A7F6950BCDEF5D88DFDD9AFDACFEE447AB8FBC74B6FEEDFD1BB72F545F04348F449A121F23976297101B11971017211B2113211B211B41076A2E462E820EC5AE1243083630D2093409349166106461ECA8F71FEF8AC7CD4E4C480C480CE5DA50EC329C50884C349B634FB117881D8C7C8A0283240C14E8C801D383A7A3DE61AB356935C6FDCE7EB735EB34A6517DDCAAF6CB3BADE276A352EAEC6CD52B3B51E162AD5EED15B6EADB9B8D62A15DDC6ED4ABBD6AA55DDEED148B8DFA6E3F6ACF0A85D6A5CDFA6070D4694C9EB9F2ECD5C31BA74F9F41CC7313CBA69D33ACAC17AEF8F6D27FFECD3F7DF0B33FBCF8C2EDC3A377F66FDC9A3C7E6BFFC59FFEAB77FECB6BB7FEE98DF7FED77D676F142B2F3477BFE459A796C313393D9BE7D945B190E10BA65801DAC285F28B0F57DF782CBEB5B5F74161FF176B8FBE5C19BF73F4A59F6AC103806520F520B1547D3176207635E4A8275DD55749A018B9C74CCEA0D422D8809A4050CED11C99101AAACA73C6424CC66CCA0CCC2C480C482C7ADCD7446108F12976959A88A987A94F7040512048C890A7131F4C46D727F1E3DDF6A41F4DFAD16434D86F3747D1EEA8531DD68A9DF24E6B67AB5E2DB46A85E8D2D9D2F666A358E89476A27221AAEDF41AE5FE6EA5DB687677AB9D52A139880E1AB5E1C58BE572B9D58F4657A657CE3CF0A8B4D2DCCA18F6826EE6A49195411E20FBD68F7FF3EB5FFFCBABAFFFFAC9A7DE1D3E7173F0F8BBD7FEFCE3C75FFBF86B7FF32FDF7CFB0FF77C2EEE365E487B7F8C409095B90C4F85285C3156F362C5E26B002C7DF1E2B317DB3FDA9AFEB270F0E1F6FEFBA72E7C7DFAF42FCE575F067485E09070971013124B230E633EA301C101463E820E5607581858183A18DA849894197397409308320D10C5B215F9BBE3D1606C30662BF68D9985A8ADA6A5A2D5183B943A8CD994988CF918B9047B18F958F3280AB0E631E48161BC3F191EF6A3D1A03FE9F76751348E5AE36E63D2AAC7D552AB526E558ACD6AA155BEDC2C6FB6372FD50B5BCDC256BD5C6C574ADD62B153ACB4EAA576AF1E17B71BF7DEF7C52B936BA3DEA45CAE964A95B38F5E5C5EBC4BE769DB5876AC35CAB25CCFB8FE12C0CEB75EBDF9D147FFF8E60F3F79EAF99F8DAFDD1A5CBB3DFD935F1D7CEB775F7DE7BF5FFBF2FB77DDDB39B17651E285245BCECA4C9E6757E5D29AB1B6C0176DB204C0CAF9E29F6EB5DEBE30FA79FDFADF5F18BCB7BAF5CAB5173EC89CAA0398A5C427C484CC44D4C6705E058C3FED6B821C865CAAD0035B889A4A41C548C748C7D0C4D05455C6D8F8F49744122C11E40049851E4A8DE2D45570819807B14390A398224501D6029D67290A14880BE881717C30ECEF0DFB7BFDDEB4D79B767A93767B1CB586AD7ABFB1DB55B5AE14DBD542A75688CA5BAD7A296A55FBAD6A7F77A7BD5B8E9AB568D089CBDB95FB3FFF90ED259F3CBAB13F3EBC707EF3739F7FC0F7B38691B28DBCEFACBBE69AA52F197ADE72160172BAAD1B376F7EF2D6DBBF7BEEA50FA74FDCEE1EBE5B39B8357BE593977FF88FB5E82F57364A8E712269AE67F49594CC667976CD585992CB79B9E4B2150056EE7FE4FAF9E8ED73F1FBD5ABBF3DD3FEEBB3F18F0F9EB90DF4CF019466C42358AAED9929ED027D5A6B4A7C0C1DA2D9143A1C5A3AB109961809A831A8318C74A41DD717E90AC19500A268B53216143127C43DDE424D446DC43C446D8C2D821C8A3D4E42AC7904FA48B3E7B7823D308CF6A6BDC371EF601C1FC4F17E77306B77C79D66BF55EFB69ABD6AA55D29B7CA3BADCA76B356ECB4CA834E75306C8EA24AB75668B62BDD381A6E5DD83CFB8547D3C9CCE2D24AABD898C67B671E7CC44BE40C3BE53839CBC89832EB99CB96C8EB3C6D5A4B007AE71E8D5E7FFD83EFFEE093AF7DF3EF0F9FFAC5E0F0BDF2F4DFF49FFEF77FF2DAEF2AB5AF437622E3DD95E09994CCFA24CCE9F90D677DD158C9B0BC4397015858BF6FF450F3AD8BE35F349FFA78E5D2EBA3673FDA895E0578159294649EE426253A45068716C10641D6A70D8E145B7004722D6C1BC42488438D22C810E418E908E9F34D124A0275820DD5E9EA69D089ABFE14212E21EE71C51D425C482C0D9B185B8A6BAAD809231E230EA596520AC1A47B34684EF6E3AB7BC3A3D1702F1ECE7ADD51A73D68D4A372B955AC740AA556B5DA2D17A36AB9572975BBEDC96EB95D2BB63E77CF997C66D573C395E513D9D4E2D2C2EAC953F76C3E72E99E93F75A5668BA7929B2869E35F5B463651D2B6BEAA1A9A7A4486B327B72F5FCCF7FFE8797BFF1D1D7BEFEDBEBCFFC72FFFACF9A07B72A831FDD78E1C3D3F70E005AF4EDA584990965CA81EE9ABFBEE1AC2FC9C52C4D3B3803E812B0CE9C6D7FFFF2958F1ACF7D7CCFF6B79F7AF13F00ED14D0B292644DE67362706271600BE42A9C4548D7B0A96113D179A528B274624B622044102208320425043A4273E0C61A57145039329CFA4CB385E650E860EC701E2866AD781E23BEAA3E632E86A672733833954D03A144D4C4D802A3C1E168B03F1D1D4D4707A3C12C1E4C7BBD69A73D6C36FAF5FAA058EED6EBC34AA9DBA8C6CD4AAFBDDB6B56A2DA6EF4C0C3E7A49F32DCA46327134ED23213B697F6C37C102C58564AE8492A4329D29C257599B1F49CA9A74D3D65C88494213052882FFCE8CDDF7CEBAD7F78FDADFFF6D5573FB9F1FCAF46D73ED8BBF293C1E40700AC72B9E8C9B4A587A1C8A66476C3DF583196F32C9722699BE4115E0168E37CF4A38BB30FAAD77FF558F7FBCDE17781B6CAF0A2454293041C3A6AC184FC0E00000D8F494441541961D8E6D0C0D0BC638D2B0440C485D841C8C448A710518830240830A809A831AC714E0C81758EA44E6C8A0C4EEEF00D87629BE0F948549E03410E233E412E231EC52EA7FE5C9F42FA67852A822C30ECEFC5BDD9B03F1DC77BC3FE743CDAEFF5A6516B18D587EDC6B0511B544ADD6A392A159A8D72B7526C771BA37A293AFFD80E93BE10BE4E5C5BF8961EEA22D04568EA29D3C84891143CD4F524E7812E538287BA4C19322579C29049626600484E26AF5C7BE1D6132F7EF8DC37FED373DFF88783673FFAF3D77E7FFEC2D300E493D6AAC792A14C85229B3716578CE545632527F22996B6480A910560FED176FC76F5FAAF0A073F1DBFF04B7F690768594253260D75E84BEC31E229F744853DD40C4474CE8B113511323134B126A94608C2181EB7B62630D219D6D5CACEB0CE89C1A1A16AAD3CF8B9AA872CB5AFABB58552EF33B8E10B96A0D855641C219D528B62174C46573BEDE1383E887BB3717C301D1DF53AD37E6BD2DE1D342BBD5AA55BABF676CB51AB1ED72ADD72B15D2B76A3DD51541F1B32A9EB499D8592799C3826F30D1108E10BE14BEE4BE6491970EE319190465A9729299292878CF9C24C0398385FB8DE99BDD939BCD979FC76FFFACF0FBFF4E16B7FF1713A7B1E82548266532C9DC4491F27D7ACD5356B352797922213D08485028C73405B89AEDE8EBEF4DBC2F4E6F9C62B405B013487C81D01C427684EAE09B218F1E68E2D31103529B52831119473C909620D10A8314D139AA643288FE540A96A2A99A36C338A3D8CDC3B2391114F7934F397CCC5D8A1D8E5346028A0D853B566CCC64867C461C803D3D1D5D1E070323C9C0E0E86D1743A38EAB766C3F6ACDF9A342BBD56BD5FAB743AED61ADDADBAD746BD541B5D0E954879DDAE8EE530FAA86953C9434619084CE422943881DC67CC93C5D4F501E3091107A8ACBA4E0A16081103E97498013777F61D099BD558EFFAA32FE9BCAF8E6E4C6FBFDEE5F0090F3D96282A693309197F98CC86DD8ABCBC6624E5F08582AE4091B27045B0468B97BE5DDD94B1FB7AFDD5EFAA31868CB4C2C20E26AC4A2C4574551AB0A86360616231E86A6D2F018B538B1746263C810641AA440A3000A0075002D84740DEB00CD115699380CCD432018F9103B88DA84D88CF9403311B521B1307338574F92AB041095EF21C4C4D85092A1443E18C747D3D1D5417F160FF6D4E945B3617FAFDF8E3BCD7EBBD18B5AC3DD4AB7BEDBAFD7BAB55ABF51EE360B9D56A1B3F558C592699DA73909054B70EA4BEEEB22E0D455B115C94343A6743DA9EB09290329031510C5320540D2CE9FDBBB71B3D07D6BBBF383FAFE7B474FDC4E2D9780964AF2BC47C2244EE658262FF3EBDEFA82B99495B994CC062C65A040E759A02DF5AEBC7BF495BFAB0EDE04E46E20363049AB1591105BB134257262E4AA97C744DB62D4E2C46050604820C400324D13084A45F88E03663A803AC48E5AF439F5190A280AD49E498882664F431E2273699B1EE71A30B4390D18F32975103229B639F5297418F2C0383E9A0C0F67E32BE3786F1CEF8DE38361B4D7EB8C07DD71D4EE77DA8346BDD7AC0D3ACD9162DCF552BBBED3AA5EDEEDD54777ADDD0781C57082D380119F535F17A1E4099D853A0B7591943C346452CA50CA90F340F05017492ED300E500D988F6BEBFD97EE3B1C61B676B6F35A26F037CB7616CF834E3A130CB734B7C61DD5E3BE16E2CE88B59994BEB199F252C9A306516680B87CFFEE4E0CBFF76E3CC2100AB002D509264C443C4A3D439CE6C984ADC60C865C845DADC5B41501228A8C6A9C69046E718AD1908E810E818DE09E25818B99C25D99C923B82F814BB4A96521962A5BAA80D9E528B339B6083118F608F10172952882C866D3AE7D7FD3DB5CE8CE383C9F070D4DD8F5B7B516B3CE84EFBD1281E4CE3C15ED49EB49BA3A835EE5407F552BB566CED5CAAB4CAD1B9873725F719F10509049B579C628FD3409080535FB040D12325E9F279FB871ACD00B2DC9FBD51EEBE79AEFEC6E5E65F3D76F16900962C9CF75098C0614EE4D78CB50D637DD55CCB89C59CC8A758D225BE817D83A701CACF9EBAF9ECCBFF0EB0D3002F0896E39A2F69C0884790A572201419049A02D92A5F8A344BD9AF041B040A8E0483738B000141A049B10D156941BA5A61D45672876C70EC11CD56FE80520715F1B8937A50DAF771EACC21C4557D2D9827A8CBA90F26A3ABF160EF60766D7FFAF86870D86FCD068DBD5E73DC6B0EE3DE2C1EECF5BB7B51B4D7E9CCEABBFD4E75D8ACF4CA3BADE276AD52D8DDBCB8B3B07CD2D24383069226044B50E213EC091630E209E133E6721E3091202C60229446DAD44343041A4E02946DC7AF965AAF5FA8FFE576ED7BB9C51D0072697DCDC7C914492D5B2BA7EC93A7CC8D25B19AE3CB39914FD3B487130E094D9A0220FFD24B1F8C7ADF01DA0A128B02A7244D70EAEAC467D8E6C4E2C4A2F3008DCFA1730CB80E8626D418860C03822123502028B12609D419B534AC1F5F9521A8CD9486471C461CC18239704347855D1972295236E39CD811AA336A10A81B34A0C71F8AA189A024D8C0D00671FF6036B9368A8FC6F151DCDBEF77F6DBF571A719F7A3C9A03B556734D81FF6F7BAED517B77502FF54ADB9D9DCDD6D6E5FAE6A56AA5D4A1D41322217982200743F5FD7C4A3D444D426CCE3DC65C2E43AE9084FA5286980700268BA5E71BBDEF5C2C7DA3DB7B1380931659F148E8136F592EDC65AD9F764E9C763616F4E50C5F48B094CF120E752DEA73EC019018C47F2ABCCF032D4B4992319F335B509B604330EF3830A616748B40537D2B821CA4594833B026B1263540A04611E40872B52B2AE943FD178C78043977429473978B989FAEFBD8BD2364DF9981CA2B10D49534A0D8558E04A72EC326C536188FAFC6F1FE6878308E0F4683C36E7B32EA5FE93587FDD668D49D296C190DF6E3DEA4DB8E9BB55EBDDA2B16DADB9BCDADCBF5CB17CA95EDB66165280F28F1054B309C103C4589AF210731073347089F52473538E7811009C65C2642A025EE3ADD887ADF2A14BE3A1B7E0F80A580AC24692A2DC2756BE994B37ECA593F69AF2DE8CB197D29E4690FBB2EB10D6CEBDCD780F7C7F76E032D09518AC190115F105F29CE101A84D842B8041B8C3892FB6A6AA9BA6B4022A0D64289348A358EA05477733C186D082D65B828195AC3264226C1066736674AE9F6307620B454AD213130B3E6616DECCEBB9ECCDFA3AE8D638F11070C2747C3E1C1647C341E1DF6A3493F9A759AA3F66E6F184D07EDB1AA75DC9BF5A351BF376E3706AD7A5CDAE95CBE5CBB7CB172F942F1C2239BEB27EF25DC65CC67C4A72860384158888887982F4552F284426D2943C143446DC65CCC7DA0054EFAA1C3A3EF172E3F77E9E29304AF25D95A9A6652343CE9AE9E723636AC8D13E6468E2F67F8528A654292F44960E3C0A649499336CF7035007082E30422C1DCD9A31E8486DACB2975203420919419080B04A506F89C7240AE6A0DA101A1A58AC2A9AF4808B9130B5119126C50645164E8DC15746E411CC74BCCE3BEB61871187205F1551C851017C279B084224BEDE8FBC378BF17CD86C3A35E6F2F6A4F3AB538DA8DE3D674184D4783FDC9F0F098081E349BC3466D50DCA96F5F2E6D5D2A5E3EB775E1D18B5B9B45216D2A3CC143C1129287047B88A849A8A2E009461C217C45BD197130F5104E012DDB8EBE56DDFAF2D90727265C09F94A407219965FB3D6379C136BD6FAAAB996E3AB59B692668B01C93828B0B12734CBC6810E7D9D859C841C27040929F40908184EA81583520700A9A467447595D2838043209166602434A8D0431EFB353A423A841223819190C2265050248F5D2E8B619B619B619333136141A88EA84EA9A55296947CD60EF695678FB10111C7D860442DF72E38983D31E8EEF5BB7BE3E1955E34EB76A6EDDD41B3D419F7F6A2D660323E188F0E87F1FEA0B73F1C5C6937868DDD6EA950DFBCB873F9D2CEB9C72E5D38BFF9E823E757574E32E962EE236A13EE2A4851F92E41428E7D463C4A3D443C4A128C78940784A701CA34A3AF544ACFDE7B4FDD418B49B69C24D9BC5C583557D6CDF593CEC945B1B4A8AFE5E5528AE65C98B0A16F2157479684B64E7C8A956118A843A0CF5592113B4224141A70EA236A626CDC61D0489BA7AA11E450139FAD3542FA1DD9881293D1B9EBA842C09CBA44ED818A72A8EC19B315D553B55633535D0F463AC192337B1E7F50DA53DCDB5783B1D7990EBA7B8DDD7EA7D957A07170782D1ECE86C383517CD4ED4C1BF55EB3D6AB555A854BC5F30F9F3FFBE0D97367CE3E74EFFD0F3FF0C5C0CF4A19203477F519F1244D3014089C9234C9B1CF884F4902A304C51E222E1329A0254F7FBE5A2E3D6138F7847C3120A9344DAFD92B1BD6DA86B5B1225796F8D2B2BE9413F90CCBBA28B091AB234720D3E21E9B8771FD4F776225B6293704F904076A822164422895BFA5045284748838460243F3386433AFB5863F958A9872B3B083887B07BE39F7309E37FB9DA9A8C09A5397CDC7A325A84D91A14470359F11B2413F9A8D068783EE9E12A17A9D71371AB7EA71D4190DE3FD413C9D4C0FC7A3FDF1E870DCDB3B1A3F3EE94D2B85DD2F9E79E4FEFB1E3C75EAEEF5F5138B0BAB613267DB69463CA63E92F9CA512538A028A428A4703E39194E30E432E652EA01CD3F71F776B97055D74F84229FA0E934CF2C994B1BCEFAAAB9B6ACAFE4596ED9585C94F90CCB0434E960CF249E413D4E5D463C4603041D656F2364CF257CEC61E423E8CDED44645164616D0E0E739305E99FFE8C1D088D3BC88B90AE4A39CF0D2B2E415C4A3D425CCC1C426CA5654BEC29C2A7EE40DD8DA29B921802EB080855EB3B499DFF0F62B8BC81C396A2930000000049454E44AE426082,'Mike.Hillyer@sakilastaff.com',1,1,'Mike','8cb2237d0679ca88db6464eac60da96345513964','2006-02-15 03:57:16'), +(2,'Jon','Stephens',4,NULL,'Jon.Stephens@sakilastaff.com',2,1,'Jon',NULL,'2006-02-15 03:57:16'); +UNLOCK TABLES; +COMMIT; + +-- +-- Dumping data for table store +-- + +SET AUTOCOMMIT=0; +INSERT INTO store VALUES (1,1,1,'2006-02-15 04:57:12'), +(2,2,2,'2006-02-15 04:57:12'); +COMMIT; + +SET SQL_MODE=@OLD_SQL_MODE; +SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; +SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; +SET autocommit=@old_autocommit; diff --git a/e2e-tests/docker-compose.yaml b/e2e-tests/docker-compose.yaml index 0fbb5b93a..63b4c2ee1 100644 --- a/e2e-tests/docker-compose.yaml +++ b/e2e-tests/docker-compose.yaml @@ -22,7 +22,7 @@ services: restart: always ports: - 16005:3306 - - "16006:22" + - "16012:22" mysql-ssh-keyfile: build: containers/mysql-ssh-keyfile @@ -35,3 +35,17 @@ services: build: containers/dex ports: - "16009:5556" + + mongo: + image: mongo:4.0.12 + restart: always + environment: + MONGO_INITDB_ROOT_USERNAME: root + MONGO_INITDB_ROOT_PASSWORD: Pwd2020Db + ports: + - 16010:27017 + + redis: + image: redis + ports: + - 16011:6379 diff --git a/e2e-tests/e2eTestTools.js b/e2e-tests/e2eTestTools.js index bd790fea4..2ff82a52f 100644 --- a/e2e-tests/e2eTestTools.js +++ b/e2e-tests/e2eTestTools.js @@ -22,6 +22,15 @@ function clearTestingData() { if (fs.existsSync(path.join(baseDir, 'connections-e2etests.jsonl'))) { fs.unlinkSync(path.join(baseDir, 'connections-e2etests.jsonl')); } + if (fs.existsSync(path.join(baseDir, 'settings-e2etests.jsonl'))) { + fs.unlinkSync(path.join(baseDir, 'settings-e2etests.jsonl')); + } + if (fs.existsSync(path.join(baseDir, 'files-e2etests'))) { + fs.rmdirSync(path.join(baseDir, 'files-e2etests'), { recursive: true }); + } + if (fs.existsSync(path.join(baseDir, 'archive-e2etests'))) { + fs.rmdirSync(path.join(baseDir, 'archive-e2etests'), { recursive: true }); + } } module.exports = { diff --git a/e2e-tests/env/browse-data/.env b/e2e-tests/env/browse-data/.env index 3e302d325..0dbbcb066 100644 --- a/e2e-tests/env/browse-data/.env +++ b/e2e-tests/env/browse-data/.env @@ -1,4 +1,4 @@ -CONNECTIONS=mysql +CONNECTIONS=mysql,postgres,mongo,redis LABEL_mysql=MySql-connection SERVER_mysql=localhost @@ -6,3 +6,24 @@ USER_mysql=root PASSWORD_mysql=Pwd2020Db PORT_mysql=16004 ENGINE_mysql=mysql@dbgate-plugin-mysql +DBCONFIG_mysql=[{"name":"MyChinook","connectionColor":"cyan"}] + +LABEL_postgres=Postgres-connection +SERVER_postgres=localhost +USER_postgres=postgres +PASSWORD_postgres=Pwd2020Db +PORT_postgres=16000 +ENGINE_postgres=postgres@dbgate-plugin-postgres +DBCONFIG_postgres=[{"name":"PgChinook","connectionColor":"red"}] + +LABEL_mongo=Mongo-connection +SERVER_mongo=localhost +USER_mongo=root +PASSWORD_mongo=Pwd2020Db +PORT_mongo=16010 +ENGINE_mongo=mongo@dbgate-plugin-mongo + +LABEL_redis=Redis-connection +SERVER_redis=localhost +ENGINE_redis=redis@dbgate-plugin-redis +PORT_redis=16011 diff --git a/e2e-tests/env/team/.env b/e2e-tests/env/team/.env new file mode 100644 index 000000000..fbb92b076 --- /dev/null +++ b/e2e-tests/env/team/.env @@ -0,0 +1,7 @@ +STORAGE_SERVER=localhost +STORAGE_USER=root +STORAGE_PASSWORD=Pwd2020Db +STORAGE_PORT=16004 +STORAGE_DATABASE=DbGateInternal +STORAGE_ENGINE=mysql@dbgate-plugin-mysql +ADMIN_PASSWORD=adminpwd diff --git a/e2e-tests/init/browse-data.js b/e2e-tests/init/browse-data.js index e76e1d85d..151d59502 100644 --- a/e2e-tests/init/browse-data.js +++ b/e2e-tests/init/browse-data.js @@ -1,3 +1,7 @@ +const path = require('path'); +const fs = require('fs'); +const os = require('os'); + const dbgateApi = require('dbgate-api'); dbgateApi.initializeApiEnvironment(); const dbgatePluginMysql = require('dbgate-plugin-mysql'); @@ -5,7 +9,7 @@ dbgateApi.registerPlugins(dbgatePluginMysql); const dbgatePluginPostgres = require('dbgate-plugin-postgres'); dbgateApi.registerPlugins(dbgatePluginPostgres); -async function run() { +async function initMySqlDatabase(dbname, inputFile) { await dbgateApi.executeQuery({ connection: { server: process.env.SERVER_mysql, @@ -14,7 +18,7 @@ async function run() { port: process.env.PORT_mysql, engine: 'mysql@dbgate-plugin-mysql', }, - sql: 'drop database if exists Chinook', + sql: `drop database if exists ${dbname}`, }); await dbgateApi.executeQuery({ @@ -25,7 +29,7 @@ async function run() { port: process.env.PORT_mysql, engine: 'mysql@dbgate-plugin-mysql', }, - sql: 'create database Chinook', + sql: `create database ${dbname}`, }); await dbgateApi.importDatabase({ @@ -34,10 +38,177 @@ async function run() { user: process.env.USER_mysql, password: process.env.PASSWORD_mysql, port: process.env.PORT_mysql, + database: dbname, engine: 'mysql@dbgate-plugin-mysql', }, - inputFile: '../data/Chinook-mysql.sql', + inputFile, }); } +async function initPostgresDatabase(dbname, inputFile) { + await dbgateApi.executeQuery({ + connection: { + server: process.env.SERVER_postgres, + user: process.env.USER_postgres, + password: process.env.PASSWORD_postgres, + port: process.env.PORT_postgres, + engine: 'postgres@dbgate-plugin-postgres', + }, + sql: `drop database if exists "${dbname}"`, + }); + + await dbgateApi.executeQuery({ + connection: { + server: process.env.SERVER_postgres, + user: process.env.USER_postgres, + password: process.env.PASSWORD_postgres, + port: process.env.PORT_postgres, + engine: 'postgres@dbgate-plugin-postgres', + }, + sql: `create database "${dbname}"`, + }); + + await dbgateApi.importDatabase({ + connection: { + server: process.env.SERVER_postgres, + user: process.env.USER_postgres, + password: process.env.PASSWORD_postgres, + port: process.env.PORT_postgres, + database: dbname, + engine: 'postgres@dbgate-plugin-postgres', + }, + inputFile, + }); +} + +async function initMongoDatabase(dbname, inputDirectory) { + await dbgateApi.executeQuery({ + connection: { + server: process.env.SERVER_mongo, + user: process.env.USER_mongo, + password: process.env.PASSWORD_mongo, + port: process.env.PORT_mongo, + database: dbname, + engine: 'mongo@dbgate-plugin-mongo', + }, + sql: 'db.dropDatabase()', + }); + + for (const file of fs.readdirSync(inputDirectory)) { + const pureName = path.parse(file).name; + const src = await dbgateApi.jsonLinesReader({ fileName: path.join(inputDirectory, file) }); + const dst = await dbgateApi.tableWriter({ + connection: { + server: process.env.SERVER_mongo, + user: process.env.USER_mongo, + password: process.env.PASSWORD_mongo, + port: process.env.PORT_mongo, + database: dbname, + engine: 'mongo@dbgate-plugin-mongo', + }, + pureName, + createIfNotExists: true, + }); + await dbgateApi.copyStream(src, dst); + } + + // await dbgateApi.importDatabase({ + // connection: { + // server: process.env.SERVER_postgres, + // user: process.env.USER_postgres, + // password: process.env.PASSWORD_postgres, + // port: process.env.PORT_postgres, + // database: dbname, + // engine: 'postgres@dbgate-plugin-postgres', + // }, + // inputFile, + // }); +} + +async function initRedisDatabase(inputDirectory) { + await dbgateApi.executeQuery({ + connection: { + server: process.env.SERVER_redis, + user: process.env.USER_redis, + password: process.env.PASSWORD_redis, + port: process.env.PORT_redis, + engine: 'redis@dbgate-plugin-redis', + }, + sql: 'FLUSHALL', + }); + + for (const file of fs.readdirSync(inputDirectory)) { + await dbgateApi.executeQuery({ + connection: { + server: process.env.SERVER_redis, + user: process.env.USER_redis, + password: process.env.PASSWORD_redis, + port: process.env.PORT_redis, + engine: 'redis@dbgate-plugin-redis', + database: 0, + }, + sqlFile: path.join(inputDirectory, file), + // logScriptItems: true, + }); + } + + // await dbgateApi.importDatabase({ + // connection: { + // server: process.env.SERVER_postgres, + // user: process.env.USER_postgres, + // password: process.env.PASSWORD_postgres, + // port: process.env.PORT_postgres, + // database: dbname, + // engine: 'postgres@dbgate-plugin-postgres', + // }, + // inputFile, + // }); +} + +const baseDir = path.join(os.homedir(), '.dbgate'); + +async function copyFolder(source, target) { + if (!fs.existsSync(target)) { + fs.mkdirSync(target, { recursive: true }); + } + for (const file of fs.readdirSync(source)) { + fs.copyFileSync(path.join(source, file), path.join(target, file)); + } +} + +async function run() { + await initMySqlDatabase('MyChinook', path.resolve(path.join(__dirname, '../data/chinook-mysql.sql'))); + await initMySqlDatabase('MyChangedChinook', path.resolve(path.join(__dirname, '../data/chinook-mysql-changed.sql'))); + // await initMySqlDatabase('Northwind', path.resolve(path.join(__dirname, '../data/northwind-mysql.sql'))); + // await initMySqlDatabase('Sakila', path.resolve(path.join(__dirname, '../data/sakila-mysql.sql'))); + + await initPostgresDatabase('PgChinook', path.resolve(path.join(__dirname, '../data/chinook-postgres.sql'))); + await initPostgresDatabase('PgGeoData', path.resolve(path.join(__dirname, '../data/geo-data-postgres.sql'))); + + await initMongoDatabase('MgChinook', path.resolve(path.join(__dirname, '../data/chinook-jsonl'))); + await initMongoDatabase('MgRivers', path.resolve(path.join(__dirname, '../data/rivers-jsonl'))); + + await initRedisDatabase(path.resolve(path.join(__dirname, '../data/redis'))); + + await copyFolder( + path.resolve(path.join(__dirname, '../data/chinook-jsonl')), + path.join(baseDir, 'archive-e2etests', 'default') + ); + + await copyFolder( + path.resolve(path.join(__dirname, '../data/files/query')), + path.join(baseDir, 'files-e2etests', 'query') + ); + + await copyFolder( + path.resolve(path.join(__dirname, '../data/files/diagrams')), + path.join(baseDir, 'files-e2etests', 'diagrams') + ); + + await copyFolder( + path.resolve(path.join(__dirname, '../data/files/charts')), + path.join(baseDir, 'files-e2etests', 'charts') + ); +} + dbgateApi.runScript(run); diff --git a/e2e-tests/init/team.js b/e2e-tests/init/team.js new file mode 100644 index 000000000..f83f17371 --- /dev/null +++ b/e2e-tests/init/team.js @@ -0,0 +1,34 @@ +const dbgateApi = require('dbgate-api'); +dbgateApi.initializeApiEnvironment(); +const dbgatePluginMysql = require('dbgate-plugin-mysql'); +dbgateApi.registerPlugins(dbgatePluginMysql); + +async function initStorageDatabase() { + await dbgateApi.executeQuery({ + connection: { + server: process.env.STORAGE_SERVER, + user: process.env.STORAGE_USER, + password: process.env.STORAGE_PASSWORD, + port: process.env.STORAGE_PORT, + engine: process.env.STORAGE_ENGINE, + }, + sql: `drop database if exists ${process.env.STORAGE_DATABASE}`, + }); + + await dbgateApi.executeQuery({ + connection: { + server: process.env.STORAGE_SERVER, + user: process.env.STORAGE_USER, + password: process.env.STORAGE_PASSWORD, + port: process.env.STORAGE_PORT, + engine: process.env.STORAGE_ENGINE, + }, + sql: `create database ${process.env.STORAGE_DATABASE}`, + }); +} + +async function run() { + await initStorageDatabase(); +} + +dbgateApi.runScript(run); diff --git a/e2e-tests/package.json b/e2e-tests/package.json index f278896e4..7500464dc 100644 --- a/e2e-tests/package.json +++ b/e2e-tests/package.json @@ -19,13 +19,22 @@ "cy:run:portal": "cypress run --spec cypress/e2e/portal.cy.js", "cy:run:oauth": "cypress run --spec cypress/e2e/oauth.cy.js", "cy:run:browse-data": "cypress run --spec cypress/e2e/browse-data.cy.js", + "cy:run:team": "cypress run --spec cypress/e2e/team.cy.js", "start:add-connection": "cd .. && node packer/build/bundle.js --listen-api --run-e2e-tests", "start:portal": "cd .. && env-cmd -f e2e-tests/env/portal/.env node e2e-tests/init/portal.js && env-cmd -f e2e-tests/env/portal/.env node packer/build/bundle.js --listen-api --run-e2e-tests", "start:oauth": "cd .. && env-cmd -f e2e-tests/env/oauth/.env node packer/build/bundle.js --listen-api --run-e2e-tests", - "start:browse-data": "cd .. && env-cmd -f e2e-tests/env/browse-data/.env node packer/build/bundle.js --listen-api --run-e2e-tests", + "start:browse-data": "cd .. && env-cmd -f e2e-tests/env/browse-data/.env node e2e-tests/init/browse-data.js && env-cmd -f e2e-tests/env/browse-data/.env node packer/build/bundle.js --listen-api --run-e2e-tests", + "start:team": "cd .. && env-cmd -f e2e-tests/env/team/.env node e2e-tests/init/team.js && env-cmd -f e2e-tests/env/team/.env node packer/build/bundle.js --listen-api --run-e2e-tests", - "test": "start-server-and-test start:add-connection http://localhost:3000 cy:run:add-connection && start-server-and-test start:portal http://localhost:3000 cy:run:portal && start-server-and-test start:oauth http://localhost:3000 cy:run:oauth && start-server-and-test start:browse-data http://localhost:3000 cy:run:browse-data", + "test:add-connection": "start-server-and-test start:add-connection http://localhost:3000 cy:run:add-connection", + "test:portal": "start-server-and-test start:portal http://localhost:3000 cy:run:portal", + "test:oauth": "start-server-and-test start:oauth http://localhost:3000 cy:run:oauth", + "test:browse-data": "start-server-and-test start:browse-data http://localhost:3000 cy:run:browse-data", + "test:team": "start-server-and-test start:team http://localhost:3000 cy:run:team", + + "test": "yarn test:add-connection && yarn test:portal && yarn test:oauth && yarn test:browse-data && yarn test:team", "test:ci": "yarn test" - } + }, + "dependencies": {} } diff --git a/e2e-tests/screenshots/dummy.txt b/e2e-tests/screenshots/dummy.txt new file mode 100644 index 000000000..59633d601 --- /dev/null +++ b/e2e-tests/screenshots/dummy.txt @@ -0,0 +1 @@ +Folder with screenshots \ No newline at end of file diff --git a/integration-tests/__tests__/alter-database.spec.js b/integration-tests/__tests__/alter-database.spec.js index 2a008c9dc..490de76a9 100644 --- a/integration-tests/__tests__/alter-database.spec.js +++ b/integration-tests/__tests__/alter-database.spec.js @@ -76,26 +76,23 @@ describe('Alter database', () => { }) ); - const objectsSupportingRename = flatSource(x => x.supportRenameSqlObject); - if (objectsSupportingRename.length > 0) { - test.each(objectsSupportingRename)( - 'Rename object - %s - %s', - testWrapper(async (conn, driver, type, object, engine) => { - for (const sql of initSql) await runCommandOnDriver(conn, driver, sql); + test.each(flatSource(x => x.supportRenameSqlObject))( + 'Rename object - %s - %s', + testWrapper(async (conn, driver, type, object, engine) => { + for (const sql of initSql) await runCommandOnDriver(conn, driver, sql); - await runCommandOnDriver(conn, driver, object.create1); + await runCommandOnDriver(conn, driver, object.create1); - const structure = extendDatabaseInfo(await driver.analyseFull(conn)); + const structure = extendDatabaseInfo(await driver.analyseFull(conn)); - const dmp = driver.createDumper(); - dmp.renameSqlObject(structure[type][0], 'renamed1'); + const dmp = driver.createDumper(); + dmp.renameSqlObject(structure[type][0], 'renamed1'); - await driver.query(conn, dmp.s); + await driver.query(conn, dmp.s); - const structure2 = await driver.analyseFull(conn); - expect(structure2[type].length).toEqual(1); - expect(structure2[type][0].pureName).toEqual('renamed1'); - }) - ); - } + const structure2 = await driver.analyseFull(conn); + expect(structure2[type].length).toEqual(1); + expect(structure2[type][0].pureName).toEqual('renamed1'); + }) + ); }); diff --git a/integration-tests/__tests__/alter-table.spec.js b/integration-tests/__tests__/alter-table.spec.js index 5687cc612..06baeab95 100644 --- a/integration-tests/__tests__/alter-table.spec.js +++ b/integration-tests/__tests__/alter-table.spec.js @@ -1,7 +1,7 @@ const stableStringify = require('json-stable-stringify'); const _ = require('lodash'); const fp = require('lodash/fp'); -const { testWrapper } = require('../tools'); +const { testWrapper, removeNotNull, transformSqlForEngine } = require('../tools'); const engines = require('../engines'); const crypto = require('crypto'); const { @@ -19,6 +19,7 @@ function pickImportantTableInfo(engine, table) { pureName: table.pureName, columns: table.columns .filter(x => x.columnName != 'rowid') + .sort((a, b) => a.columnName.localeCompare(b.columnName)) .map(fp.pick(props)) .map(props => _.omitBy(props, x => x == null)) .map(props => @@ -33,36 +34,36 @@ function checkTableStructure(engine, t1, t2) { } async function testTableDiff(engine, conn, driver, mangle) { - await driver.query(conn, formatQueryWithoutParams(driver, `create table ~t0 (~id int not null primary key)`)); + const initQuery = formatQueryWithoutParams(driver, `create table ~t0 (~id int not null primary key)`); + await driver.query(conn, transformSqlForEngine(engine, initQuery)); - await driver.query( - conn, - formatQueryWithoutParams( - driver, - `create table ~t1 ( + const query = formatQueryWithoutParams( + driver, + `create table ~t1 ( ~col_pk int not null primary key, ~col_std int, - ~col_def int default 12, + ~col_def int ${engine.skipDefaultValue ? '' : 'default 12'}, ${engine.skipReferences ? '' : '~col_fk int references ~t0(~id),'} ~col_idx int, ~col_uq int ${engine.skipUnique ? '' : 'unique'} , ~col_ref int ${engine.skipUnique ? '' : 'unique'} )` - ) ); + await driver.query(conn, transformSqlForEngine(engine, query)); + if (!engine.skipIndexes) { - await driver.query(conn, formatQueryWithoutParams(driver, `create index ~idx1 on ~t1(~col_idx)`)); + const query = formatQueryWithoutParams(driver, `create index ~idx1 on ~t1(~col_idx)`); + await driver.query(conn, transformSqlForEngine(engine, query)); } if (!engine.skipReferences) { - await driver.query( - conn, - formatQueryWithoutParams( - driver, - `create table ~t2 (~id int not null primary key, ~fkval int null references ~t1(~col_ref))` - ) + const query = formatQueryWithoutParams( + driver, + `create table ~t2 (~id int not null primary key, ~fkval int null references ~t1(~col_ref))` ); + + await driver.query(conn, transformSqlForEngine(engine, query)); } const tget = x => x.tables.find(y => y.pureName == 't1'); @@ -89,14 +90,12 @@ const TESTED_COLUMNS = ['col_pk', 'col_std', 'col_def', 'col_fk', 'col_ref', 'co // const TESTED_COLUMNS = ['col_std']; // const TESTED_COLUMNS = ['col_ref']; -function engines_columns_source() { +function create_engines_columns_source(engines) { return _.flatten( engines.map(engine => - TESTED_COLUMNS.filter(col => !col.endsWith('_pk') || !engine.skipPkColumnTesting).map(column => [ - engine.label, - column, - engine, - ]) + TESTED_COLUMNS.filter(col => col.endsWith('_pk') || !engine.skipNonPkRename) + .filter(col => !col.endsWith('_pk') || !engine.skipPkColumnTesting) + .map(column => [engine.label, column, engine]) ) ); } @@ -117,26 +116,45 @@ describe('Alter table', () => { }) ); - test.each(engines_columns_source())( - 'Drop column - %s - %s', - testWrapper(async (conn, driver, column, engine) => { - await testTableDiff(engine, conn, driver, tbl => (tbl.columns = tbl.columns.filter(x => x.columnName != column))); - }) + const columnsSource = create_engines_columns_source(engines); + const dropableColumnsSrouce = columnsSource.filter( + ([_label, col, engine]) => !engine.skipPkDrop || !col.endsWith('_pk') ); + const hasDropableColumns = dropableColumnsSrouce.length > 0; - test.each(engines_columns_source())( - 'Change nullability - %s - %s', - testWrapper(async (conn, driver, column, engine) => { - await testTableDiff( - engine, - conn, - driver, - tbl => (tbl.columns = tbl.columns.map(x => (x.columnName == column ? { ...x, notNull: true } : x))) - ); - }) - ); + if (hasDropableColumns) { + test.each(dropableColumnsSrouce)( + 'Drop column - %s - %s', + testWrapper(async (conn, driver, column, engine) => { + await testTableDiff( + engine, + conn, + driver, + tbl => (tbl.columns = tbl.columns.filter(x => x.columnName != column)) + ); + }) + ); + } - test.each(engines_columns_source())( + const hasEnginesWithNullable = engines.filter(x => !x.skipNullable).length > 0; + + if (hasEnginesWithNullable) { + const source = create_engines_columns_source(engines.filter(x => !x.skipNullable)); + + test.each(source)( + 'Change nullability - %s - %s', + testWrapper(async (conn, driver, column, engine) => { + await testTableDiff( + engine, + conn, + driver, + tbl => (tbl.columns = tbl.columns.map(x => (x.columnName == column ? { ...x, notNull: true } : x))) + ); + }) + ); + } + + test.each(columnsSource)( 'Rename column - %s - %s', testWrapper(async (conn, driver, column, engine) => { await testTableDiff( @@ -157,32 +175,37 @@ describe('Alter table', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( - 'Add default value - %s', - testWrapper(async (conn, driver, engine) => { - await testTableDiff(engine, conn, driver, tbl => { - tbl.columns.find(x => x.columnName == 'col_std').defaultValue = '123'; - }); - }) - ); + const enginesWithDefault = engines.filter(x => !x.skipDefaultValue); + const hasEnginesWithDefault = enginesWithDefault.length > 0; - test.each(engines.map(engine => [engine.label, engine]))( - 'Unset default value - %s', - testWrapper(async (conn, driver, engine) => { - await testTableDiff(engine, conn, driver, tbl => { - tbl.columns.find(x => x.columnName == 'col_def').defaultValue = undefined; - }); - }) - ); + if (hasEnginesWithDefault) { + test.each(enginesWithDefault.map(engine => [engine.label, engine]))( + 'Add default value - %s', + testWrapper(async (conn, driver, engine) => { + await testTableDiff(engine, conn, driver, tbl => { + tbl.columns.find(x => x.columnName == 'col_std').defaultValue = '123'; + }); + }) + ); - test.each(engines.map(engine => [engine.label, engine]))( - 'Change default value - %s', - testWrapper(async (conn, driver, engine) => { - await testTableDiff(engine, conn, driver, tbl => { - tbl.columns.find(x => x.columnName == 'col_def').defaultValue = '567'; - }); - }) - ); + test.each(enginesWithDefault.map(engine => [engine.label, engine]))( + 'Unset default value - %s', + testWrapper(async (conn, driver, engine) => { + await testTableDiff(engine, conn, driver, tbl => { + tbl.columns.find(x => x.columnName == 'col_def').defaultValue = undefined; + }); + }) + ); + + test.each(enginesWithDefault.map(engine => [engine.label, engine]))( + 'Change default value - %s', + testWrapper(async (conn, driver, engine) => { + await testTableDiff(engine, conn, driver, tbl => { + tbl.columns.find(x => x.columnName == 'col_def').defaultValue = '567'; + }); + }) + ); + } // test.each(engines.map(engine => [engine.label, engine]))( // 'Change autoincrement - %s', diff --git a/integration-tests/__tests__/db-import-export.spec.js b/integration-tests/__tests__/db-import-export.spec.js index 5c2a5557e..fe5de8309 100644 --- a/integration-tests/__tests__/db-import-export.spec.js +++ b/integration-tests/__tests__/db-import-export.spec.js @@ -54,6 +54,30 @@ describe('DB Import/export', () => { }) ); + test.each(engines.map(engine => [engine.label, engine]))( + `Import to existing table - %s`, + testWrapper(async (conn, driver, engine) => { + await runQueryOnDriver(conn, driver, dmp => + dmp.put( + `create table ~t1 (~id int primary key, ~country %s)`, + engine.useTextTypeForStrings ? 'text' : 'varchar(50)' + ) + ); + + const reader = createImportStream(); + const writer = await tableWriter({ + systemConnection: conn, + driver, + pureName: 't1', + createIfNotExists: true, + }); + await copyStream(reader, writer); + + const res = await runQueryOnDriver(conn, driver, dmp => dmp.put(`select count(*) as ~cnt from ~t1`)); + expect(res.rows[0].cnt.toString()).toEqual('6'); + }) + ); + test.each(engines.map(engine => [engine.label, engine]))( 'Import two tables - %s', testWrapper(async (conn, driver, engine) => { @@ -85,38 +109,48 @@ describe('DB Import/export', () => { }) ); - test.each(engines.filter(x => x.dumpFile).map(engine => [engine.label, engine]))( - 'Import SQL dump - %s', - testWrapper(async (conn, driver, engine) => { - // const reader = await fakeObjectReader({ delay: 10 }); - // const reader = await fakeObjectReader(); - await importDatabase({ - systemConnection: conn, - driver, - inputFile: engine.dumpFile, - }); + const enginesWithDumpFile = engines.filter(x => x.dumpFile); + const hasEnginesWithDumpFile = enginesWithDumpFile.length > 0; - const structure = await driver.analyseFull(conn); + if (hasEnginesWithDumpFile) { + test.each(enginesWithDumpFile.filter(x => x.dumpFile).map(engine => [engine.label, engine]))( + 'Import SQL dump - %s', + testWrapper(async (conn, driver, engine) => { + // const reader = await fakeObjectReader({ delay: 10 }); + // const reader = await fakeObjectReader(); + await importDatabase({ + systemConnection: conn, + driver, + inputFile: engine.dumpFile, + }); - for (const check of engine.dumpChecks || []) { - const res = await driver.query(conn, check.sql); - expect(res.rows[0].res.toString()).toEqual(check.res); - } + const structure = await driver.analyseFull(conn); - // const res1 = await driver.query(conn, `select count(*) as cnt from t1`); - // expect(res1.rows[0].cnt.toString()).toEqual('6'); + for (const check of engine.dumpChecks || []) { + const res = await driver.query(conn, check.sql); + expect(res.rows[0].res.toString()).toEqual(check.res); + } - // const res2 = await driver.query(conn, `select count(*) as cnt from t2`); - // expect(res2.rows[0].cnt.toString()).toEqual('6'); - }) - ); + // const res1 = await driver.query(conn, `select count(*) as cnt from t1`); + // expect(res1.rows[0].cnt.toString()).toEqual('6'); + + // const res2 = await driver.query(conn, `select count(*) as cnt from t2`); + // expect(res2.rows[0].cnt.toString()).toEqual('6'); + }) + ); + } test.each(engines.map(engine => [engine.label, engine]))( 'Export one table - %s', testWrapper(async (conn, driver, engine) => { // const reader = await fakeObjectReader({ delay: 10 }); // const reader = await fakeObjectReader(); - await runCommandOnDriver(conn, driver, 'create table ~t1 (~id int primary key, ~country varchar(100))'); + await runCommandOnDriver( + conn, + driver, + `create table ~t1 (~id int primary key, ~country ${engine.useTextTypeForStrings ? 'text' : 'varchar(100)'})` + ); + const data = [ [1, 'Czechia'], [2, 'Austria'], @@ -138,7 +172,13 @@ describe('DB Import/export', () => { const writer = createExportStream(); await copyStream(reader, writer); - expect(writer.resultArray.filter(x => !x.__isStreamHeader).map(row => [row.id, row.country])).toEqual(data); + const result = writer.resultArray.filter(x => !x.__isStreamHeader).map(row => [row.id, row.country]); + + if (engine.forceSortResults) { + result.sort((a, b) => a[0] - b[0]); + } + + expect(result).toEqual(data); }) ); }); diff --git a/integration-tests/__tests__/deploy-database.spec.js b/integration-tests/__tests__/deploy-database.spec.js index 809794aae..219a7f676 100644 --- a/integration-tests/__tests__/deploy-database.spec.js +++ b/integration-tests/__tests__/deploy-database.spec.js @@ -6,7 +6,7 @@ const engines = require('../engines'); const deployDb = require('dbgate-api/src/shell/deployDb'); const { databaseInfoFromYamlModel, runQueryOnDriver, formatQueryWithoutParams } = require('dbgate-tools'); const generateDeploySql = require('dbgate-api/src/shell/generateDeploySql'); -const connectUtility = require('dbgate-api/src/utility/connectUtility'); +const { connectUtility } = require('dbgate-api/src/utility/connectUtility'); function checkStructure( engine, @@ -149,7 +149,7 @@ async function testDatabaseDeploy(engine, conn, driver, dbModelsYaml, options) { } describe('Deploy database', () => { - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Deploy database simple - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -167,7 +167,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Deploy database simple - %s - not connected', testWrapperPrepareOnly(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -185,7 +185,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Deploy database simple twice - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -219,7 +219,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Add column - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -250,7 +250,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Dont drop column - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -287,7 +287,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipReferences).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipReferences) + .map(engine => [engine.label, engine]) + )( 'Foreign keys - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -343,7 +348,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipDataModifications).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipDataModifications) + .map(engine => [engine.label, engine]) + )( 'Deploy preloaded data - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -372,7 +382,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipDataModifications).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipDataModifications) + .map(engine => [engine.label, engine]) + )( 'Deploy preloaded data - update - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -448,7 +463,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipChangeColumn).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipChangeColumn && !x.skipNullability) + .map(engine => [engine.label, engine]) + )( 'Change column to NOT NULL column with default - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -566,7 +586,7 @@ describe('Deploy database', () => { text: 'create view ~_deleted_v1 as select * from ~t1', }; - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Dont remove column - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1], [T1_NO_VAL]], { @@ -576,7 +596,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Dont remove table - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1], []], { @@ -586,7 +606,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Mark table removed - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1], [], []], { @@ -597,7 +617,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(engine => engine.supportRenameSqlObject).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(engine => engine.supportRenameSqlObject) + .map(engine => [engine.label, engine]) + )( 'Mark view removed - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1, V1], [T1], [T1]], { @@ -608,7 +633,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Mark column removed - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1], [T1_NO_VAL]], { @@ -619,7 +644,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Undelete table - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -641,7 +666,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(engine => engine.supportRenameSqlObject).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(engine => engine.supportRenameSqlObject) + .map(engine => [engine.label, engine]) + )( 'Undelete view - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1, V1], [T1], [T1, V1]], { @@ -652,7 +682,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Undelete column - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1], [T1_NO_VAL], [T1]], { @@ -662,7 +692,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'View redeploy - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -683,7 +713,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Change view - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy( @@ -703,7 +733,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipDataModifications).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipDataModifications) + .map(engine => [engine.label, engine]) + )( 'Script drived deploy - basic predeploy - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -723,7 +758,12 @@ describe('Deploy database', () => { }) ); - test.each(engines.filter(x => !x.skipDataModifications).map(engine => [engine.label, engine]))( + test.each( + engines + .filter(i => !i.skipDeploy) + .filter(x => !x.skipDataModifications) + .map(engine => [engine.label, engine]) + )( 'Script drived deploy - install+uninstall - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [ @@ -782,7 +822,7 @@ describe('Deploy database', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipDeploy).map(engine => [engine.label, engine]))( 'Mark table removed, one remains - %s', testWrapper(async (conn, driver, engine) => { await testDatabaseDeploy(engine, conn, driver, [[T1, T2], [T2], [T2]], { diff --git a/integration-tests/__tests__/query.spec.js b/integration-tests/__tests__/query.spec.js index b843f7c30..4f6896a54 100644 --- a/integration-tests/__tests__/query.spec.js +++ b/integration-tests/__tests__/query.spec.js @@ -73,7 +73,9 @@ describe('Query', () => { await runCommandOnDriver(conn, driver, dmp => dmp.put(sql)); } - const res = await runQueryOnDriver(conn, driver, dmp => dmp.put('SELECT ~id FROM ~t1 ORDER BY ~id')); + const res = await runQueryOnDriver(conn, driver, dmp => + dmp.put(`SELECT ~id FROM ~t1 ${engine.skipOrderBy ? '' : 'ORDER BY ~id'}`) + ); expect(res.columns).toEqual([ expect.objectContaining({ columnName: 'id', @@ -98,7 +100,11 @@ describe('Query', () => { await runCommandOnDriver(conn, driver, dmp => dmp.put(sql)); } - const results = await executeStream(driver, conn, 'SELECT ~id FROM ~t1 ORDER BY ~id'); + const results = await executeStream( + driver, + conn, + `SELECT ~id FROM ~t1 ${engine.skipOrderBy ? '' : 'ORDER BY ~id'}` + ); expect(results.length).toEqual(1); const res = results[0]; @@ -107,7 +113,7 @@ describe('Query', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(i => !i.skipOrderBy).map(engine => [engine.label, engine]))( 'More queries - %s', testWrapper(async (conn, driver, engine) => { for (const sql of initSql) { @@ -137,7 +143,9 @@ describe('Query', () => { const results = await executeStream( driver, conn, - 'CREATE TABLE ~t1 (~id int primary key); INSERT INTO ~t1 (~id) VALUES (1); INSERT INTO ~t1 (~id) VALUES (2); SELECT ~id FROM ~t1 ORDER BY ~id; ' + `CREATE TABLE ~t1 (~id int primary key); INSERT INTO ~t1 (~id) VALUES (1); INSERT INTO ~t1 (~id) VALUES (2); SELECT ~id FROM ~t1 ${ + engine.skipOrderBy ? '' : 'ORDER BY ~id' + }; ` ); expect(results.length).toEqual(1); @@ -188,7 +196,7 @@ describe('Query', () => { pureName: 't1', columns: [ { columnName: 'id', dataType: 'int', notNull: true, autoIncrement: true }, - { columnName: 'val', dataType: 'varchar(50)' }, + { columnName: 'val', dataType: engine.useTextTypeForStrings ? 'text' : 'varchar(50)' }, ], primaryKey: { columns: [{ columnName: 'id' }], diff --git a/integration-tests/__tests__/table-analyse.spec.js b/integration-tests/__tests__/table-analyse.spec.js index 43c3c439f..705adf077 100644 --- a/integration-tests/__tests__/table-analyse.spec.js +++ b/integration-tests/__tests__/table-analyse.spec.js @@ -2,12 +2,37 @@ const { runCommandOnDriver } = require('dbgate-tools'); const engines = require('../engines'); const { testWrapper } = require('../tools'); -const t1Sql = 'CREATE TABLE ~t1 (~id int not null primary key, ~val1 varchar(50))'; +/** + * @param {import('dbgate-types').TestEngineInfo} engine + */ +const t1Sql = engine => + `CREATE TABLE ~t1 (~id int ${engine.skipNullability ? '' : 'not null'} primary key, ~val1 ${ + engine.useTextTypeForStrings ? 'text' : 'varchar(50)' + })`; + const ix1Sql = 'CREATE index ~ix1 ON ~t1(~val1, ~id)'; + +/** + * @param {import('dbgate-types').TestEngineInfo} engine + */ const t2Sql = engine => - `CREATE TABLE ~t2 (~id int not null primary key, ~val2 varchar(50) ${engine.skipUnique ? '' : 'unique'})`; -const t3Sql = 'CREATE TABLE ~t3 (~id int not null primary key, ~valfk int, foreign key (~valfk) references ~t2(~id))'; -const t4Sql = 'CREATE TABLE ~t4 (~id int not null primary key, ~valdef int default 12 not null)'; + `CREATE TABLE ~t2 (~id int ${engine.skipNullability ? '' : 'not null'} primary key, ~val2 ${ + engine.useTextTypeForStrings ? 'text' : 'varchar(50)' + } ${engine.skipUnique ? '' : 'unique'})`; +/** + * @param {import('dbgate-types').TestEngineInfo} engine + */ +const t3Sql = engine => + `CREATE TABLE ~t3 (~id int ${ + engine.skipNullability ? '' : 'not null' + } primary key, ~valfk int, foreign key (~valfk) references ~t2(~id))`; +/** + * @param {import('dbgate-types').TestEngineInfo} engine + */ +const t4Sql = engine => + `CREATE TABLE ~t4 (~id int ${engine.skipNullability ? '' : 'not null'} primary key, ~valdef int default 12 ${ + engine.skipNullability ? '' : 'not null' + })`; // const fkSql = 'ALTER TABLE t3 ADD FOREIGN KEY (valfk) REFERENCES t2(id)' const txMatch = (engine, tname, vcolname, nextcol, defaultValue) => @@ -22,12 +47,12 @@ const txMatch = (engine, tname, vcolname, nextcol, defaultValue) => expect.objectContaining({ columnName: vcolname, ...(engine.skipNullability ? {} : { notNull: !!defaultValue }), - ...(defaultValue + ...(defaultValue && !engine.skipDefaultValue ? { defaultValue } : { dataType: engine.skipStringLength - ? expect.stringMatching(/.*string|char.*/i) - : expect.stringMatching(/.*char.*\(50\)/i), + ? expect.stringMatching(/.*string|char.*|text/i) + : expect.stringMatching(/.*char.*\(50\)|text/i), }), }), ...(nextcol @@ -36,8 +61,8 @@ const txMatch = (engine, tname, vcolname, nextcol, defaultValue) => columnName: 'nextcol', ...(engine.skipNullability ? {} : { notNull: false }), dataType: engine.skipStringLength - ? expect.stringMatching(/.*string.*|char.*/i) - : expect.stringMatching(/.*char.*\(50\).*/i), + ? expect.stringMatching(/.*string.*|char.*|text/i) + : expect.stringMatching(/.*char.*\(50\).*|text/i), }), ] : []), @@ -60,10 +85,9 @@ describe('Table analyse', () => { test.each(engines.map(engine => [engine.label, engine]))( 'Table structure - full analysis - %s', testWrapper(async (conn, driver, engine) => { - await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql(engine))); const structure = await driver.analyseFull(conn); - console.log(JSON.stringify(structure, null, 2)); expect(structure.tables.length).toEqual(1); expect(structure.tables[0]).toEqual(t1Match(engine)); @@ -79,7 +103,7 @@ describe('Table analyse', () => { expect(structure1.tables.length).toEqual(1); expect(structure1.tables[0]).toEqual(t2Match(engine)); - await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql(engine))); const structure2 = await driver.analyseIncremental(conn, structure1); expect(structure2.tables.length).toEqual(2); @@ -91,7 +115,7 @@ describe('Table analyse', () => { test.each(engines.map(engine => [engine.label, engine]))( 'Table remove - incremental analysis - %s', testWrapper(async (conn, driver, engine) => { - await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql(engine))); await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine))); const structure1 = await driver.analyseFull(conn); expect(structure1.tables.length).toEqual(2); @@ -109,14 +133,18 @@ describe('Table analyse', () => { test.each(engines.map(engine => [engine.label, engine]))( 'Table change - incremental analysis - %s', testWrapper(async (conn, driver, engine) => { - await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql(engine))); await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine))); const structure1 = await driver.analyseFull(conn); if (engine.dbSnapshotBySeconds) await new Promise(resolve => setTimeout(resolve, 1100)); await runCommandOnDriver(conn, driver, dmp => - dmp.put(`ALTER TABLE ~t2 ADD ${engine.alterTableAddColumnSyntax ? 'COLUMN' : ''} ~nextcol varchar(50)`) + dmp.put( + `ALTER TABLE ~t2 ADD ${engine.alterTableAddColumnSyntax ? 'COLUMN' : ''} ~nextcol ${ + engine.useTextTypeForStrings ? 'text' : 'varchar(50)' + }` + ) ); const structure2 = await driver.analyseIncremental(conn, structure1); @@ -124,14 +152,25 @@ describe('Table analyse', () => { expect(structure2.tables.length).toEqual(2); expect(structure2.tables.find(x => x.pureName == 't1')).toEqual(t1Match(engine)); - expect(structure2.tables.find(x => x.pureName == 't2')).toEqual(t2NextColMatch(engine)); + + const t2 = structure2.tables.find(x => x.pureName == 't2'); + const t2ColumnsOrder = ['id', 'val2', 'nextcol']; + const t2Enchanted = engine.forceSortStructureColumns + ? { + ...t2, + columns: t2.columns.sort( + (a, b) => t2ColumnsOrder.indexOf(a.columnName) - t2ColumnsOrder.indexOf(b.columnName) + ), + } + : t2; + expect(t2Enchanted).toEqual(t2NextColMatch(engine)); }) ); test.each(engines.filter(x => !x.skipIndexes).map(engine => [engine.label, engine]))( 'Index - full analysis - %s', testWrapper(async (conn, driver, engine) => { - await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql(engine))); await runCommandOnDriver(conn, driver, dmp => dmp.put(ix1Sql)); const structure = await driver.analyseFull(conn); @@ -161,7 +200,7 @@ describe('Table analyse', () => { 'Foreign key - full analysis - %s', testWrapper(async (conn, driver, engine) => { await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine))); - await runCommandOnDriver(conn, driver, dmp => dmp.put(t3Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t3Sql(engine))); // await driver.query(conn, fkSql); const structure = await driver.analyseFull(conn); @@ -177,10 +216,10 @@ describe('Table analyse', () => { }) ); - test.each(engines.map(engine => [engine.label, engine]))( + test.each(engines.filter(engine => !engine.skipDefaultValue).map(engine => [engine.label, engine]))( 'Table structure - default value - %s', testWrapper(async (conn, driver, engine) => { - await runCommandOnDriver(conn, driver, dmp => dmp.put(t4Sql)); + await runCommandOnDriver(conn, driver, dmp => dmp.put(t4Sql(engine))); const structure = await driver.analyseFull(conn); diff --git a/integration-tests/__tests__/table-create.spec.js b/integration-tests/__tests__/table-create.spec.js index 606811aec..fd5ffe0df 100644 --- a/integration-tests/__tests__/table-create.spec.js +++ b/integration-tests/__tests__/table-create.spec.js @@ -24,8 +24,10 @@ function checkTableStructure2(t1, t2) { expect(t2).toEqual(createExpector(omitTableSpecificInfo(t1))); } -async function testTableCreate(conn, driver, table) { - await runCommandOnDriver(conn, driver, dmp => dmp.put('create table ~t0 (~id int not null primary key)')); +async function testTableCreate(engine, conn, driver, table) { + await runCommandOnDriver(conn, driver, dmp => + dmp.put(`create table ~t0 (~id int ${engine.skipNullability ? '' : 'not null'} primary key)`) + ); const dmp = driver.createDumper(); const table1 = { @@ -47,12 +49,12 @@ describe('Table create', () => { test.each(engines.map(engine => [engine.label, engine]))( 'Simple table - %s', testWrapper(async (conn, driver, engine) => { - await testTableCreate(conn, driver, { + await testTableCreate(engine, conn, driver, { columns: [ { columnName: 'col1', dataType: 'int', - notNull: true, + ...(engine.skipNullability ? {} : { notNull: true }), }, ], primaryKey: { @@ -65,7 +67,7 @@ describe('Table create', () => { test.each(engines.filter(x => !x.skipIndexes).map(engine => [engine.label, engine]))( 'Table with index - %s', testWrapper(async (conn, driver, engine) => { - await testTableCreate(conn, driver, { + await testTableCreate(engine, conn, driver, { columns: [ { columnName: 'col1', @@ -95,7 +97,7 @@ describe('Table create', () => { test.each(engines.filter(x => !x.skipReferences).map(engine => [engine.label, engine]))( 'Table with foreign key - %s', testWrapper(async (conn, driver, engine) => { - await testTableCreate(conn, driver, { + await testTableCreate(engine, conn, driver, { columns: [ { columnName: 'col1', @@ -125,7 +127,7 @@ describe('Table create', () => { test.each(engines.filter(x => !x.skipUnique).map(engine => [engine.label, engine]))( 'Table with unique - %s', testWrapper(async (conn, driver, engine) => { - await testTableCreate(conn, driver, { + await testTableCreate(engine, conn, driver, { columns: [ { columnName: 'col1', diff --git a/integration-tests/docker-compose.yaml b/integration-tests/docker-compose.yaml index 29cfb9371..208d2ec07 100644 --- a/integration-tests/docker-compose.yaml +++ b/integration-tests/docker-compose.yaml @@ -1,35 +1,41 @@ version: '3' services: - postgres: - image: postgres - restart: always - environment: - POSTGRES_PASSWORD: Pwd2020Db - ports: - - 15000:5432 - - mariadb: - image: mariadb - command: --default-authentication-plugin=mysql_native_password - restart: always - ports: - - 15004:3306 - environment: - - MYSQL_ROOT_PASSWORD=Pwd2020Db + # postgres: + # image: postgres + # restart: always + # environment: + # POSTGRES_PASSWORD: Pwd2020Db + # ports: + # - 15000:5432 + # + # mariadb: + # image: mariadb + # command: --default-authentication-plugin=mysql_native_password + # restart: always + # ports: + # - 15004:3306 + # environment: + # - MYSQL_ROOT_PASSWORD=Pwd2020Db # mysql: # image: mysql:8.0.18 # command: --default-authentication-plugin=mysql_native_password # restart: always - # ports: + # ports: # - 15001:3306 # environment: # - MYSQL_ROOT_PASSWORD=Pwd2020Db + # + + cassandradb: + image: cassandra:5.0.2 + ports: + - 15942:9042 # clickhouse: # image: bitnami/clickhouse:24.8.4 # restart: always - # ports: + # ports: # - 15005:8123 # environment: # - CLICKHOUSE_ADMIN_PASSWORD=Pwd2020Db @@ -37,19 +43,18 @@ services: # mssql: # image: mcr.microsoft.com/mssql/server # restart: always - # ports: + # ports: # - 15002:1433 # environment: # - ACCEPT_EULA=Y # - SA_PASSWORD=Pwd2020Db # - MSSQL_PID=Express - + # cockroachdb: # image: cockroachdb/cockroach # ports: # - 15003:26257 # command: start-single-node --insecure - # mongodb: # image: mongo:4.0.12 # restart: always @@ -59,20 +64,19 @@ services: # ports: # - 27017:27017 - # cockroachdb-init: # image: cockroachdb/cockroach # # build: cockroach -# # entrypoint: /cockroach/init.sh +# # entrypoint: /cockroach/init.sh # entrypoint: ./cockroach sql --insecure --host="cockroachdb" --execute="CREATE DATABASE IF NOT EXISTS test;" # depends_on: # - cockroachdb # restart: on-failure - oracle: - image: gvenzl/oracle-xe:21-slim - environment: - ORACLE_PASSWORD: Pwd2020Db - ports: - - 15006:1521 +# oracle: +# image: gvenzl/oracle-xe:21-slim +# environment: +# ORACLE_PASSWORD: Pwd2020Db +# ports: +# - 15006:1521 diff --git a/integration-tests/engines.js b/integration-tests/engines.js index d2617d2f6..0489c8bca 100644 --- a/integration-tests/engines.js +++ b/integration-tests/engines.js @@ -1,3 +1,4 @@ +// @ts-check const views = { type: 'views', create1: 'CREATE VIEW ~obj1 AS SELECT ~id FROM ~t1', @@ -13,6 +14,7 @@ const matviews = { drop2: 'DROP MATERIALIZED VIEW obj2', }; +/** @type {import('dbgate-types').TestEngineInfo} */ const mysqlEngine = { label: 'MySQL', connection: { @@ -160,6 +162,7 @@ const mysqlEngine = { ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const mariaDbEngine = { label: 'MariaDB', connection: { @@ -180,6 +183,7 @@ const mariaDbEngine = { ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const postgreSqlEngine = { label: 'PostgreSQL', connection: { @@ -352,6 +356,7 @@ $$ LANGUAGE plpgsql;`, ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const sqlServerEngine = { label: 'SQL Server', connection: { @@ -465,6 +470,7 @@ const sqlServerEngine = { ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const sqliteEngine = { label: 'SQLite', generateDbFile: true, @@ -500,6 +506,7 @@ const sqliteEngine = { ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const cockroachDbEngine = { label: 'CockroachDB', connection: { @@ -511,6 +518,7 @@ const cockroachDbEngine = { objects: [views, matviews], }; +/** @type {import('dbgate-types').TestEngineInfo} */ const clickhouseEngine = { label: 'ClickHouse', connection: { @@ -533,6 +541,7 @@ const clickhouseEngine = { skipChangeColumn: true, }; +/** @type {import('dbgate-types').TestEngineInfo} */ const oracleEngine = { label: 'Oracle', connection: { @@ -592,6 +601,40 @@ const oracleEngine = { ], }; +/** @type {import('dbgate-types').TestEngineInfo} */ +const cassandraEngine = { + label: 'Cassandra', + connection: { + server: 'localhost:15942', + engine: 'cassandra@dbgate-plugin-cassandra', + }, + removeNotNull: true, + + alterTableAddColumnSyntax: false, + skipOnCI: false, + skipReferences: true, + // dbSnapshotBySeconds: true, + // setNullDefaultInsteadOfDrop: true, + skipIncrementalAnalysis: true, + skipNonPkRename: true, + skipPkDrop: true, + skipDefaultValue: true, + skipNullability: true, + skipUnique: true, + skipIndexes: true, + skipOrderBy: true, + skipAutoIncrement: true, + skipDataModifications: true, + skipDataDuplicator: true, + skipDeploy: true, + + forceSortResults: true, + forceSortStructureColumns: true, + + useTextTypeForStrings: true, + objects: [], +}; + const enginesOnCi = [ // all engines, which would be run on GitHub actions mysqlEngine, @@ -602,20 +645,23 @@ const enginesOnCi = [ // cockroachDbEngine, clickhouseEngine, oracleEngine, + cassandraEngine, ]; const enginesOnLocal = [ // all engines, which would be run on local test - mysqlEngine, + cassandraEngine, + // mysqlEngine, // mariaDbEngine, // postgreSqlEngine, // sqlServerEngine, - sqliteEngine, + // sqliteEngine, // cockroachDbEngine, // clickhouseEngine, // oracleEngine, ]; +/** @type {import('dbgate-types').TestEngineInfo[] & Record} */ module.exports = process.env.CITEST ? enginesOnCi : enginesOnLocal; module.exports.mysqlEngine = mysqlEngine; @@ -626,3 +672,4 @@ module.exports.sqliteEngine = sqliteEngine; module.exports.cockroachDbEngine = cockroachDbEngine; module.exports.clickhouseEngine = clickhouseEngine; module.exports.oracleEngine = oracleEngine; +module.exports.cassandraEngine = cassandraEngine; diff --git a/integration-tests/tools.js b/integration-tests/tools.js index 5f39398c2..7b13a2657 100644 --- a/integration-tests/tools.js +++ b/integration-tests/tools.js @@ -1,3 +1,4 @@ +// @ts-check const requireEngineDriver = require('dbgate-api/src/utility/requireEngineDriver'); const crypto = require('crypto'); @@ -81,9 +82,27 @@ const testWrapperPrepareOnly = await body(conn, driver, ...other); }; +/** @param {string} sql + * @returns {string} */ +const removeNotNull = sql => sql.replace(/not null/gi, ''); + +/** @param {import('dbgate-types').TestEngineInfo} engine + * @param {string} sql + * @returns {string} */ +const transformSqlForEngine = (engine, sql) => { + let result = sql; + + if (engine.removeNotNull) { + result = removeNotNull(result); + } + + return result; +}; + module.exports = { randomDbName, connect, testWrapper, testWrapperPrepareOnly, + transformSqlForEngine, }; diff --git a/package.json b/package.json index 9ecef56ad..5d514df96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "6.1.3", + "version": "6.2.0", "name": "dbgate-all", "workspaces": [ "packages/*", @@ -22,6 +22,8 @@ "start:api:dblogin": "yarn workspace dbgate-api start:dblogin | pino-pretty", "start:api:storage": "yarn workspace dbgate-api start:storage | pino-pretty", "start:api:storage:built": "yarn workspace dbgate-api start:storage:built | pino-pretty", + "start:api:azure": "yarn workspace dbgate-api start:azure | pino-pretty", + "start:api:e2e:team": "yarn workspace dbgate-api start:e2e:team | pino-pretty", "sync:pro": "cd sync && yarn start", "start:web": "yarn workspace dbgate-web dev", "start:sqltree": "yarn workspace dbgate-sqltree start", diff --git a/packages/api/package.json b/packages/api/package.json index 897a809a3..0e1399f98 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -74,6 +74,8 @@ "start:storage": "env-cmd -f env/storage/.env node src/index.js --listen-api", "start:storage:built": "env-cmd -f env/storage/.env cross-env DEVMODE= BUILTWEBMODE=1 node dist/bundle.js --listen-api", "start:singleconn": "env-cmd node src/index.js --server localhost --user root --port 3307 --engine mysql@dbgate-plugin-mysql --password test --listen-api", + "start:azure": "env-cmd -f env/azure/.env node src/index.js --listen-api", + "start:e2e:team": "cross-env DEVWEB=1 DEVMODE=1 env-cmd -f ../../e2e-tests/env/team/.env node src/index.js --listen-api", "ts": "tsc", "build": "webpack", "build:doc": "jsdoc2md --template doctpl.hbs ./src/shell/* > ../../../dbgate.github.io/_docs/apidoc.md" diff --git a/packages/api/src/auth/authProvider.js b/packages/api/src/auth/authProvider.js index c13628ce8..00fa04d81 100644 --- a/packages/api/src/auth/authProvider.js +++ b/packages/api/src/auth/authProvider.js @@ -218,7 +218,7 @@ class LoginsProvider extends AuthProviderBase { }; } - if (password == process.env[`LOGIN_PASSWORD_${login}`]) { + if (password && password == process.env[`LOGIN_PASSWORD_${login}`]) { return { accessToken: jwt.sign( { diff --git a/packages/api/src/controllers/config.js b/packages/api/src/controllers/config.js index bb2cd21e2..451331c55 100644 --- a/packages/api/src/controllers/config.js +++ b/packages/api/src/controllers/config.js @@ -136,7 +136,7 @@ module.exports = { deleteSettings_meta: true, async deleteSettings() { - await fs.unlink(path.join(datadir(), 'settings.json')); + await fs.unlink(path.join(datadir(), processArgs.runE2eTests ? 'settings-e2etests.json' : 'settings.json')); return true; }, @@ -161,7 +161,10 @@ module.exports = { async loadSettings() { try { - const settingsText = await fs.readFile(path.join(datadir(), 'settings.json'), { encoding: 'utf-8' }); + const settingsText = await fs.readFile( + path.join(datadir(), processArgs.runE2eTests ? 'settings-e2etests.json' : 'settings.json'), + { encoding: 'utf-8' } + ); return { ...this.fillMissingSettings(JSON.parse(settingsText)), 'other.licenseKey': platformInfo.isElectron ? await this.loadLicenseKey() : undefined, @@ -247,7 +250,10 @@ module.exports = { ...currentValue, ..._.omit(values, ['other.licenseKey']), }; - await fs.writeFile(path.join(datadir(), 'settings.json'), JSON.stringify(updated, undefined, 2)); + await fs.writeFile( + path.join(datadir(), processArgs.runE2eTests ? 'settings-e2etests.json' : 'settings.json'), + JSON.stringify(updated, undefined, 2) + ); // this.settingsValue = updated; if (currentValue['other.licenseKey'] != values['other.licenseKey']) { diff --git a/packages/api/src/controllers/databaseConnections.js b/packages/api/src/controllers/databaseConnections.js index 5fc2bed2f..823c947c5 100644 --- a/packages/api/src/controllers/databaseConnections.js +++ b/packages/api/src/controllers/databaseConnections.js @@ -34,6 +34,8 @@ const pipeForkLogs = require('../utility/pipeForkLogs'); const crypto = require('crypto'); const loadModelTransform = require('../utility/loadModelTransform'); const exportDbModelSql = require('../utility/exportDbModelSql'); +const axios = require('axios'); +const { callTextToSqlApi, callCompleteOnCursorApi, callRefactorSqlQueryApi } = require('../utility/authProxy'); const logger = getLogger('databaseConnections'); @@ -69,6 +71,11 @@ module.exports = { handle_error(conid, database, props) { const { error } = props; logger.error(`Error in database connection ${conid}, database ${database}: ${error}`); + if (props?.msgid) { + const [resolve, reject] = this.requests[props?.msgid]; + reject(error); + delete this.requests[props?.msgid]; + } }, handle_response(conid, database, { msgid, ...response }) { const [resolve, reject] = this.requests[msgid]; @@ -229,9 +236,9 @@ module.exports = { }, loadKeys_meta: true, - async loadKeys({ conid, database, root, filter }, req) { + async loadKeys({ conid, database, root, filter, limit }, req) { testConnectionPermission(conid, req); - return this.loadDataCore('loadKeys', { conid, database, root, filter }); + return this.loadDataCore('loadKeys', { conid, database, root, filter, limit }); }, exportKeys_meta: true, @@ -253,9 +260,9 @@ module.exports = { }, loadFieldValues_meta: true, - async loadFieldValues({ conid, database, schemaName, pureName, field, search }, req) { + async loadFieldValues({ conid, database, schemaName, pureName, field, search, dataType }, req) { testConnectionPermission(conid, req); - return this.loadDataCore('loadFieldValues', { conid, database, schemaName, pureName, field, search }); + return this.loadDataCore('loadFieldValues', { conid, database, schemaName, pureName, field, search, dataType }); }, callMethod_meta: true, @@ -401,6 +408,10 @@ module.exports = { structure_meta: true, async structure({ conid, database, modelTransFile = null }, req) { + if (!conid || !database) { + return {}; + } + testConnectionPermission(conid, req); if (conid == '__model') { const model = await importDbModel(database); @@ -558,4 +569,47 @@ module.exports = { return true; }, + + textToSql_meta: true, + async textToSql({ conid, database, text, dialect }) { + const existing = this.opened.find(x => x.conid == conid && x.database == database); + const { structure } = existing || {}; + if (!structure) return { errorMessage: 'No database structure' }; + + const res = await callTextToSqlApi(text, structure, dialect); + + if (!res?.sql) { + return { errorMessage: 'No SQL generated' }; + } + + return res; + }, + + completeOnCursor_meta: true, + async completeOnCursor({ conid, database, text, dialect, line }) { + const existing = this.opened.find(x => x.conid == conid && x.database == database); + const { structure } = existing || {}; + if (!structure) return { errorMessage: 'No database structure' }; + const res = await callCompleteOnCursorApi(text, structure, dialect, line); + + if (!res?.variants) { + return { errorMessage: 'No SQL generated' }; + } + + return res; + }, + + refactorSqlQuery_meta: true, + async refactorSqlQuery({ conid, database, query, task, dialect }) { + const existing = this.opened.find(x => x.conid == conid && x.database == database); + const { structure } = existing || {}; + if (!structure) return { errorMessage: 'No database structure' }; + const res = await callRefactorSqlQueryApi(query, task, structure, dialect); + + if (!res?.sql) { + return { errorMessage: 'No SQL generated' }; + } + + return res; + }, }; diff --git a/packages/api/src/main.js b/packages/api/src/main.js index d262f552f..546bf0ed2 100644 --- a/packages/api/src/main.js +++ b/packages/api/src/main.js @@ -78,6 +78,8 @@ function start() { app.use(getExpressPath('/'), express.static('/home/dbgate-docker/public')); } else if (platformInfo.isAwsUbuntuLayout) { app.use(getExpressPath('/'), express.static('/home/ubuntu/build/public')); + } else if (platformInfo.isAzureUbuntuLayout) { + app.use(getExpressPath('/'), express.static('/home/azureuser/build/public')); } else if (processArgs.runE2eTests) { app.use(getExpressPath('/'), express.static(path.resolve('packer/build/public'))); } else if (platformInfo.isNpmDist) { @@ -140,6 +142,10 @@ function start() { const port = process.env.PORT || 3000; logger.info(`DbGate API listening on port ${port} (AWS AMI build)`); server.listen(port); + } else if (platformInfo.isAzureUbuntuLayout) { + const port = process.env.PORT || 3000; + logger.info(`DbGate API listening on port ${port} (Azure VM build)`); + server.listen(port); } else if (platformInfo.isNpmDist) { getPort({ port: parseInt( diff --git a/packages/api/src/proc/connectProcess.js b/packages/api/src/proc/connectProcess.js index eec20597e..39560e6bf 100644 --- a/packages/api/src/proc/connectProcess.js +++ b/packages/api/src/proc/connectProcess.js @@ -1,6 +1,6 @@ const childProcessChecker = require('../utility/childProcessChecker'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { handleProcessCommunication } = require('../utility/processComm'); const { pickSafeConnectionInfo } = require('../utility/crypting'); const _ = require('lodash'); diff --git a/packages/api/src/proc/databaseConnectionProcess.js b/packages/api/src/proc/databaseConnectionProcess.js index d4a887e9c..03d386d73 100644 --- a/packages/api/src/proc/databaseConnectionProcess.js +++ b/packages/api/src/proc/databaseConnectionProcess.js @@ -11,7 +11,7 @@ const { extractErrorLogData, } = require('dbgate-tools'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { handleProcessCommunication } = require('../utility/processComm'); const { SqlGenerator } = require('dbgate-tools'); const generateDeploySql = require('../shell/generateDeploySql'); @@ -213,13 +213,12 @@ async function handleRunOperation({ msgid, operation, useTransaction }, skipRead } } -async function handleQueryData({ msgid, sql }, skipReadonlyCheck = false) { +async function handleQueryData({ msgid, sql, range }, skipReadonlyCheck = false) { await waitConnected(); const driver = requireEngineDriver(storedConnection); try { if (!skipReadonlyCheck) ensureExecuteCustomScript(driver); - // console.log(sql); - const res = await driver.query(dbhan, sql); + const res = await driver.query(dbhan, sql, { range }); process.send({ msgtype: 'response', msgid, ...res }); } catch (err) { process.send({ @@ -234,7 +233,7 @@ async function handleSqlSelect({ msgid, select }) { const driver = requireEngineDriver(storedConnection); const dmp = driver.createDumper(); dumpSqlSelect(dmp, select); - return handleQueryData({ msgid, sql: dmp.s }, true); + return handleQueryData({ msgid, sql: dmp.s, range: select.range }, true); } async function handleDriverDataCore(msgid, callMethod, { logName }) { @@ -258,8 +257,8 @@ async function handleCollectionData({ msgid, options }) { return handleDriverDataCore(msgid, driver => driver.readCollection(dbhan, options), { logName: 'readCollection' }); } -async function handleLoadKeys({ msgid, root, filter }) { - return handleDriverDataCore(msgid, driver => driver.loadKeys(dbhan, root, filter), { logName: 'loadKeys' }); +async function handleLoadKeys({ msgid, root, filter, limit }) { + return handleDriverDataCore(msgid, driver => driver.loadKeys(dbhan, root, filter, limit), { logName: 'loadKeys' }); } async function handleExportKeys({ msgid, options }) { @@ -291,10 +290,14 @@ async function handleLoadKeyTableRange({ msgid, key, cursor, count }) { }); } -async function handleLoadFieldValues({ msgid, schemaName, pureName, field, search }) { - return handleDriverDataCore(msgid, driver => driver.loadFieldValues(dbhan, { schemaName, pureName }, field, search), { - logName: 'loadFieldValues', - }); +async function handleLoadFieldValues({ msgid, schemaName, pureName, field, search, dataType }) { + return handleDriverDataCore( + msgid, + driver => driver.loadFieldValues(dbhan, { schemaName, pureName }, field, search, dataType), + { + logName: 'loadFieldValues', + } + ); } function ensureExecuteCustomScript(driver) { @@ -336,6 +339,7 @@ async function handleSqlPreview({ msgid, objects, options }) { }, 500); } } catch (err) { + console.error(err); process.send({ msgtype: 'response', msgid, @@ -423,7 +427,11 @@ function start() { await handleMessage(message); } catch (err) { logger.error(extractErrorLogData(err), 'Error in DB connection'); - process.send({ msgtype: 'error', error: extractErrorMessage(err, 'Error processing message') }); + process.send({ + msgtype: 'error', + error: extractErrorMessage(err, 'Error processing message'), + msgid: message?.msgid, + }); } }); } diff --git a/packages/api/src/proc/serverConnectionProcess.js b/packages/api/src/proc/serverConnectionProcess.js index 327c4f44f..0e41dbfeb 100644 --- a/packages/api/src/proc/serverConnectionProcess.js +++ b/packages/api/src/proc/serverConnectionProcess.js @@ -2,7 +2,7 @@ const stableStringify = require('json-stable-stringify'); const { extractBoolSettingsValue, extractIntSettingsValue, getLogger, extractErrorLogData } = require('dbgate-tools'); const childProcessChecker = require('../utility/childProcessChecker'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { handleProcessCommunication } = require('../utility/processComm'); const logger = getLogger('srvconnProcess'); diff --git a/packages/api/src/proc/sessionProcess.js b/packages/api/src/proc/sessionProcess.js index 04997c43b..176c24dbe 100644 --- a/packages/api/src/proc/sessionProcess.js +++ b/packages/api/src/proc/sessionProcess.js @@ -8,7 +8,7 @@ const { splitQuery } = require('dbgate-query-splitter'); const { jsldir } = require('../utility/directories'); const requireEngineDriver = require('../utility/requireEngineDriver'); const { decryptConnection } = require('../utility/crypting'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { handleProcessCommunication } = require('../utility/processComm'); const { getLogger, extractIntSettingsValue, extractBoolSettingsValue } = require('dbgate-tools'); diff --git a/packages/api/src/shell/dataDuplicator.js b/packages/api/src/shell/dataDuplicator.js index f47c5c7a7..750563ff3 100644 --- a/packages/api/src/shell/dataDuplicator.js +++ b/packages/api/src/shell/dataDuplicator.js @@ -2,7 +2,7 @@ const stream = require('stream'); const path = require('path'); const { quoteFullName, fullNameToString, getLogger } = require('dbgate-tools'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const logger = getLogger('dataDuplicator'); const { DataDuplicator } = require('dbgate-datalib'); const copyStream = require('./copyStream'); diff --git a/packages/api/src/shell/deployDb.js b/packages/api/src/shell/deployDb.js index 331613240..abbcc4160 100644 --- a/packages/api/src/shell/deployDb.js +++ b/packages/api/src/shell/deployDb.js @@ -1,7 +1,7 @@ const generateDeploySql = require('./generateDeploySql'); const executeQuery = require('./executeQuery'); const { ScriptDrivedDeployer } = require('dbgate-datalib'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const requireEngineDriver = require('../utility/requireEngineDriver'); const loadModelFolder = require('../utility/loadModelFolder'); const crypto = require('crypto'); diff --git a/packages/api/src/shell/dropAllDbObjects.js b/packages/api/src/shell/dropAllDbObjects.js index e6bed8376..4ba806052 100644 --- a/packages/api/src/shell/dropAllDbObjects.js +++ b/packages/api/src/shell/dropAllDbObjects.js @@ -1,6 +1,6 @@ const executeQuery = require('./executeQuery'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { getLogger, extendDatabaseInfo } = require('dbgate-tools'); const logger = getLogger('dropAllDbObjects'); diff --git a/packages/api/src/shell/dumpDatabase.js b/packages/api/src/shell/dumpDatabase.js index 20465c444..45644e038 100644 --- a/packages/api/src/shell/dumpDatabase.js +++ b/packages/api/src/shell/dumpDatabase.js @@ -1,5 +1,5 @@ const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { getLogger } = require('dbgate-tools'); const logger = getLogger('dumpDb'); diff --git a/packages/api/src/shell/executeQuery.js b/packages/api/src/shell/executeQuery.js index a08660144..0adcf3700 100644 --- a/packages/api/src/shell/executeQuery.js +++ b/packages/api/src/shell/executeQuery.js @@ -1,6 +1,6 @@ const fs = require('fs-extra'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { getLogger, getLimitedQuery } = require('dbgate-tools'); const logger = getLogger('execQuery'); diff --git a/packages/api/src/shell/generateDeploySql.js b/packages/api/src/shell/generateDeploySql.js index 0edc0dc3f..dad7a9e0d 100644 --- a/packages/api/src/shell/generateDeploySql.js +++ b/packages/api/src/shell/generateDeploySql.js @@ -13,7 +13,7 @@ const { } = require('dbgate-tools'); const importDbModel = require('../utility/importDbModel'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); /** * Generates query for deploying model into database diff --git a/packages/api/src/shell/importDatabase.js b/packages/api/src/shell/importDatabase.js index 56bded426..a10cb4632 100644 --- a/packages/api/src/shell/importDatabase.js +++ b/packages/api/src/shell/importDatabase.js @@ -1,6 +1,6 @@ const fs = require('fs'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { splitQueryStream } = require('dbgate-query-splitter/lib/splitQueryStream'); const download = require('./download'); const stream = require('stream'); diff --git a/packages/api/src/shell/loadDatabase.js b/packages/api/src/shell/loadDatabase.js index d19adee2e..d657e61aa 100644 --- a/packages/api/src/shell/loadDatabase.js +++ b/packages/api/src/shell/loadDatabase.js @@ -1,5 +1,5 @@ const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { getLogger } = require('dbgate-tools'); const exportDbModel = require('../utility/exportDbModel'); diff --git a/packages/api/src/shell/queryReader.js b/packages/api/src/shell/queryReader.js index 9d8df321c..dd76a296c 100644 --- a/packages/api/src/shell/queryReader.js +++ b/packages/api/src/shell/queryReader.js @@ -1,5 +1,5 @@ const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const { getLogger } = require('dbgate-tools'); const logger = getLogger('queryReader'); diff --git a/packages/api/src/shell/tableReader.js b/packages/api/src/shell/tableReader.js index 5c42418c9..6ec0d1fb8 100644 --- a/packages/api/src/shell/tableReader.js +++ b/packages/api/src/shell/tableReader.js @@ -1,6 +1,6 @@ const { quoteFullName, fullNameToString, getLogger } = require('dbgate-tools'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const logger = getLogger('tableReader'); /** diff --git a/packages/api/src/shell/tableWriter.js b/packages/api/src/shell/tableWriter.js index 80fe5ad4c..727bc6d4a 100644 --- a/packages/api/src/shell/tableWriter.js +++ b/packages/api/src/shell/tableWriter.js @@ -1,6 +1,6 @@ const { fullNameToString, getLogger } = require('dbgate-tools'); const requireEngineDriver = require('../utility/requireEngineDriver'); -const connectUtility = require('../utility/connectUtility'); +const { connectUtility } = require('../utility/connectUtility'); const logger = getLogger('tableWriter'); /** diff --git a/packages/api/src/utility/authProxy.js b/packages/api/src/utility/authProxy.js index f8bec4025..0d998fec2 100644 --- a/packages/api/src/utility/authProxy.js +++ b/packages/api/src/utility/authProxy.js @@ -24,6 +24,18 @@ async function getAwsIamToken(params) { return null; } +async function callTextToSqlApi(text, structure, dialect) { + return null; +} + +async function callCompleteOnCursorApi(cursorId, query, position, dialect) { + return null; +} + +async function callRefactorSqlQueryApi(query, task, structure, dialect) { + return null; +} + module.exports = { isAuthProxySupported, authProxyGetRedirectUrl, @@ -32,4 +44,7 @@ module.exports = { getAuthProxyUrl, supportsAwsIam, getAwsIamToken, + callTextToSqlApi, + callCompleteOnCursorApi, + callRefactorSqlQueryApi, }; diff --git a/packages/api/src/utility/connectUtility.js b/packages/api/src/utility/connectUtility.js index 45d3f5a42..757df2a6e 100644 --- a/packages/api/src/utility/connectUtility.js +++ b/packages/api/src/utility/connectUtility.js @@ -47,6 +47,47 @@ async function loadConnection(driver, storedConnection, connectionMode) { return storedConnection; } +async function extractConnectionSslParams(connection) { + /** @type {any} */ + let ssl = undefined; + if (connection.useSsl) { + ssl = {}; + + if (connection.sslCaFile) { + ssl.ca = await fs.readFile(connection.sslCaFile); + ssl.sslCaFile = connection.sslCaFile; + } + + if (connection.sslCertFile) { + ssl.cert = await fs.readFile(connection.sslCertFile); + ssl.sslCertFile = connection.sslCertFile; + } + + if (connection.sslKeyFile) { + ssl.key = await fs.readFile(connection.sslKeyFile); + ssl.sslKeyFile = connection.sslKeyFile; + } + + if (connection.sslCertFilePassword) { + ssl.password = connection.sslCertFilePassword; + } + + if (!ssl.key && !ssl.ca && !ssl.cert) { + // TODO: provide this as an option in settings + // or per-connection as 'reject self-signed certs' + // How it works: + // if false, cert can be self-signed + // if true, has to be from a public CA + // Heroku certs are self-signed. + // if you provide ca/cert/key files, it overrides this + ssl.rejectUnauthorized = false; + } else { + ssl.rejectUnauthorized = connection.sslRejectUnauthorized; + } + } + return ssl; +} + async function connectUtility(driver, storedConnection, connectionMode, additionalOptions = null) { const connectionLoaded = await loadConnection(driver, storedConnection, connectionMode); @@ -67,45 +108,13 @@ async function connectUtility(driver, storedConnection, connectionMode, addition connection.port = tunnel.localPort; } - // SSL functionality - copied from https://github.com/beekeeper-studio/beekeeper-studio - if (connection.useSsl) { - connection.ssl = {}; - - if (connection.sslCaFile) { - connection.ssl.ca = await fs.readFile(connection.sslCaFile); - connection.ssl.sslCaFile = connection.sslCaFile; - } - - if (connection.sslCertFile) { - connection.ssl.cert = await fs.readFile(connection.sslCertFile); - connection.ssl.sslCertFile = connection.sslCertFile; - } - - if (connection.sslKeyFile) { - connection.ssl.key = await fs.readFile(connection.sslKeyFile); - connection.ssl.sslKeyFile = connection.sslKeyFile; - } - - if (connection.sslCertFilePassword) { - connection.ssl.password = connection.sslCertFilePassword; - } - - if (!connection.ssl.key && !connection.ssl.ca && !connection.ssl.cert) { - // TODO: provide this as an option in settings - // or per-connection as 'reject self-signed certs' - // How it works: - // if false, cert can be self-signed - // if true, has to be from a public CA - // Heroku certs are self-signed. - // if you provide ca/cert/key files, it overrides this - connection.ssl.rejectUnauthorized = false; - } else { - connection.ssl.rejectUnauthorized = connection.sslRejectUnauthorized; - } - } + connection.ssl = await extractConnectionSslParams(connection); const conn = await driver.connect({ ...connection, ...additionalOptions }); return conn; } -module.exports = connectUtility; +module.exports = { + extractConnectionSslParams, + connectUtility, +}; diff --git a/packages/api/src/utility/directories.js b/packages/api/src/utility/directories.js index 71a3fe283..c6c9716d3 100644 --- a/packages/api/src/utility/directories.js +++ b/packages/api/src/utility/directories.js @@ -58,9 +58,11 @@ const jsldir = dirFunc('jsl', true); const rundir = dirFunc('run', true); const uploadsdir = dirFunc('uploads', true); const pluginsdir = dirFunc('plugins'); -const archivedir = dirFunc('archive', false, ['default']); +const archivedir = processArgs.runE2eTests + ? dirFunc('archive-e2etests', false, ['default']) + : dirFunc('archive', false, ['default']); const appdir = dirFunc('apps'); -const filesdir = dirFunc('files'); +const filesdir = processArgs.runE2eTests ? dirFunc('files-e2etests') : dirFunc('files'); const logsdir = dirFunc('logs', 3600 * 24 * 7); function packagedPluginsDir() { @@ -80,6 +82,9 @@ function packagedPluginsDir() { if (platformInfo.isAwsUbuntuLayout) { return '/home/ubuntu/build/plugins'; } + if (platformInfo.isAzureUbuntuLayout) { + return '/home/azureuser/build/plugins'; + } if (platformInfo.isNpmDist) { // node_modules return global['PLUGINS_DIR']; diff --git a/packages/api/src/utility/hardwareFingerprint.js b/packages/api/src/utility/hardwareFingerprint.js index 08f42bc86..1be04fbb2 100644 --- a/packages/api/src/utility/hardwareFingerprint.js +++ b/packages/api/src/utility/hardwareFingerprint.js @@ -73,6 +73,7 @@ async function getPublicHardwareFingerprint() { region: fingerprint.region, isDocker: platformInfo.isDocker, isAwsUbuntuLayout: platformInfo.isAwsUbuntuLayout, + isAzureUbuntuLayout: platformInfo.isAzureUbuntuLayout, isElectron: platformInfo.isElectron, }, }; diff --git a/packages/api/src/utility/platformInfo.js b/packages/api/src/utility/platformInfo.js index 3fd34dee5..8c9348547 100644 --- a/packages/api/src/utility/platformInfo.js +++ b/packages/api/src/utility/platformInfo.js @@ -15,6 +15,7 @@ const isNpmDist = !!global['IS_NPM_DIST']; const isDbModel = !!global['IS_DB_MODEL']; const isForkedApi = processArgs.isForkedApi; const isAwsUbuntuLayout = fs.existsSync('/home/ubuntu/build/public'); +const isAzureUbuntuLayout = fs.existsSync('/home/azureuser/build/public'); // function moduleAvailable(name) { // try { @@ -57,6 +58,7 @@ const platformInfo = { allowConnectionFromEnvVariables: !!isDbModel, defaultKeyfile: path.join(os.homedir(), '.ssh/id_rsa'), isAwsUbuntuLayout, + isAzureUbuntuLayout, }; module.exports = platformInfo; diff --git a/packages/api/src/utility/processArgs.js b/packages/api/src/utility/processArgs.js index d62cc66f3..f4f9301a7 100644 --- a/packages/api/src/utility/processArgs.js +++ b/packages/api/src/utility/processArgs.js @@ -28,9 +28,9 @@ function getPassArgs() { if (listenApiChild) { res.push('listen-api-child'); } - // if (runE2eTests) { - // res.push('--run-e2e-tests'); - // } + if (runE2eTests) { + res.push('--run-e2e-tests'); + } return res; } diff --git a/packages/api/src/utility/useController.js b/packages/api/src/utility/useController.js index c3da9f677..1ad274a50 100644 --- a/packages/api/src/utility/useController.js +++ b/packages/api/src/utility/useController.js @@ -86,7 +86,7 @@ module.exports = function useController(app, electron, route, controller) { detail: err.detail, }); } else { - res.status(500).json({ apiErrorMessage: err.message }); + res.status(500).json({ apiErrorMessage: (_.isString(err) ? err : err.message) ?? 'Unknown error' }); } } }); diff --git a/packages/datalib/src/ChangeSet.ts b/packages/datalib/src/ChangeSet.ts index aeb3789e0..598c847ed 100644 --- a/packages/datalib/src/ChangeSet.ts +++ b/packages/datalib/src/ChangeSet.ts @@ -9,7 +9,7 @@ import { AllowIdentityInsert, Expression, } from 'dbgate-sqltree'; -import type { NamedObjectInfo, DatabaseInfo, TableInfo } from 'dbgate-types'; +import type { NamedObjectInfo, DatabaseInfo, TableInfo, SqlDialect } from 'dbgate-types'; import { JsonDataObjectUpdateCommand } from 'dbgate-tools'; export interface ChangeSetItem { @@ -230,41 +230,79 @@ export function batchUpdateChangeSet( return changeSet; } -function extractFields(item: ChangeSetItem, allowNulls = true, allowedDocumentColumns: string[] = []): UpdateField[] { +function extractFields( + item: ChangeSetItem, + allowNulls = true, + allowedDocumentColumns: string[] = [], + table?: TableInfo, + dialect?: SqlDialect +): UpdateField[] { const allFields = { ...item.fields, }; + function isUuidColumn(columnName: string): boolean { + return table?.columns.find(x => x.columnName == columnName)?.dataType.toLowerCase() == 'uuid'; + } + + function createUpdateField(targetColumn: string): UpdateField { + const shouldGenerateDefaultValue = + isUuidColumn(targetColumn) && allFields[targetColumn] == null && dialect?.generateDefaultValueForUuid; + + if (shouldGenerateDefaultValue) { + return { + targetColumn, + sql: dialect?.generateDefaultValueForUuid, + exprType: 'raw', + }; + } + + return { + targetColumn, + exprType: 'value', + value: allFields[targetColumn], + dataType: table?.columns?.find(x => x.columnName == targetColumn)?.dataType, + }; + } + for (const docField in item.document || {}) { if (allowedDocumentColumns.includes(docField)) { allFields[docField] = item.document[docField]; } } - return _.keys(allFields) - .filter(targetColumn => allowNulls || allFields[targetColumn] != null) - .map(targetColumn => ({ - targetColumn, - exprType: 'value', - value: allFields[targetColumn], - })); + const columnNames = Object.keys(allFields); + if (dialect?.generateDefaultValueForUuid && table) { + columnNames.push(...table.columns.map(i => i.columnName)); + } + + return _.uniq(columnNames) + .filter( + targetColumn => + allowNulls || + allFields[targetColumn] != null || + (isUuidColumn(targetColumn) && dialect?.generateDefaultValueForUuid) + ) + .map(targetColumn => createUpdateField(targetColumn)); } function changeSetInsertToSql( item: ChangeSetItem, - dbinfo: DatabaseInfo = null + dbinfo: DatabaseInfo = null, + dialect: SqlDialect = null ): [AllowIdentityInsert, Insert, AllowIdentityInsert] { const table = dbinfo?.tables?.find(x => x.schemaName == item.schemaName && x.pureName == item.pureName); const fields = extractFields( item, false, - table?.columns?.map(x => x.columnName) + table?.columns?.map(x => x.columnName), + table, + dialect ); if (fields.length == 0) return null; let autoInc = false; if (table) { const autoIncCol = table.columns.find(x => x.autoIncrement); - // console.log('autoIncCol', autoIncCol); if (autoIncCol && fields.find(x => x.targetColumn == autoIncCol.columnName)) { autoInc = true; } @@ -299,19 +337,28 @@ function changeSetInsertToSql( ]; } -export function extractChangeSetCondition(item: ChangeSetItem, alias?: string): Condition { +export function extractChangeSetCondition( + item: ChangeSetItem, + alias?: string, + table?: TableInfo, + dialect?: SqlDialect +): Condition { function getColumnCondition(columnName: string): Condition { + const dataType = table?.columns?.find(x => x.columnName == columnName)?.dataType; + const value = item.condition[columnName]; const expr: Expression = { exprType: 'column', columnName, - source: { - name: { - pureName: item.pureName, - schemaName: item.schemaName, - }, - alias, - }, + source: dialect?.omitTableBeforeColumn + ? undefined + : { + name: { + pureName: item.pureName, + schemaName: item.schemaName, + }, + alias, + }, }; if (value == null) { return { @@ -325,6 +372,7 @@ export function extractChangeSetCondition(item: ChangeSetItem, alias?: string): left: expr, right: { exprType: 'value', + dataType, value, }, }; @@ -366,7 +414,7 @@ function compileSimpleChangeSetCondition(fields: { [column: string]: string }): }; } -function changeSetUpdateToSql(item: ChangeSetItem, dbinfo: DatabaseInfo = null): Update { +function changeSetUpdateToSql(item: ChangeSetItem, dbinfo: DatabaseInfo = null, dialect: SqlDialect = null): Update { const table = dbinfo?.tables?.find(x => x.schemaName == item.schemaName && x.pureName == item.pureName); const autoIncCol = table?.columns?.find(x => x.autoIncrement); @@ -382,13 +430,16 @@ function changeSetUpdateToSql(item: ChangeSetItem, dbinfo: DatabaseInfo = null): fields: extractFields( item, true, - table?.columns?.map(x => x.columnName).filter(x => x != autoIncCol?.columnName) + table?.columns?.map(x => x.columnName).filter(x => x != autoIncCol?.columnName), + table ), - where: extractChangeSetCondition(item), + where: extractChangeSetCondition(item, undefined, table, dialect), }; } -function changeSetDeleteToSql(item: ChangeSetItem): Delete { +function changeSetDeleteToSql(item: ChangeSetItem, dbinfo: DatabaseInfo = null, dialect: SqlDialect = null): Delete { + const table = dbinfo?.tables?.find(x => x.schemaName == item.schemaName && x.pureName == item.pureName); + return { from: { name: { @@ -397,16 +448,16 @@ function changeSetDeleteToSql(item: ChangeSetItem): Delete { }, }, commandType: 'delete', - where: extractChangeSetCondition(item), + where: extractChangeSetCondition(item, undefined, table, dialect), }; } -export function changeSetToSql(changeSet: ChangeSet, dbinfo: DatabaseInfo): Command[] { +export function changeSetToSql(changeSet: ChangeSet, dbinfo: DatabaseInfo, dialect: SqlDialect): Command[] { return _.compact( _.flatten([ - ...(changeSet.inserts.map(item => changeSetInsertToSql(item, dbinfo)) as any), - ...changeSet.updates.map(item => changeSetUpdateToSql(item, dbinfo)), - ...changeSet.deletes.map(changeSetDeleteToSql), + ...(changeSet.inserts.map(item => changeSetInsertToSql(item, dbinfo, dialect)) as any), + ...changeSet.updates.map(item => changeSetUpdateToSql(item, dbinfo, dialect)), + ...changeSet.deletes.map(item => changeSetDeleteToSql(item, dbinfo, dialect)), ]) ); } diff --git a/packages/datalib/src/GridDisplay.ts b/packages/datalib/src/GridDisplay.ts index b77995d9c..07fc7f435 100644 --- a/packages/datalib/src/GridDisplay.ts +++ b/packages/datalib/src/GridDisplay.ts @@ -253,7 +253,12 @@ export abstract class GridDisplay { orCondition.conditions.push( _.cloneDeepWith(condition, (expr: Expression) => { if (expr.exprType == 'placeholder') { - return this.createColumnExpression(column, { alias: 'basetbl' }, undefined, 'filter'); + return this.createColumnExpression( + column, + !this.dialect.omitTableAliases ? { alias: 'basetbl' } : undefined, + undefined, + 'filter' + ); } }) ); @@ -584,7 +589,7 @@ export abstract class GridDisplay { } return { exprType: 'column', - alias: alias || col.columnName, + ...(!this.dialect.omitTableAliases && { alias: alias || col.columnName }), source, ...col, }; @@ -597,9 +602,16 @@ export abstract class GridDisplay { commandType: 'select', from: { name: _.pick(name, ['schemaName', 'pureName']), - alias: 'basetbl', + ...(!this.dialect.omitTableAliases && { alias: 'basetbl' }), }, - columns: columns.map(col => this.createColumnExpression(col, { alias: 'basetbl' }, undefined, 'view')), + columns: columns.map(col => + this.createColumnExpression( + col, + !this.dialect.omitTableAliases ? { alias: 'basetbl' } : undefined, + undefined, + 'view' + ) + ), orderBy: this.driver?.requiresDefaultSortCriteria ? [ { @@ -611,7 +623,10 @@ export abstract class GridDisplay { : null, }; const displayedColumnInfo = _.keyBy( - this.columns.map(col => ({ ...col, sourceAlias: 'basetbl' })), + this.columns.map(col => ({ + ...col, + ...(!this.dialect.omitTableAliases && { sourceAlias: 'basetbl' }), + })), 'uniqueName' ); this.processReferences(select, displayedColumnInfo, options); @@ -639,7 +654,7 @@ export abstract class GridDisplay { ? x : { ...x, - source: { alias: 'basetbl' }, + ...(!this.dialect.omitTableAliases && { source: { alias: 'basetbl' } }), } ) : [ @@ -695,6 +710,13 @@ export abstract class GridDisplay { // return sql; } + getPageQueryText(offset: number, count: number) { + const select = this.getPageQuery(offset, count); + const sql = treeToSql(this.driver, select, dumpSqlSelect); + return sql; + } + + getExportQuery(postprocessSelect = null) { const select = this.createSelect({ isExport: true }); if (!select) return null; diff --git a/packages/datalib/src/PerspectiveTreeNode.ts b/packages/datalib/src/PerspectiveTreeNode.ts index 6719c1543..054192d49 100644 --- a/packages/datalib/src/PerspectiveTreeNode.ts +++ b/packages/datalib/src/PerspectiveTreeNode.ts @@ -221,6 +221,11 @@ export abstract class PerspectiveTreeNode { return false; } + get pathIdentifier() { + if (this.parentNode) return `${this.parentNode.pathIdentifier}_${this.codeName}`; + return this.codeName; + } + hasDesignerIdInIncestors(designerId: string): boolean { if (designerId == this.designerId) return true; return this.parentNode?.hasDesignerIdInIncestors(designerId) || false; diff --git a/packages/datalib/src/TableGridDisplay.ts b/packages/datalib/src/TableGridDisplay.ts index 9f46f5e4e..84a68f6f6 100644 --- a/packages/datalib/src/TableGridDisplay.ts +++ b/packages/datalib/src/TableGridDisplay.ts @@ -149,7 +149,8 @@ export class TableGridDisplay extends GridDisplay { }, right: { exprType: 'column', - columnName: table.primaryKey.columns[0].columnName, + columnName: + column.foreignKey?.columns?.[0]?.refColumnName ?? table.primaryKey?.columns?.[0]?.columnName, source: { name: table, alias: childAlias }, }, }, diff --git a/packages/sqltree/src/dumpSqlCommand.ts b/packages/sqltree/src/dumpSqlCommand.ts index d73d7d690..4122ea3f8 100644 --- a/packages/sqltree/src/dumpSqlCommand.ts +++ b/packages/sqltree/src/dumpSqlCommand.ts @@ -52,6 +52,8 @@ export function dumpSqlSelect(dmp: SqlDumper, cmd: Select) { if (cmd.range) { if (dmp.dialect.offsetFetchRangeSyntax) { dmp.put('^offset %s ^rows ^fetch ^next %s ^rows ^only', cmd.range.offset, cmd.range.limit); + } else if (dmp.dialect.offsetNotSupported) { + dmp.put('^limit %s', cmd.range.limit + cmd.range.offset); } else { dmp.put('^limit %s ^offset %s ', cmd.range.limit, cmd.range.offset); } diff --git a/packages/sqltree/src/dumpSqlExpression.ts b/packages/sqltree/src/dumpSqlExpression.ts index 158a9afe2..aeaf3b288 100644 --- a/packages/sqltree/src/dumpSqlExpression.ts +++ b/packages/sqltree/src/dumpSqlExpression.ts @@ -21,7 +21,14 @@ export function dumpSqlExpression(dmp: SqlDumper, expr: Expression) { break; case 'value': - dmp.put('%v', expr.value); + if (expr.dataType) { + dmp.put('%V', { + value: expr.value, + dataType: expr.dataType, + }); + } else { + dmp.put('%v', expr.value); + } break; case 'raw': diff --git a/packages/sqltree/src/types.ts b/packages/sqltree/src/types.ts index c2fe24674..bce0e61d3 100644 --- a/packages/sqltree/src/types.ts +++ b/packages/sqltree/src/types.ts @@ -182,6 +182,7 @@ export interface ColumnRefExpression { export interface ValueExpression { exprType: 'value'; value: any; + dataType?: string; } export interface PlaceholderExpression { diff --git a/packages/tools/src/SqlDumper.ts b/packages/tools/src/SqlDumper.ts index d778c038a..d3320a0a4 100644 --- a/packages/tools/src/SqlDumper.ts +++ b/packages/tools/src/SqlDumper.ts @@ -70,7 +70,7 @@ export class SqlDumper implements AlterProcessor { putByteArrayValue(value) { this.put('^null'); } - putValue(value) { + putValue(value, dataType = null) { if (value === null) this.put('^null'); else if (value === true) this.putRaw('1'); else if (value === false) this.putRaw('0'); @@ -117,6 +117,9 @@ export class SqlDumper implements AlterProcessor { case 'v': this.putValue(value); break; + case 'V': + this.putValue(value.value, value.dataType); + break; case 'c': value(this); break; @@ -250,7 +253,7 @@ export class SqlDumper implements AlterProcessor { this.columnType(column.dataType); - if (column.autoIncrement) { + if (column.autoIncrement && !this.dialect?.disableAutoIncrement) { this.autoIncrement(); } diff --git a/packages/tools/src/SqlGenerator.ts b/packages/tools/src/SqlGenerator.ts index a5e3b1009..84108e97a 100644 --- a/packages/tools/src/SqlGenerator.ts +++ b/packages/tools/src/SqlGenerator.ts @@ -297,10 +297,12 @@ export class SqlGenerator { } extract(objectTypeField) { - return this.dbinfo[objectTypeField].filter(x => - this.objects.find( - y => x.pureName == y.pureName && x.schemaName == y.schemaName && y.objectTypeField == objectTypeField - ) + return ( + this.dbinfo[objectTypeField]?.filter(x => + this.objects.find( + y => x.pureName == y.pureName && x.schemaName == y.schemaName && y.objectTypeField == objectTypeField + ) + ) ?? [] ); } diff --git a/packages/tools/src/createBulkInsertStreamBase.ts b/packages/tools/src/createBulkInsertStreamBase.ts index 78b466aa8..05db2fe24 100644 --- a/packages/tools/src/createBulkInsertStreamBase.ts +++ b/packages/tools/src/createBulkInsertStreamBase.ts @@ -14,6 +14,7 @@ export function createBulkInsertStreamBase(driver: EngineDriver, stream, dbhan, objectMode: true, }); + writable.fullNameQuoted = fullNameQuoted; writable.buffer = []; writable.structure = null; writable.columnNames = null; @@ -30,7 +31,9 @@ export function createBulkInsertStreamBase(driver: EngineDriver, stream, dbhan, writable.checkStructure = async () => { let structure = await driver.analyseSingleTable(dbhan, name); - // console.log('ANALYSING', name, structure); + if (structure) { + writable.structure = structure; + } if (structure && options.dropIfExists) { logger.info(`Dropping table ${fullNameQuoted}`); await driver.script(dbhan, `DROP TABLE ${fullNameQuoted}`); diff --git a/packages/tools/src/dbKeysLoader.ts b/packages/tools/src/dbKeysLoader.ts new file mode 100644 index 000000000..428ca10ab --- /dev/null +++ b/packages/tools/src/dbKeysLoader.ts @@ -0,0 +1,197 @@ +import _omit from 'lodash/omit'; + +const SHOW_INCREMENT = 100; + +export interface DbKeysNodeModelBase { + text?: string; + count?: number; + level: number; +} + +export interface DbKeysLeafNodeModel extends DbKeysNodeModelBase { + key: string; + + type: 'string' | 'hash' | 'set' | 'list' | 'zset' | 'stream' | 'binary' | 'ReJSON-RL'; +} + +export interface DbKeysFolderNodeModel extends DbKeysNodeModelBase { + root: string; + type: 'dir'; + maxShowCount?: number; + isExpanded?: boolean; + shouldLoadNext?: boolean; + hasNext?: boolean; +} + +export interface DbKeysTreeModel { + root: DbKeysFolderNodeModel; + dirsByKey: { [key: string]: DbKeysFolderNodeModel }; + childrenByKey: { [key: string]: DbKeysNodeModel[] }; + refreshAll?: boolean; +} + +export type DbKeysNodeModel = DbKeysLeafNodeModel | DbKeysFolderNodeModel; + +export type DbKeysLoadFunction = (root: string, limit: number) => Promise; + +export type DbKeysChangeModelFunction = (func: (model: DbKeysTreeModel) => DbKeysTreeModel) => void; + +// function dbKeys_findFolderNode(node: DbKeysNodeModel, root: string) { +// if (node.type != 'dir') { +// return null; +// } +// if (node.root === root) { +// return node; +// } +// for (const child of node.children ?? []) { +// const res = dbKeys_findFolderNode(child, root); +// if (res) { +// return res; +// } +// } +// return null; +// } + +// export async function dbKeys_loadKeysFromNode( +// tree: DbKeysTreeModel, +// callingRoot: string, +// separator: string, +// loader: DbKeysLoadFunction +// ): Promise { +// const callingRootNode = tree.dirsByKey[callingRoot]; +// if (!callingRootNode) { +// return tree; +// } +// const newItems = await loader(callingRoot, callingRootNode.maxShowCount ?? SHOW_INCREMENT); + +// return { +// ...tree, +// childrenByKey: { +// ...tree.childrenByKey, +// [callingRoot]: newItems, +// }, +// }; +// } + +export async function dbKeys_loadMissing(tree: DbKeysTreeModel, loader: DbKeysLoadFunction): Promise { + const childrenByKey = { ...tree.childrenByKey }; + const dirsByKey = { ...tree.dirsByKey }; + + for (const root in tree.dirsByKey) { + const dir = tree.dirsByKey[root]; + + if (dir.isExpanded && dir.shouldLoadNext) { + if (!tree.childrenByKey[root] || dir.hasNext) { + const loadCount = dir.maxShowCount && dir.shouldLoadNext ? dir.maxShowCount + SHOW_INCREMENT : SHOW_INCREMENT; + const items = await loader(root, loadCount + 1); + + childrenByKey[root] = items.slice(0, loadCount); + dirsByKey[root] = { + ...dir, + shouldLoadNext: false, + maxShowCount: loadCount, + hasNext: items.length > loadCount, + }; + + for (const child of items.slice(0, loadCount)) { + if (child.type == 'dir' && !dirsByKey[child.root]) { + dirsByKey[child.root] = { + shouldLoadNext: false, + maxShowCount: null, + hasNext: false, + isExpanded: false, + type: 'dir', + level: dir.level + 1, + root: child.root, + text: child.text, + }; + } + } + } else { + dirsByKey[root] = { + ...dir, + shouldLoadNext: false, + }; + } + } + } + + return { + ...tree, + dirsByKey, + childrenByKey, + refreshAll: false, + }; +} + +export function dbKeys_markNodeExpanded(tree: DbKeysTreeModel, root: string, isExpanded: boolean): DbKeysTreeModel { + const node = tree.dirsByKey[root]; + if (!node) { + return tree; + } + return { + ...tree, + dirsByKey: { + ...tree.dirsByKey, + [root]: { + ...node, + isExpanded, + shouldLoadNext: isExpanded, + }, + }, + }; +} + +export function dbKeys_refreshAll(tree?: DbKeysTreeModel): DbKeysTreeModel { + const root: DbKeysFolderNodeModel = { + isExpanded: true, + level: 0, + root: '', + type: 'dir', + shouldLoadNext: true, + }; + return { + ...tree, + childrenByKey: {}, + dirsByKey: { + '': root, + }, + refreshAll: true, + root, + }; +} + +export function dbKeys_reloadFolder(tree: DbKeysTreeModel, root: string): DbKeysTreeModel { + return { + ...tree, + childrenByKey: _omit(tree.childrenByKey, root), + dirsByKey: { + ...tree.dirsByKey, + [root]: { + ...tree.dirsByKey[root], + shouldLoadNext: true, + hasNext: undefined, + }, + }, + }; +} + +function addFlatItems(tree: DbKeysTreeModel, root: string, res: DbKeysNodeModel[]) { + const item = tree.dirsByKey[root]; + if (!item.isExpanded) { + return false; + } + const children = tree.childrenByKey[root] || []; + for (const child of children) { + res.push(child); + if (child.type == 'dir') { + addFlatItems(tree, child.root, res); + } + } +} + +export function dbKeys_getFlatList(tree: DbKeysTreeModel) { + const res: DbKeysNodeModel[] = []; + addFlatItems(tree, '', res); + return res; +} diff --git a/packages/tools/src/driverBase.ts b/packages/tools/src/driverBase.ts index 06820f7d5..7f1cbe6e2 100644 --- a/packages/tools/src/driverBase.ts +++ b/packages/tools/src/driverBase.ts @@ -2,7 +2,7 @@ import _compact from 'lodash/compact'; import _isString from 'lodash/isString'; import { SqlDumper } from './SqlDumper'; import { splitQuery } from 'dbgate-query-splitter'; -import { dumpSqlSelect } from 'dbgate-sqltree'; +import { dumpSqlSelect, Select } from 'dbgate-sqltree'; import { EngineDriver, QueryResult, RunScriptOptions } from 'dbgate-types'; import { detectSqlFilterBehaviour } from './detectSqlFilterBehaviour'; import { getLogger } from './getLogger'; @@ -63,6 +63,12 @@ export function formatQueryWithoutParams(driver: EngineDriver, sql: string) { return dmp.s; } +export async function runQueryFmt(driver, conn, query, ...args) { + const dmp = driver.createDumper(); + dmp.put(query, ...args); + await driver.query(conn, dmp.s); +} + export const driverBase = { analyserClass: null, dumperClass: SqlDumper, @@ -128,31 +134,44 @@ export const driverBase = { } return []; }, - async loadFieldValues(pool, name, columnName, search) { + async loadFieldValues(pool, name, columnName, search, dataType) { const dmp = this.createDumper(); - const select = { + + let expr; + if (this.dialect.createColumnViewExpression) { + expr = this.dialect.createColumnViewExpression(columnName, dataType, { name }, 'value'); + } + if (!expr) { + expr = { + exprType: 'column', + columnName, + alias: 'value', + }; + } + + const select: Select = { commandType: 'select', distinct: true, - topRecords: 100, from: { name, }, - columns: [ - { - exprType: 'column', - columnName, - alias: 'value', - }, - ], + columns: [expr], orderBy: [ { exprType: 'column', columnName, + direction: 'ASC', }, ], }; + if (this.dialect.topRecords) { + select.topRecords = 100; + } else { + select.range = { offset: 0, limit: 100 }; + } + if (search) { const tokens = _compact(search.split(' ').map(x => x.trim())); if (tokens.length > 0) { diff --git a/packages/tools/src/index.ts b/packages/tools/src/index.ts index 46b6c36f0..b446d0fd9 100644 --- a/packages/tools/src/index.ts +++ b/packages/tools/src/index.ts @@ -24,3 +24,4 @@ export * from './getConnectionLabel'; export * from './detectSqlFilterBehaviour'; export * from './filterBehaviours'; export * from './schemaInfoTools'; +export * from './dbKeysLoader'; diff --git a/packages/types/dbinfo.d.ts b/packages/types/dbinfo.d.ts index 6bd700e75..0f5a0b99f 100644 --- a/packages/types/dbinfo.d.ts +++ b/packages/types/dbinfo.d.ts @@ -163,7 +163,7 @@ export interface SchedulerEventInfo extends SqlObjectInfo { onCompletion: 'PRESERVE' | 'NOT PRESERVE'; status: 'ENABLED' | 'DISABLED'; lastExecuted?: string; - intervalValue: number; + intervalValue: string; intervalField: string; starts: string; executeAt: string; @@ -189,3 +189,34 @@ export interface DatabaseInfoObjects { export interface DatabaseInfo extends DatabaseInfoObjects { engine?: string; } + +export interface ColumnReferenceTiny { + n: string; // name + r?: string; // ref name +} + +export interface PrimaryKeyInfoTiny { + c: ColumnReferenceTiny[]; // columns +} + +export interface ForeignKeyInfoTiny { + c: ColumnReferenceTiny[]; // columns + r: string; // reference table name +} + +export interface ColumnInfoTiny { + n: string; // name + t: string; // type +} + +export interface TableInfoTiny { + n: string; //name + o: string; // comment + c: ColumnInfoTiny[]; // columns + p?: PrimaryKeyInfoTiny; // primary key + f?: ForeignKeyInfoTiny[]; // foreign keys +} + +export interface DatabaseInfoTiny { + t: TableInfoTiny[]; // tables +} diff --git a/packages/types/dialect.d.ts b/packages/types/dialect.d.ts index c48d2a604..9aabe7026 100644 --- a/packages/types/dialect.d.ts +++ b/packages/types/dialect.d.ts @@ -1,3 +1,5 @@ +import { ColumnInfo } from './dbinfo'; + export interface SqlDialect { rangeSelect?: boolean; limitSelect?: boolean; @@ -6,6 +8,7 @@ export interface SqlDialect { topRecords?: boolean; stringEscapeChar: string; offsetFetchRangeSyntax?: boolean; + offsetNotSupported?: boolean; quoteIdentifier(s: string): string; fallbackDataType?: string; explicitDropConstraint?: boolean; @@ -44,7 +47,14 @@ export interface SqlDialect { omitForeignKeys?: boolean; omitUniqueConstraints?: boolean; omitIndexes?: boolean; + omitTableAliases?: boolean; + omitTableBeforeColumn?: boolean; + disableAutoIncrement?: boolean; + disableNonPrimaryKeyRename?: boolean; + disableRenameTable?: boolean; + defaultNewTableColumns?: ColumnInfo[]; sortingKeys?: boolean; + generateDefaultValueForUuid?: string; // syntax for create column: ALTER TABLE table ADD COLUMN column createColumnWithColumnKeyword?: boolean; diff --git a/packages/types/dumper.d.ts b/packages/types/dumper.d.ts index f6025cc5a..d2af2879a 100644 --- a/packages/types/dumper.d.ts +++ b/packages/types/dumper.d.ts @@ -11,7 +11,7 @@ export interface SqlDumper extends AlterProcessor { putRaw(s: string); put(format: string, ...args); putCmd(format: string, ...args); - putValue(value: string | number | Date); + putValue(value: string | number | Date, dataType?: string); putCollection(delimiter: string, collection: T[], lambda: (item: T) => void); transform(type: TransformType, dumpExpr: () => void); createDatabase(name: string); diff --git a/packages/types/engines.d.ts b/packages/types/engines.d.ts index 389a5f13c..81586d4c2 100644 --- a/packages/types/engines.d.ts +++ b/packages/types/engines.d.ts @@ -32,6 +32,7 @@ export interface RunScriptOptions { export interface QueryOptions { discardResult?: boolean; importSqlDump?: boolean; + range?: { offset: number; limit: number }; } export interface WriteTableOptions { @@ -133,8 +134,8 @@ export interface FilterBehaviourProvider { getFilterBehaviour(dataType: string, standardFilterBehaviours: { [id: string]: FilterBehaviour }): FilterBehaviour; } -export interface DatabaseHandle { - client: any; +export interface DatabaseHandle { + client: TClient; database?: string; feedback?: (message: any) => void; getDatabase?: () => any; @@ -142,7 +143,7 @@ export interface DatabaseHandle { treeKeySeparator?: string; } -export interface EngineDriver extends FilterBehaviourProvider { +export interface EngineDriver extends FilterBehaviourProvider { engine: string; title: string; defaultPort?: number; @@ -180,57 +181,68 @@ export interface EngineDriver extends FilterBehaviourProvider { beforeConnectionSave?: (values: any) => any; databaseUrlPlaceholder?: string; defaultAuthTypeName?: string; + defaultLocalDataCenter?: string; defaultSocketPath?: string; authTypeLabel?: string; importExportArgs?: any[]; - connect({ server, port, user, password, database }): Promise; - close(dbhan: DatabaseHandle): Promise; - query(dbhan: DatabaseHandle, sql: string, options?: QueryOptions): Promise; - stream(dbhan: DatabaseHandle, sql: string, options: StreamOptions); - readQuery(dbhan: DatabaseHandle, sql: string, structure?: TableInfo): Promise; - readJsonQuery(dbhan: DatabaseHandle, query: any, structure?: TableInfo): Promise; + connect({ server, port, user, password, database }): Promise>; + close(dbhan: DatabaseHandle): Promise; + query(dbhan: DatabaseHandle, sql: string, options?: QueryOptions): Promise; + stream(dbhan: DatabaseHandle, sql: string, options: StreamOptions); + readQuery(dbhan: DatabaseHandle, sql: string, structure?: TableInfo): Promise; + readJsonQuery(dbhan: DatabaseHandle, query: any, structure?: TableInfo): Promise; // eg. PostgreSQL COPY FROM stdin - writeQueryFromStream(dbhan: DatabaseHandle, sql: string): Promise; - writeTable(dbhan: DatabaseHandle, name: NamedObjectInfo, options: WriteTableOptions): Promise; + writeQueryFromStream(dbhan: DatabaseHandle, sql: string): Promise; + writeTable( + dbhan: DatabaseHandle, + name: NamedObjectInfo, + options: WriteTableOptions + ): Promise; analyseSingleObject( - dbhan: DatabaseHandle, + dbhan: DatabaseHandle, name: NamedObjectInfo, objectTypeField: keyof DatabaseInfo ): Promise; - analyseSingleTable(dbhan: DatabaseHandle, name: NamedObjectInfo): Promise; - getVersion(dbhan: DatabaseHandle): Promise<{ version: string; versionText?: string }>; - listDatabases(dbhan: DatabaseHandle): Promise< + analyseSingleTable(dbhan: DatabaseHandle, name: NamedObjectInfo): Promise; + getVersion(dbhan: DatabaseHandle): Promise<{ version: string; versionText?: string }>; + listDatabases(dbhan: DatabaseHandle): Promise< { name: string; }[] >; - loadKeys(dbhan: DatabaseHandle, root: string, filter?: string): Promise; - exportKeys(dbhan: DatabaseHandle, options: {}): Promise; - loadKeyInfo(dbhan: DatabaseHandle, key): Promise; - loadKeyTableRange(dbhan: DatabaseHandle, key, cursor, count): Promise; - loadFieldValues(dbhan: DatabaseHandle, name: NamedObjectInfo, field: string, search: string): Promise; - analyseFull(dbhan: DatabaseHandle, serverVersion): Promise; - analyseIncremental(dbhan: DatabaseHandle, structure: DatabaseInfo, serverVersion): Promise; + loadKeys(dbhan: DatabaseHandle, root: string, filter?: string): Promise; + exportKeys(dbhan: DatabaseHandle, options: {}): Promise; + loadKeyInfo(dbhan: DatabaseHandle, key): Promise; + loadKeyTableRange(dbhan: DatabaseHandle, key, cursor, count): Promise; + loadFieldValues( + dbhan: DatabaseHandle, + name: NamedObjectInfo, + field: string, + search: string, + dataType: string + ): Promise; + analyseFull(dbhan: DatabaseHandle, serverVersion): Promise; + analyseIncremental(dbhan: DatabaseHandle, structure: DatabaseInfo, serverVersion): Promise; dialect: SqlDialect; dialectByVersion(version): SqlDialect; createDumper(options = null): SqlDumper; - createBackupDumper(dbhan: DatabaseHandle, options): Promise; + createBackupDumper(dbhan: DatabaseHandle, options): Promise; getAuthTypes(): EngineAuthType[]; - readCollection(dbhan: DatabaseHandle, options: ReadCollectionOptions): Promise; - updateCollection(dbhan: DatabaseHandle, changeSet: any): Promise; + readCollection(dbhan: DatabaseHandle, options: ReadCollectionOptions): Promise; + updateCollection(dbhan: DatabaseHandle, changeSet: any): Promise; getCollectionUpdateScript(changeSet: any, collectionInfo: CollectionInfo): string; - createDatabase(dbhan: DatabaseHandle, name: string): Promise; - dropDatabase(dbhan: DatabaseHandle, name: string): Promise; + createDatabase(dbhan: DatabaseHandle, name: string): Promise; + dropDatabase(dbhan: DatabaseHandle, name: string): Promise; getQuerySplitterOptions(usage: 'stream' | 'script' | 'editor' | 'import'): any; - script(dbhan: DatabaseHandle, sql: string, options?: RunScriptOptions): Promise; - operation(dbhan: DatabaseHandle, operation: {}, options?: RunScriptOptions): Promise; + script(dbhan: DatabaseHandle, sql: string, options?: RunScriptOptions): Promise; + operation(dbhan: DatabaseHandle, operation: {}, options?: RunScriptOptions): Promise; getNewObjectTemplates(): NewObjectTemplate[]; // direct call of dbhan.client method, only some methods could be supported, on only some drivers - callMethod(dbhan: DatabaseHandle, method, args); - serverSummary(dbhan: DatabaseHandle): Promise; - summaryCommand(dbhan: DatabaseHandle, command, row): Promise; - startProfiler(dbhan: DatabaseHandle, options): Promise; - stopProfiler(dbhan: DatabaseHandle, profiler): Promise; + callMethod(dbhan: DatabaseHandle, method, args); + serverSummary(dbhan: DatabaseHandle): Promise; + summaryCommand(dbhan: DatabaseHandle, command, row): Promise; + startProfiler(dbhan: DatabaseHandle, options): Promise; + stopProfiler(dbhan: DatabaseHandle, profiler): Promise; getRedirectAuthUrl(connection, options): Promise<{ url: string; sid: string }>; getAuthTokenFromCode(connection, options): Promise; getAccessTokenFromAuth(connection, req): Promise; @@ -241,11 +253,11 @@ export interface EngineDriver extends FilterBehaviourProvider { createSaveChangeSetScript( changeSet: any, dbinfo: DatabaseInfo, - defaultCreator: (changeSet: any, dbinfo: DatabaseInfo) => any + defaultCreator: (changeSet: any, dbinfo: DatabaseInfo, dialect: SqlDialect) => any ): any[]; // adapts table info from different source (import, other database) to be suitable for this database adaptTableInfo(table: TableInfo): TableInfo; - listSchemas(dbhan: DatabaseHandle): SchemaInfo[]; + listSchemas(dbhan: DatabaseHandle): SchemaInfo[]; analyserClass?: any; dumperClass?: any; diff --git a/packages/types/index.d.ts b/packages/types/index.d.ts index 916af27a2..1a33f7c67 100644 --- a/packages/types/index.d.ts +++ b/packages/types/index.d.ts @@ -48,3 +48,4 @@ export * from './extensions'; export * from './alter-processor'; export * from './appdefs'; export * from './filter-type'; +export * from './test-engines'; diff --git a/packages/types/test-engines.d.ts b/packages/types/test-engines.d.ts new file mode 100644 index 000000000..10642118e --- /dev/null +++ b/packages/types/test-engines.d.ts @@ -0,0 +1,86 @@ +import { ParameterInfo, SchedulerEventInfo, TriggerInfo } from './dbinfo'; + +export type TestObjectInfo = { + type: string; + create1: string; + create2: string; + drop1: string; + drop2: string; +}; + +export type TestEngineInfo = { + label: string; + connection: { + engine: string; + server?: string; + databaseUrl?: string; + serviceName?: string; + password?: string; + user?: string; + port?: number; + }; + + removeNotNull?: boolean; + + skipOnCI?: boolean; + skipIncrementalAnalysis?: boolean; + skipDataModifications?: boolean; + skipReferences?: boolean; + skipIndexes?: boolean; + skipNullability?: boolean; + skipUnique?: boolean; + skipAutoIncrement?: boolean; + skipPkColumnTesting?: boolean; + skipDataDuplicator?: boolean; + skipDeploy?: boolean; + skipStringLength?: boolean; + skipChangeColumn?: boolean; + skipDefaultValue?: boolean; + skipNonPkRename?: boolean; + skipPkDrop?: boolean; + skipOrderBy?: boolean; + + forceSortResults?: boolean; + forceSortStructureColumns?: boolean; + alterTableAddColumnSyntax?: boolean; + dbSnapshotBySeconds?: boolean; + setNullDefaultInsteadOfDrop?: boolean; + + useTextTypeForStrings?: boolean; + + supportRenameSqlObject?: boolean; + supportSchemas?: boolean; + + defaultSchemaName?: string; + + generateDbFile?: boolean; + dbSnapshotBySeconds?: boolean; + dumpFile?: string; + dumpChecks?: Array<{ sql: string; res: string }>; + + parametersOtherSql?: string[]; + parameters?: Array<{ + testName: string; + create: string; + drop: string; + objectTypeField: string; + list: Array>; + }>; + triggers?: Array<{ + testName: string; + create: string; + drop: string; + triggerOtherCreateSql?: string; + triggerOtherDropSql?: string; + objectTypeField: string; + expected: Partial; + }>; + schedulerEvents?: Array<{ + create: string; + drop: string; + objectTypeField: string; + expected: Partial; + }>; + + objects?: Array; +}; diff --git a/packages/web/package.json b/packages/web/package.json index be180f8ce..e57c0d161 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -61,6 +61,7 @@ "date-fns": "^4.1.0", "debug": "^4.3.4", "fuzzy": "^0.1.3", + "highlight.js": "^11.11.1", "interval-operations": "^1.0.7", "leaflet": "^1.8.0", "wellknown": "^0.5.0" diff --git a/packages/web/public/bulma.css b/packages/web/public/bulma.css index 6492cd0c3..471553f74 100644 --- a/packages/web/public/bulma.css +++ b/packages/web/public/bulma.css @@ -2,6 +2,30 @@ margin: 0 !important; } +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 0.75rem !important; +} + +.m-4 { + margin: 1rem !important; +} + +.m-5 { + margin: 1.5rem !important; +} + +.m-6 { + margin: 3rem !important; +} + .mt-0 { margin-top: 0 !important; } @@ -28,10 +52,6 @@ margin-bottom: 0 !important; } -.m-1 { - margin: 0.25rem !important; -} - .mt-1 { margin-top: 0.25rem !important; } @@ -58,10 +78,6 @@ margin-bottom: 0.25rem !important; } -.m-2 { - margin: 0.5rem !important; -} - .mt-2 { margin-top: 0.5rem !important; } @@ -88,10 +104,6 @@ margin-bottom: 0.5rem !important; } -.m-3 { - margin: 0.75rem !important; -} - .mt-3 { margin-top: 0.75rem !important; } @@ -118,10 +130,6 @@ margin-bottom: 0.75rem !important; } -.m-4 { - margin: 1rem !important; -} - .mt-4 { margin-top: 1rem !important; } @@ -148,10 +156,6 @@ margin-bottom: 1rem !important; } -.m-5 { - margin: 1.5rem !important; -} - .mt-5 { margin-top: 1.5rem !important; } @@ -178,10 +182,6 @@ margin-bottom: 1.5rem !important; } -.m-6 { - margin: 3rem !important; -} - .mt-6 { margin-top: 3rem !important; } diff --git a/packages/web/src/LoginPage.svelte b/packages/web/src/LoginPage.svelte index 6e5070ffd..71dc7515f 100644 --- a/packages/web/src/LoginPage.svelte +++ b/packages/web/src/LoginPage.svelte @@ -137,9 +137,9 @@ @@ -164,17 +164,41 @@ {#if selectedConnection} {#if selectedConnection.passwordMode == 'askUser'} - + {/if} {#if selectedConnection.passwordMode == 'askUser' || selectedConnection.passwordMode == 'askPassword'} - + {/if} {:else} {#if !isAdminPage && workflowType == 'credentials'} - + {/if} {#if workflowType == 'credentials'} - + {/if} {/if} @@ -199,6 +223,7 @@ {#if selectedConnection?.useRedirectDbLogin} { const state = `dbg-dblogin:${strmid}:${selectedConnection?.conid}:${$values.amoid}`; sessionStorage.setItem('dbloginAuthState', state); @@ -210,6 +235,7 @@ {:else if selectedConnection} { if (selectedConnection.passwordMode == 'askUser' || selectedConnection.passwordMode == 'askPassword') { enableApi(); @@ -257,6 +283,7 @@ await processRedirectLogin($values.amoid); } }} + data-testid="LoginPage_submitLogin" /> {/if} @@ -264,7 +291,11 @@ {#each availableProviders.filter(x => x.workflowType == 'anonymous' || x.workflowType == 'redirect') as provider} -
processSingleProvider(provider)}> +
processSingleProvider(provider)} + data-testid={`LoginPage_loginButton_${provider.name}`} + > {provider.name}
{/each} diff --git a/packages/web/src/NotLoggedPage.svelte b/packages/web/src/NotLoggedPage.svelte index b1783226b..6bf542f1a 100644 --- a/packages/web/src/NotLoggedPage.svelte +++ b/packages/web/src/NotLoggedPage.svelte @@ -30,8 +30,8 @@ {/if}
- - + +
diff --git a/packages/web/src/appobj/AppObjectCore.svelte b/packages/web/src/appobj/AppObjectCore.svelte index 5ba6ca4da..29bc7f4d0 100644 --- a/packages/web/src/appobj/AppObjectCore.svelte +++ b/packages/web/src/appobj/AppObjectCore.svelte @@ -196,17 +196,12 @@ diff --git a/packages/web/src/appobj/ArchiveFolderAppObject.svelte b/packages/web/src/appobj/ArchiveFolderAppObject.svelte index 27ee13d42..dbd0ede98 100644 --- a/packages/web/src/appobj/ArchiveFolderAppObject.svelte +++ b/packages/web/src/appobj/ArchiveFolderAppObject.svelte @@ -97,6 +97,10 @@ await dbgateApi.deployDb(${JSON.stringify( title: 'Compare', icon: 'img compare', tabComponent: 'CompareModelTab', + props: { + conid: $currentDatabase?.connection?._id, + database: $currentDatabase?.name, + } }, { editor: { diff --git a/packages/web/src/appobj/ColumnAppObject.svelte b/packages/web/src/appobj/ColumnAppObject.svelte index e53d78657..b6ca328ac 100644 --- a/packages/web/src/appobj/ColumnAppObject.svelte +++ b/packages/web/src/appobj/ColumnAppObject.svelte @@ -21,11 +21,15 @@ import { renameDatabaseObjectDialog, alterDatabaseDialog } from '../utility/alterDatabaseTools'; import AppObjectCore from './AppObjectCore.svelte'; - import { DEFAULT_OBJECT_SEARCH_SETTINGS } from '../stores'; - import { filterName } from 'dbgate-tools'; + import { DEFAULT_OBJECT_SEARCH_SETTINGS, extensions } from '../stores'; + import { filterName, findEngineDriver } from 'dbgate-tools'; + import { useConnectionInfo } from '../utility/metadataLoaders'; export let data; + $: connection = useConnectionInfo({ conid: data.conid }); + $: driver = findEngineDriver($connection, $extensions); + function handleRenameColumn() { renameDatabaseObjectDialog(data.conid, data.database, data.columnName, (db, newName) => { const tbl = db.tables.find(x => x.schemaName == data.schemaName && x.pureName == data.pureName); @@ -42,11 +46,20 @@ } function createMenu() { - return [ - { text: 'Rename column', onClick: handleRenameColumn }, + const isPrimaryKey = !!data.primaryKey?.columns?.some(i => i.columnName == data.columnName); + + const menu = []; + + if (!driver.dialect.disableNonPrimaryKeyRename || isPrimaryKey) { + menu.push({ text: 'Rename column', onClick: handleRenameColumn }); + } + + menu.push( { text: 'Drop column', onClick: handleDropColumn }, - { text: 'Copy name', onClick: () => navigator.clipboard.writeText(data.columnName) }, - ]; + { text: 'Copy name', onClick: () => navigator.clipboard.writeText(data.columnName) } + ); + + return menu; } function getExtInfo(data) { diff --git a/packages/web/src/appobj/DatabaseAppObject.svelte b/packages/web/src/appobj/DatabaseAppObject.svelte index d9f45aef8..277f3d2a3 100644 --- a/packages/web/src/appobj/DatabaseAppObject.svelte +++ b/packages/web/src/appobj/DatabaseAppObject.svelte @@ -196,13 +196,17 @@ title: 'Compare', icon: 'img compare', tabComponent: 'CompareModelTab', + props: { + conid: $currentDatabase?.connection?._id, + database: $currentDatabase?.name, + }, }, { editor: { - sourceConid: _.get($currentDatabase, 'connection._id'), - sourceDatabase: _.get($currentDatabase, 'name'), - targetConid: _.get(connection, '_id'), - targetDatabase: name, + sourceConid: connection?._id, + sourceDatabase: name, + targetConid: $currentDatabase?.connection?._id, + targetDatabase: $currentDatabase?.name, }, } ); @@ -243,7 +247,7 @@ tabComponent: 'QueryDesignTab', focused: true, props: { - conid: connection._id, + conid: connection?._id, database: name, }, }); @@ -255,7 +259,7 @@ icon: 'img perspective', tabComponent: 'PerspectiveTab', props: { - conid: connection._id, + conid: connection?._id, database: name, }, }); @@ -267,14 +271,14 @@ icon: 'img profiler', tabComponent: 'ProfilerTab', props: { - conid: connection._id, + conid: connection?._id, database: name, }, }); }; const handleRefreshSchemas = () => { - const conid = connection._id; + const conid = connection?._id; const database = name; apiCall('database-connections/dispatch-database-changed-event', { event: 'schema-list-changed', @@ -285,7 +289,7 @@ }; async function handleConfirmSql(sql) { - saveScriptToDatabase({ conid: connection._id, database: name }, sql, false); + saveScriptToDatabase({ conid: connection?._id, database: name }, sql, false); } const handleGenerateDropAllObjectsScript = () => { @@ -559,7 +563,7 @@ await dbgateApi.dropAllDbObjects(${JSON.stringify( : $lockedDatabaseMode ? getNumberIcon( $openedTabs.filter( - x => !x.closedTime && x.props.conid == data?.connection?._id && x.props.database == data?.name + x => !x.closedTime && x.props?.conid == data?.connection?._id && x.props?.database == data?.name ).length ) : ''} diff --git a/packages/web/src/appobj/DatabaseObjectAppObject.svelte b/packages/web/src/appobj/DatabaseObjectAppObject.svelte index 3e73d50ab..633aacd54 100644 --- a/packages/web/src/appobj/DatabaseObjectAppObject.svelte +++ b/packages/web/src/appobj/DatabaseObjectAppObject.svelte @@ -147,11 +147,12 @@ isDrop: true, requiresWriteAccess: true, }, - hasPermission('dbops/table/rename') && { - label: 'Rename table', - isRename: true, - requiresWriteAccess: true, - }, + hasPermission('dbops/table/rename') && + !driver?.dialect.disableRenameTable && { + label: 'Rename table', + isRename: true, + requiresWriteAccess: true, + }, hasPermission('dbops/table/truncate') && { label: 'Truncate table', isTruncate: true, @@ -861,7 +862,7 @@ isRawMode: prefferedAction?.isRawMode ?? false, }, forceNewTab, - null, + prefferedAction?.initialData, prefferedAction.icon, data, tabPreviewMode diff --git a/packages/web/src/appobj/SubTableColumnList.svelte b/packages/web/src/appobj/SubTableColumnList.svelte index de7a249e6..c413f750b 100644 --- a/packages/web/src/appobj/SubTableColumnList.svelte +++ b/packages/web/src/appobj/SubTableColumnList.svelte @@ -8,6 +8,7 @@ export let filter; export let isExpandedBySearch; export let passProps; + export let isMainMatched; diff --git a/packages/web/src/buttons/ToolStripButton.svelte b/packages/web/src/buttons/ToolStripButton.svelte index 07b302207..327abea16 100644 --- a/packages/web/src/buttons/ToolStripButton.svelte +++ b/packages/web/src/buttons/ToolStripButton.svelte @@ -16,7 +16,7 @@
-
+
{#if iconAfter} diff --git a/packages/web/src/buttons/ToolStripCommandSplitButton.svelte b/packages/web/src/buttons/ToolStripCommandSplitButton.svelte index 933b5fe51..0373bb8cc 100644 --- a/packages/web/src/buttons/ToolStripCommandSplitButton.svelte +++ b/packages/web/src/buttons/ToolStripCommandSplitButton.svelte @@ -17,4 +17,5 @@ {menu} {hideDisabled} {buttonLabel} + {...$$restProps} /> diff --git a/packages/web/src/buttons/ToolStripSplitButton.svelte b/packages/web/src/buttons/ToolStripSplitButton.svelte index 007ca44cd..a21253c85 100644 --- a/packages/web/src/buttons/ToolStripSplitButton.svelte +++ b/packages/web/src/buttons/ToolStripSplitButton.svelte @@ -21,7 +21,7 @@
-
+
diff --git a/packages/web/src/buttons/ToolStripSplitDropDownButton.svelte b/packages/web/src/buttons/ToolStripSplitDropDownButton.svelte index ffec46466..5236004f7 100644 --- a/packages/web/src/buttons/ToolStripSplitDropDownButton.svelte +++ b/packages/web/src/buttons/ToolStripSplitDropDownButton.svelte @@ -19,6 +19,6 @@ } - + diff --git a/packages/web/src/celldata/JsonCellView.svelte b/packages/web/src/celldata/JsonCellView.svelte index f9589a6fe..ea9633c33 100644 --- a/packages/web/src/celldata/JsonCellView.svelte +++ b/packages/web/src/celldata/JsonCellView.svelte @@ -5,6 +5,7 @@ export let selection; export let showWholeRow = false; + export let expandAll = false; let json = null; let error = null; @@ -31,7 +32,7 @@ {:else}
- +
{/if} diff --git a/packages/web/src/celldata/JsonExpandedCellView.svelte b/packages/web/src/celldata/JsonExpandedCellView.svelte new file mode 100644 index 000000000..db38ad001 --- /dev/null +++ b/packages/web/src/celldata/JsonExpandedCellView.svelte @@ -0,0 +1,6 @@ + + + diff --git a/packages/web/src/celldata/XmlCellView.svelte b/packages/web/src/celldata/XmlCellView.svelte new file mode 100644 index 000000000..523076ff8 --- /dev/null +++ b/packages/web/src/celldata/XmlCellView.svelte @@ -0,0 +1,9 @@ + + +{#each selection as cell} + +{/each} diff --git a/packages/web/src/celldata/XmlHighlighter.svelte b/packages/web/src/celldata/XmlHighlighter.svelte new file mode 100644 index 000000000..f6df74049 --- /dev/null +++ b/packages/web/src/celldata/XmlHighlighter.svelte @@ -0,0 +1,42 @@ + + +{#key formattedCode} +
{formattedCode}
+{/key} + + diff --git a/packages/web/src/celldata/formatXml.ts b/packages/web/src/celldata/formatXml.ts new file mode 100644 index 000000000..2baef0720 --- /dev/null +++ b/packages/web/src/celldata/formatXml.ts @@ -0,0 +1,24 @@ +export default function formatXml(xml: string): string { + if (typeof xml !== 'string') return ''; + + xml = xml.replace(/>\s*<'); + + let formatted = ''; + let indent = 0; + + const tags = xml.split(/(<.*?>)/g).filter(s => s.trim()); + + for (let tag of tags) { + if (tag.startsWith('') && !tag.startsWith('`]+/ }, + ], + }, + ], + }, + ], + }; + return { + name: 'HTML, XML', + aliases: ['html', 'xhtml', 'rss', 'atom', 'xjb', 'xsd', 'xsl', 'plist', 'wsf', 'svg'], + case_insensitive: true, + unicodeRegex: true, + contains: [ + { + className: 'meta', + begin: //, + relevance: 10, + contains: [ + XML_META_KEYWORDS, + QUOTE_META_STRING_MODE, + APOS_META_STRING_MODE, + XML_META_PAR_KEYWORDS, + { + begin: /\[/, + end: /\]/, + contains: [ + { + className: 'meta', + begin: //, + contains: [XML_META_KEYWORDS, XML_META_PAR_KEYWORDS, QUOTE_META_STRING_MODE, APOS_META_STRING_MODE], + }, + ], + }, + ], + }, + hljs.COMMENT(//, { relevance: 10 }), + { + begin: //, + relevance: 10, + }, + XML_ENTITIES, + // xml processing instructions + { + className: 'meta', + end: /\?>/, + variants: [ + { + begin: /<\?xml/, + relevance: 10, + contains: [QUOTE_META_STRING_MODE], + }, + { + begin: /<\?[a-z][a-z0-9]+/, + }, + ], + }, + { + className: 'tag', + /* + The lookahead pattern (?=...) ensures that 'begin' only matches + ')/, + end: />/, + keywords: { name: 'style' }, + contains: [TAG_INTERNALS], + starts: { + end: /<\/style>/, + returnEnd: true, + subLanguage: ['css', 'xml'], + }, + }, + { + className: 'tag', + // See the comment in the diff --git a/packages/web/src/datagrid/SqlDataGridCore.svelte b/packages/web/src/datagrid/SqlDataGridCore.svelte index 471240974..caa6ec989 100644 --- a/packages/web/src/datagrid/SqlDataGridCore.svelte +++ b/packages/web/src/datagrid/SqlDataGridCore.svelte @@ -82,6 +82,7 @@ import LoadingDataGridCore from './LoadingDataGridCore.svelte'; import hasPermission from '../utility/hasPermission'; import { openImportExportTab } from '../utility/importExportTools'; + import { getIntSettingsValue } from '../settings/settingsTools'; export let conid; export let display; @@ -147,7 +148,7 @@ // showModal(ImportExportModal, { initialValues }); } - export function openQuery() { + export function openQuery(sql?) { openNewTab( { title: 'Query #', @@ -162,11 +163,15 @@ }, }, { - editor: display.getExportQuery(), + editor: sql ?? display.getExportQuery(), } ); } + function openQueryOnError() { + openQuery(display.getPageQueryText(0, getIntSettingsValue('dataGrid.pageSize', 100, 5, 1000))); + } + export function openActiveChart() { openNewTab( { @@ -241,4 +246,5 @@ {grider} {display} onOpenQuery={openQuery} + onOpenQueryOnError={openQueryOnError} /> diff --git a/packages/web/src/dbkeyvalue/DbKeyItemDetail.svelte b/packages/web/src/dbkeyvalue/DbKeyItemDetail.svelte index 58d1916b7..4eedff2db 100644 --- a/packages/web/src/dbkeyvalue/DbKeyItemDetail.svelte +++ b/packages/web/src/dbkeyvalue/DbKeyItemDetail.svelte @@ -9,7 +9,18 @@
{#each dbKeyFields as column} - + { + onChangeItem?.({ + ...item, + [column.name]: value, + }); + } + : null} + /> {/each}
diff --git a/packages/web/src/dbkeyvalue/DbKeyValueDetail.svelte b/packages/web/src/dbkeyvalue/DbKeyValueDetail.svelte index a1692e1a2..20d543743 100644 --- a/packages/web/src/dbkeyvalue/DbKeyValueDetail.svelte +++ b/packages/web/src/dbkeyvalue/DbKeyValueDetail.svelte @@ -9,13 +9,13 @@ let display = 'text'; - export let column; - export let item; - export let onChangeItem = null; + export let columnTitle; + export let value; + export let onChangeValue = null;
-
{_.startCase(column.name)}
+
{columnTitle}
{#if display == 'text'} { - if (onChangeItem) { - onChangeItem({ - ...item, - [column.name]: e.detail, - }); - } + onChangeValue?.(e.detail); }} /> {/if} {#if display == 'json'}
- +
{/if} diff --git a/packages/web/src/elements/Link.svelte b/packages/web/src/elements/Link.svelte index dc1f427f0..26e69273b 100644 --- a/packages/web/src/elements/Link.svelte +++ b/packages/web/src/elements/Link.svelte @@ -16,6 +16,7 @@ else openWebLink(href); }} use:contextMenu={menu} + {...$$restProps} > diff --git a/packages/web/src/elements/ScrollableTableControl.svelte b/packages/web/src/elements/ScrollableTableControl.svelte index 10af4f3e4..22a844816 100644 --- a/packages/web/src/elements/ScrollableTableControl.svelte +++ b/packages/web/src/elements/ScrollableTableControl.svelte @@ -9,6 +9,7 @@ headerSlot?: number; isHighlighted?: Function; width?: string; + testid?: (row: any) => string; } @@ -173,6 +174,7 @@ {#if col.component} @@ -237,7 +239,7 @@ table.singleLineRow tbody tr td { white-space: nowrap; } - + table tbody { display: block; overflow-y: scroll; diff --git a/packages/web/src/formview/CollectionJsonRow.svelte b/packages/web/src/formview/CollectionJsonRow.svelte index b64f32b01..7a64ad48d 100644 --- a/packages/web/src/formview/CollectionJsonRow.svelte +++ b/packages/web/src/formview/CollectionJsonRow.svelte @@ -31,6 +31,9 @@ export let rowIndex; export let grider; + export let expandAll = false; + let expandKey = 0; + $: rowData = grider.getRowData(rowIndex); $: rowStatus = grider.getRowStatus(rowIndex); @@ -43,18 +46,27 @@ copyTextToClipboard(JSON.stringify(rowData, undefined, 2)); } + function handleExpandDocument() { + expandAll = true; + expandKey += 1; + } + registerMenu([ { text: 'Copy JSON document', onClick: handleCopyJsonDocument }, { text: 'Edit document', onClick: handleEditDocument }, { text: 'Delete document', onClick: () => grider.deleteRow(rowIndex) }, { text: 'Revert row changes', onClick: () => grider.revertRowChanges(rowIndex) }, + { text: 'Expand document', onClick: handleExpandDocument }, ]); - +{#key expandKey} + +{/key} diff --git a/packages/web/src/formview/CollectionJsonView.svelte b/packages/web/src/formview/CollectionJsonView.svelte index 34e4a7b21..28d669e36 100644 --- a/packages/web/src/formview/CollectionJsonView.svelte +++ b/packages/web/src/formview/CollectionJsonView.svelte @@ -1,5 +1,24 @@
@@ -67,9 +106,11 @@ display.reload()} />
- {#each _.range(0, grider.rowCount) as rowIndex} - - {/each} + {#key expandKey} + {#each _.range(0, grider.rowCount) as rowIndex} + + {/each} + {/key}
diff --git a/packages/web/src/formview/FormView.svelte b/packages/web/src/formview/FormView.svelte index 6c451113f..e14730288 100644 --- a/packages/web/src/formview/FormView.svelte +++ b/packages/web/src/formview/FormView.svelte @@ -196,6 +196,7 @@ import keycodes from '../utility/keycodes'; import resizeObserver from '../utility/resizeObserver'; import openReferenceForm from './openReferenceForm'; + import { useSettings } from '../utility/metadataLoaders'; export let conid; export let database; @@ -236,6 +237,9 @@ $: rowCountInfo = getRowCountInfo(allRowCount, display); + const settingsValue = useSettings(); + $: gridColoringMode = $settingsValue?.['dataGrid.coloringMode']; + function getRowCountInfo(allRowCount) { if (rowCountNotAvailable) { return `Row: ${((display.config.formViewRecordNumber || 0) + 1).toLocaleString()} / ???`; @@ -620,7 +624,7 @@ {#each columnChunks as chunk, chunkIndex} {#each chunk as col, rowIndex} - +
{/if} diff --git a/packages/web/src/icons/FontIcon.svelte b/packages/web/src/icons/FontIcon.svelte index ebf3aacfb..084ef9b7b 100644 --- a/packages/web/src/icons/FontIcon.svelte +++ b/packages/web/src/icons/FontIcon.svelte @@ -58,6 +58,7 @@ 'icon auth': 'mdi mdi-account-key', 'icon version': 'mdi mdi-ticket-confirmation', 'icon pin': 'mdi mdi-pin', + 'icon pin-outline': 'mdi mdi-pin-outline', 'icon arrange': 'mdi mdi-arrange-send-to-back', 'icon app': 'mdi mdi-layers-triple', 'icon open-in-new': 'mdi mdi-open-in-new', @@ -66,6 +67,7 @@ 'icon parameter': 'mdi mdi-at', 'icon trigger': 'mdi mdi-lightning-bolt', 'icon scheduler-event': 'mdi mdi-calendar-blank', + 'icon arrow-link': 'mdi mdi-arrow-top-right-thick', 'icon window-restore': 'mdi mdi-window-restore', 'icon window-maximize': 'mdi mdi-window-maximize', @@ -146,6 +148,7 @@ 'icon parent-filter-outline': 'mdi mdi-home-alert-outline', 'icon download': 'mdi mdi-download', 'icon text': 'mdi mdi-text', + 'icon ai': 'mdi mdi-head-lightbulb', 'icon run': 'mdi mdi-play', 'icon chevron-down': 'mdi mdi-chevron-down', @@ -204,6 +207,8 @@ 'icon type-unknown': 'mdi mdi-help-box', 'icon at': 'mdi mdi-at', + 'icon expand-all': 'mdi mdi-expand-all', + 'icon collapse-all': 'mdi mdi-collapse-all', 'img ok': 'mdi mdi-check-circle color-icon-green', 'img ok-inv': 'mdi mdi-check-circle color-icon-inv-green', @@ -297,7 +302,15 @@ }; - + diff --git a/packages/web/src/modals/ValueLookupModal.svelte b/packages/web/src/modals/ValueLookupModal.svelte index 07d62aa89..56c2e9653 100644 --- a/packages/web/src/modals/ValueLookupModal.svelte +++ b/packages/web/src/modals/ValueLookupModal.svelte @@ -26,6 +26,7 @@ export let multiselect = false; export let jslid; export let formatterFunction; + export let dataType; // console.log('ValueLookupModal', conid, database, pureName, schemaName, columnName, driver); @@ -53,6 +54,7 @@ schemaName, pureName, field, + dataType, }); } diff --git a/packages/web/src/perspectives/PerspectiveNodeRow.svelte b/packages/web/src/perspectives/PerspectiveNodeRow.svelte index 4f99876ee..786f2e336 100644 --- a/packages/web/src/perspectives/PerspectiveNodeRow.svelte +++ b/packages/web/src/perspectives/PerspectiveNodeRow.svelte @@ -36,9 +36,11 @@ { node.toggleExpanded(); }} + /> @@ -54,6 +56,7 @@ on:change={() => { node.toggleChecked(); }} + data-testid={`PerspectiveNodeRow_check_${node.pathIdentifier}`} /> {#if node.secondaryCheckable} diff --git a/packages/web/src/query/QueryAiAssistant.svelte b/packages/web/src/query/QueryAiAssistant.svelte new file mode 100644 index 000000000..b44912f77 --- /dev/null +++ b/packages/web/src/query/QueryAiAssistant.svelte @@ -0,0 +1 @@ +AI Assistant \ No newline at end of file diff --git a/packages/web/src/settings/ConnectionDriverFields.svelte b/packages/web/src/settings/ConnectionDriverFields.svelte index f92cc35a2..453947f7b 100644 --- a/packages/web/src/settings/ConnectionDriverFields.svelte +++ b/packages/web/src/settings/ConnectionDriverFields.svelte @@ -135,6 +135,16 @@ /> {/if} +{#if driver?.showConnectionField('localDataCenter', $values, showConnectionFieldArgs)} + +{/if} + {#if $authTypes && driver?.showConnectionField('authType', $values, showConnectionFieldArgs)} {#key $authTypes} { - $lastUsedDefaultActions = { - ...$lastUsedDefaultActions, - [objectTypeField]: e.detail.value, - }; + lastUsedDefaultActions.update(actions => ({ + ...actions, + [objectTypeField]: e.detail, + })); }} /> diff --git a/packages/web/src/settings/SettingsModal.svelte b/packages/web/src/settings/SettingsModal.svelte index 41b24458a..e24e31805 100644 --- a/packages/web/src/settings/SettingsModal.svelte +++ b/packages/web/src/settings/SettingsModal.svelte @@ -140,6 +140,25 @@ ORDER BY + + + +
SQL editor
@@ -342,6 +361,11 @@ ORDER BY objectTypeField="functions" disabled={values['defaultAction.useLastUsedAction'] !== false} /> +
Behaviour
@@ -386,6 +410,14 @@ ORDER BY { value: 'download', label: 'Check and download new versions' }, ]} /> + + {#if isProApp()} + + {/if}
diff --git a/packages/web/src/stores.ts b/packages/web/src/stores.ts index 623db1fa8..e49b4d394 100644 --- a/packages/web/src/stores.ts +++ b/packages/web/src/stores.ts @@ -115,6 +115,7 @@ export const currentEditorFontSize = getElectron() ? writableSettingsValue(null, 'currentEditorFontSize') : writableWithStorage(null, 'currentEditorFontSize'); export const currentEditorFont = writableSettingsValue(null, 'editor.fontFamily'); +export const allowedSendToAiService = writableSettingsValue(false, 'ai.allowSendModels'); export const activeTabId = derived([openedTabs], ([$openedTabs]) => $openedTabs.find(x => x.selected)?.tabid); export const activeTab = derived([openedTabs], ([$openedTabs]) => $openedTabs.find(x => x.selected)); export const recentDatabases = writableWithStorage([], 'recentDatabases'); @@ -161,6 +162,8 @@ export const lastUsedDefaultActions = writableWithStorage({}, 'lastUsedDefaultAc export const selectedDatabaseObjectAppObject = writable(null); export const focusedConnectionOrDatabase = writable<{ conid: string; database?: string; connection: any }>(null); +export const focusedTreeDbKey = writable<{ key: string; root: string; type: string; text: string }>(null); + export const DEFAULT_OBJECT_SEARCH_SETTINGS = { pureName: true, schemaName: false, @@ -408,3 +411,11 @@ connectionAppObjectSearchSettings.subscribe(value => { connectionAppObjectSearchSettingsValue = value; }); export const getConnectionAppObjectSearchSettings = () => connectionAppObjectSearchSettingsValue; + +let focusedTreeDbKeyValue = null; +focusedTreeDbKey.subscribe(value => { + focusedTreeDbKeyValue = value; +}); +export const getFocusedTreeDbKey = () => focusedTreeDbKeyValue; + +window['__changeCurrentTheme'] = theme => currentTheme.set(theme); diff --git a/packages/web/src/tableeditor/ColumnEditorModal.svelte b/packages/web/src/tableeditor/ColumnEditorModal.svelte index 00060325b..1d0ee7a74 100644 --- a/packages/web/src/tableeditor/ColumnEditorModal.svelte +++ b/packages/web/src/tableeditor/ColumnEditorModal.svelte @@ -36,7 +36,9 @@ {/if} - + {#if !driver?.dialect?.disableAutoIncrement} + + {/if} async tabid => { - const activeCandidate = getOpenedTabs().find(x => x.tabid == tabid); - const closeCandidates = getOpenedTabs() - .filter(x => closeCondition(x, activeCandidate)) - .filter(x => x.unsaved) - .filter(x => shouldShowTab(x)); + const closeTabFunc = + (closeCondition, afterOperation = null) => + async tabid => { + const activeCandidate = getOpenedTabs().find(x => x.tabid == tabid); + const closeCandidates = getOpenedTabs() + .filter(x => closeCondition(x, activeCandidate)) + .filter(x => x.unsaved) + .filter(x => shouldShowTab(x)); - if (!(await allowCloseTabs(closeCandidates))) return; + if (!(await allowCloseTabs(closeCandidates))) return; - openedTabs.update(files => { - const active = files.find(x => x.tabid == tabid); - if (!active) return files; + openedTabs.update(files => { + const active = files.find(x => x.tabid == tabid); + if (!active) return files; - const newFiles = files.map(x => ({ - ...x, - closedTime: shouldShowTab(x) && closeCondition(x, active) ? new Date().getTime() : x.closedTime, - selected: false, - })); + const newFiles = files.map(x => ({ + ...x, + closedTime: shouldShowTab(x) && closeCondition(x, active) ? new Date().getTime() : x.closedTime, + selected: false, + })); - if (newFiles.find(x => x.selected && shouldShowTab(x))) { - return newFiles; - } + if (newFiles.find(x => x.selected && shouldShowTab(x))) { + return newFiles; + } - const selectedIndex = _.findLastIndex(newFiles, x => shouldShowTab(x)); + const selectedIndex = _.findLastIndex(newFiles, x => shouldShowTab(x)); - return newFiles.map((x, index) => ({ - ...x, - selected: index == selectedIndex, - })); - }); - }; + const res = newFiles.map((x, index) => ({ + ...x, + selected: index == selectedIndex, + })); + + if (afterOperation) { + return afterOperation(res); + } + return res; + }); + }; export const closeMultipleTabs = async (closeCondition, deleteFromHistory = false) => { const closeCandidates = getOpenedTabs() @@ -128,6 +135,10 @@ })) ); }; + const pinTab = tabid => { + openedTabs.update(tabs => tabs.map(x => (x.tabid == tabid ? { ...x, tabPreviewMode: false } : x))); + }; + const closeTabsWithCurrentDb = () => { const db = getCurrentDatabase(); closeMultipleTabs(tab => { @@ -154,7 +165,10 @@ _.get(x, 'props.database') != _.get(active, 'props.database') ); const closeOthersInMultiTab = multiTabIndex => - closeTabFunc((x, active) => x.tabid != active.tabid && (x.multiTabIndex || 0) == multiTabIndex); + closeTabFunc( + (x, active) => x.tabid != active.tabid && (x.multiTabIndex || 0) == multiTabIndex, + tabs => tabs.map(x => (x.selected ? { ...x, tabPreviewMode: false } : x)) + ); const reopenClosedTab = () => { const lastClosedTabId = getOpenedTabs() .filter(x => x.closedTime) @@ -396,6 +410,10 @@ const appobj = appObject ? appObjectTypes[appObject] : null; return [ + tab.tabPreviewMode && { + text: 'Pin tab', + onClick: () => pinTab(tabid), + }, { text: 'Close', onClick: () => closeTab(tabid), @@ -639,6 +657,16 @@ $draggingTabTarget = null; }} > + {#if tab.tabPreviewMode} + pinTab(tab.tabid)} + title="This tab is in preview mode, it will be replaced eg. when clicking table. Click to switch to normal mode. You could also double-click tab header." + > + + + {/if} {tab.title} @@ -655,11 +683,21 @@
{#if allowSplitTab} -
splitTab(multiTabIndex)} title="Split window"> +
splitTab(multiTabIndex)} + title="Split window" + data-testid="TabsPanel_buttonSplit" + >
{/if} -
newQuery({ multiTabIndex })} title="New query"> +
newQuery({ multiTabIndex })} + title="New query" + data-testid="TabsPanel_buttonNewQuery" + >
@@ -775,4 +813,13 @@ .tab-group-button:hover { color: var(--theme-font-1); } + + .pin-button { + color: var(--theme-font-3); + cursor: pointer; + } + + .pin-button:hover { + color: var(--theme-font-1); + } diff --git a/packages/web/src/tabs/CollectionDataTab.svelte b/packages/web/src/tabs/CollectionDataTab.svelte index 03f9fa85d..088ea1dec 100644 --- a/packages/web/src/tabs/CollectionDataTab.svelte +++ b/packages/web/src/tabs/CollectionDataTab.svelte @@ -216,5 +216,7 @@ + + diff --git a/packages/web/src/tabs/ConnectionTab.svelte b/packages/web/src/tabs/ConnectionTab.svelte index 380659861..4e0ba102d 100644 --- a/packages/web/src/tabs/ConnectionTab.svelte +++ b/packages/web/src/tabs/ConnectionTab.svelte @@ -110,6 +110,7 @@ 'port', 'user', 'password', + 'localDataCenter', 'defaultDatabase', 'singleDatabase', 'socketPath', diff --git a/packages/web/src/tabs/DbKeyDetailTab.svelte b/packages/web/src/tabs/DbKeyDetailTab.svelte index f7d49ad2f..92ebc7a0f 100644 --- a/packages/web/src/tabs/DbKeyDetailTab.svelte +++ b/packages/web/src/tabs/DbKeyDetailTab.svelte @@ -7,9 +7,10 @@ export const allowAddToFavorites = props => false; function getKeyText(key) { + if (!key) return '(no name)'; const keySplit = key.split(':'); if (keySplit.length > 1) return keySplit[keySplit.length - 1]; - return key; + return key || '(no name)'; } @@ -32,6 +33,8 @@ import DbKeyAddItemModal from '../modals/DbKeyAddItemModal.svelte'; import ErrorMessageModal from '../modals/ErrorMessageModal.svelte'; import { changeTab } from '../utility/common'; + import SelectField from '../forms/SelectField.svelte'; + import DbKeyValueDetail from '../dbkeyvalue/DbKeyValueDetail.svelte'; export let tabid; export let conid; @@ -157,12 +160,15 @@ {:else} - { - editedValue = e.detail; - }} - /> +
+ { + editedValue = value; + }} + /> +
{/if}
@@ -199,4 +205,15 @@ .key-name :global(input) { flex-grow: 1; } + + .value-holder { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + + display: flex; + flex-direction: column; + } diff --git a/packages/web/src/tabs/QueryTab.svelte b/packages/web/src/tabs/QueryTab.svelte index 23b50e8a1..5f9a61940 100644 --- a/packages/web/src/tabs/QueryTab.svelte +++ b/packages/web/src/tabs/QueryTab.svelte @@ -12,6 +12,15 @@ testEnabled: () => getCurrentEditor()?.isSqlEditor(), onClick: () => getCurrentEditor().formatCode(), }); + registerCommand({ + id: 'query.switchAiAssistant', + category: 'Query', + name: 'AI Assistant', + keyText: 'Shift+Alt+A', + icon: 'icon ai', + testEnabled: () => isProApp(), + onClick: () => getCurrentEditor().toggleAiAssistant(), + }); registerCommand({ id: 'query.insertSqlJoin', category: 'Query', @@ -64,7 +73,7 @@ import useEditorData from '../query/useEditorData'; import { currentEditorWrapEnabled, extensions } from '../stores'; import applyScriptTemplate from '../utility/applyScriptTemplate'; - import { changeTab, markTabUnsaved } from '../utility/common'; + import { changeTab, markTabUnsaved, sleep } from '../utility/common'; import { getDatabaseInfo, useConnectionInfo } from '../utility/metadataLoaders'; import SocketMessageView from '../query/SocketMessageView.svelte'; import useEffect from '../utility/useEffect'; @@ -89,6 +98,9 @@ import ToolStripDropDownButton from '../buttons/ToolStripDropDownButton.svelte'; import { extractQueryParameters, replaceQueryParameters } from 'dbgate-query-splitter'; import QueryParametersModal from '../modals/QueryParametersModal.svelte'; + import { isProApp } from '../utility/proTools'; + import HorizontalSplitter from '../elements/HorizontalSplitter.svelte'; + import QueryAiAssistant from '../query/QueryAiAssistant.svelte'; export let tabid; export let conid; @@ -137,6 +149,8 @@ let domEditor; let domToolStrip; let intervalId; + let isAiAssistantVisible = isProApp() && localStorage.getItem(`tabdata_isAiAssistantVisible_${tabid}`) == 'true'; + let domAiAssistant; onMount(() => { intervalId = setInterval(() => { @@ -186,6 +200,12 @@ domEditor?.getEditor()?.focus(); } + $: { + if (!isAiAssistantVisible && domEditor) { + domEditor?.getEditor()?.focus(); + } + } + export function isSqlEditor() { return driver?.databaseEngineTypes?.includes('sql'); } @@ -210,6 +230,10 @@ visibleResultTabs = !visibleResultTabs; } + export function toggleAiAssistant() { + isAiAssistantVisible = !isAiAssistantVisible; + } + function getParameterSplitterOptions() { if (!queryParameterStyle) { return null; @@ -382,6 +406,26 @@ errorMessages = errors; } + async function handleKeyDown(event) { + if (isProApp()) { + if (event.code == 'Space' && event.shiftKey && !isAiAssistantVisible) { + event.preventDefault(); + toggleAiAssistant(); + await sleep(100); + if (domAiAssistant) { + domAiAssistant.handleCompleteOnCursor(); + domEditor?.getEditor()?.focus(); + } + } else if (event.code == 'Space' && event.shiftKey && isAiAssistantVisible && domAiAssistant) { + event.preventDefault(); + domAiAssistant.handleCompleteOnCursor(); + } else if (event.code?.startsWith('Digit') && event.altKey && isAiAssistantVisible && domAiAssistant) { + event.preventDefault(); + domAiAssistant.insertCompletion(parseInt(event.code.substring(5)) - 1); + } + } + } + function createMenu() { return [ { command: 'query.execute' }, @@ -401,6 +445,7 @@ { command: 'query.replace' }, { divider: true }, { command: 'query.toggleVisibleResultTabs' }, + { command: 'query.switchAiAssistant', hideDisabled: true }, ]; } @@ -419,80 +464,119 @@ let queryParameterStyle = localStorage.getItem(`tabdata_queryParamStyle_${tabid}`) ?? initialArgs?.queryParameterStyle ?? - (initialArgs?.scriptTemplate == 'CALL OBJECT' ? ':' : null); + (initialArgs?.scriptTemplate == 'CALL OBJECT' ? ':' : ''); + + $: localStorage.setItem(`tabdata_isAiAssistantVisible_${tabid}`, isAiAssistantVisible ? 'true' : 'false'); - + - {#if driver?.databaseEngineTypes?.includes('sql')} - { - setEditorData(e.detail); - if (isInitialized) { - markTabUnsaved(tabid); - } - errorMessages = []; - }} - on:focus={() => { - activator.activate(); - domToolStrip?.activate(); - invalidateCommands(); - setTimeout(() => { - isInitialized = true; - }, 100); - }} - bind:this={domEditor} - onExecuteFragment={(sql, startLine) => executeCore(sql, startLine)} - {errorMessages} - /> - {:else} - setEditorData(e.detail)} - on:focus={() => { - activator.activate(); - domToolStrip?.activate(); - invalidateCommands(); - }} - bind:this={domEditor} - /> - {/if} + + + {#if driver?.databaseEngineTypes?.includes('sql')} + { + setEditorData(e.detail); + if (isInitialized) { + markTabUnsaved(tabid); + } + errorMessages = []; + }} + on:focus={() => { + activator.activate(); + domToolStrip?.activate(); + invalidateCommands(); + setTimeout(() => { + isInitialized = true; + }, 100); + }} + bind:this={domEditor} + onExecuteFragment={(sql, startLine) => executeCore(sql, startLine)} + {errorMessages} + onKeyDown={handleKeyDown} + /> + {:else} + setEditorData(e.detail)} + on:focus={() => { + activator.activate(); + domToolStrip?.activate(); + invalidateCommands(); + }} + bind:this={domEditor} + /> + {/if} + + + + + + + + + - - - - - + { + isAiAssistantVisible = false; + }} + text={$editorValue} + getLine={() => domEditor.getEditor().getSelectionRange().start.row} + onInsertAtCursor={text => { + const editor = domEditor.getEditor(); + editor.session.insert(editor.getCursorPosition(), text); + domEditor?.getEditor()?.focus(); + }} + getTextOrSelectedText={() => domEditor.getEditor().getSelectedText() || $editorValue} + onSetSelectedText={text => { + const editor = domEditor.getEditor(); + if (editor.getSelectedText()) { + const range = editor.selection.getRange(); + editor.session.replace(range, text); + } else { + editor.setValue(text); + } + }} + {tabid} + /> - + - - + + {#if resultCount == 1} @@ -511,6 +595,13 @@ icon="icon at" title="Query parameter style" /> + + AI Assistant + diff --git a/packages/web/src/tabs/SqlObjectTab.svelte b/packages/web/src/tabs/SqlObjectTab.svelte index f02dca4f2..c59009c35 100644 --- a/packages/web/src/tabs/SqlObjectTab.svelte +++ b/packages/web/src/tabs/SqlObjectTab.svelte @@ -21,7 +21,7 @@ import createActivator, { getActiveComponent } from '../utility/createActivator'; import ToolStripContainer from '../buttons/ToolStripContainer.svelte'; import { useConnectionInfo, useDatabaseInfo } from '../utility/metadataLoaders'; - import { extensions } from '../stores'; + import { extensions, lastUsedDefaultActions } from '../stores'; import { findEngineDriver } from 'dbgate-tools'; import registerCommand from '../commands/registerCommand'; import applyScriptTemplate, { getSupportedScriptTemplates } from '../utility/applyScriptTemplate'; @@ -30,6 +30,7 @@ import { changeTab } from '../utility/common'; import ToolStripButton from '../buttons/ToolStripButton.svelte'; import openNewTab from '../utility/openNewTab'; + import { getBoolSettingsValue } from '../settings/settingsTools'; export let tabid; export let appObjectData; @@ -40,6 +41,7 @@ export let conid; export let database; export let objectTypeField; + export let tabPreviewMode; $: appObjectData = { schemaName, @@ -94,6 +96,64 @@ {/await} + {#if objectTypeField == 'tables' || objectTypeField == 'views' || objectTypeField == 'matviews'} + { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + [objectTypeField]: 'openStructure', + })); + } + + openNewTab({ + title: pureName, + icon: 'img table-structure', + tabComponent: 'TableStructureTab', + tabPreviewMode: true, + props: { + schemaName, + pureName, + conid, + database, + objectTypeField, + defaultActionId: 'openStructure', + }, + }); + }}>Structure + { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + [objectTypeField]: 'openTable', + })); + } + + openNewTab({ + title: pureName, + icon: objectTypeField == 'tables' ? 'img table' : 'img view', + tabComponent: objectTypeField == 'tables' ? 'TableDataTab' : 'ViewDataTab', + objectTypeField, + tabPreviewMode: true, + props: { + schemaName, + pureName, + conid, + database, + objectTypeField, + defaultActionId: 'openTable', + }, + }); + }}>Data + {/if} + - {#if objectTypeField == 'tables' || objectTypeField == 'views' || objectTypeField == 'matviews'} - { - openNewTab({ - title: pureName, - icon: 'img table-structure', - tabComponent: 'TableStructureTab', - tabPreviewMode: true, - props: { - schemaName, - pureName, - conid, - database, - objectTypeField, - defaultActionId: 'openStructure', - }, - }); - }}>Open structure - { - openNewTab({ - title: pureName, - icon: objectTypeField == 'tables' ? 'img table' : 'img view', - tabComponent: objectTypeField == 'tables' ? 'TableDataTab' : 'ViewDataTab', - objectTypeField, - tabPreviewMode: true, - props: { - schemaName, - pureName, - conid, - database, - objectTypeField, - defaultActionId: 'openTable', - }, - }); - }}>Open data - {/if} {#each getSupportedScriptTemplates(appObjectData.objectTypeField) as template} - changeSetToSql($changeSetStore?.value, $dbinfo) + changeSetToSql($changeSetStore?.value, $dbinfo, driver.dialect) ); const deleteCascades = getDeleteCascades($changeSetStore?.value, $dbinfo); @@ -246,8 +246,6 @@ ...INTERVALS.map(seconds => ({ command: `tableData.setAutoRefresh.${seconds}`, text: `...${seconds} seconds` })), ]; } - - $: console.log('isRawMode', isRawMode); @@ -264,39 +262,17 @@ /> - - - - - - - - - - - - - - - - - - { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + tables: 'openStructure', + })); + } + openNewTab({ title: pureName, icon: 'img table-structure', @@ -311,12 +287,20 @@ defaultActionId: 'openStructure', }, }); - }}>Open structureStructure { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + tables: 'showSql', + })); + } + openNewTab({ title: pureName, icon: 'img sql-file', @@ -331,9 +315,48 @@ defaultActionId: 'showSql', }, }); - }}>Table SQLSQL + + + + + + + + + + + + + + + + + + collapsedLeftColumnStore.update(x => !x)}>View columns - - - - - { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + [objectTypeField]: 'openTable', + })); + } + openNewTab({ title: pureName, icon: objectTypeField == 'tables' ? 'img table' : 'img view', @@ -195,11 +197,20 @@ defaultActionId: 'openTable', }, }); - }}>Open dataData + { + if (tabPreviewMode && getBoolSettingsValue('defaultAction.useLastUsedAction', true)) { + lastUsedDefaultActions.update(actions => ({ + ...actions, + [objectTypeField]: 'showSql', + })); + } + openNewTab({ title: pureName, icon: 'img sql-file', @@ -214,7 +225,15 @@ defaultActionId: 'showSql', }, }); - }}>Show SQLSQL + + + + + diff --git a/packages/web/src/tabs/ViewDataTab.svelte b/packages/web/src/tabs/ViewDataTab.svelte index 6fe518c82..283ce398d 100644 --- a/packages/web/src/tabs/ViewDataTab.svelte +++ b/packages/web/src/tabs/ViewDataTab.svelte @@ -82,11 +82,9 @@ formViewComponent={SqlFormView} /> - - - { openNewTab({ title: pureName, @@ -102,11 +100,12 @@ defaultActionId: 'openStructure', }, }); - }}>Open structureStructure { openNewTab({ title: pureName, @@ -122,8 +121,11 @@ defaultActionId: 'showSql', }, }); - }}>View SQLSQL + + + {/if} diff --git a/packages/web/src/utility/connectionsPinger.js b/packages/web/src/utility/connectionsPinger.ts similarity index 76% rename from packages/web/src/utility/connectionsPinger.js rename to packages/web/src/utility/connectionsPinger.ts index c921082c1..863ce7661 100644 --- a/packages/web/src/utility/connectionsPinger.js +++ b/packages/web/src/utility/connectionsPinger.ts @@ -2,6 +2,8 @@ import _ from 'lodash'; import { currentDatabase, openedConnectionsWithTemporary, getCurrentConfig, getOpenedConnections } from '../stores'; import { apiCall, getVolatileConnections, strmid } from './api'; import hasPermission from '../utility/hasPermission'; +import { getConfig } from './metadataLoaders'; +import { onMount } from 'svelte'; // const doServerPing = async value => { // const connectionList = getConnectionList(); @@ -22,7 +24,7 @@ const doServerPing = value => { } apiCall('server-connections/ping', { - conidArray, + conidArray: _.compact(conidArray), strmid, }); }; @@ -57,3 +59,19 @@ export function callServerPing() { const connections = getOpenedConnections(); doServerPing(connections); } + +export async function mountStorageConnectionPing() { + const config = getCurrentConfig(); + + onMount(() => { + const conid = '__storage'; + const database = config.storageDatabase; + apiCall('database-connections/ping', { conid, database }); + const handle = setInterval(() => { + if (conid && database) { + apiCall('database-connections/ping', { conid, database }); + } + }, 20 * 1000); + return () => clearInterval(handle); + }); +} diff --git a/packages/web/src/widgets/AppObjectListHandler.svelte b/packages/web/src/widgets/AppObjectListHandler.svelte index 9cda24d58..fa64c0336 100644 --- a/packages/web/src/widgets/AppObjectListHandler.svelte +++ b/packages/web/src/widgets/AppObjectListHandler.svelte @@ -1,8 +1,7 @@ -{#await apiCall('database-connections/load-keys', { conid, database, root, filter, reloadToken, reloadToken2 })} - -{:then items} - {@const itemsSorted = _.sortBy(items || [], 'text')} +{#each items as item} + +{/each} - {#each itemsSorted.slice(0, maxShowCount) as item} - { - reloadToken2 += 1; - }} - /> - {/each} - - {#if itemsSorted.length > maxShowCount} - { - maxShowCount += SHOW_INCREMENT; - }} - /> - {/if} -{/await} +{#if model.dirsByKey[root]?.shouldLoadNext} + +{:else if model.dirsByKey[root]?.hasNext} + { + changeModel(model => dbKeys_markNodeExpanded(model, root, true)); + }} + /> +{/if} diff --git a/packages/web/src/widgets/DbKeysTree.svelte b/packages/web/src/widgets/DbKeysTree.svelte index 27ba2f843..97c798b28 100644 --- a/packages/web/src/widgets/DbKeysTree.svelte +++ b/packages/web/src/widgets/DbKeysTree.svelte @@ -1,31 +1,52 @@ - + { + domListHandler?.focusFirst(); + }} + /> @@ -73,6 +127,48 @@ {#if differentFocusedDb} {/if} - - + + o1?.key == o2?.key && o1?.type == o2?.type && o1?.root == o2?.root} + handleObjectClick={(data, clickAction) => { + focusedTreeDbKey.set(data); + + const openDetailOnArrows = getOpenDetailOnArrowsSettings(); + + if (data.key && ((openDetailOnArrows && clickAction == 'keyArrow') || clickAction == 'keyEnter')) { + openNewTab({ + tabComponent: 'DbKeyDetailTab', + title: data.text || '(no name)', + icon: 'img keydb', + props: { + isDefaultBrowser: true, + conid, + database, + }, + }); + $activeDbKeysStore = { + ...$activeDbKeysStore, + [`${conid}:${database}`]: data.key, + }; + } + if (data.root && clickAction == 'keyEnter') { + changeModel(model => dbKeys_markNodeExpanded(model, data.root, !model.dirsByKey[data.root]?.isExpanded)); + } + }} + handleExpansion={(data, value) => { + changeModel(model => dbKeys_markNodeExpanded(model, data.root, value)); + }} + onScrollTop={() => { + domContainer?.scrollTop(); + }} + onFocusFilterBox={text => { + domFilter?.focus(text); + }} + > + + diff --git a/packages/web/src/widgets/DbKeysTreeNode.svelte b/packages/web/src/widgets/DbKeysTreeNode.svelte index dec05b2e3..afb968be6 100644 --- a/packages/web/src/widgets/DbKeysTreeNode.svelte +++ b/packages/web/src/widgets/DbKeysTreeNode.svelte @@ -1,5 +1,11 @@ {#if !skip} - (visible = !visible) : null}>{title} + (visible = !visible) : null} + data-testid={$$props['data-testid']} + {onClose}>{title} {#if visible}
diff --git a/packages/web/src/widgets/WidgetIconPanel.svelte b/packages/web/src/widgets/WidgetIconPanel.svelte index 04871f87e..8214d1953 100644 --- a/packages/web/src/widgets/WidgetIconPanel.svelte +++ b/packages/web/src/widgets/WidgetIconPanel.svelte @@ -100,7 +100,7 @@
{#if $visibleHamburgerMenuWidget} -
+
{/if} @@ -108,6 +108,7 @@
handleChangeWidget(item.name)} > @@ -122,11 +123,12 @@ on:click={() => { $lockedDatabaseMode = !$lockedDatabaseMode; }} + data-testid="WidgetIconPanel_lockDb" >
- -
+ +
diff --git a/packages/web/src/widgets/WidgetTitle.svelte b/packages/web/src/widgets/WidgetTitle.svelte index fe57f1e66..b7c692277 100644 --- a/packages/web/src/widgets/WidgetTitle.svelte +++ b/packages/web/src/widgets/WidgetTitle.svelte @@ -1,18 +1,35 @@ -
+
+ {#if onClose} +
+ +
+ {/if}